diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 00000000..a1ca9c00 --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,23 @@ +name: Publish to PyPI + +on: + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' #pattern match + +jobs: + build_and_publish: + runs-on: ubuntu-latest + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build distribution + run: | + python3 -m pip install build + python3 -mbuild + + - name: Upload distribution to PyPI + uses: pypa/gh-action-pypi-publish@v1.12.4 diff --git a/.github/workflows/unit_tests_mac.yaml b/.github/workflows/unit_tests_mac.yaml new file mode 100644 index 00000000..55332a9a --- /dev/null +++ b/.github/workflows/unit_tests_mac.yaml @@ -0,0 +1,53 @@ +name: McStasScript unit tests on OS X + +on: + push: + workflow_dispatch: + +jobs: + build: + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + runs-on: macos-latest + + steps: + - name: Temporary developer McStasScript checkout + uses: actions/checkout@v3 + with: + ref: ${{ env.BRANCH }} + path: mcstasscript + + - name: Temporary developer libpyvinyl checkout + uses: actions/checkout@v3 + with: + repository: PaNOSC-ViNYL/libpyvinyl + ref: remove_pint_pin + path: libpyvinyl + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies (libpyvinyl) + run: | + cd libpyvinyl + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install -e . + pip install pytest + + - name: Install dependencies (mcstasscript) + run: | + cd mcstasscript + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install -e . + pip install pytest + + - name: Show file structure + run: find . + + - name: Run unit tests + run: python -m pytest mcstasscript/mcstasscript/tests/ diff --git a/.github/workflows/unit_tests_ubuntu.yaml b/.github/workflows/unit_tests_ubuntu.yaml new file mode 100644 index 00000000..07ecfb82 --- /dev/null +++ b/.github/workflows/unit_tests_ubuntu.yaml @@ -0,0 +1,53 @@ +name: McStasScript unit tests on ubuntu + +on: + push: + workflow_dispatch: + +jobs: + build: + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + runs-on: ubuntu-latest + + steps: + - name: Temporary developer McStasScript checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + path: mcstasscript + + - name: Temporary developer libpyvinyl checkout + uses: actions/checkout@v3 + with: + repository: PaNOSC-ViNYL/libpyvinyl + ref: remove_pint_pin + path: libpyvinyl + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies (libpyvinyl) + run: | + cd libpyvinyl + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install -e . + pip install pytest + + - name: Install dependencies (mcstasscript) + run: | + cd mcstasscript + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install -e . + pip install pytest + + - name: Show file structure + run: tree . + + - name: Run unit tests + run: python -m pytest mcstasscript/mcstasscript/tests/ diff --git a/.github/workflows/unit_tests_windows.yaml b/.github/workflows/unit_tests_windows.yaml new file mode 100644 index 00000000..333560a3 --- /dev/null +++ b/.github/workflows/unit_tests_windows.yaml @@ -0,0 +1,53 @@ +name: McStasScript unit tests on windows + +on: + push: + workflow_dispatch: + +jobs: + build: + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + runs-on: windows-latest + + steps: + - name: Temporary developer McStasScript checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + path: mcstasscript + + - name: Temporary developer libpyvinyl checkout + uses: actions/checkout@v3 + with: + repository: PaNOSC-ViNYL/libpyvinyl + ref: remove_pint_pin + path: libpyvinyl + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies (libpyvinyl) + run: | + cd libpyvinyl + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install -e . + pip install pytest + + - name: Install dependencies (mcstasscript) + run: | + cd mcstasscript + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install -e . + pip install pytest + + - name: Show file structure + run: tree . + + - name: Run unit tests + run: python -m pytest mcstasscript/mcstasscript/tests/ diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..0d20b648 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..69aa1f3a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "3.6" + - "3.7" + +install: + - pip install -r requirements.txt + - pip install coverage + +script: + - coverage run -m unittest discover mcstasscript/tests + +after_success: + - bash <(curl -s https://codecov.io/bash) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..6ec5f166 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,12 @@ +# Guidelines for contributing to McStasScript + +This document describes how to contribute to McStasScript. The preferred method is to open a pull request on the GitHub page. The list below acts as a checklist of things to consider before creating the pull request. Since the manual is currently on overleaf, there is no way to directly contribute, so a note on the necessary updates to the manual is appreciated. + +* Provide docstrings to new functions / classes +* Update docstrings as necessary +* Adhere to PEP-8 where reasonable +* Include a unit test for new functionality +* Note for updates required to manual +* Clear Jupyter Notebooks before committing +* Check CI tests passes +* Use flake8 to check code quality, reduce to reasonable number of issues diff --git a/LICENSE b/LICENSE index f288702d..544802a8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,674 +1,29 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. +BSD 3-Clause License + +Copyright (c) 2021, PaNOSC-ViNYL +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..6c5096a7 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,13 @@ +include McStasScript_documentation.pdf +include McStasScript_developer_documentation.pdf +include mcstasscript/configuration.yaml +include mcstasscript/tests/test_for_reading.comp +include mcstasscript/tests/test_instrument.instr +include mcstasscript/tests/Union_demonstration_test.instr +include mcstasscript/tests/test_input_folder/test_for_structure.comp +include mcstasscript/integration_tests/test_input_folder +include mcstasscript/integration_tests/test_input_folder/PSDlin_monitor.comp +graft mcstasscript/tests/dummy_mcstas +graft mcstasscript/tests/dummy_instrument_folder +graft mcstasscript/tests/test_data_set + diff --git a/McStasScript_developer_documentation.pdf b/McStasScript_developer_documentation.pdf new file mode 100644 index 00000000..f5684e68 Binary files /dev/null and b/McStasScript_developer_documentation.pdf differ diff --git a/README.md b/README.md new file mode 100644 index 00000000..0958e78c --- /dev/null +++ b/README.md @@ -0,0 +1,227 @@ +# McStasScript +[McStas](http://www.mcstas.org) API for creating and running McStas/McXtrace instruments from python scripting. + +Prototype for an API that allow interaction with McStas through an interface like Jupyter Notebooks created under WP5 of PaNOSC. + +Full documentation can be found [here](https://mads-bertelsen.github.io)! + +## Installation +McStasScript does not include the McStas installation, so McStas/McXtrace should be installed separately, link to instructions [here](https://github.com/McStasMcXtrace/McCode/tree/master/INSTALL-McStas). +McStasScript can be installed using pip from a terminal, + + python3 -m pip install McStasScript --upgrade + +After installation it is necessary to configure the package so the McStas/McXtrace installation can be found, here we show how the appropriate code for an Ubuntu system as an example. The configuration is saved permanently, and only needs to be updated when McStas or McStasScript is updated. This has to be done from a python terminal or from within a python environment. + + import mcstasscript as ms + my_configurator = ms.Configurator() + my_configurator.set_mcrun_path("/usr/bin/") + my_configurator.set_mcstas_path("/usr/share/mcstas/2.5/") + my_configurator.set_mxrun_path("/usr/bin/") + my_configurator.set_mcxtrace_path("/usr/share/mcxtrace/1.5/") + +To get a python terminal, run the command python in a terminal and then copy, paste and execute the lines above one at a time. Exit with ctrl+D. + +For the second case, +1. open a text editor (not MS Word but something like Gedit...), +2. copy and paste the code above, +3. save the file as a Python script, for example, myMcStasScript_config.py +4. In a terminal, run it by typing python myMcStasScript_config.py + +On a Mac OS X system, the paths to the mcrun executable and mcstas folder are through the application folder: + + my_configurator.set_mcrun_path("/Applications/McStas-2.5.app/Contents/Resources/mcstas/2.5/bin/") + my_configurator.set_mcstas_path("/Applications/McStas-2.5.app/Contents/Resources/mcstas/2.5/") + my_configurator.set_mxrun_path("/Applications/McXtrace-1.5.app/Contents/Resources/mcxtrace/1.5/bin/") + my_configurator.set_mcxtrace_path("/Applications/McXtrace-1.5.app/Contents/Resources/mcxtrace/1.5/") + + +### Notes on windows installation +McStasScript was tested on Windows 10 installed using this [guide](https://github.com/McStasMcXtrace/McCode/blob/master/INSTALL-McStas-2.x/Windows/README.md), it is necessary to include MPI using MSMpiSetup.exe and msmpisdk.msi located in the extras folder. + +Open the McStas-shell cmd (shortcut should be available on desktop) and install McStasScript / jupyter notebook with these commands: + + python -m pip install notebook + python -m pip install McStasScript --upgrade + +Using the McStas-shell one can start a jupyter notebook server with this command: + + jupyter notebook + +For a standard McStas installation on Windows, the appropriate configuration can be set with these commands in a notebook: + + import mcstasscript as ms + my_configurator = ms.Configurator() + my_configurator.set_mcrun_path("\\mcstas-2.6\\bin\\") + my_configurator.set_mcstas_path("\\mcstas-2.6\\lib\\") + my_configurator.set_mxrun_path("\\mcxtrace-1.5\\bin\\") + my_configurator.set_mcxtrace_path("\\mcxtrace-1.5\\lib\\") + +Double backslashes are necessary since backslash is the escape character in python strings. + +## Instructions for basic use +This section provides a quick way to get started, a more in depth tutorial using Jupyter Notebooks is available in the tutorial folder. The following commands suppose that you are either typing them in a Python environment from a terminal or in a file to be run as the end of the editing by typing a command like, 'python my_file.py' or in a Jupyter notebook + +Import the interface + + import mcstasscript as ms + +Now the package can be used. Start with creating a new instrument, just needs a name. For a McXtrace instrument use McXtrace_instr instead. + + my_instrument = ms.McStas_instr("my_instrument_file") + +Then McStas components can be added, here we add a source and ask for help on the parameters. + + my_source = my_instrument.add_component("source", "Source_simple") + my_source.show_parameters() # Can be used to show available parameters for Source simple + +The second line prints help on the Source_simple component and current status of our component object. The output is shown here, but without bold, underline and color which is used to show which parameters are required, default or user specified. + + ___ Help Source_simple _____________________________________________________________ + |optional parameter|required parameter|default value|user specified value| + radius = 0.1 [m] // Radius of circle in (x,y,0) plane where neutrons are + generated. + yheight = 0.0 [m] // Height of rectangle in (x,y,0) plane where neutrons are + generated. + xwidth = 0.0 [m] // Width of rectangle in (x,y,0) plane where neutrons are + generated. + dist = 0.0 [m] // Distance to target along z axis. + focus_xw = 0.045 [m] // Width of target + focus_yh = 0.12 [m] // Height of target + E0 = 0.0 [meV] // Mean energy of neutrons. + dE = 0.0 [meV] // Energy half spread of neutrons (flat or gaussian sigma). + lambda0 = 0.0 [AA] // Mean wavelength of neutrons. + dlambda = 0.0 [AA] // Wavelength half spread of neutrons. + flux = 1.0 [1/(s*cm**2*st*energy unit)] // flux per energy unit, Angs or meV if + flux=0, the source emits 1 in 4*PI whole + space. + gauss = 0.0 [1] // Gaussian (1) or Flat (0) energy/wavelength distribution + target_index = 1 [1] // relative index of component to focus at, e.g. next is + +1 this is used to compute 'dist' automatically. + ------------------------------------------------------------------------------------- + +The parameters of the source can be adjusted directly as attributes of the python object + + my_source.xwidth = 0.12 + my_source.yheight = 0.12 + my_source.lambda0 = 3 + my_source.dlambda = 2.2 + my_source.focus_xw = 0.05 + my_source.focus_yh = 0.05 + +A monitor is added as well to get data out of the simulation (few bins so it is easy to print the results) + + PSD = my_instrument.add_component("PSD", "PSD_monitor", AT=[0,0,1], RELATIVE="source") + PSD.xwidth = 0.1 + PSD.yheight = 0.1 + PSD.nx = 5 + PSD.ny = 5 + PSD.filename = '"PSD.dat"' + +Settings for the simulation can be adjusted with the *settings* method, an output_path for the data is needed. + + my_instrument.settings(output_path="first_run", ncount=1E7) + +The simulatiuon is performed with the *backengine* method. This returns the data generated from the simulation. + + data = my_instrument.backengine() + +Results from the monitors would be stored as a list of McStasData objects in the returned data. The counts are stored as numpy arrays. We can read and change the intensity directly and manipulate the data before plotting. + + data[0].Intensity + +In a python terminal this would display the data directly: + + array([[0. , 0. , 0. , 0. , 0. ], + [0. , 0.1422463 , 0.19018485, 0.14156196, 0. ], + [0. , 0.18930076, 0.25112956, 0.18897898, 0. ], + [0. , 0.14121589, 0.18952508, 0.14098576, 0. ], + [0. , 0. , 0. , 0. , 0. ]]) + +Plotting is usually done in a subplot of all monitors recorded. + + plot = ms.make_sub_plot(data) + +## Widgets in Jupyter Notebooks +When using McStasScript in a jupyter notebook, it is possible to plot the data with a widget system instead. To do so, import the jupyter notebook widget interface and use show. + + import mcstasscript.jb_interface as ms_widget + ms_widget.show(data) + +There is also a widget solution for performing the simulation which works as an alternative to *backengine*, this method is also included in the jb_interface show command, just provide an instrument object instead of data. This interface includes setting parameters, simulation options and plotting of the resulting data. + + ms_widget.show(instr) + +If one wants to have access to the data generated in the widget, the widget needs to be created as an object with SimInterface. The resulting object will have a *show_interface* method to display the interface, and a *get_data* method to retrieve the latest generated dataset. + + sim_widget = ms_widget.SimInterface(instr) + sim_widget.show_interface() + data = sim_widget.get_data() + +## Use in existing project +If one wish to work on existing projects using McStasScript, there is a reader included that will read a McStas Instrument file and write the corresponding McStasScript python instrument to disk. Here is an example where the PSI_DMC.instr example is converted: + + Reader = ms.McStas_file("PSI_DMC.instr") + Reader.write_python_file("PSI_DMC_generated.py") + +It is highly advised to run a check between the output of the generated file and the original to ensure the process was sucessful. + +## Method overview +Here is a quick overview of the available methods of the main classes in the project. Most have more options from keyword arguments that are explained in the manual, but also in python help. To get more information on for example the show_components method of the McStas_instr class, one can use the python help command help(instr.McStas_instr.show_components). Many methods take a reference to a component, that can either be a string with the component name or a component object, here written as Cref in type hint. + + instr + └── McStas_instr(str instr_name) # Returns McStas instrument object on initialize + ├── show_parameters() # Prints list of parameters + ├── show_settings() # Prints current instrument settings + ├── show_variables() # Prints list of declare variables and user vars + ├── show_components() # Prints list of components and their location + ├── show_instrument() # Shows instrument drawing with current parameters + ├── show_instr_file() # Prints the current instrument file + ├── show_diagram() # Show figure describing the instrument object + ├── set_parameters() # Sets instrument parameters as keyword arguments + ├── available_components(str category_name) # Show available components in given category + ├── component_help(Cref component_name) # Prints component parameters for given component name + ├── add_component(str name, str component_name) # Adds component to instrument and returns object + ├── copy_component(str name, Cref original_name) # Copies a component to instrument and returns object + ├── remove_component(Cref name) # Removes component + ├── move_component(str name, Cref before / after, ) # Moves component to either before or after another + ├── get_component(str name) # Gets component object + ├── get_last_component() # Gets last component object + ├── add_parameter(str name) # Adds instrument parameter with name + ├── add_declare_var(str type, str name) # Adds declared variable with type and name + ├── add_user_var(str type, str name) # Adds user var with type and name + ├── append_declare(str string) # Appends a line to declare section (c syntax) + ├── append_initialize(str string) # Appends a line to initialize (c syntax) + ├── append_finally(str string) # Appends a line to finally (c syntax) + ├── write_full_instrument() # Writes instrument to disk with given name + ".instr" + ├── settings(kwargs) Settings as keyword arguments. + └── backengine() # Runs simulation. + + component # returned by add_component + ├── set_AT(list at_list) # Sets component position (list of x,y,z positions in [m]) + ├── set_ROTATED(list rotated_list) # Sets component rotation (list of x,y,z rotations in [deg]) + ├── set_RELATIVE(str component_name) # Sets relative to other component name + ├── set_parameters(dict input) # Set parameters using dict input + ├── set_comment(str string) # Set comment explaining something about the component + └── print_long() # Prints currently contained information on component + + mcstasscript functions + ├── name_search(str name, list McStasData) # Returns data set with given name from McStasData list + ├── name_plot_options(str name, list McStasData, kwargs) # Sends kwargs to dataset with given name + ├── load_data(str foldername) # Loads data from folder with McStas data as McStasData list + └── Configurator() + ├── set_mcrun_path(str path) # sets mcrun path + ├── set_mcstas_path(str path) # sets mcstas path + └── set_line_length(int length) # sets maximum line length + + mcstasscript plotter + ├── make_plot(list McStasData) # Plots each data set individually + ├── make_sub_plot(list McStasData) # Plots data as subplot + └── interface(list McStasData) # Shows plotting interface in jupyter notebook + + mcstasscript reader + └── McStas_file(str filename) # Returns a reader that can extract information from given instr file + + InstrumentReader # returned by McStas_file + ├── generate_python_file(str filename) # Writes python file with information contaiend in isntrument + └── add_to_instr(McStas_instr Instr) # Adds information from instrument to McStasScirpt instrument diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 00000000..d0c3cbf1 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 00000000..6fcf05b4 --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +if "%1" == "" goto help + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 00000000..39e17c5a --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,2 @@ +nbsphinx +sphinx-book-theme diff --git a/docs/source/_autosummary/mcstasscript.data.data.McStasData.rst b/docs/source/_autosummary/mcstasscript.data.data.McStasData.rst new file mode 100644 index 00000000..9a95b288 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.data.data.McStasData.rst @@ -0,0 +1,29 @@ +mcstasscript.data.data.McStasData +================================= + +.. currentmodule:: mcstasscript.data.data + +.. autoclass:: McStasData + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McStasData.__init__ + ~McStasData.get_data_location + ~McStasData.set_data_location + ~McStasData.set_plot_options + ~McStasData.set_title + ~McStasData.set_xlabel + ~McStasData.set_ylabel + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.data.data.McStasDataBinned.rst b/docs/source/_autosummary/mcstasscript.data.data.McStasDataBinned.rst new file mode 100644 index 00000000..71b2c76a --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.data.data.McStasDataBinned.rst @@ -0,0 +1,29 @@ +mcstasscript.data.data.McStasDataBinned +======================================= + +.. currentmodule:: mcstasscript.data.data + +.. autoclass:: McStasDataBinned + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McStasDataBinned.__init__ + ~McStasDataBinned.get_data_location + ~McStasDataBinned.set_data_location + ~McStasDataBinned.set_plot_options + ~McStasDataBinned.set_title + ~McStasDataBinned.set_xlabel + ~McStasDataBinned.set_ylabel + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.data.data.McStasDataEvent.rst b/docs/source/_autosummary/mcstasscript.data.data.McStasDataEvent.rst new file mode 100644 index 00000000..6984859d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.data.data.McStasDataEvent.rst @@ -0,0 +1,29 @@ +mcstasscript.data.data.McStasDataEvent +====================================== + +.. currentmodule:: mcstasscript.data.data + +.. autoclass:: McStasDataEvent + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McStasDataEvent.__init__ + ~McStasDataEvent.get_data_location + ~McStasDataEvent.set_data_location + ~McStasDataEvent.set_plot_options + ~McStasDataEvent.set_title + ~McStasDataEvent.set_xlabel + ~McStasDataEvent.set_ylabel + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.data.data.McStasMetaData.rst b/docs/source/_autosummary/mcstasscript.data.data.McStasMetaData.rst new file mode 100644 index 00000000..188a1b20 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.data.data.McStasMetaData.rst @@ -0,0 +1,28 @@ +mcstasscript.data.data.McStasMetaData +===================================== + +.. currentmodule:: mcstasscript.data.data + +.. autoclass:: McStasMetaData + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McStasMetaData.__init__ + ~McStasMetaData.add_info + ~McStasMetaData.extract_info + ~McStasMetaData.set_title + ~McStasMetaData.set_xlabel + ~McStasMetaData.set_ylabel + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.data.data.McStasPlotOptions.rst b/docs/source/_autosummary/mcstasscript.data.data.McStasPlotOptions.rst new file mode 100644 index 00000000..b224de26 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.data.data.McStasPlotOptions.rst @@ -0,0 +1,24 @@ +mcstasscript.data.data.McStasPlotOptions +======================================== + +.. currentmodule:: mcstasscript.data.data + +.. autoclass:: McStasPlotOptions + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McStasPlotOptions.__init__ + ~McStasPlotOptions.set_options + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.data.data.rst b/docs/source/_autosummary/mcstasscript.data.data.rst new file mode 100644 index 00000000..6c2fabdf --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.data.data.rst @@ -0,0 +1,35 @@ +mcstasscript.data.data +====================== + +.. automodule:: mcstasscript.data.data + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + McStasData + McStasDataBinned + McStasDataEvent + McStasMetaData + McStasPlotOptions + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.data.rst b/docs/source/_autosummary/mcstasscript.data.rst new file mode 100644 index 00000000..cc6e60e1 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.data.rst @@ -0,0 +1,32 @@ +mcstasscript.data +================= + +.. automodule:: mcstasscript.data + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: + + mcstasscript.data.data + diff --git a/docs/source/_autosummary/mcstasscript.helper.component_reader.ComponentInfo.rst b/docs/source/_autosummary/mcstasscript.helper.component_reader.ComponentInfo.rst new file mode 100644 index 00000000..8c5c4145 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.component_reader.ComponentInfo.rst @@ -0,0 +1,23 @@ +mcstasscript.helper.component\_reader.ComponentInfo +=================================================== + +.. currentmodule:: mcstasscript.helper.component_reader + +.. autoclass:: ComponentInfo + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~ComponentInfo.__init__ + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.component_reader.ComponentReader.rst b/docs/source/_autosummary/mcstasscript.helper.component_reader.ComponentReader.rst new file mode 100644 index 00000000..f675b66f --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.component_reader.ComponentReader.rst @@ -0,0 +1,29 @@ +mcstasscript.helper.component\_reader.ComponentReader +===================================================== + +.. currentmodule:: mcstasscript.helper.component_reader + +.. autoclass:: ComponentReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~ComponentReader.__init__ + ~ComponentReader.correct_for_brackets + ~ComponentReader.load_all_components + ~ComponentReader.read_component_file + ~ComponentReader.read_name + ~ComponentReader.show_categories + ~ComponentReader.show_components_in_category + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.component_reader.rst b/docs/source/_autosummary/mcstasscript.helper.component_reader.rst new file mode 100644 index 00000000..dde2cd53 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.component_reader.rst @@ -0,0 +1,32 @@ +mcstasscript.helper.component\_reader +===================================== + +.. automodule:: mcstasscript.helper.component_reader + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + ComponentInfo + ComponentReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.helper.formatting.bcolors.rst b/docs/source/_autosummary/mcstasscript.helper.formatting.bcolors.rst new file mode 100644 index 00000000..2d0a6bbe --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.formatting.bcolors.rst @@ -0,0 +1,36 @@ +mcstasscript.helper.formatting.bcolors +====================================== + +.. currentmodule:: mcstasscript.helper.formatting + +.. autoclass:: bcolors + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~bcolors.__init__ + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~bcolors.BOLD + ~bcolors.ENDC + ~bcolors.FAIL + ~bcolors.HEADER + ~bcolors.OKBLUE + ~bcolors.OKGREEN + ~bcolors.UNDERLINE + ~bcolors.WARNING + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.formatting.is_legal_filename.rst b/docs/source/_autosummary/mcstasscript.helper.formatting.is_legal_filename.rst new file mode 100644 index 00000000..5a0a4c19 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.formatting.is_legal_filename.rst @@ -0,0 +1,6 @@ +mcstasscript.helper.formatting.is\_legal\_filename +================================================== + +.. currentmodule:: mcstasscript.helper.formatting + +.. autofunction:: is_legal_filename \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.formatting.is_legal_parameter.rst b/docs/source/_autosummary/mcstasscript.helper.formatting.is_legal_parameter.rst new file mode 100644 index 00000000..2f16d73c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.formatting.is_legal_parameter.rst @@ -0,0 +1,6 @@ +mcstasscript.helper.formatting.is\_legal\_parameter +=================================================== + +.. currentmodule:: mcstasscript.helper.formatting + +.. autofunction:: is_legal_parameter \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.formatting.rst b/docs/source/_autosummary/mcstasscript.helper.formatting.rst new file mode 100644 index 00000000..cce17dcd --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.formatting.rst @@ -0,0 +1,39 @@ +mcstasscript.helper.formatting +============================== + +.. automodule:: mcstasscript.helper.formatting + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + is_legal_filename + is_legal_parameter + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + bcolors + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.ManagedMcrun.rst b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.ManagedMcrun.rst new file mode 100644 index 00000000..f8cf9353 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.ManagedMcrun.rst @@ -0,0 +1,25 @@ +mcstasscript.helper.managed\_mcrun.ManagedMcrun +=============================================== + +.. currentmodule:: mcstasscript.helper.managed_mcrun + +.. autoclass:: ManagedMcrun + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~ManagedMcrun.__init__ + ~ManagedMcrun.load_results + ~ManagedMcrun.run_simulation + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_metadata.rst b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_metadata.rst new file mode 100644 index 00000000..b9847efd --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_metadata.rst @@ -0,0 +1,6 @@ +mcstasscript.helper.managed\_mcrun.load\_metadata +================================================= + +.. currentmodule:: mcstasscript.helper.managed_mcrun + +.. autofunction:: load_metadata \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_monitor.rst b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_monitor.rst new file mode 100644 index 00000000..2a4167a4 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_monitor.rst @@ -0,0 +1,6 @@ +mcstasscript.helper.managed\_mcrun.load\_monitor +================================================ + +.. currentmodule:: mcstasscript.helper.managed_mcrun + +.. autofunction:: load_monitor \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_results.rst b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_results.rst new file mode 100644 index 00000000..0b1ef42d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.load_results.rst @@ -0,0 +1,6 @@ +mcstasscript.helper.managed\_mcrun.load\_results +================================================ + +.. currentmodule:: mcstasscript.helper.managed_mcrun + +.. autofunction:: load_results \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.rst b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.rst new file mode 100644 index 00000000..c4574f67 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.managed_mcrun.rst @@ -0,0 +1,40 @@ +mcstasscript.helper.managed\_mcrun +================================== + +.. automodule:: mcstasscript.helper.managed_mcrun + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + load_metadata + load_monitor + load_results + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + ManagedMcrun + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.Component.rst b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.Component.rst new file mode 100644 index 00000000..9a47c11f --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.Component.rst @@ -0,0 +1,44 @@ +mcstasscript.helper.mcstas\_objects.Component +============================================= + +.. currentmodule:: mcstasscript.helper.mcstas_objects + +.. autoclass:: Component + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Component.__init__ + ~Component.append_EXTEND + ~Component.print_long + ~Component.print_long_deprecated + ~Component.print_short + ~Component.set_AT + ~Component.set_AT_RELATIVE + ~Component.set_GROUP + ~Component.set_JUMP + ~Component.set_RELATIVE + ~Component.set_ROTATED + ~Component.set_ROTATED_RELATIVE + ~Component.set_SPLIT + ~Component.set_WHEN + ~Component.set_c_code_after + ~Component.set_c_code_before + ~Component.set_comment + ~Component.set_keyword_input + ~Component.set_parameters + ~Component.show_parameters + ~Component.show_parameters_simple + ~Component.write_component + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.DeclareVariable.rst b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.DeclareVariable.rst new file mode 100644 index 00000000..7e5d2526 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.DeclareVariable.rst @@ -0,0 +1,24 @@ +mcstasscript.helper.mcstas\_objects.DeclareVariable +=================================================== + +.. currentmodule:: mcstasscript.helper.mcstas_objects + +.. autoclass:: DeclareVariable + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~DeclareVariable.__init__ + ~DeclareVariable.write_line + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.ParameterContainer.rst b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.ParameterContainer.rst new file mode 100644 index 00000000..0c6a3c6b --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.ParameterContainer.rst @@ -0,0 +1,34 @@ +mcstasscript.helper.mcstas\_objects.ParameterContainer +====================================================== + +.. currentmodule:: mcstasscript.helper.mcstas_objects + +.. autoclass:: ParameterContainer + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~ParameterContainer.__init__ + ~ParameterContainer.add + ~ParameterContainer.check_list_type + ~ParameterContainer.check_type + ~ParameterContainer.from_dict + ~ParameterContainer.from_json + ~ParameterContainer.import_parameters + ~ParameterContainer.new_parameter + ~ParameterContainer.print_indented + ~ParameterContainer.show_parameters + ~ParameterContainer.to_dict + ~ParameterContainer.to_json + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.ParameterVariable.rst b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.ParameterVariable.rst new file mode 100644 index 00000000..e12ec0b0 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.ParameterVariable.rst @@ -0,0 +1,38 @@ +mcstasscript.helper.mcstas\_objects.ParameterVariable +===================================================== + +.. currentmodule:: mcstasscript.helper.mcstas_objects + +.. autoclass:: ParameterVariable + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~ParameterVariable.__init__ + ~ParameterVariable.add_interval + ~ParameterVariable.add_option + ~ParameterVariable.clear_intervals + ~ParameterVariable.clear_options + ~ParameterVariable.from_dict + ~ParameterVariable.is_legal + ~ParameterVariable.print_line + ~ParameterVariable.print_paramter_constraints + ~ParameterVariable.write_parameter + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~ParameterVariable.value + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.rst b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.rst new file mode 100644 index 00000000..89382169 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.mcstas_objects.rst @@ -0,0 +1,34 @@ +mcstasscript.helper.mcstas\_objects +=================================== + +.. automodule:: mcstasscript.helper.mcstas_objects + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + Component + DeclareVariable + ParameterContainer + ParameterVariable + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.helper.plot_helper.rst b/docs/source/_autosummary/mcstasscript.helper.plot_helper.rst new file mode 100644 index 00000000..736b3c80 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.plot_helper.rst @@ -0,0 +1,23 @@ +mcstasscript.helper.plot\_helper +================================ + +.. automodule:: mcstasscript.helper.plot_helper + + + + + + + + + + + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.helper.rst b/docs/source/_autosummary/mcstasscript.helper.rst new file mode 100644 index 00000000..d01c6fc2 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.helper.rst @@ -0,0 +1,36 @@ +mcstasscript.helper +=================== + +.. automodule:: mcstasscript.helper + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: + + mcstasscript.helper.component_reader + mcstasscript.helper.formatting + mcstasscript.helper.managed_mcrun + mcstasscript.helper.mcstas_objects + mcstasscript.helper.plot_helper + diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.control.InstrumentReader.rst b/docs/source/_autosummary/mcstasscript.instr_reader.control.InstrumentReader.rst new file mode 100644 index 00000000..1576bcac --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.control.InstrumentReader.rst @@ -0,0 +1,26 @@ +mcstasscript.instr\_reader.control.InstrumentReader +=================================================== + +.. currentmodule:: mcstasscript.instr_reader.control + +.. autoclass:: InstrumentReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~InstrumentReader.__init__ + ~InstrumentReader.add_to_instr + ~InstrumentReader.generate_py_version + ~InstrumentReader.update_file_name + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.control.rst b/docs/source/_autosummary/mcstasscript.instr_reader.control.rst new file mode 100644 index 00000000..449be958 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.control.rst @@ -0,0 +1,31 @@ +mcstasscript.instr\_reader.control +================================== + +.. automodule:: mcstasscript.instr_reader.control + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + InstrumentReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_declare.DeclareReader.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_declare.DeclareReader.rst new file mode 100644 index 00000000..2d30fc1b --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_declare.DeclareReader.rst @@ -0,0 +1,25 @@ +mcstasscript.instr\_reader.read\_declare.DeclareReader +====================================================== + +.. currentmodule:: mcstasscript.instr_reader.read_declare + +.. autoclass:: DeclareReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~DeclareReader.__init__ + ~DeclareReader.read_declare_line + ~DeclareReader.set_instr_name + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_declare.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_declare.rst new file mode 100644 index 00000000..39190174 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_declare.rst @@ -0,0 +1,31 @@ +mcstasscript.instr\_reader.read\_declare +======================================== + +.. automodule:: mcstasscript.instr_reader.read_declare + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + DeclareReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_definition.DefinitionReader.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_definition.DefinitionReader.rst new file mode 100644 index 00000000..63180b97 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_definition.DefinitionReader.rst @@ -0,0 +1,25 @@ +mcstasscript.instr\_reader.read\_definition.DefinitionReader +============================================================ + +.. currentmodule:: mcstasscript.instr_reader.read_definition + +.. autoclass:: DefinitionReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~DefinitionReader.__init__ + ~DefinitionReader.read_definition_line + ~DefinitionReader.set_instr_name + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_definition.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_definition.rst new file mode 100644 index 00000000..a85a4a4e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_definition.rst @@ -0,0 +1,31 @@ +mcstasscript.instr\_reader.read\_definition +=========================================== + +.. automodule:: mcstasscript.instr_reader.read_definition + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + DefinitionReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_finally.FinallyReader.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_finally.FinallyReader.rst new file mode 100644 index 00000000..82a514fa --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_finally.FinallyReader.rst @@ -0,0 +1,25 @@ +mcstasscript.instr\_reader.read\_finally.FinallyReader +====================================================== + +.. currentmodule:: mcstasscript.instr_reader.read_finally + +.. autoclass:: FinallyReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~FinallyReader.__init__ + ~FinallyReader.read_finally_line + ~FinallyReader.set_instr_name + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_finally.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_finally.rst new file mode 100644 index 00000000..aa324d55 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_finally.rst @@ -0,0 +1,31 @@ +mcstasscript.instr\_reader.read\_finally +======================================== + +.. automodule:: mcstasscript.instr_reader.read_finally + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + FinallyReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_initialize.InitializeReader.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_initialize.InitializeReader.rst new file mode 100644 index 00000000..8a853cd5 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_initialize.InitializeReader.rst @@ -0,0 +1,25 @@ +mcstasscript.instr\_reader.read\_initialize.InitializeReader +============================================================ + +.. currentmodule:: mcstasscript.instr_reader.read_initialize + +.. autoclass:: InitializeReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~InitializeReader.__init__ + ~InitializeReader.read_initialize_line + ~InitializeReader.set_instr_name + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_initialize.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_initialize.rst new file mode 100644 index 00000000..9ce7df19 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_initialize.rst @@ -0,0 +1,31 @@ +mcstasscript.instr\_reader.read\_initialize +=========================================== + +.. automodule:: mcstasscript.instr_reader.read_initialize + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + InitializeReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_trace.TraceReader.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_trace.TraceReader.rst new file mode 100644 index 00000000..96205481 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_trace.TraceReader.rst @@ -0,0 +1,26 @@ +mcstasscript.instr\_reader.read\_trace.TraceReader +================================================== + +.. currentmodule:: mcstasscript.instr_reader.read_trace + +.. autoclass:: TraceReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TraceReader.__init__ + ~TraceReader.read_trace_line + ~TraceReader.sanitize_line + ~TraceReader.set_instr_name + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.read_trace.rst b/docs/source/_autosummary/mcstasscript.instr_reader.read_trace.rst new file mode 100644 index 00000000..f7569ae1 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.read_trace.rst @@ -0,0 +1,31 @@ +mcstasscript.instr\_reader.read\_trace +====================================== + +.. automodule:: mcstasscript.instr_reader.read_trace + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TraceReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.rst b/docs/source/_autosummary/mcstasscript.instr_reader.rst new file mode 100644 index 00000000..9d60864b --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.rst @@ -0,0 +1,38 @@ +mcstasscript.instr\_reader +========================== + +.. automodule:: mcstasscript.instr_reader + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: + + mcstasscript.instr_reader.control + mcstasscript.instr_reader.read_declare + mcstasscript.instr_reader.read_definition + mcstasscript.instr_reader.read_finally + mcstasscript.instr_reader.read_initialize + mcstasscript.instr_reader.read_trace + mcstasscript.instr_reader.util + diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.util.SectionReader.rst b/docs/source/_autosummary/mcstasscript.instr_reader.util.SectionReader.rst new file mode 100644 index 00000000..3572e07c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.util.SectionReader.rst @@ -0,0 +1,24 @@ +mcstasscript.instr\_reader.util.SectionReader +============================================= + +.. currentmodule:: mcstasscript.instr_reader.util + +.. autoclass:: SectionReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~SectionReader.__init__ + ~SectionReader.set_instr_name + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.instr_reader.util.rst b/docs/source/_autosummary/mcstasscript.instr_reader.util.rst new file mode 100644 index 00000000..b888ab1b --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.instr_reader.util.rst @@ -0,0 +1,31 @@ +mcstasscript.instr\_reader.util +=============================== + +.. automodule:: mcstasscript.instr_reader.util + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + SectionReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.rst b/docs/source/_autosummary/mcstasscript.integration_tests.rst new file mode 100644 index 00000000..6e92a287 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.rst @@ -0,0 +1,33 @@ +mcstasscript.integration\_tests +=============================== + +.. automodule:: mcstasscript.integration_tests + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: + + mcstasscript.integration_tests.test_complex_instrument + mcstasscript.integration_tests.test_simple_instrument + diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.FakeChange.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.FakeChange.rst new file mode 100644 index 00000000..cfe3a107 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.FakeChange.rst @@ -0,0 +1,23 @@ +mcstasscript.integration\_tests.test\_complex\_instrument.FakeChange +==================================================================== + +.. currentmodule:: mcstasscript.integration_tests.test_complex_instrument + +.. autoclass:: FakeChange + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~FakeChange.__init__ + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.TestComplexInstrument.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.TestComplexInstrument.rst new file mode 100644 index 00000000..97423d77 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.TestComplexInstrument.rst @@ -0,0 +1,98 @@ +mcstasscript.integration\_tests.test\_complex\_instrument.TestComplexInstrument +=============================================================================== + +.. currentmodule:: mcstasscript.integration_tests.test_complex_instrument + +.. autoclass:: TestComplexInstrument + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestComplexInstrument.__init__ + ~TestComplexInstrument.addClassCleanup + ~TestComplexInstrument.addCleanup + ~TestComplexInstrument.addTypeEqualityFunc + ~TestComplexInstrument.assertAlmostEqual + ~TestComplexInstrument.assertAlmostEquals + ~TestComplexInstrument.assertCountEqual + ~TestComplexInstrument.assertDictContainsSubset + ~TestComplexInstrument.assertDictEqual + ~TestComplexInstrument.assertEqual + ~TestComplexInstrument.assertEquals + ~TestComplexInstrument.assertFalse + ~TestComplexInstrument.assertGreater + ~TestComplexInstrument.assertGreaterEqual + ~TestComplexInstrument.assertIn + ~TestComplexInstrument.assertIs + ~TestComplexInstrument.assertIsInstance + ~TestComplexInstrument.assertIsNone + ~TestComplexInstrument.assertIsNot + ~TestComplexInstrument.assertIsNotNone + ~TestComplexInstrument.assertLess + ~TestComplexInstrument.assertLessEqual + ~TestComplexInstrument.assertListEqual + ~TestComplexInstrument.assertLogs + ~TestComplexInstrument.assertMultiLineEqual + ~TestComplexInstrument.assertNotAlmostEqual + ~TestComplexInstrument.assertNotAlmostEquals + ~TestComplexInstrument.assertNotEqual + ~TestComplexInstrument.assertNotEquals + ~TestComplexInstrument.assertNotIn + ~TestComplexInstrument.assertNotIsInstance + ~TestComplexInstrument.assertNotRegex + ~TestComplexInstrument.assertNotRegexpMatches + ~TestComplexInstrument.assertRaises + ~TestComplexInstrument.assertRaisesRegex + ~TestComplexInstrument.assertRaisesRegexp + ~TestComplexInstrument.assertRegex + ~TestComplexInstrument.assertRegexpMatches + ~TestComplexInstrument.assertSequenceEqual + ~TestComplexInstrument.assertSetEqual + ~TestComplexInstrument.assertTrue + ~TestComplexInstrument.assertTupleEqual + ~TestComplexInstrument.assertWarns + ~TestComplexInstrument.assertWarnsRegex + ~TestComplexInstrument.assert_ + ~TestComplexInstrument.countTestCases + ~TestComplexInstrument.debug + ~TestComplexInstrument.defaultTestResult + ~TestComplexInstrument.doClassCleanups + ~TestComplexInstrument.doCleanups + ~TestComplexInstrument.fail + ~TestComplexInstrument.failIf + ~TestComplexInstrument.failIfAlmostEqual + ~TestComplexInstrument.failIfEqual + ~TestComplexInstrument.failUnless + ~TestComplexInstrument.failUnlessAlmostEqual + ~TestComplexInstrument.failUnlessEqual + ~TestComplexInstrument.failUnlessRaises + ~TestComplexInstrument.id + ~TestComplexInstrument.run + ~TestComplexInstrument.setUp + ~TestComplexInstrument.setUpClass + ~TestComplexInstrument.shortDescription + ~TestComplexInstrument.skipTest + ~TestComplexInstrument.subTest + ~TestComplexInstrument.tearDown + ~TestComplexInstrument.tearDownClass + ~TestComplexInstrument.test_complex_instrument_interface + ~TestComplexInstrument.test_complex_instrument_run + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestComplexInstrument.longMessage + ~TestComplexInstrument.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.rst new file mode 100644 index 00000000..c4278c98 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.rst @@ -0,0 +1,39 @@ +mcstasscript.integration\_tests.test\_complex\_instrument +========================================================= + +.. automodule:: mcstasscript.integration_tests.test_complex_instrument + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + setup_complex_instrument + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + FakeChange + TestComplexInstrument + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.setup_complex_instrument.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.setup_complex_instrument.rst new file mode 100644 index 00000000..91b6982c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_complex_instrument.setup_complex_instrument.rst @@ -0,0 +1,6 @@ +mcstasscript.integration\_tests.test\_complex\_instrument.setup\_complex\_instrument +==================================================================================== + +.. currentmodule:: mcstasscript.integration_tests.test_complex_instrument + +.. autofunction:: setup_complex_instrument \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.TestSimpleInstrument.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.TestSimpleInstrument.rst new file mode 100644 index 00000000..09e4dc2a --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.TestSimpleInstrument.rst @@ -0,0 +1,101 @@ +mcstasscript.integration\_tests.test\_simple\_instrument.TestSimpleInstrument +============================================================================= + +.. currentmodule:: mcstasscript.integration_tests.test_simple_instrument + +.. autoclass:: TestSimpleInstrument + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestSimpleInstrument.__init__ + ~TestSimpleInstrument.addClassCleanup + ~TestSimpleInstrument.addCleanup + ~TestSimpleInstrument.addTypeEqualityFunc + ~TestSimpleInstrument.assertAlmostEqual + ~TestSimpleInstrument.assertAlmostEquals + ~TestSimpleInstrument.assertCountEqual + ~TestSimpleInstrument.assertDictContainsSubset + ~TestSimpleInstrument.assertDictEqual + ~TestSimpleInstrument.assertEqual + ~TestSimpleInstrument.assertEquals + ~TestSimpleInstrument.assertFalse + ~TestSimpleInstrument.assertGreater + ~TestSimpleInstrument.assertGreaterEqual + ~TestSimpleInstrument.assertIn + ~TestSimpleInstrument.assertIs + ~TestSimpleInstrument.assertIsInstance + ~TestSimpleInstrument.assertIsNone + ~TestSimpleInstrument.assertIsNot + ~TestSimpleInstrument.assertIsNotNone + ~TestSimpleInstrument.assertLess + ~TestSimpleInstrument.assertLessEqual + ~TestSimpleInstrument.assertListEqual + ~TestSimpleInstrument.assertLogs + ~TestSimpleInstrument.assertMultiLineEqual + ~TestSimpleInstrument.assertNotAlmostEqual + ~TestSimpleInstrument.assertNotAlmostEquals + ~TestSimpleInstrument.assertNotEqual + ~TestSimpleInstrument.assertNotEquals + ~TestSimpleInstrument.assertNotIn + ~TestSimpleInstrument.assertNotIsInstance + ~TestSimpleInstrument.assertNotRegex + ~TestSimpleInstrument.assertNotRegexpMatches + ~TestSimpleInstrument.assertRaises + ~TestSimpleInstrument.assertRaisesRegex + ~TestSimpleInstrument.assertRaisesRegexp + ~TestSimpleInstrument.assertRegex + ~TestSimpleInstrument.assertRegexpMatches + ~TestSimpleInstrument.assertSequenceEqual + ~TestSimpleInstrument.assertSetEqual + ~TestSimpleInstrument.assertTrue + ~TestSimpleInstrument.assertTupleEqual + ~TestSimpleInstrument.assertWarns + ~TestSimpleInstrument.assertWarnsRegex + ~TestSimpleInstrument.assert_ + ~TestSimpleInstrument.countTestCases + ~TestSimpleInstrument.debug + ~TestSimpleInstrument.defaultTestResult + ~TestSimpleInstrument.doClassCleanups + ~TestSimpleInstrument.doCleanups + ~TestSimpleInstrument.fail + ~TestSimpleInstrument.failIf + ~TestSimpleInstrument.failIfAlmostEqual + ~TestSimpleInstrument.failIfEqual + ~TestSimpleInstrument.failUnless + ~TestSimpleInstrument.failUnlessAlmostEqual + ~TestSimpleInstrument.failUnlessEqual + ~TestSimpleInstrument.failUnlessRaises + ~TestSimpleInstrument.id + ~TestSimpleInstrument.run + ~TestSimpleInstrument.setUp + ~TestSimpleInstrument.setUpClass + ~TestSimpleInstrument.shortDescription + ~TestSimpleInstrument.skipTest + ~TestSimpleInstrument.subTest + ~TestSimpleInstrument.tearDown + ~TestSimpleInstrument.tearDownClass + ~TestSimpleInstrument.test_simple_instrument + ~TestSimpleInstrument.test_simple_instrument_input + ~TestSimpleInstrument.test_simple_instrument_mpi + ~TestSimpleInstrument.test_slit_instrument + ~TestSimpleInstrument.test_slit_moved_instrument + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestSimpleInstrument.longMessage + ~TestSimpleInstrument.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.rst new file mode 100644 index 00000000..886d97e4 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.rst @@ -0,0 +1,40 @@ +mcstasscript.integration\_tests.test\_simple\_instrument +======================================================== + +.. automodule:: mcstasscript.integration_tests.test_simple_instrument + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + setup_simple_instrument + setup_simple_instrument_input_path + setup_simple_slit_instrument + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestSimpleInstrument + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_instrument.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_instrument.rst new file mode 100644 index 00000000..f01243a0 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_instrument.rst @@ -0,0 +1,6 @@ +mcstasscript.integration\_tests.test\_simple\_instrument.setup\_simple\_instrument +================================================================================== + +.. currentmodule:: mcstasscript.integration_tests.test_simple_instrument + +.. autofunction:: setup_simple_instrument \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_instrument_input_path.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_instrument_input_path.rst new file mode 100644 index 00000000..71fa9e01 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_instrument_input_path.rst @@ -0,0 +1,6 @@ +mcstasscript.integration\_tests.test\_simple\_instrument.setup\_simple\_instrument\_input\_path +=============================================================================================== + +.. currentmodule:: mcstasscript.integration_tests.test_simple_instrument + +.. autofunction:: setup_simple_instrument_input_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_slit_instrument.rst b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_slit_instrument.rst new file mode 100644 index 00000000..3cca106b --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.integration_tests.test_simple_instrument.setup_simple_slit_instrument.rst @@ -0,0 +1,6 @@ +mcstasscript.integration\_tests.test\_simple\_instrument.setup\_simple\_slit\_instrument +======================================================================================== + +.. currentmodule:: mcstasscript.integration_tests.test_simple_instrument + +.. autofunction:: setup_simple_slit_instrument \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.functions.Configurator.rst b/docs/source/_autosummary/mcstasscript.interface.functions.Configurator.rst new file mode 100644 index 00000000..06328851 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.functions.Configurator.rst @@ -0,0 +1,28 @@ +mcstasscript.interface.functions.Configurator +============================================= + +.. currentmodule:: mcstasscript.interface.functions + +.. autoclass:: Configurator + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Configurator.__init__ + ~Configurator.set_line_length + ~Configurator.set_mcrun_path + ~Configurator.set_mcstas_path + ~Configurator.set_mcxtrace_path + ~Configurator.set_mxrun_path + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.functions.load_data.rst b/docs/source/_autosummary/mcstasscript.interface.functions.load_data.rst new file mode 100644 index 00000000..b9ef5a89 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.functions.load_data.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.functions.load\_data +=========================================== + +.. currentmodule:: mcstasscript.interface.functions + +.. autofunction:: load_data \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.functions.load_metadata.rst b/docs/source/_autosummary/mcstasscript.interface.functions.load_metadata.rst new file mode 100644 index 00000000..5706faaf --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.functions.load_metadata.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.functions.load\_metadata +=============================================== + +.. currentmodule:: mcstasscript.interface.functions + +.. autofunction:: load_metadata \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.functions.load_monitor.rst b/docs/source/_autosummary/mcstasscript.interface.functions.load_monitor.rst new file mode 100644 index 00000000..49cea964 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.functions.load_monitor.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.functions.load\_monitor +============================================== + +.. currentmodule:: mcstasscript.interface.functions + +.. autofunction:: load_monitor \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.functions.name_plot_options.rst b/docs/source/_autosummary/mcstasscript.interface.functions.name_plot_options.rst new file mode 100644 index 00000000..d16ed3c6 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.functions.name_plot_options.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.functions.name\_plot\_options +==================================================== + +.. currentmodule:: mcstasscript.interface.functions + +.. autofunction:: name_plot_options \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.functions.name_search.rst b/docs/source/_autosummary/mcstasscript.interface.functions.name_search.rst new file mode 100644 index 00000000..467c69ab --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.functions.name_search.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.functions.name\_search +============================================= + +.. currentmodule:: mcstasscript.interface.functions + +.. autofunction:: name_search \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.functions.rst b/docs/source/_autosummary/mcstasscript.interface.functions.rst new file mode 100644 index 00000000..de157e23 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.functions.rst @@ -0,0 +1,42 @@ +mcstasscript.interface.functions +================================ + +.. automodule:: mcstasscript.interface.functions + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + load_data + load_metadata + load_monitor + name_plot_options + name_search + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + Configurator + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.interface.instr.McCode_instr.rst b/docs/source/_autosummary/mcstasscript.interface.instr.McCode_instr.rst new file mode 100644 index 00000000..a2389736 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.instr.McCode_instr.rst @@ -0,0 +1,76 @@ +mcstasscript.interface.instr.McCode\_instr +========================================== + +.. currentmodule:: mcstasscript.interface.instr + +.. autoclass:: McCode_instr + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McCode_instr.__init__ + ~McCode_instr.add_component + ~McCode_instr.add_declare_var + ~McCode_instr.add_parameter + ~McCode_instr.append_component_EXTEND + ~McCode_instr.append_declare + ~McCode_instr.append_finally + ~McCode_instr.append_finally_no_new_line + ~McCode_instr.append_initialize + ~McCode_instr.append_initialize_no_new_line + ~McCode_instr.append_trace + ~McCode_instr.append_trace_no_new_line + ~McCode_instr.backengine + ~McCode_instr.component_help + ~McCode_instr.copy_component + ~McCode_instr.dump + ~McCode_instr.get_component + ~McCode_instr.get_interface_data + ~McCode_instr.get_last_component + ~McCode_instr.interface + ~McCode_instr.print_component + ~McCode_instr.print_component_short + ~McCode_instr.print_components + ~McCode_instr.run_from_cli + ~McCode_instr.run_full_instrument + ~McCode_instr.saveH5 + ~McCode_instr.set_component_AT + ~McCode_instr.set_component_GROUP + ~McCode_instr.set_component_JUMP + ~McCode_instr.set_component_RELATIVE + ~McCode_instr.set_component_ROTATED + ~McCode_instr.set_component_SPLIT + ~McCode_instr.set_component_WHEN + ~McCode_instr.set_component_c_code_after + ~McCode_instr.set_component_c_code_before + ~McCode_instr.set_component_comment + ~McCode_instr.set_component_parameter + ~McCode_instr.set_parameters + ~McCode_instr.settings + ~McCode_instr.settings_string + ~McCode_instr.show_components + ~McCode_instr.show_instrument + ~McCode_instr.show_parameters + ~McCode_instr.show_settings + ~McCode_instr.show_variables + ~McCode_instr.write_c_files + ~McCode_instr.write_full_instrument + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~McCode_instr.data + ~McCode_instr.parameters + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.instr.McStas_instr.rst b/docs/source/_autosummary/mcstasscript.interface.instr.McStas_instr.rst new file mode 100644 index 00000000..e63ff84e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.instr.McStas_instr.rst @@ -0,0 +1,76 @@ +mcstasscript.interface.instr.McStas\_instr +========================================== + +.. currentmodule:: mcstasscript.interface.instr + +.. autoclass:: McStas_instr + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McStas_instr.__init__ + ~McStas_instr.add_component + ~McStas_instr.add_declare_var + ~McStas_instr.add_parameter + ~McStas_instr.append_component_EXTEND + ~McStas_instr.append_declare + ~McStas_instr.append_finally + ~McStas_instr.append_finally_no_new_line + ~McStas_instr.append_initialize + ~McStas_instr.append_initialize_no_new_line + ~McStas_instr.append_trace + ~McStas_instr.append_trace_no_new_line + ~McStas_instr.backengine + ~McStas_instr.component_help + ~McStas_instr.copy_component + ~McStas_instr.dump + ~McStas_instr.get_component + ~McStas_instr.get_interface_data + ~McStas_instr.get_last_component + ~McStas_instr.interface + ~McStas_instr.print_component + ~McStas_instr.print_component_short + ~McStas_instr.print_components + ~McStas_instr.run_from_cli + ~McStas_instr.run_full_instrument + ~McStas_instr.saveH5 + ~McStas_instr.set_component_AT + ~McStas_instr.set_component_GROUP + ~McStas_instr.set_component_JUMP + ~McStas_instr.set_component_RELATIVE + ~McStas_instr.set_component_ROTATED + ~McStas_instr.set_component_SPLIT + ~McStas_instr.set_component_WHEN + ~McStas_instr.set_component_c_code_after + ~McStas_instr.set_component_c_code_before + ~McStas_instr.set_component_comment + ~McStas_instr.set_component_parameter + ~McStas_instr.set_parameters + ~McStas_instr.settings + ~McStas_instr.settings_string + ~McStas_instr.show_components + ~McStas_instr.show_instrument + ~McStas_instr.show_parameters + ~McStas_instr.show_settings + ~McStas_instr.show_variables + ~McStas_instr.write_c_files + ~McStas_instr.write_full_instrument + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~McStas_instr.data + ~McStas_instr.parameters + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.instr.McXtrace_instr.rst b/docs/source/_autosummary/mcstasscript.interface.instr.McXtrace_instr.rst new file mode 100644 index 00000000..69b3a723 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.instr.McXtrace_instr.rst @@ -0,0 +1,76 @@ +mcstasscript.interface.instr.McXtrace\_instr +============================================ + +.. currentmodule:: mcstasscript.interface.instr + +.. autoclass:: McXtrace_instr + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McXtrace_instr.__init__ + ~McXtrace_instr.add_component + ~McXtrace_instr.add_declare_var + ~McXtrace_instr.add_parameter + ~McXtrace_instr.append_component_EXTEND + ~McXtrace_instr.append_declare + ~McXtrace_instr.append_finally + ~McXtrace_instr.append_finally_no_new_line + ~McXtrace_instr.append_initialize + ~McXtrace_instr.append_initialize_no_new_line + ~McXtrace_instr.append_trace + ~McXtrace_instr.append_trace_no_new_line + ~McXtrace_instr.backengine + ~McXtrace_instr.component_help + ~McXtrace_instr.copy_component + ~McXtrace_instr.dump + ~McXtrace_instr.get_component + ~McXtrace_instr.get_interface_data + ~McXtrace_instr.get_last_component + ~McXtrace_instr.interface + ~McXtrace_instr.print_component + ~McXtrace_instr.print_component_short + ~McXtrace_instr.print_components + ~McXtrace_instr.run_from_cli + ~McXtrace_instr.run_full_instrument + ~McXtrace_instr.saveH5 + ~McXtrace_instr.set_component_AT + ~McXtrace_instr.set_component_GROUP + ~McXtrace_instr.set_component_JUMP + ~McXtrace_instr.set_component_RELATIVE + ~McXtrace_instr.set_component_ROTATED + ~McXtrace_instr.set_component_SPLIT + ~McXtrace_instr.set_component_WHEN + ~McXtrace_instr.set_component_c_code_after + ~McXtrace_instr.set_component_c_code_before + ~McXtrace_instr.set_component_comment + ~McXtrace_instr.set_component_parameter + ~McXtrace_instr.set_parameters + ~McXtrace_instr.settings + ~McXtrace_instr.settings_string + ~McXtrace_instr.show_components + ~McXtrace_instr.show_instrument + ~McXtrace_instr.show_parameters + ~McXtrace_instr.show_settings + ~McXtrace_instr.show_variables + ~McXtrace_instr.write_c_files + ~McXtrace_instr.write_full_instrument + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~McXtrace_instr.data + ~McXtrace_instr.parameters + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.instr.rst b/docs/source/_autosummary/mcstasscript.interface.instr.rst new file mode 100644 index 00000000..02536e4d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.instr.rst @@ -0,0 +1,33 @@ +mcstasscript.interface.instr +============================ + +.. automodule:: mcstasscript.interface.instr + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + McCode_instr + McStas_instr + McXtrace_instr + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.interface.plotter.interface.rst b/docs/source/_autosummary/mcstasscript.interface.plotter.interface.rst new file mode 100644 index 00000000..7c1dd213 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.plotter.interface.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.plotter.interface +======================================== + +.. currentmodule:: mcstasscript.interface.plotter + +.. autofunction:: interface \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.plotter.make_animation.rst b/docs/source/_autosummary/mcstasscript.interface.plotter.make_animation.rst new file mode 100644 index 00000000..51b83934 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.plotter.make_animation.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.plotter.make\_animation +============================================== + +.. currentmodule:: mcstasscript.interface.plotter + +.. autofunction:: make_animation \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.plotter.make_plot.rst b/docs/source/_autosummary/mcstasscript.interface.plotter.make_plot.rst new file mode 100644 index 00000000..4e9253c7 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.plotter.make_plot.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.plotter.make\_plot +========================================= + +.. currentmodule:: mcstasscript.interface.plotter + +.. autofunction:: make_plot \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.plotter.make_sub_plot.rst b/docs/source/_autosummary/mcstasscript.interface.plotter.make_sub_plot.rst new file mode 100644 index 00000000..5727a25d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.plotter.make_sub_plot.rst @@ -0,0 +1,6 @@ +mcstasscript.interface.plotter.make\_sub\_plot +============================================== + +.. currentmodule:: mcstasscript.interface.plotter + +.. autofunction:: make_sub_plot \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.plotter.rst b/docs/source/_autosummary/mcstasscript.interface.plotter.rst new file mode 100644 index 00000000..a799b32a --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.plotter.rst @@ -0,0 +1,33 @@ +mcstasscript.interface.plotter +============================== + +.. automodule:: mcstasscript.interface.plotter + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + interface + make_animation + make_plot + make_sub_plot + + + + + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.interface.reader.McStas_file.rst b/docs/source/_autosummary/mcstasscript.interface.reader.McStas_file.rst new file mode 100644 index 00000000..78a3ce68 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.reader.McStas_file.rst @@ -0,0 +1,25 @@ +mcstasscript.interface.reader.McStas\_file +========================================== + +.. currentmodule:: mcstasscript.interface.reader + +.. autoclass:: McStas_file + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~McStas_file.__init__ + ~McStas_file.add_to_instr + ~McStas_file.write_python_file + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.interface.reader.rst b/docs/source/_autosummary/mcstasscript.interface.reader.rst new file mode 100644 index 00000000..88f65cc5 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.reader.rst @@ -0,0 +1,31 @@ +mcstasscript.interface.reader +============================= + +.. automodule:: mcstasscript.interface.reader + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + McStas_file + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.interface.rst b/docs/source/_autosummary/mcstasscript.interface.rst new file mode 100644 index 00000000..048758cc --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.interface.rst @@ -0,0 +1,35 @@ +mcstasscript.interface +====================== + +.. automodule:: mcstasscript.interface + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: + + mcstasscript.interface.functions + mcstasscript.interface.instr + mcstasscript.interface.plotter + mcstasscript.interface.reader + diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.ColormapDropdown.rst b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.ColormapDropdown.rst new file mode 100644 index 00000000..f79ebc3b --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.ColormapDropdown.rst @@ -0,0 +1,26 @@ +mcstasscript.jb\_interface.plot\_interface.ColormapDropdown +=========================================================== + +.. currentmodule:: mcstasscript.jb_interface.plot_interface + +.. autoclass:: ColormapDropdown + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~ColormapDropdown.__init__ + ~ColormapDropdown.make_widget + ~ColormapDropdown.update_cmap + ~ColormapDropdown.update_cmap_options + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.LogCheckbox.rst b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.LogCheckbox.rst new file mode 100644 index 00000000..d2ff0f1e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.LogCheckbox.rst @@ -0,0 +1,25 @@ +mcstasscript.jb\_interface.plot\_interface.LogCheckbox +====================================================== + +.. currentmodule:: mcstasscript.jb_interface.plot_interface + +.. autoclass:: LogCheckbox + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~LogCheckbox.__init__ + ~LogCheckbox.make_widget + ~LogCheckbox.update + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.MonitorDropdown.rst b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.MonitorDropdown.rst new file mode 100644 index 00000000..778002c3 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.MonitorDropdown.rst @@ -0,0 +1,26 @@ +mcstasscript.jb\_interface.plot\_interface.MonitorDropdown +========================================================== + +.. currentmodule:: mcstasscript.jb_interface.plot_interface + +.. autoclass:: MonitorDropdown + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~MonitorDropdown.__init__ + ~MonitorDropdown.make_widget + ~MonitorDropdown.set_data + ~MonitorDropdown.update + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.OrdersOfMagField.rst b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.OrdersOfMagField.rst new file mode 100644 index 00000000..d03b870a --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.OrdersOfMagField.rst @@ -0,0 +1,25 @@ +mcstasscript.jb\_interface.plot\_interface.OrdersOfMagField +=========================================================== + +.. currentmodule:: mcstasscript.jb_interface.plot_interface + +.. autoclass:: OrdersOfMagField + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~OrdersOfMagField.__init__ + ~OrdersOfMagField.make_widget + ~OrdersOfMagField.update + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.PlotInterface.rst b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.PlotInterface.rst new file mode 100644 index 00000000..e05ae3c4 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.PlotInterface.rst @@ -0,0 +1,31 @@ +mcstasscript.jb\_interface.plot\_interface.PlotInterface +======================================================== + +.. currentmodule:: mcstasscript.jb_interface.plot_interface + +.. autoclass:: PlotInterface + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~PlotInterface.__init__ + ~PlotInterface.new_plot + ~PlotInterface.set_colormap + ~PlotInterface.set_current_monitor + ~PlotInterface.set_data + ~PlotInterface.set_log_mode + ~PlotInterface.set_orders_of_mag + ~PlotInterface.show_interface + ~PlotInterface.update_plot + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.rst b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.rst new file mode 100644 index 00000000..873329b2 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.plot_interface.rst @@ -0,0 +1,35 @@ +mcstasscript.jb\_interface.plot\_interface +========================================== + +.. automodule:: mcstasscript.jb_interface.plot_interface + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + ColormapDropdown + LogCheckbox + MonitorDropdown + OrdersOfMagField + PlotInterface + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.rst b/docs/source/_autosummary/mcstasscript.jb_interface.rst new file mode 100644 index 00000000..edd731de --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.rst @@ -0,0 +1,34 @@ +mcstasscript.jb\_interface +========================== + +.. automodule:: mcstasscript.jb_interface + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: + + mcstasscript.jb_interface.plot_interface + mcstasscript.jb_interface.simulation_interface + mcstasscript.jb_interface.widget_helpers + diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.ParameterWidget.rst b/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.ParameterWidget.rst new file mode 100644 index 00000000..830f8c0b --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.ParameterWidget.rst @@ -0,0 +1,25 @@ +mcstasscript.jb\_interface.simulation\_interface.ParameterWidget +================================================================ + +.. currentmodule:: mcstasscript.jb_interface.simulation_interface + +.. autoclass:: ParameterWidget + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~ParameterWidget.__init__ + ~ParameterWidget.make_widget + ~ParameterWidget.update + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.SimInterface.rst b/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.SimInterface.rst new file mode 100644 index 00000000..58c4f624 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.SimInterface.rst @@ -0,0 +1,34 @@ +mcstasscript.jb\_interface.simulation\_interface.SimInterface +============================================================= + +.. currentmodule:: mcstasscript.jb_interface.simulation_interface + +.. autoclass:: SimInterface + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~SimInterface.__init__ + ~SimInterface.make_live_checkmark + ~SimInterface.make_mpi_field + ~SimInterface.make_ncount_field + ~SimInterface.make_parameter_widgets + ~SimInterface.make_progress_bar + ~SimInterface.make_run_button + ~SimInterface.run_simulation_live + ~SimInterface.run_simulation_thread + ~SimInterface.show_interface + ~SimInterface.update_mpi + ~SimInterface.update_ncount + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.add_data.rst b/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.add_data.rst new file mode 100644 index 00000000..d47dcbef --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.add_data.rst @@ -0,0 +1,6 @@ +mcstasscript.jb\_interface.simulation\_interface.add\_data +========================================================== + +.. currentmodule:: mcstasscript.jb_interface.simulation_interface + +.. autofunction:: add_data \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.rst b/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.rst new file mode 100644 index 00000000..36110602 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.simulation_interface.rst @@ -0,0 +1,39 @@ +mcstasscript.jb\_interface.simulation\_interface +================================================ + +.. automodule:: mcstasscript.jb_interface.simulation_interface + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + add_data + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + ParameterWidget + SimInterface + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.HiddenPrints.rst b/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.HiddenPrints.rst new file mode 100644 index 00000000..2b4d5708 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.HiddenPrints.rst @@ -0,0 +1,23 @@ +mcstasscript.jb\_interface.widget\_helpers.HiddenPrints +======================================================= + +.. currentmodule:: mcstasscript.jb_interface.widget_helpers + +.. autoclass:: HiddenPrints + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~HiddenPrints.__init__ + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.get_parameter_default.rst b/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.get_parameter_default.rst new file mode 100644 index 00000000..a32a7179 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.get_parameter_default.rst @@ -0,0 +1,6 @@ +mcstasscript.jb\_interface.widget\_helpers.get\_parameter\_default +================================================================== + +.. currentmodule:: mcstasscript.jb_interface.widget_helpers + +.. autofunction:: get_parameter_default \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.parameter_has_default.rst b/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.parameter_has_default.rst new file mode 100644 index 00000000..236c530b --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.parameter_has_default.rst @@ -0,0 +1,6 @@ +mcstasscript.jb\_interface.widget\_helpers.parameter\_has\_default +================================================================== + +.. currentmodule:: mcstasscript.jb_interface.widget_helpers + +.. autofunction:: parameter_has_default \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.rst b/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.rst new file mode 100644 index 00000000..46adefe8 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.jb_interface.widget_helpers.rst @@ -0,0 +1,39 @@ +mcstasscript.jb\_interface.widget\_helpers +========================================== + +.. automodule:: mcstasscript.jb_interface.widget_helpers + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + get_parameter_default + parameter_has_default + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + HiddenPrints + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.rst b/docs/source/_autosummary/mcstasscript.rst new file mode 100644 index 00000000..4295f961 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.rst @@ -0,0 +1,38 @@ +mcstasscript +============ + +.. automodule:: mcstasscript + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: + + mcstasscript.data + mcstasscript.helper + mcstasscript.instr_reader + mcstasscript.integration_tests + mcstasscript.interface + mcstasscript.jb_interface + mcstasscript.tests + diff --git a/docs/source/_autosummary/mcstasscript.tests.helpers_for_tests.WorkInTestDir.rst b/docs/source/_autosummary/mcstasscript.tests.helpers_for_tests.WorkInTestDir.rst new file mode 100644 index 00000000..15539529 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.helpers_for_tests.WorkInTestDir.rst @@ -0,0 +1,23 @@ +mcstasscript.tests.helpers\_for\_tests.WorkInTestDir +==================================================== + +.. currentmodule:: mcstasscript.tests.helpers_for_tests + +.. autoclass:: WorkInTestDir + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~WorkInTestDir.__init__ + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.helpers_for_tests.rst b/docs/source/_autosummary/mcstasscript.tests.helpers_for_tests.rst new file mode 100644 index 00000000..43572439 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.helpers_for_tests.rst @@ -0,0 +1,31 @@ +mcstasscript.tests.helpers\_for\_tests +====================================== + +.. automodule:: mcstasscript.tests.helpers_for_tests + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + WorkInTestDir + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.rst b/docs/source/_autosummary/mcstasscript.tests.rst new file mode 100644 index 00000000..6c41dc46 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.rst @@ -0,0 +1,52 @@ +mcstasscript.tests +================== + +.. automodule:: mcstasscript.tests + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: + + mcstasscript.tests.helpers_for_tests + mcstasscript.tests.test_ComponentReader + mcstasscript.tests.test_Configurator + mcstasscript.tests.test_Instr + mcstasscript.tests.test_Instr_reader + mcstasscript.tests.test_ManagedMcrun + mcstasscript.tests.test_McStasData + mcstasscript.tests.test_McStasMetaData + mcstasscript.tests.test_McStasPlotOptions + mcstasscript.tests.test_Plotter + mcstasscript.tests.test_add_data + mcstasscript.tests.test_component + mcstasscript.tests.test_declare_variable + mcstasscript.tests.test_dump_and_load + mcstasscript.tests.test_formatting + mcstasscript.tests.test_functions + mcstasscript.tests.test_parameter_variable + mcstasscript.tests.test_plot_interface + mcstasscript.tests.test_simulation_interface + mcstasscript.tests.test_widget_helpers + mcstasscript.tests.utilities + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.TestComponentReader.rst b/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.TestComponentReader.rst new file mode 100644 index 00000000..35f0ebe2 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.TestComponentReader.rst @@ -0,0 +1,115 @@ +mcstasscript.tests.test\_ComponentReader.TestComponentReader +============================================================ + +.. currentmodule:: mcstasscript.tests.test_ComponentReader + +.. autoclass:: TestComponentReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestComponentReader.__init__ + ~TestComponentReader.addClassCleanup + ~TestComponentReader.addCleanup + ~TestComponentReader.addTypeEqualityFunc + ~TestComponentReader.assertAlmostEqual + ~TestComponentReader.assertAlmostEquals + ~TestComponentReader.assertCountEqual + ~TestComponentReader.assertDictContainsSubset + ~TestComponentReader.assertDictEqual + ~TestComponentReader.assertEqual + ~TestComponentReader.assertEquals + ~TestComponentReader.assertFalse + ~TestComponentReader.assertGreater + ~TestComponentReader.assertGreaterEqual + ~TestComponentReader.assertIn + ~TestComponentReader.assertIs + ~TestComponentReader.assertIsInstance + ~TestComponentReader.assertIsNone + ~TestComponentReader.assertIsNot + ~TestComponentReader.assertIsNotNone + ~TestComponentReader.assertLess + ~TestComponentReader.assertLessEqual + ~TestComponentReader.assertListEqual + ~TestComponentReader.assertLogs + ~TestComponentReader.assertMultiLineEqual + ~TestComponentReader.assertNotAlmostEqual + ~TestComponentReader.assertNotAlmostEquals + ~TestComponentReader.assertNotEqual + ~TestComponentReader.assertNotEquals + ~TestComponentReader.assertNotIn + ~TestComponentReader.assertNotIsInstance + ~TestComponentReader.assertNotRegex + ~TestComponentReader.assertNotRegexpMatches + ~TestComponentReader.assertRaises + ~TestComponentReader.assertRaisesRegex + ~TestComponentReader.assertRaisesRegexp + ~TestComponentReader.assertRegex + ~TestComponentReader.assertRegexpMatches + ~TestComponentReader.assertSequenceEqual + ~TestComponentReader.assertSetEqual + ~TestComponentReader.assertTrue + ~TestComponentReader.assertTupleEqual + ~TestComponentReader.assertWarns + ~TestComponentReader.assertWarnsRegex + ~TestComponentReader.assert_ + ~TestComponentReader.countTestCases + ~TestComponentReader.debug + ~TestComponentReader.defaultTestResult + ~TestComponentReader.doClassCleanups + ~TestComponentReader.doCleanups + ~TestComponentReader.fail + ~TestComponentReader.failIf + ~TestComponentReader.failIfAlmostEqual + ~TestComponentReader.failIfEqual + ~TestComponentReader.failUnless + ~TestComponentReader.failUnlessAlmostEqual + ~TestComponentReader.failUnlessEqual + ~TestComponentReader.failUnlessRaises + ~TestComponentReader.id + ~TestComponentReader.run + ~TestComponentReader.setUp + ~TestComponentReader.setUpClass + ~TestComponentReader.shortDescription + ~TestComponentReader.skipTest + ~TestComponentReader.subTest + ~TestComponentReader.tearDown + ~TestComponentReader.tearDownClass + ~TestComponentReader.test_ComponentReader_find_components_categories + ~TestComponentReader.test_ComponentReader_find_components_names + ~TestComponentReader.test_ComponentReader_init_categories + ~TestComponentReader.test_ComponentReader_init_component_paths + ~TestComponentReader.test_ComponentReader_init_component_paths_input + ~TestComponentReader.test_ComponentReader_init_filenames + ~TestComponentReader.test_ComponentReader_init_overwrite_message + ~TestComponentReader.test_ComponentReader_init_overwrite_message_input + ~TestComponentReader.test_ComponentReader_load_all_components + ~TestComponentReader.test_ComponentReader_read_component_category + ~TestComponentReader.test_ComponentReader_read_component_int + ~TestComponentReader.test_ComponentReader_read_component_required + ~TestComponentReader.test_ComponentReader_read_component_standard + ~TestComponentReader.test_ComponentReader_read_component_string + ~TestComponentReader.test_ComponentReader_read_name_error + ~TestComponentReader.test_ComponentReader_read_name_success + ~TestComponentReader.test_ComponentReader_show_categories + ~TestComponentReader.test_ComponentReader_show_categories_ordered + ~TestComponentReader.test_ComponentReader_show_components_short + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestComponentReader.longMessage + ~TestComponentReader.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.rst b/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.rst new file mode 100644 index 00000000..5136d839 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.rst @@ -0,0 +1,39 @@ +mcstasscript.tests.test\_ComponentReader +======================================== + +.. automodule:: mcstasscript.tests.test_ComponentReader + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + setup_component_reader + setup_component_reader_input_path + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestComponentReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.setup_component_reader.rst b/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.setup_component_reader.rst new file mode 100644 index 00000000..36c09c77 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.setup_component_reader.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_ComponentReader.setup\_component\_reader +================================================================= + +.. currentmodule:: mcstasscript.tests.test_ComponentReader + +.. autofunction:: setup_component_reader \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.setup_component_reader_input_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.setup_component_reader_input_path.rst new file mode 100644 index 00000000..90dfc13c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_ComponentReader.setup_component_reader_input_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_ComponentReader.setup\_component\_reader\_input\_path +============================================================================== + +.. currentmodule:: mcstasscript.tests.test_ComponentReader + +.. autofunction:: setup_component_reader_input_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Configurator.TestConfigurator.rst b/docs/source/_autosummary/mcstasscript.tests.test_Configurator.TestConfigurator.rst new file mode 100644 index 00000000..27632f5e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Configurator.TestConfigurator.rst @@ -0,0 +1,104 @@ +mcstasscript.tests.test\_Configurator.TestConfigurator +====================================================== + +.. currentmodule:: mcstasscript.tests.test_Configurator + +.. autoclass:: TestConfigurator + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestConfigurator.__init__ + ~TestConfigurator.addClassCleanup + ~TestConfigurator.addCleanup + ~TestConfigurator.addTypeEqualityFunc + ~TestConfigurator.assertAlmostEqual + ~TestConfigurator.assertAlmostEquals + ~TestConfigurator.assertCountEqual + ~TestConfigurator.assertDictContainsSubset + ~TestConfigurator.assertDictEqual + ~TestConfigurator.assertEqual + ~TestConfigurator.assertEquals + ~TestConfigurator.assertFalse + ~TestConfigurator.assertGreater + ~TestConfigurator.assertGreaterEqual + ~TestConfigurator.assertIn + ~TestConfigurator.assertIs + ~TestConfigurator.assertIsInstance + ~TestConfigurator.assertIsNone + ~TestConfigurator.assertIsNot + ~TestConfigurator.assertIsNotNone + ~TestConfigurator.assertLess + ~TestConfigurator.assertLessEqual + ~TestConfigurator.assertListEqual + ~TestConfigurator.assertLogs + ~TestConfigurator.assertMultiLineEqual + ~TestConfigurator.assertNotAlmostEqual + ~TestConfigurator.assertNotAlmostEquals + ~TestConfigurator.assertNotEqual + ~TestConfigurator.assertNotEquals + ~TestConfigurator.assertNotIn + ~TestConfigurator.assertNotIsInstance + ~TestConfigurator.assertNotRegex + ~TestConfigurator.assertNotRegexpMatches + ~TestConfigurator.assertRaises + ~TestConfigurator.assertRaisesRegex + ~TestConfigurator.assertRaisesRegexp + ~TestConfigurator.assertRegex + ~TestConfigurator.assertRegexpMatches + ~TestConfigurator.assertSequenceEqual + ~TestConfigurator.assertSetEqual + ~TestConfigurator.assertTrue + ~TestConfigurator.assertTupleEqual + ~TestConfigurator.assertWarns + ~TestConfigurator.assertWarnsRegex + ~TestConfigurator.assert_ + ~TestConfigurator.countTestCases + ~TestConfigurator.debug + ~TestConfigurator.defaultTestResult + ~TestConfigurator.doClassCleanups + ~TestConfigurator.doCleanups + ~TestConfigurator.fail + ~TestConfigurator.failIf + ~TestConfigurator.failIfAlmostEqual + ~TestConfigurator.failIfEqual + ~TestConfigurator.failUnless + ~TestConfigurator.failUnlessAlmostEqual + ~TestConfigurator.failUnlessEqual + ~TestConfigurator.failUnlessRaises + ~TestConfigurator.id + ~TestConfigurator.run + ~TestConfigurator.setUp + ~TestConfigurator.setUpClass + ~TestConfigurator.shortDescription + ~TestConfigurator.skipTest + ~TestConfigurator.subTest + ~TestConfigurator.tearDown + ~TestConfigurator.tearDownClass + ~TestConfigurator.test_default_config + ~TestConfigurator.test_set_line_length + ~TestConfigurator.test_set_mcrun_path + ~TestConfigurator.test_set_mcstas_path + ~TestConfigurator.test_set_mcxtrace_path + ~TestConfigurator.test_set_mxrun_path + ~TestConfigurator.test_simple_initialize + ~TestConfigurator.test_yaml_write + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestConfigurator.longMessage + ~TestConfigurator.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Configurator.rst b/docs/source/_autosummary/mcstasscript.tests.test_Configurator.rst new file mode 100644 index 00000000..0a5e435c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Configurator.rst @@ -0,0 +1,39 @@ +mcstasscript.tests.test\_Configurator +===================================== + +.. automodule:: mcstasscript.tests.test_Configurator + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + setup_configurator + setup_expected_file + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestConfigurator + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Configurator.setup_configurator.rst b/docs/source/_autosummary/mcstasscript.tests.test_Configurator.setup_configurator.rst new file mode 100644 index 00000000..fbc4687f --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Configurator.setup_configurator.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Configurator.setup\_configurator +========================================================= + +.. currentmodule:: mcstasscript.tests.test_Configurator + +.. autofunction:: setup_configurator \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Configurator.setup_expected_file.rst b/docs/source/_autosummary/mcstasscript.tests.test_Configurator.setup_expected_file.rst new file mode 100644 index 00000000..28cbbe61 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Configurator.setup_expected_file.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Configurator.setup\_expected\_file +=========================================================== + +.. currentmodule:: mcstasscript.tests.test_Configurator + +.. autofunction:: setup_expected_file \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.TestMcStas_instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.TestMcStas_instr.rst new file mode 100644 index 00000000..565aa1c4 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.TestMcStas_instr.rst @@ -0,0 +1,163 @@ +mcstasscript.tests.test\_Instr.TestMcStas\_instr +================================================ + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autoclass:: TestMcStas_instr + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestMcStas_instr.__init__ + ~TestMcStas_instr.addClassCleanup + ~TestMcStas_instr.addCleanup + ~TestMcStas_instr.addTypeEqualityFunc + ~TestMcStas_instr.assertAlmostEqual + ~TestMcStas_instr.assertAlmostEquals + ~TestMcStas_instr.assertCountEqual + ~TestMcStas_instr.assertDictContainsSubset + ~TestMcStas_instr.assertDictEqual + ~TestMcStas_instr.assertEqual + ~TestMcStas_instr.assertEquals + ~TestMcStas_instr.assertFalse + ~TestMcStas_instr.assertGreater + ~TestMcStas_instr.assertGreaterEqual + ~TestMcStas_instr.assertIn + ~TestMcStas_instr.assertIs + ~TestMcStas_instr.assertIsInstance + ~TestMcStas_instr.assertIsNone + ~TestMcStas_instr.assertIsNot + ~TestMcStas_instr.assertIsNotNone + ~TestMcStas_instr.assertLess + ~TestMcStas_instr.assertLessEqual + ~TestMcStas_instr.assertListEqual + ~TestMcStas_instr.assertLogs + ~TestMcStas_instr.assertMultiLineEqual + ~TestMcStas_instr.assertNotAlmostEqual + ~TestMcStas_instr.assertNotAlmostEquals + ~TestMcStas_instr.assertNotEqual + ~TestMcStas_instr.assertNotEquals + ~TestMcStas_instr.assertNotIn + ~TestMcStas_instr.assertNotIsInstance + ~TestMcStas_instr.assertNotRegex + ~TestMcStas_instr.assertNotRegexpMatches + ~TestMcStas_instr.assertRaises + ~TestMcStas_instr.assertRaisesRegex + ~TestMcStas_instr.assertRaisesRegexp + ~TestMcStas_instr.assertRegex + ~TestMcStas_instr.assertRegexpMatches + ~TestMcStas_instr.assertSequenceEqual + ~TestMcStas_instr.assertSetEqual + ~TestMcStas_instr.assertTrue + ~TestMcStas_instr.assertTupleEqual + ~TestMcStas_instr.assertWarns + ~TestMcStas_instr.assertWarnsRegex + ~TestMcStas_instr.assert_ + ~TestMcStas_instr.countTestCases + ~TestMcStas_instr.debug + ~TestMcStas_instr.defaultTestResult + ~TestMcStas_instr.doClassCleanups + ~TestMcStas_instr.doCleanups + ~TestMcStas_instr.fail + ~TestMcStas_instr.failIf + ~TestMcStas_instr.failIfAlmostEqual + ~TestMcStas_instr.failIfEqual + ~TestMcStas_instr.failUnless + ~TestMcStas_instr.failUnlessAlmostEqual + ~TestMcStas_instr.failUnlessEqual + ~TestMcStas_instr.failUnlessRaises + ~TestMcStas_instr.id + ~TestMcStas_instr.run + ~TestMcStas_instr.setUp + ~TestMcStas_instr.setUpClass + ~TestMcStas_instr.shortDescription + ~TestMcStas_instr.skipTest + ~TestMcStas_instr.subTest + ~TestMcStas_instr.tearDown + ~TestMcStas_instr.tearDownClass + ~TestMcStas_instr.test_add_component_simple + ~TestMcStas_instr.test_add_component_simple_after + ~TestMcStas_instr.test_add_component_simple_after_error + ~TestMcStas_instr.test_add_component_simple_before + ~TestMcStas_instr.test_add_component_simple_before_error + ~TestMcStas_instr.test_add_component_simple_double_naming_error + ~TestMcStas_instr.test_add_component_simple_keyword + ~TestMcStas_instr.test_append_component_EXTEND + ~TestMcStas_instr.test_complex_initialize + ~TestMcStas_instr.test_component_help + ~TestMcStas_instr.test_copy_component_keywords + ~TestMcStas_instr.test_copy_component_simple + ~TestMcStas_instr.test_copy_component_simple_fail + ~TestMcStas_instr.test_copy_component_simple_object + ~TestMcStas_instr.test_create_component_instance_complex + ~TestMcStas_instr.test_create_component_instance_simple + ~TestMcStas_instr.test_get_component_simple + ~TestMcStas_instr.test_get_component_simple_error + ~TestMcStas_instr.test_get_last_component_simple + ~TestMcStas_instr.test_load_config_file + ~TestMcStas_instr.test_load_config_file_x_ray + ~TestMcStas_instr.test_print_component + ~TestMcStas_instr.test_print_component_short + ~TestMcStas_instr.test_print_components_complex + ~TestMcStas_instr.test_print_components_complex_2lines + ~TestMcStas_instr.test_print_components_complex_3lines + ~TestMcStas_instr.test_print_components_simple + ~TestMcStas_instr.test_run_backengine_basic + ~TestMcStas_instr.test_run_backengine_existing_folder + ~TestMcStas_instr.test_run_full_instrument_complex + ~TestMcStas_instr.test_run_full_instrument_junk_par_error + ~TestMcStas_instr.test_run_full_instrument_overwrite_default + ~TestMcStas_instr.test_run_full_instrument_required_par_error + ~TestMcStas_instr.test_run_full_instrument_x_ray_basic + ~TestMcStas_instr.test_set_c_code_after + ~TestMcStas_instr.test_set_c_code_before + ~TestMcStas_instr.test_set_component_AT + ~TestMcStas_instr.test_set_component_GROUP + ~TestMcStas_instr.test_set_component_JUMP + ~TestMcStas_instr.test_set_component_RELATIVE + ~TestMcStas_instr.test_set_component_ROTATED + ~TestMcStas_instr.test_set_component_SPLIT + ~TestMcStas_instr.test_set_component_WHEN + ~TestMcStas_instr.test_set_component_comment + ~TestMcStas_instr.test_set_component_parameter + ~TestMcStas_instr.test_set_component_parameter_error + ~TestMcStas_instr.test_show_components_folder + ~TestMcStas_instr.test_show_components_input_path_custom + ~TestMcStas_instr.test_show_components_input_path_simple + ~TestMcStas_instr.test_show_components_simple + ~TestMcStas_instr.test_show_instrument_basic + ~TestMcStas_instr.test_show_parameters + ~TestMcStas_instr.test_show_parameters_line_break + ~TestMcStas_instr.test_simple_add_declare_parameter + ~TestMcStas_instr.test_simple_add_parameter + ~TestMcStas_instr.test_simple_append_declare + ~TestMcStas_instr.test_simple_append_declare_var_mix + ~TestMcStas_instr.test_simple_append_finally + ~TestMcStas_instr.test_simple_append_finally_no_new_line + ~TestMcStas_instr.test_simple_append_initialize + ~TestMcStas_instr.test_simple_append_initialize_no_new_line + ~TestMcStas_instr.test_simple_append_trace + ~TestMcStas_instr.test_simple_append_trace_no_new_line + ~TestMcStas_instr.test_simple_initialize + ~TestMcStas_instr.test_write_c_files_simple + ~TestMcStas_instr.test_write_full_instrument_simple + ~TestMcStas_instr.test_x_ray_run_full_instrument_basic + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestMcStas_instr.longMessage + ~TestMcStas_instr.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.rst new file mode 100644 index 00000000..77a32905 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.rst @@ -0,0 +1,50 @@ +mcstasscript.tests.test\_Instr +============================== + +.. automodule:: mcstasscript.tests.test_Instr + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + setup_instr_no_path + setup_instr_root_path + setup_instr_with_input_path + setup_instr_with_input_path_relative + setup_instr_with_path + setup_populated_instr + setup_populated_instr_with_dummy_path + setup_populated_with_some_options_instr + setup_populated_x_ray_instr + setup_populated_x_ray_instr_with_dummy_path + setup_x_ray_instr_no_path + setup_x_ray_instr_root_path + setup_x_ray_instr_with_path + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestMcStas_instr + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_no_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_no_path.rst new file mode 100644 index 00000000..21ef5103 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_no_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_instr\_no\_path +===================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_instr_no_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_root_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_root_path.rst new file mode 100644 index 00000000..7f0b149c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_root_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_instr\_root\_path +======================================================= + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_instr_root_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_input_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_input_path.rst new file mode 100644 index 00000000..03e734b0 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_input_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_instr\_with\_input\_path +============================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_instr_with_input_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_input_path_relative.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_input_path_relative.rst new file mode 100644 index 00000000..568e549f --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_input_path_relative.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_instr\_with\_input\_path\_relative +======================================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_instr_with_input_path_relative \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_path.rst new file mode 100644 index 00000000..e59bb9fb --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_instr_with_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_instr\_with\_path +======================================================= + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_instr_with_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_instr.rst new file mode 100644 index 00000000..92c82a2c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_instr.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_populated\_instr +====================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_populated_instr \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_instr_with_dummy_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_instr_with_dummy_path.rst new file mode 100644 index 00000000..77c8a8fb --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_instr_with_dummy_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_populated\_instr\_with\_dummy\_path +========================================================================= + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_populated_instr_with_dummy_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_with_some_options_instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_with_some_options_instr.rst new file mode 100644 index 00000000..3cd026f6 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_with_some_options_instr.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_populated\_with\_some\_options\_instr +=========================================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_populated_with_some_options_instr \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_x_ray_instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_x_ray_instr.rst new file mode 100644 index 00000000..28d0e459 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_x_ray_instr.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_populated\_x\_ray\_instr +============================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_populated_x_ray_instr \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_x_ray_instr_with_dummy_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_x_ray_instr_with_dummy_path.rst new file mode 100644 index 00000000..7f30098d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_populated_x_ray_instr_with_dummy_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_populated\_x\_ray\_instr\_with\_dummy\_path +================================================================================= + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_populated_x_ray_instr_with_dummy_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_no_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_no_path.rst new file mode 100644 index 00000000..f4140434 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_no_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_x\_ray\_instr\_no\_path +============================================================= + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_x_ray_instr_no_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_root_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_root_path.rst new file mode 100644 index 00000000..ba4c5ec3 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_root_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_x\_ray\_instr\_root\_path +=============================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_x_ray_instr_root_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_with_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_with_path.rst new file mode 100644 index 00000000..22d13c0c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr.setup_x_ray_instr_with_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr.setup\_x\_ray\_instr\_with\_path +=============================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr + +.. autofunction:: setup_x_ray_instr_with_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.TestInstrReader.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.TestInstrReader.rst new file mode 100644 index 00000000..3a55f03a --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.TestInstrReader.rst @@ -0,0 +1,111 @@ +mcstasscript.tests.test\_Instr\_reader.TestInstrReader +====================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr_reader + +.. autoclass:: TestInstrReader + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestInstrReader.__init__ + ~TestInstrReader.addClassCleanup + ~TestInstrReader.addCleanup + ~TestInstrReader.addTypeEqualityFunc + ~TestInstrReader.assertAlmostEqual + ~TestInstrReader.assertAlmostEquals + ~TestInstrReader.assertCountEqual + ~TestInstrReader.assertDictContainsSubset + ~TestInstrReader.assertDictEqual + ~TestInstrReader.assertEqual + ~TestInstrReader.assertEquals + ~TestInstrReader.assertFalse + ~TestInstrReader.assertGreater + ~TestInstrReader.assertGreaterEqual + ~TestInstrReader.assertIn + ~TestInstrReader.assertIs + ~TestInstrReader.assertIsInstance + ~TestInstrReader.assertIsNone + ~TestInstrReader.assertIsNot + ~TestInstrReader.assertIsNotNone + ~TestInstrReader.assertLess + ~TestInstrReader.assertLessEqual + ~TestInstrReader.assertListEqual + ~TestInstrReader.assertLogs + ~TestInstrReader.assertMultiLineEqual + ~TestInstrReader.assertNotAlmostEqual + ~TestInstrReader.assertNotAlmostEquals + ~TestInstrReader.assertNotEqual + ~TestInstrReader.assertNotEquals + ~TestInstrReader.assertNotIn + ~TestInstrReader.assertNotIsInstance + ~TestInstrReader.assertNotRegex + ~TestInstrReader.assertNotRegexpMatches + ~TestInstrReader.assertRaises + ~TestInstrReader.assertRaisesRegex + ~TestInstrReader.assertRaisesRegexp + ~TestInstrReader.assertRegex + ~TestInstrReader.assertRegexpMatches + ~TestInstrReader.assertSequenceEqual + ~TestInstrReader.assertSetEqual + ~TestInstrReader.assertTrue + ~TestInstrReader.assertTupleEqual + ~TestInstrReader.assertWarns + ~TestInstrReader.assertWarnsRegex + ~TestInstrReader.assert_ + ~TestInstrReader.countTestCases + ~TestInstrReader.debug + ~TestInstrReader.defaultTestResult + ~TestInstrReader.doClassCleanups + ~TestInstrReader.doCleanups + ~TestInstrReader.fail + ~TestInstrReader.failIf + ~TestInstrReader.failIfAlmostEqual + ~TestInstrReader.failIfEqual + ~TestInstrReader.failUnless + ~TestInstrReader.failUnlessAlmostEqual + ~TestInstrReader.failUnlessEqual + ~TestInstrReader.failUnlessRaises + ~TestInstrReader.id + ~TestInstrReader.run + ~TestInstrReader.setUp + ~TestInstrReader.setUpClass + ~TestInstrReader.shortDescription + ~TestInstrReader.skipTest + ~TestInstrReader.subTest + ~TestInstrReader.tearDown + ~TestInstrReader.tearDownClass + ~TestInstrReader.test_comma_split + ~TestInstrReader.test_comma_split_brack + ~TestInstrReader.test_comma_split_limited + ~TestInstrReader.test_parenthesis_split + ~TestInstrReader.test_read_component_1 + ~TestInstrReader.test_read_component_2 + ~TestInstrReader.test_read_component_EXTEND + ~TestInstrReader.test_read_component_GROUP + ~TestInstrReader.test_read_component_JUMP + ~TestInstrReader.test_read_component_SPLIT + ~TestInstrReader.test_read_component_WHEN + ~TestInstrReader.test_read_declare_parameter + ~TestInstrReader.test_read_initialize_line + ~TestInstrReader.test_read_input_parameter + ~TestInstrReader.test_read_instrument_name + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestInstrReader.longMessage + ~TestInstrReader.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.blockPrint.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.blockPrint.rst new file mode 100644 index 00000000..2e42db31 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.blockPrint.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr\_reader.blockPrint +================================================= + +.. currentmodule:: mcstasscript.tests.test_Instr_reader + +.. autofunction:: blockPrint \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.enablePrint.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.enablePrint.rst new file mode 100644 index 00000000..7d8860ac --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.enablePrint.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr\_reader.enablePrint +================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr_reader + +.. autofunction:: enablePrint \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.rst new file mode 100644 index 00000000..f57ac30f --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.rst @@ -0,0 +1,42 @@ +mcstasscript.tests.test\_Instr\_reader +====================================== + +.. automodule:: mcstasscript.tests.test_Instr_reader + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + blockPrint + enablePrint + set_dummy_dir + setup_standard + setup_standard_auto_instr + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestInstrReader + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.set_dummy_dir.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.set_dummy_dir.rst new file mode 100644 index 00000000..6d4f0c33 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.set_dummy_dir.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr\_reader.set\_dummy\_dir +====================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr_reader + +.. autofunction:: set_dummy_dir \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.setup_standard.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.setup_standard.rst new file mode 100644 index 00000000..1742a64d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.setup_standard.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr\_reader.setup\_standard +====================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr_reader + +.. autofunction:: setup_standard \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.setup_standard_auto_instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.setup_standard_auto_instr.rst new file mode 100644 index 00000000..703d60ea --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Instr_reader.setup_standard_auto_instr.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Instr\_reader.setup\_standard\_auto\_instr +=================================================================== + +.. currentmodule:: mcstasscript.tests.test_Instr_reader + +.. autofunction:: setup_standard_auto_instr \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.TestManagedMcrun.rst b/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.TestManagedMcrun.rst new file mode 100644 index 00000000..4ca2316e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.TestManagedMcrun.rst @@ -0,0 +1,117 @@ +mcstasscript.tests.test\_ManagedMcrun.TestManagedMcrun +====================================================== + +.. currentmodule:: mcstasscript.tests.test_ManagedMcrun + +.. autoclass:: TestManagedMcrun + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestManagedMcrun.__init__ + ~TestManagedMcrun.addClassCleanup + ~TestManagedMcrun.addCleanup + ~TestManagedMcrun.addTypeEqualityFunc + ~TestManagedMcrun.assertAlmostEqual + ~TestManagedMcrun.assertAlmostEquals + ~TestManagedMcrun.assertCountEqual + ~TestManagedMcrun.assertDictContainsSubset + ~TestManagedMcrun.assertDictEqual + ~TestManagedMcrun.assertEqual + ~TestManagedMcrun.assertEquals + ~TestManagedMcrun.assertFalse + ~TestManagedMcrun.assertGreater + ~TestManagedMcrun.assertGreaterEqual + ~TestManagedMcrun.assertIn + ~TestManagedMcrun.assertIs + ~TestManagedMcrun.assertIsInstance + ~TestManagedMcrun.assertIsNone + ~TestManagedMcrun.assertIsNot + ~TestManagedMcrun.assertIsNotNone + ~TestManagedMcrun.assertLess + ~TestManagedMcrun.assertLessEqual + ~TestManagedMcrun.assertListEqual + ~TestManagedMcrun.assertLogs + ~TestManagedMcrun.assertMultiLineEqual + ~TestManagedMcrun.assertNotAlmostEqual + ~TestManagedMcrun.assertNotAlmostEquals + ~TestManagedMcrun.assertNotEqual + ~TestManagedMcrun.assertNotEquals + ~TestManagedMcrun.assertNotIn + ~TestManagedMcrun.assertNotIsInstance + ~TestManagedMcrun.assertNotRegex + ~TestManagedMcrun.assertNotRegexpMatches + ~TestManagedMcrun.assertRaises + ~TestManagedMcrun.assertRaisesRegex + ~TestManagedMcrun.assertRaisesRegexp + ~TestManagedMcrun.assertRegex + ~TestManagedMcrun.assertRegexpMatches + ~TestManagedMcrun.assertSequenceEqual + ~TestManagedMcrun.assertSetEqual + ~TestManagedMcrun.assertTrue + ~TestManagedMcrun.assertTupleEqual + ~TestManagedMcrun.assertWarns + ~TestManagedMcrun.assertWarnsRegex + ~TestManagedMcrun.assert_ + ~TestManagedMcrun.countTestCases + ~TestManagedMcrun.debug + ~TestManagedMcrun.defaultTestResult + ~TestManagedMcrun.doClassCleanups + ~TestManagedMcrun.doCleanups + ~TestManagedMcrun.fail + ~TestManagedMcrun.failIf + ~TestManagedMcrun.failIfAlmostEqual + ~TestManagedMcrun.failIfEqual + ~TestManagedMcrun.failUnless + ~TestManagedMcrun.failUnlessAlmostEqual + ~TestManagedMcrun.failUnlessEqual + ~TestManagedMcrun.failUnlessRaises + ~TestManagedMcrun.id + ~TestManagedMcrun.run + ~TestManagedMcrun.setUp + ~TestManagedMcrun.setUpClass + ~TestManagedMcrun.shortDescription + ~TestManagedMcrun.skipTest + ~TestManagedMcrun.subTest + ~TestManagedMcrun.tearDown + ~TestManagedMcrun.tearDownClass + ~TestManagedMcrun.test_ManagedMcrun_init_defaults + ~TestManagedMcrun.test_ManagedMcrun_init_invalid_mpi_error + ~TestManagedMcrun.test_ManagedMcrun_init_invalid_ncount_error + ~TestManagedMcrun.test_ManagedMcrun_init_invalid_parameters_error + ~TestManagedMcrun.test_ManagedMcrun_init_no_folder_error + ~TestManagedMcrun.test_ManagedMcrun_init_set_custom_flags + ~TestManagedMcrun.test_ManagedMcrun_init_set_parameters + ~TestManagedMcrun.test_ManagedMcrun_init_set_values + ~TestManagedMcrun.test_ManagedMcrun_init_simple + ~TestManagedMcrun.test_ManagedMcrun_load_data_Event + ~TestManagedMcrun.test_ManagedMcrun_load_data_L_mon + ~TestManagedMcrun.test_ManagedMcrun_load_data_L_mon_direct + ~TestManagedMcrun.test_ManagedMcrun_load_data_PSD + ~TestManagedMcrun.test_ManagedMcrun_load_data_PSD4PI + ~TestManagedMcrun.test_ManagedMcrun_load_data_no_mcsim_file + ~TestManagedMcrun.test_ManagedMcrun_load_data_nonexisting + ~TestManagedMcrun.test_ManagedMcrun_run_simulation_basic + ~TestManagedMcrun.test_ManagedMcrun_run_simulation_basic_path + ~TestManagedMcrun.test_ManagedMcrun_run_simulation_compile + ~TestManagedMcrun.test_ManagedMcrun_run_simulation_no_standard + ~TestManagedMcrun.test_ManagedMcrun_run_simulation_parameters + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestManagedMcrun.longMessage + ~TestManagedMcrun.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.Test_load_functions.rst b/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.Test_load_functions.rst new file mode 100644 index 00000000..4faea0b1 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.Test_load_functions.rst @@ -0,0 +1,102 @@ +mcstasscript.tests.test\_ManagedMcrun.Test\_load\_functions +=========================================================== + +.. currentmodule:: mcstasscript.tests.test_ManagedMcrun + +.. autoclass:: Test_load_functions + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_load_functions.__init__ + ~Test_load_functions.addClassCleanup + ~Test_load_functions.addCleanup + ~Test_load_functions.addTypeEqualityFunc + ~Test_load_functions.assertAlmostEqual + ~Test_load_functions.assertAlmostEquals + ~Test_load_functions.assertCountEqual + ~Test_load_functions.assertDictContainsSubset + ~Test_load_functions.assertDictEqual + ~Test_load_functions.assertEqual + ~Test_load_functions.assertEquals + ~Test_load_functions.assertFalse + ~Test_load_functions.assertGreater + ~Test_load_functions.assertGreaterEqual + ~Test_load_functions.assertIn + ~Test_load_functions.assertIs + ~Test_load_functions.assertIsInstance + ~Test_load_functions.assertIsNone + ~Test_load_functions.assertIsNot + ~Test_load_functions.assertIsNotNone + ~Test_load_functions.assertLess + ~Test_load_functions.assertLessEqual + ~Test_load_functions.assertListEqual + ~Test_load_functions.assertLogs + ~Test_load_functions.assertMultiLineEqual + ~Test_load_functions.assertNotAlmostEqual + ~Test_load_functions.assertNotAlmostEquals + ~Test_load_functions.assertNotEqual + ~Test_load_functions.assertNotEquals + ~Test_load_functions.assertNotIn + ~Test_load_functions.assertNotIsInstance + ~Test_load_functions.assertNotRegex + ~Test_load_functions.assertNotRegexpMatches + ~Test_load_functions.assertRaises + ~Test_load_functions.assertRaisesRegex + ~Test_load_functions.assertRaisesRegexp + ~Test_load_functions.assertRegex + ~Test_load_functions.assertRegexpMatches + ~Test_load_functions.assertSequenceEqual + ~Test_load_functions.assertSetEqual + ~Test_load_functions.assertTrue + ~Test_load_functions.assertTupleEqual + ~Test_load_functions.assertWarns + ~Test_load_functions.assertWarnsRegex + ~Test_load_functions.assert_ + ~Test_load_functions.countTestCases + ~Test_load_functions.debug + ~Test_load_functions.defaultTestResult + ~Test_load_functions.doClassCleanups + ~Test_load_functions.doCleanups + ~Test_load_functions.fail + ~Test_load_functions.failIf + ~Test_load_functions.failIfAlmostEqual + ~Test_load_functions.failIfEqual + ~Test_load_functions.failUnless + ~Test_load_functions.failUnlessAlmostEqual + ~Test_load_functions.failUnlessEqual + ~Test_load_functions.failUnlessRaises + ~Test_load_functions.id + ~Test_load_functions.run + ~Test_load_functions.setUp + ~Test_load_functions.setUpClass + ~Test_load_functions.shortDescription + ~Test_load_functions.skipTest + ~Test_load_functions.subTest + ~Test_load_functions.tearDown + ~Test_load_functions.tearDownClass + ~Test_load_functions.test_mcrun_load_data_PSD + ~Test_load_functions.test_mcrun_load_data_PSD4PI + ~Test_load_functions.test_mcrun_load_metadata_L_mon + ~Test_load_functions.test_mcrun_load_metadata_PSD4PI + ~Test_load_functions.test_mcrun_load_monitor_L_mon + ~Test_load_functions.test_mcrun_load_monitor_PSD4PI + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_load_functions.longMessage + ~Test_load_functions.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.rst b/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.rst new file mode 100644 index 00000000..5c82724a --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_ManagedMcrun.rst @@ -0,0 +1,32 @@ +mcstasscript.tests.test\_ManagedMcrun +===================================== + +.. automodule:: mcstasscript.tests.test_ManagedMcrun + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestManagedMcrun + Test_load_functions + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasData.TestMcStasData.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.TestMcStasData.rst new file mode 100644 index 00000000..781dcb99 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.TestMcStasData.rst @@ -0,0 +1,109 @@ +mcstasscript.tests.test\_McStasData.TestMcStasData +================================================== + +.. currentmodule:: mcstasscript.tests.test_McStasData + +.. autoclass:: TestMcStasData + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestMcStasData.__init__ + ~TestMcStasData.addClassCleanup + ~TestMcStasData.addCleanup + ~TestMcStasData.addTypeEqualityFunc + ~TestMcStasData.assertAlmostEqual + ~TestMcStasData.assertAlmostEquals + ~TestMcStasData.assertCountEqual + ~TestMcStasData.assertDictContainsSubset + ~TestMcStasData.assertDictEqual + ~TestMcStasData.assertEqual + ~TestMcStasData.assertEquals + ~TestMcStasData.assertFalse + ~TestMcStasData.assertGreater + ~TestMcStasData.assertGreaterEqual + ~TestMcStasData.assertIn + ~TestMcStasData.assertIs + ~TestMcStasData.assertIsInstance + ~TestMcStasData.assertIsNone + ~TestMcStasData.assertIsNot + ~TestMcStasData.assertIsNotNone + ~TestMcStasData.assertLess + ~TestMcStasData.assertLessEqual + ~TestMcStasData.assertListEqual + ~TestMcStasData.assertLogs + ~TestMcStasData.assertMultiLineEqual + ~TestMcStasData.assertNotAlmostEqual + ~TestMcStasData.assertNotAlmostEquals + ~TestMcStasData.assertNotEqual + ~TestMcStasData.assertNotEquals + ~TestMcStasData.assertNotIn + ~TestMcStasData.assertNotIsInstance + ~TestMcStasData.assertNotRegex + ~TestMcStasData.assertNotRegexpMatches + ~TestMcStasData.assertRaises + ~TestMcStasData.assertRaisesRegex + ~TestMcStasData.assertRaisesRegexp + ~TestMcStasData.assertRegex + ~TestMcStasData.assertRegexpMatches + ~TestMcStasData.assertSequenceEqual + ~TestMcStasData.assertSetEqual + ~TestMcStasData.assertTrue + ~TestMcStasData.assertTupleEqual + ~TestMcStasData.assertWarns + ~TestMcStasData.assertWarnsRegex + ~TestMcStasData.assert_ + ~TestMcStasData.countTestCases + ~TestMcStasData.debug + ~TestMcStasData.defaultTestResult + ~TestMcStasData.doClassCleanups + ~TestMcStasData.doCleanups + ~TestMcStasData.fail + ~TestMcStasData.failIf + ~TestMcStasData.failIfAlmostEqual + ~TestMcStasData.failIfEqual + ~TestMcStasData.failUnless + ~TestMcStasData.failUnlessAlmostEqual + ~TestMcStasData.failUnlessEqual + ~TestMcStasData.failUnlessRaises + ~TestMcStasData.id + ~TestMcStasData.run + ~TestMcStasData.setUp + ~TestMcStasData.setUpClass + ~TestMcStasData.shortDescription + ~TestMcStasData.skipTest + ~TestMcStasData.subTest + ~TestMcStasData.tearDown + ~TestMcStasData.tearDownClass + ~TestMcStasData.test_McStasDataBinned_init_1d + ~TestMcStasData.test_McStasDataBinned_init_2d_names + ~TestMcStasData.test_McStasDataBinned_init_2d_values + ~TestMcStasData.test_McStasDataBinned_init_2d_values_full + ~TestMcStasData.test_McStasDataBinned_init_values + ~TestMcStasData.test_McStasDataBinned_init_values_full + ~TestMcStasData.test_McStasDataBinned_set_colormap + ~TestMcStasData.test_McStasDataBinned_set_info_title + ~TestMcStasData.test_McStasDataBinned_set_log + ~TestMcStasData.test_McStasDataBinned_set_orders_of_mag + ~TestMcStasData.test_McStasDataBinned_set_show_colorbar + ~TestMcStasData.test_McStasDataBinned_set_xlabel + ~TestMcStasData.test_McStasDataBinned_set_ylabel + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestMcStasData.longMessage + ~TestMcStasData.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasData.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.rst new file mode 100644 index 00000000..d07f116e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.rst @@ -0,0 +1,41 @@ +mcstasscript.tests.test\_McStasData +=================================== + +.. automodule:: mcstasscript.tests.test_McStasData + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + set_dummy_McStasDataBinned_1d + set_dummy_McStasDataBinned_2d + set_dummy_MetaDataBinned_1d + set_dummy_MetaDataBinned_2d + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestMcStasData + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_McStasDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_McStasDataBinned_1d.rst new file mode 100644 index 00000000..94ba6ae9 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_McStasDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_McStasData.set\_dummy\_McStasDataBinned\_1d +==================================================================== + +.. currentmodule:: mcstasscript.tests.test_McStasData + +.. autofunction:: set_dummy_McStasDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_McStasDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_McStasDataBinned_2d.rst new file mode 100644 index 00000000..8cc7ea05 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_McStasDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_McStasData.set\_dummy\_McStasDataBinned\_2d +==================================================================== + +.. currentmodule:: mcstasscript.tests.test_McStasData + +.. autofunction:: set_dummy_McStasDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_MetaDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_MetaDataBinned_1d.rst new file mode 100644 index 00000000..7cb2e196 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_MetaDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_McStasData.set\_dummy\_MetaDataBinned\_1d +================================================================== + +.. currentmodule:: mcstasscript.tests.test_McStasData + +.. autofunction:: set_dummy_MetaDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_MetaDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_MetaDataBinned_2d.rst new file mode 100644 index 00000000..a62b8c52 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasData.set_dummy_MetaDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_McStasData.set\_dummy\_MetaDataBinned\_2d +================================================================== + +.. currentmodule:: mcstasscript.tests.test_McStasData + +.. autofunction:: set_dummy_MetaDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasMetaData.TestMcStasMetaData.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasMetaData.TestMcStasMetaData.rst new file mode 100644 index 00000000..e20bd396 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasMetaData.TestMcStasMetaData.rst @@ -0,0 +1,105 @@ +mcstasscript.tests.test\_McStasMetaData.TestMcStasMetaData +========================================================== + +.. currentmodule:: mcstasscript.tests.test_McStasMetaData + +.. autoclass:: TestMcStasMetaData + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestMcStasMetaData.__init__ + ~TestMcStasMetaData.addClassCleanup + ~TestMcStasMetaData.addCleanup + ~TestMcStasMetaData.addTypeEqualityFunc + ~TestMcStasMetaData.assertAlmostEqual + ~TestMcStasMetaData.assertAlmostEquals + ~TestMcStasMetaData.assertCountEqual + ~TestMcStasMetaData.assertDictContainsSubset + ~TestMcStasMetaData.assertDictEqual + ~TestMcStasMetaData.assertEqual + ~TestMcStasMetaData.assertEquals + ~TestMcStasMetaData.assertFalse + ~TestMcStasMetaData.assertGreater + ~TestMcStasMetaData.assertGreaterEqual + ~TestMcStasMetaData.assertIn + ~TestMcStasMetaData.assertIs + ~TestMcStasMetaData.assertIsInstance + ~TestMcStasMetaData.assertIsNone + ~TestMcStasMetaData.assertIsNot + ~TestMcStasMetaData.assertIsNotNone + ~TestMcStasMetaData.assertLess + ~TestMcStasMetaData.assertLessEqual + ~TestMcStasMetaData.assertListEqual + ~TestMcStasMetaData.assertLogs + ~TestMcStasMetaData.assertMultiLineEqual + ~TestMcStasMetaData.assertNotAlmostEqual + ~TestMcStasMetaData.assertNotAlmostEquals + ~TestMcStasMetaData.assertNotEqual + ~TestMcStasMetaData.assertNotEquals + ~TestMcStasMetaData.assertNotIn + ~TestMcStasMetaData.assertNotIsInstance + ~TestMcStasMetaData.assertNotRegex + ~TestMcStasMetaData.assertNotRegexpMatches + ~TestMcStasMetaData.assertRaises + ~TestMcStasMetaData.assertRaisesRegex + ~TestMcStasMetaData.assertRaisesRegexp + ~TestMcStasMetaData.assertRegex + ~TestMcStasMetaData.assertRegexpMatches + ~TestMcStasMetaData.assertSequenceEqual + ~TestMcStasMetaData.assertSetEqual + ~TestMcStasMetaData.assertTrue + ~TestMcStasMetaData.assertTupleEqual + ~TestMcStasMetaData.assertWarns + ~TestMcStasMetaData.assertWarnsRegex + ~TestMcStasMetaData.assert_ + ~TestMcStasMetaData.countTestCases + ~TestMcStasMetaData.debug + ~TestMcStasMetaData.defaultTestResult + ~TestMcStasMetaData.doClassCleanups + ~TestMcStasMetaData.doCleanups + ~TestMcStasMetaData.fail + ~TestMcStasMetaData.failIf + ~TestMcStasMetaData.failIfAlmostEqual + ~TestMcStasMetaData.failIfEqual + ~TestMcStasMetaData.failUnless + ~TestMcStasMetaData.failUnlessAlmostEqual + ~TestMcStasMetaData.failUnlessEqual + ~TestMcStasMetaData.failUnlessRaises + ~TestMcStasMetaData.id + ~TestMcStasMetaData.run + ~TestMcStasMetaData.setUp + ~TestMcStasMetaData.setUpClass + ~TestMcStasMetaData.shortDescription + ~TestMcStasMetaData.skipTest + ~TestMcStasMetaData.subTest + ~TestMcStasMetaData.tearDown + ~TestMcStasMetaData.tearDownClass + ~TestMcStasMetaData.test_McStasMetaData_add_info + ~TestMcStasMetaData.test_McStasMetaData_add_info_len + ~TestMcStasMetaData.test_McStasMetaData_add_info_title + ~TestMcStasMetaData.test_McStasMetaData_add_info_xlabel + ~TestMcStasMetaData.test_McStasMetaData_add_info_ylabel + ~TestMcStasMetaData.test_McStasMetaData_init + ~TestMcStasMetaData.test_McStasMetaData_long_read_1d + ~TestMcStasMetaData.test_McStasMetaData_long_read_2d + ~TestMcStasMetaData.test_McStasMetaData_return_type + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestMcStasMetaData.longMessage + ~TestMcStasMetaData.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasMetaData.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasMetaData.rst new file mode 100644 index 00000000..97ad837e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasMetaData.rst @@ -0,0 +1,31 @@ +mcstasscript.tests.test\_McStasMetaData +======================================= + +.. automodule:: mcstasscript.tests.test_McStasMetaData + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestMcStasMetaData + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasPlotOptions.TestMcStasPlotOptions.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasPlotOptions.TestMcStasPlotOptions.rst new file mode 100644 index 00000000..0f87fdbe --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasPlotOptions.TestMcStasPlotOptions.rst @@ -0,0 +1,120 @@ +mcstasscript.tests.test\_McStasPlotOptions.TestMcStasPlotOptions +================================================================ + +.. currentmodule:: mcstasscript.tests.test_McStasPlotOptions + +.. autoclass:: TestMcStasPlotOptions + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestMcStasPlotOptions.__init__ + ~TestMcStasPlotOptions.addClassCleanup + ~TestMcStasPlotOptions.addCleanup + ~TestMcStasPlotOptions.addTypeEqualityFunc + ~TestMcStasPlotOptions.assertAlmostEqual + ~TestMcStasPlotOptions.assertAlmostEquals + ~TestMcStasPlotOptions.assertCountEqual + ~TestMcStasPlotOptions.assertDictContainsSubset + ~TestMcStasPlotOptions.assertDictEqual + ~TestMcStasPlotOptions.assertEqual + ~TestMcStasPlotOptions.assertEquals + ~TestMcStasPlotOptions.assertFalse + ~TestMcStasPlotOptions.assertGreater + ~TestMcStasPlotOptions.assertGreaterEqual + ~TestMcStasPlotOptions.assertIn + ~TestMcStasPlotOptions.assertIs + ~TestMcStasPlotOptions.assertIsInstance + ~TestMcStasPlotOptions.assertIsNone + ~TestMcStasPlotOptions.assertIsNot + ~TestMcStasPlotOptions.assertIsNotNone + ~TestMcStasPlotOptions.assertLess + ~TestMcStasPlotOptions.assertLessEqual + ~TestMcStasPlotOptions.assertListEqual + ~TestMcStasPlotOptions.assertLogs + ~TestMcStasPlotOptions.assertMultiLineEqual + ~TestMcStasPlotOptions.assertNotAlmostEqual + ~TestMcStasPlotOptions.assertNotAlmostEquals + ~TestMcStasPlotOptions.assertNotEqual + ~TestMcStasPlotOptions.assertNotEquals + ~TestMcStasPlotOptions.assertNotIn + ~TestMcStasPlotOptions.assertNotIsInstance + ~TestMcStasPlotOptions.assertNotRegex + ~TestMcStasPlotOptions.assertNotRegexpMatches + ~TestMcStasPlotOptions.assertRaises + ~TestMcStasPlotOptions.assertRaisesRegex + ~TestMcStasPlotOptions.assertRaisesRegexp + ~TestMcStasPlotOptions.assertRegex + ~TestMcStasPlotOptions.assertRegexpMatches + ~TestMcStasPlotOptions.assertSequenceEqual + ~TestMcStasPlotOptions.assertSetEqual + ~TestMcStasPlotOptions.assertTrue + ~TestMcStasPlotOptions.assertTupleEqual + ~TestMcStasPlotOptions.assertWarns + ~TestMcStasPlotOptions.assertWarnsRegex + ~TestMcStasPlotOptions.assert_ + ~TestMcStasPlotOptions.countTestCases + ~TestMcStasPlotOptions.debug + ~TestMcStasPlotOptions.defaultTestResult + ~TestMcStasPlotOptions.doClassCleanups + ~TestMcStasPlotOptions.doCleanups + ~TestMcStasPlotOptions.fail + ~TestMcStasPlotOptions.failIf + ~TestMcStasPlotOptions.failIfAlmostEqual + ~TestMcStasPlotOptions.failIfEqual + ~TestMcStasPlotOptions.failUnless + ~TestMcStasPlotOptions.failUnlessAlmostEqual + ~TestMcStasPlotOptions.failUnlessEqual + ~TestMcStasPlotOptions.failUnlessRaises + ~TestMcStasPlotOptions.id + ~TestMcStasPlotOptions.run + ~TestMcStasPlotOptions.setUp + ~TestMcStasPlotOptions.setUpClass + ~TestMcStasPlotOptions.shortDescription + ~TestMcStasPlotOptions.skipTest + ~TestMcStasPlotOptions.subTest + ~TestMcStasPlotOptions.tearDown + ~TestMcStasPlotOptions.tearDownClass + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_bottom_lim + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_colormap + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_cut_max + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_cut_min + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_left_lim + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_log + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_orders_of_mag + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_right_lim + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_show_colorbar + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_top_lim + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_x_axis_multiplier + ~TestMcStasPlotOptions.test_McStasPlotOptions_default_y_axis_multiplier + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_bottom_lim + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_colormap + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_cut_max + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_cut_min + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_left_lim + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_log + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_orders_of_mag + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_right_lim + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_show_colorbar + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_top_lim + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_x_axis_multiplier + ~TestMcStasPlotOptions.test_McStasPlotOptions_set_y_axis_multiplier + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestMcStasPlotOptions.longMessage + ~TestMcStasPlotOptions.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_McStasPlotOptions.rst b/docs/source/_autosummary/mcstasscript.tests.test_McStasPlotOptions.rst new file mode 100644 index 00000000..a33c7975 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_McStasPlotOptions.rst @@ -0,0 +1,31 @@ +mcstasscript.tests.test\_McStasPlotOptions +========================================== + +.. automodule:: mcstasscript.tests.test_McStasPlotOptions + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestMcStasPlotOptions + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Plotter.TestPlotterHelpers.rst b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.TestPlotterHelpers.rst new file mode 100644 index 00000000..8ff72964 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.TestPlotterHelpers.rst @@ -0,0 +1,128 @@ +mcstasscript.tests.test\_Plotter.TestPlotterHelpers +=================================================== + +.. currentmodule:: mcstasscript.tests.test_Plotter + +.. autoclass:: TestPlotterHelpers + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestPlotterHelpers.__init__ + ~TestPlotterHelpers.addClassCleanup + ~TestPlotterHelpers.addCleanup + ~TestPlotterHelpers.addTypeEqualityFunc + ~TestPlotterHelpers.assertAlmostEqual + ~TestPlotterHelpers.assertAlmostEquals + ~TestPlotterHelpers.assertCountEqual + ~TestPlotterHelpers.assertDictContainsSubset + ~TestPlotterHelpers.assertDictEqual + ~TestPlotterHelpers.assertEqual + ~TestPlotterHelpers.assertEquals + ~TestPlotterHelpers.assertFalse + ~TestPlotterHelpers.assertGreater + ~TestPlotterHelpers.assertGreaterEqual + ~TestPlotterHelpers.assertIn + ~TestPlotterHelpers.assertIs + ~TestPlotterHelpers.assertIsInstance + ~TestPlotterHelpers.assertIsNone + ~TestPlotterHelpers.assertIsNot + ~TestPlotterHelpers.assertIsNotNone + ~TestPlotterHelpers.assertLess + ~TestPlotterHelpers.assertLessEqual + ~TestPlotterHelpers.assertListEqual + ~TestPlotterHelpers.assertLogs + ~TestPlotterHelpers.assertMultiLineEqual + ~TestPlotterHelpers.assertNotAlmostEqual + ~TestPlotterHelpers.assertNotAlmostEquals + ~TestPlotterHelpers.assertNotEqual + ~TestPlotterHelpers.assertNotEquals + ~TestPlotterHelpers.assertNotIn + ~TestPlotterHelpers.assertNotIsInstance + ~TestPlotterHelpers.assertNotRegex + ~TestPlotterHelpers.assertNotRegexpMatches + ~TestPlotterHelpers.assertRaises + ~TestPlotterHelpers.assertRaisesRegex + ~TestPlotterHelpers.assertRaisesRegexp + ~TestPlotterHelpers.assertRegex + ~TestPlotterHelpers.assertRegexpMatches + ~TestPlotterHelpers.assertSequenceEqual + ~TestPlotterHelpers.assertSetEqual + ~TestPlotterHelpers.assertTrue + ~TestPlotterHelpers.assertTupleEqual + ~TestPlotterHelpers.assertWarns + ~TestPlotterHelpers.assertWarnsRegex + ~TestPlotterHelpers.assert_ + ~TestPlotterHelpers.countTestCases + ~TestPlotterHelpers.debug + ~TestPlotterHelpers.defaultTestResult + ~TestPlotterHelpers.doClassCleanups + ~TestPlotterHelpers.doCleanups + ~TestPlotterHelpers.fail + ~TestPlotterHelpers.failIf + ~TestPlotterHelpers.failIfAlmostEqual + ~TestPlotterHelpers.failIfEqual + ~TestPlotterHelpers.failUnless + ~TestPlotterHelpers.failUnlessAlmostEqual + ~TestPlotterHelpers.failUnlessEqual + ~TestPlotterHelpers.failUnlessRaises + ~TestPlotterHelpers.id + ~TestPlotterHelpers.run + ~TestPlotterHelpers.setUp + ~TestPlotterHelpers.setUpClass + ~TestPlotterHelpers.shortDescription + ~TestPlotterHelpers.skipTest + ~TestPlotterHelpers.subTest + ~TestPlotterHelpers.tearDown + ~TestPlotterHelpers.tearDownClass + ~TestPlotterHelpers.test_find_min_max_I_cut_max_1D_case + ~TestPlotterHelpers.test_find_min_max_I_cut_max_2D_case + ~TestPlotterHelpers.test_find_min_max_I_cut_min_1D_case + ~TestPlotterHelpers.test_find_min_max_I_cut_min_2D_case + ~TestPlotterHelpers.test_find_min_max_I_fail_case + ~TestPlotterHelpers.test_find_min_max_I_log_cut_max_1D_case + ~TestPlotterHelpers.test_find_min_max_I_log_cut_max_2D_case + ~TestPlotterHelpers.test_find_min_max_I_log_cut_min_1D_case + ~TestPlotterHelpers.test_find_min_max_I_log_cut_min_2D_case + ~TestPlotterHelpers.test_find_min_max_I_log_orders_of_mag_1D_case + ~TestPlotterHelpers.test_find_min_max_I_log_orders_of_mag_1D_with_zero_case + ~TestPlotterHelpers.test_find_min_max_I_log_orders_of_mag_2D_case + ~TestPlotterHelpers.test_find_min_max_I_log_orders_of_mag_2D_with_zero_case + ~TestPlotterHelpers.test_find_min_max_I_log_with_zero_2D_case + ~TestPlotterHelpers.test_find_min_max_I_log_with_zero_case + ~TestPlotterHelpers.test_find_min_max_I_simple_1D_case + ~TestPlotterHelpers.test_find_min_max_I_simple_2D_case + ~TestPlotterHelpers.test_handle_kwargs_all_simple + ~TestPlotterHelpers.test_handle_kwargs_bottom_lim + ~TestPlotterHelpers.test_handle_kwargs_figsize_default + ~TestPlotterHelpers.test_handle_kwargs_figsize_list + ~TestPlotterHelpers.test_handle_kwargs_figsize_tuple + ~TestPlotterHelpers.test_handle_kwargs_left_lim + ~TestPlotterHelpers.test_handle_kwargs_log + ~TestPlotterHelpers.test_handle_kwargs_oders_of_mag + ~TestPlotterHelpers.test_handle_kwargs_right_lim + ~TestPlotterHelpers.test_handle_kwargs_single_element_to_list + ~TestPlotterHelpers.test_handle_kwargs_top_lim + ~TestPlotterHelpers.test_plot_function_1D_log + ~TestPlotterHelpers.test_plot_function_1D_normal + ~TestPlotterHelpers.test_plot_function_2D_log + ~TestPlotterHelpers.test_plot_function_2D_normal + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestPlotterHelpers.longMessage + ~TestPlotterHelpers.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_McStasDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_McStasDataBinned_1d.rst new file mode 100644 index 00000000..bfb09573 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_McStasDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Plotter.get\_dummy\_McStasDataBinned\_1d +================================================================= + +.. currentmodule:: mcstasscript.tests.test_Plotter + +.. autofunction:: get_dummy_McStasDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_McStasDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_McStasDataBinned_2d.rst new file mode 100644 index 00000000..8299482c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_McStasDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Plotter.get\_dummy\_McStasDataBinned\_2d +================================================================= + +.. currentmodule:: mcstasscript.tests.test_Plotter + +.. autofunction:: get_dummy_McStasDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_MetaDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_MetaDataBinned_1d.rst new file mode 100644 index 00000000..a727390a --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_MetaDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Plotter.get\_dummy\_MetaDataBinned\_1d +=============================================================== + +.. currentmodule:: mcstasscript.tests.test_Plotter + +.. autofunction:: get_dummy_MetaDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_MetaDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_MetaDataBinned_2d.rst new file mode 100644 index 00000000..7c5d48cb --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.get_dummy_MetaDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_Plotter.get\_dummy\_MetaDataBinned\_2d +=============================================================== + +.. currentmodule:: mcstasscript.tests.test_Plotter + +.. autofunction:: get_dummy_MetaDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_Plotter.rst b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.rst new file mode 100644 index 00000000..ad6ba15a --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_Plotter.rst @@ -0,0 +1,41 @@ +mcstasscript.tests.test\_Plotter +================================ + +.. automodule:: mcstasscript.tests.test_Plotter + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + get_dummy_McStasDataBinned_1d + get_dummy_McStasDataBinned_2d + get_dummy_MetaDataBinned_1d + get_dummy_MetaDataBinned_2d + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestPlotterHelpers + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_add_data.Test_add_data.rst b/docs/source/_autosummary/mcstasscript.tests.test_add_data.Test_add_data.rst new file mode 100644 index 00000000..a147251f --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_add_data.Test_add_data.rst @@ -0,0 +1,101 @@ +mcstasscript.tests.test\_add\_data.Test\_add\_data +================================================== + +.. currentmodule:: mcstasscript.tests.test_add_data + +.. autoclass:: Test_add_data + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_add_data.__init__ + ~Test_add_data.addClassCleanup + ~Test_add_data.addCleanup + ~Test_add_data.addTypeEqualityFunc + ~Test_add_data.assertAlmostEqual + ~Test_add_data.assertAlmostEquals + ~Test_add_data.assertCountEqual + ~Test_add_data.assertDictContainsSubset + ~Test_add_data.assertDictEqual + ~Test_add_data.assertEqual + ~Test_add_data.assertEquals + ~Test_add_data.assertFalse + ~Test_add_data.assertGreater + ~Test_add_data.assertGreaterEqual + ~Test_add_data.assertIn + ~Test_add_data.assertIs + ~Test_add_data.assertIsInstance + ~Test_add_data.assertIsNone + ~Test_add_data.assertIsNot + ~Test_add_data.assertIsNotNone + ~Test_add_data.assertLess + ~Test_add_data.assertLessEqual + ~Test_add_data.assertListEqual + ~Test_add_data.assertLogs + ~Test_add_data.assertMultiLineEqual + ~Test_add_data.assertNotAlmostEqual + ~Test_add_data.assertNotAlmostEquals + ~Test_add_data.assertNotEqual + ~Test_add_data.assertNotEquals + ~Test_add_data.assertNotIn + ~Test_add_data.assertNotIsInstance + ~Test_add_data.assertNotRegex + ~Test_add_data.assertNotRegexpMatches + ~Test_add_data.assertRaises + ~Test_add_data.assertRaisesRegex + ~Test_add_data.assertRaisesRegexp + ~Test_add_data.assertRegex + ~Test_add_data.assertRegexpMatches + ~Test_add_data.assertSequenceEqual + ~Test_add_data.assertSetEqual + ~Test_add_data.assertTrue + ~Test_add_data.assertTupleEqual + ~Test_add_data.assertWarns + ~Test_add_data.assertWarnsRegex + ~Test_add_data.assert_ + ~Test_add_data.countTestCases + ~Test_add_data.debug + ~Test_add_data.defaultTestResult + ~Test_add_data.doClassCleanups + ~Test_add_data.doCleanups + ~Test_add_data.fail + ~Test_add_data.failIf + ~Test_add_data.failIfAlmostEqual + ~Test_add_data.failIfEqual + ~Test_add_data.failUnless + ~Test_add_data.failUnlessAlmostEqual + ~Test_add_data.failUnlessEqual + ~Test_add_data.failUnlessRaises + ~Test_add_data.id + ~Test_add_data.run + ~Test_add_data.setUp + ~Test_add_data.setUpClass + ~Test_add_data.shortDescription + ~Test_add_data.skipTest + ~Test_add_data.subTest + ~Test_add_data.tearDown + ~Test_add_data.tearDownClass + ~Test_add_data.test_1d_updates_correctly + ~Test_add_data.test_1d_updates_different + ~Test_add_data.test_2d_updates_correctly + ~Test_add_data.test_2d_updates_different + ~Test_add_data.test_fail + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_add_data.longMessage + ~Test_add_data.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_add_data.rst b/docs/source/_autosummary/mcstasscript.tests.test_add_data.rst new file mode 100644 index 00000000..73b3caa5 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_add_data.rst @@ -0,0 +1,41 @@ +mcstasscript.tests.test\_add\_data +================================== + +.. automodule:: mcstasscript.tests.test_add_data + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + set_dummy_McStasDataBinned_1d + set_dummy_McStasDataBinned_2d + set_dummy_MetaDataBinned_1d + set_dummy_MetaDataBinned_2d + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + Test_add_data + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_McStasDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_McStasDataBinned_1d.rst new file mode 100644 index 00000000..61cee01d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_McStasDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_add\_data.set\_dummy\_McStasDataBinned\_1d +=================================================================== + +.. currentmodule:: mcstasscript.tests.test_add_data + +.. autofunction:: set_dummy_McStasDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_McStasDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_McStasDataBinned_2d.rst new file mode 100644 index 00000000..bfefcf20 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_McStasDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_add\_data.set\_dummy\_McStasDataBinned\_2d +=================================================================== + +.. currentmodule:: mcstasscript.tests.test_add_data + +.. autofunction:: set_dummy_McStasDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_MetaDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_MetaDataBinned_1d.rst new file mode 100644 index 00000000..af88bf87 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_MetaDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_add\_data.set\_dummy\_MetaDataBinned\_1d +================================================================= + +.. currentmodule:: mcstasscript.tests.test_add_data + +.. autofunction:: set_dummy_MetaDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_MetaDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_MetaDataBinned_2d.rst new file mode 100644 index 00000000..8eb9cbad --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_add_data.set_dummy_MetaDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_add\_data.set\_dummy\_MetaDataBinned\_2d +================================================================= + +.. currentmodule:: mcstasscript.tests.test_add_data + +.. autofunction:: set_dummy_MetaDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_component.TestComponent.rst b/docs/source/_autosummary/mcstasscript.tests.test_component.TestComponent.rst new file mode 100644 index 00000000..ac14da9c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_component.TestComponent.rst @@ -0,0 +1,127 @@ +mcstasscript.tests.test\_component.TestComponent +================================================ + +.. currentmodule:: mcstasscript.tests.test_component + +.. autoclass:: TestComponent + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestComponent.__init__ + ~TestComponent.addClassCleanup + ~TestComponent.addCleanup + ~TestComponent.addTypeEqualityFunc + ~TestComponent.assertAlmostEqual + ~TestComponent.assertAlmostEquals + ~TestComponent.assertCountEqual + ~TestComponent.assertDictContainsSubset + ~TestComponent.assertDictEqual + ~TestComponent.assertEqual + ~TestComponent.assertEquals + ~TestComponent.assertFalse + ~TestComponent.assertGreater + ~TestComponent.assertGreaterEqual + ~TestComponent.assertIn + ~TestComponent.assertIs + ~TestComponent.assertIsInstance + ~TestComponent.assertIsNone + ~TestComponent.assertIsNot + ~TestComponent.assertIsNotNone + ~TestComponent.assertLess + ~TestComponent.assertLessEqual + ~TestComponent.assertListEqual + ~TestComponent.assertLogs + ~TestComponent.assertMultiLineEqual + ~TestComponent.assertNotAlmostEqual + ~TestComponent.assertNotAlmostEquals + ~TestComponent.assertNotEqual + ~TestComponent.assertNotEquals + ~TestComponent.assertNotIn + ~TestComponent.assertNotIsInstance + ~TestComponent.assertNotRegex + ~TestComponent.assertNotRegexpMatches + ~TestComponent.assertRaises + ~TestComponent.assertRaisesRegex + ~TestComponent.assertRaisesRegexp + ~TestComponent.assertRegex + ~TestComponent.assertRegexpMatches + ~TestComponent.assertSequenceEqual + ~TestComponent.assertSetEqual + ~TestComponent.assertTrue + ~TestComponent.assertTupleEqual + ~TestComponent.assertWarns + ~TestComponent.assertWarnsRegex + ~TestComponent.assert_ + ~TestComponent.countTestCases + ~TestComponent.debug + ~TestComponent.defaultTestResult + ~TestComponent.doClassCleanups + ~TestComponent.doCleanups + ~TestComponent.fail + ~TestComponent.failIf + ~TestComponent.failIfAlmostEqual + ~TestComponent.failIfEqual + ~TestComponent.failUnless + ~TestComponent.failUnlessAlmostEqual + ~TestComponent.failUnlessEqual + ~TestComponent.failUnlessRaises + ~TestComponent.id + ~TestComponent.run + ~TestComponent.setUp + ~TestComponent.setUpClass + ~TestComponent.shortDescription + ~TestComponent.skipTest + ~TestComponent.subTest + ~TestComponent.tearDown + ~TestComponent.tearDownClass + ~TestComponent.test_Component_basic_init + ~TestComponent.test_Component_basic_init_defaults + ~TestComponent.test_Component_basic_init_set_AT + ~TestComponent.test_Component_basic_init_set_AT_Component + ~TestComponent.test_Component_basic_init_set_AT_Component_keyword + ~TestComponent.test_Component_basic_init_set_EXTEND + ~TestComponent.test_Component_basic_init_set_GROUP + ~TestComponent.test_Component_basic_init_set_JUMP + ~TestComponent.test_Component_basic_init_set_RELATIVE + ~TestComponent.test_Component_basic_init_set_ROTATED + ~TestComponent.test_Component_basic_init_set_ROTATED_Component + ~TestComponent.test_Component_basic_init_set_ROTATED_Component_keyword + ~TestComponent.test_Component_basic_init_set_SPLIT + ~TestComponent.test_Component_basic_init_set_WHEN + ~TestComponent.test_Component_basic_init_set_comment + ~TestComponent.test_Component_basic_new_attribute_error + ~TestComponent.test_Component_basic_object_ref_init_set_RELATIVE + ~TestComponent.test_Component_freeze + ~TestComponent.test_Component_init_complex_call + ~TestComponent.test_Component_init_complex_call_relative + ~TestComponent.test_Component_print_long + ~TestComponent.test_Component_print_short_longest_name + ~TestComponent.test_Component_print_short_standard + ~TestComponent.test_Component_show_parameters + ~TestComponent.test_Component_show_parameters_simple + ~TestComponent.test_Component_write_Component_required_parameter_error + ~TestComponent.test_Component_write_to_file_complex + ~TestComponent.test_Component_write_to_file_complex_SPLIT_string + ~TestComponent.test_Component_write_to_file_include + ~TestComponent.test_Component_write_to_file_simple + ~TestComponent.test_component_basic_init_set_parameters + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestComponent.longMessage + ~TestComponent.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_component.rst b/docs/source/_autosummary/mcstasscript.tests.test_component.rst new file mode 100644 index 00000000..229ca9f4 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_component.rst @@ -0,0 +1,40 @@ +mcstasscript.tests.test\_component +================================== + +.. automodule:: mcstasscript.tests.test_component + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + setup_Component_all_keywords + setup_Component_relative + setup_Component_with_parameters + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestComponent + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_all_keywords.rst b/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_all_keywords.rst new file mode 100644 index 00000000..21647c5f --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_all_keywords.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_component.setup\_Component\_all\_keywords +================================================================== + +.. currentmodule:: mcstasscript.tests.test_component + +.. autofunction:: setup_Component_all_keywords \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_relative.rst b/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_relative.rst new file mode 100644 index 00000000..4264aca1 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_relative.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_component.setup\_Component\_relative +============================================================= + +.. currentmodule:: mcstasscript.tests.test_component + +.. autofunction:: setup_Component_relative \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_with_parameters.rst b/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_with_parameters.rst new file mode 100644 index 00000000..adf923ce --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_component.setup_Component_with_parameters.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_component.setup\_Component\_with\_parameters +===================================================================== + +.. currentmodule:: mcstasscript.tests.test_component + +.. autofunction:: setup_Component_with_parameters \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_declare_variable.Test_DeclareVariable.rst b/docs/source/_autosummary/mcstasscript.tests.test_declare_variable.Test_DeclareVariable.rst new file mode 100644 index 00000000..ac3b4442 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_declare_variable.Test_DeclareVariable.rst @@ -0,0 +1,105 @@ +mcstasscript.tests.test\_declare\_variable.Test\_DeclareVariable +================================================================ + +.. currentmodule:: mcstasscript.tests.test_declare_variable + +.. autoclass:: Test_DeclareVariable + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_DeclareVariable.__init__ + ~Test_DeclareVariable.addClassCleanup + ~Test_DeclareVariable.addCleanup + ~Test_DeclareVariable.addTypeEqualityFunc + ~Test_DeclareVariable.assertAlmostEqual + ~Test_DeclareVariable.assertAlmostEquals + ~Test_DeclareVariable.assertCountEqual + ~Test_DeclareVariable.assertDictContainsSubset + ~Test_DeclareVariable.assertDictEqual + ~Test_DeclareVariable.assertEqual + ~Test_DeclareVariable.assertEquals + ~Test_DeclareVariable.assertFalse + ~Test_DeclareVariable.assertGreater + ~Test_DeclareVariable.assertGreaterEqual + ~Test_DeclareVariable.assertIn + ~Test_DeclareVariable.assertIs + ~Test_DeclareVariable.assertIsInstance + ~Test_DeclareVariable.assertIsNone + ~Test_DeclareVariable.assertIsNot + ~Test_DeclareVariable.assertIsNotNone + ~Test_DeclareVariable.assertLess + ~Test_DeclareVariable.assertLessEqual + ~Test_DeclareVariable.assertListEqual + ~Test_DeclareVariable.assertLogs + ~Test_DeclareVariable.assertMultiLineEqual + ~Test_DeclareVariable.assertNotAlmostEqual + ~Test_DeclareVariable.assertNotAlmostEquals + ~Test_DeclareVariable.assertNotEqual + ~Test_DeclareVariable.assertNotEquals + ~Test_DeclareVariable.assertNotIn + ~Test_DeclareVariable.assertNotIsInstance + ~Test_DeclareVariable.assertNotRegex + ~Test_DeclareVariable.assertNotRegexpMatches + ~Test_DeclareVariable.assertRaises + ~Test_DeclareVariable.assertRaisesRegex + ~Test_DeclareVariable.assertRaisesRegexp + ~Test_DeclareVariable.assertRegex + ~Test_DeclareVariable.assertRegexpMatches + ~Test_DeclareVariable.assertSequenceEqual + ~Test_DeclareVariable.assertSetEqual + ~Test_DeclareVariable.assertTrue + ~Test_DeclareVariable.assertTupleEqual + ~Test_DeclareVariable.assertWarns + ~Test_DeclareVariable.assertWarnsRegex + ~Test_DeclareVariable.assert_ + ~Test_DeclareVariable.countTestCases + ~Test_DeclareVariable.debug + ~Test_DeclareVariable.defaultTestResult + ~Test_DeclareVariable.doClassCleanups + ~Test_DeclareVariable.doCleanups + ~Test_DeclareVariable.fail + ~Test_DeclareVariable.failIf + ~Test_DeclareVariable.failIfAlmostEqual + ~Test_DeclareVariable.failIfEqual + ~Test_DeclareVariable.failUnless + ~Test_DeclareVariable.failUnlessAlmostEqual + ~Test_DeclareVariable.failUnlessEqual + ~Test_DeclareVariable.failUnlessRaises + ~Test_DeclareVariable.id + ~Test_DeclareVariable.run + ~Test_DeclareVariable.setUp + ~Test_DeclareVariable.setUpClass + ~Test_DeclareVariable.shortDescription + ~Test_DeclareVariable.skipTest + ~Test_DeclareVariable.subTest + ~Test_DeclareVariable.tearDown + ~Test_DeclareVariable.tearDownClass + ~Test_DeclareVariable.test_DeclareVariable_init_basic_type + ~Test_DeclareVariable.test_DeclareVariable_init_basic_type_value + ~Test_DeclareVariable.test_DeclareVariable_init_basic_type_value_comment + ~Test_DeclareVariable.test_DeclareVariable_init_basic_type_vector + ~Test_DeclareVariable.test_DeclareVariable_write_basic + ~Test_DeclareVariable.test_DeclareVariable_write_complex_array + ~Test_DeclareVariable.test_DeclareVariable_write_complex_float + ~Test_DeclareVariable.test_DeclareVariable_write_complex_int + ~Test_DeclareVariable.test_DeclareVariable_write_simple_array + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_DeclareVariable.longMessage + ~Test_DeclareVariable.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_declare_variable.rst b/docs/source/_autosummary/mcstasscript.tests.test_declare_variable.rst new file mode 100644 index 00000000..5cdc84dc --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_declare_variable.rst @@ -0,0 +1,31 @@ +mcstasscript.tests.test\_declare\_variable +========================================== + +.. automodule:: mcstasscript.tests.test_declare_variable + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + Test_DeclareVariable + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.TestDumpAndLoad.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.TestDumpAndLoad.rst new file mode 100644 index 00000000..c86fdfce --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.TestDumpAndLoad.rst @@ -0,0 +1,98 @@ +mcstasscript.tests.test\_dump\_and\_load.TestDumpAndLoad +======================================================== + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autoclass:: TestDumpAndLoad + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestDumpAndLoad.__init__ + ~TestDumpAndLoad.addClassCleanup + ~TestDumpAndLoad.addCleanup + ~TestDumpAndLoad.addTypeEqualityFunc + ~TestDumpAndLoad.assertAlmostEqual + ~TestDumpAndLoad.assertAlmostEquals + ~TestDumpAndLoad.assertCountEqual + ~TestDumpAndLoad.assertDictContainsSubset + ~TestDumpAndLoad.assertDictEqual + ~TestDumpAndLoad.assertEqual + ~TestDumpAndLoad.assertEquals + ~TestDumpAndLoad.assertFalse + ~TestDumpAndLoad.assertGreater + ~TestDumpAndLoad.assertGreaterEqual + ~TestDumpAndLoad.assertIn + ~TestDumpAndLoad.assertIs + ~TestDumpAndLoad.assertIsInstance + ~TestDumpAndLoad.assertIsNone + ~TestDumpAndLoad.assertIsNot + ~TestDumpAndLoad.assertIsNotNone + ~TestDumpAndLoad.assertLess + ~TestDumpAndLoad.assertLessEqual + ~TestDumpAndLoad.assertListEqual + ~TestDumpAndLoad.assertLogs + ~TestDumpAndLoad.assertMultiLineEqual + ~TestDumpAndLoad.assertNotAlmostEqual + ~TestDumpAndLoad.assertNotAlmostEquals + ~TestDumpAndLoad.assertNotEqual + ~TestDumpAndLoad.assertNotEquals + ~TestDumpAndLoad.assertNotIn + ~TestDumpAndLoad.assertNotIsInstance + ~TestDumpAndLoad.assertNotRegex + ~TestDumpAndLoad.assertNotRegexpMatches + ~TestDumpAndLoad.assertRaises + ~TestDumpAndLoad.assertRaisesRegex + ~TestDumpAndLoad.assertRaisesRegexp + ~TestDumpAndLoad.assertRegex + ~TestDumpAndLoad.assertRegexpMatches + ~TestDumpAndLoad.assertSequenceEqual + ~TestDumpAndLoad.assertSetEqual + ~TestDumpAndLoad.assertTrue + ~TestDumpAndLoad.assertTupleEqual + ~TestDumpAndLoad.assertWarns + ~TestDumpAndLoad.assertWarnsRegex + ~TestDumpAndLoad.assert_ + ~TestDumpAndLoad.countTestCases + ~TestDumpAndLoad.debug + ~TestDumpAndLoad.defaultTestResult + ~TestDumpAndLoad.doClassCleanups + ~TestDumpAndLoad.doCleanups + ~TestDumpAndLoad.fail + ~TestDumpAndLoad.failIf + ~TestDumpAndLoad.failIfAlmostEqual + ~TestDumpAndLoad.failIfEqual + ~TestDumpAndLoad.failUnless + ~TestDumpAndLoad.failUnlessAlmostEqual + ~TestDumpAndLoad.failUnlessEqual + ~TestDumpAndLoad.failUnlessRaises + ~TestDumpAndLoad.id + ~TestDumpAndLoad.run + ~TestDumpAndLoad.setUp + ~TestDumpAndLoad.setUpClass + ~TestDumpAndLoad.shortDescription + ~TestDumpAndLoad.skipTest + ~TestDumpAndLoad.subTest + ~TestDumpAndLoad.tearDown + ~TestDumpAndLoad.tearDownClass + ~TestDumpAndLoad.test_dump_simple + ~TestDumpAndLoad.test_load_simple + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestDumpAndLoad.longMessage + ~TestDumpAndLoad.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.rst new file mode 100644 index 00000000..cf236593 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.rst @@ -0,0 +1,50 @@ +mcstasscript.tests.test\_dump\_and\_load +======================================== + +.. automodule:: mcstasscript.tests.test_dump_and_load + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + setup_instr_no_path + setup_instr_root_path + setup_instr_with_input_path + setup_instr_with_input_path_relative + setup_instr_with_path + setup_populated_instr + setup_populated_instr_with_dummy_path + setup_populated_with_some_options_instr + setup_populated_x_ray_instr + setup_populated_x_ray_instr_with_dummy_path + setup_x_ray_instr_no_path + setup_x_ray_instr_root_path + setup_x_ray_instr_with_path + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestDumpAndLoad + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_no_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_no_path.rst new file mode 100644 index 00000000..b5169c3c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_no_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_instr\_no\_path +=============================================================== + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_instr_no_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_root_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_root_path.rst new file mode 100644 index 00000000..e32846fd --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_root_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_instr\_root\_path +================================================================= + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_instr_root_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_input_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_input_path.rst new file mode 100644 index 00000000..8467ec9e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_input_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_instr\_with\_input\_path +======================================================================== + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_instr_with_input_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_input_path_relative.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_input_path_relative.rst new file mode 100644 index 00000000..e0cbfec2 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_input_path_relative.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_instr\_with\_input\_path\_relative +================================================================================== + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_instr_with_input_path_relative \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_path.rst new file mode 100644 index 00000000..43f0a23d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_instr_with_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_instr\_with\_path +================================================================= + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_instr_with_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_instr.rst new file mode 100644 index 00000000..2aff5aab --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_instr.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_populated\_instr +================================================================ + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_populated_instr \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_instr_with_dummy_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_instr_with_dummy_path.rst new file mode 100644 index 00000000..8c3ef682 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_instr_with_dummy_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_populated\_instr\_with\_dummy\_path +=================================================================================== + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_populated_instr_with_dummy_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_with_some_options_instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_with_some_options_instr.rst new file mode 100644 index 00000000..aa75b9ed --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_with_some_options_instr.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_populated\_with\_some\_options\_instr +===================================================================================== + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_populated_with_some_options_instr \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_x_ray_instr.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_x_ray_instr.rst new file mode 100644 index 00000000..c3e25cb8 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_x_ray_instr.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_populated\_x\_ray\_instr +======================================================================== + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_populated_x_ray_instr \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_x_ray_instr_with_dummy_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_x_ray_instr_with_dummy_path.rst new file mode 100644 index 00000000..5c2d1bbd --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_populated_x_ray_instr_with_dummy_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_populated\_x\_ray\_instr\_with\_dummy\_path +=========================================================================================== + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_populated_x_ray_instr_with_dummy_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_no_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_no_path.rst new file mode 100644 index 00000000..55134cfb --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_no_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_x\_ray\_instr\_no\_path +======================================================================= + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_x_ray_instr_no_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_root_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_root_path.rst new file mode 100644 index 00000000..1cf1d3ac --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_root_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_x\_ray\_instr\_root\_path +========================================================================= + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_x_ray_instr_root_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_with_path.rst b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_with_path.rst new file mode 100644 index 00000000..ca614de0 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_dump_and_load.setup_x_ray_instr_with_path.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_dump\_and\_load.setup\_x\_ray\_instr\_with\_path +========================================================================= + +.. currentmodule:: mcstasscript.tests.test_dump_and_load + +.. autofunction:: setup_x_ray_instr_with_path \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_formatting.TestFormatting.rst b/docs/source/_autosummary/mcstasscript.tests.test_formatting.TestFormatting.rst new file mode 100644 index 00000000..4e00ae61 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_formatting.TestFormatting.rst @@ -0,0 +1,104 @@ +mcstasscript.tests.test\_formatting.TestFormatting +================================================== + +.. currentmodule:: mcstasscript.tests.test_formatting + +.. autoclass:: TestFormatting + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestFormatting.__init__ + ~TestFormatting.addClassCleanup + ~TestFormatting.addCleanup + ~TestFormatting.addTypeEqualityFunc + ~TestFormatting.assertAlmostEqual + ~TestFormatting.assertAlmostEquals + ~TestFormatting.assertCountEqual + ~TestFormatting.assertDictContainsSubset + ~TestFormatting.assertDictEqual + ~TestFormatting.assertEqual + ~TestFormatting.assertEquals + ~TestFormatting.assertFalse + ~TestFormatting.assertGreater + ~TestFormatting.assertGreaterEqual + ~TestFormatting.assertIn + ~TestFormatting.assertIs + ~TestFormatting.assertIsInstance + ~TestFormatting.assertIsNone + ~TestFormatting.assertIsNot + ~TestFormatting.assertIsNotNone + ~TestFormatting.assertLess + ~TestFormatting.assertLessEqual + ~TestFormatting.assertListEqual + ~TestFormatting.assertLogs + ~TestFormatting.assertMultiLineEqual + ~TestFormatting.assertNotAlmostEqual + ~TestFormatting.assertNotAlmostEquals + ~TestFormatting.assertNotEqual + ~TestFormatting.assertNotEquals + ~TestFormatting.assertNotIn + ~TestFormatting.assertNotIsInstance + ~TestFormatting.assertNotRegex + ~TestFormatting.assertNotRegexpMatches + ~TestFormatting.assertRaises + ~TestFormatting.assertRaisesRegex + ~TestFormatting.assertRaisesRegexp + ~TestFormatting.assertRegex + ~TestFormatting.assertRegexpMatches + ~TestFormatting.assertSequenceEqual + ~TestFormatting.assertSetEqual + ~TestFormatting.assertTrue + ~TestFormatting.assertTupleEqual + ~TestFormatting.assertWarns + ~TestFormatting.assertWarnsRegex + ~TestFormatting.assert_ + ~TestFormatting.countTestCases + ~TestFormatting.debug + ~TestFormatting.defaultTestResult + ~TestFormatting.doClassCleanups + ~TestFormatting.doCleanups + ~TestFormatting.fail + ~TestFormatting.failIf + ~TestFormatting.failIfAlmostEqual + ~TestFormatting.failIfEqual + ~TestFormatting.failUnless + ~TestFormatting.failUnlessAlmostEqual + ~TestFormatting.failUnlessEqual + ~TestFormatting.failUnlessRaises + ~TestFormatting.id + ~TestFormatting.run + ~TestFormatting.setUp + ~TestFormatting.setUpClass + ~TestFormatting.shortDescription + ~TestFormatting.skipTest + ~TestFormatting.subTest + ~TestFormatting.tearDown + ~TestFormatting.tearDownClass + ~TestFormatting.test_is_legal_filename_reject_backwards_dash + ~TestFormatting.test_is_legal_filename_reject_forward_dash + ~TestFormatting.test_is_legal_filename_rekect_space + ~TestFormatting.test_is_legal_filename_simple + ~TestFormatting.test_is_legal_parameter_reject_empty + ~TestFormatting.test_is_legal_parameter_reject_first_number + ~TestFormatting.test_is_legal_parameter_reject_space + ~TestFormatting.test_is_legal_parameter_simple + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestFormatting.longMessage + ~TestFormatting.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_formatting.rst b/docs/source/_autosummary/mcstasscript.tests.test_formatting.rst new file mode 100644 index 00000000..f3e641b4 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_formatting.rst @@ -0,0 +1,31 @@ +mcstasscript.tests.test\_formatting +=================================== + +.. automodule:: mcstasscript.tests.test_formatting + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestFormatting + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_data.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_data.rst new file mode 100644 index 00000000..b5ea20cd --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_data.rst @@ -0,0 +1,97 @@ +mcstasscript.tests.test\_functions.Test\_load\_data +=================================================== + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autoclass:: Test_load_data + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_load_data.__init__ + ~Test_load_data.addClassCleanup + ~Test_load_data.addCleanup + ~Test_load_data.addTypeEqualityFunc + ~Test_load_data.assertAlmostEqual + ~Test_load_data.assertAlmostEquals + ~Test_load_data.assertCountEqual + ~Test_load_data.assertDictContainsSubset + ~Test_load_data.assertDictEqual + ~Test_load_data.assertEqual + ~Test_load_data.assertEquals + ~Test_load_data.assertFalse + ~Test_load_data.assertGreater + ~Test_load_data.assertGreaterEqual + ~Test_load_data.assertIn + ~Test_load_data.assertIs + ~Test_load_data.assertIsInstance + ~Test_load_data.assertIsNone + ~Test_load_data.assertIsNot + ~Test_load_data.assertIsNotNone + ~Test_load_data.assertLess + ~Test_load_data.assertLessEqual + ~Test_load_data.assertListEqual + ~Test_load_data.assertLogs + ~Test_load_data.assertMultiLineEqual + ~Test_load_data.assertNotAlmostEqual + ~Test_load_data.assertNotAlmostEquals + ~Test_load_data.assertNotEqual + ~Test_load_data.assertNotEquals + ~Test_load_data.assertNotIn + ~Test_load_data.assertNotIsInstance + ~Test_load_data.assertNotRegex + ~Test_load_data.assertNotRegexpMatches + ~Test_load_data.assertRaises + ~Test_load_data.assertRaisesRegex + ~Test_load_data.assertRaisesRegexp + ~Test_load_data.assertRegex + ~Test_load_data.assertRegexpMatches + ~Test_load_data.assertSequenceEqual + ~Test_load_data.assertSetEqual + ~Test_load_data.assertTrue + ~Test_load_data.assertTupleEqual + ~Test_load_data.assertWarns + ~Test_load_data.assertWarnsRegex + ~Test_load_data.assert_ + ~Test_load_data.countTestCases + ~Test_load_data.debug + ~Test_load_data.defaultTestResult + ~Test_load_data.doClassCleanups + ~Test_load_data.doCleanups + ~Test_load_data.fail + ~Test_load_data.failIf + ~Test_load_data.failIfAlmostEqual + ~Test_load_data.failIfEqual + ~Test_load_data.failUnless + ~Test_load_data.failUnlessAlmostEqual + ~Test_load_data.failUnlessEqual + ~Test_load_data.failUnlessRaises + ~Test_load_data.id + ~Test_load_data.run + ~Test_load_data.setUp + ~Test_load_data.setUpClass + ~Test_load_data.shortDescription + ~Test_load_data.skipTest + ~Test_load_data.subTest + ~Test_load_data.tearDown + ~Test_load_data.tearDownClass + ~Test_load_data.test_mcrun_load_data_PSD4PI + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_load_data.longMessage + ~Test_load_data.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_metadata.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_metadata.rst new file mode 100644 index 00000000..50b98783 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_metadata.rst @@ -0,0 +1,97 @@ +mcstasscript.tests.test\_functions.Test\_load\_metadata +======================================================= + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autoclass:: Test_load_metadata + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_load_metadata.__init__ + ~Test_load_metadata.addClassCleanup + ~Test_load_metadata.addCleanup + ~Test_load_metadata.addTypeEqualityFunc + ~Test_load_metadata.assertAlmostEqual + ~Test_load_metadata.assertAlmostEquals + ~Test_load_metadata.assertCountEqual + ~Test_load_metadata.assertDictContainsSubset + ~Test_load_metadata.assertDictEqual + ~Test_load_metadata.assertEqual + ~Test_load_metadata.assertEquals + ~Test_load_metadata.assertFalse + ~Test_load_metadata.assertGreater + ~Test_load_metadata.assertGreaterEqual + ~Test_load_metadata.assertIn + ~Test_load_metadata.assertIs + ~Test_load_metadata.assertIsInstance + ~Test_load_metadata.assertIsNone + ~Test_load_metadata.assertIsNot + ~Test_load_metadata.assertIsNotNone + ~Test_load_metadata.assertLess + ~Test_load_metadata.assertLessEqual + ~Test_load_metadata.assertListEqual + ~Test_load_metadata.assertLogs + ~Test_load_metadata.assertMultiLineEqual + ~Test_load_metadata.assertNotAlmostEqual + ~Test_load_metadata.assertNotAlmostEquals + ~Test_load_metadata.assertNotEqual + ~Test_load_metadata.assertNotEquals + ~Test_load_metadata.assertNotIn + ~Test_load_metadata.assertNotIsInstance + ~Test_load_metadata.assertNotRegex + ~Test_load_metadata.assertNotRegexpMatches + ~Test_load_metadata.assertRaises + ~Test_load_metadata.assertRaisesRegex + ~Test_load_metadata.assertRaisesRegexp + ~Test_load_metadata.assertRegex + ~Test_load_metadata.assertRegexpMatches + ~Test_load_metadata.assertSequenceEqual + ~Test_load_metadata.assertSetEqual + ~Test_load_metadata.assertTrue + ~Test_load_metadata.assertTupleEqual + ~Test_load_metadata.assertWarns + ~Test_load_metadata.assertWarnsRegex + ~Test_load_metadata.assert_ + ~Test_load_metadata.countTestCases + ~Test_load_metadata.debug + ~Test_load_metadata.defaultTestResult + ~Test_load_metadata.doClassCleanups + ~Test_load_metadata.doCleanups + ~Test_load_metadata.fail + ~Test_load_metadata.failIf + ~Test_load_metadata.failIfAlmostEqual + ~Test_load_metadata.failIfEqual + ~Test_load_metadata.failUnless + ~Test_load_metadata.failUnlessAlmostEqual + ~Test_load_metadata.failUnlessEqual + ~Test_load_metadata.failUnlessRaises + ~Test_load_metadata.id + ~Test_load_metadata.run + ~Test_load_metadata.setUp + ~Test_load_metadata.setUpClass + ~Test_load_metadata.shortDescription + ~Test_load_metadata.skipTest + ~Test_load_metadata.subTest + ~Test_load_metadata.tearDown + ~Test_load_metadata.tearDownClass + ~Test_load_metadata.test_mcrun_load_metadata_PSD4PI + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_load_metadata.longMessage + ~Test_load_metadata.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_monitor.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_monitor.rst new file mode 100644 index 00000000..97bc8099 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_load_monitor.rst @@ -0,0 +1,97 @@ +mcstasscript.tests.test\_functions.Test\_load\_monitor +====================================================== + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autoclass:: Test_load_monitor + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_load_monitor.__init__ + ~Test_load_monitor.addClassCleanup + ~Test_load_monitor.addCleanup + ~Test_load_monitor.addTypeEqualityFunc + ~Test_load_monitor.assertAlmostEqual + ~Test_load_monitor.assertAlmostEquals + ~Test_load_monitor.assertCountEqual + ~Test_load_monitor.assertDictContainsSubset + ~Test_load_monitor.assertDictEqual + ~Test_load_monitor.assertEqual + ~Test_load_monitor.assertEquals + ~Test_load_monitor.assertFalse + ~Test_load_monitor.assertGreater + ~Test_load_monitor.assertGreaterEqual + ~Test_load_monitor.assertIn + ~Test_load_monitor.assertIs + ~Test_load_monitor.assertIsInstance + ~Test_load_monitor.assertIsNone + ~Test_load_monitor.assertIsNot + ~Test_load_monitor.assertIsNotNone + ~Test_load_monitor.assertLess + ~Test_load_monitor.assertLessEqual + ~Test_load_monitor.assertListEqual + ~Test_load_monitor.assertLogs + ~Test_load_monitor.assertMultiLineEqual + ~Test_load_monitor.assertNotAlmostEqual + ~Test_load_monitor.assertNotAlmostEquals + ~Test_load_monitor.assertNotEqual + ~Test_load_monitor.assertNotEquals + ~Test_load_monitor.assertNotIn + ~Test_load_monitor.assertNotIsInstance + ~Test_load_monitor.assertNotRegex + ~Test_load_monitor.assertNotRegexpMatches + ~Test_load_monitor.assertRaises + ~Test_load_monitor.assertRaisesRegex + ~Test_load_monitor.assertRaisesRegexp + ~Test_load_monitor.assertRegex + ~Test_load_monitor.assertRegexpMatches + ~Test_load_monitor.assertSequenceEqual + ~Test_load_monitor.assertSetEqual + ~Test_load_monitor.assertTrue + ~Test_load_monitor.assertTupleEqual + ~Test_load_monitor.assertWarns + ~Test_load_monitor.assertWarnsRegex + ~Test_load_monitor.assert_ + ~Test_load_monitor.countTestCases + ~Test_load_monitor.debug + ~Test_load_monitor.defaultTestResult + ~Test_load_monitor.doClassCleanups + ~Test_load_monitor.doCleanups + ~Test_load_monitor.fail + ~Test_load_monitor.failIf + ~Test_load_monitor.failIfAlmostEqual + ~Test_load_monitor.failIfEqual + ~Test_load_monitor.failUnless + ~Test_load_monitor.failUnlessAlmostEqual + ~Test_load_monitor.failUnlessEqual + ~Test_load_monitor.failUnlessRaises + ~Test_load_monitor.id + ~Test_load_monitor.run + ~Test_load_monitor.setUp + ~Test_load_monitor.setUpClass + ~Test_load_monitor.shortDescription + ~Test_load_monitor.skipTest + ~Test_load_monitor.subTest + ~Test_load_monitor.tearDown + ~Test_load_monitor.tearDownClass + ~Test_load_monitor.test_mcrun_load_monitor_PSD4PI + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_load_monitor.longMessage + ~Test_load_monitor.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_name_plot_options.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_name_plot_options.rst new file mode 100644 index 00000000..bb500a01 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_name_plot_options.rst @@ -0,0 +1,98 @@ +mcstasscript.tests.test\_functions.Test\_name\_plot\_options +============================================================ + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autoclass:: Test_name_plot_options + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_name_plot_options.__init__ + ~Test_name_plot_options.addClassCleanup + ~Test_name_plot_options.addCleanup + ~Test_name_plot_options.addTypeEqualityFunc + ~Test_name_plot_options.assertAlmostEqual + ~Test_name_plot_options.assertAlmostEquals + ~Test_name_plot_options.assertCountEqual + ~Test_name_plot_options.assertDictContainsSubset + ~Test_name_plot_options.assertDictEqual + ~Test_name_plot_options.assertEqual + ~Test_name_plot_options.assertEquals + ~Test_name_plot_options.assertFalse + ~Test_name_plot_options.assertGreater + ~Test_name_plot_options.assertGreaterEqual + ~Test_name_plot_options.assertIn + ~Test_name_plot_options.assertIs + ~Test_name_plot_options.assertIsInstance + ~Test_name_plot_options.assertIsNone + ~Test_name_plot_options.assertIsNot + ~Test_name_plot_options.assertIsNotNone + ~Test_name_plot_options.assertLess + ~Test_name_plot_options.assertLessEqual + ~Test_name_plot_options.assertListEqual + ~Test_name_plot_options.assertLogs + ~Test_name_plot_options.assertMultiLineEqual + ~Test_name_plot_options.assertNotAlmostEqual + ~Test_name_plot_options.assertNotAlmostEquals + ~Test_name_plot_options.assertNotEqual + ~Test_name_plot_options.assertNotEquals + ~Test_name_plot_options.assertNotIn + ~Test_name_plot_options.assertNotIsInstance + ~Test_name_plot_options.assertNotRegex + ~Test_name_plot_options.assertNotRegexpMatches + ~Test_name_plot_options.assertRaises + ~Test_name_plot_options.assertRaisesRegex + ~Test_name_plot_options.assertRaisesRegexp + ~Test_name_plot_options.assertRegex + ~Test_name_plot_options.assertRegexpMatches + ~Test_name_plot_options.assertSequenceEqual + ~Test_name_plot_options.assertSetEqual + ~Test_name_plot_options.assertTrue + ~Test_name_plot_options.assertTupleEqual + ~Test_name_plot_options.assertWarns + ~Test_name_plot_options.assertWarnsRegex + ~Test_name_plot_options.assert_ + ~Test_name_plot_options.countTestCases + ~Test_name_plot_options.debug + ~Test_name_plot_options.defaultTestResult + ~Test_name_plot_options.doClassCleanups + ~Test_name_plot_options.doCleanups + ~Test_name_plot_options.fail + ~Test_name_plot_options.failIf + ~Test_name_plot_options.failIfAlmostEqual + ~Test_name_plot_options.failIfEqual + ~Test_name_plot_options.failUnless + ~Test_name_plot_options.failUnlessAlmostEqual + ~Test_name_plot_options.failUnlessEqual + ~Test_name_plot_options.failUnlessRaises + ~Test_name_plot_options.id + ~Test_name_plot_options.run + ~Test_name_plot_options.setUp + ~Test_name_plot_options.setUpClass + ~Test_name_plot_options.shortDescription + ~Test_name_plot_options.skipTest + ~Test_name_plot_options.subTest + ~Test_name_plot_options.tearDown + ~Test_name_plot_options.tearDownClass + ~Test_name_plot_options.test_name_plot_options_duplicate + ~Test_name_plot_options.test_name_plot_options_simple + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_name_plot_options.longMessage + ~Test_name_plot_options.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_name_search.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_name_search.rst new file mode 100644 index 00000000..468dfa63 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.Test_name_search.rst @@ -0,0 +1,103 @@ +mcstasscript.tests.test\_functions.Test\_name\_search +===================================================== + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autoclass:: Test_name_search + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_name_search.__init__ + ~Test_name_search.addClassCleanup + ~Test_name_search.addCleanup + ~Test_name_search.addTypeEqualityFunc + ~Test_name_search.assertAlmostEqual + ~Test_name_search.assertAlmostEquals + ~Test_name_search.assertCountEqual + ~Test_name_search.assertDictContainsSubset + ~Test_name_search.assertDictEqual + ~Test_name_search.assertEqual + ~Test_name_search.assertEquals + ~Test_name_search.assertFalse + ~Test_name_search.assertGreater + ~Test_name_search.assertGreaterEqual + ~Test_name_search.assertIn + ~Test_name_search.assertIs + ~Test_name_search.assertIsInstance + ~Test_name_search.assertIsNone + ~Test_name_search.assertIsNot + ~Test_name_search.assertIsNotNone + ~Test_name_search.assertLess + ~Test_name_search.assertLessEqual + ~Test_name_search.assertListEqual + ~Test_name_search.assertLogs + ~Test_name_search.assertMultiLineEqual + ~Test_name_search.assertNotAlmostEqual + ~Test_name_search.assertNotAlmostEquals + ~Test_name_search.assertNotEqual + ~Test_name_search.assertNotEquals + ~Test_name_search.assertNotIn + ~Test_name_search.assertNotIsInstance + ~Test_name_search.assertNotRegex + ~Test_name_search.assertNotRegexpMatches + ~Test_name_search.assertRaises + ~Test_name_search.assertRaisesRegex + ~Test_name_search.assertRaisesRegexp + ~Test_name_search.assertRegex + ~Test_name_search.assertRegexpMatches + ~Test_name_search.assertSequenceEqual + ~Test_name_search.assertSetEqual + ~Test_name_search.assertTrue + ~Test_name_search.assertTupleEqual + ~Test_name_search.assertWarns + ~Test_name_search.assertWarnsRegex + ~Test_name_search.assert_ + ~Test_name_search.countTestCases + ~Test_name_search.debug + ~Test_name_search.defaultTestResult + ~Test_name_search.doClassCleanups + ~Test_name_search.doCleanups + ~Test_name_search.fail + ~Test_name_search.failIf + ~Test_name_search.failIfAlmostEqual + ~Test_name_search.failIfEqual + ~Test_name_search.failUnless + ~Test_name_search.failUnlessAlmostEqual + ~Test_name_search.failUnlessEqual + ~Test_name_search.failUnlessRaises + ~Test_name_search.id + ~Test_name_search.run + ~Test_name_search.setUp + ~Test_name_search.setUpClass + ~Test_name_search.shortDescription + ~Test_name_search.skipTest + ~Test_name_search.subTest + ~Test_name_search.tearDown + ~Test_name_search.tearDownClass + ~Test_name_search.test_name_search_filename_read + ~Test_name_search.test_name_search_read + ~Test_name_search.test_name_search_read_duplicate + ~Test_name_search.test_name_search_read_error + ~Test_name_search.test_name_search_read_repeat + ~Test_name_search.test_name_search_type_error_not_McStasData + ~Test_name_search.test_name_search_type_error_not_list + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_name_search.longMessage + ~Test_name_search.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.rst new file mode 100644 index 00000000..6f93bcac --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.rst @@ -0,0 +1,47 @@ +mcstasscript.tests.test\_functions +================================== + +.. automodule:: mcstasscript.tests.test_functions + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + set_dummy_McStasDataBinned_1d + set_dummy_McStasDataBinned_2d + set_dummy_MetaDataBinned_1d + set_dummy_MetaDataBinned_2d + setup_McStasData_array + setup_McStasData_array_repeat + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + Test_load_data + Test_load_metadata + Test_load_monitor + Test_name_plot_options + Test_name_search + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_McStasDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_McStasDataBinned_1d.rst new file mode 100644 index 00000000..4fcf4154 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_McStasDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_functions.set\_dummy\_McStasDataBinned\_1d +=================================================================== + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autofunction:: set_dummy_McStasDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_McStasDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_McStasDataBinned_2d.rst new file mode 100644 index 00000000..2730ecba --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_McStasDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_functions.set\_dummy\_McStasDataBinned\_2d +=================================================================== + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autofunction:: set_dummy_McStasDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_MetaDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_MetaDataBinned_1d.rst new file mode 100644 index 00000000..96de12c2 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_MetaDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_functions.set\_dummy\_MetaDataBinned\_1d +================================================================= + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autofunction:: set_dummy_MetaDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_MetaDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_MetaDataBinned_2d.rst new file mode 100644 index 00000000..08635b61 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.set_dummy_MetaDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_functions.set\_dummy\_MetaDataBinned\_2d +================================================================= + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autofunction:: set_dummy_MetaDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.setup_McStasData_array.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.setup_McStasData_array.rst new file mode 100644 index 00000000..2ddba636 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.setup_McStasData_array.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_functions.setup\_McStasData\_array +=========================================================== + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autofunction:: setup_McStasData_array \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_functions.setup_McStasData_array_repeat.rst b/docs/source/_autosummary/mcstasscript.tests.test_functions.setup_McStasData_array_repeat.rst new file mode 100644 index 00000000..d187ac71 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_functions.setup_McStasData_array_repeat.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_functions.setup\_McStasData\_array\_repeat +=================================================================== + +.. currentmodule:: mcstasscript.tests.test_functions + +.. autofunction:: setup_McStasData_array_repeat \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_parameter_variable.Test_ParameterVariable.rst b/docs/source/_autosummary/mcstasscript.tests.test_parameter_variable.Test_ParameterVariable.rst new file mode 100644 index 00000000..ab3370c4 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_parameter_variable.Test_ParameterVariable.rst @@ -0,0 +1,106 @@ +mcstasscript.tests.test\_parameter\_variable.Test\_ParameterVariable +==================================================================== + +.. currentmodule:: mcstasscript.tests.test_parameter_variable + +.. autoclass:: Test_ParameterVariable + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~Test_ParameterVariable.__init__ + ~Test_ParameterVariable.addClassCleanup + ~Test_ParameterVariable.addCleanup + ~Test_ParameterVariable.addTypeEqualityFunc + ~Test_ParameterVariable.assertAlmostEqual + ~Test_ParameterVariable.assertAlmostEquals + ~Test_ParameterVariable.assertCountEqual + ~Test_ParameterVariable.assertDictContainsSubset + ~Test_ParameterVariable.assertDictEqual + ~Test_ParameterVariable.assertEqual + ~Test_ParameterVariable.assertEquals + ~Test_ParameterVariable.assertFalse + ~Test_ParameterVariable.assertGreater + ~Test_ParameterVariable.assertGreaterEqual + ~Test_ParameterVariable.assertIn + ~Test_ParameterVariable.assertIs + ~Test_ParameterVariable.assertIsInstance + ~Test_ParameterVariable.assertIsNone + ~Test_ParameterVariable.assertIsNot + ~Test_ParameterVariable.assertIsNotNone + ~Test_ParameterVariable.assertLess + ~Test_ParameterVariable.assertLessEqual + ~Test_ParameterVariable.assertListEqual + ~Test_ParameterVariable.assertLogs + ~Test_ParameterVariable.assertMultiLineEqual + ~Test_ParameterVariable.assertNotAlmostEqual + ~Test_ParameterVariable.assertNotAlmostEquals + ~Test_ParameterVariable.assertNotEqual + ~Test_ParameterVariable.assertNotEquals + ~Test_ParameterVariable.assertNotIn + ~Test_ParameterVariable.assertNotIsInstance + ~Test_ParameterVariable.assertNotRegex + ~Test_ParameterVariable.assertNotRegexpMatches + ~Test_ParameterVariable.assertRaises + ~Test_ParameterVariable.assertRaisesRegex + ~Test_ParameterVariable.assertRaisesRegexp + ~Test_ParameterVariable.assertRegex + ~Test_ParameterVariable.assertRegexpMatches + ~Test_ParameterVariable.assertSequenceEqual + ~Test_ParameterVariable.assertSetEqual + ~Test_ParameterVariable.assertTrue + ~Test_ParameterVariable.assertTupleEqual + ~Test_ParameterVariable.assertWarns + ~Test_ParameterVariable.assertWarnsRegex + ~Test_ParameterVariable.assert_ + ~Test_ParameterVariable.countTestCases + ~Test_ParameterVariable.debug + ~Test_ParameterVariable.defaultTestResult + ~Test_ParameterVariable.doClassCleanups + ~Test_ParameterVariable.doCleanups + ~Test_ParameterVariable.fail + ~Test_ParameterVariable.failIf + ~Test_ParameterVariable.failIfAlmostEqual + ~Test_ParameterVariable.failIfEqual + ~Test_ParameterVariable.failUnless + ~Test_ParameterVariable.failUnlessAlmostEqual + ~Test_ParameterVariable.failUnlessEqual + ~Test_ParameterVariable.failUnlessRaises + ~Test_ParameterVariable.id + ~Test_ParameterVariable.run + ~Test_ParameterVariable.setUp + ~Test_ParameterVariable.setUpClass + ~Test_ParameterVariable.shortDescription + ~Test_ParameterVariable.skipTest + ~Test_ParameterVariable.subTest + ~Test_ParameterVariable.tearDown + ~Test_ParameterVariable.tearDownClass + ~Test_ParameterVariable.test_ParameterVariable_init_basic + ~Test_ParameterVariable.test_ParameterVariable_init_basic_type + ~Test_ParameterVariable.test_ParameterVariable_init_basic_type_value + ~Test_ParameterVariable.test_ParameterVariable_init_basic_type_value_comment + ~Test_ParameterVariable.test_ParameterVariable_init_basic_value_comment + ~Test_ParameterVariable.test_ParameterVariable_init_options_initialize + ~Test_ParameterVariable.test_ParameterVariable_write_basic + ~Test_ParameterVariable.test_ParameterVariable_write_complex_float + ~Test_ParameterVariable.test_ParameterVariable_write_complex_int + ~Test_ParameterVariable.test_ParameterVariable_write_complex_string + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~Test_ParameterVariable.longMessage + ~Test_ParameterVariable.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_parameter_variable.rst b/docs/source/_autosummary/mcstasscript.tests.test_parameter_variable.rst new file mode 100644 index 00000000..f0bc5a2c --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_parameter_variable.rst @@ -0,0 +1,31 @@ +mcstasscript.tests.test\_parameter\_variable +============================================ + +.. automodule:: mcstasscript.tests.test_parameter_variable + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + Test_ParameterVariable + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.FakeChange.rst b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.FakeChange.rst new file mode 100644 index 00000000..b6467595 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.FakeChange.rst @@ -0,0 +1,23 @@ +mcstasscript.tests.test\_plot\_interface.FakeChange +=================================================== + +.. currentmodule:: mcstasscript.tests.test_plot_interface + +.. autoclass:: FakeChange + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~FakeChange.__init__ + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.TestPlotInterface.rst b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.TestPlotInterface.rst new file mode 100644 index 00000000..d60c50ff --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.TestPlotInterface.rst @@ -0,0 +1,104 @@ +mcstasscript.tests.test\_plot\_interface.TestPlotInterface +========================================================== + +.. currentmodule:: mcstasscript.tests.test_plot_interface + +.. autoclass:: TestPlotInterface + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestPlotInterface.__init__ + ~TestPlotInterface.addClassCleanup + ~TestPlotInterface.addCleanup + ~TestPlotInterface.addTypeEqualityFunc + ~TestPlotInterface.assertAlmostEqual + ~TestPlotInterface.assertAlmostEquals + ~TestPlotInterface.assertCountEqual + ~TestPlotInterface.assertDictContainsSubset + ~TestPlotInterface.assertDictEqual + ~TestPlotInterface.assertEqual + ~TestPlotInterface.assertEquals + ~TestPlotInterface.assertFalse + ~TestPlotInterface.assertGreater + ~TestPlotInterface.assertGreaterEqual + ~TestPlotInterface.assertIn + ~TestPlotInterface.assertIs + ~TestPlotInterface.assertIsInstance + ~TestPlotInterface.assertIsNone + ~TestPlotInterface.assertIsNot + ~TestPlotInterface.assertIsNotNone + ~TestPlotInterface.assertLess + ~TestPlotInterface.assertLessEqual + ~TestPlotInterface.assertListEqual + ~TestPlotInterface.assertLogs + ~TestPlotInterface.assertMultiLineEqual + ~TestPlotInterface.assertNotAlmostEqual + ~TestPlotInterface.assertNotAlmostEquals + ~TestPlotInterface.assertNotEqual + ~TestPlotInterface.assertNotEquals + ~TestPlotInterface.assertNotIn + ~TestPlotInterface.assertNotIsInstance + ~TestPlotInterface.assertNotRegex + ~TestPlotInterface.assertNotRegexpMatches + ~TestPlotInterface.assertRaises + ~TestPlotInterface.assertRaisesRegex + ~TestPlotInterface.assertRaisesRegexp + ~TestPlotInterface.assertRegex + ~TestPlotInterface.assertRegexpMatches + ~TestPlotInterface.assertSequenceEqual + ~TestPlotInterface.assertSetEqual + ~TestPlotInterface.assertTrue + ~TestPlotInterface.assertTupleEqual + ~TestPlotInterface.assertWarns + ~TestPlotInterface.assertWarnsRegex + ~TestPlotInterface.assert_ + ~TestPlotInterface.countTestCases + ~TestPlotInterface.debug + ~TestPlotInterface.defaultTestResult + ~TestPlotInterface.doClassCleanups + ~TestPlotInterface.doCleanups + ~TestPlotInterface.fail + ~TestPlotInterface.failIf + ~TestPlotInterface.failIfAlmostEqual + ~TestPlotInterface.failIfEqual + ~TestPlotInterface.failUnless + ~TestPlotInterface.failUnlessAlmostEqual + ~TestPlotInterface.failUnlessEqual + ~TestPlotInterface.failUnlessRaises + ~TestPlotInterface.id + ~TestPlotInterface.run + ~TestPlotInterface.setUp + ~TestPlotInterface.setUpClass + ~TestPlotInterface.shortDescription + ~TestPlotInterface.skipTest + ~TestPlotInterface.subTest + ~TestPlotInterface.tearDown + ~TestPlotInterface.tearDownClass + ~TestPlotInterface.test_initialization_with_data + ~TestPlotInterface.test_initialization_without_data + ~TestPlotInterface.test_set_colormap + ~TestPlotInterface.test_set_current_monitor + ~TestPlotInterface.test_set_data + ~TestPlotInterface.test_set_log_mode + ~TestPlotInterface.test_set_orders_of_mag + ~TestPlotInterface.test_show_interface_return + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestPlotInterface.longMessage + ~TestPlotInterface.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.fake_data.rst b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.fake_data.rst new file mode 100644 index 00000000..a3b03d77 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.fake_data.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_plot\_interface.fake\_data +=================================================== + +.. currentmodule:: mcstasscript.tests.test_plot_interface + +.. autofunction:: fake_data \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.rst b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.rst new file mode 100644 index 00000000..e315e7e2 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.rst @@ -0,0 +1,43 @@ +mcstasscript.tests.test\_plot\_interface +======================================== + +.. automodule:: mcstasscript.tests.test_plot_interface + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + fake_data + set_dummy_McStasDataBinned_1d + set_dummy_McStasDataBinned_2d + set_dummy_MetaDataBinned_1d + set_dummy_MetaDataBinned_2d + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + FakeChange + TestPlotInterface + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_McStasDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_McStasDataBinned_1d.rst new file mode 100644 index 00000000..d2fb46f5 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_McStasDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_plot\_interface.set\_dummy\_McStasDataBinned\_1d +========================================================================= + +.. currentmodule:: mcstasscript.tests.test_plot_interface + +.. autofunction:: set_dummy_McStasDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_McStasDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_McStasDataBinned_2d.rst new file mode 100644 index 00000000..2b8a7c3d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_McStasDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_plot\_interface.set\_dummy\_McStasDataBinned\_2d +========================================================================= + +.. currentmodule:: mcstasscript.tests.test_plot_interface + +.. autofunction:: set_dummy_McStasDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_MetaDataBinned_1d.rst b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_MetaDataBinned_1d.rst new file mode 100644 index 00000000..7c9ffd17 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_MetaDataBinned_1d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_plot\_interface.set\_dummy\_MetaDataBinned\_1d +======================================================================= + +.. currentmodule:: mcstasscript.tests.test_plot_interface + +.. autofunction:: set_dummy_MetaDataBinned_1d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_MetaDataBinned_2d.rst b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_MetaDataBinned_2d.rst new file mode 100644 index 00000000..14180919 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_plot_interface.set_dummy_MetaDataBinned_2d.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_plot\_interface.set\_dummy\_MetaDataBinned\_2d +======================================================================= + +.. currentmodule:: mcstasscript.tests.test_plot_interface + +.. autofunction:: set_dummy_MetaDataBinned_2d \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.FakeChange.rst b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.FakeChange.rst new file mode 100644 index 00000000..7185e840 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.FakeChange.rst @@ -0,0 +1,23 @@ +mcstasscript.tests.test\_simulation\_interface.FakeChange +========================================================= + +.. currentmodule:: mcstasscript.tests.test_simulation_interface + +.. autoclass:: FakeChange + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~FakeChange.__init__ + + + + + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.TestSimulationInterface.rst b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.TestSimulationInterface.rst new file mode 100644 index 00000000..440b2252 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.TestSimulationInterface.rst @@ -0,0 +1,103 @@ +mcstasscript.tests.test\_simulation\_interface.TestSimulationInterface +====================================================================== + +.. currentmodule:: mcstasscript.tests.test_simulation_interface + +.. autoclass:: TestSimulationInterface + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestSimulationInterface.__init__ + ~TestSimulationInterface.addClassCleanup + ~TestSimulationInterface.addCleanup + ~TestSimulationInterface.addTypeEqualityFunc + ~TestSimulationInterface.assertAlmostEqual + ~TestSimulationInterface.assertAlmostEquals + ~TestSimulationInterface.assertCountEqual + ~TestSimulationInterface.assertDictContainsSubset + ~TestSimulationInterface.assertDictEqual + ~TestSimulationInterface.assertEqual + ~TestSimulationInterface.assertEquals + ~TestSimulationInterface.assertFalse + ~TestSimulationInterface.assertGreater + ~TestSimulationInterface.assertGreaterEqual + ~TestSimulationInterface.assertIn + ~TestSimulationInterface.assertIs + ~TestSimulationInterface.assertIsInstance + ~TestSimulationInterface.assertIsNone + ~TestSimulationInterface.assertIsNot + ~TestSimulationInterface.assertIsNotNone + ~TestSimulationInterface.assertLess + ~TestSimulationInterface.assertLessEqual + ~TestSimulationInterface.assertListEqual + ~TestSimulationInterface.assertLogs + ~TestSimulationInterface.assertMultiLineEqual + ~TestSimulationInterface.assertNotAlmostEqual + ~TestSimulationInterface.assertNotAlmostEquals + ~TestSimulationInterface.assertNotEqual + ~TestSimulationInterface.assertNotEquals + ~TestSimulationInterface.assertNotIn + ~TestSimulationInterface.assertNotIsInstance + ~TestSimulationInterface.assertNotRegex + ~TestSimulationInterface.assertNotRegexpMatches + ~TestSimulationInterface.assertRaises + ~TestSimulationInterface.assertRaisesRegex + ~TestSimulationInterface.assertRaisesRegexp + ~TestSimulationInterface.assertRegex + ~TestSimulationInterface.assertRegexpMatches + ~TestSimulationInterface.assertSequenceEqual + ~TestSimulationInterface.assertSetEqual + ~TestSimulationInterface.assertTrue + ~TestSimulationInterface.assertTupleEqual + ~TestSimulationInterface.assertWarns + ~TestSimulationInterface.assertWarnsRegex + ~TestSimulationInterface.assert_ + ~TestSimulationInterface.countTestCases + ~TestSimulationInterface.debug + ~TestSimulationInterface.defaultTestResult + ~TestSimulationInterface.doClassCleanups + ~TestSimulationInterface.doCleanups + ~TestSimulationInterface.fail + ~TestSimulationInterface.failIf + ~TestSimulationInterface.failIfAlmostEqual + ~TestSimulationInterface.failIfEqual + ~TestSimulationInterface.failUnless + ~TestSimulationInterface.failUnlessAlmostEqual + ~TestSimulationInterface.failUnlessEqual + ~TestSimulationInterface.failUnlessRaises + ~TestSimulationInterface.id + ~TestSimulationInterface.run + ~TestSimulationInterface.setUp + ~TestSimulationInterface.setUpClass + ~TestSimulationInterface.shortDescription + ~TestSimulationInterface.skipTest + ~TestSimulationInterface.subTest + ~TestSimulationInterface.tearDown + ~TestSimulationInterface.tearDownClass + ~TestSimulationInterface.test_ParameterWidget + ~TestSimulationInterface.test_initialization_McStas + ~TestSimulationInterface.test_initialization_McXtrace + ~TestSimulationInterface.test_show_interface_McStas + ~TestSimulationInterface.test_show_interface_McXtrace + ~TestSimulationInterface.test_update_mpi + ~TestSimulationInterface.test_update_ncount + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestSimulationInterface.longMessage + ~TestSimulationInterface.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.rst b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.rst new file mode 100644 index 00000000..5983b3fa --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.rst @@ -0,0 +1,42 @@ +mcstasscript.tests.test\_simulation\_interface +============================================== + +.. automodule:: mcstasscript.tests.test_simulation_interface + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + setup_instr_root_path_McStas + setup_instr_root_path_McXtrace + setup_populated_instr_McStas + setup_populated_instr_McXtrace + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + FakeChange + TestSimulationInterface + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_instr_root_path_McStas.rst b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_instr_root_path_McStas.rst new file mode 100644 index 00000000..a7d070d6 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_instr_root_path_McStas.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_simulation\_interface.setup\_instr\_root\_path\_McStas +=============================================================================== + +.. currentmodule:: mcstasscript.tests.test_simulation_interface + +.. autofunction:: setup_instr_root_path_McStas \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_instr_root_path_McXtrace.rst b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_instr_root_path_McXtrace.rst new file mode 100644 index 00000000..7a1f0a3e --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_instr_root_path_McXtrace.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_simulation\_interface.setup\_instr\_root\_path\_McXtrace +================================================================================= + +.. currentmodule:: mcstasscript.tests.test_simulation_interface + +.. autofunction:: setup_instr_root_path_McXtrace \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_populated_instr_McStas.rst b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_populated_instr_McStas.rst new file mode 100644 index 00000000..768aaf1d --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_populated_instr_McStas.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_simulation\_interface.setup\_populated\_instr\_McStas +============================================================================== + +.. currentmodule:: mcstasscript.tests.test_simulation_interface + +.. autofunction:: setup_populated_instr_McStas \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_populated_instr_McXtrace.rst b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_populated_instr_McXtrace.rst new file mode 100644 index 00000000..b0ea1152 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_simulation_interface.setup_populated_instr_McXtrace.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.test\_simulation\_interface.setup\_populated\_instr\_McXtrace +================================================================================ + +.. currentmodule:: mcstasscript.tests.test_simulation_interface + +.. autofunction:: setup_populated_instr_McXtrace \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_widget_helpers.TestWidgetHelpers.rst b/docs/source/_autosummary/mcstasscript.tests.test_widget_helpers.TestWidgetHelpers.rst new file mode 100644 index 00000000..cb5ebbcf --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_widget_helpers.TestWidgetHelpers.rst @@ -0,0 +1,103 @@ +mcstasscript.tests.test\_widget\_helpers.TestWidgetHelpers +========================================================== + +.. currentmodule:: mcstasscript.tests.test_widget_helpers + +.. autoclass:: TestWidgetHelpers + :members: + + + .. automethod:: __init__ + + + .. rubric:: Methods + + .. autosummary:: + + ~TestWidgetHelpers.__init__ + ~TestWidgetHelpers.addClassCleanup + ~TestWidgetHelpers.addCleanup + ~TestWidgetHelpers.addTypeEqualityFunc + ~TestWidgetHelpers.assertAlmostEqual + ~TestWidgetHelpers.assertAlmostEquals + ~TestWidgetHelpers.assertCountEqual + ~TestWidgetHelpers.assertDictContainsSubset + ~TestWidgetHelpers.assertDictEqual + ~TestWidgetHelpers.assertEqual + ~TestWidgetHelpers.assertEquals + ~TestWidgetHelpers.assertFalse + ~TestWidgetHelpers.assertGreater + ~TestWidgetHelpers.assertGreaterEqual + ~TestWidgetHelpers.assertIn + ~TestWidgetHelpers.assertIs + ~TestWidgetHelpers.assertIsInstance + ~TestWidgetHelpers.assertIsNone + ~TestWidgetHelpers.assertIsNot + ~TestWidgetHelpers.assertIsNotNone + ~TestWidgetHelpers.assertLess + ~TestWidgetHelpers.assertLessEqual + ~TestWidgetHelpers.assertListEqual + ~TestWidgetHelpers.assertLogs + ~TestWidgetHelpers.assertMultiLineEqual + ~TestWidgetHelpers.assertNotAlmostEqual + ~TestWidgetHelpers.assertNotAlmostEquals + ~TestWidgetHelpers.assertNotEqual + ~TestWidgetHelpers.assertNotEquals + ~TestWidgetHelpers.assertNotIn + ~TestWidgetHelpers.assertNotIsInstance + ~TestWidgetHelpers.assertNotRegex + ~TestWidgetHelpers.assertNotRegexpMatches + ~TestWidgetHelpers.assertRaises + ~TestWidgetHelpers.assertRaisesRegex + ~TestWidgetHelpers.assertRaisesRegexp + ~TestWidgetHelpers.assertRegex + ~TestWidgetHelpers.assertRegexpMatches + ~TestWidgetHelpers.assertSequenceEqual + ~TestWidgetHelpers.assertSetEqual + ~TestWidgetHelpers.assertTrue + ~TestWidgetHelpers.assertTupleEqual + ~TestWidgetHelpers.assertWarns + ~TestWidgetHelpers.assertWarnsRegex + ~TestWidgetHelpers.assert_ + ~TestWidgetHelpers.countTestCases + ~TestWidgetHelpers.debug + ~TestWidgetHelpers.defaultTestResult + ~TestWidgetHelpers.doClassCleanups + ~TestWidgetHelpers.doCleanups + ~TestWidgetHelpers.fail + ~TestWidgetHelpers.failIf + ~TestWidgetHelpers.failIfAlmostEqual + ~TestWidgetHelpers.failIfEqual + ~TestWidgetHelpers.failUnless + ~TestWidgetHelpers.failUnlessAlmostEqual + ~TestWidgetHelpers.failUnlessEqual + ~TestWidgetHelpers.failUnlessRaises + ~TestWidgetHelpers.id + ~TestWidgetHelpers.run + ~TestWidgetHelpers.setUp + ~TestWidgetHelpers.setUpClass + ~TestWidgetHelpers.shortDescription + ~TestWidgetHelpers.skipTest + ~TestWidgetHelpers.subTest + ~TestWidgetHelpers.tearDown + ~TestWidgetHelpers.tearDownClass + ~TestWidgetHelpers.test_HiddenPrints + ~TestWidgetHelpers.test_get_parameter_default_double + ~TestWidgetHelpers.test_get_parameter_default_double_specified + ~TestWidgetHelpers.test_get_parameter_default_int + ~TestWidgetHelpers.test_get_parameter_default_string + ~TestWidgetHelpers.test_parameter_has_default_false + ~TestWidgetHelpers.test_parameter_has_default_true + + + + + + .. rubric:: Attributes + + .. autosummary:: + + ~TestWidgetHelpers.longMessage + ~TestWidgetHelpers.maxDiff + + \ No newline at end of file diff --git a/docs/source/_autosummary/mcstasscript.tests.test_widget_helpers.rst b/docs/source/_autosummary/mcstasscript.tests.test_widget_helpers.rst new file mode 100644 index 00000000..8981d181 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.test_widget_helpers.rst @@ -0,0 +1,31 @@ +mcstasscript.tests.test\_widget\_helpers +======================================== + +.. automodule:: mcstasscript.tests.test_widget_helpers + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + + TestWidgetHelpers + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.utilities.rst b/docs/source/_autosummary/mcstasscript.tests.utilities.rst new file mode 100644 index 00000000..03b15f80 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.utilities.rst @@ -0,0 +1,30 @@ +mcstasscript.tests.utilities +============================ + +.. automodule:: mcstasscript.tests.utilities + + + + + + + + .. rubric:: Functions + + .. autosummary:: + :toctree: + + work_dir_test + + + + + + + + + + + + + diff --git a/docs/source/_autosummary/mcstasscript.tests.utilities.work_dir_test.rst b/docs/source/_autosummary/mcstasscript.tests.utilities.work_dir_test.rst new file mode 100644 index 00000000..290c7dd6 --- /dev/null +++ b/docs/source/_autosummary/mcstasscript.tests.utilities.work_dir_test.rst @@ -0,0 +1,6 @@ +mcstasscript.tests.utilities.work\_dir\_test +============================================ + +.. currentmodule:: mcstasscript.tests.utilities + +.. autofunction:: work_dir_test \ No newline at end of file diff --git a/docs/source/_templates/class.rst b/docs/source/_templates/class.rst new file mode 100644 index 00000000..0f7d6f32 --- /dev/null +++ b/docs/source/_templates/class.rst @@ -0,0 +1,29 @@ +{{ fullname | escape | underline}} + +.. currentmodule:: {{ module }} + +.. autoclass:: {{ objname }} + + {% block methods %} + .. automethod:: __init__ + + {% if methods %} + .. rubric:: {{ _('Methods') }} + + .. autosummary:: + {% for item in methods %} + ~{{ name }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block attributes %} + {% if attributes %} + .. rubric:: {{ _('Attributes') }} + + .. autosummary:: + {% for item in attributes %} + ~{{ name }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} diff --git a/docs/source/_templates/custom-class-template.rst b/docs/source/_templates/custom-class-template.rst new file mode 100644 index 00000000..893443b1 --- /dev/null +++ b/docs/source/_templates/custom-class-template.rst @@ -0,0 +1,30 @@ +{{ fullname | escape | underline }} + +.. currentmodule:: {{ module }} + +.. autoclass:: {{ objname }} + :members: + + {% block methods %} + .. automethod:: __init__ + + {% if methods %} + .. rubric:: {{ _('Methods') }} + + .. autosummary:: + {% for item in methods %} + ~{{ name }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block attributes %} + {% if attributes %} + .. rubric:: {{ _('Attributes') }} + + .. autosummary:: + {% for item in attributes %} + ~{{ name }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} diff --git a/docs/source/_templates/custom-module-template.rst b/docs/source/_templates/custom-module-template.rst new file mode 100644 index 00000000..f46f9f63 --- /dev/null +++ b/docs/source/_templates/custom-module-template.rst @@ -0,0 +1,66 @@ +{{ fullname | escape | underline}} + +.. automodule:: {{ fullname }} + + {% block attributes %} + {% if attributes %} + .. rubric:: {{ _('Module Attributes') }} + + .. autosummary:: + :toctree: + {% for item in attributes %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block functions %} + {% if functions %} + .. rubric:: {{ _('Functions') }} + + .. autosummary:: + :toctree: + {% for item in functions %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block classes %} + {% if classes %} + .. rubric:: {{ _('Classes') }} + + .. autosummary:: + :toctree: + :template: custom-class-template.rst + {% for item in classes %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block exceptions %} + {% if exceptions %} + .. rubric:: {{ _('Exceptions') }} + + .. autosummary:: + :toctree: + {% for item in exceptions %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + +{% block modules %} +{% if modules %} +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: custom-module-template.rst + :recursive: +{% for item in modules %} + {{ item }} +{%- endfor %} +{% endif %} +{% endblock %} diff --git a/docs/source/_templates/module.rst b/docs/source/_templates/module.rst new file mode 100644 index 00000000..e74c012f --- /dev/null +++ b/docs/source/_templates/module.rst @@ -0,0 +1,60 @@ +{{ fullname | escape | underline}} + +.. automodule:: {{ fullname }} + + {% block attributes %} + {% if attributes %} + .. rubric:: {{ _('Module Attributes') }} + + .. autosummary:: + {% for item in attributes %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block functions %} + {% if functions %} + .. rubric:: {{ _('Functions') }} + + .. autosummary:: + {% for item in functions %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block classes %} + {% if classes %} + .. rubric:: {{ _('Classes') }} + + .. autosummary:: + {% for item in classes %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block exceptions %} + {% if exceptions %} + .. rubric:: {{ _('Exceptions') }} + + .. autosummary:: + {% for item in exceptions %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + +{% block modules %} +{% if modules %} +.. rubric:: Modules + +.. autosummary:: + :toctree: + :recursive: +{% for item in modules %} + {{ item }} +{%- endfor %} +{% endif %} +{% endblock %} diff --git a/docs/source/conf.py b/docs/source/conf.py new file mode 100644 index 00000000..42a8929e --- /dev/null +++ b/docs/source/conf.py @@ -0,0 +1,85 @@ +# 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 os +import sys +sys.path.insert(0, os.path.abspath('../../mcstasscript')) +sys.path.insert(0, os.path.abspath('../..')) +sys.path.insert(0, os.path.abspath('/Users/madsbertelsen/PaNOSC/libpyvinyl/github/libpyvinyl')) + +print(sys.path) + +# -- Project information ----------------------------------------------------- + +project = 'McStasScript' +copyright = '2022, Mads Bertelsen' +author = 'Mads Bertelsen' + + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = ['sphinx.ext.autodoc', + 'sphinx.ext.autosummary', + 'sphinx.ext.napoleon', + #'nbsphinx', + 'myst_nb', + ] + +autosummary_generate = True + +# Add any paths that contain templates here, relative to this directory. +#templates_path = ['source/_templates'] +templates_path = ['_templates'] + +master_doc = 'index' + +# 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 = [] + +execution_timeout = 200 + + +# -- 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 = 'sphinx_book_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. +# +html_theme_options = { + #"logo_only": True, + "repository_url": "https://github.com/PaNOSC-ViNYL/McStasScript", + "repository_branch": "master", + "path_to_docs": "docs", + "use_repository_button": True, + "use_issues_button": True, + "use_edit_page_button": True, + "show_toc_level": 2, # Show subheadings in secondary sidebar +} + +# 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'] + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +#man_pages = [(master_doc, 'McStasScript', u'McStasScript Documentation', 'Mads Bertelsen', 1)] diff --git a/docs/source/getting_started/installation.ipynb b/docs/source/getting_started/installation.ipynb new file mode 100644 index 00000000..26087596 --- /dev/null +++ b/docs/source/getting_started/installation.ipynb @@ -0,0 +1,149 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "decent-error", + "metadata": {}, + "source": [ + "# Installation\n", + "McStasScript needs to be installed and then configured. There are two ways to install, either through pip or from the source code directly. The configuration can be done after installation and changed at any point.\n", + "\n", + "Before installing McStasScript, install McStas or McXtrace as described on [www.mcstas.org](https://www.mcstas.org) or [www.mcxtrace.org](https://www.mcxtrace.org)." + ] + }, + { + "cell_type": "markdown", + "id": "crude-continuity", + "metadata": {}, + "source": [ + "## Pip\n", + "The standard way to install McStasScript is through pip. For Unix and OS X, use this line in the terminal. For windows, use the McStas-shell or McXtrace-shell to run the install." + ] + }, + { + "cell_type": "markdown", + "id": "ceramic-community", + "metadata": {}, + "source": [ + "```\n", + "pip install McStasScript --upgrade\n", + "```" + ] + }, + { + "cell_type": "markdown", + "id": "introductory-monitor", + "metadata": {}, + "source": [ + "## From source\n", + "A developer might one to install directly from source, this makes it easier to contribute to the project and see how changes to the code affect the package.\n", + "\n", + "Open a terminal and go to the location where the source code should be located, and use these commands." + ] + }, + { + "cell_type": "markdown", + "id": "lesser-identifier", + "metadata": {}, + "source": [ + "```\n", + "git clone https://github.com/PaNOSC-ViNYL/McStasScript.git\n", + "cd McStasScript\n", + "pip install -r requirements.txt\n", + "pip install -e .\n", + "```" + ] + }, + { + "cell_type": "markdown", + "id": "sound-familiar", + "metadata": {}, + "source": [ + "## Configuration\n", + "The McStasScript package has a configuration file in the source directory that can be changed with a text editor or through a configurator class included in the package. The configuration needs the path of the mcrun / mxrun executable and the base directory of the McStas/McXtrace installation.\n", + "\n", + "### Typical Mac OS configuration\n", + "\n", + "```\n", + "import mcstasscript as ms\n", + "my_configurator = ms.Configurator()\n", + "my_configurator.set_mcrun_path(\"/Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1/bin/\")\n", + "my_configurator.set_mcstas_path(\"/Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1/\")\n", + "my_configurator.set_mxrun_path(\"/Applications/McXtrace-1.5.app/Contents/Resources/mcxtrace/1.5/bin/\")\n", + "my_configurator.set_mcxtrace_path(\"/Applications/McXtrace-1.5.app/Contents/Resources/mcxtrace/1.5/\")\n", + "print(my_configurator)\n", + "```\n", + "\n", + "### Typical Unix configuration\n", + "\n", + "```\n", + "import mcstasscript as ms\n", + "my_configurator = ms.Configurator()\n", + "my_configurator.set_mcrun_path(\"/usr/bin/\")\n", + "my_configurator.set_mcstas_path(\"/usr/share/mcstas/2.7.1/\")\n", + "my_configurator.set_mxrun_path(\"/usr/bin/\")\n", + "my_configurator.set_mcxtrace_path(\"/usr/share/mcxtrace/1.5/\")\n", + "print(my_configurator)\n", + "```\n", + "\n", + "### Typical Windows configuration\n", + "\n", + "```\n", + "import mcstasscript as ms\n", + "my_configurator = ms.Configurator()\n", + "my_configurator.set_mcrun_path(\"\\\\mcstas-2.7.1\\\\bin\\\\\")\n", + "my_configurator.set_mcstas_path(\"\\\\mcstas-2.7.1\\\\lib\\\\\")\n", + "my_configurator.set_mxrun_path(\"\\\\mcxtrace-1.5\\\\bin\\\\\")\n", + "my_configurator.set_mcxtrace_path(\"\\\\mcxtrace-1.5\\\\lib\\\\\") \n", + "print(my_configurator)\n", + "```" + ] + }, + { + "cell_type": "markdown", + "id": "stainless-class", + "metadata": {}, + "source": [ + "## Tests\n", + "In order to ensure the installation and configuration was successful, one can run the test suite. Navigate to the folder containing the McStasScript source code and run:\n", + "```\n", + "pytest\n", + "```\n", + "\n", + "If pytest has not been installed yet, it can be installed with\n", + "```\n", + "pip install pytest\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "creative-prison", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/getting_started/overview.ipynb b/docs/source/getting_started/overview.ipynb new file mode 100644 index 00000000..e9d5940b --- /dev/null +++ b/docs/source/getting_started/overview.ipynb @@ -0,0 +1,96 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "ecological-candidate", + "metadata": {}, + "source": [ + "# Overview" + ] + }, + { + "cell_type": "markdown", + "id": "above-sport", + "metadata": {}, + "source": [ + "## McStas / McXtrace simulations\n", + "McStasScript is a python API for writing and running [McStas](https://www.mcstas.org) / [McXtrace](https://www.mcxtrace.org) simulations. These are sister packages meant for simulation of neutron and x-ray scattering instrumentation respectively and share a common syntax. The packages are used widely in the field and come with a large repository of components that describe smaller parts of the beamline. The community of users contribute such components to the packages, and they have in this way grown over the years.\n", + "\n", + "McStas and McXtrace simulations are described by an *instrument file* which is a custom language built on C. Here a number of components are placed in simulated space to describe the physical instrument, along with a number of monitors that record the properties of the beam. The instrument file is used to generate a c code, which is then compiled to an executable on the users system. The simulation itself is a Monte Carlo ray-tracing simulation that tracks individual rays from the source, through the instrument, through any scattering events and deposits the rays intensity onto any monitors along the way." + ] + }, + { + "cell_type": "markdown", + "id": "nasty-promotion", + "metadata": {}, + "source": [ + "## McStasScript\n", + "McStasScript provides a pythonic alternative to writing the instrument file as a textfile in the simulation meta language. A McStasScript instrument object is create which in turn can generate the instrument file and perform the simulation. The user still has to understand the underlying software and logic in McStas / McXtrace to make meaningful simulations, and it is possible to add snippets of C code to the generated instrument, so some C knowledge is still an advantage.\n", + "\n", + "McStasScript is developed with the intent of use in Jupyter Notebooks, with for example available widgets for performing the simulation and plotting the results. The package can be used in python scripts, but won't have the interfaces.\n", + "\n", + "McStasScript is developed under [PaNOSC](https://www.panosc.eu) and specifically WP5 on simulations. Our collected github repo can be found [here](https://github.com/PaNOSC-ViNYL). McStasScript uses [libpyvinyl](https://github.com/PaNOSC-ViNYL/libpyvinyl) which imposes some standards on how parameters are handled along with the syntax for constructing and running the simulation, and thus using McStasScript is similar to other packages that follow this standard." + ] + }, + { + "cell_type": "markdown", + "id": "corresponding-inspector", + "metadata": {}, + "source": [ + "### The instrument class\n", + "The central class of McStasScript is the *McCode_instr* class that describes the instrument object, from which both the *McStas_instr* and *McXtrace_instr* classes are derived. The *McCode_instr* class itself inherits from the libpyvinyl *BaseCalculator* that provides some basic functionality, such as loading from and dumping to file.\n", + "\n", + "Upon initialization an instrument object reads the available component database along with components in the work directory, and from this information can guide the user and check for errors. When adding a component to the instrument, a component object is returned which can then be customized further.\n", + "\n", + "It is possible to add practically anything to the instrument object that one would normally add to a instrument file, which includes parameters, declared variables, lines of initialize code and lines of finally code.\n", + "\n", + "The instrument object has methods for adjusting settings of the simulation such as the number of rays to simulate and setting the parameters. The *backengine* method runs the currently specified simulation, and loads the data into the *data* attribute which can the be accessed by the user. The data is loaded as a McStasData object for each monitor output, these objects contain the data itself as numpy arrays and relevant metadata." + ] + }, + { + "cell_type": "markdown", + "id": "aboriginal-server", + "metadata": {}, + "source": [ + "### Component objects\n", + "Component objects belong to an instrument but are returned to the user whenever one is added to an instrument. At that point a custom class is generated for this kind of component, and the attributes will correspond to the parameters of the component. This is achieved by reading the McStas components in the users installation of McStas, and any custom components they may have added. Because the attributes correspond with the component parameters, it is not allowed to create new attributes in component objects, and in this way any misspelling of parameters are caught early. Since the component object is aware of the allowed inputs, it can provide help and for example show when any required parameters have not yet been specified." + ] + }, + { + "cell_type": "markdown", + "id": "prospective-tiger", + "metadata": {}, + "source": [ + "### Plotting tools\n", + "McStasScript includes tools for plotting the resulting simulation data, providing a convenient way to quickly see the results from the performed simulation. " + ] + }, + { + "cell_type": "markdown", + "id": "advance-picnic", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/getting_started/quick_start.ipynb b/docs/source/getting_started/quick_start.ipynb new file mode 100644 index 00000000..27d22930 --- /dev/null +++ b/docs/source/getting_started/quick_start.ipynb @@ -0,0 +1,367 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "delayed-biodiversity", + "metadata": {}, + "source": [ + "# Quick start\n", + "This section is a quick start guide that will show the basic functionality of McStasScript. It assumes the user is already familiar with McStas itself, if this is not the case, it is recommended to start with the tutorial which can serve as an introduction to both McStas and McStasScript.\n", + "\n", + "## Importing the package\n", + "McStasScript needs to be imported into the users python environment." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dense-internet", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "markdown", + "id": "exotic-sandwich", + "metadata": {}, + "source": [ + "## Creating the first instrument object\n", + "Now the package can be used. Start with creating a new instrument, just needs a name. For a McXtrace instrument use McXtrace_instr instead." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "disabled-canon", + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"first_instrument\")" + ] + }, + { + "cell_type": "markdown", + "id": "known-depression", + "metadata": {}, + "source": [ + "### Finding a component\n", + "The instrument object loads the available McStas components, so it can show these in order to help the user." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "adult-assignment", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.available_components()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fatal-climate", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.available_components(\"sources\")" + ] + }, + { + "cell_type": "markdown", + "id": "powerful-rover", + "metadata": {}, + "source": [ + "### Adding the first component\n", + "McStas components can be added to the instrument, here we add a source and ask for help on the parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "instructional-liquid", + "metadata": {}, + "outputs": [], + "source": [ + "source = instrument.add_component(\"source\", \"Source_simple\")\n", + "source.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "id": "noble-colleague", + "metadata": {}, + "source": [ + "### Set parameters\n", + "The parameters of the component object are adjustable directly through the attributes of the object." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "continued-denial", + "metadata": {}, + "outputs": [], + "source": [ + "source.xwidth = 0.03\n", + "source.yheight = 0.03\n", + "source.lambda0 = 3\n", + "source.dlambda = 2.2\n", + "source.dist = 5\n", + "source.focus_xw = 0.01\n", + "source.focus_yh = 0.01\n", + "print(source)" + ] + }, + { + "cell_type": "markdown", + "id": "interior-better", + "metadata": {}, + "source": [ + "### Instrument parameters\n", + "It is possible to add instrument parameters that can be adjusted when running the simulation or adjusted using the widget interface." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "atlantic-capital", + "metadata": {}, + "outputs": [], + "source": [ + "wavelength = instrument.add_parameter(\"wavelength\", value=3, comment=\"Wavelength in AA\")\n", + "source.lambda0 = wavelength\n", + "source.dlambda = \"0.1*wavelength\"\n", + "print(source)" + ] + }, + { + "cell_type": "markdown", + "id": "practical-somewhere", + "metadata": {}, + "source": [ + "### Inserting a sample component\n", + "A sample component is added as any other component, but here we place it relative to the source. A SANS sample is used, it focuses to a detector (chosen with target_index) with a width of focus_xw and height of focus_yh." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "changing-funds", + "metadata": {}, + "outputs": [], + "source": [ + "sample = instrument.add_component(\"sans_sample\", \"Sans_spheres\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "after-reliance", + "metadata": {}, + "outputs": [], + "source": [ + "sample.set_AT(5, RELATIVE=source)\n", + "sample.set_parameters(R=120, xwidth=0.01, yheight=0.01, zdepth=0.01,\n", + " target_index=1, focus_xw=0.5, focus_yh=0.5)\n", + "print(sample)" + ] + }, + { + "cell_type": "markdown", + "id": "million-shoot", + "metadata": {}, + "source": [ + "### Adding a monitor\n", + "The monitor can be placed relative to the sample, and even use the attributes from the sample to define its size so that the two always match. When setting a filename, it has to be a string also in the generated code, so use double quotation marks as shown here." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "characteristic-spectacular", + "metadata": {}, + "outputs": [], + "source": [ + "PSD = instrument.add_component(\"PSD\", \"PSD_monitor\")\n", + "PSD.set_AT([0, 0, 5], RELATIVE=sample)\n", + "PSD.set_parameters(xwidth=sample.focus_xw, yheight=sample.focus_yh, filename='\"PSD.dat\"')" + ] + }, + { + "cell_type": "markdown", + "id": "mechanical-burlington", + "metadata": {}, + "source": [ + "## Setting up the simulation\n", + "The instrument now contains a source, a sample and a monitor, this is enough for a simple demonstration." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "wicked-terrorism", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_parameters()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "postal-advocate", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=4)\n", + "instrument.settings(ncount=2E6)" + ] + }, + { + "cell_type": "markdown", + "id": "requested-translation", + "metadata": {}, + "source": [ + "### Performing the simulation\n", + "In order to start the simulation the *backengine* method is called. If the simulation is successful, the data will be returned, otherwise the method returns None." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "durable-printer", + "metadata": {}, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "id": "frozen-circle", + "metadata": {}, + "source": [ + "## Plot the data\n", + "The data can be plotted with the *make_sub_plot* function from the plotter module." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "christian-detail", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=True)" + ] + }, + { + "cell_type": "markdown", + "id": "critical-rebound", + "metadata": {}, + "source": [ + "### Access the data\n", + "The data is a list of McStasData objects and can be accessed directly." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "gothic-water", + "metadata": {}, + "outputs": [], + "source": [ + "print(data)" + ] + }, + { + "cell_type": "markdown", + "id": "common-overhead", + "metadata": {}, + "source": [ + "It is possible to search through the data list with the *name_search* function to retrieve the desired data object. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "colonial-thompson", + "metadata": {}, + "outputs": [], + "source": [ + "PSD_data = ms.name_search(\"PSD\", data)" + ] + }, + { + "cell_type": "markdown", + "id": "american-crash", + "metadata": {}, + "source": [ + "The intensities can then be accessed directly, along with Error and Ncount. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "exempt-lincoln", + "metadata": {}, + "outputs": [], + "source": [ + "PSD_data.Intensity" + ] + }, + { + "cell_type": "markdown", + "id": "unavailable-secretariat", + "metadata": {}, + "source": [ + "Metadata is also available as a dict." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "mediterranean-guatemala", + "metadata": {}, + "outputs": [], + "source": [ + "info_dict = PSD_data.metadata.info\n", + "for field, info in info_dict.items():\n", + " print(field, \":\", info)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "coupled-sailing", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/getting_started/version_history.ipynb b/docs/source/getting_started/version_history.ipynb new file mode 100644 index 00000000..ecb6f958 --- /dev/null +++ b/docs/source/getting_started/version_history.ipynb @@ -0,0 +1,132 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "armed-language", + "metadata": {}, + "source": [ + "# Version history\n", + "This page shows major changes in recent releases with an emphasis on what the user should be aware of." + ] + }, + { + "cell_type": "markdown", + "id": "automatic-charleston", + "metadata": {}, + "source": [ + "## 0.0.58 - 25th of April 2023\n", + "- Support for new McStas features\n", + " - DEPENDENCY: instrument.set_dependency [info here](../user_guide/instrument_object.ipynb)\n", + " - SEARCH: instrument.add_search / component.add_search [instrument info here](../user_guide/instrument_object.ipynb) [component info here](../user_guide/component_object.ipynb)\n", + " - NeXus: settings(NeXus=True), still can't read data so backengine will fail after writing data\n", + " - openacc: settings(openacc=True), for compiling to GPU\n", + "- Infers parameter, variable and component names\n", + " - Each time anything is added to an instrument, one gives it a name and python variable name, now the McStas name can be inferred from the python name so the following statements are equivalent:\n", + " - wavelength = instrument.add_parameter(\"wavelength\", value=5.0)\n", + " - wavelength = instrument.add_parameter(value=5.0)\n", + " - And likewise\n", + " - my_arm = instrument.add_component(\"my_arm\", \"Arm\")\n", + " - my_arm = instrument.add_component(\"Arm)\n", + "- Examples are being updated to run McStas 3.X, not all documentation updated yet\n", + "- Fixed issue where astrox components where loaded in McXtrace\n", + "\n", + "## 0.0.52 - 17th of November 2022\n", + "- New features for diagnostics of instruments, [tutorial here](../tutorial/McStasScript_tutorial_6_Diagnostics.ipynb)\n", + " - Diagrams can now plot intensity and ncount along instrument\n", + " - Diagrams can now plot any variable along the instrument\n", + " - Diagnostics object can show beam at a specified number of points in the instrument\n", + "- McStasEventData can now generate binned data, described in [data](../user_guide/data.ipynb)\n", + "- All datasets now have attributes total I / E / N in metadata, shown in [data](../user_guide/data.ipynb)\n", + "- McStasScript can now read 0D monitors\n", + "- Improvements to reader, better handling of using COPY for component names\n", + "- Instrument objects now have a mccode_version attribute that keeps major version as integer\n", + "\n", + "## 0.0.51 - 17th of October 2022\n", + "- New feature for segmenting the instrument using MCPL input/output [tutorial here](../tutorial/McStasScript_tutorial_5_MCPL_bridges.ipynb)\n", + "- Printed components now conform to McStas syntax (contribution from Peter Willendrup and Erik Knudsen)\n", + "\n", + "## 0.0.50 - 20th of June 2022\n", + "- Support for McStas 3.X\n", + " - USERVARS can now be used with *add_user_var* [parameters_and_variables](../user_guide/parameters_and_variables.ipynb)\n", + " - instrument_reader can read McStas 3.X files with simple USERVARS\n", + "- Improvements to instrument diagrams\n", + "- Introduced checks for using same name for parameters, declare variables and user variables\n", + "- Now possible to easily show instrument file for debugging with *show_instrument_file*\n", + "\n", + "## 0.0.48 - 10th of June 2022\n", + "- Improvements to instrument diagram\n", + " - Colors component depending on category\n", + " - EXTEND and WHEN shown with decorating component box\n", + " - Hovering mouse over left side of box shows component info\n", + " - All Union connections included\n", + " - Improved line arrows to turn in a few segments, greatly clarifying reading busy diagrams\n", + " - Included in all documentation\n", + "- Bug fix in simulator widget that avoids a crash when value in text field could not be converted to float\n", + "- Included documentation on widgets in [widget_user_guide](../user_guide/widgets.ipynb)\n", + "- Now allows for spaces in McStas path, working on how this could work for data path\n", + "\n", + "## 0.0.47 - 31th of May 2022\n", + "Introducing instrument diagrams, they are really useful for getting a quick overview of an instrument\n", + "- Instrument diagrams now available, use the instrument method *show_diagram*\n", + "- Instrument output_path now reports to libpyvinyl calculator path system (Thanks Shervin)\n", + "- Update of the documentation to include *show_diagram* in [instrument user guide](../user_guide/instrument_object.ipynb), [JUMP tutorial](../tutorial/McStasScript_tutorial_4_JUMP.ipynb)\n", + "\n", + "\n", + "## 0.0.44 - 16th of May 2022\n", + "This version is a cleanup of the syntax and streamlining of the package. It improves the consistency of the language use, removes unused methods and is better at recognizing when wrong input is made.\n", + "\n", + "- Renaming of methods to make the \"show\" verb in method names more consistent.\n", + " - show_components did show all available McStas components, now shows components in current instrument\n", + " - print_components still shows all components in current instrument, but also a warning pointing to show_instrument as best practice\n", + " - available_components now shows all available McStas components for help purposes\n", + "- Moved away from allowing arbitrary keyword arguments in some places, so it is now an error to misspell keyword arguments.\n", + " - Instrument initialization\n", + " - Instrument.settings method\n", + " - Instrument.show_components (and print_components) methods\n", + " - Component initialization\n", + "- Removed instrument methods for manipulating components like set_component_AT() as they provided an additional way of doing the same thing, but more error prone than working with the component objects directly.\n", + "- Moved widgets out of base import of package to speed up import\n", + "- Widgets for Jupyter notebooks now loaded with: \n", + " - *import mcstasscript.jb_interface as ms_widget*\n", + " - ms_widget.show(instrument) / ms_widget.show(data) shows widget interface for instrument / data\n", + " - ms_widget.SimInterface(instrument) needed if one wants to retrieve data made in an interface\n", + "- Added instrument methods for moving and removing components (both explained in [instrument object page](../user_guide/instrument_object.ipynb))\n", + " - instrument.move_component\n", + " - instrument.remove_comopnent\n", + "- Introduced error checking before writing / running McStas file, can be disabled with settings(checks=False)\n", + " - Checks all Component AT / ROTATED RELATIVE statements have valid targets\n", + " - Checks that variables used as component parameters have been declared\n", + "- When using show_instrument in a notebook, a new tab was opened and it was shown in the notebook, changed it so no new tab is made when running in a notebook. If a new tab is desired use the keyword argument *new_tab* and set it to True." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "synthetic-multiple", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/index.rst b/docs/source/index.rst new file mode 100644 index 00000000..e52321c2 --- /dev/null +++ b/docs/source/index.rst @@ -0,0 +1,76 @@ +Welcome to McStasScript's documentation! +======================================== + +**McStasScript** is a Python API for `McStas `_, which allows the user to get help, build their instrument, perform simulations and plot the resulting data. +This site serves as the documentation for the package and contains conceptual explanations of how the package is meant to be used, tutorials and a reference for all internal functions/methods. + +Documentation +============= + +.. toctree:: + :caption: Getting started + :maxdepth: 2 + + getting_started/overview + getting_started/installation + getting_started/version_history + getting_started/quick_start + +.. toctree:: + :caption: User guide + :maxdepth: 2 + + user_guide/instrument_object + user_guide/component_object + user_guide/parameters_and_variables + user_guide/data + user_guide/plotting + user_guide/functions + user_guide/widgets + user_guide/instrument_reader + +.. toctree:: + :caption: McStasScript Tutorial + :maxdepth: 1 + + tutorial/McStasScript_tutorial_1_the_basics + tutorial/McStasScript_tutorial_2_SPLIT.ipynb + tutorial/McStasScript_tutorial_3_EXTEND_and_WHEN.ipynb + tutorial/McStasScript_tutorial_4_JUMP.ipynb + tutorial/McStasScript_tutorial_5_MCPL_bridges.ipynb + tutorial/McStasScript_tutorial_6_Diagnostics.ipynb + +.. toctree:: + :caption: McStas Union Tutorial + :maxdepth: 1 + + tutorial/Union_tutorial_1_processes_and_materials.ipynb + tutorial/Union_tutorial_2_geometry.ipynb + tutorial/Union_tutorial_3_loggers.ipynb + tutorial/Union_tutorial_4_conditionals.ipynb + tutorial/Union_tutorial_5_masks.ipynb + tutorial/Union_tutorial_6_Exit_and_number_of_activations.ipynb + tutorial/Union_tutorial_7_Tagging_history.ipynb + +.. autosummary:: + :toctree: _autosummary + :template: custom-module-template.rst + :caption: Reference + :recursive: + + mcstasscript + +.. autosummary:: + :toctree: _autosummary + :template: custom-module-template.rst + :caption: Reference (libpyvinyl) + :recursive: + + libpyvinyl + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/docs/source/tutorial/McStasScript_tutorial_1_the_basics.ipynb b/docs/source/tutorial/McStasScript_tutorial_1_the_basics.ipynb new file mode 100644 index 00000000..57059a4e --- /dev/null +++ b/docs/source/tutorial/McStasScript_tutorial_1_the_basics.ipynb @@ -0,0 +1,676 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# McStasScript introduction\n", + "This notebook shows how to use McStas and McStasScript to perform a basic simulation of a neutron diffractometer. The following software is required:\n", + "- McStas (www.mcstas.org)\n", + "- McStasScript (can be installed with python -m pip install McStasScript)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Anatomy of a McStas instrument\n", + "\n", + "In McStas a simulation is described using an instrument file. Such an instrument has five sections where code can be added to define the simulation to be perfomed.\n", + "\n", + "- Instrument definition\n", + "- Declare section\n", + "- Initialize section\n", + "- Trace section\n", + "- Finally section\n", + "\n", + "##### Instrument definition\n", + "In the instrument definition it is possible to define *instrument parameters* which can be specified at run time and used in the remaining sections for either calculations or as direct input to the components.\n", + "\n", + "##### Declare section\n", + "Here internal variables can be declared with C syntax.\n", + "\n", + "##### Initialize section\n", + "The initialize section is used for performing calculations, typically using both instrument parameters and declared variables to calculate for example chopper phases, angles and similar. The calculations are performed using C syntax. These calculations are performed before the raytracing simulation, and thus only performed once in a given simulation.\n", + "\n", + "##### Trace section\n", + "In the trace section McStas *components* are added, these are the building blocks of the simulation and correspond to different c codes that describe parts of neutron instruments or samples. Each component have a set of available parameters, some of which may be required. These will set the behavior of a component, a guide component may for example have parameters describing the physical shape and mirror reflectivity. Components also need to be placed in 3D space, and can be placed either in the absolute coordinate system or relative to a previously defined component.\n", + "\n", + "##### Finally section\n", + "The finally section is very similar to the initialize section, here calculations can be performed after the raytracing has been completed, again using C syntax. This may be some brief data analysis or print of some status.\n", + "\n", + "### McStasScript python package and this tutorial\n", + "The McStasScript python package provides an API to build and run such instruments files, but it is still necessary to have a basic understanding of the structure of the underlying instrument file and its capabilities and limitations. These tutorials will teach basic use of McStas through the McStasScript API without assuming expertise in the underlying McStas software." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import the McStasScript package\n", + "McStasScript needs to be imported into the users python environment, you can abbreviate the name for easier access." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### McStasScript configuration\n", + "Before the first use of McStasScript it is necessary to configure the package so it can locate the McStas installation and call the binaries. One way to find the path is to open a terminal with the McStas environment and run:\n", + "\n", + "which mcrun\n", + "\n", + "This should return the path for the binary, and the mcstas path is usually just one step back." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "configurator = ms.Configurator()\n", + "configurator.set_mcrun_path(\"/Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1/bin/\")\n", + "configurator.set_mcstas_path(\"/Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create an instrument object\n", + "A McStas instrument is described with a McStas instrument object which is created using the *McStas_instr* method on the instr class. Creating an instrument object also reads available components, both in the work folder and from the McStas installation. By default, the work folder is the current work directory, but using the input_path keyword argument this can be change to avoid cluttering the folder containing notebooks.\n", + "\n", + "Here our instrument object for this tutorial is created, we give it the name python_tutorial." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Requesting help on source components\n", + "The main building blocks used for creating a McStas simulation are the components. One can ask an instrument object which components are available, and get help for each component. Here we check what sources are available, and ask for help on the Source_div component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.available_components()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.available_components(\"sources\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Source_div\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding a component\n", + "Now we are ready to add a component to our simulation which is done with the *add_component* method on our instrument. This method requires two inputs:\n", + "\n", + "- Nickname for the component used to refer to this component instance\n", + "- Name of the component type to be used\n", + "\n", + "Here we want to make a component nicknamed \"source\" of type \"Source_div\".\n", + "\n", + "We also use the *print_components* method to confirm our component was added successfully. Running this code block multiple times result in an error, as McStas does not allow two components with the same nickname." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Working with component objects\n", + "The src object created by *add_component* can be used to modify the component. It also holds the information on the component, which can be shown by printing the object. This will tell us for example if any required parameters are yet to be set and the position of the component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(src)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Modifying a component object\n", + "The parameters of a component object can be modified as attributes. From the above print we know there are four required parameters, so we start by setting these and then print the resulting component status." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src.xwidth = 0.1\n", + "src.yheight = 0.05\n", + "src.focus_aw = 1.2\n", + "src.focus_ah = 2.3\n", + "\n", + "print(src)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Getting status of all parameters\n", + "Printing a component only show the required parameters and user specified parameters, but it is also possible to see all parameters with the *show_parameters* method. This reminds us to set an energy or wavelength range for the source, as it is necessary to set one of these even though they are technically not required parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding an instrument parameter to control wavelength\n", + "Controlling the wavelength range emitted by the source is best done with an instrument parameter, then this same parameter can be used to for example rotate a monochromator or set the range for an wavelength sensitive monitor. Adding an instrument parameter is done using the instrument method *add_parameter*, and it is possible to set a default value and comment. The method returns a parameter object that can be used to assign the parameter to a component. The current instrument parameters can be viewed with the *show_parameters* method on the isntrument object.\n", + "\n", + "The default type for instrument parameters is a double (floating point number), but other types can be selected if necessary by providing a type string before, here we also provide an example of an integer." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "wavelength = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "\n", + "order = instrument.add_parameter(\"int\", \"order\", value=1,\n", + " comment=\"Monochromator order, integer\")\n", + "instrument.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now our source component can have its parameters assigned to a instrument parameter, or even a mathematical expression using the variable. This allows us to set a reasonable wavelength range for our source component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src.lambda0 = wavelength\n", + "src.dlambda = \"0.01*wavelength\" # When performing math use a string and the parameter name\n", + "print(src)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using keyword arguments when adding a component\n", + "When adding a component, several keyword arguments are available, for example for setting the position of the component.\n", + "\n", + "- AT set position with list of x,y,z coordinates\n", + "- AT_RELATIVE set reference point for position (name of component instance or object)\n", + "- ROTATED set rotation around x,y,z axis\n", + "- ROTATED_RELATIVE set reference rotation (name of component instance or object)\n", + "- RELATIVE set both reference position and rotation (name of component instance or object)\n", + "\n", + "We use this to set up a guide 2 meters after the source. The McStas coordinate system convention is such that the nominal beam direction is in the Z direction and with Y vertical against gravity. We use the component instance name as a string to refer to our source. The RELATIVE could also have been specified as src, which is our source object." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "guide = instrument.add_component(\"guide\", \"Guide_gravity\", AT=[0,0,2], RELATIVE=\"source\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next we set the parameters for our guide component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "guide.w1 = 0.05\n", + "guide.w2 = 0.05\n", + "guide.h1 = 0.05\n", + "guide.h2 = 0.05\n", + "guide.l = 8.0\n", + "guide.m = 3.5\n", + "guide.G = -9.82\n", + "\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding calculations to an instrument file\n", + "One of the advantages of McStas is the ease of adding calculations to the instrument. Here we calculate the rotation of a monochromator so that its scatters the wavelengths from our source. We need to declare variables using *add_declare_var* and append C code to initialize using *append_initialize*.\n", + "\n", + "For *add_declare_var* the first argument is the C type, usually double or int, the next is the variable name. A default value can be specified with the value keyword. Like when adding a parameter, a *add_declare* also returns an object that can be used to refer to this variable later.\n", + "\n", + "*append_initialize* just adds the given C code to the initialize section of the McStas instrument file. It is necessary to follow C syntax, for example remember semicolon at the end of statements." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mono_Q = instrument.add_declare_var(\"double\", \"mono_Q\", value=1.714) # Q for Ge 311\n", + "instrument.add_declare_var(\"double\", \"wavevector\")\n", + "instrument.append_initialize(\"wavevector = 2.0*PI/wavelength;\")\n", + "\n", + "mono_rotation = instrument.add_declare_var(\"double\", \"mono_rotation\")\n", + "instrument.append_initialize(\"mono_rotation = asin(mono_Q/(2.0*wavevector))*RAD2DEG;\")\n", + "instrument.append_initialize('printf(\"monochromator rotation = %g deg\\\\n\", mono_rotation);')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the monochromator\n", + "Here the monochromator is added, and we use the declared variables *mono_Q* and *mono_rotation* prepared above. Setting position and rotation can also be done using the *set_AT* and *set_ROTATED* methods on the component objects. Here it is also demonstrated how one can use either component objects or component names for the relative keyword.\n", + "\n", + "Rotation is specified around each axis, so rotation of our monochromator should be around the Y axis in order to keep the beam in the usual X-Z plane." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mono = instrument.add_component(\"mono\", \"Monochromator_flat\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mono.zwidth = 0.05\n", + "mono.yheight = 0.08\n", + "mono.Q = mono_Q\n", + "mono.set_AT([0, 0, 8.5], RELATIVE=guide)\n", + "mono.set_ROTATED([0, mono_rotation, 0], RELATIVE=\"guide\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(mono)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using an arm to define the beam direction\n", + "As the beam changes direction at the monochromator, we wish to define the new direction to simplify adding latter components. This can be done with an Arm component, which performs no simulation but can be used as new coordinate reference. The outgoing direction correspond to one more rotation of *mono_rotation*." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "beam_direction = instrument.add_component(\"beam_dir\", \"Arm\", AT_RELATIVE=\"mono\")\n", + "beam_direction.set_ROTATED([0, mono_rotation, 0], RELATIVE=\"mono\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding a sample\n", + "We now add a powder sample using the PowderN component placed relative to our newly defiend beam direction. The chosen powder is Na2Ca3Al2F14 which is a standard sample due to its large number of available reflections." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample = instrument.add_component(\"sample\", \"PowderN\",\n", + " AT=[0, 0, 1.1], RELATIVE=beam_direction)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample.radius = 0.015\n", + "sample.yheight = 0.05\n", + "sample.reflections = '\"Na2Ca3Al2F14.laz\"'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample.print_long()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding a cylindrical monitor\n", + "The flexible Monitor_nD component can be used to add a banana monitor (part of a cylinder). The component shape is specified using an option string. The restore_neutron parameter is set to 1 to allow other monitors to record each neutron.\n", + "\n", + "We have to specify a filename and option string here, and if we just use a string like \"banana.dat\" it would be interpreted as an instrument parameter called *banana.dat* and fail, so it is necessary to add single quotes around, '\"banana.dat\"'." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample)\n", + "banana.xwidth = 2.0\n", + "banana.yheight = 0.3\n", + "banana.restore_neutron = 1\n", + "banana.filename = '\"banana.dat\"'\n", + "banana.options = '\"theta limits=[5 175] bins=150, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding a psd monitor\n", + "We also add a simple PSD (position sensitive detector) monitor to see the transmitted beam." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mon = instrument.add_component(\"monitor\", \"PSD_monitor\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mon.nx = 100\n", + "mon.ny = 100\n", + "mon.filename = '\"psd.dat\"'\n", + "mon.xwidth = 0.05\n", + "mon.yheight = 0.08\n", + "mon.restore_neutron = 1\n", + "mon.set_AT([0,0,0.1], RELATIVE=sample)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Print the components contained in an instrument\n", + "Before performing the simulation, it is a good idea to check that the instrument contains the expected components and that they are appropriately placed in space. The *print_components* method is useful for this purpose." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Show instrument diagram\n", + "While show components provides a text based overview of the instrument file, the instrument diagram can provide a visual overview. The diagram shows the sequence of components and color them based on their category. Arrows show the AT and ROTATED references within the instrument." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Running the simulation\n", + "Running the simulation is done in three steps\n", + "\n", + "- Setting the parameters with *set_parameters*\n", + "- Setting the settings with *settings*\n", + "- Running the McStas simulation with *backengine*\n", + "\n", + "The *set_parameters* method takes a value for each of the parameters defined in the instrument, here wavelength.\n", + "\n", + "Settings adjust settings for the simulations, a few examples can be seen here\n", + "\n", + "- ncount sets the number of rays\n", + "- mpi sets the number of CPU cores used for execution (requires mpi installed)\n", + "- output_path sets the name of the output folder\n", + "- increment_folder_name if set to True, automatically changes the foldername if it already exists (default).\n", + "\n", + "The *backengine* method takes no parameters and just performs the simulation and returns the generated data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8)\n", + "instrument.show_parameters()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.settings(ncount=5E6, output_path=\"data_folder/mcstas_basics\")\n", + "instrument.show_settings()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine() # Perform simulation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Plotting the data\n", + "The *run_full_instrument* method returned a list of McStasData objects which can be plotted by the McStasScript plotter module. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adjusting plots\n", + "The McStasData objects contain preferences for how the data should be plotted, which can be modified using the functions module and the *name_plot_options* function. The function arguments are the name of the monitor component and a list of McStasData objects, then options are provided with the keyword arguments.\n", + "\n", + "The following plot options are often useful:\n", + "- log [True or False] For plotting on logarithmic axis\n", + "- orders_of_mag [number] When using logarithmic plotting, limits the maximum orders of magnitudes shown\n", + "- left_lim [number] lower limit of plot x axis\n", + "- right_lim [number] upper limit of plot x axis\n", + "- bottom_lim [number] lower limit of plot y axis\n", + "- top_lim [number] upper limit of plot y axis\n", + "- colormap [string] name of matplotlib colormap to use" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"monitor\", data, log=True)\n", + "ms.name_plot_options(\"banana\", data, left_lim=90, right_lim=150)\n", + "ms.make_sub_plot(data, fontsize=16)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Behind the scenes \n", + "McStasScript writes the instrument file and uses mcrun to compile and run it. The file can be found in the input_path selected when the instrument object were created. We can print it here to see what was done behind the scenes." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_instrument_file()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/McStasScript_tutorial_2_SPLIT.ipynb b/docs/source/tutorial/McStasScript_tutorial_2_SPLIT.ipynb new file mode 100644 index 00000000..2004b575 --- /dev/null +++ b/docs/source/tutorial/McStasScript_tutorial_2_SPLIT.ipynb @@ -0,0 +1,326 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced McStas features: SPLIT\n", + "McStas uses the Monte Carlo ray-tracing technique, which allows some tricks on how the physics is sampled as long as the resulting probability distributions match the physics. This is possible as each ray has a weight, corresponding to how much intensity this ray represents. The SPLIT keyword can be used to split a ray into many equal parts, which can be useful if the remaining instrument has many different simulated and random outcomes. In this tutorial we will use the SPLIT keyword on a powder sample, as there are many powder Bragg peaks each ray could select, and splitting the ray samples this more efficiently." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setting up an example instrument\n", + "First we set up an example instrument, this is taken from the basic tutorial and consists of source, guide, monochromator, sample and banana detector." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\",\n", + " output_path=\"data_folder/mcstas_SPLIT\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.add_component(\"Origin\", \"Progress_bar\")\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.1\n", + "src.yheight = 0.05\n", + "src.focus_aw = 1.2\n", + "src.focus_ah = 2.3\n", + "\n", + "wavelength = instrument.add_parameter(\"wavelength\", value=5.0, comment=\"Wavelength in [Ang]\")\n", + "src.lambda0 = wavelength\n", + "src.dlambda = \"0.03*wavelength\"\n", + "\n", + "guide = instrument.add_component(\"guide\", \"Guide_gravity\", AT=[0,0,2], RELATIVE=src)\n", + "guide.w1 = 0.05\n", + "guide.w2 = 0.05\n", + "guide.h1 = 0.05\n", + "guide.h2 = 0.05\n", + "guide.l = 8.0\n", + "guide.m = 3.5\n", + "guide.G = -9.82\n", + "\n", + "mono_Q = instrument.add_declare_var(\"double\", \"mono_Q\", value=1.714) # Q for Ge 311\n", + "instrument.add_declare_var(\"double\", \"wavevector\")\n", + "instrument.append_initialize(\"wavevector = 2.0*PI/wavelength;\")\n", + "\n", + "mono_rotation = instrument.add_declare_var(\"double\", \"mono_rotation\")\n", + "instrument.append_initialize(\"mono_rotation = asin(mono_Q/(2.0*wavevector))*RAD2DEG;\")\n", + "instrument.append_initialize('printf(\"monochromator rotation = %g deg\\\\n\", mono_rotation);')\n", + "\n", + "mono = instrument.add_component(\"mono\", \"Monochromator_flat\")\n", + "mono.zwidth = 0.05\n", + "mono.yheight = 0.08\n", + "mono.Q = mono_Q\n", + "mono.set_AT([0, 0, 8.5], RELATIVE=guide)\n", + "mono.set_ROTATED([0, mono_rotation, 0], RELATIVE=guide)\n", + "\n", + "beam_direction = instrument.add_component(\"beam_dir\", \"Arm\", AT_RELATIVE=mono)\n", + "beam_direction.set_ROTATED([0, \"mono_rotation\", 0], RELATIVE=\"mono\")\n", + "\n", + "sample = instrument.add_component(\"sample\", \"PowderN\", AT=[0,0,1.1], RELATIVE=beam_direction)\n", + "sample.radius = 0.015\n", + "sample.yheight = 0.05\n", + "sample.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample)\n", + "banana.xwidth = 2.0\n", + "banana.yheight = 0.3\n", + "banana.restore_neutron = 1\n", + "banana.filename = '\"banana.dat\"'\n", + "banana.options = '\"theta limits=[5 175] bins=150, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation\n", + "Here we run the simulation with very few neutrons to show problematic sampling." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.settings(ncount=1E6)\n", + "\n", + "instrument.set_parameters(wavelength=2.8)\n", + " \n", + "data_low = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_low)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the SPLIT keyword\n", + "Here we add the SPLIT keyword to the sample, we choose to split each ray into 30." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample.set_SPLIT(30)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "# No need to set settings or parameters as these have not changed\n", + "data_reasonable = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_reasonable)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Caution on split value\n", + "It is however possible to mismanage splitting, mainly by simulating a too few rays and splitting too much. Here we do this on purpose to see how such data would look. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "sample.set_SPLIT(10000)\n", + "\n", + "instrument.settings(ncount=1E3) # Change settings to lower ncount, but keep parameters\n", + " \n", + "data_unreasonable = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_unreasonable)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Comparison with high statistics run\n", + "We here compare the different runs to a reference. The reference run is set up to have 50 times more rays than the earlier runs with 5E7 instead of 1E6 rays." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "sample.set_SPLIT(1)\n", + "instrument.settings(ncount=2E7)\n", + " \n", + "data_ref = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_ref)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plotting data on same plot\n", + "Here we only have one monitor in each data list, but we still use the *name_search* function to retrieve the correct data object from each. This avoids the code breaking in case additional monitors are added.\n", + "\n", + "Once we have the objects, we use the *xaxis*, *Intensity* and *Error* attributes to plot the data with matplotlib." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt\n", + "banana_low = ms.name_search(\"banana\", data_low)\n", + "banana_reasonable = ms.name_search(\"banana\", data_reasonable)\n", + "banana_unreasonable = ms.name_search(\"banana\", data_unreasonable)\n", + "banana_ref = ms.name_search(\"banana\", data_ref)\n", + "\n", + "plt.figure(figsize=(14,6))\n", + "plt.errorbar(banana_low.xaxis, banana_low.Intensity, yerr=banana_low.Error, fmt=\"r\")\n", + "plt.errorbar(banana_ref.xaxis, banana_ref.Intensity, yerr=banana_ref.Error, fmt=\"b\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "plt.legend([\"Low statistics\", \"High statistics reference\"])\n", + "\n", + "plt.figure(figsize=(14,6))\n", + "plt.errorbar(banana_reasonable.xaxis, banana_reasonable.Intensity,\n", + " yerr=banana_reasonable.Error, fmt=\"r\")\n", + "plt.errorbar(banana_ref.xaxis, banana_ref.Intensity, yerr=banana_ref.Error, fmt=\"b\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "plt.legend([\"Low statistics with SPLIT\", \"High statistics reference\"])\n", + "\n", + "plt.figure(figsize=(14,6))\n", + "plt.errorbar(banana_unreasonable.xaxis, banana_unreasonable.Intensity,\n", + " yerr=banana_unreasonable.Error, fmt=\"r\")\n", + "plt.errorbar(banana_ref.xaxis, banana_ref.Intensity, yerr=banana_ref.Error, fmt=\"b\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "l = plt.legend([\"Very low statistics with unreasonable SPLIT\", \"High statistics reference\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "We see that with low statistics, the data quality is so bad that noise can be mistaken for peaks. Using SPLIT improves the situation a lot, and the data is very similar to the high statistics reference which takes longer to compute. The situation with a low number of simulated rays and very high SPLIT have some erratic behavior, showing some very different peak intensities than the reference, and some peaks that shouldn't be there at all." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/McStasScript_tutorial_3_EXTEND_and_WHEN.ipynb b/docs/source/tutorial/McStasScript_tutorial_3_EXTEND_and_WHEN.ipynb new file mode 100644 index 00000000..99b2a000 --- /dev/null +++ b/docs/source/tutorial/McStasScript_tutorial_3_EXTEND_and_WHEN.ipynb @@ -0,0 +1,255 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced McStas features: EXTEND and WHEN\n", + "In this tutorial we will look at two advanced features in McStas, the EXTEND block and WHEN condition. Here we will use them to flag certain neutrons with EXTEND, and only record them in monitors when the flag is set using a WHEN condition." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\",\n", + " output_path=\"data_folder/mcstas_EXTEND_WHEN\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up an example McStas instrument\n", + "First we set up an example instrument conisiting of a source, a guide and a position/divergence monitor. The guide is set up such that it only has mirrors on the left and right side, and absorbs neutrons if they hit the top or bottom. This is done to look at the horizontal behavior independently from the vertical, as this is easier to analyze." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_simple\")\n", + "src.focus_xw = guide_opening_w = 0.05\n", + "src.focus_yh = guide_opening_h = 0.06\n", + "src.dist = source_guide_distance = 1.5\n", + "\n", + "wavelength = instrument.add_parameter(\"wavelength\", value=5.0, comment=\"Wavelength in [Ang]\")\n", + "src.set_parameters(xwidth=0.02, yheight=0.02, flux=1E13, lambda0=wavelength, dlambda=\"0.001*wavelength\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "guide = instrument.add_component(\"guide\", \"Guide_gravity\")\n", + "guide.set_AT([0, 0, source_guide_distance], RELATIVE=src)\n", + "guide.set_parameters(w1=guide_opening_w, w2=guide_opening_w,\n", + " h1=guide_opening_h, h2=guide_opening_h,\n", + " l=15, G=-9.82, mleft=4.0, mright=4.0, mtop=0.0, mbottom=0.0)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "acceptance = instrument.add_component(\"acceptance\", \"DivPos_monitor\")\n", + "acceptance.set_AT([0,0, guide.l + 0.1], RELATIVE=guide)\n", + "acceptance.set_parameters(xwidth=0.08, yheight=0.05, nh=200, maxdiv_h=1.5, ndiv=200,\n", + " filename='\"acceptance.dat\"', restore_neutron=1)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8)\n", + "instrument.settings(ncount=5E6)\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the data\n", + "Here we see an acceptance monitor, with position along the x-axis and divergence along the y-axis. The guide is under illuminated by the small source, so there are gaps in the acceptance diagram. We see the position and divergence of the beam consist of a large number of stripes, the ones with lowest divergence has the largest intensity.\n", + "\n", + "## Add an flag\n", + "A flag is just a name for a variable that records some information on the neutron during the simulation, and can be used later to make a decision. Here we could check how many times the ray was reflected in the guide.\n", + "\n", + "We use an EXTEND block after a component to access variables internal to the component in the instrument scope. We declare a variable in the instrument scope called *n_reflections*. In the component scope, one can use the SCATTERED variable which contains the number of times the ray has encountered the SCATTER keyword within the component. Usually this is done when entering and leaving, and under each scattering / reflection, so the number of reflections is SCATTERED - 2." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.add_declare_var(\"int\", \"n_reflections\")\n", + "guide.append_EXTEND(\"n_reflections = SCATTERED - 2;\")\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Use the flag to limit what is recorded in a monitor\n", + "A WHEN statement can be used to activate / deactivate a component when some condition is true / false. For example we could require 0 reflection in our guide. We add a few monitors similar to the original, with the only difference being WHEN statements requiring 0, 1 or 2 reflections in the guide for the component to be active. We use a for loop to add the similar components, only changing the component instance name, filename and WHEN statement between each." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "reflection_numbers = [0, 1, 2]\n", + "\n", + "for reflections in reflection_numbers:\n", + " reflections_string = str(reflections)\n", + " \n", + " component_name = \"acceptance_\" + reflections_string\n", + " acceptance = instrument.add_component(component_name, \"DivPos_monitor\")\n", + " acceptance.filename = '\"acceptance_' + reflections_string + '.dat\"'\n", + " acceptance.set_WHEN(\"n_reflections == \" + reflections_string)\n", + " \n", + " acceptance.set_AT([0,0, guide.l + 0.1], RELATIVE=guide)\n", + " acceptance.set_parameters(xwidth=0.08, yheight=0.05, nh=200, maxdiv_h=1.5, ndiv=200, restore_neutron=1)\n", + " \n", + " print(acceptance)\n", + " print(\"\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The instrument diagram shows the use of *EXTEND* and *WHEN* keywords by decorating the corresponding component boxes with a heavier outline or dashed outline respectively." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation\n", + "We now run the simulation with the new monitors to see how they differ from the original version." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8)\n", + "instrument.settings(ncount=5E6)\n", + "instrument.show_settings()\n", + "\n", + "new_data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(new_data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "The original monitor is unchanged as it was not modified. On the monitors with different numbers of reflections, we see the middle line correspond to zero reflections, the two lines around those are for one reflection and so forth. This explains why the lines further from the center has lower intensity, as they underwent more reflections while also having a larger angle of incidence on the mirrors." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### The McStas instrument file\n", + "We here show the generated McStas instrument file in order to clarify how this would be accomplished without the McStasScript API." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_instrument_file()" + ] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/McStasScript_tutorial_4_JUMP.ipynb b/docs/source/tutorial/McStasScript_tutorial_4_JUMP.ipynb new file mode 100644 index 00000000..9c347936 --- /dev/null +++ b/docs/source/tutorial/McStasScript_tutorial_4_JUMP.ipynb @@ -0,0 +1,295 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced McStas features: JUMP\n", + "In this notebook we will look at JUMP and how it can be used to control the sequence of execution of components. One instance where this is useful is if a guide splits into two. Consider an instrument with the following components:\n", + "\n", + "- source\n", + "- main guide\n", + "- guide1\n", + "- sample1\n", + "- detector1\n", + "- guide2\n", + "- sample2\n", + "- detector2\n", + "\n", + "After the main guide, if the ray hits the opening of guide1 the ray will continue to sample1 and detector1 as expected, but if it misses the opening of guide1, it will just be absorbed and never reach guide2 later in the component sequence. One possible solution is to use a JUMP statement, which jumps to another place in the component sequence. The target component must be an Arm, and no coordinate transformations are done, so the simplest solution is to have the Arm conincide with the component with the JUMP statement.\n", + "\n", + "- source\n", + "- main guide\n", + "- arm A JUMP arm B WHEN ray hits guide2 entrance \n", + "- guide1\n", + "- sample1\n", + "- detector1\n", + "- arm B (same position and rotation of arm A)\n", + "- guide2\n", + "- sample2\n", + "- detector2\n", + "\n", + "Here we build such an instrument with a few notes on the syntax along the way." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_simple\")\n", + "\n", + "src.xwidth = 0.12\n", + "src.yheight = 0.12\n", + "src.focus_xw = guide_opening_w = 0.1\n", + "src.focus_yh = guide_opening_h = 0.06\n", + "src.dist = 1.5\n", + "src.flux = 1E13\n", + "\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.001*wavelength\"\n", + "\n", + "guide = instrument.add_component(\"guide\", \"Guide_gravity\", AT=[0,0,1.5], RELATIVE=src)\n", + "guide.w1 = guide_opening_w\n", + "guide.h1 = guide_opening_h\n", + "guide.w2 = guide_opening_w\n", + "guide.h2 = guide_opening_h\n", + "guide.l = guide_length = 15\n", + "guide.m = 4.0\n", + "guide.G = -9.82" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the reference arm\n", + "We here add an arm just after the exit of the main guide which will be the component that performs the JUMP under certain circumstances. The McStas syntax for such a JUMP statement would be:\n", + "\n", + "JUMP *reference* WHEN *condition*\n", + "\n", + "We will call the arm we jump to for *target_arm*, and our condition is that the neutron is on the left side, so x<0. That means our JUMP statement would be:\n", + "\n", + "JUMP target_arm WHEN (x<0)\n", + "\n", + "In McStasScript this is added with the *set_JUMP* method, that takes a string for what to set after JUMP." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "start_arm = instrument.add_component(\"split_arm\", \"Arm\")\n", + "start_arm.set_AT([0,0, guide_length + 3E-3], RELATIVE=guide)\n", + "start_arm.set_JUMP(\"target_arm WHEN (x<0)\")\n", + "\n", + "print(start_arm)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the first daughter instrument\n", + "We then add the left side, which correspond to x>0, so this is the case where no jump was performed and the sequence of components runs as normal." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "guide1 = instrument.add_component(\"guide1\", \"Guide_gravity\")\n", + "guide1.set_AT([0.25*guide_opening_w,0,0], RELATIVE=start_arm)\n", + "guide1.set_ROTATED([0, 1, 0], RELATIVE=start_arm)\n", + "guide1.w1 = 0.5*guide_opening_w\n", + "guide1.h1 = 0.5*guide_opening_h\n", + "guide1.w2 = 0.5*guide_opening_w\n", + "guide1.h2 = 0.5*guide_opening_h\n", + "guide1.l = guide1_length = 10\n", + "guide1.m = 2.5\n", + "guide1.G = -9.82\n", + "\n", + "sample1 = instrument.add_component(\"sample1\", \"PowderN\")\n", + "sample1.set_AT([0,0,guide1_length+0.5], RELATIVE=guide1)\n", + "sample1.radius = 0.015\n", + "sample1.yheight = 0.05\n", + "sample1.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "banana1 = instrument.add_component(\"banana1\", \"Monitor_nD\", RELATIVE=sample1)\n", + "banana1.xwidth = 2.0\n", + "banana1.yheight = 0.3\n", + "banana1.filename = '\"banana1.dat\"'\n", + "banana1.options = '\"theta limits=[5 175] bins=150, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the second daughter instrument\n", + "Now we need to add the target_arm that rays jump to when they go to the right side of the guide split. This is in the exact same position of the previous arm, to avoid the need for a coordinate transformation which is not performed automatically when using JUMP statements.\n", + "\n", + "After that we add a second daughter instrument with a different sample." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "target_arm = instrument.add_component(\"target_arm\", \"Arm\")\n", + "target_arm.set_AT([0,0,0], RELATIVE=start_arm)\n", + "\n", + "guide2 = instrument.add_component(\"guide2\", \"Guide_gravity\")\n", + "guide2.set_AT([-0.25*guide_opening_w,0,0], RELATIVE=target_arm)\n", + "guide2.set_ROTATED([0, -1, 0], RELATIVE=target_arm)\n", + "guide2.w1 = 0.5*guide_opening_w\n", + "guide2.h1 = 0.5*guide_opening_h\n", + "guide2.w2 = 0.5*guide_opening_w\n", + "guide2.h2 = 0.5*guide_opening_h\n", + "guide2.l = guide1_length = 15\n", + "guide2.m = 2.5\n", + "guide2.G = -9.82\n", + "\n", + "sample2 = instrument.add_component(\"sample2\", \"PowderN\")\n", + "sample2.set_AT([0,0,guide1_length+0.5], RELATIVE=guide2)\n", + "sample2.radius = 0.015\n", + "sample2.yheight = 0.05\n", + "sample2.reflections = '\"Cu.laz\"'\n", + "\n", + "banana2 = instrument.add_component(\"banana2\", \"Monitor_nD\", RELATIVE=sample2)\n", + "banana2.xwidth = 2.0\n", + "banana2.yheight = 0.3\n", + "banana2.filename = '\"banana2.dat\"'\n", + "banana2.options = '\"theta limits=[5 175] bins=150, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Instrument diagram showing JUMP\n", + "The instrument diagram helps visualize what happens with a JUMP statement, as JUMPS are visualized. From the diagram, it can be seen that the two daughter instruments exist in parallel after the \"split_arm\" component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8)\n", + "instrument.settings(ncount=5E6, output_path=\"data_folder/mcstas_JUMP\")\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Interpretation of the data\n", + "We see that each daughter instrument have beam and show the different powder patterns as expected." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### The McStas instrument file\n", + "We here show the generated McStas instrument file in order to clarify how this would be accomplished without the McStasScript API." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_instrument_file()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/McStasScript_tutorial_5_MCPL_bridges.ipynb b/docs/source/tutorial/McStasScript_tutorial_5_MCPL_bridges.ipynb new file mode 100644 index 00000000..2951b137 --- /dev/null +++ b/docs/source/tutorial/McStasScript_tutorial_5_MCPL_bridges.ipynb @@ -0,0 +1,541 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "swedish-cathedral", + "metadata": {}, + "source": [ + "# Dynamic instrument cuts with MCPL bridges\n", + "\n", + "There are some instances where it is beneficial to write to McStas instruments to simulate something by transfering the beam from one to the other through an MCPL file. This is most commonly done to save on computational time, imagine for example an instrument with a long complicated guide with high resolution choppers, only allowing few neutrons through. If one wants to simulate a number of different samples on such an instrument, it would be nice to run the simulation up until the end of the guide once, and then once for each sample starting after the guide.\n", + "\n", + "That can be done in McStas using the MCPL output and MCPL_input component, which saves and loads the beam to a file respectively. Then one would have two instrument files, the first ending with an MCPL_output, and the next starting with an MCPL_input. \n", + "\n", + "\n", + "In McStasScript it is possible to do the same thing dynamically through the instrument object. The instrument can be executed in segments, and the MCPL_output / MCPL_input components are added automatically. The instrument object will also keep track of the generated MCPL files. This tutorial will show an example of how this can be done, and importantly show that there are some limitations on how the instrument is written to allow for this." + ] + }, + { + "cell_type": "markdown", + "id": "devoted-liberal", + "metadata": {}, + "source": [ + "## A simple example instrument\n", + "The instrument below does not benefit greatly from being segmented, but is sufficient to show how the system is used." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "motivated-factory", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "\n", + "instr = ms.McStas_instr(\"bridge_demo\", input_path=\"run_folder\")\n", + "\n", + "src = instr.add_component(\"Source\", \"Source_simple\")\n", + "src.E0 = instr.add_parameter(\"energy\", value=10)\n", + "src.set_parameters(xwidth=0.1, yheight=0.1, dE=2,\n", + " focus_xw=0.03, focus_yh=0.03, dist=2)\n", + "\n", + "guide_1 = instr.add_component(\"guide_1\", \"Guide_gravity\")\n", + "guide_1.set_parameters(w1=0.03, h1=0.03, m=3, l=10)\n", + "guide_1.set_AT(2, RELATIVE=src)\n", + "\n", + "guide_2 = instr.add_component(\"guide_2\", \"Guide_gravity\")\n", + "guide_2.set_parameters(w1=0.03, h1=0.03, m=3, l=10)\n", + "guide_2.set_AT(guide_1.l + 0.01, RELATIVE=guide_1)\n", + "\n", + "guide_end = instr.add_component(\"Guide_end\", \"Arm\")\n", + "guide_end.set_AT(guide_2.l, RELATIVE=guide_2)\n", + "\n", + "sample_position = instr.add_component(\"Sample_position\", \"Arm\")\n", + "sample_position.set_AT(22.5, RELATIVE=src)\n", + "\n", + "sample = instr.add_component(\"sample\", \"PowderN\", RELATIVE=sample_position)\n", + "sample.reflections = instr.add_parameter(\"string\", \"data\", value='\"Cu.laz\"')\n", + "sample.set_parameters(radius=0.005, yheight=0.05)\n", + "\n", + "banana = instr.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample)\n", + "banana.xwidth = 2.0\n", + "banana.yheight = 0.3\n", + "banana.restore_neutron = 1\n", + "banana.filename = '\"banana.dat\"'\n", + "banana.options = '\"theta limits=[5 175] bins=150, energy limits=[5,15] bins=100, banana\"'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "framed-burlington", + "metadata": {}, + "outputs": [], + "source": [ + "instr.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "id": "packed-darkness", + "metadata": {}, + "source": [ + "## Requirements for the instrument to be segmented\n", + "In order to cut the instrument into two sections, the positions and rotations in the latter part are not allowed to refer to any component in the first part. In the above example it would not be possible to make a cut at any component from *guide_1* to *Guide_end*, as the sample position would not be able to be set relative to something in another instrument file. It would however be possible to create a cut at the *Source* (not very useful) or at the *Sample_position* and at any component after.\n", + "\n", + "In order to set the end of an instrument segment, one use the *run_to* method on the instrument object, providing the name of the component or component object of the component that should act as the transfer point. This will check if its allowed to segment the instrument at that component, so lets try at the Guide_end which wouldn't be possible." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "mechanical-sierra", + "metadata": {}, + "outputs": [], + "source": [ + "try:\n", + " instr.run_to(guide_end)\n", + "except Exception as e:\n", + " print(e)" + ] + }, + { + "cell_type": "markdown", + "id": "specific-analyst", + "metadata": {}, + "source": [ + "## Instruments suitable for being segmented\n", + "Instruments can be written in a way where there are more options to segment the instrument, we could just specify the position of the sample relative to the end of the guide, then this instrument could be cut anywhere." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "precise-poster", + "metadata": {}, + "outputs": [], + "source": [ + "sample_position.set_AT(0.5, RELATIVE=guide_end)\n", + "instr.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "id": "super-visibility", + "metadata": {}, + "source": [ + "There is no need to write all instruments with only references to the previous component in order to allow segmentation of the instrument at every component, but it is worthwhile to keep this in mind for points in your instrument where segmentation is natural, such as the end of a guide.\n", + "\n", + "## Running the first part of an instrument\n", + "To run the instrument up to a certain point and dump the beam to disk, one need to use the *run_to* method to set the end point, and then run the instrument as one normally would with *backengine*. One can always use *show_run_subset* to see what part of the instrument is currently selected for execution." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "electoral-zimbabwe", + "metadata": {}, + "outputs": [], + "source": [ + "instr.run_to(guide_end)\n", + "instr.show_run_subset()" + ] + }, + { + "cell_type": "markdown", + "id": "outside-speed", + "metadata": {}, + "source": [ + "### Metadata for beamdump\n", + "It is possible to set the name of the beam dump and to add a comment, which is good practice so it easier to keep track of the beam dumps." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "controversial-ballet", + "metadata": {}, + "outputs": [], + "source": [ + "instr.run_to(guide_end, \"10 meV\", comment=\"Run with spread of +/- 2 meV\")" + ] + }, + { + "cell_type": "markdown", + "id": "confused-spain", + "metadata": {}, + "source": [ + "### Instrument information\n", + "This information is also reflected in the instrument diagram and show components. Here it is visible that the *Guide_end* component has been substituted with a *MCPL_Guide_end* component that has been given its exact position." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "intensive-serve", + "metadata": {}, + "outputs": [], + "source": [ + "instr.show_components()\n", + "instr.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "id": "fuzzy-hydrogen", + "metadata": {}, + "source": [ + "This part of the instrument can now be executed as normal." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "remarkable-issue", + "metadata": {}, + "outputs": [], + "source": [ + "instr.settings(suppress_output=True)\n", + "instr.backengine()" + ] + }, + { + "cell_type": "markdown", + "id": "fancy-memphis", + "metadata": {}, + "source": [ + "## The dump database\n", + "The instrument object keeps track of the generated MCPL files in a small database written to disk next to the instrument file. These can be shown with the *show_dumps* method, and will persist through sessions as the data is saved on disk. This database doesn't copy the MCPL data, but keeps track on where it is located on the disk, so moving or deleting the generated data folders can cause trouble." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "other-provincial", + "metadata": {}, + "outputs": [], + "source": [ + "instr.show_dumps()" + ] + }, + { + "cell_type": "markdown", + "id": "handled-rwanda", + "metadata": {}, + "source": [ + "### Information on a specific beam dump\n", + "It is possible to get further information on one beam dump with the *show_dump* method. This method require the component name where the dump is located, and the most recent version is then displayed. It is possible to add *run_name* and *tag* to show a specific beam dump." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "young-float", + "metadata": {}, + "outputs": [], + "source": [ + "instr.show_dump(guide_end)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "breeding-chocolate", + "metadata": {}, + "outputs": [], + "source": [ + "instr.show_dump(guide_end, run_name=\"10 meV\", tag=0)" + ] + }, + { + "cell_type": "markdown", + "id": "involved-morocco", + "metadata": {}, + "source": [ + "### Clearing the database\n", + "Clearing this database can be done by removing the database folder from the disk, it is a folder that has the same name as the instrument and ends with \"_db\". There is no method in McStasScript to do so as there is risk of deleting important data on accident. It is also possible to change the name of the instrument, as the database is tied to the name." + ] + }, + { + "cell_type": "markdown", + "id": "judicial-alignment", + "metadata": {}, + "source": [ + "## Running from a beam dump\n", + "Now that we have a beam dump in the database, we can use it to run from. It is however important to remember run_to is still set to *guide_end*, so asking the instrument to run_from *guide_end* would not be allowed." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "hybrid-classic", + "metadata": {}, + "outputs": [], + "source": [ + "try:\n", + " instr.run_from(guide_end)\n", + "except Exception as e:\n", + " print(e)" + ] + }, + { + "cell_type": "markdown", + "id": "above-westminster", + "metadata": {}, + "source": [ + "### Clearing run_to or run_from\n", + "It is possible to clear run_to or run_from by giving the input *None*, or both can be cleared with the method *reset_run_points*. This allows us to run from the *guide_end* beam dump. The *run_from* method would result in an error if no dumps where found at that point in the beam dump database." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "spanish-seattle", + "metadata": {}, + "outputs": [], + "source": [ + "instr.reset_run_points()\n", + "instr.run_from(guide_end)\n", + "\n", + "instr.show_components()\n", + "instr.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "id": "accessible-distribution", + "metadata": {}, + "source": [ + "Now we see the part of the instrument after the *Guide_end* component as expected." + ] + }, + { + "cell_type": "markdown", + "id": "unable-penguin", + "metadata": {}, + "source": [ + "### Selecting a certain beam dump\n", + "Just running *run_from* will select the most recent beam dump at that position, and is often the appropriate choice. It is however possible to select any beam dump in the database, provided it is at the specified component using the *run_name* and *tag* keyword arguments." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "based-brooklyn", + "metadata": {}, + "outputs": [], + "source": [ + "instr.run_from(guide_end, run_name=\"10 meV\", tag=0)" + ] + }, + { + "cell_type": "markdown", + "id": "pending-calcium", + "metadata": {}, + "source": [ + "### Settings to the MCPL_input and MCPL_output components\n", + "Both the *run_from* and *run_to* methods are able to pass parameters to the MCPL components used, so the *run_to* method accepts parameters for the MCPL_output component, while run_from accept parameters from the MCPL_input component. Here we show the help of the MCPL_input component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "strange-estate", + "metadata": {}, + "outputs": [], + "source": [ + "instr.component_help(\"MCPL_input\")" + ] + }, + { + "cell_type": "markdown", + "id": "elementary-acting", + "metadata": {}, + "source": [ + "When loading a beam from disk, it is possible to run each neutron several times with small differences in its position, direction and energy. This can have similar problematic effects on the statistics as SPLIT if used without care, so think about the justification to use repeats and smear for your application. Using smear of direction from a source with an almost isotropic distribution of directions would be sensible, but using it on a tightly collimated beam could introduce inaccuracies." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "amazing-bracelet", + "metadata": {}, + "outputs": [], + "source": [ + "instr.run_from(guide_end, repeat_count=3, E_smear=0.01, dir_smear=0.1)" + ] + }, + { + "cell_type": "markdown", + "id": "manual-holder", + "metadata": {}, + "source": [ + "## Running a segment of the simulation\n", + "As a demonstration we choose to run from the guide_end to (but not including) the detector to show that one can use both *run_from* and *run_to* at the same time, and thus segment an instrument into an arbitrary number of segments." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "unique-simpson", + "metadata": {}, + "outputs": [], + "source": [ + "instr.run_to(banana, run_name=\"Cu sample\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fitting-decimal", + "metadata": {}, + "outputs": [], + "source": [ + "instr.show_components()\n", + "instr.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "id": "creative-dining", + "metadata": {}, + "source": [ + "### Executing the simulation\n", + "Now that we have one run for a 10 meV beam at the sample position, we can quickly simulate a range of different samples using the same beam. We use the following powder descriptions included in McStas to get 4 different powder patterns.\n", + "\n", + "- Cu.laz\n", + "- Al.laz\n", + "- Au.laz\n", + "- Na2Ca3Al2F14.laz\n", + "\n", + "Since the underlying instrument doesn't change, we can save some time by disabling *force_compile* when running these simulations." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "intensive-webcam", + "metadata": {}, + "outputs": [], + "source": [ + "instr.backengine()\n", + "\n", + "instr.settings(force_compile=False)\n", + "\n", + "instr.set_parameters(data='\"Al.laz\"')\n", + "instr.run_to(banana, run_name=\"Al sample\")\n", + "instr.backengine()\n", + "\n", + "instr.set_parameters(data='\"Au.laz\"')\n", + "instr.run_to(banana, run_name=\"Au sample\")\n", + "instr.backengine()\n", + "\n", + "instr.set_parameters(data='\"Na2Ca3Al2F14.laz\"')\n", + "instr.run_to(banana, run_name=\"Calibration\")\n", + "instr.backengine()\n", + "\n", + "instr.settings(force_compile=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "serial-pakistan", + "metadata": {}, + "outputs": [], + "source": [ + "instr.show_dumps()" + ] + }, + { + "cell_type": "markdown", + "id": "pressed-fluid", + "metadata": {}, + "source": [ + "## Running to the end of the instrument\n", + "We now wish to just run the detector for the four different beam dumps made just before the detector. To do so we set *run_to* to None, letting the instrument know we intend to run to the end of the instrument, and setting *run_from* to banana with specifications on the dump corresponding to the desired sample. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "developing-fossil", + "metadata": {}, + "outputs": [], + "source": [ + "instr.run_to(None)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cognitive-spirituality", + "metadata": {}, + "outputs": [], + "source": [ + "instr.run_from(banana, run_name=\"Cu sample\")\n", + "data1 = instr.backengine()\n", + "\n", + "instr.settings(force_compile=False) # Avoid recompiling\n", + "instr.run_from(banana, run_name=\"Al sample\")\n", + "data2 = instr.backengine()\n", + "\n", + "instr.run_from(banana, run_name=\"Au sample\")\n", + "data3 = instr.backengine()\n", + "\n", + "instr.run_from(banana, run_name=\"Calibration\")\n", + "data4 = instr.backengine()\n", + "instr.settings(force_compile=True)" + ] + }, + { + "cell_type": "markdown", + "id": "amateur-carroll", + "metadata": {}, + "source": [ + "### Plotting the resulting data\n", + "We can now plot the data and see we indeed get four different sets of powder data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "improved-brisbane", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data1 + data2 + data3 + data4)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fundamental-albany", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/tutorial/McStasScript_tutorial_6_Diagnostics.ipynb b/docs/source/tutorial/McStasScript_tutorial_6_Diagnostics.ipynb new file mode 100644 index 00000000..69684493 --- /dev/null +++ b/docs/source/tutorial/McStasScript_tutorial_6_Diagnostics.ipynb @@ -0,0 +1,850 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "scientific-equity", + "metadata": {}, + "source": [ + "# Diagnostics\n", + "When working with a McStas instrument it is possible to record what is happening not only at the detector, but along the entire instrument. It is tempting to add many monitors along the instrument to investigate all this for every run of the instrument, but this can result in confusing instrument output with many monitors where only few are important.\n", + "\n", + "McStasScript has a diagnostics tool that allows inserting monitors temporarily to understand the instrument, and in this way they do not pollute the results of every run. For our examples we will need an example instrument, so here we have a source with a guide that contains a velocity selector followed by a monochromator and sample." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "previous-layer", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "\n", + "instr = ms.McStas_instr(\"demo_instr\")\n", + "\n", + "# McStas 2.X\n", + "instr.add_declare_var(\"double\", \"x_at_source\")\n", + "instr.add_declare_var(\"double\", \"x_after_guide\")\n", + "# McStas 3.X\n", + "#instr.add_user_var(\"double\", \"x_at_source\")\n", + "#instr.add_user_var(\"double\", \"x_after_guide\")\n", + "\n", + "wavelength = instr.add_parameter(\"wavelength\", value=5.0, comment=\"Wavelength for mono in [AA]\")\n", + "w_min = instr.add_parameter(\"w_min\", value=3, comment=\"Minimum wavelength from source[AA]\")\n", + "w_max = instr.add_parameter(\"w_max\", value=6, comment=\"Maximum wavelength from source[AA]\")\n", + "\n", + "src = instr.add_component(\"Source\", \"Source_simple\")\n", + "src.set_parameters(xwidth=0.1, yheight=0.1, focus_xw=0.04, focus_yh=0.06, dist=2, flux=1E7)\n", + "src.lambda0 = \"(w_max+w_min)/2\"\n", + "src.dlambda = \"(w_max-w_min)/2\"\n", + "src.append_EXTEND(\"x_at_source=x;\")\n", + "src.append_EXTEND(\"x_after_guide=0;\")\n", + "\n", + "guide1 = instr.add_component(\"guide1\", \"Guide_gravity\")\n", + "guide1.set_parameters(w1=src.focus_xw, h1=src.focus_yh,\n", + " m=2, G=-9.82, l=10)\n", + "guide1.set_AT(src.dist, RELATIVE=src)\n", + "\n", + "v_sel = instr.add_component(\"V_sel\", \"V_selector\")\n", + "v_sel.set_parameters(xwidth=guide1.w1, yheight=guide1.h1, zdepth=0.4,\n", + " radius=0.15, length=0.3, nu=370)\n", + "v_sel.set_AT(guide1.l + 0.5*v_sel.zdepth + 1E-6, RELATIVE=guide1)\n", + "\n", + "guide2 = instr.add_component(\"guide2\", \"Guide_gravity\")\n", + "guide2.set_parameters(w1=src.focus_xw, h1=src.focus_yh,\n", + " m=2, G=-9.82, l=15)\n", + "guide2.set_AT(0.5*v_sel.zdepth + 0.01, RELATIVE=v_sel)\n", + "guide2.set_ROTATED([0, 0.7, 0], RELATIVE=v_sel)\n", + "\n", + "guide3 = instr.add_component(\"guide3\", \"Guide_gravity\")\n", + "guide3.set_parameters(w1=guide2.w1, h1=guide2.h1,\n", + " w2=guide2.w1*0.8, h2=guide2.h1*0.8,\n", + " m=2, G=-9.82, l=10)\n", + "guide3.set_AT(guide2.l + 0.01, RELATIVE=guide2)\n", + "guide3.set_ROTATED([0, 0.7, 0], RELATIVE=guide2)\n", + "guide3.append_EXTEND(\"x_after_guide = x;\")\n", + "\n", + "mono_Q = instr.add_declare_var(\"double\", \"mono_Q\", value=1.714) # Q for Ge 311\n", + "instr.add_declare_var(\"double\", \"wavevector\")\n", + "instr.append_initialize(\"wavevector = 2.0*PI/wavelength;\")\n", + "\n", + "mono_rotation = instr.add_declare_var(\"double\", \"mono_rotation\")\n", + "instr.append_initialize(\"mono_rotation = asin(mono_Q/(2.0*wavevector))*RAD2DEG;\")\n", + "instr.append_initialize('printf(\"monochromator rotation = %g deg\\\\n\", mono_rotation);')\n", + "\n", + "mono = instr.add_component(\"mono\", \"Monochromator_flat\")\n", + "mono.zwidth = 0.05\n", + "mono.yheight = 0.08\n", + "mono.Q = mono_Q\n", + "mono.set_AT(guide3.l + 0.3, RELATIVE=guide3)\n", + "mono.set_ROTATED([0, mono_rotation, 0], RELATIVE=guide3)\n", + "\n", + "beam_direction = instr.add_component(\"beam_dir\", \"Arm\", AT_RELATIVE=mono)\n", + "beam_direction.set_ROTATED([0, mono_rotation, 0], RELATIVE=mono)\n", + "\n", + "slit = instr.add_component(\"slit\", \"Slit\")\n", + "slit.radius = 0.03\n", + "slit.set_AT(0.6, RELATIVE=beam_direction)\n", + "\n", + "sample = instr.add_component(\"sample\", \"PowderN\")\n", + "sample.set_AT(0.1, RELATIVE=slit)\n", + "sample.radius = 0.015\n", + "sample.yheight = 0.05\n", + "sample.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "banana = instr.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample)\n", + "banana.xwidth = 1.2\n", + "banana.yheight = 0.3\n", + "banana.restore_neutron = 1\n", + "banana.filename = '\"banana.dat\"'\n", + "banana.options = '\"theta limits=[20 175] bins=150, banana\"'\n", + "\n", + "Lam = instr.add_component(\"Lam\", \"L_monitor\")\n", + "Lam.nL = 160\n", + "Lam.filename = '\"Lambda.dat\"'\n", + "Lam.xwidth = 0.05\n", + "Lam.yheight = 0.05\n", + "Lam.Lmin = \"wavelength*0.3\"\n", + "Lam.Lmax = \"wavelength*1.7\"\n", + "Lam.restore_neutron = 1\n", + "Lam.set_AT([0, 0, 0.1], RELATIVE=sample)" + ] + }, + { + "cell_type": "markdown", + "id": "acting-expansion", + "metadata": {}, + "source": [ + "## Diagram in analysis mode\n", + "One important aspect of a McStas simulation is how the intensity and number of rays evolves over the course of the instrument. To investigate this, analysis can be enabled in the diagram." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "catholic-baseball", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "instr.show_diagram(analysis=True)" + ] + }, + { + "cell_type": "markdown", + "id": "patent-mountain", + "metadata": {}, + "source": [ + "Such a graph shows the intensity measured just before each component in the instrument. There are some circumstances that can be difficult to interpret correctly, for example here we see the intensity and number of rays rise after the banana detector, how can this be? This is because the banana detector is placed at the sample position, inside the sample, and some rays are already past that point and are thus not recorded.\n", + "\n", + "\n", + "## Analyzing a variable\n", + "Furthermore one can investigate any variable from the table below with the variable keyword.\n", + "\n", + "| Axis string | Full name | Unit | Description |\n", + "| --- | --- | --- | --- |\n", + "| t | time | s | Particle time |\n", + "| x | x position | m | Coordinate x of particle |\n", + "| y | y position | m | Coordinate y of particle |\n", + "| z | z position | m | Coordinate z of particle |\n", + "| vx | x velocity | m/s | Velocity projected onto x |\n", + "| vy | y velocity | m/s | Velocity projected onto y |\n", + "| vz | z velocity | m/s | Velocity projected onto z |\n", + "| p | weight | intensity | Particle weight McStas n/s |\n", + "| l | lambda | AA | Particle wavelength |\n", + "| e | energy | meV | Particle energy |\n", + "| speed | speed | m/s | Speed (length of velocity vector) |\n", + "| dx | x divergence | deg | Divergence from z axis along x axis |\n", + "| dy | y divergence | deg | Divergence from z axis along y axis |" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "contained-horror", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWsAAAB9CAYAAABkvkJKAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAAA5IUlEQVR4nO2dZ1hURxeA3116BwHFglQ7FuyKBcXeuybGHnssiYkl+WyxxhZjTWKMPXbRSNSgYhexgw27IAJSVHrf+/1YWUWwUBfIvM+zj+zM3Jkzd92zc8+cOUcmSRICgUAgKNzI1S2AQCAQCD6OproFEOQbRoCuuoXII2KBBHULIRCoE6Gsix8jgR+A0kCqmmXJKzSB28DXgJeaZREI1IJM2KyLFSOBZYC+ugXJJ+KBFsBFdQsiEBQ0QlkXLwKA8uoWIh+RgB3A5+oWRCAoaISyLj4YAi8p/qatIMBa3UIIBAWN8AYpPuhRDGzUs2bNQiaT0a1bt/c1KS6bpgJBthDKuphja2uLTCZj//796hZFIBDkAqGsBQKBoAgglPV/mL///pv69etjbGyMjY0NkyZNIj4+XlW/Zs0arK2tsbCwYNGiRZlW6ampqSxevJgqVapgYGBA1apVWbduner6dJNGr169GDhwIIaGhjg6OnLs2DFVm9u3b9OwYUP09fXp3LkzkZGRBTZ/gaBIIUmSeBWPl6UkSQnSO9jY2EiA5O7unqH8yJEjEiBZWFhIX3zxhVS7dm0JkAYPHixJkiSdOHFCAiSZTCZ99tlnkpOTkySXyzP0NXXqVAmQKlWqJA0aNEiytraWAGnjxo2SJEnSzJkzJZQeHJKbm5vUoEEDCZCsra0lSZKklJQUycHBQQKkunXrSr1795Y0NDQkQOrateu7U0knvBDca/ESrwJ/iZX1f5QVK1YA4OzsjLm5OQ0aNABg06ZNxMfHs3XrVgAGDRrEX3/9hZeXF3L5m/8ukiSxatUqABo3boypqSm1atUCYO3atRnGqlatGkePHmX79u0APH36lIiICC5cuMDDhw8xMjLi1KlT7Nq1i65du+brvAWCokpxd/MSvIcnT54AcPToUY4ePaoqlySJR48e8ezZMwCqVKkCgKWlJRYWFoSGhgIQERFBbGwsABs2bMjQ94MHDzK8r1WrFjKZDFNTU1VZbGysaoxy5cqhr688x1OxYsU8mqFAULwQK+v/KLa2toByhf32o9bDhw9xcnKibNmyANy/fx9QKueIiAjV9RYWFhgYGADg5+enul6hUHD58uUMY2lqKtcEMpksQ3n6GEFBQSpb+b179/J4pgJB8UCsrP8jTJkyhYULF6ret2/fnkOHDjF58mTOnz+Pnp4efn5+REZG8vjxYwYMGMD69evZsGED8fHx3LhxA4VCobpeJpMxduxYFi1aROvWrencuTOxsbFcuHCB5s2bs3Hjxo/K1LBhQ+zt7Xn06BGurq7Y2tri7u6eH9MXCIo82VLWFhYWUvqKTFC4MDU1xcPDA13drM+MvLtinTp1Ku7u7ixcuJBDhw4hk8moWLEiEyZMAKB58+asXr2aBQsWcOTIESZPnswvv/xCSEgIOjo6AMydOxdzc3M2btzI1q1bMTY2xtnZmb59+36SzJqamhw4cIBhw4bh5+eHmZkZI0eO5Ndff33vNS9fvrRo3bq1OHYrKLZcuXIlQpIky3fLs3XcvG7dutK7j7iC4ktUVBQmJiaA0lRhY2ODQqHgwYMHODg4qFk6gaB4IpPJrkiSVPfd8lybQSRJ4vnz54SHh+e2q/eira2NjY3Ne1eN6iAlJYWAgAASEgpHmGUrKyssLCwy2YVzg7OzMx06dMDc3JwdO3agUCjo0KGDUNQCtRMXF8fYsWO5dOmSatO7KKGvr4+DgwPTp0/Hzc3tk67JlbJ+8eIFbdu25fHjx1hZWeWponibxMREnj17xs8//8zIkSPzZYzscPToUbr07IqGiSYaBuo3+0uSRPLzRGo51+K4xzHVxl9uqV27Njt27CA2Npby5cvz7bff8r///S9P+hYIckpcXBwdO3bk1KlT6hYlx7x48YKgoCB8fHzw8PD4JIWdY00TFxdHq1ataNWqFRcvXsw3RZ3OgwcPaNmyJbq6ugwaNChfx/oQZ86codtn3UlcrQd1tdUmRyYUOvjO8Me1fQu8vc6rPDByw549e/JAsPznyZMn2NnZAcqNT0tLS/r27cvy5cuRy+XMmjWL2bNnZ7hmwoQJLF++HFdXV06dOkV4eDgWFhaZ+u7Vqxd79+6lbNmyPH36lICAANVY7zJo0CBcXV0ZMmQIixcvxsDAgDFjxjB//nymTZsGQEJCApaWlpiZmREYGJjBdz2dly9fZnBzfLu8VKlSpKSkMG3aNObPn5/l3NI5ceIErq6uH7p1RZLhw4erFLWzszMNGzZEQ0NDzVJljxcvXrBz504SExPp1KkT/v7+2NjYfPCaHH+jfXx80NLS4qeffsp3RQ3g6OjI+vXrmTVrllqV9doNvxI/Ql64FDWAXEbijzrc6eDP3bt3qVatmrolKnCcnZ355ptvWLNmDStXrqRp06b07t1bVT9x4kTV4Z9KlSp9tL+4uDgOHTqEXC7n2bNnnD17ltq1a6sO9yxatIhr166xYsUKLC0tsbOz486dO6rre/bsybhx49izZ49KWR85coS4uDhGjhyp+t6UK1eOxYsXq65735ORu7s7KSkpyOVydu3axfz58+nVqxeVK1cmJiaGESNGUKVKFWbMmAFA1apVs3P7igwXLlwAoH79+pw6dapQmUezg5ubG8OGDSMxMRE/P7/8U9bPnj3D0dGxQBR1Oo6OjgQFBRXYeFnxJOgJ1C+kv+JyGZrWOgQFBf0nlXWZMmX44osvkMlkeHt78+jRowz1NWrUoFWrVgAYGRl9tL+///6bhIQEvvnmG5YtW8auXbto2rQp/fr1A2Dr1q1cu3aNzp07q/zW31bWJUuWxNXVlePHj/P48WPs7OzYu3cvAH369FG1MzQ0VMmloaGBlpZWlvLs3LkTHR0dvvzyS1avXs2VK1eoU6cOTk5OREREMGLECEqWLKmSr7gSHBwMQLNmzYqsogZo06aN6u/0OX2IHB+KkSQpy0ePVatWIZPJkMlk3L17N6fdZ4mGhgbZ8V7JDxSSBPJc/kAlSLAqBtzfBE3CPR6qhsKfcbnrWwO13yN1kZKSwvPnzzl58iQA9erVy1A/dOhQLC0tsbS0VK2OP8SuXbvQ0NBg6tSpODk5sWfPngy+5p9CulLes2cPycnJeHh4YGtrq1rhA/j7+6vkcnZ2zrKfyMhIvLy8aNOmDUOGDAGUyvu/zNv658mTJyq9k/4yNTWlf//+yGQyDhw4AChdWHV1dalevTp//PFHpmvSXxs3bmTw4MGZypcvXw68CT08a9asDON36tQJeBPETC6XY2RkRPXq1Zk/fz5paWkqmd82VX7KdzbPTzDu2rVLZYfbtWtXlm1SU4t8jPzckSjBmjjY/5YnST1tWGICLXTUJ1cRx9PTEysrK/744w8mTpxIy5YtM9TPmDFDdby+bdu2H+wrJiaGI0eO4OzsTFxcHM2bNyc0NJTTp09nS6aePXuiqanJnj17OHr0KFFRURlMM6D84qfLtW3btiz72bt3L6mpqbi4uGBubo6VlRW7d+/Oliz/BZydndm+fTvbt2/nzz//ZNmyZZiamjJ+/Hji4uIYPXo0ycnJ/Prrr7i5uana6ujoYGFhoXrfvHlzVZ/z5s1TlXfo0CHDeCtXrlSFXciKCRMmMG/ePGQyGT/88APDhw/P8dzyVFkHBwdz7tw5+vTpQ5kyZVTKeuPGjchkMvr27Uu1atXo06ePqmzw4MFUrVqVkiVLcvjwYfr374+BgQHdunUrOkp9dzy0C4c6z6FvJFxJfrNS/l8U9IyAxs/frJp7vz62fSlF2WZVDFxKhm+j4ESSss4vGQZEQt3n0CQMjiYqV+QTX0L958qxukfA/RT1zLkQ0qBBA7Zv346trS2rV6/G19c3Q3316tVVm+KlS5f+YF8HDhwgMTGRy5cvY2dnx+rVq4Hsr2bNzc1p2bIlFy9e5OeffwbIdGjIwMBAJZeLi0uW/aR/l6ZOnYqdnR2hoaE8efIEHx+fbMlT3LG0tFTdSzc3N0qVKsX8+fMJDAzE1dUVLy8vhg4diouLC3Z2dvTr149+/fqhqamJgYGB6v3bm8gNGjRQ9fl2uZaWFvHx8R88xOXi4sL48eM5e/as6gBZQEBAjuaWp8p69+7dKBQKevfuTY8ePbh58ya3b99W1f/777+MHDmSgQMHqsq8vLwYPXo0ERERdOrUCVNTU5o0acKBAwfw8PDIS/HyhwtJMDMaSshhshEEp8HYl/Dq9WPN2SToow8WGrAkBvxTYOJre6m9hnI13fYdu9srBYx6Cf6pMMYQvjQAGXAuCTyToL0ufG8E9bWLQSKvvMPCwoJ+/frxyy+/kJKSotpoS+fcuXPs2LGDHTt2cPbs2Qx1c+bMYerUqUydOpVz586plPLWrVtxd3fH3d0dW1tb9u7dm+FR9lNIV87Hjx/H3t6eOnXqZKiPiopSybVjxw5evXqVoT4sLIyTJ0/SoEEDlSzLli0D3v/0+l/F09NTZVJKj+A4cuRI6tevz+XLlzE3N2fRokXZ6rNVq1aqPs+dO6cq19bWZujQoSxbtoykpKQP9mFsbIyLiwuSJHHjxo3sT4w8jg2yc+dOtLW1qVy5MvHx8axatYpdu3apNl+GDh3K+PHjAVSxIwYOHMi4ceNYuHAhoaGh/Pzzz2zZsgVPT08eP36cl+LlD6dff0hfGUJjHQhJg9/jIN2a0UMP+uor7/T0aOUKupOess5cDh1e/33zrRWyb7JS2Q/Rh6FveQb4pyh/Xm+kgL4MGmhDZfX7eRc2unTpQp06dTh48CB+fn6q8nR7I0DXrl1p0qSJ6n16yFgAPT09PD09cXJyon///qpyT09P1q5dy4kTJ1Qbgp9C9+7dGTVqFCkpKRk2FtMJCgris88+U72/du2aKtwsoPqB6N27tyo3ZWpqKrNmzWLXrl0sWbLkk2Up7jRo0IC5c+cCYGZmBkBycjIvXrwAID4+nqioKEqUKPHJfa5evVoVDbJmzZoZ6iZPnszvv/+eKfJkVqTbpXPqlJFn3/SnT59y4cIFJEnK4Imwc+dOpkyZAih3698l3Z9US0sLPT09tLW1VRsH2V3BFGre3j/I6f5kZS1wN1f+QFxKgU2v4Edj6KWfBwIWXWxtbTNt0LwdFqFGjRqqjaB3Sd+MfJeZM2dmKluzZg1r1qxRvc/qyW/w4MEMHjw4Q5mZmRnJyclZjvMpG0ujR49m9OjRGco0NTWJiopSvbewsPjPbiy/jYWFRaYf0nnz5vHgwQN69+7N7t27GTt2LIcOHfrkPuvXr0/duplOfwNgY2PD559/nimG+7vExMTg7e0NKM1xOSHPlPWuXbuQJIlp06ZRv359ANavX4+HhwcxMTF5NUzho5kObIyH1bHwNA32JYCxDNKfivYlgJUGbI1XKul62mAgU66QA9PgYALUfsdnu5Y2mMpgVwKYayg/pTIaYCoHr0Rw1IQqmkqlHZY97wSBID9JSYGLF6FePdBWw1GE4OBgduzYoXpfrVo1Fi1aRM2aNfnrr7/Q0dFh69at7N69O9NG7/vw9PRUxWivVKlSJo+dqVOnsmXLliyvPXfuHCEhIaxfv56IiAiGDBlC+fLlczS3PFXWMpmMr7/+GktLZcCodFeln376Ka+GKXw01IHZxrA+DhbFgIMGTDGGwNfG5GY6sDMeItJgkpFydQxK88a2eJgSBQtNMvZpIodfzZT9rY4FPRnMNAZdGXgnw84EpeJvog199Qp0ugLBh9iwAcaOBU1NaNQIeveG9u2hoIJ1Xrt2LYNJydXVlZSUFH799Vc0NTVZtmwZhw4dYuLEibRt2xZjY+OP9vnDDz+o/p4wYUImZV2lShW6d+/Ovn37Ml37yy+/YGBggJ2dHQsWLOC7777L8dxyHHVv8+bNHDt2jM2bN+d48OwSGBhIkyZNCAwMLLAx36Vh68b49PaHph9xsXOPhx+i4VujjHbnfMZkVCo7pm2hXbt2BTamQJDO2rUwaRKkxzfT1weFAszNoUsX6NoVmjeH3Jxl0dXVJSkpKVOM9qJGaGioyitp7dq1jBo1CsiHqHs6OjoZMmEXBPHx8apYyupCT1dX6SddWEmU1H6P8pOAAKhUCT6y+S5QI28fwExXEc+ewW+/wbZtys+ubl2YOhVenyHJFtra2iQlJREXl8sDZGrmbf9s7U+wGeVYWVesWBEfHx8iIiKyDICTHxw6dEjtOfpqVKrBuTNXSGklwYd2dbvrK18FSXAaiXfjqFChQsGOW4AkJChXap/w9CpQE+/ToQoFJCcrvzb+/vBONIBPxs7ODj8/P7Zv386wYcMyeM4UFVJSUpg+fbrqvb29/UevybGyrlWrFgMHDsTNzY1FixZRunTpfIsTkpCQgJeXF6tXr+b48eP5MsanMvP7GRxpeYTH80JJ6aih3CxUNwogNA39hanMmvEj5cqVU7dE+UblynDnzpvHbEHhYudOWLr0zecjk4GRESQmgrMz9OoFHTsqP8ecqosRI0bw1VdfERkZibOzMyYmJkUu6l5MTAwpKUp3XWdn5/d6m7xNjpW1TCZj7ty5WFhYsGjRIsLCwnLa1UfR1tbGwcGB48ePq31lXaJECby9zjPmm7FcW3aNxIREtcqTjlVpK4ZNH8qIL0eoW5R8R+Q+KLycOQOpqaCnp3z66dwZunUDV1fIozDrjB07luTkZL755huADC6MRQ1nZ2eOHTuGoaHhR9uKtF4CgSDPiIyEPXvAzQ0cHfN3LE9PTy5fvkxISEj+DpQP6Ovr4+joSM+ePTMd0HnfBqNQ1gKBQFCIyJccjJIkMWPGbNz3exAZmX85GPMCLS2lKWXFL4tzfIIondDQUL4aNZibN26QkFg03RJ0dbSpXLkKv6xZj8hYLxAUfnKsrCVJYsyYcRz2vIRL2+UYGFmR83PU+U9aaiKBD7xo0bINJ7w8c6ywQ0NDadG0Ad2rBjPry1SMiuiZlLgkcL/ynBbNGnDyzMWPZqkQCATqJcdR965cucKeff/QZcAhypRviImZLSZmNoX2VcKyErUajca58feMm5DzU0Q/zZ+Dm90z5vdOxckabCyK5qtqWfihi4L+tSOYPX1Kju9HYeDtwPNyuZxSpUoxfvx4VaKA9EDwb78mTpwIKE+4yWQyIiIisuy7V69eyGQyypUrhyRJWQa5T38NHjxYFfp3yZIlrF27FplMxoIFC1T9JSQkYGhoiLW1NZIkZdnPu1H33pZTJpNhZGRE8+bN8ff3V9VHRkYyZMgQLC0t0dHRoVatWqp41+kyvS/Ifm7m+fYrPchUetB+DQ0NTExMqFevHr/99lsuP2VBjlfWDx48oIx1XXR0TT7euBBR3rElnrt/yfH1D+/fZGjV4hNgyq2qgpledz7esAhQ3HMwAvz+++/cu3ePJUuWMGnSJP755x8AevTowenTpxk6dCi1a9dm4cKF9OnTh+PHj9O8eXOVzIMHD8bIyIiVK1cCyih1uZln//79VdlR3nUZnTNnDtra2qxatYpRo0bx/PnzTGFrBZ9OjpV1cnIyGhr5d1Iu4vlt7t7Yg7V9c8rbN39vu8O7h3Lr6ha+GOuNnoEF6xZVwL5SB3oMPpBle00tPVJSso6A9ikkJyWhWwhy5brOg1P+EL4GLD6eTvC96GlDcnLRtLu/S3HPwQjKcKsWFhYsX75cNb+TJ09y+vRpGjduzPr16wFlvtJ27drx448/cvLkSVXQ/C+//FIVZD+d7du353ieFStWVMmur5/xEFibNm2oW7cuvXr1olKlSixcuJApU6YU6xO2+Umep/XKKyLD7uB9fA5PH516bxtFWiq1GoykU7+tmJoL59v/OsU5B2M6L168wNPTk9TUVFV0y/Rg9o0aNVK1a9y4MQA3b97M13nOnDlTJfv7gvrb2tpSuXJlEhISuH///if1K8hMnkeuv3V1KxdPLSbqxSMMjMvQe9gR/H134HvxDxLjX2BVrg5uXX7BolQ1zh37Ee/jc6jVcDQB94+RmPiSVl1XYlWuLgf/Uv6qex+fg/fxOfQZfoxbVzZx6+oWajYYwcM7HtRr+g1hIb4ZVtYAyUnRuG/uTtDjMzhU7kibnr+jqZk/v+ZhUfDZGvB5qMyjW6UMLPkcRv4JTyJAWxMaO8K6YVC2BMzaB7PdYYwbeFxX9rFtNMw5AOfuQf/G8NtQZblsAFS0gqaVYM8lZT/bxoBZFk/JC/6G309ARCw0rgBrB4N9Sdh/Gb7bAYGRYG4InzWCpZ/ny61QO+k5GIH35mBs2rQpwEezv2eVg3H16tWcPn0aV1fXT5apZ8+ejB07lj179lC1alWioqIYMSLjwSVbW1vWrVsHKBMffIh08429vb0qTVhuyO08R4wYoTI1fejIdG4D7wvyeGX99NFpDu8egkKRSsvOP1O5Rh8C7h/lrOcMLK2q07TNj4QGXWb/5p6kpb3JjBL40ItajUaRlBjF6SM/oGdgSR0XZUaZCk496NRvK+Ylq6jaBz05R+NWMyhTvmGWcjwL9KasbRPKO7Tg9vW/8PP5PS+nmYFt58HrNkxoq1SCtWxAkmBQU1gxAL5qBf/egFnuGa87ew++dFUq0ebzoKEDVCqtVLjX30rRdi8USplAn/pw2A/m7M8sw6Yz8P1uaOAAUzuBXyD0WaWsm7kPEpJhzSD4tgMYFOMn0OKcgzGdHTt20K9fPx49eqQKPZzu2XThwgVVu/RA905OTh/sL7fzrFChgkr29ynrgIAA7t69i56eHo75fVKmGJOnK+uH/srNDteOi3GorMwCfGCb8j9mi46LMbOoQMjTi9zx3cHLiHuq6+o0mUDN+sPx9fmdlxH30dY2oIxNY66cW4FFqWpUrpnxP3fTNnNwrNoZgOs+mXeZy5RvSP1mk3gV+ZD7t/bz9PFparuMy8upqqigXMhxyh/SKkK/hsqV71/nwe/pm3Y3nma8blwbGNQEZuyF0qYwuycoJLj6BB6HK5U+QLkSMK83JKfC+lNwMou9QI9ryn93+ihfAKFR8CJWKd99Xzh+G2rbwIgWeTn7wkV6DkZ9fX26du3KjBkzOHDgzd7FuXPnVEmYy5UrlyGt15w5c1Sr2s6dO2fIwZi+4ff111+zd+9eVq1ala1YFH379sXT0/OjORjTadeunSqD0ru4ubnRtWtXTp8+zYoVK5g4cSKurq40a9aM06dPM3z4cJydnVWK/GMbermd5/Xr11Wym5mZZcga7+npyenTp1m1ahXJycnMnj1b2KtzQQEm8Hv/44+unvK4pUyuiSQpbWUfelwyNP7wqiidgkhz1MkZLsyEozfhyA34yUNpboiMhdk9oKEjdFoKie8kITfVBy3NN38DaLx+zknLwlz4oamkV20bDSVfR6NTSKCvrSzbdxkuP4bFh2D5vxC04r1dFQuKWw7Gd9HV1WXq1KmMHz+eJUuWsHTpUvbt28e3336Lu7s7mzdvpnLlyixZsiSTKehtoqKicj3Pbdu2sW3bNkCZn/BtZT19+nQMDQ2pWLEi06ZNY/jw4R/sS/Bh8lRZO1TpxOUzyzj5z3fERQcT/SoQuwqtuX9zHycPfYeNoxsP7nhgWsIBM4sPB2TS1VMmu3z25Cz+vjtxqNrlk+UIDrzAxdNLCQlUPhZaf8CbJLfsuQi+geBYCqqVVdqdI1+HqY1NBPfLkJILT7+gF/DDbgiPVirgFlUzt+nsDHsvwaazypX9ozDlCvzMdPhmm9KvumZ58LyhNKukpoFm0QpS9kGKew7GrOQcN24c48a9eVo0Nzf/pKStb8dQNjExyTIrd07nmc7GjRtV/tuCvCNPbdbWdk1p33sDMrkGxw9O5I7vTso7uuHSejZhIX6c+fd/WJWrQ7eBe9HQeL97EkBZGxfKO7Qk6MlZPHZ8QWJ85CfLUdbGheAAbwIeeFGl1mfUqJ9/v+j62srNv1EbYJcP9G0A1+dC5TKw4YxylW2Si7DWlUpDWDTsugjtasD/umZuM6gpLOwL90Nh9EbY7g3NKivrklNhwUH48g+ISYRVA4uXohYUMvz8lDFQf/1VmSlCkGfkKq3X8tWeuHXfmE+i5Q/RrwI5sMmV0JCcpQZr17IhE+v60K5G3sqVFbIBytX6zXzMXHThAUz8uxIXrvp/vLFA8DHWroXx45XZchUKsLBQ5vLq2hWaNs1dPq//CHkeyEkul6OQit5JPoUiFbk85w8UcrkGqUVv2u8lNU05pyJDWhps3Pj+dCQC9XL2rDKvV3o+r6AgpQLfskWZz6tePejTR5lFV3iGZIscK+ty5crxMvwekkKBLBfKr6B5EXaXsmWtc3x9ufL2+Aefp9OHzy7kCVLW2e3zFP8QsC5fhII4Xb8OI4p/goUizbsHahQKiI5W/n32LJw/r1x9jxkDr10FBR8nx8q6YcOGlLTU5dSh8TTvsKJIKOzw0JucODiStWuX57iPL0eNo1N7d6pbx9G2AEwh+cnZuzBtrx679uU8sFWBY2enfJxO//ILChfh4RAWpky2+DZv5/eqVUuZ36tHD7WIWFTJVfKB6OhoOnTsxqWL3hiZWCIrxCFSU1ISSU6K47fff2XAF1/kqq9z587RvWsHUlOSMNIrQO/HPCQuMY00Sc7O3e60adNG3eIIigtr18LXXytNHrq6b5T02/m9PiGF1X+ZfEk+YGxszNkzXsTFxb03xGRhQVtbm1KlSuXKXp2Oi4sLz8NfER4eTkIRzdyqq6tLyZIlxfFfQd5SpozyUICLC/TuDR06KG3T4v9ZrsmTZaGBgcEHwzoWR2QyGSVLllS3GAJB4aJrV+Xmr2bRfOIszOT6jnp7e/Pvv0cIeR5Mfp8XlAFWJUvTpk3bj8ZQyE/S0tLYunUrN/x8iYuNUZsc2cWshAWNXVxU8YcFgnxBKOp8IVd39e+//2bQsC+o2bU0BiW08v9RR5K4+yyFFd2W88evG+jZs2f+jpcFaWlpDBk0EN+Lp2nmVAZjnQ8f7ilMvAxNYsymP/D/+ju+/W6yusURCATZIMfK+vHjxwwY3J9+v9SibFXTPBTp41RuUYqhwwdTs2bNAo/itXTJEu5cPcfqca3RK0KKOp1OjSoyaukiatZypnXr1uoWRyAQfCI53m3z9fXFpoZFgStqgDKVTbBztuT69esFPrbPhXN0a+xQJBU1gFUJQ1rWKs/FixfVLYpAIMgGOVbW0dHR6BrlbGHuPus6M+t68Oz2q5wOj46RBtFq8LWNjnqFsX7RDvNorK9FdNQrdYshEAiygVp2Aur1ssGxkSUlyuUiwtF/gNQ0BZoahf+wkUAgyH/yVFm/DI5neRcvbJxLoKWnQeD1FzQbWgG5poxT6+5jVlaffkvqcmlPANc9ghixuQkmVhJ7frjKs5uvkMllWNga0n95PQzMdDi39SGX9wQQHZaIWTl9RmxuirZu4Ypj8SI6gR/+OM7NJ2HIZTJsrUxZ/lU79p25g/sZf6LjkqhiY8Hkz1xwKFOCWRtP4uF9j83TulPV1pKm4//E1FCXg/M/5+D5u8zedIrWdex5GPwSm1ImzB/uxm8Hr3Dk4gNexiRQ1caSdd91ITYhmaW7znP2RiAKhURLZzsm9W2MrrYmvx28zN5Td4hNSKakmQGjutSlXX0Rh0EgKMrky8r6qd9LWo+rQsTjWI6v9seungW1OpfDZ8cTLmx/nKGt3+FnPL4USdMhjpiW0SP4dhSKNInrHkF4Lr9DOSdTmgx25PmDaKS0/E8mkF0OX7zPpbvBDGlfizLmRtwOCMf9jD9rD1ymafXyNKhajtX7LzJpjSd7ZmcOPJ8V3reDGNWlLlYlDNl45Dobj1ynsZM1LZ1r8/DZCwCW7jzPIZ/7fN6qOnKZjC2efhjoaTO0vTPrPK5Su2JpOjeqSHBkDApF4btvAoEge+SLsi7nZErjL+wJ9n/Fq5AEmg5WKmKfHU94+SwePeM3m3Pm5ZWHaQKuRiIpSlC9bRmMLHS5e+Y5AF2n16Skg1F+iJknlC9pAsDVeyEoHCXa1nNk18lbAHzduxHlS5lw83EYRy4+IOD5q0/qs0vjSvRrqcyd9+eha8hksGC4Gwa62qo2Z24EkqaQ2OL5JhPKhdtBfNW9PubGejwNi8Lv4XOq2ZWkZW27PJqtQCBQF/mirHWNlMpYQ1Npb9Ux1EQmV/pgS++s8io1LcXwjS48vBDBA+8wzm56yMDVDfJDrHyhaQ0bNk7txoXbQXjfesqmf30xeZ2VNiu3c/nr+5CmUJCckkZScuZ4q5amGW3574u5Ym6sx49D3yRV1NbUQFNDzvbpvfC69pi7gREs2HaGK3eDmTPs/emdBAJB4Uftu1e3jgVz90wYJla6WNorV9Ax4UlUaloKgANzfLmyP5DDS2+RFJeqTlGz5NiVR5zxC8CqhCH2ZZSpyPq2UK6Kl+32ZofXTU77BlDO0hibUqaUMVfO8dCF+6x090HxkUBaTWuURyFJTFt3nAPn/Fm687yyvHp5IqMTOO0bQEhkLCeuPcHz8kPiEpNZsc8HmQyq2FiiraVBeFR8Pt4BgUBQEKj9XKiWrga3j4fwKiQeTW0NnFqXoWqr0mjrahD3MolLewI4tOgmZmX1cRtbWd3iZkJXW5PjVx8TEhmDtpYGrevaM6BNDeRyGfvP+nP5bjBVbSyZ/JkLmhpyujWpzGm/AA5ffEDHhhXQ0frwhungdrVISknjsM99LvsHU83WEoBJfRujoSHn2JVH/H3+LuVLmjCgTU005HKCI2I45fuEpOQ0bEubMrprpgBeAoGgiJGrtF6rds+h0yz1KNB/5vgzsss0hg4dWqDjtm7ZjC5OhjR2ynkCA3Wz8ch19B2b8dOixeoWRSAQvMP7QqTmygzy3/QxkCEV8Zln5wdaIBAUDnKsrM3NzYl/mZKXsmSL+BepWFhYFPi45hYWvIxJLPBx85IXsSlYliylbjEEAkE2yLGyrlOnDs/vRXPnRGheyvNJ+J8MJfjOK+rWLXhbbNt2Hdl07DYRRXTT7vaTcI5eeUzz5s3VLYpAIMgGOd5gtLKy4ui/x2nd1g3/Iy/QK6FBvmf1kiDhZRqB11/w7+GjlClTJp8HzMyQoUMJDn7GkCXLqVOxDPo6hetE5fuQJIhJSOGSfxDrN2ymXr166hZJIBBkg1zlYAQICgrC29ubsLCwvJYtSywtLWnUqBHW1urd4Lt48SI3b94sUmm9TExMqFu3LpUrFz6vGoFAoOR9G4y5VtYCgUAgyDvyJWEuQHx8PHfu3CE8PDy3XRUKtLW1cXBwwMbG5oPtnj9/jr+/v1pX1lpaWjg4OGBra6s2GQQCQcGQK2UdGBiIa5MW6MsNsTSyeu+x6KJEUmoi/sE3+Wr8WGbPmZ1lm63btjFyzFjMHaqgqae+RMGKlGQiH95h1PAvWbRgvshULhAUY3KsrF+9eoVrkxYMrjWOLxtNyEuZ1E54zHP6bnDD2NiYSd9NylB38OBBxn7zLS5rDmNsX0VNEr4h6VUkmyd0xdjYmOnfT1O3OAKBIJ/IsevexYsXKW1gXewUNYClUSkWdFjLjm27MtVt27UHh8FTCoWiBtAxNafa5OVs3bFT3aIIBIJ8JMfKOjQ0lNJG5fJSlo/Sa10Lyn4v50VcBKHRwSw9Nosjt/fny1hlTK0JfR6SqfxZSCh6JfPGZfBwjxrsd8v9PdQrWZbw0IL3dxcIBAVHrmzWMlnBBu2b2HI6A2JHYqhjzJ1QP5Z5/Ujv2oNoV7VbtvtKTUtFU+P905d/YG4yed7Mu+Y3PyGl5P4UaF7JIxAICi95+i1/+vIJZb+X0+P35nyxsQMVZxmz+tRP/HpmKZVnm9J6pTNPXz7h2aunDN3Snao/lqD2grLM8JhIUmoSAA0W2eE405B5R6ZQbY45HVbXJyxGuWpc7jWHMTs/JzYpmg5r6gOw++omyn4vZ+eVjbxKeMnEPUOoPrck1eeWZPzuQbxKeAm8WZXPODgBp7mWHLvrwdJjs6g5zwr7GXq4LKmA+/W/cjTv8Ktn2dvYjGtLvwPg2tLv2NvYTFV+pE8dLs8dy4HW5TkzoQepicrTj77LpnBp7hgA0pKT8P3le/7pUoW/29hwfvLnxD8PAuDy3DHsbWyG36rpHOpajUPdqhFx/XwOPyWBQFAUyZcl2ZVAb5o6tsJM35wFnt9z4t4R+tQexO0QX9adW864XV9w1P8go5t9R/MKbVl/fgUrTsxTXZ+QEk9EbDgtK3XE99lltl1al2mMKW3mAtDQthlr+v5FI7vmzPCYyO6rm+hTZxB96wxm77UtzPCYmOG6myHX+aHdQiwMS7HM60cqlKzCgq5r6VGrPwpJkR+3g7igR+iYmWPuVJ+wSyd4duLvTG38Ny3lwc61lKrfgopfTCDk/L9cmjUiQ5tIPx/sug0hISyY2+t/yhdZBQJB4SRflLWzdQNGNvmGejYuSJLEV82nMrTxeAD8Q2/i8+QMta0bMs51Ggu7rUUuk3Pi3pE3QsnkLOi6hsENlavOoJdPMo3R3LENANYl7Ohasx/lS9jhdfcQVsZlmd5+Mf9rvwgr47KcuHs4w3VzO6/ks7rDqFm2LiWNrHgceZ8rgecpbVKODtV65MftQNfCiupjf8Smw2cAxIc+zdQm1PsoyOU4T/6ZygO/wbxaXSJ8vUmNj1W1qTpsKlWGfItcW4f4kMB8kVUgEBRO8kVZG+uaAqCpofX6vQka8owxND7kE6yrpYeuli6acqVNOS2LFW9OfYqtjJWbg1oaWhwdd53xrj8AMPXAaCbvH5mjPtNtxlKaMpNNSkxUhnptI1Nlu9c2ciktcyqvT0Hb2EzVj6TIWR8CgaBoUuA7U7paejS0bcbVpxdYdWoh3x8Yg0JS0LJS+2z1Y6KnVFw3g6+x33c7L+IicKvUkdDoZ8w7MoV5R6YQGv2MlpU6ZHl9bFIMc49MQS6TU6NsXXQ0dQmNDs7RnPStlHFKwq+eI9BzNyHnjnzkisyUbtwGFAquLZ7E3S3Libx1GYtajdHUN8yRTAKBoHihlrReK/psYfrB8aw+9RO6WnoMazSOca7fZ6sPmxL2dK/5OYdv7WPszv64jzjN7E4/A7D98p8A9HQeoCp7Fw25Jk9fPMbz9gESUxNwtKzC5NZzcjQffStrKvYfxyP3jTzcvQ7z6vV5fuF4tvqoNPAbUmKjCTruTvCpg5Ru3JZakxblSB6BQFD8yFVar4Orj/FLt035JZtaefYqkB6bm/L0Hdtw01ZtkToOx6phKzVJlpnEyOecH9qcF2HC11ogKOrkS1ovgUAgEBQMOVbWenp6xCXH5KUshYrYpBj0dPUylevr6WXw0CgMpMTHoqOnq24xBAJBPpJjZV2tWjUuPznP0yzc6ooD7n7bcHJyylReu4YTz4/vy7FHR37wzHM3TtUyyyoQCIoPuUo+sGrlKhbPWcqEpv+jpFHpYhGiMzElgXOPvTj//DgnznhRunTpDPXx8fG07dSZIAwo5dZDrd4aaUlJvLh2loTLx/A+fZKyZcuqTRaBQJA35Evyga/GfYWFpQX/HDjM8yfPc9NVoUFbR5sKdR04Oe0EVlZWmer19fX51+Mgc+cv4OrFA8TFqS9xroGONnUcHZgmFLVAUOwRab0EAoGgECG8QQQCgaAIkyszSEpKCqO/HM4//3gQ/vJlXsmkFjQ0NLAtU5Yff1pI3759P9j23r17fPH5F9y+c5vEpMQCkrB4o6mpiZ2NHStXr6RVq8Ljwy4QFBZyrKzT0tL4vFdv4v3v4dOtP1b6hkV6gzE5LY0rYSH0HTUaSZLo169flu0ePHhAC9cW9GjzGVOHz0FfV7+AJS2eJKck4+d/jT69+7J7zy7c3NzULZJAUKjIsc36/PnzDOvZm2u9BqGjqZZT6/nC+eCnDDh3lEdBQVnWjxk9hqiQeAb3ylnQJ8GHOX3Ri6M+Hlzw8Va3KAKBWshzm/WTJ0+oaVmqWClqgHqlyhAYEoJCkXVs60cPH1HJvmoBS/XfobJ9VQICAtQthkBQ6Mixsk5NTUX7nbCn72PjLV/ky+ew5ErerJZmeZ9CvnwOe+7f/mC74NgYZnmfYv8D/0/uW0tDA8UHnjZSU1PR1NT65P5yQmh4CG0GNGb60m+zdd29R3doM6Axi39TJmZY/Ntc2gxozL1Hd/JMtlv3brB53x88DLiXZ32+jaamFmmvQ80KBII3FGtvkOC4GH70Oc2Bh3fVLconk5eKqpNbd6aNmU3pUpl9sHM6zu37N9jq/icPA+5n+1qFQkF2zG4CgeANeW7DWHfjKouveBMcG0M1c0uWNmutqrsZEUbdv9YREB3FlHoufFunEWHxcXx+eB8+oc+Qy2RUMbPgYNd+WOjpM//SWdbduMaLxATqlirNyhbtqGZeMtOYHo/u8b/zJ3jw6iWOpmYsadaaVuXtqb99PQCb7vix6Y4ff7buQnfHSnx9ypN/Ht9HIUl0d6zM8uZt0dfK2Wr5z12/suPgZtYv2k5MbDQTfxzJsL6j6dtpAL1Gt8e6jA0/T/+Vm3d9+e2vlQQ8e0wJkxL07tifji27ERoewsBvelLV0QkdHV0eP33Iill/qPpPTU3lf0snceOuL7MnLqRujYYZxr926zLL/liAJCloVr9lxvty3J2jZw+xavZ64oziMo2za/U/HDnlwS6PrYS/CMOhvCNjB02igm0lUlJT2Lz3D054e/Iq+iUV7aswqOdw1u1YBcCSdfNYsm4em5ftJTEpgTVbfubuozsYGRjRzrUL/bsORiaT0WZAY8qUKodD+Qpc9D1Pi0ZtOHLqIGvnbsTBpiJ7Dm/n979WMu+7ZdR7Z24CgeANebqy9nr6mJHH/8FST5+lzVoTGBNF1793Evk6QeyxwMcMd6qNlYEhk88cwzc8lG3+N/B6+oTxteqzpGlralpakSZJbLjty/TzJ6lhUZK5jVtw6Xkw3f7eRco7MTnuvYyk1z970NPU4of6TdDR0KTHwd2ExMUwt3ELAJqVLc9f7bvTvFx5vj7lyVb/GwyqWpNhTs78ees6M7xP5njO1SvXAuDO/ZvceXALgNv3b/I0JIDo2CicKtYkOiaKmT9PJiwylBGffYWpsRm/bFjEtVtvDhjdfnCTCraVGNRzuKpMkiQW/z4HvzvX+N9XczIp6uSUZH5aO5uY2Cj6dPyCu59g7nh7HN87V1n2x3xKWVrxedfBRMdGM3PZZJKTk9h5cAs7PbZgU9aesQOVCrx8GVtaNlamU+vUUrlqNzIwYubPk/F/eJvBvUZgZ+3I5r3r+Pf0P6oxg58HYaBvyIjPxtGjXV9kMpmq/tzlU5QwtaC2U72cfQACwX+EPF1ZH3r8AIBZDZvT2saewJgoFlw6h+7rTcgh1WoyskYdNOVyhh/z4FRQIBVMSwBw+lkgaZJEv0rVsDIw5PBj5WP20matqWBmzsXQZ/x19yb3XkVmGPNo4COS09LwCX2GT+gzVbl3SBBtbOz53/kT2Bmb0q+SMtCRx+P7pCoUGeznRwMf5XjOVStURy7X4PaDm8TGxVC3egPuPLjJnfs3AaheqSa3H9wkJi6Gz7oMpJNbd0qXLMu0RRO55HeBLq16AuBoU5Ev+40FlDZrgCs3L5KWlsa3w3+gUe2mmcZ+GhzAi6hI3Fza0qV1T6zL2DBl4fgPyvv2OL9vV66Sr9y4yJUbF1VtAoKfcOHaWWQyGT989SP6egaqOofyFfE670llh6q0aNSax08fEhIWTItGbejetg/1azbC5/o5Lvl60655JwCMDU2YOHQK8tfpz2o71cPrvCe92n/Gnfs36dGub6a0bwKBICP54srxMXfrt62Wnewr4t13KEcDH/FvwEMWXT6PZ4/+b/X14c7STaDf1WlEaxt7VXmVEhaExsVleY2VviGb23VVvdfRyPltMNAzwN7agTuvFfKEId8xe/k0jp//F7lMTrWKNbhx1zd9Nu/tx9zMIlOZiaEpr6JfcvLCMdxc2qLxETk/xR6cYZzX7Ud8Pg57a0cAFJICK8vSr6XNLO/7Po4PfUxmJiVUihqgs1sPZi2fytI/FqCQFLRqkr2UbgLBf5E8NYN0sFN+4Wd5n+I3vytsuOWLmY4uianKzawNt3z5/cZVfrnmgwxoXq48e+7fxuPxPayNjKlawhJQenF0sKsAwKTTnqy8fpG/H93DwcSMiqbmGcZsY2OPtoYG7g/v8jjqFdfCQvn+nBcpaQrMdJUxnq+Fh7Ld/yYRCfF0sqtAaHwsfz+6R0B0FPse+LPz3q1czbt65Vo8CXrEi1eR1KjsjINNBa7duoxdeQcM9A2p6uiEkYER/57ywMNrP1v3K9OO1a/Z6IP9VrCrxJf9xnD5hg8/r1+Yqd66jA0lTMzxvnKGv4/uZdv+DdmSu4GzCwAnvY8SFvkc/4e3WLPlZ4wMjGno3ASFpGDeqhkcOeXB2q3LATA0MAbgkt8FTvkcx7q0DWVKlsX76ln2e+7m9+0rlXOr9f65NXB2wdK8FNduXcLBpgL25R2zJbdA8F8kT5V1S2s7fnPrSFhCPJNOH6WckREHuvTF/PUpv/Z2jvzmd4XQuFh+atqKmpZW6Gtqsff+HUYfP8Tu+7fpW7EqvSpUZXDVmvzYyBXf8DC+P+dF3VKl2d+lD1oaGR+XK5qZs7dTbwy1tJh46l+WX/PBwcQMM11d7E3M+LySE/devqD/EXf8X0Twc/M2DHNyZve920w89S8+Ic9wKW2dq3k7VaqJJEnYlrNHT1efKo5Kk4tTxZoAGBuZMPvrRVial+K3bSt4+SqSCUMmU6tqnY/23avD53Rs2Q3PM4fYtHddhjptLW2mjJ6JkaEJ2w9uopJD9vy/a1apzbfDfyAhKYFVm5Zw6MQBqlWoDkDfzgPo22kAT549YuWmJdx/ovSoaVS7CRXsKnPm0kkWrJmFpqYms77+iYp2ldmw+zceBNxnYM/htGna8b3jasg1aO/aBYBWLmJVLRB8CrnKwXhs2Uo2tSh+XzaNX+aSmpqa4dE9nVYtW9GybkfhuZAL7jy4xe5D27h4/Txbl7tjamymqnvxKpJxs4cSFh6mRgkFAvWR5/GsNTQ0SJEKT7aUvCIlLe2DdnINDQ1SU8Whjdwwf/V0YuJiGPXFxAyKGiA1NQW5hthsFAjeJcfK2sbGBr/w5ySnpaFdjL5c18JDKW9lleWqGsDW3o77T/xpVLtJAUtWfNjy87731t1/cheb8jYFKI1AUDTIsc26YcOGONasyWfHDhIWH1fkT6alKhRcCg2mx7/7+XHBgve2++abrzl2/hCHTx0U4VHzkJTUFK7duszKzUv4cc5sdYsjEBQ6cpUpJjk5mS8HDuTgP4eIjo/7gGNa0aBsyVLM/WkhAwYO/GC727dv069vP+7euyfiWOQRMpmMcmWtWbN2Ne3bF799EIHgU3mfzTrP0noVdTuuTCZDI5vmHIVC8d7ofILsIZfL32t6Egj+S+SJspbJZOGAiF8pEAgE+YeNJEmW7xZmS1kLBAKBQD2I506BQCAoAghlLRAIBEUAoawFAoGgCCCUtUAgEBQBhLIWCASCIoBQ1gKBQFAEEMpaIBAIigBCWQsEAkERQChrgUAgKAL8H/PLFVjX6XdBAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZMAAAEvCAYAAACAFCxvAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAABWTElEQVR4nO3dd3hUVfrA8e+bTDohoaNURRHFhiKCiqBiR3HdtYtiWexldxXbuvauP9ddlV1cFey9oqIg0puoICiIIChIh5DeJnl/f5w7yWSYNDLJTOD9PM99ZuaWc8/cwH3nlHuOqCrGGGNMQ8RFOwPGGGOaPwsmxhhjGsyCiTHGmAazYGKMMabBLJgYY4xpMAsmxhhjGsyCiTHGmAazYGKMMabBfNHOQG1ERFq0aHFHQkLCRaWlpW2inZ+m4vP5ssvLyz/Nycm5UVX90c6PMcbURGL5CXgRkdTU1Mc6d+585YsvvpjWqVMnRCTa2Wp0qsrmzZv5y1/+UrBgwYIJubm5Z6tqWbTzZYwx1Yn1YNIzIyNjwfLly1Patm0b7ew0ucLCQg488MC85cuXn6WqE6KdH2OMqU6st5n06N27d8muGEgAUlJSGDhwYDzQI9p5McaYmsR6MElMSUnZbuXTTz+NiCAi/PTTTwCMHTu2Yp3P56Nr167cd999FccsXLiQI488ktTUVDIzMznssMNYtGhRxfZ33nmHgw8+mKSkJNq2bcuIESPYsmULAKtWrUJEGDp0aJV8hFs/dOhQRIRVq1bRvXv3ijwFL927d684NnjJzMzc7rumpaXFA4kNuYjGGNPYYr4BPpy33nqLuLg4ysvLeeutt7jzzjsrtl1wwQUMGTKERx99lH/84x+cdNJJHHbYYVxyySUsX76cRx55BJ/Px/Tp08nOzgZg8uTJnHXWWXTp0oX/+7//45tvvuHFF19k5cqVTJ06dYfz+e9//5v8/HzGjx/Pq6++ypVXXsmgQYNIS0ur2KdPnz6MGjUKgMREixnGmOap2QWTtWvXMnPmTM4++2ymTZu2XTDp2bMnxx9/PG+//TZLlizB73cdoZYuXUrr1q0ZOnQoe+yxB1dddVXFMffeey8Azz//PMcffzwAS5YsYdq0aUyZMoXu3bvvUF5PO+00ANasWcOrr77K4Ycfzrnnngu4Ug1Au3btGDJkCAAJCQk7dB5jjIm2WK/mwufzVfm5/vbbb1NeXs5ZZ53FmWeeyeLFi/nxxx8rtt9111107tyZTz/9lBNPPJF+/foBMHDgQH7//Xf23HNP9txzT26//XYKCwsBKqq7BgwYUJHOEUccAcDixYsb9ft98cUXtGvXjnbt2jFs2LBGPZcxxjSWmA8miYmJScGf33zzTRITE+nVqxeHH3444Kq9AkaOHMmECRMYNmwYX3zxRUU11dtvv82dd97JQQcdxKpVq3jooYe4++67qz1vXXq5xcVtf/kCx4XbFs7hhx/OxIkTmThxIk888USdjjHGmFjTpMFEhF4iHCRS9+o1EanI4+rVq5kzZw4lJSX07t2b4cOHAy7ABOy9996ceOKJXHHFFagqEya4HrXJycnce++9LFiwgC+//BKoLHUccMABAMyZM6cincD7/fffv9q8dejQARFh3bp1FevWrl1LXFwcHTt2rNP3a9u2LUOGDGHIkCEceuihdTrGGGNiTVO3mUwE2gBxIiwGJgEzgDmqbA53gKqW4wW9t956C1Xltttuq6i+ev755xk/fjy5ubkALFiwgFdffZUXXngBoKK9o3fv3px22mnsv//+zJs3D6gMInfeeSdTp07l8ssvZ9SoUXz77bfMnj2bo48+msGDB1e0byxdupRbb721Im933303xxxzDJMnT+ayyy6jvLycBQsWcPzxx9e5MX3t2rW88cYbFZ//+Mc/WtuJMab5UdVGWUB3A70T9PKgJRtUg5Yyb10x6FrQd0CvAj0Y1AcMO/HEEwvU069fPxUR3bhxY2CVvvnmmwpop06dFFBARUTbt2+vI0eO1JKSElVVveaaa7RHjx6anJysbdq00fPOO0+3bdtWkc5bb72lBx10kCYmJmqbNm304osv1k2bNqmq6sqVKyvSDl6ysrL0119/1WHDhmnr1q21devWesYZZ+jq1as12GOPPaaAvvjiixXrakoz2LXXXlsM/KWx/k622GKLLZFYGuUJeBEOBz4G2oXGLqC28VAC+/wAcsdxxx03btKkSRkRz2Qzcd1115U8/fTTt6rqk9HOizHGVCei1VwixAO3AXcD64EJwMagXc4GkkMO8wP5QCqwDlftNdl77Rno2rur8vv9CpRHOx/GGFOTSLeZnAvcB7wOXK3KtuCNIpyIK3mUAfHAAirbTeaF2T91+fLl8X6/H5+v2T0S02CqysKFC0uB1dHO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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "instr.show_diagram(variable=\"l\")" + ] + }, + { + "cell_type": "markdown", + "id": "improved-navigation", + "metadata": {}, + "source": [ + "Above we see the wavelength distribution along the instrument.\n", + "- Before guide1: Uniform distribution from source\n", + "- After guide1: Some transmission losses, especially at lower wavelength\n", + "- After V_sel: Chooses a limited wavelength range\n", + "- After guide2 and guide3: further transmission losses\n", + "- After mono: No change (neutrons are either transmitted or scattered)\n", + "- After slit: Only rays scattered by mononchromator continue\n", + "\n", + "This tool is useful for quickly understanding what is going on in an instrument. Below we set up a situation where the wavelength selected by the monochromator is on the edge of what is transmitted by the velocity selector. The limit keyword can be used to zoom into an important area of the plot." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "loaded-trailer", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZMAAAEvCAYAAACAFCxvAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAABWNklEQVR4nO3dd3hUVfrA8e+bTDohoaMgogii2FBEURFdsS6K665dFMtiX3VXsa1r7/pzdV3ZxVXB3isqCiJNmqggKIggKL0G0stk3t8f504yGSaFZJKZhPfzPPeZmVvOPfdOct+555x7jqgqxhhjTEMkxDoDxhhjmj8LJsYYYxrMgokxxpgGs2BijDGmwSyYGGOMaTALJsYYYxrMgokxxpgGs2BijDGmwXyxzkBtRERatWp1e1JS0oVlZWXtYp2fpuLz+bYFAoFPcnNzr1dVf6zzY4wxNZF4fgJeRCQ9Pf3Rrl27XvHCCy9kdOnSBRGJdbYanaqyadMmbrjhhsJ58+aNz8vLO0tVy2OdL2OMqU68B5NeWVlZ85YuXZrWvn37WGenyRUVFXHAAQfkL1269ExVHR/r/BhjTHXivc6kR58+fUp3xkACkJaWxsCBAxOBHrHOizHG1CTeg0lyWlradjOffvppRAQR4aeffgJgzJgxFfN8Ph/dunXj3nvvrdhm/vz5HHnkkaSnp5Odnc2hhx7KggULKpa//fbbHHTQQaSkpNC+fXuGDx/O5s2bAVixYgUiwpAhQ6rkI9L8IUOGICKsWLGC7t27V+QpdOrevXvFtqFTdnb2dseakZGRCCQ35CQaY0xji/sK+EjefPNNEhISCAQCvPnmm9xxxx0Vy84//3wGDx7MI488wj/+8Q9OOukkDj30UC6++GKWLl3Kww8/jM/nY9q0aWzbtg2ASZMmceaZZ7Lbbrvxf//3f3zzzTe88MILLF++nClTptQ7n//6178oKChg3LhxvPLKK1xxxRUMGjSIjIyMinX69u3LyJEjAUhOtphhjGmeml0wWbNmDV999RVnnXUWU6dO3S6Y9OrVi+OPP5633nqLRYsW4fe7hlCLFy+mbdu2DBkyhD322IMrr7yyYpt77rkHgOeee47jjz8egEWLFjF16lQmT55M9+7d65XXU089FYBVq1bxyiuvcNhhh3HOOecA7q4GoEOHDgwePBiApKSkeu3HGGNiLd6LufD5fFV+rr/11lsEAgHOPPNMzjjjDBYuXMiPP/5YsfzOO++ka9eufPLJJ5x44on0798fgIEDB7J69Wr23HNP9txzT2677TaKiooAKoq7BgwYUJHOEUccAcDChQsb9fg+//xzOnToQIcOHRg6dGij7ssYYxpL3AeT5OTklNDPb7zxBsnJyfTu3ZvDDjsMcMVeQSNGjGD8+PEMHTqUzz//vKKY6q233uKOO+7gwAMPZMWKFTz44IPcdddd1e63Lq3cEhK2P33B7SIti+Swww5jwoQJTJgwgccff7xO2xhjTLxp0mAiQm8RDhSpe/GaiFTkceXKlcyaNYvS0lL69OnDsGHDABdggnr27MmJJ57I5ZdfjqoyfrxrUZuamso999zDvHnz+OKLL4DKu479998fgFmzZlWkE3y/3377VZu3Tp06ISKsXbu2Yt6aNWtISEigc+fOdTq+9u3bM3jwYAYPHswhhxxSp22MMSbeNHWdyQSgHZAgwkJgIjAdmKXKpkgbqGoAL+i9+eabqCq33nprRfHVc889x7hx48jLywNg3rx5vPLKKzz//PMAFfUdffr04dRTT2W//fZjzpw5QGUQueOOO5gyZQqXXXYZI0eO5Ntvv2XmzJkcffTRHHPMMRX1G4sXL+aWW26pyNtdd93Fsccey6RJk7j00ksJBALMmzeP448/vs6V6WvWrOH111+v+PzHP/7R6k6MMc2PqjbKBLoL6B2gl4VM20A1ZCr35pWArgF9G/RK0INAfcDQE088sVA9/fv3VxHRDRs2BGfpG2+8oYB26dJFAQVURLRjx446YsQILS0tVVXVq6++Wnv06KGpqanarl07Pffcc3Xr1q0V6bz55pt64IEHanJysrZr104vuugi3bhxo6qqLl++vCLt0CknJ0d//fVXHTp0qLZt21bbtm2rp59+uq5cuVJDPfroowroCy+8UDGvpjRDXXPNNSXADY31Pdlkk002RWNqlCfgRTgM+AjoEB67gNr6Qwmu8wPI7ccdd9zYiRMnZkU9k83EtddeW/r000/foqpPxDovxhhTnagWc4mQCNwK3AWsA8YDG0JWOQtIDdvMDxQA6cBaXLHXJO+1V7Bp787K7/crEIh1PowxpibRrjM5B7gXeA24SpWtoQtFOBF351EOJALzqKw3mRNh/fSlS5cm+v1+fL5m90hMg6kq8+fPLwNW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adWqFa1atWLgwIH88MMPAIwZM6bibmLfffelY8eOfPrpp5x//vlkZGRw+umn4/f7qz30L774gj322IPdd9+d119/vcqyUaNGce6557Js2bKKO6ojjjiCwYMH06VLlx08ycYYE7+i99NYVXHdyEfNxyJDT/T5InYXPGPGDB588EF8Ph8vv/wyPXv25Mknn6Rjx47cfvvtfPnllwwbNox99tmH3XbbjTPOOINdd92VtWvX8sgjj3D99dczYUJldidNmsRNN93Eddddx5AhQ7jiiis46qij+OCDDxg3bhynn376dnkoKSnhggsuoKCggAcffJA333yz1mOaOXMmI0eO5Kyzzqr/iTHGmDgT9+UsycnJEcfMHTBgADfddBPLli3jvffe44knnmDr1q1s2bKF226rbBQ1adIkzjnnHMaPH8/MmTO9mAcLFiyokt6FF17Itddey0MPPcS6det44okneOmll/j8889Zvnx5xLwtXryYdevWccEFF3D11VfTu3dvBg8eXOPx9O3bl4cffniHzoExxsS7Jg0mImQApaqVQ/nWvo3UWBQXDA7B508uvPBChg0bVrG8e/fuPPXUU8yYMYNrrrmGU089lUsvvZS8vKrjW2VnZwOQlJREWloaycnJJCYmAlBeXt1wK5HzUpNdd921Tmk1lIiMAEYAdOvWrUn2uXM6DAakwQBI6FJAZus8kikFIDHCMD2JlFNOYlNn0phG19TdqcwGCkSYJ8JjIgwVoVNNG6hqxKEWZ86cyaOPPsrIkSMBuO6662jbti3jx49n8eLFLFy4kIceeojVq1dXXOTz8/OZNm0aq1atisrB9O7dm86dO/PBBx/w73//m3vvvTcq6UaDqo5W1X6q2q9Dhw61b2CMMQ3QaMFEhAQRjhThwOAEdMaNCX8gcAPwIvCrCBtE+ECEa0Q4RKRy3PjS0tKIY4ccddRRzJgxgy+++ILzzz+fW265hXHjxrHXXntxyy23cP/995Oenk737t35y1/+wqGHHsr777/PunXr2G+//aJyjCkpKbz88su0a9eOBx54gP79+0clXWOMaW4apZhLhA7AZ0D4g3ihxVsJQGvvfQfgNFxrsGSgXIRPgBf8fn8pbkx5wBVbVVecNGDAAL766quIy+bMmRNx/vDhwyueCwH3HEukZdu2baOsrGrpXFZWFscdd1yVOpVHH3204v2YMWMYM2ZMxee6FIMZY0xzFPU7ExFOAhYAfYCNwLKQqbqOtfxALpAI/IZ7gv5liJ8L8NChQ+nQoUOVqbrAtaNUFY2XAzXGmHqI6p2JCCcAnwILgeNVWRC2fB3QCcinMrB8h2tS/BUwR5W8kPUHbtiwIZpZrLfHH3+cnJycKvMOPPDAqKS9ceNG/H5/fByoMcbUQ7SLufb1Xo9TJdLF8UWgI/AlMAtYUsu48AuWLVvGG2+8oWeffXZMuws+5JBDGiXdtWvXct999xXm5uaOa5QdGGNME2ispsGlkWaqMnJHElHVrSJy9CWXXDL11VdfTdxjjz1SEhJaznheOTk5/k8++SSQl5f3aCAQeCnW+THGmPqK+4cWVfV7ETngww8/HIRrDdaSFALfq+q0WGfEGGMaIu6DCYCq/gbYL3djjIlTLafMyBhjTMxYMDHGGNNgFkyMMcY0WNzXmYiIkCEPI5xHqbaNSqLJsgXlNQp0pD0saIwxDRftYBLslPFI4OOGJiYiQrr8ly6J5/FwVgadEqt/hr6uFNhQ3oWbt13FyvJsERlhAcUYYxom2sVc7wCLgHEiPC5CxLFIdkBvfJzPS20z2DsJshMgq4FTdgL0SoIX26aTxHnAPg0/bGOM2blFNZioshroB/wb+CuQJ0JRfSd44Cb28pWR2QhVO5kJ0NNXBuwZ/cSNMWbnEvU6E1UKgWtE+ACoedjBWi3KI7kO5VpzSmB4DpyXDn9vDRdthq/L4KuOUKbwZiH0ToLBqVW3SxaByu7ujTHG1E+jVcCrMoEGjgkv8tJQ1yP9DrqyFZwdgAyBJeXwTAGcnrp9MDHGGBMVza9p8OZyuHgLHLIeDl0PZ2+GLWH156Py4cZtUKBw1mY37/1i2HcdvFfY9Hk2xpgWLu6DSZIvqeqtybhimF0Kw9JhZCb09kGghsZY17Vyr/2S4LEsOLQedzrGGGNqFPfBJDU5tWqLsN0T3evcUlhZDqekQvsaDuNIb/OuiXBKGnSN+0drjDGm2WnSK6sIfYF04FtViuq0TYJUjRTHpMJrbWFmKUwvgf8VwP/a1JBAAzLcjInICGAEQLdu3WKcm/ikemeVzyJ31yOV1TCzO/SDwGcZbJibAQfBqn/uBUXA0jKgCNq0dn1eZwMz7wZ226G80ZbKdvbp3vve3ueak9opBf/tgxe41lSOEd4gwYKNI7zXU4AHggtP9V4Pjsaemp2mvjMZhxsbfpsIi0UYJcI5IuwuEvmyrwENVJnxWTFMKYHOidDD+1PZGIiwpae1l+wiP3xcBDk1rNuCqOpoVe2nqv06dOgQ6+wYY1q4RrszEWEP4Cpgdcjs1kCG935voBdwvpePUhHmABOBGcA3AMWlxSWQlFaRQqrA58WwuhxSBE5OdQ8iVmc3H/w+FSYWw03b4KW2cIjVmxhjTDQ1SjAR4VjgXdxNfajwmnIBMr33acDx3gSwBBhZ5i8r9ZY5g1JgUIRf2j+GjJs1tl3VZY+GZ8MYY0w0RTWYiJAE3AuMBJYD46HKWPB/JjQwOCXelAYsw40PPwV3d3IQ/kbsNsuPUtmfmDHGmHqK9p3JucDNwLPADaoUhC4U4SzcxTsBF0Dm4B5snIGrlC8OW78tK8p9lCp1ehJ+R5QqLPf7gN+im7Axxux8oh1Mgl3EjwwPJJ7hQBYwC1ipul2xV7iFFOkMrs05kv/LTicjSu0FCgLwt22FFOos4PvoJGqMMTuvJm0arMpnO7a+lovIEL4re5PDN/weHwGk1gBUS6IIfhJIk4kU6JmqWt6g9IwxxsT/4FiqWgqcLiIJlJMVpWS3aV7A6kqMMSZK4j6YBKlqAMiJdT6MMcZsL+67UzHGGBP/LJgYY4xpsGZRzCUiguvZqFOs81IH64F1Nq68MWZnEvfBRESyMlOZrErvDq0plTjuuFEVNrqxIX8SkUGqui3WeTLGmKYQ7WCS773eIsIdqpQ1JDERSc5MZerZh7P36EtIESHuh0pUhStfoPerM5kmIoeqakms82SMMY0t2sHkFWAA7in434lwK9CAoQ2HtGmbMW4PL5A0CyIw6mJSPltA97xiDgC+jnWejDGmsUU1mHhjlFwqwqfAaFwPwA1w+Et7dBwXaC6BJEgE9uyIrthEFyyYGGN2Ao1SZ6LK2yJMBfo2LKVPdk9M4LSoZKqBjrkfpiyGjc9A+8za10907eSaWRg0xpj6abQKeFU2wI51nxJOZMbQKGXHGGNMI4r71lw+X1IyIfX4G7bBuc/A7GWQILDPrvDYeXD587BiEyT74Ii94NlLoUtbuOtduPs9uOo4GDfPpfHKlXDvB/DVEjj/CPjvJW6+DINenWHg3vD21y6dV66CNhnb5+vBD2H0l7ApH47oCaOGw54dG/10GGNMXIr7hxaTk1NTQj+/MgMm/QjXnQiPnwcH7e5aUF00EJ4aBtcMhs8WwF3vVU1n+hK47Bj4bTMMuh8O7wF77+ICwrxfK9dbsg46ZcFZ/eHT7+He97fP09hpcNtbcFgPuGUIfP8bnPV09I/dGGOai7i/M5EEqRLwenoDKk5ZDOW94JzD3Z3DqzPg+5WV6y1YSRXXngAXHQX/eAd2yYa7/wgBhW9XwPKNLigBdG0L958JpX54bgpMXrR9nsZ9517fmO0mgHXbYEs+tG3V8GOOBhEZAYwA6NatW4xzY4xp6Zo0mIjwDtAO+BR4WbXK+PARaUCDg2kBMKQvzLoTJiyE8Qvg4XHQrhVszoe7z4DD94Ihj0Nx2BMu2emQ5Kt8DxWV5JRH6D+4pufXg4teuRI6tnbvAwrpcTS0vKqOxrWoo1+/fvY0fqOZ6KZ/3QCZrV0fDZuAhYDOBg4AnoCcwdD5SNgYy7wa03iaupjrdGAQ8BCwSgS/CL+I8JwIJ4uQGL5BaWlxlYf+3p7j6j52awd9urh5m71HJfOL4b25UNaAEUpWbYHb34JrX3QB4th9t1/nVK+N2tjpsHKLu0u6931IjaNgYowxTanR7kxE+DdwGVAUMjs8eCUCe3jTJd52ecC3wNvASr+/rJSQcePTk13l+IqNkJoEZx8Gt54K5zwDL0yDy4+FrPT653vvXWBDLrw1B046AP4eoT3ZRQNdsdZ/J8GVY6BrGzj78Prv0xhjmruoBxMRUnBNggd5s3b093qmt21f4MLwhacc5KZwix6ufH/fmZXv7zrDTUH6UvXLAHwJriXYs5dWnT/59qqfbx7iJmOMMVEOJiL0AubiAsJy4B0gL2SVu6j+Qb4iXEnz58CrqvwowkkFzbRnq4ISFGimuTfGmB0T7TuT+3CBZLQql4cvFOEOb58BYB0wHfgAeEc14oV3yYKVpKza4lpZNbbQu5aGWL0Fvl9JCvBTdFI0xpj4Fu1gkuS9PlDN8oOBclV+rEtiqvpLWrLcffhd3DFqOOld2roHFeOVqqvAv2oshf5y7lfVZbHOkzHGNIUmbRqsyoId3aaoVB9KS5atFz/LReUBOkkc93eloIkJrC8oYWxRqf4n1vkxxpimEvcPLQJ4F2a7OBtjTJyK++5UjDHGxD8LJsYYYxrMgokxxpgGaxZ1JiLSFTga6BzrvNTRZmCmqi6JdUaMMaYpNFYwiVqLKxHZLy0pffoRex6b2K3tHskSv425AFCU9blrS79cMl5E5DRVnRTrPBljTGOLdjDZ4r2+KsJ5qqxoSGIikp3qS5v22Bn/a336gefEdxSpKnnmL1MYNvb3H4lIX7tDMca0dNEOJsHnSPoA80X4F1BY/+Suydm93ZfSzAIJAAP2HMSgnicExv/4/gDAgokxpkVrrGKugcC/gNtrW7FmnV5un9EpGvmJic6tuyQDTdARjDHGxFZjteb6TZVBQErDpnvfFal6U7IyZwVdbkvgwrGnNlLWoyc878YY01I1amsuVUobsr1IaYQxEI0xxsSbuG8a7EvyRRwPJb8kl+EvDmX2iqkM7n0qj53xLNe+OYzpSydS7C+iW5s9ufmE+zi5zx9YmbOCwx/dk0N3P5I26e2Y8cuXDN57CE+f/TIiwpBRA/h5w4/4A356dtiHu3//BIftMZAZv0zmzP/9jhP2OY1tRTn8uHY+5/f/M3ec/Cib8zdy7gsnsnzzzwDst0tfHjp9FHt36tOk58cYY+JB3D+0mJyclBJp/tzfZnBY96M4cs/f8e68l3l5zn85qGs/bj/5YW45wXVafN1bF1FcVlyxzTe/zeTg3Q6jR/u9ef/715izYjoAR+81mDtPeZy/HXcnG/PX8dd3q46MNW3pRE7pcwZt0tvxn2mPs3rrb0hCAif3+QP3DPknVx99Mz+um8+dH9/QWKfBGGPiWtzfmUhCQsSAd8huA7jy6JtYsXkZn/74HjN+mUxmahYfzH+N0vLK0rVVOStISUoFoO9uh3HtMbciIsxfPZeVW1ewX0lfFqz5jqenPER5oHLw+KKyytGGT9xnKJcdeR0/b1zEy3NGsyrnV3Zv14PJSz7jm5UzUVUAFq/b4U6RG42IjABGAHTr1i3GuTHGtHRxf2eigUCN9SaKu5DPWj6Ft74dS//uAxlz4Ycct/fvASj2V96ZZKe5hlW+BBdDywPlvDPvZSb99Amn9PkjL130MQd0OQSAUn/lWF3Z6W2qbqflPD/jKeb+NoPhh13FqxePZ5esrpSE7CvWVHW0qvZT1X4dOnSIdXZauJEwuDWMAYYBfwf3Z9kWMtO8dRbFKG/GNI24DyalpWURh779ZuVMRk19lPs/vRmAvx13FwBFZYWsylnB3F+/qlP6wbuKorJClmz4oc53F8EgVlBawOwV01i7bVWdtjPGmJYo7oOJv8wfsUVY/92PYu5vM5m+7AvOOOh8zu8/gqEHnMPidQv45If3GNTzxDql/8e+FzBwr8HMWj6Fr3+dwWF7HF2n7S4Z8BcO6noon/34Phvz1tG70351PyhjjGlh4r7OJNxubbqz+oHIJV/PnPNqlc+jzn2t4n3oNlcMvJErBt5Y8fn1Sz6PmN4Rex5TZbv7T3ua+097uuLzx1fN3rHMG2NMCxXvdya5OYWbYp2HetuUv74MyI11PowxprHFezBZuHTjT0nTlzW/jncXr1vIl0vGC/B1rPNijDGNLa6LuVR1o4icMvzF0z45r9+lSbtm75YkEt/xT1XZlL/e//LXz5YWlORfqqrfxzpPxhjT2OI6mACo6hQROeK5mf86MTUpbTchvju8UlSLy4rXgU5R1emxzo8xxjSFuA8mAKo6H5gf63wYY4yJLL7LjIwxxjQLFkyMMcY0mAUTY4wxDdYs6kxE5PeZqVnn+xJ8XYXGqX9XFH/AvyqveNurqjquUXZijDEtVGMFkw7A1mgk5EvwDctKzf7vzSfcn7ZLVhdopGACyrrcNTz0+e1DfQm+K/wB/0uNtCNjjGlxoh1MpgGFwCwRRqjyTkMSE5GuqUlpo9+/fHpqr077RieHtTi8+9HpJz9z6GgRmayqK5tkp8YY08xFNZio8o0IfYFXgbdFmIkLLvX09zl7d/qspFenfVOjlMVa9eq0L/t0PqDku5Wz9wUsmBhjTB1EvQJelSXAEcDdQABIrf9UlJaZ0rpK+itzVtDltgQuHHtqtLNeITOltQDpjbYDY4xpYRqlzkSVUuAub6o3kceHwnEXRyNPxhhjGk+zaM1VF/8Ydz3vzXuV/JJcOrfuwlVHj2TYYZcD0OW2BPZs38sbf+QDzjz4Qvp1O4J/jLuezNTW/PfcN9m/y8ExPgJjjGm+4v45E1+SL7ku6/XssA83n3Afd5z8KO1bdeL2j65hVc6vFct/2bSE3dvuSY8OezNm1jP8Z/rjXDLgGn7d8gtPTLq30fJvjDE7g7i/M0lOTkqpy3q/5fzCCzP/TVFZZX3/zxsX0bXN7gB0bt2FGwffjT/g5/vV3zD88Ks46+DhPPbFXfyWs7xxMm+MMTuJuA8mkpBQ693T0g2LeWbqo/TZ5SD+etw/mLDoI17/5gVK/MUV62SlZgOQlJAEQGZKFokJiQAEAuWNkPPYEpERwAjvY76I/BTL/DSi9kCMR1C7CybiJoA7Qxblhbxf9Oc6pyhyF8TFsTWqlnx8LfnYdo80M+6DiQYCASIUxy3buJgHxt8CwG85KwAoLitiY956pi37oimzGJdUdTQwOtb5aGwiMldV+8U6H42hJR8btOzja8nHVp24DyalpWUlQFr4/BVblvHvqY9UfD77kOF8vPAdXpv7HMf2OomX57T466gxxsQNUdVY56FaIjL0qB7HjX3j0glZTbnfc58/MXfq0gnDVfW9ptyv2XEt+RdgSz42aNnH15KPrTpx35orFsEuoIEm36ept5Z8C9qSjw1a9vG15GOLKN6Dyfo121Y2+TC9a7etAljX1Ps1O86rG2qRWvKxQcs+vpZ8bNWJ92Dy/fq8Ndv+Oem+sqba4ZNf3u9fm7sqF/i+qfZpjDHNXVzXmQCIyC7pyRmzO7TqnLVLVldNkMaJf6oB1mxbJRvz1+UWlhYcpqprGmVHpl5EJBGYC6xW1SFhywR4EjgF17HocFX9tulzWX+1HN8xwAdA8IGod1X1nibNYD2JyApcA+lywB9ej9Dcv7s6HN8xNNPvbkfFfWsuVV0rIr1/3bKsz69blnVu5N2tA35Q1Qb0dGwayXXAIqB1hGUnAz296TBglPfanNR0fADTwoNMM3Ksqlb3zEVL+O5qOj5o3t9dncV9MAHwLu5fxzofJjZEpCvwe+B+4K8RVhkKvKjuNnuWiGSLyC6qurYp81lfdTi+lqxZf3emUrzXmRgD8E9gJG5Ig0i6UHXsmVXevObin9R8fAADRGS+iHwqIn2aJltRocDnIvKN1ytDuOb+3dV2fNB8v7sd0izuTMzOS0SGABtU9Ruv/DniahHmxXdloKeOx/ctsLuq5ovIKcD7uGKh5uBIVV0jIh2BCSKyWFWnhixvtt+dp7bja87f3Q6xOxMT744ETvMqOl8HficiL4etswrYLeRzV6C5NKCo9fhUNVdV8733nwBJItK+yXNaD8GGLKq6AXgP6B+2SnP+7mo9vub83e0oCyYmrqnqraraVVW7A+cAk1T1grDVPgQuFOdwYFtzKXOvy/GJSGev1RMi0h/3f7u5yTO7g0QkQ0Qyg++BE4CFYas12++uLsfXXL+7+rBiLtMsicgVAKr6H+ATXNPSpbjmpc1+dM6w4/sTcKWI+IEi4ByN9zb9TifgPe9a6gNeVdXxLei7q8vxNdfvbofF/XMmxhhj4p8VcxljjGkwCybGGGMazIKJMcaYBrNgYowxpsEsmBhjjGkwCybGxJCITPYeWGxWRGSFiEyOQhrqTUujlLWY8J4n0ZBpTKzz1NQsmJhmR0RO8v5h742wbIC3rERE0iMs/0xEAi31KeRoEpHrRWR4I+9mMTAM+FsN+bjK+063RfpO48RW3HEMi3E+YsaCiWmOpgN+4NgIy47xliUDR4QuEBGfN29hLV2GG+d6YHgj72O9qr6sqh/UsM4lwDJc9/xnNnJ+6kVVi73jCO/qZ6dhwcQ0O15fR18D/SP8Uj0GmACs9d6HOhRoBUxu3ByaaBGRA4FDgLuB73CBxcQhCyamufoSSMJ1lAhUufOYAkxl+zuXY0K2RUT6i8gYEVkiIoUikiciX4nIH0I3EpGHvWKWA8IzISJZIlIkIu+HzR8sIp+LyFYRKRaR74PdbNSFiPQUkZdEZK2IlHr1C496fUCFrjfGy1uWiIwSkQ3e/r4Ske0GmRKRdiLyvIhsFpF8EZkkIn3D625ERIHdgUFhdQHdw9LrLSIfe+dum4i8LSLRHMTuUiAfeBcYAxwtItv1uisiw738/U5EbhSRZV5R5xIRuSjC+okicoeI/Bry/ZwtIneFH6eI7Oads1+9NDeIyIxI6e7MLJiY5upL7/WYkHnBO48p3nRo2MX3GFz35lO8z38AegNv4kY6vB9oC7wrIueFbDfWe70wQj7OAlJD1kHcuBafe3kJDni1DBglIo/WdmAicghuCN+jgf8CVwPjgL/gujlPirDZZ7ged+8BHgT2Az4RryNCL91kYCKu/6sPgZuAn7x54WOIDAM2UVmnEZw2hqzTBXeX95uX1qvAGcCLtR1jXYhICnA+8LaqFnjpl1Fz/10PePn8L5VjxIwRkSPD1nsad66WeXl/H3gGCB8y2Ye70z0T16vzVcBDwBJgYP2PrgVSVZtsanYTkAaUADNC5t2K+xXrA/bBBY4TvGU+3Fjd80LWz4iQbjruAvtj2PyvcV2jJ4bNn4a76CZ7n3cBinGd/oWn/SRurPAeIfMmAyvC1puPu4hnhs3/g3dMw0PmjfHmPRO27pne/MtD5l3lzbs9bN3g/PB8rAAmV3P+V3jbnBU2/9/e/N51+A6rTd9bfraX1jEh894DVkf4HoZ7634X/C68+V28v5PXQub18dYdDySEzN/f+34U6O7NO8D7PHIH/jYVGBPr/5GmnuzOxDRLqloEzAb6hdx9HAN8pap+VV0EbKDyziV41/JlSBoFwfciki4i7XDBZBKwj4iEjsc+Fhcojg/ZZg9cMdtrqlrqzf4TkAI8JyLtQyfgI1xpwHHVHZeI7I+7gL0KpIRtPx0owHV1Hu6JsM+TvNfQIqFTcRfLJ8PWfRbYVl2earBGVd+sZr971SO9cJfiAs6UkHljgF2Bk6rZ5pmQ7wJVXY27iwg9D8G7jydVNRCy7gLcHV6o4Hk5VtwAWKYaFkxMcxasNzkqrL4kKLTe5BjvdXJwoYh0FJHRIrIed5HehCvGCdZtZIek9RquiCW0qOtC3EiBY0Pm7eO9TvTSCp0meMs61XBMwe3vjrD9BiCjmu1/Cf2gqsExM9qFzN4DFwDyw9YtA5bXkKfq/BJhXqT97jAR2R0XdD8HeojIXiKyF+6uMRcXaHYkT+HnAS+tcFXmqeqvuKLKE4C14obnfUREDq3zwewkbDwT05x9CfwDFyhyqawvCZoCPCEirbx1ArgAg4gI7kK1D/AUrhhrG+6X+8XAeYT82FLVzSLyMXC6iGSqah5wAbBIVeeG7DM4DO2FuBZlkUS64IVv/ziuGCaSnPAZqlpeS3rh76Ohun1GY18X487/CG8KN0REOqob4bAuear3eVDVv4vI88DvcfUklwE3icgjqnrzjqTVklkwMc3ZTFz9xLG4YFKECwpBU3B/48fgiqPmqWrwQnwAcCBwj6reGZqoiFxWzf7GAqcDZ4rIT7iinFvC1vnZe92kqhN3/JAqti+v5/Y1WQ4MFpFWoXcnXoX+HrgH70LFZLAjL9APB+bh7grCdQb+hatof7weuwjehe3N9oF970gbqOov3j7/JSKpuOKwkSLyeISAtlOyYi7TbKlqCS6gHIIrB58ZWl6OG0J1M661TgZVny8J/oKt8itVRPbDVXRH8jGuKOxCbwoA4Q+pvYmr8L1bRNLCE/Ca8KbUcFjfefm+QkT2jLC9T0Ta1rB9TT4CEnEt10L9GciKsH4+rnVbUxuMa5b8kqq+HWF6GhcQ6vvMyUfe63UiUnEN9OqrTgxd0fu+qrSeU9ViYJH3sU0989Di2J2Jae6+xN2ZHAFUucNQVRWRabi7ieC6QYuAH3C/LoMtuHoBl+Mu5geH70hVy0TkNeAaXACb6FXwhq6zSkSuBP4HLBKRl4BfgQ641kKnA/viKpa34+V5GK4i+3uveOUHXMOAvXBNb2/FVUTvqP95x3efV/8wB3eHdhZu2Nzw68Es4FJx3dYswgXPj0IbLjSSYH3IuzWs8y7wNxE5XFVn7UjiqvqDiIzGFZ9NFJH3cN/P1bhgfgiVd2XHAqNF5B3c30i+t/wyYLaqRqp32SlZMDHNXWiAmBJh+RTcBbwc14wXcHUMIvJ74DHgItydy0Lv/YFECCaescC1uPqZiM9TqOoLIrIEuBF38c7G3dH8BNwBrKvpgFR1noj0xQWN03ANAvJwAWgM8EVN29eQbomIHAc8CgzFBZHZuIru/+ECVqjbcXcmV3vHILjisEYLJt5d1+nAt6q6ooZV38H153UJLujtqKtwTb0vxf0N/ARcCfTHBYsib735uMB1DO6Zl0TcczUPUL8ithbLxoA3ZicnIom4YDdbVatrctsY+12Be2ZkKK6OaLuGBU1NRD4Cfge0rqFRQ6TthMoWYxuBsao6PPo5jF9WZ2LMTiRSPQ7uziebyqbLTekI3MX369pWjKZq6rMOAE4GJu1IIPF0orIJ907JirmM2bk867VGmoFrKDAA1wx6KTC6ifNyPq4nA4DCJt73RSJyIa5RxUZctzojgFJcc/MdtYWQB1pxRWg7FSvmMmYn4l1Ar8Y1NmgFrAc+Ae5Q1fWxzFtTEpH+wL3AQbh6oTxcDwN3q+o3Mcxas2XBxBhjTINZnYkxxpgGs2BijDGmwSyYGGOMaTALJsYYYxrMgokxxpgGs2BijDGmwf4fMYUhSWBlSiAAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "instr.set_parameters(wavelength=4.3, w_min=1, w_max=6)\n", + "instr.show_diagram(variable=\"l\", limits=[3.5, 6])" + ] + }, + { + "cell_type": "markdown", + "id": "subtle-gossip", + "metadata": {}, + "source": [ + "## Beam analysis\n", + "In addition to an overview of the instrument, McStasScript can view detailed beam characteristics at user selected points along the instrument. In order to access these features, the user has to create a diagnostics object from the instrument." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "standard-reverse", + "metadata": {}, + "outputs": [], + "source": [ + "diag = ms.Diagnostics(instr)" + ] + }, + { + "cell_type": "markdown", + "id": "presidential-nicaragua", + "metadata": {}, + "source": [ + "The diagnostics object contains a copy of the instrument as it was when the diagnostics object was created, so if the instrument is updated, a new diagnostics object should be made. The diagnostics object will also take a copy of the parameters and settings of the instrument, but these can be modified with the usual methods, without impacting the original instrument." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "analyzed-gasoline", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Instrument settings:\n", + " ncount: 1.00e+07\n", + " output_path: demo_instr_data\n", + " run_path: .\n", + " package_path: /Users/madsbertelsen/McStas/McCode/install/mcstas/3.9999-git\n", + " executable_path: /Users/madsbertelsen/McStas/McCode/install/mcstas/3.9999-git/bin/\n", + " executable: mcrun\n", + " force_compile: True\n" + ] + } + ], + "source": [ + "diag.settings(ncount=1E7, suppress_output=True)\n", + "diag.show_settings()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "vietnamese-discrimination", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " wavelength = 5 // Wavelength for mono in [AA]\n", + " w_min = 4 // Minimum wavelength from source[AA]\n", + " w_max = 6 // Maximum wavelength from source[AA]\n" + ] + } + ], + "source": [ + "diag.set_parameters(wavelength=5, w_min=4, w_max=6)\n", + "diag.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "id": "lesser-midnight", + "metadata": {}, + "source": [ + "The diagnostics object can hold two additional kinds of information that will help with diagnostics, *points* and *views*. \n", + "\n", + "### Diagnostics points\n", + "The *points* are points in the instrument where the beam is analyzed. Such a point is given as either *before* or *after* a component in the instrument.\n", + "\n", + "If one inserts a point *before* a component, the beam will be analyzed by a flat monitor at the position of the component, this monitor will be before the chosen component in the instrument component sequence. The particles are restored, so it is as if the monitor was not there at all.\n", + "\n", + "Selecting *after* would place the monitor after the chosen component in the component sequence, and the monitor will record the particles as they leave the chosen component.\n", + "\n", + "In both cases the monitor will record events at those points, and as default it will record 50000 rays. This can be changed with the *rays* keyword argument. Notice that the full intensity will not be shown in these diagnostics results as only part of the rays are recorded to save drive space, but it is possible to set rays to \"all\" if full intensities are required, at the cost of some large data files especially at higher ncounts.\n", + "\n", + "We add some points to the diagnostics object with the *add_point* method. We start by focusing on the guide system." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "metallic-avatar", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Diagnostics point before: guide1 - rays: 50000\n", + "Diagnostics point after: V_sel - rays: 50000\n", + "Diagnostics point after: guide3 - rays: 50000\n" + ] + } + ], + "source": [ + "diag.clear_points()\n", + "diag.add_point(before=\"guide1\")\n", + "diag.add_point(after=\"V_sel\")\n", + "diag.add_point(after=\"guide3\")\n", + "\n", + "diag.show_points()" + ] + }, + { + "cell_type": "markdown", + "id": "conscious-schedule", + "metadata": {}, + "source": [ + "It is possible to remove points with the *remove_point* method, it uses the same syntax. It is also possible to clear all points with *clear_points*.\n", + "\n", + "User variables or flags in the instrument can be included in the event information recorded at each point, to tell the diagnostics object which of these should be recorded, use the *add_flag* method. A maximum of three flags can be investigated and the current flags can be cleared with *clear_flags*." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "included-elevation", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Instrument diagnostics for: demo_instr\n", + "Diagnostics points: \n", + " Diagnostics point before: guide1 - rays: 50000\n", + " Diagnostics point after: V_sel - rays: 50000\n", + " Diagnostics point after: guide3 - rays: 50000\n", + "Views: \n", + " No views yet\n", + "Recording following user variables:\n", + " x_at_source\n", + " x_after_guide\n", + "Does not yet contain simulated data\n" + ] + } + ], + "source": [ + "diag.clear_flags()\n", + "diag.add_flag(\"x_at_source\")\n", + "diag.add_flag(\"x_after_guide\")\n", + "print(diag)" + ] + }, + { + "cell_type": "markdown", + "id": "aging-origin", + "metadata": {}, + "source": [ + "### Running diagnostics\n", + "We can now run the diagnostics instrument using the run method. This will insert the monitors at the requested positions within the instrument and perform a simulation with the current settings and parameters. It can now be seen in the print of the diagnostics object that it contains simulated data, and the number of rays recorded at each point. " + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "structured-canada", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "loading system configuration\n", + "INFO: Using directory: \"/Users/madsbertelsen/PaNOSC/McStasScript/github/McStasScript/docs/source/tutorial/demo_instr_data_10\"\n", + "INFO: Regenerating c-file: demo_instr.c\n", + "CFLAGS=\n", + " \n", + "WARNING:\n", + " The parameter format of sample is initialized \n", + " using a static {,,,} vector.\n", + " -> Such static vectors support literal numbers ONLY.\n", + " -> Any vector use of variables or defines must happen via a \n", + " DECLARE/INITIALIZE pointer.\n", + "\n", + "\n", + "-----------------------------------------------------------\n", + "\n", + "Generating single GPU kernel or single CPU section layout: \n", + "\n", + "-----------------------------------------------------------\n", + "\n", + "Generating GPU/CPU -DFUNNEL layout:\n", + "\n", + "-----------------------------------------------------------\n", + "INFO: Recompiling: ./demo_instr.out\n", + "./demo_instr.c:7212:123: warning: format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]\n", + " { printf(\"Monitor_nD: %s cannot reallocate Vars->Mon2D_Buffer[%li] (%li). Skipping.\\n\", Vars->compcurname, i, (Vars->Neutron_Counter+Vars->Buffer_Block)*sizeof(double)); Vars->Flag_List = 1; }\n", + " ~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n", + " %llu\n", + "./demo_instr.c:7773:123: warning: format specifies type 'long' but the argument has type 'long long' [-Wformat]\n", + " if (Vars->Flag_Verbose) printf(\"Monitor_nD: %s write monitor file %s List (%lix%li).\\n\", Vars->compcurname, fname,Vars->Neutron_Counter,Vars->Coord_Number);\n", + " ~~~ ^~~~~~~~~~~~~~~~~~~~~\n", + " %lli\n", + "2 warnings generated.\n", + "INFO: ===\n", + "monochromator rotation = 42.9985 deg\n", + "Opening input file '/Users/madsbertelsen/McStas/McCode/install/mcstas/3.9999-git//data/Na2Ca3Al2F14.laz' (Table_Read_Offset)\n", + "Table from file 'Na2Ca3Al2F14.laz' (block 1) is 841 x 18 (x=1:20), constant step. interpolation: linear\n", + " '# TITLE *-Na2Ca3Al2F14-[I213] Courbion, G.;Ferey, G.[1988] Standard NAC cal ...'\n", + "PowderN: sample: Reading 841 rows from Na2Ca3Al2F14.laz\n", + "PowderN: sample: Read 841 reflections from file 'Na2Ca3Al2F14.laz'\n", + "PowderN: sample: Vc=1079.1 [Angs] sigma_abs=11.7856 [barn] sigma_inc=13.6704 [barn] reflections=Na2Ca3Al2F14.laz\n", + "*** TRACE end *** \n", + "Events: \"Diag_before_guide1_diag_list.p.n.x.y.z.vx.vy.vz.t.U1.U2\"\n", + "Events: \"Diag_after_V_sel_diag_list.p.n.x.y.z.vx.vy.vz.t.U1.U2\"\n", + "Events: \"Diag_after_guide3_diag_list.p.n.x.y.z.vx.vy.vz.t.U1.U2\"\n", + "Detector: banana_I=8.70058 banana_ERR=0.364257 banana_N=2636 \"banana.dat\"\n", + "Detector: Lam_I=633.253 Lam_ERR=14.9202 Lam_N=13466 \"Lambda.dat\"\n", + "PowderN: sample: Info: you may highly improve the computation efficiency by using\n", + " SPLIT 9 COMPONENT sample=PowderN(...)\n", + " in the instrument description demo_instr.instr.\n", + "INFO: Placing instr file copy demo_instr.instr in dataset /Users/madsbertelsen/PaNOSC/McStasScript/github/McStasScript/docs/source/tutorial/demo_instr_data_10\n", + "\n", + "Instrument diagnostics for: demo_instr\n", + "Diagnostics points: \n", + " Diagnostics point before: guide1 - rays: 50000 / 50000\n", + " Diagnostics point after: V_sel - rays: 50000 / 50000\n", + " Diagnostics point after: guide3 - rays: 50000 / 50000\n", + "Views: \n", + " No views yet\n", + "Recording following user variables:\n", + " x_at_source\n", + " x_after_guide\n", + "Does contain simulated data\n" + ] + } + ], + "source": [ + "diag.run()\n", + "print(diag)" + ] + }, + { + "cell_type": "markdown", + "id": "sophisticated-parallel", + "metadata": {}, + "source": [ + "### Views\n", + "Since the data recorded at the points is event data, we can choose how to view this data after the simulation. This is done by adding *views*.\n", + "\n", + "All views need to define at least one axis the events should be binned into, and can optionally choose a second for a 2D histogram. The axis keyword takes all the same inputs as the variable for diagrams and any flags defined.\n", + "\n", + "Here we define a few views and plot the information. The plot will contain all views at all points, but remember they only record up to the number of specified rays, so the intensities are not accurate." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "sustained-creature", + "metadata": {}, + "outputs": [], + "source": [ + "diag.clear_views()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "extended-injection", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "diag.clear_views()\n", + "diag.add_view(\"x\")\n", + "diag.add_view(\"x_at_source\")\n", + "diag.add_view(\"l\", \"dx\")\n", + "\n", + "diag.plot()" + ] + }, + { + "cell_type": "markdown", + "id": "handmade-proportion", + "metadata": {}, + "source": [ + "From this data we see the spatial distribution before the first guide element is uniform as expected.\n", + "\n", + "When we look at the beam after the velocity selector we see a slightly narrower spatial distribution, and can see that rays that make it to this point were most likely to be from the center of the source. We also see the velocity selector limits the wavelength range as expected, but also introduces some correlation between wavelength and divergence due to the direction of rotation.\n", + "\n", + "After the last guide element we see the final beam, it is homogeneous spatially, but there are issues with the divergence distribution and a surprising correlation with the wavelength. The gaps in divergence arise from the compression by the guide which is done in a problematic way.\n", + "\n", + "### View keyword arguments\n", + "Views have two keyword arguments that can alter how they behave, and in addition to these they can take all keyword arguments *set_plot_options* would allow.\n", + "\n", + "| Keyword | Default | Description |\n", + "| --- | --- | --- |\n", + "| same_scale | False | Ensures all views are plotted on the same scale |\n", + "| bins | 100 | Number of bins, for 2D plot can be a list of 2, one for each axis |\n", + "\n", + "Below we demonstrate how the same scale keyword argument changes a view." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "derived-miniature", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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p4bfY9cAx5nZ1YULVSJC502dN0tKCXJx3AfsY2Z7mlkN8G7gxn7r3Ah8IOyRehiww93XDbZDd3/U3ae5+3x3n0/wgV/k7usL9BpGK+/vQegG4DgAM9uXoCPD5rxGLjK4EX+uzcyAHwFPuvu3iht23o34fXD3z7n7nPB77N3A39399KJGL+VI502dN0tKTSyKwN0TZnY+Qa/ZOHCVuz9uZmeHyy8DbiLojboS6AA+lN7ezH4FHANMMbM1wEXu/qPivorRKeB7cBVwVTiMTQ/wQV0mkmIZ5ed6CfB+4FEzeyh87j/d/aYivoS8GG35FulP502dN0tNU02LiIiIiGRQEwsRERERkQxKkEVEREREMihBFhERERHJoARZRERERCSDEmQRERERkQxKkEVEREREMihBll2Y2QQzO3eQZfPNrDNjzNbB9vELM9tqZu8oSJAiY5DKpkh5UtmsTEqQpb8JwIAFPfScux881A7c/X3sPtuPiIzOBFQ2RcrRBFQ2K44SZOnva8BeZvaQmV0y1IpmNs7M/mRmD5vZY2a2tEgxioxFKpsi5UllswJpqmnp77PAAcP92g2dCKx19zcBmNn4QgYmMsapbIqUJ5XNCqQaZBmNR4HjzexiMzvK3XeUOiARAVQ2RcqVymZEKEGWEXP3Z4DXEBT4r5rZF0ockoigsilSrlQ2o0NNLKS/VqApmxXNbBaw1d2vNrM24IxCBiYyxqlsipQnlc0KpARZduHuW8zsbjN7DPizu39qiNVfBVxiZimgFzinKEGKjEEqmyLlSWWzMilBlt24+3uzXO8vwF8KHI6IhFQ2RcqTymblURtkyUUSGJ/NgOfA0UBXMYISEZVNkTKlshlR5u6ljkFEREREpGyoBllEREREJIMSZBERERGRDEqQRUREREQyKEEWEREREcmgBFlEREREJIMSZBERERGRDEqQRUREREQyKEEWEREREckwJqaanjJlis+fP7/UYYgM6f7779/s7lNLHUcxqWxKVIy18mnW4DCh1GGIZGFdQcrmmEiQ58+fz4oVK0odhsiQzGx1qWMoNpVNiYqxVz4nAGeVOgiRLCwrSNlUEwsRERERkQxKkEVEREREMihBFhERERHJoARZRERERCSDEmQRERERkQxKkEVEREREMoyJYd5kdJZevhyAa886vMSRiIjspO+mgJm9ALQCSSDh7osH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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "diag.clear_views()\n", + "diag.add_view(\"t\")\n", + "diag.add_view(\"t\", same_scale=True)\n", + "diag.add_view(\"t\", \"l\")\n", + "\n", + "diag.plot()" + ] + }, + { + "cell_type": "markdown", + "id": "sorted-poetry", + "metadata": {}, + "source": [ + "Without *same_scale* enabled we see the tof distribution at each point, while the one with *same_scale* enabled draws attention to how the distribution widens as the beam propagates.\n", + "\n", + "We can now analyze the backend of the instrument by defining a new range of points." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "representative-machine", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "loading system configuration\n", + "INFO: Using directory: \"/Users/madsbertelsen/PaNOSC/McStasScript/github/McStasScript/docs/source/tutorial/demo_instr_data_11\"\n", + "INFO: Regenerating c-file: demo_instr.c\n", + "CFLAGS=\n", + " \n", + "WARNING:\n", + " The parameter format of sample is initialized \n", + " using a static {,,,} vector.\n", + " -> Such static vectors support literal numbers ONLY.\n", + " -> Any vector use of variables or defines must happen via a \n", + " DECLARE/INITIALIZE pointer.\n", + "\n", + "\n", + "-----------------------------------------------------------\n", + "\n", + "Generating single GPU kernel or single CPU section layout: \n", + "\n", + "-----------------------------------------------------------\n", + "\n", + "Generating GPU/CPU -DFUNNEL layout:\n", + "\n", + "-----------------------------------------------------------\n", + "INFO: Recompiling: ./demo_instr.out\n", + "./demo_instr.c:9179:123: warning: format specifies type 'long' but the argument has type 'unsigned long long' [-Wformat]\n", + " { printf(\"Monitor_nD: %s cannot reallocate Vars->Mon2D_Buffer[%li] (%li). Skipping.\\n\", Vars->compcurname, i, (Vars->Neutron_Counter+Vars->Buffer_Block)*sizeof(double)); Vars->Flag_List = 1; }\n", + " ~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n", + " %llu\n", + "./demo_instr.c:9740:123: warning: format specifies type 'long' but the argument has type 'long long' [-Wformat]\n", + " if (Vars->Flag_Verbose) printf(\"Monitor_nD: %s write monitor file %s List (%lix%li).\\n\", Vars->compcurname, fname,Vars->Neutron_Counter,Vars->Coord_Number);\n", + " ~~~ ^~~~~~~~~~~~~~~~~~~~~\n", + " %lli\n", + "2 warnings generated.\n", + "INFO: ===\n", + "monochromator rotation = 42.9985 deg\n", + "Opening input file '/Users/madsbertelsen/McStas/McCode/install/mcstas/3.9999-git//data/Na2Ca3Al2F14.laz' (Table_Read_Offset)\n", + "Table from file 'Na2Ca3Al2F14.laz' (block 1) is 841 x 18 (x=1:20), constant step. interpolation: linear\n", + " '# TITLE *-Na2Ca3Al2F14-[I213] Courbion, G.;Ferey, G.[1988] Standard NAC cal ...'\n", + "PowderN: sample: Reading 841 rows from Na2Ca3Al2F14.laz\n", + "PowderN: sample: Read 841 reflections from file 'Na2Ca3Al2F14.laz'\n", + "PowderN: sample: Vc=1079.1 [Angs] sigma_abs=11.7856 [barn] sigma_inc=13.6704 [barn] reflections=Na2Ca3Al2F14.laz\n", + "*** TRACE end *** \n", + "Events: \"Diag_after_guide3_diag_list.p.n.x.y.z.vx.vy.vz.t.U1.U2\"\n", + "Events: \"Diag_after_mono_diag_list.p.n.x.y.z.vx.vy.vz.t.U1.U2\"\n", + "Events: \"Diag_before_sample_diag_list.p.n.x.y.z.vx.vy.vz.t.U1.U2\"\n", + "Events: \"Diag_after_sample_diag_list.p.n.x.y.z.vx.vy.vz.t.U1.U2\"\n", + "Detector: banana_I=8.96808 banana_ERR=0.207958 banana_N=8143 \"banana.dat\"\n", + "Detector: Lam_I=643.273 Lam_ERR=8.61571 Lam_N=40247 \"Lambda.dat\"\n", + "PowderN: sample: Info: you may highly improve the computation efficiency by using\n", + " SPLIT 9 COMPONENT sample=PowderN(...)\n", + " in the instrument description demo_instr.instr.\n", + "INFO: Placing instr file copy demo_instr.instr in dataset /Users/madsbertelsen/PaNOSC/McStasScript/github/McStasScript/docs/source/tutorial/demo_instr_data_11\n", + "\n" + ] + } + ], + "source": [ + "diag.clear_points()\n", + "diag.add_point(after=\"guide3\")\n", + "diag.add_point(after=\"mono\", rays=8E4)\n", + "diag.add_point(before=\"sample\", rays=8E4)\n", + "diag.add_point(after=\"sample\", rays=8E4)\n", + "\n", + "diag.settings(ncount=3E7)\n", + "diag.run()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "enhanced-somerset", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Instrument diagnostics for: demo_instr\n", + "Diagnostics points: \n", + " Diagnostics point after: guide3 - rays: 50000 / 50000\n", + " Diagnostics point after: mono - rays: 80000 / 80000\n", + " Diagnostics point before: sample - rays: 80000 / 80000\n", + " Diagnostics point after: sample - rays: 80000 / 80000\n", + "Views: \n", + " View (t) bins: 100\n", + " View (t) bins: 100\n", + " View (t, l) bins: 100\n", + "Recording following user variables:\n", + " x_at_source\n", + " x_after_guide\n", + "Does contain simulated data\n" + ] + } + ], + "source": [ + "print(diag)" + ] + }, + { + "cell_type": "markdown", + "id": "governing-lease", + "metadata": {}, + "source": [ + "We set up a new list of views to investigate the backend of the instrument." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "optimum-closing", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "diag.clear_views()\n", + "\n", + "diag.add_view(\"x\")\n", + "diag.add_view(\"l\", same_scale=True)\n", + "diag.add_view(\"l\", \"dx\", log=True, orders_of_mag=4.5)\n", + "diag.add_view(\"dx\", \"dy\", log=True, orders_of_mag=6)\n", + "\n", + "diag.plot()" + ] + }, + { + "cell_type": "markdown", + "id": "accomplished-belly", + "metadata": {}, + "source": [ + "From this data we see the expected distributions after the guide which we already considered. The data after the monochromator is however unexpected. This is because it shows both rays that scattered on the monochromator and rays that didn't, those that did are near x=0 while those that did not are near x=0.2, which is the exit of the guide in the rotated coordinate system of the monochromator. The remaining views after the monochromator shows that the total wavelength distribution is unchanged, but now a its divided into the direct beam at -42 deg, and the scattered beam at 42 deg.\n", + "Before the sample we see the wavelength distribution reduced to that which made it through the slit, so the transmitted beam is no longer included.\n", + "After the sample we see how the center of the beam was attenuated and the Debye-Scherrer rings can be seen in both 2D plots.\n", + "\n", + "The diagnostics system can be used to investigate many interesting aspects of the instrument, here we will look at one final aspect using the defined user variables that record position at the source and after the guide, as we can look at the correlations between the two. When looking at such data over the different points in the instrument, only events that made it to that point is included, so the correlation may change slightly." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "rolled-company", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "diag.clear_views()\n", + "diag.add_view(\"x_at_source\")\n", + "diag.add_view(\"x_after_guide\")\n", + "diag.add_view(\"x_at_source\", \"x_after_guide\", bins=[40, 40])\n", + "\n", + "diag.plot()" + ] + }, + { + "cell_type": "markdown", + "id": "stunning-niagara", + "metadata": {}, + "source": [ + "Here we see that if the ray originated at the positive x side of the source, it is also likely to be on the positive x side after the guide. Mainly the center 4 cm of the source is used in this configuration of the instrument, which could change depending on wavelength and coating of the guide." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "crude-intent", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/tutorial/Union_tutorial_1_processes_and_materials.ipynb b/docs/source/tutorial/Union_tutorial_1_processes_and_materials.ipynb new file mode 100644 index 00000000..7ec8b840 --- /dev/null +++ b/docs/source/tutorial/Union_tutorial_1_processes_and_materials.ipynb @@ -0,0 +1,539 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# The Union components\n", + "This tutorial is the first in a series showing how the Union components are used. This notebook focuses on setting up material definitions that are used to provide scattering physics to geometries. There are several kinds of Union components, and they need to be used in conjunction with one another to function.\n", + "- Process components: Describe individual scattering phenomena, such as incoherent, powder, single crystal scattering\n", + "- Make_material component: Joins several processes into a material definition\n", + "- Geometry components: Describe geometry, each is assigned a material definition\n", + "- Union logger components: Records information for each scattering event and plots it\n", + "- Union abs logger components: Records information for each absorption event and plots it\n", + "- Union conditional components: Modifies a logger or abs logger so it only records when certain final condition met\n", + "- Union master component: Performs simulation described by previous Union components\n", + "\n", + "In this notebook we will focus on setting up materials using process components and the *Union_make_material* component, but the Union components can not work individually, so it will also be necessary to add a geometry and the *Union_master*. First we import McStasScript and create a new instrument object.\n", + "\n", + "In case of any issues with running the tutorial notebooks there is troubleshooting at the end of this notebook." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Differences between McStas versions\n", + "The Union components can be used in both McStas 2.X and McStas 3.X, but when used in McStas 3.X it is necessary to add an *Union_init* component named init before any other Union component and a *Union_stop* component after all other Union components. To make the notebooks compatible with both, the init and stop component can be added inside an if-statement that checks what version of McStas is used." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "if instrument.mccode_version == 3:\n", + " init = instrument.add_component(\"init\", \"Union_init\") # This component has to be called init" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Process components\n", + "In this notebook we will focus on exploring how to build different physical descriptions of materials, and checking that they behave as expected. We start by looking at the process component for incoherent scattering, Incoherent_process." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.available_components(\"union\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Incoherent_process\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The process components in general have few parameters as they just describe a single physical phenomena. The incoherent process here is described adequately by just the cross section *sigma* and volume of the unit cell, *unit_cell_volume*.\n", + "\n", + "Two parameters are available for all processes, *packing_factor* and *interact_fraction*. The packing factor describes how dense the material is, and can make it easier to mix for example different powders. It is implemented as a simple factor on the scattering strength. The interact fraction is used to balance many processes when they are used in one material. Normally processes are sampled according to they natural probability for scattering, but this can be overwritten using the *interact_fraction*, which provides the sampling probability directly, they just have to sum to 1 within a material." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "incoherent = instrument.add_component(\"incoherent\", \"Incoherent_process\")\n", + "incoherent.sigma = 2.5\n", + "incoherent.unit_cell_volume = 13.8" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Making a material\n", + "In order to collect processes into a material, one uses the *Union_make_material* component. Here are the parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_make_material\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A material definition thus consists of a number of processes given with the *process_string* parameter, and a description of the absorption in the material given with the inverse penetration depth at the standard neutron speed of 2200 m/s. For our first test material, lets just set absorption to zero and set our process_string to incoherent, referring to the process we created above.\n", + "\n", + "The name of the material is now inc_material, which will be used in the future to refer to this material." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "inc_material = instrument.add_component(\"inc_material\", \"Union_make_material\")\n", + "inc_material.my_absorption = 0.0\n", + "inc_material.process_string = '\"incoherent\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If the material contains no physical processes, it is necessary to set the *absorber* parameter to 1, as it will just have an absorption description. Here we make a material called abs_material. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "absorber = instrument.add_component(\"abs_material\", \"Union_make_material\")\n", + "absorber.absorber = 1\n", + "absorber.my_absorption = 3.0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The primary reason for having both process components and a make_material component is that it is possible to add as many processes in one material as necessary. Here we create a powder process, and then make a material using the powder and previously defined incoherent processes." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "powder = instrument.add_component(\"powder\", \"Powder_process\")\n", + "powder.reflections = '\"Cu.laz\"'\n", + "\n", + "inc_material = instrument.add_component(\"powder_material\", \"Union_make_material\")\n", + "inc_material.my_absorption = 1.2\n", + "inc_material.process_string = '\"incoherent,powder\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "At this point we have three materials defined\n", + "\n", + "| Material name | Description |\n", + "|-----------------|------------------------------------------------------------------|\n", + "| inc_material | Has one incoherent process and no absorption |\n", + "| abs_material | Only has absorption |\n", + "| powder_material | Has both incoherent and powder process in addition to absorption |\n", + "\n", + "The instrument diagram can show the components and their underlying connections. Connections between Union components are shown on the right side. From the diagram it is clear the same incoherent process is used in both inc_material and powder_material. In most cases a user would make individual incoherent processes for each material to set independent incoherent cross sections. It is also visible that powder_material contains two processes and abs_material contains none." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let us define a quick test instrument to see these materials are behaving as expected. First we add a source." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "\n", + "source_width = instrument.add_parameter(\"source_width\", value=0.15,\n", + " comment=\"Width of source in [m]\")\n", + "src.xwidth = source_width\n", + "src.yheight = 0.03\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.001*wavelength\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding geometries that use the material definitions\n", + "Here we add three boxes, each using a different material definition and placed next to one another. The *material_string* parameter is used to specify the material name. The *priority* parameter will be explained later, as it is only important when geometries overlap, here they are spatially separated, yet the priorities must still be unique.\n", + "\n", + "It is important to note that these three boxes will be simulated simultaneously in the McStas simulation flow, so no need for GROUP statements to have these in parallel. Because they are simulated simultaneously, a ray can go from one to another, which would not be possible with a standard GROUP." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "box_inc = instrument.add_component(\"box_inc\", \"Union_box\", AT=[0.04,0,1], RELATIVE=src)\n", + "box_inc.xwidth = 0.03\n", + "box_inc.yheight = 0.03\n", + "box_inc.zdepth = 0.03\n", + "box_inc.material_string = '\"inc_material\"'\n", + "box_inc.priority = 10\n", + "\n", + "box_inc = instrument.add_component(\"box_powder\", \"Union_box\", AT=[0,0,1], RELATIVE=src)\n", + "box_inc.xwidth = 0.03\n", + "box_inc.yheight = 0.03\n", + "box_inc.zdepth = 0.01\n", + "box_inc.material_string = '\"powder_material\"'\n", + "box_inc.priority = 11\n", + "\n", + "box_inc = instrument.add_component(\"box_abs\", \"Union_box\", AT=[-0.04,0,1], RELATIVE=src)\n", + "box_inc.xwidth = 0.03\n", + "box_inc.yheight = 0.03\n", + "box_inc.zdepth = 0.03\n", + "box_inc.material_string = '\"abs_material\"'\n", + "box_inc.priority = 12" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let us take another look at how this changed the instrument diagram. The three geometries have been added, and each have a line to their material component. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding loggers that show scattering and absorption\n", + "In order to check the three materials behave as expected, we add spatial loggers for scattering and absorption. These are called loggers and abs_loggers, here are the parameters for a logger." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_logger_2D_space\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The parameters for the abs_logger are very similar, so the two are added here." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger = instrument.add_component(\"logger_space\", \"Union_logger_2D_space\")\n", + "logger.set_RELATIVE(\"box_powder\")\n", + "logger.D_direction_1 = '\"z\"'\n", + "logger.D1_min = -0.04\n", + "logger.D1_max = 0.04\n", + "logger.n1 = 250\n", + "logger.D_direction_2 = '\"x\"'\n", + "logger.D2_min = -0.075\n", + "logger.D2_max = 0.075\n", + "logger.n2 = 400\n", + "logger.filename = '\"logger.dat\"'\n", + "\n", + "logger = instrument.add_component(\"abs_logger_space\", \"Union_abs_logger_2D_space\")\n", + "logger.set_RELATIVE(\"box_powder\")\n", + "logger.D_direction_1 = '\"z\"'\n", + "logger.D1_min = -0.04\n", + "logger.D1_max = 0.04\n", + "logger.n1 = 250\n", + "logger.D_direction_2 = '\"x\"'\n", + "logger.D2_min = -0.075\n", + "logger.D2_max = 0.075\n", + "logger.n2 = 400\n", + "logger.filename = '\"abs_logger.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding the Union master component\n", + "The Union master component is what actually executes the simulation, and so it takes information from all Union components defined before and performs the described simulation. This is the component that matters in terms of order of execution within the sequence of McStas components. As all the previous components have described what the master component should simulate, it has no required parameters. It also does not matter where it is located in space, as it will grab the locations described by all previous Union components that need a spatial location, such as the geometries and loggers." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_master\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "master = instrument.add_component(\"master\", \"Union_master\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### McStas 3.X compatability\n", + "As mentioned at the start of the notebook it is necessary to add a *Union_stop* component after all Union coponents in the instrument, this is typically after the last master." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "if instrument.mccode_version == 3:\n", + " stop = instrument.add_component(\"stop\", \"Union_stop\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Although the Union_master component is not told specifically what geometry components to simulate, it picks up the relevant information from the components added before it. The instrument diagram shows these hidden connections." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Running the simulation\n", + "Here the McStas simulation is executed as normal." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=8.0)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_materials\")\n", + "instrument.show_settings()\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Interpreting the results\n", + "The first logger shows scattering, and since the top box has incoherent, and the middle both powder and incoherent, we expect those to show up. We can see the beam attenuation, as the beam originates from the left side.\n", + "\n", + "The second logger shows absorption, and here the top box is absent as it has no absorption cross section. The bottom box is however visible now, as it has absorption but no scattering. As the absorber is quite strong, we see the attenuation here as well." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Alternative run to show powder properties\n", + "In order to see the scattering from the powder sample, we restrict the source size to only illuminate the center box with a powder material. A wavelength with powder lines close to 90 deg is selected to ensure the scattering from the center box hits the surrounding boxes.\n", + "\n", + "We choose to show the data with logarithmic colorscale using the *name_plot_options* method on functions." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8, source_width=0.03)\n", + "instrument.settings(ncount=5E6, output_path=\"data_folder/union_materials\")\n", + "instrument.show_settings()\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space\", data, log=True)\n", + "ms.name_plot_options(\"abs_logger_space\", data, log=True)\n", + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "Now that the direct beam only hits the center box, all rays that enter the surrounding boxes are scattered from that center box. Since the center box contains a powder, the scattered beam is not homogeneous and most of it is in the form of Bragg peaks with certain scattering angles, and we can see two of these intersecting the surrounding geometries." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Troubleshooting\n", + "In case of issues with the notebooks concerning the Union components or McStasScript it is recommended to:\n", + "- Update McStasScript with python -m pip install --upgrade mcstasscript\n", + "- Get newest version of Union components (Both library files and components themselves)\n", + "\n", + "Since the Union components need to collaborate, it is important to have the same version of the libraries and components. The newest version of the components can be found here: https://github.com/McStasMcXtrace/McCode/tree/master/mcstas-comps/contrib/union\n", + "All libraries for McStas are found here: https://github.com/McStasMcXtrace/McCode/tree/master/mcstas-comps/share but only a few are needed for the Union components:\n", + "- Union_initialization.c\n", + "- Union_functions.c\n", + "- Geometry_functions.c\n", + "- Union_last_functions.c (if on McStas 3.X)\n", + "\n", + "If using McStas 3.X, it could be that the Union_init component and Union_stop component was not added." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/Union_tutorial_2_geometry.ipynb b/docs/source/tutorial/Union_tutorial_2_geometry.ipynb new file mode 100644 index 00000000..9dc4bb6b --- /dev/null +++ b/docs/source/tutorial/Union_tutorial_2_geometry.ipynb @@ -0,0 +1,514 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced geometry using the Union components\n", + "The Union components allow the user to construct advanced geometry from simple shapes. Each available shape has their own component, here are the currently available geometry components.\n", + "- Union_box\n", + "- Union_sphere\n", + "- Union_cylinder\n", + "- Union_cone\n", + "\n", + "They differ in their parameters describing the geometry, but are otherwise identical. In this notebook we will show how to construct hollow geometries with several layers, and that multiple scattering between these quickly result in complex behavior." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setting up some standard materials\n", + "Before setting up the geometry, we need some material definition, here we set up aluminium and a sample powder." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 4*0.0082 # 4 atoms per unit cell\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*4*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2]\n", + "\n", + "Sample_inc = instrument.add_component(\"Sample_inc\", \"Incoherent_process\")\n", + "Sample_inc.sigma = 4*3.4176\n", + "Sample_inc.unit_cell_volume = 1079.1\n", + "\n", + "Sample_pow = instrument.add_component(\"Sample_pow\", \"Powder_process\")\n", + "Sample_pow.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "Sample = instrument.add_component(\"Sample\", \"Union_make_material\")\n", + "Sample.process_string = '\"Sample_inc,Sample_pow\"'\n", + "Sample.my_absorption = 100*4*2.9464/1079.1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up source\n", + "We will also need a source, and allow the wavelength to be tuned with a instrument parameter." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Describing the geometry of a simple cryostat\n", + "A cryostat is a complex geometry with several layers to consider. The way geometry is described in the Union components aims to make it easy to describe such systems. This is aciheved by allowing the simple geometries to overlap, and having a value called the priority to determine which is active in a given volume. If two geometries overlap, the overlapping region gets the physics from the geometry with the highest priority. In that way a cryostat model can be created by having a high priority for the sample in the center, and decreasing the priority as we move out.\n", + "\n", + "The ray tracing algorithm can however not handle if two geometries overlap perfectly, even with a single side. This could be two boxes sharing a side.\n", + "\n", + "Let us look at the parameters for a Union geometry component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_cylinder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The geometry components have many parameters due to their flexibility, but only a few are needed for basic use.\n", + "- material_string : string for selecting an available material\n", + "- priority : number, in case of overlap the geometry with highest priority decides the material properties\n", + "- geometrical parameters : Here radius and yheight\n", + "\n", + "In addition there is a focusing system where scattering of physical processes that support this can be forced to a certain direction, this is controlled with these parameters, but are rarely used:\n", + "- target_index : relative component index of target\n", + "- target_x : if target_index not set, relative x coordinate of target\n", + "- target_y : if target_index not set, relative y coordinate of target\n", + "- target_z : if target_index not set, relative z coordinate of target\n", + "- focus_aw : angular width of focusing cone (either specify angular, box or circular)\n", + "- focus_ah : angular height of focusing cone \n", + "- focus_xw : spatial width of focusing cone (box type focusing)\n", + "- focus_xh : spatial height of focusing\n", + "- focus_r : spatial radius of focusing cone (circular)\n", + "\n", + "Finally there is p_interact, which is used for controlling Monte Carlo sampling frequency of the geometry, as it controls the probability for scattering occurring for any path before or after scattering.\n", + "\n", + "The remaining parameters including masks and number_of_activations are for advanced rules which will be described in a later tutorial." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### First geometry, a sample in a container\n", + "\n", + "We have defined the following materials that are available to us:\n", + "- Al\n", + "- Sample\n", + "\n", + "Lets start by building a simple powder container with a lid." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample_geometry = instrument.add_component(\"sample_geometry\", \"Union_cylinder\")\n", + "sample_geometry.yheight = 0.03\n", + "sample_geometry.radius = 0.0075\n", + "sample_geometry.material_string='\"Sample\"' \n", + "sample_geometry.priority = 100\n", + "sample_geometry.set_AT([0,0,1], RELATIVE=src)\n", + "\n", + "container = instrument.add_component(\"sample_container\", \"Union_cylinder\")\n", + "container.set_RELATIVE(sample_geometry)\n", + "container.yheight = 0.03+0.003 # 1.5 mm top and button\n", + "container.radius = 0.0075 + 0.0015 # 1.5 mm sides of container\n", + "container.material_string='\"Al\"' \n", + "container.priority = 99\n", + "\n", + "container_lid = instrument.add_component(\"sample_container_lid\", \"Union_cylinder\")\n", + "container_lid.set_AT([0, 0.0155, 0], RELATIVE=container)\n", + "container_lid.yheight = 0.004\n", + "container_lid.radius = 0.013\n", + "container_lid.material_string='\"Al\"' \n", + "container_lid.priority = 98" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up loggers to check what is going on\n", + "In order to view what geometry we have set up, we set up three loggers that view the scattering projected onto three different planes. These record the spatail distribution of scattering events." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(sample_geometry)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.02\n", + "logger_zx.D1_max = 0.02\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.02\n", + "logger_zx.D2_max = 0.02\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "logger_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_zy.set_RELATIVE(sample_geometry)\n", + "logger_zy.D_direction_1 = '\"z\"'\n", + "logger_zy.D1_min = -0.02\n", + "logger_zy.D1_max = 0.02\n", + "logger_zy.n1 = 300\n", + "logger_zy.D_direction_2 = '\"y\"'\n", + "logger_zy.D2_min = -0.02\n", + "logger_zy.D2_max = 0.02\n", + "logger_zy.n2 = 300\n", + "logger_zy.filename = '\"logger_zy.dat\"'\n", + "\n", + "logger_xy = instrument.add_component(\"logger_space_xy\", \"Union_logger_2D_space\")\n", + "logger_xy.set_RELATIVE(sample_geometry)\n", + "logger_xy.D_direction_1 = '\"x\"'\n", + "logger_xy.D1_min = -0.02\n", + "logger_xy.D1_max = 0.02\n", + "logger_xy.n1 = 300\n", + "logger_xy.D_direction_2 = '\"y\"'\n", + "logger_xy.D2_min = -0.02\n", + "logger_xy.D2_max = 0.02\n", + "logger_xy.n2 = 300\n", + "logger_xy.filename = '\"logger_xy.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Add master component\n", + "We need to remember to add a master component to actually perform the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "master = instrument.add_component(\"master\", \"Union_master\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Add banana monitor\n", + "We are also interested in viewing some scattering data, here we add a banana monitor using the Monitor_nD component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample_geometry)\n", + "banana.xwidth = 1.5\n", + "banana.yheight = 0.4\n", + "banana.restore_neutron = 1\n", + "banana.options = '\"theta limits=[5 175] bins=250, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Run simulation\n", + "Now we need to run the simulation to view the geometry we have built." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=3.0)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_geometry\")\n", + "instrument.show_settings()\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plotting the data\n", + "Due to the large differences between the scattered intensity from parts in the direct beam and outside, we use a logarithmic axis to display scattered intensity. We limit it to 4 orders of magnitude below the maximum intensity, otherwise a single very low intensity event can draw the intensity axis out to a large interval making it difficult to see the important nuances." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_xy\", data, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of results\n", + "The beam is narrower than the sample, but taller than the can, so some parts of the sample powder are not directly illuminated, and can thus be seen as a intensity area especially on the zx logger image. The aluminum scatters less, and so lower intensity still." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding a cryostat around the sample can\n", + "We can add a crude model of a cryostat around our sample can by adding more Union geometry components. They have to be before the Union_master in the McStas instrument file, so we use the keyword argument *before* in the *add_component* method to specify this when adding the components.\n", + "\n", + "We also need to designate areas as empty, this is done using the default material Vacuum which has no absorption or scattering processes. In this way we can create several layers by decreasing the priority when going out." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "inner_wall = instrument.add_component(\"cryostat_wall\", \"Union_cylinder\",\n", + " before=\"master\")\n", + "inner_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall.yheight = 0.12\n", + "inner_wall.radius = 0.03\n", + "inner_wall.material_string='\"Al\"' \n", + "inner_wall.priority = 80\n", + "\n", + "inner_wall_vac = instrument.add_component(\"cryostat_wall_vacuum\", \"Union_cylinder\",\n", + " before=\"master\")\n", + "inner_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall_vac.yheight = 0.12 - 0.008\n", + "inner_wall_vac.radius = 0.03 - 0.002\n", + "inner_wall_vac.material_string='\"Vacuum\"' \n", + "inner_wall_vac.priority = 81\n", + "\n", + "outer_wall = instrument.add_component(\"outer_cryostat_wall\", \"Union_cylinder\",\n", + " before=\"master\")\n", + "outer_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "outer_wall.yheight = 0.15\n", + "outer_wall.radius = 0.1\n", + "outer_wall.material_string='\"Al\"' \n", + "outer_wall.priority = 60\n", + "\n", + "outer_wall_vac = instrument.add_component(\"outer_cryostat_wall_vacuum\", \"Union_cylinder\",\n", + " before=\"master\")\n", + "outer_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "outer_wall_vac.yheight = 0.15 - 0.01\n", + "outer_wall_vac.radius = 0.1 - 0.003\n", + "outer_wall_vac.material_string='\"Vacuum\"' \n", + "outer_wall_vac.priority = 61" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adjusting the logger view to see the larger cryostat area\n", + "The loggers were only viewing a small area around the sample can, but this can be expanded as we still have access to the component objects." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx.set_parameters(D1_min=-0.12, D1_max=0.12, D2_min=-0.12, D2_max=0.12)\n", + "logger_zy.set_parameters(D1_min=-0.12, D1_max=0.12, D2_min=-0.12, D2_max=0.12)\n", + "logger_xy.set_parameters(D1_min=-0.12, D1_max=0.12, D2_min=-0.12, D2_max=0.12)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Viewing the instrument\n", + "The instrument can be viewed with the *show_instrument* method. The mock cryostat and detector can be seen in a 3D view." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_instrument()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run the updated instrument file\n", + "Run the simulation with the added cryostat, since no parameters or settings are changed it is enough to just call the backengine function and grab the new data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data_cryo = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plot the data from the new simulation\n", + "Here we increase the orders of magnitude of intensity plotted on the log plots. Try to play with these values to see how it changes the plots." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_cryo, log=[True, True, True, False], orders_of_mag=5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the data\n", + "The different layers of the cryostat both result in scattering from the aluminium the beam has to move through, but also some increase intensity where it illuminated by scattering from the sample.\n", + "\n", + "### Comparing situation with and without cryostat\n", + "It could be interesting to see what difference adding the cryostat did to the measured signal in the banana monitor, here we extract the numpy arrays and plot them manually with matplotlib for a direct comparison. Ensure you run the two simulations with the same wavelength in order for a comparison to be meaningful." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana_can = ms.name_search(\"banana\", data)\n", + "banana_cryo = ms.name_search(\"banana\", data_cryo)\n", + "\n", + "import copy\n", + "import numpy as np\n", + "banana_diff = copy.deepcopy(banana_cryo)\n", + "banana_diff.Intensity = banana_cryo.Intensity - banana_can.Intensity\n", + "banana_diff.Error = np.sqrt(banana_cryo.Error**2 + banana_can.Error**2)\n", + "\n", + "import matplotlib.pyplot as plt\n", + "plt.figure(figsize=(14,6))\n", + "plt.plot(banana_can.xaxis, banana_can.Intensity, \"r\",\n", + " banana_cryo.xaxis, banana_cryo.Intensity, \"b\",\n", + " banana_diff.xaxis, banana_diff.Intensity-10.0, \"k\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "l = plt.legend([\"Sample in can\", \"Sample in can in cryostat\", \"Difference displaced to -10\"])" + ] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/Union_tutorial_3_loggers.ipynb b/docs/source/tutorial/Union_tutorial_3_loggers.ipynb new file mode 100644 index 00000000..f30d2924 --- /dev/null +++ b/docs/source/tutorial/Union_tutorial_3_loggers.ipynb @@ -0,0 +1,594 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Visualizing what happens in Union master\n", + "One disadvantage to collecting all the simulation in the Union_master component, is that it is not possible to insert monitors between the parts to check on the beam. This issue is addressed by adding logger components that can record scattering and absorption events that occurs during the simulation. This notebook will show examples on the usage of loggers and their features." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up materials and geometry to investigate\n", + "First we set up the same mock cryostat we created in the advanced geometry tutorial to have an interesting system to investigate using the loggers." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3[m^3 E-30]=[m E-2], factor 100\n", + "\n", + "Sample_inc = instrument.add_component(\"Sample_inc\", \"Incoherent_process\")\n", + "Sample_inc.sigma = 3.4176\n", + "Sample_inc.unit_cell_volume = 1079.1\n", + "\n", + "Sample_pow = instrument.add_component(\"Sample_pow\", \"Powder_process\")\n", + "Sample_pow.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "Sample = instrument.add_component(\"Sample\", \"Union_make_material\")\n", + "Sample.process_string = '\"Sample_inc,Sample_pow\"'\n", + "Sample.my_absorption = 100*2.9464/1079.1\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "sample_geometry = instrument.add_component(\"sample_geometry\", \"Union_cylinder\")\n", + "sample_geometry.yheight = 0.03\n", + "sample_geometry.radius = 0.0075\n", + "sample_geometry.material_string='\"Sample\"' \n", + "sample_geometry.priority = 100\n", + "sample_geometry.set_AT([0,0,1], RELATIVE=src)\n", + "\n", + "container = instrument.add_component(\"sample_container\", \"Union_cylinder\")\n", + "container.set_RELATIVE(sample_geometry)\n", + "container.yheight = 0.03+0.003 # 1.5 mm top and button\n", + "container.radius = 0.0075 + 0.0015 # 1.5 mm sides of container\n", + "container.material_string='\"Al\"' \n", + "container.priority = 99\n", + "\n", + "container_lid = instrument.add_component(\"sample_container_lid\", \"Union_cylinder\")\n", + "container_lid.set_AT([0, 0.0155, 0], RELATIVE=container)\n", + "container_lid.yheight = 0.004\n", + "container_lid.radius = 0.013\n", + "container_lid.material_string='\"Al\"' \n", + "container_lid.priority = 98\n", + "\n", + "inner_wall = instrument.add_component(\"cryostat_wall\", \"Union_cylinder\")\n", + "inner_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall.yheight = 0.12\n", + "inner_wall.radius = 0.03\n", + "inner_wall.material_string='\"Al\"' \n", + "inner_wall.priority = 80\n", + "\n", + "inner_wall_vac = instrument.add_component(\"cryostat_wall_vacuum\", \"Union_cylinder\")\n", + "inner_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall_vac.yheight = 0.12 - 0.008\n", + "inner_wall_vac.radius = 0.03 - 0.002\n", + "inner_wall_vac.material_string='\"Vacuum\"' \n", + "inner_wall_vac.priority = 81\n", + "\n", + "outer_wall = instrument.add_component(\"outer_cryostat_wall\", \"Union_cylinder\")\n", + "outer_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "outer_wall.yheight = 0.15\n", + "outer_wall.radius = 0.1\n", + "outer_wall.material_string='\"Al\"' \n", + "outer_wall.priority = 60\n", + "\n", + "outer_wall_vac = instrument.add_component(\"outer_cryostat_wall_vacuum\", \"Union_cylinder\")\n", + "outer_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "outer_wall_vac.yheight = 0.15 - 0.01\n", + "outer_wall_vac.radius = 0.1 - 0.003\n", + "outer_wall_vac.material_string='\"Vacuum\"' \n", + "outer_wall_vac.priority = 61\n", + "\n", + "instrument.show_components()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.available_components(\"union\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding Union logger components\n", + "Union logger components need to be added before the *Union_master* component, as the master need to record the necessary information when the simulation is being performed. There are two different kind of Union logger components, the *loggers* that record scattering and the *abs_loggers* that record absorption. They have similar parameters and user interface. Here is a list of the currently available loggers:\n", + "\n", + "- Union_logger_1D\n", + "- Union_logger_2D_space\n", + "- Union_logger_2D_space_time\n", + "- Union_logger_3D_space\n", + "- Union_logger_2D_kf\n", + "- Union_logger_2D_kf_time\n", + "- Union_logger_2DQ\n", + "\n", + "- Union_abs_logger_1D_space\n", + "- Union_abs_logger_1D_space_tof\n", + "- Union_abs_logger_2D_space\n", + "\n", + "The most commonly used logger is probably the *Union_logger_2D_space*, this component records spatial distribution of scattering, here are the available parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_logger_2D_space\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setting up a 2D_space logger\n", + "One can select which two axis to record using *D_direction_1* and *D_direction_2*, and the range with for example *D1_min* and *D1_max*. When spatial information is recorded it is also important to place the logger at an appropriate position, here we center it on the sample position." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(sample_geometry)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.12\n", + "logger_zx.D1_max = 0.12\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.12\n", + "logger_zx.D2_max = 0.12\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "logger_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_zy.set_RELATIVE(sample_geometry)\n", + "logger_zy.D_direction_1 = '\"z\"'\n", + "logger_zy.D1_min = -0.12\n", + "logger_zy.D1_max = 0.12\n", + "logger_zy.n1 = 300\n", + "logger_zy.D_direction_2 = '\"y\"'\n", + "logger_zy.D2_min = -0.12\n", + "logger_zy.D2_max = 0.12\n", + "logger_zy.n2 = 300\n", + "logger_zy.filename = '\"logger_zy.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation\n", + "If mpi is installed, one can add mpi=N where N is the number of cores available to speed up the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=3.0)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_loggers\")\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=True, orders_of_mag=4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the data\n", + "The zx logger views the cryostat from the top, while the zy loggers shows it from the side. These are histograms of scattered intensity, and it is clear the majority of the scattering happens in the direct beam. There are however scattering events in all parts of our mock cryostat, as neutrons that scattered in either the sample or cryostat walls could go in any direction due to the incoherent scattering. The aluminium and sample also have powder scattering, so some patterns can be seen from the debye scherrer cones." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Logger targets\n", + "It is possible to attach a logger to a certain geometry, or even a list of geometries using the *target_geometry* parameter. In that way one can for example view the scattering in the sample environment, while ignoring the sample. It is also possible to select a number of specific scattering processes to investigate with the *target_process* parameter. This is especially useful when working with a single crystal process, that only scatters when the Bragg condition is met.\n", + "\n", + "Let us modify our existing loggers to view certain parts of the simulated system, and then rerun the simulation. If mpi is installed, one can add mpi=N where N is the number of cores available to speed up the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "logger_zx.target_geometry = '\"outer_cryostat_wall,cryostat_wall\"'\n", + "logger_zy.target_geometry = '\"sample_geometry\"'\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=[True, False], orders_of_mag=4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Scattering order\n", + "All loggers also have the option to only record given scattering orders. For example only record the second scattering.\n", + "- order_total : Match given number of scattering events, counting all scattering events in the system\n", + "- order_volume : Match given number of scattering events, only counting events in the current volume\n", + "- order_volume_process : Match given number of scattering events, only counting events in current volume with current process\n", + "\n", + "We can modify our previous loggers to test out these features. The zx logger viewing from above will keep the target, but we remove the sample target on the zy logger, which is done by setting the *taget_geometry* to NULL. We choose to look at the second scattering event." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "logger_zx.order_total = 2\n", + "\n", + "logger_zy.target_geometry = '\"NULL\"'\n", + "logger_zy.order_total = 2\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=True, orders_of_mag=3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Demonstration of additional logger components\n", + "Here we add a few more loggers to showcase what kind of information that can be displayed.\n", + "- 1D logger that logs scattered intensity as function of time\n", + "- 2D abs_logger that logs absorption projected onto the scattering plane\n", + "- 2DQ logger that logs scattering vector projected onto the scattering plane\n", + "- 2D kf logger that logs final wavevector projected onto the scattering plane" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_1D = instrument.add_component(\"logger_1D\", \"Union_logger_1D\", before=\"master\")\n", + "logger_1D.variable = '\"time\"'\n", + "logger_1D.min_value = 0.0006\n", + "logger_1D.max_value = 0.0012\n", + "logger_1D.n1 = 300\n", + "logger_1D.filename = '\"logger_1D_time.dat\"'\n", + "\n", + "abs_logger_zx = instrument.add_component(\"abs_logger_space_zx\", \"Union_abs_logger_2D_space\",\n", + " before=\"master\")\n", + "abs_logger_zx.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "abs_logger_zx.D_direction_1 = '\"z\"'\n", + "abs_logger_zx.D1_min = -0.12\n", + "abs_logger_zx.D1_max = 0.12\n", + "abs_logger_zx.n1 = 300\n", + "abs_logger_zx.D_direction_2 = '\"x\"'\n", + "abs_logger_zx.D2_min = -0.12\n", + "abs_logger_zx.D2_max = 0.12\n", + "abs_logger_zx.n2 = 300\n", + "abs_logger_zx.filename = '\"abs_logger_zx.dat\"'\n", + "\n", + "logger_2DQ = instrument.add_component(\"logger_2DQ\", \"Union_logger_2DQ\", before=\"master\")\n", + "logger_2DQ.Q_direction_1 = '\"z\"'\n", + "logger_2DQ.Q1_min = -5.0\n", + "logger_2DQ.Q1_max = 5.0\n", + "logger_2DQ.n1 = 200\n", + "logger_2DQ.Q_direction_2 = '\"x\"'\n", + "logger_2DQ.Q2_min = -5.0\n", + "logger_2DQ.Q2_max = 5.0\n", + "logger_2DQ.n2 = 200\n", + "logger_2DQ.filename = '\"logger_2DQ.dat\"'\n", + "\n", + "logger_2D_kf = instrument.add_component(\"logger_2D_kf\", \"Union_logger_2D_kf\",\n", + " before=\"master\")\n", + "logger_2D_kf.Q_direction_1 = '\"z\"'\n", + "logger_2D_kf.Q1_min = -2.5\n", + "logger_2D_kf.Q1_max = 2.5\n", + "logger_2D_kf.n1 = 200\n", + "logger_2D_kf.Q_direction_2 = '\"x\"'\n", + "logger_2D_kf.Q2_min = -2.5\n", + "logger_2D_kf.Q2_max = 2.5\n", + "logger_2D_kf.n2 = 200\n", + "logger_2D_kf.filename = '\"logger_2D_kf.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Runnig the simulation\n", + "We now rerun the simulation with the new loggers. If mpi is installed, one can add mpi=N where N is the number of cores available to speed up the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"abs_logger_space_zx\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"logger_1D\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"logger_2DQ\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"logger_2D_kf\", data, log=True, orders_of_mag=3)\n", + "\n", + "ms.make_sub_plot(data[0:2])\n", + "ms.make_sub_plot(data[2:4])\n", + "ms.make_sub_plot(data[4:6])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Interpreting the data\n", + "We see the scattered intensity as a function of time, here the peaks correspond to the direct beam intersecting the sides of the cryostat and sample. The source used release all neutrons at time 0, so it is a perfect pulse.\n", + "\n", + "The absorption monitor shows an image very similar to the scattered intensity, but this could be very different, for example when using materials meant as shielding.\n", + "\n", + "The 2D scattering vector is interesting, it shows a small sphere made of vertical lines, these are powder Bragg peaks. Since the wavevector is almost identical for all incoming neutrons, the first scattering can only access this smaller region of the space. The larger circle is incoherent scattering from second and later scattering events, where the incoming wavevector could be any direction since a scattering already happened.\n", + "\n", + "The 2D final wavevector plot shows mainly the powder Bragg peaks." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Animations and time series\n", + "Several of the Union loggers sets up more than one McStas monitor, these include:\n", + "- Union_logger_3D_space\n", + "- Union_logger_2D_space_time\n", + "- Union_logger_2D_kf_time\n", + "\n", + "The Union_logger_2D_space_time for example sets up a number of Union_logger_2D_space monitors that are limited to specific time intervals. This can be used to make an animation of the monitor, which we will demonstrate here." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "log_2D_st = instrument.add_component(\"logger_2D_space_time\", \"Union_logger_2D_space_time\",\n", + " before=\"master\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "log_2D_st.time_bins = 36\n", + "log_2D_st.time_min = 0.0007\n", + "log_2D_st.time_max = 0.0011\n", + "\n", + "log_2D_st.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "log_2D_st.D_direction_1 = '\"z\"'\n", + "log_2D_st.D1_min = -0.12\n", + "log_2D_st.D1_max = 0.12\n", + "log_2D_st.n1 = 300\n", + "log_2D_st.D_direction_2 = '\"x\"'\n", + "log_2D_st.D2_min = -0.12\n", + "log_2D_st.D2_max = 0.12\n", + "log_2D_st.n2 = 300\n", + "log_2D_st.filename = '\"logger_2D_space_time.dat\"'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating an animation\n", + "The plotter in McStasScript can create animations when supplied with many McStasData objects. We use name_search to find all the data from the relevant logger, and then a for loop to set plot options for each of them. Then the plotter can make an animation, which is saved as a gif." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ani_data = ms.name_search(\"logger_2D_space_time\", data)\n", + "for frame in ani_data:\n", + " frame.set_plot_options(log=True, colormap=\"jet\")\n", + " \n", + "ms.make_animation(ani_data, filename=\"animation_demo\", fps=2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Viewing the animation\n", + "Some problem in the jupyter notebook prevents playing the gif directly, but it can be played from markdown. One has to refresh this cell when a new animation is written. It should be visible that the beam enters the cryostat from the left, scatters of the sample and illuminates the entire cryostat. Running this simulation with a larger ncount and more time_bins in the monitor will reveal more details in what happens. This is available below, but commented out as the simulation can take some time.\n", + "\n", + "![SegmentLocal](animation_demo.gif \"Animation\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Optional: Increasing resolution\n", + "Running this simulation with a larger ncount and more time_bins in the monitor will reveal more details in what happens. This is available below, but commented out as the simulation can take some time." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "log_2D_st.time_bins = 128\n", + "instrument.settings(ncount=2E8, mpi=4)\n", + "#data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#ani_data = ms.name_search(\"logger_2D_space_time\", data)\n", + "#for frame in ani_data:\n", + "# ms.set_plot_options(log=True, colormap=\"jet\", orders_of_mag=6)\n", + "# \n", + "#ms.make_animation(ani_data, filename=\"animation_demo_long\", fps=5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Viewing the animation\n", + "In the longer animation it is more evident that scattering from the aluminium hits the top and bottom of the outer cylinder.\n", + "\n", + "![SegmentLocal](animation_demo_long.gif \"Animation\")" + ] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/Union_tutorial_4_conditionals.ipynb b/docs/source/tutorial/Union_tutorial_4_conditionals.ipynb new file mode 100644 index 00000000..a69077a8 --- /dev/null +++ b/docs/source/tutorial/Union_tutorial_4_conditionals.ipynb @@ -0,0 +1,552 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Using conditional component to modify loggers\n", + "Even with the results from the loggers, it can still be difficult to explain all the features in the resulting scattering pattern. The conditional components can modify a logger so that it only records events when the final state of the neutron satisfy some condition. The condition could be leaving with a certain energy or in a specified direction. Before demonstrating these conditional components, we will set up an interesting sample and sample environment, including a few loggers and a time of flight 2theta detector." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up an example instrument\n", + "First an example instrument is made, again with a cryostat but this time with a box shaped single crystal of YBaCuO. Since the *single_crystal_process* have quite a few parameters, we use the *set_parameters* method that allows setting parameters using a dictionary." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Set up Al material with incoherent and powder\n", + "Al_incoherent = instrument.add_component(\"Al_incoherent\", \"Incoherent_process\")\n", + "Al_incoherent.sigma = \"4*0.0082\"\n", + "Al_incoherent.packing_factor = 1\n", + "Al_incoherent.unit_cell_volume = 66.4\n", + "\n", + "Al_powder = instrument.add_component(\"Al_powder\", \"Powder_process\")\n", + "Al_powder.reflections = \"\\\"Al.laz\\\"\"\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_incoherent,Al_powder\"'\n", + "Al.my_absorption = \"100*4*0.231/66.4\"\n", + "\n", + "# Set up YBaCuO with incoherent and single crystal\n", + "YBaCuO_incoherent = instrument.add_component(\"YBaCuO_incoherent\", \"Incoherent_process\")\n", + "YBaCuO_incoherent.sigma = 2.105\n", + "YBaCuO_incoherent.unit_cell_volume = 173.28\n", + "\n", + "YBaCuO_crystal = instrument.add_component(\"YBaCuO_crystal\", \"Single_crystal_process\")\n", + "YBaCuO_crystal.set_parameters(\n", + "{\"ax\" : 3.816, \"ay\" : 0, \"az\" : 0,\n", + " \"bx\" : 0, \"by\" : 3.886, \"bz\" : 0,\n", + " \"cx\" : 0, \"cy\" : 0, \"cz\" : 11.677,\n", + " \"delta_d_d\" : 5E-4, \"mosaic\" : 30, \"barns\" : 1,\n", + " \"reflections\" : '\"YBaCuO.lau\"'})\n", + "\n", + "YBaCuO = instrument.add_component(\"YBaCuO\", \"Union_make_material\")\n", + "YBaCuO.process_string = '\"YBaCuO_incoherent,YBaCuO_crystal\"'\n", + "YBaCuO.my_absorption = 100*14.82/173.28\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "# At a reference point to build the cryostat around\n", + "cryostat_center = instrument.add_component(\"cryostat_center\", \"Arm\")\n", + "cryostat_center.set_AT([0, 0, 1], RELATIVE=src)\n", + "\n", + "# Parameter for controlling sample rotation\n", + "A3_angle = instrument.add_parameter(\"A3_angle\", value=0)\n", + "\n", + "sample = instrument.add_component(\"sample\", \"Union_box\")\n", + "sample.set_AT([0, 0, 0], RELATIVE=cryostat_center)\n", + "sample.set_ROTATED([0, A3_angle, 0], RELATIVE=cryostat_center)\n", + "sample.xwidth = 0.015\n", + "sample.yheight = 0.032\n", + "sample.zdepth = 0.012\n", + "sample.material_string = '\"YBaCuO\"'\n", + "sample.priority = 200\n", + "\n", + "# Setting up two layers of cryostat\n", + "inner_cryostat_wall = instrument.add_component(\"inner_cryostat_wall\", \"Union_cylinder\")\n", + "inner_cryostat_wall.material_string = \"\\\"Al\\\"\"\n", + "inner_cryostat_wall.priority = 12\n", + "inner_cryostat_wall.radius = 0.0621\n", + "inner_cryostat_wall.yheight = 0.16\n", + "inner_cryostat_wall.p_interact = 0.20\n", + "inner_cryostat_wall.set_AT([0, 0.01, 0], RELATIVE=cryostat_center)\n", + "\n", + "inner_cryostat_vacuum = instrument.add_component(\"inner_cryostat_vacuum\", \"Union_cylinder\")\n", + "inner_cryostat_vacuum.material_string = \"\\\"Vacuum\\\"\"\n", + "inner_cryostat_vacuum.priority = 13\n", + "inner_cryostat_vacuum.radius = 0.06\n", + "inner_cryostat_vacuum.yheight = 0.15\n", + "inner_cryostat_vacuum.set_AT([0, 0.01, 0], RELATIVE=cryostat_center)\n", + "\n", + "outer_cryostat_wall = instrument.add_component(\"outer_cryostat_wall\", \"Union_cylinder\")\n", + "outer_cryostat_wall.material_string = \"\\\"Al\\\"\"\n", + "outer_cryostat_wall.priority = 10\n", + "outer_cryostat_wall.radius = 0.180\n", + "outer_cryostat_wall.yheight = 0.355\n", + "outer_cryostat_wall.p_interact = 0.20\n", + "outer_cryostat_wall.set_AT([0, 0.032, 0], RELATIVE=cryostat_center)\n", + "\n", + "outer_cryostat_vacuum = instrument.add_component(\"outer_cryostat_vacuum\", \"Union_cylinder\")\n", + "outer_cryostat_vacuum.material_string = \"\\\"Vacuum\\\"\"\n", + "outer_cryostat_vacuum.priority = 11\n", + "outer_cryostat_vacuum.radius = 0.178\n", + "outer_cryostat_vacuum.yheight = 0.355\n", + "outer_cryostat_vacuum.set_AT([0, 0.037, 0], RELATIVE=cryostat_center)\n", + "\n", + "# Set up loggers\n", + "logger_space_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_space_zx.n1 = 150\n", + "logger_space_zx.n2 = 150\n", + "logger_space_zx.D1_min = -0.2\n", + "logger_space_zx.D1_max = 0.2\n", + "logger_space_zx.D2_min = -0.2\n", + "logger_space_zx.D2_max = 0.2\n", + "logger_space_zx.D_direction_1 = '\"z\"'\n", + "logger_space_zx.D_direction_2 = '\"x\"'\n", + "logger_space_zx.filename = '\"logger_zx.dat\"'\n", + "logger_space_zx.logger_conditional_extend_index = 1\n", + "logger_space_zx.set_AT([0, 0, 0], RELATIVE=cryostat_center)\n", + "\n", + "logger_space_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_space_zy.n1 = 150\n", + "logger_space_zy.n2 = 150\n", + "logger_space_zy.D1_min = -0.2\n", + "logger_space_zy.D1_max = 0.2\n", + "logger_space_zy.D2_min = -0.15\n", + "logger_space_zy.D2_max = 0.2\n", + "logger_space_zy.D_direction_1 = '\"z\"'\n", + "logger_space_zy.D_direction_2 = '\"y\"'\n", + "logger_space_zy.filename = '\"logger_zy.dat\"'\n", + "logger_space_zy.logger_conditional_extend_index = 1\n", + "logger_space_zy.set_AT([0, 0, 0], RELATIVE=cryostat_center)\n", + "\n", + "logger_2DQ = instrument.add_component(\"logger_2DQ_sample\", \"Union_logger_2DQ\")\n", + "logger_2DQ.Q_direction_1 = '\"z\"'\n", + "logger_2DQ.Q1_min = -4.0\n", + "logger_2DQ.Q1_max = 4.0\n", + "logger_2DQ.n1 = 100\n", + "logger_2DQ.Q_direction_2 = '\"x\"'\n", + "logger_2DQ.Q2_min = -4.0\n", + "logger_2DQ.Q2_max = 4.0\n", + "logger_2DQ.n2 = 100\n", + "logger_2DQ.target_geometry = '\"sample\"'\n", + "logger_2DQ.filename = '\"logger_2DQ_sample.dat\"'\n", + "\n", + "logger_2DQ = instrument.add_component(\"logger_2DQ_environment\", \"Union_logger_2DQ\")\n", + "logger_2DQ.Q_direction_1 = '\"z\"'\n", + "logger_2DQ.Q1_min = -4.0\n", + "logger_2DQ.Q1_max = 4.0\n", + "logger_2DQ.n1 = 100\n", + "logger_2DQ.Q_direction_2 = '\"x\"'\n", + "logger_2DQ.Q2_min = -4.0\n", + "logger_2DQ.Q2_max = 4.0\n", + "logger_2DQ.n2 = 100\n", + "logger_2DQ.target_geometry = '\"inner_cryostat_wall,outer_cryostat_wall\"'\n", + "logger_2DQ.filename = '\"logger_2DQ_all.dat\"'\n", + "\n", + "logger_time_all = instrument.add_component(\"logger_time_all\", \"Union_logger_1D\")\n", + "logger_time_all.n1 = 600\n", + "logger_time_all.min_value = 0.0008\n", + "logger_time_all.max_value = 0.0015\n", + "logger_time_all.filename = '\"scattering_time.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "\n", + "# Adding a banana - tof detector\n", + "banana_detector = instrument.add_component(\"banana_detector\", \"Monitor_nD\")\n", + "banana_detector.set_RELATIVE(cryostat_center)\n", + "banana_detector.xwidth = 1\n", + "banana_detector.yheight = 0.2\n", + "banana_detector.restore_neutron = 1\n", + "options = '\"banana, theta limits=[-180,180] bins=361, t limits=[0.0011 0.0025] bins=500\"'\n", + "banana_detector.options = options\n", + "banana_detector.filename = '\"tof_b.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculating theta\n", + "Our YBaCuO sample has the 010 axis along the z axis and have 010 allowed with d = 3.8843. Here we calculate the necessary rotation of the crystal for satisfying the Bragg condition. This could also be done within the initialize section of the McStas instrument, but here we wish to preserve control over the A3_angle." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import math\n", + "wavelength = 4.0\n", + "theta = 180/3.14159*math.asin(wavelength/2.0/3.8843)\n", + "print(theta)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=wavelength, A3_angle=theta)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_conditionals\")\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = ms.name_search(\"logger_space_zx\", data)\n", + "logger_zx.set_plot_options(log=True, orders_of_mag=9, colormap=\"jet\")\n", + "\n", + "logger_zy = ms.name_search(\"logger_space_zy\", data)\n", + "logger_zy.set_plot_options(log=True, orders_of_mag=9, colormap=\"jet\")\n", + "\n", + "logger_2DQ_sample = ms.name_search(\"logger_2DQ_sample\", data)\n", + "logger_2DQ_sample.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_env = ms.name_search(\"logger_2DQ_environment\", data)\n", + "logger_2DQ_env.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "ms.make_sub_plot([logger_zx, logger_zy, logger_2DQ_sample, logger_2DQ_env], fontsize=10)\n", + "\n", + "time = ms.name_search(\"logger_time_all\", data)\n", + "time.set_plot_options(log=True)\n", + "ms.make_sub_plot([time], fontsize=18)\n", + "\n", + "banana = ms.name_search(\"banana_detector\", data)\n", + "banana.set_plot_options(log=True, orders_of_mag=7, cut_max=0.001)\n", + "ms.make_sub_plot([banana], fontsize=18)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "The data from the two spatial loggers show scattering location within the cryostat, and we see one beam entering the cryostat, yet two beams leaving as we satisfy the Bragg condition for the sample. This also result in scattering from when the scattered beam intersect the sample environment.\n", + "\n", + "We have two 2DQ loggers recording the scattering vector, one just for the sample and one for the sample environment. On the sample monitor we see that many Bragg peaks scatter some intensity, but 010 and 0-10 have the most intensity, they are at [0.9, -1.5] and [1.5, -0.9]. The two circles are incoherent scattering from the two most common wavevectors, the initial beam and the beam scattered from 010. On the 2DQ logger for the sample environment, we mainly see the Debye-Scherrer cones as lines within the circles defined by the two predominant wavevectors. It seems the used wavelength allows two different Bragg conditions to be met in the aluminium.\n", + "\n", + "The time logger shows a surprising amount of complexity. The 5 peaks from entering and exiting two layers and intersecting the sample are clear, but all structure after 0.0012 is a surprise. There is also an unexpected peak at 0.00115, this may be the scattered beam intersecting the outer layer of the cryostat, this happens a bit sooner than the direct beam because the path is shorter when scattered from the front of the sample.\n", + "\n", + "The time of flight vs 2theta monitor also has a large amount of complexity that is not simple to explain. The bright spot at [0, 0.00155] is the direct beam, while the spot at [60, 0.00155] is the scattered beam. The horizontal line at t=0.00155 must be incoherent scattering from the sample, as it must have had the same distance to all points on the detector. The curved lower branch could be incoherent scattering from where the beam enters the cryostat, as that is closest to the 180 deg point on the detector. The remaining hot spots are all some Debye Scherrer cones from a beam entering or exiting the sample environment, and the more blurry spots may be of even higher order." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Conditional components\n", + "We can use conditional components to investigate peaks in the final scattering pattern, by limiting the loggers to only recording events that for example end in a certain spot. Currently there are two available\n", + "- Union_conditional_standard\n", + "- Union_conditional_PSD\n", + "\n", + "The standard version allows limits for energy, time and number of scattering events for the neutron when it exits the *Union_master* simulation, in this case when it leaves the sample environment.\n", + "\n", + "The PSD version propagates the final neutron states to a given rectangular surface and it is possible to filter the logger events on the neutron state when it reaches this surface, and ignores all events that misses. This is what we will use here to investigate a peak in the scattering pattern. We also set a time limit as our detector is time of flight sensitive.\n", + "\n", + "Here are the important parameters for the Union_conditional_PSD component\n", + "- target_loggers : comma separated string of logger names this conditional should affect\n", + "- xwidth : width of rectangle\n", + "- yheight : height of rectangle\n", + "- time_min : lower time limit for condition\n", + "- time_max : upper time limit for condition\n", + "- overwrite_logger_weight : If set to 1, will weight logger results with the final ray weight" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Set up instrument parameters describing what spot to investigate\n", + "instrument.add_parameter(\"tag_angle\", value=-95)\n", + "instrument.add_parameter(\"tag_time\", value=0.00188)\n", + "instrument.add_parameter(\"tag_interval\", value=9E-5)\n", + "\n", + "# Set up an arm pointing to the relevant spot\n", + "spot_dir = instrument.add_component(\"spot_dir\", \"Arm\",\n", + " RELATIVE=cryostat_center, before=\"master\")\n", + "spot_dir.set_ROTATED([0, \"tag_angle\", 0], RELATIVE=cryostat_center)\n", + "\n", + "# Set up a conditional component targeting all our loggers\n", + "PSD_conditional = instrument.add_component(\"space_all_PSD_conditional\", \"Union_conditional_PSD\",\n", + " before=\"master\")\n", + "\n", + "loggers = '\"logger_space_zx,logger_space_zy,logger_time_all,logger_2DQ_sample,logger_2DQ_environment\"'\n", + "PSD_conditional.target_loggers = loggers\n", + "PSD_conditional.xwidth = 0.2\n", + "PSD_conditional.yheight = 0.2\n", + "PSD_conditional.time_min = \"tag_time-0.5*tag_interval\"\n", + "PSD_conditional.time_max = \"tag_time+0.5*tag_interval\"\n", + "# Ensure the position of the conditional rectangle is on the detector surface\n", + "PSD_conditional.set_AT([0, 0, 0.5], RELATIVE=spot_dir) \n", + "\n", + "# Add a monitor with flag that is only active when the condition in the conditional is true\n", + "instrument.add_declare_var(\"int\", \"flag1\")\n", + "logger_space_zx.logger_conditional_extend_index = 1\n", + "master.append_EXTEND(\"flag1 = logger_conditional_extend_array[1];\")\n", + "\n", + "# Copy of our banana detector, but with WHEN condition to verify we are investigating the right peak\n", + "banana_detector = instrument.add_component(\"banana_detector_limited\", \"Monitor_nD\")\n", + "banana_detector.set_RELATIVE(cryostat_center)\n", + "banana_detector.xwidth = 1\n", + "banana_detector.yheight = 0.2\n", + "banana_detector.restore_neutron = 1\n", + "options = '\"banana, theta limits=[-180,180] bins=361, t limits=[0.0011 0.0025] bins=500\"'\n", + "banana_detector.options = options\n", + "banana_detector.filename = '\"tof_b_limited.dat\"'\n", + "banana_detector.set_WHEN(\"flag1 > 0\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run the simulation\n", + "We run the simulation again with a larger ncount, as the loggers now only record a small fraction of the scattered neutrons. You can investigate other areas of interest by changing *tag_angle*, *tag_time* and *tag_interval* to another interesting location on the time of flight detector.\n", + "\n", + "If MPI is installed add mpi=N where N is the number of CPU cores available in your computer to speed up the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=wavelength, A3_angle=theta, \n", + " tag_angle=-95, tag_time=0.00188, tag_interval=9E-5)\n", + "instrument.settings(ncount=3E6) # Can add mpi to improve speed for this longer simulation\n", + "\n", + "data_con = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Confirm our conditional is on the desired peak\n", + "First we plot our 2theta / time of flight detector and the version limited to what the conditional records to confirm that we selected an appropriate region to investigate." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana = ms.name_search(\"banana_detector\", data_con)\n", + "banana.set_plot_options(log=True, orders_of_mag=7, cut_max=0.001)\n", + "\n", + "banana_limited = ms.name_search(\"banana_detector_limited\", data_con)\n", + "banana_limited.set_plot_options(log=False)\n", + "\n", + "ms.make_sub_plot([banana, banana_limited], fontsize=10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Plotting the loggers, now limited by the conditional\n", + "We use a different colormap here instead of the standard jet, because in jet the lowest and highest intensity are both dark colors. By choosing a colormap where zero intensity is white, it blends in with white from lack of data which is beneficial in this situation for clearly seeing the hotspots." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = ms.name_search(\"logger_space_zx\", data_con)\n", + "logger_zx.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zy = ms.name_search(\"logger_space_zy\", data_con)\n", + "logger_zy.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_sample = ms.name_search(\"logger_2DQ_sample\", data_con)\n", + "logger_2DQ_sample.set_plot_options(log=True, orders_of_mag=7, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_env = ms.name_search(\"logger_2DQ_environment\", data_con)\n", + "logger_2DQ_env.set_plot_options(log=True, orders_of_mag=7, colormap=\"YlOrRd\")\n", + "\n", + "ms.make_sub_plot([logger_zx, logger_zy, logger_2DQ_sample, logger_2DQ_env], fontsize=10)\n", + "\n", + "time = ms.name_search(\"logger_time_all\", data_con)\n", + "time.set_plot_options(log=True, orders_of_mag=6)\n", + "\n", + "ms.make_sub_plot([time], fontsize=18)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Interpreting the data from loggers with conditional\n", + "Now that the loggers only show scattering from neutrons that end in our specific peak of interest, we can explain the origin of this peak. The spatial loggers show that scattering primarily happens in the sample, and in the outer part of the cryostat where the scattered beam leaves the sample environment. It is in this case obvious the first scattering is in the sample, as the exit area is not within the direct beam, but one can create individual loggers for each scattering order in order to confirm this.\n", + "\n", + "On the 2DQ logger for the sample it is clear the scattering is from the main Bragg peak (010 and 0-10). We see two peaks as a ray scattered from a Bragg peak will fulfil the Bragg condition of the opposite reciprocal indices. On the 2DQ logger for the sample environment, we see the brightest spot is a small part of a Debye-Scherrer cone. Scattered neutrons from other parts of this cone will not hit our conditional PSD, some may not even hit the detector at all.\n", + "\n", + "That means this specific peak was an uneven number of single crystal scattering events in 010/0-10 in the sample followed by a powder scattering in the outer wall of the sample environment. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Using the final weight option\n", + "Here we rerun the simulation with the overwrite_logger_weight option in the conditional turned on to see the effect. Without it a ray is recorded in the loggers if it satisfy the conditional, but it does not matter how large the final weight is. For this reason, some rays with high sampling probability to reach the condition but low weight are represented more than is appropriate. This is mainly important when shielding is simulated, as rays that pass through the shielding can be heavily overrepresented." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "PSD_conditional.overwrite_logger_weight = 1\n", + "\n", + "data_con_f = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = ms.name_search(\"logger_space_zx\", data_con_f)\n", + "logger_zx.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zy = ms.name_search(\"logger_space_zy\", data_con_f)\n", + "logger_zy.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_sample = ms.name_search(\"logger_2DQ_sample\", data_con_f)\n", + "logger_2DQ_sample.set_plot_options(log=True, orders_of_mag=7, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_env = ms.name_search(\"logger_2DQ_environment\", data_con_f)\n", + "logger_2DQ_env.set_plot_options(log=True, orders_of_mag=7, colormap=\"YlOrRd\")\n", + "\n", + "ms.make_sub_plot([logger_zx, logger_zy, logger_2DQ_sample, logger_2DQ_env], fontsize=10)\n", + "\n", + "time = ms.name_search(\"logger_time_all\", data_con_f)\n", + "time.set_plot_options(log=True, orders_of_mag=6)\n", + "\n", + "ms.make_sub_plot([time], fontsize=18)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Comparison between normal and overwrite_logger_weight\n", + "Here we make a direct comparison, and see only a slight difference in this case. No shielding is simulated here which would cause a much more clear difference." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = ms.name_search(\"logger_space_zx\", data_con)\n", + "logger_zx.set_title(\"Conditional\")\n", + "logger_zx.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zy = ms.name_search(\"logger_space_zy\", data_con)\n", + "logger_zy.set_title(\"Conditional\")\n", + "logger_zy.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zx_f = ms.name_search(\"logger_space_zx\", data_con_f)\n", + "logger_zx_f.set_title(\"Conditional final weight\")\n", + "logger_zx_f.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zy_f = ms.name_search(\"logger_space_zy\", data_con_f)\n", + "logger_zy_f.set_title(\"Conditional final weight\")\n", + "logger_zy_f.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "ms.make_sub_plot([logger_zx, logger_zy, logger_zx_f, logger_zy_f], fontsize=10)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 200 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/Union_tutorial_5_masks.ipynb b/docs/source/tutorial/Union_tutorial_5_masks.ipynb new file mode 100644 index 00000000..353736c1 --- /dev/null +++ b/docs/source/tutorial/Union_tutorial_5_masks.ipynb @@ -0,0 +1,409 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Union tutorial on masks\n", + "There are some geometries that are impossible to build using only the priority based system geometry system, for example making part of a cylinder thinner, which is needed for a cryostat window. In many such cases, masks can be used to solve the problem." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setting up an example without masks\n", + "First we set up an example with a thick and hollow Al cylinder and a logger to view the spatial distribution of scattering." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2], factor 100\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "\n", + "src.xwidth = 0.2\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "\n", + "\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "wall = instrument.add_component(\"wall\", \"Union_cylinder\")\n", + "wall.set_AT([0,0,1], RELATIVE=src)\n", + "wall.yheight = 0.15\n", + "wall.radius = 0.1\n", + "wall.material_string='\"Al\"' \n", + "wall.priority = 10\n", + "\n", + "wall_vac = instrument.add_component(\"wall_vacuum\", \"Union_cylinder\")\n", + "wall_vac.set_AT([0,0,0], RELATIVE=wall)\n", + "wall_vac.yheight = 0.15 + 0.01\n", + "wall_vac.radius = 0.1 - 0.02\n", + "wall_vac.material_string='\"Vacuum\"' \n", + "wall_vac.priority = 50\n", + "\n", + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(wall)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.12\n", + "logger_zx.D1_max = 0.12\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.12\n", + "logger_zx.D2_max = 0.12\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "\n", + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the above diagram it is clear that the wall is made of Al and the master simulates the wall and the wall_vacuum." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.settings(ncount=2E6, output_path=\"data_folder/union_masks\")\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Masks\n", + "All Union geometries can act as a mask for a list of other already defined geometries. The geometries affected by a mask will only exist inside the mask, while the parts outside will not have any effect on this simulation. This provides some interesting geometrical capabilities, for example by defining two spheres with some overlap and making one a mask of the other, a classical lens shape can be created.\n", + "\n", + "The relevant parameters of all geometry components are:\n", + "- mask_string : comma separated list of geometry names the mask should be applied to\n", + "- mask_setting : selects between \"ANY\" or \"ALL\" mode. Default mode is \"ALL\".\n", + "\n", + "The mask mode is only important if several masks affect the same geometry, per default just having any of the masks overlap the target geometry allow it to exists, which correspond to the \"ANY\" mode. If the \"ALL\" mode is selected, the target geometry will only exists in regions where all the masks and itself overlap.\n", + "\n", + "Note that a unique priority is still necessary, but it is not used." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding a window using masks\n", + "Here we add a window to one side of the cylinder by inserting a larger vacuum cylinder, but mask it so that it is only active in the area around the window. In this way we get a nice curved window. We chose a box shape for the mask, but we could also have chosen a cylinder to get a round window." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "window = instrument.add_component(\"window\", \"Union_cylinder\", before=\"master\")\n", + "window.set_AT([0,0,0], RELATIVE=wall)\n", + "window.yheight = 0.15 + 0.02\n", + "window.radius = 0.1 - 0.01\n", + "window.material_string='\"Vacuum\"' \n", + "window.priority = 25\n", + "\n", + "mask = instrument.add_component(\"mask\", \"Union_box\", before=\"master\")\n", + "mask.xwidth = 0.1\n", + "mask.yheight = 0.2\n", + "mask.zdepth = 0.09\n", + "mask.priority = 1\n", + "mask.mask_string='\"window\"'\n", + "mask.set_AT([0,0,-0.1], RELATIVE=wall)\n", + "\n", + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The windows was added to the diagram and is connected to the master as expected. The mask shows up as a component that only acts on the window geometry, as the mask itself is not simulated, it just modifies the window." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding an external window using a mask\n", + "It is also possible to create a thinner section where the material is reduced from the outside. Here we need to add both a vacuum and an aluminium geometry, both of which need to have a priority lower than the original inner vacuum. One mask can handle several geometries, just include both names in the *mask_string* parameter." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "o_window = instrument.add_component(\"outer_window\", \"Union_cylinder\", before=\"master\")\n", + "o_window.set_AT([0,0,0], RELATIVE=wall)\n", + "o_window.yheight = 0.15 + 0.03\n", + "o_window.radius = 0.1 + 0.01\n", + "o_window.material_string='\"Vacuum\"' \n", + "o_window.priority = 30\n", + "\n", + "o_window_al = instrument.add_component(\"outer_window_Al\", \"Union_cylinder\", before=\"master\")\n", + "o_window_al.set_AT([0,0,0], RELATIVE=wall)\n", + "o_window_al.yheight = 0.15 + 0.04\n", + "o_window_al.radius = 0.1 - 0.01\n", + "o_window_al.material_string='\"Al\"' \n", + "o_window_al.priority = 31\n", + "\n", + "mask = instrument.add_component(\"mask_outer\", \"Union_box\", before=\"master\")\n", + "mask.xwidth = 0.12\n", + "mask.yheight = 0.2\n", + "mask.zdepth = 0.09\n", + "mask.priority = 2\n", + "mask.mask_string='\"outer_window,outer_window_Al\"'\n", + "mask.set_AT([0,0,0.1], RELATIVE=wall)\n", + "\n", + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "For the outer window the mask_outer acts on two geometries, outer_window and outer_window_Al. Notice that both the arrow for Al and mask_outer go to outer_window_Al as they both impact that component, one as a material and the other as a mask." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Masks are flexible\n", + "Masks can be used to create many interesting shapes with few geometries. Below we create a octagon with rounded corners using just three geometries, two of these being masks. Using masks expands the space of possible geometries greatly, and in many cases can also be a performance advantage when they reduce the number of geometries needed to describe the desired geometry." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")\n", + "\n", + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2], factor 100\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "\n", + "src.xwidth = 0.2\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "\n", + "instrument.add_parameter(\"wavelength\", value=5.0, comment=\"Wavelength in [Ang]\")\n", + "src.lambda0=\"wavelength\"\n", + "src.dlambda=\"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "box = instrument.add_component(\"box\", \"Union_box\")\n", + "box.set_AT([0,0,1], RELATIVE=src)\n", + "box.xwidth = 0.2\n", + "box.yheight = 0.1\n", + "box.zdepth = 0.2\n", + "box.material_string='\"Al\"' \n", + "box.priority = 10\n", + "\n", + "# Cut the corners by using an identical box rotated 45 deg around y\n", + "box_mask = instrument.add_component(\"box_mask\", \"Union_box\")\n", + "box_mask.set_AT([0,0,0], RELATIVE=box)\n", + "box_mask.set_ROTATED([0,45,0], RELATIVE=box)\n", + "box_mask.xwidth = 0.2\n", + "box_mask.yheight = 0.11 # Have to increase yheight to avoid perfect overlap\n", + "box_mask.zdepth = 0.2\n", + "box_mask.mask_string='\"box\"' \n", + "box_mask.priority = 50\n", + "\n", + "# Round the corners with a cylinder mask\n", + "cyl_mask = instrument.add_component(\"cylinder_mask\", \"Union_cylinder\")\n", + "cyl_mask.set_AT([0,0,0], RELATIVE=box)\n", + "cyl_mask.radius = 0.105\n", + "cyl_mask.yheight = 0.12\n", + "cyl_mask.mask_string='\"box\"' \n", + "cyl_mask.priority = 51\n", + "\n", + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(box)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.12\n", + "logger_zx.D1_max = 0.12\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.12\n", + "logger_zx.D2_max = 0.12\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "\n", + "\n", + "instrument.show_diagram()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/Union_tutorial_6_Exit_and_number_of_activations.ipynb b/docs/source/tutorial/Union_tutorial_6_Exit_and_number_of_activations.ipynb new file mode 100644 index 00000000..d39a9b2a --- /dev/null +++ b/docs/source/tutorial/Union_tutorial_6_Exit_and_number_of_activations.ipynb @@ -0,0 +1,447 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced geometry component concepts: Exit geometry and number of activations\n", + "This notebook explains the concept of exit geometry and the activation counter both of which are tied to the geometry components and how they are treated by the *Union_master*.\n", + "\n", + "An exit geometry is created by setting the *material_string* of a geometry to \"Exit\", and if a ray enters such a geometry, it is immediately released from the master component. Normally this only happens when the ray does not intersect any geometries. There are several uses for this, for example inserting a monitor within a Union geometry ensemble." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up an example with empty sample container\n", + "First we set up an example with an empty sample container." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2], factor 100\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "sample_volume = instrument.add_component(\"sample_volume\", \"Union_cylinder\")\n", + "sample_volume.yheight = 0.03\n", + "sample_volume.radius = 0.0075\n", + "sample_volume.material_string='\"Vacuum\"' \n", + "sample_volume.priority = 100\n", + "sample_volume.set_AT([0,0,1], RELATIVE=src)\n", + "\n", + "container = instrument.add_component(\"sample_container\", \"Union_cylinder\")\n", + "container.set_RELATIVE(sample_volume)\n", + "container.yheight = 0.03+0.003 # 1.5 mm top and button\n", + "container.radius = 0.0075 + 0.0015 # 1.5 mm sides of container\n", + "container.material_string='\"Al\"' \n", + "container.priority = 99\n", + "\n", + "container_lid = instrument.add_component(\"sample_container_lid\", \"Union_cylinder\")\n", + "container_lid.set_AT([0, 0.0155, 0], RELATIVE=container)\n", + "container_lid.yheight = 0.004\n", + "container_lid.radius = 0.013\n", + "container_lid.material_string='\"Al\"' \n", + "container_lid.priority = 98\n", + "\n", + "inner_wall = instrument.add_component(\"cryostat_wall\", \"Union_cylinder\")\n", + "inner_wall.set_AT([0,0,0], RELATIVE=sample_volume)\n", + "inner_wall.yheight = 0.12\n", + "inner_wall.radius = 0.03\n", + "inner_wall.material_string='\"Al\"' \n", + "inner_wall.priority = 80\n", + "\n", + "inner_wall_vac = instrument.add_component(\"cryostat_wall_vacuum\", \"Union_cylinder\")\n", + "inner_wall_vac.set_AT([0,0,0], RELATIVE=sample_volume)\n", + "inner_wall_vac.yheight = 0.12 - 0.008\n", + "inner_wall_vac.radius = 0.03 - 0.002\n", + "inner_wall_vac.material_string='\"Vacuum\"' \n", + "inner_wall_vac.priority = 81\n", + "\n", + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(sample_volume)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.04\n", + "logger_zx.D1_max = 0.04\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.04\n", + "logger_zx.D2_max = 0.04\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "logger_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_zy.set_RELATIVE(sample_volume)\n", + "logger_zy.D_direction_1 = '\"z\"'\n", + "logger_zy.D1_min = -0.04\n", + "logger_zy.D1_max = 0.04\n", + "logger_zy.n1 = 300\n", + "logger_zy.D_direction_2 = '\"y\"'\n", + "logger_zy.D2_min = -0.06\n", + "logger_zy.D2_max = 0.06\n", + "logger_zy.n2 = 300\n", + "logger_zy.filename = '\"logger_zy.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "\n", + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample_volume)\n", + "banana.xwidth = 1.5\n", + "banana.yheight = 0.4\n", + "banana.restore_neutron = 1\n", + "banana.options = '\"theta limits=[5 175] bins=250, banana\"'\n", + "\n", + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We see there is one material defined, *Al*, and 3 of the 5 geometries use this as their material. The 5 geometries are all picked up by the master component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=3.0)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_external\")\n", + "\n", + "data_empty = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data_empty, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data_empty, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data_empty[0:2])\n", + "ms.make_sub_plot(data_empty[2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The loggers show our empty cryostat and sample container illuminated by a beam, and the banana monitor contains some powder scattering from the aluminium. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding an exit volume\n", + "Now we switch the sample_volume material from Vacuum to exit, ejecting rays from the simulation when they encounter it." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample_volume.material_string='\"Exit\"'\n", + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The diagram does not change between *Vacuum* and *Exit* being used for the *sample_volume*. Let us run the simulation and see the difference." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data[0:2])\n", + "ms.make_sub_plot(data[2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "From the logger data one can see the back part of the sample container and exit of the cryostat is no longer illuminated, as the rays are removed from the Union simulation as soon as the touch the volume inside the sample container. The removed rays do not disappear completely, they are delivered to the next McStas component in the instrument." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding an external component in the gap\n", + "We can now see any part of the beam that intersected the exit volume is basically removed from the Union simulation. It is now however possible to insert another component within that exit volume, for example a sample not available as a Union process. Here we just use a PowderN sample in order to demonstrate. We select the same dimensions as the exit volume, but subtract 10 micrometer to avoid a perfect overlap." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample = instrument.add_component(\"sample\", \"PowderN\", after=\"master\")\n", + "sample.set_AT([0,0,0], RELATIVE=sample_volume)\n", + "sample.radius = sample_volume.radius - 1E-5\n", + "sample.yheight = sample_volume.yheight - 2E-5\n", + "sample.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation again\n", + "We run the simulation again, but know that the scattering within the sample wont be directly visible in the loggers." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true, + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data_wrong = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data_wrong, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data_wrong, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data_wrong[0:2])\n", + "ms.make_sub_plot(data_wrong[2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "Now we have added a sample inside the Union geometry, but when the neutron reaches that sample, it is ignored by the sample environment leading to unphysical behavior. Here the beam does not illuminate the sample environment on the way out, and all rays scattered by the PowderN sample are not attenuated by the walls of the cryostat when leaving." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Allowing the rays to return to the Union_master\n", + "Now we could recreate the entire sample environment with new geometries and insert an additional unit master to grab the neutrons after the external sample, yet this would be error prone as all geometries would need to be exactly the same. Instead it is possible to tell Union geometries that they should be simulated in several of the next *Union_master* components using the *number_of_activation* parameter on each Union geometry, which is 1 per default.\n", + "\n", + "Setting it to 2, we tell the geometries that they should be simulated in the two next *Union_master* components. We do not update the sample_volume which is an exit volume, as this would allow the ray to escape once more. Instead we will replace it with Vacuum, but one could also have placed something closer to the actual sample.\n", + "\n", + "One last necessary detail is to set the *allow_inside_start* parameter on the second *Union_master* component. This disables an error message that would occur if a neutron starts inside a Union geometry, as this is most likely an error. Here we want to do this on purpose, and we need to let the *Union_master* component know this is allowed." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "container.number_of_activations = 2\n", + "container_lid.number_of_activations = 2\n", + "inner_wall.number_of_activations = 2\n", + "inner_wall_vac.number_of_activations = 2\n", + "\n", + "sample_replacement = instrument.add_component(\"sample_volume_replace\", \"Union_cylinder\", after=sample)\n", + "sample_replacement.yheight = sample_volume.yheight\n", + "sample_replacement.radius = sample_volume.radius\n", + "sample_replacement.material_string='\"Vacuum\"' \n", + "sample_replacement.priority = 101\n", + "sample_replacement.set_AT([0,0,0], RELATIVE=sample_volume)\n", + "\n", + "master_2 = instrument.add_component(\"master_after_sample\", \"Union_master\", after=sample_replacement)\n", + "master_2.allow_inside_start=1\n", + "\n", + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice that *sample_volume* is only simulated in the first master, there is no arrow to the second master as with all the other geometries." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data[0:2])\n", + "ms.make_sub_plot(data[2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "Now we see evidence of the beam leaving the sample environment after interacting with the sample, and also elevated scattering in comparison to the empty can. This is now a reasonable simulation containing an external component inside a Union geometry ensemble, but there is still one problem, if the ray leaves the external component and reenters later, it will find a Vacuum instead of that sample. This can be fixed to some extend by adding a second copy of the external component and a third *Union_master* component, while incrementing the *number_of_activations* on all geometries, then the ray would be able to leave and enter the external component once before the external component effectively disappears. Even with this assumption, it is still a reasonable approximation and a flexible approach to add for example a mirror inside a sample environment." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparison of the three datasets\n", + "Here we compare the three datasets, the empty sample environment, the wrong simulation where rays scattered in the sample could not interact with the sample environment, and the full simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana_empty = ms.name_search(\"banana\", data_empty)\n", + "banana_wrong = ms.name_search(\"banana\", data_wrong)\n", + "banana_sample = ms.name_search(\"banana\", data)\n", + "\n", + "import matplotlib.pyplot as plt\n", + "plt.figure(figsize=(14,6))\n", + "plt.plot(banana_empty.xaxis, banana_empty.Intensity, \"r\",\n", + " banana_wrong.xaxis, banana_wrong.Intensity, \"b\",\n", + " banana_sample.xaxis, banana_sample.Intensity, \"k\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "plt.legend([\"No sample\", \"Wrong simulation, no exit\", \"Full simulation\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "We see that the wrong simulation have slightly lower background, and more peak intensity. We also see the peak shape is different near the aluminium Bragg peaks. Since the Union components contain a powder process, one can also recreate this example without using an external PowderN component to check the accuracy of the approach. It is however not a fair comparison, as the Union powder process will perform multiple scattering where PowderN will not. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/Union_tutorial_7_Tagging_history.ipynb b/docs/source/tutorial/Union_tutorial_7_Tagging_history.ipynb new file mode 100644 index 00000000..da79974c --- /dev/null +++ b/docs/source/tutorial/Union_tutorial_7_Tagging_history.ipynb @@ -0,0 +1,323 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Union tagging system\n", + "The *Union_master* is capable of recording histories for each neutron in a tree like fashion and add the total intensities for each unique history together. At the end of the simulation these are sorted by intensity and written to file, and the top 20 are shown in the terminal. This system does not work with MPI, if MPI is used only part of the data is written to disk. The system can take up a large amount of memory when used, so it is disabled per default.\n", + "\n", + "First we set up a simple instrument with sample, container and a layer of cryostat." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2], factor 100\n", + "\n", + "Sample_inc = instrument.add_component(\"Sample_inc\", \"Incoherent_process\")\n", + "Sample_inc.sigma = 3.4176\n", + "Sample_inc.unit_cell_volume = 1079.1\n", + "\n", + "Sample_pow = instrument.add_component(\"Sample_pow\", \"Powder_process\")\n", + "Sample_pow.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "Sample = instrument.add_component(\"Sample\", \"Union_make_material\")\n", + "Sample.process_string = '\"Sample_inc,Sample_pow\"'\n", + "Sample.my_absorption = 100*2.9464/1079.1\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "sample_geometry = instrument.add_component(\"sample_geometry\", \"Union_cylinder\")\n", + "sample_geometry.yheight = 0.03\n", + "sample_geometry.radius = 0.0075\n", + "sample_geometry.material_string='\"Sample\"' \n", + "sample_geometry.priority = 100\n", + "sample_geometry.set_AT([0,0,1], RELATIVE=src)\n", + "\n", + "container = instrument.add_component(\"sample_container\", \"Union_cylinder\")\n", + "container.set_RELATIVE(sample_geometry)\n", + "container.yheight = 0.03+0.003 # 1.5 mm top and button\n", + "container.radius = 0.0075 + 0.0015 # 1.5 mm sides of container\n", + "container.material_string='\"Al\"' \n", + "container.priority = 99\n", + "\n", + "inner_wall = instrument.add_component(\"cryostat_wall\", \"Union_cylinder\")\n", + "inner_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall.yheight = 0.12\n", + "inner_wall.radius = 0.03\n", + "inner_wall.material_string='\"Al\"' \n", + "inner_wall.priority = 80\n", + "\n", + "inner_wall_vac = instrument.add_component(\"cryostat_wall_vacuum\", \"Union_cylinder\")\n", + "inner_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall_vac.yheight = 0.12 - 0.008\n", + "inner_wall_vac.radius = 0.03 - 0.002\n", + "inner_wall_vac.material_string='\"Vacuum\"' \n", + "inner_wall_vac.priority = 81\n", + "\n", + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(sample_geometry)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.04\n", + "logger_zx.D1_max = 0.04\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.04\n", + "logger_zx.D2_max = 0.04\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "logger_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_zy.set_RELATIVE(sample_geometry)\n", + "logger_zy.D_direction_1 = '\"z\"'\n", + "logger_zy.D1_min = -0.04\n", + "logger_zy.D1_max = 0.04\n", + "logger_zy.n1 = 300\n", + "logger_zy.D_direction_2 = '\"y\"'\n", + "logger_zy.D2_min = -0.06\n", + "logger_zy.D2_max = 0.06\n", + "logger_zy.n2 = 300\n", + "logger_zy.filename = '\"logger_zy.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the Union_master with tagging\n", + "There are two important parameters to consider when setting a *Union_master* up for tagging:\n", + "- enable_tagging [default 0] 0 for disable, 1 for enable\n", + "- history_limit [default 300000] Limit of unique histories recorded\n", + "\n", + "As the *Union_master* component records each ray in succession, their unique history is added to the history tree. If a ray takes the same path in the tree, the intensity gets added to that unique history. When the history limit is reached, the tree is not built out further, but if already recorded histories occur, their intensity is still added to the existing tree." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "master.enable_tagging = 1\n", + "master.history_limit = 300000" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=3.0)\n", + "instrument.settings(ncount=3E5, output_path=\"data_folder/union_tagging\")\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Finding the history file\n", + "A file called Union_history.dat is written in the run folder with all the unique histories. In some cases a bug happens that causes the file to be unreadable, for now the best fix is to rerun the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "with open(\"run_folder/union_history.dat\", \"r\", errors=\"ignore\") as file:\n", + " instrument_string = file.read()\n", + " print(instrument_string)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the histories\n", + "The history with highest intensity in my run is: V0 -> V3 -> V4 -> V2 -> V1 -> V2 -> V4 -> V3 -> V0, which means:\n", + "- Neutron entered Volume0 (Surrounding vacuum)\n", + "- Neutron entered Volume3 (Cryostat wall)\n", + "- Neutron entered Volume4 (Cryostat vacuum)\n", + "- Neutron entered Volume2 (Container)\n", + "- Neutron entered Volume1 (Sample)\n", + "- Neutron entered Volume2 (Container)\n", + "- Neutron entered Volume4 (Cryostat vacuum)\n", + "- Neutron entered Volume3 (Cryostat wall)\n", + "- Neutron entered Volume0 (Surrounding vacuum)\n", + "\n", + "So the most likely occurrence is that the ray is propagated through all geometries. The next most likely history is:\n", + "\n", + "V0 -> V3 -> V4 -> V2 -> V1 -> P1 -> V2 -> V4 -> V3 -> V0\n", + "\n", + "- Neutron entered Volume0 (Surrounding vacuum)\n", + "- Neutron entered Volume3 (Cryostat wall)\n", + "- Neutron entered Volume4 (Cryostat vacuum)\n", + "- Neutron entered Volume2 (Container)\n", + "- Neutron entered Volume1 (Sample)\n", + "- Neutron scattered on Process1 (Since we are in Volume1, that would be Sample_pow)\n", + "- Neutron entered Volume2 (Container)\n", + "- Neutron entered Volume4 (Cryostat vacuum)\n", + "- Neutron entered Volume3 (Cryostat wall)\n", + "- Neutron entered Volume0 (Surrounding vacuum)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Use conditional component to filter tagging\n", + "Just like a logger can be modified by a conditional component to only record events that satisfy that condition, the tagging system of the *Union_master* component can also be modified by a conditional component. In that case, the tagging system will only record events that satisfy the condition imposed by the conditional component.\n", + "\n", + "This can be useful to explain an unexpected feature, as the conditional components can filter for energy, time, direction or any combination of these. Here we demonstrate this feature by adding a *Union_conditional_PSD* outside of the direct beam and enabling the *master_tagging* control parameter, which causes the condition to be applied to the tagging system." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Set up an arm pointing to the relevant spot\n", + "spot_dir = instrument.add_component(\"spot_dir\", \"Arm\", RELATIVE=sample_geometry,\n", + " before=\"master\")\n", + "spot_dir.set_ROTATED([0, 60, 0], RELATIVE=sample_geometry)\n", + "\n", + "# Set up a conditional component targeting all our loggers\n", + "PSD_conditional = instrument.add_component(\"space_all_PSD_conditional\", \"Union_conditional_PSD\",\n", + " before=\"master\")\n", + "PSD_conditional.xwidth = 0.2\n", + "PSD_conditional.yheight = 0.2\n", + "PSD_conditional.master_tagging = 1\n", + "PSD_conditional.set_AT([0, 0, 0.5], RELATIVE=spot_dir) " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "with open(\"run_folder/union_history.dat\", \"r\", errors=\"ignore\") as file:\n", + " instrument_string = file.read()\n", + " print(instrument_string)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the data\n", + "Now all the histories contain a scattering process as this is necessary to reach the rectangle placed by the Union_conditional_PSD component set at 2theta = 60 deg. We also observe the intensities are much lower, simply because only a fraction of the simulated rays satisfy this condition." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/docs/source/tutorial/animation_demo.gif b/docs/source/tutorial/animation_demo.gif new file mode 100644 index 00000000..a3e25356 Binary files /dev/null and b/docs/source/tutorial/animation_demo.gif differ diff --git a/docs/source/tutorial/animation_demo_long.gif b/docs/source/tutorial/animation_demo_long.gif new file mode 100644 index 00000000..0ed830e8 Binary files /dev/null and b/docs/source/tutorial/animation_demo_long.gif differ diff --git a/docs/source/tutorial/data_folder/note.txt b/docs/source/tutorial/data_folder/note.txt new file mode 100644 index 00000000..fa985a4a --- /dev/null +++ b/docs/source/tutorial/data_folder/note.txt @@ -0,0 +1 @@ +This folder will contain data files from McStas simulations performed in the notebook. diff --git a/docs/source/tutorial/run_folder/note.txt b/docs/source/tutorial/run_folder/note.txt new file mode 100644 index 00000000..1a8cb02d --- /dev/null +++ b/docs/source/tutorial/run_folder/note.txt @@ -0,0 +1,2 @@ +McStas components, library functions and data files placed here can be used in tutorial notebooks. +This folder will also contain generated instrument files. diff --git a/docs/source/user_guide/component_object.ipynb b/docs/source/user_guide/component_object.ipynb new file mode 100644 index 00000000..bd6cbc5e --- /dev/null +++ b/docs/source/user_guide/component_object.ipynb @@ -0,0 +1,546 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "valid-array", + "metadata": {}, + "source": [ + "# Component object\n", + "McStas components are the essential building blocks used to make McStas simulations. This sections focuses on how to work with [component objects](../_autosummary/mcstasscript.helper.mcstas_objects.Component.rst) in McStasScript.\n", + "\n", + "Since a component is always part of an instrument, new components are created in the instrument object so that they may immediately be registered and controlled by that instrument object." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "widespread-maple", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "\n", + "instrument = ms.McStas_instr(\"component_examples\")" + ] + }, + { + "cell_type": "markdown", + "id": "piano-anderson", + "metadata": {}, + "source": [ + "## Creating a component object\n", + "A [component object](../_autosummary/mcstasscript.helper.mcstas_objects.Component.rst) is returned from the *add_component* and *copy_component* instrument object methods. When creating a [component object](../_autosummary/mcstasscript.helper.mcstas_objects.Component.rst), it needs an instance name and the name of the component in the library. When copying a component, the same library component is used." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "documentary-import", + "metadata": {}, + "outputs": [], + "source": [ + "source = instrument.add_component(\"source\", \"Source_div\")\n", + "print(source)" + ] + }, + { + "cell_type": "markdown", + "id": "confidential-active", + "metadata": {}, + "source": [ + "## Setting component parameters\n", + "Since the underlying McStas component is read, McStasScript is aware of the parameters, including which are required from the user. These can be set directly as attributes or with the *set_parameters* method." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dynamic-holmes", + "metadata": {}, + "outputs": [], + "source": [ + "source.xwidth = 0.1\n", + "source.set_parameters(yheight=0.03)\n", + "print(source)" + ] + }, + { + "cell_type": "markdown", + "id": "naked-harbor", + "metadata": {}, + "source": [ + "Trying to set a parameter that does not exist would lead to an error. The full list of parameters in a component can be shown with *show_parameters*. This also show the current state of the component, including default values and values set by the user." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "respective-spectrum", + "metadata": {}, + "outputs": [], + "source": [ + "source.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "id": "liable-spokesman", + "metadata": {}, + "source": [ + "## Setting the component position and rotation\n", + "The default location of a component is at the origin of the absolute coordinate system used in McStas. The placement of components in space is very important, and McStas provides easy coordinate transfers when placing each component, which are accessible from McStasScript. In McStas one specifies the position with **AT** and orientation with **ROTATED**. Each of these can be relative to a reference, which is set with **RELATIVE**. This behavior is adopted in McStasScript where *set_AT* and *set_ROTATED* methods are available.\n", + "\n", + "If for example we want to shift our source a bit horizontally, we would use a list as a vector. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "respiratory-springer", + "metadata": {}, + "outputs": [], + "source": [ + "source.set_AT([0.02, 0, 0])\n", + "print(source)" + ] + }, + { + "cell_type": "markdown", + "id": "twelve-roommate", + "metadata": {}, + "source": [ + "In McStas convention the beam direction is along z, and it is common to place components some distance down beam, and so if a number is given instead of a list, it is assumed to be along z." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "compatible-romance", + "metadata": {}, + "outputs": [], + "source": [ + "source.set_AT(0.01)\n", + "print(source)" + ] + }, + { + "cell_type": "markdown", + "id": "wrong-garbage", + "metadata": {}, + "source": [ + "The position and rotation can also be specified when creating a new component with the *AT* and *RELATIVE* keywords. With the **RELATIVE** option we are now in the coordinate system of the reference component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "familiar-joshua", + "metadata": {}, + "outputs": [], + "source": [ + "monitor = instrument.add_component(\"PSD\", \"PSD_monitor\", AT=[0, 0, 2], RELATIVE=source)\n", + "print(monitor)" + ] + }, + { + "cell_type": "markdown", + "id": "expressed-supplement", + "metadata": {}, + "source": [ + "Setting the rotation is similar with the *set_ROTATED* method. The rotation is specified with euler angles in degrees." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "recreational-overhead", + "metadata": {}, + "outputs": [], + "source": [ + "monitor.set_ROTATED([0, 4, 0])\n", + "print(monitor)" + ] + }, + { + "cell_type": "markdown", + "id": "prepared-harrison", + "metadata": {}, + "source": [ + "Here McStasScript assumed that the rotation should be relative to the source, but it is possible to have another reference for the rotation as shown here." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "automotive-racing", + "metadata": {}, + "outputs": [], + "source": [ + "monitor.set_ROTATED([0, 4, 0], RELATIVE=\"ABSOLUTE\")\n", + "print(monitor)" + ] + }, + { + "cell_type": "markdown", + "id": "tired-breakfast", + "metadata": {}, + "source": [ + "When setting both position and rotation at initialization one can distinguish between the reference for position and rotation with the *AT_RELATIVE* and *ROTATED_RELATIVE* keywords." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "beautiful-marking", + "metadata": {}, + "outputs": [], + "source": [ + "guide = instrument.add_component(\"guide\", \"Guide\",\n", + " AT=2, AT_RELATIVE=source, \n", + " ROTATED=[0,0,0], ROTATED_RELATIVE=monitor)\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "id": "opened-athletics", + "metadata": {}, + "source": [ + "## Using parameters in a component\n", + "It is common to use defined [parameters](../_autosummary/mcstasscript.helper.mcstas_objects.ParameterVariable.rst) and [declare variables](../_autosummary/mcstasscript.helper.mcstas_objects.DeclareVariable.rst) in a component, and they can even be defined directly where needed. The parameter section of the documentation explain the details of setting up parameters, but here it is shown how they are used in components.\n", + "\n", + "After creating a parameter, it can be used when assigning component parameters. Just use a string with the same name, and it can even contain basic math." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "better-massachusetts", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.add_parameter(\"guide_width\")\n", + "guide.w1 = \"guide_width\"\n", + "guide.h1 = \"1.5*guide_width\"\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "id": "capable-touch", + "metadata": {}, + "source": [ + "When creating a [parameter](../_autosummary/mcstasscript.helper.mcstas_objects.ParameterVariable.rst) or [declare variable](../_autosummary/mcstasscript.helper.mcstas_objects.DeclareVariable.rst), an object is returned which can be provided to the component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "accomplished-currency", + "metadata": {}, + "outputs": [], + "source": [ + "guide_length = instrument.add_declare_var(\"double\", \"guide_length\")\n", + "guide.l = guide_length\n", + "\n", + "guide.m = instrument.add_parameter(\"guide_m_value\")\n", + "\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "id": "large-auditor", + "metadata": {}, + "source": [ + "These features cover the majority of use-cases for McStas components." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "discrete-celebrity", + "metadata": {}, + "outputs": [], + "source": [ + "guide.set_comment(\"This guide points in the same direction as the PSD monitor\")\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "id": "removable-national", + "metadata": {}, + "source": [ + "## Advanced features\n", + "In McStas / McXtrace there are a number of advanced features which can be used to control component behavior in the simulation. In the tutorial section these keywords are explained and demonstrated, here it is shown how they are applied. Most of these can be set when creating a component or through component methods." + ] + }, + { + "cell_type": "markdown", + "id": "technological-garden", + "metadata": {}, + "source": [ + "### SPLIT\n", + "The split keyword instructs the simulation to split the ray into multiple smaller rays to improve statistics. This is done before the component that has the SPLIT keyword applied. The split value must be an integer. Use the SPLIT keyword to set split while creating a new component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "equal-tactics", + "metadata": {}, + "outputs": [], + "source": [ + "guide.set_SPLIT(150)\n", + "print(guide)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "adequate-small", + "metadata": {}, + "outputs": [], + "source": [ + "print(instrument.add_component(\"Splitter\", \"Arm\", SPLIT=180))" + ] + }, + { + "cell_type": "markdown", + "id": "registered-roommate", + "metadata": {}, + "source": [ + "The split keyword can be removed from a component by setting split to 0." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "french-bangladesh", + "metadata": {}, + "outputs": [], + "source": [ + "guide.set_SPLIT(0)\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "id": "opened-stewart", + "metadata": {}, + "source": [ + "### EXTEND\n", + "A component can be extended with additional C code that has a special scope. It can access both parameters and variable from the component, and the instrument. Lines of extend code can be added with the *append_EXTEND* method. Beware that this code is executed for each neutron that reach the component and during the ray-tracing simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "academic-outside", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "instrument.add_declare_var(\"int\", \"flag\")\n", + "guide.append_EXTEND(\" if (x>0) flag = 1;\")\n", + "guide.append_EXTEND(\" else flag = 0;\")\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "id": "initial-federation", + "metadata": {}, + "source": [ + "### WHEN\n", + "The WHEN keyword can be used to set a condition for when a component should be applied to the ray. The input for a WHEN condition is a logical c expression that can use variables in the instrument scope. Since just the expression is needed, there is no terminating semicolon.\n", + "\n", + "Below a monitor is created which checks the flag defined during the extend example. This monitor will thus only record rays that had a positive x coordinate after the guide. WHEN and EXTEND are often used in conjunction with each other in this way, this is also explored in the tutorial." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "flying-olympus", + "metadata": {}, + "outputs": [], + "source": [ + "left_PSD = instrument.add_component(\"Left_side_PSD\", \"PSD_monitor\")\n", + "left_PSD.set_WHEN(\"flag == 1\")\n", + "print(left_PSD)" + ] + }, + { + "cell_type": "markdown", + "id": "honey-notebook", + "metadata": {}, + "source": [ + "The WHEN keyword can also be applied when adding a component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "immediate-ivory", + "metadata": {}, + "outputs": [], + "source": [ + "right_PSD = instrument.add_component(\"Right_side_PSD\", \"PSD_monitor\", WHEN=\"flag == 0\")\n", + "print(right_PSD)" + ] + }, + { + "cell_type": "markdown", + "id": "cutting-spring", + "metadata": {}, + "source": [ + "### JUMP\n", + "The JUMP keyword allows the user to modify the order in which components are executed on a per neutron level. Using JUMP is complex with several pitfalls, but the syntax is simple. The system is explored in the tutorial on this site, but for full documentation refer to the McStas / McXtrace documentation.\n", + "\n", + "Here the jump keyword is used to jump from the guide component to the target_arm in case the y component of the velocity is positive. That would skip the monitors!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "seven-kingdom", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.add_component(\"target_arm\", \"Arm\", RELATIVE=guide)\n", + "guide.set_JUMP(\"target_arm WHEN (vy>0)\")\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "id": "valid-latitude", + "metadata": {}, + "source": [ + "### GROUP\n", + "The GROUP keyword allows the user to set a number of components in parallel, but only allows a ray to interact with one of them. When two components have the same group name, this behavior is applied." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "consecutive-request", + "metadata": {}, + "outputs": [], + "source": [ + "crystal_1 = instrument.add_component(\"mono_1\", \"Monochromator_flat\")\n", + "crystal_1.set_GROUP(\"monochromator\")\n", + "\n", + "crystal_2 = instrument.add_component(\"mono_2\", \"Monochromator_flat\", GROUP=\"monochromator\")\n", + "\n", + "# Place two crystals in parallel\n", + "crystal_1.set_AT([0.01, 0, 5]) \n", + "crystal_2.set_AT([-0.01, 0, 5])\n", + "\n", + "print(crystal_1)\n", + "print(crystal_2)" + ] + }, + { + "cell_type": "markdown", + "id": "educated-commons", + "metadata": {}, + "source": [ + "### Set c code\n", + "It is possible to add C code between components in the instrument trace section. In McStasScript this is attached to component objects as one can insert code before or after a component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "assigned-content", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "code_arm = instrument.add_component(\"code_arm\", \"Arm\", c_code_before=\"// code before\")\n", + "code_arm.set_c_code_after(\"// code after\")\n", + "print(code_arm)" + ] + }, + { + "cell_type": "markdown", + "id": "verbal-gibson", + "metadata": {}, + "source": [ + "Here this is used to set comments, but there is also the option of setting a comment directly with the comment keyword." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "nuclear-bottle", + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "commented_component = instrument.add_component(\"commented_component\", \"Arm\", comment=\"This is a comment!\")\n", + "print(commented_component)" + ] + }, + { + "cell_type": "markdown", + "id": "better-chance", + "metadata": {}, + "source": [ + "### SEARCH\n", + "It is also possible to set a number of SEARCH statements for a component. McStas will not include the component if it is not found in that search statement. These work just as for instruments and are documented [here](instrument_object.ipynb). Note that McStasScript does not yet search for components in these locations, so for now this syntax can only be used to use different versions of existing components with the same input parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "stable-blond", + "metadata": {}, + "outputs": [], + "source": [ + "arm = instrument.add_component(\"code_arm\", \"Arm\")\n", + "arm.add_search(\"/search/for/component/here\")\n", + "print(arm)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "focused-short", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/user_guide/data.ipynb b/docs/source/user_guide/data.ipynb new file mode 100644 index 00000000..6166fa67 --- /dev/null +++ b/docs/source/user_guide/data.ipynb @@ -0,0 +1,479 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "russian-transparency", + "metadata": {}, + "source": [ + "# Data\n", + "Data from simulations performed by McStasScript is returned as [McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst) objects. This section will explore what these contain and how one can manipulate them. First a small instrument is written that will supply data to investigate.\n", + "\n", + "## Example instrument\n", + "The instrument will consist of a source, a powder sample and some monitors that will record data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "substantial-weekly", + "metadata": { + "tags": [ + "hide-input" + ] + }, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "\n", + "instrument = ms.McStas_instr(\"data_example\")\n", + "\n", + "source = instrument.add_component(\"source\", \"Source_simple\")\n", + "source.set_parameters(xwidth=0.05, yheight=0.03, dlambda=0.1,\n", + " dist=5, focus_xw=0.015, focus_yh=0.03)\n", + "source.lambda0 = instrument.add_parameter(\"wavelength\", value=1.2)\n", + "\n", + "sample = instrument.add_component(\"sample\", \"PowderN\")\n", + "sample.set_parameters(radius=source.focus_xw, yheight=source.focus_yh,\n", + " reflections='\"Na2Ca3Al2F14.laz\"', barns=0)\n", + "sample.set_AT(source.dist, RELATIVE=source)" + ] + }, + { + "cell_type": "markdown", + "id": "sized-henry", + "metadata": {}, + "source": [ + "### Example monitors\n", + "Here three monitors are defined, a 2D PSD monitor, a 1D banana monitor and an event monitor. Monitor_nD is used for the last two, where the option string describes the geometry and what is to be recorded." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "apart-duration", + "metadata": {}, + "outputs": [], + "source": [ + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample)\n", + "banana.set_parameters(xwidth=1.5, yheight=0.4, restore_neutron=1, filename='\"banana.dat\"')\n", + "banana.options = '\"theta limits=[5 175] bins=250, banana\"'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "collaborative-police", + "metadata": {}, + "outputs": [], + "source": [ + "event = instrument.add_component(\"events\", \"Monitor_nD\")\n", + "event.set_AT(0.1, RELATIVE=sample)\n", + "event.set_parameters(xwidth=0.1, yheight=0.1, restore_neutron=1, filename='\"events.dat\"')\n", + "event.options = '\"list all auto, x y z vx vy vz t\"'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "urban-traffic", + "metadata": {}, + "outputs": [], + "source": [ + "mon = instrument.add_component(\"PSD\", \"PSD_monitor\")\n", + "mon.set_AT(0.1, RELATIVE=sample)\n", + "mon.set_parameters(nx=100, ny=100, filename='\"psd.dat\"',\n", + " xwidth=3*sample.radius, yheight=2*sample.yheight, restore_neutron=1)" + ] + }, + { + "cell_type": "markdown", + "id": "center-middle", + "metadata": {}, + "source": [ + "## Generating data\n", + "The simulation is executed using the *backengine* method with a low number of neutrons. The data is returned by the *backengine* method, but will contain None if the simulation failed. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "finished-employment", + "metadata": { + "scrolled": true, + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.settings(ncount=1E5, output_path=\"data_example\")\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "charged-recovery", + "metadata": {}, + "outputs": [], + "source": [ + "print(data)" + ] + }, + { + "cell_type": "markdown", + "id": "interracial-lancaster", + "metadata": {}, + "source": [ + "## McStasData objects\n", + "The data retrieved from the instrument object is in the form of a list that contains [McStasDataBinned](../_autosummary/mcstasscript.data.data.McStasDataBinned.rst) and [McStasDataEvent](../_autosummary/mcstasscript.data.data.McStasDataEvent.rst) objects. McStasScript contains a function called [*name_search*](../_autosummary/mcstasscript.interface.functions.name_search.rst) which can be used to select a certain element of such a data list. It will match the component name first and if no match is found it will check for match with the filename. Here [*name_search*](../_autosummary/mcstasscript.interface.functions.name_search.rst) is used to retrieve the PSD [McStasDataBinned](../_autosummary/mcstasscript.data.data.McStasDataBinned.rst) object." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "knowing-schedule", + "metadata": {}, + "outputs": [], + "source": [ + "PSD = ms.name_search(\"PSD\", data)\n", + "banana = ms.name_search(\"banana\", data)\n", + "events = ms.name_search(\"events\", data)" + ] + }, + { + "cell_type": "markdown", + "id": "competitive-conversion", + "metadata": {}, + "source": [ + "### Accessing metadata\n", + "Both McStasDataBinned and McStasDataEvent object carries relevant metadata in a *metadata* attribute. Using the python print function this object can display basic information on the contained data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "official-major", + "metadata": {}, + "outputs": [], + "source": [ + "print(PSD.metadata)\n", + "print(banana.metadata)\n", + "print(events.metadata)" + ] + }, + { + "cell_type": "markdown", + "id": "virgin-profit", + "metadata": {}, + "source": [ + "The metadata object has attributes which can be accessed as well. The info attribute is a dict with the raw metadata read from the file.\n", + "\n", + "- component_name\n", + "- dimension\n", + "- filename\n", + "- limits\n", + "- parameters\n", + "- info" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "previous-theme", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "PSD.metadata.info" + ] + }, + { + "cell_type": "markdown", + "id": "balanced-spine", + "metadata": {}, + "source": [ + "The total intensity, error or ncount is kept in the values are often of interest, so these are given their own attributes: *total_I*, *total_E* and *total_N*" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "weighted-pillow", + "metadata": {}, + "outputs": [], + "source": [ + "print(PSD.metadata.total_I)\n", + "print(PSD.metadata.total_E)\n", + "print(PSD.metadata.total_N)" + ] + }, + { + "cell_type": "markdown", + "id": "acknowledged-orlando", + "metadata": {}, + "source": [ + "### Accessing the data\n", + "McStasData objects stores the data as [Numpy arrays](https://numpy.org/doc/stable/reference/generated/numpy.array.html), these can be accessed as attributes.\n", + "\n", + "- Intensity: Holds the intensity, sum of all ray weights\n", + "- Error: Error on intensity\n", + "- Ncount: Number of rays that reached " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "composite-property", + "metadata": {}, + "outputs": [], + "source": [ + "print(\"Intensity\")\n", + "print(PSD.Intensity)\n", + "\n", + "print(\"Error\")\n", + "print(PSD.Error)\n", + "\n", + "print(\"Ncount\")\n", + "print(PSD.Ncount)" + ] + }, + { + "cell_type": "markdown", + "id": "registered-vocabulary", + "metadata": {}, + "source": [ + "The original path to the data is also contained within the McStasData object and can be returned with get_data_location." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "adverse-demonstration", + "metadata": {}, + "outputs": [], + "source": [ + "PSD.get_data_location()" + ] + }, + { + "cell_type": "markdown", + "id": "central-democracy", + "metadata": {}, + "source": [ + "### Event data\n", + "McStasDataEvent objecst stores event data, and for this reason does not have *Error* or *Ncount*. The event information is contained in a 2D Numpy array in the *Intensity* and *Events* attributes. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "north-adjustment", + "metadata": {}, + "outputs": [], + "source": [ + "print(events)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "closed-tumor", + "metadata": {}, + "outputs": [], + "source": [ + "print(\"Events\", events.Events)" + ] + }, + { + "cell_type": "markdown", + "id": "fancy-cooling", + "metadata": {}, + "source": [ + "The [McStasDataEvent](../_autosummary/mcstasscript.data.data.McStasDataEvent.rst) objects have some help functions to work with the contained event data. The first is *get_data_column* that returns the data for a given axis. The available axis shown in the table below.\n", + "\n", + "| Axis string | Full name | Unit | Description |\n", + "| --- | --- | --- | --- |\n", + "| t | time | s | Particle time |\n", + "| x | x position | m | Coordinate x of particle |\n", + "| y | y position | m | Coordinate y of particle |\n", + "| z | z position | m | Coordinate z of particle |\n", + "| vx | x velocity | m/s | Velocity projected onto x |\n", + "| vy | y velocity | m/s | Velocity projected onto y |\n", + "| vz | z velocity | m/s | Velocity projected onto z |\n", + "| p | weight | intensity | Particle weight McStas n/s |\n", + "| l | lambda | AA | Wavelength |\n", + "| e | energy | meV | Particle energy |\n", + "| speed | speed | m/s | Speed (length of velocity vector) |\n", + "| dx | x divergence | deg | Divergence from z axis along x axis |\n", + "| dy | y divergence | deg | Divergence from z axis along y axis |\n", + "| U1 | User1 | Userdefined | User defined flag in Monitor_nD |\n", + "| U2 | User2 | Userdefined | User defined flag in Monitor_nD |\n", + "| U3 | User3 | Userdefined | User defined flag in Monitor_nD |\n", + "\n", + "\n", + "Here we get the wavelength information for each neutron in the event dataset." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "floating-chancellor", + "metadata": {}, + "outputs": [], + "source": [ + "events.get_data_column(\"l\")" + ] + }, + { + "cell_type": "markdown", + "id": "ranking-booth", + "metadata": {}, + "source": [ + "It is also possible to produce a McStasDataBinned dataset from a McStasDataEvent dataset by binning along one or two chosen dimensions using *make_1d* and *make_2d*. It supports all the same variables as above. For each method it is possible to choose how many bins should be used with the n_bins keyword argument." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "corresponding-baking", + "metadata": {}, + "outputs": [], + "source": [ + "speed_1d = events.make_1d(\"speed\", n_bins=60)\n", + "divergence_2d = events.make_2d(\"dx\", \"dy\", n_bins=[120, 120])\n", + "\n", + "print(speed_1d)\n", + "print(divergence_2d)" + ] + }, + { + "cell_type": "markdown", + "id": "dated-heritage", + "metadata": {}, + "source": [ + "### Plotting \n", + "[McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst) objects contain information on how the data should be plotted, including for example if it should be on a logarithmic axis. This information is contained in the *plot_options* attribute of a [McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst) object. The plotting are described in more detail on the [plotting page](plotting.ipynb)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "furnished-juice", + "metadata": {}, + "outputs": [], + "source": [ + "PSD.plot_options" + ] + }, + { + "cell_type": "markdown", + "id": "educated-template", + "metadata": {}, + "source": [ + "McStasScript can plot a McStasData object directly using for example *make_plot*." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "religious-chambers", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_plot(PSD)" + ] + }, + { + "cell_type": "markdown", + "id": "green-nancy", + "metadata": {}, + "source": [ + "The *plot_options* can be updated with *set_plot_options* that takes keyword arguments." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "blessed-sandwich", + "metadata": {}, + "outputs": [], + "source": [ + "PSD.set_plot_options(log=True, top_lim=1.5, bottom_lim=-1.5, colormap=\"hot\", orders_of_mag=2)\n", + "ms.make_plot(PSD)" + ] + }, + { + "cell_type": "markdown", + "id": "northern-ethernet", + "metadata": {}, + "source": [ + "The *set_plot_options* takes the following keyword arguments. Some will only apply for 2D data, for example *orders_of_mag*.\n", + "\n", + "| Keyword argument | Type | Default | Description |\n", + "| --- | --- | --- | --- |\n", + "| log | bool | False | Logarithmic axis for y in 1D or z in 2D |\n", + "| orders_of_mag | float | 300 | Maximum orders of magnitude to plot in 2D |\n", + "| colormap | str | \"jet\" | Matplotlib colormap to use |\n", + "| show_colorbar | bool | True | Show the colorbar |\n", + "| x_axis_multiplier | float | 1 | Multiplier for x axis data |\n", + "| y_axis_multiplier | float | 1 | Multiplier for y axis data |\n", + "| cut_min | float | 0 | Unitless lower limit normalized to data range |\n", + "| cut_max | float | 1 | Unitless upper limit normalized to data range |\n", + "| left_lim | float | | Lower limit to plot range of x axis |\n", + "| right_lim | float | | Upper limit to plot range of x axis|\n", + "| bottom_lim | float | | Lower limit to plot range of y axis|\n", + "| top_lim | float | | Upper limit to plot range of y axis|" + ] + }, + { + "cell_type": "markdown", + "id": "binding-joining", + "metadata": {}, + "source": [ + "McStasDataBinned generated from Event files can be plotted in the same manner." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "banner-fitting", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot([speed_1d, divergence_2d], log=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "greatest-spanking", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/user_guide/functions.ipynb b/docs/source/user_guide/functions.ipynb new file mode 100644 index 00000000..fd8f5c8d --- /dev/null +++ b/docs/source/user_guide/functions.ipynb @@ -0,0 +1,209 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "utility-python", + "metadata": {}, + "source": [ + "# Functions\n", + "McStasScritpt includes some freestanding functions located in the functions module." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "naughty-layout", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "unauthorized-billion", + "metadata": {}, + "outputs": [], + "source": [ + "import laue_example" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "royal-camel", + "metadata": { + "scrolled": true, + "tags": [ + "hide-output" + ] + }, + "outputs": [], + "source": [ + "data = laue_example.create_data(\"data_for_loading\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "negative-captain", + "metadata": {}, + "outputs": [], + "source": [ + "data_path = data[0].get_data_location()" + ] + }, + { + "cell_type": "markdown", + "id": "satellite-dealing", + "metadata": {}, + "source": [ + "## load_data function\n", + "The [*load_data*](../_autosummary/mcstasscript.interface.functions.load_data.rst) function reads a McStas dataset from disk and returns it in the form of [McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst) and [McStasDataEvent](../_autosummary/mcstasscript.data.data.McStasDataEvent.rst) objects in a list. The input is the path to the folder containing the McStas data. The path can be absolute or relative. Here the path from the generated example data is used." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "plain-growth", + "metadata": {}, + "outputs": [], + "source": [ + "loaded_data = ms.load_data(data_path)\n", + "print(loaded_data)" + ] + }, + { + "cell_type": "markdown", + "id": "explicit-holocaust", + "metadata": {}, + "source": [ + "The *load_data* function provides a way to work with data not created in the current session or created without McStasScript." + ] + }, + { + "cell_type": "markdown", + "id": "presidential-tuesday", + "metadata": {}, + "source": [ + "## name_search\n", + "The [*name_search*](../_autosummary/mcstasscript.interface.functions.name_search.rst) function searches a list of data for instances that match a monitor name or a filename. If a monitor creates more than one dataset, [*name_search*](../_autosummary/mcstasscript.interface.functions.name_search.rst) may return multiple data objects.\n", + "\n", + "Here a search for the component name is performed." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "sticky-circus", + "metadata": {}, + "outputs": [], + "source": [ + "div_lambda_h = ms.name_search(\"div_lambda_h\", data)\n", + "print(div_lambda_h)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "facial-guidance", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_plot(div_lambda_h, fontsize=14, figsize=(10, 6))" + ] + }, + { + "cell_type": "markdown", + "id": "opposite-advice", + "metadata": {}, + "source": [ + "It is also possible to search for the name of the datafile." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "egyptian-spencer", + "metadata": {}, + "outputs": [], + "source": [ + "transmission = ms.name_search(\"lambda_transmission.dat\", data)\n", + "ms.make_plot(transmission, fontsize=14, figsize=(10, 6))" + ] + }, + { + "cell_type": "markdown", + "id": "synthetic-transformation", + "metadata": {}, + "source": [ + "## name_plot_options\n", + "The [*name_plot_options*](../_autosummary/mcstasscript.interface.functions.name_plot_options.rst) function combines a search with *name_search* and a call to its *set_plot_options*. Setting plot options changes how the data will be plotted, and this provides a nice way to control one plot per line in a neat manner." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "reduced-airline", + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"PSD\", data, log=True, orders_of_mag=7)\n", + "ms.name_plot_options(\"div_lambda_h\", data, log=True, orders_of_mag=5)\n", + "ms.name_plot_options(\"div_lambda_v\", data, log=False, colormap=\"hot\")\n", + "ms.name_plot_options(\"lambda\", data, log=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "satellite-majority", + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "ms.make_plot(data, figsize=(8, 6))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "brown-membership", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "technical-kennedy", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/user_guide/instrument_diagram_widget.png b/docs/source/user_guide/instrument_diagram_widget.png new file mode 100644 index 00000000..d220e4ca Binary files /dev/null and b/docs/source/user_guide/instrument_diagram_widget.png differ diff --git a/docs/source/user_guide/instrument_object.ipynb b/docs/source/user_guide/instrument_object.ipynb new file mode 100644 index 00000000..8cb31dd7 --- /dev/null +++ b/docs/source/user_guide/instrument_object.ipynb @@ -0,0 +1,752 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "important-midwest", + "metadata": {}, + "source": [ + "# Instrument object\n", + "This section shows the majority of the features implemented for the instrument object in McStasScript." + ] + }, + { + "cell_type": "markdown", + "id": "eastern-distance", + "metadata": {}, + "source": [ + "## Initialization\n", + "An instrument object is created with the [McStas_instr](../_autosummary/mcstasscript.interface.instr.McStas_instr.rst) or [McXtrace_instr](../_autosummary/mcstasscript.interface.instr.McXtrace_instr.rst) class. When an instrument object is created the only required argument is the name of the instrument which will be used for the instrument filename. There are however a number of keyword arguments that can be used to provide more information and alter the behavior.\n", + "\n", + "| Keyword argument | Type | Default | Description |\n", + "| --- | --- | --- | --- |\n", + "| author | str |\"Python Instrument Generator\" | Name that will appear as author in instrument files |\n", + "| origin | str |\"ESS DMSC\" | String that will appear as origin in instrument files |\n", + "| input_path | str | \".\" | Folder which is considered workspace for McStas / McXtrace |\n", + "| output_path | str | instrument_name | Name of data folder written by simulation |\n", + "| package_path | str | | Can be set to manually specify location of McStas/McXtrace installation |\n", + "| executable_path | str | | Can be set to manually specify location of mcrun/mxrun executable |\n", + "| ncount | int, float | 1E6 | Sets the ncount used for simulations |\n", + "| mpi | int | | Sets the number of MPI threads used for simulations |\n", + "| force_compile | bool | True | Whether to force compilation before each run or not |\n", + "| parameters | ParameterContainer | | Set of parameters for initialized instrument |" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "liable-newton", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "experienced-locator", + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"instr_name\", author=\"Mads Bertelsen\", origin=\"DMSC\")\n", + "instrument_w_settings = ms.McStas_instr(\"instr_name\", ncount=3E6, output_path=\"new_folder\")" + ] + }, + { + "cell_type": "markdown", + "id": "universal-saudi", + "metadata": {}, + "source": [ + "### Using settings method\n", + "The instrument object has a *setting* method which can update some settings after initialization. The current settings can always be viewed with *show_settings*.\n", + "\n", + "| Keyword argument | Type | Default | Description |\n", + "| --- | --- | --- | --- |\n", + "| output_path | str | instrument_name | Name of data folder written by simulation |\n", + "| package_path | str | | Can be set to manually specify location of McStas/McXtrace installation |\n", + "| executable_path | str | | Can be set to manually specify location of mcrun/mxrun executable |\n", + "| ncount | int, float | 1E6 | Sets the ncount used for simulations |\n", + "| mpi | int | | Sets the number of MPI threads used for simulations |\n", + "| seed | | | Sets the seed of the simulation |\n", + "| force_compile | bool | True | Whether to force compilation before each run or not |\n", + "| custom_flags | str | | String with custom flags for mcrun/mxrun command |" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "sapphire-pasta", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_settings()\n", + "instrument_w_settings.show_settings()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "assumed-boundary", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.settings(mpi=4, seed=300)\n", + "instrument.show_settings()" + ] + }, + { + "cell_type": "markdown", + "id": "unsigned-ideal", + "metadata": {}, + "source": [ + "## Parameters\n", + "Instrument parameters can be added with *add_parameters* which returns a parameter object." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "signed-distributor", + "metadata": {}, + "outputs": [], + "source": [ + "wavelength = instrument.add_parameter(\"wavelength\", comment=\"Wavelength in AA\")\n", + "print(wavelength)\n", + "wavelength.value = 5\n", + "print(wavelength)" + ] + }, + { + "cell_type": "markdown", + "id": "sunset-bishop", + "metadata": {}, + "source": [ + "### Searching for components and data\n", + "McStas have a few keywords for adjusting where to search for data and components. This is typically added right after the parameters, so its natural to include it here in the documentation of the instrument object.\n", + "\n", + "#### Dependency\n", + "The DEPENDENCY keyword allows McStas to search for data and software at runtime. There is just one dependency line for an instrument." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "surprised-jurisdiction", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.set_dependency(\"/dependency/example\")" + ] + }, + { + "cell_type": "markdown", + "id": "photographic-norwegian", + "metadata": {}, + "source": [ + "As the instrument won't run unless the dependency is set to a valid path, let's reset it." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "sticky-affect", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.set_dependency(\"\")" + ] + }, + { + "cell_type": "markdown", + "id": "applied-gallery", + "metadata": {}, + "source": [ + "#### Search\n", + "The SEARCH keyword allows McStas to search for components before McStas code generation. There can be multiple SEARCH statements in an instrument. It is possible to enable SHELL processing so a system command can be given that should return a path. McStasScript has yet to implement this features fully, so McStasScript won't find components in search paths. For now it can only be used to overwrite existing components with identical input parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dominican-tension", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.add_search(\"/search/example\")\n", + "instrument.add_search(\"pwd\", SHELL=True)\n", + "\n", + "instrument.show_search()" + ] + }, + { + "cell_type": "markdown", + "id": "level-being", + "metadata": {}, + "source": [ + "It is possible to clear all search statements from an instrument with the *clear_search* method." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "middle-conservation", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.clear_search()\n", + "instrument.show_search()" + ] + }, + { + "cell_type": "markdown", + "id": "fourth-glasgow", + "metadata": {}, + "source": [ + "## Initialize section\n", + "One of the great advantages for the McStas / McXtrace packages is the initialize section of the instrument where calculations can be performed before the ray-tracing simulation starts. One could for example calculate appropriate angles to reach a certain Bragg peak at a given wavelength. This would involve defining some declare variables, using these in the initialize section and then assigning them as component inputs.\n", + "\n", + "In McStasScript many calculations can be performed directly in Python, and so typically the initialize section is used less, but it is still useful and available through McStasScript.\n", + "\n", + "The instrument object has the method *append_initialize* which adds a line of code to the initialize. This line is copied directly into the instrument file, so it follows C syntax. Remember the semicolon! In addition there is *add_declare_var* to specify the declared variables needed. When declare variables are defined an object is returned which can be used when referring to that variable." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "spare-button", + "metadata": {}, + "outputs": [], + "source": [ + "wavenumber = instrument.add_declare_var(\"double\", \"wavenumber\")\n", + "instrument.append_initialize(\"wavenumber = 2*PI/wavelength;\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "twelve-tuition", + "metadata": {}, + "outputs": [], + "source": [ + "print(instrument.initialize_section)" + ] + }, + { + "cell_type": "markdown", + "id": "occupational-budget", + "metadata": {}, + "source": [ + "## Finally section\n", + "The finally section works exactly as the initialize section, but is executed after the ray-tracing simulation. Add a line to it with *append_finally*." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cultural-workplace", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.append_finally('printf(\\\"Thanks for using McStasScript!\\\\n\\\");')\n", + "print(instrument.finally_section)" + ] + }, + { + "cell_type": "markdown", + "id": "threaded-double", + "metadata": {}, + "source": [ + "## Help features\n", + "There are a few methods built into the instrument class that helps the user, these are:\n", + "\n", + "- *available_components*\n", + "- *component_help*\n", + "\n", + "### available_components\n", + "The *available_components* method shows the component categories, and if called with the name of a category, will show all available components in the specified category. The categories can include the work directory if any components are located there." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "foreign-chosen", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.available_components()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "regulated-hollywood", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.available_components(\"optics\")" + ] + }, + { + "cell_type": "markdown", + "id": "ultimate-junction", + "metadata": {}, + "source": [ + "### component_help\n", + "The *component_help* method can show the parameters of any component the instrument object knows about, although not necessarily used in the instrument." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dominican-dubai", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Guide\")" + ] + }, + { + "cell_type": "markdown", + "id": "studied-victorian", + "metadata": {}, + "source": [ + "## Adding components\n", + "One adds components to the instrument using *add_component* which takes the name of the component instance for the instrument, followed by the name of the component in the library. When adding a component, a [component](../_autosummary/mcstasscript.helper.mcstas_objects.Component.rst) object is returned, and how these can be manipulated is discussed on the [component object page](component_object.ipynb). Notice that it is not allowed to add two components with the same instance name, meaning rerunning this cell would raise an exception. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "literary-nirvana", + "metadata": {}, + "outputs": [], + "source": [ + "source = instrument.add_component(\"source\", \"Source_div\")\n", + "source.set_parameters(xwidth=0.1, yheight=0.1, focus_aw=3.0, focus_ah=2.0, \n", + " lambda0=wavelength, dlambda=\"0.1*wavelength\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "loving-raleigh", + "metadata": {}, + "outputs": [], + "source": [ + "print(source)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "unnecessary-helen", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "id": "outdoor-motor", + "metadata": {}, + "source": [ + "There are a number of keyword arguments allowed when adding a component. These will mainly be discussed on the [component object page](component_object.ipynb), but a few are relevant for the instrument, because they handle in what order components are sequenced in the instrument. To illustrate this we add a slit and a guide to the instrument at reasonable positions. Notice these new components are added at the end of the instrument." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "informative-council", + "metadata": {}, + "outputs": [], + "source": [ + "slit = instrument.add_component(\"source_slit\", \"Slit\", AT=2, RELATIVE=source)\n", + "slit.set_parameters(xwidth=0.015, yheight=0.015)\n", + "\n", + "guide = instrument.add_component(\"guide\", \"Guide\", AT=0.1, RELATIVE=slit)\n", + "guide.set_parameters(w1=0.03, h1=0.03, l=10.0)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "moral-apartment", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "id": "least-circulation", + "metadata": {}, + "source": [ + "The order of components is important in a McStas/McXtrace simulation as each will affect the ray state in the sequence shown with *print_components*. If one wants to add a component between the source and the slit, this can be done with the *before* or *after* keyword." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "absent-pizza", + "metadata": {}, + "outputs": [], + "source": [ + "monitor = instrument.add_component(\"PSD\", \"PSD_monitor\", after=\"source\")\n", + "monitor.set_AT(1.9, RELATIVE=source)\n", + "monitor.set_parameters(xwidth=0.1, yheight=0.1, filename='\"PSD.dat\"')\n", + "\n", + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "id": "municipal-prior", + "metadata": {}, + "source": [ + "The PSD monitor was inserted after the source, this could also be accomplished with the before keyword argument.\n", + "```\n", + "before=\"source_slit\"\n", + "```\n", + "It is important to note that the McStas instrument file is read sequentially, so the position of the PSD monitor can not be relative to a later component, but must only refer to earlier components. At this point in development it is not possible to reorder components in the instrument object." + ] + }, + { + "cell_type": "markdown", + "id": "after-setup", + "metadata": {}, + "source": [ + "## Moving a component\n", + "It is also possible to move a component in the component sequence of the instrument. Lets add a *Lmonitor* at the end at move it to the PSD. The *move_component* command takes a name or component object to be moved, and then the same before and after keywords as *add_component*." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "loose-motivation", + "metadata": {}, + "outputs": [], + "source": [ + "Lmon = instrument.add_component(\"Lmon\", \"L_monitor\", RELATIVE=\"guide\")\n", + "instrument.show_components()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "constant-footwear", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.move_component(Lmon, after=source)\n", + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "id": "enabling-business", + "metadata": {}, + "source": [ + "It is easy to introduce a mistake in an instrument by moving a component, as components uses each other as references for position and rotation. In the above example the *Lmon* was placed relative to the *guide* component, and thus McStasScript warns that an error was introduced when the component was moved, as *guide* has not been defined at the new position of *Lmon*. The method *check_for_errors* can be called for further information, here in a try block to catch the exception." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "assured-paint", + "metadata": {}, + "outputs": [], + "source": [ + "try:\n", + " instrument.check_for_errors()\n", + "except Exception as e:\n", + " print(str(e))" + ] + }, + { + "cell_type": "markdown", + "id": "superb-source", + "metadata": {}, + "source": [ + "## Removing a component\n", + "Components can be removed with the *remove_component* method. The input can be either a component name or a component object." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "severe-luther", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.remove_component(Lmon)\n", + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "id": "distinct-thousand", + "metadata": {}, + "source": [ + "## Making a component copy\n", + "It is possible to copy an existing component using the *copy_component* method. This can reduce both the amount of typing necessary, but also the risk of making a mistake. Here the guide is copied and placed a bit after the end of the first guide, with a small rotation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "figured-electronics", + "metadata": {}, + "outputs": [], + "source": [ + "guide2 = instrument.copy_component(\"guide_2\", \"guide\")\n", + "guide2.set_AT(guide.l + 0.01, RELATIVE=guide)\n", + "guide2.set_ROTATED([0, 0.5, 0], RELATIVE=guide)\n", + "print(guide2)" + ] + }, + { + "cell_type": "markdown", + "id": "parental-theme", + "metadata": {}, + "source": [ + "## Getting components\n", + "It is always possible to retrieve the component objects corresponding to components in the instrument with the *get_component* and *get_last_component* methods." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "military-biotechnology", + "metadata": {}, + "outputs": [], + "source": [ + "my_source = instrument.get_component(\"source\")\n", + "print(my_source)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ambient-naples", + "metadata": {}, + "outputs": [], + "source": [ + "last_component = instrument.get_last_component()\n", + "print(last_component)" + ] + }, + { + "cell_type": "markdown", + "id": "third-blend", + "metadata": {}, + "source": [ + "### Instrument diagram\n", + "McStasScript can generate a diagram of an instrument file to aid the user in understanding its content. Use the *show_diagram* method to display the figure. The legend shows how the different component categories are represented with different colors, and how AT and ROTATED is represented with arrows. The rest of the figure is the actual diagram of this instrument, showing the sequence of components.\n", + "\n", + "If in a notebook and using the %matplotlib widget backend, hovering the mouse over the left side of the boxes show further information on the individual components.\n", + "\n", + "The diagram will also show use of the keywords EXTEND, WHEN, JUMP and GROUP, as well as connections between Union components, though none of these are present in this diagram." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "annoying-preservation", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "id": "cardiovascular-hughes", + "metadata": {}, + "source": [ + "## Run the simulation\n", + "The simulation is executed with a call to the *backengine* method, which will return the generated data. If the simulation fails, the method returns None. McStasScript does check for some common mistakes before attempting to run the McStas simulation, if any problem is found a useful error message will be shown." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "intense-chapter", + "metadata": {}, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "honey-conference", + "metadata": {}, + "outputs": [], + "source": [ + "print(data)" + ] + }, + { + "cell_type": "markdown", + "id": "varying-clearing", + "metadata": {}, + "source": [ + "## Visualizing the instrument\n", + "It is possible to visualize the instrument using the visualization features in McStas / McXtrace. This is done using the *show_instrument* method that show the instrument with the currently set parameters. The method takes a format keyword, of which there are two allowed:\n", + "\n", + "| Format | Description | |\n", + "| :-- | :-- | --- |\n", + "| webgl | 3D view in notebook or browser tab | (default) |\n", + "| window | 2D view in window | |\n", + "\n", + "\n", + "The default format webgl behaves differently whether in a notebook or from a script. In a notebook, the output will be shown directly in the cell as shown in the example below, but in a script it will open a new browser tab. If a new browser tab is desired even when running from a notebook, set the keyword argument *new_tab* to True.\n", + "\n", + "When using the 3D view in webgl, use these controls to manipulate the view:\n", + "\n", + "| Action | Effect on view |\n", + "| :-- | :-: |\n", + "| Hold left click and drag | Rotate |\n", + "| Hold right click and drag | Move |\n", + "| Hold mouse wheel and drag up/down | Zoom in/out |" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "headed-simulation", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_instrument()" + ] + }, + { + "cell_type": "markdown", + "id": "disciplinary-tamil", + "metadata": {}, + "source": [ + "The window format is a 2D view which is opened in a new window, and may not always work if one use McStasScript through the cloud or a docker container. It is better suited for getting measurements and ensuring the geometry is exactly as desired." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "italic-madagascar", + "metadata": { + "tags": [ + "hide-output" + ] + }, + "outputs": [], + "source": [ + "instrument.show_instrument(format=\"window\")" + ] + }, + { + "cell_type": "markdown", + "id": "supreme-stamp", + "metadata": {}, + "source": [ + "### Showing instrument file\n", + "McStasScript writes the instrument file for McStas in the process of running or visualizing the instrument. The file can be shown with the *show_instrument_file* method." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "korean-industry", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_instrument_file(line_numbers=True)" + ] + }, + { + "cell_type": "markdown", + "id": "dressed-branch", + "metadata": {}, + "source": [ + "## Dump and load an instrument object\n", + "It is possible to save an instrument object to disk and load it later." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "casual-blame", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.dump(\"dump_file_name.dmp\")" + ] + }, + { + "cell_type": "markdown", + "id": "distant-arthritis", + "metadata": {}, + "source": [ + "To load an instrument object from a file, use the *from_dump* method that takes the filename." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "advance-soldier", + "metadata": {}, + "outputs": [], + "source": [ + "loaded_instrument = ms.McStas_instr.from_dump(\"dump_file_name.dmp\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "european-pepper", + "metadata": {}, + "outputs": [], + "source": [ + "loaded_instrument.show_components()\n", + "loaded_instrument.show_settings()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "independent-blend", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/user_guide/instrument_reader.ipynb b/docs/source/user_guide/instrument_reader.ipynb new file mode 100644 index 00000000..90363d8d --- /dev/null +++ b/docs/source/user_guide/instrument_reader.ipynb @@ -0,0 +1,154 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "stretch-villa", + "metadata": {}, + "source": [ + "# Instrument reader\n", + "When McStasScript performs a McStas simulation, a traditional instrument file is generated and used for the simulation. In that way a user can easily go from a McStasScript instrument description to a regular instrument file. McStasScript does contain an instrument reader that can attempt to do the reverse, read a regular instrument file and create the McStasScript object or even a file with the python code that would create such an object. The [instrument reader](../_autosummary/mcstasscript.interface.reader.rst) contains the interface, but the system is not yet finished and can be somewhat unreliable. \n", + "\n", + "The instrument reader is a good way to transfer a project to McStasScript, but may require fixing of a few issues created in the transfer process." + ] + }, + { + "cell_type": "markdown", + "id": "neutral-moore", + "metadata": {}, + "source": [ + "## Create a reader object\n", + "The first step is to create a reader object with [*McStas_file*](../_autosummary/mcstasscript.interface.reader.McStas_file.rst), this requires just a path to the instrument file." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "alpine-yeast", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "burning-romance", + "metadata": {}, + "outputs": [], + "source": [ + "instrument_reader = ms.McStas_file(\"data_example.instr\")" + ] + }, + { + "cell_type": "markdown", + "id": "corporate-offer", + "metadata": {}, + "source": [ + "## Create instrument object\n", + "The [*McStas_file*](../_autosummary/mcstasscript.interface.reader.McStas_file.rst) object contains a method called *add_to_instr* that can add the instrument information to an [instrument](../_autosummary/mcstasscript.interface.instr.McCode_instr) object. Here a [McStas_instr](../_autosummary/mcstasscript.interface.instr.McStas_instr) object is initialized, and then the information to the instrument file is added with the instrument reader object." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "living-inflation", + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"reader_test\")\n", + "instrument_reader.add_to_instr(instrument)\n", + "\n", + "instrument.show_parameters()\n", + "instrument.show_variables()\n", + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "id": "owned-particle", + "metadata": {}, + "source": [ + "If the instrument file used is for McStas 3.X and uses the USERVARS feature, it will fail when being executed with McStas 2.X. McStasScript includes a method to move any USERVARS to declare, which may allow the instrument to run with a McStas 2.X backend. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "divided-restoration", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.move_user_vars_to_declare()" + ] + }, + { + "cell_type": "markdown", + "id": "modern-happiness", + "metadata": {}, + "source": [ + "## Create a python script file\n", + "It is also possible to get a script file from the [McStas_file](../_autosummary/mcstasscript.interface.reader.McStas_file.rst) object. A name for the script needs to be provided. The force keyword can be used to overwrite the file." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "australian-possession", + "metadata": {}, + "outputs": [], + "source": [ + "instrument_reader.write_python_file(\"generated_python_script.py\", force=True)" + ] + }, + { + "cell_type": "markdown", + "id": "religious-lotus", + "metadata": {}, + "source": [ + "The generated file is loaded and displayed to show that the python script is of reasonable quality, but still has room for improvement. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "operational-earthquake", + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"generated_python_script.py\") as file:\n", + " script = file.read()\n", + "print(script)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "expected-lambda", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/user_guide/laue_example.py b/docs/source/user_guide/laue_example.py new file mode 100644 index 00000000..abc99140 --- /dev/null +++ b/docs/source/user_guide/laue_example.py @@ -0,0 +1,48 @@ +import mcstasscript as ms + +def create_data(path): + instrument = ms.McStas_instr("laue_example", output_path=path) + + source = instrument.add_component("source", "Source_simple") + source.set_parameters(xwidth=0.01, yheight=0.01, + dist=5, focus_xw=0.01, focus_yh=0.01) + source.lambda0 = instrument.add_parameter("wavelength", value=3.0) + source.dlambda = "0.95*wavelength" + + sample = instrument.add_component("sample", "Single_crystal") + sample.set_parameters(radius=source.focus_xw, yheight=source.focus_yh, + reflections='"YBaCuO.lau"', mosaic=30) + sample.set_AT(source.dist, RELATIVE=source) + sample.set_ROTATED([8, 4, 0]) + + mon = instrument.add_component("PSD", "PSD_monitor") + mon.set_AT(source.dist + 0.1, RELATIVE=source) + mon.set_parameters(nx=300, ny=300, filename='"psd.dat"', + xwidth=1.0, yheight=1.0, + restore_neutron=1) + + lmon = instrument.add_component("div_lambda_h", "DivLambda_monitor") + lmon.set_AT(0, RELATIVE=mon) + lmon.set_parameters(nL=100, nh=70, maxdiv_h=80, filename='"div_lambda_h.dat"', + Lmin="0.05*wavelength", Lmax="1.95*wavelength", + xwidth=mon.xwidth, yheight=mon.yheight, + restore_neutron=1) + + lmon = instrument.add_component("div_lambda_v", "DivLambda_monitor") + lmon.set_AT(0, RELATIVE=mon) + lmon.set_ROTATED([0, 0, 90], RELATIVE=mon) + lmon.set_parameters(nL=100, nh=70, maxdiv_h=80, filename='"div_lambda_v.dat"', + Lmin="0.05*wavelength", Lmax="1.95*wavelength", + xwidth=mon.xwidth, yheight=mon.yheight, + restore_neutron=1) + + lmon = instrument.add_component("lambda", "L_monitor") + lmon.set_AT(0, RELATIVE=mon) + lmon.set_parameters(nL=300, filename='"lambda_transmission.dat"', + Lmin="0.05*wavelength", Lmax="1.95*wavelength", + xwidth=0.015, yheight=0.015, + restore_neutron=1) + + instrument.settings(ncount=5E6) + data = instrument.backengine() + return data diff --git a/docs/source/user_guide/parameters_and_variables.ipynb b/docs/source/user_guide/parameters_and_variables.ipynb new file mode 100644 index 00000000..0931a730 --- /dev/null +++ b/docs/source/user_guide/parameters_and_variables.ipynb @@ -0,0 +1,571 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "smooth-monaco", + "metadata": {}, + "source": [ + "# Parameters and variables\n", + "At the instrument level there is a distinction between parameters and variables. Parameters are inputs to the instrument that can be changed at run time, while variables are defined internally within the instrument. This section of the documentation covers these two as they have some similarities." + ] + }, + { + "cell_type": "markdown", + "id": "strong-muslim", + "metadata": {}, + "source": [ + "## Parameters\n", + "Instrument parameters are built on the libpyvinyl parameters, and have some interesting features. First a simple parameter is added." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "acceptable-emperor", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parameter named: 'first_par' without set value.\n", + " [dimensionless]\n", + " \n", + "\n" + ] + } + ], + "source": [ + "import mcstasscript as ms\n", + "instrument = ms.McStas_instr(\"parameters_and_variables\")\n", + "\n", + "first_par = instrument.add_parameter(\"first_par\")\n", + "print(first_par)" + ] + }, + { + "cell_type": "markdown", + "id": "alive-cholesterol", + "metadata": {}, + "source": [ + "It is a good habit to add a comment to each parameter when creating it. " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "adverse-default", + "metadata": {}, + "outputs": [], + "source": [ + "second_parameter = instrument.add_parameter(\"second_par\", comment=\"My first parameter!\")" + ] + }, + { + "cell_type": "markdown", + "id": "downtown-pittsburgh", + "metadata": {}, + "source": [ + "### Types\n", + "If only one argument is given, it is assumed the type is a C *double*, so a floating point number. It is also allowed to have integers and strings. No other types are supported by McStas / McXtrace." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "cellular-server", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " first_par // \n", + " second_par // My first parameter!\n", + "double double_par // Typed double\n", + "int int_par // Typed int\n", + "string string_par // Typed string\n" + ] + } + ], + "source": [ + "double_par = instrument.add_parameter(\"double\", \"double_par\", comment=\"Typed double\")\n", + "int_par = instrument.add_parameter(\"int\", \"int_par\", comment=\"Typed int\")\n", + "string_par = instrument.add_parameter(\"string\", \"string_par\", comment=\"Typed string\")\n", + "\n", + "instrument.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "id": "southern-shoulder", + "metadata": {}, + "source": [ + "### Value\n", + "It is common to set the value of a parameter when it is created." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "rental-indication", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Parameter named: 'par_with_value' with value: 5.2\n", + " [dimensionless]\n", + " Added value at creation" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "instrument.add_parameter(\"par_with_value\", value=5.2, comment=\"Added value at creation\")" + ] + }, + { + "cell_type": "markdown", + "id": "expressed-nancy", + "metadata": {}, + "source": [ + "The value can always be changed, either directly or through the instrument object. When using the instrument object, use the name in the instrument file as the keyword argument." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "narrow-guard", + "metadata": {}, + "outputs": [], + "source": [ + "double_par.value = 1.2\n", + "instrument.set_parameters(int_par=3)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "thirty-sunrise", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " first_par // \n", + " second_par // My first parameter!\n", + "double double_par = 1.2 // Typed double\n", + "int int_par = 3 // Typed int\n", + "string string_par // Typed string\n", + " par_with_value = 5.2 // Added value at creation\n" + ] + } + ], + "source": [ + "instrument.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "id": "cardiac-apparel", + "metadata": {}, + "source": [ + "### Parameter restrictions\n", + "Since the parameter object in McStasScript is derived from libpyvinyl, some functionality is inherited in terms of setting parameter restrictions. This comes in the forms of intervals and options, which can both be legal and illegal.\n", + "\n", + "Here is an example of adding legal intervals to the *double_par* parameter. None can be used if the interval should extend to infinity in the given direction." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "portuguese-circuit", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parameter named: 'double_par' with value: 1.2\n", + " [dimensionless]\n", + " Typed double\n", + " Legal intervals:\n", + " [0,5]\n", + " [7,inf]\n", + "\n" + ] + } + ], + "source": [ + "double_par.add_interval(0, 5, intervals_are_legal=True)\n", + "double_par.add_interval(7, None, intervals_are_legal=True)\n", + "print(double_par)" + ] + }, + { + "cell_type": "markdown", + "id": "virtual-judges", + "metadata": {}, + "source": [ + "Now only values between 0 and 5 or from 7 to 8 are accepted. Trying to set a different value will raise a ValueError." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "unknown-edition", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parameter named: 'double_par' with value: 1.8\n", + " [dimensionless]\n", + " Typed double\n", + " Legal intervals:\n", + " [0,5]\n", + " [7,inf]\n", + "\n" + ] + } + ], + "source": [ + "double_par.value = 1.8\n", + "print(double_par)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "familiar-church", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parameter named: 'double_par' with value: 10\n", + " [dimensionless]\n", + " Typed double\n", + " Legal intervals:\n", + " [0,5]\n", + " [7,inf]\n", + "\n" + ] + } + ], + "source": [ + "try:\n", + " double_par.value = 10\n", + "except:\n", + " print(\"Failed to set value!\")\n", + " \n", + "print(double_par)" + ] + }, + { + "cell_type": "markdown", + "id": "psychological-voluntary", + "metadata": {}, + "source": [ + "Setting *intervals_are_legal* to False means that only values outside the defined intervals are allowed.\n", + "\n", + "Options work in a similar way, but for specific values." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "honey-theta", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Failed to set value!\n", + "Parameter named: 'int_par' with value: 3\n", + " [dimensionless]\n", + " Typed int\n", + " Allowed values:\n", + " 3\n", + " 2\n", + " 1\n", + "\n" + ] + } + ], + "source": [ + "int_par.add_option(3, options_are_legal=True)\n", + "int_par.add_option(2, options_are_legal=True)\n", + "int_par.add_option(1, options_are_legal=True)\n", + "\n", + "try:\n", + " int_par.value = 10\n", + "except:\n", + " print(\"Failed to set value!\")\n", + " \n", + "print(int_par)" + ] + }, + { + "cell_type": "markdown", + "id": "worse-square", + "metadata": {}, + "source": [ + "Adding restrictions to parameters is a healthy habit that can make the produced instrument more resilient to errors. Ensure the given wavelength is a positive number to catch errors early instead of trying to understand what happened when a simulation fails." + ] + }, + { + "cell_type": "markdown", + "id": "spread-parade", + "metadata": {}, + "source": [ + "## Declared variables\n", + "It is possible to declare variables that are used internally in the instrument and as such not exposed to the user. This is done through the instrument objects *add_declare_var* method. It returns a [DeclareVariable](../_autosummary/mcstasscript.helper.mcstas_objects.DeclareVariable.rst) object that can be used to refer to this variable." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "confidential-village", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Declare variable: 'declared_var' of type double\n" + ] + } + ], + "source": [ + "declared_var = instrument.add_declare_var(\"double\", \"declared_var\", comment=\"Declared variable\")\n", + "print(declared_var)" + ] + }, + { + "cell_type": "markdown", + "id": "valuable-sigma", + "metadata": {}, + "source": [ + "There are no restrictions on the type for declared variables, typically double and int is used. Declared variables have no methods for additional input, all information must be given at initialization." + ] + }, + { + "cell_type": "markdown", + "id": "capital-fraction", + "metadata": {}, + "source": [ + "The declared variable can be initialized to a given value by using the *value* keyword." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "valid-offense", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Declare variable: 'integer' of type int with value: 5\n" + ] + } + ], + "source": [ + "declared_var = instrument.add_declare_var(\"int\", \"integer\", value=5, comment=\"Declared integer\")\n", + "print(declared_var)" + ] + }, + { + "cell_type": "markdown", + "id": "identified-butter", + "metadata": {}, + "source": [ + "Declared variables can also be one dimensional arrays using the *array* keyword. In the full McStas / McXtrace its possible to make arrays of any dimensionality but only one dimensional is supported in McStasScript. If a value of array is smaller than the length of the given value, the simulation will fail as it would write outside of the declared memory." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "polish-integration", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Declare variable: 'declared_array' of type double with value: [2, 3, 4]. Array with length 3\n" + ] + } + ], + "source": [ + "var = instrument.add_declare_var(\"double\", \"declared_array\", value=[2, 3, 4], array=3)\n", + "print(var)" + ] + }, + { + "cell_type": "markdown", + "id": "overall-differential", + "metadata": {}, + "source": [ + "The declared variables of the instrument can be displayed with *show_variables*." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "after-reply", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DECLARE VARIABLES \n", + "type variable name array length value \n", + "-----------------------------------------------\n", + "double declared_var \n", + "int integer 5 \n", + "double declared_array 3 [2, 3, 4] \n", + "\n" + ] + } + ], + "source": [ + "instrument.show_variables()" + ] + }, + { + "cell_type": "markdown", + "id": "nervous-poverty", + "metadata": {}, + "source": [ + "## User variables\n", + "McStas 3.0 introduced USERVARS next to declare variables, these differ in that they are specific to the neutron and can thus be used in EXTEND blocks on McStas 3.0, which is not allowed for normal declare variables. In McStasScript user variables act like declared variables, the only difference being they do not accept a initial value and will show up in a different section of show variables." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "electronic-police", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Declare variable: 'flag' of type int\n" + ] + } + ], + "source": [ + "user_var = instrument.add_user_var(\"int\", \"flag\", comment=\"Example of USERVAR\")\n", + "print(user_var)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "built-folks", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DECLARE VARIABLES \n", + "type variable name array length value \n", + "-----------------------------------------------\n", + "double declared_var \n", + "int integer 5 \n", + "double declared_array 3 [2, 3, 4] \n", + "\n", + "USER VARIABLES (per neutron, only use in EXTEND)\n", + "type variable name array length value \n", + "-----------------------------------------------\n", + "int flag \n", + "\n" + ] + } + ], + "source": [ + "instrument.show_variables()" + ] + }, + { + "cell_type": "markdown", + "id": "affected-street", + "metadata": {}, + "source": [ + "## Using parameters and variables\n", + "Instrument parameters and declare variables are can both be used when setting component attributes. One can use either the name in a string, or the object directly. When using a string, it is allowed to do basic math and use several parameter / variables. It is also possible to select a certain element from an array." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "dangerous-telling", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "COMPONENT source = Source_simple\n", + " \u001b[1myheight\u001b[0m = \u001b[1m\u001b[92minteger\u001b[0m\u001b[0m [m]\n", + " \u001b[1mxwidth\u001b[0m = \u001b[1m\u001b[92mdouble_par\u001b[0m\u001b[0m [m]\n", + " \u001b[1mdist\u001b[0m = \u001b[1m\u001b[92m5.0*first_par + 0.1*double_par\u001b[0m\u001b[0m [m]\n", + " \u001b[1mfocus_xw\u001b[0m = \u001b[1m\u001b[92mdeclared_array[0]\u001b[0m\u001b[0m [m]\n", + "AT [0, 0, 0] ABSOLUTE\n" + ] + } + ], + "source": [ + "source = instrument.add_component(\"source\", \"Source_simple\")\n", + "source.xwidth = double_par\n", + "source.yheight = declared_var\n", + "source.dist = \"5.0*first_par + 0.1*double_par\"\n", + "source.focus_xw = \"declared_array[0]\"\n", + "print(source)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "biological-engine", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/user_guide/plotting.ipynb b/docs/source/user_guide/plotting.ipynb new file mode 100644 index 00000000..599c5e41 --- /dev/null +++ b/docs/source/user_guide/plotting.ipynb @@ -0,0 +1,213 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "adult-childhood", + "metadata": {}, + "source": [ + "# Plotting\n", + "McStasScript includes a [plotting](../_autosummary/mcstasscript.interface.plotter.rst) module meant for plotting McStasScript data objects. \n", + "\n", + "## Example instrument\n", + "First an example instrument is constructed to provide some data for plotting examples." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "perfect-hours", + "metadata": { + "tags": [ + "hide-input" + ] + }, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "\n", + "instrument = ms.McStas_instr(\"data_example\")\n", + "\n", + "source = instrument.add_component(\"source\", \"Source_simple\")\n", + "source.set_parameters(xwidth=0.05, yheight=0.03, dlambda=0.02,\n", + " dist=5, focus_xw=0.015, focus_yh=0.03)\n", + "source.lambda0 = instrument.add_parameter(\"wavelength\", value=2.0)\n", + "\n", + "sample = instrument.add_component(\"sample\", \"PowderN\")\n", + "sample.set_parameters(radius=source.focus_xw, yheight=0.8*source.focus_yh,\n", + " reflections='\"Na2Ca3Al2F14.laz\"')\n", + "sample.set_AT(source.dist, RELATIVE=source)\n", + "\n", + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample)\n", + "banana.set_parameters(xwidth=1.5, yheight=0.4, restore_neutron=1, filename='\"banana.dat\"')\n", + "banana.options = '\"theta limits=[5 175] bins=250, banana\"'\n", + "\n", + "mon = instrument.add_component(\"PSD\", \"PSD_monitor\")\n", + "mon.set_AT(0.1, RELATIVE=sample)\n", + "mon.set_parameters(nx=100, ny=100, filename='\"psd.dat\"',\n", + " xwidth=5*sample.radius, yheight=2*sample.yheight, restore_neutron=1)" + ] + }, + { + "cell_type": "markdown", + "id": "catholic-distribution", + "metadata": {}, + "source": [ + "### Performing the simulation\n", + "Here the simulation is performed to provide the example data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "general-chance", + "metadata": { + "scrolled": true, + "tags": [ + "scroll-output", + "hide-output" + ] + }, + "outputs": [], + "source": [ + "instrument.settings(ncount=1E6, output_path=\"plotting_example\")\n", + "instrument.set_parameters(wavelength=1.5)\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "retired-tiffany", + "metadata": {}, + "outputs": [], + "source": [ + "print(data)" + ] + }, + { + "cell_type": "markdown", + "id": "alpine-arnold", + "metadata": {}, + "source": [ + "## make_plot and make_sub_plot\n", + "The first available plotter is [*make_plot*](../_autosummary/mcstasscript.interface.plotter.make_plot.rst), it makes a single figure for each [McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst) set given in the input." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "literary-costs", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_plot(data)" + ] + }, + { + "cell_type": "markdown", + "id": "norwegian-growth", + "metadata": {}, + "source": [ + "The second available plotter is [*make_sub_plot*](../_autosummary/mcstasscript.interface.plotter.make_sub_plot.rst), it makes a single figure that includes plot of all given [McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst) as subplots. This works best with between 1 and 9 monitors, as more tend to become difficult to read." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "pretty-transcription", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "id": "behind-pleasure", + "metadata": {}, + "source": [ + "## Customizing plots\n", + "As described in the data section of the documentation, the [McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst) objects contain preferences on how they should be plotted. The same keywords can however be given to the plotters to override these preferences. When plotting a list of [McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst) objects, a list can be given for each keyword." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "natural-transition", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=[False, True], fontsize=15)" + ] + }, + { + "cell_type": "markdown", + "id": "backed-mirror", + "metadata": {}, + "source": [ + "### Available keywords\n", + "The keywords available to customize plotting are the same as can be set for *plot_options* in [McStasData](../_autosummary/mcstasscript.data.data.McStasData.rst). There are however a few additional keywords for controlling figure size and fontsize.\n", + "\n", + "| Keyword argument | Type | Default | Description |\n", + "| --- | --- | --- | --- |\n", + "| figsize | tuple | (13, 7) | Tuple describing figure size |\n", + "| fontsize | int | 11 | Fontsize to use in plotting |\n", + "| log | bool | False | Logarithmic axis for y in 1D or z in 2D |\n", + "| orders_of_mag | float | 300 | Maximum orders of magnitude to plot in 2D |\n", + "| colormap | str | \"jet\" | Matplotlib colormap to use |\n", + "| show_colorbar | bool | True | Show the colorbar |\n", + "| x_axis_multiplier | float | 1 | Multiplier for x axis data |\n", + "| y_axis_multiplier | float | 1 | Multiplier for y axis data |\n", + "| cut_min | float | 0 | Unitless lower limit normalized to data range |\n", + "| cut_max | float | 1 | Unitless upper limit normalized to data range |\n", + "| left_lim | float | | Lower limit to plot range of x axis |\n", + "| right_lim | float | | Upper limit to plot range of x axis|\n", + "| bottom_lim | float | | Lower limit to plot range of y axis|\n", + "| top_lim | float | | Upper limit to plot range of y axis|" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "declared-welsh", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dedicated-addiction", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/source/user_guide/plotting_widget.png b/docs/source/user_guide/plotting_widget.png new file mode 100644 index 00000000..0a6ce9b5 Binary files /dev/null and b/docs/source/user_guide/plotting_widget.png differ diff --git a/docs/source/user_guide/simulation_widget.png b/docs/source/user_guide/simulation_widget.png new file mode 100644 index 00000000..a9a0a9ff Binary files /dev/null and b/docs/source/user_guide/simulation_widget.png differ diff --git a/docs/source/user_guide/widgets.ipynb b/docs/source/user_guide/widgets.ipynb new file mode 100644 index 00000000..e0dbae55 --- /dev/null +++ b/docs/source/user_guide/widgets.ipynb @@ -0,0 +1,441 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "delayed-redhead", + "metadata": {}, + "source": [ + "# Widgets\n", + "McStasScript includes a few widgets designed for use in Jupyter Notebooks. They are not loaded with the standard import package as they rely on additional dependencies and requires more time to import which is not appropriate for scripts." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "lasting-donna", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "import mcstasscript.jb_interface as ms_widget" + ] + }, + { + "cell_type": "markdown", + "id": "silver-portal", + "metadata": {}, + "source": [ + "## Set up of an example instrument\n", + "As an example we set up a simple model of a time of flight powder diffractometer on a long pulsed source." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fleet-genealogy", + "metadata": { + "tags": [ + "scroll-input" + ] + }, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"POWTOF\")\n", + "\n", + "instrument.add_parameter(\"double\", \"Lmin\", value=0.5, comment=\"[AA] Lower edge of wavelength band\")\n", + "instrument.add_parameter(\"double\", \"Wavelength_band\", value=1.8, comment=\"[AA] Width of wavelength band\")\n", + "instrument.add_parameter(\"double\", \"two_theta\", value=90.0, comment=\"[deg] TOF det 2 theta\")\n", + "instrument.add_parameter(\"double\", \"npulses\", value=2.0,\n", + " comment=\"[1] Number of pulses from source\",\n", + " options=[1, 2, 3, 4, 5, 6])\n", + "\n", + "instrument.add_declare_var(\"int\", \"npulses_declare\")\n", + "instrument.add_declare_var(\"double\", \"Lmax\")\n", + "instrument.add_declare_var(\"double\", \"Lcenter\")\n", + "\n", + "instrument.append_initialize(\"npulses_declare=npulses; \")\n", + "instrument.append_initialize(\"Lmax = Lmin + Wavelength_band; \")\n", + "\n", + "instrument.add_declare_var(\"double\", \"sample_position\", value=160)\n", + "\n", + "Origin = instrument.add_component(\"Origin\", \"Progress_bar\")\n", + "\n", + "Source = instrument.add_component(\"Source\", \"Source_simple\")\n", + "Source.yheight = 0.03\n", + "Source.xwidth = 0.03\n", + "Source.dist = \"sample_position\"\n", + "Source.focus_xw = 0.03\n", + "Source.focus_yh = 0.03\n", + "Source.lambda0 = \"Lmin + 0.5*Wavelength_band\"\n", + "Source.dlambda = \"0.5*Wavelength_band\"\n", + "Source.flux = 1E13\n", + "Source.append_EXTEND(\"double t_between_pulses=1.0/14.0;\")\n", + "Source.append_EXTEND(\"double pulse_n=(double) floor(rand01()*npulses_declare);\")\n", + "Source.append_EXTEND(\"double pulse_delay=t_between_pulses*pulse_n;\")\n", + "Source.append_EXTEND(\"t=2860*rand01()*1E-6 + pulse_delay;\")\n", + "Source.set_AT(0, RELATIVE=Origin)\n", + "\n", + "instrument.add_declare_var(\"double\", \"tmax_source\")\n", + "instrument.add_declare_var(\"double\", \"last_pulse_t\")\n", + "instrument.append_initialize(\"last_pulse_t = 1E6*(npulses-1)*1/14.0;\")\n", + "instrument.append_initialize(\"tmax_source = 3000 + 1.1*last_pulse_t;\")\n", + "\n", + "TOFmon1 = instrument.add_component(\"TOFmon1\", \"TOF_monitor\")\n", + "TOFmon1.nt = 200\n", + "TOFmon1.filename = '\"TOFmon1\"'\n", + "TOFmon1.xwidth = 0.02\n", + "TOFmon1.yheight = 0.02\n", + "TOFmon1.tmin = 0\n", + "TOFmon1.tmax = \"tmax_source\"\n", + "TOFmon1.restore_neutron = 1\n", + "TOFmon1.set_AT([0, 0, 1e-6], RELATIVE=Source)\n", + "\n", + "TOFLambda1 = instrument.add_component(\"TOFLambda1\", \"TOFLambda_monitor\")\n", + "TOFLambda1.nL = 200\n", + "TOFLambda1.nt = 300\n", + "TOFLambda1.tmin = 0\n", + "TOFLambda1.tmax = \"tmax_source\"\n", + "TOFLambda1.filename = '\"TOFLambda1\"'\n", + "TOFLambda1.xwidth = 0.02\n", + "TOFLambda1.yheight = 0.02\n", + "TOFLambda1.Lmin = 0.1\n", + "TOFLambda1.Lmax = 5\n", + "TOFLambda1.restore_neutron = 1\n", + "TOFLambda1.set_AT([0, 0, 1e-6], RELATIVE=Source)\n", + "\n", + "PSD = instrument.add_component(\"PSD\", \"PSD_monitor\")\n", + "PSD.filename = '\"PSD\"'\n", + "PSD.xwidth = 0.03\n", + "PSD.yheight = 0.03\n", + "PSD.set_AT([0, 0, 0.5], RELATIVE=Source)\n", + "\n", + "\n", + "instrument.add_parameter(\"double\", \"enable_chopper_1\", value=0,\n", + " comment=\"Enable clockwise chopper\", options=[0, 1])\n", + "instrument.add_parameter(\"double\", \"enable_chopper_2\", value=0,\n", + " comment=\"Enable counter clockwise chopper\", options=[0, 1])\n", + "\n", + "instrument.add_declare_var(\"double\", \"speed\")\n", + "instrument.add_declare_var(\"double\", \"delay\")\n", + "instrument.add_declare_var(\"double\", \"chopper_position\", value=6.5)\n", + "instrument.append_initialize(\"Lcenter = Lmin + 0.5*Wavelength_band; \")\n", + "instrument.append_initialize(\"speed = 2.0*PI/Lcenter*K2V; \")\n", + "instrument.append_initialize(\"delay = chopper_position/speed; \")\n", + "instrument.append_initialize(\"delay = delay + 1.340E-3; \")\n", + "instrument.add_parameter(\"frequency_multiplier\", value=1,\n", + " comment=\"[1] Chopper frequency as multiple of source frequency\")\n", + "\n", + "chopper = instrument.add_component(\"chopper\", \"DiskChopper\")\n", + "chopper.theta_0 = 4.0\n", + "chopper.radius = 0.35\n", + "chopper.yheight = 0.03\n", + "chopper.nu = \"frequency_multiplier*14.0\"\n", + "chopper.delay = \"delay\"\n", + "chopper.set_AT([0, 0, 'chopper_position - 0.01'], RELATIVE=Source)\n", + "chopper.set_WHEN(\"enable_chopper_1 > 0.5\")\n", + "\n", + "counter_chopper = instrument.add_component(\"counter_chopper\", \"DiskChopper\")\n", + "counter_chopper.theta_0 = 4.0\n", + "counter_chopper.radius = 0.35\n", + "counter_chopper.yheight = 0.03\n", + "counter_chopper.nu = \"-frequency_multiplier*14.0\"\n", + "counter_chopper.delay = \"delay\"\n", + "counter_chopper.set_AT([0, 0, 'chopper_position - 0.005'], RELATIVE=Source)\n", + "counter_chopper.set_WHEN(\"enable_chopper_2 > 0.5\")\n", + "\n", + "instrument.add_declare_var(\"double\", \"speed_max\")\n", + "instrument.append_initialize(\"speed_max = 2*PI/Lmin*K2V;\")\n", + "\n", + "instrument.add_declare_var(\"double\", \"speed_min\")\n", + "instrument.append_initialize(\"speed_min = 2*PI/Lmax*K2V;\")\n", + "\n", + "instrument.add_declare_var(\"double\", \"chopper_tmin\")\n", + "instrument.add_declare_var(\"double\", \"chopper_tmax\")\n", + "instrument.append_initialize(\"chopper_tmin = 0.9*1E6*chopper_position/speed_max;\")\n", + "instrument.append_initialize(\"chopper_tmax = 1.1*1E6*chopper_position/speed_min + tmax_source;\")\n", + "\n", + "TOFmon2 = instrument.add_component(\"TOFmon2\", \"TOF_monitor\")\n", + "TOFmon2.nt = 100\n", + "TOFmon2.filename = '\"TOFmon2\"'\n", + "TOFmon2.xwidth = 0.02\n", + "TOFmon2.yheight = 0.02\n", + "TOFmon2.tmin = \"chopper_tmin\"\n", + "TOFmon2.tmax = \"chopper_tmax\"\n", + "TOFmon2.restore_neutron = 1\n", + "TOFmon2.set_AT([0, 0, 'chopper_position'], RELATIVE=Source)\n", + "\n", + "TOFLambda2 = instrument.add_component(\"TOFLambda2\", \"TOFLambda_monitor\")\n", + "TOFLambda2.nL = 200\n", + "TOFLambda2.nt = 300\n", + "TOFLambda2.tmin = \"chopper_tmin\"\n", + "TOFLambda2.tmax = \"chopper_tmax\"\n", + "TOFLambda2.filename = '\"TOFLambda2\"'\n", + "TOFLambda2.xwidth = 0.02\n", + "TOFLambda2.yheight = 0.02\n", + "TOFLambda2.Lmin = 0.1\n", + "TOFLambda2.Lmax = 5\n", + "TOFLambda2.restore_neutron = 1\n", + "TOFLambda2.set_AT([0, 0, 'chopper_position'], RELATIVE=Source)\n", + "\n", + "instrument.add_declare_var(\"double\", \"sample_tmin\")\n", + "instrument.add_declare_var(\"double\", \"sample_tmax\")\n", + "instrument.append_initialize(\"sample_tmin = 0.9*1E6*sample_position/speed_max;\")\n", + "instrument.append_initialize(\"sample_tmax = 1.1*1E6*sample_position/speed_min + last_pulse_t;\")\n", + "\n", + "TOFmon3 = instrument.add_component(\"TOFmon3\", \"TOF_monitor\")\n", + "TOFmon3.nt = 200\n", + "TOFmon3.filename = '\"TOFmon3\"'\n", + "TOFmon3.xwidth = 0.02\n", + "TOFmon3.yheight = 0.02\n", + "TOFmon3.tmin = \"sample_tmin\"\n", + "TOFmon3.tmax = \"sample_tmax\"\n", + "TOFmon3.restore_neutron = 1\n", + "TOFmon3.set_AT([0, 0, 'sample_position'], RELATIVE=Source)\n", + "\n", + "TOFLambda3 = instrument.add_component(\"TOFLambda3\", \"TOFLambda_monitor\")\n", + "TOFLambda3.nL = 200\n", + "TOFLambda3.nt = 300\n", + "TOFLambda3.tmin = \"sample_tmin\"\n", + "TOFLambda3.tmax = \"sample_tmax\"\n", + "TOFLambda3.filename = '\"TOFLambda3\"'\n", + "TOFLambda3.xwidth = 0.02\n", + "TOFLambda3.yheight = 0.02\n", + "TOFLambda3.Lmin = 0.1\n", + "TOFLambda3.Lmax = 5\n", + "TOFLambda3.restore_neutron = 1\n", + "TOFLambda3.set_AT([0, 0, 'sample_position'], RELATIVE=Source)\n", + "\n", + "Sample = instrument.add_component(\"Sample\", \"Powder1\")\n", + "Sample.radius = 0.003\n", + "Sample.yheight = 0.02\n", + "Sample.q = 5\n", + "Sample.d_phi = 12\n", + "Sample.set_AT([0, 0, 'sample_position'], RELATIVE=Source)\n", + "\n", + "beamstop = instrument.add_component(\"beamstop\", \"Beamstop\")\n", + "beamstop.radius = 0.2\n", + "beamstop.set_AT([0, 0, 0.5], RELATIVE=Sample)\n", + "\n", + "TOF_cylPSD = instrument.add_component(\"TOF_cylPSD\", \"TOF_cylPSD_monitor\")\n", + "TOF_cylPSD.nt = 200\n", + "TOF_cylPSD.nphi = 180\n", + "TOF_cylPSD.filename = '\"TOF_cylPSD\"'\n", + "TOF_cylPSD.radius = 2.0\n", + "TOF_cylPSD.yheight = 0.20\n", + "TOF_cylPSD.tmin = \"sample_tmin\"\n", + "TOF_cylPSD.tmax = \"sample_tmax\"\n", + "TOF_cylPSD.restore_neutron = 1\n", + "TOF_cylPSD.set_AT([0, 0, 0], RELATIVE=Sample)\n", + "\n", + "TOFdetArm = instrument.add_component(\"TOFdetArm\", \"Arm\")\n", + "TOFdetArm.set_AT([0, 0, 0], RELATIVE=Sample)\n", + "TOFdetArm.set_ROTATED([0, 'two_theta', 0], RELATIVE=Sample)\n", + "\n", + "TOFdet = instrument.add_component(\"TOFdet\", \"TOF_monitor\")\n", + "TOFdet.nt = 100\n", + "TOFdet.filename = '\"TOFdet\"'\n", + "TOFdet.xwidth = 0.01\n", + "TOFdet.yheight = 0.2\n", + "TOFdet.tmin = 70000\n", + "TOFdet.tmax = 80000\n", + "TOFdet.restore_neutron = 1\n", + "TOFdet.set_AT([0, 0, 2.001], RELATIVE=TOFdetArm)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "three-public", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "id": "facial-monkey", + "metadata": {}, + "source": [ + "## Plotting interface\n", + "The data generated by the above instrument can now be shown in a widget interface. Before launching the interface it is important to choose the widget backend for matplotlib, which is done in the following cell. The *show* function in ms_widget is then used to display the interface, it just needs the returned data as an argument." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "patient-shelter", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib widget" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "seven-dairy", + "metadata": {}, + "outputs": [], + "source": [ + "#ms_widget.show(data)" + ] + }, + { + "cell_type": "markdown", + "id": "global-extension", + "metadata": {}, + "source": [ + "An image of the interface is shown below as the interactive widget is not currently working in the HTML documentation.\n", + "\n", + "![plotting interface](plotting_widget.png \"Plotting widget\")" + ] + }, + { + "cell_type": "markdown", + "id": "thirty-patch", + "metadata": {}, + "source": [ + "In the above interface the left side shows the current plot, and the right side contains a dropdown box for selecting the a new plot and plot options. The log plot checkbox works for both 1D and 2D data, though the remaining options are only applied for 2D datasets." + ] + }, + { + "cell_type": "markdown", + "id": "aware-applicant", + "metadata": {}, + "source": [ + "## Simulation interface\n", + "It is also possible to run the simulation from a widget, simply pass an instrument object to the *show* function." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "adolescent-monte", + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "#ms_widget.show(instrument)" + ] + }, + { + "cell_type": "markdown", + "id": "supported-contrast", + "metadata": {}, + "source": [ + "An image of the interface is shown below as the interactive widget is not currently working in the HTML documentation.\n", + "\n", + "![simulation interface](simulation_widget.png \"Simulation widget\")" + ] + }, + { + "cell_type": "markdown", + "id": "announced-passage", + "metadata": {}, + "source": [ + "The top of the interface contains all input parameters of the instrument. These can be either text fields or dropdown boxes, the latter being the case if options are given to the parameter object. The next elements from the top is the run button, ncount field and mpi field. Pressing the run button starts the simulation, and while it is running, the icon will be an hourglass. Underneath is the plotting interface which will be updated each time a simulation completes." + ] + }, + { + "cell_type": "markdown", + "id": "convenient-honolulu", + "metadata": {}, + "source": [ + "### Interface object\n", + "The *show* function does not allow the user to retrieve the simulated data. If that is desired one instead have to use the *SimInterface* class that creates a SimInterface object. This object can be used to show display the interface with *show_interface*." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "entertaining-pantyhose", + "metadata": {}, + "outputs": [], + "source": [ + "sim_interface = ms_widget.SimInterface(instrument)\n", + "#sim_interface.show_interface()" + ] + }, + { + "cell_type": "markdown", + "id": "swedish-dubai", + "metadata": {}, + "source": [ + "Through the *SimInterface* object it is possible to access data from the last simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "verbal-concentrate", + "metadata": {}, + "outputs": [], + "source": [ + "data = sim_interface.get_data()" + ] + }, + { + "cell_type": "markdown", + "id": "chronic-theater", + "metadata": {}, + "source": [ + "## Instrument diagram as a widget\n", + "The last widget included in McStasScript is the instrument diagram, though it only behaves in an interactive manner when the matplotlib widget backend is used. As a widget it is possible to get information on each component box by hovering the mouse of the left edge of the box. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "manual-series", + "metadata": {}, + "outputs": [], + "source": [ + "#instrument.show_diagram()" + ] + }, + { + "cell_type": "markdown", + "id": "arabic-adult", + "metadata": {}, + "source": [ + "An image of the interface is shown below as the interactive widget is not currently working in the HTML documentation.\n", + "\n", + "![instrument diagram](instrument_diagram_widget.png \"Instrument diagram\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "neutral-azerbaijan", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/McStasScript_demo.ipynb b/examples/McStasScript_demo.ipynb new file mode 100644 index 00000000..9c33b981 --- /dev/null +++ b/examples/McStasScript_demo.ipynb @@ -0,0 +1,739 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Demonstration of McStasScript\n", + "This file demonstrates how McStasScript can be used to run McStas from a python environment in a userfreindly manner." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The following components are found in the work_directory / input_path:\n", + " Union_sphere.comp\n", + " Texture_process.comp\n", + " Union_cone.comp\n", + " Union_box.comp\n", + " Single_crystal_process.comp\n", + " Union_abs_logger_2D_space.comp\n", + " Union_logger_2D_kf.comp\n", + " Template_process.comp\n", + " PhononSimple_process.comp\n", + " Union_conditional_standard.comp\n", + " Union_abs_logger_1D_space.comp\n", + " Union_abs_logger_event.comp\n", + " NCrystal_process.comp\n", + " Union_abs_logger_1D_space_event.comp\n", + " Union_abs_logger_1D_space_tof.comp\n", + " Union_logger_2D_space.comp\n", + " Union_conditional_PSD.comp\n", + " Union_master.comp\n", + " AF_HB_1D_process.comp\n", + " Union_logger_2D_kf_time.comp\n", + " Union_cylinder.comp\n", + " Union_abs_logger_1D_space_tof_to_lambda.comp\n", + " Powder_process.comp\n", + " Union_make_material.comp\n", + " Incoherent_process.comp\n", + " Union_logger_1D.comp\n", + " Union_logger_3D_space.comp\n", + " IncoherentPhonon_process.comp\n", + " Union_logger_2DQ.comp\n", + " Union_mesh.comp\n", + " Union_logger_2D_space_time.comp\n", + "These definitions will be used instead of the installed versions.\n" + ] + } + ], + "source": [ + "import mcstasscript as ms\n", + "\n", + "# Creating the instance of the class, insert path to mcrun and to mcstas root directory\n", + "instr = ms.McStas_instr(\"jupyter_demo\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The instrument object knows what components are available in this McStas installation and can provide some help." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Here are the available component categories:\n", + " contrib\n", + " misc\n", + " monitors\n", + " obsolete\n", + " optics\n", + " samples\n", + " sources\n", + " work directory\n", + "Call available_components(category_name) to display\n" + ] + } + ], + "source": [ + "instr.available_components() # Shows available McStas component categories in current installation" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Here are all components in the sources category.\n", + " Adapt_check Moderator Source_Optimizer Source_gen\n", + " ESS_butterfly Monitor_Optimizer Source_adapt Source_simple\n", + " ESS_moderator Source_Maxwell_3 Source_div \n" + ] + } + ], + "source": [ + "instr.available_components(\"sources\") # Display all McStas source components " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ___ Help Source_simple _____________________________________________________________\n", + "|\u001b[1moptional parameter\u001b[0m|\u001b[1m\u001b[4mrequired parameter\u001b[0m\u001b[0m|\u001b[1m\u001b[94mdefault value\u001b[0m\u001b[0m|\u001b[1m\u001b[92muser specified value\u001b[0m\u001b[0m|\n", + "\u001b[1mradius\u001b[0m = \u001b[1m\u001b[94m0.1\u001b[0m\u001b[0m [m] // Radius of circle in (x,y,0) plane where neutrons are \n", + " generated. \n", + "\u001b[1myheight\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Height of rectangle in (x,y,0) plane where neutrons are \n", + " generated. \n", + "\u001b[1mxwidth\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Width of rectangle in (x,y,0) plane where neutrons are \n", + " generated. \n", + "\u001b[1mdist\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Distance to target along z axis.\n", + "\u001b[1mfocus_xw\u001b[0m = \u001b[1m\u001b[94m0.045\u001b[0m\u001b[0m [m] // Width of target\n", + "\u001b[1mfocus_yh\u001b[0m = \u001b[1m\u001b[94m0.12\u001b[0m\u001b[0m [m] // Height of target\n", + "\u001b[1mE0\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [meV] // Mean energy of neutrons.\n", + "\u001b[1mdE\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [meV] // Energy half spread of neutrons (flat or gaussian sigma).\n", + "\u001b[1mlambda0\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [AA] // Mean wavelength of neutrons.\n", + "\u001b[1mdlambda\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [AA] // Wavelength half spread of neutrons.\n", + "\u001b[1mflux\u001b[0m = \u001b[1m\u001b[94m1.0\u001b[0m\u001b[0m [1/(s*cm**2*st*energy unit)] // flux per energy unit, Angs or meV if \n", + " flux=0, the source emits 1 in 4*PI whole \n", + " space. \n", + "\u001b[1mgauss\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [1] // Gaussian (1) or Flat (0) energy/wavelength distribution\n", + "\u001b[1mtarget_index\u001b[0m = \u001b[1m\u001b[94m1\u001b[0m\u001b[0m [1] // relative index of component to focus at, e.g. next is \n", + " +1 this is used to compute 'dist' automatically. \n", + "-------------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "instr.component_help(\"Source_simple\") # Displays help on the Source_simple component" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "First a *Source_simple* component called *Source* is added." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "source = instr.add_component(\"Source\", \"Source_simple\") # Adds an instance of Source_simple" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "One way to adjust the parameters of a component is to access them directly as attributes." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "source.xwidth = 0.06\n", + "source.yheight = 0.08;\n", + "source.dist = 2\n", + "source.focus_xw = 0.05\n", + "source.focus_yh = 0.05\n", + "source.flux = 1E8" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "It is possible to create parameter objects and use these directly as input to component parameters." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "wavelength = instr.add_parameter(\"double\", \"wavelength\", value=3, comment=\"[AA] Wavelength emmited from source\")\n", + "source.lambda0 = wavelength\n", + "source.dlambda = 0.05" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "COMPONENT Source = Source_simple\n", + " \u001b[1myheight\u001b[0m = \u001b[1m\u001b[92m0.08\u001b[0m\u001b[0m [m]\n", + " \u001b[1mxwidth\u001b[0m = \u001b[1m\u001b[92m0.06\u001b[0m\u001b[0m [m]\n", + " \u001b[1mdist\u001b[0m = \u001b[1m\u001b[92m2\u001b[0m\u001b[0m [m]\n", + " \u001b[1mfocus_xw\u001b[0m = \u001b[1m\u001b[92m0.05\u001b[0m\u001b[0m [m]\n", + " \u001b[1mfocus_yh\u001b[0m = \u001b[1m\u001b[92m0.05\u001b[0m\u001b[0m [m]\n", + " \u001b[1mlambda0\u001b[0m = \u001b[1m\u001b[92mwavelength\u001b[0m\u001b[0m [AA]\n", + " \u001b[1mdlambda\u001b[0m = \u001b[1m\u001b[92m0.05\u001b[0m\u001b[0m [AA]\n", + " \u001b[1mflux\u001b[0m = \u001b[1m\u001b[92m100000000.0\u001b[0m\u001b[0m [1/(s*cm**2*st*energy unit)]\n", + "AT [0, 0, 0] ABSOLUTE\n" + ] + } + ], + "source": [ + "print(source) # Verify that the information is correct" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next a guide is added and a comment is included." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "guide = instr.add_component(\"Guide\", \"Guide_gravity\", AT=[0,0,2], RELATIVE=\"Source\")\n", + "guide.set_comment = \"Beam extraction and first guide piece\"" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ___ Help Guide_gravity _____________________________________________________________\n", + "|\u001b[1moptional parameter\u001b[0m|\u001b[1m\u001b[4mrequired parameter\u001b[0m\u001b[0m|\u001b[1m\u001b[94mdefault value\u001b[0m\u001b[0m|\u001b[1m\u001b[92muser specified value\u001b[0m\u001b[0m|\n", + "\u001b[4m\u001b[1mw1\u001b[0m\u001b[0m [m] // Width at the guide entry\n", + "\u001b[4m\u001b[1mh1\u001b[0m\u001b[0m [m] // Height at the guide entry\n", + "\u001b[1mw2\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Width at the guide exit. If 0, use w1.\n", + "\u001b[1mh2\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Height at the guide exit. If 0, use h1.\n", + "\u001b[4m\u001b[1ml\u001b[0m\u001b[0m [m] // length of guide\n", + "\u001b[1mR0\u001b[0m = \u001b[1m\u001b[94m0.995\u001b[0m\u001b[0m [1] // Low-angle reflectivity\n", + "\u001b[1mQc\u001b[0m = \u001b[1m\u001b[94m0.0218\u001b[0m\u001b[0m [AA-1] // Critical scattering vector\n", + "\u001b[1malpha\u001b[0m = \u001b[1m\u001b[94m4.38\u001b[0m\u001b[0m [AA] // Slope of reflectivity\n", + "\u001b[1mm\u001b[0m = \u001b[1m\u001b[94m1.0\u001b[0m\u001b[0m [1] // m-value of material. Zero means completely absorbing. m=0.65 \n", + " glass/SiO2 Si Ni Ni58 supermirror Be Diamond m= 0.65 \n", + " 0.47 1 1.18 2-6 1.01 1.12 for glass/SiO2, m=1 for Ni, \n", + " 1.2 for Ni58, m=2-6 for supermirror. m=0.47 for Si \n", + "\u001b[1mW\u001b[0m = \u001b[1m\u001b[94m0.003\u001b[0m\u001b[0m [AA-1] // Width of supermirror cut-off\n", + "\u001b[1mnslit\u001b[0m = \u001b[1m\u001b[94m1.0\u001b[0m\u001b[0m [1] // Number of vertical channels in the guide (>= 1) (nslit-1 \n", + " vertical dividing walls). \n", + "\u001b[1md\u001b[0m = \u001b[1m\u001b[94m0.0005\u001b[0m\u001b[0m [m] // Thickness of subdividing walls\n", + "\u001b[1mmleft\u001b[0m = \u001b[1m\u001b[94m-1.0\u001b[0m\u001b[0m [1] // m-value of material for left. vert. mirror\n", + "\u001b[1mmright\u001b[0m = \u001b[1m\u001b[94m-1.0\u001b[0m\u001b[0m [1] // m-value of material for right. vert. mirror\n", + "\u001b[1mmtop\u001b[0m = \u001b[1m\u001b[94m-1.0\u001b[0m\u001b[0m [1] // m-value of material for top. horz. mirror\n", + "\u001b[1mmbottom\u001b[0m = \u001b[1m\u001b[94m-1.0\u001b[0m\u001b[0m [1] // m-value of material for bottom. horz. mirror\n", + "\u001b[1mnhslit\u001b[0m = \u001b[1m\u001b[94m1.0\u001b[0m\u001b[0m [1] // Number of horizontal channels in the guide (>= 1). \n", + " (nhslit-1 horizontal dividing walls). this enables to have \n", + " nslit*nhslit rectangular channels \n", + "\u001b[1mG\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m/s2] // Gravitation norm. 0 value disables G effects.\n", + "\u001b[1maleft\u001b[0m = \u001b[1m\u001b[94m-1.0\u001b[0m\u001b[0m [1] // alpha-value of left vert. mirror\n", + "\u001b[1maright\u001b[0m = \u001b[1m\u001b[94m-1.0\u001b[0m\u001b[0m [1] // alpha-value of right vert. mirror\n", + "\u001b[1matop\u001b[0m = \u001b[1m\u001b[94m-1.0\u001b[0m\u001b[0m [1] // alpha-value of top horz. mirror\n", + "\u001b[1mabottom\u001b[0m = \u001b[1m\u001b[94m-1.0\u001b[0m\u001b[0m [1] // alpha-value of left horz. mirror\n", + "\u001b[1mwavy\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [deg] // Global guide waviness\n", + "\u001b[1mwavy_z\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [deg] // Partial waviness along propagation axis\n", + "\u001b[1mwavy_tb\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [deg] // Partial waviness in transverse direction for top/bottom \n", + " mirrors \n", + "\u001b[1mwavy_lr\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [deg] // Partial waviness in transverse direction for left/right \n", + " mirrors \n", + "\u001b[1mchamfers\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Global chamfers specifications (in/out/mirror sides).\n", + "\u001b[1mchamfers_z\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Input and output chamfers\n", + "\u001b[1mchamfers_lr\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Chamfers on left/right mirror sides\n", + "\u001b[1mchamfers_tb\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [m] // Chamfers on top/bottom mirror sides\n", + "\u001b[1mnelements\u001b[0m = \u001b[1m\u001b[94m1.0\u001b[0m\u001b[0m [1] // Number of sections in the guide (length l/nelements).\n", + "\u001b[1mnu\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [Hz] // Rotation frequency (round/s) for Fermi Chopper approximation\n", + "\u001b[1mphase\u001b[0m = \u001b[1m\u001b[94m0.0\u001b[0m\u001b[0m [deg] // Phase shift for the Fermi Chopper approximation\n", + "\u001b[1mreflect\u001b[0m = \u001b[1m\u001b[94m\"NULL\"\u001b[0m\u001b[0m [str] // Reflectivity file name. Format \n", + "-------------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "guide.show_parameters() # Lets view the parameters available in our guide component" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "guide.set_parameters(w1=0.05, w2=0.05, h1=0.05, h2=0.05, l=8, m=3.5, G=-9.2)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "COMPONENT Guide = Guide_gravity\n", + " \u001b[1mw1\u001b[0m = \u001b[1m\u001b[92m0.05\u001b[0m\u001b[0m [m]\n", + " \u001b[1mh1\u001b[0m = \u001b[1m\u001b[92m0.05\u001b[0m\u001b[0m [m]\n", + " \u001b[1mw2\u001b[0m = \u001b[1m\u001b[92m0.05\u001b[0m\u001b[0m [m]\n", + " \u001b[1mh2\u001b[0m = \u001b[1m\u001b[92m0.05\u001b[0m\u001b[0m [m]\n", + " \u001b[1ml\u001b[0m = \u001b[1m\u001b[92m8\u001b[0m\u001b[0m [m]\n", + " \u001b[1mm\u001b[0m = \u001b[1m\u001b[92m3.5\u001b[0m\u001b[0m [1]\n", + " \u001b[1mG\u001b[0m = \u001b[1m\u001b[92m-9.2\u001b[0m\u001b[0m [m/s2]\n", + "AT [0, 0, 2] RELATIVE Source\n" + ] + } + ], + "source": [ + "print(guide) # Verify the information on this component is correct" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Keyword arguments can be used to specify properties like location when a component is added." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "# Add a sample to the instrument\n", + "sample = instr.add_component(\"sample\", \"PowderN\", AT=[0, 0, 9], RELATIVE=\"Guide\") " + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# Set parameters corresponding to a copper cylinder\n", + "sample.radius = 0.015\n", + "sample.yheight = 0.05\n", + "sample.reflections = '\"Cu.laz\"'" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Here are all components in the monitors category.\n", + " Brilliance_monitor Monitor_Sqw Pol_monitor\n", + " Cyl_monitor Monitor_nD PreMonitor_nD\n", + " DivLambda_monitor PSD_TOF_monitor Res_monitor\n", + " DivPos_monitor PSD_monitor Sqq_w_monitor\n", + " Divergence_monitor PSD_monitor_4PI Sqw_monitor\n", + " EPSD_monitor PSD_monitor_TOF TOF2E_monitor\n", + " E_monitor PSD_monitor_psf TOF2Q_cylPSD_monitor\n", + " Event_monitor_simple PSD_monitor_psf_eff TOFLambda_monitor\n", + " Hdiv_monitor PSDcyl_monitor TOF_PSD_monitor_rad\n", + " L_monitor PSDlin_diff_monitor TOF_cylPSD_monitor\n", + " MeanPolLambda_monitor PSDlin_monitor TOF_monitor\n", + " Monitor PolLambda_monitor TOFlog_monitor\n", + " Monitor_4PI PolTOF_monitor \n" + ] + } + ], + "source": [ + "instr.available_components(\"monitors\") # Monitors are needed to record information" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "# Add 4PI detector to detect all neutrons\n", + "sphere = instr.add_component(\"PSD_4PI\", \"PSD_monitor_4PI\", RELATIVE=\"sample\")" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "COMPONENT PSD_4PI = PSD_monitor_4PI\n", + " \u001b[1mnx\u001b[0m = \u001b[1m\u001b[92m300\u001b[0m\u001b[0m [1]\n", + " \u001b[1mny\u001b[0m = \u001b[1m\u001b[92m300\u001b[0m\u001b[0m [1]\n", + " \u001b[1mfilename\u001b[0m = \u001b[1m\u001b[92m\"PSD_4PI.dat\"\u001b[0m\u001b[0m [string]\n", + " \u001b[1mradius\u001b[0m = \u001b[1m\u001b[92m1\u001b[0m\u001b[0m [m]\n", + " \u001b[1mrestore_neutron\u001b[0m = \u001b[1m\u001b[92m1\u001b[0m\u001b[0m [1]\n", + "AT [0, 0, 0] RELATIVE sample\n" + ] + } + ], + "source": [ + "sphere.nx = 300\n", + "sphere.ny = 300\n", + "sphere.radius = 1\n", + "sphere.restore_neutron = 1\n", + "sphere.filename = '\"PSD_4PI.dat\"' # filenames need printed quotes, use both ' and \"\n", + "print(sphere) # Verify that monitors have filenames that are strings when printed" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "# Add PSD monitor to see the direct beam after the sample\n", + "PSD = instr.add_component(\"PSD\", \"PSD_monitor\", AT=[0,0,1], RELATIVE=\"sample\") \n", + "PSD.xwidth = 0.1\n", + "PSD.yheight = 0.1\n", + "PSD.nx = 200\n", + "PSD.ny = 200\n", + "PSD.filename = '\"PSD.dat\"'\n", + "PSD.restore_neutron = 1" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "L_mon = instr.add_component(\"L_mon\", \"L_monitor\", RELATIVE=\"PSD\")" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "# Since the wavelength is an instrument parameter, it can be used when setting parameters\n", + "L_mon.Lmin = \"wavelength - 0.1\"\n", + "L_mon.Lmax = \"wavelength + 0.1\"; L_mon.nL = 150\n", + "L_mon.xwidth = 0.1\n", + "L_mon.yheight = 0.1\n", + "L_mon.filename = '\"wave.dat\"'\n", + "L_mon.restore_neutron = 1\n", + "L_mon.comment = \"Wavelength monitor for narrow range\"" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "// Wavelength monitor for narrow range\n", + "COMPONENT L_mon = L_monitor\n", + " \u001b[1mnL\u001b[0m = \u001b[1m\u001b[92m150\u001b[0m\u001b[0m [1]\n", + " \u001b[1mfilename\u001b[0m = \u001b[1m\u001b[92m\"wave.dat\"\u001b[0m\u001b[0m [string]\n", + " \u001b[1mxwidth\u001b[0m = \u001b[1m\u001b[92m0.1\u001b[0m\u001b[0m [m]\n", + " \u001b[1myheight\u001b[0m = \u001b[1m\u001b[92m0.1\u001b[0m\u001b[0m [m]\n", + " \u001b[1mLmin\u001b[0m = \u001b[1m\u001b[92mwavelength - 0.1\u001b[0m\u001b[0m [AA]\n", + " \u001b[1mLmax\u001b[0m = \u001b[1m\u001b[92mwavelength + 0.1\u001b[0m\u001b[0m [AA]\n", + " \u001b[1mrestore_neutron\u001b[0m = \u001b[1m\u001b[92m1\u001b[0m\u001b[0m [1]\n", + "AT [0, 0, 0] RELATIVE PSD\n" + ] + } + ], + "source": [ + "print(L_mon)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Source Source_simple AT (0, 0, 0) ABSOLUTE \n", + "Guide Guide_gravity AT (0, 0, 2) RELATIVE Source\n", + "sample PowderN AT (0, 0, 9) RELATIVE Guide \n", + "PSD_4PI PSD_monitor_4PI AT (0, 0, 0) RELATIVE sample\n", + "PSD PSD_monitor AT (0, 0, 1) RELATIVE sample\n", + "L_mon L_monitor AT (0, 0, 0) RELATIVE PSD \n" + ] + } + ], + "source": [ + "instr.show_components() # Lets get an overview of the instrument so far" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "double wavelength = 3 // [AA] Wavelength emmited from source\n" + ] + } + ], + "source": [ + "instr.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Running the McStas instrument\n", + "Now we have assembled an instrument and it is time to perform a simulation" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Instrument settings:\n", + " ncount: 2.00e+07\n", + " mpi: 4\n", + " gravity: True\n", + " output_path: jupyter_demo\n", + " run_path: .\n", + " package_path: /Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1\n", + " executable_path: /Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1/bin/\n", + " executable: mcrun\n", + " force_compile: True\n" + ] + } + ], + "source": [ + "# output_path specifies the foldername, if it already exists an index is added\n", + "instr.settings(output_path=\"jupyter_demo\", mpi=4, ncount=2E7, gravity=True)\n", + "instr.show_settings() # Check settings are correct" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "double wavelength = 1.5 // [AA] Wavelength emmited from source\n" + ] + } + ], + "source": [ + "# Input parameters are set with set_parameters\n", + "instr.set_parameters(wavelength=1.5)\n", + "instr.show_parameters()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO: Using directory: \"/Users/madsbertelsen/PaNOSC/McStasScript/github/McStasScript/examples/jupyter_demo\"\n", + "INFO: Regenerating c-file: jupyter_demo.c\n", + "CFLAGS=\n", + "INFO: Recompiling: ./jupyter_demo.out\n", + "mccode-r.c:1880:1: warning: non-void function does not return a value in all control paths [-Wreturn-type]\n", + "} /* mcsiminfo_init */\n", + "^\n", + "mccode-r.c:2837:3: warning: expression result unused [-Wunused-value]\n", + " *t0;\n", + " ^~~\n", + "2 warnings generated.\n", + "INFO: ===\n", + "Warning: 510482 events were removed in Component[5] PSD=PSD_monitor()\n", + " (negative time, miss next components, rounding errors, Nan, Inf).\n", + "Warning: 509825 events were removed in Component[5] PSD=PSD_monitor()\n", + " (negative time, miss next components, rounding errors, Nan, Inf).\n", + "Warning: 510622 events were removed in Component[5] PSD=PSD_monitor()\n", + " (negative time, miss next components, rounding errors, Nan, Inf).\n", + "Warning: 511299 events were removed in Component[5] PSD=PSD_monitor()\n", + " (negative time, miss next components, rounding errors, Nan, Inf).\n", + "INFO: Placing instr file copy jupyter_demo.instr in dataset /Users/madsbertelsen/PaNOSC/McStasScript/github/McStasScript/examples/jupyter_demo\n", + "\n", + "Simulation 'jupyter_demo' (jupyter_demo.instr): running on 4 nodes (master is 'CI0021617', MPI version 3.1).\n", + "Opening input file '/Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1//data/Cu.laz' (Table_Read_Offset)\n", + "Table from file 'Cu.laz' (block 1) is 19 x 18 (x=1:6), constant step. interpolation: linear\n", + " '# TITLE *-Cu-[FM3-M] Otte, H.M.[1961];# CELL 3.615050 3.615050 3.615050 90. ...'\n", + "PowderN: sample: Reading 19 rows from Cu.laz\n", + "PowderN: sample: Read 19 reflections from file 'Cu.laz'\n", + "PowderN: sample: Vc=47.24 [Angs] sigma_abs=15.12 [barn] sigma_inc=2.2 [barn] reflections=Cu.laz\n", + "PowderN: sample: WARNING: Did not hit sample from inside (inc). ABSORB.\n", + "PowderN: sample: WARNING: Did not hit sample from inside (coh). ABSORB.\n", + "PowderN: sample: WARNING: Did not hit sample from inside (coh). ABSORB.\n", + "Detector: PSD_4PI_I=42446.8 PSD_4PI_ERR=25.7775 PSD_4PI_N=8.59756e+06 \"PSD_4PI.dat\"\n", + "Detector: PSD_I=35457.5 PSD_ERR=24.9492 PSD_N=4.49112e+06 \"PSD.dat\"\n", + "Detector: L_mon_I=35457.5 L_mon_ERR=24.9492 L_mon_N=4.49112e+06 \"wave.dat\"\n", + "PowderN: sample: Info: you may highly improve the computation efficiency by using\n", + " SPLIT 8 COMPONENT sample=PowderN(...)\n", + " in the instrument description jupyter_demo.instr.\n", + "loading system configuration\n", + "\n" + ] + } + ], + "source": [ + "# The simulation is performed by calling backengine()\n", + "data = instr.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Working with the returned data\n", + "The returned data object is a list of McStasData objects, each containing the results from a monitor.\n", + "These data objects also contain preferences for how they should be plotted if this is done automatically." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1.494, 475.1862504]\n", + "[1.495333333, 474.9090911]\n", + "[1.496666667, 473.1532749]\n", + "[1.498, 472.6454829]\n", + "[1.499333333, 475.884394]\n" + ] + } + ], + "source": [ + "wavelength_data = ms.name_search(\"L_mon\", data)\n", + "wavelength_intensity = wavelength_data.Intensity\n", + "wavelength_xaxis = wavelength_data.xaxis\n", + "\n", + "for index in range(70,75):\n", + " print([wavelength_xaxis[index], wavelength_intensity[index]])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Plotting the returned data\n", + "The plot options looks at some metadata in the McStasData for plotting preferences. For this reason these options can be adjusted for individual data files instead of complex syntax for the plotting command." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Adjusting PSD_4PI plot\n", + "ms.name_plot_options(\"PSD_4PI\", data, log=1, colormap=\"hot\", orders_of_mag=5)\n", + "\n", + "plot = ms.make_sub_plot(data) # Making subplot of our monitors" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/examples/calibration_sample.ipynb b/examples/calibration_sample.ipynb new file mode 100644 index 00000000..4830ff54 --- /dev/null +++ b/examples/calibration_sample.ipynb @@ -0,0 +1,442 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Demonstration of McStasScript\n", + "Here the McStasScript Python McStas API is demonstrated by creating a small simulation with an imaging calibration sample. A python function is defined in order to ease the task of adding the many materials, and a for loop is used for arranging the smaller cylinders which are embedded in a larger Aluminium cylinder. This demonstration will use widgets to control the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import math\n", + "%matplotlib widget\n", + "\n", + "# Import McstasScript\n", + "import mcstasscript as ms\n", + "import mcstasscript.jb_interface as ms_widget\n", + "\n", + "# Create a McStas instrument\n", + "instr = ms.McStas_instr(\"calibration_sample\", author = \"Mads Bertelsen\", origin = \"ESS DMSC\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Add Union_init for McStas 3.x support\n", + "Init = instr.add_component(\"init\", \"Union_init\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding powder material definitions\n", + "Here we will be adding a few powder material definitions, and it is thus easier to create a small python function for the task. Normally the syntax would be like this for each material:\n", + "\n", + "`\n", + "Al_inc = instr.add_component(\"Al_inc\",\"Incoherent_process\")\n", + "Al_pow = instr.add_component(\"Al_pow\",\"Powder_process\")\n", + "Al_inc.sigma = 4*0.0082 # Incoherent cross section in Barns\n", + "Al_inc.unit_cell_volume = 66.4 # Unit cell volume in AA^3\n", + "Al_pow.reflections = '\"Al.laz\"' # Data file with powder lines\n", + "Al.my_absorption = \"100*4*0.231/66.4\" # Inverse penetration depth in 1/m\n", + "Al.process_string = '\"Al_inc,Al_pow\"' # Make a material with aluminium incoherent and aluminium powder` " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def add_union_powder(name, data_name, sigma_inc, sigma_abs, unit_V, instr):\n", + " \"\"\"\n", + " This function adds a Union material with incoherent scattering and powder lines\n", + " \"\"\"\n", + " material_incoherent = instr.add_component(name + \"_inc\", \"Incoherent_process\")\n", + " material_incoherent.sigma = sigma_inc\n", + " material_incoherent.unit_cell_volume = unit_V\n", + " material_powder = instr.add_component(name + \"_pow\", \"Powder_process\")\n", + " material_powder.reflections = '\"' + data_name + '\"' # Need quotes when describing a filename\n", + " material = instr.add_component(name, \"Union_make_material\")\n", + " material.my_absorption = 100*sigma_abs/unit_V\n", + " material.process_string = '\"' + name + \"_inc,\" + name + \"_pow\" + '\"'\n", + " \n", + "# Add a number of standard powders to our instrument (datafiles included with McStas)\n", + "add_union_powder(\"Al\", \"Al.laz\", 4*0.0082, 4*0.231, 66.4, instr)\n", + "add_union_powder(\"Cu\", \"Cu.laz\", 4*0.55, 4*3.78, 47.24, instr)\n", + "add_union_powder(\"Ni\", \"Ni.laz\", 4*5.2, 4*4.49, 43.76, instr)\n", + "add_union_powder(\"Ti\", \"Ti.laz\", 2*2.87, 2*6.09, 35.33, instr)\n", + "add_union_powder(\"Pb\", \"Pb.laz\", 4*0.003, 4*0.17, 121.29, instr)\n", + "add_union_powder(\"Fe\", \"Fe.laz\", 2*0.4, 2*2.56, 24.04, instr)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Describing a simple instrument\n", + "Now we start describing an instrument, we start with the source. We would like to control the energy and energy spread at run time, so this will be described using input parameters. These are added with the *add_parameter* method, which return a ParameterVariable object that can be used to refer to this variable." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Since we want to change the energy and energy range at run time, we add these as instrument parameters\n", + "energy = instr.add_parameter(\"energy\", value=10, comment=\"[meV] Energy of source\")\n", + "delta_energy = instr.add_parameter(\"delta_energy\", value=8, comment=\"[meV] Energy spread of source\")\n", + "\n", + "# Add a source to the McStas instrument\n", + "src = instr.add_component(\"source\", \"Source_div\")\n", + "src.set_parameters(xwidth=0.11, yheight=0.11, focus_aw=0.1, focus_ah=0.1, flux=1E13, E0=energy, dE=delta_energy)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The source will illuminate the sample directly, but we may want to rotate the sample in its place. We define rotations around vertical and horizontal as further input parameters, and set up a few arms to act as reference points." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Now we want to set a position and rotation of our sample\n", + "# The rotation should be adjustable, so we add instrument parameters for controling the rotation\n", + "rot_y = instr.add_parameter(\"rotation_y\", value=180, comment=\"[deg] Rotation around vertical\")\n", + "rot_x = instr.add_parameter(\"rotation_x\", value=0, comment=\"[deg] Rotation around horizontal\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# We add arms at the sample position, and a second arm with the correct rotation\n", + "sample_pos = instr.add_component(\"sample_pos\", \"Arm\", AT=[0, 0, 1], AT_RELATIVE=src)\n", + "sample_arm = instr.add_component(\"sample_arm\", \"Arm\", AT=[0, 0, 0], AT_RELATIVE=sample_pos)\n", + "sample_arm.set_ROTATED([rot_x, rot_y, 0], RELATIVE=sample_pos)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the sample\n", + "The aim is to create a simple calibration sample which is made from cylinders of different materials embedded in a larger cylinder. To do so, we will need the McStas Union_cylinder component, so lets get a bit of help on its parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instr.component_help(\"Union_cylinder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# We add the large aluminium base that contains samples of the remaining materials\n", + "base_cyl = instr.add_component(\"base_cyl\",\"Union_cylinder\", RELATIVE=sample_arm)\n", + "base_cyl.set_parameters(radius=0.04, yheight=0.02, priority=100, material_string='\"Al\"')\n", + "print(base_cyl)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next the internal cylinders are added. We use a small python for loop to add a cylinder of each material in succession. We add an additional sample with material chosen by the user from a list of our defined materials." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# We define a string containing the names of the materials we wish to add\n", + "instr.add_parameter(\"string\", \"material\", value='\"Pb\"',\n", + " comment=\"Material choice for extra material sample\",\n", + " options=['\"Cu\"', '\"Ni\"', '\"Ti\"', '\"Pb\"', '\"Fe\"', '\"Al\"'])\n", + "\n", + "sample_strings = [\"Cu\", \"Ni\", \"Ti\", \"Pb\", \"Fe\", \"material\"]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Here we write a for loop that adds a small cylinder of this material inside the large Al cylinder\n", + "angle_seperation = 36\n", + "distance_from_center = 0.03\n", + "sample_radius = 0.007\n", + "counter = 0\n", + "for sample_string in sample_strings:\n", + " x_position = distance_from_center * math.cos(counter*angle_seperation*3.14159/180)\n", + " x_position = round(x_position, 5) # round to 4 digits for easier printing\n", + " z_position = distance_from_center * math.sin(counter*angle_seperation*3.14159/180)\n", + " z_position = round(z_position, 5) # round to 4 digits for easier printing\n", + " this_sample = instr.add_component(sample_string + \"_cyl\", \"Union_cylinder\",\n", + " AT=[x_position, 0, z_position], RELATIVE=\"base_cyl\")\n", + " this_sample.radius = sample_radius;\n", + " this_sample.yheight = 0.019; # yheight must be different from base_cyl\n", + " this_sample.priority = 150 + counter; # ensure higher priority than base\n", + " if sample_string != \"material\":\n", + " this_sample.material_string = '\"' + sample_string + '\"'\n", + " else:\n", + " # The user selectable material is a parameter, where the remaining are treated as strings.\n", + " this_sample.material_string = sample_string\n", + " counter = counter + 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Union Loggers for seeing scattering intensity in the sample\n", + "Now that the sample has been defined, a few loggers are added to investigate where neutrons are scattered within the sample." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# A few Union loggers are set up for display of the scattering locations\n", + "space_2D_zx = instr.add_component(\"logger_space_zx_all\", \"Union_logger_2D_space\", AT_RELATIVE=sample_pos)\n", + "space_2D_zx.set_parameters(filename='\"space_zx.dat\"',\n", + " D_direction_1='\"z\"', n1=1000, D1_min=-0.05, D1_max=0.05,\n", + " D_direction_2='\"x\"', n2=1000, D2_min=-0.05, D2_max=0.05)\n", + "\n", + "space_2D_zy = instr.add_component(\"logger_space_zy_all\", \"Union_logger_2D_space\", AT_RELATIVE=sample_pos)\n", + "space_2D_zy.set_parameters(filename='\"space_zy.dat\"',\n", + " D_direction_1='\"z\"', n1=1000, D1_min=-0.05, D1_max=0.05,\n", + " D_direction_2='\"y\"', n2=1000, D2_min=-0.05, D2_max=0.05)\n", + "\n", + "space_2D_zy = instr.add_component(\"logger_space_xy_all\", \"Union_logger_2D_space\", AT_RELATIVE=sample_pos)\n", + "space_2D_zy.set_parameters(filename='\"space_xy.dat\"',\n", + " D_direction_1='\"x\"', n1=1000, D1_min=-0.05, D1_max=0.05,\n", + " D_direction_2='\"y\"', n2=1000, D2_min=-0.05, D2_max=0.05)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### The Union master component\n", + "The Union master component is what will do the simulation of the collected calibration sample. It takes all the material information and physical volumes that we have described, and runs a simulation with full multiple scattering." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "master = instr.add_component(\"calibration_sample\", \"Union_master\", AT_RELATIVE=sample_pos)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### McStas monitors\n", + "At the end we add a few McStas monitors to view the transmitted beam, including a PSD / energy monitor to see the Bragg edges of the different materials. Notice in the EPSD monitor we use the input parameters in a small c expression to calculate the minimum and maximum energy simulated by the source." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Add position sensitive detector for transmission measurement\n", + "PSD = instr.add_component(\"PSD\", \"PSD_monitor\", AT=[0,0,1], RELATIVE=sample_pos) \n", + "PSD.set_parameters(filename='\"PSD.dat\"', xwidth=0.1, yheight=0.1, nx=200, ny=200, restore_neutron=1)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Adds 1D position sensitive detector for transmission measurement\n", + "PSDlin = instr.add_component(\"PSDlin\", \"PSDlin_monitor\", AT=[0,0,1], RELATIVE=sample_pos) \n", + "PSDlin.set_parameters(filename='\"PSDlin.dat\"', xwidth=0.1, yheight=0.1, nbins=200, restore_neutron=1)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Add energy position monitor to see Bragg edges\n", + "EPSD = instr.add_component(\"EPSD\", \"EPSD_monitor\", RELATIVE=PSD)\n", + "EPSD.set_parameters(filename='\"EPSD.dat\"', xwidth=0.1, yheight=0.02, nE=300, nx=200, restore_neutron=1,\n", + " Emin=\"energy - delta_energy\", Emax=\"energy + delta_energy\")" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# Add Union_stop for McStas 3.x support\n", + "Stop = instr.add_component(\"stop\", \"Union_stop\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Last check \n", + "Before running the McStas simulation we do a last check to see that the McStas instrument looks as we expect. First the components are listed with their locations and rotations, then the available parameters are shown." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "instr.show_components(line_length=117) # Show nice overview" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation\n", + "The simulation can now be performed from the Jupyter Notebook using the widget interface. If one just wants to use the interface, ms_widget.show is sufficient, but we would like to load the data afterwards, and for that purpose one needs to create an interface object with SimInterface like below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#ms_widget.show(instr) # Shortcut, but one can not get sim_interface object\n", + "\n", + "sim_interface = ms_widget.SimInterface(instr)\n", + "sim_interface.show_interface()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "instr.show_instrument()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Getting data from the widget simulation\n", + "It is possible to grab the latest data produced by the widget simulation. Run these cells after a simulation has been performed with the above widget." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "data = sim_interface.get_data()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "if len(data) != 0:\n", + " EPSD_data = ms.name_search(\"EPSD\", data)\n", + " ms.make_plot(EPSD_data, figsize=(9,6))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using plotting interface without simulation interface\n", + "The plotting interface can be used for existing datasets." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms_widget.show(data)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/examples/cryostat_demo.ipynb b/examples/cryostat_demo.ipynb new file mode 100644 index 00000000..95663dac --- /dev/null +++ b/examples/cryostat_demo.ipynb @@ -0,0 +1,432 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "approved-parade", + "metadata": {}, + "source": [ + "## Demo of cryostat builder\n", + "This notebook contains a quick demo of the Cryostat class that makes the task of adding a cryostat model much less daunting. The system uses McStas Union components, and for the moment only supports McStas 2.X.\n", + "\n", + "We start the demo by creating an instrument object with just a source." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "composed-custody", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "import mcstasscript.jb_interface as ms_widget\n", + "\n", + "instrument = ms.McStas_instr(\"cryostat_demo\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "secret-convert", + "metadata": {}, + "outputs": [], + "source": [ + "source = instrument.add_component(\"source\", \"Source_simple\")\n", + "source.xwidth = 0.01\n", + "source.yheight = 0.01\n", + "source.focus_xw = 0.01\n", + "source.focus_yh = 0.01\n", + "source.dist = 2\n", + "source.E0 = 5\n", + "source.dE = 0.1" + ] + }, + { + "cell_type": "markdown", + "id": "eastern-journal", + "metadata": {}, + "source": [ + "## Creating a cryostat\n", + "One use the Cryostat class to make a cryostat object. This object can be placed in the instrument file much like a component with *set_AT* and *set_ROTATED*. Here we place the cryostat origin 2 m after the source." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "silver-narrative", + "metadata": {}, + "outputs": [], + "source": [ + "orange_cryostat = ms.Cryostat(\"orange\", instrument)\n", + "orange_cryostat.set_AT([0,0,2], source)" + ] + }, + { + "cell_type": "markdown", + "id": "single-millennium", + "metadata": {}, + "source": [ + "The cryostat model is constructed in layers, each of which are added with *add_layer*. The geometry is shown in the left side of the figure below. To define the walls the user specifies two of *inner_radius*, *outer_radius* and *thickness*, where the last one will be calculated. The distance to the top is controlled with *origin_to_top*, ands its thickness with *top_thickness*. A small negative *top_thickness* will remove the top. The bottom is controlled with *origin_to_bottom* and *bottom_thickness*.\n", + "\n", + "One can set *p_interact* which controls the fraction of the rays that scatters in this layer. This value should be kept below 0.5, but since cryostats are supposed to be transparent even setting 0.2 greatly increases the statistics gain from the simulation.\n", + "\n", + "![title](cryostat_image.png)\n", + "\n", + "Here the first of 4 layers are added, the layers have to be added from smallest to largest." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "typical-harvest", + "metadata": {}, + "outputs": [], + "source": [ + "orange_cryostat.add_layer(inner_radius=70E-3/2, outer_radius=75E-3/2,\n", + " origin_to_top=200E-3, top_thickness=-1E-3,\n", + " origin_to_bottom=83E-3, bottom_thickness=5E-3,\n", + " p_interact=0.2)" + ] + }, + { + "cell_type": "markdown", + "id": "bound-colon", + "metadata": {}, + "source": [ + "After adding a layer, it can be accessed with the attribute *last_layer*, which allows adding a window. The geometry of a window is shown to the right in the figure above. To control the height of the window, the user provides two of *height*, *origin_to_top* and *origin_to_bottom*. If the window only changes the inner radius, only specify the *inner_radius* parameter, and vice versa with the *outer_radius*. If the window narrows the cryostat from both sides, the user should specify two of *inner_radius*, *outer_radius* and *thickness*. It is not allowed to specify *inner_radius* or *outer_radius* that equals the corresponding value for the layer.\n", + "\n", + "Here a simple window is added to the last layer." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "advisory-index", + "metadata": {}, + "outputs": [], + "source": [ + "orange_cryostat.last_layer.add_window(outer_radius=73E-3/2, origin_to_top=44.42E-3, origin_to_bottom=88.2E-3)" + ] + }, + { + "cell_type": "markdown", + "id": "thick-transcript", + "metadata": {}, + "source": [ + "It is allowed to add multiple windows to a layer, this could for example be needed when describing a window where the outside and inside have different heights." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "unexpected-charleston", + "metadata": {}, + "outputs": [], + "source": [ + "orange_cryostat.last_layer.add_window(inner_radius=71E-3/2, height=40E-3)" + ] + }, + { + "cell_type": "markdown", + "id": "minimal-folks", + "metadata": {}, + "source": [ + "If \"Al\" is selected for material, a simple Al model is created unless an Al model already exists in the instrument. When using the material keyword to add other materials, it is up to the user to create the material definition using Union components. The inside is always Vacuum. Here the second layer is added, specifying \"Al\" as the material." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "welcome-cathedral", + "metadata": {}, + "outputs": [], + "source": [ + "orange_cryostat.add_layer(inner_radius=80E-3/2, outer_radius=81E-3/2,\n", + " origin_to_bottom=90E-3, bottom_thickness=2E-3, \n", + " origin_to_top=240E-3, top_thickness=-1E-3,\n", + " material=\"Al\", p_interact=0.2)" + ] + }, + { + "cell_type": "markdown", + "id": "portuguese-transformation", + "metadata": {}, + "source": [ + "The remaining 2 of the 4 layers are added here, both with windows." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "settled-intro", + "metadata": {}, + "outputs": [], + "source": [ + "orange_cryostat.add_layer(inner_radius=95E-3/2, outer_radius=99.5E-3/2,\n", + " origin_to_bottom=93E-3, bottom_thickness=6E-3,\n", + " origin_to_top=225E-3, top_thickness=9E-3, p_interact=0.2)\n", + "orange_cryostat.last_layer.add_window(outer_radius=97E-3/2, origin_to_top=52E-3, origin_to_bottom=100E-3)\n", + "\n", + "orange_cryostat.add_layer(inner_radius=120E-3/2, outer_radius=127E-3/2,\n", + " origin_to_bottom=109E-3, bottom_thickness=11E-3,\n", + " origin_to_top=205E-3, top_thickness=22E-3, p_interact=0.2)\n", + "orange_cryostat.last_layer.add_window(outer_radius=125E-3/2, inner_radius=122E-3/2,\n", + " origin_to_top=55.7E-3, origin_to_bottom=93.54E-3)" + ] + }, + { + "cell_type": "markdown", + "id": "coral-retention", + "metadata": {}, + "source": [ + "After the cryostat description is done one can optionally add Union loggers that show scattering intensity in space using the *add_spatial_loggers* method. Shows the cryostat from the 3 directions along axis, and a zoom in on a cut in zy that clearly shows all windows added. In addition its possible to record the scattering as a function of time, this is done with the *add_time_histogram* and *add_animation* methods, the first of which adds a simple histogram and the latter of which records spatial scattering in a number of time frames." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dutch-prevention", + "metadata": {}, + "outputs": [], + "source": [ + "orange_cryostat.add_spatial_loggers()\n", + "orange_cryostat.add_time_histogram(t_min=0.00195, t_max=0.0024)\n", + "orange_cryostat.add_animation(t_min=0.00195, t_max=0.0024, n_frames=5)" + ] + }, + { + "cell_type": "markdown", + "id": "blessed-protest", + "metadata": {}, + "source": [ + "At the end it is necessary to run the *build* method, this assigns the appropriate priorities to each Union component used, and adds a Union_master component to the end. Per default the build method adds a *Union_master* component, if one wants to for example add a sample afterwards, this is turned of by setting include_master to False." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "sound-alignment", + "metadata": {}, + "outputs": [], + "source": [ + "orange_cryostat.build(include_master=True)" + ] + }, + { + "cell_type": "markdown", + "id": "pregnant-rwanda", + "metadata": {}, + "source": [ + "For further information on these methods, the built in help can be used shown below" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "noticed-third", + "metadata": {}, + "outputs": [], + "source": [ + "help(orange_cryostat.add_animation)" + ] + }, + { + "cell_type": "markdown", + "id": "smoking-background", + "metadata": {}, + "source": [ + "The build method adds a large number of components to describe the cryostat. Lets see what this looks like." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dimensional-berkeley", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_components()" + ] + }, + { + "cell_type": "markdown", + "id": "clean-baptist", + "metadata": {}, + "source": [ + "## Displaying the geometry" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "exceptional-profit", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_instrument()" + ] + }, + { + "cell_type": "markdown", + "id": "armed-graph", + "metadata": {}, + "source": [ + "### Running the simulation\n", + "This is sufficient to run the simulation and see the resulting plots." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "paperback-palmer", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "instrument.settings(ncount=1E7)\n", + "empty_data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "id": "solar-checkout", + "metadata": {}, + "source": [ + "### Plotting with interface\n", + "Recommend using log plot and orders of magnitude = 5 to see details. It may be necessary to refresh this cell after the simulation has been performed. Use \"zy_close\" to get the clearest view of the the added layers and windows." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "mobile-strike", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib widget\n", + "ms_widget.show(empty_data)" + ] + }, + { + "cell_type": "markdown", + "id": "floral-injury", + "metadata": {}, + "source": [ + "The \"logger_space_zy_time\" monitor can be animated with the built in *make_animation* function." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "rural-lingerie", + "metadata": {}, + "outputs": [], + "source": [ + "ani_data = empty_data[5:10]\n", + "for frame in ani_data:\n", + " frame.set_plot_options(log=True, colormap=\"hot\", orders_of_mag=6)\n", + " \n", + "ms.make_animation(ani_data, filename=\"cryostat_animation\", fps=2, figsize=(10,6))" + ] + }, + { + "cell_type": "markdown", + "id": "announced-prevention", + "metadata": {}, + "source": [ + "## Adding a sample\n", + "It is most natural to add a Union sample to the cryostat, and this could be done by not adding a Union_master component with the cryostat *build* method, and then adding the Union_master after the sample. It can however also be done by inserting the necessary components at the right place in the instrument using the *before* keyword.\n", + "\n", + "Here a powder sample is added and the simulation is executed again. Notice the sample location is set to the same as the cryostat name, this refers to the arm used as a reference for the cryostat sample position." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "frequent-asbestos", + "metadata": {}, + "outputs": [], + "source": [ + "nascalf_inc = instrument.add_component(\"nascalf_inc\", \"Incoherent_process\", before=\"Al_inc\")\n", + "nascalf_inc.sigma = 3.4176\n", + "nascalf_inc.unit_cell_volume = 1079.1\n", + "\n", + "nascalf_pow = instrument.add_component(\"nascalf_pow\", \"Powder_process\", before=\"Al_inc\")\n", + "nascalf_pow.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "nascalf = instrument.add_component(\"nascalf\", \"Union_make_material\", before=\"Al_inc\")\n", + "nascalf.process_string = '\"nascalf_inc,nascalf_pow\"'\n", + "nascalf.my_absorption = 100*2.9464/1079.1\n", + "\n", + "sample = instrument.add_component(\"sample\", \"Union_cylinder\", before=\"orange_master\")\n", + "sample.radius = 6E-3\n", + "sample.yheight = 30E-3\n", + "sample.priority = 1000\n", + "sample.material_string = '\"nascalf\"'\n", + "sample.p_interact = 0.3\n", + "sample.set_AT([0,0,0], RELATIVE=\"orange\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "liquid-connectivity", + "metadata": {}, + "outputs": [], + "source": [ + "instrument.settings(ncount=2E7, mpi=2)\n", + "data_sample = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "smooth-identity", + "metadata": {}, + "outputs": [], + "source": [ + "ms_widget.show(data_sample)" + ] + }, + { + "cell_type": "markdown", + "id": "generic-ability", + "metadata": {}, + "source": [ + "## Future expansions\n", + "Some additional features are expected to be added to this system at a later point.\n", + "\n", + "### Entry windows\n", + "Create a layer method to make entry windows, square and circular.\n", + "\n", + "### Mounting plate\n", + "A cryostat usually has a mounting plate with a larger radius than the widest layer, could easily add such a feature.\n", + "\n", + "### External sample\n", + "Create a cryostat method that takes an external sample component that is not in Union but incorperates this into the cryostat using the best practice method." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/cryostat_image.png b/examples/cryostat_image.png new file mode 100644 index 00000000..1a421bcb Binary files /dev/null and b/examples/cryostat_image.png differ diff --git a/examples/libpyvinyl_example.ipynb b/examples/libpyvinyl_example.ipynb new file mode 100644 index 00000000..ad175ed7 --- /dev/null +++ b/examples/libpyvinyl_example.ipynb @@ -0,0 +1,409 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "thirty-runner", + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "markdown", + "id": "deluxe-scroll", + "metadata": {}, + "source": [ + "### Calculator is what I call an instrument object" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "earned-ribbon", + "metadata": {}, + "outputs": [], + "source": [ + "calculator = ms.McStas_instr(name=\"demo_instrument\")" + ] + }, + { + "cell_type": "markdown", + "id": "inappropriate-impossible", + "metadata": {}, + "source": [ + "### Can define parameters (libpyvinyl parameter object and collection)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "parental-albert", + "metadata": {}, + "outputs": [], + "source": [ + "source_energy = calculator.add_parameter(\"double\", \"source_energy\", unit=\"meV\", comment=\"Source mean energy\")\n", + "source_energy.add_interval(3.1, None, intervals_are_legal=True)\n", + "\n", + "source_height = calculator.add_parameter(\"double\", \"source_height\", unit=\"cm\", comment=\"Height of source\")\n", + "source_height.add_interval(0.01, 0.2, intervals_are_legal=True)\n", + "\n", + "sample_height = calculator.add_parameter(\"sample_height\", unit=\"cm\", comment=\"Height of sample\")\n", + "sample_height.add_interval(0.0, 0.05, intervals_are_legal=True)\n", + "\n", + "source_energy_spread = calculator.add_declare_var(\"double\", \"source_energy_spread\")\n", + "calculator.append_initialize(\"source_energy_spread = 0.02*source_energy;\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "incident-nitrogen", + "metadata": {}, + "outputs": [], + "source": [ + "calculator.show_parameters()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "subjective-battle", + "metadata": {}, + "outputs": [], + "source": [ + "print(calculator.parameters)" + ] + }, + { + "cell_type": "markdown", + "id": "weird-dependence", + "metadata": {}, + "source": [ + "### Can add components to the simulation as usual" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "accomplished-twelve", + "metadata": {}, + "outputs": [], + "source": [ + "src = calculator.add_component(\"source\", \"Source_div\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "foreign-developer", + "metadata": {}, + "outputs": [], + "source": [ + "src.xwidth = 0.12\n", + "src.yheight = source_height\n", + "src.E0 = source_energy\n", + "src.dE = source_energy_spread\n", + "src.focus_aw = 3.0\n", + "src.focus_ah = 4.0" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "champion-knife", + "metadata": {}, + "outputs": [], + "source": [ + "sample = calculator.add_component(\"powder\", \"PowderN\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "wrong-retailer", + "metadata": {}, + "outputs": [], + "source": [ + "sample.set_AT(1, RELATIVE=src)\n", + "sample.reflections='\"Ni.laz\"'\n", + "sample.radius = 0.01\n", + "sample.yheight = sample_height" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "anticipated-tampa", + "metadata": {}, + "outputs": [], + "source": [ + "calculator.available_components(\"monitors\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "experienced-arizona", + "metadata": {}, + "outputs": [], + "source": [ + "calculator.component_help(\"Cyl_monitor\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "wooden-helicopter", + "metadata": {}, + "outputs": [], + "source": [ + "cyl = calculator.add_component(\"cyl_monitor\", \"Cyl_monitor\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "preliminary-training", + "metadata": {}, + "outputs": [], + "source": [ + "cyl.nr = 200\n", + "cyl.filename = '\"cylinder.dat\"'\n", + "cyl.yheight = 0.2\n", + "cyl.radius = 0.5\n", + "cyl.restore_neutron = 1\n", + "cyl.set_AT(0, RELATIVE=sample)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "official-withdrawal", + "metadata": {}, + "outputs": [], + "source": [ + "mon = calculator.add_component(\"acceptance_horizontal\", \"DivPos_monitor\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "colored-policy", + "metadata": {}, + "outputs": [], + "source": [ + "mon.xwidth = 0.2\n", + "mon.yheight = 0.2\n", + "mon.maxdiv = 30.0\n", + "mon.filename = '\"acceptance_h.dat\"'\n", + "mon.restore_neutron = 1\n", + "mon.nb = 300\n", + "mon.ndiv = 300\n", + "mon.set_AT(0.1, RELATIVE=sample)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "based-torture", + "metadata": {}, + "outputs": [], + "source": [ + "calculator.show_components()" + ] + }, + { + "cell_type": "markdown", + "id": "august-words", + "metadata": {}, + "source": [ + "### Old syntax" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "prescription-whole", + "metadata": {}, + "outputs": [], + "source": [ + "old_data = calculator.run_full_instrument(parameters={\"source_energy\": 320, \"source_height\":0.025, \"sample_height\":0.04},\n", + " ncount=2E6, foldername=\"run_full_instrument_path\")" + ] + }, + { + "cell_type": "markdown", + "id": "domestic-bearing", + "metadata": {}, + "source": [ + "### New libpyvinyl syntax" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "independent-millennium", + "metadata": {}, + "outputs": [], + "source": [ + "calculator.set_parameters(source_energy=320, source_height=0.025, sample_height=0.04)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "smooth-cholesterol", + "metadata": {}, + "outputs": [], + "source": [ + "calculator.settings(ncount=5E6, mpi=2, output_path=\"path_to_output\")" + ] + }, + { + "cell_type": "markdown", + "id": "dependent-garlic", + "metadata": {}, + "source": [ + "### Run with backengine" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "daily-louisiana", + "metadata": {}, + "outputs": [], + "source": [ + "data = calculator.backengine()" + ] + }, + { + "cell_type": "markdown", + "id": "under-walnut", + "metadata": {}, + "source": [ + "### Get data later" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "committed-hardwood", + "metadata": {}, + "outputs": [], + "source": [ + "calculator.output.get_data()[\"data\"]" + ] + }, + { + "cell_type": "markdown", + "id": "engaged-syria", + "metadata": {}, + "source": [ + "### Plot data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "retired-brick", + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=True, cut_max=0.011, orders_of_mag=1.5)" + ] + }, + { + "cell_type": "markdown", + "id": "medieval-packaging", + "metadata": {}, + "source": [ + "### Store in dump file" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "affiliated-british", + "metadata": {}, + "outputs": [], + "source": [ + "calculator.dump(\"dump_file.dmp\")" + ] + }, + { + "cell_type": "markdown", + "id": "spatial-peace", + "metadata": {}, + "source": [ + "### Load from dump file" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "pleasant-machine", + "metadata": {}, + "outputs": [], + "source": [ + "from_dump = ms.McStas_instr.from_dump('dump_file.dmp')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "modified-brooks", + "metadata": {}, + "outputs": [], + "source": [ + "print(from_dump.name)\n", + "from_dump.show_parameters()\n", + "from_dump.show_components()\n", + "from_dump.write_full_instrument()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "divine-digit", + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"demo_instrument.instr\", \"r\") as f:\n", + " instrument_file = f.read()\n", + "print(instrument_file)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "knowing-solution", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/random_demonstration.py b/examples/random_demonstration.py new file mode 100644 index 00000000..cbf3fb0c --- /dev/null +++ b/examples/random_demonstration.py @@ -0,0 +1,141 @@ +# Demonstration of McStasScript, an API for creating and running McStas instruments from python scripts +# Written by Mads Bertelsen, ESS DMSC +import random + +import mcstasscript as ms + +# Create a McStas instrument +instr = ms.McStas_instr("random_demo", + author = "Mads Bertelsen", + origin = "ESS DMSC") + +# Set up a material called Cu with approrpiate properties +# (uses McStas Union components, here the processes) + +Init = instr.add_component("init", "Union_init") + +Cu_inc = instr.add_component("Cu_incoherent", "Incoherent_process") +Cu_inc.sigma = 4*0.55 +Cu_inc.packing_factor = 1 +Cu_inc.unit_cell_volume = 55.4 + +Cu_powder = instr.add_component("Cu_powder", "Powder_process") +Cu_powder.reflections = "\"Cu.laz\"" + +Cu = instr.add_component("Cu", "Union_make_material") +Cu.my_absorption = "100*4*3.78/55.4" +Cu.process_string = "\"Cu_incoherent,Cu_powder\"" + +# Add neutron source +Source = instr.add_component("source", "Source_div") +# Add parameter to select energy at run time +energy = instr.add_parameter("double", "energy", value=10, comment="[meV] source energy") + +Source.xwidth = 0.12 +Source.yheight = 0.12 +Source.focus_aw = 0.1 +Source.focus_ah = 0.1 +Source.E0 = energy +Source.dE = 0.0 +Source.flux = 1E13 + +# List of available materials, Vacuum is provided by the system +material_name_list = ["Cu", "Vacuum"] + +# Wish to set up a number of random boxes, here the number is chosen at random +number_of_volumes = random.randint(30, 40) + +# Initialize the priority that needs to be unique for each volume +current_priority = 99 +for volume in range(number_of_volumes): + + current_priority = current_priority + 1 # update the priority + max_side_length = 0.04 + max_depth = 0.003 + # Set position in 10x10x10 cm^3 box 1 m from source + position = [random.uniform(-0.05,0.05), + random.uniform(-0.05,0.05), + 1+random.uniform(-0.05,0.05)] + # Set random rotation + rotation = [random.uniform(0,360), + random.uniform(0,360), + random.uniform(0,360)] + + # Choose a random material from the list of available materials + volume_material = random.choice(material_name_list) + + # Add a McStas Union geometry with unique name + this_geometry = instr.add_component("volume_" + str(volume), "Union_box") + this_geometry.xwidth = random.uniform(0.01, max_side_length) + this_geometry.yheight = random.uniform(0.01, max_side_length) + this_geometry.zdepth = random.uniform(0.01, max_side_length) + this_geometry.material_string = '"' + volume_material + '"' + this_geometry.priority = current_priority + this_geometry.p_interact = 0.3 + + this_geometry.set_AT(position, RELATIVE="ABSOLUTE") + this_geometry.set_ROTATED(rotation, RELATIVE="ABSOLUTE") + +# A few Union loggers are set up for display of the scattering locations +space_2D_zx = instr.add_component("logger_space_zx_all", "Union_logger_2D_space") +space_2D_zx.filename = '"space_zx.dat"' +space_2D_zx.n1 = 1000 +space_2D_zx.D_direction_1 = '"z"' +space_2D_zx.D1_min = -0.05 +space_2D_zx.D1_max = 0.05 +space_2D_zx.n2 = 1000 +space_2D_zx.D_direction_2 = '"x"' +space_2D_zx.D2_min = -0.05 +space_2D_zx.D2_max = 0.05 +space_2D_zx.set_AT([0,0,1]) + +space_2D_zy = instr.add_component("logger_space_zy_all", "Union_logger_2D_space") +space_2D_zy.filename = '"space_zy.dat"' +space_2D_zy.n1 = 1000 +space_2D_zy.D_direction_1 = '"z"' +space_2D_zy.D1_min = -0.05 +space_2D_zy.D1_max = 0.05 +space_2D_zy.n2 = 1000 +space_2D_zy.D_direction_2 = '"y"' +space_2D_zy.D2_min = -0.05 +space_2D_zy.D2_max = 0.05 +space_2D_zy.set_AT([0,0,1]) + +# Union master component that executes the simulation of the random boxes +instr.add_component("random_boxes", "Union_master") + +# McStas monitors for viewing the beam after the random boxes +PSD = instr.add_component("detector", "PSD_monitor", AT=[0,0,2]) +PSD.xwidth = 0.1 +PSD.yheight = 0.1 +PSD.nx = 500 +PSD.ny = 500 +PSD.filename = '"PSD.dat"' +PSD.restore_neutron = 1 + +big_PSD = instr.add_component("large_detector", "PSD_monitor", AT=[0,0,2]) +big_PSD.xwidth = 1.0 +big_PSD.yheight = 1.0 +big_PSD.nx = 500 +big_PSD.ny = 500 +big_PSD.filename = '"big_PSD.dat"' +big_PSD.restore_neutron = 1 + +Stop = instr.add_component("stop", "Union_stop") + +instr.show_components() + +# Run the McStas simulation, a unique foldername is required for each run +instr.settings(output_path="demonstration", mpi=2, ncount=5E7) +instr.set_parameters(energy=600) + +data = instr.backengine() + +# Set plotting options for the data (optional) +ms.name_plot_options("logger_space_zx_all", data, log=1, orders_of_mag=3) +ms.name_plot_options("logger_space_zy_all", data, log=1, orders_of_mag=3) +ms.name_plot_options("detector", data, log=1, colormap="hot", orders_of_mag=0.5) +ms.name_plot_options("large_detector", data, log=1, orders_of_mag=8) + +# Plot the resulting data on a logarithmic scale +plot = ms.make_sub_plot(data) diff --git a/mcstasscript/__init__.py b/mcstasscript/__init__.py new file mode 100644 index 00000000..43970550 --- /dev/null +++ b/mcstasscript/__init__.py @@ -0,0 +1,23 @@ +# Version number +from ._version import __version__ + +from .interface.instr import McStas_instr +from .interface.instr import McXtrace_instr + +from .interface.functions import load_data +from .interface.functions import load_metadata +from .interface.functions import load_monitor +from .interface.functions import name_plot_options +from .interface.functions import name_search +from .interface.functions import Configurator + +from .interface.plotter import make_animation +from .interface.plotter import make_plot +from .interface.plotter import make_sub_plot + +from .interface.reader import McStas_file + +from .tools.cryostat_builder import Cryostat +from .tools.instrument_checker import has_component, has_parameter, all_parameters_set + +from .instrument_diagnostics.beam_diagnostics import BeamDiagnostics as Diagnostics diff --git a/mcstasscript/_version.py b/mcstasscript/_version.py new file mode 100644 index 00000000..beb84c07 --- /dev/null +++ b/mcstasscript/_version.py @@ -0,0 +1 @@ +__version__ = "0.0.77" diff --git a/mcstasscript/configuration.yaml b/mcstasscript/configuration.yaml new file mode 100644 index 00000000..008534d1 --- /dev/null +++ b/mcstasscript/configuration.yaml @@ -0,0 +1,7 @@ +other: + characters_per_line: 85 +paths: + mcrun_path: /Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1/bin/ + mcstas_path: /Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1/ + mcxtrace_path: /Applications/McXtrace-1.5.app/Contents/Resources/mcxtrace/1.5/ + mxrun_path: /Applications/McXtrace-1.5.app/Contents/Resources/mcxtrace/1.5/bin/ diff --git a/mcstasscript/data/MCPLDataFormat.py b/mcstasscript/data/MCPLDataFormat.py new file mode 100644 index 00000000..9ff8f8e7 --- /dev/null +++ b/mcstasscript/data/MCPLDataFormat.py @@ -0,0 +1,36 @@ +from libpyvinyl.BaseFormat import BaseFormat +from mcstasscript.helper.managed_mcrun import load_results + + +class MCPLDataFormat(BaseFormat): + def __init__(self) -> None: + super().__init__() + + @classmethod + def format_register(self): + key = "mcpl" + desciption = "MCPL file" + file_extension = ".mcpl" + read_kwargs = [""] + write_kwargs = [""] + return self._create_format_register( + key, desciption, file_extension, read_kwargs, write_kwargs + ) + + @staticmethod + def direct_convert_formats(): + # Assume the format can be converted directly to the formats supported by these classes: + # AFormat, BFormat + # Redefine this `direct_convert_formats` for a concrete format class + return [] + + @classmethod + def read(cls, filename: str) -> dict: + """Read the data from the file with the `filename` to a dictionary. The dictionary will + be used by its corresponding data class.""" + raise NotImplemented("Read method for MCPL is not implemented nor required") + + @classmethod + def write(cls, object, filename: str, key: str = None): + """Don't have a way to write McStasData""" + raise NotImplemented("Write method for MCPL is not implemented nor required") diff --git a/mcstasscript/data/McStasDataFormat.py b/mcstasscript/data/McStasDataFormat.py new file mode 100644 index 00000000..bb197b27 --- /dev/null +++ b/mcstasscript/data/McStasDataFormat.py @@ -0,0 +1,51 @@ +from libpyvinyl.BaseFormat import BaseFormat +from mcstasscript.helper.managed_mcrun import load_results + + +class McStasFormat(BaseFormat): + def __init__(self) -> None: + super().__init__() + + @classmethod + def format_register(self): + key = "sim" + desciption = "sim format for McStasData" + file_extension = ".sim" + read_kwargs = [""] + write_kwargs = [""] + return self._create_format_register( + key, desciption, file_extension, read_kwargs, write_kwargs + ) + + @staticmethod + def direct_convert_formats(): + # Assume the format can be converted directly to the formats supported by these classes: + # AFormat, BFormat + # Redefine this `direct_convert_formats` for a concrete format class + return [] + + @classmethod + def read(cls, filename: str) -> dict: + """Read the data from the file with the `filename` to a dictionary. The dictionary will + be used by its corresponding data class.""" + + data = load_results(filename) + data_dict = {"data": data} + return data_dict + + @classmethod + def write(cls, object, filename: str, key: str = None): + """Don't have a way to write McStasData""" + pass + + """ + #def write(cls, object: NumberData, filename: str, key: str = None): + #Save the data with the `filename`. + data_dict = object.get_data() + arr = np.array([data_dict["number"]]) + np.savetxt(filename, arr, fmt="%.3f") + if key is None: + original_key = object.key + key = original_key + "_to_TXTFormat" + return object.from_file(filename, cls, key) + """ diff --git a/mcstasscript/data/__init__.py b/mcstasscript/data/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/data/data.py b/mcstasscript/data/data.py new file mode 100644 index 00000000..c0479884 --- /dev/null +++ b/mcstasscript/data/data.py @@ -0,0 +1,1029 @@ +import matplotlib.pyplot +import numpy as np +import copy +import re + + +class McStasMetaData: + """ + Class for holding metadata for McStas dataset, is to be read from + mccode.sim file. + + Attributes + ---------- + info : dict + Contains read strings from mccode.sim in key, value + + dimension : Int or List of Int + Int for 1d data set with lenght of data, Array for 2d with each + length + + component_name : str + Name of component in McStas file + + filename : str + Name of data file to read + + limits : List + Limits for monitor, length=2 for 1d data and length=4 for 2d + data, for example spatial or time limits for monitor + + title : str + Title of monitor when plotting, placed above plot + + xlabel : str + Text for xlabel when plotting + + ylabel : str + Text for ylabel when plotting + + Methods + ------- + add_info(key,value) + Adds an element to the info dictionary + + extract_info() + Unpacks the information in info to class attributes + + set_title(string) + Overwrites current title + + set_xlabel(string) + Overwrites current xlabel + + set_ylabel(string) + Overwrites current ylabel + """ + + def __init__(self): + """Creating a new instance, no parameters""" + self.info = {} + + self.component_name = None + self.parameters = None + self.filename = None + self.dimension = None + self.limits = [] + + self.xlabel = None + self.ylabel = None + self.zlabel = None + self.title = None + + self.total_I = None + self.total_E = None + self.total_N = None + + def add_info(self, key, value): + """Adding information to info dict""" + self.info[key] = value + + def extract_info(self): + """Extracting information from info dict to class attributes""" + + # Extract dimension + if "type" in self.info: + type_data = self.info["type"] + if "array_0d" in type_data: + self.dimension = 0 + if "array_1d" in type_data: + type_data = type_data.split("(")[1] + type_data = type_data.split(")")[0] + self.dimension = int(type_data) + if "array_2d" in type_data: + self.dimension = [] + type_string1 = type_data.split(",")[0] + type_string1 = type_string1.split("(")[1] + self.dimension.append(int(type_string1)) + + type_string2 = type_data.split(",")[1] + type_string2 = type_string2.split(")")[0] + self.dimension.append(int(type_string2)) + else: + raise NameError("No type in mccode data section!") + + # Extract component name + if "component" in self.info: + self.component_name = self.info["component"].rstrip() + + if "Parameters" in self.info: + self.parameters = self.info["Parameters"] + + # Extract filename + if "filename" in self.info: + self.filename = self.info["filename"].rstrip() + else: + # Monitors without output files do exist + print("The component named \"" + self.component_name + + "\" had no data file and will not be loaded.") + self.filename = "" + + # Extract limits + self.limits = [] + if "xylimits" in self.info: + # find the four numbers xmin, xmax, ymin, ymax + temp_str = self.info["xylimits"] + limits_string = temp_str.split() + for limit in limits_string: + self.limits.append(float(limit)) + + if "xlimits" in self.info: + # find the two numbers, xmin, xmax + temp_str = self.info["xlimits"] + limits_string = temp_str.split() + for limit in limits_string: + self.limits.append(float(limit)) + + # Extract plotting labels and title + if "xlabel" in self.info: + self.xlabel = self.info["xlabel"].rstrip() + if "ylabel" in self.info: + self.ylabel = self.info["ylabel"].rstrip() + if "zlabel" in self.info: + self.zlabel = self.info["zlabel"].rstrip() + if "title" in self.info: + self.title = self.info["title"].rstrip() + + if "values" in self.info: + value_list = self.info["values"] + value_list = value_list.strip().split(" ") + self.total_I = float(value_list[0]) + self.total_E = float(value_list[1]) + self.total_N = float(value_list[2]) + + def set_title(self, string): + """Sets title for plotting""" + self.title = string + + def set_xlabel(self, string): + """Sets xlabel for plotting""" + self.xlabel = string + + def set_ylabel(self, string): + """Sets ylabel for plotting""" + self.ylabel = string + + def set_zlabel(self, string): + """Sets zlabel for plotting""" + self.zlabel = string + + def __repr__(self): + string = "metadata object\n" + if self.component_name is not None: + string += "component_name: " + self.component_name + "\n" + + if self.filename is not None: + string += "filename: " + str(self.filename) + "\n" + + if self.dimension is not None: + if type(self.dimension) == int and self.dimension == 0: + string += "0D data" + if self.xlabel is not None: + string += " " + self.xlabel + "\n" + if self.ylabel is not None: + string += " " + self.ylabel + "\n" + if self.zlabel is not None: + string += " " + self.zlabel + "\n" + + elif type(self.dimension) == int and self.dimension != 0: + string += "1D data of length " + str(self.dimension) + "\n" + if self.limits is not None: + string += " [" + str(self.limits[0]) + ": " + string += str(self.limits[1]) + "]" + if self.xlabel is not None: + string += " " + self.xlabel + "\n" + if self.ylabel is not None: + string += " " + self.ylabel + "\n" + if self.zlabel is not None: + string += " " + self.zlabel + "\n" + + elif len(self.dimension) == 2: + string += "2D data of dimension (" + str(self.dimension[0]) + string += ", " + str(self.dimension[1]) + ")\n" + if self.xlabel is not None: + if self.limits is not None: + string += " [" + str(self.limits[0]) + ": " + string += str(self.limits[1]) + "]" + string += " " + self.xlabel + "\n" + + if self.ylabel is not None: + if self.limits is not None and len(self.limits) == 4: + string += " [" + str(self.limits[2]) + ": " + string += str(self.limits[3]) + "]" + string += " " + self.ylabel + "\n" + + if self.zlabel is not None: + string += " " + self.zlabel + "\n" + + if self.parameters is not None and len(self.parameters)>0: + string += "Instrument parameters: \n" + for key in self.parameters: + string += " " + str(key) + " = " + string += str(self.parameters[key]) + "\n" + + return string + + +class McStasPlotOptions: + """ + Class that holds plotting options related to McStas data set + + Attributes + ---------- + log : bool, default False + To plot on logarithmic or not, standard is linear + + orders_of_mag : float, default 300 + If plotting on log scale, restrict max range to orders_of_mag + below maximum value + + colormap : string, default jet + Chosen colormap for 2d data, should be available in matplotlib + + show_colorbar : bool, default True + Selects if colorbar should be shown or not + + cut_max : float, default 1 + Factor multiplied onto maximum data value to set upper plot limit + + cut_min : float, default 0 + Removes given fraction of the plot range from the lower limit + + x_limit_multiplier : float, default 1 + Multiplies x axis limits with factor, useful for unit changes + + y_limit_multiplier : float, default 1 + Multiplies y axis limits with factor, useful for unit changes + + custom_ylim_bottom : bool, default False + Indicates whether a manual lower limit for y axis has been set + + custom_ylim_top : bool, default False + Indicates whether a manual upper limit for y axis has been set + + custom_xlim_left : bool, default False + Indicates whether a manual lower limit for x axis has been set + + custom_xlim_right : bool, default False + Indicates whether a manual upper limit for x axis has been set + + Methods + ------- + set_options(keyword arguments) + Can set the class attributes using keyword options + + """ + + def __init__(self, *args, **kwargs): + """Setting default values for plotting preferences""" + self.log = False + self.orders_of_mag = 300 + self.colormap = "jet" + self.show_colorbar = True + self.cut_max = 1 + self.cut_min = 0 + self.x_limit_multiplier = 1 + self.y_limit_multiplier = 1 + + self.custom_ylim_bottom = False + self.custom_ylim_top = False + self.custom_xlim_left = False + self.custom_xlim_right = False + + self.top_lim = None + self.bottom_lim = None + self.left_lim = None + self.right_lim = None + + def set_options(self, **kwargs): + """ + Set custom values for plotting preferences + + Keyword arguments + ----------------- + + log : bool, default False + To plot on logarithmic or not, standard is linear + + orders_of_mag : float, default 300 + If plotting on log scale, restrict max range to orders_of_mag + below maximum value + + colormap : string, default jet + Chosen colormap for 2d data, should be available in matplotlib + + show_colorbar : bool, default True + Selects if colorbar should be shown or not + + cut_max : float, default 1 + Factor multiplied onto maximum data value to set upper plot limit + + cut_min : float, default 0 + Removes given fraction of the plot range from the lower limit + + x_limit_multiplier : float, default 1 + Multiplies x axis limits with factor, useful for unit changes + + y_limit_multiplier : float, default 1 + Multiplies y axis limits with factor, useful for unit changes + + bottom_lim : float + Set manual lower limit for y axis + + top_lim : float + Set manual upper limit for y axis + + left_lim : float + Set manual lower limit for x axis + + right_lim : float + Set manual upper limit for x axis + + """ + if "log" in kwargs: + self.log = bool(kwargs["log"]) + + if "orders_of_mag" in kwargs: + self.orders_of_mag = kwargs["orders_of_mag"] + if not isinstance(self.orders_of_mag, (float, int)): + raise ValueError("orders_of_mag must be a number, got: " + + str(self.orders_of_mag)) + + if "colormap" in kwargs: + all_colormaps = matplotlib.pyplot.colormaps() + self.colormap = kwargs["colormap"] + if self.colormap not in all_colormaps: + raise ValueError("Chosen colormap not available in " + + "matplotlib, was: " + + str(self.colormap)) + + if "show_colorbar" in kwargs: + self.show_colorbar = bool(kwargs["show_colorbar"]) + + if "cut_max" in kwargs: + self.cut_max = kwargs["cut_max"] + if not isinstance(self.cut_max, (float, int)): + raise ValueError("cut_max has to be a number, was given: " + + str(self.cut_max)) + + if "cut_min" in kwargs: + self.cut_min = kwargs["cut_min"] + if not isinstance(self.cut_min, (float, int)): + raise ValueError("cut_min has to be a number, was given: " + + str(self.cut_min)) + + if "x_axis_multiplier" in kwargs: + self.x_limit_multiplier = kwargs["x_axis_multiplier"] + if not isinstance(self.x_limit_multiplier, (float, int)): + raise ValueError("x_limit_multiplier has to be a number, was " + + "given: " + str(self.x_limit_multiplier)) + + if "y_axis_multiplier" in kwargs: + self.y_limit_multiplier = kwargs["y_axis_multiplier"] + if not isinstance(self.y_limit_multiplier, (float, int)): + raise ValueError("y_limit_multiplier has to be a number, was " + + "given: " + str(self.y_limit_multiplier)) + + if "top_lim" in kwargs: + self.top_lim = kwargs["top_lim"] + self.custom_ylim_top = True + if not isinstance(self.top_lim, (float, int)): + raise ValueError("top_lim has to be a number, was " + + "given: " + str(self.top_lim)) + + if "bottom_lim" in kwargs: + self.bottom_lim = kwargs["bottom_lim"] + self.custom_ylim_bottom = True + if not isinstance(self.bottom_lim, (float, int)): + raise ValueError("bottom_lim has to be a number, was " + + "given: " + str(self.bottom_lim)) + + if "left_lim" in kwargs: + self.left_lim = kwargs["left_lim"] + self.custom_xlim_left = True + if not isinstance(self.left_lim, (float, int)): + raise ValueError("left_lim has to be a number, was " + + "given: " + str(self.left_lim)) + + if "right_lim" in kwargs: + self.right_lim = kwargs["right_lim"] + self.custom_xlim_right = True + if not isinstance(self.right_lim, (float, int)): + raise ValueError("right_lim has to be a number, was " + + "given: " + str(self.right_lim)) + + def __repr__(self): + + string = "plot_options" + + string += " log: " + str(self.log) + "\n" + if self.log: + string += " orders_of_mag: " + str(self.orders_of_mag) + "\n" + + string += " colormap: " + str(self.colormap) + "\n" + string += " show_colorbar: " + str(self.show_colorbar) + "\n" + string += " cut_min: " + str(self.cut_min) + "\n" + string += " cut_max: " + str(self.cut_max) + "\n" + string += " x_limit_multiplier: " + str(self.x_limit_multiplier) + "\n" + string += " y_limit_multiplier: " + str(self.y_limit_multiplier) + "\n" + + if self.custom_xlim_left: + string += "manual x lower limit: " + str(self.left_lim) + + if self.custom_xlim_right: + string += "manual x upper limit: " + str(self.right_lim) + + if self.custom_ylim_bottom: + string += "manual y lower limit: " + str(self.bottom_lim) + + if self.custom_ylim_bottom: + string += "manual y upper limit: " + str(self.top_lim) + + return string + + +class McStasData: + """ + Class for holding full McStas dataset with data, metadata and + plotting preferences + + Attributes + ---------- + metadata : McStasMetaData instance + Holds the metadata for the dataset + + name : str + Name of component, extracted from metadata + + plot_options : McStasPlotOptions instance + Holds the plotting preferences for the dataset + + Methods + ------- + set_xlabel : string + sets xlabel of data for plotting + + set_ylabel : string + sets ylabel of data for plotting + + set_title : string + sets title of data for plotting + + set_options : keyword arguments + sets plot options, keywords passed to McStasPlotOptions method + """ + + def __init__(self, metadata): + """ + Initialize a new McStas dataset, 4 positional arguments, pass + xaxis as kwarg if 1d data + + Parameters + ---------- + metadata : McStasMetaData instance + Holds the metadata for the dataset + """ + + # attach meta data + self.metadata = metadata + # get name from metadata + self.name = self.metadata.component_name + # initialize PlotOptions + self.plot_options = McStasPlotOptions() + + self.data_type = None + self.original_data_location = None + + # Methods xlabel, ylabel and title as they might not be found + def set_xlabel(self, string): + self.metadata.set_xlabel(string) + + def set_ylabel(self, string): + self.metadata.set_ylabel(string) + + def set_zlabel(self, string): + self.metadata.set_zlabel(string) + + def set_title(self, string): + self.metadata.set_title(string) + + def set_plot_options(self, **kwargs): + self.plot_options.set_options(**kwargs) + + def set_data_location(self, data_location): + self.original_data_location = data_location + + def get_data_location(self): + return self.original_data_location + + def __str__(self): + """ + Returns string with quick summary of data + """ + + string = "McStasData: " + string += self.name + " " + if type(self.metadata.dimension) == int and self.metadata.dimension == 0: + string += "type: 0D " + elif type(self.metadata.dimension) == int and self.metadata.dimension != 0: + string += "type: 1D " + elif len(self.metadata.dimension) == 2: + string += "type: 2D " + else: + string += "type: other " + + if self.metadata.total_I is not None: + string += " I:" + str(self.metadata.total_I) + if self.metadata.total_E is not None: + string += " E:" + str(self.metadata.total_E) + if self.metadata.total_N is not None: + string += " N:" + str(self.metadata.total_N) + + return string + + def __repr__(self): + return "\n" + self.__str__() + + +class McStasDataBinned(McStasData): + """ + Class for holding full McStas dataset with data, metadata and + plotting preferences + + Attributes + ---------- + metadata : McStasMetaData instance + Holds the metadata for the dataset + + name : str + Name of component, extracted from metadata + + Intensity : numpy array + Intensity data [neutrons/s] in 1d or 2d numpy array, dimension in + metadata + + Error : numpy array + Error data [neutrons/s] in 1d or 2d numpy array, same dimensions as + Intensity + + Ncount : numpy array + Number of rays in bin, 1d or 2d numpy array, same dimensions as + Intensity + + plot_options : McStasPlotOptions instance + Holds the plotting preferences for the dataset + + Methods + ------- + set_xlabel : string + sets xlabel of data for plotting + + set_ylabel : string + sets ylabel of data for plotting + + set_zlabel : string + sets ylabel of data for plotting + + set_title : string + sets title of data for plotting + + set_options : keyword arguments + sets plot options, keywords passed to McStasPlotOptions method + """ + + def __init__(self, metadata, intensity, error, ncount, **kwargs): + """ + Initialize a new McStas dataset, 4 positional arguments, pass + xaxis as kwarg if 1d data + + Parameters + ---------- + metadata : McStasMetaData instance + Holds the metadata for the dataset + + intensity : numpy array + Intensity data [neutrons/s] in 1d or 2d numpy array, dimension in + metadata + + error : numpy array + Error data [neutrons/s] in 1d or 2d numpy array, same dimensions + as Intensity + + ncount : numpy array + Number of rays in bin, 1d or 2d numpy array, same dimensions as + Intensity + + kwargs : keyword arguments + xaxis is required for 1d data + """ + + super().__init__(metadata) + + # three basic arrays from positional arguments + if not isinstance(intensity, np.ndarray): + raise ValueError("intensity should be numpy array!") + if not isinstance(error, np.ndarray): + raise ValueError("error should be numpy array!") + if not isinstance(ncount, np.ndarray): + raise ValueError("ncount should be numpy array!") + + self.Intensity = intensity + self.Error = error + self.Ncount = ncount + + if type(self.metadata.dimension) == int and self.metadata.dimension == 0: + self.data_type = "Binned 0D" + elif type(self.metadata.dimension) == int and self.metadata.dimension != 0: + self.data_type = "Binned 1D" + if "xaxis" in kwargs: + self.xaxis = kwargs["xaxis"] + else: + raise NameError( + "ERROR: Initialization of McStasData done with 1d " + + "data, but without xaxis for " + self.name + "!") + elif len(self.metadata.dimension) == 2: + self.data_type = "Binned 2D" + else: + self.data_type = "Binned" + + +class McStasDataEvent(McStasData): + """ + Class for holding McStas event dataset with data, metadata and + plotting preferences. Usually data the first one million events + is plotted. + + Attributes + ---------- + metadata : McStasMetaData instance + Holds the metadata for the dataset + + name : str + Name of component, extracted from metadata + + Events : numpy array + Event data + + plot_options : McStasPlotOptions instance + Holds the plotting preferences for the dataset + + Methods + ------- + set_xlabel : string + sets xlabel of data for plotting + + set_ylabel : string + sets ylabel of data for plotting + + set_zlabel : string + sets zlabel of data for plotting + + set_title : string + sets title of data for plotting + + set_options : keyword arguments + sets plot options, keywords passed to McStasPlotOptions method + """ + + def __init__(self, metadata, events, **kwargs): + """ + Initialize a new McStas event dataset, 2 positional arguments + + Parameters + ---------- + metadata : McStasMetaData instance + Holds the metadata for the dataset + + events : numpy array + event data + """ + + super().__init__(metadata) + + # three basic arrays from positional arguments + if not isinstance(events, np.ndarray): + raise ValueError("events should be numpy array!") + + self.Events = events + self.data_type = "Events" + + self.variables = self.metadata.info["variables"].strip() + self.variables = self.variables.split() + + # Calculate I, E and N + if "p" in self.variables: + p_array = self.get_data_column("p") + total_I = p_array.sum() + total_E = np.sqrt((p_array ** 2).sum()) + total_N = len(p_array) + + self.metadata.total_I = total_I + self.metadata.total_E = total_E + self.metadata.total_N = total_N + + else: + + self.metadata.total_I = None + self.metadata.total_E = None + self.metadata.total_N = None + + self.labels = {"t": "t [s]", + "x": "x [m]", + "y": "y [m]", + "z": "z [m]", + "vx": "vx [m/s]", + "vy": "vy [m/s]", + "vz": "vz [m/s]", + "l": "wavelength [AA]", + "e": "energy [meV]", + "speed": "speed [m/s]", + "dx": "divergence x [deg]", + "dy": "divergence y [deg]"} + + def find_variable_index(self, axis, flag_info=None): + """ + Returns variable index for given axis name + + Parameters: + + axis : str + Name of desired axis + + flag_info: list + List of flag names used for user variables in event data + """ + if flag_info is not None: + # If flag info given, use it to find user var string + for index, flag in enumerate(flag_info): + if axis == flag: + axis = f"U{index + 1}" + + return self.variables.index(axis) + + def scale_weights(self, factor): + """ + Scales all event weights with given factor + + Parameters: + + factor : float + Factor with which all weights are scaled + """ + self.Events[:, self.find_variable_index("p")] *= factor + + def get_label(self, axis, flag_info=None): + """ + Returns data label corresponding to given axis name + + Parameters: + + axis : str + Name of parameter + + flag_info : list + list of names for user variables in event data set + """ + axis = axis.lower() + + if flag_info is not None: + # If flag info given, use it to find user var string + for index, flag in enumerate(flag_info): + if axis == flag: + return f"User{index+1}: {flag}" + + if axis in self.labels: + return self.labels[axis] + else: + return "" + + def get_data_column(self, axis, flag_info=None): + """ + Returns data column corresponding to given axis name + + Parameters: + + axis : str + Name of parameter + + flag_info : list + list of names for user variables in event data set + """ + + m_n_const = 1.674927e-27 + h_const = 6.626068e-34 + + if axis.lower() == "speed": + # Convert velocity to speed (must be before l and e) + vx = self.Events[:, self.find_variable_index("vx")] + vy = self.Events[:, self.find_variable_index("vy")] + vz = self.Events[:, self.find_variable_index("vz")] + return np.sqrt(vx ** 2 + vy ** 2 + vz ** 2) + + elif axis.lower() == "l": + # Convert speed to lambda + speed = self.get_data_column("speed") + lambda_meter = h_const / (m_n_const*speed) + return lambda_meter*1E10 + + elif axis.lower() == "e": + # Convert speed to energy + speed = self.get_data_column("speed") + energy_joule = 0.5 * m_n_const * speed ** 2 + return energy_joule/1.60217663E-19*1E3 + + elif axis.lower() == "dx": + # Convert velocity to divergence x + vx = self.Events[:, self.find_variable_index("vx")] + vz = self.Events[:, self.find_variable_index("vz")] + return np.arctan(vx/vz) * 180 / np.pi + + elif axis.lower() == "dy": + # Convert velocity to divergence y + vy = self.Events[:, self.find_variable_index("vy")] + vz = self.Events[:, self.find_variable_index("vz")] + return np.arctan(vy/vz) * 180 / np.pi + + else: + index = self.find_variable_index(axis, flag_info=flag_info) + return self.Events[:, index] + + def make_1d(self, axis1, n_bins=50, flag_info=None): + """ + Bin event data along to given axis to create binned dataset + + Parameters: + + axis1 : str + Name of parameter for binned axis + + n_bins : integer + Number of bins for histogramming + + flag_info : list + list of names for user variables in event data set + """ + data = self.get_data_column(axis1, flag_info) + label = self.get_label(axis1, flag_info) + + weights = self.get_data_column("p", flag_info) + intensity, edges = np.histogram(data, bins=n_bins, weights=weights) + error_squared, edges = np.histogram(data, bins=n_bins, weights=weights**2) + error = np.sqrt(error_squared) + ncount, edges = np.histogram(data, bins=n_bins) + + centers = edges[0:-1] + 0.5*(edges[1] - edges[0]) + + metadata = copy.deepcopy(self.metadata) + metadata.dimension = len(centers) + metadata.info["type"] = "array_1d" + metadata.limits = [centers[0], centers[-1]] + + total_I = np.sum(intensity) + total_E = np.sqrt(error_squared.sum()) + total_N = np.sum(ncount) + metadata.info["values"] = "{:2.6E} {:2.6E} {:2.6E}".format(total_I, total_E, total_N) + metadata.total_I = total_I + metadata.total_E = total_E + metadata.total_N = total_N + + binned = McStasDataBinned(metadata, intensity=intensity, + error=error, ncount=ncount, xaxis=centers) + + binned.set_title("Binned data generated from events") + binned.set_xlabel(label) + binned.set_ylabel("Intensity per bin [n/s]") + + return binned + + def make_2d(self, axis1, axis2, n_bins=100, flag_info=None): + """ + Bin event data along to given axes to create binned dataset + + Parameters: + + axis1 : str + Name of parameter for first axis + + axis2 : str + Name of parameter for second axis + + n_bins : integer or list + Number of bins for histogramming, can be list with two elements + + flag_info : list + list of names for user variables in event data set + """ + + data1 = self.get_data_column(axis1, flag_info) + label1 = self.get_label(axis1, flag_info) + data2 = self.get_data_column(axis2, flag_info) + label2 = self.get_label(axis2, flag_info) + + if isinstance(n_bins, list): + n_bins.reverse() + + weights = self.get_data_column("p", flag_info) + intensity, edges2, edges1 = np.histogram2d(data2, data1, bins=n_bins, weights=weights) + error_squared, edges2, edges1 = np.histogram2d(data2, data1, bins=n_bins, weights=weights**2) + error = np.sqrt(error_squared) + ncount, edges2, edges1 = np.histogram2d(data2, data1, bins=n_bins) + + centers1 = edges1[0:-1] + 0.5*(edges1[1] - edges1[0]) + centers2 = edges2[0:-1] + 0.5*(edges2[1] - edges2[0]) + + metadata = copy.deepcopy(self.metadata) + metadata.dimension = [len(centers1), len(centers2)] + metadata.info["type"] = "array_2d" + metadata.limits = [centers1[0], centers1[-1], centers2[0], centers2[-1]] + + total_I = intensity.sum() + total_E = np.sqrt(error_squared.sum()) + total_N = ncount.sum() + metadata.info["values"] = "{:2.6E} {:2.6E} {:2.6E}".format(total_I, total_E, total_N) + metadata.total_I = total_I + metadata.total_E = total_E + metadata.total_N = total_N + + binned = McStasDataBinned(metadata, intensity=intensity, + error=error, ncount=ncount) + binned.set_title("Binned data generated from events") + binned.set_xlabel(label1) + binned.set_ylabel(label2) + + return binned + + def __str__(self): + """ + Returns string with quick summary of data + """ + + string = "McStasDataEvent: " + string += self.name + " with " + string += str(len(self.Events)) + " events." + if "variables" in self.metadata.info: + string += " Variables: " + string += self.metadata.info["variables"].strip() + + return string + + def __repr__(self): + return "\n" + self.__str__() + +def parse_coordinates(line, keyword): + # Extract the coordinates from the line + match = re.search(r'\(([^)]+)\)', line) + if match: + coords = match.group(1).split(',') + coords = [float(coord.strip()) for coord in coords] + return {f'{keyword}_x': coords[0], f'{keyword}_y': coords[1], f'{keyword}_z': coords[2]} + return {} + +class ComponentData: + def __init__(self, file_path): + self.file_path = file_path + self.data = None + + def read(self): + + components = {} + + current_component = None + + with open(self.file_path, 'r') as file: + for line in file: + line = line.strip() + if line.startswith('COMPONENT'): + match = re.match(r'COMPONENT (\S+) = (\S+)', line) + if match: + component_name = match.group(1) + component_type = match.group(2) + current_component = {'component': component_type} + components[component_name] = current_component + current_component["parameters"] = {} + elif '=' in line: + if current_component is not None: + key, value = line.split('=',1) + try: + value = float(value) + except: + pass + current_component["parameters"][key] = value + elif line.startswith('AT'): + if current_component is not None: + current_component.update(parse_coordinates(line, 'AT')) + if line.endswith('ABSOLUTE'): + current_component['AT_relative'] = "ABSOLUTE" + else: + current_component['AT_relative'] = line.split('RELATIVE')[1].strip() + elif line.startswith('ROTATED'): + if current_component is not None: + current_component.update(parse_coordinates(line, 'ROTATED')) + if line.endswith('ABSOLUTE'): + current_component['ROTATED_relative'] = "ABSOLUTE" + else: + current_component['ROTATED_relative'] = line.split('RELATIVE')[1].strip() + + self.data = components + + return components + diff --git a/mcstasscript/data/pyvinylData.py b/mcstasscript/data/pyvinylData.py new file mode 100644 index 00000000..8667648d --- /dev/null +++ b/mcstasscript/data/pyvinylData.py @@ -0,0 +1,76 @@ +from libpyvinyl.BaseData import BaseData +from mcstasscript.data.McStasDataFormat import McStasFormat +from mcstasscript.data.MCPLDataFormat import MCPLDataFormat + + +class pyvinylMcStasData(BaseData): + def __init__( + self, + key, + data_dict=None, + filename=None, + file_format_class=None, + file_format_kwargs=None, + ): + + expected_data = {} + + ### DataClass developer's job start + expected_data["data"] = None + ### DataClass developer's job end + + super().__init__( + key, + expected_data, + data_dict, + filename, + file_format_class, + file_format_kwargs, + ) + + @classmethod + def supported_formats(self): + format_dict = {} + ### DataClass developer's job start + self._add_ioformat(format_dict, McStasFormat) + ### DataClass developer's job end + return format_dict + + @classmethod + def from_file(cls, filename: str, format_class, key, **kwargs): + """Create the data class by the file in the `format`.""" + return cls( + key, + filename=filename, + file_format_class=format_class, + file_format_kwargs=kwargs, + ) + + @classmethod + def from_dict(cls, data_dict, key): + """Create the data class by a python dictionary.""" + return cls(key, data_dict=data_dict) + + +class pyvinylMCPLData(BaseData): + def __init__( + self, + key, + data_dict=None, + # the filename can be assigned later. + # If filename == "" or None it fails the consistency check of BaseData + filename="none", + file_format_class=None, + file_format_kwargs=None, + ): + expected_data = {} + super().__init__(key, expected_data, None, filename, MCPLDataFormat, None) + + def supported_formats(self): + format_dict = {} + self._add_ioformat(format_dict, MCPLDataFormat) + return format_dict + + @classmethod + def from_file(cls, filename: str, key="mcpl"): + return cls(key, filename=filename) diff --git a/mcstasscript/helper/__init__.py b/mcstasscript/helper/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/helper/beam_dump_database.py b/mcstasscript/helper/beam_dump_database.py new file mode 100644 index 00000000..941ce14f --- /dev/null +++ b/mcstasscript/helper/beam_dump_database.py @@ -0,0 +1,401 @@ +import os +from datetime import datetime +import time +import json + +TIME_FORMAT = "%d/%m/%Y %H:%M:%S" # Time format used for database + +class BeamDumpDatabase: + def __init__(self, name, path): + """ + Database over location and run properties of beam dumps + + name : str + Name of instrument for which this database is connected + + path : str + input_path for instrument, database is placed there + """ + self.name = name + self.path = path + + self.data = {} + + self.database_path = os.path.join(self.path, self.name + "_db") + if os.path.isdir(self.database_path): + self.load_database(self.database_path) + else: + self.create_new_database(self.database_path) + + def create_new_database(self, path): + """ + Creates directory for database, may be expanded in future + """ + os.mkdir(path) + + def load_database(self, path): + """ + Loads an existing database from disk + + path : str + Path for the database to be loaded + """ + dump_points = os.listdir(path) + + # Each dump point is a folder in the database root + for dump_point in dump_points: + dump_point_path = os.path.join(path, dump_point) + if not os.path.isdir(dump_point_path): + continue + + if dump_point not in self.data: + self.data[dump_point] = {} + + # Each run is a json file in the dump_point folder + runs = os.listdir(dump_point_path) + for run in runs: + if run.endswith(".json"): + run_path = os.path.join(dump_point_path, run) + dump = BeamDump.dump_from_JSON(run_path) + + run_name = dump.data["run_name"] + if run_name not in self.data[dump_point]: + self.data[dump_point][run_name] = {} + + tag = dump.data["tag"] + self.data[dump_point][run_name][tag] = dump + + def create_folder_for_dump_point(self, dump_point): + """ + Adds folder to database for dump_point if it hasn't been made yet + + Returns path to the folder whether it was created here or existed + """ + dump_point_path = os.path.join(self.database_path, dump_point) + if not os.path.isdir(dump_point_path): + os.mkdir(dump_point_path) + + return dump_point_path + + def load_data(self, expected_filename, data_folder_path, parameters, run_name, dump_point, comment): + """ + Include MCPL file into database with given metadata + + Attempts to load MCPL file from McStas output. If the file does not + exists, the method will return without adding anything to the database. + + expected_filename : str + Filename given as McStas parameter, can include explicit double quotes + + data_folder_path : str + Path to the data folder that contains the MCPL file + + parameters: dict + dict with parameter names and values for this run + + run_name : str + Specified run name for this run + + dump_point : str + Name of component where MCPL cut ended, can start from here later + + comment : str + Comment on the run that can be included in metadata + """ + if not os.path.isdir(data_folder_path): + # If the folder doesn't exist, skip search + return + + # Sanitize expected_filename + expected_filename = expected_filename.strip('"') + expected_filename = os.path.split(expected_filename)[-1] + expected_filename = expected_filename.split(".gz")[0] + expected_filename = expected_filename.split(".mcpl")[0] + + # The system might or might not be able to compress the data, search for both + possible_endings = [".mcpl", ".mcpl.gz"] + + for ending in possible_endings: + file_path = os.path.join(data_folder_path, expected_filename + ending) + if not os.path.isfile(file_path): + continue + + if dump_point not in self.data: + self.data[dump_point] = {} + + if run_name not in self.data[dump_point]: + self.data[dump_point][run_name] = {} + + n_tags = len(self.data[dump_point][run_name]) + # Find relative path + db_path = self.path + rel_path = os.path.relpath(file_path, start=db_path) + + # Create dump with given metadata + dump = BeamDump(data_path=rel_path, parameters=parameters, + dump_point=dump_point, run_name=run_name, + comment=comment, tag=n_tags) + # Write to disk + dump_path = self.create_folder_for_dump_point(dump_point) + dump.dump_to_JSON(dump_path) + + self.data[dump_point][run_name][n_tags] = dump + return dump + + def get_dump(self, point, run_name=None, tag=None): + """ + Getter for dumps with specified point, run_name and tag + """ + if point not in self.data: + raise KeyError("The dump point '" + point + "' wasn't in the database.") + + if run_name is None and tag is None: + return self.newest_at_point(point) + + if run_name not in self.data[point]: + raise KeyError("The run_name '" + run_name + "' wasn't in the database " + + "at the dump_point '" + point + "'.") + + if tag is None: + return self.newest_at_point(point, run=run_name) + + tag = int(tag) # Ensure tag is an integer for database lookup + + if tag not in self.data[point][run_name]: + raise KeyError("The tag '" + str(tag) + "' was not in the database for" + + "run_name '" + run_name + + "at the dump_point '" + point + "'.") + + dump = self.data[point][run_name][tag] + if not dump.file_present(self.path): + raise RuntimeError("The dump datafile was not found in the expected location.") + + return dump + + def newest_at_point(self, point, run=None): + """ + Gets newest dump at a given point and optionally a run_name + + point : str + String with component name matching the dump point + + run : str + String matching the run_name desired + """ + + if point not in self.data: + raise KeyError("The dump point '" + point + "' wasn't in the database.") + + if run is None: + # Collect all runs at the point for sort_by_time + runs = self.data[point] + else: + # If a run name is specified, check it exists + if run not in self.data[point]: + raise KeyError("The run_name '" + run + "' wasn't in the database " + + "at the dump_point '" + point + "'.") + + # Collect all the runs in a dict for sort_by_time + runs = {run: self.data[point][run]} + + return self.sort_by_time(runs, return_latest=True) + + def sort_by_time(self, runs, return_latest=False): + """ + Sorts a given dict of runs and returns a list or the latest if return_latest is true + + The input data is given as a dictionary of runs matching the database structure + with all the individual tags underneath the runs. It is usually used with all runs + being from the same point, but not necessary for the method to work. + + runs : dict + Dictionary with runs containing dictionary of tags pointing to dumps + + return_latest : bool + If True only latest dump is returned, otherwise sorted list + """ + time_to_run = {} + for run in runs: + for tag in runs[run]: + dump = runs[run][tag] + time_loaded = dump.data["time_loaded"] + time_to_run[time_loaded] = dump + + sorted_times = sorted((time.strptime(d, TIME_FORMAT) for d in time_to_run.keys()), reverse=True) + + return_list = [] + for sorted_time in sorted_times: + return_list.append(time_to_run[time.strftime(TIME_FORMAT, sorted_time)]) + + if return_latest: + for dump in return_list: + if dump.file_present(self.path): + return dump + else: + point = dump.data["dump_point"] + run_name = dump.data["run_name"] + tag = dump.data["tag"] + data_path = dump.data["data_path"] + + print(f"Latest file had run_name '{run_name}' and tag '{tag}', but the file was " + f"not found in the expected location, and thus skipped.") + print("Expected path: ", data_path) + + raise RuntimeError("No beam dumps available.") + + return return_list + + def show_in_order(self, component_names): + """ + Method to print content of database in order of component_names + + component_names : list + List of strings for component names in the instrument + """ + + if len(self.data) == 0: + print("No data in dump database yet. Use run_to method to create dump.") + return + + print("Run point:") + print(" ", "run_name".ljust(12), ":", "tag", ":", "time".ljust(20), ":", "comment") + print("-"*60, "--- -- -") + + for name in component_names: + if name in self.data: + print(name + ":") + dumps = self.sort_by_time(self.data[name]) + for dump in dumps: + if len(dump.data["parameters"]) < 2: + par_string = ": " + str(dump.data["parameters"]) + else: + par_string = "" + + print(" ", dump.data["run_name"].ljust(12), ":", + str(dump.data["tag"]).ljust(3), ":", + dump.data["time_loaded"].ljust(20), ":", + dump.data["comment"], par_string) + + def __repr__(self): + """ + Basic repr of the data included in the database. + """ + string = "" + for point in self.data: + string += point + ":\n" + for run in self.data[point]: + for tag in self.data[point][run]: + string += " " + self.data[point][run][tag].data["run_name"] + "\n:" + string += " " + str(self.data[point][run][tag]) + ":\n" + + return string + + +class BeamDump: + def __init__(self, data_path, parameters, dump_point, run_name, + time_loaded=None, comment="", tag=0, record_name=""): + """ + Class describing a beamdump made somewhere in an instrument + + Inputs for class matches what can be read from json file describing + dump to facilitate easy recreation from file. Strips complex parameters + into simple dict with par name and value for easy storage. + + data_path : str + Path of MCPL datafile + + parameters : dict + Parameters used to run simulation + + dump_point : str + Name of component where beam was dumped + + run_name : str + Specified run name for this dump + + time_loaded : str + Optional, usually generated at first load, timestamp + + comment : str + Comment for this beamdump + + tag : integer + Tag for this beamdump to differentiate similar dumps + + record_name : str + Unique filename combining run_name and tag + """ + simple_parameters = {} + # Convert complex parameter objects to simple key - value pairs + for parameter in parameters: + if hasattr(parameters[parameter], "value"): + # The full parameter objects store their value in value attribute + simple_parameters[parameter] = parameters[parameter].value + else: + simple_parameters[parameter] = parameters[parameter] + + # The fields in data must correspond to the input of the class + self.data = {"data_path": data_path, + "dump_point": dump_point, + "parameters": simple_parameters, + "run_name": run_name, + "comment": comment, + "tag": tag, + "record_name": record_name} + + if time_loaded is None: + self.data["time_loaded"] = datetime.now().strftime(TIME_FORMAT) + else: + self.data["time_loaded"] = time_loaded + + @classmethod + def dump_from_JSON(cls, filepath): + """ + Load dump from json file + + filepath : str + Path to json file for load + """ + with open(filepath, "r") as f: + data = json.loads(f.read()) + + return cls(**data) # Since the data fields correspond to class input + + def dump_to_JSON(self, folder_path): + """ + Writes representation of the object to file + + folder_path : str + Folder in which the dump will be placed + """ + + self.data["record_name"] = self.data["run_name"] + "_" + str(self.data["tag"]) + + filepath = os.path.join(folder_path, self.data["record_name"] + ".json") + if os.path.isfile(filepath): + raise RuntimeError("Run with this destination and run_name: '" + + self.data["record_name"] + + "' already exists in BeamDumpDatabase.") + + with open(filepath, "w") as outfile: + json.dump(self.data, outfile) + + def file_present(self, origin_path): + """ + Checks whether the file is present and returns bool + """ + return os.path.isfile(os.path.join(origin_path,self.data["data_path"])) + + def print_all(self): + """ + Print all entries in data for dump + """ + for key in self.data: + print(key, ":", self.data[key]) + + def __repr__(self): + """ + Simple representation of data in object + """ + return str(self.data) + diff --git a/mcstasscript/helper/check_mccode_version.py b/mcstasscript/helper/check_mccode_version.py new file mode 100644 index 00000000..4924842b --- /dev/null +++ b/mcstasscript/helper/check_mccode_version.py @@ -0,0 +1,30 @@ +import os +import subprocess + +def check_mcstas_major_version(mcstas_bin_path): + """ + Checks installed McStas version + """ + mcstas_command = os.path.join(mcstas_bin_path, "mcstas") + output = subprocess.check_output([mcstas_command, "-v"]) + + output = output.decode("utf-8") + output = output.split(" (", 1)[0] + output = output.split("version", 1)[1] + major_version = output.split(".", 1)[0] + + return int(major_version) + +def check_mcxtrace_major_version(mcstas_bin_path): + """ + Checks installed McXtrace version + """ + mcstas_command = os.path.join(mcstas_bin_path, "mcxtrace") + output = subprocess.check_output([mcstas_command, "-v"]) + + output = output.decode("utf-8") + output = output.split(" (", 1)[0] + output = output.split("version", 1)[1] + major_version = output.split(".", 1)[0] + + return int(major_version) \ No newline at end of file diff --git a/mcstasscript/helper/component_reader.py b/mcstasscript/helper/component_reader.py new file mode 100644 index 00000000..a786538b --- /dev/null +++ b/mcstasscript/helper/component_reader.py @@ -0,0 +1,521 @@ +import os +import math +import re + + +def remove_c_comments(code): + """ + Removes comments from a multiline piece of c code + """ + # Remove single-line comments + code = re.sub(r'//.*', '', code) + + # Remove multi-line comments + code = re.sub(r'/\*.*?\*/', '', code, flags=re.DOTALL) + + # Remove empty lines + code = '\n'.join([line for line in code.split('\n') if line.strip()]) + + return code + + +def c_integer_literal_base(s: str) -> int: + """ + Determine the base of a C style integer literal. + + base literal + ------- -------------------- + binary 0b### for # in (0,1) + octal 0#### for # in (0,7) + decimal N#### for N in (1,9) and # in (0,9) + hexadecimal 0x### for # in (0,9)&(A,F) + + The ambiguity between octal and decimal for '0' is not important + since both result in the same integer value. + """ + if len(s) == 0: + return 0 + if '0' != s[0]: + return 10 + if 'x' in s: + return 16 + if 'b' in s: + return 2 + return 8 + + +class ComponentInfo: + """ + Internal class used to store information on parameters of components + """ + + def __init__(self): + self.name = "" + self.category = "" + self.parameter_names = [] + self.parameter_defaults = {} + self.parameter_types = {} + self.parameter_comments = {} + self.parameter_units = {} + + +class ComponentReader: + """ + Class for retrieving information on available McStas components + + Recursively reads all component files in hardcoded list of + folders that represents the component categories in McStas. + The results are stored in a dictionary with ComponentInfo + instances, the keys are the names of the components. After + the components in the McStas installation are read, any + components present in the current work directory is read, + and these will overwrite existing information, consistent + with how McStas reads component definitions. + + """ + + def __init__(self, mcstas_path, input_path="."): + """ + Reads all component files in standard folders. Recursive, so + subfolders of these folders are included. + + Parameters + ---------- + mcstas_path : str + Path to McStas folder, used to find the installed components + + keyword arguments: + input_path : str + Path to work directory, most often current directory + + """ + + # Hardcoded whitelist of foldernames + folder_list = ["sources", + "optics", + "samples", + "monitors", + "misc", + "contrib", + "obsolete", + "union", + "astrox"] + + self.component_path = {} + self.component_category = {} + + for folder in folder_list: + abs_path = os.path.join(mcstas_path, folder) + abs_path = os.path.abspath(abs_path) + self._find_components(abs_path) + + # Will overwrite McStas components with definitions in input_folder + current_directory = os.getcwd() + + # Set up absolute input_path + if os.path.isabs(input_path): + input_directory = input_path + else: + if input_path == ".": + # Default case, avoid having /./ in absolute path + input_directory = current_directory + else: + input_directory = os.path.join(current_directory, input_path) + + if not os.path.isdir(input_directory): + print("input_path: ", input_directory) + raise ValueError("Can't find given input_path," + + " directory must exist.") + + """ + If components are present both in the McStas install and the + work directory, the version in the work directory is used. The user + is informed of this behavior when the instrument object is created. + """ + + self.load_components_from_folder(input_directory, "work directory") + + def load_components_from_folder(self, folder, name, verbose=True): + """ + Loads McStas components from given absolute path + + folder : (str) Path for folder to search for components in + name : (str) Used for displaying help messages about these components + verbose : (bool) If True, help messages are shown about the process + """ + + if not os.path.isdir(folder): + if verbose: + print("Did not find specified folder: " + folder) + return + + overwritten_components = [] + for file in os.listdir(folder): + if file.endswith(".comp"): + abs_path = os.path.join(folder, file) + component_name = os.path.split(abs_path)[1].split(".")[-2] + + if component_name in self.component_path: + overwritten_components.append(file) + + self.component_path[component_name] = abs_path + self.component_category[component_name] = name + + # Report components found in the work directory and install to the user + if len(overwritten_components) > 0 and verbose: + print(f"The following components are found in the {name}" + + " / input_path:") + for component_name in overwritten_components: + print(" ", component_name) + + print("These definitions will be used instead of the installed " + + "versions.") + + def show_categories(self): + """ + Method that will show all component categories available + + Sorted alphabetically for easier readability and consistency + """ + categories = [] + for component, category in self.component_category.items(): + if category not in categories: + categories.append(category) + + categories.sort() + for category in categories: + print(" " + category) + + def show_components_in_category(self, category_input, **kwargs): + """ + Method that will show all components in given category + + """ + if "line_length" in kwargs: + line_limit = int(kwargs["line_length"]) + if line_limit < 20: + raise ValueError("line_length should be more than 20 " + + "characters, was " + str(line_limit)) + else: + line_limit = 100 + + empty_category = True + to_print = [] + for component, category in self.component_category.items(): + if category == category_input: + to_print.append(component) + empty_category = False + + to_print.sort() + if empty_category: + print("No components found in this category! " + + "Available categories:") + self.show_categories() + + elif len(to_print) < 10: + for component in to_print: + print(" " + component) + else: + # Prints in columns, maximum 4 and maximum line length line_limit + columns = 5 + total_line_length = 1000 + while(total_line_length > line_limit): + columns = columns - 1 + + c_length = math.ceil(len(to_print)/columns) + last_length = len(to_print) - (columns-1)*c_length + + column = [] + longest_name = [] + for col in range(0, columns-1): + current_list = to_print[c_length*col:c_length*(col+1)] + column.append(current_list) + longest_name.append(len(max(current_list, key=len))) + + column.append(to_print[c_length*(columns-1):]) + longest_name.append(len(max(column[columns-1], key=len))) + + total_line_length = 1 + sum(longest_name) + (columns-1)*3 + + for line_nr in range(c_length): + print(" ", end="") + for col in range(columns-1): + this_name = column[col][line_nr] + print(this_name + + " "*(longest_name[col] - len(this_name)) + + " ", end="") # More columns left, dont break + if line_nr < last_length: + this_name = column[columns-1][line_nr] + print(this_name) + else: + print("") + + def load_all_components(self): + """ + Method that loads information on all components into memory. + + """ + + return_dict = {} + for comp_name, abs_path in self.component_path.items(): + return_dict[comp_name] = self.read_component_file(abs_path) + + return return_dict + + def read_name(self, component_name): + """ + Returns ComponentInfo of component with name component_name. + + Uses table of absolute paths to all known components, and + reads the appropriate file in order to generate the information. + + """ + + if component_name not in self.component_path: + raise NameError("No component named " + + component_name + + " in McStas installation or " + + "current work directory.") + + output = self.read_component_file(self.component_path[component_name]) + + # Category loaded using path, in case of Work directory it fails + if self.component_category[component_name] == "work directory": + output.category = "work directory" # Corrects category + + return output + + def _find_components(self, absolute_path): + """ + Recursive read function, can read either file or entire folder + + Updates the component_info_dict with the findings that are + stored as ComoponentInfo instances. + + """ + + if not os.path.isabs(absolute_path): + raise RuntimeError("_find_components received non absolute path") + + if not os.path.isdir(absolute_path): + if absolute_path.endswith(".comp"): + # read this file + component_name = os.path.split(absolute_path)[1].split(".")[-2] + self.component_path[component_name] = absolute_path + + head = os.path.split(absolute_path)[0] + component_category = os.path.split(head)[1] + self.component_category[component_name] = component_category + else: + for file in os.listdir(absolute_path): + absolute_file_path = os.path.join(absolute_path, file) + self._find_components(absolute_file_path) + + def read_component_file(self, absolute_path): + """ + Reads a component file and expands component_info_dict + + The information is stored as ComponentClass instances. + """ + + result = ComponentInfo() + + file_o = open(absolute_path, "r") + + line_number = 0 + while True: + line_number += 1 + line = file_o.readline() + + if not line: + # Exit at end of file + break + + # find parameter comments + if line.startswith("* %P"): + + while True: + this_line = file_o.readline() + + if this_line.startswith("DEFINE COMPONENT"): + # No more comments to read through + break + + if ":" in this_line: + tokens = this_line.split(":") + + variable_name = tokens[0] + variable_name = variable_name.replace("*", "") + variable_name = variable_name.strip() + if " " in variable_name: + name_tokens = variable_name.split(" ") + variable_name = name_tokens[0] + + if len(tokens[1]) > 2: + comment = tokens[1].strip() + + if "[" in comment: # Search for unit + # If found, store it and remove from string + unit = comment[comment.find("[") + 1: + comment.find("]")] + result.parameter_units[variable_name] = unit + comment = comment[comment.find("]") + 1:] + comment = comment.strip() + + # Store the comment + result.parameter_comments[variable_name] = comment + elif "[" in this_line and "]" in this_line: + tokens = this_line.split("[") + + variable_name = tokens[0] + variable_name = variable_name.replace("*", "") + variable_name = variable_name.strip() + + unit = this_line[this_line.find("[") + 1: + this_line.find("]")] + result.parameter_units[variable_name] = unit + + comment = this_line[this_line.find("]") + 1:] + comment = comment.strip() + result.parameter_comments[variable_name] = comment + + # find definition parameters and their values + if (line.strip().startswith("DEFINITION PARAMETERS") + or line.strip().startswith("SETTING PARAMETERS")): + + define_section = line + while True: + line = file_o.readline() + + end_keywords = ("SHARE", "INITIALIZE", "INITIALISE", "DECLARE", "TRACE", "DEPENDENCY") + if line.strip().upper().startswith(end_keywords) or not line: + break + + define_section += line + + clean_define_section = remove_c_comments(define_section) + + # Define the delimiters as a list of strings + delimiters = ["DEFINITION PARAMETERS", "SETTING PARAMETERS", "OUTPUT PARAMETERS"] + + # Create a regex pattern using alternation and join the delimiters with the '|' symbol + delimiter_pattern = r'\s*(' + '|'.join(map(re.escape, delimiters)) + r')\s*' + + # Split the text using pattern + clean_define_sections = re.split(delimiter_pattern, clean_define_section) + + # Extract parameters from definition and settings part + parameter_section = "" + for index, section in enumerate(clean_define_sections): + if section in ("DEFINITION PARAMETERS", "SETTING PARAMETERS"): + parameter_section += clean_define_sections[index + 1].strip("(").strip(")") + ", " + + # Convert parameter section to single line, then split in parts separated by comma + parameter_section = parameter_section.replace('\n', ' ') + parameter_parts = parameter_section.split(",") + # Combine parts that should be together, for example by brackets + parameter_parts = self.correct_for_brackets(parameter_parts) + + # Each part now corresponds to a parameter to be read + for part in parameter_parts: + + temp_par_type = "double" + + part = part.strip() + + possible_declare = part.split(" ") + possible_type = possible_declare[0].strip() + if "int" == possible_type: + temp_par_type = "int" + # remove int from part + part = "".join(possible_declare[1:]) + if "string" == possible_type: + temp_par_type = "string" + # remove string from part + part = "".join(possible_declare[1:]) + if "double" == possible_type: + temp_par_type = "double" + # remove double from part + part = "".join(possible_declare[1:]) + if "vector" == possible_type: + temp_par_type = "double" + # remove double from part + part = "".join(possible_declare[1:]) + + part = part.replace(" ", "") + if part == "": + continue + + if "=" not in part: + # no default value, required parameter + result.parameter_names.append(part) + result.parameter_defaults[part] = None + result.parameter_types[part] = temp_par_type + else: + # default value available + name_value = part.split("=") + par_name = name_value[0].strip() + par_value = name_value[1].strip() + + if temp_par_type == "double": + try: + par_value = float(par_value) + except ValueError: + # value could be parameter name + par_value = par_value + elif temp_par_type == "int": + par_value = int(par_value, c_integer_literal_base(par_value)) + + result.parameter_names.append(par_name) + result.parameter_defaults[par_name] = par_value + result.parameter_types[par_name] = temp_par_type + + # End while loop running through file when parameters are read + break + + file_o.close() + + result.name = os.path.split(absolute_path)[1].split(".")[-2] + + tail = os.path.split(absolute_path)[0] + result.category = os.path.split(tail)[1] + + """ + To lower memory use one could remove all comments and units that + does not correspond to a found parameter name. + """ + + return result + + def correct_for_brackets(self, parameter_parts): + """ + Given list of string elements, correct for brackets will + combine terms until curly brackets are balanced, for example: + + ["A", "{B", "C", "D}", "E"] would return ["A", "{B,C,D}", "E"] + + Default values of vectors can be given in such a manner in + McStas components, and without this each part would be recognized + as different parameters. + """ + corrected_parts = [] + index = 0 + while True: + + current_part = parameter_parts[index] + inner_index = 0 + while True: + if current_part.count("{") == current_part.count("}"): + corrected_parts.append(current_part) + index += inner_index + break + else: + inner_index += 1 + current_part += "," + parameter_parts[index+inner_index] + + index += 1 + + if index >= len(parameter_parts): + break + + return corrected_parts diff --git a/mcstasscript/helper/exceptions.py b/mcstasscript/helper/exceptions.py new file mode 100644 index 00000000..580651c5 --- /dev/null +++ b/mcstasscript/helper/exceptions.py @@ -0,0 +1,3 @@ +class McStasError(Exception): + # Error raised when McStas simulation can't run + pass \ No newline at end of file diff --git a/mcstasscript/helper/formatting.py b/mcstasscript/helper/formatting.py new file mode 100644 index 00000000..18c8e86a --- /dev/null +++ b/mcstasscript/helper/formatting.py @@ -0,0 +1,56 @@ +import re + +class bcolors: + """ + Helper class that contains formatting classes and functions + """ + HEADER = '\033[95m' + OKBLUE = '\033[94m' + OKGREEN = '\033[92m' + WARNING = '\033[93m' + FAIL = '\033[91m' + ENDC = '\033[0m' + BOLD = '\033[1m' + UNDERLINE = '\033[4m' + + +def is_legal_parameter(name): + """ + Function that returns true if the given name can be used as a + parameter in the c programming language. + """ + # List of C reserved keywords + reserved_keywords = [ + "auto", "break", "case", "char", "const", "continue", "default", "do", + "double", "else", "enum", "extern", "float", "for", "goto", "if", + "inline", "int", "long", "register", "restrict", "return", "short", + "signed", "sizeof", "static", "struct", "switch", "typedef", "union", + "unsigned", "void", "volatile", "while", "_Bool", "_Complex", "_Imaginary" + ] + + # Regular expression pattern for a legal C variable name + pattern = r'^[a-zA-Z_][a-zA-Z0-9_]*$' + + # Check if the input string matches the pattern and is not a reserved keyword + return re.match(pattern, name) and name not in reserved_keywords + + +def is_legal_filename(name): + """ + Function that returns true if the given name can be used as a + filename + """ + + if name == "": + return False + + if " " in name: + return False + + if "/" in name: + return False + + if "\\" in name: + return False + + return True diff --git a/mcstasscript/helper/managed_mcrun.py b/mcstasscript/helper/managed_mcrun.py new file mode 100644 index 00000000..263e4fc4 --- /dev/null +++ b/mcstasscript/helper/managed_mcrun.py @@ -0,0 +1,874 @@ +import os +import numpy as np +import subprocess +import mmap +import warnings +import h5py +import re + +from mcstasscript.helper.formatting import bcolors +from mcstasscript.data.data import McStasMetaData +from mcstasscript.data.data import McStasDataBinned +from mcstasscript.data.data import McStasDataEvent + + +class ManagedMcrun: + """ + A class for performing a mcstas simulation and organizing the data + into python objects + + ManagedMcrun is usually called by the instrument class of + McStasScript but can be used independently. It runs the mcrun + command using the system command, and if this is not in the path, + the absolute path can be given in a keyword argument executable_path. + + Attributes + ---------- + name_of_instrumentfile : str + Name of instrument file to be executed + + data_folder_name : str + Name of datafolder mcrun writes to disk + + ncount : int + Number of rays to simulate + + mpi : int + Number of mpi threads to run + + parameters : dict + Dictionary of parameter names and values for this simulation + + custom_flags : string + Custom flags that are passed to the mcrun command + + executable_path : string + Path to the mcrun command (can be empty if already in path) + + Methods + ------- + run_simulation() + Runs simulation, returns list of McStasData instances + + """ + + def __init__(self, instr_name, **kwargs): + """ + Performs call to McStas with given options + + Uses subprocess to call mcrun / mxrun to perform simulation of given + instrument file. + + Parameters + ---------- + instr_name : str + Name of instrument file to be simulated + + kwargs : keyword arguments + output_path : str, required + Sets data_folder_name + ncount : int, default 1E6 + Sets ncount + mpi : int, default None + Sets thread count, None to disable mpi + gravity : bool, default False + Enables gravity if True + parameters : dict + Sets parameters + custom_flags : str, default "" + Sets custom_flags passed to mcrun + executable_path : str + Path to mcrun command, "" if already in path + increment_folder_name : bool, default True + If True, automatically appends output_path to make it unique + force_compile : bool, default True + If True, forces compile. If False no new instrument is written + run_folder : str + Path to folder in which to run McStas + openacc : bool, default False + If True, adds the --openacc flag to mcrun call + NeXus : bool, default False + If True, adds the --format=NeXus to mcrun call + + """ + + self.name_of_instrumentfile = instr_name + + self.data_folder_name = "" + self.ncount = int(1E6) + self.mpi = None + self.gravity = False + self.openacc = False + self.NeXus = False + self.parameters = {} + self.custom_flags = "" + self.executable_path = "" + self.executable = "" + self.increment_folder_name = True + self.compile = True + self.run_path = "." + self.seed = None + self.suppress_output = False + + # executable_path always in kwargs + if "executable_path" in kwargs: + self.executable_path = kwargs["executable_path"] + + if "executable" in kwargs: + self.executable = kwargs["executable"] + + if "output_path" in kwargs: + self.data_folder_name = kwargs["output_path"] + else: + raise NameError( + "ManagedMcrun needs output_path to load data, add " + + "with keyword argument.") + + if "ncount" in kwargs: + self.ncount = int(kwargs["ncount"]) + + if self.ncount < 1: + raise ValueError("ncount should be a positive integer, was " + + str(self.ncount)) + + if "mpi" in kwargs: + self.mpi = kwargs["mpi"] + try: + self.mpi = int(self.mpi) + except (TypeError, ValueError) as e: + if self.mpi is not None: + raise RuntimeError("MPI should be an integer, was " + + str(self.mpi)) + + if self.mpi is not None: + if self.mpi < 1: + raise ValueError("MPI should be an integer larger than" + + " 0, was " + str(self.mpi)) + + if "gravity" in kwargs: + self.gravity = kwargs["gravity"] + + if "openacc" in kwargs: + self.openacc = kwargs["openacc"] + + if "NeXus" in kwargs: + self.NeXus = kwargs["NeXus"] + + if "seed" in kwargs: + self.seed = kwargs["seed"] + + if "parameters" in kwargs: + self.parameters = kwargs["parameters"] + + if not isinstance(self.parameters, dict): + raise RuntimeError("Parameters should be given as dict.") + + if "custom_flags" in kwargs: + self.custom_flags = kwargs["custom_flags"] + + if not isinstance(self.custom_flags, str): + raise RuntimeError("ManagedMcrun detected given customf_flags" + + " was not a string.") + + if "increment_folder_name" in kwargs: + self.increment_folder_name = kwargs["increment_folder_name"] + + if "force_compile" in kwargs: + self.compile = kwargs["force_compile"] + + if "run_path" in kwargs: + self.run_path = kwargs["run_path"] + + if "suppress_output" in kwargs: + self.suppress_output = bool(kwargs["suppress_output"]) + + + # get relevant paths and check their validity + current_directory = os.getcwd() + + if not os.path.isabs(self.data_folder_name): + self.data_folder_name = os.path.join(current_directory, + self.data_folder_name) + else: + split_data_path = os.path.split(self.data_folder_name) + if not os.path.isdir(split_data_path[0]): + raise RuntimeError("Parent folder for datafolder invalid: " + + str(split_data_path[0])) + + if not os.path.isabs(self.run_path): + self.run_path = os.path.join(current_directory, self.run_path) + else: + split_run_path = os.path.split(self.run_path) + if not os.path.isdir(split_run_path[0]): + raise RuntimeError("Parent folder for run_path invalid: " + + str(split_run_path[0])) + + if not os.path.isdir(self.run_path): + raise RuntimeError("ManagedMcrun found run_path to " + + "be invalid: " + str(self.run_path)) + + if not os.path.isdir(self.executable_path): + raise RuntimeError("ManagedMcrun found executable_path to " + + "be invalid: " + str(self.executable_path)) + + def run_simulation(self): + """ + Runs McStas simulation described by initializing the object + """ + + # construct command to run + option_string = "" + if self.compile: + option_string += "-c " + + if self.gravity: + option_string += "-g " + + if self.NeXus: + option_string += "--format=NeXus " + + if self.openacc: + option_string += "--openacc " + + if self.mpi is not None: + mpi_string = "--mpi=" + str(self.mpi) + " " # Set mpi + else: + mpi_string = "" + + if self.seed is not None: + seed_string = "--seed=" + str(self.seed) + " " # Set seed + else: + seed_string = "" + + option_string = (option_string + + "-n " + str(self.ncount) + " " # Set ncount + + mpi_string + + seed_string) + + if os.path.exists(self.data_folder_name): + if self.increment_folder_name: + counter = 0 + new_name = self.data_folder_name + "_" + str(counter) + while os.path.isdir(new_name): + counter = counter + 1 + new_name = self.data_folder_name + "_" + str(counter) + + self.data_folder_name = new_name + else: + raise NameError("output_path already exists and " + + "increment_folder_name was set to False.") + + if len(self.data_folder_name) > 0: + option_string = (option_string + + "-d " + + self.data_folder_name) + + # add parameters to command + parameter_string = "" + for key, val in self.parameters.items(): + parameter_string = (parameter_string + " " + + str(key) # parameter name + + "=" + + str(val)) # parameter value + + mcrun_full_path = os.path.join(self.executable_path, self.executable) + if len(self.executable_path) > 1: + if not (self.executable_path[-1] == "\\" + or self.executable_path[-1] == "/"): + mcrun_full_path = os.path.join(self.executable_path, + self.executable) + mcrun_full_path = '"' + mcrun_full_path + '"' # Path in quotes to allow spaces + + # Run the mcrun command on the system + full_command = (mcrun_full_path + " " + + option_string + " " + + self.custom_flags + " " + + self.name_of_instrumentfile + + parameter_string) + + process = subprocess.run(full_command, shell=True, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + universal_newlines=True, + cwd=self.run_path) + + if self.suppress_output is False: + print_sim_output(process.stdout) + + if not os.path.isdir(self.data_folder_name): + warnings.warn("Simulation did not create data folder, most likely failed.") + + def load_results(self, *args): + """ + Method for loading data from a mcstas simulation + + Loads data on all monitors in a McStas data folder, and returns these + as a list of McStasData objects. + + Parameters + ---------- + + optional first argument : str + path to folder from which data should be loaded + + """ + + if len(args) == 0: + data_folder_name = self.data_folder_name + elif len(args) == 1: + data_folder_name = args[0] + else: + raise RuntimeError("load_results can be called " + + "with 0 or 1 arguments") + + if os.path.isdir(data_folder_name): + return load_results(data_folder_name) + else: + warnings.warn("No data available to load.") + return None + + +def load_results(data_folder_name): + """ + Function for loading data from a mcstas simulation + + Loads data on all monitors in a McStas data folder, and returns these + as a list of McStasData objects. + + Parameters + ---------- + + data_folder_name : str + path to folder from which data should be loaded + + """ + + if not os.path.isdir(data_folder_name): + raise NameError("Given data directory does not exist.") + + # Find all data files in generated folder + files_in_folder = os.listdir(data_folder_name) + + # Raise an error if mccode.sim is not available + if "mccode.sim" in files_in_folder: + NeXus = False + elif "mccode.h5" in files_in_folder: + NeXus = True + else: + raise NameError("No mccode.sim or mccode.h5 in data folder.") + + if NeXus: + # Open mccode to read metadata for all datasets written to disk + with h5py.File(os.path.join(data_folder_name, "mccode.h5"), "r", swmr=True) as f: + + # Pass file object to all functions to avoid multiple open / close + metadata_list = load_metadata_nexus(f) + + results = [] + for metadata in metadata_list: + result = load_monitor_nexus(metadata, f) + result.set_data_location(data_folder_name) + results.append(result) + + else: + # Older workflow, still handles both text and NeXus + metadata_list = load_metadata(data_folder_name) + + results = [] + for metadata in metadata_list: + result = load_monitor(metadata, data_folder_name) + result.set_data_location(data_folder_name) + results.append(result) + + return results + +def load_metadata(data_folder_name): + """ + Function that loads metadata from a mcstas simulation + + Returns list of metadata objects corresponding to each monitor, all + information is taken from mccode.sim file. + + Parameters + ---------- + + first argument : str + path to folder from which metadata should be loaded + """ + + if not os.path.isdir(data_folder_name): + raise NameError("Given data directory does not exist.") + + # Find all data files in generated folder + files_in_folder = os.listdir(data_folder_name) + + # Raise an error if mccode.sim is not available + if "mccode.sim" in files_in_folder: + return load_metadata_text(data_folder_name) + elif "mccode.h5" in files_in_folder: + with h5py.File(os.path.join(data_folder_name, "mccode.h5"), "r", swmr=True) as f: + return load_metadata_nexus(f) + else: + raise NameError("No mccode.sim or mccode.h5 in data folder.") + + +def load_metadata_text(data_folder_name): + instrument_parameters = {} + + # Open mccode to read metadata for all datasets written to disk + with open(os.path.join(data_folder_name, "mccode.sim"), "r") as f: + + # Loop that reads mccode.sim sections + metadata_list = [] + current_object = None + in_data = False + in_sim = False + for lines in f: + # Could read other details about run + + if lines == "end data\n": + # No more data for this metadata object + # Add parameter information + current_object.add_info("Parameters", instrument_parameters) + # Extract the information + current_object.extract_info() + # Add to metadata list + if current_object.filename != "": + metadata_list.append(current_object) + # Stop reading data + in_data = False + + if in_sim: + if "Param" in lines: + parm_lst = lines.split(':')[1].split('=') + try: + value = float(parm_lst[1].strip()) + except ValueError: + value = parm_lst[1].strip() + + instrument_parameters[parm_lst[0].strip()] = value + + if in_data: + # This line contains info to be added to metadata + colon_index = lines.index(":") + key = lines[2:colon_index] + value = lines[colon_index + 2:].strip() + current_object.add_info(key, value) + + if lines == "begin data\n": + # Found data section, create new metadata object + current_object = McStasMetaData() + # Start recording data to metadata object + in_data = True + + if 'begin simulation:' in lines: + in_sim = True + if 'end simulation:' in lines: + in_sim = False + + # Close mccode.sim + f.close() + + """ + # Create a list for McStasData instances to return + results = [] + + + # Load datasets described in metadata list individually + for metadata in metadata_list: + + # Load data with numpy + data = np.loadtxt(data_folder_name + + "/" + + metadata.filename.rstrip()) + + # Split data into intensity, error and ncount + if type(metadata.dimension) == int and metadata.dimension == 0: + Intensity = data.T + + if type(metadata.dimension) == int and metadata.dimension != 0: + + xaxis = data.T[0, :] + Intensity = data.T[1, :] + Error = data.T[2, :] + Ncount = data.T[3, :] + + elif len(metadata.dimension) == 2: + xaxis = [] # Assume evenly binned in 2d + data_lines = metadata.dimension[1] + Intensity = data.T[:, 0:data_lines - 1] + Error = data.T[:, data_lines:2*data_lines - 1] + Ncount = data.T[:, 2*data_lines:3*data_lines - 1] + """ + + return metadata_list + + +def load_metadata_nexus(file_object): + instrument_parameters = {} + + f = file_object + + if "entry1" not in list(f.keys()): + raise ValueError("h5 file not formatted as expected.") + + if "data" not in list(f["entry1"].keys()): + raise ValueError("h5 file not formatted as expected.") + + if "simulation" not in list(f["entry1"].keys()): + raise ValueError("h5 file not formatted as expected.") + + if "Param" not in list(f["entry1"]["simulation"].keys()): + raise ValueError("h5 file not formatted as expected.") + + # Common information + + # Instrument parameters + instrument_parameters = {} + loaded_par_dict = f["entry1"]["simulation"]["Param"].attrs + for par_name in loaded_par_dict: + if par_name == "NX_class": + continue + + try: + value = float(loaded_par_dict[par_name]) + except: + value = str(loaded_par_dict[par_name]) + + instrument_parameters[par_name] = value + + metadata_list = [] + + # For each entry in data, make a metadata object + for key in f["entry1"]["data"].keys(): + + # Make the metadata object and add instrument parameters + metadata = McStasMetaData() + metadata.add_info("Parameters", instrument_parameters) + + # Add NeXus field name + metadata.add_info("NeXus_field", key) + + # Add all the read info from attribute section + info = dict(f["entry1"]["data"][key].attrs) + info = decode_dict(info) + for name, value in info.items(): + if isinstance(value, bytes): + value = value.decode('utf-8') + + metadata.add_info(name, value) + + metadata_list.append(metadata) + + # Now all info is added, extract info loads it into nice attributes + metadata.extract_info() + + return metadata_list + + +def decode_dict(dictionary): + for key, value in dictionary.items(): + if isinstance(value, bytes): + try: + dictionary[key] = value.decode('utf-8') + except: + # Investigate cases where this fail when reading from nexus + dictionary[key] = value.decode('utf-8', errors='replace') # Replaces invalid bytes with '?' + + return dictionary + + +def load_monitor(metadata, data_folder_name): + """ + Switches to appropriate loader function + """ + + if "NeXus_field" in metadata.info: + with h5py.File(os.path.join(data_folder_name, "mccode.h5"), "r", swmr=True) as f: + return load_monitor_nexus(metadata, f) + else: + return load_monitor_text(metadata, data_folder_name) + + +def load_monitor_nexus(metadata, file_object): + """ + Function that loads data given metadata and name of data folder + This version is for a nexus file + + Loads data for single monitor and returns a McStasData object + + Parameters + ---------- + + metadata : McStasMetaData object + McStasMetaData object corresponding to the monitor to be loaded + + file_object : h5py file object in read mode + """ + + f = file_object + + if "entry1" not in list(f.keys()): + raise ValueError("h5 file not formatted as expected.") + + if "data" not in list(f["entry1"].keys()): + raise ValueError("h5 file not formatted as expected.") + + if "simulation" not in list(f["entry1"].keys()): + raise ValueError("h5 file not formatted as expected.") + + if "Param" not in list(f["entry1"]["simulation"].keys()): + raise ValueError("h5 file not formatted as expected.") + + NeXus_field = metadata.info["NeXus_field"] + + available_fields = f["entry1"]["data"][NeXus_field].keys() + if not metadata.dimension == 0 and "events" not in available_fields: + if "data" not in available_fields: + raise ValueError("NeXus reading: data not found! \n" + + "Monitor metadata:\n" + str(metadata)) + + if "errors" not in available_fields: + raise ValueError("NeXus reading: errors not found! \n" + + "Monitor metadata:\n" + str(metadata)) + + if "ncount" not in available_fields: + raise ValueError("NeXus reading: ncount not found! \n" + + "Monitor metadata:\n" + str(metadata)) + + # Need to check if it is binned data or event data + if "events" in available_fields: + Events = np.array(f["entry1"]["data"][NeXus_field]["events"]) + return McStasDataEvent(metadata, Events) + + # Split data into intensity, error and ncount + if type(metadata.dimension) == int and metadata.dimension == 0: + + if "data" in f["entry1"]["data"][NeXus_field].keys(): + raise ValueError("Found array data in 0D dataset?") + + values = None + if "values" in f["entry1"]["data"][NeXus_field].keys(): + values = np.array(f["entry1"]["data"][NeXus_field]["values"]) + + if metadata.total_I is None: + if values is not None: + Intensity = np.array(values[0]) + else: + raise ValueError("No info on this monitor can be found " + + "in reading of NeXus file " + + str(metadata)) + else: + Intensity = np.array(metadata.total_I) + + if metadata.total_E is None: + if values is not None: + Error = np.array(values[2]) + else: + Error = np.zeros(1) + else: + Error = np.array(metadata.total_E) + + if metadata.total_N is None: + if values is not None: + Ncount = np.array(values[3]) + else: + Ncount = np.zeros(1) + else: + Ncount = np.array(metadata.total_N) + + return McStasDataBinned(metadata, Intensity, Error, Ncount) + + elif type(metadata.dimension) == int and metadata.dimension != 0: + + original_xlabel = metadata.info["xlabel"] + + # All special characters are substituted with _ in McStas NeXus file + x_field = re.sub(r'[^a-zA-Z]', "_", original_xlabel) + + if x_field not in f["entry1"]["data"][NeXus_field].keys(): + error_text = ("Didn't find xaxis in NeXus file. \n" + + "Expected this field for x axis: " + + str(x_field) + "\n" + + "Existing fields: " + + str(f["entry1"]["data"][NeXus_field].keys())) + + raise ValueError(error_text) + + xaxis = np.array(f["entry1"]["data"][NeXus_field][x_field]) + Intensity = np.array(f["entry1"]["data"][NeXus_field]["data"]) + Error = np.array(f["entry1"]["data"][NeXus_field]["errors"]) + Ncount = np.array(f["entry1"]["data"][NeXus_field]["ncount"]) + + # The data is saved as a McStasDataBinned object + return McStasDataBinned(metadata, Intensity, Error, Ncount, xaxis=xaxis) + + elif len(metadata.dimension) == 2: + xaxis = [] # Assume evenly binned in 2d + Intensity = np.array(f["entry1"]["data"][NeXus_field]["data"]).T + Error = np.array(f["entry1"]["data"][NeXus_field]["errors"]).T + Ncount = np.array(f["entry1"]["data"][NeXus_field]["ncount"]).T + + # The data is saved as a McStasDataBinned object + return McStasDataBinned(metadata, Intensity, Error, Ncount, xaxis=xaxis) + else: + raise NameError( + "Dimension not read correctly in data set " + + "connected to monitor named " + + metadata.component_name) + + +def load_monitor_text(metadata, data_folder_name): + """ + Function that loads data given metadata and name of data folder + This version is for a text file + + Loads data for single monitor and returns a McStasData object + + Parameters + ---------- + + metadata : McStasMetaData object + McStasMetaData object corresponding to the monitor to be loaded + + data_folder_name : str + path to folder from which metadata should be loaded + """ + # Load data with numpy + filename = os.path.join(data_folder_name, metadata.filename.rstrip()) + data = np.loadtxt(filename) + + # Split data into intensity, error and ncount + if type(metadata.dimension) == int and metadata.dimension == 0: + Intensity = data.T + if metadata.total_E is None: + Error = np.zeros(1) + else: + Error = np.array(metadata.total_E) + + if metadata.total_N is None: + Ncount = np.zeros(1) + else: + Ncount = np.array(metadata.total_N) + + return McStasDataBinned(metadata, Intensity, Error, Ncount) + + elif type(metadata.dimension) == int and metadata.dimension != 0: + xaxis = data.T[0, :] + Intensity = data.T[1, :] + Error = data.T[2, :] + Ncount = data.T[3, :] + + # The data is saved as a McStasDataBinned object + return McStasDataBinned(metadata, Intensity, Error, Ncount, xaxis=xaxis) + + elif len(metadata.dimension) == 2: + # Need to check if it is binned data or event data + + with open(filename, 'rb', 0) as file, \ + mmap.mmap(file.fileno(), 0, access=mmap.ACCESS_READ) as s: + if s.find(b'# Errors') != -1: + data_type = "Binned" + else: + data_type = "Events" + + if data_type == "Events": + Events = data + + return McStasDataEvent(metadata, Events) + + elif data_type == "Binned": + # Binned 2D data + xaxis = [] # Assume evenly binned in 2d + data_lines = metadata.dimension[1] + Intensity = data[0:data_lines, :] + Error = data[data_lines:2 * data_lines, :] + Ncount = data[2 * data_lines:3 * data_lines, :] + + # The data is saved as a McStasDataBinned object + return McStasDataBinned(metadata, Intensity, Error, Ncount, xaxis=xaxis) + else: + raise NameError( + "Dimension not read correctly in data set " + + "connected to monitor named " + + metadata.component_name) + + +def print_sim_output(sim_output): + print(highlight(sim_output, "error", return_section=True, after_lines=10, highlight_type="FAIL")) + print(highlight(sim_output, "error", return_section=False, highlight_type="FAIL")) + + +def highlight(string, search_term, return_section=False, highlight_type=None, after_lines=5): + """ + Highlights search term in string and returns it, if return_section only sections with term is returned + """ + + search_term = search_term.lower() + + if not isinstance(string, str): + return None + + # Early exit if search term is not in string + output = string.lower().find(search_term) + if output == -1: + if return_section: + return "" + else: + return string + + if return_section: + instances = list(findall(string, search_term)) + n_instances = len(instances) + print(f"---- Found {n_instances} places in McStas output with " + f"keyword '{search_term}'. \n") + + if highlight_type is None: + highlight_start = "" + highlight_end = "" + else: + if not hasattr(bcolors, highlight_type): + raise RuntimeError(f"Used highlight_type {highlight_type} " + f"in highlight not found in bcolors.") + else: + highlight_start = getattr(bcolors, highlight_type) + highlight_end = bcolors.ENDC + + return_string = "" + + lines = string.split("\n") + total_lines = len(lines) + for index, line in enumerate(lines): + output = line.lower().find(search_term) + if output == -1: + if not return_section: + return_string += line + "\n" + else: + replaced_string = line[:output] + replaced_string += highlight_start + replaced_string += line[output:output + len(search_term)] + replaced_string += highlight_end + replaced_string += line[output + len(search_term):] + replaced_string += "\n" + + return_string += replaced_string + if return_section: + extra_lines = min(total_lines - index, after_lines) + for line_index in range(1, extra_lines): + line_to_include = lines[index + line_index] + if line_to_include.lower().find(search_term) != -1: + break + return_string += line_to_include + "\n" + return_string += "-"*70 + "\n" + + return return_string + + +def findall(s, p): + """ + Yields all the positions of the pattern p in the string s. + """ + i = s.lower().find(p) + while i != -1: + yield i + i = s.lower().find(p, i+1) \ No newline at end of file diff --git a/mcstasscript/helper/mcstas_objects.py b/mcstasscript/helper/mcstas_objects.py new file mode 100644 index 00000000..20b00aaa --- /dev/null +++ b/mcstasscript/helper/mcstas_objects.py @@ -0,0 +1,1468 @@ +from mcstasscript.helper.formatting import bcolors +from mcstasscript.helper.formatting import is_legal_parameter +from mcstasscript.helper.exceptions import McStasError +from mcstasscript.helper.name_inspector import find_python_variable_name +from mcstasscript.helper.search_statement import SearchStatement, SearchStatementList + +from libpyvinyl.Parameters.Parameter import Parameter + + +def provide_parameter(*args, **kwargs): + """Makes a libpyvinyl parameter object + + Examples + -------- + + Creates a parameter with name wavelength and associated comment + A = provide_parameter("wavelength", comment="wavelength in [AA]") + + Creates a parameter with name A3 and default value + A = provide_parameter("A3", value=30, comment="A3 angle in [deg]") + + Creates a parameter with type string and name sample_name + A = provide_parameter("string", "sample_name") + + Parameters + ---------- + If giving a type: + Positional argument 1: type: str + Type of the parameter, double, int or string + Positional argument 2: name: str + Name of input parameter + + If not giving type + Positional argument 1: name : str + Name of input parameter + + Keyword arguments + value : float, int or str + sets default value of parameter + unit : str + string that describes the unit + comment : str + sets comment displayed next to declaration + options : list or value + list or value of allowed values for this parameter + """ + if len(args) == 0: + # Check all required keyword arguments present + if "name" not in kwargs: + try: + name = find_python_variable_name(error_text="", n_levels=3) + kwargs["name"] = name + except: + raise RuntimeError("Need to provide name, either as first argument" + + ", keyword argument or python variable.") + + provided_name = kwargs["name"] + + provided_type = "" + if "type" in kwargs: + provided_type = kwargs["type"] + + elif len(args) == 1: + if "name" in kwargs: + raise RuntimeError("Only specify name with argument or keyword argument") + provided_name = args[0] + + # Assume default type if not given + provided_type = "" + if "type" in kwargs: + provided_type = kwargs["type"] + + elif len(args) == 2: + if "type" in kwargs: + raise RuntimeError("Only specify type with argument or keyword argument") + provided_type = args[0] + + if "name" in kwargs: + raise RuntimeError("Only specify name with argument or keyword argument") + provided_name = args[1] + + else: + raise RuntimeError("Too many arguments given to parameter") + + if not is_legal_parameter(provided_name): + raise NameError("The given parameter name: \"" + + provided_name + + "\" is not a legal c variable name, " + + " and cannot be used in McStas.") + + allowed_types = {"", "double", "int", "string"} + if provided_type not in allowed_types: + raise RuntimeError("Tried to create parameter of type \"" + + str(provided_type) + + "\" which is not among the allowed types " + + str(allowed_types) + ".") + + comment = "" + if "comment" in kwargs: + if not isinstance(comment, str): + raise RuntimeError("Tried to create a parameter with a " + + "comment that was not a string.") + comment = kwargs["comment"] + + unit = "" + if "unit" in kwargs: + if not isinstance(unit, str): + raise RuntimeError("Unit has to be a string") + unit = kwargs["unit"] + + parameter = Parameter(name=provided_name, unit=unit, comment=comment) + parameter.type = provided_type + + if "options" in kwargs: + parameter.add_option(kwargs["options"], True) + + if "value" in kwargs: + parameter.value = kwargs["value"] + + return parameter + + +def write_parameter(fo, parameter, stop_character): + """ + Writes a parameter object to McStas define section + + Parameters + ---------- + + fo : file object + Open file object to write parameter string to + + parameter : Parameter + Parameter object to be written + + stop_character : str + Character inserted after parameter, usually comma and space + """ + if not isinstance(stop_character, str): + raise RuntimeError("stop_character in write_parameter should be " + + "a string.") + + if parameter.type is None: + # This can happen if parameter given by libpyvinyl directly, infer type + if parameter.value is None: + raise RuntimeError("Need to set parameter '" + parameter.name + + "' before writing instrument.") + + if isinstance(parameter.value, (float, int)): + parameter.type = "double" + elif isinstance(parameter.value, str): + parameter.type = "string" + else: + raise RuntimeError("Parameter '" + parameter.name + "' has value " + + "of type not recognized by McStasScript.") + + if not parameter.type == "": + fo.write(f"{parameter.type} {parameter.name}") + else: + fo.write(parameter.name) + + if parameter.unit != 'dimensionless': + fo.write(f'("{parameter.unit}")') + + if parameter.value is not None: + if isinstance(parameter.value, int): + fo.write(f" = {parameter.value:d}") + else: + # let Python figure out how to best represent a floating point value; %G truncates + # and f"{x}" is equivalent to "%s" % str(x) + fo.write(f" = {parameter.value}") + fo.write(stop_character) + + if parameter.comment is None or parameter.comment == "": + c_comment = "" + else: + c_comment = "// " + parameter.comment + + fo.write(c_comment) + fo.write("\n") + + +class DeclareVariable: + """ + Class describing a declared variable in McStas instrument + + McStas parameters are declared in declare section with c syntax. + This class is initialized with type, name. Using keyword + arguments, the variable can become an array and have its initial + value set. + Can also be used as a user variable in uservars (McStas 3.0) + + Attributes + ---------- + type : str + McStas type to declare: Double, Int, String + + name : str + Name of variable + + value : any + Initial value of variable, converted to string + + comment : str + Comment displayed next to the declaration, could contain units + + vector : int + 0 if a single value is given, otherwise contains the length + + Methods + ------- + write_line(fo) + Writes a line to text file fo declaring the parameter in c + """ + def __init__(self, type, name=None, **kwargs): + """ + Initializing mcstas declare variable or user variable object + + Examples + -------- + + Creates a variable with name A3 and default value + A = DeclareVariable("double", "A3", value=30) + + Creates a variable with type integer and name A + A = DeclareVariable("int") + + Creates a variable with type integer and name sample_number + A = DeclareVariable("int", "sample_number") + + Creates an array variable called m_values + A = DeclareVariable("double", "m_values", array=3, + value=[2, 2.5, 2]) + + Parameters + ---------- + type : str + Type of the parameter, double, int or string + + name : str + Name of input parameter + + Keyword arguments + array : int + length of array to be allocated, 0 if single value + + value : any + sets initial value of parameter, + can be a list with length matching array + + comment : str + sets comment displayed next to declaration + """ + + self.type = type + if not isinstance(self.type, str): + raise RuntimeError("Given type of DeclareVariable should be a " + + "string.") + + if name is None: + error_text = ("When using automatic assignment of name, the call" + " need to assign it to a variable name") + name = find_python_variable_name(error_text=error_text, n_levels=3) + + self.name = str(name) + + par_name = self.name + if "*" in par_name[0]: + # Remove any number of prefixed *, indicating variable is a pointer + par_name = par_name.split("*")[-1] + elif "&" in par_name[0]: + # Remove the first & indicating the variable is an address + par_name = par_name[1:] + + if not is_legal_parameter(par_name): + raise NameError("The given parameter name: \"" + + self.name + + "\" is not a legal c variable name, " + + " and cannot be used in McStas.") + + self.value = "" + if "value" in kwargs: + self.value = kwargs["value"] + + self.vector = 0 + if "array" in kwargs: + self.vector = kwargs["array"] + + self.comment = "" + if "comment" in kwargs: + self.comment = " // " + kwargs["comment"] + + def write_line(self, fo): + """ + Writes line declaring variable to file fo + + Parameters + ---------- + fo : file object + File the line will be written to + """ + + if self.value == "" and self.vector == 0: + fo.write(f"{self.type} {self.name};{self.comment}") + if self.value != "" and self.vector == 0: + if self.type == "int": + fo.write(f"{self.type} {self.name} = {self.value:d};{self.comment}") + else: + # let Python handle float->str conversion + fo.write(f"{self.type} {self.name} = {self.value};{self.comment}") + if self.value == "" and self.vector != 0: + fo.write(f"{self.type} {self.name}[{self.vector:d}];{self.comment}") + if self.value != "" and self.vector != 0: + if isinstance(self.value, str): + fo.write(f"{self.type} {self.name}[{self.vector:d}] = {self.value};{self.comment}") + else: + # list of values + fo.write(f"{self.type} {self.name}[{self.vector:d}] = {{" + + ",".join([f"{value}" for value in self.value]) + + f"}};{self.comment}") + + def __repr__(self): + string = "Declare variable: '" + string += str(self.name) + string += "' of type " + string += str(self.type) + + if self.value != "": + string += " with value: " + string += str(self.value) + + if self.vector != 0: + string += ". Array with length " + string += str(self.vector) + + return string + + +class Component: + """ + A class describing a McStas component to be written to an instrument + + This class is used by the instrument class when setting up + components as dynamic subclasses to this class. Most information + can be given on initialize using keyword arguments, but there are + methods for setting the attributes describing the component. The + class contains both methods to write the component to an instrument + file and methods for printing to the python terminal for checking + the information. The McStas_Instr class creates subclasses from + this class that have attributes for all parameters for the given + component. The component information is read directly from the + component files in the McStas installation. This class is frozen + after __init__ so that no new attributes can be created, which + allows direct feedback to the user if a parameter name is + misspelled. + + Attributes + ---------- + name : str + Name of the component instance in McStas (must be unique) + + component_name : str + Name of the component code to use, e.g. Arm, Guide_gravity, ... + + AT_data : list of 3 floats, default [0, 0, 0] + Position data of the component + + AT_relative : str, default "ABSOLUTE" + Name of former component to use as reference for position + + ROTATED_data : list of 3 floats, default [0, 0, 0] + Rotation data of the component + + ROTATED_relative : str, default "ABSOLUTE" + Name of former component to use as reference for position + + WHEN : str, default "" + String with logical c expression x for when component is active + + EXTEND : str, default "" + c code for McStas EXTEND section + + GROUP : str, default "" + Name of group the component should belong to + + JUMP : str, default "" + String describing use of JUMP, need to contain all after "JUMP" + + SPLIT : int, default 0 (disabled) + Integer setting SPLIT, splitting the neutron before this component + + c_code_before : str, default "" + C code inserted before the component + + c_code_after : str, default "" + C code inserted after the component + + component_parameters : dict + Parameters to be used with component in dictionary + + comment : str, default "" + Comment inserted before the component as an explanation + + __isfrozen : bool + If true no new attributes can be created, when false they can + + Methods + ------- + set_AT(at_list, RELATIVE) + Sets AT_data, can set AT_relative using keyword + + set_AT_RELATIVE(relative) + Can set RELATIVE for position + + set_ROTATED(rotated_list, RELATIVE) + Sets ROTATED_data, can set ROTATED_relative using keyword + + set_ROTATED_RELATIVE(relative) + Can set RELATIVE for rotation + + set_RELATIVE(relative_name) + Set both AT_relative and ROTATED_relative to relative_name + + set_parameters(dict_input) + Adds dictionary entries to parameter dictionary + + set_WHEN(string) + Sets WHEN string + + set_SPLIT(value) + Sets SPLIT value, a value of 0 disables SPLIT + + set_GROUP(string) + Sets GROUP name + + set_JUMP(string) + Sets JUMP string + + append_EXTEND(string) + Append string to EXTEND string + + set_c_code_before(string) + Sets c code to be inserted before component + + set_c_code_before(string) + Sets c code to be inserted after component + + set_comment(string) + Sets comment for component + + write_component(fo) + Writes component code to instrument file + + show_parameters() + Prints current component state with all parameters + + print_long() + Prints basic view of component code (not correct syntax) + + print_long_deprecated() + Prints basic view of component code (obsolete) + + print_short(**kwargs) + Prints short description, used in print_components + + set_keyword_input(**kwargs) + Handle keyword arguments during initialize + + __setattr__(key, value) + Overwriting __setattr__ to implement ability to freeze + + _freeze() + Freeze the class so no new attributes can be defined + + _unfreeze() + Unfreeze the class so new attributes can be defined again + """ + + __isfrozen = False # When frozen, no new attributes allowed + + def __init__(self, instance_name, component_name, AT=None, + AT_RELATIVE=None, ROTATED=None, ROTATED_RELATIVE=None, + RELATIVE=None, WHEN=None, EXTEND=None, GROUP=None, + JUMP=None, SPLIT=None, comment=None, c_code_before=None, + c_code_after=None, save_parameters=False): + """ + Initializes McStas component with specified name and component + + Parameters + ---------- + instance_name : str + name of the instance of the component + + component_name : str + name of the component type e.g. Arm, Guide_gravity, ... + + keyword arguments: + AT : list of 3 floats, default [0, 0, 0] + Sets AT_data describing position of component + + AT_RELATIVE : str, default "ABSOLUTE" + sets AT_relative, describing position reference + + ROTATED : list of 3 floats, default [0, 0, 0] + Sets ROTATED_data, describing rotation of component + + ROTATED_RELATIVE : str, default "ABSOLUTE" + Sets ROTATED_relative, sets reference for rotation + + RELATIVE : str + Sets both AT_relative and ROTATED_relative + + WHEN : str, default "" + Sets WHEN string, should contain logical c expression + + EXTEND : str, default "" + Sets initial EXTEND string, should contain c code + + GROUP : str, default "" + Sets name of group the component should belong to + + JUMP : str, default "" + Sets JUMP str + + SPLIT : int, default 0 (disabled) + Sets SPLIT value + + comment: str, default "" + Sets comment string + + c_code_before: str, default "" + Sets c code before component + + c_code_after: str, default "" + Sets c code after component + """ + + # Allow addition of attributes in init + self._unfreeze() + + self.name = instance_name + self.component_name = component_name + + # initialize McStas information + self.AT_data = [0, 0, 0] + self.AT_relative = "ABSOLUTE" + self.ROTATED_specified = False + self.ROTATED_data = [0, 0, 0] + self.ROTATED_relative = "ABSOLUTE" + self.WHEN = "" + self.EXTEND = "" + self.GROUP = "" + self.JUMP = "" + self.SPLIT = 0 + self.comment = "" + self.c_code_before = "" + self.c_code_after = "" + self.search_statement_list = SearchStatementList() + self.save_parameters = save_parameters + + # references to component names + self.AT_reference = None + self.ROTATED_reference = None + + # If any keywords are set in kwargs, update these + self.set_keyword_input(AT=AT, AT_RELATIVE=AT_RELATIVE, ROTATED=ROTATED, + ROTATED_RELATIVE=ROTATED_RELATIVE, + RELATIVE=RELATIVE, WHEN=WHEN, EXTEND=EXTEND, + GROUP=GROUP, JUMP=JUMP, SPLIT=SPLIT, + comment=comment, c_code_before=c_code_before, + c_code_after=c_code_after) + + """ + Could store an option for whether this component should be + printed in instrument file or in a separate file which would + then be included. + """ + + # Do not allow addition of attributes after init + self._freeze() + + def set_keyword_input(self, AT=None, AT_RELATIVE=None, ROTATED=None, + ROTATED_RELATIVE=None, RELATIVE=None, WHEN=None, + EXTEND=None, GROUP=None, JUMP=None, SPLIT=None, + comment=None, c_code_before=None, c_code_after=None, + save_parameters=None): + # Allow addition of attributes in init + self._unfreeze() + + if AT is not None: + self.set_AT(AT) + + if AT_RELATIVE is not None: + self.set_AT_RELATIVE(AT_RELATIVE) + + self.ROTATED_specified = False + if ROTATED is not None: + self.set_ROTATED(ROTATED) + + if ROTATED_RELATIVE is not None: + self.set_ROTATED_RELATIVE(ROTATED_RELATIVE) + + if RELATIVE is not None: + self.set_RELATIVE(RELATIVE) + + if WHEN is not None: + self.set_WHEN(WHEN) + + if EXTEND is not None: + self.append_EXTEND(EXTEND) + + if GROUP is not None: + self.set_GROUP(GROUP) + + if JUMP is not None: + self.set_JUMP(JUMP) + + if SPLIT is not None: + self.set_SPLIT(SPLIT) + + if comment is not None: + self.set_comment(comment) + + if c_code_before is not None: + self.set_c_code_before(c_code_before) + + if c_code_after is not None: + self.set_c_code_after(c_code_after) + + def __setattr__(self, key, value): + if self.__isfrozen and not hasattr(self, key): + raise AttributeError("No parameter called '" + + key + + "' in component named " + + self.name + + " of component type " + + self.component_name + + ".") + object.__setattr__(self, key, value) + + def _freeze(self): + self.__isfrozen = True + + def _unfreeze(self): + self.__isfrozen = False + + def set_AT(self, at_list, RELATIVE=None): + """ + Method for setting position of component + + Sets the position of the component using provided length 3 list as a + vector. If only a float is given, it is considered along the beam + direction, [0, 0, z]. The RELATIVE keyword is used to specify in + relation to what the position is given, and can take either a string + with a component name or a Component object. + + Parameters + ---------- + at_list : List of 3 floats or float + Position of component relative to reference component + + keyword arguments: + RELATIVE : str + Sets reference component for position + """ + if isinstance(at_list, (int, float, str)): + at_list = [0, 0, at_list] + + if not isinstance(at_list, list): + raise RuntimeError("set_AT should be given either a list or " + + "float, but received " + + str(type(at_list))) + + if len(at_list) != 3: + raise RuntimeError("Position data given to set_AT should " + + "either be of length 3 or just a float.") + + # If parameter objects given, take their name instead + for index, element in enumerate(at_list): + if isinstance(element, (Parameter, DeclareVariable)): + at_list[index] = element.name + + self.AT_data = at_list + if RELATIVE is not None: + self.set_AT_RELATIVE(RELATIVE) + + def set_AT_RELATIVE(self, relative): + """ + Sets AT RELATIVE with string or Component instance + + Set relative which becomes the reference for this components position, + it is possible to use a string that match another component name or + use a Component object where the name is used as the reference. + + Parameters + ---------- + + relative : str or Component object + Used as reference for component position + """ + + # Extract name if Component instance is given + if isinstance(relative, Component): + relative = relative.name + elif not isinstance(relative, str): + raise ValueError("Relative must be either string or " + + "Component object.") + + # Set AT relative + if relative == "ABSOLUTE": + self.AT_relative = "ABSOLUTE" + self.AT_reference = None + else: + self.AT_relative = "RELATIVE " + relative + self.AT_reference = relative + + def set_ROTATED(self, rotated_list, RELATIVE=None): + """ + Method for setting rotation of component + + Parameters + ---------- + rotated_list : List of 3 floats + Rotation of component relative to reference component + + keyword arguments: + RELATIVE : str + Sets reference component for rotation + """ + if not isinstance(rotated_list, list): + raise RuntimeError("set_ROTATED should be given a list " + + " but received " + + str(type(rotated_list))) + + if len(rotated_list) != 3: + raise RuntimeError("Rotation data given to set_ROTATED should " + + "be of length 3.") + + # If parameter objects given, take their name instead + for index, element in enumerate(rotated_list): + if isinstance(element, (Parameter, DeclareVariable)): + rotated_list[index] = element.name + + self.ROTATED_data = rotated_list + self.ROTATED_specified = True + if RELATIVE is not None: + self.set_ROTATED_RELATIVE(RELATIVE) + + def set_ROTATED_RELATIVE(self, relative): + """ + Sets ROTATED RELATIVE with string or Component instance + + Set relative which becomes the reference for this components rotation, + it is possible to use a string that match another component name or + use a Component object where the name is used as the reference. + + Parameters + ---------- + + relative : str or Component object + Used as reference for component rotation + """ + + self.ROTATED_specified = True + # Extract name if a Component instance is given + if isinstance(relative, Component): + relative = relative.name + elif not isinstance(relative, str): + raise ValueError("Relative must be either string or " + + "Component object.") + + # Set ROTATED relative + if relative == "ABSOLUTE": + self.ROTATED_relative = "ABSOLUTE" + self.ROTATED_reference = None + else: + self.ROTATED_relative = "RELATIVE " + relative + self.ROTATED_reference = relative + + def set_RELATIVE(self, relative): + """ + Method for setting reference of component position and rotation + + Input can be either a string matching an earlier component or a + Component object. + + Parameters + ---------- + relative : str + Reference component for position and rotation + """ + # Extract name if a Component instance is given + if isinstance(relative, Component): + relative = relative.name + elif not isinstance(relative, str): + raise ValueError("Relative must be either string or " + + "Component object.") + + if relative == "ABSOLUTE": + self.AT_relative = "ABSOLUTE" + self.AT_reference = None + self.ROTATED_relative = "ABSOLUTE" + self.ROTATED_reference = None + else: + self.AT_relative = "RELATIVE " + relative + self.AT_reference = relative + self.ROTATED_relative = "RELATIVE " + relative + self.ROTATED_reference = relative + + def set_parameters(self, args_as_dict=None, **kwargs): + """ + Set Component parameters from dictionary input or keyword arguments + + Relies on attributes added when McCode_Instr creates a subclass from + the Component class where each component parameter is added as an + attribute. + + An error is raised if trying to set a parameter that does not exist + + Parameters + ---------- + args_as_dict : dict + Parameters names and their values as dictionary + """ + if args_as_dict is not None: + parameter_dict = args_as_dict + else: + parameter_dict = kwargs + + for key, val in parameter_dict.items(): + if not hasattr(self, key): + raise NameError("No parameter called " + + key + + " in component named " + + self.name + + " of component type " + + self.component_name + + ".") + else: + setattr(self, key, val) + + def set_WHEN(self, string): + """ + Method for setting WHEN c expression of this component + + Parameters + ---------- + WHEN : str + Sets WHEN c expression for named McStas component + """ + if not isinstance(string, str): + raise RuntimeError("set_WHEN expect a string, but was " + + "given " + str(type(string))) + self.WHEN = "WHEN (" + string + ")" + + def set_GROUP(self, string): + """ + Method for setting GROUP keyword of this component + + Parameters + ---------- + GROUP : str + Sets GROUP name for named McStas component + """ + if not isinstance(string, str): + raise RuntimeError("set_GROUP expect a string, but was " + + "given " + str(type(string))) + self.GROUP = string + + def set_JUMP(self, string): + """ + Method for setting JUMP expression of this component + + Should contain all code needed after JUMP + + Parameters + ---------- + JUMP : str + Sets JUMP expression for named McStas component + """ + if not isinstance(string, str): + raise RuntimeError("set_JUMP expect a string, but was " + + "given " + str(type(string))) + self.JUMP = string + + def set_SPLIT(self, value): + """ + Method for setting SPLIT value of this component + + Parameters + ---------- + SPLIT : int or str + Sets SPLIT value for named McStas component + """ + if not isinstance(value, (int, str)): + raise RuntimeError("set_SPLIT expect a integer or string, but " + + "was given " + str(type(value))) + + if isinstance(value, int): + if value < 0: + raise RuntimeError("set_SPLIT got a negative value, this is " + + "meaningless, has to be a " + + "positive value.") + + self.SPLIT = value + + def append_EXTEND(self, string): + """ + Method for adding line of c to EXTEND section of this component + + Parameters + ---------- + EXTEND : str + Line of c code added to EXTEND section of named component + """ + if not isinstance(string, str): + raise RuntimeError("append_EXTEND expect a string, but was " + + "given " + str(type(string))) + self.EXTEND = self.EXTEND + string + "\n" + + def set_comment(self, string): + """ + Sets a comment displayed before the component in written files + + Parameters + ---------- + string : str + Comment string + """ + if not isinstance(string, str): + raise RuntimeError("set_comment expect a string, but was " + + "given " + str(type(string))) + self.comment = string + + def set_c_code_before(self, string): + """ + Method for setting c code before this component + + Parameters + ---------- + code : str + Code to be pasted before component + """ + if not isinstance(string, str): + raise RuntimeError("set_c_code_before expect a string, but was " + + "given " + str(type(string))) + self.c_code_before = string + + def set_c_code_after(self, string): + """ + Method for setting c code after this component + + Parameters + ---------- + code : str + Code to be pasted after component + """ + if not isinstance(string, str): + raise RuntimeError("set_c_code_after expect a string, but was " + + "given " + str(type(string))) + self.c_code_after = string + + def set_save_parameters(self, value): + if value: + self.save_parameters = True + else: + self.save_parameters = False + + def add_search(self, statement, SHELL=False): + """ + Adds a search statement to the component + + The search line can be used to tell McStas to search for files in + additional locations. Double quotes are added. + + Parameters + ---------- + statement : str + The search statement + + SHELL : bool (default False) + if True, shell keyword is added + """ + + self.search_statement_list.add_statement(SearchStatement(statement, SHELL=SHELL)) + + def clear_search(self): + """ + Clears the component of all search statements + """ + + self.search_statement_list.clear() + + def show_search(self): + """ + Shows all search statements of component + """ + + print(self.search_statement_list) + + def write_component(self, fo, instrument_search=None): + """ + Method that writes component to file + + Relies on attributes added when McStas_Instr creates a subclass + based on the component class. + + """ + parameters_per_line = 2 + # Could use character limit on lines instead + parameters_written = 0 # internal parameter + + save_parameter_string = "" + + if len(self.c_code_before) > 0: + explanation = "From component named " + self.name + fo.write("%s // %s\n" % (str(self.c_code_before), explanation)) + fo.write("\n") + + # Write comment if present + if len(self.comment) > 1: + fo.write(f"// {self.comment}\n") + + # Write search statements + self.search_statement_list.write(fo) + + # Add search statement for instrument if supplied + if instrument_search is not None: + instrument_search.write(fo) + + if self.SPLIT != 0: + fo.write("SPLIT " + str(self.SPLIT) + " ") + + # Write component name and component type + fo.write("COMPONENT %s = %s(" % (self.name, self.component_name)) + + component_parameters = {} + for key in self.parameter_names: + val = getattr(self, key) + if val is None: + if self.parameter_defaults[key] is None: + raise NameError("Required parameter named " + + key + + " in component named " + + self.name + + " not set.") + else: + continue + elif isinstance(val, (Parameter, DeclareVariable)): + # Extract the parameter name + val = val.name + + component_parameters[key] = val + + number_of_parameters = len(component_parameters) + + if number_of_parameters == 0: + fo.write(")\n") # If there are no parameters, close immediately + else: + fo.write("\n") # If there are parameters, start a new line + + for key, val in component_parameters.items(): + fo.write(f" {key} = {val}") + parameters_written = parameters_written + 1 + if parameters_written < number_of_parameters: + fo.write(",") # Comma between parameters + if parameters_written % parameters_per_line == 0: + fo.write("\n") + else: + fo.write(")\n") # End paranthesis after last parameter + + # Optional WHEN section + if not self.WHEN == "": + fo.write(f"{self.WHEN}\n") + + # Write AT and ROTATED section + fo.write(f"AT ({self.AT_data[0]}, {self.AT_data[1]}, {self.AT_data[2]})") + fo.write(f" {self.AT_relative}\n") + + if self.save_parameters: + save_parameter_string += " %s\n" % self.AT_relative + + if self.ROTATED_specified: + fo.write(f"ROTATED ({self.ROTATED_data[0]}, {self.ROTATED_data[1]}, {self.ROTATED_data[2]})") + fo.write(f" {self.ROTATED_relative}\n") + + if not self.GROUP == "": + fo.write(f"GROUP {self.GROUP}\n") + + # Optional EXTEND section + if not self.EXTEND == "": + fo.write(f"EXTEND %{{\n{self.EXTEND}%}}\n") # EXTEND should have \n, {{ and }} to print one of each + + if not self.JUMP == "": + fo.write(f"JUMP {self.JUMP}\n") + + if len(self.c_code_after) > 0: + fo.write(f"\n{self.c_code_after} // From component named {self.name}\n") + + # Leave a new line between components for readability + fo.write("\n") + + def make_write_string(self): + string = "" + + string += f'fprintf(file, "COMPONENT {self.name} = {self.component_name}\\n");\n' + + component_parameters = {} + for key in self.parameter_names: + val = getattr(self, key) + if val is None: + if self.parameter_defaults[key] is None: + raise NameError("Required parameter named " + + key + + " in component named " + + self.name + + " not set.") + else: + continue + elif isinstance(val, (Parameter, DeclareVariable)): + # Extract the parameter name + val = val.name + + component_parameters[key] = val + + for key, val in component_parameters.items(): + par_type = self.parameter_types[key] # from component reader + + cast = "" + if par_type == "" or par_type == "double": + type_string = "%lf" + cast = "(double)" + elif par_type == "int": + type_string = "%d" + cast = "(int)" + elif par_type == "string": + type_string = "%s" + else: + raise ValueError("Unknown parameter type: " + par_type) + + string += f'fprintf(file, "{key}={type_string}\\n", {cast} {val});\n' + + string += f'fprintf(file, "AT (%lf,%lf,%lf) {self.AT_relative}\\n",' + string += "(double) " + str(self.AT_data[0]) + "," + string += "(double) " + str(self.AT_data[1]) + "," + string += "(double) " + str(self.AT_data[2]) + ");\n" + + if self.ROTATED_specified: + string += f'fprintf(file, "ROTATED (%lf,%lf,%lf) {self.ROTATED_relative}\\n",' + string += "(double) " + str(self.ROTATED_data[0]) + "," + string += "(double) " + str(self.ROTATED_data[1]) + "," + string += "(double) " + str(self.ROTATED_data[2]) + ");\n" + + return string + + def __str__(self): + """ + Returns string of information about the component + + Includes information on required parameters if they are not yet + specified. Information on the components are added when the + class is used as a superclass for classes describing each + McStas component. + """ + string = "" + + if len(self.c_code_before) > 1: + string += self.c_code_before + "\n" + string += self.search_statement_list.make_string() + if len(self.comment) > 1: + string += "// " + self.comment + "\n" + if self.SPLIT != 0: + string += "SPLIT " + str(self.SPLIT) + " " + string += "COMPONENT " + str(self.name) + string += " = " + str(self.component_name) + "(" + + last_par_name = "" + for key in self.parameter_names: + if getattr(self, key) is not None: + last_par_name = key + + for key in self.parameter_names: + val = getattr(self, key) + parameter_name = bcolors.BOLD + key + bcolors.ENDC + if val is not None: + unit = "" + if key in self.parameter_units: + unit += " // [" + self.parameter_units[key] + "]" + if isinstance(val, Parameter): + #val_string = val.print_line() # too long + val_string = val.name + elif isinstance(val, DeclareVariable): + val_string = val.name + else: + val_string = str(val) + + value = (bcolors.BOLD + + bcolors.OKGREEN + + val_string + + bcolors.ENDC + + bcolors.ENDC) + + string += "\n" + string += " " + parameter_name + string += " = " + value + if key != last_par_name: + string += "," + string += unit + + else: + if self.parameter_defaults[key] is None: + string += "\n" + string += " " + parameter_name + string += bcolors.FAIL + string += " : Required parameter not yet specified" + string += bcolors.ENDC + + string += "\n)" + if not self.WHEN == "": + string += " " + self.WHEN + string += "\n" + string += f"AT {tuple(self.AT_data)} " + #"AT (" + str(self.AT_data[0]) + ", " + str(self.AT_data[1]) + ", " + str(self.AT_data[2]) + ") " + string += str(self.AT_relative) + "\n" + if self.ROTATED_specified: + string += f"ROTATED {tuple(self.ROTATED_data)}" + string += " " + self.ROTATED_relative + "\n" + if not self.GROUP == "": + string += "GROUP " + self.GROUP + "\n" + if not self.EXTEND == "": + string += "EXTEND %{" + "\n" + string += self.EXTEND + "%}" + "\n" + if not self.JUMP == "": + string += "JUMP " + self.JUMP + "\n" + if len(self.c_code_after) > 1: + string += self.c_code_after + "\n" + + return string.strip() + + def print_long(self): + """ + Prints information about the component + + Includes information on required parameters if they are not yet + specified. Information on the components are added when the + class is used as a superclass for classes describing each + McStas component. + """ + print(self.__str__()) + + def __repr__(self): + return self.__str__() + + def print_short(self, longest_name=None): + """Prints short description of component to list print""" + if self.ROTATED_specified: + print_rotate_rel = self.ROTATED_relative + else: + print_rotate_rel = self.AT_relative + + if longest_name is not None: + number_of_spaces = 3+longest_name-len(self.name) + print(str(self.name) + " "*number_of_spaces, end='') + print(str(self.component_name), + "\tAT", self.AT_data, self.AT_relative, + "ROTATED", self.ROTATED_data, print_rotate_rel) + else: + print(str(self.name), "=", str(self.component_name), + "\tAT", self.AT_data, self.AT_relative, + "ROTATED", self.ROTATED_data, print_rotate_rel) + + def show_parameters(self, line_length=None): + """ + Shows available parameters and their defaults for the component + + Any value specified is not reflected in this view. The + additional attributes defined when McStas_Instr creates + subclasses for the individual components are required to run + this method. + """ + + # line_limit created in _create_component_instance on instr + if line_length is None: + line_length = self.line_limit + + # Minimum reasonable line length + if line_length < 74: + line_length = 74 + + print(" ___ Help " + + self.component_name + " " + + (line_length - 11 - len(self.component_name))*"_") + print("|" + + bcolors.BOLD + "optional parameter" + bcolors.ENDC + "|" + + bcolors.BOLD + + bcolors.UNDERLINE + "required parameter" + bcolors.ENDC + + bcolors.ENDC + "|" + + bcolors.BOLD + + bcolors.OKBLUE + "default value" + bcolors.ENDC + + bcolors.ENDC + "|" + + bcolors.BOLD + + bcolors.OKGREEN + "user specified value" + bcolors.ENDC + + bcolors.ENDC + "|") + + for parameter in self.parameter_names: + characters_before_comment = 4 + unit = "" + if parameter in self.parameter_units: + unit = " [" + self.parameter_units[parameter] + "]" + characters_before_comment += len(unit) + comment = "" + if parameter in self.parameter_comments: + if not self.parameter_comments[parameter] == "": + comment = " // " + self.parameter_comments[parameter] + + parameter_name = bcolors.BOLD + parameter + bcolors.ENDC + characters_before_comment += len(parameter) + + value = "" + characters_from_value = 0 + if self.parameter_defaults[parameter] is None: + parameter_name = (bcolors.UNDERLINE + + parameter_name + + bcolors.ENDC) + else: + this_default = str(self.parameter_defaults[parameter]) + value = (" = " + + bcolors.BOLD + + bcolors.OKBLUE + + this_default + + bcolors.ENDC + + bcolors.ENDC) + characters_from_value = 3 + len(this_default) + + if getattr(self, parameter) is not None: + parameter_input = getattr(self, parameter) + # Use name when an par/var object is found + if isinstance(parameter_input, (Parameter, DeclareVariable)): + parameter_input = parameter_input.name + + this_set_value = str(parameter_input) + value = (" = " + + bcolors.BOLD + + bcolors.OKGREEN + + this_set_value + + bcolors.ENDC + + bcolors.ENDC) + characters_from_value = 3 + len(this_set_value) + characters_before_comment += characters_from_value + + print(parameter_name + value + unit, end="") + + if characters_before_comment + len(comment) < line_length: + print(comment) + else: + length_for_comment = line_length - characters_before_comment + # Split comment into several lines + original_comment = comment + words = comment.split(" ") + words_left = len(words) + last_index = 0 + current_index = 0 + comment = "" + iterations = 0 + max_iterations = 50 + while(words_left > 0): + iterations += 1 + if iterations > max_iterations: + # Something went long, print on one line + break + + line_left = length_for_comment + + while(line_left > 0): + if current_index >= len(words): + current_index = len(words) + 1 + break + line_left -= len(str(words[current_index])) + 1 + current_index += 1 + + current_index -= 1 + for word in words[last_index:current_index]: + comment += word + " " + words_left = len(words) - current_index + if words_left > 0: + comment += "\n" + " "*characters_before_comment + last_index = current_index + + if not iterations == max_iterations + 1: + print(comment) + else: + print(str(original_comment)) + + print(line_length*"-") + + def show_parameters_simple(self): + """ + Shows available parameters and their defaults for the component + + Any value specified is not reflected in this view. The + additional attributes defined when McStas_Instr creates + subclasses for the individual components are required to run + this method. + """ + print("---- Help " + self.component_name + " -----") + for parameter in self.parameter_names: + value = "" + if self.parameter_defaults[parameter] is not None: + value = " = " + str(self.parameter_defaults[parameter]) + if getattr(self, parameter) is not None: + value = " = " + str(getattr(self, parameter)) + + unit = "" + if parameter in self.parameter_units: + unit = " [" + self.parameter_units[parameter] + "]" + + comment = "" + if parameter in self.parameter_comments: + if self.parameter_comments[parameter] != "": + comment = " // " + self.parameter_comments[parameter] + + print(parameter + value + unit + comment) + + print("----------" + "-"*len(self.component_name) + "------") + + def check_parameters(self, instrument_variables): + """ + Checks the current component parameters are in given name list + + The name list will typically be a list of instrument parameters and + declared variables. + + Parameters + ---------- + + instrument_variables : list of str + List of instrument variable names + """ + McStas_constants = ["DEG2RAD", "RAD2DEG", "MIN2RAD", "RAD2MIN", "V2K", + "K2V", "VS2E", "SE2V", "FWHM2RMS", "RMS2FWHM", + "MNEUTRON" "HBAR", "PI", "FLT_MAX"] + + # parameter_names attribute added in _create_component_instance + for par_name in self.parameter_names: + par = getattr(self, par_name) + if isinstance(par, str): + if not par.isalpha(): + # Allow numbers and strings with math symbols + # They may have errors, but can't be easily checked + continue + + if par in McStas_constants: + # Allow McStas defined constants + continue + + if par in instrument_variables: + # Allow variables on given whitelist + continue + + # If none of the above approves the variable, raise error + raise McStasError("Variable not recognized.\n" + f"Unrecognized variable '{par}' " + "assigned to component parameter " + f"'{par_name}' in component " + f"'{self.name}' of type " + f"'{self.component_name}'.\n" + "This check can be skipped with " + "settings(checks=False)") diff --git a/mcstasscript/helper/name_inspector.py b/mcstasscript/helper/name_inspector.py new file mode 100644 index 00000000..ee8778b7 --- /dev/null +++ b/mcstasscript/helper/name_inspector.py @@ -0,0 +1,27 @@ +def find_python_variable_name(error_text, n_levels=1): + """ + Finds call in stack n_levels above and gets variable name + + This function is used to avoid having to manually specify a name + in the method or function inputs. For example with a parameters: + + wavelength = instrument.add_parameter("wavelength", value=3) + + can be equivalent to: + + wavelength = instrument.add_parameter(value=3) + + When this function is used to deduct the appropriate name. + The n_levels is the number of function calls between the user + call and this function, for each level of nesting add another + level. An error_text should be given for cases where it was not + possible to extract the variable name. + """ + + import inspect + + stack = inspect.stack() + calling_string = ' '.join(stack[n_levels][4]) + if '=' not in calling_string: + raise NameError(error_text) + return calling_string.split('=')[0].strip() \ No newline at end of file diff --git a/mcstasscript/helper/plot_helper.py b/mcstasscript/helper/plot_helper.py new file mode 100644 index 00000000..83e98add --- /dev/null +++ b/mcstasscript/helper/plot_helper.py @@ -0,0 +1,304 @@ +import copy + +import numpy as np +import matplotlib +import matplotlib.pyplot as plt + +from matplotlib.ticker import MaxNLocator +from matplotlib.colors import BoundaryNorm + +from mcstasscript.data.data import McStasData +from mcstasscript.data.data import McStasDataEvent + + +def remove_eventdata(data_list, verbose=True): + """ + Removes event data from a list, useful as these can't be plotted + """ + reduced_data_list = [] + skipped_names = [] + for element in data_list: + if not isinstance(element, McStasDataEvent): + reduced_data_list.append(element) + else: + skipped_names.append(element.metadata.component_name) + + if verbose: + for name in skipped_names: + print(f"Skipped plotting {name} as it contains event data.") + + return reduced_data_list + + +def _fmt(x, pos): + """ + Used for nice formatting of powers of 10 when plotting logarithmic + """ + a, b = '{:.2e}'.format(x).split('e') + b = int(b) + if abs(float(a) - 1) < 0.01: + return r'$10^{{{}}}$'.format(b) + else: + return r'${}\cdot 10^{{{}}}$'.format(a, b) + + +def _find_min_max_I(data): + """ + Returns minimum and maximum intensity to plot given dataset + + Uses the plot options embedded in McStasData to determine the proper + minimum and maximum intensity to display in a plot. + + Have to take cut_min and cut_max into account that can cut parts of + the intensity away. When plotting logarithmic, orders_of_mags limits + the orders of magnitude shown. + + Returns tuple of minimum and maximum, when no data is present the + function returns 0, 0. + """ + cut_max = data.plot_options.cut_max # Default 1 + cut_min = data.plot_options.cut_min # Default 0 + + to_plot = data.Intensity + + min_value = to_plot.min() + max_value = to_plot.max() + + if min_value == 0 and max_value == 0: + return 0, 0 + + if not data.plot_options.log: + # Linear, simple case + # Cut top and bottom of data as specified in cut variables + min_value = min_value + (max_value - min_value) * cut_min + max_value = max_value * cut_max + + else: + # Logarithmic, minimum / maximum can not be zero + max_data_value = to_plot.max() + max_value = np.log10(max_data_value * cut_max) + + min_value = np.min(to_plot[np.nonzero(to_plot)]) + min_value = min_value + (max_data_value - min_value) * cut_min + min_value = np.log10(min_value) + + # Take orders_of_mag into account (max / min in log10) + if max_value - min_value > data.plot_options.orders_of_mag: + min_value = max_value - data.plot_options.orders_of_mag + + # Convert back from log10 + min_value = 10.0 ** min_value + max_value = 10.0 ** max_value + + return min_value, max_value + + +def _plot_fig_ax(data, fig, ax, **kwargs): + """ + Plots the content of a single McStasData object + + Plotting is controlled through options associated with the + McStasData objects. + + When plotting 2D objects, returns the pcolormesh object + """ + + if type(data.metadata.dimension) == int and data.metadata.dimension == 0: + # Can't plot 0D data, show the info + ax.text(0.5, 0.9, data.metadata.title, ha="center") + ax.text(0.5, 0.7, "I: " + str(float(data.Intensity)), ha="center") + ax.text(0.5, 0.5, "E: " + str(float(data.Error)), ha="center") + ax.text(0.5, 0.3, "N: " + str(int(data.Ncount)), ha="center") + ax.axis("off") + + elif type(data.metadata.dimension) == int and data.metadata.dimension != 0: + + x_axis_mult = data.plot_options.x_limit_multiplier + + x = data.xaxis * x_axis_mult + y = data.Intensity + y_err = data.Error + + ax.errorbar(x, y, yerr=y_err) + + ax.set_xlim(data.metadata.limits[0] * x_axis_mult, + data.metadata.limits[1] * x_axis_mult) + + # Add a title + ax.set_title(data.metadata.title) + + # Add axis labels + ax.set_xlabel(data.metadata.xlabel) + ax.set_ylabel(data.metadata.ylabel) + + if data.plot_options.custom_xlim_left: + ax.set_xlim(left=data.plot_options.left_lim) + + if data.plot_options.custom_xlim_right: + ax.set_xlim(right=data.plot_options.right_lim) + + if data.plot_options.log: + ax.set_yscale("log", nonpositive='clip') + + n_non_zero = np.count_nonzero(data.Intensity) + if n_non_zero == 0: + # Plot is empty, return + return + + non_zero = np.nonzero(data.Intensity) + min_value_log = np.log10(min(data.Intensity[non_zero])) + max_value_log = np.log10(max(data.Intensity[non_zero])) + + orders_of_mag = data.plot_options.orders_of_mag + if max_value_log - min_value_log > orders_of_mag: + ax.set_ylim(top=1.1*10.0 ** max_value_log) + ax.set_ylim(bottom=10.0 ** (max_value_log - orders_of_mag)) + + elif len(data.metadata.dimension) == 2: + + min_value, max_value = _find_min_max_I(data) + + if "fixed_minimum_value" in kwargs: + min_value = kwargs["fixed_minimum_value"] + if "fixed_maximum_value" in kwargs: + max_value = kwargs["fixed_maximum_value"] + + # Set the axis + x_axis_mult = data.plot_options.x_limit_multiplier + y_axis_mult = data.plot_options.y_limit_multiplier + + X = np.linspace(data.metadata.limits[0] * x_axis_mult, + data.metadata.limits[1] * x_axis_mult, + data.metadata.dimension[0] + 1) + Y = np.linspace(data.metadata.limits[2] * y_axis_mult, + data.metadata.limits[3] * y_axis_mult, + data.metadata.dimension[1] + 1) + + # Create a meshgrid for both x and y + x, y = np.meshgrid(X, Y) + + # Generate information on necessary colorrange + levels = MaxNLocator(nbins=150).tick_values(min_value, max_value) + + # Select colormap + cmap = copy.copy(plt.get_cmap(data.plot_options.colormap)) + if "no_data_to_black" in kwargs: + if kwargs["no_data_to_black"]: + cmap.set_bad((0, 0, 0)) + + norm = BoundaryNorm(levels, ncolors=cmap.N, clip=True) + + # Empty data, return without cmap or norm + if min_value == 0 and max_value == 0: + levels = MaxNLocator(nbins=150).tick_values(0.001, 1.0) + norm = BoundaryNorm(levels, ncolors=cmap.N, clip=True) + im = ax.pcolormesh(x, y, data.Intensity, cmap=cmap, norm=norm) + + # Plot the data on the meshgrids + elif data.plot_options.log: + color_norm = matplotlib.colors.LogNorm(vmin=min_value, + vmax=max_value) + im = ax.pcolormesh(x, y, data.Intensity, + cmap=cmap, norm=color_norm) + else: + im = ax.pcolormesh(x, y, data.Intensity, cmap=cmap, norm=norm) + + # Add the colorbar + if data.plot_options.show_colorbar: + cax = None + if "colorbar_axes" in kwargs: + cax = kwargs["colorbar_axes"] + + colorbar = fig.colorbar(im, ax=ax, cax=cax, + format=matplotlib.ticker.FuncFormatter(_fmt)) + + if data.metadata.zlabel is not None: + colorbar.set_label(data.metadata.zlabel) + + if "colorbar_axes" in kwargs: + cax.set_aspect(20) + + # Add a title + ax.set_title(data.metadata.title) + + # Add axis labels + ax.set_xlabel(data.metadata.xlabel) + ax.set_ylabel(data.metadata.ylabel) + + if data.plot_options.custom_ylim_top: + ax.set_ylim(top=data.plot_options.top_lim) + + if data.plot_options.custom_ylim_bottom: + ax.set_ylim(bottom=data.plot_options.bottom_lim) + + if data.plot_options.custom_xlim_left: + ax.set_xlim(left=data.plot_options.left_lim) + + if data.plot_options.custom_xlim_right: + ax.set_xlim(right=data.plot_options.right_lim) + + return im + else: + print("Error, dimension not read correctly") + + +def _handle_kwargs(data_list, **kwargs): + """ + Handle kwargs when list of McStasData objects given. + + Returns data_list + + data_list is turned into a list if it isn't already + event data is removed as it can't be plotted directly + + Any kwargs can be given as a list, in that case apply them to given + to the corresponding index. + """ + + if "fontsize" in kwargs: + used_fontsize = kwargs["fontsize"] + else: + used_fontsize = 11 + plt.rcParams.update({'font.size': used_fontsize}) + + if isinstance(data_list, McStasData): + # Only a single element, put it in a list for easier syntax later + data_list = [data_list] + + # Remove event data that can't be plotted in meaningful way + data_list = remove_eventdata(data_list) + + known_plotting_kwargs = ["log", "orders_of_mag", + "top_lim", "bottom_lim", + "left_lim", "right_lim", + "cut_min", "cut_max", + "colormap", "show_colorbar", + "x_axis_multiplier", + "y_axis_multiplier"] + + for option in known_plotting_kwargs: + if option in kwargs: + given_option = kwargs[option] + + if isinstance(given_option, list): + if len(data_list) < len(given_option): + raise ValueError("Keyword argument " + option + " is " + + "given as a list, but this list has " + + "more elements than there are " + + "data sets to be plotted.") + + index = 0 + for per_list_option in given_option: + input_kwarg = {option: per_list_option} + data_list[index].set_plot_options(**input_kwarg) + index += 1 + + else: + for data in data_list: + input_kwarg = {option: given_option} + data.set_plot_options(**input_kwarg) + + # Remove option from kwargs + del kwargs[option] + + return data_list \ No newline at end of file diff --git a/mcstasscript/helper/search_statement.py b/mcstasscript/helper/search_statement.py new file mode 100644 index 00000000..155ad6db --- /dev/null +++ b/mcstasscript/helper/search_statement.py @@ -0,0 +1,102 @@ +class SearchStatement: + def __init__(self, statement, SHELL=False): + """ + A McStas search statement, used either in instrument before component + """ + + self.statement = str(statement) + self.SHELL = SHELL + + def make_string(self): + """ + Generates the search string + """ + if self.SHELL: + shell_part = "SHELL " + else: + shell_part = "" + + if self.statement[0] != '"' and self.statement[-1] != '"': + self.statement = '"' + self.statement + '"' + + return f'SEARCH {shell_part}{self.statement}' + + def write(self, fo): + """ + Writes search string to file + """ + fo.write(self.make_string() + "\n") + + def __repr__(self): + """ + Prints search string + """ + return self.make_string() + + def __EQ__(self, other): + if self.statement == other.statement and self.SHELL == other.SHELL: + return True + + +class SearchStatementList: + def __init__(self): + """ + Keeps a number of search statements together + """ + self.statements = [] + + def add_statement(self, statement): + """ + Add new search statement + """ + if not isinstance(statement, SearchStatement): + raise ValueError("SearchStatementList only supports adding SearchStatement objects.") + + self.statements.append(statement) + + def clear(self): + """ + Clear all search statements + """ + self.statements = [] + + def write(self, fo): + """ + Write search statements to a file + """ + for statement in self.statements: + statement.write(fo) + + def make_string(self): + """ + Makes string with all search statements + """ + string = "" + for statement in self.statements: + string += statement.make_string() + "\n" + + return string + + def __EQ__(self, other): + print("in list EQ") + if len(self.statements) != len(other.statements): + return False + + for index, statement in enumerate(self.statements): + if statement != other.statements[index]: + return False + + return True + + def __repr__(self): + """ + Show search statements with print + """ + if len(self.statements) == 0: + return "No Search statements yet" + + string = "List of SEARCH statements: \n" + for statement in self.statements: + string += " " + statement.make_string() + "\n" + + return string \ No newline at end of file diff --git a/mcstasscript/helper/unpickler.py b/mcstasscript/helper/unpickler.py new file mode 100644 index 00000000..502295ad --- /dev/null +++ b/mcstasscript/helper/unpickler.py @@ -0,0 +1,47 @@ +import pickle + + +class CustomMcStasUnpickler(pickle.Unpickler): + """ + Helps pickle find dynamic classes on users computer, McStas version + + Usage: + pickle_data = CustomUnpickler(open('filename.dill', 'rb')).load() + """ + + def find_class(self, module, name): + if not hasattr(self, "mcstasscript_instr"): + from mcstasscript.interface import instr + + self.mcstasscript_instr = instr.McStas_instr("dummy") + self.component_list = list(self.mcstasscript_instr.component_reader.component_category.keys()) + + if str(module) == 'mcstasscript.interface.instr': + if name in self.component_list: + self.mcstasscript_instr._create_component_instance("dummy", name) + + return super().find_class(module, name) + + +class CustomMcXtraceUnpickler(pickle.Unpickler): + """ + Helps pickle find dynamic classes on users computer, McXtrace version + + Usage: + pickle_data = CustomUnpickler(open('filename.dill', 'rb')).load() + """ + + def find_class(self, module, name): + if not hasattr(self, "mcstasscript_instr"): + from mcstasscript.interface import instr + + self.mcstasscript_instr = instr.McXtrace_instr("dummy") + self.component_list = list(self.mcstasscript_instr.component_reader.component_category.keys()) + + if str(module) == 'mcstasscript.interface.instr': + if name in self.component_list: + self.mcstasscript_instr._create_component_instance("dummy", name) + + return super().find_class(module, name) + + diff --git a/mcstasscript/instr_reader/__init__.py b/mcstasscript/instr_reader/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/instr_reader/control.py b/mcstasscript/instr_reader/control.py new file mode 100644 index 00000000..bcb19b3a --- /dev/null +++ b/mcstasscript/instr_reader/control.py @@ -0,0 +1,236 @@ +import os + +from mcstasscript.interface.instr import McStas_instr +from mcstasscript.instr_reader.read_definition import DefinitionReader +from mcstasscript.instr_reader.read_declare import DeclareReader +from mcstasscript.instr_reader.read_uservars import UservarsReader +from mcstasscript.instr_reader.read_initialize import InitializeReader +from mcstasscript.instr_reader.read_trace import TraceReader +from mcstasscript.instr_reader.read_finally import FinallyReader + + +class InstrumentReader: + """ + This class controls loading of a McStas file as a McStasScript object. + + This is done by reading the McStas file line by line while using the + McStasScript API to load the information into the Instr object. + + Optionally a Python file with the McStasScript commands required to + replicate the McStas instrument can be written to disk. + + Methods + ------- + __init__(filename) + Initializes reading of McStas instrument with given filename + + generate_py_version(product_filename) + Generates a file named product_filename.py that recreates instr + + add_to_instr(Instr) + Inserts information from instr file into McStasScript Instr instance + """ + + def __init__(self, filename): + """ + Initialize the InstrumentReader with a target McStas instrument + file. Use generate_py_version method for writing an eqvivalent + McStasScript python file or the add_to_instr method to load this + instrument file onto a Instr McStasScript object. + """ + + self.filename = filename + self.Instr = None # could set it up to create Instr + self.write_file = False + self.product_filename = "mc_script.py" + self.instr_name = "" + self.file_data = None + self.line_index = 0 + self.file_length = 0 + + def generate_py_version(self, product_filename): + """ + Generate a McStasScript version of the instrument file used for + initialize of the InstrumentReader object. The filename given is + for the generated file. + + One should use this feature with some caution. Look through the + generated McStasScript file and compare some output with the + original insturment file to ensure everything was loaded correctly. + """ + + # Generate dummy instr object + self.Instr = McStas_instr("dummy_object_for_generating_file") + + self.product_filename = product_filename + self.write_file = True + + if os.path.isfile(self.product_filename): + os.remove(self.product_filename) + + self._read_file() + + def add_to_instr(self, Instr): + """ + Add contents of McStas instrument file selected in initialize + to an McStasScript instrument object. + """ + + self.Instr = Instr + self.write_file = False + + self._read_file() + + def _open_file(self): + """ + Internal method that opens the instrument file to be read + """ + + with open(self.filename) as file: + self.file_data = file.readlines() + + self.file_length = len(self.file_data) + self.line_index = 0 + + def _get_next_line(self): + """ + Internalmethod that gets the next line to be read + """ + + line = self.file_data[self.line_index] + self.line_index += 1 + return line + + def _return_line(self): + """ + Internal method that puts line back into stack + """ + + self.line_index -= 1 + + def _read_file(self): + """ + Master method for reading the instrument file. It goes through + the file line by line, and checks which part of the instrument + file it is currently reading. There are separate methods for + reading the individual parts of the instrument file to reduce + clutter. + """ + + # Initialize readers of the different McStas instrument sections + args = [self.Instr, self.write_file, self.product_filename, + self._get_next_line, self._return_line] + self.Definition_reader = DefinitionReader(*args) + self.Declare_reader = DeclareReader(*args) + self.Uservars_reader = UservarsReader(*args) + self.Initialize_reader = InitializeReader(*args) + self.Trace_reader = TraceReader(*args) + self.Finally_reader = FinallyReader(*args) + + # A mode for each type that activates the correct reader function + definition_mode = False + declare_mode = False + uservars_mode = False + initialize_mode = False + trace_mode = False + finally_mode = False + comment_mode = False + any_mode = False + + # check if instrument name has be read from file yet + instr_name_read = False + + self._open_file() + + # for line in self.file_data: + while self.line_index < self.file_length: + + line = self._get_next_line() + + # Find appropriate mode + if line.strip().startswith("DEFINE INSTRUMENT") and not any_mode: + definition_mode = True + any_mode = True + + if line.strip().startswith("DECLARE") and not any_mode: + declare_mode = True + any_mode = True + + if line.strip().startswith("USERVARS") and not any_mode: + uservars_mode = True + any_mode = True + + if (line.strip().startswith("INITIALIZE") or + line.strip().startswith("INITIALISE")) and not any_mode: + initialize_mode = True + any_mode = True + + if line.strip().startswith("TRACE") and not any_mode: + trace_mode = True + any_mode = True + + if line.strip().startswith("FINALLY") and not any_mode: + finally_mode = True + any_mode = True + + if line.strip().startswith("/*"): + comment_mode = True + + # Read with appropriate reader + if definition_mode and not comment_mode: + # Get instrument name + if not instr_name_read: + self.instr_name = line.split("(")[0].strip().split(" ")[-1] + instr_name_read = True + self.update_file_name() + + # Read line from definition + definition_mode = self.Definition_reader.read_definition_line(line) + # When read_definition finds the end, it will return False + any_mode = definition_mode + + if declare_mode and not comment_mode: + # Read line from declare + declare_mode = self.Declare_reader.read_declare_line(line) + # When read_declare finds the end, it will return False + any_mode = declare_mode + + if uservars_mode and not comment_mode: + # Read line from uservars + uservars_mode = self.Uservars_reader.read_uservars_line(line) + # When read_uservars finds the end, it will return False + any_mode = uservars_mode + + if initialize_mode and not comment_mode: + # Read line from initialize + initialize_mode = self.Initialize_reader.read_initialize_line(line) + # When read_initialize finds the end, it will return False + any_mode = initialize_mode + + if trace_mode and not comment_mode: + # Read line from initialize + trace_mode = self.Trace_reader.read_trace_line(line) + # When read_initialize finds the end, it will return False + any_mode = trace_mode + + if finally_mode and not comment_mode: + # Read line from finally + finally_mode = self.Finally_reader.read_finally_line(line) + # When read_finallyfinds the end, it will return False + any_mode = finally_mode + + # Stop comment mode when end of comment block reached + if "*/" in line.strip(): + comment_mode = False + + def update_file_name(self): + """ + Updates filename for reader subclasses + """ + + self.Definition_reader.set_instr_name(self.instr_name) + self.Declare_reader.set_instr_name(self.instr_name) + self.Uservars_reader.set_instr_name(self.instr_name) + self.Initialize_reader.set_instr_name(self.instr_name) + self.Trace_reader.set_instr_name(self.instr_name) + self.Finally_reader.set_instr_name(self.instr_name) diff --git a/mcstasscript/instr_reader/read_declare.py b/mcstasscript/instr_reader/read_declare.py new file mode 100644 index 00000000..305b26e3 --- /dev/null +++ b/mcstasscript/instr_reader/read_declare.py @@ -0,0 +1,284 @@ +from mcstasscript.instr_reader.util import SectionReader + + +class DeclareReader(SectionReader): + """ + Reads the declare section of a McStas instrument file and adds + the found parameters / functions / structs to the McStasScript + Instr instance. The information can also be written to a python + file for reproduction of a McStas instrument. + """ + + def __init__(self, Instr, write_file, product_filename, + get_next_line, return_line): + + super().__init__(Instr, write_file, product_filename, + get_next_line, return_line) + + self.in_declare_function = False + self.in_struct_definition = False + self.bracket_counter = 0 + + def read_declare_line(self, line): + """ + Reads line of instrument declare, returns bolean. If it encounters + the end of the declare section, it returns False, otherwise True. + + The contents of the declare section is written to the McStasScript + Instr object. + """ + + continue_declare = True + + # Remove comments + if "//" in line: + line = line.split("//", 1)[0] + + # Remove %} and signify end if this is found + if "%}" in line: + continue_declare = False + line = line.split("%}", 1)[0] + + if "/*" in line: + line = line.split("/*", 1)[0].strip() + + if self.in_declare_function: + if "{" in line: + self.bracket_counter += 1 + + if "}" in line: + self.bracket_counter -= 1 + + if self.bracket_counter == 0: + self.in_declare_function = False + + self.Instr.append_declare(line) + self._write_declare_line(line) + + # Check for functions + if ("(" in line and ";" not in line and " " in line.strip() + and not self.in_declare_function and "#pragma" not in line): + + # If in function, it will define a block + n_curly_brackets = line.count("{") + n_curly_brackets -= line.count("}") + + while n_curly_brackets != 0 or ("{" not in line): + next_line = self.get_next_line() + line += next_line + + n_curly_brackets = line.count("{") + n_curly_brackets -= line.count("}") + + after_curly_bracket = line.split("}")[-1] + + declare_lines = line.split("\n") + for declare_line in declare_lines: + declare_line = declare_line.rstrip() + declare_line = declare_line.replace('\\n', "\\\\n") + declare_line = declare_line.replace('"', "\\\"") + self.Instr.append_declare(declare_line) + self._write_declare_line(declare_line) + + line = after_curly_bracket + + # Check for struct / function that returns struct + if line.strip().startswith("struct "): + # Can be a function returning struct or struct definition + + # If struct definition, no parenthesis and ; after ) + n_curly_brackets = line.count("{") + n_curly_brackets -= line.count("}") + + # Add lines until end of block found + while n_curly_brackets != 0 or ("{" not in line): + + next_line = self.get_next_line() + line += next_line + + n_curly_brackets = line.count("{") + n_curly_brackets -= line.count("}") + + if "{" in line: + before_curly_bracket = line.split("{", 1)[0] + if "(" in before_curly_bracket and ")" in before_curly_bracket: + # This is a function that returns a struct! + self.in_declare_function = True + + after_curly_bracket = line.split("}")[-1] + + # if not in function, add until ; is found + while ";" not in after_curly_bracket and not self.in_declare_function: + # It is surely a struct, find ; + line += self.get_next_line() + after_curly_bracket = line.split("}")[-1] + + declare_lines = line.split("\n") + for declare_line in declare_lines: + declare_line = declare_line.rstrip() + declare_line = declare_line.replace('\\n', "\\\\n") + declare_line = declare_line.replace('"', "\\\"") + self.Instr.append_declare(declare_line) + self._write_declare_line(declare_line) + + if self.in_declare_function: + line = line.split("}")[-1].strip() + else: + line = line.split(";")[-1].strip() + + # if in function, stop now + self.in_declare_function = False + + # Grab defines and pragmas + if line.strip().startswith("#define") or line.strip().startswith("#pragma"): + # Include define statements as declare append + line = line.rstrip() + line = line.replace('\\n', "\\\\n") + line = line.replace('"', "\\\"") + self.Instr.append_declare(line) + self._write_declare_line(line) + + if "\n" in line: + line = line.strip("\n") + + # Read single line parameter definitions + if ";" in line and not self.in_declare_function: + # This line contains c statements + statements = line.split(";") + + for statement in statements: + statement = statement.strip() + if (statement != "\n" and statement != " " + and len(statement) > 1): + self._read_declare_statement(statement) + + return continue_declare + + def _read_declare_statement(self, statement): + """ + Reads single declare statements, which can have multiple + variables. + """ + + statement = statement.strip() + + # Find type (same for all parameters in one statement) + this_type = statement.split(" ", 1)[0] + statement = statement.split(" ", 1)[1].strip() + + if this_type == "const": # other c keywords to consider? + this_type += " " + statement.split(" ", 1)[0] + statement = statement.split(" ", 1)[1].strip() + + # Check for bracket initialization of arrays + if "," in statement: + variables = statement.split(",") + fixed_variables = [] + array_mode = False + for variable in variables: + + if "{" not in variable and array_mode is False: + fixed_variables.append(variable) + elif "{" in variable: + temp_variable = variable + "," + array_mode = True + elif "}" not in variable: + temp_variable += variable + "," + else: + temp_variable += variable + fixed_variables.append(temp_variable) + array_mode = False + + variables = fixed_variables + + else: + # No commas means just one parameter + variables = [statement] + + # Treat each variable independently + for variable in variables: + variable = variable.strip() + + dynamic_size = False + kw_args = {} + + if "=" in variable: + value = variable.split("=")[1].strip() + # remove the value part before proceeding + variable = variable.split("=")[0].strip() + + if "{" in value: + # handle array as value + value = value.split("{")[1] + if "{" in value: + raise ValueError("Can not load arrays with larger" + + "than 1 dimension yet.") + value = value.split("}")[0] + values = value.split(",") + return_value = [] + for val in values: + return_value.append(float(val)) + else: + try: + return_value = float(value) + except: + value = value.replace('"', "\\\"") + #return_value = '"' + value + '"' + return_value = value + + kw_args["value"] = return_value + + # Handle array + if "[" in variable: + array_sizes = [] + array_size_strings = variable.split("[") + # remove the array size part before proceeding + variable = variable.split("[", 1)[0].strip() + for array_size_string in array_size_strings: + if "]" in array_size_string: + this_size = array_size_string.split("]")[0] + try: + # Size declared normally + array_sizes.append(int(this_size)) + except: + # No size declared means the size is automatic + dynamic_size = True + + if len(array_sizes) > 1: + raise ValueError("Can not handle arrays with larger" + + " than 1 dimension yet") + if not dynamic_size: + kw_args["array"] = array_sizes[0] + + if dynamic_size: + # McStasScript needs size of array, so it is found manually + kw_args["array"] = len(kw_args["value"]) + + # value, array and typeremoved, all that remians is the name + variable_name = variable + self.Instr.add_declare_var(this_type, variable_name, **kw_args) + + # Also write it to a file? + write_string = [] + write_string.append(self.instr_name) + write_string.append(".add_declare_var(") + write_string.append("\"" + this_type + "\"") + write_string.append(", ") + write_string.append("\"" + variable_name + "\"") + write_string.append(self._kw_to_string(kw_args)) + write_string.append(")\n") + + # Write declare parameter to python file + self._write_to_file(write_string) + + def _write_declare_line(self, string): + + string = string.rstrip() + + write_string = [] + write_string.append(self.instr_name) + write_string.append(".append_declare(") + write_string.append("\"" + string + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) diff --git a/mcstasscript/instr_reader/read_definition.py b/mcstasscript/instr_reader/read_definition.py new file mode 100644 index 00000000..52c0e766 --- /dev/null +++ b/mcstasscript/instr_reader/read_definition.py @@ -0,0 +1,150 @@ +from mcstasscript.instr_reader.util import SectionReader + + +class DefinitionReader(SectionReader): + """ + Responsible for reading the defintion section of McStas instrument + file. Contains instrument name and instrument parameters. + """ + + def __init__(self, Instr, write_file, product_filename, + get_next_line, return_line): + + super().__init__(Instr, write_file, product_filename, + get_next_line, return_line) + + def read_definition_line(self, line): + """ + Reads line of instrument definition, returns bolean. If it encounters + the end of the definition section, it returns False, otherwise True. + + The contents of the definition section is written to the McStasScript + Instr object. + """ + + continue_definition = True + + # Remove comments + if "//" in line: + line = line.split("//")[0] + + if "(" in line: + # Start of instrument definition, get name + self.instr_name = line.split("(")[0].strip().split(" ")[-1] + self._start_py_file() + # Remove the parameters from the paranthesis + parameters = line.split("(")[1] + if ")" in line: + # Found end of definition + continue_definition = False + # these parameters are to be analyzed + parameters = parameters.split(")")[0] + + elif ")" in line: + # Found end of definition + continue_definition = False + # these parameters are to be analyzed + parameters = line.split(")")[0] + else: + # Neither start or end on this line, analyze everything + parameters = line + + # Separate into individual parameters + parameters = parameters.split(",") + if "\n" in parameters: + parameters.remove("\n") + + for parameter in parameters: + # Analyze individual parameter + parameter = parameter.strip() + + if parameter == "": + # If the parameter is empty, skip it. + continue + + # Ready for keyword arguments + kw_args = {} + + # Default to double type if nothing else is set + parameter_type = "double" + if " " and "=" in parameter: + # Read parameter type + type_and_name = parameter.split("=", 1)[0].strip() + + if " " in type_and_name: + parameter_type = type_and_name.split(" ", 1)[0].strip() + parameter = parameter.split(" ", 1)[1].strip() + elif " " in parameter: + # Read parameter type + parameter_type = parameter.split(" ", 1)[0].strip() + parameter = parameter.split(" ", 1)[1].strip() + + if "=" in parameter: + # Read default value + parameter_name = parameter.split("=")[0].strip() + value = parameter.split("=")[1].strip() + + if parameter_type == "string": + if '"' in value: + pass + # Value has to be normal for object version + #value = value.replace('"', "\\\"") + #value = "\"" + value + "\"" + else: + if parameter_type == "int": + value = int(value) + else: + value = float(value) + + # Add defualt value to keyword arguments + kw_args["value"] = value + + else: + # No default value, just return the striped name + parameter_name = parameter.strip() + + # Add this parameter to the object + self.Instr.add_parameter(parameter_type, parameter_name, **kw_args) + + # Fix values for script version + if parameter_type == "string" and "value" in kw_args: + if isinstance(kw_args["value"], str): + kw_args["value"] = kw_args["value"].replace('"', '\\\"') + kw_args["value"] = "\"" + kw_args["value"] + "\"" + + # Also write it to a file? + write_string = [] + write_string.append(self.instr_name) + write_string.append(".add_parameter(") + write_string.append("\"" + parameter_type + "\"") + write_string.append(", ") + write_string.append("\"" + parameter_name + "\"") + write_string.append(self._kw_to_string(kw_args)) + write_string.append(")\n") + + self._write_to_file(write_string) + + return continue_definition + + def _start_py_file(self): + write_string = [] + + # Write warning about robustness of this feature + write_string.append("\"\"\"\n") + write_string.append("This McStasScript file was generated from a\n") + write_string.append("McStas instrument file. It is advised to check\n") + write_string.append("the content to ensure it is as expected.\n") + write_string.append("\"\"\"\n") + + # import McStasScript + write_string.append("from mcstasscript.interface ") + write_string.append("import ") + write_string.append("instr, plotter, functions") + write_string.append("\n\n") + + write_string.append(self.instr_name) + write_string.append(" = instr.McStas_instr(") + write_string.append("\"" + self.instr_name + "_generated\"") + write_string.append(")\n") + + self._write_to_file(write_string) diff --git a/mcstasscript/instr_reader/read_finally.py b/mcstasscript/instr_reader/read_finally.py new file mode 100644 index 00000000..6e3d7140 --- /dev/null +++ b/mcstasscript/instr_reader/read_finally.py @@ -0,0 +1,57 @@ +from mcstasscript.instr_reader.util import SectionReader + + +class FinallyReader(SectionReader): + + def __init__(self, Instr, write_file, product_filename, + get_next_line, return_line): + + super().__init__(Instr, write_file, product_filename, + get_next_line, return_line) + + def read_finally_line(self, line): + + continue_finally = True + + # Remove comments + if "//" in line: + line = line.split("//", 1)[0].strip() + + if line.startswith("FINALLY"): + line = line.split("FINALLY", 1)[1].strip() + + # Remove block opening + if "%{" in line: + line = line.split("%{", 1)[1].strip() + + if "%}" in line: + line = line.split("%}", 1)[0].strip() + continue_finally = False + + # If the line is just a new line quit + if line == "\n" or line == "": + return continue_finally + + # Remove newline at the end of the line + if line.endswith("\n"): + line = line[:-1] + + self.Instr.append_finally(line) + + if self.write_file: + # Cant get both \n and " to work in written string + write_line = line.replace("\\n", "\\\\n") + write_line = write_line.replace("\\t", "\\\\t") + # May need to expand to more cases + + write_line = write_line.replace('"', '\\\"') + + write_string = [] + write_string.append(self.instr_name) + write_string.append(".append_finally(") + write_string.append("\"" + write_line + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) + + return continue_finally diff --git a/mcstasscript/instr_reader/read_initialize.py b/mcstasscript/instr_reader/read_initialize.py new file mode 100644 index 00000000..a16b0840 --- /dev/null +++ b/mcstasscript/instr_reader/read_initialize.py @@ -0,0 +1,68 @@ +from mcstasscript.instr_reader.util import SectionReader + + +class InitializeReader(SectionReader): + """ + Reads the initialize section of a McStas instrument file. + The initialize lines are added to the McStasScript instrument, and + are sent to the function writing the lines to the python file. + """ + + def __init__(self, Instr, write_file, product_filename, + get_next_line, return_line): + super().__init__(Instr, write_file, product_filename, + get_next_line, return_line) + + def read_initialize_line(self, line): + """ + Reads lines from INITIALIZE file and returns True as long as + the stop characters has not been encountered. Comments are + ignored with typical c syntax. + """ + + continue_initialize = True + + # Remove comments + if "//" in line: + line = line.split("//", 1)[0].strip() + + if line.startswith("INITIALIZE"): + line = line.split("INITIALIZE", 1)[1].strip() + + if line.startswith("INITIALISE"): + line = line.split("INITIALISE", 1)[1].strip() + + # Remove block opening + if "%{" in line: + line = line.split("%{", 1)[1].strip() + + if "%}" in line: + line = line.split("%}", 1)[0].strip() + continue_initialize = False + + # If the line is just a new line quit + if line == "\n" or line == "": + return continue_initialize + + # Remove newline at the end of the line + if line.endswith("\n"): + line = line[:-1] + + self.Instr.append_initialize(line) + + # Need to prepare string for being written again + write_line = line.replace("\\n", "\\\\n") + write_line = write_line.replace("\\t", "\\\\t") + write_line = write_line.replace('"', '\\\"') + # May need to expand to more cases + + # Write line to Python file + write_string = [] + write_string.append(self.instr_name) + write_string.append(".append_initialize(") + write_string.append("\"" + write_line + " \"") + write_string.append(")\n") + + self._write_to_file(write_string) + + return continue_initialize diff --git a/mcstasscript/instr_reader/read_trace.py b/mcstasscript/instr_reader/read_trace.py new file mode 100644 index 00000000..986c9aa6 --- /dev/null +++ b/mcstasscript/instr_reader/read_trace.py @@ -0,0 +1,566 @@ +from mcstasscript.instr_reader.util import SectionReader + + +class TraceReader(SectionReader): + """ + Reads the trace section of a McStas instrument file. For each + component a McStasScript component instance is created and the + parameters/keywords are applied to this instance. When the next + component is found, the previous component is written to the + python file for reproduction of the McStas instrument. + """ + + def __init__(self, Instr, write_file, product_filename, + get_next_line, return_line): + + super().__init__(Instr, write_file, product_filename, + get_next_line, return_line) + + self.current_component = None + self.in_component_mode = False + self.EXTEND_mode = False + self.component_copy_target = None + self.SPLIT = 0 + self.stored_include = None + + def sanitize_line(self, line): + """ + Removes comments, the starting blok and newline characters + """ + + line = line.strip() + + # Remove comments + if "//" in line: + line = line.split("//", 1)[0].strip() + + if line.startswith("TRACE"): + line = line.split("TRACE", 1)[1].strip() + + if "/*" in line: + if "*/" in line: + line = line.split("/*", 1)[0] + line.split("*/", 1)[1] + else: + line = line.split("/*", 1)[0] + + # Remove newline at the end of the line + if line.endswith("\n"): + line = line[:-1] + + return line + + def read_trace_line(self, line): + """ + Reads line of McStas file from TRACE section. Has the responsibility + of setting continue_trace to false when finding the end of the TRACE + section. May take extra lines through get_new_line if statements are + spaced out over several lines. + """ + + continue_trace = True + + # Find stop characeters + if line.startswith("FINALLY"): + continue_trace = False + + if line.startswith("END"): + continue_trace = False + + if line.strip().startswith("%include") or line.strip().startswith("#include"): + # Handle include statement and attatch it to a component + if self.current_component is not None: + c_code_after = self.current_component.c_code_after + line + "\n" + self.current_component.set_c_code_after(c_code_after) + else: + # If the include statement is before the first component, + # it is saved and attatched to the next component + line = line.replace('"', "\\\"") + self.stored_include = line.strip() + + # If the line is just a new line quit + if line == "\n" or line == "": + return continue_trace + + line = self.sanitize_line(line) + + # Handle keywords that appear before components + if line.startswith("SPLIT"): + # Read split and save for the next component + line = line.split("SPLIT", 1)[1].strip() + if line.startswith("COMPONENT"): + # Default split without indicating amount + self.SPLIT = "" + else: + try: + self.SPLIT = int(line.split(" ", 1)[0].strip()) + except: + #self.SPLIT = "\"" + line.split(" ", 1)[0].strip() + "\"" + self.SPLIT = line.split(" ", 1)[0].strip() + + if " " in line: + # If the line continues, remove the SPLIT number + line = line.split(" ", 1)[1].strip() + + # Read component definition (can be over several lines) + if line.startswith("COMPONENT") or line.startswith("REMOVABLE COMPONENT"): + # Start ned component, but write the previous component to file first + if self.stored_include is not None and self.current_component is not None: + # In case an include statement was stored, include that statement + self.current_component.set_c_code_before(self.stored_include) + self.stored_include = None + # write previous component + self._write_component_to_py() + + # start new component + self.in_component_mode = True + # Assume this is not a copy + self.component_copy_target = None + + # Remove COMPONENT from line + if line.startswith("COMPONENT"): + line = line[9:].strip() + elif line.startswith("REMOVABLE COMPONENT"): + line = line[19:].strip() + + # Add new lines until the entire component definition is found + full_component_line = False + while not full_component_line: + + expected_end_parenthesis = 1 + line.count("COPY") + + if line.count("(") >= expected_end_parenthesis: + full_component_line = True + + if not full_component_line: + new_line = self.get_next_line() + new_line = self.sanitize_line(new_line) + if new_line.startswith("AT") or new_line.startswith("WHEN"): + full_component_line = True + self.return_line() + else: + line += new_line + + # Retrieve information from component definition + instance_name = line.split("=", 1)[0].strip() + component_name = line.split("=", 1)[1].split("(", 1)[0].strip() + line = line.split("=", 1)[1].split("(", 1)[1].strip() + if component_name == "COPY": + # Copy instance + self.component_copy_target = line.split(")", 1)[0].strip() + + if line.strip().startswith("("): + line = line.split("(", 1)[1].strip() + + if self.component_copy_target == "PREVIOUS": + # Get the previous component name + last_component = self.Instr.get_last_component() + self.component_copy_target = last_component.name + + if "(" in instance_name: + # Using the copy notation, replace this with meaningful replacement + base_name = self.component_copy_target + "_copy" + name = base_name + comp_names = [x.name for x in self.Instr.component_list] + index = 0 + while name in comp_names: + name = base_name + "_" + str(index) + index += 1 + + instance_name = name + + self.current_component = self.Instr.copy_component(instance_name, + self.component_copy_target) + + else: + # Normal component instance + self.current_component = self.Instr.add_component(instance_name, + component_name) + + # In case there are no parameters, stop in_component_mode + if line.startswith(")"): + self.in_component_mode = False + line = line.split(")", 1)[1] + + if self.SPLIT != 0: + self.current_component.set_SPLIT(self.SPLIT) + self.SPLIT = 0 + + # In case of COPY, there can be empty parameter lists + if self.in_component_mode: # and self.component_copy_target != None: + # Check if this line starts WHEN or AT + if line.strip().startswith("AT"): + self.in_component_mode = False + if line.strip().startswith("WHEN"): + self.in_component_mode = False + # If none of these occur, read the parameters + + # In component mode reads parameters of each new line read + if self.in_component_mode: + + par_line = line + # check for parameters + if par_line.strip().startswith("("): + par_line = line.split("(", 1)[1] + + # _in_func like python in, but does not look inside parenthesis + if self._in_func(line, ")"): + self.in_component_mode = False + par_line = self._split_func(line, ")", 1)[0] + line = self._split_func(line, ")", 1)[1] + + # All parameters found saved in dictionary + par_dict = {} + + """ + A parameter line can contain a comma for separating parameters or + inside of a string. This piece of code finds the next comma and + checks if there is an equal number of quotation marks in the first + part, if not it increases the read part of the line to the next + comma. In this way commas in strings do not separate parameters + in the component input. + """ + while len(par_line) > 0: + # find the next parameter expression + if self._in_func_brack(par_line, ","): + # start of expression to evaluate + par_exp = par_line.split(",", 1)[0].strip() + par_exp = self._split_func_brack(par_line, ",", 1)[0] + # remove the part already taken from the par_line + par_line = self._split_func_brack(par_line, ",", 1)[1] + # The length of quotation_split will be one more than + # the number of quotation marks in par_exp + quotation_split = par_exp.split('"') + while (len(quotation_split) - 1) % 2 != 0: + # There is an uneven number of quotation marks + par_exp += "," + if "," in par_line: + # include up to the next comma in par_exp + par_exp += par_line.split(",", 1)[0] + # remove the part of the par_line added to par_exp + par_line = par_line.split(",", 1)[1] + else: + # no commas left, must be end of par_line + par_exp += par_line.strip() + par_line = "" + + quotation_split = par_exp.split('"') + else: + # last parameter + par_exp = par_line + par_line = "" + + if "=" in par_exp: + par_name = par_exp.split("=", 1)[0].strip() + par_value = par_exp.split("=", 1)[1].strip() + + par_dict[par_name] = par_value + + # Set all found parameters in the component + self.current_component.set_parameters(par_dict) + + # Read keywords given after parameters but before position (WHEN) + if line.strip().upper().startswith("WHEN"): + if "(" in line: + line = line.split("(", 1)[1].strip() + # need to find the closing parenthesis + parenthesis_counter = 1 + character_index = -1 + for character in line: + character_index += 1 + if character == "(": + parenthesis_counter += 1 + if character == ")": + parenthesis_counter -= 1 + if parenthesis_counter == 0: + end_index = character_index + break + + WHEN_statement = line[:character_index] + WHEN_statement = WHEN_statement.replace('"', "\\\"") + line = line[character_index+1:].strip() + else: + # WHEN statement that does not use parenthesis + if "AT" in line: + WHEN_statement = line.split("AT", 1)[0] + line = "AT" + line.split("AT", 1)[1] + else: + WHEN_statement = line.split("WHEN ", 1)[1] + line = "" + + self.current_component.set_WHEN(WHEN_statement) + + # Read component position + if line.strip().startswith("AT"): + # read AT statement + line = line.split("(", 1)[1].strip() + AT_data = [] + AT_data.append(self._split_func(line, ",", 1)[0]) + line = self._split_func(line, ",", 1)[1] + AT_data.append(self._split_func(line, ",", 1)[0]) + line = self._split_func(line, ",", 1)[1] + AT_data.append(self._split_func(line, ")", 1)[0]) + line = self._split_func(line, ")", 1)[1] + + if line.strip().startswith("ABSOLUTE"): + line = line.split(" ", 1)[1].strip() + relative_name = "ABSOLUTE" + # The line can continue, remove the used part + if " " in line.strip(): + line = line.strip().split(" ", 1)[1].strip() + else: + line = "" + elif line.strip().startswith("RELATIVE"): + line = line.strip().split(" ", 1)[1].strip() + if " " in line: + relative_name = line.split(" ", 1)[0].strip() + else: + relative_name = line.strip() + # The line can continue, remove the used part + if " " in line: + line = line.split(" ", 1)[1].strip() + else: + line = "" + else: + raise ValueError("Could not read: " + line) + + self.current_component.set_AT(AT_data, RELATIVE=relative_name) + + # Read component rotation + if line.strip().startswith("ROTATED"): + # read ROTATED statement + line = line.split("(", 1)[1].strip() + ROTATED_data = [] + + ROTATED_data.append(self._split_func(line, ",", 1)[0]) + line = self._split_func(line, ",", 1)[1] + ROTATED_data.append(self._split_func(line, ",", 1)[0]) + line = self._split_func(line, ",", 1)[1] + ROTATED_data.append(self._split_func(line, ")", 1)[0]) + line = self._split_func(line, ")", 1)[1] + + if line.strip().startswith("ABSOLUTE"): + relative_name = "ABSOLUTE" + if " " in line.strip(): + line = line.strip().split(" ", 1)[1].strip() + else: + line = "" + elif line.strip().startswith("RELATIVE"): + line = line.strip().split(" ", 1)[1].strip() + relative_name = line.split(" ", 1)[0].strip() + # The line can continue, remove the used part + if " " in line: + line = line.split(" ", 1)[1].strip() + else: + line = "" + else: + raise ValueError("Could not read: " + line) + + self.current_component.set_ROTATED(ROTATED_data, + RELATIVE=relative_name) + + # Read keywords after component position (GROUP, EXTEND, JUMP) + if line.strip().upper().startswith("GROUP"): + line = line.strip() + + group_name = line.split(" ", 1)[1].strip() + #group_name = "\"" + group_name + "\"" + group_name = group_name + + line = "" + + self.current_component.set_GROUP(group_name) + + if line.strip().upper().startswith("EXTEND"): + line = line.split("EXTEND", 1)[1].strip() + self.EXTEND_mode = True + + if self.EXTEND_mode: + if "%{" in line: + line = line.strip().split("%{", 1)[1].strip() + + if "%}" in line: + line = line.strip().split("%}", 1)[0].strip() + self.EXTEND_mode = False + + if len(line) > 0 and line != "\n": + line = line.replace('\\n', "\\\\n") + line = line.replace('"', "\\\"") + self.current_component.append_EXTEND(line) + + if line.strip().upper().startswith("JUMP "): + line = line.strip().split(" ", 1)[1] + self.current_component.set_JUMP(line) + + if not continue_trace: + # write last component + self._write_component_to_py() + + return continue_trace + + def _write_component_to_py(self): + # code for writing McStasScript python file + if self.current_component is not None: + + # Write the add_component statement + write_string = ["\n"] + write_string.append(self.current_component.name) + write_string.append(" = ") + write_string.append(self.instr_name) + if self.component_copy_target is None: + write_string.append(".add_component(") + write_string.append("\"" + self.current_component.name + "\"") + write_string.append(", ") + component_name = str(self.current_component.component_name) + write_string.append("\"" + component_name + "\"") + else: + write_string.append(".copy_component(") + write_string.append("\"" + self.current_component.name + "\"") + write_string.append(", ") + write_string.append("\"" + self.component_copy_target + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) + + # Write all parameters as attribute updates + for key in self.current_component.parameter_names: + val = getattr(self.current_component, key) + if val is not None: + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".") + write_string.append(key) + write_string.append(" = ") + + try: + # No problems if the value is a number + float(val) + except: + # If the value is a string, it needs quotes + if '"' in val: + # If it already has quotes, these need escapes + val = val.replace('"', '\\\"') + val = '"' + val + '"' + + write_string.append(val) + write_string.append("\n") + + self._write_to_file(write_string) + + # Write EXTEND block if present + if self.current_component.EXTEND != "": + EXTEND = self.current_component.EXTEND + EXTEND_lines = EXTEND.split("\n") + EXTEND_lines = EXTEND_lines[:-1] + + for EXTEND_line in EXTEND_lines: + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".append_EXTEND(") + write_string.append("\"" + EXTEND_line + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) + + # Write WHEN statement if present + if self.current_component.WHEN != "": + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".set_WHEN(") + WHEN = self.current_component.WHEN + WHEN = WHEN.split("(", 1)[1].strip() + WHEN = WHEN[:-1] + write_string.append("\"" + WHEN + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) + + # Write SPLIT if present + if self.current_component.SPLIT != 0: + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".set_SPLIT(") + if self.current_component.SPLIT == "": + write_string.append('""') + else: + if isinstance(self.current_component.SPLIT, str) and self.current_component.SPLIT != "": + write_string.append('"' + str(self.current_component.SPLIT) + '"') + else: + write_string.append(str(self.current_component.SPLIT)) + write_string.append(")\n") + + self._write_to_file(write_string) + + # Write GROUP if present + if self.current_component.GROUP != "": + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".set_GROUP(\"") + write_string.append(str(self.current_component.GROUP)) + write_string.append("\")\n") + + self._write_to_file(write_string) + + # Write JUMP if present + if self.current_component.JUMP != "": + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".set_JUMP(") + jump_string = str(self.current_component.JUMP) + write_string.append("\"" + jump_string + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) + + # Write c_code_before if present + if self.current_component.c_code_before != "": + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".set_c_code_before(") + c_code_string = str(self.current_component.c_code_before) + write_string.append("\"" + c_code_string + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) + + # Write c_code_after if present + if self.current_component.c_code_after != "": + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".set_c_code_after(") + c_code_string = str(self.current_component.c_code_after) + write_string.append("\"" + c_code_string + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) + + # Write AT + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".set_AT(") + write_string.append(str(self.current_component.AT_data)) + write_string.append(", RELATIVE=") + if self.current_component.AT_relative == "ABSOLUTE": + write_string.append("\"" + "ABSOLUTE" + "\"") + else: + relative = self.current_component.AT_relative.split(" ")[1] + write_string.append("\"" + relative + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) + + # Write ROTATED + write_string = [] + write_string.append(self.current_component.name) + write_string.append(".set_ROTATED(") + write_string.append(str(self.current_component.ROTATED_data)) + write_string.append(", RELATIVE=") + if self.current_component.ROTATED_relative == "ABSOLUTE": + write_string.append("\"" + "ABSOLUTE" + "\"") + else: + relative = self.current_component.ROTATED_relative.split(" ") + relative = relative[1] + write_string.append("\"" + relative + "\"") + write_string.append(")\n") + + if self.current_component.ROTATED_specified: + self._write_to_file(write_string) diff --git a/mcstasscript/instr_reader/read_uservars.py b/mcstasscript/instr_reader/read_uservars.py new file mode 100644 index 00000000..c9d18f0c --- /dev/null +++ b/mcstasscript/instr_reader/read_uservars.py @@ -0,0 +1,284 @@ +from mcstasscript.instr_reader.util import SectionReader + + +class UservarsReader(SectionReader): + """ + Reads the uservars section of a McStas instrument file and adds + the found parameters / functions / structs to the McStasScript + Instr instance. The information can also be written to a python + file for reproduction of a McStas instrument. + """ + + def __init__(self, Instr, write_file, product_filename, + get_next_line, return_line): + + super().__init__(Instr, write_file, product_filename, + get_next_line, return_line) + + self.in_uservars_function = False + self.in_struct_definition = False + self.bracket_counter = 0 + + def read_uservars_line(self, line): + """ + Reads line of instrument uservars, returns bolean. If it encounters + the end of the uservars section, it returns False, otherwise True. + + The contents of the uservars section is written to the McStasScript + Instr object. + """ + + continue_uservars = True + + # Remove comments + if "//" in line: + line = line.split("//", 1)[0] + + # Remove %} and signify end if this is found + if "%}" in line: + continue_uservars = False + line = line.split("%}", 1)[0] + + if "/*" in line: + line = line.split("/*", 1)[0].strip() + + if self.in_uservars_function: + if "{" in line: + self.bracket_counter += 1 + + if "}" in line: + self.bracket_counter -= 1 + + if self.bracket_counter == 0: + self.in_uservars_function = False + + self.Instr.append_uservars(line) + self._write_uservars_line(line) + + # Check for functions + if ("(" in line and ";" not in line and " " in line.strip() + and not self.in_uservars_function): + + # If in function, it will define a block + n_curly_brackets = line.count("{") + n_curly_brackets -= line.count("}") + + while n_curly_brackets != 0 or ("{" not in line): + next_line = self.get_next_line() + line += next_line + + n_curly_brackets = line.count("{") + n_curly_brackets -= line.count("}") + + after_curly_bracket = line.split("}")[-1] + + uservars_lines = line.split("\n") + for uservars_line in uservars_lines: + uservars_line = uservars_line.rstrip() + uservars_line = uservars_line.replace('\\n', "\\\\n") + uservars_line = uservars_line.replace('"', "\\\"") + self.Instr.append_uservars(uservars_line) + self._write_uservars_line(uservars_line) + + line = after_curly_bracket + + # Check for struct / function that returns struct + if line.strip().startswith("struct "): + # Can be a function returning struct or struct definition + + # If struct definition, no parenthesis and ; after ) + n_curly_brackets = line.count("{") + n_curly_brackets -= line.count("}") + + # Add lines until end of block found + while n_curly_brackets != 0 or ("{" not in line): + + next_line = self.get_next_line() + line += next_line + + n_curly_brackets = line.count("{") + n_curly_brackets -= line.count("}") + + if "{" in line: + before_curly_bracket = line.split("{", 1)[0] + if "(" in before_curly_bracket and ")" in before_curly_bracket: + # This is a function that returns a struct! + self.in_uservars_function = True + + after_curly_bracket = line.split("}")[-1] + + # if not in function, add until ; is found + while ";" not in after_curly_bracket and not self.in_uservars_function: + # It is surely a struct, find ; + line += self.get_next_line() + after_curly_bracket = line.split("}")[-1] + + uservars_lines = line.split("\n") + for uservars_line in uservars_lines: + uservars_line = uservars_line.rstrip() + uservars_line = uservars_line.replace('\\n', "\\\\n") + uservars_line = uservars_line.replace('"', "\\\"") + self.Instr.append_uservars(uservars_line) + self._write_uservars_line(uservars_line) + + if self.in_uservars_function: + line = line.split("}")[-1].strip() + else: + line = line.split(";")[-1].strip() + + # if in function, stop now + self.in_uservars_function = False + + # Grab defines + if line.strip().startswith("#define"): + # Include define statements as uservars append + line = line.rstrip() + line = line.replace('\\n', "\\\\n") + line = line.replace('"', "\\\"") + self.Instr.append_uservars(line) + self._write_uservars_line(line) + + if "\n" in line: + line = line.strip("\n") + + # Read single line parameter definitions + if ";" in line and not self.in_uservars_function: + # This line contains c statements + statements = line.split(";") + + for statement in statements: + statement = statement.strip() + if (statement != "\n" and statement != " " + and len(statement) > 1): + self._read_uservars_statement(statement) + + return continue_uservars + + def _read_uservars_statement(self, statement): + """ + Reads single uservars statements, which can have multiple + variables. + """ + + statement = statement.strip() + + # Find type (same for all parameters in one statement) + this_type = statement.split(" ", 1)[0] + statement = statement.split(" ", 1)[1].strip() + + if this_type == "const": # other c keywords to consider? + this_type += " " + statement.split(" ", 1)[0] + statement = statement.split(" ", 1)[1].strip() + + # Check for bracket initialization of arrays + if "," in statement: + variables = statement.split(",") + fixed_variables = [] + array_mode = False + for variable in variables: + + if "{" not in variable and array_mode is False: + fixed_variables.append(variable) + elif "{" in variable: + temp_variable = variable + "," + array_mode = True + elif "}" not in variable: + temp_variable += variable + "," + else: + temp_variable += variable + fixed_variables.append(temp_variable) + array_mode = False + + variables = fixed_variables + + else: + # No commas means just one parameter + variables = [statement] + + # Treat each variable independently + for variable in variables: + variable = variable.strip() + + dynamic_size = False + kw_args = {} + + if "=" in variable: + value = variable.split("=")[1].strip() + # remove the value part before proceeding + variable = variable.split("=")[0].strip() + + if "{" in value: + # handle array as value + value = value.split("{")[1] + if "{" in value: + raise ValueError("Can not load arrays with larger" + + "than 1 dimension yet.") + value = value.split("}")[0] + values = value.split(",") + return_value = [] + for val in values: + return_value.append(float(val)) + else: + try: + return_value = float(value) + except: + value = value.replace('"', "\\\"") + #return_value = '"' + value + '"' + return_value = value + + kw_args["value"] = return_value + + # Handle array + if "[" in variable: + array_sizes = [] + array_size_strings = variable.split("[") + # remove the array size part before proceeding + variable = variable.split("[", 1)[0].strip() + for array_size_string in array_size_strings: + if "]" in array_size_string: + this_size = array_size_string.split("]")[0] + try: + # Size uservarsd normally + array_sizes.append(int(this_size)) + except: + # No size uservarsd means the size is automatic + dynamic_size = True + + if len(array_sizes) > 1: + raise ValueError("Can not handle arrays with larger" + + " than 1 dimension yet") + if not dynamic_size: + kw_args["array"] = array_sizes[0] + + if dynamic_size: + # McStasScript needs size of array, so it is found manually + kw_args["array"] = len(kw_args["value"]) + + # value, array and typeremoved, all that remians is the name + variable_name = variable + self.Instr.add_user_var(this_type, variable_name, **kw_args) + + # Also write it to a file? + write_string = [] + write_string.append(self.instr_name) + write_string.append(".add_user_var(") + write_string.append("\"" + this_type + "\"") + write_string.append(", ") + write_string.append("\"" + variable_name + "\"") + write_string.append(self._kw_to_string(kw_args)) + write_string.append(")\n") + + # Write uservars parameter to python file + self._write_to_file(write_string) + + def _write_uservars_line(self, string): + + string = string.rstrip() + + write_string = [] + write_string.append(self.instr_name) + write_string.append(".append_uservars(") + write_string.append("\"" + string + "\"") + write_string.append(")\n") + + self._write_to_file(write_string) diff --git a/mcstasscript/instr_reader/util.py b/mcstasscript/instr_reader/util.py new file mode 100644 index 00000000..97e8867b --- /dev/null +++ b/mcstasscript/instr_reader/util.py @@ -0,0 +1,144 @@ + +class SectionReader: + """ + Super class for the many necessary readers + """ + + def __init__(self, Instr, write_file, product_filename, + get_next_line, return_line): + self.Instr = Instr + self.write_file = write_file + self.product_filename = product_filename + self.instr_name = "" + self.get_next_line = get_next_line + self.return_line = return_line + + def set_instr_name(self, name): + self.instr_name = name + + def _write_to_file(self, string_array): + """ + In case a py file is being written, this function writes to the + appropriate file. + """ + + if self.write_file: + with open(self.product_filename, "a") as product_file: + for string in string_array: + product_file.write(string) + + def _kw_to_string(self, kwargs): + """ + Used when a dict containing keyword arguments need to be written + to a string. This string can be used as argument in method call. + """ + + output_string = "" + for kwarg in kwargs: + output_string += ", " + output_string += kwarg + "=" + str(kwargs[kwarg]) + + return output_string + + def _split_func(self, *args): + """ + Returns list of strings seperated by commas that are not + within open parenthesis. + """ + + string = args[0] + split_character = args[1] + + if len(args) == 3: + limit = args[2] + else: + limit = -1 + + split_positions = [] + parenthesis = 0 + for index in range(len(string)): + character = string[index] + if (character == split_character and parenthesis == 0 + and limit != 0): + split_positions.append(index) + limit -= 1 + else: + if character == "(": + parenthesis += 1 + if character == ")": + parenthesis -= 1 + + split_positions.append(len(string)+1) # virtual comma at the end + + result = [] + last_position = 0 + for position in split_positions: + result.append(string[last_position:position]) + last_position = position + 1 + + return result + + def _split_func_brack(self, *args): + """ + Returns list of strings seperated by commas that are not + within open parenthesis / brackets + """ + + string = args[0] + split_character = args[1] + + if len(args) == 3: + limit = args[2] + else: + limit = -1 + + split_positions = [] + parenthesis = 0 + brackets = 0 + for index in range(len(string)): + character = string[index] + if (character == split_character and parenthesis == 0 + and brackets == 0 and limit != 0): + split_positions.append(index) + limit -= 1 + else: + if character == "(": + parenthesis += 1 + if character == ")": + parenthesis -= 1 + if character == "{": + brackets += 1 + if character == "}": + brackets -= 1 + + split_positions.append(len(string)+1) # virtual comma at the end + + result = [] + last_position = 0 + for position in split_positions: + result.append(string[last_position:position]) + last_position = position + 1 + + return result + + def _in_func(self, string, character): + """ + Returns true of character is in string when excluding occurances + within parenthesis. + """ + + if len(self._split_func(string, character, 1)) == 2: + return True + else: + return False + + def _in_func_brack(self, string, character): + """ + Returns true of character is in string when excluding occurances + within parenthesis and brackets. + """ + + if len(self._split_func_brack(string, character, 1)) == 2: + return True + else: + return False diff --git a/mcstasscript/instrument_diagnostics/__init__.py b/mcstasscript/instrument_diagnostics/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/instrument_diagnostics/beam_diagnostics.py b/mcstasscript/instrument_diagnostics/beam_diagnostics.py new file mode 100644 index 00000000..52cebc21 --- /dev/null +++ b/mcstasscript/instrument_diagnostics/beam_diagnostics.py @@ -0,0 +1,417 @@ +from mcstasscript.helper.mcstas_objects import DeclareVariable +from mcstasscript.helper.mcstas_objects import Component +from mcstasscript.instrument_diagnostics.diagnostics_instrument import DiagnosticsInstrument +from mcstasscript.instrument_diagnostics.view import View +from mcstasscript.instrument_diagnostics.plot_overview import PlotOverview +from mcstasscript.instrument_diagnostics import event_plotter +from mcstasscript.interface.functions import name_search + +def sanitise_comp_name(comp_name): + if isinstance(comp_name, Component): + comp_name = Component.name + + if not isinstance(comp_name, str): + raise ValueError("comp_name should be a string or component object!") + + return comp_name + +class DiagnosticsPoint: + def __init__(self, instr, comp_name, before=True, rays=50000): + comp_name = sanitise_comp_name(comp_name) + try: + instr.get_component(comp_name) + except KeyError: + raise KeyError("Component '" + comp_name + "' not found in instrument.") + + self.component = comp_name + self.before = before # False for after + + if isinstance(rays, str): + if not rays == "all": + raise ValueError("The ray keyword for a point should be all or an integer.") + else: + rays = int(rays) + + self.rays = rays + + # Attributes set by add_monitors + self.filename = None + # Attributes set by read_data + self.recorded_rays = None + + def set_filename(self, filename): + self.filename = filename + + def set_recorded_rays(self, rays): + self.recorded_rays = rays + + def __eq__(self, other): + return self.component == other.component and self.before == other.before + + def __repr__(self): + string = "Diagnostics point " + if self.before: + string += "before: " + else: + string += "after: " + + string += self.component.ljust(25) + string += " - rays: " + if self.recorded_rays is not None: + string += str(self.recorded_rays) + string += " / " + string += str(self.rays) + + return string + +class BeamDiagnostics(DiagnosticsInstrument): + def __init__(self, instr): + super().__init__(instr) + + # points to investigate with options + self.points = [] + self.ordered_point_list = [] + + # flags for monitor_nD user variables + self.flags = [] + + self.monitor_names = [] + + self.views = [] + + self.data = None + + self.event_plotters = [] + + def __repr__(self): + string = f"Instrument diagnostics for: {self.instr.name}\n" + string += "Diagnostics points: \n" + + if len(self.points) == 0: + string += " No diagnostics points yet\n" + for point in self.points: + string += " " + point.__repr__() + "\n" + + string += "Views: \n" + if len(self.views) == 0: + string += " No views yet\n" + + for view in self.views: + string += " " + view.__repr__() + "\n" + + if len(self.flags) != 0: + string += "Recording following user variables:\n" + for flag in self.flags: + string += " " + str(flag) + "\n" + + if self.data is None: + string += "Does not yet contain simulated data" + else: + string += "Does contain simulated data" + + return string + + def add_flag(self, flag): + """ + Adds flag to be monitored in event list, maximum of 3 allowed + + The flag must be available in declared variables or user vars. + + Parameters: + + flag: str + str with variable name to be recorded to event dataset + """ + if not isinstance(flag, str): + raise ValueError("flag has to be a string.") + + # find declare and user_var names in instrument + names = [x.name for x in self.instr.declare_list + if isinstance(x, DeclareVariable)] + names += [x.name for x in self.instr.user_var_list + if isinstance(x, DeclareVariable)] + + if flag not in names: + raise ValueError(f"flag {flag} was not found in declared " + f"variables or uservars of the instrument.") + + if len(self.flags) >= 3: + raise ValueError("Can't add more than three flags") + + self.flags.append(flag) + + def clear_flags(self): + """ + Clears flags + """ + self.flags = [] + + def show_flags(self): + """ + Shows list of current flags + """ + if self.flags is not None: + for index, flag in enumerate(self.flags): + print(f" user{index+1}={flag}") + + def add_point(self, before=None, after=None, rays=50000): + """ + Adds point in which the beam is investigated with given number of rays + + Can be before and/or after components, this is chosen by using the + appropriate keyword argument. + + Parameters: + + before : str or component instance + Reference to component beam should be monitored just before + + after : str or component instance + Reference to component beam should be monitored just after + + rays : int or "all" + Number of rays to record, either integer or the string "all" + """ + if before is None and after is None: + raise ValueError("Specify either before or after with component name.") + + if before is not None: + self._add_diagnostics_point(comp_name=before, before=True, rays=rays) + + if after is not None: + self._add_diagnostics_point(comp_name=after, before=False, rays=rays) + + def _add_diagnostics_point(self, comp_name, before, rays): + """ + Internal function to add the DiagnosticsPoint to list + """ + point = DiagnosticsPoint(self.instr, comp_name=comp_name, before=before, rays=rays) + if point in self.points: + # overwrite that point + index = self.points.index(point) + self.points[index] = point + else: + # add point to list + self.points.append(point) + + def remove_point(self, before=None, after=None): + """ + Removes a point from the list + + Specify whether the point in question is before or after the + given component name or instance by using the appropriate + keyword argument + + Parameter: + + before : str or component instance + Name or component instance for which point before should be removed + + after : str or component instance + Name or component instance for which point after should be removed + """ + if before is None and after is None: + raise ValueError("Specify either before or after with component name.") + + if before is not None: + before = sanitise_comp_name(before) + for index, point in enumerate(self.points): + if point.component == before and point.before: + del self.points[index] + + if after is not None: + after = sanitise_comp_name(after) + for index, point in enumerate(self.points): + if point.component == after and not point.before: + del self.points[index] + + def clear_points(self): + """ + Remove all points + """ + self.points = [] + + def show_points(self): + """ + Shows current diagnostics points + """ + for point in self.points: + print(point) + + def add_view(self, axis1, axis2=None, bins=100, same_scale=False, **kwargs): + """ + Add a view with one or two axes that will be shown at all diagnostics points + + Parameters: + axis1: str + Name of parameter for first axis + + axis2: str + Name of parameter for second axis + + bins : int or list of length 2 + Number of bins for histogram (can be list of length 2 for 2D) + + same_scale : bool + Select if the same scale should be ensured for all points with this view + """ + view = View(axis1=axis1, axis2=axis2, bins=bins, same_scale=same_scale, **kwargs) + self.views.append(view) + + def clear_views(self): + """ + Clear list of views + """ + self.views = [] + + def show_views(self): + """ + Shows views + """ + for view in self.views: + print(view) + + def add_monitors(self): + """ + Adds monitors as specified by list of diagnostics points + + The method sorts the points with the component sequence so the + resulting plots are in the correct order. + """ + comp_names = [x.name for x in self.instr.make_component_subset()] + self.monitor_names = [] + self.ordered_point_list = [] + point_names = [x.component for x in self.points] + + for name in comp_names: + before_point = None + after_point = None + if name in point_names: + for point in self.points: + if point.component == name: + if point.before: + before_point = point + else: + after_point = point + + if before_point is not None: + self.ordered_point_list.append(before_point) + if after_point is not None: + self.ordered_point_list.append(after_point) + + for point in self.ordered_point_list: + comp = self.instr.get_component(point.component) + filename = self.add_monitor(point, comp) + point.set_filename(filename) + + def add_monitor(self, point, comp_instance): + """ + Adds monitor_nD event monitor to diagnostics instrument for given point + + Needs point and component instance that match + + Parameters: + + point : DiagnosticsPoint + Point for which monitor should be added + + comp_instance : Component + Component instance relative to which the monitor should be placed + """ + + if not point.component == comp_instance.name: + raise RuntimeError("Given point and component instance should match!") + + user_vars = [None, None, None] + flags_str = "" + for index, flag in enumerate(self.flags): + flags_str += " user" + str(index+1) + if self.instr.mccode_version == 2: + # Monitor_nD in McStas 2.X needs to be a raw variable + user_vars[index] = flag + else: + # Monitor_nD in McStas 3.X (and onwards) needs to be a string + user_vars[index] = '"' + flag + '"' + + if isinstance(point.rays, (float, int)): + ray_value = point.rays + if self.instr.mccode_version == 3: + ray_value += 1 # In McStas 3.0 Monitor_nD grabs one event too few + ray_str = str(int(ray_value)) # Monitor_nD seems to record one ray less than requested + else: + ray_str = point.rays # Case of rays set to all + + if point.before: + name = "Diag_before_" + point.component + options = f'"square boarders n x y z vx vy vz t{flags_str}, list {ray_str}"' + mon = self.instr.add_component(name, "Monitor_nD", before=point.component) + else: + name = "Diag_after_" + point.component + options = f'"previous n x y z vx vy vz t{flags_str}, list {ray_str}"' + mon = self.instr.add_component(name, "Monitor_nD", after=point.component) + + mon.set_parameters(restore_neutron=1, + xwidth=100, yheight=100, + options=options, + user1=user_vars[0], user2=user_vars[1], user3=user_vars[2], + filename='"' + name + ".diag" + '"') + + + mon.set_AT(comp_instance.AT_data, RELATIVE=comp_instance.AT_reference) + if comp_instance.ROTATED_specified: + mon.set_ROTATED(comp_instance.ROTATED_data, RELATIVE=comp_instance.ROTATED_reference) + + return name + + def run(self): + """ + Runs diagnostics with all included points + + Saves data in data attribute and the resulting instrument can be found + in the instr attribute + """ + self.reset_instr() + self.remove_previous_use() + + self.add_monitors() + + self.correct_target_index() + + self.data = self.instr.backengine() + + self.read_data() + + def read_data(self): + """ + Reads the generated data and organizes it as event plotter instances + """ + + self.event_plotters = [] + + for point in self.ordered_point_list: + try: + event_data = name_search(point.filename, self.data) + except NameError: + # Data was not generated, no neutrons reached it or simulation failed + continue + + point.set_recorded_rays(event_data.metadata.total_N) + plotter = event_plotter.EventPlotter(point.filename, event_data, + flag_info=self.flags) + + self.event_plotters.append(plotter) + + def plot(self): + """ + Plots the generated data for all points with all views + """ + + if len(self.event_plotters) == 0: + if len(self.views) == 0: + print("No data to plot! Add views and run.") + else: + print("No data to plot! Use the run method to generate data.") + + overview = PlotOverview(self.event_plotters, self.views) + overview.plot_all() + diff --git a/mcstasscript/instrument_diagnostics/diagnostics_instrument.py b/mcstasscript/instrument_diagnostics/diagnostics_instrument.py new file mode 100644 index 00000000..2117d0b1 --- /dev/null +++ b/mcstasscript/instrument_diagnostics/diagnostics_instrument.py @@ -0,0 +1,116 @@ +import copy + +class DiagnosticsInstrument: + def __init__(self, instr): + """ + Diagnostics instrument object with related capabilities + + The diagnostics instrument takes a copy of an instrument object + and can modify this version in ways relevant for diagnostics of + the instrument. It can remove use of PREVIOUS and correct the + use of target_index to make it safe to add additional components + without altering the instrument. It carries it's own settings + and parameters that wont impact the original instrument. The + diagnostics instrument can be reset to the original state, and + will have settings and parameters applied again. + + Parameters: + + instr : McCode_instr object + Instrument which needs a diagnostics copy + """ + self.original_instr = instr + self.instr = None + self.instr_settings = {} + self.instr_parameters = {} + self.reset_instr() + + self.component_list = self.instr.make_component_subset() + + def reset_instr(self): + """ + Resets instrument to original state, with new pars and settings + """ + self.instr = copy.deepcopy(self.original_instr) + self.instr.settings(**self.instr_settings) + self.instr.set_parameters(**self.instr_parameters) + + def settings(self, **kwargs): + """ + Apply settings as in an instrument object + """ + self.instr.settings(**kwargs) + self.instr_settings.update(kwargs) + + def show_settings(self): + """ + Show settings of diagnostics instrument + """ + self.instr.show_settings() + + def set_parameters(self, **kwargs): + """ + Set parameters as in instrument object + """ + self.instr.set_parameters(**kwargs) + self.instr_parameters.update(kwargs) + + def show_parameters(self): + """ + Show parameters as on instrument object + """ + self.instr.show_parameters() + + def remove_previous_use(self): + """ + Replaces use of PREVIOUS with direct references + """ + self.component_list = self.instr.make_component_subset() + previous_component = None + for comp in self.component_list: + if comp.AT_reference == "PREVIOUS": + comp.set_AT_RELATIVE(previous_component) + + if comp.ROTATED_specified: + if comp.ROTATED_reference == "PREVIOUS": + comp.set_ROTATED_RELATIVE(previous_component) + + previous_component = comp + + def correct_target_index(self): + """ + Corrects target_index based on original instrument + """ + original_component_list = self.original_instr.make_component_subset() + original_comp_names = [x.name for x in original_component_list] + + modified_component_list = self.instr.make_component_subset() + modified_comp_names = [x.name for x in modified_component_list] + + for comp in original_component_list: + # Find components that use target index + + if not hasattr(comp, "target_index"): + # Component doesnt have the target_index setting + continue + if comp.target_index is None: + # A value has not been specified for target_index setting + continue + if comp.target_index == 0: + # target_index is disabled + continue + + # Only here if target_index is used, correct it in modified instr + + # Find original index and the name of the original target + original_comp_index = original_comp_names.index(comp.name) + comp_target_name = original_comp_names[original_comp_index + int(comp.target_index)] + + # Find index of the original and target in modified instrument + modified_comp_index = modified_comp_names.index(comp.name) + index_of_new_target = modified_comp_names.index(comp_target_name) + new_target_index = index_of_new_target - modified_comp_index + + # Apply the new target_index to the component in the modified instrument + modified_comp = self.instr.get_component(comp.name) + modified_comp.target_index = new_target_index diff --git a/mcstasscript/instrument_diagnostics/event_plotter.py b/mcstasscript/instrument_diagnostics/event_plotter.py new file mode 100644 index 00000000..3cc6ec52 --- /dev/null +++ b/mcstasscript/instrument_diagnostics/event_plotter.py @@ -0,0 +1,131 @@ +import numpy as np +import matplotlib.pyplot as plt + +from mcstasscript.helper.plot_helper import _plot_fig_ax + +class EventPlotter: + """ + Plots event data onto given views + """ + def __init__(self, name, data, flag_info=None): + """ + EventPlotter stores name and data, can produce plots given views + + Parameters: + + name : str + Name of dataset + + data : McStasEventData + Data object with event data + + flag_info : list of str + List of flag names in order U1 U2 U3 + """ + self.name = name + self.data = data + self.flag_info = flag_info + + def scale_weights(self, factor): + """ + Scales all weights in contained McStasEventData object + + Parameters: + + factor : float + Scale factor to be applied + """ + index = self.data.find_variable_index("p", flag_info=self.flag_info) + self.data.Events[:, index] *= factor + + def add_view_limits(self, view): + """ + Sets limits of View object from what is applicable to this data + + Parameters: + view : View + View for which limits should be set + """ + data = self.data.get_data_column(view.axis1, flag_info=self.flag_info) + view.set_axis1_limits(np.min(data), np.max(data)) + + if view.axis2 is not None: + data = self.data.get_data_column(view.axis1, flag_info=self.flag_info) + view.set_axis1_limits(np.min(data), np.max(data)) + + def get_view_limits_axis1(self, view): + """ + Finds limits for axis1 of given view with the contained data + + Parameters: + view : View + View for which limits should be retrieved + """ + data = self.data.get_data_column(view.axis1, flag_info=self.flag_info) + return np.min(data), np.max(data) + + def get_view_limits_axis2(self, view): + """ + Finds limits for axis1 of given view with the contained data + + Parameters: + view : View + View for which limits should be retrieved + """ + if view.axis2 is None: + return np.NaN, np.NaN + data = self.data.get_data_column(view.axis2, flag_info=self.flag_info) + return np.min(data), np.max(data) + + def plot(self, view, fig, ax): + """ + Plots binned data generated from contained data on axis from view + + A view can also contain additional plot options which will be passed + to the standard plotting tools. + + view : View + View defining onto which axis and what bins EventData should be binned + + fig : Matplotlib fig + Figure object for figure + + ax : Matplotlib ax + Axes object for figure + """ + + if view.axis2 is None: + data = self.data.make_1d(axis1=view.axis1, n_bins=view.bins, flag_info=self.flag_info) + data.set_title("") + if view.axis1_limits is not None: + data.set_plot_options(left_lim=view.axis1_limits[0], right_lim=view.axis1_limits[1]) + data.set_plot_options(**view.plot_options) + + else: + data = self.data.make_2d(axis1=view.axis1, axis2=view.axis2, n_bins=view.bins, flag_info=self.flag_info) + data.set_plot_options(show_colorbar=False) + data.set_title("") + if view.axis1_limits is not None and view.axis2_limits is not None: + data.set_plot_options(left_lim=view.axis1_limits[0], right_lim=view.axis1_limits[1], + bottom_lim=view.axis2_limits[0], top_lim=view.axis2_limits[1]) + data.set_plot_options(**view.plot_options) + + _plot_fig_ax(data, fig, ax) + + x_lims = ax.get_xlim() + y_lims = ax.get_ylim() + + if view.axis1_values is not None: + for value in view.axis1_values: + ax.plot([value, value], y_lims, "k") + + ax.set_xlim(x_lims) + ax.set_ylim(y_lims) + + if view.axis2_values is not None: + for value in view.axis2_values: + ax.plot(x_lims, [value, value], "k") + + ax.set_xlim(x_lims) + ax.set_ylim(y_lims) + diff --git a/mcstasscript/instrument_diagnostics/intensity_diagnostics.py b/mcstasscript/instrument_diagnostics/intensity_diagnostics.py new file mode 100644 index 00000000..ebb07d2f --- /dev/null +++ b/mcstasscript/instrument_diagnostics/intensity_diagnostics.py @@ -0,0 +1,279 @@ +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +from matplotlib.ticker import MaxNLocator +from matplotlib.colors import BoundaryNorm + +from mcstasscript.instrument_diagnostics.diagnostics_instrument import DiagnosticsInstrument +from mcstasscript.interface.functions import name_search +from mcstasscript.data.data import McStasDataBinned +from mcstasscript.helper.plot_helper import _plot_fig_ax + +class IntensityDiagnostics(DiagnosticsInstrument): + def __init__(self, instr): + super().__init__(instr) + + self.data = None + self.data_dim = None + self.monitors = None + + def add_monitor(self, before, options): + name = "I_before_" + before.name + mon = self.instr.add_component(name, "Monitor_nD", before=before) + + mon.set_parameters(restore_neutron=1, + xwidth=100, yheight=100, + options=options, + filename='"' + name + ".diag" + '"') + + mon.set_AT(before.AT_data, RELATIVE=before.AT_reference) + if before.ROTATED_specified: + mon.set_ROTATED(before.ROTATED_data, RELATIVE=before.ROTATED_reference) + + return name + + def run_general(self, variable=None, limits=None):#, start=None, end=None): + self.reset_instr() + self.remove_previous_use() + + if limits is None: + limit_string = "auto" + else: + if not isinstance(limits, list) or len(limits) != 2: + raise TypeError("limits has to be a list of length 2.") + limit_string = f"limits=[{limits[0]},{limits[1]}]" + + if variable is None: + options = f'"square boarders intensity"' + self.data_dim = 0 + else: + options = f'"square {variable} {limit_string} bins=300"' + self.data_dim = 1 + + self.monitors = [] + for comp in self.component_list[1:]: + mon_name = self.add_monitor(before=comp, options=options) + self.monitors.append((mon_name, comp.name)) + + self.correct_target_index() + + self.data = self.instr.backengine() + + def run(self):#, start=None, end=None): + self.reset_instr() + self.remove_previous_use() + + options = f'"square boarders intensity"' + self.monitors = [] + for comp in self.component_list[1:]: + mon_name = self.add_monitor(before=comp, options=options) + self.monitors.append((mon_name, comp.name)) + + self.correct_target_index() + + self.data = self.instr.backengine() + + def plot(self, figsize=None, ax=None, fig=None, show_comp_names=True, + y_tick_positions=None, ylimits=None): + + if self.data_dim == 0: + self.plot_0D(figsize=figsize, ax=ax, fig=fig, + show_comp_names=show_comp_names, + y_tick_positions=y_tick_positions, + ylimits=ylimits) + elif self.data_dim == 1: + self.plot_1D(figsize=figsize, ax=ax, fig=fig, + show_comp_names=show_comp_names, + y_tick_positions=y_tick_positions, + ylimits=ylimits) + + def plot_1D(self, figsize=None, ax=None, fig=None, show_comp_names=True, + y_tick_positions=None, ylimits=None): + + if figsize is None: + figsize = (8, len(self.component_list) / 5 + 1) + + data_sets = [] + for I_monitor_name, component_name in self.monitors: + mon_data = name_search(I_monitor_name, self.data) + intensity = mon_data.Intensity + axis = mon_data.xaxis + data_sets.append({"name": component_name, "I": intensity, "axis": axis}) + + if y_tick_positions is None: + y_positions = np.linspace(1, len(data_sets), len(data_sets)) + y_sep = y_positions[1] - y_positions[0] + y_positions = np.append(y_positions, y_positions[-1] + y_sep) + else: + #y_tick_positions.reverse() + y_positions = y_tick_positions + + # Find min and max for axis + for index, data_set in enumerate(data_sets): + if index == 0: + max_axis = max(data_set["axis"]) + min_axis = min(data_set["axis"]) + else: + max_axis = max(max(data_set["axis"]), max_axis) + min_axis = min(min(data_set["axis"]), min_axis) + + # New axis from min to max + n_bins = 300 + axis = np.linspace(min_axis, max_axis, n_bins) + sep = axis[1] - axis[0] + bin_axis = np.append(axis - 0.5 * sep, axis[-1] + sep) + intensities = np.zeros((len(data_sets), len(axis))) + + for index, data_set in enumerate(data_sets): + new_bins = np.digitize(data_set["axis"], bin_axis) + boarder_bins = np.where(new_bins == n_bins) + new_bins[boarder_bins] -= 1 + intensities[index, new_bins] += data_set["I"] + + if ax is None: + fig, ax = plt.subplots(1, 1, figsize=figsize) + + component_names = [x.name for x in self.original_instr.make_component_subset()] + component_names.reverse() + if not show_comp_names: + component_names = [""] * len(component_names) + + metadata = mon_data.metadata + metadata.dimension = [len(axis), len(y_positions) - 1] + metadata.limits = [0, 0, 0, 0] + metadata.limits[0] = min(axis) + metadata.limits[1] = max(axis) + metadata.limits[2] = min(y_positions) + metadata.limits[3] = max(y_positions) + + display_data = np.flip(intensities, 0) + data = McStasDataBinned(metadata, display_data, np.zeros((1, 1)), np.zeros((1, 1))) + + data.set_plot_options(show_colorbar=False, log=True, orders_of_mag=5) + data.set_ylabel("") + + _plot_fig_ax(data, fig, ax) + + ax.set_yticks(y_positions) + ax.set_yticklabels(component_names, fontsize=18) + ax.set_xlabel(mon_data.metadata.xlabel, fontsize=18) + + def plot_0D(self, figsize=None, ax=None, fig=None, show_comp_names=True, + y_tick_positions=None, ylimits=None): + + if figsize is None: + figsize = (8, len(self.component_list)/5 + 1) + + intensities = [] + ray_counts = [] + component_names = [] + indicies = [] + + index = 0 + for I_monitor_name, component_name in self.monitors: + mon_data = name_search(I_monitor_name, self.data) + values = mon_data.metadata.info["values"].split() + # values contain strings of: Intensity, Error, Ncount + intensities.append(float(values[0])) + ray_counts.append(float(values[2])) + component_names.append(component_name) + indicies.append(index) + index += 1 + + # Extend with the last one + intensities.append(intensities[-1]) + ray_counts.append(ray_counts[-1]) + indicies.append(index) + component_names = [self.component_list[0].name] + component_names + + if not show_comp_names: + component_names = [""] * len(component_names) + + if ax is None: + fig, ax = plt.subplots(1, 1, figsize=figsize) + + intensities.reverse() + ray_counts.reverse() + component_names.reverse() + + if y_tick_positions is None: + y_positions = indicies + else: + y_tick_positions.reverse() + y_positions = y_tick_positions + + # Ensure x scale for intensity and n count share same tick marks + I_limits, N_limits = common_range_limits(intensities, ray_counts) + + ax.step(intensities, y_positions, where="post", color="k", zorder=3.5) + ax.set_yticks(y_positions) + ax.set_yticklabels(component_names, fontsize=18) + ax.set_xlabel("Intensity [n/s]", fontsize=18, color="k") + ax.set_xscale("log", nonpositive='clip') + ax.xaxis.set_tick_params(labelsize=16) + ax.set_xlim(I_limits) + + if ylimits is None: + ax.set_ylim([-0.5, index + 0.5]) + else: + ax.set_ylim(ylimits) + + ax.grid(True) + + ax2 = ax.twiny() + ax2.step(ray_counts, y_positions, where="post", color="g", linestyle="--", zorder=3.6) + ax2.set_xlabel("Ray count", fontsize=18, color="g") + ax2.set_xscale("log", nonpositive='clip') + ax2.xaxis.set_tick_params(labelsize=16, colors="g") + ax2.set_xlim(N_limits) + +def common_range_limits(data_I, data_N): + # Convert to numpy + data_I = np.array(data_I) + data_I_nonzero = data_I[np.nonzero(data_I)] + data_N = np.array(data_N) + data_N_nonzero = data_N[np.nonzero(data_N)] + + max_I = max(data_I_nonzero) + min_I = min(data_I_nonzero) + I_orders_of_mag = np.log10(max_I) - np.log10(min_I) + + max_N = max(data_N_nonzero) + min_N = min(data_N_nonzero) + N_orders_of_mag = np.log10(max_N) - np.log10(min_N) + + I_is_largest = I_orders_of_mag > N_orders_of_mag + + if I_is_largest: + # Use intensity scale + max_large = max_I + min_large = min_I + max_small = max_N + else: + max_large = max_N + min_large = min_N + max_small = max_I + + log_extra = 0.1 # Extra scale to avoid having data just at the edge + + # Round I scale up + log_large_scale_max = np.ceil(np.log10(max_large)) + log_extra + log_large_scale_min = np.floor(np.log10(min_large)) + large_limits = [10 ** log_large_scale_min, 10 ** log_large_scale_max] + + # Find how many orders of mag this cover + large_orders_of_mag = log_large_scale_max - log_large_scale_min + + # Apply same to ray count + log_small_scale_max = np.ceil(np.log10(max_small)) + log_extra + log_small_scale_min = log_small_scale_max - large_orders_of_mag + small_limits = [10 ** log_small_scale_min, 10 ** log_small_scale_max] + + if I_is_largest: + I_limits = large_limits + N_limits = small_limits + else: + I_limits = small_limits + N_limits = large_limits + + return I_limits, N_limits \ No newline at end of file diff --git a/mcstasscript/instrument_diagnostics/plot_overview.py b/mcstasscript/instrument_diagnostics/plot_overview.py new file mode 100644 index 00000000..e35dbd9b --- /dev/null +++ b/mcstasscript/instrument_diagnostics/plot_overview.py @@ -0,0 +1,93 @@ +import numpy as np +import matplotlib.pyplot as plt + +class PlotOverview: + """ + Class for plotting list of views at different points in instrument + """ + def __init__(self, event_plotter_list, view_list): + """ + Stores list of event plotters and views, able to create figure + + parameters: + + event_plotter_list : list of EventPlotter objects + EventPlotter objects for each investigated point in instrument + + view_list : list of View objects + View specifications which will all be used for each point + """ + + self.event_plotter_list = event_plotter_list + self.n_points = len(event_plotter_list) + self.views = view_list + self.n_plots = len(view_list) + + def plot_all(self, figsize=None, same_scale=True): + """ + Plots all views for all guide points + + The same_scale features is enabled per default, but even then + individual Views can opt out of being drawn on the same scale. + + Parameters: + + figsize : tuple of length 2 + size of figure, default scales according to number of plots + + same_scale : bool + Allow the use of the same scale feature (default) + """ + if same_scale: + self.set_same_scale() + + if figsize is None: + # Scale size after number of plots + figsize = (1 + self.n_plots*3, self.n_points*3) + + fig, axs = plt.subplots(self.n_points, self.n_plots, + figsize=figsize, squeeze=False) + + for plotter, ax_row in zip(self.event_plotter_list, axs): + major_label_set = False + for view, ax in zip(self.views, ax_row): + plotter.plot(view=view, fig=fig, ax=ax) + + if not major_label_set: + ylabel = ax.get_ylabel() + row_name = plotter.name.replace("_", "\\ ") + new_label = r"$\bf{" + row_name + "}$" + "\n" + ylabel + ax.set_ylabel(new_label) + + major_label_set = True + + fig.tight_layout() + + def set_same_scale(self): + """ + Uses minimum and maximum of each dataset to find global min/max + """ + for view in self.views: + + if not view.same_scale: + # View controls same scale or not + continue + + axis1_mins = [] + axis1_maxs = [] + + axis2_mins = [] + axis2_maxs = [] + + for plotter in self.event_plotter_list: + lim_min, lim_max = plotter.get_view_limits_axis1(view) + axis1_mins.append(lim_min) + axis1_maxs.append(lim_max) + + lim_min, lim_max = plotter.get_view_limits_axis2(view) + axis2_mins.append(lim_min) + axis2_maxs.append(lim_max) + + view.set_axis1_limits(np.nanmin(axis1_mins), np.nanmax(axis1_maxs)) + if view.axis2 is not None: + view.set_axis2_limits(np.nanmin(axis2_mins), np.nanmax(axis2_maxs)) \ No newline at end of file diff --git a/mcstasscript/instrument_diagnostics/view.py b/mcstasscript/instrument_diagnostics/view.py new file mode 100644 index 00000000..ba73b6c5 --- /dev/null +++ b/mcstasscript/instrument_diagnostics/view.py @@ -0,0 +1,94 @@ +class View: + def __init__(self, axis1, axis2=None, bins=100, same_scale=False, + axis1_values=None, axis2_values=None, **kwargs): + """ + Plot view on one or two axis to be generated from event data + + The possible specifiers are defined in McStasEvenData and are + x : x position [m] + y : x position [m] + z : x position [m] + vx : x velocity [m/s] + vy : x velocity [m/s] + vz : x velocity [m/s] + speed : [m/s] + dx : divergence x [deg] + dy : divergence y [deg] + t : time [s] + l : wavelength [AA] + e : energy [meV] + + Parameters: + + axis1 : str + Specifier for first axis to be shown + + axis2 : str (optional) + Specifier for second axis to be shown + + bins : int or [int, int] + Number of bins for generation of histogram + + axis1_values : float or list of floats + Values that will be plotted as lines on plot + + axis2_values : float or list of floats + Values that will be plotted as lines on plot + + same_scale : bool + Controls whether all displays of this view is on same ranges + """ + self.same_scale = same_scale + + self.axis1 = axis1 + self.axis1_limits = None + + if isinstance(axis1_values, (float, int)): + axis1_values = [axis1_values] + self.axis1_values = axis1_values + + self.axis2 = axis2 + self.axis2_limits = None + if isinstance(axis2_values, (float, int)): + axis2_values = [axis2_values] + self.axis2_values = axis2_values + + self.bins = bins + + self.plot_options = kwargs + + def __repr__(self): + string = f"View ({self.axis1}" + if self.axis2 is not None: + string += f", {self.axis2}" + + string += ")" + string = string.ljust(25) + string += f" bins: {str(self.bins)}" + + return string + + def set_axis1_limits(self, start, end): + """ + Sets the axis1 limits + """ + if start > end: + raise ValueError("Start point over end for this view.") + + self.axis1_limits = start, end + + def set_axis2_limits(self, start, end): + """ + Sets the axis2 limits + """ + if start > end: + raise ValueError("Start point over end for this view.") + + self.axis2_limits = start, end + + def clear_limits(self): + """ + Clears all limits + """ + self.axis1_limits = None + self.axis2_limits = None \ No newline at end of file diff --git a/mcstasscript/instrument_diagram/__init__.py b/mcstasscript/instrument_diagram/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/instrument_diagram/arrow.py b/mcstasscript/instrument_diagram/arrow.py new file mode 100644 index 00000000..735274fc --- /dev/null +++ b/mcstasscript/instrument_diagram/arrow.py @@ -0,0 +1,191 @@ +class Arrow: + """ + Helper class for creating arrows with connections + """ + def __init__(self, origin, target, lane=None, kind=None, description=None): + """ + Arrow object with origin Component_box and target component_box + """ + self.origin = origin + self.target = target + self.kind = kind + self.description=description + + self.lane = lane + self.sub_lane = 0 + self.lane_width = None + self.lane_offset = 0 + + self.box_offset_origin = 0 + self.box_offset_target = 0 + + self.origin_linestyle = "-" + self.color = "blue" + self.alpha = 1.0 + self.arrow_width = 0.003 + self.arrow_length = 0.01 + self.connection = False + + self.origin_congested = False + self.target_congested = False + + def set_lane(self, lane): + self.lane = lane + + def set_sub_lane(self, lane): + self.sub_lane = lane + + def set_lane_width(self, lane_width): + self.lane_width = lane_width + + def set_lane_offset(self, offset): + self.lane_offset = offset + + def get_lane_value(self): + return self.lane_width * (self.lane + self.sub_lane * self.lane_offset) + + def set_connection(self, value): + self.connection = value + + def set_origin_congested(self, value): + self.origin_congested = value + + def set_target_congested(self, value): + self.target_congested = value + + def set_box_offset_origin(self, value): + """ + In units of box height + """ + self.box_offset_origin = value + + def get_box_offset_origin(self): + return self.origin.box_height * self.box_offset_origin + + def set_box_offset_target(self, value): + """ + In units of box height + """ + self.box_offset_target = value + + def get_box_offset_target(self): + return self.target.box_height * self.box_offset_target + + def set_arrow_width(self, value): + self.arrow_width = value + + def set_arrow_length(self, value): + self.arrow_length = value + + def set_linestyle(self, value): + self.origin_linestyle = value + + def set_alpha(self, value): + self.alpha = value + + def plot_left_side(self, ax): + # stop a bit before the lane and make a little triangle + triangle_leg_x = 0.25 * self.arrow_length + triangle_leg_y = 2.0 * self.arrow_width + + # box to lane + origin_x = self.origin.get_text_start() + origin_y = self.origin.position_y + self.get_box_offset_origin() + + origin_lane_x = origin_x - self.get_lane_value() + origin_lane_y = origin_y + + entry_point_x = origin_lane_x + triangle_leg_x + + x_points = [origin_x, entry_point_x] + y_points = [origin_y, origin_lane_y] + + # lane + target_x = self.target.get_text_start() + target_y = self.target.position_y + self.get_box_offset_target() + + target_lane_x = target_x - self.get_lane_value() + target_lane_y = target_y + + exit_point_x = target_lane_x + triangle_leg_x + + # Plot lane but ease in and out of the lane with a small triangle + x_points += [entry_point_x, origin_lane_x, origin_lane_x, target_lane_x, origin_lane_x, exit_point_x] + y_points += [origin_lane_y, origin_lane_y + triangle_leg_y, origin_lane_y + triangle_leg_y, + target_lane_y - triangle_leg_y, target_lane_y - triangle_leg_y, target_lane_y] + ax.plot(x_points, y_points, color=self.color, linestyle=self.origin_linestyle) + + # lane to box + arrow_length = self.target.get_text_start() - target_lane_x - triangle_leg_x + ax.arrow(x=target_lane_x + triangle_leg_x, y=target_lane_y, + dx=arrow_length, dy=0, + color=self.color, length_includes_head=True, + width=self.arrow_width, head_width=5.0*self.arrow_width, + head_length=self.arrow_length) + + def plot_right_side(self, ax, text_end): + # stop a bit before the lane and make a little triangle + triangle_leg_x = 0.25 * self.arrow_length + triangle_leg_y = 2.0 * self.arrow_width + + # origin to lane + origin_x = self.origin.get_text_end() + origin_y = self.origin.position_y + self.get_box_offset_origin() + + origin_lane_x = text_end + self.get_lane_value() + origin_lane_y = origin_y + + entry_point_x = origin_lane_x - triangle_leg_x + + x_points = [origin_x, entry_point_x] + y_points = [origin_y, origin_lane_y] + + """ + ax.plot([origin_x, entry_point_x], [origin_y, origin_lane_y], + color=self.color, linestyle=self.origin_linestyle, alpha=self.alpha) + """ + + if self.description is not None and not self.origin_congested: + bbox = dict(boxstyle="round", facecolor="white", edgecolor="white", alpha=0.85) + ax.text(0.5*(origin_x + origin_lane_x), origin_lane_y, + self.description, ha="center", va="center", bbox=bbox) + + # lane + target_y = self.target.position_y + self.get_box_offset_target() + + target_lane_x = text_end + self.get_lane_value() + target_lane_y = target_y + + exit_point_x = target_lane_x - triangle_leg_x + + if target_lane_y < origin_lane_y: + leg_dir = 1 + else: + leg_dir = -1 + + triangle_leg_y_dir = leg_dir * triangle_leg_y + + # Plot lane but ease in and out of it with a small triangle + x_points += [entry_point_x, target_lane_x, origin_lane_x, target_lane_x, origin_lane_x, exit_point_x] + y_points += [origin_lane_y, origin_lane_y - triangle_leg_y_dir, origin_lane_y - triangle_leg_y_dir, + target_lane_y + triangle_leg_y_dir, target_lane_y + triangle_leg_y_dir, target_lane_y] + ax.plot(x_points, y_points, color=self.color, alpha=self.alpha, linestyle=self.origin_linestyle) + + # target + if self.connection: + mid_point = 0.5*(target_lane_x + self.target.get_text_end()) + ax.plot([target_lane_x - triangle_leg_x, self.target.get_text_end()], + [target_lane_y, target_lane_y], color=self.color, alpha=self.alpha) + else: + arrow_length = target_lane_x - self.target.get_text_end() - triangle_leg_x + mid_point = target_lane_x - 0.5*arrow_length + ax.arrow(x=target_lane_x - triangle_leg_x, y=target_lane_y, + dx=-arrow_length, dy=0, + color=self.color, length_includes_head=True, + width=self.arrow_width, head_width=5.0*self.arrow_width, + head_length=self.arrow_length, alpha=self.alpha) + + if self.description is not None and not self.target_congested: + bbox = dict(boxstyle="round", facecolor="white", edgecolor="white", alpha=0.85) + ax.text(mid_point, target_lane_y, + self.description, ha="center", va="center", bbox=bbox) \ No newline at end of file diff --git a/mcstasscript/instrument_diagram/box.py b/mcstasscript/instrument_diagram/box.py new file mode 100644 index 00000000..2f95010e --- /dev/null +++ b/mcstasscript/instrument_diagram/box.py @@ -0,0 +1,87 @@ +import matplotlib.pyplot as plt +from mcstasscript.helper.mcstas_objects import Component + +class ComponentBox: + """ + Helper class for creating text boxes describing components + """ + def __init__(self, box_input): + """ + Text box object + """ + # set defaults + self.position_x = None + self.position_y = None + self.box_height = None + self.box_indent = None + self.background_color = "white" + self.outline_style = "-" + self.outline_width = 1 + + self.t = None # text object + self.graph_box_end = None # graph position where text ends + self.graph_box_start = None # graph position where text ends + + # Load component + if isinstance(box_input, str): + self.component_object = None + self.name = box_input + elif isinstance(box_input, Component): + self.component_object = box_input + self.name = self.component_object.name + + # Decorate the box depending on the McStas features used + if self.component_object.WHEN != "": + self.outline_style = "--" + + if self.component_object.EXTEND != "": + self.outline_width = 2.5 + else: + raise ValueError("Input for box needs to be of type Component or str, not " + + str(type(box_input))) + + # Produced weighted length of name, capital letters count for 1.2 + self.weighted_name_length = len(self.name) + 0.2*sum(1 for c in self.name if c.isupper()) + + def set_box_height(self, box_height): + self.box_height = box_height + + def set_x(self, x): + self.position_x = x + + def set_y(self, y): + self.position_y = y + + def set_box_indent(self, value): + self.box_indent = value + + def set_background_color(self, value): + self.background_color = value + + def plot_box(self, ax): + bbox = dict(boxstyle="round", facecolor=self.background_color, + edgecolor="black", linestyle=self.outline_style, + linewidth=self.outline_width) + + self.t = ax.text(self.position_x + self.box_indent, self.position_y, self.name, + va="center", fontweight="semibold", color="black", #font="monospace", + bbox=bbox) + + def get_text_start(self): + return self.graph_box_start + + def get_text_end(self): + return self.graph_box_end + + def calculate_bbox_dimensions(self, ax, graph_width): + """ + Method that gets dimensions of plotted text box + """ + transf = ax.transAxes.inverted() + bb = self.t.get_window_extent(renderer=plt.gcf().canvas.get_renderer()) + bbox = bb.transformed(transf) + + TEXT_PADDING_IN_FIG_UNITS = 0.08 + box_padding = TEXT_PADDING_IN_FIG_UNITS / graph_width + self.graph_box_start = bbox.x0 - box_padding + self.graph_box_end = bbox.x1 + box_padding \ No newline at end of file diff --git a/mcstasscript/instrument_diagram/canvas.py b/mcstasscript/instrument_diagram/canvas.py new file mode 100644 index 00000000..a2d5a391 --- /dev/null +++ b/mcstasscript/instrument_diagram/canvas.py @@ -0,0 +1,458 @@ +import copy + +import matplotlib.pyplot as plt +import numpy as np + +from mcstasscript.instrument_diagram.box import ComponentBox +from mcstasscript.instrument_diagram.component_description import component_description + +class DiagramCanvas: + def __init__(self, left_side_arrows, component_boxes, right_side_arrows, + component_categories, colors, intensity_diagnostics=None, + variable=None, limits=None): + """ + Creates diagram of instrument file with given boxes and arrows + + Makes diagram with column of boxes with arrows between them. The boxes + are described by the ComponentBox class and arrows by Arrow class. Some + arrows are drawn on the left side, AT and ROTATED relationships, while + more advanced connections are on the right side. A legend is provided + where the colors corresponding to component categories are shown along + with the arrow colors used for different features. The right side + arrows only show up in the legend when in use to reduce clutter. When + using this diagram in matplotlib widget mode, it is possible get more + information on each component by hovering the mouse of the beginning + the component box. + + If intensity_diagnostics is given with an IntensityDiagnostics object, + a graph of the intensity and n rays throughout the instrument is + generated instead of the right side arrows. + """ + self.left_side_arrows = left_side_arrows + self.component_boxes = component_boxes + self.right_side_arrows = right_side_arrows + self.all_arrows = left_side_arrows + right_side_arrows + self.component_categories = component_categories + self.colors = colors + + self.variable = variable + self.limits = limits + if intensity_diagnostics is None: + self.intensity_analysis_mode = False + else: + self.intensity_analysis_mode = True + self.intensity_diagnostics = intensity_diagnostics + + # Identify cases where multiple written input goes to or from same box + arrow_connections = {x: [] for x in self.component_boxes} + for arrow in self.right_side_arrows: + arrow_connections[arrow.origin].append(arrow) + arrow_connections[arrow.target].append(arrow) + + for box in arrow_connections: + arrows = arrow_connections[box] + if len(arrows) > 1: # Only look at cases with more than one arrow to / from box + # Find unique kinds + kinds_entry = set() + kinds_exit = set() + for arrow in arrows: + if arrow.target is box: + kinds_entry.add(arrow.kind) + + if arrow.origin is box: + kinds_exit.add(arrow.kind) + + n_collected_arrows = len(kinds_entry) + len(kinds_exit) + if n_collected_arrows == 1: + # If there is only one kind and direction, we are done + continue + + # Distribute placements on the box equally for the different kinds / with entry/exit kept apart + displacements = list(np.linspace(-0.16, 0.16, n_collected_arrows)) + + entry_displacements = {} + exit_displacements = {} + for arrow in arrows: + + if arrow.target is box: + arrow.set_target_congested(True) # Mark congested, avoids writing description on the line + + if arrow.kind in entry_displacements: + arrow.set_box_offset_target(entry_displacements[arrow.kind]) + else: + displacement = displacements.pop() + entry_displacements[arrow.kind] = displacement + arrow.set_box_offset_target(displacement) + + if arrow.origin is box: + arrow.set_origin_congested(True) # Mark congested, avoids writing description on the line + + if arrow.kind in exit_displacements: + arrow.set_box_offset_origin(exit_displacements[arrow.kind]) + else: + displacement = displacements.pop() + exit_displacements[arrow.kind] = displacement + arrow.set_box_offset_origin(displacement) + + # Style constants + self.FIG_HEIGHT_PER_BOX = 0.4 + self.FIG_WIDTH_PER_LANE = 0.33 + self.FIG_WIDTH_PER_WEIGHTED_CHARACTER = 0.122 + self.FIG_EXTRA_WIDTH_FOR_TEXT = 0.15 + self.FIG_LEFT_MARGIN = self.FIG_WIDTH_PER_LANE * 0.5 + self.FIG_RIGHT_MARGIN = self.FIG_WIDTH_PER_LANE * 0.5 + self.FIG_LEGEND_HEADLINE = 0.2 + if self.intensity_analysis_mode: + self.FIG_RIGHT_SIDE_MINIMUM_SPACE = 5 + else: + self.FIG_RIGHT_SIDE_MINIMUM_SPACE = 3 + + self.graph_height = self.FIG_HEIGHT_PER_BOX * len(component_boxes) + + # Distribute boxes over graph height + margin = 0.5/len(component_boxes) + box_height_centers = np.linspace(1 - margin, margin, len(component_boxes)) + box_height = (1 - 2 * margin) / len(component_boxes) + for box, y_pos in zip(component_boxes, box_height_centers): + box.set_y(y_pos) + box.set_box_height(box_height) + + lane_numbers = [x.lane for x in left_side_arrows] + [0] + self.highest_lane_left = max(lane_numbers) + + lane_numbers = [x.lane for x in right_side_arrows] + [0] + self.highest_lane_right = max(lane_numbers) + + weighted_box_names = [x.weighted_name_length for x in component_boxes] + self.characters_in_longest_name = max(weighted_box_names) + + self.left_space = self.highest_lane_left * self.FIG_WIDTH_PER_LANE + self.box_space = self.characters_in_longest_name * self.FIG_WIDTH_PER_WEIGHTED_CHARACTER + self.FIG_EXTRA_WIDTH_FOR_TEXT + self.right_space = self.highest_lane_right * self.FIG_WIDTH_PER_LANE + + self.right_space = max(self.right_space, self.FIG_RIGHT_SIDE_MINIMUM_SPACE) + + self.graph_width = self.FIG_LEFT_MARGIN + self.left_space + self.box_space + self.right_space + self.FIG_RIGHT_MARGIN + + self.text_start_graph = (self.FIG_LEFT_MARGIN + self.left_space) / self.graph_width + self.text_end_graph = (self.FIG_LEFT_MARGIN + self.left_space + self.box_space) / self.graph_width + + lane_width = self.left_space/self.graph_width/self.highest_lane_left + + # Arrow width and height in graph units, compensate for graph size to roughly equalize + arrow_width = 0.02 / (self.graph_height + 0.5) # added constant to avoid asymptote near 0 + arrow_length = 0.2 / (self.graph_width + 0.05) + + # Rescale all + for arrow in self.all_arrows: + arrow.set_lane_width(lane_width) + arrow.set_lane_offset(0.18) + arrow.set_arrow_width(arrow_width) + arrow.set_arrow_length(arrow_length) + + for box in self.component_boxes: + box.set_box_indent(self.FIG_EXTRA_WIDTH_FOR_TEXT/self.graph_width) + box.set_x(self.text_start_graph) # Places boxes so they get name_width space + + # Prepare legend + all_categories = list(set(component_categories.values())) + if "work directory" not in all_categories: + all_categories.append("work directory") + all_categories.sort() + + # Colors from http://vrl.cs.brown.edu/color + category_colors = ["#7487fb", "#81cc4c", "#e586fe", "#fe707d", + "#00d618", "#ffa300", "#cc9966", "#53c6ef", + "#baa3c6", "#aebf8a"] + + needed_colors = category_colors[:len(all_categories)] + self.category_color_dict = dict(zip(all_categories, needed_colors)) + + active_categories = [] + for box in self.component_boxes: + if box.component_object is None: + continue + + category = component_categories[box.component_object.component_name] + if category not in active_categories: + active_categories.append(category) + + self.legend_height = self.FIG_LEGEND_HEADLINE + self.FIG_HEIGHT_PER_BOX * (len(all_categories) // 2) + + def make_legend(self): + + box_top = 1 - self.FIG_LEGEND_HEADLINE / self.legend_height + + fig, ax = plt.subplots(figsize=(6.2, self.legend_height)) + ax.set(xlim=(0, 1), ylim=(0, 1)) + ax.get_xaxis().set_ticks([]) + ax.get_yaxis().set_ticks([]) + + bbox = dict(boxstyle="round", facecolor="white", edgecolor="white") + + ax.text(0.385, 1.03, "Legend", va="center", ha="center", fontweight="semibold", bbox=bbox, fontsize="large") + + legend_boxes = [ComponentBox("Arm")] + for category, color in self.category_color_dict.items(): + box = ComponentBox(category) + box.set_background_color(color) + legend_boxes.append(box) + + # Color components boxes after same color scheme + for box in self.component_boxes: + if box.component_object is None: + continue + + component_type = box.component_object.component_name + if component_type == "Arm": + box.set_background_color("white") + else: + component_category = self.component_categories[component_type] + box.set_background_color(self.category_color_dict[component_category]) + + batch_cut = len(legend_boxes) // 2 + batches = [legend_boxes[:batch_cut], legend_boxes[batch_cut:]] + + batch_end = 0.0 + for batch in batches: + margin = 0.5 / len(batch) + box_height_centers = np.linspace(box_top, margin, len(batch)) + box_height = (1 - 2 * margin) / len(batch) + for box, y_pos in zip(batch, box_height_centers): + box.set_x(batch_end) + box.set_y(y_pos) + box.set_box_height(box_height) + box.set_box_indent(self.FIG_EXTRA_WIDTH_FOR_TEXT / self.graph_width) + + box.plot_box(ax) + + fig.canvas.draw() + for box in batch: + box.calculate_bbox_dimensions(ax, self.graph_width) + + box_ends = [x.graph_box_end for x in batch] + batch_end = max(box_ends) + + # Always show AT and RELATIVE, but the others only when present + show_GROUP = False + show_Union = False + show_JUMP_target_index = False + any_JUMP = False + any_target_index = False + for arrow in self.all_arrows: + if arrow.kind == "GROUP": + show_GROUP = True + if arrow.kind == "JUMP": + show_JUMP_target_index = True + any_JUMP = True + if arrow.kind == "target_index": + show_JUMP_target_index = True + any_target_index = True + if arrow.kind == "Union": + show_Union = True + + arrow_width = 0.012 + AT_HEIGHT = 0.83 + START_WIDTH = 0.47 + TEXT_WIDTH_INDENT = 0.01 + DISPLACEMENT = 0.2 + TEXT_DISPLACEMENT = 0.08 + LINE_LENGTH = 0.33 + + current_displacement = 0 + ax.arrow(x=START_WIDTH, y=AT_HEIGHT + current_displacement, dx=LINE_LENGTH, dy=0, color=self.colors["AT"], + length_includes_head=True, width=arrow_width, + head_width=5.0 * arrow_width, head_length=2.5 * arrow_width) + ax.text(START_WIDTH+TEXT_WIDTH_INDENT, AT_HEIGHT + TEXT_DISPLACEMENT + current_displacement, + "RELATIVE AT", va="center", weight="semibold") + + current_displacement -= DISPLACEMENT + ax.arrow(x=START_WIDTH, y=AT_HEIGHT+current_displacement, dx=LINE_LENGTH, dy=0, color=self.colors["ROTATED"], + length_includes_head=True, width=arrow_width, + head_width=5.0 * arrow_width, head_length=2.5 * arrow_width) + ax.text(START_WIDTH + TEXT_WIDTH_INDENT, AT_HEIGHT + current_displacement + TEXT_DISPLACEMENT, + "RELATIVE ROTATED", va="center", weight="semibold") + + if show_Union: + current_displacement -= DISPLACEMENT + ax.arrow(x=START_WIDTH, y=AT_HEIGHT + current_displacement, dx=LINE_LENGTH, dy=0, + color=self.colors["Union"], length_includes_head=True, width=arrow_width, + head_width=5.0 * arrow_width, head_length=2.5 * arrow_width) + ax.text(START_WIDTH + TEXT_WIDTH_INDENT, AT_HEIGHT + current_displacement + TEXT_DISPLACEMENT, + "Union", va="center", weight="semibold") + + if show_JUMP_target_index: + if any_JUMP and any_target_index: + legend_text = "JUMP / target_index" + elif any_JUMP: + legend_text = "JUMP" + elif any_target_index: + legend_text = "target_index" + + current_displacement -= DISPLACEMENT + ax.arrow(x=START_WIDTH, y=AT_HEIGHT+current_displacement, dx=LINE_LENGTH, dy=0, + color=self.colors["JUMP"], length_includes_head=True, width=arrow_width, + head_width=5.0 * arrow_width, head_length=2.5 * arrow_width) + ax.text(START_WIDTH + TEXT_WIDTH_INDENT, AT_HEIGHT+current_displacement+TEXT_DISPLACEMENT, + legend_text, va="center", weight="semibold") + + if show_GROUP: + current_displacement -= DISPLACEMENT + ax.plot([START_WIDTH, START_WIDTH+LINE_LENGTH], 2*[AT_HEIGHT + current_displacement], + color=self.colors["GROUP"]) + ax.text(START_WIDTH + TEXT_WIDTH_INDENT, AT_HEIGHT + current_displacement + TEXT_DISPLACEMENT, + "GROUP", va="center", weight="semibold") + + box_y_coordinates = list(np.linspace(margin, box_top, 5)) + box_x_coordinate = 0.83 + + # Check if any boxes are decorated for EXTEND or WHEN + for box in self.component_boxes: + if box.component_object is not None: + if box.component_object.EXTEND != "": + EXTEND_box = copy.deepcopy(box) + EXTEND_box.name = "EXTEND" + EXTEND_box.background_color = "white" + EXTEND_box.set_x(box_x_coordinate) + EXTEND_box.set_y(box_y_coordinates.pop()) + EXTEND_box.plot_box(ax) + break + + for box in self.component_boxes: + if box.component_object is not None: + if box.component_object.WHEN != "": + WHEN_box = copy.deepcopy(box) + WHEN_box.name = "WHEN" + WHEN_box.background_color = "white" + WHEN_box.set_x(box_x_coordinate) + WHEN_box.set_y(box_y_coordinates.pop()) + WHEN_box.plot_box(ax) + break + + def plot(self): + + self.make_legend() + + fig, ax = plt.subplots(figsize=(self.graph_width, self.graph_height)) + ax.set(xlim=(0, 1), ylim=(0, 1)) + ax.axis("off") + + # Start by placing scatter points corresponding to the start of each box + box_x = [] + box_y = [] + box_info = [] + for box in self.component_boxes: + box_x.append(box.position_x + box.box_indent) + box_y.append(box.position_y) + if box.component_object is None: + info = box.name + else: + info = component_description(box.component_object) + box_info.append(info) + + # These scatter points will be the basis for mouse hovering showing annotations + sc = ax.scatter(box_x, box_y, color="white") + + # Plot all the boxes + for box in self.component_boxes: + box.plot_box(ax) + + fig.canvas.draw() + for box in self.component_boxes: + # Calculate the box end position, requires they are already drawn + box.calculate_bbox_dimensions(ax, self.graph_width) + + for arrow in self.left_side_arrows: + # Plot arrows on left side + arrow.plot_left_side(ax) + + if not self.intensity_analysis_mode: + for arrow in self.right_side_arrows: + # Plot arrows on right side + arrow.plot_right_side(ax, self.text_end_graph) + else: + # Make insert with intensity and ray count graph + + # Find x coordinate of insert + box_ends = [b.get_text_end() for b in self.component_boxes] + latest_box_end = max(box_ends) + remaining_space = 1.0 - latest_box_end + axes_start_x = latest_box_end + 0.05 * remaining_space # 0.1 works well if no names shown + + # Get y position for all boxes, but skip ABSOLUTE box + y_positions = [box.position_y for box in self.component_boxes[1:]] + y_spacing = y_positions[0] - y_positions[1] + + if self.variable is None: + upper_y_lim = y_positions[0] + 0.5 * y_spacing + lower_y_lim = y_positions[-1] - 0.5 * y_spacing + else: + upper_y_lim = y_positions[0] + lower_y_lim = y_positions[-1] + + # Insert is done in figure coordinate system, need mother ax dimensions + ax_pos = ax.get_position() + + # Find figure coordinates of the corners of the desired inset + inset_y_bottom = ax_pos.y0 + lower_y_lim*(ax_pos.y1 - ax_pos.y0) + inset_y_top = ax_pos.y0 + upper_y_lim*(ax_pos.y1 - ax_pos.y0) + + inset_x_start = ax_pos.x0 + axes_start_x*(ax_pos.x1 - ax_pos.x0) + inset_x_end = ax_pos.x1 + + # Create inset + inset_ax = fig.add_axes((inset_x_start, inset_y_bottom, + inset_x_end-inset_x_start, + inset_y_top-inset_y_bottom)) + + # Ensure the new axis is plotted under the old one for annotations to show up + ax.set_zorder(4) + + # Plot graph, convey tick positions and ylimits to match main diagram + self.intensity_diagnostics.run_general(variable=self.variable, limits=self.limits) + self.intensity_diagnostics.plot(ax=inset_ax, fig=fig, + y_tick_positions=y_positions, + ylimits=[lower_y_lim, upper_y_lim], + show_comp_names=False) + + + # Create anotation box that will be shown when hovering the mouse over a box + annot = ax.annotate("", xy=(0, 0), xytext=(20, 10), textcoords="offset points", + va="center", annotation_clip=False, + bbox=dict(boxstyle="round", fc="w")) + annot.set_visible(False) + + # Helper function to update the anotation box with correct text + def update_annot(ind): + pos = sc.get_offsets()[ind["ind"][0]] + annot.xy = pos + + n_lines_in_info = len(box_info[ind["ind"][0]].split("\n")) + if n_lines_in_info > 4: + annot.set_position((20, n_lines_in_info*(5 - pos[1]*10))) + else: + annot.set_position((20, 0)) + + text = "{}".format(" ".join([box_info[n] for n in ind["ind"]])) + annot.set_text(text) + annot.get_bbox_patch().set_facecolor([0.95, 0.95, 0.95]) + + # Helper function to detect hovering and update annotation accordingly + def hover(event): + vis = annot.get_visible() + if event.inaxes == ax: + cont, ind = sc.contains(event) + if cont: + update_annot(ind) + annot.set_visible(True) + fig.canvas.draw_idle() + else: + if vis: + annot.set_visible(False) + fig.canvas.draw_idle() + + # Connect the hover function to the canvas event signal + fig.canvas.mpl_connect("motion_notify_event", hover) + + # Show the figure + plt.show() \ No newline at end of file diff --git a/mcstasscript/instrument_diagram/component_description.py b/mcstasscript/instrument_diagram/component_description.py new file mode 100644 index 00000000..ff3fc89e --- /dev/null +++ b/mcstasscript/instrument_diagram/component_description.py @@ -0,0 +1,71 @@ +from libpyvinyl.Parameters.Parameter import Parameter +from mcstasscript.helper.mcstas_objects import DeclareVariable + +def component_description(component): + """ + Returns string of information about the component + + Includes information on required parameters if they are not yet + specified. Information on the components are added when the + class is used as a superclass for classes describing each + McStas component. Uses mathtext for bold and italics. + """ + string = "" + + if len(component.c_code_before) > 1: + string += component.c_code_before + "\n" + if len(component.comment) > 1: + string += "// " + component.comment + "\n" + if component.SPLIT != 0: + string += "SPLIT " + str(component.SPLIT) + " " + string += "COMPONENT " + str(component.name) + string += " = $\\bf{" + str(component.component_name).replace("_", "\\_") + "}$\n" + for key in component.parameter_names: + val = getattr(component, key) + parameter_name = key + if val is not None: + unit = "" + if key in component.parameter_units: + unit = "[" + component.parameter_units[key] + "]" + if isinstance(val, Parameter): + val_string = val.name + elif isinstance(val, DeclareVariable): + val_string = val.name + else: + val_string = str(val) + + value = "$\\bf{" + val_string.replace("_", "\\_").replace('\"', "''").replace('"', "\''") + "}$" + string += " $\\bf{" + parameter_name.replace("_", "\\_") + "}$" + string += " = " + value + " " + unit + "\n" + else: + if component.parameter_defaults[key] is None: + string += " $\\bf{" + parameter_name.replace("_", "\\_") + "}$" + string += " : $\\bf{Required\\ parameter\\ not\\ yet\\ specified}$\n" + + if not component.WHEN == "": + string += component.WHEN + "\n" + + string += "AT " + str(component.AT_data) + if component.AT_reference is None: + string += " $\\it{ABSOLUTE}$\n" + else: + string += " RELATIVE $\\it{" + component.AT_reference.replace("_", "\\_") + "}$\n" + + if component.ROTATED_specified: + string += "ROTATED " + str(component.ROTATED_data) + if component.ROTATED_reference is None: + string += " $\\it{ABSOLUTE}$\n" + else: + string += " $\\it{" + component.ROTATED_reference.replace("_", "\\_") + "}$\n" + + if not component.GROUP == "": + string += "GROUP " + component.GROUP + "\n" + if not component.EXTEND == "": + string += "EXTEND %{" + "\n" + string += component.EXTEND + "%}" + "\n" + if not component.JUMP == "": + string += "JUMP " + component.JUMP + "\n" + if len(component.c_code_after) > 1: + string += component.c_code_after + "\n" + + return string.strip() diff --git a/mcstasscript/instrument_diagram/connections.py b/mcstasscript/instrument_diagram/connections.py new file mode 100644 index 00000000..65d1fe2d --- /dev/null +++ b/mcstasscript/instrument_diagram/connections.py @@ -0,0 +1,131 @@ +class IndexConnection: + def __init__(self, start_index, end_index): + self.start_index = start_index + self.end_index = end_index + + if start_index <= end_index: + self.interval_start = start_index + self.interval_end = end_index + else: + self.interval_start = end_index + self.interval_end = start_index + + def compatible_with(self, new): + """ + Check if the new interval can coexist with the existing + """ + if new.interval_end > self.interval_start and new.interval_start < self.interval_end: + return False + + return True + + +class Lane: + def __init__(self): + self.connections = [] + + def add_connection(self, start_index, end_index): + """ + If possible adds connection and returns True, otherwise returns False + """ + new_connection = IndexConnection(start_index, end_index) + + # A line can skip on either start or end, not both + skipped_end = False + skipped_start = False + + # Check if there is room for this lane + for connection in self.connections: + # Check for number of reasons for connection being allowed + if connection.start_index == new_connection.start_index and not skipped_end: + # Allow connections to collide when the start index matches + skipped_start = True + continue + + if connection.end_index == new_connection.end_index and not skipped_start: + # Allow connections to collide when the end index matches + skipped_end = True + continue + + if connection.compatible_with(new_connection): + # Allow if there are no index overlap in lane + continue + + # If connection incompatible, return false + return False + + # No problems, this connection can be included in this lane + self.connections.append(new_connection) + return True + + +class Connection: + def __init__(self, origin, target, info=None): + """ + Describes a connection between origin and target with lane number + + Can contain info as well which can be used for example to mark + if the connection is part of a certain group. + """ + self.origin = origin + self.target = target + self.lane_number = None + self.info = info + + def set_lane_number(self, value): + self.lane_number = value + + +class ConnectionList: + def __init__(self): + """ + List of connections with utility functions + + Can distribute the connections over a number of lanes to ensure all + connections can be seen without crossing that provide ambitious + interpretations. + """ + self.connections = [] + + def add(self, origin, target, info=None): + self.connections.append(Connection(origin, target, info=info)) + + def get_connections(self): + return self.connections + + def get_origins(self): + return [x.origin for x in self.connections] + + def get_targets(self): + return [x.target for x in self.connections] + + def get_pairs(self): + return zip(self.get_origins(), self.get_targets()) + + def get_targets_for_origin(self, given_origin): + + return_targets = [] + for origin, target in self.get_pairs(): + if origin == given_origin: + return_targets.append(target) + + return return_targets + + def distribute_lane_numbers(self, box_names): + lanes = [] + + for connection in self.connections: + start_index = box_names.index(connection.origin.name) + end_index = box_names.index(connection.target.name) + + proposed_lane = 0 + while True: + if proposed_lane >= len(lanes): + lanes.append(Lane()) + + if lanes[proposed_lane].add_connection(start_index=start_index, end_index=end_index): + connection.set_lane_number(proposed_lane + 1) + break + + proposed_lane += 1 + diff --git a/mcstasscript/instrument_diagram/generate_AT.py b/mcstasscript/instrument_diagram/generate_AT.py new file mode 100644 index 00000000..99cd66ff --- /dev/null +++ b/mcstasscript/instrument_diagram/generate_AT.py @@ -0,0 +1,43 @@ +from mcstasscript.instrument_diagram.connections import ConnectionList +from mcstasscript.instrument_diagram.arrow import Arrow + + +def generate_AT_arrows(components, component_box_dict, box_names, color=None): + """ + Generate Arrow objects related to the AT relationship of components + """ + connections = ConnectionList() + for component in components: + origin = component_box_dict[component.name] + if component.AT_reference is None: + target = component_box_dict["ABSOLUTE"] + elif component.AT_reference == "PREVIOUS": + origin_index = box_names.index(component.name) + target_index = origin_index - 1 + target = component_box_dict[box_names[target_index]] + else: + target = component_box_dict[component.AT_reference] + + connections.add(origin, target) + + connections.distribute_lane_numbers(box_names=box_names) + + arrows = [] + for connection in connections.get_connections(): + origin = connection.origin + target = connection.target + lane = connection.lane_number + + arrow = Arrow(origin, target, lane=lane, kind="AT") + + arrow.set_box_offset_origin(0.24) + arrow.set_box_offset_target(-0.2) + if color is None: + arrow.color = "blue" + else: + arrow.color = color + # arrow.set_linestyle("--") + + arrows.append(arrow) + + return arrows diff --git a/mcstasscript/instrument_diagram/generate_GROUP.py b/mcstasscript/instrument_diagram/generate_GROUP.py new file mode 100644 index 00000000..a4f5f7b6 --- /dev/null +++ b/mcstasscript/instrument_diagram/generate_GROUP.py @@ -0,0 +1,48 @@ +from mcstasscript.instrument_diagram.connections import ConnectionList +from mcstasscript.instrument_diagram.arrow import Arrow + + +def generate_GROUP_arrows(components, component_box_dict, box_names, color=None): + """ + Generate Arrow objects related to the GROUP keyword + """ + connections = ConnectionList() + + groups = {} + for component in components: + if component.GROUP != "": + group_reference = component.GROUP + if group_reference not in groups: + groups[group_reference] = [component_box_dict[component.name]] + else: + groups[group_reference].append(component_box_dict[component.name]) + + for group_name, group_members in groups.items(): + if len(group_members) == 1: + # Meaningless group + continue + base = group_members[0] + connected_list = group_members[1:] + + for connected in connected_list: + connections.add(connected, base, info=group_name) + + connections.distribute_lane_numbers(box_names=box_names) + + arrows = [] + for connection in connections.get_connections(): + origin = connection.origin + target = connection.target + lane = connection.lane_number + 2 # Make room for group name + group_name = connection.info + + arrow = Arrow(origin, target, lane=lane, kind="GROUP", description=group_name) + arrow.set_connection(True) + if color is None: + arrow.color = [0.4, 0.4, 0.4] + else: + arrow.color = color + + arrows.append(arrow) + + return arrows diff --git a/mcstasscript/instrument_diagram/generate_JUMP.py b/mcstasscript/instrument_diagram/generate_JUMP.py new file mode 100644 index 00000000..f245ef63 --- /dev/null +++ b/mcstasscript/instrument_diagram/generate_JUMP.py @@ -0,0 +1,38 @@ +from mcstasscript.instrument_diagram.connections import ConnectionList +from mcstasscript.instrument_diagram.arrow import Arrow + + +def generate_JUMP_arrows(components, component_box_dict, box_names, color=None): + """ + Generate Arrow objects related to the JUMP keyword + """ + connections = ConnectionList() + + for component in components: + if component.JUMP != "": + jump_reference = component.JUMP.split(" ")[0] + if jump_reference not in component_box_dict: + raise ValueError("JUMP reference: " + str(jump_reference) + + " not found.") + + origin = component_box_dict[component.name] + connections.add(origin, component_box_dict[jump_reference]) + + connections.distribute_lane_numbers(box_names=box_names) + + arrows = [] + for connection in connections.get_connections(): + origin = connection.origin + target = connection.target + lane = connection.lane_number + 2 # Make room for group name + + arrow = Arrow(origin, target, lane=lane, kind="JUMP", description="JUMP") + arrow.set_sub_lane(1) + if color is None: + arrow.color = "black" + else: + arrow.color = color + + arrows.append(arrow) + + return arrows diff --git a/mcstasscript/instrument_diagram/generate_ROTATED.py b/mcstasscript/instrument_diagram/generate_ROTATED.py new file mode 100644 index 00000000..13019b65 --- /dev/null +++ b/mcstasscript/instrument_diagram/generate_ROTATED.py @@ -0,0 +1,47 @@ +from mcstasscript.instrument_diagram.connections import ConnectionList +from mcstasscript.instrument_diagram.arrow import Arrow + + +def generate_ROTATED_arrows(components, component_box_dict, box_names, color=None): + """ + Generate Arrow objects related to the ROTATED relationship of components + """ + connections = ConnectionList() + lane_numbers = {} + for component in components: + if not component.ROTATED_specified: + continue + + origin = component_box_dict[component.name] + if component.ROTATED_reference is None: + target = component_box_dict["ABSOLUTE"] + elif component.ROTATED_reference == "PREVIOUS": + origin_index = box_names.index(component.name) + target_index = origin_index - 1 + target = component_box_dict[box_names[target_index]] + else: + target = component_box_dict[component.ROTATED_reference] + + connections.add(origin, target) + + connections.distribute_lane_numbers(box_names=box_names) + + arrows = [] + for connection in connections.get_connections(): + origin = connection.origin + target = connection.target + lane = connection.lane_number + + arrow = Arrow(origin, target, lane=lane, kind="ROTATED") + + arrow.set_sub_lane(1) + arrow.set_box_offset_origin(0.16) + arrow.set_box_offset_target(-0.05) + if color is None: + arrow.color = "red" + else: + arrow.color = color + + arrows.append(arrow) + + return arrows diff --git a/mcstasscript/instrument_diagram/generate_Union.py b/mcstasscript/instrument_diagram/generate_Union.py new file mode 100644 index 00000000..1b46a33a --- /dev/null +++ b/mcstasscript/instrument_diagram/generate_Union.py @@ -0,0 +1,174 @@ +from mcstasscript.instrument_diagram.connections import ConnectionList +from mcstasscript.instrument_diagram.arrow import Arrow + + +def generate_Union_arrows(components, component_box_dict, box_names, component_categories, color=None): + """ + Generate Arrow objects related to use of Union components + + Currently supports processes, materials, geometries and master. Can be + expanded to also support loggers, abs_loggers and conditionals. + """ + connections = ConnectionList() + + process_names = [] + material_names = [] + geometry_names = [] + simulated_geometry_names = [] + abs_loggers = [] + loggers = [] + conditionals = [] + master_names = [] + geometry_activation_counters = {} + for component in components: + category = component_categories[component.component_name] + if category == "union" or True: + if "_process" in component.component_name: + # Process component + process_names.append(component.name) + + elif component.component_name == "Union_make_material": + # Make material component + material_names.append(component.name) + + process_string = component.process_string + if not isinstance(process_string, str): + continue + + processes = process_string.strip('"').split(",") + for process in processes: + if process not in process_names: + print("Didn't find process of name '" + process + "'") + print(process_names) + else: + origin = component_box_dict[process] + connections.add(origin, component_box_dict[component.name]) + + elif "material_string" in component.parameter_names: + # Geometry + geometry_names.append(component.name) + + if component.number_of_activations is not None: + try: + # If a number is given, it can be used directly + number_of_activations = int(component.number_of_activations) + except: + # If a variable or parameter is used, it can't be known ahead of time, assume 1 + number_of_activations = 1 + else: + number_of_activations = component.parameter_defaults["number_of_activations"] + + geometry_activation_counters[component.name] = number_of_activations + + if component.material_string is not None: + simulated_geometry_names.append(component.name) + + if isinstance(component.material_string, str): + material = component.material_string.strip('"') + if material not in material_names: + if material not in ["Vacuum", "vacuum", "Exit", "exit"]: + print("Didn't find material of name '" + material + "'") + print(material_names) + else: + origin = component_box_dict[material] + connections.add(origin, component_box_dict[component.name]) + + if isinstance(component.mask_string, str): + masks = component.mask_string.strip('"').split(",") + for mask in masks: + if mask not in geometry_names: + print("Didn't find geometry target of name '" + mask + "'") + print(geometry_names) + else: + target = component_box_dict[mask] + connections.add(component_box_dict[component.name], target) + + elif "_logger" in component.component_name: + + if "_abs_logger" in component.component_name: + # Absoption logger + abs_loggers.append(component.name) + abs_logger = True + else: + # Scattering logger + loggers.append(component.name) + abs_logger = False + + target_geometry = component.target_geometry + if isinstance(target_geometry, str): + geometries = target_geometry.strip('"').split(",") + for geometry in geometries: + if geometry not in simulated_geometry_names: + print(component.name) + print("Didn't find geometry of name '" + geometry + "'") + print(simulated_geometry_names) + else: + origin = component_box_dict[geometry] + connections.add(origin, component_box_dict[component.name]) + + if abs_logger: + # Abs loggers do not have target_process, as they target absorption + continue + + target_process = component.target_process + if isinstance(target_process, str): + processes = target_process.strip('"').split(",") + for process in processes: + if process not in process_names: + print(component.name) + print("Didn't find process of name '" + process + "'") + print(process_names) + else: + origin = component_box_dict[process] + connections.add(origin, component_box_dict[component.name]) + + elif "target_loggers" in component.parameter_names: + # Conditional + conditionals.append(component.name) + + target_loggers = component.target_loggers + if isinstance(target_loggers, str): + loggers = target_loggers.strip('"').split(",") + for logger in loggers: + if logger not in loggers + abs_loggers: + print(component.name) + print("Didn't find logger with name '" + logger + "'") + print(loggers, abs_loggers) + else: + target = component_box_dict[logger] + connections.add(component_box_dict[component.name], target) + + elif component.component_name == "Union_master": + # Master + master_names.append(component.name) + + for geometry in simulated_geometry_names: + if geometry_activation_counters[geometry] > 0: # May need to account for floating point precision + # Only include if activation counter for this geometry is still positive + geometry_activation_counters[geometry] -= 1 + + origin = component_box_dict[geometry] + connections.add(origin, component_box_dict[component.name]) + + connections.distribute_lane_numbers(box_names=box_names) + + arrows = [] + for connection in connections.get_connections(): + origin = connection.origin + target = connection.target + lane = connection.lane_number + + arrow = Arrow(origin, target, lane=lane, kind="Union") + arrow.set_sub_lane(2) + + if color is None: + arrow.color = "green" + else: + arrow.color = color + + if target.name in master_names: + arrow.set_linestyle("--") + + arrows.append(arrow) + + return arrows diff --git a/mcstasscript/instrument_diagram/generate_target_index.py b/mcstasscript/instrument_diagram/generate_target_index.py new file mode 100644 index 00000000..7bf62fd3 --- /dev/null +++ b/mcstasscript/instrument_diagram/generate_target_index.py @@ -0,0 +1,58 @@ +from mcstasscript.instrument_diagram.connections import ConnectionList +from mcstasscript.instrument_diagram.arrow import Arrow + + +def generate_target_index_arrows(components, component_box_dict, box_names, color=None): + """ + Generate Arrow objects related to the target_index + """ + connections = ConnectionList() + component_names = [x.name for x in components] + + for component in components: + if not hasattr(component, "target_index"): + # Component doesnt have the target_index setting + continue + if component.target_index is None: + # A value has not been specified for target_index setting + continue + if component.target_index == 0: + # target_index is disabled + continue + + try: + int(component.target_index) + except: + # Skip cases where target_index is not an integer + continue + + this_component_index = component_names.index(component.name) + target_component_index = this_component_index + int(component.target_index) + target_component_reference = component_names[target_component_index] + + if target_component_reference not in component_box_dict: + raise ValueError("target_index reference: " + + str(target_component_reference) + + " not found.") + + origin = component_box_dict[component.name] + connections.add(origin, component_box_dict[target_component_reference]) + + connections.distribute_lane_numbers(box_names=box_names) + + arrows = [] + for connection in connections.get_connections(): + origin = connection.origin + target = connection.target + lane = connection.lane_number + 3 # Make room for target_index + + arrow = Arrow(origin, target, lane=lane, kind="target_index", description="target_index") + arrow.set_sub_lane(2) + if color is None: + arrow.color = "black" + else: + arrow.color = color + + arrows.append(arrow) + + return arrows diff --git a/mcstasscript/instrument_diagram/make_diagram.py b/mcstasscript/instrument_diagram/make_diagram.py new file mode 100644 index 00000000..4925bb3a --- /dev/null +++ b/mcstasscript/instrument_diagram/make_diagram.py @@ -0,0 +1,94 @@ +import copy + +from mcstasscript.instrument_diagram.box import ComponentBox +from mcstasscript.instrument_diagram.generate_AT import generate_AT_arrows +from mcstasscript.instrument_diagram.generate_ROTATED import generate_ROTATED_arrows +from mcstasscript.instrument_diagram.generate_JUMP import generate_JUMP_arrows +from mcstasscript.instrument_diagram.generate_target_index import generate_target_index_arrows +from mcstasscript.instrument_diagram.generate_GROUP import generate_GROUP_arrows +from mcstasscript.instrument_diagram.generate_Union import generate_Union_arrows +from mcstasscript.instrument_diagram.canvas import DiagramCanvas +from mcstasscript.instrument_diagnostics.intensity_diagnostics import IntensityDiagnostics + + +def instrument_diagram(instrument, analysis=False, variable=None, limits=None): + """ + Plots diagram of components in instrument with RELATIVE connections + + All components in the instrument are shown as text fields and arrows are + drawn showing the AT RELATIVE and ROTATED RELATIVE connections between + components. When more advanced features are used, these are displayed + with arrows on the right side of the diagram, currently JUMP, GROUP and + use of Union components are visualized. + + Parameters + ---------- + + instrument : McCode_instr + Instrument object from which the component list is taken + """ + + # Grab components from instrument file and make text box objects + components = instrument.make_component_subset() + + # Prepare legend + component_reader = instrument.component_reader + component_categories = copy.deepcopy(component_reader.component_category) + + absolute_box = ComponentBox("ABSOLUTE") + component_boxes = [absolute_box] + component_box_dict = {"ABSOLUTE": absolute_box} + for component in components: + box = ComponentBox(component) + component_boxes.append(box) + component_box_dict[component.name] = box + + box_names = [x.name for x in component_boxes] + + color_choices = {"AT": "blue", "ROTATED": "red", "JUMP": "black", "GROUP": [0.4, 0.4, 0.4], "Union": "green"} + + # Arrows for the left side of the diagram + AT_arrows = generate_AT_arrows(components, component_box_dict, box_names, color=color_choices["AT"]) + ROTATED_arrows = generate_ROTATED_arrows(components, component_box_dict, box_names, color=color_choices["ROTATED"]) + + # Arrow for the right side of the diagram + try: + JUMP_arrows = generate_JUMP_arrows(components, component_box_dict, box_names, color=color_choices["JUMP"]) + except: + JUMP_arrows = [] + print("Generation of JUMP arrows failed, please send bug report.") + + try: + target_index_arrows = generate_target_index_arrows(components, component_box_dict, + box_names, color=color_choices["JUMP"]) + except: + target_index_arrows = [] + print("Generation of target_index arrows failed, please send bug report.") + + try: + GROUP_arrows = generate_GROUP_arrows(components, component_box_dict, box_names, color=color_choices["GROUP"]) + except: + GROUP_arrows = [] + print("Generation of GROUP arrows failed, please send bug report.") + + try: + Union_arrows = generate_Union_arrows(components, component_box_dict, box_names, + component_categories, color=color_choices["Union"]) + except: + Union_arrows = [] + print("Generation of Union arrows failed, please send bug report.") + + intensity_diagnostics=None + if analysis or variable is not None: + intensity_diagnostics = IntensityDiagnostics(instrument) + intensity_diagnostics.settings(suppress_output=True) + + # Create canvas + canvas = DiagramCanvas(AT_arrows + ROTATED_arrows, component_boxes, + JUMP_arrows + target_index_arrows + GROUP_arrows + Union_arrows, + component_categories=component_categories, colors=color_choices, + intensity_diagnostics=intensity_diagnostics, variable=variable, + limits=limits) + + # Plot diagram + canvas.plot() \ No newline at end of file diff --git a/mcstasscript/integration_tests/__init__.py b/mcstasscript/integration_tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/integration_tests/test_complex_instrument.py b/mcstasscript/integration_tests/test_complex_instrument.py new file mode 100644 index 00000000..d5a30a5d --- /dev/null +++ b/mcstasscript/integration_tests/test_complex_instrument.py @@ -0,0 +1,247 @@ +import io +import os +import unittest +import unittest.mock +import matplotlib as plt +import threading + +from mcstasscript.interface import instr, functions +from mcstasscript.jb_interface.simulation_interface import SimInterface + + +class FakeChange: + def __init__(self, new=None, old=None, name=None): + self.new = new + self.old = old + self.name = name + + +def setup_complex_instrument(): + """ + Sets up guide system with two guides that are placed next to one + another with separate entrances but converge at the end. + + It attempts to use as many McStas keywords and features as possible. + """ + Instr = instr.McStas_instr("integration_test_complex", + author="test_suite", + origin="integration tests") + + Instr.add_parameter("guide_width", value=0.03) + Instr.add_parameter("guide_length", value=8.0) + + source = Instr.add_component("source", "Source_simple") + source.xwidth = 0.1 + source.yheight = 0.01 + source.dist = 1.5 + source.focus_xw = "3*guide_width" + source.focus_yh = 0.05 + source.E0 = 5.0 + source.dE = 1.0 + source.flux = 1E10 + + Instr.add_declare_var("int", "guide_choice") + Instr.add_declare_var("double", "source_to_guide_end") + Instr.append_initialize("source_to_guide_end = 1.5 + guide_length;") + + after_guide = Instr.add_component("after_guide", "Arm", + AT=[0, 0, "source_to_guide_end"], + RELATIVE="source") + after_guide.append_EXTEND("guide_choice = -1;") + + # Add first slit with component methods + slit1 = Instr.add_component("slit1", "Slit") + slit1.set_AT(["1.3*guide_width", 0, 1.5], RELATIVE="source") + slit1.xwidth = "guide_width" + slit1.yheight = 0.05 + slit1.append_EXTEND("if (SCATTERED) {") + slit1.append_EXTEND(" guide_choice = 1;") + slit1.append_EXTEND("}") + slit1.set_GROUP("entrance_slits") + + # Add second slit with set_parameters + slit2 = Instr.add_component("slit2", "Slit") + slit2.set_AT(["-1.3*guide_width", 0, 1.5]) + slit2.set_RELATIVE("source") + slit2.set_parameters(xwidth="guide_width", yheight=0.05) + slit2.append_EXTEND("if (SCATTERED) {") + slit2.append_EXTEND(" guide_choice = 2;") + slit2.append_EXTEND("}") + slit2.set_GROUP("entrance_slits") + + select1 = Instr.add_component("select1", "Arm", RELATIVE="after_guide") + select1.set_JUMP("select2 WHEN guide_choice == 2") + + guide1 = Instr.add_component("guide1", "Guide_gravity") + guide1.set_AT([0, 0, 0.1], RELATIVE="slit1") + guide1.set_ROTATED([0, "-RAD2DEG*atan(0.5*guide_width/guide_length)", 0], + RELATIVE="slit1") + guide1.w1 = "guide_width" + guide1.w2 = "1.3*guide_width" + guide1.h1 = 0.05 + guide1.h2 = 0.05 + guide1.l = "guide_length" + guide1.m = 4 + guide1.G = -9.82 + + select2 = Instr.add_component("select2", "Arm", RELATIVE="after_guide") + select2.set_JUMP("done WHEN guide_choice == 1") + + guide2 = Instr.add_component("guide2", "Guide_gravity") + guide2.set_AT([0, 0, 0.1], RELATIVE="slit2") + guide2.set_ROTATED([0, "RAD2DEG*atan(0.5*guide_width/guide_length)", 0], + RELATIVE="slit2") + guide2.w1 = "guide_width" + guide2.w2 = "1.3*guide_width" + guide2.h1 = 0.05 + guide2.h2 = 0.05 + guide2.l = "guide_length" + guide2.m = 4 + guide2.G = -9.82 + + guide2.set_SPLIT = 2 + + Instr.add_component("done", "Arm", RELATIVE="after_guide") + + PSD1 = Instr.add_component("PSD_1D_1", "PSDlin_monitor") + PSD1.set_AT([0, 0, 0.2], RELATIVE="after_guide") + PSD1.xwidth = 0.1 + if Instr.mccode_version > 2: + PSD1.nbins = 100 + else: + PSD1.nx = 100 + PSD1.yheight = 0.03 + PSD1.filename = "\"PSD1.dat\"" + PSD1.restore_neutron = 1 + PSD1.set_WHEN("guide_choice == 1") + + PSD2 = Instr.add_component("PSD_1D_2", "PSDlin_monitor") + PSD2.set_AT([0, 0, 0.2], RELATIVE="after_guide") + PSD2.xwidth = 0.1 + if Instr.mccode_version > 2: + PSD2.nbins = 100 + else: + PSD2.nx = 100 + PSD2.yheight = 0.03 + PSD2.filename = "\"PSD2.dat\"" + PSD2.restore_neutron = 1 + PSD2.set_WHEN("guide_choice == 2") + + PSD = Instr.add_component("PSD_1D", "PSDlin_monitor") + PSD.set_AT([0, 0, 0.2], RELATIVE="after_guide") + PSD.xwidth = 0.1 + if Instr.mccode_version > 2: + PSD.nbins = 100 + else: + PSD.nx = 100 + PSD.yheight = 0.03 + PSD.filename = "\"PSD_all.dat\"" + PSD.restore_neutron = 1 + + Instr.append_finally("guide_choice = -1;") + + return Instr + + +class TestComplexInstrument(unittest.TestCase): + """ + Integration test of a full instrument with McStas simulation + performed by the system. The configuration file needs to be set up + correctly in order for these tests to succeed. + """ + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_complex_instrument_run(self, mock_stdout): + """ + Test parameters can be controlled through McStasScript. Here + a slit is moved to one side and the result is verified. + """ + CURRENT_DIR = os.getcwd() + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + os.chdir(THIS_DIR) + + Instr = setup_complex_instrument() + + data = Instr.run_full_instrument(foldername="integration_test_complex", + ncount=2E6, mpi=2, + increment_folder_name=True, + parameters={"guide_width": 0.03, + "guide_length": 8.0}) + + os.chdir(CURRENT_DIR) + + intensity_data_pos = functions.name_search("PSD_1D_1", data).Intensity + sum_outside_beam = sum(intensity_data_pos[0:50]) + sum_inside_beam = sum(intensity_data_pos[51:99]) + self.assertTrue(1000*sum_outside_beam < sum_inside_beam) + + intensity_data_neg = functions.name_search("PSD_1D_2", data).Intensity + sum_outside_beam = sum(intensity_data_neg[51:99]) + sum_inside_beam = sum(intensity_data_neg[0:50]) + self.assertTrue(1000*sum_outside_beam < sum_inside_beam) + + intensity_data_all = functions.name_search("PSD_1D", data).Intensity + sum_outside_beam = sum(intensity_data_all[49:51]) + sum_inside_beam = (sum(intensity_data_all[0:45]) + + sum(intensity_data_all[56:99])) + self.assertTrue(1000*sum_outside_beam < sum_inside_beam) + + # Could have the plot window up for some short time + # Need to use plt.draw instead of plt.show in plotter + # plotter.make_sub_plot(data) + # time.sleep(10) + # plt.close() + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_complex_instrument_interface(self, mock_stdout): + """ + Test that a simulation can be performed through the simulation + interface, or as close as I can through scripting. + Need to join the simulation thread to the main thread in order + to wait for the completion as it is performed in a new thread. + """ + CURRENT_DIR = os.getcwd() + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + os.chdir(THIS_DIR) + + Instr = setup_complex_instrument() + + interface = SimInterface(Instr) + interface.show_interface() + + change = FakeChange() + + """ + interface.run_simulation_thread(change) + + for thread in threading.enumerate(): + if thread.name != "MainThread": + thread.join() + """ + + interface.run_simulation_live(change) + + data = interface.plot_interface.data + + os.chdir(CURRENT_DIR) + + print(data) + + intensity_data_pos = functions.name_search("PSD_1D_1", data).Intensity + sum_outside_beam = sum(intensity_data_pos[0:50]) + sum_inside_beam = sum(intensity_data_pos[51:99]) + self.assertTrue(1000 * sum_outside_beam < sum_inside_beam) + + intensity_data_neg = functions.name_search("PSD_1D_2", data).Intensity + sum_outside_beam = sum(intensity_data_neg[51:99]) + sum_inside_beam = sum(intensity_data_neg[0:50]) + self.assertTrue(1000 * sum_outside_beam < sum_inside_beam) + + intensity_data_all = functions.name_search("PSD_1D", data).Intensity + sum_outside_beam = sum(intensity_data_all[49:51]) + sum_inside_beam = (sum(intensity_data_all[0:45]) + + sum(intensity_data_all[56:99])) + self.assertTrue(1000 * sum_outside_beam < sum_inside_beam) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/integration_tests/test_input_folder/PSDlin_monitor.comp b/mcstasscript/integration_tests/test_input_folder/PSDlin_monitor.comp new file mode 100644 index 00000000..9ebc4a33 --- /dev/null +++ b/mcstasscript/integration_tests/test_input_folder/PSDlin_monitor.comp @@ -0,0 +1,125 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* %I +* Written by: Kim Lefmann +* Date: May 7, 2001 +* Version: $Revision$ + Origin: Risoe +* Release: McStas 1.6 +* +* Rectangular 1D PSD, measuring intensity vs. vertical position, x +* +* %D +* +* Example: PSDlin_monitor(nx=20, filename="Output.x", xmin=-0.1, xmax=0.1, ymin=-0.1, ymax=0.1) +* +* %P +* INPUT PARAMETERS: +* +* xmin: Lower x bound of detector opening [m] +* xmax: Upper x bound of detector opening [m] +* ymin: Lower y bound of detector opening [m] +* ymax: Upper y bound of detector opening [m] +* xwidth: Width of detector. Overrides xmin, xmax [m] +* yheight: Height of detector. Overrides ymin, ymax [m] +* nx: Number of x bins [1] +* filename: Name of file in which to store the detector image [string] +* restore_neutron: If set, the monitor does not influence the neutron state [1] +* nowritefile: [1] If set, monitor will skip writing to disk +* +* OUTPUT PARAMETERS: +* +* PSDlin_N: Array of neutron counts +* PSDlin_p: Array of neutron weight counts +* PSDlin_p2: Array of second moments +* +* %E +******************************************************************************/ + +DEFINE COMPONENT PSDlin_monitor +DEFINITION PARAMETERS (nx=20) +SETTING PARAMETERS (string filename=0, xmin=-0.05, xmax=0.05, ymin=-0.05, ymax=0.05, + xwidth=0, yheight=0, restore_neutron=0, int nowritefile=0) +OUTPUT PARAMETERS (PSDlin_N, PSDlin_p, PSDlin_p2) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +DECLARE + %{ + double PSDlin_N[nx]; + double PSDlin_p[nx]; + double PSDlin_p2[nx]; + %} + +INITIALIZE + %{ + int i; + + if (xwidth > 0) { xmax = xwidth/2; xmin = -xmax; } + if (yheight > 0) { ymax = yheight/2; ymin = -ymax; } + + if ((xmin >= xmax) || (ymin >= ymax)) { + printf("PSDlin_monitor: %s: Null detection area !\n" + "ERROR (xwidth,yheight,xmin,xmax,ymin,ymax). Exiting", + NAME_CURRENT_COMP); + exit(0); + } + + for (i=0; ixmin && xymin && y= nx) || (i<0)) + { + printf("FATAL ERROR: wrong positioning in linear PSD. i= %i \n",i); + exit(1); + } + PSDlin_N[i]++; + PSDlin_p[i] += p; + PSDlin_p2[i] += p*p; + } + if (restore_neutron) { + RESTORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p); + } + %} + +SAVE + %{ + if (!nowritefile) { + DETECTOR_OUT_1D( + "Linear PSD monitor", + "Test", + "TEST I", + "x", xmin, xmax, nx, + &PSDlin_N[0],&PSDlin_p[0],&PSDlin_p2[0], + filename); + } + %} + +MCDISPLAY +%{ + + multiline(5, (double)xmin, (double)ymin, 0.0, + (double)xmax, (double)ymin, 0.0, + (double)xmax, (double)ymax, 0.0, + (double)xmin, (double)ymax, 0.0, + (double)xmin, (double)ymin, 0.0); +%} + +END diff --git a/mcstasscript/integration_tests/test_input_folder/PSDlin_monitor_3.comp b/mcstasscript/integration_tests/test_input_folder/PSDlin_monitor_3.comp new file mode 100644 index 00000000..f9297440 --- /dev/null +++ b/mcstasscript/integration_tests/test_input_folder/PSDlin_monitor_3.comp @@ -0,0 +1,151 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* %I +* Written by: Kim Lefmann +* Date: May 7, 2001 +* Origin: Risoe +* +* Rectangular 1D PSD, measuring intensity vs. position along an axis, +* +* %D +* A 1-dimensional PSD measuring intensity along either the horizontal axis x (default) or +* the vertical axis y. +* +* +* Example: PSDlin_monitor(nbins=20, filename="Output.x", xmin=-0.1, xmax=0.1, ymin=-0.1, ymax=0.1) +* +* %P +* INPUT PARAMETERS: +* +* xmin: [m] Lower x bound of detector opening. +* xmax: [m] Upper x bound of detector opening. +* ymin: [m] Lower y bound of detector opening. +* ymax: [m] Upper y bound of detector opening. +* xwidth: [m] Width of detector. Overrides xmin, xmax. +* yheight: [m] Height of detector. Overrides ymin, ymax. +* nbins: [1] Number of positional bins. +* filename: [str] Name of file in which to store the detector image. +* vertical: [1] Flag to indicate whether the monitor measures along the horiz. or vert. axis +* restore_neutron: [1] If set, the monitor does not influence the neutron state. +* nowritefile: [1] If set, monitor will skip writing to disk +* +* OUTPUT PARAMETERS: +* +* PSDlin_N: Array of neutron counts +* PSDlin_p: Array of neutron weight counts +* PSDlin_p2: Array of second moments +* +* %E +******************************************************************************/ + +DEFINE COMPONENT PSDlin_monitor_3 +DEFINITION PARAMETERS () +SETTING PARAMETERS (int nbins=20, string filename=0, xmin=-0.05, xmax=0.05, ymin=-0.05, ymax=0.05, int nowritefile=0, + xwidth=0, yheight=0, int restore_neutron=0, int vertical=0) +OUTPUT PARAMETERS () +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +DECLARE +%{ + DArray1d PSDlin_N; + DArray1d PSDlin_p; + DArray1d PSDlin_p2; +%} + +INITIALIZE +%{ + int i; + + if (xwidth > 0) { xmax = xwidth/2; xmin = -xmax; } + if (yheight > 0) { ymax = yheight/2; ymin = -ymax; } + + if ((xmin >= xmax) || (ymin >= ymax)) { + printf("PSDlin_monitor: %s: Null detection area !\n" + "ERROR (xwidth,yheight,xmin,xmax,ymin,ymax). Exiting", + NAME_CURRENT_COMP); + exit(0); + } + + PSDlin_N = create_darr1d(nbins); + PSDlin_p = create_darr1d(nbins); + PSDlin_p2 = create_darr1d(nbins); + + for (i=0; ixmin && xymin && y= nbins) || (i<0)) + { + printf("ERROR: (%s) wrong positioning in linear PSD. i= %i \n",NAME_CURRENT_COMP,i); + exit(1); + } + double p2 = p*p; + #pragma acc atomic + PSDlin_N[i] = PSDlin_N[i] +1; + #pragma acc atomic + PSDlin_p[i] = PSDlin_p[i] + p; + #pragma acc atomic + PSDlin_p2[i] = PSDlin_p2[i] + p2; + SCATTER; + } + if (restore_neutron) { + RESTORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p); + } +%} + +SAVE +%{ +if (!nowritefile) { + if (!vertical){ + DETECTOR_OUT_1D( + "Linear PSD monitor","Test","Intensity","x", xmin, xmax, nbins, + &PSDlin_N[0],&PSDlin_p[0],&PSDlin_p2[0],filename); + }else{ + DETECTOR_OUT_1D( + "Linear PSD monitor","Test","Intensity","y", ymin, ymax, nbins, + &PSDlin_N[0],&PSDlin_p[0],&PSDlin_p2[0],filename); + } +} +%} + +FINALLY +%{ + destroy_darr1d(PSDlin_N); + destroy_darr1d(PSDlin_p); + destroy_darr1d(PSDlin_p2); +%} + +MCDISPLAY +%{ + multiline(5, (double)xmin, (double)ymin, 0.0, + (double)xmax, (double)ymin, 0.0, + (double)xmax, (double)ymax, 0.0, + (double)xmin, (double)ymax, 0.0, + (double)xmin, (double)ymin, 0.0); +%} + +END diff --git a/mcstasscript/integration_tests/test_simple_instrument.py b/mcstasscript/integration_tests/test_simple_instrument.py new file mode 100644 index 00000000..17325e86 --- /dev/null +++ b/mcstasscript/integration_tests/test_simple_instrument.py @@ -0,0 +1,257 @@ +import io +import os +import unittest.mock + +from mcstasscript.interface import instr + + +def setup_simple_instrument(): + Instr = instr.McStas_instr("integration_test_simple") + + source = Instr.add_component("source", "Source_div") + + source.xwidth = 0.03 + source.yheight = 0.01 + source.focus_aw = 0.01 + source.focus_ah = 0.01 + source.E0 = 81.81 + source.dE = 1.0 + source.flux = 1E10 + + PSD = Instr.add_component("PSD_1D", "PSDlin_monitor") + + PSD.set_AT([0, 0, 1], RELATIVE="source") + PSD.xwidth = 0.1 + if Instr.mccode_version > 2: + PSD.nbins = 100 + else: + PSD.nx = 100 + PSD.yheight = 0.03 + PSD.filename = "\"PSD.dat\"" + PSD.restore_neutron = 1 + + return Instr + + +def setup_simple_instrument_input_path(): + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + input_path = os.path.join(THIS_DIR, "test_input_folder") + + Instr = instr.McStas_instr("integration_test_simple_input", + input_path=input_path) + + source = Instr.add_component("source", "Source_div") + + source.xwidth = 0.03 + source.yheight = 0.01 + source.focus_aw = 0.01 + source.focus_ah = 0.01 + source.E0 = 81.81 + source.dE = 1.0 + source.flux = 1E10 + + if Instr.mccode_version > 2: + PSD = Instr.add_component("PSD_1D", "PSDlin_monitor_3") + else: + PSD = Instr.add_component("PSD_1D", "PSDlin_monitor") + + PSD.set_AT([0, 0, 1], RELATIVE="source") + PSD.xwidth = 0.1 + if Instr.mccode_version > 2: + PSD.nbins = 100 + else: + PSD.nx = 100 + PSD.yheight = 0.03 + PSD.filename = "\"PSD.dat\"" + PSD.restore_neutron = 1 + + return Instr + + +def setup_simple_slit_instrument(): + Instr = instr.McStas_instr("integration_test_simple") + + source = Instr.add_component("source", "Source_div") + source.xwidth = 0.1 + source.yheight = 0.01 + source.focus_aw = 0.01 + source.focus_ah = 0.01 + source.E0 = 81.81 + source.dE = 1.0 + source.flux = 1E10 + + Instr.add_parameter("slit_offset", value=0) + + Slit = Instr.add_component("slit", "Slit") + Slit.set_AT(["slit_offset", 0, 0.5], RELATIVE="source") + Slit.xwidth = 0.01 + Slit.yheight = 0.03 + + PSD = Instr.add_component("PSD_1D", "PSDlin_monitor") + PSD.set_AT([0, 0, 1], RELATIVE="source") + PSD.xwidth = 0.1 + if Instr.mccode_version > 2: + PSD.nbins = 100 + else: + PSD.nx = 100 + PSD.yheight = 0.03 + PSD.filename = "\"PSD.dat\"" + PSD.restore_neutron = 1 + + return Instr + + +class TestSimpleInstrument(unittest.TestCase): + """ + Integration test of a full instrument with McStas simulation + performed by the system. The configuration file needs to be set up + correctly in order for these tests to succeed. + """ + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_simple_instrument(self, mock_stdout): + """ + Test that an instrument can run and that the results match + expectations. Here beam in small area in the middle of the + detector. + """ + CURRENT_DIR = os.getcwd() + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + os.chdir(THIS_DIR) + + Instr = setup_simple_instrument() + + data = Instr.run_full_instrument(foldername="integration_test_simple", + ncount=1E6, mpi=1, + increment_folder_name=True) + + os.chdir(CURRENT_DIR) + + intensity_data = data[0].Intensity + # beam should be on pixel 35 to 65 + + sum_outside_beam = (sum(intensity_data[0:34]) + + sum(intensity_data[66:99])) + sum_inside_beam = sum(intensity_data[35:65]) + + self.assertTrue(1000*sum_outside_beam < sum_inside_beam) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_simple_instrument_input(self, mock_stdout): + """ + Test that an instrument can run and that the results match + expectations. Here beam in small area in the middle of the + detector. + """ + CURRENT_DIR = os.getcwd() + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + os.chdir(THIS_DIR) + + Instr = setup_simple_instrument_input_path() + + foldername = "integration_test_simple_input" + data = Instr.run_full_instrument(foldername=foldername, + ncount=1E6, mpi=1, + increment_folder_name=True) + + os.chdir(CURRENT_DIR) + + intensity_data = data[0].Intensity + # beam should be on pixel 35 to 65 + + sum_outside_beam = (sum(intensity_data[0:34]) + + sum(intensity_data[66:99])) + sum_inside_beam = sum(intensity_data[35:65]) + + self.assertTrue(1000*sum_outside_beam < sum_inside_beam) + + # Check component from input_folder read + self.assertEqual(data[0].metadata.xlabel, "Test") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_simple_instrument_mpi(self, mock_stdout): + """ + Test that an instrument can run and that the results matches + expectations. Here beam in small area in the middle of the + detector. Running with mpi, 2 cores. + """ + CURRENT_DIR = os.getcwd() + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + os.chdir(THIS_DIR) + + Instr = setup_simple_instrument() + + data = Instr.run_full_instrument(foldername="integration_test_mpi", + ncount=1E6, mpi=2, + increment_folder_name=True) + + os.chdir(CURRENT_DIR) + + intensity_data = data[0].Intensity + # beam should be on pixel 35 to 65 + + sum_outside_beam = (sum(intensity_data[0:34]) + + sum(intensity_data[66:99])) + sum_inside_beam = sum(intensity_data[35:65]) + + self.assertTrue(1000*sum_outside_beam < sum_inside_beam) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_slit_instrument(self, mock_stdout): + """ + Test parameters can be controlled through McStasScript. Here + a slit can be moved, but the default value of 0 should be + used. + """ + CURRENT_DIR = os.getcwd() + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + os.chdir(THIS_DIR) + + Instr = setup_simple_slit_instrument() + + foldername = "integration_test_slit" + data = Instr.run_full_instrument(foldername=foldername, + ncount=2E6, mpi=2, + increment_folder_name=True) + + os.chdir(CURRENT_DIR) + + intensity_data = data[0].Intensity + # beam should be on pixel 45 to 55 + + sum_outside_beam = (sum(intensity_data[0:44]) + + sum(intensity_data[56:99])) + sum_inside_beam = sum(intensity_data[45:55]) + self.assertTrue(1000*sum_outside_beam < sum_inside_beam) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_slit_moved_instrument(self, mock_stdout): + """ + Test parameters can be controlled through McStasScript. Here + a slit is moved to one side and the result is verified. + """ + CURRENT_DIR = os.getcwd() + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + os.chdir(THIS_DIR) + + Instr = setup_simple_slit_instrument() + + data = Instr.run_full_instrument(foldername="integration_test_slit", + ncount=2E6, mpi=2, + increment_folder_name=True, + parameters={"slit_offset": 0.03}) + + os.chdir(CURRENT_DIR) + + intensity_data = data[0].Intensity + # beam should be on pixel 75 to 85 + + sum_outside_beam = (sum(intensity_data[0:74]) + + sum(intensity_data[86:99])) + sum_inside_beam = sum(intensity_data[75:85]) + + self.assertTrue(1000*sum_outside_beam < sum_inside_beam) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/interface/__init__.py b/mcstasscript/interface/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/interface/functions.py b/mcstasscript/interface/functions.py new file mode 100644 index 00000000..7a98fa13 --- /dev/null +++ b/mcstasscript/interface/functions.py @@ -0,0 +1,369 @@ +import yaml +import os + +from mcstasscript.data.data import McStasData +import mcstasscript.helper.managed_mcrun as managed_mcrun + + +def name_search(name, data_list): + """" + name_search returns McStasData instance with specific name if it is + in the given data_list. If no match is found, a search for the data + filename is performed. If several matches are found, a list of + McStasData objects are returned. + + The index of certain datasets in the data_list can change if + additional monitors are added so it is more convenient to access + the data files using their names. + + Parameters + ---------- + name : string + Name of the dataset to be retrieved (component_name) + + data_list : List of McStasData instances + List of datasets to search + """ + if type(data_list) is not list: + raise RuntimeError( + "name_search function needs list of McStasData as input.") + + if len(data_list) == 0: + raise RuntimeError("Given data list empty.") + + if not isinstance(data_list[0], McStasData): + raise RuntimeError( + "name_search function needs objects of type McStasData as input.") + + # Search by component name + list_result = [] + for check in data_list: + if check.name == name: + list_result.append(check) + + if len(list_result) == 0: + # Search by filename + for check in data_list: + if check.metadata.filename == name: + list_result.append(check) + + if len(list_result) == 0: + raise NameError("No dataset with name: \"" + + name + + "\" found.") + + if len(list_result) == 1: + return list_result[0] + else: + return list_result + + +def name_plot_options(name, data_list, **kwargs): + """" + name_plot_options passes keyword arguments to dataset with certain + name in given data list + + Function for quickly setting plotting options on a certain dataset + n a larger list of datasets + + Parameters + ---------- + name : string + Name of the dataset to be modified (component_name) + + data_list : List of McStasData instances + List of datasets to search + + kwargs : keyword arguments + Keyword arguments passed to set_plot_options in + McStasPlotOptions + """ + object_to_modify = name_search(name, data_list) + if type(object_to_modify) is not list: + object_to_modify.set_plot_options(**kwargs) + else: + for data_object in object_to_modify: + data_object.set_plot_options(**kwargs) + +def load_data(foldername): + """ + Loads data from a McStas data folder including mccode.sim + + Parameters + ---------- + foldername : string + Name of the folder from which to load data + """ + if not os.path.isdir(foldername): + raise RuntimeError("Could not find specified foldername for" + + "load_data:" + str(foldername)) + + return managed_mcrun.load_results(foldername) + +def load_metadata(data_folder_name): + """ + Function that loads metadata from a mcstas simulation + + Returns list of metadata objects corresponding to each monitor, all + information is taken from mccode.sim file. + + Parameters + ---------- + + first argument : str + path to folder from which metadata should be loaded + """ + return managed_mcrun.load_metadata(data_folder_name) + +def load_monitor(metadata, data_folder_name): + """ + Function that loads data given metadata and name of data folder + + Loads data for single monitor and returns a McStasData object + + Parameters + ---------- + + metadata : McStasMetaData object + McStasMetaData object corresponding to the monitor to be loaded + + data_folder_name : str + path to folder from which metadata should be loaded + """ + return managed_mcrun.load_monitor(metadata, data_folder_name) + + +class Configurator: + """ + Class for setting the configuration file for McStasScript. + + Attributes + ---------- + configuration_file_name : str + absolute path of configuration file + + Methods + ------- + set_mcstas_path(string) + sets mcstas path + + set_mcrun_path(string) + sets mcrun path + + set_mcxtrace_path(string) + sets mcxtrace path + + set_mxrun_path(string) + sets mxrun path + + set_line_length(int) + sets maximum line length to given int + + _write_yaml(dict) + internal method, writes a configuration yaml file with dict content + + _read_yaml() + internal method, reads a configuration yaml file and returns a dict + + _create_new_config_file() + internal method, creates default configuration file + + """ + + def __init__(self, *args): + """ + Initialization of configurator, checks that the configuration file + actually exists, and if it does not, creates a default configuration + file. + + Parameters + ---------- + (optional) custom name : str + Custom name for configuration file for testing purposes + """ + + if len(args) == 1: + name = args[0] + else: + name = "configuration" + + # check configuration file exists + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + conf_file = os.path.join(THIS_DIR, "..", name + ".yaml") + self.configuration_file_name = conf_file + if not os.path.isfile(self.configuration_file_name): + # no config file found, write default config file + self._create_new_config_file() + + def _write_yaml(self, dictionary): + """ + Writes a dictionary as the new configuration file + """ + with open(self.configuration_file_name, 'w') as yaml_file: + yaml.dump(dictionary, yaml_file, default_flow_style=False) + + def _read_yaml(self): + """ + Reads yaml configuration file + """ + with open(self.configuration_file_name, 'r') as ymlfile: + return yaml.safe_load(ymlfile) + + def _create_new_config_file(self): + """ + Writes a default configuration file to the package root directory + """ + + run = "/Applications/McStas-2.5.app/Contents/Resources/mcstas/2.5/bin/" + mcstas = "/Applications/McStas-2.5.app/Contents/Resources/mcstas/2.5/" + + mxrun = "/Applications/McXtrace-1.5.app" \ + + "/Contents/Resources/mcxtrace/1.5/mxrun" + mcxtrace = "/Applications/McXtrace-1.5.app" \ + + "/Contents/Resources/mcxtrace/1.5/" + + default_paths = {"mcrun_path": run, + "mcstas_path": mcstas, + "mxrun_path": mxrun, + "mcxtrace_path": mcxtrace} + + default_other = {"characters_per_line": 85} + + default_config = {"paths": default_paths, "other": default_other} + + self._write_yaml(default_config) + + def set_mcstas_path(self, path): + """ + Sets the path to McStas + + Parameters + ---------- + path : str + Path to the mcstas directory containing "sources", "optics", ... + """ + + if not os.path.isdir(path): + raise RuntimeError("Invalid path given to set_mcstas_path:" + + str(path)) + + # read entire configuration file + config = self._read_yaml() + + # update mcstas_path + config["paths"]["mcstas_path"] = path + + # write new configuration file + self._write_yaml(config) + + def set_mcrun_path(self, path): + """ + Sets the path to mcrun + + Parameters + ---------- + path : str + Path to the mcrun executable + """ + + if not os.path.isdir(path): + raise RuntimeError("Invalid path given to set_mcrun_path:" + + str(path)) + + # read entire configuration file + config = self._read_yaml() + + # update mcstas_path + config["paths"]["mcrun_path"] = path + + # write new configuration file + self._write_yaml(config) + + def set_mcxtrace_path(self, path): + """ + Sets the path to McXtrace + + Parameters + ---------- + path : str + Path to the mcxtrace directory containing "sources", "optics", ... + """ + + if not os.path.isdir(path): + raise RuntimeError("Invalid path given to set_mcxtrace_path:" + + str(path)) + + # read entire configuration file + config = self._read_yaml() + + # update mcxtrace_path + config["paths"]["mcxtrace_path"] = path + + # write new configuration file + self._write_yaml(config) + + def set_mxrun_path(self, path): + """ + Sets the path to mxrun + + Parameters + ---------- + path : str + Path to the mxrun executable + """ + + if not os.path.isdir(path): + raise RuntimeError("Invalid path given to set_mxrun_path: " + + str(path)) + + # read entire configuration file + config = self._read_yaml() + + # update mxrun_path + config["paths"]["mxrun_path"] = path + + # write new configuration file + self._write_yaml(config) + + def set_line_length(self, line_length): + """ + Sets maximum line length for output + + Parameters + ---------- + line_length : int + maximum line length for output + """ + + if not isinstance(line_length, int): + raise ValueError("Given line length in set_line_length not an " + + "integer.") + + if line_length < 1: + raise ValueError("Line length specified in set_line_length must" + + " be positve, given length: " + + str(line_length)) + + # read entire configuration file + config = self._read_yaml() + + # update mcstas_path + config["other"]["characters_per_line"] = int(line_length) + + # write new configuration file + self._write_yaml(config) + + def __repr__(self): + string = "Configurator:\n" + config = self._read_yaml() + if "paths" in config: + string += " paths:\n" + for key, value in config["paths"].items(): + string += " " + str(key) + ": " + str(value) + "\n" + + if "other" in config: + string += " other:\n" + for key, value in config["other"].items(): + string += " " + str(key) + ": " + str(value) + "\n" + + return string diff --git a/mcstasscript/interface/instr.py b/mcstasscript/interface/instr.py new file mode 100644 index 00000000..46270bbf --- /dev/null +++ b/mcstasscript/interface/instr.py @@ -0,0 +1,3283 @@ +from __future__ import print_function + +import os +import shutil +import datetime +import yaml +import subprocess +import copy +import warnings +import re + +from IPython.display import IFrame + +from libpyvinyl.BaseCalculator import BaseCalculator +from libpyvinyl.Parameters.Collections import CalculatorParameters + +from mcstasscript.data.pyvinylData import pyvinylMcStasData, pyvinylMCPLData +from mcstasscript.data.MCPLDataFormat import MCPLDataFormat + +from mcstasscript.helper.mcstas_objects import DeclareVariable +from mcstasscript.helper.mcstas_objects import provide_parameter +from mcstasscript.helper.mcstas_objects import write_parameter +from mcstasscript.helper.mcstas_objects import Component + +from mcstasscript.helper.component_reader import ComponentReader +from mcstasscript.helper.managed_mcrun import ManagedMcrun +from mcstasscript.helper.formatting import is_legal_filename +from mcstasscript.helper.formatting import bcolors +from mcstasscript.helper.unpickler import CustomMcStasUnpickler, CustomMcXtraceUnpickler +from mcstasscript.helper.exceptions import McStasError +from mcstasscript.helper.beam_dump_database import BeamDumpDatabase +from mcstasscript.helper.check_mccode_version import check_mcstas_major_version +from mcstasscript.helper.check_mccode_version import check_mcxtrace_major_version +from mcstasscript.helper.name_inspector import find_python_variable_name +from mcstasscript.helper.search_statement import SearchStatement, SearchStatementList +from mcstasscript.instrument_diagram.make_diagram import instrument_diagram +from mcstasscript.instrument_diagnostics.intensity_diagnostics import IntensityDiagnostics + + +class McCode_instr(BaseCalculator): + """ + Main class for writing a McCode instrument using McStasScript + + Initialization of McCode_instr sets the name of the instrument file + and its methods are used to add all aspects of the instrument file. + The class also holds methods for writing the finished instrument + file to disk and to run the simulation. This is meant as a base class + that McStas_instr and McXtrace_instr inherits from, these have to provide + some attributes. Inherits from libpyvinyl BaseCalculator in order to + harmonize input with other simulation engines. + + Required attributes in superclass + --------------------------------- + executable : str + Name of executable, mcrun or mxrun + + particle : str + Name of probe particle, "neutron" or "x-ray" + + package_name : str + Name of package, "McStas" or "McXtrace" + + Attributes + ---------- + name : str + name of instrument file + + author : str, default "Python Instrument Generator" + name of user of McStasScript, written to the file + + origin : str, default "ESS DMSC" + origin of instrument file (affiliation) + + input_path : str, default "." + directory in which simulation is executed, uses components found there + + output_path : str + directory in which the data is written + + executable_path : str + absolute path of mcrun command, or empty if it is in path + + parameters : ParameterContainer + contains all input parameters to be written to file + + declare_list : list of DeclareVariable instances + contains all declare parrameters to be written to file + + initialize_section : str + string containing entire initialize section to be written + + trace_section : str + string containing trace section (OBSOLETE) + + finally_section : str + string containing entire finally section to be written + + component_list : list of component instances + list of components in the instrument + + component_name_list : list of strings + list of names of the components in the instrument + + component_class_lib : dict + dict of custom Component classes made at run time + + component_reader : ComponentReader + ComponentReader instance for reading component files + + package_path : str + Path to mccode package containing component folders + + run_settings : dict + Dict of options set with settings + + data : list + List of McStasData objects produced by last run + + Methods + ------- + add_parameter(*args, **kwargs) + Adds input parameter to the define section + + add_declare_var(type, name) + Add declared variable called name of given type to the declare section + + append_declare(string) + Appends to the declare section + + append_initialize(string) + Appends a string to the initialize section, then adds new line + + append_initialize_no_new_line(string) + Appends a string to the initialize section + + append_finally(string) + Appends a string to finally section, then adds new line + + append_finally_no_new_line(string) + Appends a string to finally section + + append_trace(string) + Obsolete method, add components instead (used in write_c_files) + + append_trace_no_new_line(string) + Obsolete method, add components instead (used in write_c_files) + + available_components(string) + Shows available components in given category + + component_help(name) + Shows help on component of given name + + add_component(instance_name, component_name, **kwargs) + Add a component to the instrument file + + copy_component(new_component_name, original_component, **kwargs) + Makes a copy of original_component with new_component_name + + get_component(instance_name) + Returns component instance with name instance_name + + get_last_component() + Returns component instance of last component + + set_component_parameter(instance_name, dict) + Adds parameters as dict to component with instance_name + + set_component_AT(instance_name, AT_data, **kwargs) + Sets position of component named instance_name + + set_component_ROTATED(instance_name, ROTATED_data, **kwargs) + Sets rotation of component named instance_name + + set_component_RELATIVE(instane_name, string) + Sets position and rotation reference for named component + + set_component_WHEN(instance_name, string) + Sets WHEN condition of named component, is logical c expression + + set_component_GROUP(instance_name, string) + Sets GROUP name of component named instance_name + + append_component_EXTEND(instance_name, string) + Appends a line to EXTEND section of named component + + set_component_JUMP(instance_name, string) + Sets JUMP code for named component + + set_component_SPLIT(instance_name, string) + Sets SPLIT value for named component + + set_component_c_code_before(instance_name, string) + Sets c code before the component + + set_component_c_code_after(instance_name, string) + Sets c code after the component + + set_component_comment(instance_name, string) + Sets comment to be written before named component + + print_component(instance_name) + Prints an overview of current state of named component + + print_component_short(instance_name) + Prints short overview of current state of named component + + show_components() + Prints overview of postion / rotation of all components + + write_c_files() + Writes c files for %include in generated_includes folder + + write_full_instrument() + Writes full instrument file to current directory + + show_instrument() + Shows instrument using mcdisplay + + set_parameters(dict) + Inherited from libpyvinyl BaseCalculator + + settings(**kwargs) + Sets settings for performing simulation + + backengine() + Performs simulation, saves in data attribute + + run_full_instrument(**kwargs) + Depricated method for performing the simulation + + interface() + Shows interface with jupyter notebook widgets + + get_interface_data() + Returns data set from latest simulation in widget + """ + + def __init__(self, name, parameters=None, author=None, + origin=None, ncount=None, mpi="not_set", seed=None, + force_compile=None, output_path=None, + increment_folder_name=None, custom_flags=None, + executable_path=None, executable=None, + suppress_output=None, gravity=None, input_path=None, + package_path=None, checks=None, NeXus=None, + save_comp_pars=None, openacc=None): + """ + Initialization of McStas Instrument + + Parameters + ---------- + name : str + Name of project, instrument file will be name + ".instr" + + keyword arguments: + parameters : ParameterContainer or CalculatorParameters + Parameters for this instrument + + author : str + Name of author, written in instrument file + + origin : str + Affiliation of author, written in instrument file + + input_path : str + Work directory, will load components from this folder + + mpi : int + Number of mpi threads to use in simulation + + output_path : str + Sets data_folder_name + + increment_folder_name : bool + Will update output_path if folder already exists, default True + + ncount : int + Sets ncount + + mpi : int + Sets thread count + + force_compile : bool + If True (default) new instrument file is written, otherwise not + + custom_flags : str + Sets custom_flags passed to mcrun + + executable : str + Name of the executable + + executable_path : str + Path to mcrun command, "" if already in path + + suppress_output : bool + Set to True to surpress output + + gravity : bool + If True, gravity will be simulated + + save_comp_pars : bool + If True, McStas run writes all comp pars to disk + """ + + super().__init__(name, input=[], + output_keys=[name + "_data"], + output_data_types=[pyvinylMcStasData], + parameters=parameters) + + # Check required attributes has been set by class that inherits + if not (hasattr(self, "particle") or + hasattr(self, "package_name")): + raise AttributeError("McCode_instr is a base class, use " + + "McStas_instr or McXtrace_instr instead.") + + if not is_legal_filename(self.name + ".instr"): + raise NameError("The instrument is called: \"" + + self.name + + "\" resulting in an instrument file named: \"" + + self.name + ".instr" + + "\" which is not a legal filename") + + if self.calculator_base_dir == "BaseCalculator": + # If the base_dir was not set, set default to depend on instrument name + self.calculator_base_dir = self.name + "_data" + + if author is None: + self.author = "Python " + self.package_name + self.author += " Instrument Generator" + else: + self.author = str(author) + + if origin is None: + self.origin = "ESS DMSC" + else: + self.origin = str(origin) + + # Attempt to classify given parameters in McStas context + for parameter in self.parameters.parameters.values(): + if isinstance(parameter.value, (float, int)): + parameter.type = "double" + elif isinstance(parameter.value, (str)): + parameter.type = "string" + else: + # They will be typed when the instrument is written + parameter.type = None + + self._run_settings = {} # Settings for running simulation + + # Sets max_line_length and adds paths to run_settings + self._read_calibration() + + # Settings that can't be changed later + if input_path is not None: + self.input_path = str(input_path) + if not os.path.isdir(self.input_path): + raise RuntimeError("Given input_path does not point to a " + + "folder:\"" + self.input_path + '"') + else: + self.input_path = "." + self._run_settings["run_path"] = self.input_path + + if package_path is not None: + if not os.path.isdir(str(package_path)): + raise RuntimeError("The package_path provided to mccode_instr " + + " does not point to a + directory: \"" + + str(package_path) + "\"") + self._run_settings["package_path"] = package_path + + # Settings for run that can be adjusted by user + provided_run_settings = {"executable": executable, + "checks": True, + "NeXus": False} + + if executable_path is not None: + provided_run_settings["executable_path"] = str(executable_path) + + if force_compile is not None: + provided_run_settings["force_compile"] = force_compile + else: + provided_run_settings["force_compile"] = True + + if ncount is not None: + provided_run_settings["ncount"] = ncount + + if mpi != "not_set": + provided_run_settings["mpi"] = mpi + + if gravity is not None: + provided_run_settings["gravity"] = gravity + + if seed is not None: + provided_run_settings["seed"] = str(seed) + + if custom_flags is not None: + provided_run_settings["custom_flags"] = custom_flags + + if suppress_output is not None: + provided_run_settings["suppress_output"] = suppress_output + + if checks is not None: + provided_run_settings["checks"] = checks + + if output_path is not None: + provided_run_settings["output_path"] = output_path + + if increment_folder_name is not None: + provided_run_settings["increment_folder_name"] = increment_folder_name + + if NeXus is not None: + provided_run_settings["NeXus"] = NeXus + + if save_comp_pars is not None: + provided_run_settings["save_comp_pars"] = save_comp_pars + else: + provided_run_settings["save_comp_pars"] = False + + if openacc is not None: + provided_run_settings["openacc"] = openacc + + # Set run_settings, perform input sanitation + self.settings(**provided_run_settings) + + # Read info on active McStas components + package_path = self._run_settings["package_path"] + run_path = self._run_settings["run_path"] + self.component_reader = ComponentReader(package_path, + input_path=run_path) + + self.component_class_lib = {} + self.widget_interface = None + + # Holds major version of underlying package + self.mccode_version = None + + # Avoid initializing if loading from dump + if not hasattr(self, "declare_list"): + self.declare_list = [] + self.user_var_list = [] + self.dependency_statement = "" + self.search_statement_list = SearchStatementList() + self.initialize_section = ("// Start of initialize for generated " + + name + "\n") + self.trace_section = ("// Start of trace section for generated " + + name + "\n") + self.finally_section = ("// Start of finally for generated " + + name + "\n") + + # Handle components + self.component_list = [] # List of components (have to be ordered) + + # Run subset settings + self.run_from_ref = None + self.run_to_ref = None + self.run_to_comment = "" + self.run_to_name = None + self.run_from_component_parameters = None + self.run_to_component_parameters = None + + # DumpDatabase + self.dump_database = BeamDumpDatabase(self.name, self.input_path) + + @property + def output_path(self) -> str: + return self.base_dir + + @output_path.setter + def output_path(self, value: str) -> None: + self.calculator_base_dir = value + + def init_parameters(self): + """ + Create empty ParameterContainer for new instrument + """ + self.parameters = CalculatorParameters() + + def _read_calibration(self): + """ + Placeholder method that should be overwritten by classes + that inherit from McCode_instr. + """ + pass + + def reset_run_points(self): + """ + Reset run_from and run_to points to the full instrument + """ + self.run_from_ref = None + self.run_to_ref = None + + def show_run_subset(self): + """ + Shows current subset of instrument selected with run_from and run_to methods + """ + if self.run_from_ref is None and self.run_to_ref is None: + print("No run_from or run_to point set.") + return + + if self.run_from_ref is None: + print("Running from start of the instrument", end="") + else: + print(f"Running from component named '{self.run_from_ref}'", end="") + + if self.run_to_ref is None: + print(" to the end of the instrument.") + else: + print(f" to component named '{self.run_to_ref}'.") + + def run_to(self, component_ref, run_name="Run", comment=None, **kwargs): + """ + Set limit for instrument, only run to given component, save MCPL there + + The method accepts keywords for the MCPL output component allowing to + store for example userflags or setting the filename directly. + + component_ref : str / component object + Name of component where the instrument simulation should end + + run_name : str + Name associated with the generated beam dump + + comment : str + Comment asscoiated with the generated beam dump + """ + if isinstance(component_ref, Component): + component_ref = component_ref.name + + # Check references are valid + self.subset_check(start_ref=self.run_from_ref, end_ref=component_ref) + + self.run_to_ref = component_ref + self.run_to_name = run_name + + if comment is not None: + self.run_to_comment = str(comment) + else: + self.run_to_comment = "" + + if component_ref is not None: + mcpl_par_name = "run_to_mcpl" + + if mcpl_par_name not in self.parameters.parameters: + # Need to add parameter to instrument for mcpl filename + self.add_parameter("string", mcpl_par_name) + + if "filename" not in kwargs: + # Generate a reasonable filename + auto_name = '"' + self.name + "_" + component_ref + ".mcpl" + '"' + self.set_parameters({mcpl_par_name: auto_name}) + else: + # Set the instrument parameter to the given filename + self.set_parameters({mcpl_par_name: kwargs["filename"]}) + + # Set the mcpl component parameter to the filename instrument parameter + kwargs["filename"] = mcpl_par_name + + # Check the given keywords arguments are legal for the MCPL output component + dummy_MCPL = self._create_component_instance("MCPL_output", "MCPL_output") + try: + dummy_MCPL.set_parameters(kwargs) + except: + # Provide information on what stage caused the problem + print("Problems detected with input arguments for MCPL output component") + # Show the exception for the failure to set parameters on the component + dummy_MCPL.set_parameters(kwargs) + + # Store parameters for the MCPL output component + self.run_to_component_parameters = kwargs + + def run_from(self, component_ref, run_name=None, tag=None, **kwargs): + """ + Set limit for instrument, only run from given component, load MCPL ot start + + The method accepts keywords for the MCPL input component allowing to + set for example the smear for direction / energy / position and + repeat count. + + component_ref : str / component object + Name of component where the instrument simulation should start + + run_name : str + Run name of dump to use as starting point of simulation + + tag : integer + Tag of the desired dump (only allowed if run_name is given) + """ + + if isinstance(component_ref, Component): + component_ref = component_ref.name + + # Check references are valid + self.subset_check(start_ref=component_ref, end_ref=self.run_to_ref) + + self.run_from_ref = component_ref + + if component_ref is not None: + mcpl_par_name = "run_from_mcpl" + + if mcpl_par_name not in self.parameters.parameters: + # Need to add parameter to instrument for mcpl filename + self.add_parameter("string", mcpl_par_name) + + if "filename" not in kwargs: + # Find newest dump from database + newest_dump = self.dump_database.newest_at_point(component_ref, run=run_name) + auto_name = '"' + newest_dump.data["data_path"] + '"' + self.set_parameters({mcpl_par_name: auto_name}) + else: + self.set_parameters({mcpl_par_name: kwargs["filename"]}) + + if run_name is not None and tag is not None: + dump = self.dump_database.get_dump(component_ref, run_name, tag) + + dump_filename = '"' + dump.data["data_path"] + '"' + self.set_parameters({mcpl_par_name: dump_filename}) + + kwargs["filename"] = mcpl_par_name + + # Ensure the kwargs are allowed + dummy_MCPL = self._create_component_instance("MCPL_input", "MCPL_input") + try: + dummy_MCPL.set_parameters(kwargs) + except: + print("Problems detected with input arguments for MCPL input component") + dummy_MCPL.set_parameters(kwargs) + + self.run_from_component_parameters = kwargs + + def show_dumps(self): + component_names = [x.name for x in self.component_list] + self.dump_database.show_in_order(component_names) + + def show_dump(self, point, run_name=None, tag=None): + if isinstance(point, Component): + point = point.name + + self.dump_database.get_dump(point, run_name, tag).print_all() + + def subset_check(self, start_ref, end_ref): + """ + Checks that when the instrument is broken into subsets, it is still valid + + start_ref : str + Name of starting component + + end_ref : str + Name of end component + """ + + start_i, end_i = self.get_component_subset_index_range(start_ref, end_ref) + if start_i > end_i: + raise McStasError("Running from '" + start_ref + "' to '" + end_ref + + "' not possible as '" + end_ref + "' is before '" + + start_ref + "' in the component sequence.") + if start_i == end_i: + raise McStasError("Running from and to the same component is not supported " + + "here both run_from and run_to are set to " + + "'" + start_ref + "'.") + + # Check current subset of instrument is self contained + is_self_contained = True + try: + self.check_for_relative_errors(start_ref=start_ref, end_ref=end_ref) + except McStasError: + is_self_contained = False + + if not is_self_contained: + print("When using a subset of the instrument, component references " + "must be only internal as these sections are split into separate " + "files. When seeing only the specified subset of the instrument, " + "this reference can not be resolved.") + self.check_for_relative_errors(start_ref=start_ref, end_ref=end_ref) + + if end_ref is None: + # If there is no end_ref, there are no parts after to check + return + + # Check the part after is self consistent + is_self_contained = True + try: + self.check_for_relative_errors(start_ref=end_ref, allow_absolute=False) + except McStasError: + is_self_contained = False + + if not is_self_contained: + print("When using a subset of the instrument, component references " + "must be only internal as these sections are split into separate " + "files. When seeing only the specified subset of the instrument, " + "this reference can not be resolved. \n" + "In this case the remaining instrument would fail.") + self.check_for_relative_errors(start_ref=end_ref, allow_absolute=False) + + def add_parameter(self, *args, **kwargs): + """ + Method for adding input parameter to instrument + + Type does not need to be specified, McStas considers that a floating + point value with the type 'double'. Uses libpyvinyl Parameter object. + + Examples + -------- + Creates a parameter with name wavelength and associated comment + add_parameter("wavelength", comment="wavelength in [AA]") + + Creates a parameter with name A3 and default value + add_parameter("A3", value=30, comment="A3 angle in [deg]") + + Creates a parameter with type string and name sample_name + add_parameter("string", "sample_name") + + Parameters + ---------- + + (optional) parameter type : str + type of input parameter, double, int, string + + parameter name : str + name of parameter + + keyword arguments + value : float, int or str + Default value of parameter + + unit : str + Unit to be displayed + + comment : str + Comment displayed next to declaration of parameter + + options : list or value + list or value of allowed values for this parameter + """ + names = [x.name for x in self.declare_list + if isinstance(x, DeclareVariable)] + names += [x.name for x in self.user_var_list + if isinstance(x, DeclareVariable)] + names += [x.name for x in self.parameters.parameters.values()] + + par = provide_parameter(*args, **kwargs) + + if par.name in names: + raise NameError(f"A parameter or variable with name '{par.name}'" + f" already exists!") + + self.parameters.add(par) + + return par + + def show_parameters(self, line_length=None): + """ + Method for displaying current instrument parameters + + line_limit : int + Maximum line length for terminal output + """ + + if len(self.parameters.parameters) == 0: + print("No instrument parameters available") + return + + if line_length is None: + line_length = self.line_limit + + # Find longest fields + types = [] + names = [] + values = [] + comments = [] + for parameter in self.parameters.parameters.values(): + types.append(str(parameter.type)) + names.append(str(parameter.name)) + values.append(str(parameter.value)) + if parameter.comment is None: + comments.append("") + else: + comments.append(str(parameter.comment)) + + longest_type = len(max(types, key=len)) + longest_name = len(max(names, key=len)) + longest_value = len(max(values, key=len)) + # In addition to the data 11 characters are added before the comment + comment_start_point = longest_type + longest_name + longest_value + 11 + longest_comment = len(max(comments, key=len)) + length_for_comment = line_length - comment_start_point + + # Print to console + for parameter in self.parameters.parameters.values(): + print(str(parameter.type).ljust(longest_type), end=' ') + print(str(parameter.name).ljust(longest_name), end=' ') + if parameter.value is None: + print(" ", end=' ') + print(" ".ljust(longest_value + 1), end=' ') + else: + print(" =", end=' ') + print(str(parameter.value).ljust(longest_value + 1), end=' ') + + if parameter.comment is None: + c_comment = "" + else: + c_comment = "// " + str(parameter.comment) + + if (length_for_comment < 5 + or length_for_comment > len(c_comment)): + print(c_comment) + else: + # Split comment into several lines + comment = c_comment + words = comment.split(" ") + words_left = len(words) + last_index = 0 + current_index = 0 + comment = "" + iterations = 0 + max_iterations = 50 + while words_left > 0: + iterations += 1 + if iterations > max_iterations: + # Something went long, print on one line + break + + line_left = length_for_comment + + while line_left > 0: + if current_index >= len(words): + current_index = len(words) + 1 + break + line_left -= len(str(words[current_index])) + 1 + current_index += 1 + + current_index -= 1 + for word in words[last_index:current_index]: + comment += word + " " + words_left = len(words) - current_index + if words_left > 0: + comment += "\n" + " " * comment_start_point + last_index = current_index + + if not iterations == max_iterations + 1: + print(comment) + else: + print(c_comment.ljust(longest_comment)) + + def show_variables(self): + """ + Shows declared variables in instrument + """ + + all_variables = [x for x in self.declare_list + self.user_var_list + if isinstance(x, DeclareVariable)] + + type_heading = "type" + variable_types = [x.type for x in all_variables] + variable_types.append(type_heading) + max_type_length = len(max(variable_types, key=len)) + + name_heading = "variable name" + variable_names = [x.name for x in all_variables] + variable_names.append(name_heading) + max_name_length = len(max(variable_names, key=len)) + + vector_heading = "array length" + variable_vector = [str(x.vector) for x in all_variables] + variable_vector.append(vector_heading) + max_vector_length = len(max(variable_vector, key=len)) + + value_heading = "value" + variable_values = [str(x.value) for x in all_variables] + variable_values.append(value_heading) + max_value_length = len(max(variable_values, key=len)) + + padding = 2 + header = "" + header += type_heading.ljust(max_type_length + padding) + header += name_heading.ljust(max_name_length + padding) + header += vector_heading.ljust(max_vector_length + padding) + header += value_heading.ljust(max_value_length + padding) + header += "\n" + header += "-"*(max_type_length + max_name_length + max_value_length + + max_vector_length + 3*padding) + header += "\n" + + string = "DECLARE VARIABLES \n" + string += header + + if len(self.user_var_list) > 0: + first_user_var = self.user_var_list[0] + else: + first_user_var = None + + for variable in all_variables: + if variable is first_user_var: + string += "\n" + string += "USER VARIABLES (per neutron, only use in EXTEND)\n" + string += header + + string += str(variable.type).ljust(max_type_length + padding) + string += str(variable.name).ljust(max_name_length + padding) + + if variable.vector != 0: + vector_string = str(variable.vector) + else: + vector_string = "" + string += vector_string.ljust(max_vector_length + padding) + + if variable.value != "": + value_string = str(variable.value) + else: + value_string = "" + string += value_string.ljust(max_value_length + padding) + string += "\n" + + print(string) + + def add_declare_var(self, *args, **kwargs): + """ + Method for adding declared variable to instrument + + Parameters + ---------- + + parameter type : str + type of input parameter + + parameter name : str + name of parameter + + keyword arguments + array : int + default 0 for scalar, if specified length of array + + value : any + Initial value of parameter, can be list of length vector + + comment : str + Comment displayed next to declaration of parameter + + """ + + # DeclareVariable class documented independently + declare_par = DeclareVariable(*args, **kwargs) + + names = [x.name for x in self.declare_list + if isinstance(x, DeclareVariable)] + names += [x.name for x in self.user_var_list + if isinstance(x, DeclareVariable)] + names += [x.name for x in self.parameters.parameters.values()] + + if declare_par.name in names: + raise NameError("Variable with name '" + declare_par.name + + "' already present in instrument!") + + self.declare_list.append(declare_par) + return declare_par + + def append_declare(self, string): + """ + Method for appending code to the declare section directly + + This method is not meant for declaring simple variables which + should be done using add_declare_var. This method can be used + to declare functions, structures and unions directly. + + Parameters + ---------- + string : str + code to be added to declare section + """ + + self.declare_list.append(string) + + def add_user_var(self, *args, **kwargs): + """ + Method for adding user variable to instrument + + Parameters + ---------- + + parameter type : str + type of input parameter + + parameter name : str + name of parameter + + keyword arguments + array : int + default 0 for scalar, if specified length of array + + comment : str + Comment displayed next to declaration of parameter + + """ + + if "value" in kwargs: + raise ValueError("Value not allowed for UserVars.") + + # DeclareVariable class documented independently + user_par = DeclareVariable(*args, **kwargs) + + names = [x.name for x in self.declare_list + if isinstance(x, DeclareVariable)] + names += [x.name for x in self.user_var_list + if isinstance(x, DeclareVariable)] + names += [x.name for x in self.parameters.parameters.values()] + + if user_par.name in names: + raise NameError("Variable with name '" + user_par.name + + "' already present in instrument!") + + self.user_var_list.append(user_par) + return user_par + + def move_user_vars_to_declare(self): + """ + Moves all uservars to declare for compatibility with McStas 2.X + """ + + for var in self.user_var_list: + self.declare_list.append(var) + + self.user_var_list = [] + + def append_initialize(self, string): + """ + Method for appending code to the initialize section + + The initialize section consists of c code and will be compiled, + thus any syntax errors will crash the simulation. Code is added + on a new line for each call to this method. + + Parameters + ---------- + string : str + code to be added to initialize section + """ + + self.initialize_section = self.initialize_section + string + "\n" + + def append_initialize_no_new_line(self, string): + """ + Method for appending code to the initialize section, no new line + + The initialize section consists of c code and will be compiled, + thus any syntax errors will crash the simulation. Code is added + to the current line. + + Parameters + ---------- + string : str + code to be added to initialize section + """ + + self.initialize_section = self.initialize_section + string + + def append_finally(self, string): + """ + Method for appending code to the finally section of instrument + + The finally section consists of c code and will be compiled, + thus any syntax errors will crash the simulation. Code is added + on a new line for each call to this method. + + Parameters + ---------- + string : str + code to be added to finally section + + """ + + self.finally_section = self.finally_section + string + "\n" + + def append_finally_no_new_line(self, string): + """ + Method for appending code to the finally section of instrument + + The finally section consists of c code and will be compiled, + thus any syntax errors will crash the simulation. Code is added + to the current line. + + Parameters + ---------- + string : str + code to be added to finally section + """ + + self.finally_section = self.finally_section + string + + """ + # Handle trace string differently when components also exists + # A) Could have trace string as a component attribute and set + # it before / after + # B) Could have trace string as a McStas_instr attribute and + # still attach placement to components + # C) Could have trace string as a different object and place it + # in component_list, but have a write function named as the + # component write function? + """ + + def append_trace(self, string): + """ + Appends code to trace section, only used in write_c_files + + The most common way to add code to the trace section is to add + components using the seperate methods for this. This method is + kept as is still used for writing to c files used in legacy + code. Each call creates a new line. + + Parameters + ---------- + string : str + code to be added to trace + """ + + self.trace_section = self.trace_section + string + "\n" + + def append_trace_no_new_line(self, string): + """ + Appends code to trace section, only used in write_c_files + + The most common way to add code to the trace section is to add + components using the seperate methods for this. This method is + kept as is still used for writing to c files used in legacy + code. No new line is made with this call. + + Parameters + ---------- + string : str + code to be added to trace + """ + + self.trace_section = self.trace_section + string + + def available_components(self, *args): + """ + Helper method that shows available components to the user + + If called without any arguments it will display the available + component categories. If a category is given as a string in + the first input, components in that category are printed. + + Parameters + ---------- + first argument (optional): str + Category that matches one of the McStas component folders + + """ + if len(args) == 0: + print("Here are the available component categories:") + self.component_reader.show_categories() + print("Call available_components(category_name) to display") + + else: + category = args[0] + print("Here are all components in the " + + category + + " category.") + this_reader = self.component_reader + line_lim = self.line_limit + this_reader.show_components_in_category(category, + line_length=line_lim) + + def component_help(self, name, **kwargs): + """ + Method for showing parameters for a component before adding it + to the instrument + + keyword arguments + line_length : int + Maximum line length in output to terminal + """ + + dummy_instance = self._create_component_instance("dummy", name) + dummy_instance.show_parameters(**kwargs) + + def _create_component_instance(self, name, component_name, **kwargs): + """ + Dynamically creates a class for the requested component type + + Created classes kept in dictionary, if the same component type + is requested again, the class in the dictionary is used. The + method returns an instance of the created class that was + initialized with the parameters passed to this function. + """ + + if component_name not in self.component_class_lib: + comp_info = self.component_reader.read_name(component_name) + + input_dict = {key: None for key in comp_info.parameter_names} + input_dict["parameter_names"] = comp_info.parameter_names + input_dict["parameter_defaults"] = comp_info.parameter_defaults + input_dict["parameter_types"] = comp_info.parameter_types + input_dict["parameter_units"] = comp_info.parameter_units + input_dict["parameter_comments"] = comp_info.parameter_comments + input_dict["category"] = comp_info.category + input_dict["line_limit"] = self.line_limit + + dynamic_component_class = type(component_name, (Component,), + input_dict) + + # add this class to globals to allow for pickling + globals()[component_name] = dynamic_component_class + + self.component_class_lib[component_name] = dynamic_component_class + + return self.component_class_lib[component_name](name, component_name, + **kwargs) + + def add_component(self, name, component_name=None, *, before=None, + after=None, AT=None, AT_RELATIVE=None, ROTATED=None, + ROTATED_RELATIVE=None, RELATIVE=None, WHEN=None, + EXTEND=None, GROUP=None, JUMP=None, SPLIT=None, + comment=None, c_code_before=None, c_code_after=None): + """ + Method for adding a new Component instance to the instrument + + Creates a new Component instance in the instrument. This + requires a unique instance name of the component to be used for + future reference and the name of the McStas component to be + used. The component is placed at the end of the instrument file + unless otherwise specified with the after and before keywords. + The Component may be initialized using other keyword arguments, + but all attributes can be set with approrpiate methods. + + Parameters + ---------- + name : str + Unique name of component instance + + component_name : str + Name of McStas component to create instance of + + Keyword arguments: + after : str + Place this component after component with given name + + before : str + Place this component before component with given name + + AT : List of 3 floats + Sets AT_data, position relative to reference + + AT_RELATIVE : str + Sets reference component for postion + + ROTATED : List of 3 floats + Sets ROTATED_data, rotation relative to reference + + ROTATED_RELATIVE : str + Sets reference component for rotation + + RELATIVE : str + Sets reference component for both position and rotation + + WHEN : str + Sets when condition which must be a logical c expression + + EXTEND : str + Initialize the extend section with a line of c code + + GROUP : str + Name of the group this component should belong to + + JUMP : str + Set code for McStas JUMP statement + + comment : str + Comment that will be displayed before the component + """ + + if component_name is None: + # Try to interpret name as the name of a McStas component + # and the python variable name as the given name to this + # instance of the McStas component. + if name in self.component_reader.component_path: + # Name is an available McStas component! + component_name = name + + # Find name through call + text = ("When adding a component without giving both " + "name and type it is necessary to assign the " + "component object a python variable name that " + "can be used for the McStas component.") + name = find_python_variable_name(error_text=text, n_levels=2) + else: + raise NameError("As no name is given, the input is interpreted" + " as a component name, yet no component of" + " type " + str(name) + " is found in McStas" + " installation or work directory.") + + if name in [x.name for x in self.component_list]: + raise NameError(("Component name \"" + str(name) + + "\" used twice, " + self.package_name + + " does not allow this." + + " Rename or remove one instance of this" + + " name.")) + + # Condense keyword input relating to component to a dict + component_input = {"AT": AT, "AT_RELATIVE": AT_RELATIVE, + "ROTATED": ROTATED, + "ROTATED_RELATIVE": ROTATED_RELATIVE, + "RELATIVE": RELATIVE, "WHEN": WHEN, + "EXTEND": EXTEND, "GROUP": GROUP, "JUMP": JUMP, + "SPLIT": SPLIT, "comment": comment, + "c_code_before": c_code_before, + "c_code_after": c_code_after} + + new_component = self._create_component_instance(name, component_name, + **component_input) + + self._insert_component(new_component, before=before, after=after) + return new_component + + def copy_component(self, name, original_component=None, *, before=None, + after=None, AT=None, AT_RELATIVE=None, ROTATED=None, + ROTATED_RELATIVE=None, RELATIVE=None, WHEN=None, + EXTEND=None, GROUP=None, JUMP=None, SPLIT=None, + comment=None, c_code_before=None, c_code_after=None): + """ + Method for adding a copy of a Component instance to the instrument + + Creates a copy of Component instance in the instrument. This + requires a unique instance name of the component to be used for + future reference and the name of the McStas component to be + used. The component is placed at the end of the instrument file + unless otherwise specified with the after and before keywords. + The component may be initialized using other keyword arguments, + but all attributes can be set with approrpiate methods. + + Parameters + ---------- + name : str + Unique name of component instance + + original_component : str + Name of component instance to create copy of + + Keyword arguments: + after : str + Place this component after component with given name + + before : str + Place this component before component with given name + + AT : List of 3 floats + Sets AT_data, position relative to reference + + AT_RELATIVE : str + Sets reference component for postion + + ROTATED : List of 3 floats + Sets ROTATED_data, rotation relative to reference + + ROTATED_RELATIVE : str + Sets reference component for rotation + + RELATIVE : str + Sets reference component for both position and rotation + + WHEN : str + Sets when condition which must be a logical c expression + + EXTEND : str + Initialize the extend section with a line of c code + + GROUP : str + Name of the group this component should belong to + + JUMP : str + Set code for McStas JUMP statement + + comment : str + Comment that will be displayed before the component + """ + + if original_component is None: + # Try to interpret name as the name of a McStas component + # to be copied and the python variable name as the given + # name to the new instance of the McStas component. + if isinstance(name, Component): + name = original_component.name + + component_names = [x.name for x in self.component_list] + if name in component_names: + # name is an existing component name + original_component = name + + # Find new name through call + text = ("When making a component copy without providing both " + "name of the new instance and name of the original " + "component it is necessary to assign the new " + "component object to a python variable name that can " + "be used for the new McStas component object.") + name = find_python_variable_name(error_text=text, n_levels=2) + else: + raise NameError("As no name is given, the input is interpreted" + " as a component name, yet no component named" + + str(name) + " is found in the McStas " + "instrument.") + + if isinstance(original_component, Component): + original_component = original_component.name + + # Condense keyword input relating to component to a dict + component_input = {"AT": AT, "AT_RELATIVE": AT_RELATIVE, + "ROTATED": ROTATED, + "ROTATED_RELATIVE": ROTATED_RELATIVE, + "RELATIVE": RELATIVE, "WHEN": WHEN, + "EXTEND": EXTEND, "GROUP": GROUP, "JUMP": JUMP, + "SPLIT": SPLIT, "comment": comment, + "c_code_before": c_code_before, + "c_code_after": c_code_after} + + """ + If the name starts with COPY, use unique naming as described in the + McStas manual. + """ + component_names = [x.name for x in self.component_list] + + if name.startswith("COPY("): + target_name = name.split("(", 1)[1] + target_name = target_name.split(")", 1)[0] + instance_name = target_name + + label = 0 + instance_name = target_name + "_" + str(label) + while instance_name in component_names: + instance_name = target_name + "_" + str(label) + label += 1 + + if name in component_names: + raise NameError(("Component name \"" + str(name) + + "\" used twice, " + self.package_name + + " does not allow this." + + " Rename or remove one instance of this" + + " name.")) + + if original_component not in component_names: + raise NameError("Component name \"" + str(original_component) + + "\" was not found in the " + self.package_name + + " instrument. and thus can not be copied.") + else: + component_to_copy = self.get_component(original_component) + + new_component = copy.deepcopy(component_to_copy) + new_component.name = name # Set new name, duplicate names not allowed + + self._insert_component(new_component, before=before, after=after) + + # Run set_keyword_input for keyword arguments to take effect + new_component.set_keyword_input(**component_input) + + return new_component + + def remove_component(self, name): + """ + Removes component with given name from instrument + """ + + # Check for errors before + errors_before = self.has_errors() + + if isinstance(name, Component): + name = name.name + + component_names = [x.name for x in self.component_list] + index_to_remove = component_names.index(name) + self.component_list.pop(index_to_remove) + + # Check for errors after removing + errors_after = self.has_errors() + + if not errors_before and errors_after: + print("Removing the component '" + name + "' introduced errors in " + "the instrument, run check_for_errors() for more " + "information.") + + def move_component(self, name, before=None, after=None): + """ + Moves component with given name to before or after + """ + if isinstance(name, Component): + name = name.name + + if before is None and after is None: + raise RuntimeError("Must specify 'before' or 'after' when moving " + "a component.") + + # Check for errors before + errors_before = self.has_errors() + + if isinstance(name, Component): + name = name.name + + component_names = [x.name for x in self.component_list] + index_to_remove = component_names.index(name) + moved_component = self.component_list.pop(index_to_remove) + self._insert_component(moved_component, before=before, after=after) + + # Check for errors after moving + errors_after = self.has_errors() + + if not errors_before and errors_after: + print("Moving the component '" + name + "' introduced errors in " + "the instrument, run check_for_errors() for more " + "information.") + + def _insert_component(self, component, before=None, after=None): + """ + Inserts component into sequence of components held by instrument + + Internal method to handle placement of a new component in the + list of components held by this instrument. + + name : str + Instance name of component + + component : Component object + Component object to be inserted + + before : str or Component object + Reference to component to place this one before + + after : str or Component object + Reference to coponent to place this one after + """ + + if before is not None and after is not None: + raise RuntimeError("Only specify either 'before' or 'after'.") + + if before is None and after is None: + # If after and before keywords absent, place component at the end + self.component_list.append(component) + return + + if after is not None: + index_addition = 1 + reference = after + description = "after" + if before is not None: + index_addition = 0 + reference = before + description = "before" + + if isinstance(reference, Component): + reference = reference.name + + component_names = [x.name for x in self.component_list] + if reference not in component_names: + raise NameError("Trying to add a component " + description + + " a component named '" + str(after) + + "', but a component with that name was" + + " not found.") + + new_index = component_names.index(reference) + index_addition + self.component_list.insert(new_index, component) + + def get_component(self, name): + """ + Get the component instance of component with specified name + + This method is used to get direct access to any component + instance in the instrument. The component instance can be + manipulated in much the same way, but it is not necessary to + specify the name in each call. + + Parameters + ---------- + name : str + Unique name of component whose instance should be returned + """ + + component_names = [x.name for x in self.component_list] + if name in component_names: + index = component_names.index(name) + return self.component_list[index] + else: + raise NameError(("No component was found with name \"" + + str(name) + "\"!")) + + def get_last_component(self): + """ + Get the component instance of last component in the instrument + + This method is used to get direct access to any component + instance in the instrument. The component instance can be + manipulated in much the same way, but it is not necessary to + specify the name in each call. + """ + + return self.component_list[-1] + + def print_component(self, name): + """ + Method for printing summary of contents in named component + + Parameters + ---------- + name : str + Unique name of component to print + """ + + component = self.get_component(name) + component.print_long() + + def print_component_short(self, name): + """ + Method for printing summary of contents in named component + + Parameters + ---------- + name : str + Unique name of component to print + """ + component = self.get_component(name) + component.print_short() + + def print_components(self, line_length=None): + """ + Obsolete method, use show_components instead + + Method for printing overview of all components in instrument + + Provides overview of component names, what McStas component is + used for each and their position and rotation in space. + + keyword arguments: + line_length : int + Maximum line length in console + """ + warnings.warn("Print components is changing name to show_components for consistency.") + self.show_components(line_length) + + def show_components(self, line_length=None): + """ + Method for printing overview of all components in instrument + + Provides overview of component names, what McStas component is + used for each and their position and rotation in space. + + keyword arguments: + line_length : int + Maximum line length in console + """ + if len(self.component_list) == 0: + print("No components added to instrument object yet.") + return + + printed_components = self.make_component_subset() + + if len(printed_components) == 0: + print("No components in subset.") + return + + if self.run_from_ref is not None: + print("Showing subset of instrument after cut at '" + + self.run_from_ref + + "' component.") + + if line_length is None: + line_limit = self.line_limit + else: + if not isinstance(line_length, int): + raise ValueError("Show components now shows components in" + " instrument instead of help. For help," + " use available_components instead. \n" + "The argument for show_components is" + " line_length and has to be an integer.") + line_limit = line_length + + component_names = [x.name for x in printed_components] + longest_name = len(max(component_names, key=len)) + + # todo Investigate how this could have been done in a better way + # Find longest field for each type of data printed + component_type_list = [] + at_xyz_list = [] + at_relative_list = [] + rotated_xyz_list = [] + rotated_relative_list = [] + for component in printed_components: + component_type_list.append(component.component_name) + at_xyz_list.append(str(component.AT_data[0]) + + str(component.AT_data[1]) + + str(component.AT_data[2])) + at_relative_list.append(component.AT_relative) + rotated_xyz_list.append(str(component.ROTATED_data[0]) + + str(component.ROTATED_data[1]) + + str(component.ROTATED_data[2])) + rotated_relative_list.append(component.ROTATED_relative) + + longest_component_name = len(max(component_type_list, key=len)) + longest_at_xyz_name = len(max(at_xyz_list, key=len)) + longest_at_relative_name = len(max(at_relative_list, key=len)) + longest_rotated_xyz_name = len(max(rotated_xyz_list, key=len)) + longest_rotated_relative_name = len(max(rotated_relative_list, + key=len)) + + # Padding settings, 0,0,6,0,6 is minimum values + name_pad = 0 + comp_name_pad = 0 + AT_pad = 6 # requires (, , ) in addition to data length + RELATIVE_pad = 0 + ROTATED_pad = 6 # requires (, , ) in addition to data length + ROTATED_characters = 7 # ROTATED is 7 characters + AT_characters = 2 # AT is 2 characters + SPACING_between_strings = 7 # combining 8 strings, 7 spaces + + # Check if longest line length exceeded + longest_line_length = (longest_name + name_pad + + longest_component_name + comp_name_pad + + longest_at_xyz_name + AT_pad + + longest_at_relative_name + RELATIVE_pad + + longest_rotated_xyz_name + ROTATED_pad + + longest_rotated_relative_name + + ROTATED_characters + + AT_characters + + SPACING_between_strings) + + def coordinates_to_string(data): + return ("(" + + str(data[0]) + ", " + + str(data[1]) + ", " + + str(data[2]) + ")") + + n_lines = 1 + """ + If calculated line length is above the limit loaded from the + configuration file, attempt to split the output over an + additional line. This is hardcoded up to 3 lines. + """ + + if longest_line_length > line_limit: + n_lines = 2 + longest_at_xyz_name = max([longest_at_xyz_name, + longest_rotated_xyz_name]) + longest_rotated_xyz_name = longest_at_xyz_name + RELATIVE_pad = 0 + + SPACING_between_strings = 4 # combining 5 strings, 4 spaces + + longest_line_length_at = (longest_name + + comp_name_pad + + longest_component_name + + comp_name_pad + + longest_at_xyz_name + + AT_pad + + longest_at_relative_name + + ROTATED_characters + + SPACING_between_strings) + longest_line_length_rotated = (longest_name + + comp_name_pad + + longest_component_name + + comp_name_pad + + longest_rotated_xyz_name + + ROTATED_pad + + longest_rotated_relative_name + + ROTATED_characters + + SPACING_between_strings) + + if (longest_line_length_at > line_limit + or longest_line_length_rotated > line_limit): + n_lines = 3 + + if n_lines == 1: + for component in printed_components: + p_name = str(component.name) + p_name = p_name.ljust(longest_name + name_pad) + + p_comp_name = str(component.component_name) + p_comp_name = p_comp_name.ljust(longest_component_name + + comp_name_pad) + + p_AT = coordinates_to_string(component.AT_data) + p_AT = p_AT.ljust(longest_at_xyz_name + AT_pad) + + p_AT_RELATIVE = str(component.AT_relative) + p_AT_RELATIVE = p_AT_RELATIVE.ljust(longest_at_relative_name + + RELATIVE_pad) + + p_ROTATED = coordinates_to_string(component.ROTATED_data) + p_ROTATED = p_ROTATED.ljust(longest_rotated_xyz_name + + ROTATED_pad) + + p_ROTATED_RELATIVE = str(component.ROTATED_relative) + + if component.ROTATED_specified: + print(p_name, p_comp_name, + "AT", p_AT, p_AT_RELATIVE, + "ROTATED", p_ROTATED, p_ROTATED_RELATIVE) + else: + print(p_name, p_comp_name, "AT", p_AT, p_AT_RELATIVE) + + elif n_lines == 2: + for component in printed_components: + p_name = str(component.name) + p_name = p_name.ljust(longest_name + name_pad) + + p_comp_name = str(component.component_name) + p_comp_name = p_comp_name.ljust(longest_component_name + + comp_name_pad) + + p_AT = coordinates_to_string(component.AT_data) + p_AT = p_AT.ljust(longest_at_xyz_name + AT_pad) + + p_AT_RELATIVE = str(component.AT_relative) + p_AT_RELATIVE = p_AT_RELATIVE.ljust(longest_at_relative_name + + RELATIVE_pad) + + p_ROTATED_align = " "*(longest_name + + comp_name_pad + + longest_component_name + + comp_name_pad) + + p_ROTATED = coordinates_to_string(component.ROTATED_data) + p_ROTATED = p_ROTATED.ljust(longest_rotated_xyz_name + + ROTATED_pad) + + p_ROTATED_RELATIVE = str(component.ROTATED_relative) + + if component.ROTATED_specified: + print(p_name, p_comp_name, + "AT ", p_AT, p_AT_RELATIVE, "\n", + p_ROTATED_align, "ROTATED", + p_ROTATED, p_ROTATED_RELATIVE) + else: + print(p_name, p_comp_name, + "AT ", p_AT, p_AT_RELATIVE) + + elif n_lines == 3: + for component in printed_components: + p_name = bcolors.BOLD + str(component.name) + bcolors.ENDC + + p_comp_name = (bcolors.BOLD + + str(component.component_name) + + bcolors.ENDC) + + p_AT = coordinates_to_string(component.AT_data) + + p_AT_RELATIVE = str(component.AT_relative) + + p_ROTATED = coordinates_to_string(component.ROTATED_data) + + p_ROTATED_RELATIVE = str(component.ROTATED_relative) + + if component.ROTATED_specified: + print(p_name + " ", p_comp_name, "\n", + " AT ", p_AT, p_AT_RELATIVE, "\n", + " ROTATED", p_ROTATED, p_ROTATED_RELATIVE) + else: + print(p_name + " ", p_comp_name, "\n", + " AT ", p_AT, p_AT_RELATIVE) + + if self.run_to_ref is not None: + print("Showing subset of instrument until cut at '" + + self.run_to_ref + + "' component.") + + def write_c_files(self): + """ + Obsolete method for writing instrument parts to c files + + It is possible to use this function to write c files to a folder + called generated_includes that can then be included in the + different sections of a McStas instrument. Component objects are + NOT written to these files, but rather the contents of the + trace_section that can be set using the append_trace method. + """ + path = os.getcwd() + path = os.path.join(path, "generated_includes") + if not os.path.isdir(path): + try: + os.mkdir(path) + except OSError: + print("Creation of the directory %s failed" % path) + + file_path = os.path.join(".", "generated_includes", + self.name + "_declare.c") + with open(file_path, "w") as fo: + fo.write("// declare section for %s \n" % self.name) + + file_path = os.path.join(".", "generated_includes", + self.name + "_declare.c") + with open(file_path, "a") as fo: + for dec_line in self.declare_list: + if isinstance(dec_line, str): + # append declare section parts written here + fo.write(dec_line) + else: + dec_line.write_line(fo) + fo.write("\n") + fo.close() + + file_path = os.path.join(".", "generated_includes", + self.name + "_initialize.c") + fo = open(file_path, "w") + fo.write(self.initialize_section) + fo.close() + + file_path = os.path.join(".", "generated_includes", + self.name + "_trace.c") + fo = open(file_path, "w") + fo.write(self.trace_section) + fo.close() + + file_path = os.path.join(".", "generated_includes", + self.name + "_component_trace.c") + fo = open(file_path, "w") + for component in self.component_list: + component.write_component(fo) + + def has_errors(self): + """ + Method that returns true if errors are found in instrument + """ + + has_errors = True + try: + self.check_for_errors() + has_errors = False + except: + pass + + return has_errors + + def check_for_errors(self): + """ + Methods that checks for common McStas errors + + Currently checks for: + RELATIVE for AT and ROTATED reference a component that have not yet + been defined. + + Using variables in components that have not been defined. + """ + + # Check RELATIVE exists + self.check_for_relative_errors() + + # Check variables used have been declared + parameters = [x.name for x in self.parameters] + variables = [x.name for x in self.declare_list + if isinstance(x, DeclareVariable)] + pars_and_vars = parameters + variables + + # Check component parameters + for component in self.component_list: + component.check_parameters(pars_and_vars) + + def check_for_relative_errors(self, start_ref=None, end_ref=None, allow_absolute=True): + """ + Method for checking if RELATIVE locations does not contain unknown references + + Using the start_ref and end_ref keyword arguments, a subset of the + instrument can be checked for internal consistency. + """ + + if start_ref is None and end_ref is None: + component_list = self.make_component_subset() + elif start_ref == self.run_from_ref and end_ref == self.run_to_ref: + component_list = self.make_component_subset() + else: + start_i, end_i = self.get_component_subset_index_range(start_ref, end_ref) + component_list = self.component_list[start_i:end_i] + + seen_instrument_names = [] + for component in component_list: + seen_instrument_names.append(component.name) + + if component.name == start_ref: + # Avoid checking first component when start_ref != 0 + continue + + references = [] + if component.AT_reference not in (None, "PREVIOUS"): + references.append(component.AT_reference) + + if not allow_absolute: + if component.AT_relative == "ABSOLUTE": + raise McStasError("Component '" + component.name + + "' was set relative to ABSOLUTE" + + " which is not allowed after an" + + " instrument split.") + + if ( component.ROTATED_specified and + component.ROTATED_reference not in (None, "PREVIOUS")): + references.append(component.ROTATED_reference) + + if not allow_absolute: + if component.ROTATED_relative == "ABSOLUTE" and component.ROTATED_specified: + raise McStasError("Component '" + component.name + + "' was set relative to ABSOLUTE" + + " which is not allowed after an" + + " instrument split.") + + for ref in references: + if ref not in seen_instrument_names: + raise McStasError("Component '" + str(component.name) + + "' referenced unknown component" + " named '" + str(ref) + "'.\n" + "This check can be skipped with" + " settings(checks=False)") + + + def read_instrument_file(self): + """ + Reads current instrument file if it exists, otherwise creates one first + """ + + instrument_path = os.path.join(self.input_path, self.name + ".instr") + if not os.path.exists(instrument_path): + self.write_full_instrument() + if not os.path.exists(instrument_path): + raise RuntimeError("Failing to write instrument file.") + + with open(instrument_path, "r") as fo: + return fo.read() + + def show_instrument_file(self, line_numbers=False): + """ + Displays the current instrument file + + Parameters + ---------- + line_numbers : bool + Select whether line numbers should be displayed + """ + + instrument_code = self.read_instrument_file() + + if not line_numbers: + print(instrument_code) + return + else: + lines = instrument_code.split("\n") + number_of_lines = len(lines) + line_space = len(str(number_of_lines)) + for index, line in enumerate(lines): + line_number = str(index + 1).ljust(line_space) + " | " + full_line = line_number + line + print(full_line.replace("\n", "")) + + def write_full_instrument(self): + """ + Method for writing full instrument file to disk + + This method writes the instrument described by the instrument + objects to disk with the name specified in the initialization of + the object. + """ + + # Catch common errors before writing the instrument + if self._run_settings["checks"]: + self.check_for_errors() + + # Create file identifier + fo = open(os.path.join(self.input_path, self.name + ".instr"), "w") + + # Write quick doc start + fo.write("/" + 80*"*" + "\n") + fo.write("* \n") + fo.write("* McStas, neutron ray-tracing package\n") + fo.write("* Copyright (C) 1997-2008, All rights reserved\n") + fo.write("* Risoe National Laboratory, Roskilde, Denmark\n") + fo.write("* Institut Laue Langevin, Grenoble, France\n") + fo.write("* \n") + fo.write("* This file was written by McStasScript, which is a \n") + fo.write("* python based McStas instrument generator written by \n") + fo.write("* Mads Bertelsen in 2019 while employed at the \n") + fo.write("* European Spallation Source Data Management and \n") + fo.write("* Software Centre\n") + fo.write("* \n") + fo.write("* Instrument: %s\n" % self.name) + fo.write("* \n") + fo.write("* %Identification\n") # Could allow the user to insert this + fo.write("* Written by: %s\n" % self.author) + t_format = "%H:%M:%S on %B %d, %Y" + fo.write("* Date: %s\n" % datetime.datetime.now().strftime(t_format)) + fo.write("* Origin: %s\n" % self.origin) + fo.write("* %INSTRUMENT_SITE: Generated_instruments\n") + fo.write("* \n") + fo.write("* !!Please write a short instrument description (1 line) here!!\n") + fo.write("* \n") + fo.write("* %Description\n") + fo.write("* Please write a longer instrument description here!\n") + fo.write("* \n") + fo.write("* \n") + fo.write("* %Parameters\n") + # Insert parameter names and template for filling in mcdoc table + for param in list(self.parameters): + fo.write("* " + param.name + ": [unit] " + param.comment + "\n") + fo.write("* \n") + fo.write("* %Link \n") + # Add description of parameters here + fo.write("* \n") + fo.write("* %End \n") + fo.write("*"*80 + "/\n") + fo.write("\n") + fo.write("DEFINE INSTRUMENT %s (" % self.name) + fo.write("\n") + # Insert parameters + parameter_list = list(self.parameters) + end_chars = [", "]*len(parameter_list) + if len(end_chars) >= 1: + end_chars[-1] = " " + for variable, end_char in zip(parameter_list, end_chars): + write_parameter(fo, variable, end_char) + fo.write(")\n") + if self.dependency_statement != "": + fo.write("DEPENDENCY " + str(self.dependency_statement) + "\n") + fo.write("\n") + + # Write declare + fo.write("DECLARE \n%{\n") + for dec_line in self.declare_list: + if isinstance(dec_line, str): + # append declare section parts written here + fo.write(dec_line) + else: + dec_line.write_line(fo) + fo.write("\n") + fo.write("%}\n\n") + + # Write uservars + if len(self.user_var_list) > 0: + fo.write("USERVARS \n%{\n") + for user_var in self.user_var_list: + user_var.value = "" # Ensure no value + user_var.write_line(fo) + fo.write("\n") + fo.write("%}\n\n") + + # Write initialize + fo.write("INITIALIZE \n%{\n") + fo.write(self.initialize_section) + # Alternatively hide everything in include + """ + fo.write("%include "generated_includes/" + + self.name + "_initialize.c") + """ + + save_parameter_code = "" + for component in self.make_component_subset(): + if component.save_parameters or self._run_settings["save_comp_pars"]: + save_parameter_code += component.make_write_string() + + if save_parameter_code != "": + fo.write('MPI_MASTER(\n') + fo.write('FILE *file = fopen("component_parameters.txt", "w");\n') + fo.write('if (file) {\n') + fo.write(save_parameter_code) + fo.write('} else {\n') + fo.write(' perror("fopen");\n') + fo.write('}\n') + fo.write(')\n') + + fo.write("%}\n\n") + + # Write trace + fo.write("TRACE \n") + + # Write all components, the first should get the instrument search list + search_object = copy.deepcopy(self.search_statement_list) + for component in self.make_component_subset(): + component.write_component(fo, instrument_search=search_object) + search_object = None # Remove for remaining components + + # Write finally + fo.write("FINALLY \n%{\n") + fo.write(self.finally_section) + # Alternatively hide everything in include + fo.write("%}\n") + + # End instrument file + fo.write("\nEND\n") + + fo.close() + + def get_component_subset_index_range(self, start_ref=None, end_ref=None): + """ + Provides start and end index for components in run_from to run_to range + + Optionally start_ref and end_ref can be given manually which would + overwrite the internal run_from and run_to references. + """ + + if start_ref is None: + start_ref = self.run_from_ref + + if end_ref is None: + end_ref = self.run_to_ref + + # Starting with component named run_from_ref, ending with run_to_ref + component_names = [x.name for x in self.component_list] + start_index = 0 + end_index = len(self.component_list) + if start_ref is not None: + start_index = component_names.index(start_ref) + + if end_ref is not None: + end_index = component_names.index(end_ref) + + return start_index, end_index + + def make_component_subset(self): + """ + Uses run_from and run_to specifications to extract subset of components + + Adds MCPL component at start and/or end as needed, and adjusts the + surrounding components as necessary. + """ + + if self.run_from_ref is None and self.run_to_ref is None: + # Simple case, just return full component list + return self.component_list + + start_index, end_index = self.get_component_subset_index_range() + + # Create a copy of the used component instances + if start_index == end_index: + component_subset = [copy.deepcopy(self.component_list[start_index])] + else: + component_subset = copy.deepcopy(self.component_list[start_index:end_index]) + + if self.run_from_ref is not None: + # Add MCPL input component + MCPL_in = self._create_component_instance("MCPL_" + self.run_from_ref, "MCPL_input") + MCPL_in.set_comment("Automatically inserted to split instrument into parts") + if self.run_from_component_parameters is not None: + MCPL_in.set_parameters(**self.run_from_component_parameters) + + # Ensure first component reset to MCPL position + first_component = component_subset[0] + + # Since a copy of the component is used, we can alter some properties safely + first_component.set_AT([0, 0, 0], "ABSOLUTE") + if first_component.ROTATED_specified: + first_component.set_ROTATED([0, 0, 0], "ABSOLUTE") + + component_subset = [MCPL_in] + component_subset + + if self.run_to_ref is not None: + # MCPL component will replace the component after the last included + replaced_component = self.component_list[end_index] + + # Add MCPL output component + MCPL_out = self._create_component_instance("MCPL_" + self.run_to_ref, "MCPL_output") + MCPL_out.set_comment("Automatically inserted to split instrument into parts") + if self.run_to_component_parameters is not None: + MCPL_out.set_parameters(**self.run_to_component_parameters) + MCPL_out.set_AT(replaced_component.AT_data, RELATIVE=replaced_component.AT_reference) + if replaced_component.ROTATED_specified: + MCPL_out.set_ROTATED(replaced_component.ROTATED_data, RELATIVE=replaced_component.ROTATED_reference) + + component_subset += [MCPL_out] + + return component_subset + + def set_dependency(self, string): + """ + Sets the DEPENDENCY line of instruments, expanding its system search + + The dependency line can be used to tell McStas to search for files in + additional locations. Double quotes are added. + + Parameters + ---------- + string : str + The dependency string + """ + + # Disable by giving an empty string + if len(string) == 0: + self.dependency_statement = "" + return + + if string[0] != '"' and string[-1] != '"': + string = '"' + string + '"' + + self.dependency_statement = string + + def add_search(self, statement, SHELL=False, help_name=""): + """ + Adds a search statement to the instrument + + The dependency line can be used to tell McStas to search for files in + additional locations. Double quotes are added. + + Parameters + ---------- + statement : str + The search statement + + SHELL : bool (default False) + if True, shell keyword is added + + help_name : str + Name used in help messages regarding the component search + """ + + self.search_statement_list.add_statement(SearchStatement(statement, SHELL=SHELL)) + self.component_reader.load_components_from_folder(statement, name=help_name) + + def clear_search(self): + """ + Clears the instrument of all search statements + """ + + self.search_statement_list.clear() + + # Reset component_reader + self.component_class_lib = {} + package_path = self._run_settings["package_path"] + run_path = self._run_settings["run_path"] + self.component_reader = ComponentReader(package_path, + input_path=run_path) + + def show_search(self): + """ + Shows all search statements on instrument level + """ + + print(self.search_statement_list) + + def settings(self, ncount=None, mpi="not_set", seed=None, + force_compile=None, output_path=None, + increment_folder_name=None, custom_flags=None, + executable=None, executable_path=None, + suppress_output=None, gravity=None, checks=None, + openacc=None, NeXus=None, save_comp_pars=False): + """ + Sets settings for McStas run performed with backengine + + Some options are mandatory, for example output_path, which can not + already exist, if it does data will be read from this folder. If the + mcrun command is not in the PATH of the system, the absolute path can + be given with the executable_path keyword argument. This path could + also already have been set at initialization of the instrument object. + + Parameters + ---------- + Keyword arguments + output_path : str + Sets data_folder_name + increment_folder_name : bool + Will update output_path if folder already exists, default True + ncount : int + Sets ncount + mpi : int + Sets thread count + force_compile : bool + If True (default) new instrument file is written, otherwise not + custom_flags : str + Sets custom_flags passed to mcrun + executable : str + Name of the executable + executable_path : str + Path to mcrun command, "" if already in path + suppress_output : bool + Set to True to suppress output + gravity : bool + If True, gravity will be simulated + openacc : bool + If True, adds --openacc to mcrun call + NeXus : bool + If True, adds --format=NeXus to mcrun call + save_comp_pars : bool + If True, McStas run writes all comp pars to disk + """ + + settings = {} + if executable_path is not None: + if not os.path.isdir(str(executable_path)): + raise RuntimeError("The executable_path provided in " + + "settings does not point to a" + + "directory: \"" + + str(executable_path) + "\"") + settings["executable_path"] = executable_path + + if executable is not None: + # check provided executable can be converted to string + str(executable) + settings["executable"] = executable + + if force_compile is not None: + if not isinstance(force_compile, bool): + raise TypeError("force_compile must be a bool.") + settings["force_compile"] = force_compile + + if increment_folder_name is not None: + if not isinstance(increment_folder_name, bool): + raise TypeError("increment_folder_name must be a bool.") + settings["increment_folder_name"] = increment_folder_name + + if ncount is not None: + if not isinstance(ncount, (float, int)): + raise TypeError("ncount must be a number.") + settings["ncount"] = ncount + + if mpi != "not_set": # None is a legal value for mpi + if not isinstance(mpi, (type(None), int)): + raise TypeError("mpi must be an integer or None.") + settings["mpi"] = mpi + + if gravity is not None: + settings["gravity"] = bool(gravity) + + if custom_flags is not None: + str(custom_flags) # Check a string is given + settings["custom_flags"] = custom_flags + + if seed is not None: + settings["seed"] = seed + + if suppress_output is not None: + settings["suppress_output"] = suppress_output + + if checks is not None: + settings["checks"] = checks + + if output_path is not None: + self.output_path = output_path + + if openacc is not None: + settings["openacc"] = bool(openacc) + + if NeXus is not None: + settings["NeXus"] = bool(NeXus) + + if save_comp_pars is not None: + settings["save_comp_pars"] = bool(save_comp_pars) + + self._run_settings.update(settings) + + def settings_string(self): + """ + Returns a string describing settings stored in this instrument object + """ + + variable_space = 20 + description = "Instrument settings:\n" + + if "ncount" in self._run_settings: + value = self._run_settings["ncount"] + description += " ncount:".ljust(variable_space) + description += "{:.2e}".format(value) + "\n" + + if "mpi" in self._run_settings: + value = self._run_settings["mpi"] + if value is not None: + description += " mpi:".ljust(variable_space) + description += str(int(value)) + "\n" + + if "gravity" in self._run_settings: + value = self._run_settings["gravity"] + description += " gravity:".ljust(variable_space) + description += str(value) + "\n" + + if "seed" in self._run_settings: + value = self._run_settings["seed"] + description += " seed:".ljust(variable_space) + description += str(int(value)) + "\n" + + description += " output_path:".ljust(variable_space) + description += str(self.output_path) + "\n" + + if "increment_folder_name" in self._run_settings: + value = self._run_settings["increment_folder_name"] + description += " increment_folder_name:".ljust(variable_space) + description += str(value) + "\n" + + if "run_path" in self._run_settings: + value = self._run_settings["run_path"] + description += " run_path:".ljust(variable_space) + description += str(value) + "\n" + + if "package_path" in self._run_settings: + value = self._run_settings["package_path"] + description += " package_path:".ljust(variable_space) + description += str(value) + "\n" + + if "executable_path" in self._run_settings: + value = self._run_settings["executable_path"] + description += " executable_path:".ljust(variable_space) + description += str(value) + "\n" + + if "executable" in self._run_settings: + value = self._run_settings["executable"] + description += " executable:".ljust(variable_space) + description += str(value) + "\n" + + if "force_compile" in self._run_settings: + value = self._run_settings["force_compile"] + description += " force_compile:".ljust(variable_space) + description += str(value) + "\n" + + if "NeXus" in self._run_settings: + value = self._run_settings["NeXus"] + description += " NeXus:".ljust(variable_space) + description += str(value) + "\n" + + if "openacc" in self._run_settings: + value = self._run_settings["openacc"] + description += " openacc:".ljust(variable_space) + description += str(value) + "\n" + + if "save_comp_pars" in self._run_settings: + value = self._run_settings["save_comp_pars"] + description += " save_comp_pars:".ljust(variable_space) + description += str(value) + "\n" + + return description.strip() + + def show_settings(self): + """ + Prints settings stored in this instrument object + """ + print(self.settings_string()) + + def backengine(self): + """ + Runs instrument with McStas / McXtrace, saves data in data attribute + + This method will write the instrument to disk and then run it using + the mcrun command of the system. Settings are set using settings + method. + """ + + self.__add_input_to_mcpl() + + instrument_path = os.path.join(self.input_path, self.name + ".instr") + if not os.path.exists(instrument_path) or self._run_settings["force_compile"]: + self.write_full_instrument() + + parameters = {} + for parameter in self.parameters: + if parameter.value is None: + raise RuntimeError("Parameter value not set for parameter: '" + parameter.name + + "' set with set_parameters.") + + parameters[parameter.name] = parameter.value + + options = self._run_settings + options["parameters"] = parameters + options["output_path"] = self.output_path + + # Set up the simulation + simulation = ManagedMcrun(self.name + ".instr", **options) + + # Run the simulation and return data + simulation.run_simulation() + + # Load data and store in __data + #data = simulation.load_results() + #self._set_data(data) + + ## look for MCPL_output components and the defined filenames + self.__add_mcpl_to_output(simulation) + + # simulation results from .dat files loaded as dict + data = simulation.load_results() + data_dict = {"data": data} + # adding to the libpyvinyl output datacollection with key = sim_data_key + sim_data_key = self.output_keys[0] + output_data = self.output[sim_data_key] + output_data.set_dict(data_dict) + + if self.run_to_ref is not None: + filename = self.parameters.parameters["run_to_mcpl"].value + + # Check for mcpl files and load those to database + db = self.dump_database + out = db.load_data(expected_filename=filename, + data_folder_path=simulation.data_folder_name, + parameters=self.parameters.parameters, + dump_point=self.run_to_ref, + run_name=self.run_to_name, + comment=self.run_to_comment) + + if out is None: + print("Expected MCPL file was not loaded!") + + if "data" not in self.output[sim_data_key].get_data(): + print("\n\nNo data returned.") + return None + else: + return self.output[sim_data_key].get_data()["data"] + + def __add_input_to_mcpl(self): + try: + mcpl_file = self.input["mcpl"].filename + for comp in self.component_list: + if comp.component_name == "MCPL_input": + comp.filename = '"' + mcpl_file + '"' + break + except: + return + + def __add_mcpl_to_output(self, managed_mcrun): + MCPL_extension = MCPLDataFormat.format_register()["ext"] + num_mcpl_files = 0 + for comp in self.component_list[::-1]: # starting from the last one! + if comp.component_name == "MCPL_output": + num_mcpl_files = num_mcpl_files+1 + + absfilepath = os.path.join(managed_mcrun.data_folder_name, + comp.filename.strip('"').strip("'") + +MCPL_extension) + if os.path.exists(absfilepath+".gz"): + absfilepath+=".gz" + if os.path.exists(absfilepath) is False: + raise RuntimeError(f"MCPL file: {absfilepath} nor {absfilepath}.gz not found") + mcpl_file = pyvinylMCPLData.from_file(absfilepath) + if num_mcpl_files>1: + mcpl_file.key = mcpl_file+str(num_mcpl_files) + self.output.add_data(mcpl_file) + self.output_keys.append(mcpl_file.key) + + def run_full_instrument(self, **kwargs): + """ + Runs McStas instrument described by this class, returns list of + McStasData + + This method will write the instrument to disk and then run it + using the mcrun command of the system. Options are set using + keyword arguments. Some options are mandatory, for example + output_path, which can not already exist, if it does data will + be read from this folder. If the mcrun command is not in the + path of the system, the absolute path can be given with the + executable_path keyword argument. This path could also already + have been set at initialization of the instrument object. + + Parameters + ---------- + Keyword arguments + output_path : str + Sets data_folder_name + ncount : int + Sets ncount + mpi : int + Sets thread count + parameters : dict + Sets parameters + custom_flags : str + Sets custom_flags passed to mcrun + force_compile : bool + If True (default) new instrument file is written, otherwise not + executable_path : str + Path to mcrun command, "" if already in path + """ + warnings.warn( + "run_full_instrument will be removed in future version of McStasScript. \n" + + "Instead supply parameters with set_parameters, set settings with " + + "settings and use backengine() to run. See examples in package. " + + "Documentation now at https://mads-bertelsen.github.io") + + if "foldername" in kwargs: + kwargs["output_path"] = kwargs["foldername"] + del kwargs["foldername"] + + if "parameters" in kwargs: + self.set_parameters(kwargs["parameters"]) + del kwargs["parameters"] + + self.settings(**kwargs) + + return self.backengine() + + def show_instrument(self, format="webgl-classic", width=800, height=450, new_tab=False): + """ + Uses mcdisplay to show the instrument in web browser + + If this method is performed from a jupyter notebook and use the webgl + format the interface will be shown in the notebook using an IFrame. + + Keyword arguments + ----------------- + format : str + 'webgl' (currently broken), 'webgl-classic' or 'window' format for display + width : int + width of IFrame if used in notebook + height : int + height of IFrame if used in notebook + new_tab : bool + Open webgl/webgl-classic in new browser tab + """ + + parameters = {} + for parameter in self.parameters: + if parameter.value is None: + raise RuntimeError("Unspecified parameter: '" + parameter.name + + "' set with set_parameters.") + + parameters[parameter.name] = parameter.value + + # add parameters to command + parameter_string = "" + for key, val in parameters.items(): + parameter_string = (parameter_string + " " + + str(key) # parameter name + + "=" + + str(val)) # parameter value + + if self.package_name == "McXtrace": + executable = "mxdisplay" + else: + executable = "mcdisplay" + + if format == "webgl": + executable = executable+"-webgl" + elif format == "webgl-classic": + executable = executable+"-webgl-classic" + elif format == "window": + executable = executable+"-pyqtgraph" + else: + raise ValueError(f"Did not recognize given format '{format}', " + f"must be webgl-classic, webgl or window.") + + # Platform dependent, check both package_path and bin + executable_path = self._run_settings["executable_path"] + bin_path = os.path.join(executable_path, executable) + + if not os.path.isfile(bin_path): + # Take bin in package path into account + package_path = self._run_settings["package_path"] + bin_path = os.path.join(package_path, "bin", executable) + + dir_name_original = self.name + "_mcdisplay" + dir_name = dir_name_original + index = 0 + while os.path.exists(os.path.join(self.input_path, dir_name)): + dir_name = dir_name_original + "_" + str(index) + index += 1 + + dir_control = "--dirname " + dir_name + " " + + self.write_full_instrument() + + instr_path = os.path.join(self.input_path, self.name + ".instr") + instr_path = os.path.abspath(instr_path) + + try: + shell = get_ipython().__class__.__name__ + is_notebook = shell == "ZMQInteractiveShell" + except: + is_notebook = False + + options = "" + if is_notebook and "webgl" in executable and not new_tab: + options += "--nobrowse " + + full_command = ('"' + bin_path + '" ' + + dir_control + + options + + instr_path + + " " + parameter_string) + + process = subprocess.run(full_command, shell=True, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + universal_newlines=True, + cwd=self.input_path) + + if not is_notebook or "webgl" not in executable: + print(process.stderr) + print(process.stdout) + return + + html_path = os.path.join(self.input_path, dir_name, "index.html") + if not os.path.exists(html_path): + print(process.stderr) + print(process.stdout) + print("") + print("mcdisplay run failed.") + return + + # Create IFrame in ipython that shows instrument + + return IFrame(src=html_path, width=width, height=height) + + def show_diagram(self, analysis=False, variable=None, limits=None): + """ + Shows diagram of component connections in insrument + + Shows a diagram with all components as text fields and arrows between + them showing the AT RELATIVE and ROTATED RELATIVE connections. Spatial + connections are shown in blue, and rotational in red. ROTATED + connections are only shown when they are specified. To see the intensity + and number of rays over the course of the instrument, use analysis=True. + + parameters: + analysis : bool + If True, a plot of intensity and ncount over the instrument is included + """ + + if self.has_errors() and self._run_settings["checks"]: + print("The instrument has some error, this diagram is still " + "shown as it may help find the bug.") + + if variable is not None: + analysis = True + + instrument_diagram(self, analysis=analysis, variable=variable, limits=limits) + + if self._run_settings["checks"]: + self.check_for_errors() + + def show_analysis(self, variable=None): + beam_diag = IntensityDiagnostics(self) + beam_diag.run_general(variable=variable) + beam_diag.plot() + + def saveH5(self, filename: str, openpmd: bool = True): + """ + Not relevant, but required from BaseCalculator, will be removed + """ + pass + + +class McStas_instr(McCode_instr): + """ + Main class for writing a McStas instrument using McStasScript + + Initialization of McStas_instr sets the name of the instrument file + and its methods are used to add all aspects of the instrument file. + The class also holds methods for writing the finished instrument + file to disk and to run the simulation. + + Attributes + ---------- + name : str + name of instrument file + + author : str, default "Python Instrument Generator" + name of user of McStasScript, written to the file + + origin : str, default "ESS DMSC" + origin of instrument file (affiliation) + + input_path : str, default "." + directory in which simulation is executed, uses components found there + + output_path : str + directory in which the data is written + + executable_path : str + absolute path of mcrun command, or empty if it is in path + + parameters : ParameterContainer + contains all input parameters to be written to file + + declare_list : list of DeclareVariable instances + contains all declare parrameters to be written to file + + initialize_section : str + string containing entire initialize section to be written + + trace_section : str + string containing trace section (OBSOLETE) + + finally_section : str + string containing entire finally section to be written + + component_list : list of component instances + list of components in the instrument + + component_class_lib : dict + dict of custom Component classes made at run time + + component_reader : ComponentReader + ComponentReader instance for reading component files + + package_path : str + Path to mccode package containing component folders + + run_settings : dict + Dict of options set with settings + + data : list + List of McStasData objects produced by last run + + Methods + ------- + add_parameter(*args, **kwargs) + Adds input parameter to the define section + + add_declare_var(type, name) + Add declared variable called name of given type to the declare section + + append_declare(string) + Appends to the declare section + + append_initialize(string) + Appends a string to the initialize section, then adds new line + + append_initialize_no_new_line(string) + Appends a string to the initialize section + + append_finally(string) + Appends a string to finally section, then adds new line + + append_finally_no_new_line(string) + Appends a string to finally section + + append_trace(string) + Obsolete method, add components instead (used in write_c_files) + + append_trace_no_new_line(string) + Obsolete method, add components instead (used in write_c_files) + + available_components(string) + Shows available components in given category + + component_help(name) + Shows help on component of given name + + add_component(instance_name, component_name, **kwargs) + Add a component to the instrument file + + copy_component(new_component_name, original_component, **kwargs) + Makes a copy of original_component with new_component_name + + get_component(instance_name) + Returns component instance with name instance_name + + get_last_component() + Returns component instance of last component + + print_component(instance_name) + Prints an overview of current state of named component + + print_component_short(instance_name) + Prints short overview of current state of named component + + show_components() + Prints overview of postion / rotation of all components + + write_c_files() + Writes c files for %include in generated_includes folder + + write_full_instrument() + Writes full instrument file to current directory + + show_instrument() + Shows instrument using mcdisplay + + set_parameters(dict) + Inherited from libpyvinyl BaseCalculator + + settings(**kwargs) + Sets settings for performing simulation + + backengine() + Performs simulation, saves in data attribute + + run_full_instrument(**kwargs) + Deprecated method for performing the simulation + + interface() + Shows interface with jupyter notebook widgets + + get_interface_data() + Returns data set from latest simulation in widget + """ + def __init__(self, name, **kwargs): + """ + Initialization of McStas Instrument + + Parameters + ---------- + name : str + Name of project, instrument file will be name + ".instr" + + keyword arguments: + parameters : ParameterContainer or CalculatorParameters + Parameters for this instrument + + dumpfile: str + File path to dump file to be loaded + + author : str + Name of author, written in instrument file + + origin : str + Affiliation of author, written in instrument file + + executable_path : str + Absolute path of mcrun or empty if already in path + + input_path : str + Work directory, will load components from this folder + """ + self.particle = "neutron" + self.package_name = "McStas" + executable = "mcrun" + + super().__init__(name, executable=executable, **kwargs) + + try: + self.mccode_version = check_mcstas_major_version(self._run_settings["executable_path"]) + except: + self.mccode_version = "Unknown" + + def _read_calibration(self): + this_dir = os.path.dirname(os.path.abspath(__file__)) + configuration_file_name = os.path.join(this_dir, "..", + "configuration.yaml") + if not os.path.isfile(configuration_file_name): + raise NameError("Could not find configuration file!") + with open(configuration_file_name, 'r') as ymlfile: + config = yaml.safe_load(ymlfile) + + if type(config) is dict: + self.line_limit = config["other"]["characters_per_line"] + else: + self.line_limit = 85 # default value in case no configuration file is found + + if "MCSTAS" in os.environ: # We are in a McStas environment, use that + self._run_settings["executable_path"] = os.path.dirname(shutil.which("mcrun")) + self._run_settings["package_path"] = os.environ["MCSTAS"] + elif type(config) is dict: + self._run_settings["executable_path"] = config["paths"]["mcrun_path"] + self._run_settings["package_path"] = config["paths"]["mcstas_path"] + else: + # This happens in unit tests that mocks open + self._run_settings["executable_path"] = "" + self._run_settings["package_path"] = "" + self.line_limit = 180 + + @classmethod + def from_dump(cls, dumpfile: str): + """Load a dill dump from a dumpfile. + + Overwrites a libpyvinyl method to load McStas components + + :param dumpfile: The file name of the dumpfile. + :type dumpfile: str + :return: The calculator object restored from the dumpfile. + :rtype: CalcualtorClass + """ + + with open(dumpfile, "rb") as fhandle: + try: + # Loads necessary component classes from unpackers installation + tmp = CustomMcStasUnpickler(fhandle).load() + except: + raise IOError("Cannot load calculator from {}.".format(dumpfile)) + + if not isinstance(tmp, cls): + raise TypeError(f"The object in the file {dumpfile} is not a {cls}") + + return tmp + + +class McXtrace_instr(McCode_instr): + """ + Main class for writing a McXtrace instrument using McStasScript + + Initialization of McXtrace_instr sets the name of the instrument file + and its methods are used to add all aspects of the instrument file. + The class also holds methods for writing the finished instrument + file to disk and to run the simulation. + + Attributes + ---------- + name : str + name of instrument file + + author : str, default "Python Instrument Generator" + name of user of McStasScript, written to the file + + origin : str, default "ESS DMSC" + origin of instrument file (affiliation) + + input_path : str, default "." + directory in which simulation is executed, uses components found there + + output_path : str + directory in which the data is written + + executable_path : str + absolute path of mcrun command, or empty if it is in path + + parameters : ParameterContainer + contains all input parameters to be written to file + + declare_list : list of DeclareVariable instances + contains all declare parrameters to be written to file + + initialize_section : str + string containing entire initialize section to be written + + trace_section : str + string containing trace section (OBSOLETE) + + finally_section : str + string containing entire finally section to be written + + component_list : list of component instances + list of components in the instrument + + component_class_lib : dict + dict of custom Component classes made at run time + + component_reader : ComponentReader + ComponentReader instance for reading component files + + package_path : str + Path to mccode package containing component folders + + run_settings : dict + Dict of options set with settings + + data : list + List of McStasData objects produced by last run + + Methods + ------- + add_parameter(*args, **kwargs) + Adds input parameter to the define section + + add_declare_var(type, name) + Add declared variable called name of given type to the declare section + + append_declare(string) + Appends to the declare section + + append_initialize(string) + Appends a string to the initialize section, then adds new line + + append_initialize_no_new_line(string) + Appends a string to the initialize section + + append_finally(string) + Appends a string to finally section, then adds new line + + append_finally_no_new_line(string) + Appends a string to finally section + + append_trace(string) + Obsolete method, add components instead (used in write_c_files) + + append_trace_no_new_line(string) + Obsolete method, add components instead (used in write_c_files) + + available_components(string) + Shows available components in given category + + component_help(name) + Shows help on component of given name + + add_component(instance_name, component_name, **kwargs) + Add a component to the instrument file + + copy_component(new_component_name, original_component, **kwargs) + Makes a copy of original_component with new_component_name + + get_component(instance_name) + Returns component instance with name instance_name + + get_last_component() + Returns component instance of last component + + print_component(instance_name) + Prints an overview of current state of named component + + print_component_short(instance_name) + Prints short overview of current state of named component + + show_components() + Prints overview of postion / rotation of all components + + write_c_files() + Writes c files for %include in generated_includes folder + + write_full_instrument() + Writes full instrument file to current directory + + show_instrument() + Shows instrument using mcdisplay + + set_parameters(dict) + Inherited from libpyvinyl BaseCalculator + + settings(**kwargs) + Sets settings for performing simulation + + backengine() + Performs simulation, saves in data attribute + + run_full_instrument(**kwargs) + Deprecated method for performing the simulation + + interface() + Shows interface with jupyter notebook widgets + + get_interface_data() + Returns data set from latest simulation in widget + """ + def __init__(self, name, **kwargs): + """ + Initialization of McXtrace Instrument + + Parameters + ---------- + name : str + Name of project, instrument file will be name + ".instr" + + keyword arguments: + parameters : ParameterContainer or CalculatorParameters + Parameters for this instrument + + dumpfile: str + File path to dump file to be loaded + + author : str + Name of author, written in instrument file + + origin : str + Affiliation of author, written in instrument file + + executable_path : str + Absolute path of mcrun or empty if already in path + + input_path : str + Work directory, will load components from this folder + """ + self.particle = "x-ray" + self.package_name = "McXtrace" + executable = "mxrun" + + super().__init__(name, executable=executable, **kwargs) + + try: + self.mccode_version = check_mcxtrace_major_version(self._run_settings["executable_path"]) + except: + self.mccode_version = "Unknown" + + def _read_calibration(self): + this_dir = os.path.dirname(os.path.abspath(__file__)) + configuration_file_name = os.path.join(this_dir, "..", + "configuration.yaml") + if not os.path.isfile(configuration_file_name): + raise NameError("Could not find configuration file!") + with open(configuration_file_name, 'r') as ymlfile: + config = yaml.safe_load(ymlfile) + + if type(config) is dict: + self.line_limit = config["other"]["characters_per_line"] + + if "MCXTRACE" in os.environ: # We are in a McXtrace environment, use that + self._run_settings["executable_path"] = os.path.dirname(shutil.which("mxrun")) + self._run_settings["package_path"] = os.environ["MCXTRACE"] + elif type(config) is dict: + self._run_settings["executable_path"] = config["paths"]["mxrun_path"] + self._run_settings["package_path"] = config["paths"]["mcxtrace_path"] + else: + # This happens in unit tests that mocks open + self._run_settings["executable_path"] = "" + self._run_settings["package_path"] = "" + self.line_limit = 180 + + @classmethod + def from_dump(cls, dumpfile: str): + """Load a dill dump from a dumpfile. + + Overwrites a libpyvinyl method to load McStas components + + :param dumpfile: The file name of the dumpfile. + :type dumpfile: str + :return: The calculator object restored from the dumpfile. + :rtype: CalcualtorClass + """ + + with open(dumpfile, "rb") as fhandle: + try: + # Loads necessary component classes from unpackers installation + tmp = CustomMcXtraceUnpickler(fhandle).load() + except: + raise IOError("Cannot load calculator from {}.".format(dumpfile)) + + if not isinstance(tmp, cls): + raise TypeError(f"The object in the file {dumpfile} is not a {cls}") + + return tmp diff --git a/mcstasscript/interface/plotter.py b/mcstasscript/interface/plotter.py new file mode 100644 index 00000000..9a614815 --- /dev/null +++ b/mcstasscript/interface/plotter.py @@ -0,0 +1,209 @@ +import math + +import numpy as np +import matplotlib.pyplot as plt +import matplotlib.animation as animation + +from mcstasscript.helper.plot_helper import _fmt +from mcstasscript.helper.plot_helper import _find_min_max_I +from mcstasscript.helper.plot_helper import _plot_fig_ax +from mcstasscript.helper.plot_helper import _handle_kwargs + + +def make_plot(data_list, **kwargs): + """ + make_plot plots contents of McStasData objects given in list + + Here a new figure is used for each dataset + + Plotting is controlled through options assosciated with the + McStasData objects. If a list is given, the plots appear in one + subplot. + """ + + data_list = _handle_kwargs(data_list, **kwargs) + + if "figsize" in kwargs: + figsize = kwargs["figsize"] + if isinstance(figsize, list): + figsize = (figsize[0], figsize[1]) + else: + figsize = (13, 7) + + for data in data_list: + fig, ax0 = plt.subplots(figsize=figsize, tight_layout=True) + _plot_fig_ax(data, fig, ax0, **kwargs) + + if "filename" in kwargs: + fig.tight_layout() + fig.savefig(kwargs["filename"]) + else: + plt.show() + + +def make_sub_plot(data_list, **kwargs): + """ + make_sub_plot plots contents of McStasData objects given in list + + It is fit into one big figure, each data set as a subplot. + + Plotting is controlled through options assosciated with the + McStasData objects. If a list is given, the plots appear in one + subplot. + """ + + data_list = _handle_kwargs(data_list, **kwargs) + + number_of_plots = len(data_list) + if number_of_plots == 0: + print("No data to plot") + return + + # Find reasonable grid size for the number of plots + special_cases = { + 1: (1, 1), + 4: (2, 2), + } + + if number_of_plots in special_cases: + dim1 = special_cases[number_of_plots][0] + dim2 = special_cases[number_of_plots][0] + else: + if number_of_plots < 3: + dim2 = number_of_plots + dim1 = 1 + else: + dim2 = 3 + dim1 = math.ceil(number_of_plots / dim2) + + if "figsize" in kwargs: + figsize = kwargs["figsize"] + if isinstance(figsize, list): + figsize = (figsize[0], figsize[1]) + else: + # Adjust figure size after number of plots + figsize = (1 + dim2*4, 0.5 + 3.0*dim1) + if dim1 == 1 and dim2 == 1: + # Single plots can be a bit larger + figsize = (7, 5) + + fig, axs = plt.subplots(dim1, dim2, figsize=figsize, tight_layout=True) + axs = np.array(axs) + ax = axs.reshape(-1) + + for data, ax0 in zip(data_list, ax): + _plot_fig_ax(data, fig, ax0, **kwargs) + + fig.tight_layout() + + if "filename" in kwargs: + fig.tight_layout() + fig.savefig(kwargs["filename"]) + plt.close(fig) + else: + plt.show() + + +def make_animation(data_list, **kwargs): + """ + Creates an animation from list of McStasData objects + + Parameters + ---------- + data_list : list of McStasData + List of McStasData objects for animation + + Keyword arguments + ----------------- + filename : str + Filename for saving the gif + + fps : float + Number of frames per second + + """ + + data_list = _handle_kwargs(data_list, **kwargs) + + if "figsize" in kwargs: + figsize = kwargs["figsize"] + if isinstance(figsize, list): + figsize = (figsize[0], figsize[1]) + else: + figsize = (13, 7) + + if "fps" in kwargs: + period_in_ms = 1000 / kwargs["fps"] + else: + period_in_ms = 200 + + # find limits for entire dataset + maximum_values = [] + minimum_values = [] + + is_1D = False + is_2D = False + + for data in data_list: + if isinstance(data.metadata.dimension, int): + is_1D = True + + elif len(data.metadata.dimension) == 2: + is_2D = True + + min_value, max_value = _find_min_max_I(data) + + # When data empty, min and max value is 0, skip + if not (min_value == 0 and max_value == 0): + minimum_values.append(min_value) + maximum_values.append(max_value) + + if is_1D and is_2D: + raise ValueError( + "Both 1D and 2D data in animation, only one allowed.") + + if len(minimum_values) == 0: + raise ValueError( + "No data found for animation!") + + maximum_value = np.array(maximum_values).max() + minimum_value = np.array(minimum_values).min() + + if "orders_of_mag" in kwargs: + orders_of_mag = kwargs["orders_of_mag"] + mag_diff = np.log10(maximum_value) - np.log10(minimum_value) + if mag_diff > orders_of_mag: + minimum_value_log10 = np.log10(maximum_value) - orders_of_mag + minimum_value = 10**(minimum_value_log10) + + kwargs["fixed_minimum_value"] = minimum_value + kwargs["fixed_maximum_value"] = maximum_value + + fig, ax0 = plt.subplots(figsize=figsize, tight_layout=True) + im = _plot_fig_ax(data_list[0], fig, ax0, **kwargs) + + def animate_2D(index): + data = data_list[index] + intensity = data.Intensity + + ax0.set_title(data.metadata.title) + + im.set_array(intensity.ravel()) + return im, + + anim = animation.FuncAnimation(fig, animate_2D, + frames=len(data_list), + interval=period_in_ms, + blit=False, repeat=True) + + plt.show() + + # The animation doesn't play unless it is saved. Bug. + if "filename" in kwargs: + filename = kwargs["filename"] + if not filename.endswith(".gif"): + filename = filename + ".gif" + + # check if imagemagick available? + print("Saving animation with filename : \"" + filename + "\"") + anim.save(filename, writer="imagemagick") \ No newline at end of file diff --git a/mcstasscript/interface/reader.py b/mcstasscript/interface/reader.py new file mode 100644 index 00000000..16748f00 --- /dev/null +++ b/mcstasscript/interface/reader.py @@ -0,0 +1,79 @@ +import os +from mcstasscript.instr_reader.control import InstrumentReader +from mcstasscript.interface.instr import McStas_instr + + +class McStas_file: + """ + Reader of McStas files, can add to an existing McStasScript + instrument instance or create a corresponding McStasScript python + file. + + Methods + ------- + + add_to_instr(Instr) + Add information from McStas file to McStasScript Instr instance + + write_python_file(filename) + Write python file named filename that reproduce the McStas instr + """ + + def __init__(self, filename): + """ + Initialization of McStas_file class, needs McStas instr filename + + Parameters + ---------- + filename (str) + Name of McStas instrument file to be read + """ + + # Check filename + if not os.path.isfile(filename): + raise ValueError("Given filename, \"" + filename + + "\" could not be found.") + + self.Reader = InstrumentReader(filename) + + def add_to_instr(self, Instr): + """ + Adds information from the McStas file to McStasScript instr + + Parameters + ---------- + Instr (McStasScript McStas_instr instance) + McStas_instr instance to add instrument information to + """ + + # Check Instr + if not isinstance(Instr, McStas_instr): + raise TypeError("Given object is not of type McStas_instr!") + + self.Reader.add_to_instr(Instr) + + def write_python_file(self, filename, **kwargs): + """ + Writes python file that reproduces McStas instrument file + + Parameters + ---------- + filename (str) + Filename of python file to be written + """ + + if "force" in kwargs: + force = kwargs["force"] + else: + force = False + + # Check product_filename is available + if os.path.isfile(filename): + if force: + os.remove(filename) + else: + raise ValueError("Filename \"" + filename + + "\" already exists, you can overwrite with " + + "force=True") + + self.Reader.generate_py_version(filename) diff --git a/mcstasscript/jb_interface/__init__.py b/mcstasscript/jb_interface/__init__.py new file mode 100644 index 00000000..40f10dfc --- /dev/null +++ b/mcstasscript/jb_interface/__init__.py @@ -0,0 +1,3 @@ +from .simulation_interface import SimInterface +from .plot_interface import PlotInterface +from .show_interface import show diff --git a/mcstasscript/jb_interface/plot_interface.py b/mcstasscript/jb_interface/plot_interface.py new file mode 100644 index 00000000..3f2fb8cc --- /dev/null +++ b/mcstasscript/jb_interface/plot_interface.py @@ -0,0 +1,505 @@ +import sys +import os +import threading + +from collections import OrderedDict + +import ipywidgets as widgets +from ipywidgets import GridBox +from IPython.display import display, clear_output + +import matplotlib.pyplot as plt + +from mcstasscript.interface.functions import name_search +from mcstasscript.helper.plot_helper import _plot_fig_ax + +from mcstasscript.jb_interface.widget_helpers import HiddenPrints + + +class PlotInterface: + """ + Class for providing plotting interface given McStasScript data + """ + def __init__(self, data=None): + """ + Initialize interface for exploring a dataset with plotting options + + Parameters + ---------- + + data: List of McStasData objects + Optional to set the data, otherwise use set_data method + """ + self.data = data + + # Variables related to monitor choice + self.monitor_dropdown = None + self.current_monitor = None + + # default plotting + self.log_mode = None + self.orders_of_mag = 300 # default value in McStasScript + self.colormap = "jet" + + # Matplotlib objects + self.fig = None + self.ax = None + self.colorbar_ax = None + + def set_data(self, data): + """ + Set a new dataset for the interface, and updates the plot + + Parameters + ---------- + + data: List of McStasData objects + New dataset that will be plotted + """ + self.data = data + self.monitor_dropdown.set_data(data) + self.update_plot() + + def set_current_monitor(self, monitor): + """ + Selects a new monitor to be plotted + """ + self.current_monitor = monitor + self.update_plot() + + def set_log_mode(self, log_mode): + """ + Sets log mode for plotting, True or False + """ + self.log_mode = bool(log_mode) + self.update_plot() + + def set_orders_of_mag(self, orders_of_mag): + """ + Sets orders_of_mag value for logarithmic plots + """ + self.orders_of_mag = orders_of_mag + self.update_plot() + + def set_colormap(self, colormap): + """ + Choose colormap, has to be available in matplotlib + """ + self.colormap = colormap + self.update_plot() + + def new_plot(self): + """ + Sets up original plot with fig, ax and ax for colorbar + """ + # fig, ax = plt.subplots(constrained_layout=True, figsize=(6, 4)) + + self.fig, (self.ax, self.colorbar_ax) = plt.subplots(ncols=2, + gridspec_kw={'width_ratios': [6, 1]}, + tight_layout=True) + + self.fig.canvas.toolbar_position = 'bottom' + + plt.show() + + self.update_plot() + + def update_plot(self): + """ + Updates the plot with current data, monitor and plot options + + Threading lock is used as this method is used in a threading context + and can easily fail if new data is written while plotting. The lock + prevents this from happening. + """ + lock = threading.Lock() + + with lock: + # Clear plot first + self.ax.cla() + #self.ax.xaxis.set_ticks([]) + #self.ax.yaxis.set_ticks([]) + self.colorbar_ax.cla() + #self.colorbar_ax.xaxis.set_ticks([]) + #self.colorbar_ax.yaxis.set_ticks([]) + + # Display message if not data can be plotted + if self.data is None: + self.ax.text(0.3, 0.5, "No data available yet") + self.colorbar_ax.set_axis_off() + self.ax.xaxis.set_ticks([]) + self.ax.yaxis.set_ticks([]) + return + + if len(self.data) == 0: + self.ax.text(0.25, 0.5, "Simulation returned no data") + self.colorbar_ax.set_axis_off() + self.ax.xaxis.set_ticks([]) + self.ax.yaxis.set_ticks([]) + return + + if self.current_monitor is None: + self.ax.text(0.3, 0.5, "Select a monitor to plot") + self.colorbar_ax.set_axis_off() + self.ax.xaxis.set_ticks([]) + self.ax.yaxis.set_ticks([]) + return + + # Get monitor and establish plot options + monitor = name_search(self.current_monitor, self.data) + plot_options = {"show_colorbar": True, "log": self.log_mode, "colormap": self.colormap} + if self.orders_of_mag != "disabled": + plot_options["orders_of_mag"] = self.orders_of_mag + else: + plot_options["orders_of_mag"] = 300 # Default value in McStasPlotOptions + + #print("Plotting with: ", plot_options) + monitor.set_plot_options(**plot_options) + with HiddenPrints(): + _plot_fig_ax(monitor, self.fig, self.ax, colorbar_axes=self.colorbar_ax) + + self.colorbar_ax.set_aspect(20) + + # Show colorbar if something is present, otherwise hide it + if self.colorbar_ax.lines or self.colorbar_ax.collections: + self.colorbar_ax.set_axis_on() + else: + self.colorbar_ax.set_axis_off() + + self.fig.canvas.draw() + + def show_interface(self): + """ + Show the plot interface + """ + # turn off automatic plotting + plt.ioff() + + # Set up plot area + output = widgets.Output() + + with output: + self.new_plot() + + output.layout = widgets.Layout(width="75%") + + # could retrieve default plot options from data if given + + plot_control_list = [] # Keep all control widgets in this list + plot_control_list.append(widgets.Label(value="Choose monitor")) + + # Set up dropdown list for monitor choice + self.monitor_dropdown = MonitorDropdown(self.set_current_monitor) + plot_control_list.append(self.monitor_dropdown.make_widget()) + + plot_control_list.append(widgets.Label(value="Plot options")) + + # Set up checkbox for log plotting + log_checkbox = LogCheckbox(self.log_mode, self.set_log_mode) + plot_control_list.append(log_checkbox.make_widget()) + + # Set up text field for orders of mag input + log_orders_of_mag = OrdersOfMagField(self.set_orders_of_mag) + plot_control_list.append(log_orders_of_mag.make_widget()) + + # Set up dropdown box for colormap + colormap_control = ColormapDropdown(self.set_colormap) + plot_control_list.append(colormap_control.make_widget()) + + plot_controls = widgets.VBox(plot_control_list, + layout=widgets.Layout(width="25%")) + + # In case data is already supplied, set it + if self.data is not None: + self.set_data(self.data) + + return widgets.HBox([output, plot_controls]) + + +class ColormapDropdown: + """ + Class for controlling dropdown menus for colormaps + """ + def __init__(self, set_colormap): + """ + Controls colormap dropdown menus with given set_colormap function + + Creates dropdown widget and calls the given set_colormap function + when the user updates the colormap choice. + The colormap choice is given as two dropdown menus, one for selecting + the category of colormap, and the other to select the actual colormap. + + The available colormaps are those supported in matplotlib + + Parameters + ---------- + + set_colormap : function + Function called with colormap name as argument when changed + + """ + self.set_colormap = set_colormap + self.colormap_widget = None + + # Default colormaps in matplotlib + self.cmaps = OrderedDict() + self.cmaps['Perceptually Uniform Sequential'] = [ + 'viridis', 'plasma', 'inferno', 'magma', 'cividis'] + self.cmaps['Sequential'] = [ + 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds', + 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu', + 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn'] + self.cmaps['Sequential (2)'] = [ + 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink', + 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia', + 'hot', 'afmhot', 'gist_heat', 'copper'] + self.cmaps['Diverging'] = [ + 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu', + 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic'] + self.cmaps['Cyclic'] = ['twilight', 'twilight_shifted', 'hsv'] + self.cmaps['Qualitative'] = ['Pastel1', 'Pastel2', 'Paired', 'Accent', + 'Dark2', 'Set1', 'Set2', 'Set3', + 'tab10', 'tab20', 'tab20b', 'tab20c'] + self.cmaps['Miscellaneous'] = [ + 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern', + 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg', + 'gist_rainbow', 'rainbow', 'jet', #'turbo', # turbo reports errors + 'nipy_spectral', 'gist_ncar'] + + self.categories = self.cmaps.keys() + + def make_widget(self): + """ + Creates the widget and sets appropriate update functions + + The category dropdown will change options for the actual colormap + dropdown menu through the update_cmap_options method. + The colormap choice uses the update_cmap method and calls the + update_function held in attributes. + """ + + header = widgets.Label(value="Colormap category") + category = widgets.Dropdown(value="Miscellaneous", options=self.categories, + layout=widgets.Layout(width="98%")) + category.observe(self.update_cmap_options, "value") + + description = widgets.Label(value="Colormap", layout=widgets.Layout(width="39%")) + default_options = self.cmaps[category.value] + self.colormap_widget = widgets.Dropdown(value="jet", options=default_options, + layout=widgets.Layout(width="58%")) + self.colormap_widget.observe(self.update_cmap, "value") + + colormap = widgets.HBox([description, self.colormap_widget]) + + return widgets.VBox([header, category, colormap]) + + def update_cmap_options(self, change): + """ + Updates the colormap options in the colormap widget + """ + self.colormap_widget.options = self.cmaps[change.new] + + def update_cmap(self, change): + """ + Updates the colormap with the set_colormap function in attributes + """ + self.set_colormap(change.new) + + +class MonitorDropdown: + """ + Class for creating monitor dropdown menu + """ + def __init__(self, set_current_monitor): + """ + Sets up MonitorDropdown menu with given update function + + Parameters + ---------- + + update_plot: function + function called to update plot + """ + + self.set_current_monitor = set_current_monitor + self.last_monitor = None + self.data = None + self.widget = None + + def set_data(self, data): + """ + Updates the menu options given new data + + Parameters + ---------- + + data: McStasData list + Data returned by McStasScript simulation + """ + + lock = threading.Lock() + with lock: + + self.data = data + + if data is None: + self.widget.options = [] + return + + monitor_names = [] + for data in self.data: + + # Ensure data names are unique + original_name = data.name + index = 1 + while data.name in monitor_names: + data.name = original_name + "_" + str(index) + index += 1 + + monitor_names.append(data.name) + + self.widget.options = monitor_names + + # Go to the last set monitor if possible + if self.last_monitor is not None: + if self.last_monitor in self.widget.options: + self.set_current_monitor(self.last_monitor) + + def make_widget(self): + """ + Builds the widget for the dropdown menu and links to update method + + """ + self.widget = widgets.Dropdown(layout=widgets.Layout(width="98%")) + + self.widget.observe(self.update, "value") + + return self.widget + + def update(self, change): + """ + Calls update_function when dropdown menu is used + + Parameters + ---------- + + change: widget change + state change of widget + """ + # can do input sanitation here + lock = threading.Lock() + with lock: + self.set_current_monitor(change.new) + if change.new is not None: + self.last_monitor = change.new + + +class LogCheckbox: + """ + Class for widget with log mode checkbox + """ + def __init__(self, log_mode, set_log_mode): + """ + Sets up checkbox with log mode, takes initial mode and update function + + Parameters + ---------- + + log_mode : bool + Initial state of log checkbox + + set_log_mode : function + Function which will be called with new log_mode + """ + self.log_mode = log_mode + self.set_log_mode = set_log_mode + + def make_widget(self): + """ + Creates the actual checkbox widget along with descriptive text + """ + description_layout = widgets.Layout(width='250px', height='32px', + display="flex", + justify_content="flex-start") + description_log = widgets.Label(value="Log plot", layout=description_layout) + + log_check = widgets.Checkbox( + value=self.log_mode, + description='', + disabled=False, + indent=False, + layout=widgets.Layout(width='70px', height='32px') + ) + log_check.observe(self.update, "value") + + return widgets.HBox([description_log, log_check]) + + def update(self, change): + """ + Calls given update function with new log_mode + + Parameters + ---------- + + change : change object + Change object from widget interaction + """ + self.set_log_mode(change.new) + + +class OrdersOfMagField: + """ + Class for handling orders_of_mag widget + """ + def __init__(self, set_orders_of_mag): + """ + Widget for entering orders_of_mag used in log plotting + + Orders_of_mag parameter controls how many orders of magnitude are + plotted when showing log scale, counting from the highest value and + down. The object needs an update function orders_of_mag. + The widget text field starts with the text "disabled" which + corresponds to the default value of 300 orders of magnitude. + + Parameters + ---------- + + set_orders_of_mag : function + Function for updating orders_of_mag value + """ + self.set_orders_of_mag = set_orders_of_mag + + def make_widget(self): + """ + Creates actual widget with descriptive text + """ + description_layout = widgets.Layout(width='250px', height='32px', + display="flex", + justify_content="flex-start") + description_orders = widgets.Label(value="Orders of magnitude", layout=description_layout) + textbox = widgets.Text(value=str("disabled"), + layout=widgets.Layout(width='70px', height='32px')) + textbox.observe(self.update, "value") + + return widgets.HBox([description_orders, textbox]) + + def update(self, change): + """ + Update orders_of_mag and replot + + Parameters + ---------- + + change: widget change + state change of widget + """ + if change.new == "disabled": + self.set_orders_of_mag(change.new) + return + + try: + float(change.new) + except ValueError: + return + + self.set_orders_of_mag(float(change.new)) diff --git a/mcstasscript/jb_interface/show_interface.py b/mcstasscript/jb_interface/show_interface.py new file mode 100644 index 00000000..61820498 --- /dev/null +++ b/mcstasscript/jb_interface/show_interface.py @@ -0,0 +1,55 @@ +from .simulation_interface import SimInterface +from .plot_interface import PlotInterface + +from mcstasscript.interface.instr import McCode_instr +from mcstasscript.data.data import McStasData + + +def show(function_input): + """ + Shortcut to showing an interface appropriate for given object + + Can show widget interface for instrument object or list of McStasData + objects. Needs "%matplotlib widget" in notebook to work correctly. + + Parameters + ---------- + + function_input : McCode_instr, list of McStasData + + """ + + if isinstance(function_input, McCode_instr): + return show_instrunent(function_input) + + elif isinstance(function_input, (list, McStasData)): + return show_plot(function_input) + + else: + raise RuntimeError("Show did not recoignize object of type" + + str(type(function_input)) + ".") + + +def show_instrunent(instrument): + """ + Shows simulation interface for instrument + """ + simulation_interface = SimInterface(instrument) + return simulation_interface.show_interface() + + +def show_plot(data): + """ + Shows plot interface for given data + """ + if isinstance(data, list): + for element in data: + if not isinstance(element, McStasData): + raise RuntimeError("Given list contains elements that " + + "are not McStasData objects.") + else: + if not isinstance(data, McStasData): + raise RuntimeError("Given data is not McStasData.") + + plot_interface = PlotInterface(data) + return plot_interface.show_interface() diff --git a/mcstasscript/jb_interface/simulation_interface.py b/mcstasscript/jb_interface/simulation_interface.py new file mode 100644 index 00000000..6556f74b --- /dev/null +++ b/mcstasscript/jb_interface/simulation_interface.py @@ -0,0 +1,433 @@ +import sys +import os +import numpy as np +import threading +import copy + +import ipywidgets as widgets +from IPython.display import display + +import matplotlib.pyplot as plt + +from mcstasscript.interface.functions import name_search +from mcstasscript.interface import plotter +from mcstasscript.jb_interface import plot_interface +from mcstasscript.jb_interface.widget_helpers import HiddenPrints +from mcstasscript.jb_interface.widget_helpers import parameter_has_default +from mcstasscript.jb_interface.widget_helpers import get_parameter_default + + +class SimInterface: + """ + Class for setting up widget that controls McStasScript instrument and plot + """ + def __init__(self, instrument): + """ + Sets up widget where the user can input instrument parameters, run the + simulation, see plotted results and adjust the plots. + + The parameters of the instrument model are displayed with name, default + value and comment. Can be adjusted with free text. + + A run button starts a simulation, and basic settings can be adjusted. + + A dropdown menu is available for selecting what monitor to view results + from, and basic settings related to the plot can be adjusted. + + Show the interface with the show_interface method. + + Parameters + ---------- + + instrument: McStas_instr or McXtrace_instr + instrument for which a widget should be created + """ + + self.instrument = instrument + + self.plot_interface = None + + self.run_button = None + self.live_widget = None + self.progress_bar = None + self.sim_steps = 5 + + self.ncount = "1E6" + self.mpi = "disabled" + self.last_mpi_on = None + + self.thread_data = None + self.thread = None + self.run_arguments = None + + self.parameters = {} + # get default parameters from instrument + for parameter in self.instrument.parameters: + if parameter_has_default(parameter): + self.parameters[parameter.name] = get_parameter_default(parameter) + + def make_parameter_widgets(self): + """ + Creates widgets for parameters using dedicated class ParameterWidget + + returns widget including all parameters + """ + parameter_widgets = [] + for parameter in self.instrument.parameters: + par_widget = ParameterWidget(parameter, self.parameters) + parameter_widgets.append(par_widget.make_widget()) + + return widgets.VBox(parameter_widgets) + + def run_simulation_thread(self, change): + """ + Runs simulation as thread, allowing user to update plots simultaneously + + The use of this method has caused crashes, temporarily circumvented by + calling run_simulation_live on button instead. Now plots can now be + updated while a simulation is running. + + Parameters + ---------- + + change: widget change + Not used + """ + + thread = threading.Thread(target=self.run_simulation_live, args=[1]) + thread.start() + + def run_simulation_live(self, change): + """ + Performs the simulation with current parameters and settings. + + When live mode is used, updates plot as more data is added. + + Changes icon on button to hourglass while simulation is running, then + returns to calculator icon. + """ + + lock = threading.Lock() + + if self.live_widget.value: + sim_parts = self.sim_steps + #self.plot_interface.set_data(None) + else: + sim_parts = 1 + + part_ncount = int(float(self.ncount)/sim_parts) + + run_arguments = {"output_path": "interface_" + self.instrument.name, + "increment_folder_name": True, + #"parameters": self.parameters, + "ncount": part_ncount} + if self.mpi != "disabled": + run_arguments["mpi"] = self.mpi + mpi_on = True + else: + mpi_on = False + + # McStas does not recognize if the instrument was compiled with or without mpi + # Ensure it is compiled when switching to and from mpi + # This also ensures the instrument is compiled at the first run + if mpi_on == self.last_mpi_on: + run_arguments["force_compile"] = False + else: + run_arguments["force_compile"] = True + + self.last_mpi_on = mpi_on + + self.run_button.icon = "hourglass" + #print("Running with:", run_arguments) + + if self.live_widget.value: + self.progress_bar.layout.visibility = 'visible' + else: + self.progress_bar.layout.visibility = 'hidden' + + self.progress_bar.value = 0 + plot_data = None + for index in range(sim_parts): + self.instrument.settings(**run_arguments) + self.instrument.set_parameters(self.parameters) + try: + with HiddenPrints(): + self.instrument.backengine() + except NameError: + print("McStas run failed.") + data = [] + + with lock: + self.progress_bar.value = index + 1 + data = self.instrument.output.get_data()["data"] + + if data is not None: + if plot_data is None: + plot_data = data + else: + add_data(plot_data, data) + + sent_data = copy.deepcopy(plot_data) + # This happens in a thread, maybe it should be in Main? + self.plot_interface.set_data(sent_data) + + self.run_button.icon = "calculator" + + def make_run_button(self): + """ + Creates a run button which perform the simulation + """ + button = widgets.Button( + description='Run', + disabled=False, + button_style='', # 'success', 'info', 'warning', 'danger' or '' + tooltip='Runs the simulation with current parameters', + icon='calculator' # (FontAwesome names without the `fa-` prefix) + ) + #button.on_click(self.run_simulation_thread) + button.on_click(self.run_simulation_live) + + return button + + def make_ncount_field(self): + """ + Creates field for ncount, links to update_ncount + + The field supports scientific notation + """ + description_layout = widgets.Layout(width='70px', height='32px', + display="flex", + justify_content="flex-end") + description = widgets.Label(value="ncount", layout=description_layout) + textbox = widgets.Text(value=str(self.ncount), layout=widgets.Layout(width='100px', height='36px')) + textbox.observe(self.update_ncount, "value") + + return widgets.HBox([description, textbox]) + + def update_ncount(self, change): + """ + Updates ncount variable from textbox input + + Only updates when usable input is entered. Supports scientific + notation in input through conversion to float + + Parameters + ---------- + + change: widget change + state change of widget + """ + try: + self.ncount = int(float(change.new)) + except ValueError: + pass + + def make_mpi_field(self): + """ + Creates field for mpi, links to update_mpi + """ + description_layout = widgets.Layout(width='40px', height='32px', + display="flex", + justify_content="flex-end") + description = widgets.Label(value="mpi", layout=description_layout) + textbox = widgets.Text(value=str(self.mpi), layout=widgets.Layout(width='70px', height='36px')) + textbox.observe(self.update_mpi, "value") + + return widgets.HBox([description, textbox]) + + def update_mpi(self, change): + """ + Updates mpi value when integer or the word 'disabled' is given + + Parameters + ---------- + + change: widget change + state change of widget + """ + if change.new == "disabled": + self.mpi = change.new + + try: + self.mpi = int(change.new) + except ValueError: + pass + + def make_live_checkmark(self): + """ + Makes widget for choosing live simulations on / off + """ + widget = widgets.Checkbox(value=False, description="Live results") + widget.layout.visibility = "hidden" + + return widget + + def make_progress_bar(self): + """ + Makes a progress bar for live simulations + """ + widget = widgets.IntProgress(value=0, min=0, max=self.sim_steps, + description="Sim progress", + orientation="horizontal") + + return widget + + def get_data(self): + """ + Returns last data set from this interface + """ + if self.plot_interface is None: + print("No widget interface initialized, use show_interface method.") + return [] + + if self.plot_interface.data is None: + print("No run has been performed with the interface widget yet") + return [] + + return self.plot_interface.data + + def show_interface(self): + """ + Builds and shows widget interface + """ + + # Make parameter controls + parameter_widgets = self.make_parameter_widgets() + + # Make simulation controls + self.live_widget = self.make_live_checkmark() + self.progress_bar = self.make_progress_bar() + self.progress_bar.layout.visibility = "hidden" + self.run_button = self.make_run_button() + ncount_field = self.make_ncount_field() + mpi_field = self.make_mpi_field() + + simulation_widget = widgets.HBox([self.run_button, ncount_field, mpi_field, + self.live_widget, self.progress_bar]) + #layout=widgets.Layout(border="solid")) + + self.plot_interface = plot_interface.PlotInterface() + plot_widget = self.plot_interface.show_interface() + + return widgets.VBox([parameter_widgets, simulation_widget, plot_widget]) + + +class ParameterWidget: + """ + Widget for parameter object from McStasScript instrument + """ + def __init__(self, parameter, parameters): + """ + Describes a widget for a parameter object given all parameters + + When no options are given in ParameterVariable object, the widget will + be a textfield where the user can input the value. If the options + attribute is used, the widget will be a dropdown menu with available + options. The make_widget method returns the widget, and the update + function is called whenever the user interacts with the widget. + + The widget shows parameter name, the interactive widget and a comment + + Parameters + ---------- + + parameter: McStasScript ParameterVariable object + The parameter this widget should represent + + parameters: dict of McStasScript ParameterVariable objects + Dict with all parameter objects of the instrument + """ + + self.parameter = parameter + self.parameters = parameters + + if parameter_has_default(parameter): + self.default_value = get_parameter_default(parameter) + else: + self.default_value = None + + self.name = parameter.name + self.comment = parameter.comment + + def make_widget(self): + """ + Returns widget with parameter name, interactive widget and comment + """ + label = widgets.Label(value=self.name, + layout=widgets.Layout(width='15%', height='32px')) + if len(self.parameter.get_options()) > 0: + par_widget = widgets.Dropdown(options=self.parameter.get_options(), + layout=widgets.Layout(width='10%', height='32px')) + if self.default_value is not None: + if self.default_value in self.parameter.get_options(): + par_widget.value = self.default_value + + if isinstance(self.default_value, str): + + if self.default_value.strip("'") in self.parameter.get_options(): + par_widget.value = self.default_value.strip("'") + elif self.default_value.strip('"') in self.parameter.get_options(): + par_widget.value = self.default_value.strip('"') + + if par_widget.value is None: + print(self.parameter.get_options()) + raise KeyError("default value not found in options for parameter: " + + str(self.parameter.name)) + + else: + par_widget = widgets.Text(value=str(self.default_value), + layout=widgets.Layout(width='10%', height='32px')) + comment = widgets.Label(value=self.comment, + layout=widgets.Layout(width='75%', height='32px')) + + par_widget.observe(self.update, "value") + + return widgets.HBox([label, par_widget, comment]) + + def update(self, change): + """ + Update function called whenever the user updates the widget + + When strings parameters are used, this function adds the necessary + quotation marks if none are provided. + """ + new_value = change.new + if self.parameter.type == "string": + if type(new_value) is str: + if not (new_value[0] == '"' or new_value[0] == "'"): + new_value = '"' + new_value + '"' + else: + + try: + new_value = float(new_value) + except: + return + + self.parameters[self.name] = new_value + + +def add_data(initial, new_data): + """ + Method for adding new data to a data set + + Updates Intensity, Error and Ncount + + Updates all data except metadata info + """ + + for monitor in initial: + ref_ncount = float(monitor.metadata.info["Ncount"]) + + new_monitor = name_search(monitor.name, new_data) + new_ncount = float(new_monitor.metadata.info["Ncount"]) + + total_ncount = ref_ncount + new_ncount + + scale_old = ref_ncount / total_ncount + scale_new = new_ncount / total_ncount + + monitor.Intensity = scale_old*monitor.Intensity + scale_new*new_monitor.Intensity + monitor.Error = np.sqrt(scale_old**2*monitor.Error**2+scale_new**2*new_monitor.Error**2) + monitor.Ncount = monitor.Ncount + new_monitor.Ncount + + monitor.metadata.info["Ncount"] = total_ncount diff --git a/mcstasscript/jb_interface/widget_helpers.py b/mcstasscript/jb_interface/widget_helpers.py new file mode 100644 index 00000000..1bc5595d --- /dev/null +++ b/mcstasscript/jb_interface/widget_helpers.py @@ -0,0 +1,54 @@ +import sys +import os + +class HiddenPrints: + """ + Environment which suppress prints + """ + def __enter__(self): + self._original_stdout = sys.stdout + sys.stdout = open(os.devnull, 'w') + + def __exit__(self, exc_type, exc_val, exc_tb): + sys.stdout.close() + sys.stdout = self._original_stdout + + +def parameter_has_default(parameter): + """ + Checks if ParameterVariable has a default value, returns bool + + Parameters + ---------- + + parameter: ParameterVariable + The parameter to check for default value + """ + if parameter.value is None: + return False + return True + + +def get_parameter_default(parameter): + """ + Returns the default value of a parameter + + Parameters + ---------- + + parameter: ParameterVariable + The parameter for which the default value is returned + """ + if parameter.value is not None: + if parameter.type == "string": + return parameter.value + elif parameter.type == "double" or parameter.type == "": + return float(parameter.value) + elif parameter.type == "int": + return int(parameter.value) + else: + raise RuntimeError("Unknown parameter type '" + + parameter.type + "' of par named '" + + parameter.name + "'.") + + return None diff --git a/mcstasscript/tests/Union_demonstration_test.instr b/mcstasscript/tests/Union_demonstration_test.instr new file mode 100644 index 00000000..765ad512 --- /dev/null +++ b/mcstasscript/tests/Union_demonstration_test.instr @@ -0,0 +1,422 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright (C) 1997-2008, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Instrument: Union_demonstration +* +* %Identification +* Written by: Mads Bertelsen +* Date: September 2015 +* Origin: University of Copenhagen +* %INSTRUMENT_SITE: Union_demos +* +* %Description +* Demonstration of Union components. Here four different powder samples are +* placed in a can each connected to a weird sample holder and contained in +* a cryostat. This unrealistic example is meant to show the syntax and the +* new possibilities when using the Union components. +* With the standard source only two of the samples are illuminated, yet +* multiple scattering occur and events are thus taking place in the last +* two samples. +* +* Example: Detector: m4pi_two_or_more_samples_I=0.0945567 +* +* %Parameters +* stick_displacement [m] height displacement of sample stick +* +* %End +*******************************************************************************/ + +DEFINE INSTRUMENT Union_demonstration(stick_displacement=0, +int test_int = 3, +string test_str = "hurray") + +DECLARE +%{ +int sample_1_index=27,sample_2_index=30,sample_3_index=33,sample_4_index=36; // Indexes of four samples +int scattered_1,scattered_2,scattered_3,scattered_4; +double array[3] = {0.1,0.2,0.3}; +int I_array[4]; +int T_array[5] = {1,2,3,4,5}; +char home[20] = "test_string"; +int necessary = 1; +%} + +INITIALIZE +%{ +// Start of initialize for generated Union_demonstration_copy +/* A=B */ +// A=8 +I_array[2] = 8; +printf("Hello world\n"); +%} + +TRACE + + + +COMPONENT Vanadium_incoherent = Incoherent_process(sigma=5.08,packing_factor=1,unit_cell_volume=13.827) +AT (0,0,0) ABSOLUTE + +// Here manual linking is used, the process string is writte explicitly +COMPONENT Vanadium = Union_make_material(my_absorption=2.1,process_string="Vanadium_incoherent") +AT (0,0,0) ABSOLUTE + +// P0 +COMPONENT Al_incoherent = Incoherent_process(sigma=4*0.0082,packing_factor=1,unit_cell_volume=66.4) //,interact_fraction=0.8) +AT (0,0,0) ABSOLUTE + +// P1 +COMPONENT Al_powder = Powder_process(reflections="Al.laz") +AT (0,0,0) ABSOLUTE + +COMPONENT Al = Union_make_material(my_absorption=100*4*0.231/66.4,process_string="Al_incoherent,Al_powder") +AT (0,0,0) ABSOLUTE + + +// Cu definition +// P0 +COMPONENT Cu_incoherent = Incoherent_process(sigma=4*0.55,packing_factor=1,unit_cell_volume=47.22) +AT (0,0,0) ABSOLUTE + +// P1 +COMPONENT Cu_powder = Powder_process(reflections="Cu.laz") +AT (0,0,0) ABSOLUTE + +COMPONENT Cu = Union_make_material(my_absorption=100*4*3.78/47.22,process_string="Cu_incoherent,Cu_powder") +AT (0,0,0) ABSOLUTE + +// Ag Au mix definition +// P0 +COMPONENT Ag_incoherent = Incoherent_process(sigma=4*0.58,packing_factor=1,unit_cell_volume=68.22,packing_factor=0.5) +AT (0,0,0) ABSOLUTE + +// P1 +COMPONENT Ag_powder = Powder_process(reflections="Ag.laz",packing_factor=0.5) +AT (0,0,0) ABSOLUTE + +// P2 +COMPONENT Au_incoherent = Incoherent_process(sigma=4*0.43,packing_factor=1,unit_cell_volume=67.87,packing_factor=0.5) +AT (0,0,0) ABSOLUTE + +// P3 +COMPONENT Au_powder = Powder_process(reflections="Au.laz",packing_factor=0.5) +AT (0,0,0) ABSOLUTE + +// Here automatic linking is used, all process defined after the last make_material component +// is automatically collected in this next make_material component as the process string +// is not specified. +COMPONENT Au_Ag_mix = Union_make_material(my_absorption=0.5*100*4*3.78/68.22+0.5*100*4*98.65/67.87) +AT (0,0,0) ABSOLUTE + +// Cd definition +// P0 +COMPONENT Cd_incoherent = Incoherent_process(sigma=2*3.46,packing_factor=1,unit_cell_volume=43.11) +AT (0,0,0) ABSOLUTE + +// P1 +COMPONENT Cd_powder = Powder_process(reflections="Cd.laz") +AT (0,0,0) ABSOLUTE + +COMPONENT Cd = Union_make_material(my_absorption=100*2*2520/43.11) +AT (0,0,0) ABSOLUTE + +// Cs definition +// P0 +COMPONENT Cs_incoherent = Incoherent_process(sigma=2*0.55,packing_factor=1,unit_cell_volume=47.22) +AT (0,0,0) ABSOLUTE + +// P1 +COMPONENT Cs_powder = Powder_process(reflections="Cs.laz") +AT (0,0,0) ABSOLUTE + +COMPONENT Cs = Union_make_material(my_absorption=100*2*3.78/47.22) +AT (0,0,0) ABSOLUTE + + + +COMPONENT a1 = Progress_bar() + AT (0,0,0) ABSOLUTE + +// Source for transmission picture +//COMPONENT source = Source_div( +// xwidth=0.12, yheight=0.12,focus_aw=0.5, focus_ah=0.5, +// E0 = 50, +// dE = 0, flux = 1E9) +// AT (0,-0.02,0) RELATIVE a1 ROTATED (0,0,0) RELATIVE a1 + +COMPONENT source = Source_div( + xwidth=0.04, yheight=0.08,focus_aw=0.05, focus_ah=0.05, + E0 = 50, + dE = 0, flux = 1E9) + AT (0.013,-0.02,0) RELATIVE a1 ROTATED (0,0,0) RELATIVE a1 + + +// Sample position +COMPONENT beam_center = Arm() +AT (0,0,3) RELATIVE a1 +ROTATED (0,0,0) RELATIVE a1 + +COMPONENT drum_center = Arm() +AT (0,0.38,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + + +// V1 +COMPONENT cryostat_mountin_plate = Union_cylinder(radius=0.12,yheight=0.01,priority=7,material_string="Al") +AT (0,-0.103,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +// V2 +COMPONENT cryostat_drum_walls = Union_cylinder(radius=0.2,yheight=0.57,priority=8,material_string="Al") +AT (0,0,0) RELATIVE drum_center +ROTATED (0,0,0) RELATIVE drum_center + +// V3 +COMPONENT cryostat_drum_vacuum = Union_cylinder(radius=0.19,yheight=0.55,priority=9,material_string="Vacuum") +AT (0,0,0) RELATIVE drum_center +ROTATED (0,0,0) RELATIVE drum_center + +// V4 +COMPONENT outer_cryostat_wall = Union_cylinder(radius=0.1,yheight=0.2,priority=10,material_string="Al",p_interact=0.2) +AT (0,0,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +// V5 +COMPONENT outer_cryostat_vacuum = Union_cylinder(radius=0.09,yheight=0.2,priority=11,material_string="Vacuum") +WHEN ( necessary == 1 ) +AT (0,0.01,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +// V6 +COMPONENT inner_cryostat_wall = Union_cylinder(radius=0.06,yheight=0.16,priority=12,material_string="Al",p_interact=0.2) +AT (0,0.01,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +// V7 +COMPONENT inner_cryostat_vacuum = Union_cylinder(radius=0.05,yheight=0.15,priority=13,material_string="Vacuum") +AT (0,0.01,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +// V8 +COMPONENT sample_stick_walls = Union_cylinder(radius=0.04,yheight=0.605,priority=14,material_string="Al") +AT (0,0.39,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +// V9 +COMPONENT sample_stick_vacuum = Union_cylinder(radius=0.035,yheight=0.64,priority=15,material_string="Vacuum") +AT (0,0.4,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + + +COMPONENT sample_rod_bottom = Arm() +AT (0,0.05+stick_displacement,0) RELATIVE beam_center +ROTATED (0,85,0) RELATIVE beam_center + +// V10 +COMPONENT sample_rod = Union_cylinder(radius=0.0075,yheight=0.7,priority=25,material_string="Al") +AT (0,0.35,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V11 +COMPONENT sample_rod_collar_1 = Union_cylinder(radius=0.034,yheight=0.02,priority=17,material_string="Al") +AT (0,0.048,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V12 +COMPONENT sample_rod_collar_2 = Union_cylinder(radius=0.034,yheight=0.02,priority=18,material_string="Al") +AT (0,0.14,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V13 +COMPONENT sample_rod_collar_3 = Union_cylinder(radius=0.034,yheight=0.02,priority=19,material_string="Al") +AT (0,0.34,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V14 +COMPONENT sample_rod_collar_4 = Union_cylinder(radius=0.034,yheight=0.02,priority=20,material_string="Al") +AT (0,0.635,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V15 +COMPONENT sample_rod_collar_1_vacuum = Union_cylinder(radius=0.03,yheight=0.016,priority=21,material_string="Vacuum") +AT (0,0.048-0.005,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V16 +COMPONENT sample_rod_collar_2_vacuum = Union_cylinder(radius=0.03,yheight=0.016,priority=22,material_string="Vacuum") +AT (0,0.14-0.005,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V17 +COMPONENT sample_rod_collar_3_vacuum = Union_cylinder(radius=0.03,yheight=0.016,priority=23,material_string="Vacuum") +AT (0,0.34-0.005,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V18 +COMPONENT sample_rod_collar_4_vacuum = Union_cylinder(radius=0.03,yheight=0.016,priority=24,material_string="Vacuum") +AT (0,0.635-0.005,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V19 +COMPONENT sample_holder1 = Union_box(xwidth=0.01,yheight=0.05,zdepth=0.004,priority=35,material_string="Al",p_interact=0.3) +AT (0,0,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V20 +COMPONENT sample_holder2 = Union_box(xwidth=0.0099,yheight=0.004,zdepth=0.03/0.85,priority=51,material_string="Al",p_interact=0.3) +AT (0,-0.03,0.03*0.35+0.004) RELATIVE sample_rod_bottom +ROTATED (25,0,0) RELATIVE sample_rod_bottom + +// V21 +COMPONENT sample_holder3 = Union_box(xwidth=0.0098,yheight=0.004,zdepth=0.03/0.85,priority=52,material_string="Al",p_interact=0.3) +AT (0,-0.03,-0.03*0.35-0.004) RELATIVE sample_rod_bottom +ROTATED (-25,0,0) RELATIVE sample_rod_bottom + +// V22 +COMPONENT sample_holder4 = Union_box(xwidth=0.01,yheight=0.07,zdepth=0.004,priority=53,material_string="Al",p_interact=0.3) +AT (0,-0.03-0.035-0.005,0.03) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V23 +COMPONENT sample_holder5 = Union_box(xwidth=0.01,yheight=0.07,zdepth=0.004,priority=54,material_string="Al",p_interact=0.3) +AT (0,-0.03-0.035-0.005,-0.03) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V24 +COMPONENT sample_holder_bottom = Union_box(xwidth=0.0098,yheight=0.004,zdepth=0.058,priority=42,material_string="Al",p_interact=0.3) +AT (0,-0.03-0.067-0.007,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V25 +COMPONENT sample_holder_top_shelf = Union_box(xwidth=0.0098,yheight=0.004,zdepth=0.058,priority=43,material_string="Al",p_interact=0.3) +AT (0,-0.045+0.003,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V26 +COMPONENT sample_holder_middle_shelf = Union_box(xwidth=0.0098,yheight=0.004,zdepth=0.058,priority=44,material_string="Al",p_interact=0.3) +AT (0,-0.072,0) RELATIVE sample_rod_bottom +ROTATED (0,0,0) RELATIVE sample_rod_bottom + +// V27 +COMPONENT sample_1 = Union_cylinder(radius=0.0045,yheight=0.02,priority=63,material_string="Cu",p_interact=0.6) +AT (0,-0.002-0.01-0.003,0.015) RELATIVE sample_holder_top_shelf +ROTATED (0,0,0) RELATIVE sample_holder_top_shelf + +// V28 +COMPONENT sample_1_container = Union_cylinder(radius=0.0052,yheight=0.023,priority=62,material_string="Al",p_interact=0.3) +AT (0,0,0) RELATIVE sample_1 +ROTATED (0,0,0) RELATIVE sample_1 + +// V29 +COMPONENT sample_1_container_rim = Union_cylinder(radius=0.007,yheight=0.002,priority=61,material_string="Al",p_interact=0.3) +AT (0,0.023*0.5,0) RELATIVE sample_1 +ROTATED (0,0,0) RELATIVE sample_1 + +// V30 +COMPONENT sample_2 = Union_cylinder(radius=0.0045,yheight=0.02,priority=73,material_string="Au_Ag_mix",p_interact=0.6) +AT (0,-0.002-0.01-0.003,-0.015) RELATIVE sample_holder_top_shelf +ROTATED (0,0,0) RELATIVE sample_holder_top_shelf + +// V31 +COMPONENT sample_2_container = Union_cylinder(radius=0.0052,yheight=0.023,priority=72,material_string="Al",p_interact=0.3) +AT (0,0,0) RELATIVE sample_2 +ROTATED (0,0,0) RELATIVE sample_2 + +// V32 +COMPONENT sample_2_container_rim = Union_cylinder(radius=0.007,yheight=0.002,priority=71,material_string="Al",p_interact=0.3) +AT (0,0.023*0.5,0) RELATIVE sample_2 +ROTATED (0,0,0) RELATIVE sample_2 + +// V33 +COMPONENT sample_3 = Union_cylinder(radius=0.0045,yheight=0.02,priority=83,material_string="Cd",p_interact=0.6) +AT (0,-0.002-0.01-0.003,0.015) RELATIVE sample_holder_middle_shelf +ROTATED (0,0,0) RELATIVE sample_holder_middle_shelf + +// V34 +COMPONENT sample_3_container = Union_cylinder(radius=0.0052,yheight=0.023,priority=82,material_string="Al",p_interact=0.3) +AT (0,0,0) RELATIVE sample_3 +ROTATED (0,0,0) RELATIVE sample_3 + +// V35 +COMPONENT sample_3_container_rim = Union_cylinder(radius=0.007,yheight=0.002,priority=81,material_string="Al",p_interact=0.3) +AT (0,0.023*0.5,0) RELATIVE sample_3 +ROTATED (0,0,0) RELATIVE sample_3 + +// V36 +COMPONENT sample_4 = Union_cylinder(radius=0.0045,yheight=0.02,priority=93,material_string="Cs",p_interact=0.6) +AT (0,-0.002-0.01-0.003,-0.015) RELATIVE sample_holder_middle_shelf +ROTATED (0,0,0) RELATIVE sample_holder_middle_shelf + +// V37 +SPLIT 2 COMPONENT sample_4_container = Union_cylinder(radius=0.0052,yheight=0.023,priority=92,material_string="Al",p_interact=0.3) +AT (0,0,0) RELATIVE sample_4 +ROTATED (0,0,0) RELATIVE sample_4 + +// V38 +COMPONENT sample_4_container_rim = Union_cylinder(radius=0.007,yheight=0.002,priority=91,material_string="Al",p_interact=0.3) +AT (0,0.023*0.5,0) RELATIVE sample_4 +ROTATED (0,0,0) RELATIVE sample_4 + + +COMPONENT test_sample = Union_master(history_limit=1000000) +AT(0,0,0) RELATIVE beam_center +ROTATED(0,0,0) RELATIVE beam_center +EXTEND +%{ +if (scattered_flag[sample_1_index] > 0) scattered_1 = 1; else scattered_1 = 0; +if (scattered_flag[sample_2_index] > 0) scattered_2 = 1; else scattered_2 = 0; +if (scattered_flag[sample_3_index] > 0) scattered_3 = 1; else scattered_3 = 0; +if (scattered_flag[sample_4_index] > 0) scattered_4 = 1; else scattered_4 = 0; +%} + + + +COMPONENT detector_position = Arm() +AT (0,0,0.03) RELATIVE beam_center +ROTATED(0,0,0) RELATIVE beam_center + +COMPONENT m4pi = PSD_monitor_4PI(radius=1, nx=180, ny=180, filename="Events.dat", restore_neutron=1) +AT (0, 0, 0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +COMPONENT Banana_monitor = Monitor_nD(radius=1, yheight=0.1, options="banana, theta limits=[20,170], bins=500",filename="banana.dat",restore_neutron=1) +AT (0,0,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +COMPONENT detector = PSD_monitor(xwidth=0.1, yheight=0.08, nx=200, ny=200, filename="PSD.dat", restore_neutron=1) +AT (0,-0.02,0.4) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +// Removes events not scattering in at least two of the samples +// mcdisplay --inspect=m4pi_two_samples shows only rays that scatters on all three +// since all others were removed before that component with this arm. +COMPONENT arm_1 = Arm() + AT (0, 0, 0) RELATIVE beam_center +EXTEND +%{ + if (scattered_1 + scattered_2 + scattered_3 + scattered_4 < 2) ABSORB; +%} + +// Using mcdisplay and -inspect m4pi_two_or_more_samples one can show only +// trajectories where the ray scatters from two or more of the samples +COMPONENT m4pi_two_or_more_samples = PSD_monitor_4PI(radius=1, nx=180, ny=180, filename="Events.dat", restore_neutron=1) +WHEN (scattered_1 + scattered_2 + scattered_3 + scattered_4 > 1) +AT (0, 0, 0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + + +COMPONENT armA = Arm() +AT (0,0,0) ABSOLUTE +GROUP arms + +COMPONENT armB = Arm() +AT (0,0,0) ABSOLUTE +GROUP arms +JUMP myself 2 + + +END diff --git a/mcstasscript/tests/__init__.py b/mcstasscript/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/tests/dummy_instrument_folder/Arm.comp b/mcstasscript/tests/dummy_instrument_folder/Arm.comp new file mode 100644 index 00000000..e7d28c6c --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/Arm.comp @@ -0,0 +1,48 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Component: Arm +* +* %I +* +* Written by: Kim Lefmann and Kristian Nielsen +* Date: September 1997 +* Version: $Revision$ +* Release: McStas 1.6 +* Origin: Risoe +* +* Arm/optical bench +* +* %D +* An arm does not actually do anything, it is just there to set +* up a new coordinate system. +* +* %P +* Input parameters: +* +* %E +*******************************************************************************/ + +DEFINE COMPONENT Arm +DEFINITION PARAMETERS () +SETTING PARAMETERS () +OUTPUT PARAMETERS () +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ +TRACE +%{ +%} + +MCDISPLAY +%{ + /* A bit ugly; hard-coded dimensions. */ + + line(0,0,0,0.2,0,0); + line(0,0,0,0,0.2,0); + line(0,0,0,0,0,0.2); +%} + +END diff --git a/mcstasscript/tests/dummy_instrument_folder/Incoherent_process.comp b/mcstasscript/tests/dummy_instrument_folder/Incoherent_process.comp new file mode 100644 index 00000000..f442ab05 --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/Incoherent_process.comp @@ -0,0 +1,176 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright(C) 2007 Risoe National Laboratory. +* +* %I +* Written by: Mads Bertelsen +* Date: 20.08.15 +* Version: $Revision: 0.1 $ +* Origin: Svanevej 19 +* +* A sample component to separate geometry and phsysics +* +* %D +* +* This Union_process is based on the Incoherent.comp component originally written +* by Kim Lefmann and Kristian Nielsen +* +* Part of the Union components, a set of components that work together and thus +* sperates geometry and physics within McStas. +* The use of this component requires other components to be used. +* +* 1) One specifies a number of processes using process components like this one +* 2) These are gathered into material definitions using Union_make_material +* 3) Geometries are placed using Union_box / Union_cylinder, assigned a material +* 4) A Union_master component placed after all of the above +* +* Only in step 4 will any simulation happen, and per default all geometries +* defined before the master, but after the previous will be simulated here. +* +* There is a dedicated manual available for the Union_components +* +* Algorithm: +* Described elsewhere +* +* %P +* INPUT PARAMETERS: +* sigma: [barns]  Incoherent scattering cross section +* f_QE: Fraction of quasielastic scattering (rest is elastic) [1] +* gamma: Lorentzian width of quasielastic broadening (HWHM) [1] +* packing_factor [1] How dense is the material compared to optimal 0-1 +* Unit_cell_volume [AA^3] Unit_cell_volume +* Interact_fraction [1] How large a part of the scattering events should use this process 0-1 (sum of all processes in material = 1) +* +* OUTPUT PARAMETERS: +* +* %L +* The test/example instrument Test_Phonon.instr. +* +* %E +******************************************************************************/ + +DEFINE COMPONENT Incoherent_process +DEFINITION PARAMETERS () +SETTING PARAMETERS(sigma=5.08,f_QE=0,gamma=0,packing_factor=1,unit_cell_volume=13.8,interact_fraction=-1) +OUTPUT PARAMETERS (This_process,Incoherent_storage,effective_my_scattering) + +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +SHARE +%{ +#ifndef Union +#define Union $Revision: 0.8 $ + +#include "Union_functions.c" +#include "Union_initialization.c" + +#endif + + +struct Incoherent_physics_storage_struct{ + // Variables that needs to be transfered between any of the following places: + // The initialize in this component + // The function for calculating my + // The function for calculating scattering + + double my_scattering; + double QE_sampling_frequency; + double lorentzian_width; + +}; + +// Function for calculating my in Incoherent case +int Incoherent_physics_my(double *my,double *k_initial, union data_transfer_union data_transfer, struct focus_data_struct *focus_data) { + *my = data_transfer.pointer_to_a_Incoherent_physics_storage_struct->my_scattering; + return 1; +}; + +// Function for basic incoherent scattering event +int Incoherent_physics_scattering(double *k_final, double *k_initial, double *weight, union data_transfer_union data_transfer, struct focus_data_struct *focus_data) { + + //New version of incoherent scattering + double k_length = sqrt(k_initial[0]*k_initial[0]+k_initial[1]*k_initial[1]+k_initial[2]*k_initial[2]); + + Coords k_out; + // Here is the focusing system in action, get a vector + double solid_angle; + focus_data->focusing_function(&k_out,&solid_angle,focus_data); + NORM(k_out.x,k_out.y,k_out.z); + *weight *= solid_angle*0.25/PI; + + double v_i,v_f,E_i,dE,E_f; + + if (rand01() < data_transfer.pointer_to_a_Incoherent_physics_storage_struct->QE_sampling_frequency) { + v_i = k_length * K2V; + E_i = VS2E*v_i*v_i; + dE = data_transfer.pointer_to_a_Incoherent_physics_storage_struct->lorentzian_width*tan(PI/2*randpm1()); + E_f = E_i + dE; + if (E_f <= 0) + return 0; + v_f = SE2V*sqrt(E_f); + k_length = v_f*V2K; + } + + k_final[0] = k_out.x*k_length; k_final[1] = k_out.y*k_length; k_final[2] = k_out.z*k_length; + return 1; +}; + +%} + +DECLARE +%{ +// Needed for transport to the main component +struct global_process_element_struct global_process_element; +struct scattering_process_struct This_process; + +#ifndef PROCESS_DETECTOR + //struct pointer_to_global_process_list global_process_list = {0,NULL}; + #define PROCESS_DETECTOR dummy +#endif + +// Declare for this component, to do calculations on the input / store in the transported data +struct Incoherent_physics_storage_struct Incoherent_storage; +double effective_my_scattering; + +%} + +INITIALIZE +%{ + // Initialize done in the component + effective_my_scattering = ((packing_factor/unit_cell_volume) * 100 * sigma); + Incoherent_storage.my_scattering = effective_my_scattering; + + Incoherent_storage.QE_sampling_frequency = f_QE; + Incoherent_storage.lorentzian_width = gamma; + + // Need to specify if this process is isotropic + This_process.non_isotropic_rot_index = -1; // Yes (powder) + //This_process.non_isotropic_rot_index = 1; // No (single crystal) + + // Packing the data into a structure that is transported to the main component + sprintf(This_process.name,NAME_CURRENT_COMP); + This_process.process_p_interact = interact_fraction; + This_process.data_transfer.pointer_to_a_Incoherent_physics_storage_struct = &Incoherent_storage; + //This_process.data_transfer.pointer_to_a_Incoherent_physics_storage_struct->my_scattering = effective_my_scattering; + This_process.probability_for_scattering_function = &Incoherent_physics_my; + This_process.scattering_function = &Incoherent_physics_scattering; + + // This will be the same for all process's, and can thus be moved to an include. + sprintf(global_process_element.name,NAME_CURRENT_COMP); + global_process_element.component_index = INDEX_CURRENT_COMP; + global_process_element.p_scattering_process = &This_process; + add_element_to_process_list(&global_process_list,global_process_element); + %} + +TRACE +%{ +%} + +FINALLY +%{ +// Since the process and it's storage is a static allocation, there is nothing to deallocate + +%} + +END diff --git a/mcstasscript/tests/dummy_instrument_folder/Monitor_nD.comp b/mcstasscript/tests/dummy_instrument_folder/Monitor_nD.comp new file mode 100644 index 00000000..3d3d50ee --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/Monitor_nD.comp @@ -0,0 +1,501 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Component: Monitor_nD +* +* %Identification +* Written by: Emmanuel Farhi +* Date: 14th Feb 2000. +* Origin: ILL +* Release: McStas 1.6 +* Version: $Revision$ +* Modified by: EF, 29th Feb 2000 : added more options, monitor shape, theta, phi +* Modified by: EF, 01st Feb 2001 : PreMonitor for correlation studies (0.13.6) +* Modified by: EF, 5th Apr 2001 : use global functions (0.14) compile faster +* Modified by: EF, 23th Jul 2001 : log of signal, init arrays to 0, box (0.15) +* Modified by: EF, 04th Sep 2001 : log/abs of variables (0.16) +* Modified by: EF, 24th Oct 2001 : capture flux [p*lambda/1.7985] (0.16.3) +* Modified by: EF, 27th Aug 2002 : monitor a variable in place of I (0.16.5) +* Modified by: EF, 25th Oct 2002 : banana, and auto for each variable (0.16.5) +* +* This component is a general Monitor that can output 0/1/2D signals +* (Intensity or signal vs. [something] and vs. [something] ...) +* +* %Description +* This component is a general Monitor that can output 0/1/2D signals +* It can produce many 1D signals (one for any variable specified in +* option list), or a single 2D output (two variables correlation). +* Also, an additional 'list' of neutron events can be produced. +* By default, monitor is square (in x/y plane). A disk shape is also possible +* The 'cylinder' and 'banana' option will change that for a banana shape +* The 'sphere' option simulates spherical detector. The 'box' is a box. +* The cylinder, sphere and banana should be centered on the scattering point. +* The monitored flux may be per monitor unit area, and weighted by +* a lambda/lambda(2200m/s) factor to obtain standard integrated capture flux. +* In normal configuration, the Monitor_nD measures the current parameters +* of the neutron that is beeing detected. But a PreMonitor_nD component can +* be used in order to study correlations between a neutron being detected in +* a Monitor_nD place, and given parameters that are monitored elsewhere +* (at PreMonitor_nD). +* The monitor can also act as a 3He gas detector, taking into account the +* detection efficiency. +* +* The 'bins' and 'limits' modifiers are to be used after each variable, +* and 'auto','log' and 'abs' come before it. (eg: auto abs log hdiv bins=10 +* limits=[-5 5]) When placed after all variables, these two latter modifiers +* apply to the signal (e.g. intensity). Unknown keywords are ignored. +* +* In the case of multiple components at the same position, the 'parallel' +* keyword must be used in each instance instead of defining a GROUP. +* +* Possible options are +* Variables to record: +* kx ky kz k wavevector [Angs-1] Wavevector on x,y,z and norm +* vx vy vz v [m/s] Velocity on x,y,z and norm +* x y z radius [m] Distance, Position and norm +* xy, yz, xz [m] Radial position in xy, yz and xz plane +* kxy kyz kxz [Angs-1] Radial wavevector in xy, yz and xz plane +* vxy vyz vxz [m/s] Radial velocity in xy, yz and xz plane +* t time [s] Time of Flight +* energy omega [meV] energy of neutron +* lambda wavelength [Angs] wavelength of neutron +* sx sy sz [1] Spin +* vdiv ydiv dy [deg] vertical divergence (y) +* hdiv divergence xdiv [deg] horizontal divergence (x) +* angle [deg] divergence from direction +* theta longitude [deg] longitude (x/z) for sphere and cylinder +* phi lattitude [deg] lattitude (y/z) for sphere and cylinder +* +* user user1 will monitor the [Mon_Name]_Vars.UserVariable{1|2|3} +* user2 user3 to be assigned in an other component (see below) +* +* p intensity flux [n/s or n/cm^2/s] +* ncounts n neutron [1] neutron ID, i.e current event index +* pixel id [1] pixelID in histogram made of preceeding vars, e.g. 'theta y'. To set an offset PixelID use the 'min=value' keyword. Sets event mode. +* +* Other options keywords are: +* abs Will monitor the abs of the following variable or of the signal (if used after all variables) +* auto Automatically set detector limits for one/all +* all {limits|bins|auto} To set all limits or bins values or auto mode +* binary {float|double} with 'source' option, saves in compact files +* bins=[bins=20] Number of bins in the detector along dimension +* borders To also count off-limits neutrons (X < min or X > max) +* capture weight by lambda/lambda(2200m/s) capture flux +* file=string Detector image file name. default is component name, plus date and variable extension. +* incoming Monitor incoming beam in non flat det +* limits=[min max] Lower/Upper limits for axes (see up for the variable unit) +* list=[counts=1000] or all For a long file of neutron characteristics with [counts] or all events +* log Will monitor the log of the following variable or of the signal (if used after all variables) +* min=[min_value] Same as limits, but only sets the min or max +* max=[max_value] +* multiple Create multiple independant 1D monitors files +* no or not Revert next option +* outgoing Monitor outgoing beam (default) +* parallel Use this option when the next component is at the same position (parallel components) +* per cm2 Intensity will be per cm^2 (detector area). Displays beam section. +* per steradian Displays beam solid angle in steradian +* premonitor Will monitor neutron parameters stored previously with PreMonitor_nD. +* signal=[var] Will monitor [var] instead of usual intensity +* slit or absorb Absorb neutrons that are out detector +* source The monitor will save neutron states +* unactivate To unactivate detector (0D detector) +* verbose To display additional informations +* 3He_pressure=[3 in bars] The 3He gas pressure in detector. 3He_pressure=0 is perfect detector (default) +* +* Detector shape options (specified as xwidth,yheight,zdepth or x/y/z/min/max) +* box Box of size xwidth, yheight, zdepth. +* cylinder To get a cylindrical monitor (diameter is xwidth or set radius, height is yheight). +* banana Same as cylinder, without top/bottom, on restricted angular area; use theta variable with limits to define arc. (diameter is xwidth or set radius, height is yheight). +* disk Disk flat xy monitor. diameter is xwidth. +* sphere To get a spherical monitor (e.g. a 4PI) (diameter is xwidth or set radius). +* square Square flat xy monitor (xwidth, yheight). +* previous The monitor uses PREVIOUS component as detector surface. Or use 'geometry' parameter to specify any PLY/OFF geometry file. +* +* EXAMPLES: +* MyMon = Monitor_nD( +* xwidth = 0.1, yheight = 0.1, zdepth = 0, +* options = "intensity per cm2 angle,limits=[-5 5] bins=10,with +* borders, file = mon1"); +* will monitor neutron angle from [z] axis, between -5 +* and 5 degrees, in 10 bins, into "mon1.A" output 1D file +* options = "sphere theta phi outgoing" for a sphere PSD detector (out +* beam) and saves into file "MyMon_[Date_ID].th_ph" +* options = "banana, theta limits=[10,130], bins=120, y" a theta/height + banana detector +* options = "angle radius all auto" is a 2D monitor with automatic limits +* options = "list=1000 kx ky kz energy" records 1000 neutron event in a file +* options = "multiple kx ky kz, auto abs log t, and list all neutrons" +* makes 4 output 1D files and produces a complete list for all neutrons +* and monitor log(abs(tof)) within automatic limits (for t) +* options = "theta y, sphere, pixel min=100" +* a 4pi detector which outputs an event list with pixelID from the actual +* detector surface, starting from index 100. +* +* To dynamically define a number of bins, or limits: +* Use in DECLARE: char op[256]; +* Use in INITIALIZE: sprintf(op, "lambda limits=[%g %g], bins=%i", lmin, lmax, lbin); +* Use in TRACE: Monitor_nD(... options=op ...) +* +* How to monitor any instrument/component variable into a Monitor_nD +* Suppose you want to monitor a variable 'age' which you assign somwhere in +* the instrument: +* COMPONENT MyMonitor = Monitor_nD( +* xwidth = 0.1, yheight = 0.1, +* user1=age, username1="Age of the Captain [years]", +* options="user1, auto") +* AT ... +* +* See also the example in PreMonitor_nD to +* monitor neutron parameters cross-correlations. +* +* %BUGS +* The 'auto' option for guessing optimal variable bounds should NOT be used with MPI +* as each process may use different limits. +* +* %Parameters +* INPUT PARAMETERS: +* +* xwidth: [m] Width of detector. +* yheight: [m] Height of detector. +* zdepth: [m] Thickness of detector (z). +* radius: [m] Radius of sphere/banana shape monitor +* options: [str] String that specifies the configuration of the monitor. The general syntax is "[x] options..." (see Descr.). +* +* Optional input parameters (override xwidth yheight zdepth): +* xmin: [m] Lower x bound of opening +* xmax: [m] Upper x bound of opening +* ymin: [m] Lower y bound of opening +* ymax: [m] Upper y bound of opening +* zmin: [m] Lower z bound of opening +* zmax: [m] Upper z bound of opening +* filename: [str] Output file name (overrides file=XX option). +* bins: [1] Number of bins to force for all variables. Use 'bins' keyword in 'options' for heterogeneous bins +* min: [u] Minimum range value to force for all variables. Use 'min' or 'limits' keyword in 'options' for other limits +* max: [u] Maximum range value to force for all variables. Use 'max' or 'limits' keyword in 'options' for other limits +* user1: [variable] Variable assigned to User1 +* user2: [variable] Variable assigned to User2 +* user3: [variable] Variable assigned to User3 +* username1: [str] Name assigned to User1 +* username2: [str] Name assigned to User2 +* username3: [str] Name assigned to User3 +* restore_neutron: [0|1] If set, the monitor does not influence the neutron state. Equivalent to setting the 'parallel' option. +* geometry: [str] Name of an OFF file to specify a complex geometry detector +* nowritefile: [1] If set, monitor will skip writing to disk +* +* OUTPUT PARAMETERS: +* +* DEFS: structure containing Monitor_nD Defines [struct] +* Vars: structure containing Monitor_nD variables [struct] +* +* %Link +* PreMonitor_nD +* +* %End +******************************************************************************/ +DEFINE COMPONENT Monitor_nD +DEFINITION PARAMETERS (user1=FLT_MAX, user2=FLT_MAX, user3=FLT_MAX) +SETTING PARAMETERS (xwidth=0, yheight=0, zdepth=0, + xmin=0, xmax=0, ymin=0, ymax=0, zmin=0, zmax=0, + bins=0, min=-1e40, max=1e40, restore_neutron=0, radius=0, + string options="NULL", string filename="NULL",string geometry="NULL", + string username1="NULL", string username2="NULL", string username3="NULL", + int nowritefile=0 + ) +/* these are protected C variables */ +OUTPUT PARAMETERS (DEFS, Vars, detector,offdata) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +SHARE +%{ + %include "monitor_nd-lib" + %include "read_table-lib" + %include "interoff-lib" +%} + +DECLARE +%{ + MonitornD_Defines_type DEFS; + MonitornD_Variables_type Vars; + MCDETECTOR detector; + off_struct offdata; +%} + +INITIALIZE +%{ + char tmp[CHAR_BUF_LENGTH]; + strcpy(Vars.compcurname, NAME_CURRENT_COMP); + if (options != NULL) + strncpy(Vars.option, options, CHAR_BUF_LENGTH); + else { + strcpy(Vars.option, "x y"); + printf("Monitor_nD: %s has no option specified. Setting to PSD ('x y') monitor.\n", NAME_CURRENT_COMP); + } + Vars.compcurpos = POS_A_CURRENT_COMP; + + if (strstr(Vars.option, "source")) + strcat(Vars.option, " list, x y z vx vy vz t sx sy sz "); + + if (bins) { sprintf(tmp, " all bins=%ld ", (long)bins); strcat(Vars.option, tmp); } + if (min > -FLT_MAX && max < FLT_MAX) { sprintf(tmp, " all limits=[%g %g]", min, max); strcat(Vars.option, tmp); } + else if (min > -FLT_MAX) { sprintf(tmp, " all min=%g", min); strcat(Vars.option, tmp); } + else if (max < FLT_MAX) { sprintf(tmp, " all max=%g", max); strcat(Vars.option, tmp); } + + strncpy(Vars.UserName1, + username1 && strlen(username1) && strcmp(username1, "0") && strcmp(username1, "NULL") ? + username1 : "", 128); + strncpy(Vars.UserName2, + username2 && strlen(username2) && strcmp(username2, "0") && strcmp(username2, "NULL") ? + username2 : "", 128); + strncpy(Vars.UserName3, + username3 && strlen(username3) && strcmp(username3, "0") && strcmp(username3, "NULL") ? + username3 : "", 128); + if (radius) { + xwidth = zdepth = 2*radius; + if (yheight && !strstr(Vars.option, "cylinder") && !strstr(Vars.option, "banana") && !strstr(Vars.option, "sphere")) + strcat(Vars.option, " banana"); + else if (!yheight && !strstr(Vars.option ,"sphere")) { + strcat(Vars.option, " sphere"); + yheight=2*radius; + } + } + int offflag=0; + if (geometry && strlen(geometry) && strcmp(geometry,"0") && strcmp(geometry, "NULL")) + if (!off_init( geometry, xwidth, yheight, zdepth, 1, &offdata )) { + printf("Monitor_nD: %s could not initiate the OFF geometry %s. \n" + " Defaulting to normal Monitor dimensions.\n", + NAME_CURRENT_COMP, geometry); + strcpy(geometry, ""); + } else { + offflag=1; + } + + if (!radius && !xwidth && !yheight && !zdepth && !xmin && !xmax && !ymin && !ymax && + !strstr(Vars.option, "previous") && (!geometry || !strlen(geometry))) + exit(printf("Monitor_nD: %s has no dimension specified. Aborting (radius, xwidth, yheight, zdepth, previous, geometry).\n", NAME_CURRENT_COMP)); + + Monitor_nD_Init(&DEFS, &Vars, xwidth, yheight, zdepth, xmin,xmax,ymin,ymax,zmin,zmax,offflag); + + if (Vars.Flag_OFF) { + offdata.mantidflag=Vars.Flag_mantid; + offdata.mantidoffset=Vars.Coord_Min[Vars.Coord_Number-1]; + } + + + if (filename && strlen(filename) && strcmp(filename,"NULL") && strcmp(filename,"0")) + strncpy(Vars.Mon_File, filename, 128); + + /* check if user given filename with ext will be used more than once */ + if ( ((Vars.Flag_Multiple && Vars.Coord_Number > 1) || Vars.Flag_List) && strchr(Vars.Mon_File,'.') ) + { char *XY; XY = strrchr(Vars.Mon_File,'.'); *XY='_'; } + + if (restore_neutron) Vars.Flag_parallel=1; + detector.m = 0; + +#ifdef USE_MPI +MPI_MASTER( + if (strstr(Vars.option, "auto") && mpi_node_count > 1) + printf("Monitor_nD: %s is using automatic limits option 'auto' together with MPI.\n" + "WARNING this may create incorrect distributions (but integrated flux will be right).\n", NAME_CURRENT_COMP); +); +#endif +%} + +TRACE +%{ + double XY=0; + double t0 = 0; + double t1 = 0; + double pp; + int intersect = 0; + char Flag_Restore = 0; + + if (user1 != FLT_MAX) Vars.UserVariable1 = user1; + if (user2 != FLT_MAX) Vars.UserVariable2 = user2; + if (user3 != FLT_MAX) Vars.UserVariable3 = user3; + + /* this is done automatically + STORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p); + */ + + if (geometry && strlen(geometry) && strcmp(geometry,"0") && strcmp(geometry, "NULL")) + { + /* determine intersections with object */ + intersect = off_intersect_all(&t0, &t1, NULL, NULL, + x,y,z, vx, vy, vz, &offdata ); + if (Vars.Flag_mantid) { + if(intersect) { + Vars.OFF_polyidx=(offdata.intersects[offdata.nextintersect]).index; + } else { + Vars.OFF_polyidx=-1; + } + } + } + else if ( (abs(Vars.Flag_Shape) == DEFS.SHAPE_SQUARE) + || (abs(Vars.Flag_Shape) == DEFS.SHAPE_DISK) ) /* square xy or disk xy */ + { + // propagate to xy plane and find intersection + // make sure the event is recoverable afterwards + t0 = t; + ALLOW_BACKPROP; + PROP_Z0; + if ( (t>=t0) && (z==0.0) ) // forward propagation to xy plane was successful + { + if (abs(Vars.Flag_Shape) == DEFS.SHAPE_SQUARE) + { + // square xy + intersect = (x>=Vars.mxmin && x<=Vars.mxmax && y>=Vars.mymin && y<=Vars.mymax); + } + else + { + // disk xy + intersect = (SQR(x) + SQR(y)) <= SQR(Vars.Sphere_Radius); + } + } + else + { + intersect=0; + } + } + else if (abs(Vars.Flag_Shape) == DEFS.SHAPE_SPHERE) /* sphere */ + { + intersect = sphere_intersect(&t0, &t1, x, y, z, vx, vy, vz, Vars.Sphere_Radius); + /* intersect = (intersect && t0 > 0); */ + } + else if ((abs(Vars.Flag_Shape) == DEFS.SHAPE_CYLIND) || (abs(Vars.Flag_Shape) == DEFS.SHAPE_BANANA)) /* cylinder */ + { + intersect = cylinder_intersect(&t0, &t1, x, y, z, vx, vy, vz, Vars.Sphere_Radius, Vars.Cylinder_Height); + } + else if (abs(Vars.Flag_Shape) == DEFS.SHAPE_BOX) /* box */ + { + intersect = box_intersect(&t0, &t1, x, y, z, vx, vy, vz, + fabs(Vars.mxmax-Vars.mxmin), fabs(Vars.mymax-Vars.mymin), fabs(Vars.mzmax-Vars.mzmin)); + } + else if (abs(Vars.Flag_Shape) == DEFS.SHAPE_PREVIOUS) /* previous comp */ + { intersect = 1; } + + if (intersect) + { + if ((abs(Vars.Flag_Shape) == DEFS.SHAPE_SPHERE) || (abs(Vars.Flag_Shape) == DEFS.SHAPE_CYLIND) + || (abs(Vars.Flag_Shape) == DEFS.SHAPE_BOX) || (abs(Vars.Flag_Shape) == DEFS.SHAPE_BANANA) + || (geometry && strlen(geometry) && strcmp(geometry,"0") && strcmp(geometry, "NULL")) ) + { + /* check if we have to remove the top/bottom with BANANA shape */ + if ((abs(Vars.Flag_Shape) == DEFS.SHAPE_BANANA) && (intersect != 1)) { + double y0,y1; + /* propagate to intersection point as temporary variable to check top/bottom */ + y0 = y+t0*vy; + y1 = y+t1*vy; + if (fabs(y0) >= Vars.Cylinder_Height/2*0.99) t0 = t1; + if (fabs(y1) >= Vars.Cylinder_Height/2*0.99) t1 = t0; + } + if (t0 < 0 && t1 > 0) + t0 = t; /* neutron was already inside ! */ + if (t1 < 0 && t0 > 0) /* neutron exit before entering !! */ + t1 = t; + /* t0 is now time of incoming intersection with the detection area */ + if ((Vars.Flag_Shape < 0) && (t1 > 0)) + PROP_DT(t1); /* t1 outgoing beam */ + else + PROP_DT(t0); /* t0 incoming beam */ + /* Final test if we are on lid / bottom of banana/sphere */ + if (abs(Vars.Flag_Shape) == DEFS.SHAPE_BANANA || abs(Vars.Flag_Shape) == DEFS.SHAPE_SPHERE) { + if (fabs(y) >= Vars.Cylinder_Height/2*0.99) { + intersect=0; + Flag_Restore=1; + } + } + } + } + + if (intersect) + { + /* Now get the data to monitor: current or keep from PreMonitor */ + if (Vars.Flag_UsePreMonitor != 1) + { + Vars.cp = p; + Vars.cx = x; + Vars.cvx = vx; + Vars.csx = sx; + Vars.cy = y; + Vars.cvy = vy; + Vars.csy = sy; + Vars.cz = z; + Vars.cvz = vz; + Vars.csz = sz; + Vars.ct = t; + } + + if ((Vars.He3_pressure > 0) && (t1 != t0) && ((abs(Vars.Flag_Shape) == DEFS.SHAPE_SPHERE) || (abs(Vars.Flag_Shape) == DEFS.SHAPE_CYLIND) || (abs(Vars.Flag_Shape) == DEFS.SHAPE_BOX))) + { + XY = exp(-7.417*Vars.He3_pressure*fabs(t1-t0)*2*PI*K2V); + /* will monitor the absorbed part */ + Vars.cp *= 1-XY; + /* and modify the neutron weight after monitor, only remains 1-p_detect */ + p *= XY; + } + + if (Vars.Flag_capture) + { + XY = sqrt(Vars.cvx*Vars.cvx+Vars.cvy*Vars.cvy+Vars.cvz*Vars.cvz); + XY *= V2K; + if (XY != 0) XY = 2*PI/XY; /* lambda. lambda(2200 m/2) = 1.7985 Angs */ + Vars.cp *= XY/1.7985; + } + + pp = Monitor_nD_Trace(&DEFS, &Vars); + if (pp==0.0) + { ABSORB; + } + else if(pp==1) + { + SCATTER; + } + + if (Vars.Flag_parallel) /* back to neutron state before detection */ + Flag_Restore = 1; + } /* end if intersection */ + else { + if (Vars.Flag_Absorb && !Vars.Flag_parallel) + { + // restore neutron ray before absorbing for correct mcdisplay + RESTORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p); + ABSORB; + } + else Flag_Restore = 1; /* no intersection, back to previous state */ + } + + if (Flag_Restore) + { + RESTORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p); + } +%} + +SAVE +%{ + /* save results, but do not free pointers */ + detector = Monitor_nD_Save(&DEFS, &Vars); +%} + +FINALLY +%{ + /* free pointers */ + if (!nowritefile) { + Monitor_nD_Finally(&DEFS, &Vars); + } +%} + +MCDISPLAY +%{ + if (geometry && strlen(geometry) && strcmp(geometry,"0") && strcmp(geometry, "NULL")) + { + off_display(offdata); + } else { + Monitor_nD_McDisplay(&DEFS, &Vars); + } +%} + +END diff --git a/mcstasscript/tests/dummy_instrument_folder/PSD_monitor.comp b/mcstasscript/tests/dummy_instrument_folder/PSD_monitor.comp new file mode 100644 index 00000000..f1536e7b --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/PSD_monitor.comp @@ -0,0 +1,124 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Component: PSD_monitor +* +* %I +* Written by: Kim Lefmann +* Date: Feb 3, 1998 +* Origin: Risoe +* +* Position-sensitive monitor. +* +* %D +* An (n times m) pixel PSD monitor. This component may also be used as a beam +* detector. +* +* Example: PSD_monitor(xmin=-0.1, xmax=0.1, ymin=-0.1, ymax=0.1, nx=90, ny=90, filename="Output.psd") +* +* %P +* INPUT PARAMETERS: +* +* xmin: [m] Lower x bound of detector opening +* xmax: [m] Upper x bound of detector opening +* ymin: [m] Lower y bound of detector opening +* ymax: [m] Upper y bound of detector opening +* xwidth: [m] Width of detector. Overrides xmin, xmax +* yheight: [m] Height of detector. Overrides ymin, ymax +* nx: [1] Number of pixel columns +* ny: [1] Number of pixel rows +* filename: [string] Name of file in which to store the detector image +* restore_neutron: [1] If set, the monitor does not influence the neutron state +* nowritefile: [1] If set, monitor will skip writing to disk +* +* OUTPUT PARAMETERS: +* +* PSD_N: [] Array of neutron counts +* PSD_p: [] Array of neutron weight counts +* PSD_p2: [] Array of second moments +* +* %E +*******************************************************************************/ + + +DEFINE COMPONENT PSD_monitor +DEFINITION PARAMETERS (nx=90, ny=90) +SETTING PARAMETERS (string filename=0, xmin=-0.05, xmax=0.05, ymin=-0.05, ymax=0.05, xwidth=0, yheight=0, restore_neutron=0, int nowritefile=0) +OUTPUT PARAMETERS (PSD_N, PSD_p, PSD_p2) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +DECLARE +%{ +double PSD_N[nx][ny]; +double PSD_p[nx][ny]; +double PSD_p2[nx][ny]; +%} +INITIALIZE +%{ +int i,j; + +if (xwidth > 0) { xmax = xwidth/2; xmin = -xmax; } + if (yheight > 0) { ymax = yheight/2; ymin = -ymax; } + + if ((xmin >= xmax) || (ymin >= ymax)) { + printf("PSD_monitor: %s: Null detection area !\n" + "ERROR (xwidth,yheight,xmin,xmax,ymin,ymax). Exiting", + NAME_CURRENT_COMP); + exit(0); + } + + for (i=0; ixmin && xymin && yTest +* results (not up-to-date). +* +* %E +*******************************************************************************/ + + +DEFINE COMPONENT PSD_monitor_4PI +DEFINITION PARAMETERS (nx=90, ny=90) +SETTING PARAMETERS (string filename=0, radius=1, restore_neutron=0, int nowritefile=0) +OUTPUT PARAMETERS (PSD_N, PSD_p, PSD_p2) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +DECLARE +%{ +double PSD_N[nx][ny]; +double PSD_p[nx][ny]; +double PSD_p2[nx][ny]; +%} + +INITIALIZE +%{ +int i,j; + +for (i=0; i 0) + { + if(t0 < 0) + t0 = t1; + /* t0 is now time of intersection with the sphere. */ + PROP_DT(t0); + phi = atan2(x,z); + i = floor(nx*(phi/(2*PI)+0.5)); + if(i >= nx) + i = nx-1; /* Special case for phi = PI. */ + else if(i < 0) + i = 0; + theta=asin(y/radius); + j = floor(ny*(theta+PI/2)/PI+0.5); + if(j >= ny) + j = ny-1; /* Special case for y = radius. */ + else if(j < 0) + j = 0; + PSD_N[i][j]++; + PSD_p[i][j] += p; + PSD_p2[i][j] += p*p; + SCATTER; + } + if (restore_neutron) { + RESTORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p); + } +%} + +SAVE +%{ + if (!nowritefile) { + DETECTOR_OUT_2D( + "4PI PSD monitor", + "Longitude [deg]", + "Latitude [deg]", + -180, 180, -90, 90, + nx, ny, + &PSD_N[0][0],&PSD_p[0][0],&PSD_p2[0][0], + filename); + } +%} + +MCDISPLAY +%{ + + circle("xy",0,0,0,radius); + circle("xz",0,0,0,radius); + circle("yz",0,0,0,radius); +%} + +END diff --git a/mcstasscript/tests/dummy_instrument_folder/Powder_process.comp b/mcstasscript/tests/dummy_instrument_folder/Powder_process.comp new file mode 100644 index 00000000..16b73b09 --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/Powder_process.comp @@ -0,0 +1,773 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright(C) 2007 Risoe National Laboratory. +* +* %I +* Written by: Mads Bertelsen +* Date: 20.08.15 +* Version: $Revision: 0.1 $ +* Origin: Svanevej 19 +* +* +* %D +* +* This Union_process is based on the PowderN.comp component originally written +* by P. Willendrup, L. Chapon, K. Lefmann, A.B.Abrahamsen, N.B.Christensen, +* E.M.Lauridsen. +* +* Part of the Union components, a set of components that work together and thus +* sperates geometry and physics within McStas. +* The use of this component requires other components to be used. +* +* 1) One specifies a number of processes using process components like this one +* 2) These are gathered into material definitions using Union_make_material +* 3) Geometries are placed using Union_box / Union_cylinder, assigned a material +* 4) A Union_master component placed after all of the above +* +* Only in step 4 will any simulation happen, and per default all geometries +* defined before the master, but after the previous will be simulated here. +* +* There is a dedicated manual available for the Union_components* +* Algorithm: +* Described elsewhere +* +* %P +* INPUT PARAMETERS: +* Interact_fraction [1] How large a part of the scattering events should use this process 0-1 (sum of all processes in material = 1) +* packing_factor [1] How dense is the material compared to optimal 0-1 +* For rest, see PowderN component which this is based on +* +* OUTPUT PARAMETERS: +* V_rho: [AA^-3] Atomic density +* +* +* %E +******************************************************************************/ + +DEFINE COMPONENT Powder_process +DEFINITION PARAMETERS (format=Undefined) +SETTING PARAMETERS(string reflections="NULL",packing_factor=1, Vc=0, delta_d_d=0, DW=0, nb_atoms=1, d_phi=0, density=0, weight=0, barns=1, Strain=0, interact_fraction=-1) +OUTPUT PARAMETERS (This_process,Powder_storage,effective_my_scattering,d_phi,line_info,columns) + +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +SHARE +%{ +#ifndef Union +#define Union $Revision: 0.8 $ + +#include "Union_functions.c" +#include "Union_initialization.c" + +#endif + + + +// Share section of PowderN 8/3 2016 from McStas.org + + /* used for reading data table from file */ + %include "read_table-lib" + %include "interoff-lib" +/* Declare structures and functions only once in each instrument. */ +#ifndef POWDERN_DECL_UNION +#define POWDERN_DECL_UNION +/* format definitions in the order {j d F2 DW Dd inv2d q F strain} */ +#ifndef Crystallographica +#define Crystallographica { 4,5,7,0,0,0,0,0,0 } +#define Fullprof { 4,0,8,0,0,5,0,0,0 } +#define Lazy {17,6,0,0,0,0,0,13,0 } +#define Undefined { 0,0,0,0,0,0,0,0,0 } +#endif + + struct line_data_union + { + double F2; /* Value of structure factor */ + double q; /* Qvector */ + int j; /* Multiplicity */ + double DWfactor; /* Debye-Waller factor */ + double w; /* Intrinsic line width */ + double Epsilon; /* Strain=delta_d_d/d shift in ppm */ + }; + + struct line_info_struct_union + { + struct line_data_union *list; /* Reflection array */ + int count; /* Number of reflections */ + double Dd; + double DWfactor; + double V_0; + double rho; + double at_weight; + double at_nb; + double sigma_a; // should not be used + double sigma_i; // should not be used + char compname[256]; + double flag_barns; + int shape; /* 0 cylinder, 1 box, 2 sphere, 3 OFF file */ + int column_order[9]; /* column signification */ + int flag_warning; + char type; /* interaction type of event t=Transmit, i=Incoherent, c=Coherent */ + double dq; /* wavevector transfer [Angs-1] */ + double Epsilon; /* global strain in ppm */ + double XsectionFactor; + double my_s_v2_sum; + double my_a_v; + double my_inc; + double *w_v,*q_v, *my_s_v2; + double radius_i,xwidth_i,yheight_i,zdepth_i; // not to be used, but still here + double v; /* last velocity (cached) */ + double Nq; + int nb_reuses, nb_refl, nb_refl_count; + double v_min, v_max; + double xs_Nq[CHAR_BUF_LENGTH]; + double xs_sum[CHAR_BUF_LENGTH]; + double neutron_passed; + long xs_compute, xs_reuse, xs_calls; + }; + + off_struct offdata_union; + + // PN_list_compare ***************************************************************** + + int PN_list_compare_union (void const *a, void const *b) + { + struct line_data_union const *pa = a; + struct line_data_union const *pb = b; + double s = pa->q - pb->q; + + if (!s) return 0; + else return (s < 0 ? -1 : 1); + } /* PN_list_compare */ + + int read_line_data_union(char *SC_file, struct line_info_struct_union *info) + { + struct line_data_union *list = NULL; + int size = 0; + t_Table sTable; /* sample data table structure from SC_file */ + int i=0; + int mult_count =0; + char flag=0; + double q_count=0, j_count=0, F2_count=0; + char **parsing; + int list_count=0; + + if (!SC_file || !strlen(SC_file) || !strcmp(SC_file, "NULL")) { + printf("PowderN: %s: Using incoherent elastic scattering only\n",info->compname); + info->count = 0; + return(0); + } + Table_Read(&sTable, SC_file, 1); /* read 1st block data from SC_file into sTable*/ + + /* parsing of header */ + parsing = Table_ParseHeader(sTable.header, + "Vc","V_0", + "sigma_abs","sigma_a ", + "sigma_inc","sigma_i ", + "column_j", + "column_d", + "column_F2", + "column_DW", + "column_Dd", + "column_inv2d", "column_1/2d", "column_sintheta/lambda", + "column_q", /* 14 */ + "DW", "Debye_Waller", + "delta_d_d/d", + "column_F ", + "V_rho", + "density", + "weight", + "nb_atoms","multiplicity", /* 23 */ + "column_ppm","column_strain", + NULL); + + if (parsing) { + if (parsing[0] && !info->V_0) info->V_0 =atof(parsing[0]); + if (parsing[1] && !info->V_0) info->V_0 =atof(parsing[1]); + if (parsing[2] && !info->sigma_a) info->sigma_a=atof(parsing[2]); + if (parsing[3] && !info->sigma_a) info->sigma_a=atof(parsing[3]); + if (parsing[4] && !info->sigma_i) info->sigma_i=atof(parsing[4]); + if (parsing[5] && !info->sigma_i) info->sigma_i=atof(parsing[5]); + if (parsing[6]) info->column_order[0]=atoi(parsing[6]); + if (parsing[7]) info->column_order[1]=atoi(parsing[7]); + if (parsing[8]) info->column_order[2]=atoi(parsing[8]); + if (parsing[9]) info->column_order[3]=atoi(parsing[9]); + if (parsing[10]) info->column_order[4]=atoi(parsing[10]); + if (parsing[11]) info->column_order[5]=atoi(parsing[11]); + if (parsing[12]) info->column_order[5]=atoi(parsing[12]); + if (parsing[13]) info->column_order[5]=atoi(parsing[13]); + if (parsing[14]) info->column_order[6]=atoi(parsing[14]); + if (parsing[15] && info->DWfactor<=0) info->DWfactor=atof(parsing[15]); + if (parsing[16] && info->DWfactor<=0) info->DWfactor=atof(parsing[16]); + if (parsing[17] && info->Dd <0) info->Dd =atof(parsing[17]); + if (parsing[18]) info->column_order[7]=atoi(parsing[18]); + if (parsing[19] && !info->V_0) info->V_0 =1/atof(parsing[19]); + if (parsing[20] && !info->rho) info->rho =atof(parsing[20]); + if (parsing[21] && !info->at_weight) info->at_weight =atof(parsing[21]); + if (parsing[22] && info->at_nb <= 1) info->at_nb =atof(parsing[22]); + if (parsing[23] && info->at_nb <= 1) info->at_nb =atof(parsing[23]); + if (parsing[24]) info->column_order[8]=atoi(parsing[24]); + if (parsing[25]) info->column_order[8]=atoi(parsing[25]); + for (i=0; i<=25; i++) if (parsing[i]) free(parsing[i]); + free(parsing); + } + + if (!sTable.rows) + exit(fprintf(stderr, "PowderN: %s: Error: The number of rows in %s " + "should be at least %d\n", info->compname, SC_file, 1)); + else size = sTable.rows; + Table_Info(sTable); + printf("PowderN: %s: Reading %d rows from %s\n", + info->compname, size, SC_file); + + if (info->column_order[0] == 4 && info->flag_barns !=0) + printf("PowderN: %s: Powder file probably of type Crystallographica/Fullprof (lau)\n" + "WARNING: but F2 unit is set to barns=1 (barns). Intensity might be 100 times too high.\n", + info->compname); + if (info->column_order[0] == 17 && info->flag_barns == 0) + printf("PowderN: %s: Powder file probably of type Lazy Pulver (laz)\n" + "WARNING: but F2 unit is set to barns=0 (fm^2). Intensity might be 100 times too low.\n", + info->compname); + /* allocate line_data array */ + list = (struct line_data_union*)malloc(size*sizeof(struct line_data_union)); + + for (i=0; iDd >= 0) w = info->Dd; + if (info->DWfactor > 0) DWfactor = info->DWfactor; + if (info->Epsilon) Epsilon = info->Epsilon*1e-6; + + /* get data from table using columns {j d F2 DW Dd inv2d q F} */ + /* column indexes start at 1, thus need to substract 1 */ + if (info->column_order[0] >0) + j = Table_Index(sTable, i, info->column_order[0]-1); + if (info->column_order[1] >0) + d = Table_Index(sTable, i, info->column_order[1]-1); + if (info->column_order[2] >0) + F2 = Table_Index(sTable, i, info->column_order[2]-1); + if (info->column_order[3] >0) + DWfactor = Table_Index(sTable, i, info->column_order[3]-1); + if (info->column_order[4] >0) + w = Table_Index(sTable, i, info->column_order[4]-1); + if (info->column_order[5] >0) + { d = Table_Index(sTable, i, info->column_order[5]-1); + d = (d > 0? 1/d/2 : 0); } + if (info->column_order[6] >0) + { q = Table_Index(sTable, i, info->column_order[6]-1); + d = (q > 0 ? 2*PI/q : 0); } + if (info->column_order[7] >0 && !F2) + { F2 = Table_Index(sTable, i, info->column_order[7]-1); F2 *= F2; } + if (info->column_order[8] >0 && !Epsilon) + { Epsilon = Table_Index(sTable, i, info->column_order[8]-1)*1e-6; } + + /* assign and check values */ + j = (j > 0 ? j : 0); + q = (d > 0 ? 2*PI/d : 0); /* this is q */ + if (Epsilon && fabs(Epsilon) < 1e6) { + q -= Epsilon*q; /* dq/q = -delta_d_d/d = -Epsilon */ + } + DWfactor = (DWfactor > 0 ? DWfactor : 1); + w = (w>0 ? w : 0); /* this is q and d relative spreading */ + F2 = (F2 >= 0 ? F2 : 0); + if (j == 0 || q == 0) { + printf("PowderN: %s: line %i has invalid definition\n" + " (mult=0 or q=0 or d=0)\n", info->compname, i); + continue; + } + list[list_count].j = j; + list[list_count].q = q; + list[list_count].DWfactor = DWfactor; + list[list_count].w = w; + list[list_count].F2= F2; + list[list_count].Epsilon = Epsilon; + + /* adjust multiplicity if j-column + multiple d-spacing lines */ + /* if d = previous d, increase line duplication index */ + if (!q_count) q_count = q; + if (!j_count) j_count = j; + if (!F2_count) F2_count = F2; + if (fabs(q_count-q) < 0.0001*fabs(q) + && fabs(F2_count-F2) < 0.0001*fabs(F2) && j_count == j) { + mult_count++; flag=0; } + else flag=1; + if (i == size-1) flag=1; + /* else if d != previous d : just passed equivalent lines */ + if (flag) { + if (i == size-1) list_count++; + /* if duplication index == previous multiplicity */ + /* set back multiplicity of previous lines to 1 */ + if ((mult_count && list_count>0) + && (mult_count == list[list_count-1].j + || ((list_count < size) && (i == size - 1) + && (mult_count == list[list_count].j))) ) { + printf("PowderN: %s: Set multiplicity to 1 for lines [%i:%i]\n" + " (d-spacing %g is duplicated %i times)\n", + info->compname, list_count-mult_count, list_count-1, list[list_count-1].q, mult_count); + for (index=list_count-mult_count; indexcompname, list_count, SC_file); + + info->list = list; + info->count = list_count; + + return(list_count); + } /* read_line_data_union */ + + +/* computes the number of possible reflections (return value), and the total xsection 'sum' */ +/* this routine looks for a pre-computed value in the Nq and sum cache tables */ +/* when found, the earch starts from the corresponding lower element in the table */ +int calc_xsect_union(double v, double *qv, double *my_sv2, int count, double *sum, + struct line_info_struct_union *line_info) { + int Nq = 0, line=0, line0=0; + *sum=0; + + //printf("Line_info when entering cross_section calculation\n"); + //printf("v = %f, qv = %f, my_sv2 = %f, count = %d, sum = %f\n",v,*qv,*my_sv2,count,*sum); + //printf("v = %f\n",v); + //printf("line_info->v = %f, line_info->v_min = %f, line_info->v_max = %f, line_info->neutron_passed = %f\n",line_info->v,line_info->v_min,line_info->v_max,line_info->neutron_passed); + //printf("line_info->xs_reuses = %d, line_info->xs_compute = %d\n",line_info->xs_reuse,line_info->xs_compute); + + + /* check if a line_info element has been recorded already */ + if (v >= line_info->v_min && v <= line_info->v_max && line_info->neutron_passed >= CHAR_BUF_LENGTH) { + line = (int)floor(v - line_info->v_min)*CHAR_BUF_LENGTH/(line_info->v_max - line_info->v_min); + Nq = line_info->xs_Nq[line]; + *sum = line_info->xs_sum[line]; + if (!Nq && *sum == 0) { + /* not yet set: we compute the sum up to the corresponding speed in the table cache */ + //printf("Nq and sum not yet set, have to do this calculation now\n"); + double line_v = line_info->v_min + line*(line_info->v_max - line_info->v_min)/CHAR_BUF_LENGTH; + for(line0=0; line0xs_Nq[line] = Nq; + line_info->xs_sum[line]= *sum; + line_info->xs_compute++; + //printf("line_info->xs_Nq[line] = %f, line_info->xs_sum[line] = %f, line_info->xs_compute = %d\n",line_info->xs_Nq[line],line_info->xs_sum[line],line_info->xs_compute); + } else line_info->xs_reuse++; + line0 = Nq; + } + + line_info->xs_calls++; + + for(line=line0; linemy_scattering; + + + int method_switch = 1; + // For test + int line_v,line0,line,count; + + // Should not interfer with the global variables + double vx = k_initial[0]*K2V; + double vy = k_initial[1]*K2V; + double vz = k_initial[2]*K2V; + + // Not sure one can do this, but I do not see why not + struct line_info_struct_union *line_info = data_transfer.pointer_to_a_Powder_physics_storage_struct->line_info_storage; + + double v = sqrt(vx*vx + vy*vy + vz*vz); + //printf("Velocity = %f \n",v); + + //printf("line_info->v = %f, line_info->v_min = %f, line_info->v_max = %f, line_info->neutron_passed = %f\n",line_info->v,line_info->v_min,line_info->v_max,line_info->neutron_passed); + // Here the maximum and minimum v is recorded, should this be for scattering events or cross section calculations? + if (line_info->neutron_passed < CHAR_BUF_LENGTH) { + if (v < line_info->v_min) line_info->v_min = v; + if (v > line_info->v_max) line_info->v_max = v; + line_info->neutron_passed++; + } + + if (method_switch == 1) { + // Here the cross section is calculated and stored + if ( fabs(v - line_info->v) < 1e-6) { + line_info->nb_reuses++; + } else { + //printf("calling crosssection calculation \n"); + // int calc_xsect_union(double v, double *qv, double *my_sv2, int count, double *sum, struct line_info_struct *line_info) + line_info->Nq = calc_xsect_union(v, line_info->q_v, line_info->my_s_v2, line_info->count, &line_info->my_s_v2_sum, line_info); + line_info->v = v; + line_info->nb_refl += line_info->Nq; + line_info->nb_refl_count++; + } + } else { + if ( fabs(v - line_info->v) < 1e-6) { + line_info->nb_reuses++; + } else { + //printf("calling crosssection calculation \n"); + if (v >= line_info->v_min && v <= line_info->v_max && line_info->neutron_passed >= CHAR_BUF_LENGTH) { + line = (int)floor(v - line_info->v_min)*CHAR_BUF_LENGTH/(line_info->v_max - line_info->v_min); + line_info->Nq = line_info->xs_Nq[line]; + line_info->my_s_v2_sum = line_info->xs_sum[line]; + if (!line_info->Nq && line_info->my_s_v2_sum == 0) { + /* not yet set: we compute the sum up to the corresponding speed in the table cache */ + //printf("Nq and sum not yet set, have to do this calculation now\n"); + double line_v = line_info->v_min + line*(line_info->v_max - line_info->v_min)/CHAR_BUF_LENGTH; + for(line0=0; line0q_v[line0] <= 2*line_v) { /* q < 2*kf: restrict structural range */ + line_info->my_s_v2_sum += line_info->my_s_v2[line0]; + if (line_info->Nq < line0+1) line_info->Nq=line0+1; /* determine maximum line index which can scatter */ + } else break; + } + line_info->xs_Nq[line] = line_info->Nq; + line_info->xs_sum[line]= line_info->my_s_v2_sum; + line_info->xs_compute++; + //printf("line_info->xs_Nq[line] = %f, line_info->xs_sum[line] = %f, line_info->xs_compute = %d\n",line_info->xs_Nq[line],line_info->xs_sum[line],line_info->xs_compute); + } else line_info->xs_reuse++; + line0 = line_info->Nq; + } + + line_info->xs_calls++; + + for(line=line0; lineq_v[line] <= 2*v) { /* q < 2*kf: restrict structural range */ + line_info->my_s_v2_sum += line_info->my_s_v2[line]; + if (line_info->Nq < line+1) line_info->Nq=line+1; /* determine maximum line index which can scatter */ + } else break; + } + line_info->v = v; + line_info->nb_refl += line_info->Nq; + line_info->nb_refl_count++; + } + } + + *my = line_info->my_s_v2_sum/(v*v); + //printf("Returned my scattering of %f \n",*my); + //printf("compute = %d and reuse = %d \n",line_info->xs_compute,line_info->xs_reuse); + + return 1; +}; + +// Function that provides a basic nonuniform elastic scattering. Unphysical for testing purposes. +int Powder_physics_scattering(double *k_final, double *k_initial, double *weight, union data_transfer_union data_transfer, struct focus_data_struct *focus_data) { + + // This component need to write to its storage transfer for each event, is that possible with this structure? + struct line_info_struct_union *line_info = data_transfer.pointer_to_a_Powder_physics_storage_struct->line_info_storage; + double vertical_angular_limit = data_transfer.pointer_to_a_Powder_physics_storage_struct->vertical_angular_limit; + + + // Should not interfer with the global variables + double vx = k_initial[0]*K2V; + double vy = k_initial[1]*K2V; + double vz = k_initial[2]*K2V; + + double v = sqrt(vx*vx + vy*vy + vz*vz); + + int line; + double arg; + double theta; + double alpha,alpha0; + + double vout_x,vout_y,vout_z; + double tmp_vx,tmp_vy,tmp_vz; + double nx,ny,nz; + double my_s_n; + + // copy from PowderN component + if (line_info->count > 0) { + /* choose line */ + if (line_info->Nq > 1) line=floor(line_info->Nq*rand01()); /* Select between Nq powder lines */ + else line = 0; + if (line_info->w_v[line]) + arg = line_info->q_v[line]*(1+line_info->w_v[line]*randnorm())/(2.0*v); + else + arg = line_info->q_v[line]/(2.0*v); + my_s_n = line_info->my_s_v2[line]/(v*v); + if(fabs(arg) > 1) { + //printf("Powder scattering function returned 0, should not happen\n"); + return 0; /* No bragg scattering possible (was absorb)*/ + } + theta = asin(arg); /* Bragg scattering law */ + + /* Choose point on Debye-Scherrer cone */ + if (vertical_angular_limit) + { /* relate height of detector to the height on DS cone */ + arg = sin(vertical_angular_limit*DEG2RAD/2)/sin(2*theta); + /* If full Debye-Scherrer cone is within d_phi, don't focus */ + if (arg < -1 || arg > 1) vertical_angular_limit = 0; + /* Otherwise, determine alpha to rotate from scattering plane + into vertical_angular_limit focusing area*/ + else alpha = 2*asin(arg); + } + if (vertical_angular_limit) { + /* Focusing */ + alpha = fabs(alpha); + /* Trick to get scattering for pos/neg theta's */ + alpha0= 2*rand01()*alpha; + if (alpha0 > alpha) { + alpha0=PI+(alpha0-1.5*alpha); + } else { + alpha0=alpha0-0.5*alpha; + } + } + else + alpha0 = PI*randpm1(); + + /* now find a nearly vertical rotation axis: + * Either + * (v along Z) x (X axis) -> nearly Y axis + * Or + * (v along X) x (Z axis) -> nearly Y axis + */ + if (fabs(scalar_prod(1,0,0,vx/v,vy/v,vz/v)) < fabs(scalar_prod(0,0,1,vx/v,vy/v,vz/v))) { + nx = 1; ny = 0; nz = 0; + } else { + nx = 0; ny = 0; nz = 1; + } + vec_prod(tmp_vx,tmp_vy,tmp_vz, vx,vy,vz, nx,ny,nz); + + /* v_out = rotate 'v' by 2*theta around tmp_v: Bragg angle */ + rotate(vout_x,vout_y,vout_z, vx,vy,vz, 2*theta, tmp_vx,tmp_vy,tmp_vz); + + /* tmp_v = rotate v_out by alpha0 around 'v' (Debye-Scherrer cone) */ + rotate(tmp_vx,tmp_vy,tmp_vz, vout_x,vout_y,vout_z, alpha0, vx, vy, vz); + vx = tmp_vx; + vy = tmp_vy; + vz = tmp_vz; + + k_final[0] = V2K*vx; k_final[1] = V2K*vy; k_final[2] = V2K*vz; + + //*weight *= line_info->Nq*my_s_n; I believe my_s_n is part of the correction for sampling posistion, not to be done here + *weight *= line_info->Nq*my_s_n/line_info->my_s_v2_sum*v*v; + + //printf("my_s_n = %f \n",my_s_n); + + // What to do with my_s_n ? + /* + pmul = line_info->Nq*l_full*my_s_n*exp(-(line_info->my_a_v/v+my_s)*(l+l_1)) + /(1-(p_inc+p_transmit)); + */ + // Correction in case of vertical_angular_limit focusing - BUT only when d_phi != 0 + if (vertical_angular_limit) *weight *= alpha/PI; + + + line_info->type = 'c'; + line_info->dq = line_info->q_v[line]*V2K; + + + } else { + /* else transmit <-- No powder lines in file */ + printf("Error, need lines in the PowderN input file\n"); + } + + + //printf("Powder scattering function returned 1\n"); + return 1; +}; + +%} + +DECLARE +%{ +// Needed for transport to the main component +struct global_process_element_struct global_process_element; +struct scattering_process_struct This_process; + +#ifndef PROCESS_DETECTOR + //struct pointer_to_global_process_list global_process_list = {0,NULL}; + #define PROCESS_DETECTOR dummy +#endif + +// Declare for this component, to do calculations on the input / store in the transported data +struct Powder_physics_storage_struct Powder_storage; +struct line_info_struct_union line_info; +double effective_my_scattering; + +int columns[9] = format; + + +%} + +INITIALIZE +%{ + + // Initialize done in the component + + // Copy from PowderN component + int i=0; + struct line_data_union *L; + line_info.Dd = delta_d_d; + line_info.DWfactor = DW; + line_info.V_0 = Vc; + line_info.rho = density; + line_info.at_weight= weight; + line_info.at_nb = nb_atoms; + line_info.sigma_a = 0; // This inputs are not needed, as absorption is handled elsewhere + line_info.sigma_i = 0; // This input is not needed, as incoherent scattering is handled elsewhere + line_info.flag_barns=barns; + //line_info.shape = 0; + line_info.flag_warning=0; + line_info.Epsilon = Strain; + line_info.radius_i =line_info.xwidth_i=line_info.yheight_i=line_info.zdepth_i=0; + line_info.v = 0; + line_info.Nq = 0; + //line_info.v_min = FLT_MAX; line_info.v_max = 0; + line_info.v_min = 10000000000; line_info.v_max = 0; + line_info.neutron_passed=0; + line_info.nb_reuses = line_info.nb_refl = line_info.nb_refl_count = 0; + line_info.xs_compute= line_info.xs_reuse= line_info.xs_calls =0; + for (i=0; i< 9; i++) line_info.column_order[i] = columns[i]; + strncpy(line_info.compname, NAME_CURRENT_COMP, 256); + + // p_interact handled elsewhere + //if (p_interact) { + // if (p_interact < p_inc) { double tmp=p_interact; p_interact=p_inc; p_inc=tmp; } + // p_transmit = 1-p_interact-p_inc; + //} + + if (reflections && strlen(reflections) && strcmp(reflections, "NULL") && strcmp(reflections, "0")) { + i = read_line_data_union(reflections, &line_info); + if (i == 0) + exit(fprintf(stderr,"PowderN: %s: reflection file %s is not valid.\n" + "ERROR Please check file format (laz or lau).\n", NAME_CURRENT_COMP, reflections)); + } + + /* compute the scattering unit density from material weight and density */ + /* the weight of the scattering element is the chemical formula molecular weight + * times the nb of chemical formulae in the scattering element (nb_atoms) */ + if (!line_info.V_0 && line_info.at_nb > 0 + && line_info.at_weight > 0 && line_info.rho > 0) { + /* molar volume [cm^3/mol] = weight [g/mol] / density [g/cm^3] */ + /* atom density per Angs^3 = [mol/cm^3] * N_Avogadro *(1e-8)^3 */ + line_info.V_0 = line_info.at_nb + /(line_info.rho/line_info.at_weight/1e24*6.02214199e23); + } + + /* the scattering unit cross sections are the chemical formula onces + * times the nb of chemical formulae in the scattering element */ + if (line_info.at_nb > 0) { + line_info.sigma_a *= line_info.at_nb; line_info.sigma_i *= line_info.at_nb; + } + + if (line_info.V_0 <= 0) + fprintf(stderr,"PowderN: %s: density/unit cell volume is NULL (Vc). Unactivating component.\n", NAME_CURRENT_COMP); + + + if (line_info.flag_barns) { /* Factor 100 to convert from barns to fm^2 */ + line_info.XsectionFactor = 100; + } else { + line_info.XsectionFactor = 1; + } + + if (line_info.V_0 && i) { + L = line_info.list; + + line_info.q_v = malloc(line_info.count*sizeof(double)); + line_info.w_v = malloc(line_info.count*sizeof(double)); + line_info.my_s_v2 = malloc(line_info.count*sizeof(double)); + if (!line_info.q_v || !line_info.w_v || !line_info.my_s_v2) + exit(fprintf(stderr,"PowderN: %s: ERROR allocating memory (init)\n", NAME_CURRENT_COMP)); + for(i=0; imy_scattering = effective_my_scattering; + This_process.probability_for_scattering_function = &Powder_physics_my; + This_process.scattering_function = &Powder_physics_scattering; + + // This will be the same for all process's, and can thus be moved to an include. + This_process.process_p_interact = interact_fraction; + sprintf(This_process.name,NAME_CURRENT_COMP); + rot_copy(This_process.rotation_matrix,ROT_A_CURRENT_COMP); + sprintf(global_process_element.name,NAME_CURRENT_COMP); + global_process_element.component_index = INDEX_CURRENT_COMP; + global_process_element.p_scattering_process = &This_process; + add_element_to_process_list(&global_process_list,global_process_element); + %} + +TRACE +%{ +%} + +FINALLY +%{ + free(line_info.list); + free(line_info.q_v); + free(line_info.w_v); + free(line_info.my_s_v2); +%} + +END diff --git a/mcstasscript/tests/dummy_instrument_folder/Progress_bar.comp b/mcstasscript/tests/dummy_instrument_folder/Progress_bar.comp new file mode 100644 index 00000000..e57d4567 --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/Progress_bar.comp @@ -0,0 +1,151 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Component: Progress_bar +* +* %I +* Written by: Emmanuel Farhi +* Date: 2002 +* Origin: ILL +* +* A simulation progress bar +* +* %D +* An indicator of the progress of the simulation, monitoring +* the Init, Trace with the achieved percentage, and the Finally section. +* Intermediate savings (e.g. triggered by USR2 signal) are also shown. +* This component should be positioned at the very begining of the instrument +* The profile option will save the intensity and number of events for each +* component It may be used to evaluate the simulation efficiency. +* +* Example: Progress_bar(percent=10,flag_save=1) AT (0,0,0) +* +* %P +* INPUT PARAMETERS: +* percent: [0-100] percentage interval between updates. Default is 10%. +* minutes: [min] time in minutes between updates (Overrides percent flag). +* flag_save: [0|1] flag to enable intermediate saving for all monitors +* profile: [str] file name to save the simulation profile if set to "", it is set to the name of the instrument. +* +* %E +*******************************************************************************/ + +DEFINE COMPONENT Progress_bar +DEFINITION PARAMETERS () +SETTING PARAMETERS (string profile="NULL", percent=10,flag_save=0,minutes=0) +OUTPUT PARAMETERS (IntermediateCnts,StartTime,EndTime,CurrentTime) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ +DECLARE +%{ +#ifndef PROGRESS_BAR +#define PROGRESS_BAR +#else +#error Only one Progress_bar component may be used in an instrument definition. +#endif + +double IntermediateCnts; +time_t StartTime; +time_t EndTime; +time_t CurrentTime; +%} + +INITIALIZE +%{ +IntermediateCnts=0; +StartTime=0; +EndTime=0; +CurrentTime=0; + +fprintf(stdout, "[%s] Initialize\n", mcinstrument_name); + if (percent*mcget_ncount()/100 < 1e5) { + percent=1e5*100.0/mcget_ncount(); + } +%} + +TRACE +%{ + double ncount; + ncount = mcget_run_num(); + if (!StartTime) { + time(&StartTime); /* compute starting time */ + IntermediateCnts = 1e3; + } + time_t NowTime; + time(&NowTime); + /* compute initial estimate of computation duration */ + if (!EndTime && ncount >= IntermediateCnts) { + CurrentTime = NowTime; + if (difftime(NowTime,StartTime) > 10 && ncount) { /* wait 10 sec before writing ETA */ + EndTime = StartTime + (time_t)(difftime(NowTime,StartTime) + *(double)mcget_ncount()/ncount); + IntermediateCnts = 0; + fprintf(stdout, "\nTrace ETA "); + if (difftime(EndTime,StartTime) < 60.0) + fprintf(stdout, "%g [s] %% ", difftime(EndTime,StartTime)); + else if (difftime(EndTime,StartTime) > 3600.0) + fprintf(stdout, "%g [h] %% ", difftime(EndTime,StartTime)/3600.0); + else + fprintf(stdout, "%g [min] %% ", difftime(EndTime,StartTime)/60.0); + } else IntermediateCnts += 1e3; + fflush(stdout); + } + + /* display percentage when percent or minutes have reached step */ + if (EndTime && mcget_ncount() && + ( (minutes && difftime(NowTime,CurrentTime) > minutes*60) + || (percent && !minutes && ncount >= IntermediateCnts)) ) + { + fprintf(stdout, "%d ", (int)(ncount*100.0/mcget_ncount())); fflush(stdout); + CurrentTime = NowTime; + + IntermediateCnts = ncount + percent*mcget_ncount()/100; + /* check that next intermediate ncount check is a multiple of the desired percentage */ + IntermediateCnts = floor(IntermediateCnts*100/percent/mcget_ncount())*percent*mcget_ncount()/100; + /* raise flag to indicate that we did something */ + SCATTER; + if (flag_save) mcsave(NULL); + } +%} + +SAVE +%{ + MPI_MASTER(fprintf(stdout, "\nSave [%s]\n", mcinstrument_name);); + if (profile && strlen(profile) && strcmp(profile,"NULL") && strcmp(profile,"0")) { + char filename[256]; + if (!strlen(profile) || !strcmp(profile,"NULL") || !strcmp(profile,"0")) strcpy(filename, mcinstrument_name); + else strcpy(filename, profile); + DETECTOR_OUT_1D( + "Intensity profiler", + "Component index [1]", + "Intensity", + "prof", 1, mcNUMCOMP, mcNUMCOMP-1, + &mcNCounter[1],&mcPCounter[1],&mcP2Counter[1], + filename); + + } +%} + +FINALLY +%{ + time_t NowTime; + time(&NowTime); + fprintf(stdout, "\nFinally [%s: %s]. Time: ", mcinstrument_name, mcdirname ? mcdirname : "."); + if (difftime(NowTime,StartTime) < 60.0) + fprintf(stdout, "%g [s] ", difftime(NowTime,StartTime)); + else if (difftime(NowTime,StartTime) > 3600.0) + fprintf(stdout, "%g [h] ", difftime(NowTime,StartTime)/3660.0); + else + fprintf(stdout, "%g [min] ", difftime(NowTime,StartTime)/60.0); + fprintf(stdout, "\n"); +%} + +MCDISPLAY +%{ + +%} + +END diff --git a/mcstasscript/tests/dummy_instrument_folder/Source_div.comp b/mcstasscript/tests/dummy_instrument_folder/Source_div.comp new file mode 100644 index 00000000..356742d4 --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/Source_div.comp @@ -0,0 +1,182 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Component: Source_div +* +* %I +* Written by: KL +* Date: November 20, 1998 +* Modified by: KL, 8 October 2001 +* Origin: Risoe +* +* Neutron source with Gaussian or uniform divergence +* +* %D +* The routine is a rectangular neutron source, which has a gaussian or uniform +* divergent output in the forward direction. +* The neutron energy is distributed between lambda0-dlambda and +* lambda0+dlambda or between E0-dE and E0+dE. The flux unit is specified +* in n/cm2/s/st/energy unit (meV or Angs). +* In the case of uniform distribution (gauss=0), angles are uniformly distributed +* between -focus_aw and +focus_aw as well as -focus_ah and +focus_ah. +* For Gaussian distribution (gauss=1), 'focus_aw' and 'focus_ah' define the +* FWHM of a Gaussian distribution. Energy/wavelength distribution is also +* Gaussian. +* +* Example: Source_div(xwidth=0.1, yheight=0.1, focus_aw=2, focus_ah=2, E0=14, dE=2, gauss=0) +* +* %VALIDATION +* Feb 2005: tested by Kim Lefmann (o.k.) +* Apr 2005: energy distribution used in external tests of Fermi choppers (o.k.) +* Jun 2005: wavelength distribution used in external tests of velocity selectors (o.k.) +* Validated by: K. Lieutenant +* +* %BUGS +* distribution is uniform in (hor. and vert.) angle (relative to moderator normal), +* therefore not suited for large angles +* +* %P +* xwidth: [m] Width of source +* yheight: [m] Height of source +* focus_aw: [deg] FWHM (Gaussian) or maximal (uniform) horz. width divergence +* focus_ah: [deg] FWHM (Gaussian) or maximal (uniform) vert. height divergence +* E0: [meV] Mean energy of neutrons. +* dE: [meV] Energy half spread of neutrons. +* lambda0: [Ang] Mean wavelength of neutrons (only relevant for E0=0) +* dlambda: [Ang] Wavelength half spread of neutrons. +* gauss: [0|1] Criterion: 0: uniform, 1: Gaussian distributions +* flux: [1/(s cm 2 st energy_unit)] flux per energy unit, Angs or meV +* +* OUTPUT PARAMETERS: +* sigmah: [rad] parameter 'sigma' of the Gaussian distribution for horizontal divergence +* sigmav: [rad] parameter 'sigma' of the Gaussian distribution for vertical divergence +* p_init: [1] normalisation factor 1/'neutron_count' +* +* %E +*******************************************************************************/ + +DEFINE COMPONENT Source_div +DEFINITION PARAMETERS () +SETTING PARAMETERS (xwidth, yheight, focus_aw, focus_ah, E0=0.0, dE=0.0, lambda0=0.0, dlambda=0.0, gauss=0, flux=1) +OUTPUT PARAMETERS (thetah, thetav, sigmah, sigmav, tan_h, tan_v, p_init, dist, focus_xw, focus_yh) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ +DECLARE +%{ +double thetah, thetav, sigmah, sigmav, tan_h, tan_v, p_init, dist, focus_xw, focus_yh; +%} +INITIALIZE +%{ +sigmah = DEG2RAD*focus_aw/(sqrt(8.0*log(2.0))); + sigmav = DEG2RAD*focus_ah/(sqrt(8.0*log(2.0))); + + if (xwidth < 0 || yheight < 0 || focus_aw < 0 || focus_ah < 0) { + printf("Source_div: %s: Error in input parameter values!\n" + "ERROR Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + if ((!lambda0 && !E0 && !dE && !dlambda)) { + printf("Source_div: %s: You must specify either a wavelength or energy range!\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + if ((!lambda0 && !dlambda && (E0 <= 0 || dE < 0 || E0-dE <= 0)) + || (!E0 && !dE && (lambda0 <= 0 || dlambda < 0 || lambda0-dlambda <= 0))) { + printf("Source_div: %s: Unmeaningful definition of wavelength or energy range!\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + /* compute distance to next component */ + Coords ToTarget; + double tx,ty,tz; + ToTarget = coords_sub(POS_A_COMP_INDEX(INDEX_CURRENT_COMP+1),POS_A_CURRENT_COMP); + ToTarget = rot_apply(ROT_A_CURRENT_COMP, ToTarget); + coords_get(ToTarget, &tx, &ty, &tz); + dist=sqrt(tx*tx+ty*ty+tz*tz); + /* compute target area */ + if (dist) { + focus_xw=dist*tan(focus_aw*DEG2RAD); + focus_yh=dist*tan(focus_ah*DEG2RAD); + } + + p_init = flux*1e4*xwidth*yheight/mcget_ncount(); + if (!focus_aw || !focus_ah) + exit(printf("Source_div: %s: Zero divergence defined. \n" + "ERROR Use non zero values for focus_aw and focus_ah.\n", + NAME_CURRENT_COMP)); + p_init *= 2*fabs(DEG2RAD*focus_aw*sin(DEG2RAD*focus_ah/2)); /* solid angle */ + if (dlambda) + p_init *= 2*dlambda; + else if (dE) + p_init *= 2*dE; +%} +TRACE +%{ + double E,lambda,v; + + p=p_init; + z=0; + t=0; + + x=randpm1()*xwidth/2.0; + y=randpm1()*yheight/2.0; + if(lambda0==0) { + if (!gauss) { + E=E0+dE*randpm1(); /* Choose from uniform distribution */ + } else { + E=E0+randnorm()*dE; + } + v=sqrt(E)*SE2V; + } else { + if (!gauss) { + lambda=lambda0+dlambda*randpm1(); + } else { + lambda=lambda0+randnorm()*dlambda; + } + v = K2V*(2*PI/lambda); + } + + if (gauss==1) { + thetah = randnorm()*sigmah; + thetav = randnorm()*sigmav; + } else { + /*find limits of uniform sampling scheme for vertical divergence. + thetav should be acos(1-2*U) for U\in[0,1]. for theta measured from vertical axis + we only use a sub-interval for U and measure from horizontal plane.*/ + double sample_lim1,u2; + sample_lim1=(1-cos(M_PI_2 - focus_ah/2.0*DEG2RAD))*0.5; + u2=randpm1()*(sample_lim1-0.5) + 0.5; + thetav = acos(1-2*u2) - M_PI_2; + thetah = randpm1()*focus_aw*DEG2RAD/2; + } + + tan_h = tan(thetah); + tan_v = tan(thetav); + + /* Perform the correct treatment - no small angle approx. here! */ + vz = v / sqrt(1 + tan_v*tan_v + tan_h*tan_h); + vy = tan_v * vz; + vx = tan_h * vz; +%} + +MCDISPLAY +%{ + + multiline(5, -xwidth/2.0, -yheight/2.0, 0.0, + xwidth/2.0, -yheight/2.0, 0.0, + xwidth/2.0, yheight/2.0, 0.0, + -xwidth/2.0, yheight/2.0, 0.0, + -xwidth/2.0, -yheight/2.0, 0.0); + if (dist) { + dashed_line(0,0,0, -focus_xw/2,-focus_yh/2,dist, 4); + dashed_line(0,0,0, focus_xw/2,-focus_yh/2,dist, 4); + dashed_line(0,0,0, focus_xw/2, focus_yh/2,dist, 4); + dashed_line(0,0,0, -focus_xw/2, focus_yh/2,dist, 4); + } +%} + +END diff --git a/mcstasscript/tests/dummy_instrument_folder/Union_box.comp b/mcstasscript/tests/dummy_instrument_folder/Union_box.comp new file mode 100644 index 00000000..d8a5df41 --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/Union_box.comp @@ -0,0 +1,438 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright(C) 2007 Risoe National Laboratory. +* +* %I +* Written by: Mads Bertelsen +* Date: 20.08.15 +* Origin: Svanevej 19 +* +* A sample component to separate geometry and phsysics +* +* %D +* Part of the Union components, a set of components that work together and thus +* sperates geometry and physics within McStas. +* The use of this component requires other components to be used. +* +* 1) One specifies a number of processes using process components +* 2) These are gathered into material definitions using Union_make_material +* 3) Geometries are placed using Union_box/cylinder/sphere, assigned a material +* 4) A Union_master component placed after all of the above +* +* Only in step 4 will any simulation happen, and per default all geometries +* defined before this master, but after the previous will be simulated here. +* +* There is a dedicated manual available for the Union components +* +* The position of this component is the center of the box, zdepth/2 in each direction. +* +* It is allowed to overlap components, but it is not allowed to have two +* parallel planes that coincides. This will crash the code on run time. +* +* +* Algorithm: +* Described elsewhere +* +* %P +* INPUT PARAMETERS: +* xwidth: [m] width of the box volume +* yheight: [m] height of the box volume +* zdepth: [m] depth of the box volume +* xwidth2: [m] optional different width at the +z box face +* yheight2: [m] optional different height at the +z box face +* material_string: [] material name of this volume, defined using Union_make_material +* priority: [1] priotiry of the volume (can not be the same as another volume) A high priority is on top of low. +* p_interact [1] probability to interact with this geometry [0-1] +* visualize [1] set to 0 if you wish to hide this geometry in mcdisplay +* number_of_activations [1] Number of subsequent Union_master components that will simulate this geometry +* mask_string: [] Comma seperated list of geometry names which this geometry should mask +* mask_setting: [] "All" or "Any", should the masked volume be simulated when the ray is in just one mask, or all. +* +* Focusing options, if left blank, there will be no focusing. +* target_x [m]: +* target_y [m]: Position of target to focus at +* target_z [m]: +* focus_aw [deg] horiz. angular dimension of a rectangular area +* focus_ah [deg] vert. angular dimension of a rectangular area +* focus_xw [m] horiz. dimension of a rectangular area +* focus_xh [m] vert. dimension of a rectangular area +* focus_r [m] focusing on circle with this radius +* OUTPUT PARAMETERS: +* +* %L +* +* %E +******************************************************************************/ + +DEFINE COMPONENT Union_box +DEFINITION PARAMETERS () +SETTING PARAMETERS(string material_string=0, priority, xwidth, yheight, zdepth, xwidth2=-1, yheight2=-1, visualize=1, int target_index=0, target_x=0, target_y=0, target_z=0, focus_aw=0, focus_ah=0, focus_xw=0, focus_xh=0, focus_r=0, p_interact = 0, string mask_string=0, string mask_setting=0,number_of_activations=1) +OUTPUT PARAMETERS (loop_index,this_box_volume,global_geometry_element,this_box_storage) + +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +SHARE +%{ +#ifndef Union +#define Union $Revision: 0.8 $ + +#include "Union_functions.c" +#include "Union_initialization.c" + +#endif + + +void mcdisplay_box_function(struct lines_to_draw *lines_to_draw_output,int index, struct geometry_struct **Geometries,int number_of_volumes) { + // Function to call in mcdisplay section of the sample component for this volume + // One can assume that Volumes[index] refers to a volume with the geometry described in this file + + double depth = Geometries[index]->geometry_parameters.p_box_storage->z_depth; + double width1 = Geometries[index]->geometry_parameters.p_box_storage->x_width1; + double width2 = Geometries[index]->geometry_parameters.p_box_storage->x_width2; + double height1 = Geometries[index]->geometry_parameters.p_box_storage->y_height1; + double height2 = Geometries[index]->geometry_parameters.p_box_storage->y_height2; + + Coords x_vector = Geometries[index]->geometry_parameters.p_box_storage->x_vector; + Coords y_vector = Geometries[index]->geometry_parameters.p_box_storage->y_vector; + Coords z_vector = Geometries[index]->geometry_parameters.p_box_storage->z_vector; + + Coords center = Geometries[index]->center; + + Coords square1[4],square2[4]; + + square1[0] = coords_add(coords_add(coords_add(center,coords_scalar_mult(z_vector,-0.5*depth)),coords_scalar_mult(x_vector,-0.5*width1)),coords_scalar_mult(y_vector,-0.5*height1)); + + square1[1] = coords_add(square1[0],coords_scalar_mult(x_vector,width1)); + square1[2] = coords_add(square1[1],coords_scalar_mult(y_vector,height1)); + square1[3] = coords_add(square1[0],coords_scalar_mult(y_vector,height1)); + + square2[0] = coords_add(coords_add(coords_add(center,coords_scalar_mult(z_vector,0.5*depth)),coords_scalar_mult(x_vector,-0.5*width2)),coords_scalar_mult(y_vector,-0.5*height2)); + + square2[1] = coords_add(square2[0],coords_scalar_mult(x_vector,width2)); + square2[2] = coords_add(square2[1],coords_scalar_mult(y_vector,height2)); + square2[3] = coords_add(square2[0],coords_scalar_mult(y_vector,height2)); + + struct lines_to_draw lines_to_draw_temp; + lines_to_draw_temp.number_of_lines = 0; + + int iterate; + for (iterate=0;iterate<3;iterate++) { + lines_to_draw_temp = draw_line_with_highest_priority(square1[iterate],square1[iterate+1],index,Geometries,number_of_volumes,2); + merge_lines_to_draw(lines_to_draw_output,&lines_to_draw_temp); + } + lines_to_draw_temp = draw_line_with_highest_priority(square1[3],square1[0],index,Geometries,number_of_volumes,2); + merge_lines_to_draw(lines_to_draw_output,&lines_to_draw_temp); + + for (iterate=0;iterate<3;iterate++) { + lines_to_draw_temp = draw_line_with_highest_priority(square2[iterate],square2[iterate+1],index,Geometries,number_of_volumes,2); + merge_lines_to_draw(lines_to_draw_output,&lines_to_draw_temp); + } + lines_to_draw_temp = draw_line_with_highest_priority(square2[3],square2[0],index,Geometries,number_of_volumes,2); + merge_lines_to_draw(lines_to_draw_output,&lines_to_draw_temp); + + for (iterate=0;iterate<4;iterate++) { + lines_to_draw_temp = draw_line_with_highest_priority(square1[iterate],square2[iterate],index,Geometries,number_of_volumes,2); + merge_lines_to_draw(lines_to_draw_output,&lines_to_draw_temp); + } +}; + +void initialize_box_geometry_from_main_component(struct geometry_struct *box) { + // Function to be called in initialize of the main component + // This is done as the rotation matrix needs to be relative to the main component instead of global + // Everything done in initialize in this component file has the rotation matrix relative to global + Coords simple_vector = coords_set(1,0,0); + Coords rotated_vector; + + rotated_vector = rot_apply(box->rotation_matrix,simple_vector); + NORM(rotated_vector.x,rotated_vector.y,rotated_vector.z); + box->geometry_parameters.p_box_storage->x_vector = rotated_vector; + + simple_vector = coords_set(0,1,0); + rotated_vector = rot_apply(box->rotation_matrix,simple_vector); + NORM(rotated_vector.x,rotated_vector.y,rotated_vector.z); + box->geometry_parameters.p_box_storage->y_vector = rotated_vector; + + simple_vector = coords_set(0,0,1); + rotated_vector = rot_apply(box->rotation_matrix,simple_vector); + NORM(rotated_vector.x,rotated_vector.y,rotated_vector.z); + box->geometry_parameters.p_box_storage->z_vector = rotated_vector; +}; + +struct pointer_to_1d_coords_list box_shell_points(struct geometry_struct *geometry,int max_number_of_points) { + // This function returns an array of corner positions for the box in the main coordinate system. + // Normally one would limit it to a maximum number of points, but as there are only 8 for the box, + // it is hardcoded to 8. Other geometries can be approximated with a variable number of points. + + struct pointer_to_1d_coords_list corner_points; + corner_points.elements = malloc(8*sizeof(Coords)); + corner_points.num_elements = 8; + + double depth = geometry->geometry_parameters.p_box_storage->z_depth; + double width1 = geometry->geometry_parameters.p_box_storage->x_width1; + double width2 = geometry->geometry_parameters.p_box_storage->x_width2; + double height1 = geometry->geometry_parameters.p_box_storage->y_height1; + double height2 = geometry->geometry_parameters.p_box_storage->y_height2; + + Coords x_vector = geometry->geometry_parameters.p_box_storage->x_vector; + Coords y_vector = geometry->geometry_parameters.p_box_storage->y_vector; + Coords z_vector = geometry->geometry_parameters.p_box_storage->z_vector; + + Coords center = geometry->center; + + corner_points.elements[0] = coords_add(coords_add(coords_add(center,coords_scalar_mult(z_vector,-0.5*depth)),coords_scalar_mult(x_vector,-0.5*width1)),coords_scalar_mult(y_vector,-0.5*height1)); + + corner_points.elements[1] = coords_add(corner_points.elements[0],coords_scalar_mult(x_vector,width1)); + corner_points.elements[2] = coords_add(corner_points.elements[1],coords_scalar_mult(y_vector,height1)); + corner_points.elements[3] = coords_add(corner_points.elements[0],coords_scalar_mult(y_vector,height1)); + + corner_points.elements[4] = coords_add(coords_add(coords_add(center,coords_scalar_mult(z_vector,0.5*depth)),coords_scalar_mult(x_vector,-0.5*width2)),coords_scalar_mult(y_vector,-0.5*height2)); + + corner_points.elements[5] = coords_add(corner_points.elements[4],coords_scalar_mult(x_vector,width2)); + corner_points.elements[6] = coords_add(corner_points.elements[5],coords_scalar_mult(y_vector,height2)); + corner_points.elements[7] = coords_add(corner_points.elements[4],coords_scalar_mult(y_vector,height2)); + + return corner_points; + +} + +%} + +DECLARE +%{ +// Needed for transport to the main component +struct global_geometry_element_struct global_geometry_element; + +#ifndef ANY_GEOMETRY_DETECTOR_DECLARE + #define ANY_GEOMETRY_DETECTOR_DECLARE dummy + //struct pointer_to_global_geometry_list global_geometry_list = {0,NULL}; +#endif + +int loop_index,found_geometries; + +double x_component; +double y_component; +double z_component; + +struct Volume_struct this_box_volume; +struct box_storage this_box_storage; + +%} + +INITIALIZE +%{ +// Initializes the focusing system for this volume including input sanitation. +focus_initialize(&this_box_volume.geometry, POS_A_COMP_INDEX(INDEX_CURRENT_COMP+target_index), POS_A_CURRENT_COMP, ROT_A_CURRENT_COMP, target_index, target_x, target_y, target_z, focus_aw, focus_ah, focus_xw, focus_xh, focus_r, NAME_CURRENT_COMP); + +// Input sanitation for this geometry +if (xwidth <= 0) { + printf("\nERROR in Union_box named %s, the xwidth is <= 0. \n",NAME_CURRENT_COMP); + exit(1); +} +if (yheight <= 0) { + printf("\nERROR in Union_box named %s, yheight is <= 0. \n",NAME_CURRENT_COMP); + exit(1); +} +if (zdepth <= 0) { + printf("\nERROR in Union_box named %s, zdepth is <= 0. \n",NAME_CURRENT_COMP); + exit(1); +} +if (xwidth2 <= 0 && xwidth2 != -1) { + printf("\nERROR in Union_box named %s, the xwidth2 is <= 0. \n",NAME_CURRENT_COMP); + exit(1); +} +if (yheight2 <= 0 && yheight2 != -1) { + printf("\nERROR in Union_box named %s, yheight2 is <= 0. \n",NAME_CURRENT_COMP); + exit(1); +} + +// Use sanitation +if (global_material_list.num_elements == 0) { + printf("\nERROR: Need to define a material using Union_make_material before using a Union geometry component. \n"); + printf(" %s was defined before first use of Union_make_material.\n",NAME_CURRENT_COMP); + exit(1); +} + +this_box_volume.geometry.is_masked_volume = 0; +this_box_volume.geometry.is_exit_volume = 0; +this_box_volume.geometry.is_mask_volume = 0; +// check if the volume is a mask, if it is the material string is irelevant. +if (mask_string && strlen(mask_string) && strcmp(mask_string, "NULL") && strcmp(mask_string, "0")) { + // A mask volume is used to limit the extend of other volumes, called the masked volumes. These are specified in the mask_string. + // In order for a ray to enter a masked volume, it needs to be both in the region covered by that volume AND the mask volume. + // When more than + this_box_volume.geometry.mask_mode = 1; // Default is mask mode is ALL + if (mask_setting && strlen(mask_setting) && strcmp(mask_setting, "NULL") && strcmp(mask_setting, "0")) { + if (strcmp(mask_setting,"ALL") == 0 || strcmp(mask_setting,"All") == 0) this_box_volume.geometry.mask_mode = 1; + else if (strcmp(mask_setting,"ANY") == 0 || strcmp(mask_setting,"Any") == 0) this_box_volume.geometry.mask_mode = 2; + else { + printf("The mask_mode of component %s is set to %s, but must be either ALL or ANY.\n",NAME_CURRENT_COMP,mask_setting); + exit(1); + } + } + + for (loop_index=0;loop_indexgeometry.masked_by_list,INDEX_CURRENT_COMP); + global_geometry_list.elements[loop_index].Volume->geometry.is_masked_volume = 1; + if (this_box_volume.geometry.mask_mode == 2) + global_geometry_list.elements[loop_index].Volume->geometry.mask_mode = 2; + if (this_box_volume.geometry.mask_mode == 1) { + if (global_geometry_list.elements[loop_index].Volume->geometry.is_masked_volume == 1 && global_geometry_list.elements[loop_index].Volume->geometry.mask_mode != 2) + // If more than one mask is added to one volume, the ANY mode overwrites the (default) ALL mode. + global_geometry_list.elements[loop_index].Volume->geometry.mask_mode = 1; + } + + found_geometries = 1; + } + } + if (found_geometries == 0) { + printf("The mask_string in geometry: %s did not find any of the specified volumes in the mask_string %s \n",NAME_CURRENT_COMP,mask_string); + exit(1); + } + this_box_volume.p_physics = malloc(sizeof(struct physics_struct)); + this_box_volume.p_physics->is_vacuum = 0; // Makes this volume a vacuum + this_box_volume.p_physics->number_of_processes = (int) 0; // Should not be used. + this_box_volume.p_physics->my_a = 0; // Should not be used. + sprintf(this_box_volume.p_physics->name,"Mask"); + this_box_volume.geometry.is_mask_volume = 1; + + +// Read the material input, or if it lacks, use automatic linking. +} else if (material_string && strlen(material_string) && strcmp(material_string, "NULL") && strcmp(material_string, "0")) { + // A geometry string was given, use it to determine which material + if (0 == strcmp(material_string,"vacuum") || 0 == strcmp(material_string,"Vacuum")) { + // One could have a global physics struct for vacuum instead of creating one for each + this_box_volume.p_physics = malloc(sizeof(struct physics_struct)); + this_box_volume.p_physics->is_vacuum = 1; // Makes this volume a vacuum + this_box_volume.p_physics->number_of_processes = (int) 0; // Should not be used. + this_box_volume.p_physics->my_a = 0; // Should not be used. + sprintf(this_box_volume.p_physics->name,"Vacuum"); + } else if (0 == strcmp(material_string,"exit") || 0 == strcmp(material_string,"Exit")) { + // One could have a global physics struct for vacuum instead of creating one for each + this_box_volume.p_physics = malloc(sizeof(struct physics_struct)); + this_box_volume.p_physics->is_vacuum = 1; // Makes this volume a vacuum + this_box_volume.p_physics->number_of_processes = (int) 0; // Should not be used. + this_box_volume.p_physics->my_a = 0; // Should not be used. + this_box_volume.geometry.is_exit_volume = 1; + sprintf(this_box_volume.p_physics->name,"Exit"); + } else { + #ifndef MATERIAL_DETECTOR + printf("Need to define a material before refering to it in a geometry %s.\n",NAME_CURRENT_COMP); + exit(1); + #endif + for (loop_index=0;loop_indexgeometry_parameters.p_cylinder_storage->height; + double radius = Geometries[index]->geometry_parameters.p_cylinder_storage->cyl_radius; + Coords direction = Geometries[index]->geometry_parameters.p_cylinder_storage->direction_vector; + Coords center = Geometries[index]->center; + + Coords bottom_point = coords_add(center,coords_scalar_mult(direction,0.5*height)); + Coords top_point = coords_add(center,coords_scalar_mult(direction,-0.5*height)); + + struct lines_to_draw lines_to_draw_temp; + lines_to_draw_temp.number_of_lines = 0; + + lines_to_draw_temp = draw_circle_with_highest_priority(top_point,direction,radius,index,Geometries,number_of_volumes,2); + merge_lines_to_draw(lines_to_draw_output,&lines_to_draw_temp); + + lines_to_draw_temp = draw_circle_with_highest_priority(bottom_point,direction,radius,index,Geometries,number_of_volumes,2); + merge_lines_to_draw(lines_to_draw_output,&lines_to_draw_temp); + + Coords point1,point2; + int iterate,number_of_points=4; + + for (iterate=0;iteraterotation_matrix,simple_vector); + NORM(cyl_vector.x,cyl_vector.y,cyl_vector.z); + cylinder->geometry_parameters.p_cylinder_storage->direction_vector.x = cyl_vector.x; + cylinder->geometry_parameters.p_cylinder_storage->direction_vector.y = cyl_vector.y; + cylinder->geometry_parameters.p_cylinder_storage->direction_vector.z = cyl_vector.z; + // if (verbal == 1) printf("Cords vector1 = (%f,%f,%f)\n",cyl_vector.x,cyl_vector.y, +} + +struct pointer_to_1d_coords_list cylinder_shell_points(struct geometry_struct *geometry,int max_number_of_points) { + // Function that returns a number (less than max) of points on the geometry surface + // If used, remember to free the space allocated. + int points_per_circle = floor(max_number_of_points/2.0); + + struct pointer_to_1d_coords_list cylinder_shell_array; + cylinder_shell_array.elements = malloc(2*points_per_circle*sizeof(Coords)); + cylinder_shell_array.num_elements = 2*points_per_circle; + + Coords cyl_direction = geometry->geometry_parameters.p_cylinder_storage->direction_vector; + Coords center = geometry->center; + double radius = geometry->geometry_parameters.p_cylinder_storage->cyl_radius; + double height = geometry->geometry_parameters.p_cylinder_storage->height; + + Coords cyl_top_point = coords_add(center,coords_scalar_mult(cyl_direction,0.5*height)); + Coords cyl_bottom_point = coords_add(center,coords_scalar_mult(cyl_direction,-0.5*height)); + + points_on_circle(cylinder_shell_array.elements,cyl_top_point,cyl_direction,radius,points_per_circle); + // Need to verify this pointer arithimatic works as intended + points_on_circle(cylinder_shell_array.elements+points_per_circle,cyl_bottom_point,cyl_direction,radius,points_per_circle); + + return cylinder_shell_array; +} + +%} + +DECLARE +%{ +// Needed for transport to the main component +struct global_geometry_element_struct global_geometry_element; + +#ifndef ANY_GEOMETRY_DETECTOR_DECLARE + #define ANY_GEOMETRY_DETECTOR_DECLARE dummy + //struct pointer_to_global_geometry_list global_geometry_list = {0,NULL}; +#endif + +int dummy; +int loop_index,found_geometries; +int loop_2_index; +int material_index; + +struct Volume_struct this_cylinder_volume; +struct cylinder_storage this_cylinder_storage; +%} + +INITIALIZE +%{ +// Initializes the focusing system for this volume including input sanitation. +focus_initialize(&this_cylinder_volume.geometry, POS_A_COMP_INDEX(INDEX_CURRENT_COMP+target_index), POS_A_CURRENT_COMP, ROT_A_CURRENT_COMP, target_index, target_x, target_y, target_z, focus_aw, focus_ah, focus_xw, focus_xh, focus_r, NAME_CURRENT_COMP); + +// Input sanitation for this geometry +if (radius <= 0) { + printf("\nERROR in Union_cylinder named %s, the radius is <= 0. \n",NAME_CURRENT_COMP); + exit(1); +} + +if (yheight <= 0) { + printf("\nERROR in Union_cylinder named %s, yheight is <= 0. \n",NAME_CURRENT_COMP); + exit(1); +} + +// Use sanitation +#ifdef MATERIAL_DETECTOR +if (global_material_list.num_elements == 0) { + // Here if the user have defined a material, but only after this material + printf("\nERROR: Need to define a material using Union_make_material before using a Union geometry component. \n"); + printf(" %s was defined before first use of Union_make_material.\n",NAME_CURRENT_COMP); + exit(1); +} +#endif +#ifndef MATERIAL_DETECTOR + printf("\nERROR: Need to define a material using Union_make_material before using a Union geometry component. \n"); + exit(1); +#endif + + +this_cylinder_volume.geometry.is_masked_volume = 0; +this_cylinder_volume.geometry.is_exit_volume = 0; +this_cylinder_volume.geometry.is_mask_volume = 0; + +// Read the material input, or if it lacks, use automatic linking. +if (mask_string && strlen(mask_string) && strcmp(mask_string, "NULL") && strcmp(mask_string, "0")) { + // A mask volume is used to limit the extend of other volumes, called the masked volumes. These are specified in the mask_string. + // In order for a ray to enter a masked volume, it needs to be both in the region covered by that volume AND the mask volume. + // When more than + this_cylinder_volume.geometry.mask_mode = 1; // Default is mask mode is ALL + if (mask_setting && strlen(mask_setting) && strcmp(mask_setting, "NULL") && strcmp(mask_setting, "0")) { + if (strcmp(mask_setting,"ALL") == 0 || strcmp(mask_setting,"All") == 0) this_cylinder_volume.geometry.mask_mode = 1; + else if (strcmp(mask_setting,"ANY") == 0 || strcmp(mask_setting,"Any") == 0) this_cylinder_volume.geometry.mask_mode = 2; + else { + printf("The mask_mode of component %s is set to %s, but must be either ALL or ANY.\n",NAME_CURRENT_COMP,mask_setting); + exit(1); + } + } + + for (loop_index=0;loop_indexgeometry.masked_by_list,INDEX_CURRENT_COMP); + global_geometry_list.elements[loop_index].Volume->geometry.is_masked_volume = 1; + if (this_cylinder_volume.geometry.mask_mode == 2) + global_geometry_list.elements[loop_index].Volume->geometry.mask_mode = 2; + if (this_cylinder_volume.geometry.mask_mode == 1) { + if (global_geometry_list.elements[loop_index].Volume->geometry.is_masked_volume == 1 && global_geometry_list.elements[loop_index].Volume->geometry.mask_mode != 2) + // If more than one mask is added to one volume, the ANY mode overwrites the (default) ALL mode. + global_geometry_list.elements[loop_index].Volume->geometry.mask_mode = 1; + } + + found_geometries = 1; + } + } + if (found_geometries == 0) { + printf("The mask_string in geometry: %s did not find any of the specified volumes in the mask_string %s \n",NAME_CURRENT_COMP,mask_string); + exit(1); + } + this_cylinder_volume.p_physics = malloc(sizeof(struct physics_struct)); + this_cylinder_volume.p_physics->is_vacuum = 0; // Makes this volume a vacuum + this_cylinder_volume.p_physics->number_of_processes = (int) 0; // Should not be used. + this_cylinder_volume.p_physics->my_a = 0; // Should not be used. + sprintf(this_cylinder_volume.p_physics->name,"Mask"); + this_cylinder_volume.geometry.is_mask_volume = 1; + + +// Read the material input, or if it lacks, use automatic linking. +} else if (material_string && strlen(material_string) && strcmp(material_string, "NULL") && strcmp(material_string, "0")) { + // A geometry string was given, use it to determine which material + if (0 == strcmp(material_string,"vacuum") || 0 == strcmp(material_string,"Vacuum")) { + // One could have a global physics struct for vacuum instead of creating one for each + this_cylinder_volume.p_physics = malloc(sizeof(struct physics_struct)); + this_cylinder_volume.p_physics->is_vacuum = 1; // Makes this volume a vacuum + this_cylinder_volume.p_physics->number_of_processes = (int) 0; + this_cylinder_volume.p_physics->my_a = 0; // Should not be used. + sprintf(this_cylinder_volume.p_physics->name,"Vacuum"); + } else if (0 == strcmp(material_string,"exit") || 0 == strcmp(material_string,"Exit")) { + // One could have a global physics struct for exit instead of creating one for each + this_cylinder_volume.p_physics = malloc(sizeof(struct physics_struct)); + this_cylinder_volume.p_physics->is_vacuum = 1; // Makes this volume a vacuum + this_cylinder_volume.p_physics->number_of_processes = (int) 0; + this_cylinder_volume.p_physics->my_a = 0; // Should not be used. + this_cylinder_volume.geometry.is_exit_volume = 1; + sprintf(this_cylinder_volume.p_physics->name,"Exit"); + } else { + for (loop_index=0;loop_index 0) scattered_1 = 1; else scattered_1 = 0; +if (scattered_flag[sample_2_index] > 0) scattered_2 = 1; else scattered_2 = 0; +if (scattered_flag[sample_3_index] > 0) scattered_3 = 1; else scattered_3 = 0; +if (scattered_flag[sample_4_index] > 0) scattered_4 = 1; else scattered_4 = 0; +%} + + + +COMPONENT detector_position = Arm() +AT (0,0,0.03) RELATIVE beam_center +ROTATED(0,0,0) RELATIVE beam_center + +COMPONENT m4pi = PSD_monitor_4PI(radius=1, nx=180, ny=180, filename="Events.dat", restore_neutron=1) +AT (0, 0, 0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +COMPONENT Banana_monitor = Monitor_nD(radius=1, yheight=0.1, options="banana, theta limits=[20,170], bins=500",filename="banana.dat",restore_neutron=1) +AT (0,0,0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +COMPONENT detector = PSD_monitor(xwidth=0.1, yheight=0.08, nx=200, ny=200, filename="PSD.dat", restore_neutron=1) +AT (0,-0.02,0.4) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + +// Removes events not scattering in at least two of the samples +// mcdisplay --inspect=m4pi_two_samples shows only rays that scatters on all three +// since all others were removed before that component with this arm. +COMPONENT arm_1 = Arm() + AT (0, 0, 0) RELATIVE beam_center +EXTEND +%{ + if (scattered_1 + scattered_2 + scattered_3 + scattered_4 < 2) ABSORB; +%} + +// Using mcdisplay and -inspect m4pi_two_or_more_samples one can show only +// trajectories where the ray scatters from two or more of the samples +COMPONENT m4pi_two_or_more_samples = PSD_monitor_4PI(radius=1, nx=180, ny=180, filename="Events.dat", restore_neutron=1) +WHEN (scattered_1 + scattered_2 + scattered_3 + scattered_4 > 1) +AT (0, 0, 0) RELATIVE beam_center +ROTATED (0,0,0) RELATIVE beam_center + + +COMPONENT armA = Arm() +AT (0,0,0) ABSOLUTE +GROUP arms + +COMPONENT armB = Arm() +AT (0,0,0) ABSOLUTE +GROUP arms +JUMP myself 2 + + +END diff --git a/mcstasscript/tests/dummy_instrument_folder/Union_make_material.comp b/mcstasscript/tests/dummy_instrument_folder/Union_make_material.comp new file mode 100644 index 00000000..b591f018 --- /dev/null +++ b/mcstasscript/tests/dummy_instrument_folder/Union_make_material.comp @@ -0,0 +1,299 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright(C) 2007 Risoe National Laboratory. +* +* %I +* Written by: Mads Bertelsen +* Date: 20.08.15 +* Version: $Revision: 0.1 $ +* Origin: Svanevej 19 +* +* %D +* Part of the Union components, a set of components that work together and thus +* sperates geometry and physics within McStas. +* The use of this component requires other components to be used. +* +* 1) One specifies a number of processes using process components +* 2) These are gathered into material definitions using this component +* 3) Geometries are placed using Union_box/cylinder/sphere, assigned a material +* 4) A Union_master component placed after all of the above +* +* Only in step 4 will any simulation happen, and per default all geometries +* defined before the master, but after the previous will be simulated here. +* +* There is a dedicated manual available for the Union_components +* +* Algorithm: +* Described elsewhere +* +* %P +* INPUT PARAMETERS: +* process_string: [string] Comma seperated names of physical processes +* my_absorption: [1/m] Inverse penetration depth from absorption at standard energy +* absorber: [0/1] Control parameter, if set to 1 the material will have no scattering processes +* +* OUTPUT PARAMETERS: +* this_material: Structure that contains information on this material +* global_material_element: Element of global_material_list which is a global variable +* +* GLOBAL PARAMETERS: +* global_material_list: List of all defined materials, available in the global scope +* +* %L +* +* %E +******************************************************************************/ + +DEFINE COMPONENT Union_make_material +DEFINITION PARAMETERS () +SETTING PARAMETERS(string process_string="NULL",my_absorption,absorber=0) +OUTPUT PARAMETERS (loop_index,this_material,accepted_processes,global_material_element) + +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +SHARE +%{ +#ifndef Union +#define Union $Revision: 0.8 $ + +#include "Union_functions.c" +#include "Union_initialization.c" + +#endif + +// This function checks if global_process_element should be included in this material when using automatic linking, returns 1 if yes, 0 if no. +int automatic_linking_materials_function(struct global_process_element_struct global_process_element, struct pointer_to_global_material_list global_material_list,int current_index) { + // Remember this function is used before the current material is added to global_material_list + // debug info + //MPI_MASTER( + //printf("Checking if process with index %d should be automatically linked to material with index %d\n",global_process_element.component_index,current_index); + //) + + // Check if this is the first make_material, which makes the problem simpler. + if (global_material_list.num_elements == 0) { + if (global_process_element.component_index < current_index) return 1; + else return 0; + } + // In case there are more than 1 make_material, global_material_list.elements[global_material_list.num_elements-1].component_index makes sense. + if (global_process_element.component_index < current_index && global_process_element.component_index > global_material_list.elements[global_material_list.num_elements-1].component_index) return 1; + else return 0; +} + +void manual_linking_function_material(char *input_string, struct pointer_to_global_process_list *global_process_list, struct pointer_to_1d_int_list *accepted_processes, char *component_name) { + // Need to check a input_string of text for an occurance of name. If it is in the inputstring, yes return 1, otherwise 0. + char *token; + int loop_index; + char local_string[256]; + + strcpy(local_string,input_string); + // get the first token + token = strtok(local_string,","); + + // walk through other tokens + while( token != NULL ) + { + //printf( " %s\n", token ); + for (loop_index=0;loop_indexnum_elements;loop_index++) { + if (strcmp(token,global_process_list->elements[loop_index].name) == 0) { + add_element_to_int_list(accepted_processes,loop_index); + break; + } + + if (loop_index == global_process_list->num_elements - 1) { + // All possible process names have been looked through, and the break was not executed. + // Alert the user to this problem by showing the process name that was not found and the currently available processes + printf("\n"); + printf("ERROR: The process string \"%s\" in Union material \"%s\" had an entry that did not match a specified process. \n",input_string,component_name); + printf(" The unrecoignized process name was: \"%s\" \n",token); + printf(" The processes available at this point (need to be defined before the material): \n"); + for (loop_index=0;loop_indexnum_elements;loop_index++) + printf(" %s\n",global_process_list->elements[loop_index].name); + exit(1); + } + } + + // Updates the token + token = strtok(NULL,","); + } +} + +// This function is needed in initialize of all geometry components +// Possible to insert these functions in make material, as they are only compiled once instead of many times +int manual_linking_function(char *name, char *input_string) { + // Need to check a input_string of text for an occurance of name. If it is in the inputstring, yes return 1, otherwise 0. + char *token; + int return_integer=0; + char local_string[124]; + + strcpy(local_string,input_string); + /* get the first token */ + token = strtok(local_string,","); + + /* walk through other tokens */ + while( token != NULL ) + { + //printf( " %s\n", token ); + if (strcmp(token,name) == 0) return_integer=1; + + token = strtok(NULL,","); + } + + return return_integer; +} + + + +/* +int count_commas(char *string) { + int return_value = 0; + + int index; + for (index=0;index 0) this_material.p_scattering_array = malloc(this_material.number_of_processes * sizeof(struct scattering_process_struct)); + for (loop_index=0;loop_index 0) free(this_material.p_scattering_array); +if (accepted_processes.num_elements > 0) free(accepted_processes.elements); + +// Checking if any Union volumes are defined after the master component +#ifdef MASTER_DETECTOR + #ifdef ANY_GEOMETRY_DETECTOR_DECLARE + #ifndef MASTER_DETECTOR_WARNING + for (loop_index=0;loop_index global_master_list.elements[global_master_list.num_elements-1].component_index) { + printf("WARNING: No Union_master component defined after Union volume named %s, this components did not affect the simulation in any way.\n",global_geometry_list.elements[loop_index].name); + } + } + // Decided to have this as a warning without exiting the simulation + // In order to only show this warning once, the MASTER_DETECTOR_WARNING is defined + #define MASTER_DETECTOR_WARNING dummy + #endif + #endif +#endif + +// Checking if the user remembered to put in a Union_master +#ifndef MASTER_DETECTOR + #ifdef ANY_GEOMETRY_DETECTOR_DECLARE + #ifndef MASTER_DETECTOR_WARNING + printf("\nWARNING: No Union_master component used, these components did not affect the simulation in any way:\n"); + for (loop_index=0;loop_index component index + struct pointer_to_1d_int_list geometry_component_index_list; + + // Masks + struct pointer_to_1d_int_list mask_volume_index_list; + int number_of_masks=0; + int number_of_masked_volumes=0; + struct pointer_to_1d_int_list mask_status_list; + struct pointer_to_1d_int_list current_mask_intersect_list_status; + int mask_index_main,mask_iterate; + int *mask_start,*mask_check; + int need_to_run_within_which_volume; + + // Loggers + //struct logger_with_data_struct loggers_with_data_array; + int *number_of_processes_array; + double p_old; + int log_index,conditional_status; + struct logger_struct *this_logger; + // union detector_pointer_union detector_pointer; + + // Conditionals + struct conditional_list_struct *tagging_conditional_list; + int *logger_conditional_extend_array; + int max_conditional_extend_index; + int tagging_conditional_extend; + int free_tagging_conditioanl_list; + + // Reliability control + // Safty distance is needed to avoid having ray positions closer to a wall than the precision of intersection functions + double safty_distance,safty_distance2; + + // Focusing + struct focus_data_struct temporary_focus_data; + int focus_data_index; + +%} + +INITIALIZE +%{ + // Use sanitation + #ifndef ANY_GEOMETRY_DETECTOR_DECLARE + printf("\nERROR: Need to define at least one Volume using Union_cylinder or Union_box before using the Union_master component. \n"); + exit(1); + #endif + #ifdef ANY_GEOMETRY_DETECTOR_DECLARE + if (global_geometry_list.num_elements == 0) { + printf("\nERROR: Need to define at least one Volume using Union_cylinder or Union_box before using the Union_master component. \n"); + printf(" Union_master component named \"%s\" is before any Volumes in the instrument file. At least one Volume need to be defined before\n",NAME_CURRENT_COMP); + + exit(1); + } + #endif + + // Parameters describing the safety distances close to surfaces, as scattering should not occur closer to a surface than the + // accuracy of the intersection calculation. + safty_distance = 1E-11; + safty_distance2 = safty_distance*2; + + // Write information to the global_master_list about the current Union_master + sprintf(global_master_element.name,NAME_CURRENT_COMP); + global_master_element.component_index = INDEX_CURRENT_COMP; + add_element_to_master_list(&global_master_list,global_master_element); + if (inherit_number_of_scattering_events == 1 && global_master_list.num_elements == 1) { + printf("ERROR in Union_master with name %s. Inherit_number_of_scattering_events set to 1 for first Union_master component, but there is no preceeding Union_master component. Aborting.\n",NAME_CURRENT_COMP); + exit(1); + } + this_global_master_index = global_master_list.num_elements - 1; // Save the index for this master in global master list + + // Set the component index of the previous Union_master component if one exists + if (global_master_list.num_elements == 1) previous_master_index = 0; // no previous index + else previous_master_index = global_master_list.elements[global_master_list.num_elements-2].component_index; // -2 because of zero indexing and needing the previous index. + //printf("Assigned previous_master_index = %d \n",previous_master_index); + + // All volumes in the global_geometry_list is being check for activity using the number_of_activations input made for each geometry (default is 1) + // In addition it is counted how many volumes, mask volumes and masked volumes are active in this Union_master. + number_of_volumes = 1; // Starting with 1 as the surrounding vacuum is considered a volume + number_of_masks = 0; // Starting with 0 mask volumes + number_of_masked_volumes = 0; // Starting with 0 masked volumes + for (iterate=0;iterate 0) { + global_geometry_list.elements[iterate].active = 1; + global_geometry_list.elements[iterate].activation_counter--; + number_of_volumes++; + if (global_geometry_list.elements[iterate].Volume->geometry.is_mask_volume == 1) number_of_masks++; + if (global_geometry_list.elements[iterate].Volume->geometry.is_masked_volume == 1) number_of_masked_volumes++; + } else global_geometry_list.elements[iterate].active = 0; + } + //printf("Found number of volumes to be %d \n",number_of_volumes); + + // Allocation of global lists + geometry_component_index_list.num_elements = number_of_volumes; + geometry_component_index_list.elements = malloc( geometry_component_index_list.num_elements * sizeof(int)); + mask_volume_index_list.num_elements = number_of_masks; + if (number_of_masks >0) mask_volume_index_list.elements = malloc( number_of_masks * sizeof(int)); + mask_status_list.num_elements = number_of_masks; + if (number_of_masks >0) mask_status_list.elements = malloc( number_of_masks * sizeof(int)); + current_mask_intersect_list_status.num_elements = number_of_masked_volumes; + if (number_of_masked_volumes >0) current_mask_intersect_list_status.elements = malloc( number_of_masked_volumes * sizeof(int)); + + // Make a list of component index from each volume index + volume_index = 0; + for (iterate=0;iteratemy_a); + printf("number of processes [%d]: %d \n",iterate,global_material_list.elements[iterate].physics->number_of_processes); + } + + printf("---------------------------------------------------------------------\n"); + printf("global_geometry_list.num_elements: %d\n",global_material_list.num_elements); + for (iterate=0;iteratename); + if (global_geometry_list.elements[iterate].Volume->geometry.is_mask_volume == 0) { + printf("Volume.p_physics.is_vacuum [%d]: %d \n",iterate,global_geometry_list.elements[iterate].Volume->p_physics->is_vacuum); + printf("Volume.p_physics.my_absorption [%d]: %f \n",iterate,global_geometry_list.elements[iterate].Volume->p_physics->my_a); + printf("Volume.p_physics.number of processes [%d]: %d \n",iterate,global_geometry_list.elements[iterate].Volume->p_physics->number_of_processes); + } + printf("Volume.geometry.shape [%d]: %s \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.shape); + printf("Volume.geometry.center.x [%d]: %f \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.center.x); + printf("Volume.geometry.center.y [%d]: %f \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.center.y); + printf("Volume.geometry.center.z [%d]: %f \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.center.z); + printf("Volume.geometry.rotation_matrix[0] [%d]: [%f %f %f] \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[0][0],global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[0][1],global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[0][2]); + printf("Volume.geometry.rotation_matrix[1] [%d]: [%f %f %f] \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[1][0],global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[1][1],global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[1][2]); + printf("Volume.geometry.rotation_matrix[2] [%d]: [%f %f %f] \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[2][0],global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[2][1],global_geometry_list.elements[iterate].Volume->geometry.rotation_matrix[2][2]); + if (strcmp(global_geometry_list.elements[iterate].Volume->geometry.shape,"cylinder") == 0) { + printf("Volume.geometry.geometry_parameters.cyl_radius [%d]: %f \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.geometry_parameters.p_cylinder_storage->cyl_radius); + printf("Volume.geometry.geometry_parameters.height [%d]: %f \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.geometry_parameters.p_cylinder_storage->height); + } + printf("Volume.geometry.focus_data_array.elements[0].Aim [%d]: [%f %f %f] \n",iterate,global_geometry_list.elements[iterate].Volume->geometry.focus_data_array.elements[0].Aim.x,global_geometry_list.elements[iterate].Volume->geometry.focus_data_array.elements[0].Aim.y,global_geometry_list.elements[iterate].Volume->geometry.focus_data_array.elements[0].Aim.z); + } + } + printf("---------------------------------------------------------------------\n"); + printf("number_of_volumes = %d\n",number_of_volumes); + printf("number_of_masks = %d\n",number_of_masks); + printf("number_of_masked_volumes = %d\n",number_of_masked_volumes); + } + ); // End MPI_MASTER + + + // --- Initialization tasks independent of volume stucture ----------------------- + + // Store a pointer to the conditional list and update the current index in that structure + // If no tagging_conditionals were defined between this and the previous master, a dummy is allocated instead + if (global_tagging_conditional_list.num_elements == global_tagging_conditional_list.current_index + 1) { + tagging_conditional_list = &global_tagging_conditional_list.elements[global_tagging_conditional_list.current_index++].conditional_list; + free_tagging_conditioanl_list = 0; + } else { + tagging_conditional_list = malloc(sizeof(struct conditional_list_struct)); + tagging_conditional_list->num_elements = 0; + free_tagging_conditioanl_list = 1; + } + + // Find the maximum logger extend index so that the correct memory allocation can be performed later + // Here the loggers applied to all volumes are searched, later this result is compared to volume specific loggers and updated + max_conditional_extend_index = -1; + for (iterate=0;iteratelogger_extend_index > max_conditional_extend_index) { + max_conditional_extend_index = global_all_volume_logger_list.elements[iterate].logger->logger_extend_index; + } + } + + // The absolute rotation of this component is saved for use in initialization + rot_transpose(ROT_A_CURRENT_COMP,master_transposed_rotation_matrix); + + // Preceeding componnets can add coordinates and rotations to global_positions_to_transform and global_rotations_to_transform + // in order to have these transformed into the coordinate system of the next master compoent in the instrument file. + // Here these transformations are performed, and the lists are cleared so no transformed information is further altered by + // next master components. + + // Position transformation + for (iterate=0;iterate 0) { + global_positions_to_transform_list.num_elements = 0; + free(global_positions_to_transform_list.positions); + } + // Rotation transformation + for (iterate=0;iterate 0) { + global_rotations_to_transform_list.num_elements = 0; + free(global_rotations_to_transform_list.rotations); + } + + + // --- Definition of volumes and loading of appropriate data ----------------------- + + // The information stored in global lists is to be stored in one array of structures that is allocated here + Volumes = malloc(number_of_volumes * sizeof(struct Volume_struct*)); + scattered_flag = malloc(number_of_volumes*sizeof(int)); + scattered_flag_VP = (int**) malloc(number_of_volumes * sizeof(int*)); + number_of_processes_array = malloc(number_of_volumes*sizeof(int)); + + // The mcdisplay functions need access to the other geomtries, but can not use the Volumes struct because of order of definition. + // A separate list of pointers to the geometry structures is thus allocated + Geometries = malloc(number_of_volumes * sizeof(struct geometry_struct *)); + + // When activation counter is used to have several copies of one volume, it can become necessary to have soft copies of volumes + // Not all of these will necessarily be allocated or used. + Volume_copies = malloc(number_of_volumes * sizeof(struct Volume_struct *)); + Volume_copies_allocated.num_elements = 0; + + // The central structure is called a "Volume", it describes a region in space with certain scattering processes and absorption cross section + + // --- Volume 0 ------------------------------------------------------------------------------------------------ + // Volume 0 is the vacuum surrounding the experiment (infinite, everywhere) and its properties are hardcoded here + Volumes[0] = malloc(sizeof(struct Volume_struct)); + strcpy(Volumes[0]->name,"Surrounding vacuum"); + // Assign geometry + + // This information is meaningless for volume 0, and is never be acsessed in the logic. + Volumes[0]->geometry.priority_value = 0.0; + Volumes[0]->geometry.center.x = 0; + Volumes[0]->geometry.center.y = 0; + Volumes[0]->geometry.center.z = 0; + strcpy(Volumes[0]->geometry.shape,"vacuum"); + Volumes[0]->geometry.within_function = &r_within_surroundings; // Always returns 1 + // No physics struct allocated + Volumes[0]->p_physics = NULL; + number_of_processes_array[volume_index] = 0; + + // These are never used for volume 0, but by setting the length to 0 it is automatically skipped in many forloops without the need for an if statement + Volumes[0]->geometry.children.num_elements=0; + Volumes[0]->geometry.direct_children.num_elements=0; + Volumes[0]->geometry.destinations_list.num_elements=0; + Volumes[0]->geometry.reduced_destinations_list.num_elements=0; + + Volumes[0]->geometry.masked_by_list.num_elements = 0; + Volumes[0]->geometry.mask_list.num_elements = 0; + Volumes[0]->geometry.masked_by_mask_index_list.num_elements = 0; + Volumes[0]->geometry.mask_mode=0; + Volumes[0]->geometry.is_mask_volume=0; + Volumes[0]->geometry.is_masked_volume=0; + + // A pointer to the geometry structure + Geometries[0] = &Volumes[0]->geometry; + + // Logging initialization + Volumes[0]->loggers.num_elements = 0; + + + // --- Loop over user defined volumes ------------------------------------------------------------------------ + // Here the user defined volumes are loaded into the volume structure that is used in the ray-tracing + // algorithm. Not all user defined volumes are used, some could be used by a previous master, some + // could be used by the previous master, this one, and perhaps more. This is controlled by the + // activation counter input for geometries, and is here condensed to the active variable. + // Volumes that were used before + + + max_number_of_processes = 0; // The maximum number of processes in a volume is assumed 0 and updated during the following loop + + volume_index = 0; + mask_index_main = 0; + for (geometry_list_index=0;geometry_list_indexgeometry.geometry_parameters = Volumes[volume_index]->geometry.copy_geometry_parameters(&global_geometry_list.elements[geometry_list_index].Volume->geometry.geometry_parameters); + + } + + // This section identifies the different non isotropic processes in the current volume and give them appropriate transformation matrices + // Identify the number of non isotropic processes in a material (this code can be safely executed for the same material many times) + // A setting of -1 means no transformation necessary, other settings are assigned a unique identifier instead + non_isotropic_found = 0; + for (iterate=0;iteratep_physics->number_of_processes;iterate++) { + if (Volumes[volume_index]->p_physics->p_scattering_array[iterate].non_isotropic_rot_index != -1) { + Volumes[volume_index]->p_physics->p_scattering_array[iterate].non_isotropic_rot_index = non_isotropic_found; + non_isotropic_found++; + } + } + + Volumes[volume_index]->geometry.focus_array_indices.num_elements=0; + // For the non_isotropic volumes found, rotation matrices need to be allocated and calculated + if (non_isotropic_found > 0) { + // Allocation of rotation and transpose rotation matrices + if (Volumes[volume_index]->geometry.process_rot_allocated == 0) { + Volumes[volume_index]->geometry.process_rot_matrix_array = malloc(non_isotropic_found * sizeof(Rotation)); + Volumes[volume_index]->geometry.transpose_process_rot_matrix_array = malloc(non_isotropic_found * sizeof(Rotation)); + Volumes[volume_index]->geometry.process_rot_allocated = 1; + } + + // Calculation of the appropriate rotation matrices for transformation between Union_master and the process in a given volume. + non_isotropic_found = 0; + for (iterate=0;iteratep_physics->number_of_processes;iterate++) { + if (Volumes[volume_index]->p_physics->p_scattering_array[iterate].non_isotropic_rot_index != -1) { + // Transformation for each process / geometry combination + + // The focus vector is given in relation to the geometry and needs to be transformed to the process + // Work on temporary_focus_data_element which is added to the focus_data_array_at the end + temporary_focus_data = Volumes[volume_index]->geometry.focus_data_array.elements[0]; + + // Correct for process rotation + temporary_focus_data.Aim = rot_apply(Volumes[volume_index]->p_physics->p_scattering_array[iterate].rotation_matrix,temporary_focus_data.Aim); + + // Add element to focus_array_indices + // focus_array_indices refers to the correct element in focus_data_array for this volume/process combination + // focus_data_array[0] is the isotropic version in all cases, so the first non_isotropic goes to focus_data_array[1] + // and so forth. When a process is isotropic, this array is appended with a zero. + // The focus_array_indices maps process numbers to the correct focus_data_array index. + add_element_to_int_list(&Volumes[volume_index]->geometry.focus_array_indices,non_isotropic_found+1); + + // Add the new focus_data element to this volumes focus_data_array. + add_element_to_focus_data_array(&Volumes[volume_index]->geometry.focus_data_array,temporary_focus_data); + + // Quick error check to see the length is correct which indirectly confirms the indices are correct + if (Volumes[volume_index]->geometry.focus_data_array.num_elements != non_isotropic_found + 2) { + printf("ERROR, focus_data_array length for volume %s inconsistent with number of non isotropic processes found!\n",Volumes[volume_index]->name); + exit(1); + } + + // Create rotation matrix for this specific volume / process combination to transform from master coordinate system to the non-isotropics process coordinate system + // This is done by multipling the transpose master component roration matrix, the volume rotation, and then the process rotation matrix onto the velocity / wavevector + rot_mul(Volumes[volume_index]->geometry.rotation_matrix,master_transposed_rotation_matrix,temp_rotation_matrix); + rot_mul(Volumes[volume_index]->p_physics->p_scattering_array[iterate].rotation_matrix,temp_rotation_matrix,Volumes[volume_index]->geometry.process_rot_matrix_array[non_isotropic_found]); + + // Need to transpose as well to transform back to the master coordinate system + rot_transpose(Volumes[volume_index]->geometry.process_rot_matrix_array[non_isotropic_found],Volumes[volume_index]->geometry.transpose_process_rot_matrix_array[non_isotropic_found]); + + // Debug print + //print_rotation(Volumes[volume_index]->geometry.process_rot_matrix_array[non_isotropic_found],"Process rotation matrix"); + //print_rotation(Volumes[volume_index]->geometry.transpose_process_rot_matrix_array[non_isotropic_found],"Transpose process rotation matrix"); + + non_isotropic_found++; + } else { + // This process can use the standard isotropic focus_data_array which is indexed zero. + add_element_to_int_list(&Volumes[volume_index]->geometry.focus_array_indices,0); + } + } + } else { + // No non isotropic volumes found, focus_array_indices should just be a list of 0's of same length as the number of processes. + // In this way all processes use the isotropic focus_data structure + Volumes[volume_index]->geometry.focus_array_indices.elements = malloc(Volumes[volume_index]->p_physics->number_of_processes * sizeof(int)); + for (iterate=0;iteratep_physics->number_of_processes;iterate++) + Volumes[volume_index]->geometry.focus_array_indices.elements[iterate] = 0; + + } + //print_1d_int_list(Volumes[volume_index]->geometry.focus_array_indices,"focus_array_indices"); + + + // This component works in its local coordinate system, and thus all information from the input components should be transformed to its coordinate system. + // All the input components saved their absolute rotation/position into their Volume structure, and the absolute rotation of the current component is known. + // The next section finds the relative rotation and translation of all the volumes and the master component. + + // Transform the rotation matrices for each volume + rot_mul(ROT_A_CURRENT_COMP,Volumes[volume_index]->geometry.transpose_rotation_matrix,temp_rotation_matrix); + // Copy the result back to the volumes structure + rot_copy(Volumes[volume_index]->geometry.rotation_matrix,temp_rotation_matrix); + // Now update the transpose as well + rot_transpose(Volumes[volume_index]->geometry.rotation_matrix,temp_rotation_matrix); + rot_copy(Volumes[volume_index]->geometry.transpose_rotation_matrix,temp_rotation_matrix); + + // Transform the position for each volume + non_rotated_position.x = Volumes[volume_index]->geometry.center.x - POS_A_CURRENT_COMP.x; + non_rotated_position.y = Volumes[volume_index]->geometry.center.y - POS_A_CURRENT_COMP.y; + non_rotated_position.z = Volumes[volume_index]->geometry.center.z - POS_A_CURRENT_COMP.z; + + rot_transpose(ROT_A_CURRENT_COMP,temp_rotation_matrix); // REVIEW LINE + rotated_position = rot_apply(ROT_A_CURRENT_COMP,non_rotated_position); + + Volumes[volume_index]->geometry.center.x = rotated_position.x; + Volumes[volume_index]->geometry.center.y = rotated_position.y; + Volumes[volume_index]->geometry.center.z = rotated_position.z; + + // The focus_data information need to be updated as well + rot_mul(ROT_A_CURRENT_COMP,Volumes[volume_index]->geometry.focus_data_array.elements[0].absolute_rotation,temp_rotation_matrix); + // Copy the result back to the volumes structure + rot_copy(Volumes[volume_index]->geometry.focus_data_array.elements[0].absolute_rotation,temp_rotation_matrix); + + // Use same rotation on the aim vector of the isotropic focus_data element + Volumes[volume_index]->geometry.focus_data_array.elements[0].Aim = rot_apply(Volumes[volume_index]->geometry.rotation_matrix,Volumes[volume_index]->geometry.focus_data_array.elements[0].Aim); + + // To allocate enough memory to hold information on all processes, the maximum of these is updated if this volume has more + if (Volumes[volume_index]->p_physics->number_of_processes > max_number_of_processes) + max_number_of_processes = Volumes[volume_index]->p_physics->number_of_processes; + + // Allocate memory to scattered_flag_VP (holds statistics for scatterings in each process of the volume) + scattered_flag_VP[volume_index] = malloc(Volumes[volume_index]->p_physics->number_of_processes * sizeof(int)); + number_of_processes_array[volume_index] = Volumes[volume_index]->p_physics->number_of_processes; + + // Normalizing and error checking process interact fraction + number_of_process_interacts_set = 0; total_process_interact=0; + for (process_index=0;process_indexp_physics->number_of_processes;process_index++) { + if (Volumes[volume_index]->p_physics->p_scattering_array[process_index].process_p_interact != -1) { + number_of_process_interacts_set++; + total_process_interact += Volumes[volume_index]->p_physics->p_scattering_array[process_index].process_p_interact; + } else { + index_of_lacking_process = process_index; + } + } + + if (number_of_process_interacts_set == 0) Volumes[volume_index]->p_physics->interact_control = 0; + else Volumes[volume_index]->p_physics->interact_control = 1; + + // If all are set, check if they need renormalization so that the sum is one. + if (number_of_process_interacts_set == Volumes[volume_index]->p_physics->number_of_processes) { + if (total_process_interact > 1.001 || total_process_interact < 0.999) { + for (process_index=0;process_indexp_physics->number_of_processes;process_index++) { + Volumes[volume_index]->p_physics->p_scattering_array[process_index].process_p_interact = Volumes[volume_index]->p_physics->p_scattering_array[process_index].process_p_interact/total_process_interact; + } + } + } else if ( number_of_process_interacts_set != 0) { + if (number_of_process_interacts_set == Volumes[volume_index]->p_physics->number_of_processes - 1) {// If all but one is set, it is an easy fix + Volumes[volume_index]->p_physics->p_scattering_array[index_of_lacking_process].process_p_interact = 1 - total_process_interact; + if (total_process_interact >= 1) { + printf("ERROR, material %s has a total interact_fraction above 1 and a process without an interact_fraction. Either set all so they can be renormalized, or have a sum below 1, so that the last can have 1 - sum.\n",Volumes[volume_index]->p_physics->name); + exit(1); + } + } else { + printf("ERROR, material %s needs to have all, all minus one or none of its processes with an interact_fraction \n",Volumes[volume_index]->p_physics->name); + exit(1); + } + } + + // Some initialization can only happen after the rotation matrix relative to the master is known + // Such initialization is placed in the geometry component, and executed here through a function pointer + Volumes[volume_index]->geometry.initialize_from_main_function(&Volumes[volume_index]->geometry); + + // Add pointer to geometry to Geometries + Geometries[volume_index] = &Volumes[volume_index]->geometry; + + // Initialize mask intersect list + Volumes[volume_index]->geometry.mask_intersect_list.num_elements = 0; + + // Here the mask_list and masked_by_list for the volume is updated from component index values to volume indexes + for (iterate=0;iterategeometry.mask_list.num_elements;iterate++) + Volumes[volume_index]->geometry.mask_list.elements[iterate] = find_on_int_list(geometry_component_index_list,Volumes[volume_index]->geometry.mask_list.elements[iterate]); + + for (iterate=0;iterategeometry.masked_by_list.num_elements;iterate++) + Volumes[volume_index]->geometry.masked_by_list.elements[iterate] = find_on_int_list(geometry_component_index_list,Volumes[volume_index]->geometry.masked_by_list.elements[iterate]); + + // If the volume is a mask, its volume number is added to the mask_volume_index list so volume index can be converted to mask_index. + if (Volumes[volume_index]->geometry.is_mask_volume == 1) Volumes[volume_index]->geometry.mask_index = mask_index_main; + if (Volumes[volume_index]->geometry.is_mask_volume == 1) mask_volume_index_list.elements[mask_index_main++] = volume_index; + + // Check all loggers assosiated with this volume and update the max_conditional_extend_index if necessary + //printf("reached max_test for volume %d \n",volume_index); + for (iterate=0;iterateloggers.num_elements;iterate++) { + //printf("iterate = %d \n",iterate); + for (process_index=0;process_indexloggers.p_logger_volume[iterate].num_elements;process_index++) { + //printf("process_index = %d \n",process_index); + if (Volumes[volume_index]->loggers.p_logger_volume[iterate].p_logger_process[process_index] != NULL) { + if (Volumes[volume_index]->loggers.p_logger_volume[iterate].p_logger_process[process_index]->logger_extend_index > max_conditional_extend_index) + max_conditional_extend_index = Volumes[volume_index]->loggers.p_logger_volume[iterate].p_logger_process[process_index]->logger_extend_index; + } + } + } + //printf("did max_test for volume %d\n",volume_index); + + + } + } // Initialization for each volume done + + // ------- Initialization of ray-tracing algorithm ------------------------------------ + + my_trace = malloc(max_number_of_processes*sizeof(double)); + my_trace_fraction_control = malloc(max_number_of_processes*sizeof(double)); + + // All geometries can have 2 intersections currently, when this changes the maximum number of solutions need to be reported to the Union_master. + number_of_solutions = &number_of_solutions_static; + component_error_msg = 0; + + // Pre allocated memory for destination list search + pre_allocated1 = malloc(number_of_volumes * sizeof(int)); + pre_allocated2 = malloc(number_of_volumes * sizeof(int)); + pre_allocated3 = malloc(number_of_volumes * sizeof(int)); + + // Allocate memory for logger_conditional_extend_array used in the extend section of the master component, if it is needed. + if (max_conditional_extend_index > -1) { + logger_conditional_extend_array = malloc((max_conditional_extend_index + 1)*sizeof(int)); + } + + // In this function different lists of volume indecies are generated. They are the key to the speed of the component and central for the logic. + // They use simple set algebra to generate these lists for each volume: + // Children list for volume n: Indicies of volumes that are entirely within the set described by volume n + // Overlap list for volume n: Indicies of volume that contains some of the set described by volume n (excluding volume n) + // Intersect check list for volume n: Indicies of volumes to check for intersection if a ray originates from volume n (is generated from the children and overlap lists) + // Parents list for volume n: Indicies of volumes that contain the entire set of volume n + // Grandparents lists for volume n: Indicies of volumes that contain the entire set of at least one parent of volume n + // Destination list for volume n: Indicies of volumes that could be the destination volume when a ray leaves volume n + // The overlap, parents and grandparents lists are local variables in the function, and not in the main scope. + + generate_lists(Volumes, &starting_lists, number_of_volumes, list_verbal); + + // Generate "safe starting list", which contains all volumes that the ray may enter from other components + // These are all volumes without scattering or absorption + + // Updating mask lists from volume index to global_mask_indices + // Filling out the masked_by list that uses mask indices + for (volume_index=0;volume_indexgeometry.masked_by_mask_index_list.num_elements = Volumes[volume_index]->geometry.masked_by_list.num_elements; + Volumes[volume_index]->geometry.masked_by_mask_index_list.elements = malloc(Volumes[volume_index]->geometry.masked_by_mask_index_list.num_elements * sizeof(int)); + for (iterate=0;iterategeometry.masked_by_list.num_elements;iterate++) + Volumes[volume_index]->geometry.masked_by_mask_index_list.elements[iterate] = find_on_int_list(mask_volume_index_list,Volumes[volume_index]->geometry.masked_by_list.elements[iterate]); + } + + // Optimizing speed of the within_which_volume search algorithm + int volume_index_main; // REVIEW_LINE + /* + for (volume_index_main=0;volume_index_maingeometry.destinations_logic_list.elements[0] = 0; + } + */ + + // Checking for equal priorities in order to alert the user to a potential input error + for (volume_index_main=0;volume_index_maingeometry.priority_value == Volumes[volume_index]->geometry.priority_value && volume_index_main != volume_index) { + if (Volumes[volume_index_main]->geometry.is_mask_volume == 0 && Volumes[volume_index]->geometry.is_mask_volume == 0) { + // Priority of masks do not matter + printf("ERROR in Union_master with name %s. The volumes named %s and %s have the same priority. Change the priorities so the one present in case of overlap has highest priority.\n",NAME_CURRENT_COMP,Volumes[volume_index_main]->name,Volumes[volume_index]->name); + exit(1); + } + } + } + + + // Printing the generated lists for all volumes. + MPI_MASTER( + if (verbal) printf("\n ---- Overview of the lists generated for each volume ---- \n"); + + + printf("List overview for surrounding vacuum\n"); + for (volume_index_main=0;volume_index_maingeometry.is_mask_volume == 0 || + volume_index_main,Volumes[volume_index_main]->geometry.is_masked_volume == 0 || + volume_index_main,Volumes[volume_index_main]->geometry.is_exit_volume == 0) { + printf("List overview for %s with %s shape made of %s\n", + Volumes[volume_index_main]->name, + Volumes[volume_index_main]->geometry.shape, + Volumes[volume_index_main]->p_physics->name); + } else { + printf("List overview for %s with shape %s\n", + Volumes[volume_index_main]->name, + Volumes[volume_index_main]->geometry.shape); + } + } + } + + if (verbal) sprintf(string_output,"Children for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.children,string_output); + + if (verbal) sprintf(string_output,"Direct_children for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.direct_children,string_output); + + if (verbal) sprintf(string_output,"Intersect_check_list for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.intersect_check_list,string_output); + + if (verbal) sprintf(string_output,"Mask_intersect_list for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.mask_intersect_list,string_output); + + if (verbal) sprintf(string_output,"Destinations_list for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.destinations_list,string_output); + + //if (verbal) sprintf(string_output,"Destinations_logic_list for Volume %d",volume_index_main); + //if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.destinations_logic_list,string_output); + + if (verbal) sprintf(string_output,"Reduced_destinations_list for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.reduced_destinations_list,string_output); + + if (verbal) sprintf(string_output,"Next_volume_list for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.next_volume_list,string_output); + + if (verbal) { + if (volume_index_main != 0) + printf(" Is_vacuum for Volume %d = %d\n",volume_index_main,Volumes[volume_index_main]->p_physics->is_vacuum); + } + if (verbal) { + if (volume_index_main != 0) + printf(" is_mask_volume for Volume %d = %d\n",volume_index_main,Volumes[volume_index_main]->geometry.is_mask_volume); + } + if (verbal) { + if (volume_index_main != 0) + printf(" is_masked_volume for Volume %d = %d\n",volume_index_main,Volumes[volume_index_main]->geometry.is_masked_volume); + } + if (verbal) { + if (volume_index_main != 0) + printf(" is_exit_volume for Volume %d = %d\n",volume_index_main,Volumes[volume_index_main]->geometry.is_exit_volume); + } + + if (verbal) sprintf(string_output,"mask_list for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.mask_list,string_output); + + if (verbal) sprintf(string_output,"masked_by_list for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.masked_by_list,string_output); + + if (verbal) sprintf(string_output,"masked_by_mask_index_list for Volume %d",volume_index_main); + if (verbal) print_1d_int_list(Volumes[volume_index_main]->geometry.masked_by_mask_index_list,string_output); + + if (verbal) printf(" mask_mode for Volume %d = %d\n",volume_index_main,Volumes[volume_index_main]->geometry.mask_mode); + if (verbal) printf("\n"); + } + ) // End of MPI_MASTER + + + // Initializing intersection_time_table + // The intersection time table contains all information on intersection times for the current position/direction, and is cleared everytime a ray changes direction. + // Not all entries needs to be calculated, so there is a variable that keeps track of which intersection times have been calculated in order to avoid redoing that. + // When the intersections times are calculated for a volume, all future intersections are kept in the time table. + // Thus the memory allocation have to take into account how many intersections there can be with each volume, but it is currently set to 2, but can easily be changed. This may need to be reported by individual geometry components in the future. + + intersection_time_table.num_volumes = number_of_volumes; + + intersection_time_table.n_elements = (int*) malloc(intersection_time_table.num_volumes * sizeof(int)); + intersection_time_table.calculated = (int*) malloc(intersection_time_table.num_volumes * sizeof(int)); + intersection_time_table.intersection_times = (double**) malloc(intersection_time_table.num_volumes * sizeof(double)); + for (iterate = 0;iterate < intersection_time_table.num_volumes;iterate++){ + if (strcmp(Volumes[iterate]->geometry.shape, "mesh") == 0) { + intersection_time_table.n_elements[iterate] = (int) 100; // Meshes can have any number of intersections, here we allocate room for 100 + } else { + intersection_time_table.n_elements[iterate] = (int) 2; // number of intersection for all other geometries + } + if (iterate == 0) intersection_time_table.n_elements[iterate] = (int) 0; // number of intersection solutions + intersection_time_table.calculated[iterate] = (int) 0; // Initializing calculated logic + + if (iterate == 0) { + intersection_time_table.intersection_times[0] = NULL; + } + else { + intersection_time_table.intersection_times[iterate] = (double*) malloc(intersection_time_table.n_elements[iterate]*sizeof(double)); + for (solutions = 0;solutions < intersection_time_table.n_elements[iterate];solutions++) { + intersection_time_table.intersection_times[iterate][solutions] = -1.0; + } + } + } + + // If enabled, the tagging system tracks all different histories sampled by the program. + + // Initialize the tagging tree + // Allocate a list of host nodes with the same length as the number of volumes + + stop_creating_nodes = 0; stop_tagging_ray = 0; tagging_leaf_counter = 0; + if (enable_tagging) { + master_tagging_node_list.num_elements = number_of_volumes; + master_tagging_node_list.elements = malloc(master_tagging_node_list.num_elements * sizeof(struct tagging_tree_node_struct*)); + + // Initialize + for (volume_index=0;volume_index-1;log_index--) { + loggers_with_data_array.logger_pointers[log_index]->function_pointers.clear_temp(&loggers_with_data_array.logger_pointers[log_index]->data_union); + } + loggers_with_data_array.used_elements = 0; + } + + tagging_conditional_extend = 0; + for (iterate=0;iterategeometry.within_function(ray_position,&Volumes[mask_volume_index_list.elements[iterate]]->geometry) == 1) { + mask_status_list.elements[iterate] = 1; + } else { + mask_status_list.elements[iterate] = 0; + } + } + + #ifdef Union_trace_verbal_setting + print_1d_int_list(mask_status_list,"Initial mask status list"); + #endif + + // Now the initial current_volume can be found, which requires the up to date mask_status_list + current_volume = within_which_volume(ray_position,starting_lists.reduced_start_list,starting_lists.starting_destinations_list,Volumes,&mask_status_list,number_of_volumes,pre_allocated1,pre_allocated2,pre_allocated3); + + // Using the mask_status_list and the current volume, the current_mask_intersect_list_status can be made + // it contains the effective mask status of all volumes on the current volumes mask intersect list, which needs to be calculated, + // but only when the current volume or mask status changes, not under for example scattering inside the current volume + update_current_mask_intersect_status(¤t_mask_intersect_list_status, &mask_status_list, Volumes, ¤t_volume); + + #ifdef Union_trace_verbal_setting + printf("Starting current_volume = %d\n",current_volume); + #endif + + // Check if the ray appeared in an allowed starting volume, unless this check is disabled by the user for advanced cases + if (allow_inside_start == 0 && starting_lists.allowed_starting_volume_logic_list.elements[current_volume] == 0) { + printf("ERROR, ray ''teleported'' into Union component %s, if intentional, set allow_inside_start=1\n",NAME_CURRENT_COMP); + exit(1); + } + // Warn the user that rays have appeared inside a volume instead of outside as expected + if (starting_volume_warning == 0 && current_volume != 0) { + printf("WARNING: Ray started in volume ''%s'' rather than the surrounding vacuum in component %s. This warning is only shown once.\n",Volumes[current_volume]->name,NAME_CURRENT_COMP); + starting_volume_warning = 1; + } + + // Placing the new ray at the start of the tagging tree corresponding to current volume + // A history limit can be imposed so that no new nodes are created after this limit (may be necessary to fit in memory) + // Rays can still follow the nodes created before even when no additional nodes are created, but if a situation that + // requires a new node is encountered, stop_tagging_ray is set to 1, stopping further tagging and preventing the data + // for that ray to be used further. + if (enable_tagging) { + current_tagging_node = master_tagging_node_list.elements[current_volume]; + stop_tagging_ray = 0; // Allow this ray to be tracked + if (tagging_leaf_counter > history_limit) stop_creating_nodes = 1; + } + + #ifdef Union_trace_verbal_setting + if (enable_tagging) printf("current_tagging_node->intensity = %f\n",current_tagging_node->intensity); + if (enable_tagging) printf("current_tagging_node->number_of_rays = %d \n",current_tagging_node->number_of_rays); + #endif + + // Propagation loop including scattering + // This while loop continues until the ray leaves the ensamble of user defined volumes either through volume 0 + // or a dedicated exit volume. The loop is cancelled after a large number of iterations as a failsafe for errors. + // A single run of the loop will either be a propagation to the next volume along the path of the ray, or a + // scattering event at some point along the path of the ray in the current volume. + limit = 100000; + while (done == 0) { + limit--; + + #ifdef Union_trace_verbal_setting + printf("----------- START OF WHILE LOOP --------------------------------------\n"); + print_intersection_table(intersection_time_table); + printf("current_volume = %d \n",current_volume); + #endif + + // Calculating intersections with the necessary volumes. The relevant set of volumes depend on the current volume and the mask status array. + // First the volumes on the current volumes intersect list is checked, then its mask interset list. Before checking the volume itself, it is + // checked if any children of the current volume is intersected, in which case the intersection calculation with the current volume can be + // skipped. + + // Checking intersections for all volumes in the intersect list. + for (start=check=Volumes[current_volume]->geometry.intersect_check_list.elements;check-startgeometry.intersect_check_list.num_elements;check++) { + // This will leave check as a pointer to the intergers in the intersect_check_list and iccrement nicely + #ifdef Union_trace_verbal_setting + printf("Intersect_list = %d being checked \n",*check); + #endif + + if (intersection_time_table.calculated[*check] == 0) { + #ifdef Union_trace_verbal_setting + printf("running intersection for intersect_list with *check = %d \n",*check); + // if (trace_verbal) printf("r = (%f,%f,%f) v = (%f,%f,%f) \n",r[0],r[1],r[2],v[0],v[1],v[2]); + #endif + // Calculate intersections using intersect function imbedded in the relevant volume structure using parameters + // that are also imbedded in the structure. + geometry_output = Volumes[*check]->geometry.intersect_function(intersection_time_table.intersection_times[*check],number_of_solutions,r_start,v,&Volumes[*check]->geometry); + intersection_time_table.calculated[*check] = 1; + // if (trace_verbal) printf("succesfully calculated intersection times for volume *check = %d \n",*check); + } + } + + // Mask update: add additional loop for checking intersections with masked volumes depending on mask statuses + for (mask_iterate=0;mask_iterategeometry.mask_intersect_list.num_elements;mask_iterate++) { + if (current_mask_intersect_list_status.elements[mask_iterate] == 1) { // Only check if the mask is active + #ifdef Union_trace_verbal_setting + printf("Mask Intersect_list = %d being checked \n",Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]); + #endif + if (intersection_time_table.calculated[Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]] == 0) { + #ifdef Union_trace_verbal_setting + printf("running intersection for mask_intersect_list element = %d \n",Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]); + // printf("r = (%f,%f,%f) v = (%f,%f,%f) \n",r[0],r[1],r[2],v[0],v[1],v[2]); + #endif + // Calculate intersections using intersect function imbedded in the relevant volume structure using parameters + // that are also imbedded in the structure. + geometry_output = Volumes[Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]]->geometry.intersect_function(intersection_time_table.intersection_times[Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]],number_of_solutions,r_start,v,&Volumes[Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]]->geometry); + intersection_time_table.calculated[Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]] = 1; + // if (trace_verbal) printf("succesfully calculated intersection times for volume *check = %d \n",*check); + } + } + } + + // Checking if there are intersections with children of current volume, which means there is an intersection before current_volume, and thus can be skipped. But only if they have not been overwritten. In case current_volume is 0, there is no need to do this regardless. + if (current_volume != 0 && intersection_time_table.calculated[current_volume] == 0) { + #ifdef Union_trace_verbal_setting + printf("Checking if children of current_volume = %d have intersections. \n",current_volume); + #endif + intersection_with_children = 0; + //for (start = check = Volumes[current_volume]->geometry.direct_children.elements;check - start < Volumes[current_volume]->geometry.children.num_elements;check++) { // REVIEW LINE. Caused bug with masks. + for (start = check = Volumes[current_volume]->geometry.children.elements;check - start < Volumes[current_volume]->geometry.children.num_elements;check++) { + #ifdef Union_trace_verbal_setting + printf("Checking if child %d of current_volume = %d have intersections. \n",*check,current_volume); + #endif + // Only check the first of the two results in the intersection table, as they are ordered, and the second is of no interest + if (intersection_time_table.calculated[*check] == 1 && intersection_time_table.intersection_times[*check][0] > time_propagated_without_scattering) { + // If this child is masked, its mask status need to be 1 in order to be taken into account + if (Volumes[*check]->geometry.is_masked_volume == 0) { + #ifdef Union_trace_verbal_setting + printf("Found an child of current_volume with an intersection. Skips calculating for current_volume \n"); + #endif + intersection_with_children = 1; + break; // No need to check more, if there is just one it is not necessary to calculate intersection with current_volume yet + } else { + #ifdef Union_trace_verbal_setting + printf("Found an child of current_volume with an intersection, but it is masked. Check to see if it can skip calculating for current_volume \n"); + #endif + + if (Volumes[*check]->geometry.mask_mode == 2) { // ANY mask mode + tree_next_volume = 0; + for (mask_start=mask_check=Volumes[*check]->geometry.masked_by_mask_index_list.elements;mask_check-mask_startgeometry.masked_by_mask_index_list.num_elements;mask_check++) { + if (mask_status_list.elements[*mask_check] == 1) { + intersection_with_children = 1; + break; + } + } + } else { // ALL mask mode + intersection_with_children = 1; + for (mask_start=mask_check=Volumes[*check]->geometry.masked_by_mask_index_list.elements;mask_check-mask_startgeometry.masked_by_mask_index_list.num_elements;mask_check++) { + if (mask_status_list.elements[*mask_check] == 0) { + intersection_with_children = 0; + break; + } + } + } + #ifdef Union_trace_verbal_setting + printf("The mask status was 1, can actually skip intersection calculation for current volume \n"); + #endif + if (intersection_with_children == 1) break; + } + } + } + #ifdef Union_trace_verbal_setting + printf("intersection_with_children = %d \n",intersection_with_children); + #endif + if (intersection_with_children == 0) { + geometry_output = Volumes[current_volume]->geometry.intersect_function(intersection_time_table.intersection_times[current_volume],number_of_solutions,r_start,v,&Volumes[current_volume]->geometry); + intersection_time_table.calculated[current_volume] = 1; + } + } + + // At this point, intersection_time_table is updated with intersection times of all possible intersections. + #ifdef Union_trace_verbal_setting + print_intersection_table(intersection_time_table); + #endif + + // Next task is to find the next intersection time. The next intersection must be greater than the time_propagated_without_scattering (0 at start of loop) + // Loops are eqvialent to the 3 intersection calculation loops already completed + + // First loop for checking intersect_check_list + time_found = 0; + for (start=check=Volumes[current_volume]->geometry.intersect_check_list.elements;check-startgeometry.intersect_check_list.num_elements;check++) { + for (solution = 0;solution time_propagated_without_scattering && intersection_time < min_intersection_time) { + min_intersection_time = intersection_time;min_solution = solution;min_volume = *check; + } + } else { + if ((intersection_time = intersection_time_table.intersection_times[*check][solution]) > time_propagated_without_scattering) { + min_intersection_time = intersection_time;min_solution = solution;min_volume = *check; + time_found = 1; + } + } + } + } + + // Now check the masked_intersect_list, but only the ones that are currently active + for (mask_iterate=0;mask_iterategeometry.mask_intersect_list.num_elements;mask_iterate++) { + if (current_mask_intersect_list_status.elements[mask_iterate] == 1) { + for (solution = 0;solutiongeometry.mask_intersect_list.elements[mask_iterate]];solution++) { + if (time_found) { + if ((intersection_time = intersection_time_table.intersection_times[Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]][solution]) > time_propagated_without_scattering && intersection_time < min_intersection_time) { + min_intersection_time = intersection_time;min_solution = solution;min_volume = Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]; + } + } else { + if ((intersection_time = intersection_time_table.intersection_times[Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]][solution]) > time_propagated_without_scattering) { + min_intersection_time = intersection_time;min_solution = solution;min_volume = Volumes[current_volume]->geometry.mask_intersect_list.elements[mask_iterate]; + time_found = 1; + } + } + } + } + } + + // And check the current_volume + for (solution = 0;solution time_propagated_without_scattering && intersection_time < min_intersection_time) { + min_intersection_time = intersection_time;min_solution = solution;min_volume = current_volume; + } + } else { + if ((intersection_time = intersection_time_table.intersection_times[current_volume][solution]) > time_propagated_without_scattering) { + min_intersection_time = intersection_time;min_solution = solution;min_volume = current_volume; + time_found = 1; + } + } + } + + #ifdef Union_trace_verbal_setting + printf("min_intersection_time = %f \n",min_intersection_time); + printf("min_solution = %d \n",min_solution); + printf("min_volume = %d \n",min_volume); + printf("time_found = %d \n",time_found); + #endif + + // If a time is found, propagation continues, and it will be checked if a scattering occurs before the next intersection. + // If a time is not found, the ray must be leaving the ensamble of volumes and the loop will be concluded + if (time_found) { + time_to_boundery = min_intersection_time - time_propagated_without_scattering; // calculate the time remaining before the next intersection + scattering_event = 0; // Assume a scattering event will not occur + + // Check if a scattering event should occur + if (current_volume != 0) { // Volume 0 is always vacuum, and if this is the current volume, an event will not occur + if (Volumes[current_volume]->p_physics->number_of_processes == 0) { // If there are no processes, the volume could be vacuum or an absorber + if (Volumes[current_volume]->p_physics->is_vacuum == 0) + // This volume does not have physical processes but does have an absorption cross section, so the ray weight is reduced accordingly + p *= exp(-Volumes[current_volume]->p_physics->my_a*2200*time_to_boundery); + + + //#ifdef Union_trace_verbal_setting + //printf("name of material: %s \n",Volumes[current_volume]->name); + //printf("length to boundery = %f\n",length_to_boundery); + //printf("absorption cross section = %f\n",Volumes[current_volume]->p_physics->my_a); + //printf("chance to get through this length of absorber: %f \%\n",100*exp(-Volumes[current_volume]->p_physics->my_a*length_to_boundery)); + //#endif + + } else { + // Since there is a non-zero number of processes in this material, all the scattering cross section for these are calculated + my_sum = 0; k[0] = V2K*vx; k[1] = V2K*vy; k[2] = V2K*vz; p_my_trace = my_trace; wavevector = coords_set(k[0],k[1],k[2]); + for (process_start = process = Volumes[current_volume]->p_physics->p_scattering_array;process - process_start < Volumes[current_volume]->p_physics->number_of_processes;process++) { + + if (Volumes[current_volume]->p_physics->p_scattering_array[process - process_start].non_isotropic_rot_index != -1) { + // If the process is not isotropic, the wavevector is transformed into the local coordinate system of the process + wavevector_rotated = rot_apply(Volumes[current_volume]->geometry.process_rot_matrix_array[Volumes[current_volume]->p_physics->p_scattering_array[process - process_start].non_isotropic_rot_index],wavevector); + + coords_get(wavevector_rotated,&k_rotated[0],&k_rotated[1],&k_rotated[2]); + + } else { + k_rotated[0] = k[0]; k_rotated[1] = k[1]; k_rotated[2] = k[2]; + } + + // Find correct focus_data_array index for this volume/process + focus_data_index = Volumes[current_volume]->geometry.focus_array_indices.elements[process - process_start]; + + // Call the probability for scattering function assighed to this specific procress (the process pointer is updated in the for loop) + process->probability_for_scattering_function(p_my_trace,k_rotated,process->data_transfer,&Volumes[current_volume]->geometry.focus_data_array.elements[focus_data_index]); + + my_sum += *p_my_trace; + #ifdef Union_trace_verbal_setting + printf("my_trace = %f, my_sum = %f\n",*p_my_trace,my_sum); + #endif + p_my_trace++; // increment the pointer so that it point to the next element (max number of process in any material is allocated) + } + + #ifdef Union_trace_verbal_setting + printf("time_propagated_without_scattering = %f.\n",time_propagated_without_scattering); + printf("v_length = %f.\n",v_length); + #endif + + length_to_boundery = time_to_boundery * v_length; + + #ifdef Union_trace_verbal_setting + printf("exp(- length_to_boundery*my_sum) = %f. length_to_boundery = %f. my_sum = %f.\n",exp(-length_to_boundery*my_sum),length_to_boundery,my_sum); + #endif + + // Selecting if a scattering takes place, and what scattering process. + // This section have too many if statements, and unessecary calculations + // Could make seperate functions for p_interact on/off and interact_fraction on/off, + // and set function pointers to these in initialize, thus avoiding many unessecary if statements and calculations of x/x. + + my_sum_plus_abs = my_sum + Volumes[current_volume]->p_physics->my_a*(2200/v_length); + + if (my_sum < 1E-18) { + // The scattering cross section is basicly zero, no scattering should occur. + scattering_event = 0; + p *= exp(-length_to_boundery*my_sum_plus_abs); // Correct for absorption and the almost zero scattering + } else if (length_to_boundery < safty_distance2) { + // Too close to boundery to safly make another scattering, attenuate + p *= exp(-length_to_boundery*my_sum_plus_abs); // Attentuate the beam for the small distance + scattering_event = 0; + } else { + // The scattering cross section is above zero and the distance to the boundery is sufficient for a scattering + if (Volumes[current_volume]->geometry.geometry_p_interact != 0) { + // a fraction of the beam (geometry_p_interact) is forced to scatter + real_transmission_probability = exp(-length_to_boundery*my_sum_plus_abs); + mc_transmission_probability = (1.0 - Volumes[current_volume]->geometry.geometry_p_interact); + if ((scattering_event = (rand01() > mc_transmission_probability))) { + // Scattering event happens, this is the correction for the weight + p *= (1.0-real_transmission_probability)/(1.0-mc_transmission_probability); // Absorption simulated in weight + // Find length to next scattering knowing the ray will scatter. + length_to_scattering = safty_distance -log(1.0 - rand0max((1.0 - exp(-my_sum_plus_abs*(length_to_boundery-safty_distance2))))) / my_sum_plus_abs; + } else { + // Scattering event does not happen, this is the appropriate correction + p *= real_transmission_probability/mc_transmission_probability; // Absorption simulated in weight + } + } else { + // probability to scatter is the natural value + if(my_sum*length_to_boundery < 1e-6) { // Scattering probability very small, linear method is used as exponential is unreliable + if (length_to_boundery > safty_distance2) { + if (rand01() < exp(-length_to_boundery*my_sum_plus_abs)) { + // Scattering happens, use linear description to select scattering position + length_to_scattering = safty_distance + rand0max(length_to_boundery - safty_distance2); + // Weight factor necessary to correct for using the linear scattering position distribution + p *= length_to_boundery*my_sum*exp(-length_to_scattering*my_sum_plus_abs); // Absorption simulated in weight + scattering_event = 1; + } else scattering_event = 0; + } else { + // The distance is too short to reliably make a scattering event (in comparison to accuraccy of intersect functions) + p *= exp(-length_to_boundery*my_sum_plus_abs); // Attentuate the beam for the small distance + scattering_event = 0; + } + } else { + // Strong scattering, use exponential description to select scattering position between safetydistance and infinity + length_to_scattering = safty_distance -log(1 - rand01() ) / my_sum_plus_abs; + // Scattering happens if the scattering position is before the boundery (and safty distance) + if (length_to_scattering < length_to_boundery - safty_distance) scattering_event = 1; + else scattering_event = 0; + } + } + + if (scattering_event == 1) { + // Adjust weight for absorption + p *= my_sum/my_sum_plus_abs; + // Safety feature, alert in case of nonsense my results / negative absorption + if (my_sum/my_sum_plus_abs > 1.0) printf("WARNING: Absorption weight factor above 1! Should not happen! \n"); + // Select process + if (Volumes[current_volume]->p_physics->number_of_processes == 1) { // trivial case + // Select the only available process, which will always have index 0 + selected_process = 0; + } else { + if (Volumes[current_volume]->p_physics->interact_control == 1) { + // Interact_fraction is used to influence the choice of process in this material + mc_prop = rand01();culmative_probability=0;total_process_interact=1.0; + + // If any of the processes have probability 0, they are excluded from the selection + for (iterate = 0;iterate < Volumes[current_volume]->p_physics->number_of_processes;iterate++) { + if (my_trace[iterate] < 1E-18) { + // When this happens, the total force probability is corrected and the probability for this particular instance is set to 0 + total_process_interact -= Volumes[current_volume]->p_physics->p_scattering_array[iterate].process_p_interact; + my_trace_fraction_control[iterate] = 0; + // In cases where my_trace is not zero, the forced fraction is still used. + } else my_trace_fraction_control[iterate] = Volumes[current_volume]->p_physics->p_scattering_array[iterate].process_p_interact; + } + // Randomly select a process using the weights stored in my_trace_fraction_control divided by total_process_interact + for (iterate = 0;iterate < Volumes[current_volume]->p_physics->number_of_processes;iterate++) { + culmative_probability += my_trace_fraction_control[iterate]/total_process_interact; + if (culmative_probability > mc_prop) { + selected_process = iterate; + p *= (my_trace[iterate]/my_sum)*(total_process_interact/my_trace_fraction_control[iterate]); + break; + } + } + + } else { + // Select a process based on their relative attenuations factors + mc_prop = rand01();culmative_probability=0; + for (iterate = 0;iterate < Volumes[current_volume]->p_physics->number_of_processes;iterate++) { + culmative_probability += my_trace[iterate]/my_sum; + if (culmative_probability > mc_prop) { + selected_process = iterate; + break; + } + } + } + } + } // end of select process + } + + } + } // Done checking for scttering event and in case of scattering selecting a process + + if (scattering_event == 1) { + #ifdef Union_trace_verbal_setting + printf("SCATTERING EVENT \n"); + printf("current_volume = %d \n",current_volume); + printf("r = (%f,%f,%f) v = (%f,%f,%f) \n",r[0],r[1],r[2],v[0],v[1],v[2]); + // printf("did scatter: my_trace = %E = %f \n",my_trace[selected_process],my_trace[selected_process]); + #endif + + // Calculate the time to scattering + time_to_scattering = length_to_scattering/v_length; + + #ifdef Union_trace_verbal_setting + printf("time to scattering = %2.20f \n",time_to_scattering); + #endif + + //#ifdef Union_trace_verbal_setting + //printf("length to boundery = %f, length to scattering = %f \n",length_to_boundery,length_to_scattering); + //#endif + + //PROP_DT(time_to_scattering); // May be replace by version without gravity + + // Reduce the double book keeping done here // REVIEW LINE + x += time_to_scattering*vx; y += time_to_scattering*vy; z += time_to_scattering*vz; t += time_to_scattering; + r_start[0] = x; r_start[1] = y; r_start[2] = z; + r[0] = x; r[1] = y; r[2] = z; + ray_position = coords_set(x,y,z); + ray_velocity = coords_set(vx,vy,vz); + + // Safe check that should be unecessary. Used to fine tune how close to the edge of a volume a scattering event is allowed to take place (1E-14 m away currently). + if (Volumes[current_volume]->geometry.within_function(ray_position,&Volumes[current_volume]->geometry) == 0) { + printf("\nERROR, propagated out of current volume instead of to a point within!\n"); + printf("length_to_scattering_specified = %2.20f\n length propagated = %2.20f\n length_to_boundery = %2.20f \n current_position = (%lf,%lf,%lf) \n",length_to_scattering,sqrt(time_to_scattering*time_to_scattering*vx*vx+time_to_scattering*time_to_scattering*vy*vy+time_to_scattering*time_to_scattering*vz*vz),length_to_boundery,x,y,z); + + volume_index = within_which_volume(ray_position,starting_lists.reduced_start_list,starting_lists.starting_destinations_list,Volumes,&mask_status_list,number_of_volumes,pre_allocated1,pre_allocated2,pre_allocated3); + + printf("Debug info: Volumes[current_volume]->name = %s, but now inside volume number %d named %s.\n",Volumes[current_volume]->name,volume_index,Volumes[volume_index]->name); + printf("Ray absorbed \n"); + ABSORB; + } + + // Save information before scattering event needed in logging section + p_old = p; + k_old[0] = k[0];k_old[1] = k[1];k_old[2] = k[2]; + + // Find correct focus_data_array index for this volume/process + focus_data_index = Volumes[current_volume]->geometry.focus_array_indices.elements[selected_process]; + + // Rotation to local process coordinate system (for non isotropic processes) + if (Volumes[current_volume]->p_physics->p_scattering_array[selected_process].non_isotropic_rot_index != -1) { + ray_velocity_rotated = rot_apply(Volumes[current_volume]->geometry.process_rot_matrix_array[Volumes[current_volume]->p_physics->p_scattering_array[selected_process].non_isotropic_rot_index],ray_velocity); + } else { + ray_velocity_rotated = ray_velocity; + } + + // test_physics_scattering(double *k_final, double *k_initial, union data_transfer_union data_transfer) { + //k[0] = V2K*ray_velocity.x; k[1] = V2K*ray_velocity.y; k[2] = V2K*ray_velocity.z; + coords_get(coords_scalar_mult(ray_velocity_rotated,V2K),&k[0],&k[1],&k[2]); + + // I may replace a intial and final k with one instance that serves as both input and output + if (0 == Volumes[current_volume]->p_physics->p_scattering_array[selected_process].scattering_function(k_new,k,&p,Volumes[current_volume]->p_physics->p_scattering_array[selected_process].data_transfer,&Volumes[current_volume]->geometry.focus_data_array.elements[0])) { + /* + // PowderN and Single_crystal requires the option of absorbing the neutron, which is weird. If there is a scattering probability, there should be a new direction. + // It can arise from need to simplify sampling process and end up in cases where weight factor is 0, and the ray should be absorbed in these cases + printf("ERROR: Union_master: %s.Absorbed ray because scattering function returned 0 (error/absorb)\n",NAME_CURRENT_COMP); + component_error_msg++; + if (component_error_msg > 100) { + printf("To many errors encountered, exiting. \n"); + exit(1); + } + */ + ABSORB; + } + + // Update velocity using k + ray_velocity_rotated = coords_set(K2V*k_new[0],K2V*k_new[1],K2V*k_new[2]); + + // Transformation back to main coordinate system (maybe one should only do this when multiple scattering in that volume was over, especially if there is only one non isotropic frame) + if (Volumes[current_volume]->p_physics->p_scattering_array[selected_process].non_isotropic_rot_index != -1) { + ray_velocity_final = rot_apply(Volumes[current_volume]->geometry.transpose_process_rot_matrix_array[Volumes[current_volume]->p_physics->p_scattering_array[selected_process].non_isotropic_rot_index],ray_velocity_rotated); + } else { + ray_velocity_final = ray_velocity_rotated; + } + + // Write velocity to global variable (temp, only really necessary at final) + //vx = ray_velocity.x; vy = ray_velocity.y; vz = ray_velocity.z; + coords_get(ray_velocity_final,&vx,&vy,&vz); + + // Write velocity in array format as it is still used by intersect functions (temp, they need to be updated to ray_position / ray_velocity) + v[0] = vx; v[1] = vy; v[2] = vz; + v_length = sqrt(vx*vx+vy*vy+vz*vz); + k_new[0] = V2K*vx; k_new[1] = V2K*vy; k_new[2] = V2K*vz; + if (verbal) if (v_length < 1) printf("velocity set to less than 1\n"); + + #ifdef Union_trace_verbal_setting + printf("Running logger system for specific volumes \n"); + #endif + // Logging for detector components assosiated with this volume + for (log_index=0;log_indexloggers.num_elements;log_index++) { + //printf("logging time! Volume specific version. Volume name = %s \n",Volumes[current_volume]->name); + //printf(" log_index = %d \n",log_index); + if (Volumes[current_volume]->loggers.p_logger_volume[log_index].p_logger_process[selected_process] != NULL) { + // Technically the scattering function could edit k, the wavevector before the scattering, even though there would be little point to doing that. + // Could save a secure copy and pass that instead to be certain that no scattering process accidently tampers with the logging. + // printf(" the logging function pointer was not NULL \n"); + // PV (number of time scattered in this volume/process combination is not recorded. Need to expand scattering_flag to contain 2D, volume and process + + // This function calls a logger function which in turn stores some data among the passed, and possibly performs some basic data analysis + Volumes[current_volume]->loggers.p_logger_volume[log_index].p_logger_process[selected_process]->function_pointers.active_record_function(&ray_position,k_new,k_old,p,p_old,t,scattered_flag[current_volume],scattered_flag_VP[current_volume][selected_process],number_of_scattering_events,Volumes[current_volume]->loggers.p_logger_volume[log_index].p_logger_process[selected_process],&loggers_with_data_array); + // If the logging component have a conditional attatched, the collected data will be written to a temporary place + // At the end of the rays life, it will be checked if the condition is met + // if it is met, the temporary data is transfered to permanent, and temp is cleared. + // if it is not met, the temporary data is cleared. + } + } + + #ifdef Union_trace_verbal_setting + printf("Running logger system for all volumes \n"); + #endif + for (log_index=0;log_indexfunction_pointers.active_record_function(&ray_position,k_new,k_old,p,p_old,t,scattered_flag[current_volume],scattered_flag_VP[current_volume][selected_process],number_of_scattering_events,global_all_volume_logger_list.elements[log_index].logger,&loggers_with_data_array); + } + + + SCATTER; + ++number_of_scattering_events; + ++scattered_flag[current_volume]; + ++scattered_flag_VP[current_volume][selected_process]; + + + // Empty intersection time lists + clear_intersection_table(&intersection_time_table); + time_propagated_without_scattering = 0.0; + #ifdef Union_trace_verbal_setting + printf("SCATTERED SUCSSESFULLY \n"); + printf("r = (%f,%f,%f) v = (%f,%f,%f) \n",x,y,z,vx,vy,vz); + + if (enable_tagging && stop_tagging_ray == 0) printf("Before new process node: current_tagging_node->intensity = %f\n",current_tagging_node->intensity); + if (enable_tagging && stop_tagging_ray == 0) printf("Before new process node: current_tagging_node->number_of_rays = %d\n",current_tagging_node->number_of_rays); + #endif + + if (enable_tagging && stop_tagging_ray == 0) + current_tagging_node = goto_process_node(current_tagging_node,selected_process,Volumes[current_volume],&stop_tagging_ray,stop_creating_nodes); + + #ifdef Union_trace_verbal_setting + if (enable_tagging && stop_tagging_ray == 0) printf("After new process node: current_tagging_node->intensity = %f\n",current_tagging_node->intensity); + if (enable_tagging && stop_tagging_ray == 0) printf("After new process node: current_tagging_node->number_of_rays = %d\n",current_tagging_node->number_of_rays); + #endif + + } else { + #ifdef Union_trace_verbal_setting + printf("Propagate out of volume %d\n", current_volume); + printf("r = (%f,%f,%f) v = (%f,%f,%f) \n",x,y,z,vx,vy,vz); + #endif + // Propagate neutron to found minimum time + // PROP_DT(min_intersection_time - time_propagated_without_scattering); + //time_to_boundery = min_intersection_time - time_propagated_without_scattering; + x += time_to_boundery*vx; + y += time_to_boundery*vy; + z += time_to_boundery*vz; + t += time_to_boundery; + r[0] = x; r[1] = y; r[2] = z; + ray_position = coords_set(x,y,z); + ray_velocity = coords_set(vx,vy,vz); + + /* + // Absorption moved to before testing if scattering occurs + if (current_volume != 0) { + if (Volumes[current_volume]->p_physics->is_vacuum == 0) { + // Absorption is done explicitly when propagating out of a volume, but between all scattering events is done implicitly + + // Old version + //length_to_boundery = (min_intersection_time - time_propagated_without_scattering) * v_length; + //p *= exp(-Volumes[current_volume]->p_physics->my_a*(2200/v_length)*length_to_boundery); + + if (Volumes[current_volume]->p_physics->number_of_processes == 0) { + // Optimized version + //p *= exp(-Volumes[current_volume]->p_physics->my_a*2200*time_to_boundery); + + //printf("name of material: %s \n",Volumes[current_volume]->name); + //printf("length to boundery = %f\n",length_to_boundery); + //printf("absorption cross section = %f\n",Volumes[current_volume]->p_physics->my_a); + //printf("chance to get through this length of absorber: %f \%\n",100*exp(-Volumes[current_volume]->p_physics->my_a*length_to_boundery)); + } + } + } + */ + + time_propagated_without_scattering = min_intersection_time; + SCATTER; // For debugging purposes + #ifdef Union_trace_verbal_setting + printf("r = (%f,%f,%f) v = (%f,%f,%f) \n",x,y,z,vx,vy,vz); + #endif + // Remove this entry from the intersection_time_table + intersection_time_table.intersection_times[min_volume][min_solution] = -1; + + // Use destination list for corresponding intersection entry n,i) to find next volume + #ifdef Union_trace_verbal_setting + printf("PROPAGATION FROM VOLUME %d \n",current_volume); + #endif + if (min_volume == current_volume) { + #ifdef Union_trace_verbal_setting + printf("min_volume == current_volume \n"); + #endif + // List approach to finding the next volume. + // When the ray intersects the current volume, the next volume must be on the destination list of the current volume + // However, the reduced_destination_list can be investigated first, and depending on the results, the + // direct children of the volumes on the reduced destination list are investigated. + // In the worst case, all direct children are investigated, which is eqvivalent to the entire destination list. + // There is however a certain overhead in the logic needed to set up this tree, avoid duplicates of direct children, and so on. + // This method is only faster than just checking the destination list when there are direct children (nested structures), + // but in general the tree method scales better with complexity, and is only slightly slower in simple cases. + + if (Volumes[current_volume]->geometry.destinations_list.num_elements == 1) + tree_next_volume = Volumes[current_volume]->geometry.destinations_list.elements[0]; + else { + ray_position = coords_set(x,y,z); + ray_velocity = coords_set(vx,vy,vz); + tree_next_volume = within_which_volume(ray_position,Volumes[current_volume]->geometry.reduced_destinations_list,Volumes[current_volume]->geometry.destinations_list,Volumes,&mask_status_list,number_of_volumes,pre_allocated1,pre_allocated2,pre_allocated3); + } + + #ifdef Union_trace_verbal_setting + if (trace_verbal) printf("tree method moves from %d to %d\n",current_volume,tree_next_volume); + + if (enable_tagging && stop_tagging_ray == 0) printf("Before new tree volume node: current_tagging_node->intensity = %f\n",current_tagging_node->intensity); + if (enable_tagging && stop_tagging_ray == 0) printf("Before new tree volume node: current_tagging_node->number_of_rays = %d\n",current_tagging_node->number_of_rays); + #endif + + if (enable_tagging && stop_tagging_ray == 0) + current_tagging_node = goto_volume_node(current_tagging_node, current_volume, tree_next_volume, Volumes,&stop_tagging_ray,stop_creating_nodes); + + #ifdef Union_trace_verbal_setting + if (enable_tagging && stop_tagging_ray == 0) printf("After new tree volume node: current_tagging_node->intensity = %f\n",current_tagging_node->intensity); + if (enable_tagging && stop_tagging_ray == 0) printf("After new tree volume node: current_tagging_node->number_of_rays = %d\n",current_tagging_node->number_of_rays); + #endif + + // Set next volume to the solution found in the tree method + current_volume = tree_next_volume; + update_current_mask_intersect_status(¤t_mask_intersect_list_status, &mask_status_list, Volumes, ¤t_volume); + #ifdef Union_trace_verbal_setting + print_1d_int_list(current_mask_intersect_list_status,"Updated current_mask_intersect_list_status"); + #endif + + + // Debugging phase + /* + if (tree_next_volume == 0) { + volume_0_found=0; + for (start = check = Volumes[current_volume]->geometry.destinations_list.elements;check - start < Volumes[current_volume]->geometry.destinations_list.num_elements;check++) { + if (*check == 0) { + volume_0_found = 1; + } + } + if (volume_0_found==0) printf("ERROR The within_which_volume function returned 0 for a volume where volume 0 is not on the destination list!\n"); + } + */ + + } else { + #ifdef Union_trace_verbal_setting + if (enable_tagging && stop_tagging_ray == 0) printf("Before new intersection volume node: current_tagging_node->intensity = %f\n",current_tagging_node->intensity); + if (enable_tagging && stop_tagging_ray == 0) printf("Before new intersection volume node: current_tagging_node->number_of_rays = %d\n",current_tagging_node->number_of_rays); + #endif + + //if (enable_tagging) current_tagging_node = goto_volume_node(current_tagging_node, current_volume, min_volume, Volumes); + + + + // Mask update: If the min_volume is not a mask, things are simple, current_volume = min_volume. + // however, if it is a mask, the mask status will switch. + // if the mask status becomes one, the masked volumes inside may be the next volume (unless they are children of the mask) + // if the mask status becomes zero (and the current volume is masked by min_volume), the destinations list of the mask is searched + // if the mask status becomes zero (and the current volume is NOT masked by min volume), the current volume doesn't change + + + if (Volumes[min_volume]->geometry.is_mask_volume == 0) { + #ifdef Union_trace_verbal_setting + printf("Min volume is not a mask, next volume = min volume\n"); + #endif + if (enable_tagging && stop_tagging_ray == 0) current_tagging_node = goto_volume_node(current_tagging_node, current_volume, min_volume, Volumes,&stop_tagging_ray,stop_creating_nodes); + current_volume = min_volume; + //update_current_mask_intersect_status(¤t_mask_intersect_list_status, &mask_status_list, Volumes, ¤t_volume); + } else { + #ifdef Union_trace_verbal_setting + printf("Current volume is not a mask, complex decision tree\n"); + #endif + if (mask_status_list.elements[Volumes[min_volume]->geometry.mask_index] == 1) { + // We are leaving the mask, change the status + #ifdef Union_trace_verbal_setting + printf("mask status changed from 1 to 0 as a mask is left\n"); + #endif + mask_status_list.elements[Volumes[min_volume]->geometry.mask_index] = 0; + // If the current volume is masked by this mask, run within_which_volume using the masks destination list, otherwise keep the current volume + //if (on_int_list(Volumes[min_volume]->geometry.mask_list,current_volume)) + if (on_int_list(Volumes[current_volume]->geometry.masked_by_list,min_volume) == 1) { + #ifdef Union_trace_verbal_setting + printf("The current volume was masked by this mask, and my need updating\n"); + #endif + // In case of ANY mode, need to see if another mask on the masked_by list of the current volume is active, and if so, nothing happens + need_to_run_within_which_volume = 1; + if (Volumes[current_volume]->geometry.mask_mode == 2) { + for (mask_start=mask_check=Volumes[current_volume]->geometry.masked_by_mask_index_list.elements;mask_check-mask_startgeometry.masked_by_mask_index_list.num_elements;mask_check++) { + if (mask_status_list.elements[*mask_check] == 1) { + // Nothing needs to be done, the effective mask status of the current volume is still 1 + need_to_run_within_which_volume = 0; + break; + } + } + } + if (need_to_run_within_which_volume == 1) { + #ifdef Union_trace_verbal_setting + printf("The current volume was masked by this mask, and does need updating\n"); + #endif + if (Volumes[min_volume]->geometry.destinations_list.num_elements == 1) { + #ifdef Union_trace_verbal_setting + printf("Only one element in the destination tree of the mask\n"); + #endif + // If there is only one element on the destinations list (quite common) there is no reason to run within_which_volume + // Instead the mask status is calculated here + if (Volumes[Volumes[min_volume]->geometry.destinations_list.elements[0]]->geometry.is_masked_volume == 1) { + #ifdef Union_trace_verbal_setting + printf("The one element is however masked, so the mask status need to be calculated\n"); + #endif + // figure out the effective mask status of this volume + if (Volumes[Volumes[min_volume]->geometry.destinations_list.elements[0]]->geometry.mask_mode == 2) { // ANY mask mode + tree_next_volume = 0; + for (mask_start=mask_check=Volumes[Volumes[min_volume]->geometry.destinations_list.elements[0]]->geometry.masked_by_mask_index_list.elements;mask_check-mask_startgeometry.destinations_list.elements[0]]->geometry.masked_by_mask_index_list.num_elements;mask_check++) { + if (mask_status_list.elements[*mask_check] == 1) { + tree_next_volume = Volumes[min_volume]->geometry.destinations_list.elements[0]; + break; + } + } + } else { // ALL mask mode + tree_next_volume = Volumes[min_volume]->geometry.destinations_list.elements[0]; + for (mask_start=mask_check=Volumes[Volumes[min_volume]->geometry.destinations_list.elements[0]]->geometry.masked_by_mask_index_list.elements;mask_check-mask_startgeometry.destinations_list.elements[0]]->geometry.masked_by_mask_index_list.num_elements;mask_check++) { + if (mask_status_list.elements[*mask_check] == 0) { + tree_next_volume = 0; + break; + } + } + } + } else tree_next_volume = Volumes[min_volume]->geometry.destinations_list.elements[0]; + #ifdef Union_trace_verbal_setting + printf("The method found the next tree volume to be %d\n",tree_next_volume); + #endif + if (enable_tagging && stop_tagging_ray == 0) current_tagging_node = goto_volume_node(current_tagging_node, current_volume, tree_next_volume, Volumes,&stop_tagging_ray,stop_creating_nodes); + current_volume = tree_next_volume; + //update_current_mask_intersect_status(¤t_mask_intersect_list_status, &mask_status_list, Volumes, ¤t_volume); + } else { + #ifdef Union_trace_verbal_setting + printf("Many elements in destinations list, use within_which_volume\n"); + #endif + ray_position = coords_set(x,y,z); + ray_velocity = coords_set(vx,vy,vz); + tree_next_volume = within_which_volume(ray_position,Volumes[min_volume]->geometry.reduced_destinations_list,Volumes[min_volume]->geometry.destinations_list,Volumes,&mask_status_list,number_of_volumes,pre_allocated1,pre_allocated2,pre_allocated3); + // } Bug fixed on 27/11/2016 + if (enable_tagging && stop_tagging_ray == 0) current_tagging_node = goto_volume_node(current_tagging_node, current_volume, tree_next_volume, Volumes,&stop_tagging_ray,stop_creating_nodes); + current_volume = tree_next_volume; + #ifdef Union_trace_verbal_setting + printf("Set new new volume to %d\n",tree_next_volume); + #endif + } // Moved here on 27/11/2016, problem was two calls to current_tagging_node when only one element in destinations list + //update_current_mask_intersect_status(¤t_mask_intersect_list_status, &mask_status_list, Volumes, ¤t_volume); + } else { + #ifdef Union_trace_verbal_setting + printf("Did not need updating, as another mask was covering the volume\n"); + #endif + } + } + + } else { + // Here beccause the mask status of the mask that is intersected was 0, and it is thus switched to 1 + mask_status_list.elements[Volumes[min_volume]->geometry.mask_index] = 1; + // When entering a mask, the new highest priority volume may be one of the masked volumes, if not we keep the current volume + ray_position = coords_set(x,y,z); + ray_velocity = coords_set(vx,vy,vz); + //tree_next_volume = within_which_volume(ray_position,Volumes[min_volume]->geometry.mask_list,Volumes[min_volume]->geometry.destinations_list,Volumes,&mask_status_list,number_of_volumes,pre_allocated1,pre_allocated2,pre_allocated3); + // Bug found on the 2/9 2016, the destinations_list of a mask does not contain the volumes inside it. Could make an additional list for this. + // The temporary fix will be to use the mask list for both reduced destinations list and destinations list. + tree_next_volume = within_which_volume(ray_position,Volumes[min_volume]->geometry.mask_list,Volumes[min_volume]->geometry.mask_list,Volumes,&mask_status_list,number_of_volumes,pre_allocated1,pre_allocated2,pre_allocated3); + // if within_which_volume returns 0, no result was found (volume 0 can not be masked, so it could not be on the mask list) + if (tree_next_volume != 0) { + if (Volumes[tree_next_volume]->geometry.priority_value > Volumes[current_volume]->geometry.priority_value) { + // In case the current volume has a higher priority, nothing happens, otherwise change current volume + if (enable_tagging && stop_tagging_ray == 0) current_tagging_node = goto_volume_node(current_tagging_node, current_volume, tree_next_volume, Volumes,&stop_tagging_ray,stop_creating_nodes); + current_volume = tree_next_volume; + } + } + //update_current_mask_intersect_status(¤t_mask_intersect_list_status, &mask_status_list, Volumes, ¤t_volume); + } + } + + // Regardless of the outcome of the above code, either the mask status or current volume have changed, and thus a effective mask update is needed. + update_current_mask_intersect_status(¤t_mask_intersect_list_status, &mask_status_list, Volumes, ¤t_volume); + #ifdef Union_trace_verbal_setting + print_1d_int_list(mask_status_list,"Updated mask status list"); + print_1d_int_list(current_mask_intersect_list_status,"Updated current_mask_intersect_list_status"); + + if (enable_tagging) printf("After new intersection volume node: current_tagging_node->intensity = %f\n",current_tagging_node->intensity); + if (enable_tagging) printf("After new intersection volume node: current_tagging_node->number_of_rays = %d\n",current_tagging_node->number_of_rays); + #endif + + } + if (Volumes[current_volume]->geometry.is_exit_volume==1) { + done = 1; // Exit volumes allow the ray to escape the component + ray_sucseeded = 1; // Allows the ray to + /* + // Moved to after while loop to collect code + if (enable_tagging && stop_tagging_ray == 0) + add_statistics_to_node(current_tagging_node,&ray_position, &ray_velocity, &p, &tagging_leaf_counter); + + x += vx*1E-9; y += vy*1E-9; z += vz*1E-9; t += 1E-9; + */ + } + #ifdef Union_trace_verbal_setting + printf(" TO VOLUME %d \n",current_volume); + #endif + } + } else { // Here because a shortest time is not found + if (current_volume == 0) { + done = 1; + ray_sucseeded = 1; + + } else { // Check for errors (debugging phase) + if (error_msg == 0) { + component_error_msg++; + ray_sucseeded = 0; + done = 1; // stop the loop + printf("\n----------------------------------------------------------------------------------------------------\n"); + printf("Union_master %s: Somehow reached a situation with no intersection time found, but still inside volume %d instead of 0\n",NAME_CURRENT_COMP,current_volume); + for (volume_index = 1; volume_index < number_of_volumes; volume_index++) { + if (Volumes[volume_index]->geometry.within_function(ray_position,&Volumes[volume_index]->geometry) == 1) + printf("The ray is in volume %d\n",volume_index); + } + + print_1d_int_list(mask_status_list,"mask status list"); + for (iterate=0;iterate 100) { + printf("To many errors encountered, exiting. \n"); + exit(1); + } + } + } + /* + */ + if (limit == 0) {done = 1; ray_sucseeded = 0; printf("Reached limit on number of interactions, and discarded the neutron, was in volume %d\n",current_volume);ABSORB;} + #ifdef Union_trace_verbal_setting + printf("----------- END OF WHILE LOOP --------------------------------------\n"); + #endif + //printf("This ray did %d iterations in the while loop\n",1000-limit); + + } + // Could move all add_statistics and similar to this point, but need to filter for failed rays + if (ray_sucseeded == 1) { + + /* + // Instead of keeping global and specific loggers apart, lets do them in one loop using the loggers_with_data_array + // Only needed for conditionals + // Loop over global loggers, may or may not have a conditional, only necessary to do anything here when they do. + for (log_index=0;log_indexhas_conditional == 1) { + if (1 == conditional_return = global_all_volume_logger_list.elements[log_index].logger->conditional(scattered_flag,scattered_flag_VP,global_loggers.elements[log_index].conditional_data_union,k_final,current_volume,x,y,z)) { + global_all_volume_logger_list.elements[log_index].logger->function_pointers->temp_to_perm(global_loggers.elements[log_index].logger_data_union); + + } + if (global_all_volume_logger_list.elements[log_index].logger->conditional_extend_index != -1) + // The user can set a condtional_extend_index, so that the evaluation of this specific conditional can be taken easily from extend + conditional_extend_array.elements[global_all_volume_logger_list.elements[log_index].logger->conditional_extend_index] = conditional_return; + // Do not need to reset these to 0, as they will be manually set to 0 if not fulfilled + } + } + */ + #ifdef Union_trace_verbal_setting + printf("----------- logger loop --------------------------------------\n"); + #endif + // Loggers attatched to specific volumes need to be handled with care to avoid looping over all loggers for every ray + //for (log_index=0;log_index-1;log_index--) { + // Check all conditionals attatched to the current logger + this_logger = loggers_with_data_array.logger_pointers[log_index]; + conditional_status = 1; + for (iterate=0;iterateconditional_list.num_elements;iterate++) { + // Call this particular conditional. If it fails, report the status and break + //printf("checking conditional! \n"); + #ifdef Union_trace_verbal_setting + printf("Checking conditional number %d for logger named %s \n",iterate,loggers_with_data_array.logger_pointers[log_index]->name); + #endif + if (0 == this_logger->conditional_list.conditional_functions[iterate]( + this_logger->conditional_list.p_data_unions[iterate], + &ray_position,&ray_velocity,&p,&t,¤t_volume, + &number_of_scattering_events,scattered_flag,scattered_flag_VP)) { + conditional_status = 0; + break; + } + } + if (conditional_status == 1) { + // If a logger does not have a conditional, it will write directly to perm, and not even add it to the loggers_with_data_array, thus we know the temp_to_perm function needs to be called + // The input for the temp_to_perm function is a pointer to the logger_data_union for the appropriate logger + + if (loggers_with_data_array.logger_pointers[log_index]->function_pointers.select_t_to_p == 1) { + loggers_with_data_array.logger_pointers[log_index]->function_pointers.temp_to_perm(&loggers_with_data_array.logger_pointers[log_index]->data_union); + } + else if (loggers_with_data_array.logger_pointers[log_index]->function_pointers.select_t_to_p == 2) { + loggers_with_data_array.logger_pointers[log_index]->function_pointers.temp_to_perm_final_p(&loggers_with_data_array.logger_pointers[log_index]->data_union,p); + } + + // Luxury feature to be added later + if (loggers_with_data_array.logger_pointers[log_index]->logger_extend_index != -1) { + #ifdef Union_trace_verbal_setting + printf("Updating logger_conditional_extend_array[%d] to 1 (max length = %d)\n",loggers_with_data_array.logger_pointers[log_index]->logger_extend_index,max_conditional_extend_index); + #endif + // The user can set a condtional_extend_index, so that the evaluation of this specific conditional can be taken easily from extend + logger_conditional_extend_array[loggers_with_data_array.logger_pointers[log_index]->logger_extend_index] = 1; + // Are all reset to 0 for each new ray + #ifdef Union_trace_verbal_setting + printf("Updated extend index sucessfully\n"); + #endif + + //printf("extend_array[%d] = 1 \n",loggers_with_data_array.logger_pointers[log_index]->logger_extend_index); + } + + // Need to remove the current element from logger_with_data as it has been cleared and written to disk + // The remaining elements is passed on to the next Union_master as it may fulfill the conditional after that master + if (global_master_list.elements[global_master_list.num_elements-1].component_index != INDEX_CURRENT_COMP) { + // Move current logger pointer in logger_with_data to end position + loggers_with_data_array.logger_pointers[log_index] = loggers_with_data_array.logger_pointers[loggers_with_data_array.used_elements-1]; + // Decrease logger_with_data.used_elements with 1 + loggers_with_data_array.used_elements--; + + } + + + } else { + // Conditional status was 0, clear temp data for this logger, but only if this is the last Union_master, + // as the logger data can be written if one of the ray fulfills the conditional afer one of the + // subsequent Union masters. + // The job of cleaning was moved to the start of trace on 15/5/2017 + //if (global_master_list.elements[global_master_list.num_elements-1].component_index == INDEX_CURRENT_COMP) + // loggers_with_data_array.logger_pointers[log_index]->function_pointers.clear_temp(&loggers_with_data_array.logger_pointers[log_index]->data_union); + } + } + } + + if (enable_tagging && stop_tagging_ray == 0) { + conditional_status = 1; + for (iterate=0;iteratenum_elements;iterate++) { + // Call this particular conditional. If it fails, report the status and break + // Since a conditional can work for a logger and master_tagging at the same time, it may be evaluated twice + //printf("checking conditional! \n"); + #ifdef Union_trace_verbal_setting + printf("Checking tagging conditional number %d\n",iterate); + #endif + if (0 == tagging_conditional_list->conditional_functions[iterate]( + tagging_conditional_list->p_data_unions[iterate], + &ray_position,&ray_velocity,&p,&t,¤t_volume, + &number_of_scattering_events,scattered_flag,scattered_flag_VP)) { + conditional_status = 0; + break; + } + } + if (conditional_status == 1) { + tagging_conditional_extend = 1; + #ifdef Union_trace_verbal_setting + printf("Before adding statistics to node: current_tagging_nodbe->intensity = %f\n",current_tagging_node->intensity); + printf("Before adding statistics to node: current_tagging_node->number_of_rays = %d\n",current_tagging_node->number_of_rays); + #endif + + add_statistics_to_node(current_tagging_node,&ray_position, &ray_velocity, &p, &tagging_leaf_counter); + + #ifdef Union_trace_verbal_setting + printf("After adding statistics to node: current_tagging_node->intensity = %f\n",current_tagging_node->intensity); + printf("After adding statistics to node: current_tagging_node->number_of_rays = %d\n",current_tagging_node->number_of_rays); + #endif + } + } + + // Move the rays a nano meter away from the surface it left, in case activation counter > 1, this will prevent the ray from starting on a volume boundery + x += vx*1E-9; y += vy*1E-9; z += vz*1E-9; t += 1E-9; + + } else { + ABSORB; // Absorb rays that didn't exit correctly for whatever reason + // Could error log here + } + + // TEST + // Stores nubmer of scattering events in global master list so that another master with inherit_number_of_scattering_events can continue + global_master_list.elements[this_global_master_index].stored_number_of_scattering_events = number_of_scattering_events; + + +%} + + +SAVE +%{ +%} + + +FINALLY +%{ +// write out histories from tagging system if enabled +if (enable_tagging) { + if (finally_verbal) printf("Writing tagging tree to disk \n"); + if (finally_verbal) printf("Number of leafs = %d \n",tagging_leaf_counter); + // While writing the tagging tree to disk, all the leafs are deallocated + write_tagging_tree(&master_tagging_node_list, Volumes, tagging_leaf_counter, number_of_volumes); +} +if (master_tagging_node_list.num_elements > 0) free(master_tagging_node_list.elements); + + + + +if (finally_verbal) printf("Freeing variables which are always allocated \n"); +// free allocated arrays specific to this master union component +free(scattered_flag); +free(my_trace); +free(pre_allocated1); +free(pre_allocated2); +free(pre_allocated3); +free(number_of_processes_array); + +if (finally_verbal) printf("Freeing intersection_time_table \n"); +for (iterate = 1;iterate < intersection_time_table.num_volumes;iterate++){ + free(intersection_time_table.intersection_times[iterate]); +} + +free(intersection_time_table.n_elements); +free(intersection_time_table.calculated); +free(intersection_time_table.intersection_times); + +if (free_tagging_conditioanl_list == 1) free(tagging_conditional_list); + +/* +if (tagging_conditional_list->num_elements > 0) { + free(tagging_conditional_list.conditional_functions); + free(tagging_conditional_list.p_data_unions); +} +*/ + +if (finally_verbal) printf("Freeing lists for individual volumes \n"); +for (volume_index=0;volume_indexgeometry.intersect_check_list.num_elements > 0) free(Volumes[volume_index]->geometry.intersect_check_list.elements); + if (Volumes[volume_index]->geometry.destinations_list.num_elements > 0) free(Volumes[volume_index]->geometry.destinations_list.elements); + if (Volumes[volume_index]->geometry.reduced_destinations_list.num_elements > 0) free(Volumes[volume_index]->geometry.reduced_destinations_list.elements); + if (Volumes[volume_index]->geometry.children.num_elements > 0) free(Volumes[volume_index]->geometry.children.elements); + if (Volumes[volume_index]->geometry.direct_children.num_elements > 0) free(Volumes[volume_index]->geometry.direct_children.elements); + if (Volumes[volume_index]->geometry.masked_by_list.num_elements > 0) free(Volumes[volume_index]->geometry.masked_by_list.elements); + if (Volumes[volume_index]->geometry.masked_by_mask_index_list.num_elements > 0) free(Volumes[volume_index]->geometry.masked_by_mask_index_list.elements); + if (Volumes[volume_index]->geometry.mask_list.num_elements > 0) free(Volumes[volume_index]->geometry.mask_list.elements); + if (Volumes[volume_index]->geometry.mask_intersect_list.num_elements > 0) free(Volumes[volume_index]->geometry.mask_intersect_list.elements); + if (enable_tagging) + if (Volumes[volume_index]->geometry.next_volume_list.num_elements > 0) free(Volumes[volume_index]->geometry.next_volume_list.elements); + // Add dealocation of logging + + + if (volume_index > 0) { // Volume 0 does not have physical properties allocated + free(scattered_flag_VP[volume_index]); + if (Volumes[volume_index]->geometry.process_rot_allocated == 1) { + free(Volumes[volume_index]->geometry.process_rot_matrix_array); + free(Volumes[volume_index]->geometry.transpose_process_rot_matrix_array); + Volumes[volume_index]->geometry.process_rot_allocated = 0; + } + if (on_int_list(Volume_copies_allocated,volume_index)) + // This is a local copy of a volume, deallocate that local copy (all the allocated memory attachted to it was just deallocated, so this should not leave any leaks) + free(Volumes[volume_index]); + else + // Only free p_physics for vacuum volumes for the original at the end (there is a p_physics allocated for each vacuum volume) + if (Volumes[volume_index]->p_physics->is_vacuum == 1 ) free(Volumes[volume_index]->p_physics); + } + + if (Volumes[volume_index]->loggers.num_elements >0) { + for (iterate=0;iterateloggers.num_elements;iterate++) { + free(Volumes[volume_index]->loggers.p_logger_volume[iterate].p_logger_process); + } + free(Volumes[volume_index]->loggers.p_logger_volume); + } + +} + +free(scattered_flag_VP); + +if (finally_verbal) printf("Freeing starting lists \n"); +if (starting_lists.allowed_starting_volume_logic_list.num_elements > 0) free(starting_lists.allowed_starting_volume_logic_list.elements); +if (starting_lists.reduced_start_list.num_elements > 0) free(starting_lists.reduced_start_list.elements); +if (starting_lists.start_logic_list.num_elements > 0) free(starting_lists.start_logic_list.elements); + +if (finally_verbal) printf("Freeing mask lists \n"); +if (mask_status_list.num_elements>0) free(mask_status_list.elements); +if (current_mask_intersect_list_status.num_elements>0) free(current_mask_intersect_list_status.elements); +if (mask_volume_index_list.num_elements>0) free(mask_volume_index_list.elements); + +if (finally_verbal) printf("Freeing component index list \n"); +if (geometry_component_index_list.num_elements>0) free(geometry_component_index_list.elements); + + +if (finally_verbal) printf("Freeing Volumes \n"); +free(Volumes); + +// Free global allocated arrays if this is the last master union component in the instrument file + +if (global_master_list.elements[global_master_list.num_elements-1].component_index == INDEX_CURRENT_COMP) { + if (finally_verbal) printf("Freeing global arrays because this is the last Union master component\n"); + + // Freeing lists allocated in Union_initialization + //#ifdef PROCESS_DETECTOR + if (finally_verbal) printf("Freeing global process list \n"); + if (global_process_list.num_elements > 0) free(global_process_list.elements); + //#endif + + //#ifdef MATERIAL_DETECTOR + if (finally_verbal) printf("Freeing global material list \n"); + if (global_material_list.num_elements > 0) free(global_material_list.elements); + //#endif + + //#ifdef ANY_GEOMETRY_DETECTOR_DECLARE + if (finally_verbal) printf("Freeing global geometry list \n"); + if (global_geometry_list.num_elements > 0) free(global_geometry_list.elements); + //#endif + + //#ifdef MASTER_DETECTOR + if (finally_verbal) printf("Freeing global master list \n"); + if (global_master_list.num_elements > 0) free(global_master_list.elements); + //#endif + + + //#ifdef UNION_LOGGER_DECLARE + if (finally_verbal) printf("Freeing global logger lists \n"); + for (iterate=0;iterateconditional_list.num_elements > 0) { + free(global_all_volume_logger_list.elements[iterate].logger->conditional_list.conditional_functions); + free(global_all_volume_logger_list.elements[iterate].logger->conditional_list.p_data_unions); + } + } + if (global_all_volume_logger_list.num_elements > 0) free(global_all_volume_logger_list.elements); + + + for (iterate=0;iterateconditional_list.num_elements > 0) { + free(global_specific_volumes_logger_list.elements[iterate].logger->conditional_list.conditional_functions); + free(global_specific_volumes_logger_list.elements[iterate].logger->conditional_list.p_data_unions); + } + } + if (global_specific_volumes_logger_list.num_elements > 0) free(global_specific_volumes_logger_list.elements); + //#endif + + for (iterate=0;iterate 0) { + free(global_tagging_conditional_list.elements[iterate].conditional_list.conditional_functions); + free(global_tagging_conditional_list.elements[iterate].conditional_list.p_data_unions); + } + } + if (global_tagging_conditional_list.num_elements>0) free(global_tagging_conditional_list.elements); + + /* + if (finally_verbal) printf("Freeing global tagging conditional list \n"); + if (global_tagging_conditional_list.num_elements > 0) free(global_tagging_conditional_list.elements); + */ +} + +%} + + +MCDISPLAY +%{ + // mcdisplay is handled in the component files for each geometry and called here. The line function is only available in this section, and not through functions, + // so all the lines to be drawn for each volume are collected in a structure that is then drawn here. + magnify("xyz"); + struct lines_to_draw lines_to_draw_master; + for (volume_index = 1; volume_index < number_of_volumes; volume_index++) { + if (Volumes[volume_index]->geometry.visualization_on == 1) { + lines_to_draw_master.number_of_lines = 0; + + Volumes[volume_index]->geometry.mcdisplay_function(&lines_to_draw_master,volume_index,Geometries,number_of_volumes); + + for (iterate = 0;iterate0) free(lines_to_draw_master.lines); + } + } + +%} + +END diff --git a/mcstasscript/tests/dummy_mcstas/bin/mcdisplay-webgl b/mcstasscript/tests/dummy_mcstas/bin/mcdisplay-webgl new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/tests/dummy_mcstas/contrib/test_for_empty.txt b/mcstasscript/tests/dummy_mcstas/contrib/test_for_empty.txt new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/tests/dummy_mcstas/misc/test_for_ignore.com b/mcstasscript/tests/dummy_mcstas/misc/test_for_ignore.com new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/tests/dummy_mcstas/misc/test_for_ignore_weird.comp.backup b/mcstasscript/tests/dummy_mcstas/misc/test_for_ignore_weird.comp.backup new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/tests/dummy_mcstas/misc/test_for_reading.comp b/mcstasscript/tests/dummy_mcstas/misc/test_for_reading.comp new file mode 100644 index 00000000..e9dd6c7a --- /dev/null +++ b/mcstasscript/tests/dummy_mcstas/misc/test_for_reading.comp @@ -0,0 +1,187 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Component: Source_simple +* +* %I +* Written by: Kim Lefmann +* Date: October 30, 1997 +* Modified by: KL, October 4, 2001 +* Modified by: Emmanuel Farhi, October 30, 2001. Serious bug corrected. +* Origin: Risoe +* +* A circular neutron source with flat energy spectrum and arbitrary flux +* +* %D +* The routine is a circular neutron source, which aims at a square target +* centered at the beam (in order to improve MC-acceptance rate). The angular +* divergence is then given by the dimensions of the target. +* The neutron energy is uniformly distributed between lambda0-dlambda and +* lambda0+dlambda or between E0-dE and E0+dE. +* The flux unit is specified in n/cm2/s/st/energy unit (meV or Angs). +* +* This component replaces Source_flat, Source_flat_lambda, +* Source_flux and Source_flux_lambda. +* +* Example: Source_simple(radius=0.1, dist=2, focus_xw=.1, focus_yh=.1, E0=14, dE=2) +* +* %P +* radius: [m] Radius of circle in (x,y,0) plane where neutrons are generated. +* yheight: [m] Height of rectangle in (x,y,0) plane where neutrons are generated. +* xwidth: [m] Width of rectangle in (x,y,0) plane where neutrons are generated. +* target_index: [1] relative index of component to focus at, e.g. next is +1 this is used to compute 'dist' automatically. +* dist: [m] Distance to target along z axis. +* focus_xw: [m] Width of target +* focus_yh: [m] Height of target +* E0: [meV] Mean energy of neutrons. +* dE: [meV] Energy half spread of neutrons (flat or gaussian sigma). +* lambda0: [AA] Mean wavelength of neutrons. +* dlambda: [AA] Wavelength half spread of neutrons. +* flux: [1/(s*cm**2*st*energy unit)] flux per energy unit, Angs or meV if flux=0, the source emits 1 in 4*PI whole space. +* gauss: [1] Gaussian (1) or Flat (0) energy/wavelength distribution +* +* %E +*******************************************************************************/ + +DEFINE COMPONENT Source_simple +DEFINITION PARAMETERS () +SETTING PARAMETERS (radius=0.1, yheight=0, xwidth=0, +dist=0, focus_xw=.045, focus_yh=.12, +E0=0, dE=0, lambda0=0, dlambda=0, +flux=1, gauss=0, int target_index=+1) +OUTPUT PARAMETERS (pmul,square,srcArea) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ +DECLARE +%{ +double pmul, srcArea; +int square; +double tx,ty,tz; +%} +INITIALIZE +%{ +square = 0; +/* Determine source area */ +if (radius && !yheight && !xwidth ) { + square = 0; + srcArea = PI*radius*radius; + } else if(yheight && xwidth) { + square = 1; + srcArea = xwidth * yheight; + } + + if (flux) { + pmul=flux*1e4*srcArea/mcget_ncount(); + if (dlambda) + pmul *= 2*dlambda; + else if (dE) + pmul *= 2*dE; + } else { + gauss = 0; + pmul=1.0/(mcget_ncount()*4*PI); + } + + if (target_index && !dist) + { + Coords ToTarget; + ToTarget = coords_sub(POS_A_COMP_INDEX(INDEX_CURRENT_COMP+target_index),POS_A_CURRENT_COMP); + ToTarget = rot_apply(ROT_A_CURRENT_COMP, ToTarget); + coords_get(ToTarget, &tx, &ty, &tz); + dist=sqrt(tx*tx+ty*ty+tz*tz); + } else if (dist) { + tx = 0; + ty = 0; + tz = dist; + } + + + if (srcArea <= 0) { + printf("Source_simple: %s: Source area is <= 0 !\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + if (dist <= 0 || focus_xw <= 0 || focus_yh <= 0) { + printf("Source_simple: %s: Target area unmeaningful! (negative dist / focus_xw / focus_yh)\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + + if ((!lambda0 && !E0 && !dE && !dlambda)) { + printf("Source_simple: %s: You must specify either a wavelength or energy range!\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + if ((!lambda0 && !dlambda && (E0 <= 0 || dE < 0 || E0-dE <= 0)) + || (!E0 && !dE && (lambda0 <= 0 || dlambda < 0 || lambda0-dlambda <= 0))) { + printf("Source_simple: %s: Unmeaningful definition of wavelength or energy range!\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } +%} +TRACE +%{ + double chi,E,lambda,v,r, xf, yf, rf, dx, dy, pdir; + + t=0; + z=0; + + if (square == 1) { + x = xwidth * (rand01() - 0.5); + y = yheight * (rand01() - 0.5); + } else { + chi=2*PI*rand01(); /* Choose point on source */ + r=sqrt(rand01())*radius; /* with uniform distribution. */ + x=r*cos(chi); + y=r*sin(chi); + } + randvec_target_rect_real(&xf, &yf, &rf, &pdir, + tx, ty, tz, focus_xw, focus_yh, ROT_A_CURRENT_COMP, x, y, z, 2); + + dx = xf-x; + dy = yf-y; + rf = sqrt(dx*dx+dy*dy+rf*rf); + + p = pdir*pmul; + + if(lambda0==0) { + if (!gauss) { + E=E0+dE*randpm1(); /* Choose from uniform distribution */ + } else { + E=E0+randnorm()*dE; + } + v=sqrt(E)*SE2V; + } else { + if (!gauss) { + lambda=lambda0+dlambda*randpm1(); + } else { + lambda=lambda0+randnorm()*dlambda; + } + v = K2V*(2*PI/lambda); + } + + vz=v*dist/rf; + vy=v*dy/rf; + vx=v*dx/rf; +%} + +MCDISPLAY +%{ + if (square == 1) { + + rectangle("xy",0,0,0,xwidth,yheight); + } else { + + circle("xy",0,0,0,radius); + } + if (dist) { + dashed_line(0,0,0, -focus_xw/2+tx,-focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, focus_xw/2+tx,-focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, focus_xw/2+tx, focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, -focus_xw/2+tx, focus_yh/2+ty,tz, 4); + } +%} + +END diff --git a/mcstasscript/tests/dummy_mcstas/misc/test_for_skipped_sections.comp b/mcstasscript/tests/dummy_mcstas/misc/test_for_skipped_sections.comp new file mode 100644 index 00000000..249b8d59 --- /dev/null +++ b/mcstasscript/tests/dummy_mcstas/misc/test_for_skipped_sections.comp @@ -0,0 +1,184 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Component: Source_simple +* +* %I +* Written by: Kim Lefmann +* Date: October 30, 1997 +* Modified by: KL, October 4, 2001 +* Modified by: Emmanuel Farhi, October 30, 2001. Serious bug corrected. +* Origin: Risoe +* +* A circular neutron source with flat energy spectrum and arbitrary flux +* +* %D +* The routine is a circular neutron source, which aims at a square target +* centered at the beam (in order to improve MC-acceptance rate). The angular +* divergence is then given by the dimensions of the target. +* The neutron energy is uniformly distributed between lambda0-dlambda and +* lambda0+dlambda or between E0-dE and E0+dE. +* The flux unit is specified in n/cm2/s/st/energy unit (meV or Angs). +* +* This component replaces Source_flat, Source_flat_lambda, +* Source_flux and Source_flux_lambda. +* +* Example: Source_simple(radius=0.1, dist=2, focus_xw=.1, focus_yh=.1, E0=14, dE=2) +* +* %P +* radius: [m] Radius of circle in (x,y,0) plane where neutrons are generated. +* yheight: [m] Height of rectangle in (x,y,0) plane where neutrons are generated. +* xwidth: [m] Width of rectangle in (x,y,0) plane where neutrons are generated. +* target_index: [1] relative index of component to focus at, e.g. next is +1 this is used to compute 'dist' automatically. +* dist: [m] Distance to target along z axis. +* focus_xw: [m] Width of target +* focus_yh: [m] Height of target +* E0: [meV] Mean energy of neutrons. +* dE: [meV] Energy half spread of neutrons (flat or gaussian sigma). +* lambda0: [AA] Mean wavelength of neutrons. +* dlambda: [AA] Wavelength half spread of neutrons. +* flux: [1/(s*cm**2*st*energy unit)] flux per energy unit, Angs or meV if flux=0, the source emits 1 in 4*PI whole space. +* gauss: [1] Gaussian (1) or Flat (0) energy/wavelength distribution +* packing_factor: [1] Comment to be found and read +* +* %E +*******************************************************************************/ + +DEFINE COMPONENT Source_simple +SETTING PARAMETERS(string cfg = "", packing_factor=1, interact_fraction=-1, string init="init") +DEPENDENCY "-Wl,-rpath,CMD(ncrystal-config --show libdir) -Wl,CMD(ncrystal-config --show libpath) -ICMD(ncrystal-config --show includedir)" + +DECLARE +%{ +double pmul, srcArea; +int square; +double tx,ty,tz; +%} +INITIALIZE +%{ +square = 0; +/* Determine source area */ +if (radius && !yheight && !xwidth ) { + square = 0; + srcArea = PI*radius*radius; + } else if(yheight && xwidth) { + square = 1; + srcArea = xwidth * yheight; + } + + if (flux) { + pmul=flux*1e4*srcArea/mcget_ncount(); + if (dlambda) + pmul *= 2*dlambda; + else if (dE) + pmul *= 2*dE; + } else { + gauss = 0; + pmul=1.0/(mcget_ncount()*4*PI); + } + + if (target_index && !dist) + { + Coords ToTarget; + ToTarget = coords_sub(POS_A_COMP_INDEX(INDEX_CURRENT_COMP+target_index),POS_A_CURRENT_COMP); + ToTarget = rot_apply(ROT_A_CURRENT_COMP, ToTarget); + coords_get(ToTarget, &tx, &ty, &tz); + dist=sqrt(tx*tx+ty*ty+tz*tz); + } else if (dist) { + tx = 0; + ty = 0; + tz = dist; + } + + + if (srcArea <= 0) { + printf("Source_simple: %s: Source area is <= 0 !\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + if (dist <= 0 || focus_xw <= 0 || focus_yh <= 0) { + printf("Source_simple: %s: Target area unmeaningful! (negative dist / focus_xw / focus_yh)\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + + if ((!lambda0 && !E0 && !dE && !dlambda)) { + printf("Source_simple: %s: You must specify either a wavelength or energy range!\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + if ((!lambda0 && !dlambda && (E0 <= 0 || dE < 0 || E0-dE <= 0)) + || (!E0 && !dE && (lambda0 <= 0 || dlambda < 0 || lambda0-dlambda <= 0))) { + printf("Source_simple: %s: Unmeaningful definition of wavelength or energy range!\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } +%} +TRACE +%{ + double chi,E,lambda,v,r, xf, yf, rf, dx, dy, pdir; + + t=0; + z=0; + + if (square == 1) { + x = xwidth * (rand01() - 0.5); + y = yheight * (rand01() - 0.5); + } else { + chi=2*PI*rand01(); /* Choose point on source */ + r=sqrt(rand01())*radius; /* with uniform distribution. */ + x=r*cos(chi); + y=r*sin(chi); + } + randvec_target_rect_real(&xf, &yf, &rf, &pdir, + tx, ty, tz, focus_xw, focus_yh, ROT_A_CURRENT_COMP, x, y, z, 2); + + dx = xf-x; + dy = yf-y; + rf = sqrt(dx*dx+dy*dy+rf*rf); + + p = pdir*pmul; + + if(lambda0==0) { + if (!gauss) { + E=E0+dE*randpm1(); /* Choose from uniform distribution */ + } else { + E=E0+randnorm()*dE; + } + v=sqrt(E)*SE2V; + } else { + if (!gauss) { + lambda=lambda0+dlambda*randpm1(); + } else { + lambda=lambda0+randnorm()*dlambda; + } + v = K2V*(2*PI/lambda); + } + + vz=v*dist/rf; + vy=v*dy/rf; + vx=v*dx/rf; +%} + +MCDISPLAY +%{ + if (square == 1) { + + rectangle("xy",0,0,0,xwidth,yheight); + } else { + + circle("xy",0,0,0,radius); + } + if (dist) { + dashed_line(0,0,0, -focus_xw/2+tx,-focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, focus_xw/2+tx,-focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, focus_xw/2+tx, focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, -focus_xw/2+tx, focus_yh/2+ty,tz, 4); + } +%} + +END diff --git a/mcstasscript/tests/dummy_mcstas/misc/test_for_structure.comp b/mcstasscript/tests/dummy_mcstas/misc/test_for_structure.comp new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/tests/dummy_mcstas/sources/test_for_structure2.comp b/mcstasscript/tests/dummy_mcstas/sources/test_for_structure2.comp new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/tests/helpers_for_tests.py b/mcstasscript/tests/helpers_for_tests.py new file mode 100644 index 00000000..4d0e62b5 --- /dev/null +++ b/mcstasscript/tests/helpers_for_tests.py @@ -0,0 +1,13 @@ +import os + +class WorkInTestDir: + """ + Simple class that enables working in test directory + """ + def __enter__(self): + self.current_work_dir = os.getcwd() + os.chdir(os.path.dirname(os.path.abspath(__file__))) + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + os.chdir(self.current_work_dir) \ No newline at end of file diff --git a/mcstasscript/tests/test_ComponentReader.py b/mcstasscript/tests/test_ComponentReader.py new file mode 100644 index 00000000..4f9d9d6e --- /dev/null +++ b/mcstasscript/tests/test_ComponentReader.py @@ -0,0 +1,569 @@ +import os +import io +import unittest.mock + +from mcstasscript.helper.component_reader import ComponentReader + + +def setup_component_reader(): + """ + Sets up a component_reader instance with dummy mcstas + installation located in the tests directory + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + component_reader = ComponentReader(mcstas_path=dummy_path) + + os.chdir(current_work_dir) # Reset work directory + + return component_reader + + +def setup_component_reader_input_path(): + """ + Sets up a component_reader instance with dummy mcstas + installation located in the tests directory, and specifies + a input_path which is also located in the test directory. + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + input_path = os.path.join(THIS_DIR, "test_input_folder") + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + component_reader = ComponentReader(mcstas_path=dummy_path, + input_path=input_path) + + os.chdir(current_work_dir) # Reset work directory + + return component_reader + + +class TestComponentReader(unittest.TestCase): + """ + Testing the ComponenReader class. As this class reads information + from McStas, a dummy McStas install is made in the test folder to + avoid the test results changing with updates of McStas. + """ + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_init_overwrite_message(self, mock_stdout): + """ + Test that ComponentReader reports overwritten components + Here using default input path, which is current folder + """ + + setup_component_reader() + + message = ("The following components are found in the work directory " + + "/ input_path:\n test_for_reading.comp\n" + + "These definitions will be used instead of the " + + "installed versions.\n") + + self.assertEqual(mock_stdout.getvalue(), message) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_init_overwrite_message_input(self, mock_stdout): + """ + Test that ComponentReader reports overwritten components + Here using user defined input path, a directory in tests + """ + + setup_component_reader_input_path() + + message = ("The following components are found in the work directory " + + "/ input_path:\n test_for_structure.comp\n" + + "These definitions will be used instead of the " + + "installed versions.\n") + + self.assertEqual(mock_stdout.getvalue(), message) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_init_filenames(self, mock_stdout): + """ + Test that ComponentReader initializes component names correctly + """ + + component_reader = setup_component_reader() + + n_components_found = len(component_reader.component_path) + self.assertEqual(n_components_found, 4) + self.assertIn("test_for_reading", component_reader.component_path) + self.assertIn("test_for_structure", component_reader.component_path) + self.assertIn("test_for_structure2", component_reader.component_path) + self.assertIn("test_for_skipped_sections", component_reader.component_path) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_init_component_paths(self, mock_stdout): + """ + Test that ComponentReader stores correct absolute paths to + the components found in the McStas installation + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + + component_reader = setup_component_reader() + + n_components_found = len(component_reader.component_path) + self.assertEqual(n_components_found, 4) + + expected_path = os.path.join(THIS_DIR, "test_for_reading.comp") + path = component_reader.component_path["test_for_reading"] + self.assertEqual(path, expected_path) + + category = component_reader.component_category["test_for_reading"] + self.assertEqual(category, "work directory") + + expected_path = os.path.join(dummy_path, "misc", + "test_for_structure.comp") + self.assertIn("test_for_structure", component_reader.component_path) + + path = component_reader.component_path["test_for_structure"] + self.assertEqual(path, expected_path) + + category = component_reader.component_category["test_for_structure"] + self.assertEqual(category, "misc") + + self.assertIn("test_for_structure2", component_reader.component_path) + + path = component_reader.component_path["test_for_structure2"] + expected_path = os.path.join(dummy_path, "sources", + "test_for_structure2.comp") + self.assertEqual(path, expected_path) + + category = component_reader.component_category["test_for_structure2"] + self.assertEqual(category, "sources") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_init_component_paths_input(self, mock_stdout): + """ + Test that ComponentReader stores correct absolute paths to + the components found in the McStas installation. + This version uses custom input_path + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + input_path = os.path.join(THIS_DIR, "test_input_folder") + + component_reader = setup_component_reader_input_path() + + n_components_found = len(component_reader.component_path) + self.assertEqual(n_components_found, 4) + + self.assertIn("test_for_reading", component_reader.component_path) + + expected_path = os.path.join(dummy_path, "misc", + "test_for_reading.comp") + path = component_reader.component_path["test_for_reading"] + self.assertEqual(path, expected_path) + + category = component_reader.component_category["test_for_reading"] + self.assertEqual(category, "misc") + + expected_path = os.path.join(input_path, "test_for_structure.comp") + self.assertIn("test_for_structure", component_reader.component_path) + + path = component_reader.component_path["test_for_structure"] + self.assertEqual(path, expected_path) + + category = component_reader.component_category["test_for_structure"] + self.assertEqual(category, "work directory") + + self.assertIn("test_for_structure2", component_reader.component_path) + + path = component_reader.component_path["test_for_structure2"] + expected_path = os.path.join(dummy_path, "sources", + "test_for_structure2.comp") + self.assertEqual(path, expected_path) + + category = component_reader.component_category["test_for_structure2"] + self.assertEqual(category, "sources") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_init_categories(self, mock_stdout): + """ + Test that ComponentReader initializes categories correctly + """ + + component_reader = setup_component_reader() + + n_categories_found = len(set(component_reader.component_category.values())) + self.assertEqual(n_categories_found, 3) + """ + Categories are the values of the category dict, so n_categories + is the same as the set of the values. + """ + category = component_reader.component_category["test_for_reading"] + self.assertEqual(category, "work directory") + category = component_reader.component_category["test_for_structure"] + self.assertEqual(category, "misc") + category = component_reader.component_category["test_for_structure2"] + self.assertEqual(category, "sources") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_show_categories(self, mock_stdout): + """ + This method prints to console, check it prints the categories + in the dummy installation correctly. + + """ + component_reader = setup_component_reader() + + component_reader.show_categories() + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(len(output), 7) + self.assertIn(" sources", output) + self.assertIn(" work directory", output) + self.assertIn(" misc", output) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_show_categories_ordered(self, mock_stdout): + """ + Check that the print to console is ordered as usual. This test + may be implementation dependent as python dictionaries are not + ordered. + + """ + + component_reader = setup_component_reader() + + component_reader.show_categories() + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(len(output), 7) + # Ignoring message about overwritten components, starting from 3 + self.assertEqual(output[3], " misc") + self.assertEqual(output[4], " sources") + self.assertEqual(output[5], " work directory") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_show_components_short(self, mock_stdout): + """ + Here we attempt to show components in the misc category. In + the dummy install, there are two components in this folder, but + one of these is overwritten by the version in the current + work directory. + + """ + + component_reader = setup_component_reader() + + component_reader.show_components_in_category("misc", line_length=100) + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(len(output), 6) + self.assertIn(" test_for_structure", output) + # Check overwritten component is not in the output + self.assertNotIn(" test_for_reading", output) + + """ + # This test not as important, but could be finished later + @unittest.mock.patch("sys.stdout", new_callable = io.StringIO) + def test_ComponentReader_show_components_long(self, mock_stdout): + + component_reader = setup_component_reader() + + # Add elements directly to component_readers library + # generate list + # add list + + #component_reader.component_category[] + + component_reader.show_components_in_category("misc", line_length=100) + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(len(output), 3) + self.assertIn(" test_for_structure", output) + """ + + # test load_all_components + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_load_all_components(self, mock_stdout): + """ + Load all components in the dummy install, but only one has any + content. The method is currently not necessary, as components + are now loaded individually when needed. + + """ + + component_reader = setup_component_reader() + + CompInfo_dict = component_reader.load_all_components() + + comp_name = "test_for_reading" + name = CompInfo_dict[comp_name].name + self.assertEqual(name, comp_name) + + parameter_names = CompInfo_dict[comp_name].parameter_names + self.assertIn("target_index", parameter_names) + parameter_types = CompInfo_dict[comp_name].parameter_types + self.assertIn("target_index", parameter_types) + parameter_defaults = CompInfo_dict[comp_name].parameter_defaults + self.assertIn("target_index", parameter_defaults) + + type_str = CompInfo_dict[comp_name].parameter_types["target_index"] + self.assertEqual(type_str, "int") + + comp_name = "test_for_structure" + name = CompInfo_dict[comp_name].name + self.assertEqual(name, comp_name) + # test_for_structure is an empty file, so no conentet to check + + comp_name = "test_for_structure2" + name = CompInfo_dict[comp_name].name + self.assertEqual(name, comp_name) + # test_for_structure2 is an empty file, so no conentet to check + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_read_name_error(self, mock_stdout): + """ + read_name should throw an error when searching for a component + that is not present in the installation. + """ + + component_reader = setup_component_reader() + + with self.assertRaises(NameError): + component_reader.read_name("no_such_comp") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_read_name_success(self, mock_stdout): + """ + Read component simply calls read_component_file, but here + the output is checked against what is in the dummy file. + + """ + + component_reader = setup_component_reader() + + CompInfo = component_reader.read_name("test_for_reading") + + self.assertEqual(CompInfo.name, "test_for_reading") + self.assertEqual(CompInfo.category, "work directory") + self.assertIn("dist", CompInfo.parameter_names) + self.assertIn("dist", CompInfo.parameter_defaults) + self.assertIn("dist", CompInfo.parameter_types) + self.assertEqual(CompInfo.parameter_types["dist"], "double") + self.assertIn("dist", CompInfo.parameter_comments) + self.assertIn("dist", CompInfo.parameter_units) + self.assertEqual(CompInfo.parameter_units["dist"], "m") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_find_components_names(self, mock_stdout): + """ + Test that ComponentReader initializes component names correctly + """ + + component_reader = setup_component_reader() + + component_reader.component_path = {} + component_reader.component_category = {} + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas", "misc") + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + component_reader._find_components(dummy_path) + os.chdir(current_work_dir) # Return to original work directory + + n_components_found = len(component_reader.component_path) + self.assertEqual(n_components_found, 3) + self.assertIn("test_for_reading", component_reader.component_path) + self.assertIn("test_for_structure", component_reader.component_path) + self.assertIn("test_for_skipped_sections", component_reader.component_path) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_find_components_categories(self, mock_stdout): + """ + Test that ComponentReader initializes component categories correctly + """ + + component_reader = setup_component_reader() + + component_reader.component_path = {} + component_reader.component_category = {} + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas", "misc") + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + component_reader._find_components(dummy_path) + os.chdir(current_work_dir) # Return to original work directory + + n_components_found = len(component_reader.component_category) + self.assertEqual(n_components_found, 3) + + category = component_reader.component_category["test_for_reading"] + self.assertEqual(category, "misc") + category = component_reader.component_category["test_for_structure"] + self.assertEqual(category, "misc") + category = component_reader.component_category["test_for_skipped_sections"] + self.assertEqual(category, "misc") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_read_component_category(self, mock_stdout): + """ + Check that the correct category is returned. + + Can't run this test with overwritten component test_for_reading. + read_component will report tests as category, but this is + overwritten by read_name in normal use. + """ + component_reader = setup_component_reader() + + path_for_test = component_reader.component_path["test_for_structure"] + CompInfo = component_reader.read_component_file(path_for_test) + + exp_cat = component_reader.component_category["test_for_structure"] + self.assertEqual(CompInfo.category, exp_cat) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_read_component_standard(self, mock_stdout): + """ + Test that a normal parameter is read correctly when reading a + component file. + Has default, is double type, has comment, has unit + """ + + component_reader = setup_component_reader() + + path_for_test = component_reader.component_path["test_for_reading"] + CompInfo = component_reader.read_component_file(path_for_test) + + self.assertIn("xwidth", CompInfo.parameter_names) + + self.assertIn("xwidth", CompInfo.parameter_defaults) + self.assertEqual(CompInfo.parameter_defaults["xwidth"], 0.0) + + self.assertIn("xwidth", CompInfo.parameter_types) + self.assertEqual(CompInfo.parameter_types["xwidth"], "double") + + self.assertIn("xwidth", CompInfo.parameter_comments) + comment = "Width of rectangle test comment" + self.assertEqual(CompInfo.parameter_comments["xwidth"], comment) + + self.assertIn("xwidth", CompInfo.parameter_units) + self.assertEqual(CompInfo.parameter_units["xwidth"], "m") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_read_component_required(self, mock_stdout): + """ + Test that a required parameter is read correctly when reading a + component file. + Has no default, is double type, has no comment, has no unit + """ + + component_reader = setup_component_reader() + + path_for_test = component_reader.component_path["test_for_reading"] + CompInfo = component_reader.read_component_file(path_for_test) + + self.assertIn("gauss", CompInfo.parameter_names) + + self.assertIn("gauss", CompInfo.parameter_defaults) + self.assertIsNone(CompInfo.parameter_defaults["gauss"]) + + self.assertIn("gauss", CompInfo.parameter_types) + self.assertEqual(CompInfo.parameter_types["gauss"], "double") + + self.assertNotIn("gauss", CompInfo.parameter_comments) + + self.assertNotIn("gauss", CompInfo.parameter_units) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_read_component_int(self, mock_stdout): + """ + Test that an integer parameter is read correctly when reading a + component file. + Has default, is int type (comments and unit checked already) + """ + + component_reader = setup_component_reader() + + path_for_test = component_reader.component_path["test_for_reading"] + CompInfo = component_reader.read_component_file(path_for_test) + + self.assertIn("flux", CompInfo.parameter_names) + + self.assertIn("flux", CompInfo.parameter_defaults) + self.assertEqual(CompInfo.parameter_defaults["flux"], 1) + + self.assertIn("flux", CompInfo.parameter_types) + self.assertEqual(CompInfo.parameter_types["flux"], "int") + + self.assertIn("flux", CompInfo.parameter_comments) + # Have already tested comments are read + + self.assertIn("flux", CompInfo.parameter_units) + # Have already tested units are read + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_read_component_string(self, mock_stdout): + """ + Test that a string parameter is read correctly when reading a + component file. + Has no default, is string type (comments and unit checked already) + """ + + component_reader = setup_component_reader() + + path_for_test = component_reader.component_path["test_for_reading"] + CompInfo = component_reader.read_component_file(path_for_test) + + self.assertIn("test_string", CompInfo.parameter_names) + + self.assertIn("test_string", CompInfo.parameter_defaults) + self.assertIsNone(CompInfo.parameter_defaults["test_string"]) + + self.assertIn("test_string", CompInfo.parameter_types) + self.assertEqual(CompInfo.parameter_types["test_string"], "string") + + self.assertNotIn("test_string", CompInfo.parameter_comments) + # Have already tested comments are read + + self.assertNotIn("test_string", CompInfo.parameter_units) + # Have already tested units are read + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_ComponentReader_read_comp_with_skipped_sections(self, mock_stdout): + """ + Read component simply calls read_component_file, but here + the output is checked against what is in the dummy file. + + """ + + component_reader = setup_component_reader() + + CompInfo = component_reader.read_name("test_for_skipped_sections") + + self.assertEqual(CompInfo.name, "test_for_skipped_sections") + self.assertEqual(CompInfo.category, "misc") + self.assertEqual(len(CompInfo.parameter_names), 4) + self.assertIn("packing_factor", CompInfo.parameter_names) + self.assertIn("packing_factor", CompInfo.parameter_defaults) + self.assertIn("packing_factor", CompInfo.parameter_types) + self.assertEqual(CompInfo.parameter_types["packing_factor"], "double") + self.assertIn("packing_factor", CompInfo.parameter_comments) + self.assertIn("packing_factor", CompInfo.parameter_units) + self.assertEqual(CompInfo.parameter_units["packing_factor"], "1") + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_Configurator.py b/mcstasscript/tests/test_Configurator.py new file mode 100644 index 00000000..42f68557 --- /dev/null +++ b/mcstasscript/tests/test_Configurator.py @@ -0,0 +1,201 @@ +import os +import unittest + +from mcstasscript.interface.functions import Configurator + + +def setup_expected_file(test_name): + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + expected_file = os.path.join(THIS_DIR, "..", test_name + ".yaml") + + if os.path.isfile(expected_file): + os.remove(expected_file) + return expected_file + + +def setup_configurator(test_name): + + setup_expected_file(test_name) + + return Configurator(test_name) + + +class TestConfigurator(unittest.TestCase): + """ + Tests for configurator class that handles yaml configuration file + """ + + def test_simple_initialize(self): + """ + Tests that initialization happens, new configuration file should be + written. + """ + + test_name = "test_configuration" + expected_file = setup_expected_file(test_name) + + # check the file did not exist before testing + self.assertFalse(os.path.isfile(expected_file)) + + # initialize the configurator + Configurator(test_name) + + # check a new configuration file was made + self.assertTrue(os.path.isfile(expected_file)) + + # remove the testing configuration file + if os.path.isfile(expected_file): + os.remove(expected_file) + + def test_default_config(self): + """ + This tests confirms the content of the default configuration file + """ + + test_name = "test_configuration" + expected_file = setup_expected_file(test_name) + + # check the file did not exist before testing + self.assertFalse(os.path.isfile(expected_file)) + + my_configurator = Configurator(test_name) + + default_config = my_configurator._read_yaml() + + run = "/Applications/McStas-2.5.app/Contents/Resources/mcstas/2.5/bin/" + mcstas = "/Applications/McStas-2.5.app/Contents/Resources/mcstas/2.5/" + mxrun = "/Applications/McXtrace-1.5.app" \ + + "/Contents/Resources/mcxtrace/1.5/mxrun" + mcxtrace = "/Applications/McXtrace-1.5.app" \ + + "/Contents/Resources/mcxtrace/1.5/" + + self.assertEqual(default_config["paths"]["mcrun_path"], run) + self.assertEqual(default_config["paths"]["mcstas_path"], mcstas) + self.assertEqual(default_config["paths"]["mxrun_path"], mxrun) + self.assertEqual(default_config["paths"]["mcxtrace_path"], mcxtrace) + self.assertEqual(default_config["other"]["characters_per_line"], 85) + + # remove the testing configuration file + if os.path.isfile(expected_file): + os.remove(expected_file) + + def test_yaml_write(self): + """ + This test checks that writing to the configuration file works + """ + test_name = "test_configuration" + my_configurator = setup_configurator(test_name) + + config = my_configurator._read_yaml() + + config["new_field"] = 123 + config["paths"]["new_path"] = "/test/path/" + + my_configurator._write_yaml(config) + + new_config = my_configurator._read_yaml() + + self.assertEqual(new_config["other"]["characters_per_line"], 85) + self.assertEqual(new_config["new_field"], 123) + self.assertEqual(new_config["paths"]["new_path"], "/test/path/") + + # remove the testing configuration file + setup_expected_file(test_name) + + def test_set_mcrun_path(self): + """ + This test checks that setting the mcrun path works + """ + test_name = "test_configuration" + my_configurator = setup_configurator(test_name) + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_mcstas_path = os.path.join(THIS_DIR, "dummy_mcstas") + + my_configurator.set_mcrun_path(dummy_mcstas_path) + + new_config = my_configurator._read_yaml() + + self.assertEqual(new_config["paths"]["mcrun_path"], dummy_mcstas_path) + + # remove the testing configuration file + setup_expected_file(test_name) + + def test_set_mcstas_path(self): + """ + This test checks that setting the mcstas path works + """ + test_name = "test_configuration" + my_configurator = setup_configurator(test_name) + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_mcstas_path = os.path.join(THIS_DIR, "dummy_mcstas") + + my_configurator.set_mcstas_path(dummy_mcstas_path) + + new_config = my_configurator._read_yaml() + + self.assertEqual(new_config["paths"]["mcstas_path"], + dummy_mcstas_path) + + # remove the testing configuration file + setup_expected_file(test_name) + + def test_set_mxrun_path(self): + """ + This test checks that setting the mxrun path works + """ + test_name = "test_configuration" + my_configurator = setup_configurator(test_name) + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_mcstas_path = os.path.join(THIS_DIR, "dummy_mcstas") + + my_configurator.set_mxrun_path(dummy_mcstas_path) + + new_config = my_configurator._read_yaml() + + self.assertEqual(new_config["paths"]["mxrun_path"], dummy_mcstas_path) + + # remove the testing configuration file + setup_expected_file(test_name) + + def test_set_mcxtrace_path(self): + """ + This test checks that setting the mcxtrace path works + """ + test_name = "test_configuration" + my_configurator = setup_configurator(test_name) + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_mcstas_path = os.path.join(THIS_DIR, "dummy_mcstas") + + my_configurator.set_mcxtrace_path(dummy_mcstas_path) + + new_config = my_configurator._read_yaml() + + self.assertEqual(new_config["paths"]["mcxtrace_path"], + dummy_mcstas_path) + + # remove the testing configuration file + setup_expected_file(test_name) + + def test_set_line_length(self): + """ + This test checks that setting the line length works + """ + test_name = "test_configuration" + my_configurator = setup_configurator(test_name) + + my_configurator.set_line_length(123) + + new_config = my_configurator._read_yaml() + + self.assertEqual(new_config["other"]["characters_per_line"], 123) + + # remove the testing configuration file + setup_expected_file(test_name) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_Instr.py b/mcstasscript/tests/test_Instr.py new file mode 100644 index 00000000..d21c4237 --- /dev/null +++ b/mcstasscript/tests/test_Instr.py @@ -0,0 +1,2560 @@ +import os +import os.path +import io +import unittest +import unittest.mock +import datetime +import shutil + +from libpyvinyl.Parameters.Collections import CalculatorParameters + +from mcstasscript.interface.instr import McStas_instr +from mcstasscript.interface.instr import McXtrace_instr +from mcstasscript.helper.formatting import bcolors +from mcstasscript.tests.helpers_for_tests import WorkInTestDir +from mcstasscript.helper.exceptions import McStasError +from mcstasscript.helper.mcstas_objects import Component +from mcstasscript.helper.beam_dump_database import BeamDump + +run_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), '.') + +class DummyComponent(Component): + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + def set_parameters(self, *args, **kwargs): + pass + +def setup_instr_no_path(): + """ + Sets up a neutron instrument without a package_path + """ + + with WorkInTestDir() as handler: + instrument = McStas_instr("test_instrument") + + return instrument + + +def setup_x_ray_instr_no_path(): + """ + Sets up a X-ray instrument without a package_path + """ + + with WorkInTestDir() as handler: + instrument = McXtrace_instr("test_instrument") + + return instrument + + +def setup_instr_root_path(): + """ + Sets up a neutron instrument with root package_path + """ + with WorkInTestDir() as handler: + instrument = McStas_instr("test_instrument", package_path="/") + + return instrument + + +def setup_x_ray_instr_root_path(): + """ + Sets up a X-ray instrument with root package_path + """ + with WorkInTestDir() as handler: + instrument = McXtrace_instr("test_instrument", package_path="/") + + return instrument + + +def setup_instr_with_path(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. + """ + + with WorkInTestDir() as handler: + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + instrument = McStas_instr("test_instrument", + package_path=dummy_path, executable_path=dummy_path) + + return instrument + + +def setup_x_ray_instr_with_path(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + instrument = McXtrace_instr("test_instrument", package_path=dummy_path) + + return instrument + + +def setup_instr_with_input_path(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. In addition the input_path + is set to a folder in the test directory using an absolute path. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + input_path = os.path.join(THIS_DIR, "test_input_folder") + + with WorkInTestDir() as handler: + instrument = McStas_instr("test_instrument", + package_path=dummy_path, + input_path=input_path) + + return instrument + + +def setup_instr_with_input_path_relative(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. In addition the input_path + is set to a folder in the test directory using a relative path. + """ + + with WorkInTestDir() as handler: + instrument = McStas_instr("test_instrument", + package_path="dummy_mcstas", + input_path="test_input_folder") + + return instrument + + +def setup_populated_instr(): + """ + Sets up a neutron instrument with some features used and three components + """ + instr = setup_instr_root_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + instr.add_component("first_component", "test_for_reading") + instr.add_component("second_component", "test_for_reading") + instr.add_component("third_component", "test_for_reading") + + return instr + + +def setup_populated_instr_with_dummy_MCPL_comps(): + """ + Sets up a neutron instrument with some features used and three components + """ + instr = setup_populated_instr() + + instr.component_class_lib["MCPL_input"] = DummyComponent + instr.component_class_lib["MCPL_output"] = DummyComponent + + return instr + +def setup_populated_instr_with_dummy_path(): + """ + Sets up a neutron instrument with some features used and three components + + Here uses the dummy mcstas installation as path and sets required + parameters so that a run is possible. + """ + instr = setup_instr_with_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + comp1 = instr.add_component("first_component", "test_for_reading") + comp1.gauss = 1.2 + comp1.test_string = "a_string" + comp2 = instr.add_component("second_component", "test_for_reading") + comp2.gauss = 1.4 + comp2.test_string = "b_string" + comp3 = instr.add_component("third_component", "test_for_reading") + comp3.gauss = 1.6 + comp3.test_string = "c_string" + + return instr + + +def setup_populated_x_ray_instr(): + """ + Sets up a X-ray instrument with some features used and three components + """ + instr = setup_x_ray_instr_root_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + instr.add_component("first_component", "test_for_reading") + instr.add_component("second_component", "test_for_reading") + instr.add_component("third_component", "test_for_reading") + + return instr + + +def setup_populated_x_ray_instr_with_dummy_path(): + """ + Sets up a x-ray instrument with some features used and three components + + Here uses the dummy mcstas installation as path and sets required + parameters so that a run is possible. + """ + instr = setup_x_ray_instr_with_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + comp1 = instr.add_component("first_component", "test_for_reading") + comp1.gauss = 1.2 + comp1.test_string = "a_string" + comp2 = instr.add_component("second_component", "test_for_reading") + comp2.gauss = 1.4 + comp2.test_string = "b_string" + comp3 = instr.add_component("third_component", "test_for_reading") + comp3.gauss = 1.6 + comp3.test_string = "c_string" + + return instr + + +def setup_populated_with_some_options_instr(): + """ + Sets up a neutron instrument with some features used and two components + """ + instr = setup_instr_root_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + comp1 = instr.add_component("first_component", "test_for_reading") + comp1.set_AT([0, 0, 1]) + comp1.set_GROUP("Starters") + comp2 = instr.add_component("second_component", "test_for_reading") + comp2.set_AT([0, 0, 2], RELATIVE="first_component") + comp2.set_ROTATED([0, 30, 0]) + comp2.set_WHEN("1==1") + comp2.yheight = 1.23 + instr.add_component("third_component", "test_for_reading") + + return instr + + +def insert_mock_dump(instr, component_name, run_name="Run", tag=0): + dump = BeamDump("", {}, component_name, run_name, tag=tag) + dump.file_present = lambda *_: True # Overwrite file check + + instr.dump_database.data[component_name] = {} + instr.dump_database.data[component_name][run_name] = {} + instr.dump_database.data[component_name][run_name][tag] = dump + + +class TestMcStas_instr(unittest.TestCase): + """ + Tests of the main class in McStasScript called McStas_instr. + """ + + def test_simple_initialize(self): + """ + Test basic initialization runs + """ + my_instrument = setup_instr_root_path() + + self.assertEqual(my_instrument.name, "test_instrument") + + def test_complex_initialize(self): + """ + Tests all keywords work in initialization + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + my_instrument = McStas_instr("test_instrument", + author="Mads", + origin="DMSC", + executable_path="./dummy_mcstas/contrib", + package_path="./dummy_mcstas/misc") + + os.chdir(current_work_dir) + + self.assertEqual(my_instrument.author, "Mads") + self.assertEqual(my_instrument.origin, "DMSC") + self.assertEqual(my_instrument._run_settings["executable_path"], + "./dummy_mcstas/contrib") + self.assertEqual(my_instrument._run_settings["package_path"], + "./dummy_mcstas/misc") + + def test_load_config_file(self): + """ + Test that configuration file is read correctly. In order to have + an independent test, the yaml file is read manually instead of + using the yaml package. + """ + # Load configuration file and read manually + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + configuration_file_name = os.path.join(THIS_DIR, + "..", "configuration.yaml") + + if not os.path.isfile(configuration_file_name): + raise NameError("Could not find configuration file!") + + f = open(configuration_file_name, "r") + + lines = f.readlines() + for line in lines: + line = line.strip() + if line.startswith("mcrun_path:"): + parts = line.split(" ") + correct_mcrun_path = parts[1] + + if line.startswith("mcstas_path:"): + parts = line.split(" ") + correct_mcstas_path = parts[1] + + if line.startswith("characters_per_line:"): + parts = line.split(" ") + correct_n_of_characters = int(parts[1]) + + f.close() + + # Check the value matches what is loaded by initialization + my_instrument = setup_instr_no_path() + + if "MCSTAS" in os.environ: + # If MCSTAS is in path, we expect the configuration to find that: + self.assertEqual(my_instrument._run_settings["executable_path"], os.path.dirname(shutil.which("mcrun"))) + self.assertEqual(my_instrument._run_settings["package_path"], os.environ["MCSTAS"]) + else: + # Otherweise, the configuration file + self.assertEqual(my_instrument._run_settings["executable_path"], correct_mcrun_path) + self.assertEqual(my_instrument._run_settings["package_path"], correct_mcstas_path) + + # In both cases it ought to read the number of characters from the file + self.assertEqual(my_instrument.line_limit, correct_n_of_characters) + + def test_load_config_file_x_ray(self): + """ + Test that configuration file is read correctly. In order to have + an independent test, the yaml file is read manually instead of + using the yaml package. + """ + # Load configuration file and read manually + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + configuration_file_name = os.path.join(THIS_DIR, + "..", "configuration.yaml") + + if not os.path.isfile(configuration_file_name): + raise NameError("Could not find configuration file!") + + f = open(configuration_file_name, "r") + + lines = f.readlines() + for line in lines: + line = line.strip() + if line.startswith("mxrun_path:"): + parts = line.split(" ") + correct_mxrun_path = parts[1] + + if line.startswith("mcxtrace_path:"): + parts = line.split(" ") + correct_mcxtrace_path = parts[1] + + if line.startswith("characters_per_line:"): + parts = line.split(" ") + correct_n_of_characters = int(parts[1]) + + f.close() + + # Check the value matches what is loaded by initialization + my_instrument = setup_x_ray_instr_no_path() + + self.assertEqual(my_instrument._run_settings["executable_path"], correct_mxrun_path) + self.assertEqual(my_instrument._run_settings["package_path"], correct_mcxtrace_path) + self.assertEqual(my_instrument.line_limit, correct_n_of_characters) + + def test_load_libpyvinyl_parameters(self): + parameters = CalculatorParameters() + int_par = parameters.new_parameter("int_parameter", comment="integer parameter") + int_par.value = 3 + + double_par = parameters.new_parameter("double_parameter", unit="meV") + double_par.value = 3.0 + + string_par = parameters.new_parameter("string_parameter") + string_par.value = "hello world" + + secret_par = parameters.new_parameter("no_value_par") + + instr = McStas_instr("test_instr", parameters=parameters) + + self.assertEqual(int_par.type, "double") + self.assertEqual(double_par.type, "double") + self.assertEqual(string_par.type, "string") + self.assertEqual(secret_par.type, None) + + instr.set_parameters(int_parameter=4) + self.assertEqual(int_par.value, 4) + + int_par.value = 5 + self.assertEqual(instr.parameters["int_parameter"].value, 5) + + def test_simple_add_parameter(self): + """ + This is just an interface to a function that is tested + elsewhere, so only a basic test is performed here. + + ParameterVariable is tested in test_parameter_variable. + """ + instr = setup_instr_root_path() + + parameter = instr.add_parameter("double", "theta", comment="test par") + + self.assertEqual(parameter.name, "theta") + self.assertEqual(parameter.comment, "test par") + self.assertTrue(parameter in instr.parameters.parameters.values()) + + def test_user_var_block_add_parameter(self): + """ + Checks that adding a parameter with a name already used for a + user variable fails with NameError + """ + instr = setup_instr_root_path() + + instr.add_user_var("double", "theta") + + with self.assertRaises(NameError): + instr.add_parameter("double", "theta", comment="test par") + + + def test_declare_var_block_add_parameter(self): + """ + Checks that adding a parameter with a name already used for a + declared variable fails with NameError + """ + instr = setup_instr_root_path() + + instr.add_declare_var("double", "theta") + + with self.assertRaises(NameError): + instr.add_parameter("double", "theta", comment="test par") + + def test_infer_name_add_parameter(self): + """ + Test that name can be ommited when defining a parameter and that + the python variable name is used in its place. + """ + instr = setup_instr_root_path() + + theta = instr.add_parameter(type="double", comment="test par") + + self.assertEqual(theta.name, "theta") + self.assertEqual(theta.comment, "test par") + self.assertTrue(theta in instr.parameters.parameters.values()) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_show_parameters(self, mock_stdout): + """ + Testing that parameters are displayed correctly + """ + instr = setup_instr_root_path() + + instr.add_parameter("theta", comment="test par") + instr.add_parameter("double", "par_double", comment="test par") + instr.add_parameter("int", "int_par", value=8, comment="test par") + instr.add_parameter("int", "slits", comment="test par") + instr.add_parameter("string", "ref", + value="string", comment="new string") + + instr.show_parameters(line_length=300) + + output = mock_stdout.getvalue().split("\n") + + self.assertEqual(output[0], " theta // test par") + self.assertEqual(output[1], "double par_double // test par") + self.assertEqual(output[2], "int int_par = 8 // test par") + self.assertEqual(output[3], "int slits // test par") + self.assertEqual(output[4], "string ref = string // new string") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_show_parameters_line_break(self, mock_stdout): + """ + Testing that parameters are displayed correctly + + Here multiple lines are used for a long comment that was + dynamically broken up. + """ + instr = setup_instr_root_path() + + instr.add_parameter("theta", comment="test par") + instr.add_parameter("double", "par_double", comment="test par") + instr.add_parameter("int", "int_par", value=8, comment="test par") + instr.add_parameter("int", "slits", comment="test par") + instr.add_parameter("string", "ref", + value="string", comment="new string") + + longest_comment = ("This is a very long comment meant for " + + "testing the dynamic line breaking " + + "that is used in this method. It needs " + + "to have many lines in order to ensure " + + "it really works.") + + instr.add_parameter("double", "value", + value="37", comment=longest_comment) + + instr.show_parameters(line_length=80) + + output = mock_stdout.getvalue().split("\n") + + self.assertEqual(output[0], " theta // test par") + self.assertEqual(output[1], "double par_double // test par") + self.assertEqual(output[2], "int int_par = 8 // test par") + self.assertEqual(output[3], "int slits // test par") + self.assertEqual(output[4], "string ref = string // new string") + comment_line = "This is a very long comment meant for " + self.assertEqual(output[5], "double value = 37 // " + + comment_line) + comment_line = "testing the dynamic line breaking that is " + self.assertEqual(output[6], " "*33 + comment_line) + comment_line = "used in this method. It needs to have many " + self.assertEqual(output[7], " "*33 + comment_line) + comment_line = "lines in order to ensure it really works. " + self.assertEqual(output[8], " "*33 + comment_line) + + def test_simple_add_declare_variable(self): + """ + This is just an interface to a function that is tested + elsewhere, so only a basic test is performed here. + + DeclareVariable is tested in test_declare_variable. + """ + instr = setup_instr_root_path() + + instr.add_declare_var("double", "two_theta", comment="test par") + + self.assertEqual(instr.declare_list[0].name, "two_theta") + self.assertEqual(instr.declare_list[0].comment, " // test par") + + def test_parameter_block_add_declare_variable(self): + """ + Checks a NameError is raised when using declare variable of same + name as instrument parameter. + """ + instr = setup_instr_root_path() + + instr.add_parameter("two_theta") + with self.assertRaises(NameError): + instr.add_declare_var("double", "two_theta") + + def test_user_var_block_add_declare_variable(self): + """ + Checks a NameError is raised when using declare variable of same + name as declared variable. + """ + instr = setup_instr_root_path() + + instr.add_user_var("double", "two_theta") + with self.assertRaises(NameError): + instr.add_declare_var("double", "two_theta") + + def test_infer_add_declare_variable(self): + """ + Check that name can be inferred from python variable when + adding a declared variable. + """ + instr = setup_instr_root_path() + + two_theta = instr.add_declare_var("double", comment="test par") + + self.assertEqual(instr.declare_list[0].name, "two_theta") + self.assertEqual(instr.declare_list[0].comment, " // test par") + + def test_simple_add_user_variable(self): + """ + This is just an interface to a function that is tested + elsewhere, so only a basic test is performed here. + + DeclareVariable is tested in test_declare_variable. + """ + instr = setup_instr_root_path() + + user_var = instr.add_user_var("double", "two_theta_user", comment="test par") + + self.assertEqual(user_var.name, "two_theta_user") + self.assertEqual(user_var.comment, " // test par") + self.assertEqual(instr.user_var_list[0].name, "two_theta_user") + self.assertEqual(instr.user_var_list[0].comment, " // test par") + + with self.assertRaises(ValueError): + instr.add_user_var("double", "illegal", value=8) + + def test_declare_block_add_user_variable(self): + """ + Checks a NameError is raised when using user variable of same + name as declare variable already defined. + """ + instr = setup_instr_root_path() + + instr.add_declare_var("double", "two_theta") + with self.assertRaises(NameError): + instr.add_user_var("double", "two_theta") + + def test_parameter_block_add_user_variable(self): + """ + Checks a NameError is raised when using user variable of same + name as parameter already defined. + """ + instr = setup_instr_root_path() + + instr.add_parameter("two_theta") + with self.assertRaises(NameError): + instr.add_user_var("double", "two_theta") + + def test_simple_append_declare(self): + """ + Appending to declare adds an object to the declare list, and the + allowed types are either strings or DeclareVariable objects. + Here only strings are added. + """ + instr = setup_instr_root_path() + + instr.append_declare("First line of declare") + instr.append_declare("Second line of declare") + instr.append_declare("Third line of declare") + + self.assertEqual(instr.declare_list[0], + "First line of declare") + self.assertEqual(instr.declare_list[1], + "Second line of declare") + self.assertEqual(instr.declare_list[2], + "Third line of declare") + + def test_simple_append_declare_var_mix(self): + """ + Appending to declare adds an object to the declare list, and the + allowed types are either strings or DeclareVariable objects. + Here a mix of strings and DeclareVariable objects are added. + """ + instr = setup_instr_root_path() + + instr.append_declare("First line of declare") + instr.add_declare_var("double", "two_theta", comment="test par") + instr.append_declare("Third line of declare") + + self.assertEqual(instr.declare_list[0], + "First line of declare") + self.assertEqual(instr.declare_list[1].name, "two_theta") + self.assertEqual(instr.declare_list[1].comment, " // test par") + self.assertEqual(instr.declare_list[2], + "Third line of declare") + + def test_simple_append_initialize(self): + """ + The initialize section is held as a string. This method + appends that string. + """ + instr = setup_instr_root_path() + + self.assertEqual(instr.initialize_section, + "// Start of initialize for generated " + + "test_instrument\n") + + instr.append_initialize("First line of initialize") + instr.append_initialize("Second line of initialize") + instr.append_initialize("Third line of initialize") + + self.assertEqual(instr.initialize_section, + "// Start of initialize for generated " + + "test_instrument\n" + + "First line of initialize\n" + + "Second line of initialize\n" + + "Third line of initialize\n") + + def test_simple_append_initialize_no_new_line(self): + """ + The initialize section is held as a string. This method + appends that string without making a new line. + """ + instr = setup_instr_root_path() + + self.assertEqual(instr.initialize_section, + "// Start of initialize for generated " + + "test_instrument\n") + + instr.append_initialize_no_new_line("A") + instr.append_initialize_no_new_line("B") + instr.append_initialize_no_new_line("CD") + + self.assertEqual(instr.initialize_section, + "// Start of initialize for generated " + + "test_instrument\n" + + "ABCD") + + def test_simple_append_finally(self): + """ + The finally section is held as a string. This method + appends that string. + """ + instr = setup_instr_root_path() + + self.assertEqual(instr.finally_section, + "// Start of finally for generated " + + "test_instrument\n") + + instr.append_finally("First line of finally") + instr.append_finally("Second line of finally") + instr.append_finally("Third line of finally") + + self.assertEqual(instr.finally_section, + "// Start of finally for generated " + + "test_instrument\n" + + "First line of finally\n" + + "Second line of finally\n" + + "Third line of finally\n") + + def test_simple_append_finally_no_new_line(self): + """ + The finally section is held as a string. This method + appends that string without making a new line. + """ + instr = setup_instr_root_path() + + self.assertEqual(instr.finally_section, + "// Start of finally for generated " + + "test_instrument\n") + + instr.append_finally_no_new_line("A") + instr.append_finally_no_new_line("B") + instr.append_finally_no_new_line("CD") + + self.assertEqual(instr.finally_section, + "// Start of finally for generated " + + "test_instrument\n" + + "ABCD") + + def test_simple_append_trace(self): + """ + The trace section is held as a string. This method + appends that string. Only used for writing c files, which is not + the main way to use McStasScript. + """ + instr = setup_instr_root_path() + + self.assertEqual(instr.trace_section, + "// Start of trace section for generated " + + "test_instrument\n") + + instr.append_trace("First line of trace") + instr.append_trace("Second line of trace") + instr.append_trace("Third line of trace") + + self.assertEqual(instr.trace_section, + "// Start of trace section for generated " + + "test_instrument\n" + + "First line of trace\n" + + "Second line of trace\n" + + "Third line of trace\n") + + def test_simple_append_trace_no_new_line(self): + """ + The trace section is held as a string. This method appends that string + without making a new line. Only used for writing c files, which is not + the main way to use McStasScript. + """ + instr = setup_instr_root_path() + + self.assertEqual(instr.trace_section, + "// Start of trace section for generated " + + "test_instrument\n") + + instr.append_trace_no_new_line("A") + instr.append_trace_no_new_line("B") + instr.append_trace_no_new_line("CD") + + self.assertEqual(instr.trace_section, + "// Start of trace section for generated " + + "test_instrument\n" + + "ABCD") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_available_components_simple(self, mock_stdout): + """ + Simple test of show components to show component categories + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instr = setup_instr_with_path() + + instr.available_components() + + os.chdir(current_work_dir) + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(output[0], + "The following components are found in the " + + "work directory / input_path:") + self.assertEqual(output[1], " test_for_reading.comp") + self.assertEqual(output[2], "These definitions will be used " + + "instead of the installed versions.") + self.assertEqual(output[3], + "Here are the available component categories:") + self.assertEqual(output[4], " misc") + self.assertEqual(output[5], " sources") + self.assertEqual(output[6], " work directory") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_available_components_folder(self, mock_stdout): + """ + Simple test of show components to show components in current work + directory. + """ + instr = setup_instr_with_path() + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instr.available_components("work directory") + + os.chdir(current_work_dir) + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(output[0], + "The following components are found in the " + + "work directory / input_path:") + self.assertEqual(output[1], " test_for_reading.comp") + self.assertEqual(output[2], "These definitions will be used " + + "instead of the installed versions.") + self.assertEqual(output[3], + "Here are all components in the work directory " + + "category.") + self.assertEqual(output[4], " test_for_reading") + self.assertEqual(output[5], "") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_available_components_input_path_simple(self, mock_stdout): + """ + Simple test of input_path being recognized and passed + to component_reader so PSDlin_monitor is overwritten + """ + instr = setup_instr_with_input_path() + + instr.available_components() + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(output[0], + "The following components are found in the " + + "work directory / input_path:") + self.assertEqual(output[1], " test_for_structure.comp") + self.assertEqual(output[2], "These definitions will be used " + + "instead of the installed versions.") + self.assertEqual(output[3], + "Here are the available component categories:") + self.assertEqual(output[4], " misc") + self.assertEqual(output[5], " sources") + self.assertEqual(output[6], " work directory") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_available_components_input_path_custom(self, mock_stdout): + """ + Simple test of input_path being recognized and passed + to component_reader so PSDlin_monitor is overwritten + Here dummy_mcstas and input_path are set using relative + paths instead of absolute paths. + """ + instr = setup_instr_with_input_path_relative() + + instr.available_components() + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(output[0], + "The following components are found in the " + + "work directory / input_path:") + self.assertEqual(output[1], " test_for_structure.comp") + self.assertEqual(output[2], "These definitions will be used " + + "instead of the installed versions.") + self.assertEqual(output[3], + "Here are the available component categories:") + self.assertEqual(output[4], " misc") + self.assertEqual(output[5], " sources") + self.assertEqual(output[6], " work directory") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_component_help(self, mock_stdout): + """ + Simple test of component help + """ + instr = setup_instr_with_path() + + instr.component_help("test_for_reading", line_length=90) + # This call creates a dummy component and calls its + # show_parameter method which has been tested. Here we + # need to ensure the call is successful, not test all + # output from the call. + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(output[3], " ___ Help test_for_reading " + "_"*63) + + legend = ("|" + + bcolors.BOLD + "optional parameter" + bcolors.ENDC + + "|" + + bcolors.BOLD + bcolors.UNDERLINE + + "required parameter" + + bcolors.ENDC + bcolors.ENDC + + "|" + + bcolors.BOLD + bcolors.OKBLUE + + "default value" + + bcolors.ENDC + bcolors.ENDC + + "|" + + bcolors.BOLD + bcolors.OKGREEN + + "user specified value" + + bcolors.ENDC + bcolors.ENDC + + "|") + + self.assertEqual(output[4], legend) + + par_name = bcolors.BOLD + "radius" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKBLUE + + "0.1" + bcolors.ENDC + bcolors.ENDC) + comment = ("// Radius of circle in (x,y,0) plane where " + + "neutrons are generated.") + self.assertEqual(output[5], + par_name + " = " + value + " [m] " + comment) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_create_component_instance_simple(self, mock_stdout): + """ + Tests successful use of _create_component_instance + + _create_component_instance will make a dynamic subclass of + component with the information from the component files read + from disk. The subclass is saved in a dict for reuse in + case the same component type is requested again. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instr = setup_instr_with_path() + + os.chdir(current_work_dir) + + comp = instr._create_component_instance("test_component", + "test_for_reading") + + self.assertEqual(comp.radius, None) + self.assertIn("radius", comp.parameter_names) + self.assertEqual(comp.parameter_defaults["radius"], 0.1) + self.assertEqual(comp.parameter_types["radius"], "double") + self.assertEqual(comp.parameter_units["radius"], "m") + + comment = ("Radius of circle in (x,y,0) plane where " + + "neutrons are generated.") + self.assertEqual(comp.parameter_comments["radius"], comment) + self.assertEqual(comp.category, "work directory") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_create_component_instance_complex(self, mock_stdout): + """ + Tests successful use of _create_component_instance while using + keyword arguments in creation + + _create_component_instance will make a dynamic subclass of + component with the information from the component files read + from disk. The subclasses is saved in a dict for reuse in + case the same component type is requested again. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instr = setup_instr_with_path() + + os.chdir(current_work_dir) + + # Setting relative to home, should be passed to component + comp = instr._create_component_instance("test_component", + "test_for_reading", + RELATIVE="home") + + self.assertEqual(comp.radius, None) + self.assertIn("radius", comp.parameter_names) + self.assertEqual(comp.parameter_defaults["radius"], 0.1) + self.assertEqual(comp.parameter_types["radius"], "double") + self.assertEqual(comp.parameter_units["radius"], "m") + + comment = ("Radius of circle in (x,y,0) plane where " + + "neutrons are generated.") + self.assertEqual(comp.parameter_comments["radius"], comment) + self.assertEqual(comp.category, "work directory") + + # The keyword arguments of the call should be passed to the + # new instance of the component. This is checked by reading + # the relative attributes which were set to home in the call + self.assertEqual(comp.AT_relative, "RELATIVE home") + self.assertEqual(comp.ROTATED_relative, "RELATIVE home") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_add_component_simple(self, mock_stdout): + """ + Testing add_component in simple case. + + The add_component method adds a new component object to the + instrument and keeps track of its location within the + sequence of components. Normally a new component is added to + the end of the sequence, but the before and after keywords can + be used to select another location. + """ + + instr = setup_instr_with_path() + + comp = instr.add_component("test_component", "test_for_reading") + + self.assertEqual(len(instr.component_list), 1) + self.assertEqual(instr.component_list[0].name, "test_component") + + # Test the resulting object functions as intended + comp.set_GROUP("developers") + self.assertEqual(instr.component_list[0].GROUP, "developers") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_add_component_infer_name(self, mock_stdout): + """ + Testing add_component works when name is left out and inferred + from the name of the python variable in the call. + """ + + instr = setup_instr_with_path() + + test_component = instr.add_component("test_for_reading") + + self.assertEqual(len(instr.component_list), 1) + self.assertEqual(instr.component_list[0].name, "test_component") + + # Test the resulting object functions as intended + test_component.set_GROUP("developers") + self.assertEqual(instr.component_list[0].GROUP, "developers") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_add_component_simple_keyword(self, mock_stdout): + """ + Testing add_component with keyword argument for the component + + The add_component method adds a new component object to the + instrument and keeps track of its location within the + sequence of components. Normally a new component is added to + the end of the sequence, but the before and after keywords can + be used to select another location. Here keyword passing is + tested. + """ + + instr = setup_instr_with_path() + + instr.add_component("test_component", + "test_for_reading", + WHEN="1<2") + + self.assertEqual(len(instr.component_list), 1) + self.assertEqual(instr.component_list[0].name, "test_component") + self.assertEqual(instr.component_list[0].component_name, + "test_for_reading") + + self.assertEqual(instr.component_list[0].WHEN, "WHEN (1<2)") + + def test_add_component_simple_before(self): + """ + Testing add_component with before keyword argument for the method + + The add_component method adds a new component object to the + instrument and keeps track of its location within the + sequence of components. Normally a new component is added to + the end of the sequence, but the before and after keywords can + be used to select another location, here before is tested. + """ + + instr = setup_populated_instr() + + instr.add_component("test_component", + "test_for_reading", + before="first_component") + + self.assertEqual(len(instr.component_list), 4) + self.assertEqual(instr.component_list[0].name, "test_component") + self.assertEqual(instr.component_list[3].name, "third_component") + + def test_add_component_simple_after(self): + """ + Testing add_component with after keyword argument for the method + + The add_component method adds a new component object to the + instrument and keeps track of its location within the + sequence of components. Normally a new component is added to + the end of the sequence, but the before and after keywords can + be used to select another location, here after is tested. + """ + + instr = setup_populated_instr() + + instr.add_component("test_component", + "test_for_reading", + after="first_component") + + self.assertEqual(len(instr.component_list), 4) + self.assertEqual(instr.component_list[1].name, "test_component") + self.assertEqual(instr.component_list[3].name, "third_component") + + def test_add_component_simple_after_error(self): + """ + Checks add_component raises a NameError if after keyword specifies a + non-existent component + + The add_component method adds a new component object to the + instrument and keeps track of its location within the + sequence of components. Normally a new component is added to + the end of the sequence, but the before and after keywords can + be used to select another location, here before is tested. + """ + + instr = setup_populated_instr() + + with self.assertRaises(NameError): + instr.add_component("test_component", + "test_for_reading", + after="non_existent_component") + + def test_add_component_simple_before_error(self): + """ + Checks add_component raises a NameError if before keyword specifies a + non-existent component + + The add_component method adds a new component object to the + instrument and keeps track of its location within the + sequence of components. Normally a new component is added to + the end of the sequence, but the before and after keywords can + be used to select another location, here after is tested. + """ + + instr = setup_populated_instr() + + with self.assertRaises(NameError): + instr.add_component("test_component", + "test_for_reading", + before="non_existent_component") + + def test_add_component_simple_double_naming_error(self): + """ + This tests checks that an error occurs when giving a new + component a name which has already been used. + """ + + instr = setup_populated_instr() + + with self.assertRaises(NameError): + instr.add_component("first_component", "test_for_reading") + + def test_copy_component_simple(self): + """ + Checks that a component can be copied using the name + """ + + instr = setup_populated_with_some_options_instr() + + comp = instr.copy_component("copy_of_second_comp", "second_component") + + self.assertEqual(comp.name, "copy_of_second_comp") + self.assertEqual(comp.yheight, 1.23) + self.assertEqual(comp.AT_data[0], 0) + self.assertEqual(comp.AT_data[1], 0) + self.assertEqual(comp.AT_data[2], 2) + + def test_infer_copy_component_simple(self): + """ + Checks that a component can be copied using the name + while giving the new instance name as the python variable + """ + + instr = setup_populated_with_some_options_instr() + + copy_of_second_comp = instr.copy_component("second_component") + + self.assertEqual(copy_of_second_comp.name, "copy_of_second_comp") + self.assertEqual(copy_of_second_comp.yheight, 1.23) + self.assertEqual(copy_of_second_comp.AT_data[0], 0) + self.assertEqual(copy_of_second_comp.AT_data[1], 0) + self.assertEqual(copy_of_second_comp.AT_data[2], 2) + + def test_copy_component_simple_fail(self): + """ + Checks a NameError is raised if trying to copy a component that does + not exist + """ + + instr = setup_populated_with_some_options_instr() + + with self.assertRaises(NameError): + instr.copy_component("copy_of_second_comp", "unknown_component") + + def test_copy_component_simple_object(self): + """ + Checks that a component can be copied using the object + """ + + instr = setup_populated_with_some_options_instr() + + comp = instr.get_component("second_component") + + comp = instr.copy_component("copy_of_second_comp", comp) + + self.assertEqual(comp.name, "copy_of_second_comp") + self.assertEqual(comp.yheight, 1.23) + self.assertEqual(comp.AT_data[0], 0) + self.assertEqual(comp.AT_data[1], 0) + self.assertEqual(comp.AT_data[2], 2) + + def test_copy_component_keywords(self): + """ + Checks that a component can be copied and that keyword + arguments given under copy operation is successfully + applied to the new component. A check is also made to + ensure that the original component was not modified. + """ + + instr = setup_populated_with_some_options_instr() + + comp = instr.copy_component("copy_of_second_comp", "second_component", + AT=[1, 2, 3], SPLIT=10) + + self.assertEqual(comp.name, "copy_of_second_comp") + self.assertEqual(comp.yheight, 1.23) + self.assertEqual(comp.AT_data[0], 1) + self.assertEqual(comp.AT_data[1], 2) + self.assertEqual(comp.AT_data[2], 3) + self.assertEqual(comp.SPLIT, 10) + + # ensure original component was not changed + original = instr.get_component("second_component") + self.assertEqual(original.name, "second_component") + self.assertEqual(original.yheight, 1.23) + self.assertEqual(original.AT_data[0], 0) + self.assertEqual(original.AT_data[1], 0) + self.assertEqual(original.AT_data[2], 2) + self.assertEqual(original.SPLIT, 0) + + def test_remove_component(self): + """ + Ensure a component can be removed + """ + instr = setup_populated_instr() + + instr.remove_component("second_component") + + self.assertEqual(len(instr.component_list), 2) + self.assertEqual(instr.component_list[0].name, "first_component") + self.assertEqual(instr.component_list[1].name, "third_component") + + def test_move_component(self): + """ + Ensure a component can be moved + """ + instr = setup_populated_instr() + + instr.move_component("second_component", before="first_component") + + self.assertEqual(len(instr.component_list), 3) + self.assertEqual(instr.component_list[0].name, "second_component") + self.assertEqual(instr.component_list[1].name, "first_component") + self.assertEqual(instr.component_list[2].name, "third_component") + + def test_RELATIVE_error(self): + """ + Ensure check_for_errors finds impossible relative statement + """ + + instr = setup_populated_instr() + + second_component = instr.get_component("second_component") + second_component.set_AT([0, 0, 0], RELATIVE="third_component") + + self.assertTrue(instr.has_errors()) + + with self.assertRaises(McStasError): + instr.check_for_errors() + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_RELATIVE_error_and_checks_false(self, mock_f): + """ + Ensure check_for_errors finds impossible relative statement + """ + + instr = setup_populated_instr() + + second_component = instr.get_component("second_component") + second_component.set_AT([0, 0, 0], RELATIVE="third_component") + + self.assertTrue(instr.has_errors()) + + with self.assertRaises(McStasError): + instr.write_full_instrument() + + instr.settings(checks=False) + instr.write_full_instrument() + + def test_get_component_simple(self): + """ + get_component retrieves a component with a given name for + easier manipulation. Check it works as intended. + """ + + instr = setup_populated_instr() + + comp = instr.get_component("second_component") + + self.assertEqual(comp.name, "second_component") + + def test_get_component_simple_error(self): + """ + get_component retrieves a component with a given name for + easier manipulation. Check it fails when the component name + doesn't correspond to a component in the instrument. + """ + + instr = setup_populated_instr() + + with self.assertRaises(NameError): + instr.get_component("non_existing_component") + + def test_get_last_component_simple(self): + """ + Check get_last_component retrieves the last component + """ + + instr = setup_populated_instr() + + comp = instr.get_last_component() + + self.assertEqual(comp.name, "third_component") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_print_component(self, mock_stdout): + """ + print_component calls the print_long method in the component + class. + """ + + instr = setup_populated_instr() + instr.get_component("second_component").set_parameters(dist=5) + + instr.print_component("second_component") + + output = mock_stdout.getvalue().split("\n") + + self.assertEqual(output[0], + "COMPONENT second_component = test_for_reading(") + + par_name = bcolors.BOLD + "dist" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKGREEN + + "5" + bcolors.ENDC + bcolors.ENDC) + self.assertEqual(output[1], " " + par_name + " = " + value + " // [m]") + + par_name = bcolors.BOLD + "gauss" + bcolors.ENDC + warning = (bcolors.FAIL + + " : Required parameter not yet specified" + + bcolors.ENDC) + self.assertEqual(output[2], " " + par_name + warning) + + par_name = bcolors.BOLD + "test_string" + bcolors.ENDC + warning = (bcolors.FAIL + + " : Required parameter not yet specified" + + bcolors.ENDC) + self.assertEqual(output[3], " " + par_name + warning) + + self.assertEqual(output[4], ")") + self.assertEqual(output[5], "AT (0, 0, 0) ABSOLUTE") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_print_component_short(self, mock_stdout): + """ + print_component_short calls the print_short method in the + component class. + """ + + instr = setup_populated_instr() + instr.get_component("second_component").set_AT([-1, 2, 3.4], + RELATIVE="home") + + instr.print_component_short("second_component") + + output = mock_stdout.getvalue().split("\n") + + expected = ("second_component = test_for_reading " + + "\tAT [-1, 2, 3.4] RELATIVE home " + + "ROTATED [0, 0, 0] RELATIVE home") + + self.assertEqual(output[0], expected) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_show_components_simple(self, mock_stdout): + """ + Tests show_components for simple case + + show_components calls the print_short method in the component + class for each component and aligns the data for display + """ + + instr = setup_populated_instr() + + instr.show_components(line_length=300) + + output = mock_stdout.getvalue().split("\n") + + expected = ("first_component test_for_reading" + + " AT (0, 0, 0) ABSOLUTE") + self.assertEqual(output[0], expected) + + expected = ("second_component test_for_reading" + + " AT (0, 0, 0) ABSOLUTE") + self.assertEqual(output[1], expected) + + expected = ("third_component test_for_reading" + + " AT (0, 0, 0) ABSOLUTE") + self.assertEqual(output[2], expected) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_show_components_complex(self, mock_stdout): + """ + Tests show_components for complex case + + show_components calls the print_short method in the component + class for each component and aligns the data for display + """ + + instr = setup_populated_instr() + + instr.get_component("first_component").set_AT([-0.1, 12, "dist"], + RELATIVE="home") + instr.get_component("second_component").set_ROTATED([-4, 0.001, "theta"], + RELATIVE="etc") + comp = instr.get_last_component() + comp.component_name = "test_name" + + instr.show_components(line_length=300) + + output = mock_stdout.getvalue().split("\n") + + expected = ("first_component test_for_reading" + + " AT (-0.1, 12, dist) RELATIVE home") + self.assertEqual(output[0], expected) + + expected = ("second_component test_for_reading" + + " AT (0, 0, 0) ABSOLUTE" + + " ROTATED (-4, 0.001, theta) RELATIVE etc") + self.assertEqual(output[1], expected) + + expected = ("third_component test_name" + + " AT (0, 0, 0) ABSOLUTE ") + self.assertEqual(output[2], expected) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_show_components_complex_2lines(self, mock_stdout): + """ + show_components calls the print_short method in the component + class for each component and aligns the data for display + + This version of the tests forces two lines of output. + """ + + instr = setup_populated_instr() + + instr.get_component("first_component").set_AT([-0.1, 12, "dist"], + RELATIVE="home") + instr.get_component("second_component").set_ROTATED([-4, 0.001, "theta"], + RELATIVE="etc") + comp = instr.get_last_component() + comp.component_name = "test_name" + + instr.show_components(line_length=80) + + output = mock_stdout.getvalue().split("\n") + + expected = ("first_component test_for_reading" + + " AT (-0.1, 12, dist) RELATIVE home") + self.assertEqual(output[0], expected) + + expected = ("second_component test_for_reading" + + " AT (0, 0, 0) ABSOLUTE ") + self.assertEqual(output[1], expected) + + expected = (" " + + " ROTATED (-4, 0.001, theta) RELATIVE etc") + self.assertEqual(output[2], expected) + + expected = ("third_component test_name " + + " AT (0, 0, 0) ABSOLUTE ") + self.assertEqual(output[3], expected) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_show_components_complex_3lines(self, mock_stdout): + """ + show_components calls the print_short method in the component + class for each component and aligns the data for display + + This version of the tests forces three lines of output. + """ + + instr = setup_populated_instr() + + instr.get_component("first_component").set_AT([-0.1, 12, "dist"], + RELATIVE="home") + instr.get_component("second_component").set_ROTATED([-4, 0.001, "theta"], + RELATIVE="etc") + comp = instr.get_last_component() + comp.component_name = "test_name" + + instr.show_components(line_length=1) # Three lines maximum + + output = mock_stdout.getvalue().split("\n") + + expected = (bcolors.BOLD + + "first_component" + + bcolors.ENDC + + " " + + bcolors.BOLD + + "test_for_reading" + + bcolors.ENDC + + " ") + self.assertEqual(output[0], expected) + + expected = " AT (-0.1, 12, dist) RELATIVE home" + self.assertEqual(output[1], expected) + + expected = (bcolors.BOLD + + "second_component" + + bcolors.ENDC + + " " + + bcolors.BOLD + + "test_for_reading" + + bcolors.ENDC + + " ") + self.assertEqual(output[2], expected) + + expected = " AT (0, 0, 0) ABSOLUTE " + self.assertEqual(output[3], expected) + + expected = " ROTATED (-4, 0.001, theta) RELATIVE etc" + self.assertEqual(output[4], expected) + + expected = (bcolors.BOLD + + "third_component" + + bcolors.ENDC + + " " + + bcolors.BOLD + + "test_name" + + bcolors.ENDC + + " ") + self.assertEqual(output[5], expected) + + expected = " AT (0, 0, 0) ABSOLUTE" + self.assertEqual(output[6], expected) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_write_c_files_simple(self, mock_f): + """ + Write_c_files writes the strings for declare, initialize, + and trace to files that are then included in McStas files. + This is an obsolete method, but may be repurposed later + so that instrument parts can be created with the modern + syntax. + + The generated includes file in the test directory is written + by this test. It will fail if it does not have rights to + create the directory. + """ + + instr = setup_populated_instr() + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + current_directory = os.getcwd() + os.chdir(THIS_DIR) + + try: + instr.write_c_files() + finally: + os.chdir(current_directory) + + base_path = os.path.join(".", "generated_includes") + expected_path = os.path.join(base_path, "test_instrument_declare.c") + mock_f.assert_any_call(expected_path, "w") + mock_f.assert_any_call(expected_path, "a") + + expected_path = os.path.join(base_path, "test_instrument_initialize.c") + mock_f.assert_any_call(expected_path, "w") + + expected_path = os.path.join(base_path, "test_instrument_trace.c") + mock_f.assert_any_call(expected_path, "w") + + expected_path = os.path.join(base_path, "test_instrument_component_trace.c") + mock_f.assert_any_call(expected_path, "w") + + # This does not check that the right thing is written to the + # right file. Can be improved by splitting the method into + # several for easier testing. Acceptable since it is rarely + # used. + handle = mock_f() + call = unittest.mock.call + wrts = [ + call("// declare section for test_instrument \n"), + call("double two_theta;"), + call("\n"), + call("// Start of initialize for generated test_instrument\n" + + "two_theta = 2.0*theta;\n"), + call("// Start of trace section for generated test_instrument\n"), + call("COMPONENT first_component = test_for_reading("), + call(")\n"), + call("AT (0, 0, 0)"), + call(" ABSOLUTE\n"), + call("\n"), + call("COMPONENT second_component = test_for_reading("), + call(")\n"), + call("AT (0, 0, 0)"), + call(" ABSOLUTE\n"), + call("\n"), + call("COMPONENT third_component = test_for_reading("), + call(")\n"), + call("AT (0, 0, 0)"), + call(" ABSOLUTE\n"), + call("\n")] + + for c, w in zip(handle.write.call_args_list, wrts): + assert(c == w) + + handle.write.assert_has_calls(wrts, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + @unittest.mock.patch('datetime.datetime') + def test_write_full_instrument_simple(self, mock_datetime, mock_f): + """ + The write_full_instrument method write the information + contained in the instrument instance to a file with McStas + syntax. + + The test includes a time stamp in the written and expected + data that has an accuracy of 1 second. It is unlikely to fail + due to this, but it can happen. + """ + + # Fix datetime for call + fixed_datetime = datetime.datetime(2023, 12, 14, 12, 44, 21) + mock_datetime.now.return_value = fixed_datetime + + instr = setup_populated_instr() + instr.write_full_instrument() + + t_format = "%H:%M:%S on %B %d, %Y" + + my_call = unittest.mock.call + wrts = [ + my_call("/" + 80*"*" + "\n"), + my_call("* \n"), + my_call("* McStas, neutron ray-tracing package\n"), + my_call("* Copyright (C) 1997-2008, All rights reserved\n"), + my_call("* Risoe National Laboratory, Roskilde, Denmark\n"), + my_call("* Institut Laue Langevin, Grenoble, France\n"), + my_call("* \n"), + my_call("* This file was written by McStasScript, which is a \n"), + my_call("* python based McStas instrument generator written by \n"), + my_call("* Mads Bertelsen in 2019 while employed at the \n"), + my_call("* European Spallation Source Data Management and \n"), + my_call("* Software Centre\n"), + my_call("* \n"), + my_call("* Instrument: test_instrument\n"), + my_call("* \n"), + my_call("* %Identification\n"), + my_call("* Written by: Python McStas Instrument Generator\n"), + my_call("* Date: %s\n" % fixed_datetime.strftime(t_format)), + my_call("* Origin: ESS DMSC\n"), + my_call("* %INSTRUMENT_SITE: Generated_instruments\n"), + my_call("* \n"), + my_call("* !!Please write a short instrument description (1 line) here!!\n"), + my_call("* \n"), + my_call('* %Description\n'), + my_call('* Please write a longer instrument description here!\n'), + my_call('* \n'), + my_call('* \n'), + my_call("* %Parameters\n"), + my_call('* theta: [unit] \n'), + my_call('* has_default: [unit] \n'), + my_call('* \n'), + my_call('* %Link \n'), + my_call("* \n"), + my_call("* %End \n"), + my_call("*"*80 + "/\n"), + my_call("\n"), + my_call("DEFINE INSTRUMENT test_instrument ("), + my_call("\n"), + my_call("double theta"), + my_call(", "), + my_call(""), + my_call("\n"), + my_call("double has_default"), + my_call(" = 37"), + my_call(" "), + my_call(""), + my_call("\n"), + my_call(")\n"), + my_call("\n"), + my_call("DECLARE \n%{\n"), + my_call("double two_theta;"), + my_call("\n"), + my_call("%}\n\n"), + my_call("INITIALIZE \n%{\n"), + my_call("// Start of initialize for generated test_instrument\n" + + "two_theta = 2.0*theta;\n"), + my_call("%}\n\n"), + my_call("TRACE \n"), + my_call("COMPONENT first_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("COMPONENT second_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("COMPONENT third_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("FINALLY \n%{\n"), + my_call("// Start of finally for generated test_instrument\n"), + my_call("%}\n"), + my_call("\nEND\n")] + + expected_path = os.path.join(".", "test_instrument.instr") + mock_f.assert_called_with(expected_path, "w") + handle = mock_f() + handle.write.assert_has_calls(wrts, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_write_full_instrument_dependency(self, mock_f): + """ + The write_full_instrument method write the information + contained in the instrument instance to a file with McStas + syntax. Here tested with the dependency section enabled. + + The test includes a time stamp in the written and expected + data that has an accuracy of 1 second. It is unlikely to fail + due to this, but it can happen. + """ + + instr = setup_populated_instr() + instr.set_dependency("-DMCPLPATH=GETPATH(data)") + instr.write_full_instrument() + + t_format = "%H:%M:%S on %B %d, %Y" + + my_call = unittest.mock.call + wrts = [ + my_call("/" + 80 * "*" + "\n"), + my_call("* \n"), + my_call("* McStas, neutron ray-tracing package\n"), + my_call("* Copyright (C) 1997-2008, All rights reserved\n"), + my_call("* Risoe National Laboratory, Roskilde, Denmark\n"), + my_call("* Institut Laue Langevin, Grenoble, France\n"), + my_call("* \n"), + my_call("* This file was written by McStasScript, which is a \n"), + my_call("* python based McStas instrument generator written by \n"), + my_call("* Mads Bertelsen in 2019 while employed at the \n"), + my_call("* European Spallation Source Data Management and \n"), + my_call("* Software Centre\n"), + my_call("* \n"), + my_call("* Instrument: test_instrument\n"), + my_call("* \n"), + my_call("* %Identification\n"), + my_call("* Written by: Python McStas Instrument Generator\n"), + my_call("* Date: %s\n" % datetime.datetime.now().strftime(t_format)), + my_call("* Origin: ESS DMSC\n"), + my_call("* %INSTRUMENT_SITE: Generated_instruments\n"), + my_call("* \n"), + my_call("* !!Please write a short instrument description (1 line) here!!\n"), + my_call("* \n"), + my_call('* %Description\n'), + my_call('* Please write a longer instrument description here!\n'), + my_call('* \n'), + my_call('* \n'), + my_call("* %Parameters\n"), + my_call('* theta: [unit] \n'), + my_call('* has_default: [unit] \n'), + my_call('* \n'), + my_call('* %Link \n'), + my_call("* \n"), + my_call("* %End \n"), + my_call("*" * 80 + "/\n"), + my_call("\n"), + my_call("DEFINE INSTRUMENT test_instrument ("), + my_call("\n"), + my_call("double theta"), + my_call(", "), + my_call(""), + my_call("\n"), + my_call("double has_default"), + my_call(" = 37"), + my_call(" "), + my_call(""), + my_call("\n"), + my_call(")\n"), + my_call('DEPENDENCY "-DMCPLPATH=GETPATH(data)"\n'), + my_call("\n"), + my_call("DECLARE \n%{\n"), + my_call("double two_theta;"), + my_call("\n"), + my_call("%}\n\n"), + my_call("INITIALIZE \n%{\n"), + my_call("// Start of initialize for generated test_instrument\n" + + "two_theta = 2.0*theta;\n"), + my_call("%}\n\n"), + my_call("TRACE \n"), + my_call("COMPONENT first_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("COMPONENT second_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("COMPONENT third_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("FINALLY \n%{\n"), + my_call("// Start of finally for generated test_instrument\n"), + my_call("%}\n"), + my_call("\nEND\n")] + + expected_path = os.path.join(".", "test_instrument.instr") + mock_f.assert_called_with(expected_path, "w") + handle = mock_f() + for c, w in zip(handle.write.call_args_list, wrts): + assert(c == w) + handle.write.assert_has_calls(wrts, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_write_full_instrument_search(self, mock_f): + """ + The write_full_instrument method write the information + contained in the instrument instance to a file with McStas + syntax. Here tested with the search section enabled. + + The test includes a time stamp in the written and expected + data that has an accuracy of 1 second. It is unlikely to fail + due to this, but it can happen. + """ + + instr = setup_populated_instr() + instr.add_search("first_search") + instr.add_search("second search", SHELL=True) + instr.write_full_instrument() + + t_format = "%H:%M:%S on %B %d, %Y" + + my_call = unittest.mock.call + wrts = [ + my_call("/" + 80 * "*" + "\n"), + my_call("* \n"), + my_call("* McStas, neutron ray-tracing package\n"), + my_call("* Copyright (C) 1997-2008, All rights reserved\n"), + my_call("* Risoe National Laboratory, Roskilde, Denmark\n"), + my_call("* Institut Laue Langevin, Grenoble, France\n"), + my_call("* \n"), + my_call("* This file was written by McStasScript, which is a \n"), + my_call("* python based McStas instrument generator written by \n"), + my_call("* Mads Bertelsen in 2019 while employed at the \n"), + my_call("* European Spallation Source Data Management and \n"), + my_call("* Software Centre\n"), + my_call("* \n"), + my_call("* Instrument: test_instrument\n"), + my_call("* \n"), + my_call("* %Identification\n"), + my_call("* Written by: Python McStas Instrument Generator\n"), + my_call("* Date: %s\n" % datetime.datetime.now().strftime(t_format)), + my_call("* Origin: ESS DMSC\n"), + my_call("* %INSTRUMENT_SITE: Generated_instruments\n"), + my_call("* \n"), + my_call("* !!Please write a short instrument description (1 line) here!!\n"), + my_call("* \n"), + my_call('* %Description\n'), + my_call('* Please write a longer instrument description here!\n'), + my_call('* \n'), + my_call('* \n'), + my_call("* %Parameters\n"), + my_call('* theta: [unit] \n'), + my_call('* has_default: [unit] \n'), + my_call('* \n'), + my_call('* %Link \n'), + my_call("* \n"), + my_call("* %End \n"), + my_call("*" * 80 + "/\n"), + my_call("\n"), + my_call("DEFINE INSTRUMENT test_instrument ("), + my_call("\n"), + my_call("double theta"), + my_call(", "), + my_call(""), + my_call("\n"), + my_call("double has_default"), + my_call(" = 37"), + my_call(" "), + my_call(""), + my_call("\n"), + my_call(")\n"), + my_call("\n"), + my_call("DECLARE \n%{\n"), + my_call("double two_theta;"), + my_call("\n"), + my_call("%}\n\n"), + my_call("INITIALIZE \n%{\n"), + my_call("// Start of initialize for generated test_instrument\n" + + "two_theta = 2.0*theta;\n"), + my_call("%}\n\n"), + my_call("TRACE \n"), + my_call('SEARCH "first_search"\n'), + my_call('SEARCH SHELL "second search"\n'), + my_call("COMPONENT first_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("COMPONENT second_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("COMPONENT third_component = test_for_reading("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n"), + my_call("FINALLY \n%{\n"), + my_call("// Start of finally for generated test_instrument\n"), + my_call("%}\n"), + my_call("\nEND\n")] + + expected_path = os.path.join(".", "test_instrument.instr") + mock_f.assert_called_with(expected_path, "w") + handle = mock_f() + handle.write.assert_has_calls(wrts, any_order=False) + + # mock sys.stdout to avoid printing to terminal + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_run_full_instrument_required_par_error(self, mock_stdout): + """ + Tests run_full_instrument raises error when lacking required parameter + + The populated instr has a required parameter, and when not + given it should raise an error. + """ + instr = setup_populated_instr() + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with self.assertRaises(NameError): + instr.run_full_instrument(output_path="test_data_set", + increment_folder_name=False, + executable_path=executable_path) + + def test_run_full_instrument_junk_par_error(self): + """ + Check run_full_instrument raises a NameError if a unrecognized + parameter is provided, here junk. + """ + instr = setup_populated_instr() + + pars = {"theta": 2, "junk": "test"} + + with self.assertRaises(KeyError): + instr.run_full_instrument(output_path="test_data_set", + increment_folder_name=False, + parameters=pars) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + @unittest.mock.patch("subprocess.run") + def test_x_ray_run_full_instrument_basic(self, mock_sub, mock_stdout): + """ + Tests x-ray run_full_instrument + + Check a simple run performs the correct system call. Here + the output_path is set to a name that does not correspond to a + existing file so no error is thrown. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + new_folder_name = "folder_name_which_is_unused" + if os.path.exists(new_folder_name): + raise RuntimeError("Folder_name was supposed to not " + + "exist before " + + "test_run_backengine_basic") + + instr = setup_populated_x_ray_instr_with_dummy_path() + instr.run_full_instrument(output_path=new_folder_name, + increment_folder_name=False, + executable_path=executable_path, + parameters={"theta": 1}) + + expected_path = os.path.join(executable_path, "mxrun") + expected_path = '"' + expected_path + '"' + + expected_folder_path = os.path.join(THIS_DIR, new_folder_name) + + # a double space because of a missing option + expected_call = (expected_path + " -c -n 1000000 " + + "-d " + expected_folder_path + + " test_instrument.instr" + + " theta=1 has_default=37") + + expected_run_path = os.path.join(THIS_DIR, ".") + + mock_sub.assert_called_with(expected_call, + shell=True, + cwd=expected_run_path, + stderr=-2, stdout=-1, + universal_newlines=True) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_run_backengine_existing_folder(self, mock_stdout): + """ + Test neutron run of backengine fails if using existing folder + for output_path and with increment_folder_name disabled. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + instr = setup_populated_instr_with_dummy_path() + + instr.set_parameters({"theta": 1}) + instr.settings(output_path="test_data_set", + increment_folder_name=False, + executable_path=executable_path) + + with self.assertRaises(NameError): + instr.backengine() + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + @unittest.mock.patch("subprocess.run") + def test_run_backengine_basic(self, mock_sub, mock_stdout): + """ + Test neutron run_full_instrument + + Check a simple run performs the correct system call. Here + the output_path is set to a name that does not correspond to a + existing file so no error is thrown. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + new_folder_name = "folder_name_which_is_unused" + if os.path.exists(new_folder_name): + raise RuntimeError("Folder_name was supposed to not " + + "exist before " + + "test_run_backengine_basic") + + instr = setup_populated_instr_with_dummy_path() + + instr.set_parameters({"theta": 1}) + instr.settings(output_path=new_folder_name, + increment_folder_name=True, + executable_path=executable_path) + instr.backengine() + + expected_path = os.path.join(executable_path, "mcrun") + expected_path = '"' + expected_path + '"' + + expected_folder_path = os.path.join(THIS_DIR, new_folder_name) + + # a double space because of a missing option + expected_call = (expected_path + " -c -n 1000000 " + + "-d " + expected_folder_path + + " test_instrument.instr" + + " theta=1 has_default=37") + + mock_sub.assert_called_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=run_path) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + @unittest.mock.patch("subprocess.run") + def test_run_backengine_complex_settings(self, mock_sub, mock_stdout): + """ + Test settings are passed to backengine with complex settings + + Check run performs the correct system call with settings. Here + the output_path is set to a name that does not correspond to a + existing file so no error is thrown. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + new_folder_name = "folder_name_which_is_unused" + if os.path.exists(new_folder_name): + raise RuntimeError("Folder_name was supposed to not " + + "exist before " + + "test_run_backengine_basic") + + instr = setup_populated_instr_with_dummy_path() + + instr.set_parameters({"theta": 1}) + instr.settings(output_path=new_folder_name, + increment_folder_name=True, + executable_path=executable_path, + mpi=5, ncount=19373, openacc=True, + NeXus=True, force_compile=False, + seed=300, gravity=True, checks=False, + save_comp_pars=True) + instr.backengine() + + expected_path = os.path.join(executable_path, "mcrun") + expected_path = '"' + expected_path + '"' + + expected_folder_path = os.path.join(THIS_DIR, new_folder_name) + + # a double space because of a missing option + expected_call = (expected_path + " -g --format=NeXus " + + "--openacc " + + "-n 19373 --mpi=5 --seed=300 " + + "-d " + expected_folder_path + + " test_instrument.instr" + + " theta=1 has_default=37") + + mock_sub.assert_called_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=run_path) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + @unittest.mock.patch("subprocess.run") + def test_run_full_instrument_complex(self, mock_sub, mock_stdout): + """ + Test neutron run_full_instrument in more complex case + + Check a complex run performs the correct system call. Here + the output_path is set to a name that does not correspond to a + existing file so no error is thrown. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + new_folder_name = "folder_name_which_is_unused" + if os.path.exists(new_folder_name): + raise RuntimeError("Folder_name was supposed to not " + + "exist before " + + "test_run_backengine_basic") + + instr = setup_populated_instr_with_dummy_path() + + # Add some extra parameters for testing + instr.add_parameter("A") + instr.add_parameter("BC") + + instr.run_full_instrument(output_path=new_folder_name, + increment_folder_name=False, + executable_path=executable_path, + mpi=7, + seed=300, + ncount=48.4, + gravity=True, + custom_flags="-fo", + parameters={"A": 2, + "BC": "car", + "theta": "\"toy\""}) + + expected_path = os.path.join(executable_path, "mcrun") + expected_path = '"' + expected_path + '"' + expected_folder_path = os.path.join(THIS_DIR, new_folder_name) + + # a double space because of a missing option + expected_call = (expected_path + " -c -g -n 48 --mpi=7 --seed=300 " + + "-d " + expected_folder_path + + " -fo test_instrument.instr " + + "theta=\"toy\" has_default=37 A=2 BC=car") + + mock_sub.assert_called_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=run_path) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + @unittest.mock.patch("subprocess.run") + def test_run_full_instrument_overwrite_default(self, mock_sub, + mock_stdout): + """ + Check that default parameters are overwritten by given + parameters in run_full_instrument. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + new_folder_name = "folder_name_which_is_unused" + if os.path.exists(new_folder_name): + raise RuntimeError("Folder_name was supposed to not " + + "exist before " + + "test_run_backengine_basic") + + instr = setup_populated_instr_with_dummy_path() + + # Add some extra parameters for testing + instr.add_parameter("A") + instr.add_parameter("BC") + + instr.run_full_instrument(output_path=new_folder_name, + increment_folder_name=False, + executable_path=executable_path, + mpi=7, + ncount=48.4, + custom_flags="-fo", + parameters={"A": 2, + "BC": "car", + "theta": "\"toy\"", + "has_default": 10}) + + expected_path = os.path.join(executable_path, "mcrun") + expected_path = '"' + expected_path + '"' + expected_folder_path = os.path.join(THIS_DIR, new_folder_name) + + # a double space because of a missing option + expected_call = (expected_path + " -c -n 48 --mpi=7 " + + "-d " + expected_folder_path + + " -fo test_instrument.instr " + + "theta=\"toy\" has_default=10 A=2 BC=car") + + mock_sub.assert_called_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=run_path) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + @unittest.mock.patch("subprocess.run") + def test_run_full_instrument_x_ray_basic(self, mock_sub, mock_stdout): + """ + Test x-ray run_full_instrument + + Check a simple run performs the correct system call. Here + the output_path is set to a name that does not correspond to a + existing file so no error is thrown. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + new_folder_name = "folder_name_which_is_unused" + if os.path.exists(new_folder_name): + raise RuntimeError("Folder_name was supposed to not " + + "exist before " + + "test_run_backengine_basic") + + instr = setup_populated_x_ray_instr_with_dummy_path() + + instr.run_full_instrument(output_path=new_folder_name, + increment_folder_name=False, + executable_path=executable_path, + parameters={"theta": 1}) + + expected_path = os.path.join(executable_path, "mxrun") + expected_path = '"' + expected_path + '"' + expected_folder_path = os.path.join(THIS_DIR, new_folder_name) + + # a double space because of a missing option + expected_call = (expected_path + " -c -n 1000000 " + + "-d " + expected_folder_path + + " test_instrument.instr" + + " theta=1 has_default=37") + + mock_sub.assert_called_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=run_path) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + @unittest.mock.patch("subprocess.run") + def test_show_instrument_basic(self, mock_sub, mock_stdout): + """ + Test show_instrument methods makes correct system calls + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instr = setup_populated_instr_with_dummy_path() + + instr.set_parameters(theta=1.2) + instr.show_instrument() + + os.chdir(current_work_dir) + + expected_path = os.path.join(executable_path, "bin", "mcdisplay-webgl-classic") + expected_path = '"' + expected_path + '"' + expected_instr_path = os.path.join(THIS_DIR, "test_instrument.instr") + + # a double space because of a missing option + expected_call = (expected_path + + " --dirname test_instrument_mcdisplay" + + " " + expected_instr_path + + " theta=1.2 has_default=37") + + mock_sub.assert_called_with(expected_call, + shell=True, + stderr=-1, stdout=-1, + universal_newlines=True, + cwd=".") + + def test_show_dumps_works(self): + """ + Ensures show_dumps runs + """ + + instr = setup_populated_instr_with_dummy_MCPL_comps() + insert_mock_dump(instr, "second_component") + + instr.show_dumps() + + def test_show_dump_works(self): + """ + Ensures show_dump runs and that db can get the stored dump + """ + + instr = setup_populated_instr_with_dummy_MCPL_comps() + insert_mock_dump(instr, "second_component", run_name="custom_run", tag=31) + + instr.show_dump("second_component", "custom_run", 31) + + dump = instr.dump_database.get_dump("second_component", "custom_run", 31) + self.assertEqual(dump.data["dump_point"], "second_component") + self.assertEqual(dump.data["run_name"], "custom_run") + self.assertEqual(dump.data["tag"], 31) + + def test_set_run_to_component(self): + """ + Testing run_to method updates instr state correctly + """ + + instr = setup_populated_instr_with_dummy_MCPL_comps() + + second_component = instr.get_component("second_component") + + # Ensure remaining instrument can work + third_component = instr.get_component("third_component") + third_component.set_RELATIVE("second_component") + + instr.run_to(second_component) + + self.assertEqual(instr.run_from_ref, None) + self.assertEqual(instr.run_to_ref, "second_component") + self.assertEqual(instr.run_to_name, "Run") + + # Check filename added to parameters + self.assertTrue("run_to_mcpl" in instr.parameters.parameters) + self.assertEqual(instr.parameters.parameters["run_to_mcpl"].type, "string") + + instr.run_to("third_component", run_name="Test_name") + self.assertEqual(instr.run_to_ref, "third_component") + self.assertEqual(instr.run_to_name, "Test_name") + + def test_set_run_to_component_keywords(self): + """ + Testing run_to method updates instr state with passed keywords + """ + + instr = setup_populated_instr_with_dummy_MCPL_comps() + + second_component = instr.get_component("second_component") + + # Ensure remaining instrument can work + third_component = instr.get_component("third_component") + third_component.set_RELATIVE("second_component") + + instr.run_to(second_component, test_keyword=58) + + self.assertIn("test_keyword", instr.run_to_component_parameters) + self.assertEqual(instr.run_to_component_parameters["test_keyword"], 58) + + def test_set_run_to_nonexistant_component_fails(self): + """ + Ensures run_to fails if the component doesn't exist + """ + + instr = setup_populated_instr_with_dummy_MCPL_comps() + + with self.assertRaises(ValueError): + instr.run_to("component_that_does_not_exists") + + def test_set_run_to_component_with_ABSOLUTE_in_remaining_fails(self): + """ + Ensures run_to fails if the remaining instrument refers to absolute + """ + instr = setup_populated_instr_with_dummy_MCPL_comps() + + with self.assertRaises(McStasError): + # Fails because the rest of the instrument has reference to ABSOLUTE + instr.run_to("second_component") + + def test_set_run_to_component_with_early_ref_in_remaining_fails(self): + """ + Ensures run_to fails if the remaining instrument refers to absolute + """ + instr = setup_populated_instr_with_dummy_MCPL_comps() + + comp = instr.get_component("third_component") + comp.set_RELATIVE("first_component") + + with self.assertRaises(McStasError): + # Fails because the rest of the instrument has reference to component before split + instr.run_to("second_component") + + def test_set_run_from_component(self): + """ + Testing run_from method updates instr state correctly + """ + instr = setup_populated_instr_with_dummy_MCPL_comps() + + insert_mock_dump(instr, "second_component") + + second_component = instr.get_component("second_component") + + # Ensure remaining instrument can work + third_component = instr.get_component("third_component") + third_component.set_RELATIVE("second_component") + + instr.run_from(second_component) + + self.assertEqual(instr.run_to_ref, None) + self.assertEqual(instr.run_from_ref, "second_component") + + # Check filename added to parameters + self.assertTrue("run_from_mcpl" in instr.parameters.parameters) + self.assertEqual(instr.parameters.parameters["run_from_mcpl"].type, "string") + + def test_set_run_from_component_fails_if_no_dump(self): + """ + Ensure run_from fails if there are no dumps at that location + """ + instr = setup_populated_instr_with_dummy_MCPL_comps() + + with self.assertRaises(KeyError): + instr.run_from("second_component") + + # Also fails if database is populated at a different component + insert_mock_dump(instr, "second_component") + + with self.assertRaises(KeyError): + instr.run_from("first_component") + + def test_set_run_from_component_keywords(self): + """ + Testing run_to method updates instr state with passed keywords + """ + + instr = setup_populated_instr_with_dummy_MCPL_comps() + + insert_mock_dump(instr, "second_component") + + second_component = instr.get_component("second_component") + + # Ensure remaining instrument can work + third_component = instr.get_component("third_component") + third_component.set_RELATIVE("second_component") + + instr.run_from(second_component, test_keyword=37) + + self.assertIn("test_keyword", instr.run_from_component_parameters) + self.assertEqual(instr.run_from_component_parameters["test_keyword"], 37) + + def test_set_run_from_and_run_to(self): + """ + Ensure it is possible to use run_from and run_to, and that reset work + """ + + instr = setup_populated_instr_with_dummy_MCPL_comps() + insert_mock_dump(instr, "second_component") + third_component = instr.get_component("third_component") + third_component.set_RELATIVE("second_component") + + instr.run_from("second_component") + instr.run_to("third_component") + + self.assertEqual(instr.run_from_ref, "second_component") + self.assertEqual(instr.run_to_ref, "third_component") + + instr.reset_run_points() + + self.assertEqual(instr.run_from_ref, None) + self.assertEqual(instr.run_to_ref, None) + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_Instr_reader.py b/mcstasscript/tests/test_Instr_reader.py new file mode 100644 index 00000000..390c8ec3 --- /dev/null +++ b/mcstasscript/tests/test_Instr_reader.py @@ -0,0 +1,424 @@ +import os +import sys +import unittest + +from mcstasscript.interface import instr +from mcstasscript.instr_reader import control + + +def blockPrint(): + """ + Disables print capability + """ + sys.stdout = open(os.devnull, 'w') + + +def enablePrint(): + """ + Restores print capability + """ + sys.stdout = sys.__stdout__ + + +def set_dummy_dir(): + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + os.chdir(os.path.join(THIS_DIR, "dummy_instrument_folder")) + + +def setup_standard(Instr): + set_dummy_dir() + filename = "Union_demonstration_test.instr" + InstrReader = control.InstrumentReader(filename) + InstrReader.add_to_instr(Instr) + + return InstrReader + + +def setup_standard_auto_instr(): + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + + return setup_standard(Instr) + + +class TestInstrReader(unittest.TestCase): + + def test_read_instrument_name(self): + """ + Check if the instrument name is read correctly + """ + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + + filename = "Union_demonstration_test.instr" + InstrReader = control.InstrumentReader(filename) + InstrReader.add_to_instr(Instr) + + self.assertEqual(InstrReader.instr_name, "Union_demonstration") + + def test_read_input_parameter(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + parameter_list = list(Instr.parameters) + + self.assertEqual(parameter_list[0].name, "stick_displacement") + # space in type inserted for easier writing by McStas_Instr class + self.assertEqual(parameter_list[0].type, "double") + self.assertEqual(parameter_list[0].value, 0) + + self.assertEqual(parameter_list[1].name, "test_int") + # space in type inserted for easier writing by McStas_Instr class + self.assertEqual(parameter_list[1].type, "int") + self.assertEqual(parameter_list[1].value, 3) + + self.assertEqual(parameter_list[2].name, "test_str") + # space in type inserted for easier writing by McStas_Instr class + self.assertEqual(parameter_list[2].type, "string") + self.assertEqual(parameter_list[2].value, "\"hurray\"") + + def test_read_declare_parameter(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + self.assertEqual(Instr.declare_list[0].name, "sample_1_index") + self.assertEqual(Instr.declare_list[0].type, "int") + self.assertEqual(Instr.declare_list[0].value, 27) + + self.assertEqual(Instr.declare_list[8].name, "array") + self.assertEqual(Instr.declare_list[8].type, "double") + self.assertEqual(Instr.declare_list[8].vector, 3) + self.assertEqual(Instr.declare_list[8].value, [0.1, 0.2, 0.3]) + + self.assertEqual(Instr.declare_list[9].name, "I_array") + self.assertEqual(Instr.declare_list[9].type, "int") + self.assertEqual(Instr.declare_list[9].vector, 4) + + self.assertEqual(Instr.declare_list[10].name, "T_array") + self.assertEqual(Instr.declare_list[10].type, "int") + self.assertEqual(Instr.declare_list[10].vector, 5) + self.assertEqual(Instr.declare_list[10].value, [1, 2, 3, 4, 5]) + + self.assertEqual(Instr.declare_list[11].name, "home") + self.assertEqual(Instr.declare_list[11].type, "char") + self.assertEqual(Instr.declare_list[11].vector, 20) + self.assertEqual(Instr.declare_list[11].value, + "\\\"test_string\\\"") + + def test_read_initialize_line(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + initialize = ("// Start of initialize for generated test_instrument\n" + + "I_array[2] = 8;\n" + + "printf(\"Hello world\\n\");\n") + + self.assertEqual(Instr.initialize_section, initialize) + + # Check a few components are read correctly + def test_read_component_1(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + components = Instr.component_list + + test_component = None + + for component in components: + if component.name == "Al": + test_component = component + + self.assertEqual(test_component.component_name, "Union_make_material") + + val = getattr(test_component, "my_absorption") + self.assertEqual(val, "100*4*0.231/66.4") + + val = getattr(test_component, "process_string") + self.assertEqual(val, "\"Al_incoherent,Al_powder\"") + + self.assertEqual(test_component.AT_data, ["0", "0", "0"]) + self.assertEqual(test_component.AT_relative, "ABSOLUTE") + + self.assertEqual(test_component.ROTATED_data, [0, 0, 0]) + self.assertEqual(test_component.ROTATED_relative, "ABSOLUTE") + + def test_read_component_2(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + components = Instr.component_list + + test_component = None + + for component in components: + if component.name == "sample_holder3": + test_component = component + + self.assertEqual(test_component.component_name, "Union_box") + + val = getattr(test_component, "xwidth") + self.assertEqual(val, "0.0098") + + val = getattr(test_component, "priority") + self.assertEqual(val, "52") + + self.assertEqual(test_component.AT_data, + ["0", "-0.03", "-0.03*0.35-0.004"]) + self.assertEqual(test_component.AT_relative, + "RELATIVE sample_rod_bottom") + + self.assertEqual(test_component.ROTATED_data, ["-25", "0", "0"]) + self.assertEqual(test_component.ROTATED_relative, + "RELATIVE sample_rod_bottom") + + def test_read_component_WHEN(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + components = Instr.component_list + + test_component = None + + for component in components: + if component.name == "outer_cryostat_vacuum": + test_component = component + + self.assertEqual(test_component.component_name, "Union_cylinder") + + val = getattr(test_component, "radius") + self.assertEqual(val, "0.09") + + val = getattr(test_component, "priority") + self.assertEqual(val, "11") + + self.assertEqual(test_component.WHEN, "WHEN (necessary == 1 )") + + self.assertEqual(test_component.AT_data, ["0", "0.01", "0"]) + self.assertEqual(test_component.AT_relative, "RELATIVE beam_center") + + self.assertEqual(test_component.ROTATED_data, ["0", "0", "0"]) + self.assertEqual(test_component.ROTATED_relative, + "RELATIVE beam_center") + + def test_read_component_EXTEND(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + components = Instr.component_list + + test_component = None + + for component in components: + if component.name == "test_sample": + test_component = component + + self.assertEqual(test_component.component_name, "Union_master") + + val = getattr(test_component, "history_limit") + self.assertEqual(val, "1000000") + + lines = test_component.EXTEND.split("\n") + line0 = ("if (scattered_flag[sample_1_index] > 0) scattered_1 = 1;" + + " else scattered_1 = 0;") + line1 = ("if (scattered_flag[sample_2_index] > 0) scattered_2 = 1;" + + " else scattered_2 = 0;") + line2 = ("if (scattered_flag[sample_3_index] > 0) scattered_3 = 1;" + + " else scattered_3 = 0;") + line3 = ("if (scattered_flag[sample_4_index] > 0) scattered_4 = 1;" + + " else scattered_4 = 0;") + + self.assertEqual(lines[0], line0) + self.assertEqual(lines[1], line1) + self.assertEqual(lines[2], line2) + self.assertEqual(lines[3], line3) + + self.assertEqual(test_component.AT_data, ["0", "0", "0"]) + self.assertEqual(test_component.AT_relative, "RELATIVE beam_center") + + self.assertEqual(test_component.ROTATED_data, ["0", "0", "0"]) + self.assertEqual(test_component.ROTATED_relative, + "RELATIVE beam_center") + + def test_read_component_GROUP(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + components = Instr.component_list + + test_component = None + + for component in components: + if component.name == "armA": + test_component = component + + self.assertEqual(test_component.component_name, "Arm") + + self.assertEqual(test_component.GROUP, "arms") + + self.assertEqual(test_component.AT_data, ["0", "0", "0"]) + self.assertEqual(test_component.AT_relative, "ABSOLUTE") + + def test_read_component_SPLIT(self): + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + components = Instr.component_list + + test_component = None + + for component in components: + if component.name == "sample_4_container": + test_component = component + + self.assertEqual(test_component.component_name, "Union_cylinder") + + self.assertEqual(test_component.AT_data, ["0", "0", "0"]) + self.assertEqual(test_component.AT_relative, "RELATIVE sample_4") + + def test_read_component_JUMP(self): + """ + Check a JUMP and GROUP statement is read correctly + """ + + set_dummy_dir() + + blockPrint() + Instr = instr.McStas_instr("test_instrument") + enablePrint() + setup_standard(Instr) + + components = Instr.component_list + + test_component = None + + for component in components: + if component.name == "armB": + test_component = component + + self.assertEqual(test_component.component_name, "Arm") + + self.assertEqual(test_component.GROUP, "arms") + self.assertEqual(test_component.JUMP, "myself 2") + + self.assertEqual(test_component.AT_data, ["0", "0", "0"]) + self.assertEqual(test_component.AT_relative, "ABSOLUTE") + + def test_comma_split(self): + """ + Test the Tracer_reader._split_func + """ + + InstrReader = setup_standard_auto_instr() + + test_string = "A,B,C,D(a,b),E" + + result = InstrReader.Trace_reader._split_func(test_string, ",") + + self.assertEqual(result[0], "A") + self.assertEqual(result[1], "B") + self.assertEqual(result[2], "C") + self.assertEqual(result[3], "D(a,b)") + self.assertEqual(result[4], "E") + + def test_comma_split_limited(self): + """ + Test the Tracer_reader._split_func + """ + + InstrReader = setup_standard_auto_instr() + + test_string = "A,B,C,D(a,b),E" + + result = InstrReader.Trace_reader._split_func(test_string, ",", 2) + + self.assertEqual(result[0], "A") + self.assertEqual(result[1], "B") + self.assertEqual(result[2], "C,D(a,b),E") + + def test_parenthesis_split(self): + """ + Test the Tracer_reader._split_func + """ + + InstrReader = setup_standard_auto_instr() + + test_string = "A)B)C)D(a,b))E" + + result = InstrReader.Trace_reader._split_func(test_string, ")") + + self.assertEqual(result[0], "A") + self.assertEqual(result[1], "B") + self.assertEqual(result[2], "C") + self.assertEqual(result[3], "D(a,b)") + self.assertEqual(result[4], "E") + + def test_comma_split_brack(self): + """ + Test the Tracer_reader._split_func + """ + + InstrReader = setup_standard_auto_instr() + + test_string = "A,B{C,D(a,b)},E" + + result = InstrReader.Trace_reader._split_func_brack(test_string, ",") + + self.assertEqual(result[0], "A") + self.assertEqual(result[1], "B{C,D(a,b)}") + self.assertEqual(result[2], "E") + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_ManagedMcrun.py b/mcstasscript/tests/test_ManagedMcrun.py new file mode 100644 index 00000000..804d79f7 --- /dev/null +++ b/mcstasscript/tests/test_ManagedMcrun.py @@ -0,0 +1,865 @@ +import os +import unittest +import unittest.mock + +from mcstasscript.helper.managed_mcrun import ManagedMcrun +from mcstasscript.helper.managed_mcrun import load_results +from mcstasscript.helper.managed_mcrun import load_metadata +from mcstasscript.helper.managed_mcrun import load_monitor +from mcstasscript.tests.helpers_for_tests import WorkInTestDir + +class TestManagedMcrun(unittest.TestCase): + """ + Testing the ManagedMcrun class that sets up McStas runs, runs the + simulation and loads the data. + + Here the simulation is not actually performed, this will be done in + integration tests. The surrounding plumbing and data loading is + tested. + """ + + def test_ManagedMcrun_init_simple(self): + """ + Check shortest possible initialization works + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun") + + self.assertEqual(mcrun_obj.name_of_instrumentfile, "test.instr") + + expected_data_folder = os.path.join(THIS_DIR, "test_folder") + self.assertEqual(mcrun_obj.data_folder_name, expected_data_folder) + + expected_executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + self.assertEqual(mcrun_obj.executable_path, expected_executable_path) + + def test_ManagedMcrun_init_defaults(self): + """ + Check default values are set up correctly + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun") + + self.assertEqual(mcrun_obj.mpi, None) + self.assertEqual(mcrun_obj.ncount, 1000000) + expected_run_path = os.path.join(THIS_DIR, ".") + self.assertEqual(mcrun_obj.run_path, expected_run_path) + + def test_ManagedMcrun_init_set_values(self): + """ + Check values given to ManagedMcrun are internalized + + run_path set to an existing folder in the test directory + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable="mcrun", + executable_path=executable_path, + run_path="test_data_set", + mpi=4, + ncount=128) + + self.assertEqual(mcrun_obj.mpi, 4) + self.assertEqual(mcrun_obj.ncount, 128) + expected_run_path = os.path.join(THIS_DIR, "test_data_set") + self.assertEqual(mcrun_obj.run_path, expected_run_path) + + def test_ManagedMcrun_init_set_parameters(self): + """ + Check parameters can be given as dictionary + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + par_input = {"A_par": 5.1, + "int_par": 1, + "define_par": "Bike", + "string_par": "\"Car\""} + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="", + parameters=par_input) + + self.assertEqual(mcrun_obj.parameters["A_par"], 5.1) + self.assertEqual(mcrun_obj.parameters["int_par"], 1) + self.assertEqual(mcrun_obj.parameters["define_par"], "Bike") + self.assertEqual(mcrun_obj.parameters["string_par"], "\"Car\"") + + def test_ManagedMcrun_init_set_custom_flags(self): + """ + Check custom_flags can be given by user + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + custom_flag_input = "-p" + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable="mcrun", + executable_path=executable_path, + custom_flags=custom_flag_input) + + self.assertEqual(mcrun_obj.custom_flags, custom_flag_input) + + def test_ManagedMcrun_init_no_folder_error(self): + """ + An error should occur if no filename is given + """ + with self.assertRaises(NameError): + ManagedMcrun("test.instr", mcrun_path="") + + def test_ManagedMcrun_init_invalid_ncount_error(self): + """ + An error should occur if negative ncount is given + """ + with self.assertRaises(ValueError): + ManagedMcrun("test.instr", + output_path="test_folder", + mcrun_path="", + ncount=-8) + + def test_ManagedMcrun_init_invalid_mpi_error(self): + """ + An error should occur if negative mpi is given + """ + with self.assertRaises(ValueError): + ManagedMcrun("test.instr", + output_path="test_folder", + mcrun_path="", + mpi=-8) + + def test_ManagedMcrun_init_invalid_parameters_error(self): + """ + An error should occur if parameters is given as non dict + """ + with self.assertRaises(RuntimeError): + ManagedMcrun("test.instr", + output_path="test_folder", + mcrun_path="", + parameters=[1, 2, 3]) + + @unittest.mock.patch("subprocess.run") + def test_ManagedMcrun_run_simulation_basic(self, mock_sub): + """ + Check a basic system call is correct + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun",) + + mcrun_obj.run_simulation() + + expected_folder_path = os.path.join(THIS_DIR, "test_folder") + + # a double space because of a missing option + executable = os.path.join(executable_path, "mcrun") + executable = '"' + executable + '"' + + expected_call = (executable + " -c -n 1000000 " + + "-d " + expected_folder_path + " test.instr") + + mock_sub.assert_called_once_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=mcrun_obj.run_path) + + @unittest.mock.patch("subprocess.run") + def test_ManagedMcrun_run_simulation_basic_path(self, mock_sub): + """ + Check a basic system call is correct, with different path format + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas", "") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun",) + + mcrun_obj.run_simulation() + + expected_folder_path = os.path.join(THIS_DIR, "test_folder") + + executable = os.path.join(executable_path, "mcrun") + executable = '"' + executable + '"' + # a double space because of a missing option + expected_call = (executable + " -c -n 1000000 " + + "-d " + expected_folder_path + " test.instr") + + mock_sub.assert_called_once_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=mcrun_obj.run_path) + + @unittest.mock.patch("subprocess.run") + def test_ManagedMcrun_run_simulation_no_standard(self, mock_sub): + """ + Check a non standard system call is correct + + Here multiple options are used and ncount is a float that should + be rounded by the class. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun", + mpi=7, seed=300, + ncount=48.4, + custom_flags="-fo") + + mcrun_obj.run_simulation() + + expected_folder_path = os.path.join(THIS_DIR, "test_folder") + + # a double space because of a missing option + executable = os.path.join(executable_path, "mcrun") + executable = '"' + executable + '"' + expected_call = (executable + " -c -n 48 --mpi=7 --seed=300 " + + "-d " + expected_folder_path + " -fo test.instr") + + mock_sub.assert_called_once_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=mcrun_obj.run_path) + + @unittest.mock.patch("subprocess.run") + def test_ManagedMcrun_run_simulation_with_gravity(self, mock_sub): + """ + Check a non standard system call is correct when including gravity + + Here multiple options are used and ncount is a float that should + be rounded by the class. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun", + gravity=True, + mpi=7, seed=300, + ncount=48.4, + custom_flags="-fo") + + mcrun_obj.run_simulation() + + expected_folder_path = os.path.join(THIS_DIR, "test_folder") + + # a double space because of a missing option + executable = os.path.join(executable_path, "mcrun") + executable = '"' + executable + '"' + expected_call = (executable + " -c -g -n 48 --mpi=7 --seed=300 " + + "-d " + expected_folder_path + " -fo test.instr") + + mock_sub.assert_called_once_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=mcrun_obj.run_path) + + @unittest.mock.patch("subprocess.run") + def test_ManagedMcrun_run_simulation_parameters(self, mock_sub): + """ + Check a run with parameters is correct + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun", + mpi=7, + ncount=48.4, + custom_flags="-fo", + parameters={"A": 2, + "BC": "car", + "th": "\"toy\""}) + + mcrun_obj.run_simulation() + + expected_folder_path = os.path.join(THIS_DIR, "test_folder") + # a double space because of a missing option + executable = os.path.join(executable_path, "mcrun") + executable = '"' + executable + '"' + + expected_call = (executable + " -c -n 48 --mpi=7 " + + "-d " + expected_folder_path + " -fo test.instr " + + "A=2 BC=car th=\"toy\"") + + mock_sub.assert_called_once_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=mcrun_obj.run_path) + + @unittest.mock.patch("subprocess.run") + def test_ManagedMcrun_run_simulation_compile(self, mock_sub): + """ + Check run with force_compile set to False works + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun", + mpi=7, + ncount=48.4, + force_compile=False, + custom_flags="-fo", + parameters={"A": 2, + "BC": "car", + "th": "\"toy\""}) + + mcrun_obj.run_simulation() + + expected_folder_path = os.path.join(THIS_DIR, "test_folder") + + executable = os.path.join(executable_path, "mcrun") + executable = '"' + executable + '"' + # a double space because of a missing option + expected_call = (executable + " -n 48 --mpi=7 " + + "-d " + expected_folder_path + " -fo test.instr " + + "A=2 BC=car th=\"toy\"") + + mock_sub.assert_called_once_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=mcrun_obj.run_path) + + @unittest.mock.patch("subprocess.run") + def test_ManagedMcrun_run_simulation_NeXus(self, mock_sub): + """ + Check run with NeXus works + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun", + mpi=7, + ncount=57.4, + force_compile=False, + NeXus=True, + custom_flags="-fo", + parameters={"A": 2, + "BC": "car", + "th": "\"toy\""}) + + mcrun_obj.run_simulation() + + expected_folder_path = os.path.join(THIS_DIR, "test_folder") + + executable = os.path.join(executable_path, "mcrun") + executable = '"' + executable + '"' + # a double space because of a missing option + expected_call = (executable + " --format=NeXus -n 57 --mpi=7 " + + "-d " + expected_folder_path + " -fo test.instr " + + "A=2 BC=car th=\"toy\"") + + mock_sub.assert_called_once_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=mcrun_obj.run_path) + + @unittest.mock.patch("subprocess.run") + def test_ManagedMcrun_run_simulation_openacc(self, mock_sub): + """ + Check run with openacc works + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_folder", + executable_path=executable_path, + executable="mcrun", + mpi=7, + ncount=48.4, + openacc=True, + force_compile=False, + custom_flags="-fo", + parameters={"A": 2, + "BC": "car", + "th": "\"toy\""}) + + mcrun_obj.run_simulation() + + expected_folder_path = os.path.join(THIS_DIR, "test_folder") + + executable = os.path.join(executable_path, "mcrun") + executable = '"' + executable + '"' + # a double space because of a missing option + expected_call = (executable + " --openacc -n 48 --mpi=7 " + + "-d " + expected_folder_path + " -fo test.instr " + + "A=2 BC=car th=\"toy\"") + + mock_sub.assert_called_once_with(expected_call, + shell=True, + stderr=-2, stdout=-1, + universal_newlines=True, + cwd=mcrun_obj.run_path) + + def test_ManagedMcrun_load_data_PSD4PI(self): + """ + Use test_data_set to test load_data for PSD_4PI + + test_data_set contains three data files and some junk, the mccode.sim + file contains names of the data files so only these are loaded. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_data_set", + executable_path=executable_path, + mcrun_path="path") + + results = mcrun_obj.load_results() + + # Check three data objects are loaded + self.assertEqual(len(results), 4) + + # Check properties of PSD_4PI data + PSD_4PI = results[0] + + self.assertEqual(PSD_4PI.name, "PSD_4PI") + self.assertEqual(PSD_4PI.metadata.dimension, [300, 300]) + self.assertEqual(PSD_4PI.metadata.limits, [-180, 180, -90, 90]) + self.assertEqual(PSD_4PI.metadata.xlabel, "Longitude [deg]") + self.assertEqual(PSD_4PI.metadata.ylabel, "Latitude [deg]") + self.assertEqual(PSD_4PI.metadata.title, "4PI PSD monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(PSD_4PI.metadata.info["Parameters"], expected_parameters) + self.assertEqual(PSD_4PI.metadata.parameters, expected_parameters) + self.assertEqual(PSD_4PI.Ncount[4][1], 4) + self.assertEqual(PSD_4PI.Intensity[4][1], 1.537334562E-10) + self.assertEqual(PSD_4PI.Error[4][1], 1.139482296E-10) + + def test_ManagedMcrun_load_data_PSD(self): + """ + Use test_data_set to test load_data for PSD + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_data_set", + executable_path=executable_path, + mcrun_path="path") + + results = mcrun_obj.load_results() + + # Check three data objects are loaded + self.assertEqual(len(results), 4) + + # Check properties of PSD data + PSD = results[1] + + self.assertEqual(PSD.name, "PSD") + self.assertEqual(PSD.metadata.dimension, [200, 200]) + self.assertEqual(PSD.metadata.limits, [-5, 5, -5, 5]) + self.assertEqual(PSD.metadata.xlabel, "X position [cm]") + self.assertEqual(PSD.metadata.ylabel, "Y position [cm]") + self.assertEqual(PSD.metadata.title, "PSD monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(PSD.metadata.info["Parameters"], expected_parameters) + self.assertEqual(PSD.metadata.parameters, expected_parameters) + self.assertEqual(PSD.Ncount[27][21], 9) + self.assertEqual(PSD.Intensity[27][21], 2.623929371e-13) + self.assertEqual(PSD.Error[27][21], 2.765467693e-13) + + def test_ManagedMcrun_load_data_L_mon(self): + """ + Use test_data_set to test load_data for L_mon + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_data_set", + executable_path=executable_path, + mcrun_path="path") + + results = mcrun_obj.load_results() + + # Check three data objects are loaded + self.assertEqual(len(results), 4) + + # Check properties of L_mon + L_mon = results[2] + + self.assertEqual(L_mon.name, "L_mon") + self.assertEqual(L_mon.metadata.dimension, 150) + self.assertEqual(L_mon.metadata.limits, [0.7, 1.3]) + self.assertEqual(L_mon.metadata.xlabel, "Wavelength [AA]") + self.assertEqual(L_mon.metadata.ylabel, "Intensity") + self.assertEqual(L_mon.metadata.title, "Wavelength monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(L_mon.metadata.info["Parameters"], expected_parameters) + self.assertEqual(L_mon.metadata.parameters, expected_parameters) + self.assertEqual(L_mon.xaxis[53], 0.914) + self.assertEqual(L_mon.Ncount[53], 37111) + self.assertEqual(L_mon.Intensity[53], 6.990299315e-06) + self.assertEqual(L_mon.Error[53], 6.215308587e-08) + + def test_ManagedMcrun_load_data_L_mon_direct(self): + """ + Use test_data_set to test load_data for L_mon with direct path + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_data_set", + executable_path=executable_path, + mcrun_path="path") + + load_path = os.path.join(THIS_DIR, "test_data_set") + results = mcrun_obj.load_results(load_path) + + # Check properties of L_mon + L_mon = results[2] + + self.assertEqual(L_mon.name, "L_mon") + self.assertEqual(L_mon.metadata.dimension, 150) + self.assertEqual(L_mon.metadata.limits, [0.7, 1.3]) + self.assertEqual(L_mon.metadata.xlabel, "Wavelength [AA]") + self.assertEqual(L_mon.metadata.ylabel, "Intensity") + self.assertEqual(L_mon.metadata.title, "Wavelength monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(L_mon.metadata.info["Parameters"], expected_parameters) + self.assertEqual(L_mon.metadata.parameters, expected_parameters) + self.assertEqual(L_mon.xaxis[53], 0.914) + self.assertEqual(L_mon.Ncount[53], 37111) + self.assertEqual(L_mon.Intensity[53], 6.990299315e-06) + self.assertEqual(L_mon.Error[53], 6.215308587e-08) + + self.assertFalse(hasattr(L_mon, 'Events')) + + def test_ManagedMcrun_load_data_Event(self): + """ + Use test_data_set to test load_data for event data + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_data_set", + executable_path=executable_path, + mcrun_path="path") + + load_path = os.path.join(THIS_DIR, "test_data_set") + results = mcrun_obj.load_results(load_path) + + # Check properties of event data file + mon = results[3] + + self.assertEqual(mon.name, "monitor") + self.assertEqual(mon.metadata.dimension, [8, 12000]) + self.assertEqual(mon.metadata.limits, [1.0, 12000.0, 1.0, 8.0]) + self.assertEqual(mon.metadata.xlabel, "List of neutron events") + self.assertEqual(mon.metadata.ylabel, "p x y z vx vy vz t") + self.assertEqual(mon.metadata.title, "Intensity Position Position" + + " Position Velocity Velocity Velocity" + + " Time_Of_Flight Monitor (Square)") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(mon.metadata.info["Parameters"], expected_parameters) + self.assertEqual(mon.metadata.parameters, expected_parameters) + self.assertEqual(mon.Events[12, 1], -0.006163896406) + self.assertEqual(mon.Events[43, 4], 22.06193582) + + self.assertFalse(hasattr(mon, 'xaxis')) + self.assertFalse(hasattr(mon, 'Error')) + self.assertFalse(hasattr(mon, 'Ncount')) + + def test_ManagedMcrun_load_data_nonexisting(self): + """ + If folder does not exists, a warning should be shown and None returned + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_data_set", + executable_path=executable_path, + mcrun_path="path") + + load_path = os.path.join(THIS_DIR, "non_existent_dataset") + + with self.assertWarns(Warning): + result = mcrun_obj.load_results(load_path) + + self.assertIsNone(result) + + def test_ManagedMcrun_load_data_no_mcsim_file(self): + """ + Check an error occurs when pointed to directory without mcsim file + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + executable_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with WorkInTestDir() as handler: + mcrun_obj = ManagedMcrun("test.instr", + output_path="test_data_set", + executable_path=executable_path, + mcrun_path="path") + + load_path = os.path.join(THIS_DIR, "dummy_mcstas") + + with self.assertRaises(NameError): + mcrun_obj.load_results(load_path) + + +class Test_load_functions(unittest.TestCase): + """ + Testing the load functions in managed_mcrun. + load_results loads all data in folder + load_metadata loads all metadata in folder + load_monitor loads one monitor given metadata and folder + These are used in ManagedMcrun + """ + def test_mcrun_load_data_PSD4PI(self): + """ + Use test_data_set to test load_data for PSD_4PI + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + results = load_results("test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(len(results), 4) + + PSD_4PI = results[0] + + self.assertEqual(PSD_4PI.name, "PSD_4PI") + self.assertEqual(PSD_4PI.metadata.dimension, [300, 300]) + self.assertEqual(PSD_4PI.metadata.limits, [-180, 180, -90, 90]) + self.assertEqual(PSD_4PI.metadata.xlabel, "Longitude [deg]") + self.assertEqual(PSD_4PI.metadata.ylabel, "Latitude [deg]") + self.assertEqual(PSD_4PI.metadata.title, "4PI PSD monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(PSD_4PI.metadata.info["Parameters"], expected_parameters) + self.assertEqual(PSD_4PI.metadata.parameters, expected_parameters) + self.assertEqual(PSD_4PI.Ncount[4][1], 4) + self.assertEqual(PSD_4PI.Intensity[4][1], 1.537334562E-10) + self.assertEqual(PSD_4PI.Error[4][1], 1.139482296E-10) + + def test_mcrun_load_data_PSD(self): + """ + Use test_data_set to test load_data for PSD + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + results = load_results("test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(len(results), 4) + + PSD = results[1] + + self.assertEqual(PSD.name, "PSD") + self.assertEqual(PSD.metadata.dimension, [200, 200]) + self.assertEqual(PSD.metadata.limits, [-5, 5, -5, 5]) + self.assertEqual(PSD.metadata.xlabel, "X position [cm]") + self.assertEqual(PSD.metadata.ylabel, "Y position [cm]") + self.assertEqual(PSD.metadata.title, "PSD monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(PSD.metadata.info["Parameters"], expected_parameters) + self.assertEqual(PSD.metadata.parameters, expected_parameters) + self.assertEqual(PSD.Ncount[27][21], 9) + self.assertEqual(PSD.Intensity[27][21], 2.623929371e-13) + self.assertEqual(PSD.Error[27][21], 2.765467693e-13) + + def test_mcrun_load_metadata_PSD4PI(self): + """ + Use test_data_set to test load_metadata for PSD_4PI + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + metadata = load_metadata("test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(len(metadata), 4) + + PSD_4PI = metadata[0] + self.assertEqual(PSD_4PI.dimension, [300, 300]) + self.assertEqual(PSD_4PI.limits, [-180, 180, -90, 90]) + self.assertEqual(PSD_4PI.xlabel, "Longitude [deg]") + self.assertEqual(PSD_4PI.ylabel, "Latitude [deg]") + self.assertEqual(PSD_4PI.title, "4PI PSD monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(PSD_4PI.info["Parameters"], expected_parameters) + self.assertEqual(PSD_4PI.parameters, expected_parameters) + + def test_mcrun_load_metadata_L_mon(self): + """ + Use test_data_set to test load_metadata for PSD_4PI + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + metadata = load_metadata("test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(len(metadata), 4) + + L_mon = metadata[2] + self.assertEqual(L_mon.dimension, 150) + self.assertEqual(L_mon.limits, [0.7, 1.3]) + self.assertEqual(L_mon.xlabel, "Wavelength [AA]") + self.assertEqual(L_mon.ylabel, "Intensity") + self.assertEqual(L_mon.title, "Wavelength monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(L_mon.info["Parameters"], expected_parameters) + self.assertEqual(L_mon.parameters, expected_parameters) + + def test_mcrun_load_monitor_PSD4PI(self): + """ + Use test_data_set to test load_monitor for PSD_4PI + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + metadata = load_metadata("test_data_set") + PSD_4PI = metadata[0] + monitor = load_monitor(PSD_4PI, "test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(monitor.name, "PSD_4PI") + self.assertEqual(monitor.metadata.dimension, [300, 300]) + self.assertEqual(monitor.metadata.limits, [-180, 180, -90, 90]) + self.assertEqual(monitor.metadata.xlabel, "Longitude [deg]") + self.assertEqual(monitor.metadata.ylabel, "Latitude [deg]") + self.assertEqual(monitor.metadata.title, "4PI PSD monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(monitor.metadata.info["Parameters"], expected_parameters) + self.assertEqual(monitor.metadata.parameters, expected_parameters) + self.assertEqual(monitor.Ncount[4][1], 4) + self.assertEqual(monitor.Intensity[4][1], 1.537334562E-10) + self.assertEqual(monitor.Error[4][1], 1.139482296E-10) + + def test_mcrun_load_monitor_L_mon(self): + """ + Use test_data_set to test load_monitor for PSD_4PI + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + metadata = load_metadata("test_data_set") + L_mon = metadata[2] + monitor = load_monitor(L_mon, "test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(monitor.name, "L_mon") + self.assertEqual(monitor.metadata.dimension, 150) + self.assertEqual(monitor.metadata.limits, [0.7, 1.3]) + self.assertEqual(monitor.metadata.xlabel, "Wavelength [AA]") + self.assertEqual(monitor.metadata.ylabel, "Intensity") + self.assertEqual(monitor.metadata.title, "Wavelength monitor") + expected_parameters = {"wavelength": 1.0} + self.assertEqual(monitor.metadata.info["Parameters"], expected_parameters) + self.assertEqual(monitor.metadata.parameters, expected_parameters) + self.assertEqual(monitor.xaxis[53], 0.914) + self.assertEqual(monitor.Ncount[53], 37111) + self.assertEqual(monitor.Intensity[53], 6.990299315e-06) + self.assertEqual(monitor.Error[53], 6.215308587e-08) + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_McStasData.py b/mcstasscript/tests/test_McStasData.py new file mode 100644 index 00000000..81e58b85 --- /dev/null +++ b/mcstasscript/tests/test_McStasData.py @@ -0,0 +1,227 @@ +import unittest +import numpy as np + +from mcstasscript.data.data import McStasData +from mcstasscript.data.data import McStasDataBinned +from mcstasscript.data.data import McStasDataEvent +from mcstasscript.data.data import McStasMetaData + + +def set_dummy_MetaDataBinned_1d(): + """ + Sets up simple McStasMetaData object with dimension, 1d case + """ + meta_data = McStasMetaData() + meta_data.component_name = "component for 1d" + meta_data.dimension = 50 + + return meta_data + + +def set_dummy_McStasDataBinned_1d(): + """ + Sets up simple McStasData object, 1d case + """ + meta_data = set_dummy_MetaDataBinned_1d() + + intensity = np.arange(20) + error = 0.5 * np.arange(20) + ncount = 2 * np.arange(20) + axis = np.arange(20)*5.0 + + return McStasDataBinned(meta_data, intensity, error, ncount, xaxis=axis) + + +def set_dummy_MetaDataBinned_2d(): + """ + Sets up simple McStasMetaData object with dimensions, 2d case + """ + meta_data = McStasMetaData() + meta_data.component_name = "test a component" + meta_data.dimension = [50, 100] + + return meta_data + + +def set_dummy_McStasDataBinned_2d(): + """ + Sets up simple McStasData object, 2d case + """ + meta_data = set_dummy_MetaDataBinned_2d() + + intensity = np.arange(20).reshape(4, 5) + error = 0.5 * np.arange(20).reshape(4, 5) + ncount = 2 * np.arange(20).reshape(4, 5) + + return McStasDataBinned(meta_data, intensity, error, ncount) + + +class TestMcStasData(unittest.TestCase): + """ + Various tests of McStasData class + """ + + def test_McStasDataBinned_init_1d(self): + """ + Test that newly created McStasMetaData has correct names, 1d case + """ + + data = set_dummy_McStasDataBinned_1d() + + self.assertEqual(data.name, "component for 1d") + self.assertEqual(data.metadata.component_name, "component for 1d") + + def test_McStasDataBinned_init_values(self): + """ + Test that newly created McStasDataBinned has expected data, 1d case + Here checking a single data point + """ + + data = set_dummy_McStasDataBinned_1d() + + self.assertEqual(data.Intensity[3], 3) + self.assertEqual(data.Error[3], 1.5) + self.assertEqual(data.Ncount[3], 6) + self.assertEqual(data.xaxis[3], 15.0) + + def test_McStasDataBinned_init_values_full(self): + """ + Test that newly created McStasDataBinned has expected data, 1d case + """ + + data = set_dummy_McStasDataBinned_1d() + + intensity = np.arange(20) + error = 0.5 * np.arange(20) + ncount = 2 * np.arange(20) + axis = np.arange(20) * 5.0 + + for index in range(len(data.Intensity)): + self.assertEqual(data.Intensity[index], intensity[index]) + self.assertEqual(data.Error[index], error[index]) + self.assertEqual(data.Ncount[index], ncount[index]) + self.assertEqual(data.xaxis[index], axis[index]) + + def test_McStasDataBinned_init_2d_names(self): + """ + Test that newly created McStasMetaData has correct names, 1d case + """ + + data = set_dummy_McStasDataBinned_2d() + + self.assertEqual(data.name, "test a component") + self.assertEqual(data.metadata.component_name, "test a component") + + def test_McStasDataBinned_init_2d_values(self): + """ + Test that newly created McStasDataBinned has expected data, 2d case + Here checking a single point + """ + + data = set_dummy_McStasDataBinned_2d() + + self.assertEqual(data.Intensity[2][3], 13) + self.assertEqual(data.Error[2][3], 6.5) + self.assertEqual(data.Ncount[2][3], 26) + + def test_McStasDataBinned_init_2d_values_full(self): + """ + Test that newly created McStasDataBinned has expected data, 2d case + Here checking a entire dataset + """ + + data = set_dummy_McStasDataBinned_2d() + + intensity = np.arange(20).reshape(4, 5) + error = 0.5 * np.arange(20).reshape(4, 5) + ncount = 2 * np.arange(20).reshape(4, 5) + + shape = np.shape(data.Intensity) + + for index1 in range(shape[0]): + for index2 in range(shape[1]): + + self.assertEqual(data.Intensity[index1][index2], + intensity[index1][index2]) + self.assertEqual(data.Error[index1][index2], + error[index1][index2]) + self.assertEqual(data.Ncount[index1][index2], + ncount[index1][index2]) + + def test_McStasDataBinned_set_info_title(self): + """ + Test that title can be set + """ + data = set_dummy_McStasDataBinned_2d() + data.set_title("title_test") + self.assertEqual(data.metadata.title, "title_test") + + def test_McStasDataBinned_set_xlabel(self): + """ + Test that xlabel can be set + """ + data = set_dummy_McStasDataBinned_2d() + data.set_xlabel("xlabel test") + self.assertEqual(data.metadata.xlabel, "xlabel test") + + def test_McStasDataBinned_set_ylabel(self): + """ + Test that ylabel can be set + """ + data = set_dummy_McStasDataBinned_2d() + data.set_ylabel("ylabel test") + self.assertEqual(data.metadata.ylabel, "ylabel test") + + def test_McStasDataBinned_set_log(self): + """ + Test that log setting has correct type regardless of how it is given + """ + data = set_dummy_McStasDataBinned_2d() + data.set_plot_options(log=True) + self.assertIsInstance(data.plot_options.log, bool) + self.assertTrue(data.plot_options.log) + + data.set_plot_options(log=0) + self.assertIsInstance(data.plot_options.log, bool) + self.assertFalse(data.plot_options.log) + + data.set_plot_options(log=1) + self.assertIsInstance(data.plot_options.log, bool) + self.assertTrue(data.plot_options.log) + + def test_McStasDataBinned_set_show_colorbar(self): + """ + Test that log setting has correct type regardless of how it is given + """ + data = set_dummy_McStasDataBinned_2d() + data.set_plot_options(show_colorbar=True) + self.assertIsInstance(data.plot_options.show_colorbar, bool) + self.assertTrue(data.plot_options.show_colorbar) + + data.set_plot_options(show_colorbar=0) + self.assertIsInstance(data.plot_options.show_colorbar, bool) + self.assertFalse(data.plot_options.show_colorbar) + + data.set_plot_options(show_colorbar=1) + self.assertIsInstance(data.plot_options.show_colorbar, bool) + self.assertTrue(data.plot_options.show_colorbar) + + def test_McStasDataBinned_set_orders_of_mag(self): + """ + Test that orders_og_mag can be set correctly + """ + data = set_dummy_McStasDataBinned_2d() + data.set_plot_options(orders_of_mag=5.2) + self.assertEqual(data.plot_options.orders_of_mag, 5.2) + + def test_McStasDataBinned_set_colormap(self): + """ + Test that colormap can be set correctly + """ + data = set_dummy_McStasDataBinned_2d() + data.set_plot_options(colormap="hot") + self.assertIs(data.plot_options.colormap, "hot") + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_McStasMetaData.py b/mcstasscript/tests/test_McStasMetaData.py new file mode 100644 index 00000000..3c0cbe9a --- /dev/null +++ b/mcstasscript/tests/test_McStasMetaData.py @@ -0,0 +1,122 @@ +import unittest + +from mcstasscript.data.data import McStasMetaData + + +class TestMcStasMetaData(unittest.TestCase): + """ + Various tests of McStasMetaData class + """ + + def test_McStasMetaData_return_type(self): + """ + Test that newly created McStasMetaData has correct type + """ + meta_data = McStasMetaData() + self.assertIsInstance(meta_data, McStasMetaData) + + def test_McStasMetaData_init(self): + """ + Test that newly created McStasMetaData has no content + """ + meta_data = McStasMetaData() + self.assertEqual(len(meta_data.info), 0) + + def test_McStasMetaData_add_info_len(self): + """ + Test that info can be added to McStasMetaData + """ + meta_data = McStasMetaData() + meta_data.add_info("test", 3) + self.assertEqual(len(meta_data.info), 1) + + def test_McStasMetaData_add_info(self): + """ + Test that info can be read from McStasMetaData + """ + meta_data = McStasMetaData() + meta_data.add_info("test", 3) + self.assertEqual(meta_data.info["test"], 3) + + def test_McStasMetaData_add_info_title(self): + """ + Test that title can be set + """ + meta_data = McStasMetaData() + meta_data.set_title("title_test") + self.assertEqual(meta_data.title, "title_test") + + def test_McStasMetaData_add_info_xlabel(self): + """ + Test that xlabel can be set + """ + meta_data = McStasMetaData() + meta_data.set_xlabel("xlabel test") + self.assertEqual(meta_data.xlabel, "xlabel test") + + def test_McStasMetaData_add_info_ylabel(self): + """ + Test that ylabel can be set + """ + meta_data = McStasMetaData() + meta_data.set_ylabel("ylabel test") + self.assertEqual(meta_data.ylabel, "ylabel test") + + def test_McStasMetaData_long_read_1d(self): + """ + Test that extract_info can read appropriate info, 1d case + """ + meta_data = McStasMetaData() + meta_data.add_info("type", "array_1d(500)") + meta_data.add_info("component", "test_A COMP") + meta_data.add_info("filename", "test_A name") + meta_data.add_info("xlimits", " 0.92 3.68") + meta_data.add_info("xlabel", "test A xlabel") + meta_data.add_info("ylabel", "test A ylabel") + meta_data.add_info("title", "test A title") + + meta_data.extract_info() # Converts info to attributes + + self.assertIsInstance(meta_data.dimension, int) + self.assertEqual(meta_data.dimension, 500) + self.assertIs(meta_data.component_name, "test_A COMP") + self.assertIs(meta_data.filename, "test_A name") + self.assertEqual(len(meta_data.limits), 2) + self.assertEqual(meta_data.limits[0], 0.92) + self.assertEqual(meta_data.limits[1], 3.68) + self.assertIs(meta_data.xlabel, "test A xlabel") + self.assertIs(meta_data.ylabel, "test A ylabel") + self.assertIs(meta_data.title, "test A title") + + def test_McStasMetaData_long_read_2d(self): + """ + Test that extract_info can read appropriate info, 2d case + """ + meta_data = McStasMetaData() + meta_data.add_info("type", "array_2d(500, 12)") + meta_data.add_info("component", "test_A_COMP") + meta_data.add_info("filename", "test_A_name") + meta_data.add_info("xlimits", "-2.4 5.99 0.92 3.68") + meta_data.add_info("xlabel", "test A xlabel") + meta_data.add_info("ylabel", "test A ylabel") + meta_data.add_info("title", "test A title") + + meta_data.extract_info() # Converts info to attributes + + self.assertEqual(len(meta_data.dimension), 2) + self.assertEqual(meta_data.dimension[0], 500) + self.assertEqual(meta_data.dimension[1], 12) + self.assertIs(meta_data.component_name, "test_A_COMP") + self.assertIs(meta_data.filename, "test_A_name") + self.assertEqual(len(meta_data.limits), 4) + self.assertEqual(meta_data.limits[0], -2.4) + self.assertEqual(meta_data.limits[1], 5.99) + self.assertEqual(meta_data.limits[2], 0.92) + self.assertEqual(meta_data.limits[3], 3.68) + self.assertIs(meta_data.xlabel, "test A xlabel") + self.assertIs(meta_data.ylabel, "test A ylabel") + self.assertIs(meta_data.title, "test A title") + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_McStasPlotOptions.py b/mcstasscript/tests/test_McStasPlotOptions.py new file mode 100644 index 00000000..b6ed26f4 --- /dev/null +++ b/mcstasscript/tests/test_McStasPlotOptions.py @@ -0,0 +1,227 @@ +import unittest + +from mcstasscript.data.data import McStasPlotOptions + + +class TestMcStasPlotOptions(unittest.TestCase): + """ + Various test of McStasPlotOptions class + """ + + def test_McStasPlotOptions_default_log(self): + """ + Test that newly created McStasPlotOptions log attribute + has correct type and default value + """ + plot_options = McStasPlotOptions() + self.assertIsInstance(plot_options.log, bool) + self.assertFalse(plot_options.log) + + def test_McStasPlotOptions_default_orders_of_mag(self): + """ + Test that newly created McStasPlotOptions orders_of_mag + has the correct default value + """ + plot_options = McStasPlotOptions() + self.assertEqual(plot_options.orders_of_mag, 300) + + def test_McStasPlotOptions_default_colormap(self): + """ + Test that newly created McStasPlotOptions colormap has + the correct default value + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.colormap, "jet") + + def test_McStasPlotOptions_default_show_colorbar(self): + """ + Test that newly created McStasPlotOptions has correct + default value for show_colorbar + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.show_colorbar, True) + + def test_McStasPlotOptions_default_cut_max(self): + """ + Test that newly created McStasPlotOptions has correct + default value for cut_max + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.cut_max, 1) + + def test_McStasPlotOptions_default_cut_min(self): + """ + Test that newly created McStasPlotOptions has correct + default value for cut_min + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.cut_min, 0) + + def test_McStasPlotOptions_default_x_axis_multiplier(self): + """ + Test that newly created McStasPlotOptions has correct + default value for x_axis_multiplier + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.x_limit_multiplier, 1) + + def test_McStasPlotOptions_default_y_axis_multiplier(self): + """ + Test that newly created McStasPlotOptions has correct + default value for y_axis_multiplier + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.y_limit_multiplier, 1) + + def test_McStasPlotOptions_default_top_lim(self): + """ + Test that newly created McStasPlotOptions has correct + default value for top_lim + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.custom_ylim_top, False) + + def test_McStasPlotOptions_default_bottom_lim(self): + """ + Test that newly created McStasPlotOptions has correct + default value for left_lim + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.custom_ylim_bottom, False) + + def test_McStasPlotOptions_default_left_lim(self): + """ + Test that newly created McStasPlotOptions has correct + default value for left_lim + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.custom_xlim_left, False) + + def test_McStasPlotOptions_default_right_lim(self): + """ + Test that newly created McStasPlotOptions has correct + default value for right_lim + """ + plot_options = McStasPlotOptions() + self.assertIs(plot_options.custom_xlim_right, False) + + def test_McStasPlotOptions_set_log(self): + """ + Test that set_options works on log parameter which + can be set both with an integer and a bool. + """ + plot_options = McStasPlotOptions() + plot_options.set_options(log=True) + self.assertIsInstance(plot_options.log, bool) + self.assertTrue(plot_options.log) + + plot_options.set_options(log=0) + self.assertIsInstance(plot_options.log, bool) + self.assertFalse(plot_options.log) + + plot_options.set_options(log=1) + self.assertIsInstance(plot_options.log, bool) + self.assertTrue(plot_options.log) + + def test_McStasPlotOptions_set_orders_of_mag(self): + """ + Check that set_options works with orders_of_mag keyword + argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(orders_of_mag=5.2) + self.assertEqual(plot_options.orders_of_mag, 5.2) + + def test_McStasPlotOptions_set_colormap(self): + """ + Check that set_options work with colormap keyword argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(colormap="hot") + self.assertIs(plot_options.colormap, "hot") + + def test_McStasPlotOptions_set_show_colorbar(self): + """ + Check that set_options work with show_colormap keyword + argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(show_colorbar=False) + self.assertIs(plot_options.show_colorbar, False) + + def test_McStasPlotOptions_set_cut_max(self): + """ + Check that set_options work with cut_max keyword + argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(cut_max=0.8) + self.assertIs(plot_options.cut_max, 0.8) + + def test_McStasPlotOptions_set_cut_min(self): + """ + Check that set_options work with cut_min keyword + argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(cut_min=0.2) + self.assertIs(plot_options.cut_min, 0.2) + + def test_McStasPlotOptions_set_x_axis_multiplier(self): + """ + Check that set_options work with x_axis_multiplier + keyword argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(x_axis_multiplier=2.8) + self.assertIs(plot_options.x_limit_multiplier, 2.8) + + def test_McStasPlotOptions_set_y_axis_multiplier(self): + """ + Check that set_options work with y_axis_multiplier + keyword argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(y_axis_multiplier=0.1) + self.assertIs(plot_options.y_limit_multiplier, 0.1) + + def test_McStasPlotOptions_set_top_lim(self): + """ + Check that set_options work with top_lim keyword argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(top_lim=128.9) + self.assertIs(plot_options.custom_ylim_top, True) + self.assertIs(plot_options.top_lim, 128.9) + + def test_McStasPlotOptions_set_bottom_lim(self): + """ + Check that set_options work with bottom_lim keyword + argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(bottom_lim=120.9) + self.assertIs(plot_options.custom_ylim_bottom, True) + self.assertIs(plot_options.bottom_lim, 120.9) + + def test_McStasPlotOptions_set_left_lim(self): + """ + Check that set_options work with left_lim keyword argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(left_lim=9.2) + self.assertIs(plot_options.custom_xlim_left, True) + self.assertIs(plot_options.left_lim, 9.2) + + def test_McStasPlotOptions_set_right_lim(self): + """ + Check that set_options work with right_lim keyword argument + """ + plot_options = McStasPlotOptions() + plot_options.set_options(right_lim=1.4) + self.assertIs(plot_options.custom_xlim_right, True) + self.assertIs(plot_options.right_lim, 1.4) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_Plotter.py b/mcstasscript/tests/test_Plotter.py new file mode 100644 index 00000000..341843a4 --- /dev/null +++ b/mcstasscript/tests/test_Plotter.py @@ -0,0 +1,648 @@ +import unittest +import unittest.mock + +import matplotlib +matplotlib.use('Agg') + +import numpy as np +import matplotlib.pyplot as plt + +from mcstasscript.data.data import McStasDataBinned +from mcstasscript.data.data import McStasMetaData +from mcstasscript.interface.plotter import _find_min_max_I +from mcstasscript.interface.plotter import _handle_kwargs +from mcstasscript.interface.plotter import _plot_fig_ax +from mcstasscript.interface.plotter import make_plot, make_sub_plot, make_animation + + +def get_dummy_MetaDataBinned_1d(): + meta_data = McStasMetaData() + meta_data.component_name = "component for 1d" + meta_data.dimension = 50 + meta_data.limits = [0.1, 1.1] + meta_data.title = "test" + meta_data.xlabel = "test x" + meta_data.ylabel = "test y" + + return meta_data + + +def get_dummy_McStasDataBinned_1d(): + meta_data = get_dummy_MetaDataBinned_1d() + + intensity = np.arange(20) + 5 + error = 0.5 * np.arange(20) + ncount = 2 * np.arange(20) + axis = np.arange(20)*5.0 + + return McStasDataBinned(meta_data, intensity, error, ncount, xaxis=axis) + + +def get_dummy_MetaDataBinned_2d(): + meta_data = McStasMetaData() + meta_data.component_name = "test a component" + meta_data.dimension = [5, 4] + meta_data.limits = [0.1, 1.1, 2.0, 4.0] + meta_data.title = "test" + meta_data.xlabel = "test x" + meta_data.ylabel = "test y" + + return meta_data + + +def get_dummy_McStasDataBinned_2d(): + meta_data = get_dummy_MetaDataBinned_2d() + + intensity = np.arange(20).reshape(4, 5) + 5 + error = 0.5 * np.arange(20).reshape(4, 5) + ncount = 2 * np.arange(20).reshape(4, 5) + + return McStasDataBinned(meta_data, intensity, error, ncount) + + +class TestPlotterHelpers(unittest.TestCase): + """ + Tests of plotter help functions + """ + + def test_find_min_max_I_simple_1D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set + """ + + dummy_data = get_dummy_McStasDataBinned_1d() + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertEqual(found_min, 5) + self.assertEqual(found_max, 19 + 5) + + def test_find_min_max_I_cut_max_1D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here cut_max is used to limit the maximum plotted. + """ + + dummy_data = get_dummy_McStasDataBinned_1d() + dummy_data.set_plot_options(cut_max=0.8) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertEqual(found_min, 5) + self.assertEqual(found_max, (19 + 5)*0.8) + + def test_find_min_max_I_cut_min_1D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here cut_min is used to limit the minimum plotted. + """ + + dummy_data = get_dummy_McStasDataBinned_1d() + dummy_data.set_plot_options(cut_min=0.2) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertEqual(found_min, 5 + (24-5)*0.2) + self.assertEqual(found_max, 19 + 5) + + def test_find_min_max_I_log_with_zero_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here a bin contains zero intensity and log mode is enabled, + since log(0) is not allowed, this data point should be + ignored. + """ + + dummy_data = get_dummy_McStasDataBinned_1d() + dummy_data.Intensity[5] = 0 + dummy_data.set_plot_options(log=True) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertAlmostEqual(found_min, 5) + self.assertAlmostEqual(found_max, 19 + 5) + + def test_find_min_max_I_log_cut_max_1D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here cut_max is used to limit the maximum plotted while + log mode is enabled. + """ + + dummy_data = get_dummy_McStasDataBinned_1d() + dummy_data.set_plot_options(cut_max=0.8, log=True) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertAlmostEqual(found_min, 5) + self.assertAlmostEqual(found_max, (19 + 5)*0.8) + + def test_find_min_max_I_log_cut_min_1D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here cut_min is used to limit the minimum plotted while + log mode is enabled. + """ + + dummy_data = get_dummy_McStasDataBinned_1d() + dummy_data.set_plot_options(cut_min=0.2, log=True) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertAlmostEqual(found_min, 5 + (24-5)*0.2) + self.assertAlmostEqual(found_max, 19 + 5) + + def test_find_min_max_I_log_orders_of_mag_1D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here orders_of_mag is used to limit the minimum plotted + while log mode is enabled. + """ + + dummy_data = get_dummy_McStasDataBinned_1d() + dummy_data.Intensity[5] = 10**6 + dummy_data.set_plot_options(log=True, orders_of_mag=3) + found_min, found_max = _find_min_max_I(dummy_data) + + self.assertAlmostEqual(found_min, 10**3) + self.assertAlmostEqual(found_max, 10**6) + + def test_find_min_max_I_log_orders_of_mag_1D_with_zero_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here orders_of_mag is used to limit the minimum plotted + while log mode is enabled. A bin in the data contains + zero intensity, which should be ignored. + """ + + dummy_data = get_dummy_McStasDataBinned_1d() + dummy_data.Intensity[5] = 10**6 + dummy_data.Intensity[6] = 0 + dummy_data.set_plot_options(log=True, orders_of_mag=3) + found_min, found_max = _find_min_max_I(dummy_data) + + self.assertAlmostEqual(found_min, 10**3) + self.assertAlmostEqual(found_max, 10**6) + + def test_find_min_max_I_simple_2D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertEqual(found_min, 5) + self.assertEqual(found_max, 19 + 5) + + def test_find_min_max_I_cut_max_2D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here cut_max is used to limit the maximum plotted. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + dummy_data.set_plot_options(cut_max=0.8) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertEqual(found_min, 5) + self.assertEqual(found_max, (19 + 5)*0.8) + + def test_find_min_max_I_cut_min_2D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here cut_min is used to limit the minimum plotted. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + dummy_data.set_plot_options(cut_min=0.2) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertEqual(found_min, 5 + (24-5)*0.2) + self.assertEqual(found_max, 19 + 5) + + def test_find_min_max_I_log_with_zero_2D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here a bin contains zero intensity and log mode is enabled, + since log(0) is not allowed, this data point should be + ignored. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + dummy_data.Intensity[2, 2] = 0 + dummy_data.set_plot_options(log=True) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertAlmostEqual(found_min, 5) + self.assertAlmostEqual(found_max, 19 + 5) + + def test_find_min_max_I_log_cut_max_2D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here cut_max is used to limit the maximum plotted while + log mode is enabled. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + dummy_data.set_plot_options(cut_max=0.8, log=True) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertAlmostEqual(found_min, 5) + self.assertAlmostEqual(found_max, (19 + 5)*0.8) + + def test_find_min_max_I_log_cut_min_2D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here cut_min is used to limit the minimum plotted while + log mode is enabled. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + dummy_data.set_plot_options(cut_min=0.2, log=True) + found_min, found_max = _find_min_max_I(dummy_data) + + # np.arange(20) + 5: min = 5, max = 5+19 = 24 + self.assertAlmostEqual(found_min, 5 + (24-5)*0.2) + self.assertAlmostEqual(found_max, 19 + 5) + + def test_find_min_max_I_log_orders_of_mag_2D_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here orders_of_mag is used to limit the minimum plotted + while log mode is enabled. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + dummy_data.Intensity[2, 2] = 10**6 + dummy_data.set_plot_options(log=True, orders_of_mag=3) + found_min, found_max = _find_min_max_I(dummy_data) + + self.assertAlmostEqual(found_min, 10**3) + self.assertAlmostEqual(found_max, 10**6) + + def test_find_min_max_I_log_orders_of_mag_2D_with_zero_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here orders_of_mag is used to limit the minimum plotted + while log mode is enabled. A bin in the data contains + zero intensity, which should be ignored. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + dummy_data.Intensity[2, 2] = 10**6 + dummy_data.Intensity[2, 3] = 0 + dummy_data.set_plot_options(log=True, orders_of_mag=3) + found_min, found_max = _find_min_max_I(dummy_data) + + self.assertAlmostEqual(found_min, 10**3) + self.assertAlmostEqual(found_max, 10**6) + + def test_find_min_max_I_fail_case(self): + """ + test _find_min_max_I for a 1D case, it finds the minimum + and maximum value to plot for a given McStasData set. + Here orders_of_mag is used to limit the minimum plotted + while log mode is enabled. A bin in the data contains + zero intensity, which should be ignored. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + dummy_data.Intensity = np.zeros((5, 5)) + dummy_data.set_plot_options(log=True, orders_of_mag=3) + found_min, found_max = _find_min_max_I(dummy_data) + + self.assertEqual(found_min, 0) + self.assertEqual(found_max, 0) + + def test_handle_kwargs_log(self): + """ + Tests handle_kwargs with log option + + Keyword args can be set for all by normal use, or individual + data sets by using a list. Both are checked here. + """ + dummy_data1 = get_dummy_McStasDataBinned_2d() + dummy_data2 = get_dummy_McStasDataBinned_2d() + self.assertEqual(dummy_data1.plot_options.log, False) + self.assertEqual(dummy_data2.plot_options.log, False) + + data_list = [dummy_data1, dummy_data2] + _handle_kwargs(data_list, log=True) + self.assertEqual(dummy_data1.plot_options.log, True) + self.assertEqual(dummy_data2.plot_options.log, True) + + _handle_kwargs(data_list, log=[False, True]) + self.assertEqual(dummy_data1.plot_options.log, False) + self.assertEqual(dummy_data2.plot_options.log, True) + + def test_handle_kwargs_oders_of_mag(self): + """ + Tests handle_kwargs with orders_of_mag option + + Keyword args can be set for all by normal use, or individual + data sets by using a list. Both are checked here. + """ + dummy_data1 = get_dummy_McStasDataBinned_2d() + dummy_data2 = get_dummy_McStasDataBinned_2d() + self.assertEqual(dummy_data1.plot_options.orders_of_mag, 300) + self.assertEqual(dummy_data2.plot_options.orders_of_mag, 300) + + data_list = [dummy_data1, dummy_data2] + _handle_kwargs(data_list, orders_of_mag=12) + self.assertEqual(dummy_data1.plot_options.orders_of_mag, 12) + self.assertEqual(dummy_data2.plot_options.orders_of_mag, 12) + + _handle_kwargs(data_list, orders_of_mag=[50, 10]) + self.assertEqual(dummy_data1.plot_options.orders_of_mag, 50) + self.assertEqual(dummy_data2.plot_options.orders_of_mag, 10) + + def test_handle_kwargs_all_simple(self): + """ + Tests handle_kwargs with all simple options option + + Keyword args can be set for all by normal use, or individual + data sets by using a list. Both are checked here. + """ + + known_plot = ["log", "orders_of_mag", + "cut_min", "cut_max", + "colormap", "show_colorbar", + "x_axis_multiplier", + "y_axis_multiplier"] + + kwargs_to_attr = {"x_axis_multiplier": "x_limit_multiplier", + "y_axis_multiplier": "y_limit_multiplier"} + + defaults = {"log": False, "orders_of_mag": 300, + "cut_min": 0, "cut_max": 1, + "colormap": "jet", "show_colorbar": True, + "x_limit_multiplier": 1, "y_limit_multiplier": 1} + + test_value = {"log": True, "orders_of_mag": 15, + "cut_min": 0.25, "cut_max": 0.8, + "colormap": "hot", "show_colorbar": False, + "x_limit_multiplier": 2.8, "y_limit_multiplier": 0.8} + + for option in known_plot: + + if option in kwargs_to_attr: + kw_option = kwargs_to_attr[option] + else: + kw_option = option + + default_value = defaults[kw_option] + + dummy_data1 = get_dummy_McStasDataBinned_2d() + data1_value = dummy_data1.plot_options.__getattribute__(kw_option) + self.assertEqual(data1_value, default_value) + + dummy_data2 = get_dummy_McStasDataBinned_2d() + data2_value = dummy_data2.plot_options.__getattribute__(kw_option) + self.assertEqual(data2_value, default_value) + + data_list = [dummy_data1, dummy_data2] + + set_value = test_value[kw_option] + given_option = {option: set_value} + _handle_kwargs(data_list, **given_option) + + data1_value = dummy_data1.plot_options.__getattribute__(kw_option) + self.assertEqual(data1_value, set_value) + + data2_value = dummy_data2.plot_options.__getattribute__(kw_option) + self.assertEqual(data2_value, set_value) + + given_option = {option: [set_value, default_value]} + _handle_kwargs(data_list, **given_option) + + data_1_value = dummy_data1.plot_options.__getattribute__(kw_option) + self.assertEqual(data_1_value, set_value) + data_2_value = dummy_data2.plot_options.__getattribute__(kw_option) + self.assertEqual(data_2_value, default_value) + + def test_handle_kwargs_left_lim(self): + """ + Tests handle_kwargs with left_lim option + + Keyword args can be set for all by normal use, or individual + data sets by using a list. Both are checked here. + """ + dummy_data1 = get_dummy_McStasDataBinned_2d() + dummy_data2 = get_dummy_McStasDataBinned_2d() + self.assertEqual(dummy_data1.plot_options.custom_xlim_left, False) + self.assertEqual(dummy_data2.plot_options.custom_xlim_left, False) + + data_list = [dummy_data1, dummy_data2] + _handle_kwargs(data_list, left_lim=0.08) + self.assertEqual(dummy_data1.plot_options.left_lim, 0.08) + self.assertEqual(dummy_data2.plot_options.left_lim, 0.08) + self.assertEqual(dummy_data1.plot_options.custom_xlim_left, True) + self.assertEqual(dummy_data2.plot_options.custom_xlim_left, True) + + _handle_kwargs(data_list, left_lim=[0.08, 1.08]) + self.assertEqual(dummy_data1.plot_options.left_lim, 0.08) + self.assertEqual(dummy_data2.plot_options.left_lim, 1.08) + self.assertEqual(dummy_data1.plot_options.custom_xlim_left, True) + self.assertEqual(dummy_data2.plot_options.custom_xlim_left, True) + + def test_handle_kwargs_right_lim(self): + """ + Tests handle_kwargs with right_lim option + + Keyword args can be set for all by normal use, or individual + data sets by using a list. Both are checked here. + """ + dummy_data1 = get_dummy_McStasDataBinned_2d() + dummy_data2 = get_dummy_McStasDataBinned_2d() + self.assertEqual(dummy_data1.plot_options.custom_xlim_right, False) + self.assertEqual(dummy_data2.plot_options.custom_xlim_right, False) + + data_list = [dummy_data1, dummy_data2] + _handle_kwargs(data_list, right_lim=0.08) + self.assertEqual(dummy_data1.plot_options.right_lim, 0.08) + self.assertEqual(dummy_data2.plot_options.right_lim, 0.08) + self.assertEqual(dummy_data1.plot_options.custom_xlim_right, True) + self.assertEqual(dummy_data2.plot_options.custom_xlim_right, True) + + _handle_kwargs(data_list, right_lim=[0.08, 1.08]) + self.assertEqual(dummy_data1.plot_options.right_lim, 0.08) + self.assertEqual(dummy_data2.plot_options.right_lim, 1.08) + self.assertEqual(dummy_data1.plot_options.custom_xlim_right, True) + self.assertEqual(dummy_data2.plot_options.custom_xlim_right, True) + + def test_handle_kwargs_top_lim(self): + """ + Tests handle_kwargs with top_lim option + + Keyword args can be set for all by normal use, or individual + data sets by using a list. Both are checked here. + """ + dummy_data1 = get_dummy_McStasDataBinned_2d() + dummy_data2 = get_dummy_McStasDataBinned_2d() + self.assertEqual(dummy_data1.plot_options.custom_ylim_top, False) + self.assertEqual(dummy_data2.plot_options.custom_ylim_top, False) + + data_list = [dummy_data1, dummy_data2] + _handle_kwargs(data_list, top_lim=0.08) + self.assertEqual(dummy_data1.plot_options.top_lim, 0.08) + self.assertEqual(dummy_data2.plot_options.top_lim, 0.08) + self.assertEqual(dummy_data1.plot_options.custom_ylim_top, True) + self.assertEqual(dummy_data2.plot_options.custom_ylim_top, True) + + _handle_kwargs(data_list, top_lim=[0.08, 1.08]) + self.assertEqual(dummy_data1.plot_options.top_lim, 0.08) + self.assertEqual(dummy_data2.plot_options.top_lim, 1.08) + self.assertEqual(dummy_data1.plot_options.custom_ylim_top, True) + self.assertEqual(dummy_data2.plot_options.custom_ylim_top, True) + + def test_handle_kwargs_bottom_lim(self): + """ + Tests handle_kwargs with bottom_lim option + + Keyword args can be set for all by normal use, or individual + data sets by using a list. Both are checked here. + """ + dummy_data1 = get_dummy_McStasDataBinned_2d() + dummy_data2 = get_dummy_McStasDataBinned_2d() + self.assertEqual(dummy_data1.plot_options.custom_ylim_bottom, False) + self.assertEqual(dummy_data2.plot_options.custom_ylim_bottom, False) + + data_list = [dummy_data1, dummy_data2] + _handle_kwargs(data_list, bottom_lim=0.08) + self.assertEqual(dummy_data1.plot_options.bottom_lim, 0.08) + self.assertEqual(dummy_data2.plot_options.bottom_lim, 0.08) + self.assertEqual(dummy_data1.plot_options.custom_ylim_bottom, True) + self.assertEqual(dummy_data2.plot_options.custom_ylim_bottom, True) + + _handle_kwargs(data_list, bottom_lim=[0.08, 1.08]) + self.assertEqual(dummy_data1.plot_options.bottom_lim, 0.08) + self.assertEqual(dummy_data2.plot_options.bottom_lim, 1.08) + self.assertEqual(dummy_data1.plot_options.custom_ylim_bottom, True) + self.assertEqual(dummy_data2.plot_options.custom_ylim_bottom, True) + + @unittest.mock.patch("matplotlib.pyplot.subplots") + def test_handle_kwargs_figsize_default(self, mock_subplots): + """ + Tests handle_kwargs delivers default figsize + """ + + # Ensures subplots returns a tuple with two objects + mock_fig = unittest.mock.MagicMock() + mock_ax = unittest.mock.MagicMock() + mock_subplots.return_value = (mock_fig, mock_ax) + + # Actual test + dummy_data = get_dummy_McStasDataBinned_2d() + make_plot(dummy_data) + mock_subplots.assert_called_with(figsize=(13, 7), tight_layout=True) + + @unittest.mock.patch("matplotlib.pyplot.subplots") + def test_handle_kwargs_figsize_tuple(self, mock_subplots): + """ + Tests handle_kwargs with figsize keyword argument, here + using tuple as input + """ + + # Ensures subplots returns a tuple with two objects + mock_fig = unittest.mock.MagicMock() + mock_ax = unittest.mock.MagicMock() + mock_subplots.return_value = (mock_fig, mock_ax) + + # Actual test + dummy_data = get_dummy_McStasDataBinned_2d() + make_plot(dummy_data, figsize=(5, 9)) + mock_subplots.assert_called_with(figsize=(5, 9), tight_layout=True) + + @unittest.mock.patch("matplotlib.pyplot.subplots") + def test_handle_kwargs_figsize_list(self, mock_subplots): + """ + Tests handle_kwargs with figsize keyword argument, here + using tuple as input + """ + + # Ensures subplots returns a tuple with two objects + mock_fig = unittest.mock.MagicMock() + mock_ax = unittest.mock.MagicMock() + mock_subplots.return_value = (mock_fig, mock_ax) + + # Actual test + dummy_data = get_dummy_McStasDataBinned_2d() + make_plot(dummy_data, figsize=[5, 9]) + mock_subplots.assert_called_with(figsize=(5, 9), tight_layout=True) + + def test_handle_kwargs_single_element_to_list(self): + """ + Test handle_kwargs will grab a single McStasData element + and turn it into a list. + """ + + dummy_data = get_dummy_McStasDataBinned_2d() + self.assertFalse(isinstance(dummy_data, list)) + data_list = _handle_kwargs(dummy_data) + self.assertTrue(isinstance(data_list, list)) + + def test_plot_function_1D_normal(self): + """ + Run the plot function with 1D data set without showing the + result. + + """ + dummy_data = get_dummy_McStasDataBinned_1d() + + fig, ax0 = plt.subplots() + _plot_fig_ax(dummy_data, fig, ax0) + + def test_plot_function_1D_log(self): + """ + Run the plot function with 1D data set without showing the + result. Here with logarithmic y axis. + + """ + dummy_data = get_dummy_McStasDataBinned_1d() + + fig, ax0 = plt.subplots() + _plot_fig_ax(dummy_data, fig, ax0, log=True) + + def test_plot_function_2D_normal(self): + """ + Run the plot function with 2D data set without showing the + result. + + """ + dummy_data = get_dummy_McStasDataBinned_2d() + + fig, ax0 = plt.subplots() + _plot_fig_ax(dummy_data, fig, ax0) + + def test_plot_function_2D_log(self): + """ + Run the plot function with 2D data set without showing the + result. Here the intensity coloraxis is logarithmic. + + """ + dummy_data = get_dummy_McStasDataBinned_2d() + + fig, ax0 = plt.subplots() + _plot_fig_ax(dummy_data, fig, ax0, log=True) diff --git a/mcstasscript/tests/test_add_data.py b/mcstasscript/tests/test_add_data.py new file mode 100644 index 00000000..9208e29d --- /dev/null +++ b/mcstasscript/tests/test_add_data.py @@ -0,0 +1,236 @@ +import unittest +import numpy as np +import copy + +from mcstasscript.data.data import McStasDataBinned +from mcstasscript.data.data import McStasMetaData +from mcstasscript.jb_interface.simulation_interface import add_data + +def set_dummy_MetaDataBinned_1d(): + """ + Sets up simple McStasMetaData object with dimension, 1d case + """ + meta_data = McStasMetaData() + meta_data.component_name = "component for 1d" + meta_data.filename = "data.dat" + meta_data.dimension = 50 + + meta_data.info = {"Ncount" : 40} + + return meta_data + + +def set_dummy_McStasDataBinned_1d(): + """ + Sets up simple McStasData object, 1d case + """ + meta_data = set_dummy_MetaDataBinned_1d() + + intensity = np.ones(20) + error = np.ones(20) + ncount = np.ones(20) + axis = np.arange(20)*5.0 + + return McStasDataBinned(meta_data, intensity, error, ncount, xaxis=axis) + + +def set_dummy_MetaDataBinned_2d(): + """ + Sets up simple McStasMetaData object with dimensions, 2d case + """ + meta_data = McStasMetaData() + meta_data.component_name = "test a component" + meta_data.filename = "data.dat" + meta_data.dimension = [50, 100] + + meta_data.info = {"Ncount": 40} + + return meta_data + + +def set_dummy_McStasDataBinned_2d(): + """ + Sets up simple McStasData object, 2d case + """ + meta_data = set_dummy_MetaDataBinned_2d() + + intensity = np.ones(20).reshape(4, 5) + error = np.ones(20).reshape(4, 5) + ncount = np.ones(20).reshape(4, 5) + + return McStasDataBinned(meta_data, intensity, error, ncount) + +class Test_add_data(unittest.TestCase): + def test_1d_updates_correctly(self): + """ + Test that adding 1d dataset modifies only the intended dataset + """ + + data1 = set_dummy_McStasDataBinned_1d() + data1_original = copy.deepcopy(data1) + + data2 = set_dummy_McStasDataBinned_1d() + data2_original = copy.deepcopy(data2) + + add_data([data1], [data2]) + + # Data 2 should not be touched + self.assertTrue(np.array_equal(data2.Intensity, data2_original.Intensity)) + self.assertTrue(np.array_equal(data2.Error, data2_original.Error)) + self.assertTrue(np.array_equal(data2.Ncount, data2_original.Ncount)) + + # Data 1 Intensity should be unchanged, as data1 and data2 equal + self.assertTrue(np.array_equal(data1.Intensity, data1_original.Intensity)) + # Data 1 should be updated + self.assertFalse(np.array_equal(data1.Error, data1_original.Error)) + self.assertFalse(np.array_equal(data1.Ncount, data1_original.Ncount)) + + def test_1d_updates_different(self): + """ + Test that adding 1d datasets work as expected when different + """ + data1 = set_dummy_McStasDataBinned_1d() + data1.Intensity *= 2.0 + data1.Intensity[10:] *= 2.0 + data1.Error *= 1.5 + data1.Ncount *= 4.0 + data1.metadata.info["Ncount"] *= 4.0 + data1_original = copy.deepcopy(data1) + + data2 = set_dummy_McStasDataBinned_1d() + data2.Intensity *= 3.0 + data2.Error *= 1.5 + data2_original = copy.deepcopy(data2) + + add_data([data1], [data2]) + + # Data 2 should not be touched + self.assertTrue(np.array_equal(data2.Intensity, data2_original.Intensity)) + self.assertTrue(np.array_equal(data2.Error, data2_original.Error)) + self.assertTrue(np.array_equal(data2.Ncount, data2_original.Ncount)) + + # 4 times more weight on data1, intensity 2 and 3 + expected_low_intensity = 4/5*2.0 + 1/5*3.0 + # 4 times more weight on data1, intensity 4 and 3 + expected_high_intensity = 4/5*2.0*2.0 + 1/5*3.0 + expected_error = np.sqrt((4 / 5) ** 2 * 1.5 ** 2 + (1 / 5) ** 2 * 1.5 ** 2) + + for index in range(len(data1_original.Intensity)): + if index < 10: + self.assertEqual(data1.Intensity[index], expected_low_intensity) + else: + self.assertEqual(data1.Intensity[index], expected_high_intensity) + + self.assertEqual(data1.Error[index], expected_error) + self.assertEqual(data1.Ncount[index], 5.0) + + self.assertEqual(data1.metadata.info["Ncount"], 40*4+40) + + def test_fail(self): + """ + Test that adding datasets fail when they dont have the same monitors + + Both 1d and 2d cases included. + """ + + data11 = set_dummy_McStasDataBinned_1d() + data11.name = "first monitor" + data11.filename = "first_monitor.dat" + data12 = set_dummy_McStasDataBinned_2d() + data12.name = "second monitor" + data12.filename = "second_monitor.dat" + data13 = set_dummy_McStasDataBinned_1d() + data13.name = "third monitor" + data13.filename = "third_monitor.dat" + + data21 = set_dummy_McStasDataBinned_1d() + data21.name = "first monitor" + data21.filename = "first_monitor.dat" + data22 = set_dummy_McStasDataBinned_2d() + data22.name = "second monitor" + data22.filename = "second_monitor.dat" + data23 = set_dummy_McStasDataBinned_1d() + data23.name = "third monitor" + data23.filename = "third_monitor.dat" + + # Should succeed, monitors match + add_data([data11, data12, data13], [data21, data22, data23]) + # Should succeed, all monitors needed to update first argument present + add_data([data11, data12], [data21, data22, data23]) + + # Should fail if a monitor is missing + with self.assertRaises(NameError): + add_data([data11, data12, data13], [data21, data22]) + + data23.name = "different monitor" + # Should fail if name mismatch + with self.assertRaises(NameError): + add_data([data11, data12, data13], [data21, data22, data23]) + + def test_2d_updates_correctly(self): + """ + Test that adding 1d dataset modifies only the intended dataset + """ + + data1 = set_dummy_McStasDataBinned_2d() + data1_original = copy.deepcopy(data1) + + data2 = set_dummy_McStasDataBinned_2d() + data2_original = copy.deepcopy(data2) + + add_data([data1], [data2]) + + # Data 2 should not be touched + self.assertTrue(np.array_equal(data2.Intensity, data2_original.Intensity)) + self.assertTrue(np.array_equal(data2.Error, data2_original.Error)) + self.assertTrue(np.array_equal(data2.Ncount, data2_original.Ncount)) + + # Data 1 Intensity should be unchanged, as data1 and data2 equal + self.assertTrue(np.array_equal(data1.Intensity, data1_original.Intensity)) + # Data 1 should be updated + self.assertFalse(np.array_equal(data1.Error, data1_original.Error)) + self.assertFalse(np.array_equal(data1.Ncount, data1_original.Ncount)) + + def test_2d_updates_different(self): + """ + Test that adding 2d datasets work as expected when different + """ + data1 = set_dummy_McStasDataBinned_2d() + data1.Intensity *= 2.0 + data1.Intensity[1,:] *= 2.0 + data1.Error *= 1.5 + data1.Ncount *= 4.0 + data1.metadata.info["Ncount"] *= 4.0 + data1_original = copy.deepcopy(data1) + + data2 = set_dummy_McStasDataBinned_2d() + data2.Intensity *= 3.0 + data2.Error *= 1.5 + data2_original = copy.deepcopy(data2) + + add_data([data1], [data2]) + + # Data 2 should not be touched + self.assertTrue(np.array_equal(data2.Intensity, data2_original.Intensity)) + self.assertTrue(np.array_equal(data2.Error, data2_original.Error)) + self.assertTrue(np.array_equal(data2.Ncount, data2_original.Ncount)) + + # 4 times more weight on data1, intensity 2 and 3 + expected_low_intensity = 4/5*2.0 + 1/5*3.0 + # 4 times more weight on data1, intensity 4 and 3 + expected_high_intensity = 4/5*2.0*2.0 + 1/5*3.0 + expected_error = np.sqrt((4 / 5) ** 2 * 1.5 ** 2 + (1 / 5) ** 2 * 1.5 ** 2) + + for index1 in range(len(data1_original.Intensity[:,0])): + for index2 in range(len(data1_original.Intensity[0, :])): + + if index1 == 1: + self.assertEqual(data1.Intensity[index1, index2], expected_high_intensity) + else: + self.assertEqual(data1.Intensity[index1, index2], expected_low_intensity) + + self.assertEqual(data1.Error[index1, index2], expected_error) + self.assertEqual(data1.Ncount[index1, index2], 5.0) + + self.assertEqual(data1.metadata.info["Ncount"], 40*4+40) + diff --git a/mcstasscript/tests/test_component.py b/mcstasscript/tests/test_component.py new file mode 100644 index 00000000..7615261b --- /dev/null +++ b/mcstasscript/tests/test_component.py @@ -0,0 +1,897 @@ +import io +import unittest +import unittest.mock + +from mcstasscript.helper.mcstas_objects import Component +from mcstasscript.helper.formatting import bcolors +from mcstasscript.helper.exceptions import McStasError + + +def setup_Component_all_keywords(): + """ + Sets up a Component by using all initialize keywords + """ + + return Component("test_component", + "Arm", + AT=[0.124, 183.9, 157], + AT_RELATIVE="home", + ROTATED=[482, 1240.2, 0.185], + ROTATED_RELATIVE="etc", + WHEN="1==2", + EXTEND="nscat = 8;", + GROUP="developers", + JUMP="myself 37", + SPLIT=7, + comment="test comment") + + +def setup_Component_relative(): + """ + Sets up a Component with the relative keyword used + """ + return Component("test_component", + "Arm", + AT=[0.124, 183.9, 157], + ROTATED=[482, 1240.2, 0.185], + RELATIVE="source", + WHEN="1==2", + EXTEND="nscat = 8;", + GROUP="developers", + JUMP="myself 37", + SPLIT=7, + comment="test comment") + + +def setup_Component_with_parameters(): + """ + Sets up a Component with parameters and all options used. + + """ + comp = setup_Component_all_keywords() + + comp._unfreeze() + # Need to set up attribute parameters + comp.new_par1 = 1.5 + comp.new_par2 = 3 + comp.new_par3 = None + comp.this_par = "test_val" + comp.that_par = "\"txt_string\"" + # also need to categorize them as when created + comp.parameter_names = ["new_par1", "new_par2", "new_par3", + "this_par", "that_par"] + comp.parameter_defaults = {"new_par1": 5.1, + "new_par2": 9, + "new_par3": None, + "this_par": "conga", + "that_par": "\"txt\""} + comp.parameter_comments = {"new_par1": "This is important", + "new_par2": "This is less important", + "this_par": "!", + "that_par": ""} + comp.parameter_types = {"new_par1": "double", + "new_par2": "int", + "this_par": "", + "that_par": "string"} + comp.parameter_units = {"new_par1": "m", + "new_par2": "AA", + "this_par": "", + "that_par": "1"} + comp.line_limit = 117 + comp._freeze() + + return comp + + +class TestComponent(unittest.TestCase): + """ + Components are the building blocks used to create an instrument in + the McStas meta language. They describe spatially seperated parts + of the neutron scattering instrument. Here the class component is + tested. + """ + + def test_Component_basic_init(self): + """ + Testing basic initialization + + """ + + comp = Component("test_component", "Arm") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + + def test_Component_basic_init_defaults(self): + """ + Testing basic initialization sets the correct defaults + """ + + comp = Component("test_component", "Arm") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.AT_data, [0, 0, 0]) + self.assertEqual(comp.AT_relative, "ABSOLUTE") + self.assertEqual(comp.ROTATED_data, [0, 0, 0]) + self.assertEqual(comp.ROTATED_relative, "ABSOLUTE") + self.assertEqual(comp.WHEN, "") + self.assertEqual(comp.EXTEND, "") + self.assertEqual(comp.GROUP, "") + self.assertEqual(comp.JUMP, "") + self.assertEqual(comp.comment, "") + + def test_Component_init_complex_call(self): + """ + Testing keywords set attributes correctly + """ + + comp = setup_Component_all_keywords() + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.AT_data, [0.124, 183.9, 157]) + self.assertEqual(comp.AT_relative, "RELATIVE home") + self.assertEqual(comp.ROTATED_data, [482, 1240.2, 0.185]) + self.assertEqual(comp.ROTATED_relative, "RELATIVE etc") + self.assertEqual(comp.WHEN, "WHEN (1==2)") + self.assertEqual(comp.EXTEND, "nscat = 8;\n") + self.assertEqual(comp.GROUP, "developers") + self.assertEqual(comp.JUMP, "myself 37") + self.assertEqual(comp.SPLIT, 7) + self.assertEqual(comp.comment, "test comment") + + def test_Component_init_complex_call_relative(self): + """ + Tests the relative keyword overwrites AT_relative and + ROTATED_relative + """ + comp = setup_Component_relative() + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.AT_data, [0.124, 183.9, 157]) + self.assertEqual(comp.AT_relative, "RELATIVE source") + self.assertEqual(comp.ROTATED_data, [482, 1240.2, 0.185]) + self.assertEqual(comp.ROTATED_relative, "RELATIVE source") + self.assertEqual(comp.WHEN, "WHEN (1==2)") + self.assertEqual(comp.EXTEND, "nscat = 8;\n") + self.assertEqual(comp.GROUP, "developers") + self.assertEqual(comp.JUMP, "myself 37") + self.assertEqual(comp.SPLIT, 7) + self.assertEqual(comp.comment, "test comment") + + def test_Component_basic_init_set_AT(self): + """ + Testing set_AT method + """ + comp = Component("test_component", "Arm") + + comp.set_AT([12.124, 214.0, 2], RELATIVE="monochromator") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.AT_data, [12.124, 214.0, 2]) + self.assertEqual(comp.AT_relative, "RELATIVE monochromator") + + def test_Component_freeze(self): + """ + Testing frozen Component cant have new attributes, and that + _unfreeze / _freeze works correctly. + """ + comp = Component("test_component", "Arm") + + with self.assertRaises(AttributeError): + comp.new_parameter = 5 + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + + comp._unfreeze() + comp.new_parameter = 5 + + self.assertEqual(comp.new_parameter, 5) + + comp._freeze() + with self.assertRaises(AttributeError): + comp.another_parameter = 5 + + def test_Component_basic_init_set_AT_Component(self): + """ + Testing set_AT method using Component object and method + """ + + prev_component = Component("relative_base", "Arm") + comp = Component("test_component", "Arm") + + comp.set_AT([12.124, 214.0, 2], RELATIVE=prev_component) + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.AT_data, [12.124, 214.0, 2]) + self.assertEqual(comp.AT_relative, "RELATIVE relative_base") + + def test_Component_basic_init_set_AT_Component_keyword(self): + """ + Testing set_AT method using Component object and keyword argument + """ + + prev_component = Component("relative_base", "Arm") + comp = Component("test_component", "Arm", + AT=[1, 2, 3.0], AT_RELATIVE=prev_component) + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.AT_data, [1, 2, 3.0]) + self.assertEqual(comp.AT_relative, "RELATIVE relative_base") + + def test_Component_basic_init_set_ROTATED(self): + """ + Testing set_ROTATED method med relative as string + """ + + comp = Component("test_component", "Arm") + + comp.set_ROTATED([1204.8, 8490.1, 129], RELATIVE="analyzer") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.ROTATED_data, [1204.8, 8490.1, 129]) + self.assertEqual(comp.ROTATED_relative, "RELATIVE analyzer") + + def test_Component_basic_init_set_ROTATED_Component(self): + """ + Testing set_ROTATED method with relative as Component object + """ + + prev_component = Component("relative_base", "Arm") + comp = Component("test_component", "Arm") + + comp.set_ROTATED([1204.8, 8490.1, 129], RELATIVE=prev_component) + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.ROTATED_data, [1204.8, 8490.1, 129]) + self.assertEqual(comp.ROTATED_relative, "RELATIVE relative_base") + + def test_Component_basic_init_set_ROTATED_Component_keyword(self): + """ + Testing setting ROTATION with keyword and Component object input + """ + + prev_component = Component("relative_base", "Arm") + comp = Component("test_component", "Arm", + ROTATED=[1, 2, 3.0], ROTATED_RELATIVE=prev_component) + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.ROTATED_data, [1, 2, 3.0]) + self.assertEqual(comp.ROTATED_relative, "RELATIVE relative_base") + + def test_Component_basic_init_set_RELATIVE(self): + """ + Testing set_RELATIVE method with string + """ + + comp = Component("test_component", "Arm") + + comp.set_RELATIVE("sample") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.AT_relative, "RELATIVE sample") + self.assertEqual(comp.ROTATED_relative, "RELATIVE sample") + + def test_Component_basic_object_ref_init_set_RELATIVE(self): + """ + Testing set_RELATIVE method with Component object input + """ + + prev_component = Component("relative_base", "Arm") + comp = Component("test_component", "Arm") + + comp.set_RELATIVE(prev_component) + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.AT_relative, "RELATIVE relative_base") + self.assertEqual(comp.ROTATED_relative, "RELATIVE relative_base") + + def test_component_basic_init_set_parameters(self): + """ + Testing set_parameters method. Need to set some attribute + parameters manually to test this. + """ + + comp = Component("test_component", "Arm") + + # Need to add some parameters to this bare component + # Parameters are usually added by McStas_Instr + comp._unfreeze() + comp.new_par1 = 1 + comp.new_par2 = 3 + comp.this_par = 1492.2 + + comp.set_parameters({"new_par1": 37.0, + "new_par2": 12.0, + "this_par": 1}) + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.new_par1, 37.0) + self.assertEqual(comp.new_par2, 12.0) + self.assertEqual(comp.this_par, 1) + + with self.assertRaises(NameError): + comp.set_parameters({"new_par3": 37.0}) + + def test_Component_basic_init_set_WHEN(self): + """ + Testing WHEN method + """ + + comp = Component("test_component", "Arm") + + comp.set_WHEN("1 != 2") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.WHEN, "WHEN (1 != 2)") + + def test_Component_basic_init_set_GROUP(self): + """ + Testing set_GROUP method + """ + + comp = Component("test_component", "Arm") + + comp.set_GROUP("test group") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.GROUP, "test group") + + def test_Component_basic_init_set_JUMP(self): + """ + Testing set_JUMP method + """ + + comp = Component("test_component", "Arm") + + comp.set_JUMP("test jump") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.JUMP, "test jump") + + def test_Component_basic_init_set_SPLIT(self): + """ + Testing set_SPLIT method + """ + + comp = Component("test_component", "Arm") + + comp.set_SPLIT(500) + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.SPLIT, 500) + + def test_Component_basic_init_set_EXTEND(self): + """ + Testing set_EXTEND method + """ + + comp = Component("test_component", "Arm") + + comp.append_EXTEND("test code") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.EXTEND, "test code\n") + + comp.append_EXTEND("new code") + + self.assertEqual(comp.EXTEND, "test code\nnew code\n") + + def test_Component_basic_init_set_comment(self): + """ + Testing set_comment method + """ + comp = Component("test_component", "Arm") + + comp.set_comment("test comment") + + self.assertEqual(comp.name, "test_component") + self.assertEqual(comp.component_name, "Arm") + self.assertEqual(comp.comment, "test comment") + + def test_Component_basic_new_attribute_error(self): + """ + The Component class is frozen after initialize in order to + prevent the user accidentilly misspelling an attribute name, + or at least be able to report an error when they do so. + """ + + comp = Component("test_component", "Arm") + with self.assertRaises(AttributeError): + comp.new_attribute = 1 + + # If unfreeze does not work, this would cause an error + comp._unfreeze() + comp.new_attribute = 1 + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_Component_write_to_file_simple(self, mock_f): + """ + Testing that a Component can be written to file with the + expected output. Here with simple input. + """ + + comp = Component("test_component", "Arm") + + comp._unfreeze() + # Need to set up attribute parameters + # Also need to categorize them as when created + comp.parameter_names = [] + comp.parameter_defaults = {} + comp.parameter_types = {} + comp._freeze() + + with mock_f('test.txt', 'w') as m_fo: + comp.write_component(m_fo) + + my_call = unittest.mock.call + expected_writes = [my_call("COMPONENT test_component = Arm("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_has_calls(expected_writes, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_Component_write_to_file_simple_search(self, mock_f): + """ + Testing that a Component can be written to file with the + expected output. Here with simple input and search. + """ + + comp = Component("test_component", "Arm") + comp.add_search("A search_statement") + comp.add_search("Another search_statement", SHELL=True) + comp.add_search('"One with double quotes"') + + comp._unfreeze() + # Need to set up attribute parameters + # Also need to categorize them as when created + comp.parameter_names = [] + comp.parameter_defaults = {} + comp.parameter_types = {} + comp._freeze() + + with mock_f('test.txt', 'w') as m_fo: + comp.write_component(m_fo) + + my_call = unittest.mock.call + expected_writes = [my_call('SEARCH "A search_statement"\n'), + my_call('SEARCH SHELL "Another search_statement"\n'), + my_call('SEARCH "One with double quotes"\n'), + my_call("COMPONENT test_component = Arm("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_has_calls(expected_writes, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_Component_write_to_file_include(self, mock_f): + """ + Testing that a Component can be written to file with the + expected output. Here with simple input. + """ + comp = Component("test_component", "Arm", + c_code_before="%include \"test.instr\"") + + comp.set_c_code_after("%include \"after.instr\"") + + comp._unfreeze() + # Need to set up attribute parameters + # Also need to categorize them as when created + comp.parameter_names = [] + comp.parameter_defaults = {} + comp.parameter_types = {} + comp._freeze() + + with mock_f('test.txt', 'w') as m_fo: + comp.write_component(m_fo) + + my_call = unittest.mock.call + expected_writes = [my_call("%include \"test.instr\" // From" + + " component named test_component\n"), + my_call("\n"), + my_call("COMPONENT test_component = Arm("), + my_call(")\n"), + my_call("AT (0, 0, 0)"), + my_call(" ABSOLUTE\n"), + my_call("\n%include \"after.instr\" // From" + + " component named test_component\n"), + my_call("\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + for c, w in zip(handle.write.call_args_list, expected_writes): + assert(c == w) + handle.write.assert_has_calls(expected_writes, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_Component_write_to_file_complex(self, mock_f): + """ + Testing that a Component can be written to file with the + expected output. Here with complex input. + """ + + comp = setup_Component_with_parameters() + + # This setup has a required parameter. + # If this parameter is not set, an error should be returned, + # this will be tested in the next test. + + comp.new_par3 = "1.25" + + with mock_f('test.txt', 'w') as m_fo: + comp.write_component(m_fo) + + my_call = unittest.mock.call + expected_writes = [my_call("// test comment\n"), + my_call("SPLIT 7 "), + my_call("COMPONENT test_component = Arm("), + my_call("\n"), + my_call(" new_par1 = 1.5"), + my_call(","), + my_call(" new_par2 = 3"), + my_call(","), + my_call("\n"), + my_call(" new_par3 = 1.25"), + my_call(","), + my_call(" this_par = test_val"), + my_call(","), + my_call("\n"), + my_call(" that_par = \"txt_string\""), + my_call(")\n"), + my_call("WHEN (1==2)\n"), + my_call("AT (0.124, 183.9, 157)"), + my_call(" RELATIVE home\n"), + my_call("ROTATED (482, 1240.2, 0.185)"), + my_call(" RELATIVE etc\n"), + my_call("GROUP developers\n"), + my_call("EXTEND %{\nnscat = 8;\n%}\n"), + my_call("JUMP myself 37\n"), + my_call("\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + for c, w in zip(handle.write.call_args_list, expected_writes): + assert(c == w) + handle.write.assert_has_calls(expected_writes, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_Component_write_to_file_complex_SPLIT_string(self, mock_f): + """ + Testing that a Component can be written to file with the + expected output. Here with complex input, and a string as + given for split. + """ + + comp = setup_Component_with_parameters() + comp.set_SPLIT("VAR") + + # This setup has a required parameter. + # If this parameter is not set, an error should be returned, + # this will be tested in the next test. + + comp.new_par3 = "1.25" + + with mock_f('test.txt', 'w') as m_fo: + comp.write_component(m_fo) + + my_call = unittest.mock.call + expected_writes = [my_call("// test comment\n"), + my_call("SPLIT VAR "), + my_call("COMPONENT test_component = Arm("), + my_call("\n"), + my_call(" new_par1 = 1.5"), + my_call(","), + my_call(" new_par2 = 3"), + my_call(","), + my_call("\n"), + my_call(" new_par3 = 1.25"), + my_call(","), + my_call(" this_par = test_val"), + my_call(","), + my_call("\n"), + my_call(" that_par = \"txt_string\""), + my_call(")\n"), + my_call("WHEN (1==2)\n"), + my_call("AT (0.124, 183.9, 157)"), + my_call(" RELATIVE home\n"), + my_call("ROTATED (482, 1240.2, 0.185)"), + my_call(" RELATIVE etc\n"), + my_call("GROUP developers\n"), + my_call("EXTEND %{\nnscat = 8;\n%}\n"), + my_call("JUMP myself 37\n"), + my_call("\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + for c, w in zip(handle.write.call_args_list, expected_writes): + assert(c == w) + handle.write.assert_has_calls(expected_writes, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_Component_write_Component_required_parameter_error(self, mock_f): + """ + Test an error occurs if the Component is asked to write to disk + without a required parameter. + """ + + comp = setup_Component_with_parameters() + + # new_par3 unset and has no default so an error will be raised + + with self.assertRaises(NameError): + with mock_f('test.txt', 'w') as m_fo: + comp.write_component(m_fo) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_Component_print_long(self, mock_stdout): + """ + Test print to console on the current state of the Component. + Using a mocked stdout to catch the print statements. + """ + + comp = setup_Component_with_parameters() + comp.append_EXTEND("second extend line;") + + comp.print_long() + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(output[0], "// test comment") + self.assertEqual(output[1], "SPLIT 7 COMPONENT test_component = Arm(") + + par_name = bcolors.BOLD + "new_par1" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKGREEN + + "1.5" + bcolors.ENDC + bcolors.ENDC) + self.assertEqual(output[2], " " + par_name + " = " + value + ", // [m]") + + par_name = bcolors.BOLD + "new_par2" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKGREEN + + "3" + bcolors.ENDC + bcolors.ENDC) + self.assertEqual(output[3], " " + par_name + " = " + value + ", // [AA]") + + par_name = bcolors.BOLD + "new_par3" + bcolors.ENDC + warning = (bcolors.FAIL + + " : Required parameter not yet specified" + + bcolors.ENDC) + self.assertEqual(output[4], " " + par_name + warning) + + par_name = bcolors.BOLD + "this_par" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKGREEN + + "test_val" + bcolors.ENDC + bcolors.ENDC) + self.assertEqual(output[5], " " + par_name + " = " + value + ", // []") + + par_name = bcolors.BOLD + "that_par" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKGREEN + + "\"txt_string\"" + bcolors.ENDC + bcolors.ENDC) + # No comma after last parameter + self.assertEqual(output[6], " " + par_name + " = " + value + " // [1]") + + self.assertEqual(output[7], ") WHEN (1==2)") + + self.assertEqual(output[8], "AT (0.124, 183.9, 157) RELATIVE home") + self.assertEqual(output[9], + "ROTATED (482, 1240.2, 0.185) RELATIVE etc") + self.assertEqual(output[10], "GROUP developers") + self.assertEqual(output[11], "EXTEND %{") + self.assertEqual(output[12], "nscat = 8;") + self.assertEqual(output[13], "second extend line;") + self.assertEqual(output[14], "%}") + self.assertEqual(output[15], "JUMP myself 37") + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_Component_print_short_standard(self, mock_stdout): + """ + Test print_short that prints name, type and location of the + Component to the console. + """ + + comp = setup_Component_with_parameters() + + comp.print_short() + + output = mock_stdout.getvalue() + output = output.split("\n") + + expected = ("test_component = Arm " + + "\tAT [0.124, 183.9, 157] RELATIVE home " + + "ROTATED [482, 1240.2, 0.185] RELATIVE etc") + + self.assertEqual(output[0], expected) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_Component_print_short_longest_name(self, mock_stdout): + """ + Test print_short that prints name, type and location of the + Component to the console. Here with specified longest_name. + """ + + comp = setup_Component_with_parameters() + + comp.print_short(longest_name=15) + + output = mock_stdout.getvalue() + output = output.split("\n") + + expected = ("test_component Arm " + + "\tAT [0.124, 183.9, 157] RELATIVE home " + + "ROTATED [482, 1240.2, 0.185] RELATIVE etc") + + self.assertEqual(output[0], expected) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_Component_show_parameters(self, mock_stdout): + """ + Test print_short that prints name, type and location of the + Component to the console. An extra parameter was added. + This test also checks for specific formatting. + """ + + comp = setup_Component_with_parameters() + + comp._unfreeze() + + # This is now not set by the user, but has default + # This results in different formatting in show_parameters + comp.new_par2 = None + + comp._freeze() + + comp.show_parameters() + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(output[0], " ___ Help Arm " + "_"*103) + + legend = ("|" + + bcolors.BOLD + "optional parameter" + bcolors.ENDC + + "|" + + bcolors.BOLD + bcolors.UNDERLINE + + "required parameter" + + bcolors.ENDC + bcolors.ENDC + + "|" + + bcolors.BOLD + bcolors.OKBLUE + + "default value" + + bcolors.ENDC + bcolors.ENDC + + "|" + + bcolors.BOLD + bcolors.OKGREEN + + "user specified value" + + bcolors.ENDC + bcolors.ENDC + + "|") + + self.assertEqual(output[1], legend) + + par_name = bcolors.BOLD + "new_par1" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKGREEN + + "1.5" + bcolors.ENDC + bcolors.ENDC) + comment = "// This is important" + self.assertEqual(output[2], + par_name + " = " + value + " [m] " + comment) + + par_name = bcolors.BOLD + "new_par2" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKBLUE + + "9" + bcolors.ENDC + bcolors.ENDC) + comment = "// This is less important" + self.assertEqual(output[3], + par_name + " = " + value + " [AA] " + comment) + + par_name = (bcolors.UNDERLINE + bcolors.BOLD + + "new_par3" + + bcolors.ENDC + bcolors.ENDC) + self.assertEqual(output[4], par_name) + + par_name = bcolors.BOLD + "this_par" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKGREEN + + "test_val" + bcolors.ENDC + bcolors.ENDC) + comment = "// !" + self.assertEqual(output[5], + par_name + " = " + value + " [] " + comment) + + par_name = bcolors.BOLD + "that_par" + bcolors.ENDC + value = (bcolors.BOLD + bcolors.OKGREEN + + "\"txt_string\"" + bcolors.ENDC + bcolors.ENDC) + comment = "" + self.assertEqual(output[6], + par_name + " = " + value + " [1]" + comment) + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_Component_show_parameters_simple(self, mock_stdout): + """ + Test print_short that prints name, type and location of the + Component to the console. No formatting used in simple + version. + """ + + comp = setup_Component_with_parameters() + + comp._unfreeze() + + # This is now not set by the user, but has default + # This results in different formatting in show_parameters + comp.new_par2 = None + + comp._freeze() + + comp.show_parameters_simple() + + output = mock_stdout.getvalue() + output = output.split("\n") + + self.assertEqual(output[0], "---- Help Arm -----") + + par_name = "new_par1" + value = "1.5" + comment = "// This is important" + self.assertEqual(output[1], + par_name + " = " + value + " [m] " + comment) + + par_name = "new_par2" + value = "9" + comment = "// This is less important" + self.assertEqual(output[2], + par_name + " = " + value + " [AA] " + comment) + + par_name = "new_par3" + self.assertEqual(output[3], par_name) + + par_name = "this_par" + value = "test_val" + comment = "// !" + self.assertEqual(output[4], + par_name + " = " + value + " [] " + comment) + + par_name = "that_par" + value = "\"txt_string\"" + comment = "" + self.assertEqual(output[5], + par_name + " = " + value + " [1]" + comment) + + def test_component_error_check(self): + + comp = setup_Component_with_parameters() + + # Currently no ilegal parameters + comp.check_parameters([]) + + # Introduce illegal parameter + comp.new_par1 = "wrong" + with self.assertRaises(McStasError): + comp.check_parameters([]) + + # Check no error is raised when on whitelist + comp.check_parameters(["wrong"]) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_data_set/L_mon.dat b/mcstasscript/tests/test_data_set/L_mon.dat new file mode 100644 index 00000000..6da328aa --- /dev/null +++ b/mcstasscript/tests/test_data_set/L_mon.dat @@ -0,0 +1,178 @@ +# Format: McCode with text headers +# URL: http://www.mccode.org +# Creator: McStas 2.5 - Dec. 12, 2018 +# Instrument: jupyter_demo.instr +# Ncount: 5000000 +# Trace: no +# Gravitation: no +# Seed: 1557975068 +# Directory: jupyter_demo3 +# Nodes: 4 +# Param: wavelength=1 +# Date: Wed May 15 08:19:54 2019 (1557901194) +# type: array_1d(150) +# Source: jupyter_demo (jupyter_demo.instr) +# component: L_mon +# position: 0 0 12 +# title: Wavelength monitor +# Ncount: 20000000 +# filename: L_mon.dat +# statistics: X0=1.00415; dX=0.0576164; +# signal: Min=0; Max=8.72065e-06; Mean=2.58585e-06; +# values: 0.000387878 4.37886e-07 2.23517e+06 +# xvar: L +# yvar: (I,I_err) +# xlabel: Wavelength [AA] +# ylabel: Intensity +# xlimits: 0.7 1.3 +# variables: L I I_err N +0.702 0 0 0 +0.706 0 0 0 +0.71 0 0 0 +0.714 0 0 0 +0.718 0 0 0 +0.722 0 0 0 +0.726 0 0 0 +0.73 0 0 0 +0.734 0 0 0 +0.738 0 0 0 +0.742 0 0 0 +0.746 0 0 0 +0.75 0 0 0 +0.754 0 0 0 +0.758 0 0 0 +0.762 0 0 0 +0.766 0 0 0 +0.77 0 0 0 +0.774 0 0 0 +0.778 0 0 0 +0.782 0 0 0 +0.786 0 0 0 +0.79 0 0 0 +0.794 0 0 0 +0.798 0 0 0 +0.802 0 0 0 +0.806 0 0 0 +0.81 0 0 0 +0.814 0 0 0 +0.818 0 0 0 +0.822 0 0 0 +0.826 0 0 0 +0.83 0 0 0 +0.834 0 0 0 +0.838 0 0 0 +0.842 0 0 0 +0.846 0 0 0 +0.85 0 0 0 +0.854 0 0 0 +0.858 0 0 0 +0.862 0 0 0 +0.866 0 0 0 +0.87 0 0 0 +0.874 0 0 0 +0.878 0 0 0 +0.882 0 0 0 +0.886 0 0 0 +0.89 0 0 0 +0.894 0 0 0 +0.898 0 0 0 +0.902 6.848407452e-06 6.248130986e-08 35763 +0.906 6.866161621e-06 6.148602348e-08 36439 +0.91 6.992118025e-06 6.217988572e-08 36685 +0.914 6.990299315e-06 6.215308587e-08 37111 +0.918 6.987681714e-06 6.200203725e-08 37442 +0.922 6.931391469e-06 6.138059091e-08 37526 +0.926 7.003200779e-06 6.117598703e-08 37880 +0.93 7.100447462e-06 6.167554991e-08 38316 +0.934 7.042332201e-06 6.03764795e-08 39010 +0.938 7.231194779e-06 6.154956608e-08 39270 +0.942 7.179696649e-06 6.161318973e-08 39469 +0.946 7.241356191e-06 6.140479837e-08 40012 +0.95 7.265397176e-06 6.179511592e-08 39943 +0.954 7.381198679e-06 6.257929826e-08 40851 +0.958 7.391137153e-06 6.219631387e-08 40892 +0.962 7.278247399e-06 6.106552423e-08 41019 +0.966 7.398367612e-06 6.196836884e-08 41552 +0.97 7.354610436e-06 6.075838077e-08 41677 +0.974 7.53410921e-06 6.223245816e-08 42310 +0.978 7.508440709e-06 6.194599015e-08 42612 +0.982 7.536226359e-06 6.166548059e-08 43109 +0.986 7.58747296e-06 6.191103555e-08 43217 +0.99 7.700813855e-06 6.246839896e-08 43894 +0.994 7.649421626e-06 6.117426148e-08 44068 +0.998 7.851906203e-06 6.259913983e-08 44691 +1.002 7.701359897e-06 6.182829984e-08 44689 +1.006 7.806647865e-06 6.21844611e-08 45391 +1.01 7.880220455e-06 6.255227108e-08 45560 +1.014 7.846829303e-06 6.172939534e-08 45839 +1.018 7.914230543e-06 6.17305117e-08 46414 +1.022 8.085177922e-06 6.313380395e-08 46798 +1.026 8.017689165e-06 6.188377035e-08 47055 +1.03 8.144096936e-06 6.25759159e-08 47704 +1.034 7.991669735e-06 6.172261948e-08 47450 +1.038 8.163793551e-06 6.184388935e-08 48424 +1.042 8.175189518e-06 6.209804185e-08 48681 +1.046 8.133108765e-06 6.147113879e-08 48618 +1.05 8.20871245e-06 6.129162456e-08 49514 +1.054 8.322510208e-06 6.296203203e-08 49671 +1.058 8.304703444e-06 6.260875512e-08 49804 +1.062 8.307654524e-06 6.195806359e-08 50006 +1.066 8.198945646e-06 6.085237807e-08 50330 +1.07 8.428986557e-06 6.215537039e-08 50868 +1.074 8.544564326e-06 6.238909803e-08 51562 +1.078 8.549680216e-06 6.24509714e-08 51740 +1.082 8.652166989e-06 6.229092608e-08 52506 +1.086 8.630931156e-06 6.294201767e-08 52297 +1.09 8.659533684e-06 6.193634129e-08 52945 +1.094 8.636982139e-06 6.140929118e-08 53001 +1.098 8.720647309e-06 6.237398087e-08 53546 +1.102 0 0 0 +1.106 0 0 0 +1.11 0 0 0 +1.114 0 0 0 +1.118 0 0 0 +1.122 0 0 0 +1.126 0 0 0 +1.13 0 0 0 +1.134 0 0 0 +1.138 0 0 0 +1.142 0 0 0 +1.146 0 0 0 +1.15 0 0 0 +1.154 0 0 0 +1.158 0 0 0 +1.162 0 0 0 +1.166 0 0 0 +1.17 0 0 0 +1.174 0 0 0 +1.178 0 0 0 +1.182 0 0 0 +1.186 0 0 0 +1.19 0 0 0 +1.194 0 0 0 +1.198 0 0 0 +1.202 0 0 0 +1.206 0 0 0 +1.21 0 0 0 +1.214 0 0 0 +1.218 0 0 0 +1.222 0 0 0 +1.226 0 0 0 +1.23 0 0 0 +1.234 0 0 0 +1.238 0 0 0 +1.242 0 0 0 +1.246 0 0 0 +1.25 0 0 0 +1.254 0 0 0 +1.258 0 0 0 +1.262 0 0 0 +1.266 0 0 0 +1.27 0 0 0 +1.274 0 0 0 +1.278 0 0 0 +1.282 0 0 0 +1.286 0 0 0 +1.29 0 0 0 +1.294 0 0 0 +1.298 0 0 0 diff --git a/mcstasscript/tests/test_data_set/PSD.dat b/mcstasscript/tests/test_data_set/PSD.dat new file mode 100644 index 00000000..24146293 --- /dev/null +++ b/mcstasscript/tests/test_data_set/PSD.dat @@ -0,0 +1,633 @@ +# Format: McCode with text headers +# URL: http://www.mccode.org +# Creator: McStas 2.5 - Dec. 12, 2018 +# Instrument: jupyter_demo.instr +# Ncount: 5000000 +# Trace: no +# Gravitation: no +# Seed: 1557975068 +# Directory: jupyter_demo3 +# Nodes: 4 +# Param: wavelength=1 +# Date: Wed May 15 08:19:54 2019 (1557901194) +# type: array_2d(200, 200) +# Source: jupyter_demo (jupyter_demo.instr) +# component: PSD +# position: 0 0 12 +# title: PSD monitor +# Ncount: 20000000 +# filename: PSD.dat +# statistics: X0=0.000283843; dX=1.8828; Y0=-0.00309525; dY=1.71996; +# signal: Min=0; Max=5.86601e-08; Mean=9.69694e-09; +# values: 0.000387878 4.37886e-07 2.23517e+06 +# xvar: X +# yvar: Y +# xlabel: X position [cm] +# ylabel: Y position [cm] +# zvar: I +# zlabel: Signal per bin +# xylimits: -5 5 -5 5 +# variables: I I_err N +# Data [PSD/PSD.dat] I: +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.883361597e-11 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.13138197e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.176303142e-18 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.111208884e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.512569703e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.304089484e-11 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.068813319e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.13889238e-14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.340218913e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 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.732642742e-24 0 1.433948998e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 2.461044926e-22 0 0 1.343194535e-18 0 1.121747477e-18 0 0 5.148744315e-19 4.610252444e-21 0 0 0 0 0 4.470662612e-19 0 0 0 0 0 0 1.863718963e-18 1.074015018e-19 4.835681448e-19 0 0 0 0 0 0 0 4.554417581e-19 3.478796283e-19 0 8.187606379e-19 0 0 0 0 0 0 0 0 0 3.555714916e-19 0 8.104780338e-19 0 0 0 5.386018288e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 1.25990799e-19 0 0 5.941281407e-19 0 0 1.101922078e-18 0 0 9.781469164e-19 0 0 0 0 0 0 0 0 0 1.252290404e-18 0 0 0 3.486975412e-19 0 0 0 0 3.799111561e-19 0 0 0 1.476254179e-24 2.621303867e-19 0 0 0 0 0 0 0 0 0 6.866524162e-11 0 0 0 0 0 4.33000772e-12 0 0 9.088757162e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.675351311e-26 0 0 0 0 0 0 7.557646374e-18 0 0 0 1.257706491e-22 3.641269306e-18 1.393328074e-23 0 2.213685524e-18 0 0 4.067980837e-18 0 0 0 0 0 1.922799834e-18 0 4.790007151e-19 5.456807638e-19 1.023205441e-18 8.021655266e-19 0 3.834609551e-18 0 0 9.036645786e-19 0 5.396075115e-18 5.005305026e-19 2.022910703e-18 2.069354936e-18 0 9.631043691e-19 9.799640231e-19 2.080657771e-18 0 3.671594357e-18 1.96300687e-18 3.215065596e-19 6.665384818e-18 1.054194872e-22 6.51158069e-18 1.106079261e-18 0 0 0 1.789514251e-18 2.703568659e-18 4.565937174e-18 0 1.522478718e-34 0 0 6.131642129e-19 2.362057132e-18 3.505344375e-18 9.034013004e-19 7.376701165e-18 1.075882266e-34 1.757360745e-18 0 7.305809513e-19 0 3.902534062e-19 5.817096237e-18 6.342592311e-18 0 2.259041574e-19 1.473683161e-17 5.822905428e-18 0 1.158922355e-17 8.642125804e-18 8.371075151e-18 5.944619327e-18 4.982595876e-19 1.706012427e-18 6.040143232e-31 5.429361333e-19 2.009887769e-33 1.666604204e-18 4.86604812e-18 0 3.601483454e-18 0 0 0 0 0 0 2.072320836e-18 2.757797922e-18 7.423373011e-19 2.876090711e-18 1.398351856e-35 1.416345762e-18 3.147907574e-18 2.058949381e-18 1.779278532e-18 0 0 1.034692914e-20 0 9.797793582e-19 0 0 0 1.737256458e-18 5.135909176e-22 0 0 1.255352643e-18 2.291733282e-18 0 0 0 0 0 1.120282766e-18 0 5.813574604e-19 0 3.976519855e-18 0 0 0 4.4944314e-23 0 0 1.043594648e-23 0 0 0 0 1.510286312e-18 0 0 2.247638843e-18 0 0 0 1.008970517e-20 0 1.769195779e-20 3.033848292e-26 0 0 0 1.895800982e-26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.932381537e-25 0 0 6.336407602e-27 0 4.446441783e-22 0 1.155937215e-18 0 3.652495405e-25 1.202998959e-18 0 0 0 1.924196487e-18 3.630143839e-26 1.133528559e-20 2.925970566e-27 2.597376008e-18 1.188532696e-18 0 6.024542053e-18 4.786818638e-22 0 3.561645107e-18 9.77615639e-19 0 2.0939605e-17 5.677477208e-18 3.720861209e-18 4.438364031e-17 4.945540487e-19 1.43972842e-18 1.156222146e-17 4.567667549e-17 1.027674316e-18 2.310641008e-18 9.628300574e-18 1.639914231e-17 2.122178048e-17 5.597141062e-18 4.266993167e-18 1.270353875e-18 5.452211439e-18 2.184426763e-13 4.236072517e-18 1.193997672e-17 1.692445994e-17 1.374007692e-18 3.053750527e-20 1.881023682e-17 1.113752524e-18 2.953020999e-17 9.388985501e-18 1.232771598e-10 6.786380166e-17 3.020664649e-17 5.105282579e-18 7.317052942e-18 0 2.347704401e-17 2.651307498e-17 5.73425962e-18 7.174234307e-17 2.075314245e-18 1.280771526e-17 1.130554803e-18 1.239836723e-17 1.917093662e-17 2.811820253e-18 2.85167599e-18 5.439171506e-18 5.444704635e-17 9.688488624e-19 1.135796137e-17 9.863746238e-19 1.043065778e-33 1.268857468e-17 8.435176786e-19 2.411855762e-17 6.976144538e-18 3.958141309e-17 1.700374399e-17 2.373040121e-18 6.344593292e-18 4.106374309e-18 6.889567083e-17 1.246779735e-17 1.305370029e-16 1.418511719e-17 7.048002927e-19 3.638006573e-18 2.39592817e-17 5.378319349e-17 2.980565358e-17 1.820340921e-17 6.289986479e-19 3.822262434e-18 1.71095485e-17 4.852756328e-18 9.746803322e-18 2.919810801e-18 3.447024676e-18 5.987265416e-18 9.564489141e-18 1.966122608e-17 1.29006474e-17 8.769201457e-18 2.236793718e-17 4.749513896e-18 1.701086832e-17 9.994906433e-17 2.709771867e-17 0 1.260235227e-17 3.853422418e-18 5.860273547e-19 3.686949447e-18 0 0 9.236553988e-19 4.001925491e-22 6.457226637e-17 1.38722029e-17 9.903571411e-17 9.582375747e-21 6.908745012e-19 3.272722628e-18 3.129109401e-17 1.885727491e-18 0 3.122775726e-18 5.644867108e-17 1.025621438e-23 8.498529489e-19 2.876336481e-18 9.735105267e-19 6.938259447e-21 0 1.729028439e-27 1.331324709e-17 0 1.120624184e-17 7.402719012e-20 1.377574933e-20 5.475207073e-18 9.701698354e-24 0 3.106455003e-22 0 0 3.398329886e-20 3.427941887e-19 3.918498513e-19 0 0 5.574788499e-24 0 4.308052104e-24 0 0 0 1.150551558e-25 0 0 0 0 0 0 0 0 0 0 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.618978547e-25 0 0 0 0 2.705283451e-24 0 2.520387046e-20 8.732481691e-19 3.122454229e-27 0 1.453145883e-19 4.948090053e-19 2.00489967e-26 7.362246835e-19 3.235393234e-19 1.957484878e-18 0 3.372998837e-20 6.045169531e-22 4.171607681e-19 1.890809631e-18 6.16786383e-18 1.046078351e-17 2.05565124e-17 4.197002783e-18 1.503682242e-17 7.585234274e-18 1.386219368e-17 4.319118263e-19 2.039428755e-18 1.45794005e-18 6.549250911e-17 4.988668224e-17 4.661143681e-18 3.570619367e-17 2.186887165e-16 5.668977848e-18 6.285756021e-17 1.586690479e-18 6.125446644e-19 1.968804785e-17 1.996364794e-18 3.169465512e-17 2.792140697e-16 1.919747538e-17 2.013123172e-17 7.518240244e-18 3.103120922e-16 2.63557555e-18 2.968462823e-17 3.474329307e-17 5.466707725e-17 9.169162623e-18 2.405326723e-17 1.807962952e-16 3.388042901e-16 1.950853062e-17 1.767088588e-17 4.378351067e-17 7.820387247e-18 2.635906151e-16 2.650955639e-17 1.947667804e-18 2.20923217e-17 7.968759497e-17 2.918956272e-16 9.069762461e-18 2.320485401e-17 5.551619442e-17 6.183639601e-16 1.339185233e-17 7.32997788e-17 1.824321505e-17 3.210379331e-17 4.680007054e-18 5.415860334e-17 1.071066377e-16 1.389188357e-16 6.985665525e-17 2.639099263e-17 7.125010822e-17 1.60175023e-16 1.156578093e-16 2.642599456e-16 2.122545426e-17 2.99281128e-17 6.874638585e-19 6.911957126e-17 1.623190839e-16 9.874459631e-17 2.195025332e-17 3.531426193e-17 2.42253544e-17 1.135996279e-16 7.000588223e-17 1.029132762e-17 2.700536132e-16 6.992343748e-18 2.909714205e-16 9.36174457e-18 3.292741864e-16 5.92068615e-17 1.878292053e-16 2.465675244e-17 1.323856043e-17 4.117459929e-16 1.98387174e-16 1.892530565e-16 3.905030694e-17 2.185584575e-17 2.045747371e-16 7.852069781e-17 9.77030453e-17 1.354165841e-16 2.475331248e-17 9.474956477e-17 2.153590242e-16 3.214529196e-16 4.756206291e-16 1.474429763e-17 3.73183721e-17 1.705728878e-16 1.308589377e-17 9.378952439e-18 1.546433187e-16 1.822983899e-17 7.236595622e-18 7.923982787e-17 4.107091516e-17 4.381698523e-17 2.372435416e-18 8.728216998e-18 7.429630681e-17 2.388094089e-16 0 2.207243978e-16 2.976710812e-17 1.343695123e-16 5.165352379e-17 1.975003128e-16 2.754224652e-17 6.189768543e-19 1.036505292e-18 7.301845712e-23 1.875230458e-23 4.90690842e-19 9.829617798e-17 1.62078141e-19 2.234892338e-16 2.829409969e-18 0 6.113240021e-20 5.340894583e-23 2.476386315e-18 0 3.765582972e-24 0 9.885957957e-22 3.054202701e-20 0 0 0 3.125260257e-27 6.176499882e-24 4.749379128e-27 0 0 0 0 0 0 0 0 0 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.149531011e-27 0 1.435926142e-23 4.557092878e-25 0 8.52613378e-23 5.806270476e-22 7.559303246e-27 1.426575229e-21 6.165825379e-20 1.996800865e-18 7.106926755e-20 4.405198918e-19 7.811934775e-19 1.809465843e-18 8.408090034e-18 1.208154486e-23 5.624464153e-18 1.471077543e-18 8.391081989e-18 3.835559841e-22 8.406010041e-19 1.660972585e-22 4.071912244e-17 1.47016058e-15 1.36150002e-23 4.249877723e-15 5.042594049e-17 1.03333072e-17 2.659011284e-17 1.026699825e-16 8.083769402e-16 1.841170581e-18 8.660256841e-17 1.144512958e-15 2.713593201e-17 4.505137273e-16 4.021202639e-16 1.639003867e-16 1.657967355e-16 2.554004436e-16 1.205734232e-16 2.918550091e-16 1.088496272e-16 3.980056886e-17 8.980106131e-16 8.389228749e-16 2.919843199e-15 4.902938647e-16 2.553660411e-16 1.671327696e-16 4.325020569e-16 1.43646268e-16 6.97353175e-16 1.481890448e-17 2.442594002e-15 2.315406565e-16 8.620525963e-16 5.195848484e-17 4.757489969e-16 9.018825572e-16 1.034738477e-16 8.893686728e-17 1.15684885e-15 2.21843233e-15 9.661037044e-16 1.673057569e-15 9.082820927e-17 7.411117702e-17 5.278422825e-16 3.506655994e-16 2.850854313e-15 7.497327052e-16 2.284544038e-15 4.980393972e-15 1.751692746e-16 3.673677819e-16 2.635975067e-16 1.136532167e-16 7.816027063e-16 4.110513711e-16 9.244754955e-17 1.824529488e-15 2.49786007e-16 2.004108527e-15 3.166475503e-16 2.156375916e-16 1.104432094e-17 1.57395704e-16 1.67118629e-16 7.039836349e-16 3.316839664e-16 5.451029063e-16 3.43309826e-16 2.622067754e-16 7.342369769e-16 2.518746279e-16 4.470486089e-17 3.888545042e-15 1.100711721e-15 9.90456244e-16 1.288175369e-15 5.963297427e-16 1.403785813e-16 1.044683008e-15 1.694718905e-16 3.483859703e-16 2.322077118e-16 4.929985759e-16 1.217422093e-16 4.194344467e-16 6.697798436e-16 2.13856539e-15 2.092687637e-15 1.788512528e-15 2.297154108e-16 2.199898296e-16 9.061174059e-16 7.928193125e-17 3.152266004e-16 1.119618973e-16 8.406723271e-17 7.458018389e-16 8.648041371e-16 3.509348976e-16 1.133283081e-15 7.328300491e-16 2.643877034e-16 1.514294579e-16 7.684530634e-17 2.42108899e-17 4.243045667e-16 9.455270944e-16 1.975947564e-16 9.180810371e-17 1.079183842e-16 2.063365897e-15 4.910506634e-17 5.34277825e-19 7.861298351e-16 1.572956271e-17 2.61868937e-16 2.903390805e-17 9.094938835e-17 6.739402379e-18 1.780514217e-18 1.03135876e-17 4.786557551e-17 6.771110634e-18 8.936111111e-17 1.213229152e-18 1.16637106e-16 1.687861945e-16 1.395015736e-21 1.763621936e-15 3.204579182e-17 2.745568477e-18 2.55680838e-24 9.960538558e-19 3.063926861e-26 1.548688463e-19 1.170219639e-18 1.283193826e-18 4.970876495e-21 1.974330465e-27 1.111032839e-26 7.914502251e-25 8.050245653e-26 0 0 2.928780552e-25 0 0 7.022157843e-15 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 2.953196914e-11 0 0 0 0 0 0 0 0 2.866898892e-24 0 0 2.324122825e-24 1.474856661e-24 2.699272672e-21 2.527953929e-22 1.92601185e-23 0 1.038434369e-25 0 4.772837098e-18 3.432325593e-19 1.121086129e-16 6.525265491e-18 3.46100738e-19 5.416964876e-18 2.792142584e-22 3.000472629e-16 2.094836312e-15 9.262376454e-16 1.518549913e-17 3.176215658e-16 1.294318642e-15 1.759820965e-17 5.348424147e-17 8.054263027e-15 1.431689145e-17 1.744021491e-15 1.320375081e-15 1.164169371e-14 7.623684678e-16 3.729414798e-17 7.836891925e-15 3.239935489e-15 1.07589195e-16 9.550676752e-15 2.01632555e-16 3.003503441e-15 1.4296717e-24 2.380543912e-15 6.056179108e-17 2.978348124e-16 2.056649116e-15 4.241643287e-15 3.490715015e-15 1.343828916e-15 8.701439006e-16 4.480776537e-15 8.74404847e-16 6.772921736e-16 1.578967033e-15 2.243852618e-15 9.481247336e-15 4.886919004e-15 1.561052175e-14 3.851234753e-16 3.201017361e-15 7.398504903e-16 3.182392656e-15 4.364264622e-15 2.690142881e-15 1.243052825e-15 2.736208384e-15 3.116210647e-16 2.581392345e-17 2.010837229e-15 6.077168704e-16 9.042720632e-15 2.789314384e-15 7.584767694e-15 3.69540967e-15 6.092531473e-16 2.331916317e-15 1.057509131e-14 5.921308249e-15 1.406971769e-15 1.371836995e-15 1.439965568e-14 5.451728751e-16 5.463383065e-15 1.207099872e-14 5.458089063e-15 1.488752415e-14 1.022282511e-14 2.203321338e-14 1.667506674e-15 7.913138201e-15 6.106230804e-15 3.687003222e-15 7.644442512e-15 2.627273787e-15 7.756408043e-16 2.253163235e-14 7.579944456e-15 4.189845698e-15 1.766126396e-15 1.237602912e-15 2.409433282e-14 1.933261272e-15 5.501095569e-16 2.827606214e-16 4.74465762e-15 1.228683836e-14 6.575084925e-16 3.36258085e-16 5.415655463e-15 2.459440809e-14 9.107910333e-16 5.819264787e-15 9.813927864e-15 3.214335402e-15 1.967973032e-14 1.520614458e-14 1.934959673e-16 7.825910018e-16 2.441522654e-14 9.512582251e-15 2.632128049e-16 3.681114576e-15 4.508404403e-15 3.50618915e-14 5.686998558e-16 1.581323867e-16 5.234316785e-16 2.584097448e-15 1.616045921e-16 3.039174841e-15 7.094271862e-16 8.445353288e-16 3.990685619e-16 4.498516584e-15 4.559342082e-15 3.22948093e-15 6.174442543e-16 3.13985442e-15 5.042546339e-16 4.742865369e-16 7.891501557e-17 2.724381926e-17 1.423049956e-16 1.29666263e-14 1.861452495e-16 6.525644171e-18 8.26009811e-15 1.790078102e-15 5.635644267e-17 1.379411292e-15 4.121367873e-17 6.062648911e-17 2.50115588e-15 5.602937572e-16 1.205753006e-18 4.18254297e-16 1.75194785e-17 1.730093195e-18 3.067548569e-24 4.555048356e-22 3.770156055e-18 1.167931728e-20 4.198040383e-19 1.898266026e-20 2.03112338e-19 6.730962298e-19 9.009874504e-26 0 9.239334337e-25 2.268051779e-24 0 0 0 0 0 1.642097949e-12 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.137638324e-26 0 0 0 0 1.306764671e-18 1.205378064e-24 2.694083209e-18 2.741613615e-21 4.095307634e-16 1.532946163e-18 1.579212641e-21 9.281472578e-19 5.347855699e-15 5.217531588e-16 2.776370073e-20 5.359478825e-18 2.168134014e-18 1.671162758e-15 6.489762637e-21 2.6111314e-14 9.093428396e-11 2.697837551e-20 1.315540261e-14 5.022321081e-16 3.551114265e-14 1.557349506e-14 1.730884015e-14 1.144573955e-14 2.161972928e-14 3.801233187e-14 4.154838625e-14 9.755921181e-15 2.448683555e-16 1.843183319e-16 2.844214998e-15 5.541779601e-14 7.014609959e-15 3.435603126e-14 8.76048764e-15 2.056502058e-14 2.469728512e-14 1.212814496e-14 1.245668577e-14 2.394033039e-15 5.216223768e-14 3.196312592e-15 1.718366147e-14 1.032463787e-15 5.848065427e-15 3.51342752e-14 3.52575101e-14 1.672856457e-14 1.259412495e-14 5.340466755e-14 3.201869713e-14 6.552964526e-14 6.519678872e-14 7.357655182e-11 2.582781391e-14 3.370410288e-14 6.752190471e-15 1.854131858e-15 1.682232853e-13 4.183190386e-14 5.353414263e-14 3.9425517e-15 4.078968756e-15 2.432365464e-14 5.037430925e-14 3.329438602e-15 9.014362184e-15 1.102940972e-14 1.581016109e-14 7.712779772e-15 3.742294757e-14 1.844506007e-14 7.641750633e-14 1.109822802e-13 4.454468288e-15 3.740427001e-14 3.847676475e-14 5.160197788e-14 9.102706989e-15 4.355189519e-14 9.584437279e-14 9.237997335e-14 8.082608167e-14 1.646040374e-14 1.663833573e-15 1.35618661e-13 2.436554951e-15 2.14278394e-14 1.175229345e-14 1.960283876e-14 8.720293928e-14 6.280659294e-14 9.768994206e-15 5.885836979e-15 2.165731125e-15 7.409905955e-15 1.614537678e-14 4.536267755e-15 1.933172681e-13 2.008141688e-15 1.19304424e-14 1.161226585e-13 3.893956826e-15 1.069246647e-14 1.878284736e-14 7.200356633e-14 1.531773691e-13 1.964252355e-14 5.378124208e-14 8.971337058e-14 2.014663263e-14 9.481504956e-11 5.37264557e-15 1.633776985e-15 4.496448428e-13 3.324484517e-14 1.628757698e-15 3.74801062e-14 1.02999525e-13 1.785078421e-14 1.132677313e-14 1.765741186e-14 1.561636698e-14 7.761417556e-15 4.340229346e-14 4.503104634e-15 6.008300599e-15 8.746988927e-16 9.039133009e-15 3.538641322e-14 3.138870787e-15 8.083243759e-14 2.297475899e-14 3.507534397e-14 2.538668713e-14 4.540854829e-15 4.363673666e-15 6.260360606e-15 6.601153481e-15 7.523664109e-18 2.450330262e-17 1.941641494e-15 5.81242654e-15 1.197074773e-15 1.780307734e-15 3.4029568e-16 1.391010621e-13 2.367338277e-16 0 1.793507368e-17 6.263564252e-18 1.376310704e-19 3.222519454e-15 0 3.165037436e-18 3.459404842e-19 1.158927846e-16 4.166241833e-18 4.844415861e-24 0 0 3.691166512e-27 1.947910812e-21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1.050143151e-10 0 0 0 0 0 0 0 0 0 0 0 2.787857845e-23 1.098837244e-26 0 3.431938097e-19 1.569830119e-21 2.710206498e-16 3.028082649e-22 5.104523709e-17 3.783220895e-18 1.401128507e-14 1.0946737e-15 6.939738179e-15 3.826486011e-17 1.335476116e-15 1.121798648e-16 1.549308864e-13 2.591246726e-13 8.330499519e-15 2.466581374e-14 1.10494092e-13 1.220584487e-13 2.491099744e-13 1.155104362e-14 3.384413643e-14 3.906911529e-15 4.9211016e-14 2.023039984e-13 1.137521035e-14 9.374584188e-14 2.526797763e-14 2.118673354e-15 5.380559196e-13 5.163709855e-14 4.391497065e-13 2.64962416e-14 1.184551701e-14 5.24877446e-13 5.598924903e-16 9.147189317e-14 4.870240812e-15 9.885170353e-13 8.618970064e-15 1.240099527e-13 1.000334389e-13 6.170169499e-14 2.088153001e-14 9.244142436e-14 3.317285755e-15 3.858368756e-14 8.826852299e-14 1.890701992e-13 1.219270961e-13 1.465308126e-14 2.46867302e-13 2.480878642e-13 2.453902462e-14 6.562758591e-14 1.133917373e-12 2.667555082e-14 2.279075838e-14 1.546703839e-13 3.626266574e-13 1.748330899e-14 1.269449029e-13 1.391526978e-12 1.389294807e-13 4.491383127e-13 1.141739464e-13 1.774827464e-13 8.485839654e-15 9.139257737e-13 2.177171651e-13 7.68156089e-14 3.281927668e-13 1.928085395e-13 1.089314286e-14 2.312025452e-14 3.139179943e-13 1.543661819e-13 6.318808701e-13 4.624803361e-14 4.750727797e-13 4.1764626e-14 1.234348731e-13 6.702872013e-14 1.352803905e-13 1.140893819e-13 2.7329466e-13 6.433245142e-13 3.711412828e-14 2.914419078e-13 7.031266023e-13 1.950479803e-12 2.164024139e-13 2.353707112e-14 3.761100218e-13 1.848189761e-13 3.492158664e-13 3.458805185e-13 1.534875231e-13 3.021189426e-14 9.085296252e-14 2.102688161e-13 1.072678889e-13 1.235081315e-13 9.436639053e-14 1.3283632e-13 1.599496398e-12 4.155174749e-13 2.45632277e-13 1.63133652e-12 1.86289999e-13 5.068933393e-14 6.125650232e-13 3.771006771e-14 2.882517482e-13 1.671516174e-14 3.650712834e-13 5.33219425e-13 1.645075281e-14 3.743202773e-15 2.760457156e-13 7.448421232e-14 1.851810817e-13 5.358674633e-13 1.826032669e-13 6.786307029e-14 2.999526648e-13 3.768481971e-14 6.074017327e-14 5.027687389e-13 2.438208708e-14 3.07244219e-13 3.791986083e-15 1.364467375e-14 2.04300596e-14 1.103026046e-14 2.398613365e-14 2.593757363e-15 7.078770898e-14 8.198468377e-14 6.968326619e-16 2.323543377e-13 9.303065874e-15 7.408200457e-13 8.105922392e-14 4.292650148e-15 1.708548826e-16 4.437698474e-16 1.685745909e-15 2.235036534e-17 3.775956341e-18 2.84906883e-16 1.921424354e-13 4.309835247e-20 2.230870346e-16 6.930558667e-18 1.114221057e-15 1.989258974e-20 2.636711172e-18 3.200131293e-19 4.774604234e-19 1.213649464e-23 1.769825862e-20 1.261961848e-23 6.863097117e-24 2.327811137e-21 0 0 6.65680438e-22 0 0 0 6.665385663e-11 0 0 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.882821688e-21 1.091106345e-26 5.040709308e-19 7.561145476e-22 1.279160855e-16 2.113911149e-16 3.67704124e-22 3.635153154e-17 4.862009834e-19 1.714829757e-25 2.018821954e-17 1.076296694e-14 8.174723763e-15 1.237415014e-18 7.974789317e-14 1.141970502e-16 2.099257142e-15 2.351762763e-15 1.238903293e-14 4.137124244e-14 3.095686303e-13 1.46165739e-13 2.164779759e-17 3.566914887e-14 2.308113127e-15 1.196741916e-12 1.658824489e-13 2.97342899e-14 3.594347381e-12 1.945811609e-14 2.634713629e-13 3.641479783e-13 3.521680908e-13 5.755260955e-13 1.442405719e-13 8.92250937e-12 2.001405361e-13 6.789669829e-15 3.603523933e-12 1.790814971e-12 2.331088154e-13 1.332288809e-14 4.141794406e-13 9.704698949e-13 3.521571469e-13 6.37320693e-13 2.135602772e-12 1.313043254e-12 1.696019474e-12 3.571042998e-13 2.950659702e-12 3.070642538e-12 4.901344787e-13 1.509523371e-12 1.312321555e-13 1.64917465e-12 1.613321577e-12 3.421673334e-12 2.157993814e-12 2.260637435e-12 1.223502124e-12 1.193587765e-12 1.64233441e-12 1.368095132e-13 1.216265429e-12 3.320836102e-13 3.143363343e-12 1.009049689e-12 1.008599937e-12 1.096227037e-12 9.211068016e-13 6.99106415e-14 1.280376273e-11 2.256246736e-12 1.43898653e-12 1.545108657e-12 5.38994038e-13 4.378933255e-13 2.893328168e-12 2.530232736e-12 7.225725862e-13 2.805984059e-12 5.792488324e-13 8.651437811e-13 4.876967444e-12 6.222120299e-13 1.471744572e-12 7.448365212e-13 5.29701336e-13 4.301336164e-12 3.369291754e-12 4.056321131e-13 5.521617073e-12 6.812486354e-13 6.046115823e-13 1.462942235e-12 1.960411594e-12 4.237523602e-12 1.683948551e-12 5.33008507e-12 5.390038329e-13 3.165467678e-12 1.255255175e-12 8.71640548e-13 8.131872181e-13 2.726292162e-13 1.667645444e-12 1.69969631e-12 2.064010713e-14 6.124602731e-12 1.46377416e-12 1.131362008e-11 1.931714924e-12 2.23990562e-13 9.772960547e-13 2.517066107e-12 8.907863405e-13 1.175874177e-12 2.716138571e-12 1.139067289e-12 1.085151504e-13 1.079380251e-12 3.907969748e-13 2.62965624e-13 1.700953668e-12 2.813964996e-12 6.00803049e-12 1.660660129e-12 1.187761306e-12 7.04240264e-13 4.357322789e-13 7.199875766e-14 3.569585621e-12 7.860198444e-14 8.525009949e-13 2.611983826e-12 1.544704547e-13 6.109660008e-14 1.14239657e-12 4.6336358e-12 3.679721579e-15 1.085194939e-13 7.066265343e-13 4.609238219e-12 9.882838256e-14 5.754529355e-17 9.713546449e-13 5.234516658e-13 1.170687122e-14 3.150332376e-12 1.894850586e-13 4.959613947e-15 4.858810763e-14 1.914069174e-15 2.513622403e-16 1.231352198e-16 2.002233687e-21 1.078317628e-17 5.870730632e-16 1.007415252e-18 1.237235266e-21 1.354937402e-19 6.010341067e-25 0 3.062069644e-16 0 0 0 0 0 0 0 0 0 0 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.193711649e-23 0 5.897454098e-24 0 1.96096864e-20 1.221464936e-18 1.459507327e-16 1.697898367e-13 9.323786969e-21 6.199140709e-15 6.665154001e-17 2.647614756e-14 1.495327363e-17 1.37768888e-13 6.506129049e-16 4.907531205e-16 4.844026684e-13 2.674266264e-14 4.096618208e-15 2.757856784e-13 4.541876715e-13 1.004876916e-12 1.155976956e-13 2.459676393e-11 8.189243246e-12 8.909581602e-12 1.162288452e-11 1.044349278e-12 6.651897398e-14 2.244954182e-11 1.019067354e-12 1.012282376e-13 8.963435578e-12 5.394989999e-12 7.584686834e-12 3.762363089e-14 1.211397579e-11 1.826779758e-12 6.712605734e-12 2.084456117e-11 3.840371501e-12 3.243678497e-11 3.952703096e-13 1.050487589e-11 3.407132091e-13 1.738149154e-12 4.655681014e-12 5.795262677e-12 3.471030014e-11 1.726815241e-11 2.390829425e-12 4.237171163e-12 3.464980758e-11 1.875946419e-11 4.803296438e-12 5.882086427e-13 1.366209703e-11 2.826942738e-11 1.404753639e-11 3.491377858e-12 5.352647082e-12 2.425356762e-11 2.273681614e-12 1.543398099e-11 2.40390786e-12 2.773742903e-12 1.569059723e-11 3.288314751e-11 2.527392053e-11 1.390633386e-11 4.116215156e-12 7.589661557e-12 1.146435764e-11 3.01498578e-12 5.172660646e-11 7.659712193e-13 9.402535002e-12 1.49395738e-12 1.302074972e-11 7.201782005e-12 1.566926614e-11 8.620098332e-12 3.59754823e-12 6.786940403e-12 2.276087324e-11 2.687974671e-11 1.328441269e-11 1.280669652e-11 2.711276241e-12 8.180019048e-12 1.652717422e-12 1.019606259e-11 1.030045508e-11 2.404552339e-11 7.78361647e-12 3.932522973e-13 9.317426278e-12 3.391846867e-12 4.481395552e-11 1.553657997e-11 3.784173093e-11 6.374883074e-12 3.470440496e-13 1.832029415e-11 9.599886665e-12 3.058698727e-11 5.501998498e-13 1.489774258e-12 5.537906294e-13 2.989960594e-12 1.527131078e-11 1.82404018e-12 1.492356519e-11 6.478086806e-12 1.771945074e-12 2.866320115e-12 1.885316978e-11 2.655682843e-12 1.484107208e-11 4.519406776e-11 2.323409414e-12 5.204014389e-12 3.720481823e-12 1.625068346e-11 4.74627221e-12 4.225165924e-12 2.390688281e-11 1.894743478e-11 2.893566524e-12 3.724994613e-11 1.115331454e-11 8.571919252e-13 1.479248148e-12 2.705139329e-12 2.076589645e-11 2.74692802e-13 3.135929007e-12 1.445197319e-11 9.77516603e-12 4.067747832e-13 3.247565013e-12 3.340648044e-12 6.826999613e-14 5.435552832e-12 1.274866826e-13 2.252342106e-14 1.984825024e-13 7.106816032e-12 1.874702869e-14 4.624165678e-14 6.207094475e-12 6.216520171e-13 8.595684022e-15 1.076026302e-12 1.786677821e-15 7.349045208e-16 2.358000046e-13 3.179888031e-16 4.108239464e-19 1.634860299e-18 4.448588079e-17 1.353777475e-17 4.674699918e-16 1.715570939e-17 5.825104072e-21 1.957684666e-26 1.90598608e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.772035261e-22 0 1.391397208e-21 4.610290859e-20 6.468799685e-21 2.188037291e-18 1.306033475e-20 2.014335781e-16 8.568289846e-21 1.809051876e-11 9.122049874e-14 2.783368413e-12 7.954616866e-14 1.36690612e-13 1.829025962e-16 1.904396397e-13 2.976109063e-12 1.215984361e-15 1.071354312e-11 1.411880895e-12 2.86650583e-13 1.202913777e-12 1.062186627e-11 2.14780129e-11 1.230965614e-11 1.111040184e-10 2.805142269e-12 2.81794469e-13 4.449091078e-11 3.117268405e-11 6.960719056e-12 5.992462546e-12 7.33660243e-11 1.161510622e-10 3.593160524e-11 1.419614991e-10 3.729890798e-12 1.261416902e-10 7.098960644e-13 1.876488147e-12 2.059218583e-10 2.874435534e-11 8.019147909e-12 7.719469257e-11 5.792436673e-11 9.3714312e-13 6.407015064e-11 2.217208054e-11 1.252287654e-10 3.79685239e-11 1.273987517e-11 8.754919724e-11 1.378736853e-10 4.00264176e-11 3.508146061e-12 5.027871736e-11 1.441069888e-10 7.764754388e-11 1.462553982e-11 9.055586287e-11 3.687940958e-11 9.612369167e-11 9.190058479e-11 6.893538366e-11 2.422409387e-11 1.605965572e-10 2.181473539e-11 4.975073336e-11 7.619832857e-11 3.921038235e-11 4.992824618e-11 2.077814914e-11 9.861328606e-11 8.772320939e-11 8.756146285e-11 2.30133752e-10 1.324251018e-10 7.906399536e-12 4.522489644e-11 1.770925217e-10 5.180534205e-11 3.897597527e-11 8.516591931e-11 2.090567647e-10 8.064394316e-11 2.911207656e-11 5.660275757e-12 6.525605195e-11 1.075447121e-10 3.189581239e-11 4.714894113e-11 2.276497303e-11 7.840077481e-11 7.806874508e-11 8.71728001e-11 1.603233306e-11 7.110295847e-11 8.018646664e-11 2.385051939e-11 1.767421709e-11 8.738839867e-13 1.13587762e-10 5.448986064e-11 1.428482026e-10 2.342402786e-11 7.50110281e-12 1.316410369e-10 1.410544498e-10 5.627271145e-11 2.008417599e-11 1.86243627e-11 7.65549679e-11 1.121765924e-10 9.523924143e-11 1.086464618e-10 2.635378238e-10 3.541140579e-11 1.250948525e-11 2.584398933e-11 2.249050584e-10 8.467676851e-12 3.298478187e-11 1.171373972e-10 2.743233849e-11 3.537145289e-11 1.23599801e-11 1.141442747e-12 3.869185488e-12 3.437003061e-12 3.463466989e-11 1.261755819e-11 1.645598083e-11 9.71596867e-11 9.195397556e-11 7.25305189e-13 3.424823588e-12 4.738521882e-11 4.715204177e-11 1.669206089e-11 5.327519534e-12 8.524184936e-11 4.782121384e-11 1.098436558e-11 4.258044843e-12 3.954663573e-12 8.04486342e-13 1.584018405e-11 1.447383849e-11 7.008513042e-11 3.131172286e-11 4.775400895e-13 5.504410099e-12 4.522551935e-11 3.614127389e-17 1.536776333e-16 3.59091798e-19 4.696618697e-12 5.87510889e-12 1.204569415e-17 6.841469228e-18 2.376999596e-19 1.071431392e-20 1.25965927e-19 3.991383931e-19 4.673196785e-15 2.060959956e-18 1.524969916e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.551660816e-21 1.877559784e-24 1.749627705e-21 4.41720014e-24 2.147001644e-20 3.253129983e-16 5.708357247e-18 4.99495545e-22 5.691462768e-12 8.231622932e-14 3.436213793e-16 6.883205454e-12 8.643084829e-14 1.293195875e-15 1.08296963e-12 4.923153529e-11 3.583461343e-12 1.228044295e-13 5.994619841e-11 3.56795462e-10 1.48041523e-12 2.23889355e-11 2.66136356e-12 1.120569245e-11 4.40899913e-13 1.095505214e-10 1.024230908e-10 1.137871414e-11 3.213353493e-11 1.069973489e-10 2.018456213e-10 4.197453615e-10 2.29148594e-10 7.749966983e-11 1.904422584e-10 4.975890115e-11 3.226205662e-10 1.947058876e-10 1.583257386e-10 4.736359825e-11 8.588047034e-11 3.374065709e-11 2.082400755e-10 4.968141186e-11 2.41522362e-10 3.565362033e-11 2.874647883e-10 1.79828613e-10 1.360266345e-10 3.990759413e-11 3.377597769e-10 2.725126984e-10 2.575454472e-10 1.247947684e-10 3.833483929e-10 3.978783771e-10 1.928313409e-10 4.782291065e-10 2.484141122e-10 2.165790109e-10 1.000050167e-10 1.565336724e-10 2.232854438e-10 9.272201857e-11 1.301558657e-10 2.780454852e-10 5.010409582e-10 2.274444346e-10 2.813703212e-10 6.789489872e-11 9.756875471e-10 4.402079642e-11 1.941596419e-10 3.379041381e-10 6.654935796e-10 1.79969381e-10 3.89197866e-10 1.635040677e-10 6.739359551e-11 2.627803903e-10 1.509172701e-10 2.273354713e-10 5.794409146e-10 3.015702287e-10 7.256962923e-10 5.966181536e-10 6.962294286e-10 2.354248677e-10 2.375395554e-10 8.675197291e-11 1.814347598e-10 3.959396737e-10 5.503873727e-10 3.576204685e-10 5.899590138e-10 5.755972497e-10 5.42566761e-10 3.543343146e-10 5.765974385e-10 2.719627418e-10 9.772720184e-11 1.794586579e-10 1.649068725e-10 3.254739398e-10 2.192853718e-10 2.760757274e-10 6.53398421e-11 4.648946375e-10 1.044680572e-10 4.769010035e-10 2.193981668e-10 3.347111253e-10 2.560595385e-10 3.404551092e-10 1.568984187e-10 1.758934124e-10 2.057355892e-10 2.648087037e-10 7.607219231e-10 5.023142858e-10 2.067087668e-10 1.611596912e-10 7.376262432e-11 1.771377634e-10 3.706782649e-10 3.015192311e-10 1.114040615e-10 4.083061037e-10 2.115260136e-10 8.863700128e-11 4.092292787e-10 2.441418859e-10 2.678680448e-10 1.603940411e-10 3.113114079e-10 2.894917371e-11 3.816482372e-10 8.982041579e-11 2.804610682e-10 2.310408791e-10 7.312979802e-12 1.722765642e-11 1.458218166e-12 1.132560598e-10 3.387478774e-10 2.527887165e-11 8.561361391e-14 9.364198637e-12 6.914318028e-12 2.865474737e-12 2.695034379e-11 1.724685842e-10 4.849715776e-13 1.307360774e-11 1.379268612e-12 2.135616787e-13 4.196118096e-12 8.78182516e-15 2.40842954e-14 4.741595436e-17 3.06051577e-18 2.178038054e-14 3.099129368e-13 2.544752092e-13 1.820824402e-21 5.744435177e-26 1.580151973e-24 1.337835388e-19 3.801566411e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.034211037e-24 8.716080485e-20 1.978194605e-18 8.08353754e-16 1.954920843e-20 6.552468254e-18 4.071177009e-15 2.17155663e-18 3.005133198e-17 8.562861527e-18 3.112746614e-11 1.193238235e-10 3.088591632e-13 1.752789055e-10 1.168157515e-14 2.221630851e-10 7.235152778e-14 5.377442294e-10 2.347385999e-10 5.708859364e-12 1.824439578e-10 1.585467068e-10 1.741405785e-10 7.408237936e-10 2.892391874e-11 3.331109066e-10 1.845570813e-10 5.785944424e-11 6.236437597e-10 7.257273959e-11 3.073974896e-10 5.455006026e-10 3.249267712e-10 7.799271103e-10 2.897454315e-10 8.275559218e-10 3.671021962e-10 4.350459896e-11 3.654110384e-10 1.643343212e-10 6.170689076e-11 5.33758756e-10 1.016324087e-09 4.143717479e-10 6.432067005e-10 2.921351199e-10 2.238052449e-10 6.113823371e-10 1.700510751e-09 6.820331836e-10 6.190198984e-10 1.129339532e-09 4.544659705e-10 6.646737671e-10 1.005121246e-09 9.182644723e-10 3.731751861e-10 6.697158828e-10 1.326775763e-09 6.259672505e-10 1.084144154e-09 2.386017896e-10 1.750186928e-09 1.167129855e-10 2.046638428e-09 6.666591984e-10 8.334238399e-10 7.586120074e-10 1.359214381e-09 1.277468513e-09 1.262896172e-09 8.303392531e-10 1.618936894e-09 9.854758851e-10 4.814510783e-10 1.200805148e-09 1.403605047e-09 6.991596195e-10 1.89700838e-09 7.005492423e-10 1.253880389e-09 4.528685959e-10 4.753662818e-10 1.123020388e-09 1.216706957e-09 9.712510602e-10 1.684990882e-09 9.024564556e-10 1.374155243e-09 1.001324894e-09 2.448513447e-10 6.919697352e-10 1.960921644e-09 4.631212086e-10 9.046235058e-10 8.963234219e-10 5.87096128e-10 5.673967581e-10 1.120985571e-09 2.642009443e-09 1.676094799e-09 2.419724168e-09 8.664937215e-11 3.533724042e-10 8.207643321e-10 1.169453629e-09 6.964718049e-10 8.064275076e-10 9.846263294e-10 1.572731637e-09 1.217526845e-09 7.594631932e-10 1.863227535e-09 7.284359183e-10 7.194321687e-10 1.428331016e-09 1.418257823e-09 8.079913695e-10 1.286685627e-09 1.507827863e-09 3.010374264e-10 4.666802747e-10 1.133547387e-09 1.901551639e-10 1.264591019e-09 6.149956695e-10 9.191045987e-10 3.383116177e-10 8.954511524e-10 3.003945071e-10 2.595135076e-10 4.163877165e-10 8.295789743e-10 7.930774218e-11 1.578004868e-10 7.188783012e-10 2.035277897e-11 4.851462635e-10 1.204126336e-11 8.606831089e-10 4.873574775e-10 3.09849189e-10 6.739941351e-12 3.749651504e-10 2.020801333e-12 3.063682532e-10 7.35241068e-10 2.795045186e-11 4.385800315e-10 6.082723203e-11 4.984824641e-11 1.657997115e-11 1.511415566e-10 7.88495605e-13 4.675810509e-12 4.486646984e-13 7.024034589e-13 9.818916236e-17 9.531335968e-14 9.969013621e-17 3.271445136e-19 2.830299835e-14 4.455535116e-19 4.028005915e-15 7.711809055e-27 2.257165983e-19 0 6.545455871e-26 0 0 0 0 0 0 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.461729271e-18 2.584512781e-24 2.864857045e-23 4.701568949e-17 6.027963898e-19 7.24053157e-18 4.840896739e-19 5.262846574e-16 2.676877791e-12 3.431584913e-17 1.928156598e-17 5.538498143e-14 3.399014378e-11 1.571862309e-11 4.614985054e-11 7.347610721e-18 1.478863761e-10 6.507249158e-10 1.483034031e-10 9.127515667e-12 1.370649209e-10 4.768095988e-10 7.24401009e-10 1.163699206e-09 1.906737672e-10 4.277535986e-10 6.359128175e-10 7.140985826e-10 6.843404999e-11 1.293251074e-09 8.357904953e-10 1.003386388e-09 3.486164288e-10 1.369489293e-10 9.721184918e-10 4.222116267e-11 1.917940672e-09 1.887012242e-09 1.424867927e-09 2.358217189e-09 1.151086514e-09 1.309943483e-09 1.069847672e-09 9.519552102e-10 2.146656697e-09 2.595266673e-09 7.186045432e-10 1.977057028e-09 2.01550663e-09 1.264799044e-09 3.175333423e-09 1.071379267e-09 1.586341486e-09 1.870564049e-09 2.098270576e-09 2.780565177e-09 2.847729475e-09 1.152386555e-09 3.499183455e-09 2.785890399e-09 2.167622878e-09 2.346140252e-09 1.304330098e-09 1.764403226e-09 2.658803585e-09 3.192181608e-09 3.027124819e-09 2.209974709e-09 1.213073304e-09 2.427556395e-09 2.607590267e-09 2.507601972e-09 2.160986886e-09 2.624131189e-09 4.335192782e-09 1.575127674e-09 2.753930397e-09 3.618228964e-09 1.926866872e-09 1.761734237e-09 2.244112715e-09 1.894039506e-09 2.167794882e-09 2.041887956e-09 1.492876722e-09 2.568598077e-09 2.215688062e-09 2.106357973e-09 2.140674999e-09 1.132378283e-09 2.120190731e-09 1.74693537e-09 2.128927989e-09 2.730121242e-09 2.580028245e-09 2.168414303e-09 2.380984843e-09 1.384075977e-09 3.050462652e-09 2.509851039e-09 1.562460502e-09 2.101765336e-09 1.13272536e-09 1.168416781e-09 2.105548039e-09 3.322758686e-09 1.520478251e-09 1.888345966e-09 1.439128883e-09 3.235617492e-09 2.206360322e-09 2.284772033e-09 1.453062563e-09 2.470150753e-09 1.342910884e-09 5.288148359e-10 1.595527262e-09 2.639416316e-09 2.650438289e-09 2.715318888e-09 1.975795251e-09 2.500380675e-09 1.717568086e-09 1.680740895e-09 9.141379244e-10 3.765668433e-09 1.110938741e-09 2.340787671e-09 8.051522417e-10 7.001971757e-10 1.202398707e-09 4.741616881e-10 1.503804805e-09 5.838197462e-10 1.528545953e-09 7.67299508e-10 9.396904855e-10 9.01865324e-10 5.517792093e-10 2.34759555e-10 8.117528317e-10 8.921843828e-10 8.594518484e-10 7.494023357e-10 4.095807473e-10 7.39177816e-10 4.252443595e-10 3.651440745e-10 3.404075136e-10 6.089016649e-10 3.228922192e-10 3.267113643e-10 1.168124241e-11 1.53499774e-10 2.110954105e-10 1.049716044e-13 2.664140118e-10 3.08701543e-13 2.496217755e-13 1.341647372e-11 2.071609967e-12 8.185924529e-13 1.000359637e-16 2.325399738e-15 3.075568258e-14 2.502723795e-19 2.787191677e-19 2.438075761e-19 1.577725577e-17 1.941607283e-19 9.217540878e-18 1.525806499e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.897944734e-23 1.897552958e-22 1.14465633e-14 2.164689787e-15 1.639377636e-17 2.623929371e-13 3.676694511e-14 6.762924401e-14 1.336556443e-10 3.508025784e-11 8.021894492e-15 2.82764436e-12 3.32970186e-13 4.735990867e-11 2.999771387e-10 1.620802141e-10 1.283812746e-14 6.006798593e-10 8.151683876e-10 1.002436812e-09 1.049656333e-09 3.91350088e-10 6.313236309e-10 3.167382138e-10 1.293372383e-09 6.912955419e-10 9.09520474e-10 9.560814255e-10 6.336357513e-10 7.102698847e-10 1.290597623e-09 1.089881638e-09 1.671668428e-09 7.505270133e-10 1.299324415e-09 1.786047473e-09 2.61515522e-09 2.504505299e-09 2.124273058e-09 2.156516393e-09 4.427544703e-09 2.632998469e-09 3.479156981e-09 1.842471895e-09 4.24832955e-09 3.045456492e-09 2.423571711e-09 1.440835879e-09 3.511586189e-09 3.281847223e-09 3.096884419e-09 1.524718494e-09 3.487167715e-09 2.491611328e-09 2.729795813e-09 3.215141963e-09 1.800213224e-09 2.532831606e-09 3.434957138e-09 3.023210994e-09 2.946724757e-09 2.61890972e-09 2.705153943e-09 4.400325039e-09 2.495952128e-09 3.066264792e-09 3.143382975e-09 4.318816817e-09 4.335396477e-09 4.105297131e-09 4.66229054e-09 3.752936026e-09 3.928438253e-09 3.542338428e-09 2.517552035e-09 4.386604014e-09 3.286480792e-09 3.281099351e-09 1.362452138e-09 2.465740196e-09 3.687340056e-09 5.578318054e-09 5.475153342e-09 4.281763269e-09 3.560198014e-09 2.326615647e-09 4.405832426e-09 3.761456087e-09 3.434453168e-09 3.321477987e-09 2.836418636e-09 2.86955046e-09 3.420503014e-09 2.963993454e-09 2.119143271e-09 5.111824461e-09 3.424017642e-09 4.767883054e-09 2.065595176e-09 4.766600028e-09 2.00257208e-09 3.359266723e-09 4.2168644e-09 1.306445005e-09 3.353857123e-09 3.382615783e-09 2.952279009e-09 4.310438322e-09 2.63257307e-09 3.462057283e-09 4.203692008e-09 3.373295658e-09 2.437211939e-09 2.879092243e-09 2.596613191e-09 1.580010276e-09 4.297424892e-09 3.736181488e-09 3.45232155e-09 3.144070295e-09 3.850733186e-09 3.521714483e-09 3.779612528e-09 2.247236627e-09 2.85604373e-09 2.209756482e-09 1.619335139e-09 2.956518095e-09 3.100204768e-09 1.879443353e-09 5.929396789e-10 1.408567816e-09 1.60895972e-09 2.180490457e-09 1.448163837e-09 2.203052615e-09 2.195075716e-09 1.228751579e-09 1.647582042e-09 8.616858064e-10 1.724119997e-09 8.211898496e-10 9.51297319e-10 1.23587495e-09 9.807945653e-10 7.099404704e-10 1.348761788e-09 2.445063832e-10 6.030530672e-10 3.864037741e-11 6.277409497e-10 1.697984885e-10 2.016556713e-12 3.462890587e-10 6.000443872e-10 2.61316658e-11 2.446710665e-11 1.453750833e-10 2.243131114e-11 2.814135051e-11 2.335124423e-15 4.603371355e-15 1.992599334e-16 1.286680289e-16 9.060651065e-20 1.06597209e-17 9.109523969e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.566067e-20 4.428022981e-17 7.601822908e-23 5.718528098e-15 7.389945609e-15 2.59102801e-14 1.263551159e-11 6.316698731e-15 1.427986157e-11 1.245585361e-11 2.421117042e-13 5.450363326e-12 7.86269389e-16 6.252700749e-10 5.712689231e-10 4.799554355e-10 9.121034093e-10 6.58632038e-10 1.126394516e-09 9.885471415e-10 1.893231718e-09 9.465987114e-10 1.574415685e-09 1.309300459e-09 2.183375948e-09 2.231829704e-09 2.805432783e-09 8.41146263e-10 1.990288851e-09 3.004299582e-09 1.917466537e-09 2.009990784e-09 1.978197688e-09 2.171012486e-09 1.958349439e-09 1.901859329e-09 2.659100571e-09 2.98036697e-09 2.331620427e-09 2.482297802e-09 2.892565907e-09 2.347917275e-09 4.194240569e-09 1.864925506e-09 4.421037926e-09 2.58193519e-09 3.377641749e-09 3.323195187e-09 3.196341825e-09 4.075897803e-09 2.187803937e-09 5.282369911e-09 4.617795865e-09 3.760891316e-09 2.510042983e-09 3.377339274e-09 8.178424395e-09 5.753549444e-09 4.167409723e-09 3.19991121e-09 3.250607685e-09 5.209995863e-09 3.640642572e-09 5.068232595e-09 7.093755561e-09 6.184263735e-09 3.486170637e-09 6.224814433e-09 4.844970637e-09 6.064643284e-09 5.726971623e-09 3.468614538e-09 2.653840038e-09 5.588805838e-09 3.779227771e-09 5.442510873e-09 2.923075195e-09 3.86314543e-09 5.473011634e-09 5.426176957e-09 6.70819358e-09 3.815700525e-09 4.193305029e-09 6.640843606e-09 3.501288625e-09 3.214365089e-09 6.149883775e-09 5.173668809e-09 4.704156703e-09 5.471941564e-09 5.783821058e-09 5.407710184e-09 3.157408879e-09 2.349257987e-09 5.784620348e-09 5.939337051e-09 4.870479463e-09 4.663401099e-09 4.344799462e-09 4.298297057e-09 4.496909796e-09 4.999939027e-09 4.943196576e-09 5.57902372e-09 3.945365693e-09 3.035014319e-09 5.538150308e-09 3.89674644e-09 4.180122249e-09 5.429131405e-09 5.511646084e-09 4.779485452e-09 4.567691715e-09 3.297843093e-09 6.579236217e-09 4.455187748e-09 4.710420575e-09 3.500608553e-09 2.933308424e-09 4.200324813e-09 3.362192671e-09 4.063611537e-09 4.322065292e-09 4.426285177e-09 3.199891448e-09 2.077262417e-09 2.316586266e-09 3.663322864e-09 2.6262599e-09 3.783565809e-09 2.633335315e-09 3.626320782e-09 6.018025726e-10 1.966292301e-09 1.197216913e-09 1.881007521e-09 2.033972632e-09 1.678264939e-09 1.527605786e-09 1.975191365e-09 1.0574606e-09 9.482840204e-10 2.085923288e-09 5.662819716e-10 3.014319365e-10 3.823195711e-10 6.002797554e-10 1.0121418e-09 6.187143354e-10 9.947173927e-10 1.340025832e-09 9.958014966e-10 3.267098638e-11 9.812579226e-12 4.714731529e-14 1.351566768e-11 1.70893318e-12 6.925773293e-12 9.141902655e-11 6.777874654e-18 7.783966112e-12 4.053462943e-14 4.72856418e-16 5.672808965e-14 5.086731728e-16 3.599497817e-17 7.428107508e-19 3.890394703e-19 1.66932662e-22 0 0 0 0 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.27175689e-18 9.952534287e-19 1.999807624e-20 2.685623794e-23 1.791784933e-16 2.416956942e-14 1.050447709e-13 1.205771702e-14 1.412835371e-12 1.11182692e-17 1.155385289e-11 6.443916092e-11 6.990119661e-14 2.402836181e-12 4.44562482e-13 1.898326302e-10 6.017660238e-10 5.229994073e-10 6.229960033e-10 6.610712497e-11 1.452788846e-10 2.531997757e-10 1.137304912e-09 7.736893465e-10 1.846835752e-09 1.330144549e-09 2.613009744e-09 1.073092177e-09 3.828131208e-09 3.237381607e-09 1.855781882e-09 2.308090139e-09 2.595057961e-09 2.687070181e-09 2.529349723e-09 2.057970538e-09 3.470821911e-09 3.794762255e-09 3.140342228e-09 2.285439157e-09 2.394363707e-09 3.381370522e-09 3.326418255e-09 1.717082902e-09 3.983399811e-09 5.347943465e-09 3.228117653e-09 3.635367028e-09 5.286150946e-09 6.441745228e-09 5.487838394e-09 4.428346506e-09 5.43907265e-09 3.949839549e-09 4.400365677e-09 5.626304859e-09 3.751748952e-09 6.351339522e-09 8.229858945e-09 4.363789354e-09 5.918837817e-09 5.838885338e-09 6.932313786e-09 4.802863857e-09 6.091411569e-09 4.149312379e-09 6.258122186e-09 6.641483325e-09 4.882821503e-09 5.404333242e-09 7.085048792e-09 4.309004669e-09 6.153424093e-09 5.838294694e-09 6.58840975e-09 5.647067473e-09 6.299147206e-09 6.077535596e-09 5.269112686e-09 8.09006477e-09 5.573201778e-09 4.851684359e-09 6.232548382e-09 6.438527211e-09 6.841121897e-09 5.059688571e-09 5.185561804e-09 6.136412737e-09 6.002429335e-09 2.526927501e-09 1.038977176e-08 4.719129049e-09 5.895799823e-09 5.835412882e-09 5.605649653e-09 6.198485159e-09 5.216312644e-09 5.334994415e-09 4.853589491e-09 5.102909813e-09 3.973106085e-09 6.343147345e-09 6.20598402e-09 4.889052643e-09 5.157252579e-09 4.303855839e-09 7.938820406e-09 6.757142419e-09 5.12545582e-09 3.764274243e-09 3.741955252e-09 6.005288012e-09 6.415434621e-09 2.656428898e-09 8.398984329e-09 7.031916e-09 5.163116666e-09 5.752749739e-09 6.628155837e-09 3.704809323e-09 2.977014882e-09 5.88750024e-09 3.995253931e-09 2.822415069e-09 2.987948615e-09 3.312240856e-09 3.417208001e-09 3.970758017e-09 3.789619147e-09 2.500806004e-09 3.266484979e-09 3.358149931e-09 2.068087941e-09 3.289709401e-09 4.345294724e-09 2.640491003e-09 3.969979187e-09 3.52224216e-09 3.466874195e-09 2.125897812e-09 2.746254163e-09 2.770313503e-09 2.026071874e-09 1.206706539e-09 1.938209786e-09 3.084750323e-09 2.277738376e-09 7.123038418e-10 7.407946732e-10 1.869762005e-09 9.252865324e-10 1.782336272e-09 6.967937787e-10 9.174060857e-10 2.198757398e-10 6.114938778e-11 3.013049123e-10 9.31676633e-13 1.187203794e-12 7.846490034e-12 1.972161187e-10 2.753446715e-12 2.297313849e-12 2.904300261e-15 3.391379759e-15 3.037742785e-14 1.371352792e-16 5.643538063e-15 1.191908932e-15 4.347061812e-19 5.585253364e-22 0 4.802508042e-20 0 0 9.724421158e-13 0 0 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.700724772e-18 2.993855936e-18 2.093919781e-17 3.569035704e-18 1.307723277e-15 1.459123144e-14 1.548118906e-12 2.467658258e-11 5.049450451e-14 1.584038307e-10 4.213655748e-11 6.897407801e-11 3.625254787e-13 1.550538973e-10 4.944837978e-10 1.050820697e-09 6.224561161e-10 8.408319856e-10 7.220491803e-10 1.330063587e-09 9.601545009e-10 1.212787499e-09 1.279973059e-09 1.203169105e-09 1.589616676e-09 2.298895262e-09 3.359504411e-09 1.793216501e-09 3.163714629e-09 2.197241256e-09 4.496918746e-09 3.078254394e-09 2.85858323e-09 4.530437395e-09 3.70379052e-09 4.335698393e-09 2.852096181e-09 4.639004582e-09 4.647071461e-09 3.633904885e-09 4.97709808e-09 4.36504378e-09 2.908637728e-09 4.874311541e-09 6.249433555e-09 3.735369775e-09 7.377501079e-09 4.087746433e-09 4.470712327e-09 6.211544784e-09 6.414728942e-09 5.027831415e-09 6.786438695e-09 6.908660681e-09 4.948449024e-09 7.35396472e-09 7.347497054e-09 6.356195916e-09 6.675025729e-09 7.224246228e-09 7.313825925e-09 6.896910371e-09 7.536291046e-09 9.498211101e-09 5.615711656e-09 7.255015017e-09 6.008177366e-09 7.705721393e-09 7.042680372e-09 6.084116208e-09 7.094891287e-09 5.719969217e-09 4.625386309e-09 6.398956887e-09 5.903758842e-09 5.869596636e-09 5.449177086e-09 6.674586629e-09 4.994283011e-09 7.626142746e-09 4.77634103e-09 8.293257823e-09 7.962419732e-09 7.349174712e-09 7.105561362e-09 4.664001549e-09 6.446187058e-09 5.947395103e-09 5.512872576e-09 6.17461136e-09 7.949149502e-09 9.149461507e-09 8.676598648e-09 6.853800586e-09 7.229113195e-09 6.540068318e-09 6.446450779e-09 7.001078086e-09 7.67304141e-09 1.106286743e-08 8.152052639e-09 4.690672372e-09 6.25616641e-09 7.033847167e-09 9.122904517e-09 5.816665912e-09 6.346730845e-09 1.086704667e-08 6.26811797e-09 5.579576739e-09 7.963842487e-09 5.601551273e-09 6.08725677e-09 6.126898987e-09 7.900329019e-09 5.676529015e-09 7.242073102e-09 4.618383707e-09 5.620631446e-09 5.467883649e-09 4.915047374e-09 5.383431906e-09 6.066623404e-09 4.712476946e-09 5.833094767e-09 6.226796571e-09 5.668628392e-09 5.701307275e-09 4.878733933e-09 4.687825694e-09 2.301100099e-09 4.052696161e-09 4.049737589e-09 3.456895478e-09 3.194598163e-09 3.875282418e-09 1.938271792e-09 2.289373846e-09 2.651701114e-09 3.205758981e-09 2.62579259e-09 3.06464018e-09 2.496339989e-09 1.708436028e-09 1.57281423e-09 2.023343899e-09 1.347831998e-09 8.437944764e-10 2.358028579e-09 6.358989703e-10 2.747755226e-10 8.711027373e-10 6.079615959e-10 1.116994188e-10 3.024429033e-10 9.853785445e-13 2.396910096e-10 2.042312315e-11 2.46355107e-10 1.036711636e-10 7.910463111e-12 6.859743734e-12 2.999799668e-12 9.221865878e-14 1.758321829e-18 2.775627019e-17 3.438693545e-18 3.354633071e-18 2.465176941e-19 7.323806116e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.437372797e-21 1.821468879e-18 5.814449746e-18 1.771349165e-18 4.512846503e-17 8.683579257e-16 1.714700331e-15 4.04005561e-16 5.257132331e-13 3.587296089e-12 1.562448061e-11 1.607399041e-10 5.548589089e-12 8.875299457e-11 2.420126313e-10 4.856053306e-10 9.22968572e-10 2.534352874e-10 1.963075128e-09 8.098635923e-10 1.373825735e-09 1.449558658e-09 8.655560224e-10 1.912431235e-09 2.229793641e-09 1.555168159e-09 3.226838177e-09 1.894282557e-09 9.21368965e-10 3.075186815e-09 4.743934426e-09 4.516505802e-09 5.00956067e-09 3.791850026e-09 2.497602055e-09 5.104754565e-09 3.583914827e-09 4.567712922e-09 6.251045676e-09 3.591665584e-09 4.794533842e-09 3.137525334e-09 7.201039771e-09 4.463337882e-09 5.412477761e-09 5.645070645e-09 7.518845132e-09 4.134739704e-09 6.135224674e-09 8.240449967e-09 6.252568368e-09 8.259593259e-09 8.899162226e-09 8.19943251e-09 6.884585983e-09 9.339507601e-09 5.685231446e-09 9.019125749e-09 7.952898329e-09 1.018737682e-08 7.762371857e-09 8.163046788e-09 7.712282593e-09 6.521529348e-09 1.157627927e-08 1.051424562e-08 9.957186476e-09 9.842031659e-09 6.240732489e-09 6.974592404e-09 8.115920204e-09 9.308779768e-09 9.282517619e-09 6.065343429e-09 7.79818283e-09 1.060560739e-08 1.114970421e-08 9.998706474e-09 1.213035296e-08 7.576549031e-09 8.198629504e-09 6.544252181e-09 7.395438012e-09 8.52016116e-09 7.089233688e-09 1.132104555e-08 7.851516218e-09 8.721544014e-09 6.455304389e-09 6.953206514e-09 9.36689469e-09 9.857399149e-09 6.182528414e-09 8.123852572e-09 8.900817904e-09 5.665306648e-09 6.984437619e-09 6.411715685e-09 7.830065947e-09 8.393107849e-09 7.479202009e-09 7.965025025e-09 1.135099961e-08 6.835198837e-09 1.072641534e-08 8.770649429e-09 8.50733431e-09 8.842078819e-09 6.81773516e-09 8.730334215e-09 9.914964649e-09 6.431440756e-09 5.723768212e-09 7.523227244e-09 8.134040888e-09 7.216844129e-09 5.971266599e-09 9.420960726e-09 7.632826282e-09 6.372360377e-09 8.409154054e-09 7.80747926e-09 6.340476699e-09 6.851970874e-09 6.009840299e-09 4.106104006e-09 6.240680384e-09 6.840495977e-09 5.632736238e-09 6.188894441e-09 5.27263261e-09 6.771596735e-09 3.287083923e-09 4.844066587e-09 5.496814227e-09 3.823677166e-09 3.853830004e-09 3.590635414e-09 2.404412331e-09 3.575829208e-09 2.347334147e-09 2.602987201e-09 2.283255432e-09 2.388010902e-09 3.175276717e-09 2.466874262e-09 2.730214681e-09 1.821521213e-09 1.588473124e-09 1.883704579e-09 6.753880633e-10 1.218561894e-09 1.739742998e-09 5.905190476e-10 9.083279231e-10 4.015415999e-10 6.000027558e-10 1.653444267e-10 9.452962022e-11 7.489691785e-12 1.464273038e-10 5.119154108e-12 3.517019621e-13 4.290915957e-12 3.507181948e-16 5.799572556e-14 1.81306389e-17 3.97899949e-15 1.29368911e-15 0 9.857902779e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.631798198e-19 7.099570849e-24 6.700799021e-20 4.536618159e-21 2.080897146e-15 5.796573888e-18 1.749094008e-12 5.29505163e-15 4.649951254e-12 3.73142452e-11 9.071055734e-15 1.784021644e-10 3.383806441e-15 1.772789171e-10 2.549925944e-10 3.707159915e-10 8.852416954e-10 6.3031744e-10 8.0705324e-10 1.665981278e-09 1.934135653e-09 2.093272773e-09 2.170419243e-09 1.829425581e-09 1.979340381e-09 2.192217945e-09 2.603911759e-09 2.706242201e-09 3.84972083e-09 2.682061804e-09 3.200871727e-09 3.926100361e-09 4.005912816e-09 3.391663318e-09 4.357929866e-09 3.441688852e-09 4.686681351e-09 3.615202567e-09 4.706500663e-09 6.175049742e-09 7.202189058e-09 4.974657401e-09 5.752434648e-09 6.797972767e-09 5.775838068e-09 5.26161673e-09 7.65148627e-09 7.013992943e-09 1.019459537e-08 8.777153047e-09 7.739551023e-09 1.04936703e-08 6.697319439e-09 7.860364431e-09 1.051896056e-08 1.177559627e-08 1.020363129e-08 7.528886969e-09 8.755810128e-09 1.125453608e-08 1.218496915e-08 8.321491359e-09 8.495583659e-09 9.300938402e-09 9.039108127e-09 7.146864539e-09 8.608378998e-09 1.143608586e-08 9.370654756e-09 9.821822696e-09 7.861103607e-09 1.005748413e-08 1.250189014e-08 8.204168902e-09 9.919699941e-09 1.177208421e-08 7.954183327e-09 8.333094112e-09 1.072477657e-08 7.1610434e-09 1.027705169e-08 1.071314944e-08 9.115167667e-09 7.824973893e-09 9.33641234e-09 8.531559677e-09 9.657544017e-09 8.920299682e-09 9.769140528e-09 9.787443082e-09 1.118949214e-08 1.02847407e-08 1.116334401e-08 8.144563958e-09 8.943164228e-09 1.128750672e-08 1.151298557e-08 8.76166256e-09 9.844087406e-09 9.745581741e-09 9.250538543e-09 9.068702869e-09 1.00972037e-08 7.710655352e-09 9.449751428e-09 7.826992813e-09 7.49199204e-09 1.019699302e-08 1.061451829e-08 9.459483082e-09 9.059064009e-09 9.245226765e-09 9.516812048e-09 8.511554407e-09 9.449483132e-09 1.03907523e-08 1.076407656e-08 1.040759891e-08 6.626758718e-09 8.168483796e-09 8.436306666e-09 9.498166175e-09 8.29369327e-09 6.052295843e-09 7.852462044e-09 4.542314833e-09 6.371084046e-09 4.51819075e-09 6.375280678e-09 7.316494635e-09 5.44766744e-09 5.509035593e-09 4.539830074e-09 5.379075516e-09 5.389381087e-09 4.300075202e-09 3.692216421e-09 5.00171951e-09 3.440248817e-09 1.339818049e-09 4.479799549e-09 3.27793977e-09 3.462686534e-09 3.248340426e-09 2.446768315e-09 2.579562528e-09 2.760847114e-09 2.844730254e-09 2.144059422e-09 2.247785576e-09 1.586687249e-09 2.091973401e-09 2.209356261e-09 6.925499016e-10 6.713806894e-10 3.280270764e-10 1.2235078e-10 5.27554562e-10 2.266199681e-10 1.067990468e-10 7.497078538e-13 1.571995595e-10 5.799212638e-12 1.353669956e-14 2.655319795e-16 1.463199487e-17 1.734627615e-15 2.875472732e-18 7.368478247e-18 7.410371059e-22 0 0 0 0 0 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.58031316e-19 3.085770788e-26 4.744932965e-18 2.403673884e-20 4.189539312e-18 3.491708568e-15 2.981121149e-15 2.166689104e-15 1.935008187e-13 1.322170366e-13 4.675660534e-11 3.962644935e-11 8.836032584e-11 8.316413681e-11 7.44048869e-11 3.587518172e-11 7.467014445e-10 1.184715484e-10 8.38342122e-10 1.434633231e-09 4.008870316e-10 6.050378309e-10 6.407969415e-10 2.515438571e-09 2.795101291e-09 2.187668228e-09 3.413648553e-09 4.622331449e-09 3.475618135e-09 5.022913127e-09 3.202959221e-09 4.579938368e-09 4.949640167e-09 7.283439305e-09 4.050187455e-09 5.311267755e-09 4.468021425e-09 6.068433848e-09 5.471516756e-09 6.034364215e-09 7.814598733e-09 4.711865844e-09 6.889339709e-09 6.386665945e-09 8.111997303e-09 7.837619031e-09 8.936743432e-09 5.430912184e-09 9.021045506e-09 8.497403815e-09 7.730913702e-09 8.26896055e-09 9.059559661e-09 1.123674127e-08 9.843177593e-09 1.037131938e-08 8.852442035e-09 1.179291463e-08 1.137720102e-08 8.765530274e-09 1.038832681e-08 9.142350772e-09 7.605507793e-09 1.138280894e-08 1.33190281e-08 1.19528654e-08 1.267064545e-08 1.111114242e-08 1.074221267e-08 1.230183024e-08 9.080063502e-09 1.310913304e-08 1.028128948e-08 9.28160129e-09 8.907281239e-09 1.098142359e-08 1.029362636e-08 8.436261878e-09 1.049447584e-08 1.14875324e-08 1.458658789e-08 8.548714476e-09 1.013380971e-08 1.099818306e-08 1.204169918e-08 1.039168973e-08 1.465027699e-08 1.231031149e-08 1.028016179e-08 1.006444115e-08 1.199841862e-08 1.203344229e-08 1.130114812e-08 9.383883274e-09 8.760756106e-09 1.161391649e-08 1.028583505e-08 8.814851921e-09 1.00967423e-08 1.424500375e-08 1.20823914e-08 1.095370448e-08 1.08026966e-08 1.179234183e-08 1.09316725e-08 1.069242553e-08 8.982580092e-09 9.186021346e-09 1.073682538e-08 1.069962509e-08 9.996706275e-09 8.077349763e-09 7.878611798e-09 9.291656418e-09 7.567804877e-09 9.300628883e-09 1.164096787e-08 1.27668622e-08 6.814756374e-09 8.020100299e-09 8.597686348e-09 9.996890662e-09 9.989778894e-09 1.201297188e-08 8.743168704e-09 7.037436068e-09 6.599317304e-09 6.87662857e-09 7.807450478e-09 7.815682583e-09 5.368401007e-09 5.196765452e-09 8.397671185e-09 4.908193461e-09 6.404814851e-09 3.848301238e-09 7.970926996e-09 2.444061099e-09 5.127372661e-09 4.804323835e-09 2.566928392e-09 4.0679978e-09 4.044114349e-09 5.572117123e-09 2.755138554e-09 3.945093567e-09 4.482191215e-09 1.077324607e-09 3.27072771e-09 1.986864141e-09 1.783005924e-09 2.795539193e-09 1.483909081e-09 1.645306405e-09 1.041531737e-09 6.065017741e-10 3.694897667e-10 1.728815697e-11 4.5952986e-10 2.127732337e-11 2.755459903e-10 5.057895292e-11 3.670762486e-11 2.751691557e-13 3.239487974e-14 5.209433284e-14 1.109605078e-15 5.076663632e-16 1.238774516e-17 2.985891624e-18 2.794459714e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.650062463e-19 2.045320317e-17 2.74972003e-17 3.894466289e-17 2.075599041e-15 1.197932823e-14 6.079597532e-13 6.087885046e-12 2.871854449e-11 3.960402003e-12 1.269894797e-10 8.93498619e-11 1.749502916e-11 1.056615902e-10 1.167261083e-09 7.92783659e-10 9.010318818e-10 2.3263281e-09 7.579056599e-10 1.300823265e-09 2.161678017e-09 1.381667994e-09 2.114516147e-09 2.880690213e-09 3.288467985e-09 3.852586025e-09 3.545518643e-09 4.893949694e-09 5.713444365e-09 4.47579983e-09 4.748813992e-09 5.40440268e-09 4.484604357e-09 4.335284542e-09 7.29736853e-09 4.668408073e-09 7.903933777e-09 8.363132305e-09 6.669237008e-09 8.625321272e-09 7.600066172e-09 9.450171283e-09 8.799186149e-09 6.676626492e-09 9.354623622e-09 5.663058193e-09 8.176413421e-09 1.189986581e-08 7.389630476e-09 8.69440303e-09 1.21556742e-08 7.475215753e-09 1.320566492e-08 1.036900409e-08 1.250103931e-08 1.11279025e-08 1.067977747e-08 1.290343492e-08 1.037561519e-08 1.400757515e-08 1.177285721e-08 1.171375544e-08 1.168653307e-08 1.255837065e-08 8.839917197e-09 1.409225333e-08 1.249181838e-08 1.241448178e-08 9.72207024e-09 1.603691639e-08 1.138183049e-08 1.074058003e-08 1.180206245e-08 1.276512979e-08 1.070487211e-08 1.317417667e-08 1.214982683e-08 1.3896759e-08 1.368025367e-08 1.52998558e-08 1.1945909e-08 1.154699911e-08 1.410276709e-08 8.968053485e-09 1.244565376e-08 1.169106231e-08 1.205847127e-08 1.338567384e-08 8.928914262e-09 7.187679748e-09 1.234104372e-08 1.294163323e-08 1.280531992e-08 1.381343175e-08 1.00487505e-08 1.194334017e-08 1.330163992e-08 1.40245449e-08 9.8833751e-09 1.450461365e-08 1.331942828e-08 1.25069402e-08 1.297680108e-08 1.392890656e-08 1.098856501e-08 1.182562385e-08 9.260370533e-09 1.522565923e-08 1.292182422e-08 1.299004755e-08 1.226810727e-08 1.354772513e-08 1.105934608e-08 8.884723073e-09 6.123252288e-09 1.041050852e-08 9.696259174e-09 1.102014885e-08 9.73674195e-09 1.03725699e-08 1.084367806e-08 1.063419542e-08 8.33505719e-09 1.000556823e-08 7.538682666e-09 7.956040023e-09 7.71947285e-09 5.187394177e-09 6.454243383e-09 9.924884566e-09 6.179748954e-09 8.369999105e-09 8.966364333e-09 6.586661745e-09 6.409289348e-09 3.687183947e-09 5.048056207e-09 3.491081339e-09 5.043473106e-09 5.776199534e-09 5.74687215e-09 7.211829246e-09 5.766171323e-09 3.773947349e-09 3.490395388e-09 4.512672667e-09 3.342958945e-09 3.07571583e-09 1.596186419e-09 1.433034179e-09 1.342888999e-09 1.137018811e-09 9.036298973e-10 1.483010697e-09 1.197901412e-09 3.007292034e-10 8.926762062e-11 3.709366564e-11 5.753280767e-13 7.825908359e-11 9.00036075e-13 7.847012103e-13 3.862330994e-13 1.391695053e-14 4.116833071e-13 1.378000744e-14 2.080013624e-17 2.940246164e-16 1.209272652e-18 3.522593047e-22 0 0 0 0 0 0 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.817551757e-24 8.923183409e-21 4.848159272e-16 4.26220023e-17 7.403672622e-14 8.822817373e-15 5.359892631e-13 3.74662475e-15 4.092491201e-11 3.514777823e-11 5.078323898e-12 2.205608597e-10 1.599309213e-10 3.725510915e-10 8.58552025e-10 9.829509643e-10 7.553328474e-10 1.661773771e-09 2.712154727e-09 2.920548721e-09 2.015169742e-09 3.751331277e-09 3.34180773e-09 3.037458393e-09 2.104612669e-09 3.90617363e-09 4.605297474e-09 2.752169708e-09 4.705970091e-09 7.32912593e-09 2.295889629e-09 5.365098074e-09 4.644096865e-09 6.621083912e-09 5.681381655e-09 6.490115502e-09 6.10934953e-09 6.923819247e-09 9.810447648e-09 7.443817071e-09 7.948383753e-09 9.817791352e-09 7.125411611e-09 1.0850221e-08 9.709420174e-09 1.092936315e-08 8.936824548e-09 1.173599566e-08 1.12531918e-08 1.045616079e-08 1.340175527e-08 8.855483061e-09 1.253587971e-08 1.089902527e-08 1.0332541e-08 1.577215562e-08 1.234857642e-08 1.338591171e-08 1.167663845e-08 1.377008068e-08 1.215498818e-08 1.193209081e-08 9.821397611e-09 1.174637655e-08 1.367357506e-08 1.469655602e-08 1.226205442e-08 1.401714859e-08 1.081693858e-08 1.18390855e-08 1.578763727e-08 1.466078336e-08 1.254867008e-08 1.30376733e-08 1.331539884e-08 1.398794876e-08 1.447875004e-08 1.610093351e-08 1.06526633e-08 1.534925421e-08 1.410731218e-08 1.382796926e-08 1.63953554e-08 1.170912238e-08 1.082509744e-08 1.382226662e-08 1.414543207e-08 1.674427899e-08 1.338219009e-08 1.643859304e-08 1.394760392e-08 1.596870859e-08 9.018514915e-09 9.589716288e-09 1.58648581e-08 1.499358805e-08 1.293445999e-08 1.328672865e-08 1.127678844e-08 1.303626755e-08 1.493505103e-08 1.208111023e-08 1.360104408e-08 1.041986238e-08 1.20406916e-08 1.096713632e-08 1.320261285e-08 1.211613985e-08 1.072426002e-08 1.420809523e-08 1.199497544e-08 1.151997219e-08 9.115962882e-09 1.382711525e-08 9.395775327e-09 1.217588409e-08 1.256520997e-08 1.177654993e-08 1.25238096e-08 1.114714879e-08 8.438258284e-09 1.078759528e-08 8.849266886e-09 8.943470112e-09 1.296999555e-08 1.05076647e-08 9.843512541e-09 8.491830187e-09 8.898824929e-09 1.017902285e-08 7.867258532e-09 8.352714555e-09 7.803114765e-09 5.519110491e-09 8.852076375e-09 8.038976911e-09 3.89029121e-09 6.592293198e-09 5.195159067e-09 4.224477615e-09 4.334717378e-09 3.379726864e-09 2.823503903e-09 5.234127215e-09 3.689039375e-09 3.682909872e-09 1.998926011e-09 3.626518048e-09 1.914900561e-09 8.465070352e-10 2.891968769e-09 1.11477724e-09 9.823357003e-10 1.658705021e-09 6.6094111e-10 6.661670616e-10 2.638977073e-10 5.46718987e-11 1.040348235e-12 7.983478273e-11 7.241036571e-12 1.713748108e-12 1.642528758e-12 3.832450779e-12 1.959187161e-15 8.77869134e-15 4.661886303e-17 8.350207939e-18 4.919015162e-18 1.670741128e-21 2.521972392e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.039930665e-19 5.677745698e-19 7.223496121e-18 5.874996655e-17 1.327350577e-17 4.750245175e-16 4.906358453e-14 8.081179757e-12 6.959163451e-12 2.292749291e-10 1.353697191e-10 5.254927211e-13 2.625244723e-10 8.566797999e-10 4.535207094e-11 8.149460594e-10 2.364981292e-09 1.102421898e-09 2.232799267e-09 2.535533544e-09 2.622309193e-09 4.265541584e-09 2.487397522e-09 1.578280531e-09 5.054765167e-09 3.218597045e-09 3.007896029e-09 4.985294734e-09 5.488178989e-09 7.082128409e-09 5.651208087e-09 4.702424673e-09 6.009443166e-09 6.684415092e-09 6.792081583e-09 8.207971502e-09 8.751270006e-09 6.240154626e-09 7.615399577e-09 9.308475184e-09 9.287355855e-09 1.185744172e-08 9.968690035e-09 6.200476476e-09 8.881311872e-09 9.694203588e-09 1.00472958e-08 1.20427447e-08 1.253851753e-08 1.05530156e-08 1.056653782e-08 1.329449306e-08 1.96101437e-08 1.423618787e-08 1.380035726e-08 1.487357945e-08 1.376711339e-08 1.388198191e-08 1.463681543e-08 1.288783264e-08 1.296389588e-08 1.77438247e-08 1.166823792e-08 1.443976958e-08 1.441647879e-08 1.749083054e-08 1.284074138e-08 1.371244567e-08 1.387691017e-08 1.35368823e-08 1.547855386e-08 1.512857498e-08 1.57105249e-08 1.39718549e-08 1.554308992e-08 1.292570422e-08 1.315209691e-08 2.11751355e-08 1.493689114e-08 1.322998716e-08 1.527550321e-08 1.997448092e-08 2.027348619e-08 1.729759134e-08 1.450228092e-08 1.630530693e-08 1.140116853e-08 1.461454161e-08 1.437340979e-08 1.227008637e-08 1.689381911e-08 1.001142567e-08 1.709977883e-08 1.508941184e-08 1.425720925e-08 1.515067138e-08 1.562277635e-08 1.77075033e-08 1.308925012e-08 1.064760277e-08 1.345315292e-08 1.309036221e-08 1.687092167e-08 1.28902494e-08 1.454981763e-08 1.43468509e-08 1.329567605e-08 1.251963877e-08 1.072900006e-08 1.585366298e-08 1.439271435e-08 1.275434533e-08 1.252073973e-08 9.352832872e-09 1.330346197e-08 1.133287242e-08 1.112791107e-08 1.869480209e-08 1.200962206e-08 1.128447314e-08 1.007584347e-08 1.125347142e-08 8.684481295e-09 9.158336745e-09 1.209477394e-08 8.759624592e-09 9.353906088e-09 7.824833838e-09 9.857359767e-09 1.020347057e-08 9.693393246e-09 8.671659164e-09 1.014865976e-08 9.662942632e-09 6.669005797e-09 6.358462113e-09 8.036030084e-09 6.572737782e-09 6.478967386e-09 4.748730004e-09 5.892326376e-09 4.420808506e-09 4.121851335e-09 5.724511262e-09 3.969905839e-09 3.617834527e-09 2.679053553e-09 2.68516146e-09 4.211665303e-09 1.682703757e-09 2.171735992e-09 2.785082381e-09 1.441278665e-09 7.023658234e-10 1.171280408e-09 9.369838614e-11 2.24087849e-10 1.534861881e-10 2.608096126e-10 1.884546122e-10 1.028189141e-10 6.040227702e-11 3.279019075e-13 1.165503601e-12 2.5991066e-13 3.432758946e-14 4.493966926e-15 5.763719307e-17 8.759061628e-19 0 8.630711256e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 3.630999724e-11 0 0 0 0 0 0 0 0 0 0 1.401585135e-18 2.245855018e-17 1.262753264e-17 3.955525959e-16 5.624608247e-16 1.026217749e-14 8.348230088e-13 8.163115037e-14 4.610017001e-11 2.27669009e-10 2.010089985e-10 1.976859539e-10 5.538290867e-10 7.739286005e-10 7.121497339e-10 7.064439349e-10 1.92391215e-09 3.007037091e-09 2.172258471e-09 2.166332475e-09 2.468027398e-09 2.565576274e-09 3.5376736e-09 2.527371919e-09 3.366117446e-09 5.159272541e-09 4.448591239e-09 4.18435484e-09 5.406464243e-09 8.185061191e-09 6.427146174e-09 7.373539606e-09 9.325530316e-09 8.219508638e-09 5.451348323e-09 8.149640876e-09 9.362081682e-09 7.513573537e-09 9.019427466e-09 1.123423547e-08 1.26557404e-08 1.11320581e-08 1.153921474e-08 1.268388521e-08 8.365565548e-09 9.794422014e-09 1.232706731e-08 1.368637049e-08 1.363535974e-08 1.385584616e-08 1.20159439e-08 1.444871175e-08 1.207700078e-08 1.332867699e-08 1.207659051e-08 1.451243892e-08 1.575181216e-08 1.23298857e-08 1.462970032e-08 1.514524536e-08 1.28604262e-08 1.532706714e-08 1.195640116e-08 1.759771605e-08 1.385085156e-08 1.334366497e-08 1.422142321e-08 1.585271867e-08 1.446462123e-08 1.460106595e-08 1.63130348e-08 1.167510575e-08 1.503836416e-08 1.550293291e-08 2.049526447e-08 1.545892105e-08 2.071306229e-08 1.468118555e-08 1.932825434e-08 1.422741832e-08 1.631865738e-08 1.567207027e-08 1.28748459e-08 1.650430076e-08 1.588404118e-08 1.223437026e-08 1.541932326e-08 1.300219466e-08 1.468413324e-08 1.276223066e-08 1.38175628e-08 1.462957364e-08 1.739534338e-08 1.368288904e-08 1.261499814e-08 1.581084063e-08 1.236617369e-08 1.563276943e-08 1.630988796e-08 1.755321133e-08 1.614369488e-08 1.597076728e-08 1.622825218e-08 1.331715998e-08 1.890469381e-08 1.597663629e-08 1.94164007e-08 1.29605689e-08 1.408552972e-08 1.351577043e-08 1.369304487e-08 1.537598823e-08 1.455810137e-08 1.41159751e-08 1.616712671e-08 1.397210266e-08 1.08726342e-08 1.401443181e-08 1.422506602e-08 1.075852091e-08 9.509212088e-09 1.388183176e-08 1.17862146e-08 6.931330965e-09 1.346592187e-08 1.168320411e-08 9.443684342e-09 1.141951534e-08 7.543564937e-09 1.307826004e-08 7.617395399e-09 9.392480139e-09 1.032175315e-08 6.543286245e-09 8.866078027e-09 7.636793531e-09 7.455595242e-09 6.816147289e-09 5.709901478e-09 5.985129623e-09 3.652633179e-09 4.463840113e-09 2.887517383e-09 4.975550608e-09 4.426098657e-09 3.12311106e-09 2.999640294e-09 2.61373559e-09 3.233998699e-09 3.478880404e-09 1.980371296e-09 2.015147665e-09 1.256188406e-09 5.425682687e-10 3.907101464e-10 6.875407606e-10 1.523346111e-10 2.268944287e-11 4.962537687e-11 1.216867975e-11 3.567584815e-12 7.312082479e-13 8.220122224e-13 8.211972665e-13 1.324077672e-14 2.851402271e-15 2.146646171e-16 1.758568176e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.504075964e-18 5.645047823e-27 4.437395157e-17 3.318832457e-16 9.360513654e-16 8.291722499e-14 1.845738053e-13 1.429987757e-13 7.310229815e-13 1.497398394e-11 2.289881433e-10 4.684269822e-11 2.262072848e-11 2.363746535e-10 3.855055971e-10 1.358709056e-09 1.322339675e-09 2.175147761e-09 2.177171536e-09 2.720549556e-09 1.915342938e-09 2.4096445e-09 3.140463194e-09 2.416488034e-09 2.513937952e-09 3.637470642e-09 5.336110147e-09 4.142159841e-09 3.774627866e-09 5.543454393e-09 8.072851752e-09 6.044631343e-09 1.126310056e-08 8.139231501e-09 8.871663145e-09 6.973680123e-09 5.309433524e-09 7.970534786e-09 1.145328938e-08 1.171808149e-08 1.091627246e-08 1.255976597e-08 8.557869201e-09 1.26647964e-08 8.363155418e-09 1.444410677e-08 1.372909168e-08 1.398129268e-08 1.1305165e-08 1.320651356e-08 1.347565847e-08 1.703242174e-08 1.788207495e-08 1.54183611e-08 1.438231967e-08 1.681201264e-08 1.327280273e-08 1.828984533e-08 1.588679543e-08 1.399561253e-08 1.704357845e-08 1.728510911e-08 1.618787432e-08 1.441939765e-08 1.888080878e-08 1.388173694e-08 1.510879502e-08 1.938171882e-08 1.475257039e-08 1.58906378e-08 1.418809632e-08 1.327920856e-08 1.889100316e-08 1.566125383e-08 1.287888267e-08 1.877834724e-08 1.384537826e-08 1.810428018e-08 1.424419139e-08 1.72443356e-08 1.790618539e-08 1.45689111e-08 1.835801624e-08 1.699941635e-08 2.013969917e-08 1.434409339e-08 1.665225964e-08 1.819402693e-08 1.418122215e-08 2.154730936e-08 1.700874394e-08 1.334884512e-08 1.874979443e-08 1.427947833e-08 1.623514464e-08 1.839371615e-08 1.544679581e-08 1.752599775e-08 1.489796149e-08 1.502341814e-08 1.747421222e-08 1.717651255e-08 1.762489742e-08 1.640763973e-08 1.159773857e-08 1.584882284e-08 1.81771604e-08 1.369034397e-08 1.540056534e-08 1.53965646e-08 1.387958033e-08 1.544696233e-08 1.756418102e-08 1.602949973e-08 1.253636725e-08 1.425527537e-08 1.37902592e-08 1.192631835e-08 1.327203067e-08 1.782677774e-08 1.199444654e-08 1.252133616e-08 1.660407676e-08 1.394088053e-08 1.406977774e-08 1.047344635e-08 9.577126397e-09 1.208802547e-08 1.169238188e-08 1.129436383e-08 9.862751402e-09 8.953938345e-09 8.179416949e-09 6.116764968e-09 7.175063669e-09 9.247238369e-09 7.886162023e-09 5.623295607e-09 6.556153814e-09 7.948342637e-09 1.006555421e-08 6.92584548e-09 5.423714153e-09 5.782044703e-09 3.385377222e-09 5.416702326e-09 5.709668304e-09 3.183981154e-09 3.330802473e-09 3.507448857e-09 2.657126054e-09 1.935185867e-09 3.180913841e-09 1.072363144e-09 1.246685838e-09 5.044198516e-10 2.019309291e-10 7.019735913e-10 1.513011876e-10 2.656248676e-11 3.323594533e-12 6.606916285e-11 2.777830087e-13 1.625056172e-14 9.416306342e-14 1.134584795e-14 8.747005643e-18 3.154944204e-20 8.657862853e-21 3.342055427e-18 0 1.820306286e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.712132271e-19 3.141857229e-18 2.813179637e-17 3.026163821e-17 3.546014209e-16 1.873168083e-14 1.698083742e-14 1.355165296e-13 3.314162172e-12 3.272365452e-12 1.641476324e-10 2.408409086e-11 1.899137758e-10 1.486312236e-11 4.19004393e-10 2.548191939e-09 1.496601061e-09 1.574733283e-09 1.147369077e-09 3.2978855e-09 2.834876516e-09 2.404520882e-09 2.174392453e-09 4.069954134e-09 3.470355474e-09 3.948371727e-09 6.393925679e-09 4.481312194e-09 5.405592173e-09 9.438184866e-09 7.919076914e-09 6.806050374e-09 8.588643728e-09 6.568234592e-09 5.552099876e-09 1.001538108e-08 7.827365166e-09 9.130611666e-09 1.083283925e-08 9.06430423e-09 1.236543063e-08 8.115558194e-09 8.462874978e-09 1.218474919e-08 1.419710864e-08 1.211609028e-08 1.695078787e-08 1.152943265e-08 1.380792379e-08 1.968942656e-08 1.644688097e-08 1.514500272e-08 1.311712935e-08 1.247809783e-08 1.594702158e-08 1.269401026e-08 1.83906997e-08 1.881704186e-08 1.373457904e-08 1.781308261e-08 1.448812918e-08 1.150602189e-08 1.419864376e-08 1.792851766e-08 1.772960702e-08 1.790081998e-08 1.191491416e-08 1.63301183e-08 1.304756952e-08 1.27693792e-08 1.648262683e-08 1.450503889e-08 1.920148357e-08 1.60024323e-08 1.191821596e-08 1.28520933e-08 1.478462433e-08 1.56075671e-08 1.553685116e-08 8.819224687e-09 1.661559774e-08 1.367580656e-08 1.535629953e-08 1.570615133e-08 1.424112275e-08 1.290708062e-08 1.507441283e-08 1.330012232e-08 1.344754942e-08 1.916174445e-08 1.620442086e-08 1.735304665e-08 1.548191622e-08 1.637228609e-08 1.765727345e-08 1.492695083e-08 1.589668591e-08 1.568318775e-08 1.275370553e-08 1.850607734e-08 1.014493106e-08 1.035311343e-08 1.572227624e-08 1.75781763e-08 1.429847237e-08 1.877502894e-08 1.49770314e-08 1.192902597e-08 1.774042413e-08 1.449212526e-08 1.394344679e-08 1.500590175e-08 1.554982282e-08 1.595138444e-08 1.219543554e-08 1.64373669e-08 1.321562757e-08 1.952612258e-08 1.29888521e-08 1.280197037e-08 1.389871448e-08 1.595608642e-08 1.593412345e-08 1.617039783e-08 1.509741816e-08 1.230112004e-08 1.220823903e-08 1.342580174e-08 1.151383797e-08 1.334445988e-08 1.442563879e-08 1.19719505e-08 7.698480628e-09 8.261864078e-09 8.736815932e-09 1.275481079e-08 1.024024499e-08 7.064151346e-09 8.167517506e-09 9.885454287e-09 7.869070326e-09 6.217640603e-09 8.261689431e-09 4.528336205e-09 4.118782014e-09 7.432219437e-09 6.575969259e-09 4.072677418e-09 5.113867508e-09 5.486638402e-09 3.581639268e-09 2.148031425e-09 2.710710606e-09 1.7335749e-09 1.397457162e-09 1.807644617e-09 5.937178348e-10 3.331006264e-10 3.133899439e-10 2.247679133e-10 1.140134596e-10 1.879000116e-10 3.859559651e-11 5.439820541e-12 2.947681599e-14 9.340643795e-17 1.435779552e-14 1.101063478e-14 2.994685847e-18 2.056300517e-19 2.933247091e-17 2.399485095e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1.134038824e-31 0 0 1.032857061e-17 6.061513602e-18 6.162966746e-23 6.108009065e-16 2.171265311e-16 2.44195848e-16 1.245796143e-12 1.011805597e-13 1.317494378e-13 1.783144528e-11 1.160621479e-10 1.381984933e-10 1.481386823e-10 3.023842951e-10 1.777723246e-09 6.364182881e-10 1.235491323e-09 2.15800715e-09 2.629547753e-09 2.293516815e-09 4.238007793e-09 4.522703957e-09 3.679419904e-09 4.567070263e-09 5.375789934e-09 4.542319643e-09 5.127818115e-09 8.5255708e-09 7.063367081e-09 8.080696895e-09 9.049716525e-09 6.251649354e-09 7.073166138e-09 8.686629919e-09 8.30884008e-09 1.253237833e-08 1.401999634e-08 1.069740636e-08 1.167580972e-08 1.622775457e-08 1.456870881e-08 1.330062623e-08 1.54684575e-08 1.154502901e-08 1.449310717e-08 1.369815654e-08 1.257419371e-08 1.43000327e-08 1.608108348e-08 1.514323956e-08 1.720592897e-08 1.979980265e-08 1.484692966e-08 1.902696134e-08 1.81325303e-08 1.405210669e-08 1.772865117e-08 1.894903328e-08 2.051791853e-08 1.940897343e-08 2.109071365e-08 1.753094025e-08 1.418796936e-08 1.368920651e-08 1.588151097e-08 1.270179832e-08 1.855731454e-08 1.642353408e-08 1.612506333e-08 1.218316817e-08 1.570147847e-08 2.039306331e-08 1.674865462e-08 1.469266596e-08 1.278161439e-08 1.450015657e-08 1.379963329e-08 1.256809291e-08 1.136637163e-08 1.413372604e-08 1.599406598e-08 1.884508358e-08 1.448613996e-08 1.155479047e-08 1.801568455e-08 1.484761022e-08 1.224152296e-08 1.384505649e-08 1.605113133e-08 1.277618071e-08 1.35207711e-08 1.266224866e-08 1.205204754e-08 1.314836611e-08 1.426934623e-08 1.01938221e-08 1.531595431e-08 1.469652732e-08 1.451022222e-08 1.466661788e-08 1.163342975e-08 1.50391447e-08 1.358840147e-08 1.530934187e-08 1.820877402e-08 1.505763501e-08 1.471534931e-08 1.737764088e-08 1.942851771e-08 1.073176276e-08 1.730253956e-08 2.17888525e-08 1.694700881e-08 1.388772024e-08 1.935843124e-08 1.843053411e-08 1.787097006e-08 1.560339198e-08 1.470382048e-08 1.512407364e-08 1.548182775e-08 1.294943626e-08 1.045276161e-08 1.475319198e-08 1.507255356e-08 1.395521452e-08 1.778676284e-08 1.032780949e-08 1.145468025e-08 8.316440243e-09 1.460012818e-08 1.185854624e-08 1.344079932e-08 6.549784244e-09 9.752128981e-09 9.331117321e-09 8.807379959e-09 9.121065341e-09 6.112842384e-09 9.148177724e-09 7.211931874e-09 1.059534181e-08 8.573796954e-09 5.831385197e-09 4.707956504e-09 4.705261316e-09 3.341336296e-09 3.771743398e-09 3.520523279e-09 1.677831935e-09 3.49592623e-09 1.67535534e-09 1.992227983e-09 2.377003165e-09 3.063281163e-09 1.151821024e-09 1.060859266e-10 5.711683726e-10 2.596719464e-11 1.418839949e-10 1.203775619e-10 1.347760113e-11 2.141062489e-13 3.210919689e-12 2.619657686e-15 1.292383567e-14 4.034282436e-15 1.646632805e-18 6.715372877e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.22172156e-16 2.521785353e-17 2.649172882e-15 1.459853404e-14 2.431057377e-13 1.368152956e-12 1.252591291e-12 3.855128837e-12 1.032938766e-10 3.112657274e-10 6.04299983e-11 2.216638164e-10 2.214223829e-10 1.602404847e-09 1.157488258e-09 3.297350375e-09 1.397422608e-09 1.350555856e-09 2.790909323e-09 3.103577824e-09 3.226090578e-09 5.255669232e-09 7.797337598e-09 4.607552583e-09 7.36574391e-09 4.939819212e-09 6.494571576e-09 6.402067478e-09 9.009226349e-09 8.638821458e-09 8.518395929e-09 8.949403811e-09 1.038606324e-08 9.724339469e-09 8.785262677e-09 9.700243676e-09 1.015606843e-08 1.175720907e-08 1.452837293e-08 1.00063474e-08 1.181044363e-08 1.316987689e-08 1.250844018e-08 1.40908038e-08 1.440949903e-08 1.429697064e-08 1.605219804e-08 1.379105786e-08 1.543514205e-08 1.504026117e-08 1.566037288e-08 1.785888989e-08 1.512942517e-08 1.906047909e-08 1.8942244e-08 1.316884602e-08 1.829706684e-08 1.662048255e-08 1.111889681e-08 1.887220944e-08 1.365982919e-08 1.617883668e-08 1.179530816e-08 1.687315733e-08 9.914913365e-09 1.35483202e-08 1.569992569e-08 1.082904457e-08 1.268381626e-08 1.636681108e-08 1.166365303e-08 1.375740647e-08 1.586382615e-08 1.573625057e-08 1.361700402e-08 1.242545429e-08 1.633453629e-08 1.348894443e-08 1.388550031e-08 9.366671108e-09 1.484599809e-08 1.565794886e-08 1.118834133e-08 1.366102928e-08 1.064248031e-08 1.434019763e-08 1.436262799e-08 1.383215322e-08 1.453500533e-08 1.588170343e-08 1.422997632e-08 1.261931613e-08 1.353942657e-08 1.003297755e-08 1.241633554e-08 1.536424228e-08 1.191804402e-08 1.637885235e-08 1.665736315e-08 1.977645563e-08 1.818685099e-08 1.23651719e-08 1.82180336e-08 1.737837219e-08 1.534445003e-08 1.553036902e-08 1.58074544e-08 1.664825048e-08 1.732138037e-08 1.365390338e-08 1.412436939e-08 2.252529043e-08 1.626278724e-08 1.563355269e-08 1.752246774e-08 2.029451238e-08 1.285093706e-08 1.580862852e-08 1.813495179e-08 1.996509903e-08 1.347813915e-08 1.935126158e-08 1.290492615e-08 1.184394409e-08 1.065703561e-08 1.224660648e-08 1.664273143e-08 1.487798176e-08 1.330863027e-08 1.324596161e-08 9.487456526e-09 1.270140552e-08 1.613282805e-08 9.332124629e-09 9.921743866e-09 8.207980293e-09 9.627020547e-09 9.876224566e-09 9.825209023e-09 5.89089623e-09 6.977864302e-09 6.727691585e-09 4.632627626e-09 6.875288174e-09 5.362544737e-09 6.201637564e-09 6.549189176e-09 5.302389155e-09 2.198732273e-09 3.019865804e-09 2.887583911e-09 2.498818773e-09 2.285907091e-09 2.291679944e-09 1.225599244e-09 1.644227981e-10 5.621285643e-11 1.895338116e-10 2.056977275e-13 1.415103365e-10 1.023659421e-11 2.180196411e-12 1.893821697e-13 1.749280118e-13 1.951477253e-14 6.20705962e-17 7.901970585e-18 6.371381614e-18 2.731553752e-20 9.840243227e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +6.774001001e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 1.565558915e-24 2.835333701e-18 5.632497499e-18 3.929411404e-16 4.475045454e-16 4.183071155e-17 2.161204311e-13 1.26947719e-14 2.529490492e-12 4.184108325e-12 2.391420758e-10 3.366226044e-10 2.068144049e-10 1.669036072e-10 9.704510655e-10 1.476920521e-09 1.601657971e-09 1.099400686e-09 2.26256622e-09 2.111113016e-09 5.337376193e-09 5.628910674e-09 4.260847976e-09 3.394236345e-09 4.109873379e-09 6.799879572e-09 8.19766736e-09 6.462234722e-09 7.270842721e-09 7.238828335e-09 1.170444296e-08 8.938364317e-09 8.583694624e-09 1.089932692e-08 8.36750666e-09 1.308369268e-08 1.049846934e-08 1.371389383e-08 8.676902219e-09 1.297686652e-08 1.286090242e-08 1.039114227e-08 1.312895076e-08 1.53122382e-08 1.48728229e-08 1.512684406e-08 1.54266978e-08 1.519387481e-08 1.962547713e-08 2.128762877e-08 1.539255517e-08 1.348298423e-08 1.234228084e-08 1.734152217e-08 2.019602863e-08 1.677912135e-08 1.428658515e-08 1.950007503e-08 1.721315974e-08 1.504989067e-08 1.391878873e-08 1.410894743e-08 1.690230773e-08 1.698423973e-08 2.367915421e-08 1.913798556e-08 1.545961907e-08 1.153137881e-08 1.370515338e-08 1.524069626e-08 1.445740038e-08 1.233241117e-08 1.84940314e-08 1.473572717e-08 1.209015144e-08 1.433505399e-08 1.58126627e-08 1.133733074e-08 1.355977621e-08 1.285391997e-08 1.03056634e-08 1.357647566e-08 1.588921624e-08 9.084331958e-09 1.371087756e-08 1.340547679e-08 1.690993163e-08 2.038749487e-08 1.402453114e-08 1.31661209e-08 7.614856088e-09 1.204474225e-08 1.235236941e-08 1.641056322e-08 1.353321386e-08 1.286293738e-08 1.644297822e-08 1.179428572e-08 1.621426434e-08 8.796282028e-09 1.380321746e-08 1.250757381e-08 1.626603998e-08 1.234057287e-08 1.465135428e-08 1.562819788e-08 1.204305685e-08 1.326524704e-08 2.177428646e-08 1.347336175e-08 1.716213065e-08 2.000194715e-08 1.768458118e-08 1.925998389e-08 1.729303092e-08 1.377215058e-08 1.75729711e-08 2.06533816e-08 1.524416888e-08 1.726778652e-08 1.638288758e-08 1.010597672e-08 1.380759391e-08 1.63585204e-08 1.641978424e-08 1.681912011e-08 1.593290192e-08 1.667809795e-08 1.440742273e-08 1.05175958e-08 9.911378141e-09 1.417918234e-08 1.18738981e-08 1.281375984e-08 1.394634397e-08 8.09480112e-09 1.317426434e-08 9.534352657e-09 6.796822287e-09 7.759805916e-09 1.075958047e-08 6.270219003e-09 8.931819853e-09 8.381180414e-09 4.47525355e-09 5.220277324e-09 7.384804112e-09 6.335593083e-09 6.038403756e-09 5.350322753e-09 3.414062882e-09 3.345621934e-09 4.467469282e-09 3.256189097e-09 2.114872788e-09 1.341463776e-09 6.20353292e-10 7.021667141e-10 5.007450329e-10 3.76650774e-10 1.990801184e-10 4.227368268e-10 7.988474381e-11 1.443738162e-11 5.71210838e-13 4.192111617e-14 9.852318042e-16 3.856092434e-15 6.023614618e-16 2.769761323e-17 2.721236708e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.004514233e-17 9.842306137e-18 3.279881096e-17 7.851008907e-16 1.811381606e-15 8.595406654e-14 1.898644485e-12 7.767640572e-13 1.873034938e-11 2.842677666e-10 3.06732869e-10 4.446136011e-10 4.49266685e-10 4.94467044e-10 1.667782723e-09 1.264870665e-09 2.229118254e-09 1.819031649e-09 2.119603406e-09 4.585267119e-09 4.782460717e-09 2.975365208e-09 3.589186426e-09 4.460677095e-09 7.529519897e-09 5.364267316e-09 6.811741169e-09 8.909188611e-09 9.211415944e-09 8.365640372e-09 6.940166404e-09 1.007896802e-08 1.015703621e-08 1.531701513e-08 1.311443359e-08 1.099699773e-08 1.552656596e-08 1.471352491e-08 1.287828248e-08 1.320609209e-08 1.668976208e-08 1.238304766e-08 1.378951623e-08 1.15960508e-08 1.55178266e-08 1.610949771e-08 1.255879171e-08 1.728368085e-08 2.035388878e-08 2.026572553e-08 2.078564407e-08 1.742488817e-08 1.622174555e-08 1.399285282e-08 1.735356878e-08 1.313988251e-08 1.683927451e-08 1.911157134e-08 1.262753056e-08 1.417300578e-08 1.297632727e-08 1.412598299e-08 1.581880347e-08 1.619469029e-08 1.462392324e-08 1.408227826e-08 1.051245566e-08 8.723454949e-09 1.281532289e-08 8.499327039e-09 1.296825037e-08 7.95237532e-09 1.115998582e-08 1.234122676e-08 1.968762837e-08 1.311915379e-08 1.07286469e-08 1.17445207e-08 1.056445866e-08 9.854283612e-09 1.309476161e-08 1.314130327e-08 9.857606323e-09 1.478736136e-08 1.343648799e-08 1.226401428e-08 1.439226632e-08 1.494204036e-08 1.567305969e-08 1.370629705e-08 1.140508378e-08 1.22157211e-08 1.160052706e-08 1.346723468e-08 1.436423379e-08 1.344993183e-08 1.598469994e-08 1.386368297e-08 1.175778554e-08 1.465507268e-08 1.243382622e-08 1.142610424e-08 1.095204327e-08 9.839966489e-09 1.499267752e-08 1.804341355e-08 1.418059201e-08 1.635442112e-08 2.090543026e-08 1.784155001e-08 1.685797785e-08 1.679541686e-08 1.614286831e-08 2.313977567e-08 1.688418139e-08 1.616517911e-08 1.792328756e-08 1.472090535e-08 1.575451284e-08 2.214100395e-08 1.305093541e-08 1.765976344e-08 1.684418115e-08 1.940027392e-08 1.679499495e-08 1.739272546e-08 1.64781486e-08 1.549645018e-08 1.675041198e-08 1.488871826e-08 1.186129769e-08 1.765071928e-08 1.494458072e-08 1.420071018e-08 1.282401658e-08 1.042644816e-08 1.215879817e-08 9.053851668e-09 8.599155942e-09 8.185816799e-09 9.089615221e-09 7.543580762e-09 9.092498094e-09 8.890110079e-09 6.214403014e-09 9.94197511e-09 5.241615885e-09 5.425638255e-09 5.698558374e-09 4.396006435e-09 3.963098812e-09 2.204414384e-09 2.153178155e-09 3.163527022e-09 1.410497634e-09 6.828267947e-10 4.720916609e-10 2.334719336e-10 7.37584672e-11 1.89764902e-10 1.042141298e-10 4.509880806e-11 7.259662912e-12 2.874243935e-12 2.49978383e-14 4.515685779e-15 6.72104035e-16 2.399020304e-16 1.144659954e-16 7.075607557e-19 2.226787197e-21 0 0 0 0 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.477660783e-18 1.943186303e-18 3.708404768e-26 5.797175055e-17 3.554408005e-18 2.578529087e-14 1.316187498e-14 3.304252497e-13 2.231939464e-11 5.240939721e-11 2.120066918e-10 3.970283189e-10 3.002312875e-10 6.81247379e-10 7.366470075e-10 1.366377669e-09 8.457627106e-10 1.730006887e-09 2.343624558e-09 2.618358773e-09 4.638066285e-09 5.698240428e-09 4.225343995e-09 7.157196879e-09 7.302628016e-09 1.075199415e-08 5.884353655e-09 7.845862236e-09 7.194965701e-09 7.854527635e-09 1.069981941e-08 1.239327917e-08 1.11546017e-08 9.9217235e-09 1.211711621e-08 1.404739254e-08 1.206449328e-08 1.608598677e-08 1.529486102e-08 1.091142499e-08 1.562378092e-08 1.59060059e-08 1.691098547e-08 1.422923718e-08 1.599674882e-08 1.631125437e-08 2.493604976e-08 1.745019763e-08 1.31536011e-08 1.858063352e-08 1.90043111e-08 1.368190201e-08 1.802518634e-08 1.815783948e-08 1.944286297e-08 1.663767627e-08 2.346836781e-08 1.563699385e-08 1.65937835e-08 2.017020823e-08 1.584826341e-08 1.478975493e-08 1.427921841e-08 2.045842219e-08 1.225055286e-08 2.034572141e-08 6.460479041e-09 1.341762964e-08 1.479178459e-08 1.292940058e-08 1.242705091e-08 1.23493586e-08 1.043877108e-08 9.753571872e-09 1.159736431e-08 9.043314974e-09 1.174029112e-08 1.094613307e-08 1.124592217e-08 9.786251611e-09 1.444112364e-08 6.717639974e-09 1.377938004e-08 7.938389079e-09 1.160225615e-08 1.636361471e-08 1.234320353e-08 1.373840873e-08 1.273656831e-08 7.849659535e-09 1.193149482e-08 1.029584981e-08 9.969180615e-09 1.354839451e-08 1.112999603e-08 1.030451583e-08 1.110283278e-08 1.40295973e-08 1.446776453e-08 1.614443159e-08 1.060524553e-08 1.280447899e-08 1.097016908e-08 1.611490797e-08 1.459199826e-08 1.419699021e-08 1.901851121e-08 2.272126412e-08 1.736797461e-08 1.540168676e-08 1.579040048e-08 1.664070921e-08 2.017565196e-08 1.407787283e-08 1.678540692e-08 1.929541727e-08 1.655994971e-08 1.903102469e-08 1.399013522e-08 2.224227756e-08 1.519805247e-08 2.044225856e-08 1.675924526e-08 1.876053155e-08 1.742289039e-08 1.89941165e-08 1.832364046e-08 1.546586192e-08 1.492030541e-08 1.298288207e-08 1.654343425e-08 1.661912563e-08 1.225443951e-08 1.534350057e-08 1.505479378e-08 1.661183594e-08 1.334020365e-08 1.255406914e-08 1.109859061e-08 1.128595258e-08 1.109223056e-08 8.561901097e-09 1.016652693e-08 8.605491662e-09 7.797313081e-09 7.354441201e-09 5.730724686e-09 4.550239045e-09 6.120205379e-09 4.859234815e-09 4.512543755e-09 3.26891923e-09 2.393976145e-09 3.169470305e-09 1.874553935e-09 3.237731852e-09 6.384180576e-10 2.612630903e-10 8.520414928e-10 2.821417683e-10 1.882282833e-10 2.340833087e-11 1.267813115e-10 3.711734369e-13 9.236854566e-13 4.778374599e-13 3.518618573e-15 4.479446669e-15 1.147483438e-15 7.647692401e-18 4.983635971e-18 4.34631343e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.093616276e-27 7.406385391e-19 2.33637837e-17 1.423691978e-15 1.666613218e-15 2.607139253e-14 4.079050805e-14 2.294006279e-14 9.104149727e-12 2.152277244e-11 1.575980663e-10 8.140466771e-12 4.57192714e-10 1.453464733e-10 8.363218027e-10 6.39965119e-10 1.0216091e-09 2.650145683e-09 1.53494264e-09 3.458412339e-09 2.865617854e-09 5.987913882e-09 5.148202363e-09 6.611777729e-09 5.452068074e-09 7.608341451e-09 9.074855412e-09 7.888731238e-09 8.803653703e-09 7.493564059e-09 1.092338166e-08 9.46775366e-09 1.320271687e-08 1.431584473e-08 1.302926488e-08 1.207665991e-08 1.487973264e-08 1.562902669e-08 1.474679446e-08 1.560604945e-08 1.427793031e-08 1.738261225e-08 1.499100867e-08 1.753725158e-08 1.954219396e-08 1.664219929e-08 2.451477839e-08 2.461108619e-08 2.27050315e-08 1.702097246e-08 2.45345657e-08 2.049528824e-08 1.554444124e-08 2.358642164e-08 1.935452187e-08 2.040902436e-08 2.192895836e-08 2.076291809e-08 1.443152331e-08 1.425481189e-08 1.979518262e-08 1.352161401e-08 2.154912001e-08 1.737372483e-08 1.529736588e-08 1.187896878e-08 1.256626631e-08 1.631178913e-08 1.574144651e-08 1.178586794e-08 1.367304652e-08 1.414967214e-08 1.328800918e-08 1.067105692e-08 8.999115912e-09 8.101676804e-09 1.392652357e-08 1.52346448e-08 1.20560412e-08 8.555485051e-09 1.3742877e-08 9.762424905e-09 1.114368982e-08 1.124015357e-08 1.392131732e-08 1.303360893e-08 1.108978943e-08 1.414404835e-08 9.883095154e-09 1.409049758e-08 8.885532432e-09 1.255872535e-08 1.08565871e-08 1.109250658e-08 8.804595287e-09 1.006038649e-08 7.569331755e-09 1.272795754e-08 9.608548501e-09 1.049981589e-08 1.163867367e-08 1.16499799e-08 1.133975718e-08 1.062291828e-08 1.271452889e-08 1.33013337e-08 1.338691911e-08 1.768193786e-08 1.802103832e-08 2.234987903e-08 1.713829867e-08 1.801411904e-08 1.11970953e-08 1.962805184e-08 2.219329872e-08 2.518122365e-08 1.304021855e-08 1.504394201e-08 1.667244761e-08 2.511829591e-08 1.649211733e-08 2.053636209e-08 2.043732119e-08 1.883341945e-08 1.467129521e-08 2.024229512e-08 1.414654292e-08 1.416900614e-08 1.870052067e-08 2.138389703e-08 1.595938537e-08 1.479370851e-08 1.806936172e-08 1.613819931e-08 1.592490059e-08 1.144079911e-08 1.368623897e-08 1.177323576e-08 1.098296429e-08 1.43755093e-08 1.057994925e-08 8.827698844e-09 8.491977439e-09 8.299778422e-09 7.978367149e-09 6.353331976e-09 7.05421218e-09 6.926048403e-09 4.722289931e-09 4.452422026e-09 2.694498447e-09 4.777974006e-09 2.281686265e-09 2.704822935e-09 3.963864215e-09 1.536053246e-09 5.791297227e-10 8.698408553e-10 2.163638457e-10 5.865794601e-10 2.14554546e-11 6.705838925e-11 2.972747714e-11 2.551328713e-11 1.347554839e-13 1.025250687e-13 3.530190119e-16 1.855323548e-16 4.203325787e-16 0 5.575138417e-19 2.908202479e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.761382366e-18 1.786611018e-17 3.332113397e-16 7.788565546e-15 5.63737929e-15 5.072070771e-15 7.496782041e-13 3.609466753e-11 2.933101679e-12 3.757028823e-12 2.082141232e-10 8.142790628e-11 1.295270935e-10 4.87044919e-10 6.730385258e-10 2.050985184e-09 3.037747742e-09 2.764106951e-09 3.649930794e-09 4.799537148e-09 5.835615524e-09 5.639085973e-09 3.941166236e-09 6.293134837e-09 7.816064179e-09 8.447087362e-09 6.470612229e-09 9.578853158e-09 1.156948208e-08 9.700427068e-09 1.072817576e-08 9.411434108e-09 1.569832175e-08 1.121493593e-08 1.501505709e-08 1.140202228e-08 9.169252517e-09 1.374905052e-08 1.401077578e-08 1.981935663e-08 1.766894644e-08 1.73844366e-08 1.666438657e-08 1.527403263e-08 2.200748847e-08 1.641912869e-08 2.070229295e-08 1.862929819e-08 1.747440923e-08 1.878790181e-08 2.02073064e-08 1.757344557e-08 2.327712505e-08 1.891726696e-08 1.986236339e-08 1.548077147e-08 2.130548521e-08 1.778457848e-08 1.343414999e-08 1.028155228e-08 1.505110776e-08 2.608728421e-08 1.615197603e-08 1.903831293e-08 1.561196488e-08 1.731082376e-08 1.355885723e-08 8.995606528e-09 1.310314133e-08 1.162580752e-08 1.090794101e-08 1.635833885e-08 1.055367055e-08 6.924598072e-09 8.214184067e-09 1.226549704e-08 7.706510829e-09 1.197707845e-08 8.66780501e-09 9.630138547e-09 1.445114824e-08 7.391652862e-09 9.21651203e-09 1.262610805e-08 9.482013539e-09 1.061010383e-08 9.862783904e-09 1.338862775e-08 8.71185263e-09 8.113726263e-09 5.551386249e-09 1.058909397e-08 8.680635028e-09 8.961340823e-09 1.327573478e-08 1.0863309e-08 8.928731898e-09 1.160522519e-08 1.32379917e-08 9.664850432e-09 1.090056979e-08 1.480014865e-08 1.434935145e-08 1.132592009e-08 1.750956936e-08 1.086753846e-08 1.966084015e-08 1.402694599e-08 1.330339105e-08 1.324096052e-08 1.357549955e-08 1.674626281e-08 1.883271706e-08 2.87075419e-08 1.752399045e-08 1.623712523e-08 2.184905094e-08 2.206434545e-08 2.013142898e-08 2.064551683e-08 2.329918736e-08 2.298155974e-08 2.420561784e-08 1.839667974e-08 2.348855311e-08 1.97177084e-08 1.67698998e-08 1.638817408e-08 2.05032572e-08 2.00595867e-08 1.365001432e-08 1.963040716e-08 1.307500292e-08 1.10477875e-08 1.476268402e-08 1.587845032e-08 1.011442816e-08 1.176022053e-08 1.13166937e-08 1.093320547e-08 1.078586506e-08 9.091249903e-09 7.054662842e-09 7.409793143e-09 1.07174992e-08 5.884539456e-09 9.116089167e-09 5.973262003e-09 5.036006201e-09 3.349685333e-09 3.324830211e-09 4.537448204e-09 3.809719048e-09 3.460432015e-09 2.03344092e-09 1.291141371e-09 4.740336943e-10 4.698709368e-10 5.580109487e-11 3.426243807e-10 2.537278549e-11 9.938662029e-13 3.553639618e-12 2.530129248e-13 2.94924349e-14 6.940537344e-15 1.22108003e-15 6.615610195e-16 4.338920127e-16 3.456946652e-17 7.885072461e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.436249688e-19 1.269762407e-18 8.754683966e-18 6.927867031e-20 1.451366584e-15 1.486735356e-15 2.158291304e-15 3.484660588e-15 1.574704844e-13 3.010890258e-11 1.151482813e-11 7.79803081e-12 3.920610827e-11 3.552761239e-10 2.044703097e-10 3.141889048e-10 1.289622226e-09 2.509323189e-09 8.80556322e-10 2.711526261e-09 3.25218957e-09 4.502110924e-09 4.447786625e-09 4.364965661e-09 5.853898111e-09 5.118374828e-09 1.100306062e-08 9.069490041e-09 1.358008451e-08 8.720049638e-09 1.100772927e-08 1.10745049e-08 9.340021121e-09 1.202473459e-08 1.434988638e-08 1.359960368e-08 1.470511666e-08 1.356911131e-08 1.684557581e-08 1.449237633e-08 1.439004332e-08 1.641391517e-08 2.234320831e-08 1.620692515e-08 1.19928788e-08 1.772563108e-08 1.596397384e-08 1.574211421e-08 1.883408275e-08 1.89130318e-08 2.082979046e-08 2.613001166e-08 2.66836943e-08 2.357840497e-08 1.872632007e-08 2.598890784e-08 1.873649037e-08 1.819279987e-08 1.789566857e-08 1.876812651e-08 1.960289613e-08 1.875704333e-08 1.364792984e-08 1.683394599e-08 1.668995009e-08 1.321408006e-08 1.78456099e-08 1.505235972e-08 1.127459509e-08 1.162773323e-08 1.642086941e-08 9.759745901e-09 1.33107644e-08 1.34901556e-08 1.077746627e-08 1.270736198e-08 1.108638326e-08 1.290278935e-08 6.00249662e-09 1.124489249e-08 9.30099059e-09 1.367200419e-08 1.189933148e-08 7.837726464e-09 5.839157723e-09 1.067373808e-08 1.378779833e-08 9.459601291e-09 7.470177482e-09 1.182159734e-08 9.671990138e-09 1.246874214e-08 1.085577028e-08 9.826874332e-09 8.544328884e-09 1.141822352e-08 1.03264555e-08 7.304150375e-09 7.327025522e-09 1.559255117e-08 9.3922799e-09 8.89500387e-09 7.232370815e-09 1.097876661e-08 7.742483047e-09 1.548645732e-08 1.270248991e-08 1.080291831e-08 2.277465537e-08 1.221967152e-08 2.184287682e-08 1.53870301e-08 1.05031319e-08 1.463291468e-08 1.776452723e-08 1.837817799e-08 1.875653504e-08 2.300723712e-08 1.917127205e-08 2.293482318e-08 2.011843829e-08 1.112465721e-08 2.287495738e-08 2.590074016e-08 2.374830033e-08 1.846525498e-08 2.081347761e-08 1.724308714e-08 2.041840476e-08 1.705613663e-08 2.027733567e-08 1.883152687e-08 1.637452346e-08 1.714085275e-08 1.394466031e-08 1.577782585e-08 1.506823731e-08 1.444712869e-08 1.255020202e-08 1.087774877e-08 1.191224667e-08 1.147948244e-08 1.176505697e-08 8.919668666e-09 1.012546823e-08 8.144685484e-09 8.510354118e-09 9.140169783e-09 7.677120547e-09 7.166618554e-09 4.841279633e-09 7.38124781e-09 5.914098157e-09 4.294103623e-09 1.328293136e-09 1.915818352e-09 2.442291253e-09 1.799371922e-09 7.925216042e-11 4.76708073e-10 5.605528329e-10 1.239077432e-10 4.701541656e-11 5.587417212e-12 7.630992035e-13 2.771739686e-14 4.64137668e-13 2.04159473e-14 2.964479014e-16 5.728018329e-16 6.541814758e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.002142739e-18 1.247578432e-17 5.371254366e-16 1.507589797e-16 6.681874475e-16 4.564806227e-15 1.602293493e-15 7.553837136e-11 2.3970027e-11 8.628956722e-11 1.207409886e-11 2.424455084e-10 2.977656354e-10 3.609299858e-10 1.413734036e-10 6.125274717e-10 2.214871457e-09 1.890687682e-09 2.412647078e-09 3.581502971e-09 2.029413636e-09 7.042791573e-09 5.362357414e-09 4.808611143e-09 3.26724132e-09 8.400284474e-09 9.744447669e-09 8.112290081e-09 9.806363868e-09 1.067310343e-08 9.056805927e-09 1.32538328e-08 1.066688195e-08 1.204820887e-08 1.647119984e-08 1.488745478e-08 1.550784378e-08 1.516439734e-08 1.454658265e-08 2.017304316e-08 1.776224076e-08 2.522585855e-08 1.938786643e-08 2.000326685e-08 1.931166605e-08 2.180021163e-08 1.945431101e-08 1.950571224e-08 2.706275512e-08 1.846384931e-08 1.913611449e-08 2.309687524e-08 2.209438539e-08 2.169296625e-08 2.051620951e-08 1.995147092e-08 2.299955492e-08 1.849411261e-08 2.547583475e-08 2.012067097e-08 1.783944916e-08 1.537517317e-08 1.74790143e-08 1.193074961e-08 1.586636932e-08 1.191019103e-08 1.347763349e-08 1.53805212e-08 2.112431279e-08 1.109423627e-08 8.834578229e-09 9.811508067e-09 8.226957266e-09 9.577054689e-09 1.245041564e-08 1.290604804e-08 1.139548304e-08 1.105508238e-08 1.026841142e-08 9.590259132e-09 1.137385887e-08 1.12619871e-08 9.665384389e-09 7.464277834e-09 6.369691188e-09 8.274170642e-09 8.468111305e-09 4.63506218e-09 9.187860603e-09 8.617382665e-09 8.534958268e-09 7.051006077e-09 1.115509066e-08 7.164005251e-09 7.454063822e-09 1.015301172e-08 8.470745045e-09 1.177305279e-08 1.091222529e-08 1.181962277e-08 1.318334351e-08 6.946312407e-09 1.201397064e-08 1.289572145e-08 1.669484483e-08 1.613363992e-08 1.916974379e-08 1.36409895e-08 2.066467565e-08 1.709931901e-08 1.971152972e-08 1.481222131e-08 2.110950317e-08 2.304915811e-08 1.552493003e-08 1.732307843e-08 2.719704976e-08 2.052860352e-08 2.134281682e-08 1.79968338e-08 2.375589715e-08 1.995202111e-08 1.591441625e-08 2.388960549e-08 2.346716338e-08 2.052102341e-08 2.264907558e-08 2.202095627e-08 2.016880362e-08 1.748834191e-08 1.639305106e-08 1.884822775e-08 1.511051461e-08 1.510377739e-08 1.550350306e-08 1.175331001e-08 1.424203535e-08 1.309040567e-08 1.171401773e-08 1.125330219e-08 1.339523911e-08 7.813917298e-09 9.657986627e-09 1.328047968e-08 9.444046368e-09 1.009434253e-08 8.222288254e-09 6.187179779e-09 5.632399179e-09 6.101216416e-09 6.45125279e-09 3.733724434e-09 2.905396855e-09 4.104486838e-09 4.253644266e-09 1.555356592e-09 1.466584338e-09 3.256925229e-10 3.542866823e-10 3.548532322e-11 1.214049951e-10 8.686586815e-11 1.066120587e-10 1.988910803e-11 2.750212079e-12 1.093440272e-15 3.01613432e-14 1.170836195e-15 2.894261156e-16 4.369641453e-17 3.041400403e-17 6.717978699e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.371258264e-20 0 0 2.922589714e-18 1.414287035e-15 6.300947621e-15 4.05926946e-14 3.969740582e-15 5.193706596e-13 2.431641606e-11 1.893063122e-11 4.418544578e-11 2.603683663e-10 4.18130191e-10 1.124037383e-10 7.805367653e-10 1.502991162e-09 2.635102509e-09 1.845213288e-09 3.301599514e-09 2.150747842e-09 4.230591862e-09 3.699246291e-09 7.700314786e-09 8.635549122e-09 6.257952058e-09 1.016740429e-08 7.642594301e-09 7.712895917e-09 1.012153358e-08 9.945531656e-09 1.426958947e-08 1.250604912e-08 1.715734299e-08 1.200440557e-08 1.297058039e-08 1.126082548e-08 1.35474761e-08 1.858728773e-08 1.7767602e-08 1.792290802e-08 2.080438791e-08 1.987626844e-08 1.651641354e-08 2.068771767e-08 2.276952352e-08 2.584238103e-08 2.541613344e-08 2.516151565e-08 2.096659736e-08 1.904817408e-08 2.475762276e-08 2.160545925e-08 2.74265145e-08 2.040076471e-08 2.443000022e-08 2.115804863e-08 2.501764238e-08 1.7219256e-08 2.365760544e-08 2.644302996e-08 1.330311654e-08 7.886238019e-09 1.735434411e-08 1.347377141e-08 1.191225214e-08 1.062229943e-08 1.439669638e-08 1.348532564e-08 2.021461086e-08 1.332963773e-08 6.767113511e-09 1.278713312e-08 1.0657733e-08 8.583725172e-09 7.254958693e-09 6.643612575e-09 1.29247367e-08 6.535444616e-09 6.905100218e-09 7.534765041e-09 1.621622346e-08 8.632422018e-09 1.152176552e-08 5.525148079e-09 8.250681179e-09 8.433201361e-09 1.161829228e-08 1.042691585e-08 5.258152885e-09 5.560134937e-09 5.591778669e-09 1.129214068e-08 7.684477109e-09 1.011797437e-08 1.200648606e-08 7.733547451e-09 1.096038443e-08 5.55548644e-09 5.580793076e-09 1.090344996e-08 7.709358276e-09 1.186121414e-08 1.030061761e-08 6.818074649e-09 9.20532953e-09 1.471225085e-08 1.388967904e-08 1.66505482e-08 1.504602039e-08 1.441422014e-08 1.449534677e-08 1.869381635e-08 1.577984305e-08 1.254068284e-08 2.130241642e-08 2.834755958e-08 1.695254933e-08 1.988645261e-08 1.878717073e-08 2.099350597e-08 2.890344828e-08 2.064418996e-08 1.618525622e-08 3.505482535e-08 2.239024145e-08 2.472574466e-08 2.695474772e-08 2.480650922e-08 2.261577598e-08 2.192322429e-08 1.796980481e-08 1.852768921e-08 2.061419336e-08 1.915515804e-08 1.780951785e-08 1.76589827e-08 1.662650202e-08 1.229792698e-08 1.338747966e-08 9.889808764e-09 1.234193967e-08 1.176739212e-08 1.06883995e-08 8.980553904e-09 1.196596141e-08 9.179245021e-09 6.656764778e-09 8.400027098e-09 7.068389858e-09 5.233435207e-09 4.777273762e-09 5.587393517e-09 2.78554263e-09 5.534696401e-09 2.560015644e-09 1.6576894e-09 1.308469376e-09 6.106578668e-10 3.033609303e-10 2.253399204e-10 9.647993103e-11 2.086262907e-10 7.974434548e-11 5.993976631e-12 7.646995944e-11 3.115404401e-14 3.487462906e-14 2.758308567e-15 1.353201071e-16 3.07665376e-17 3.531157315e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.954283371e-18 4.162285982e-18 1.990239335e-18 8.802913225e-17 8.107324378e-16 5.345237976e-16 7.355735638e-15 1.190842025e-14 1.123022421e-13 5.052729861e-12 4.164942799e-11 1.362277095e-10 6.076349103e-10 2.925208641e-10 2.162891865e-10 7.412323165e-10 1.203426527e-09 1.617796504e-09 3.08748365e-09 2.366490558e-09 3.240207955e-09 3.50581031e-09 4.996769115e-09 6.418640559e-09 8.688321554e-09 6.352191056e-09 9.727460526e-09 4.888220092e-09 9.441461509e-09 1.063983229e-08 8.031815179e-09 1.118904282e-08 1.436429606e-08 1.27062213e-08 1.584208089e-08 1.550360219e-08 1.270822228e-08 1.472169643e-08 1.512121312e-08 1.960453373e-08 2.087677423e-08 2.118991277e-08 2.394355706e-08 1.59422632e-08 1.990773555e-08 2.273149893e-08 2.334781937e-08 2.281887772e-08 2.06672259e-08 2.084818282e-08 2.744140323e-08 2.675204145e-08 2.067092967e-08 2.342941407e-08 2.405625261e-08 1.6735951e-08 2.148772002e-08 2.161274259e-08 2.30921887e-08 1.835694804e-08 1.958578242e-08 1.484005514e-08 1.401368767e-08 1.378306219e-08 6.923866934e-09 1.064634594e-08 1.542779855e-08 1.155999456e-08 1.136028566e-08 1.324678521e-08 9.229747019e-09 1.131912686e-08 9.335471199e-09 9.625962188e-09 6.757169623e-09 6.503104885e-09 3.837214321e-09 8.508527476e-09 8.701327786e-09 6.994339581e-09 8.588727067e-09 9.956204685e-09 9.230717907e-09 9.355183117e-09 7.701313653e-09 8.143054297e-09 8.293415845e-09 1.129279858e-08 1.155011781e-08 1.004294028e-08 9.387249773e-09 8.850682088e-09 7.370489046e-09 8.507601362e-09 9.007734262e-09 6.520203769e-09 1.036467572e-08 5.906981387e-09 6.983728667e-09 1.187659618e-08 5.186796585e-09 8.805957724e-09 8.774645829e-09 1.422290137e-08 1.077675742e-08 6.608902264e-09 1.239420434e-08 1.535371511e-08 1.310083837e-08 1.626564703e-08 1.73090712e-08 1.504444647e-08 1.912031549e-08 1.956019549e-08 1.617272718e-08 2.004597324e-08 2.176064877e-08 2.109827034e-08 2.063787009e-08 2.762739847e-08 1.866204993e-08 2.588727271e-08 2.102596756e-08 2.714559234e-08 3.147144024e-08 2.393960211e-08 2.519822459e-08 2.506783394e-08 2.284741865e-08 2.143230437e-08 2.083441019e-08 1.885226238e-08 2.109339525e-08 1.528256299e-08 1.799557184e-08 1.743072734e-08 1.333873909e-08 1.697719866e-08 1.491851031e-08 1.452641194e-08 1.132986243e-08 8.466785356e-09 1.100259972e-08 1.121920876e-08 8.615164055e-09 6.892360069e-09 8.598923157e-09 6.934674125e-09 7.413655455e-09 8.709405523e-09 8.441015257e-09 5.385047085e-09 3.464866132e-09 4.886450992e-09 4.938985051e-09 1.317949302e-09 1.974471443e-09 6.363613512e-10 3.623392732e-10 8.326910615e-10 4.43870356e-10 3.38700333e-10 4.763138913e-10 7.17726154e-11 1.351475299e-11 7.275639172e-14 6.65066939e-14 2.663778365e-15 3.980124951e-17 3.280654883e-15 2.522867927e-16 1.27124762e-18 2.45111932e-18 0 0 0 6.672225859e-20 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 2.89441481e-24 0 0 0 4.173526173e-19 1.680488034e-25 2.810526215e-16 9.940544574e-17 6.145377923e-16 3.159702535e-14 3.551742825e-14 1.016284239e-13 4.942754183e-13 4.071388887e-12 8.735920724e-11 1.298273466e-10 4.873266314e-10 3.984180783e-10 4.503048498e-10 4.459015365e-10 1.714333543e-09 3.174361927e-09 2.90442902e-09 3.07328603e-09 4.746862307e-09 5.787684429e-09 6.688771583e-09 9.268218244e-09 8.989852573e-09 9.812853075e-09 9.40312404e-09 1.108798489e-08 7.648243479e-09 1.273789564e-08 1.3468855e-08 1.320791081e-08 1.320500775e-08 1.765517717e-08 1.847074599e-08 1.668341506e-08 1.546008686e-08 1.776714948e-08 1.838008722e-08 1.842719492e-08 2.251117137e-08 2.250375264e-08 2.44997726e-08 2.315085097e-08 2.783646715e-08 2.40668687e-08 1.854862121e-08 2.420811777e-08 2.634159337e-08 2.371036251e-08 2.72659353e-08 1.812774953e-08 1.71519091e-08 2.629753238e-08 2.82953704e-08 1.843637949e-08 2.633718924e-08 2.265796503e-08 2.04835552e-08 2.646796753e-08 1.655996205e-08 1.277294224e-08 1.381187342e-08 1.346967727e-08 1.500101298e-08 1.304099924e-08 7.969229763e-09 5.516599068e-09 1.458664607e-08 1.029138102e-08 1.309072586e-08 9.803863188e-09 1.427746423e-08 1.180182007e-08 1.087636926e-08 7.432372816e-09 9.989985388e-09 1.229910757e-08 1.317300501e-08 1.079619631e-08 7.468252594e-09 9.109286067e-09 5.18121353e-09 4.816694926e-09 5.635373094e-09 8.734919594e-09 1.138116378e-08 5.46415242e-09 5.665388789e-09 1.126373606e-08 1.166126398e-08 6.112336516e-09 4.513531352e-09 1.241332404e-08 1.048221203e-08 1.475227043e-08 1.007427627e-08 3.125472203e-09 8.158059399e-09 1.671503045e-08 7.717824116e-09 1.911869498e-08 9.974456862e-09 6.541351333e-09 1.801823156e-08 1.814267407e-08 1.757819587e-08 1.258922369e-08 1.903993645e-08 8.394691578e-09 2.174712225e-08 1.791605798e-08 2.571842971e-08 2.520964528e-08 2.415429145e-08 2.85176316e-08 2.331813326e-08 2.026784369e-08 3.640643657e-08 1.630005473e-08 2.195213715e-08 2.491530956e-08 2.201715823e-08 2.252578362e-08 2.491260208e-08 2.071231707e-08 2.146001317e-08 1.961571714e-08 2.667326278e-08 1.990498316e-08 1.81495161e-08 2.105344454e-08 1.850436567e-08 2.133705083e-08 1.639287176e-08 1.360951707e-08 1.751793756e-08 1.387330965e-08 1.38810985e-08 1.434055265e-08 1.509042986e-08 1.568153969e-08 1.613009085e-08 1.055657266e-08 1.086889257e-08 1.149924732e-08 7.008938715e-09 9.250165378e-09 6.891596058e-09 8.01036357e-09 7.730251053e-09 8.0268128e-09 2.911282053e-09 2.536263969e-09 1.517291794e-09 1.967649439e-09 1.241087986e-09 7.032084187e-10 3.470779284e-10 3.059601783e-10 3.643963034e-10 3.448009427e-11 3.756941388e-11 1.19587335e-11 4.328436944e-13 9.248975762e-14 3.403105336e-14 6.74409167e-15 2.882898773e-17 1.345990949e-16 9.508466602e-17 3.655556623e-18 2.318253623e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.563262394e-27 0 8.901995055e-19 5.797951908e-17 1.277786928e-16 1.039892685e-16 1.574602588e-15 2.838712875e-14 2.822643075e-13 1.039153747e-11 2.522301939e-11 2.570999467e-12 1.460368573e-11 2.844181964e-10 4.596758283e-10 6.854640126e-10 2.192384051e-09 3.363724186e-09 3.291528049e-09 2.769483567e-09 4.837006203e-09 5.174722251e-09 7.011730892e-09 5.865958405e-09 7.795681965e-09 6.804046555e-09 1.043532874e-08 8.482866638e-09 1.196586e-08 9.426689862e-09 1.289510563e-08 1.319951304e-08 1.234410887e-08 1.231784013e-08 1.668973876e-08 1.438408529e-08 1.728789071e-08 1.736416019e-08 1.788727586e-08 1.77283971e-08 1.807063831e-08 2.577481961e-08 2.103870801e-08 1.936469939e-08 1.814219074e-08 2.368075746e-08 2.060049771e-08 2.553553591e-08 2.449318423e-08 2.382557442e-08 3.08028888e-08 2.540350617e-08 1.808936362e-08 2.688107549e-08 2.388456869e-08 2.648654489e-08 2.01360008e-08 2.781765762e-08 1.91035323e-08 2.257020466e-08 1.37367106e-08 1.886112241e-08 1.490649779e-08 2.047268001e-08 1.937607354e-08 1.19691311e-08 1.340799349e-08 2.087507591e-08 1.403344954e-08 9.485869051e-09 1.367928375e-08 1.300565002e-08 1.240607409e-08 1.115524633e-08 1.388435526e-08 8.937823773e-09 1.133053118e-08 1.035165672e-08 9.316328295e-09 1.139895005e-08 5.397868782e-09 8.30042911e-09 9.673928526e-09 8.029089934e-09 1.148742546e-08 1.142568703e-08 4.984535589e-09 7.887433409e-09 9.060171049e-09 7.287732481e-09 7.207835616e-09 8.144718043e-09 9.598041564e-09 8.95411531e-09 9.023060744e-09 1.10402083e-08 6.352564472e-09 8.254031595e-09 9.834004249e-09 9.341951324e-09 1.044088107e-08 1.047989116e-08 9.180431419e-09 1.653458797e-08 9.064115425e-09 1.734443954e-08 1.254040208e-08 1.171731974e-08 1.729172561e-08 1.444569472e-08 1.950368086e-08 2.208040088e-08 2.428160013e-08 2.187602165e-08 2.01316773e-08 2.210362323e-08 3.606607066e-08 1.888215672e-08 2.948963918e-08 2.612531632e-08 2.500866019e-08 2.872123618e-08 1.819479783e-08 3.083648589e-08 2.819812753e-08 2.78563763e-08 2.771471484e-08 2.567410982e-08 2.074531518e-08 2.53635907e-08 2.040152729e-08 2.923725069e-08 1.872749951e-08 1.831789214e-08 2.460991863e-08 1.937314277e-08 2.36804235e-08 1.748294044e-08 1.66303307e-08 1.152521441e-08 1.455863635e-08 1.40640349e-08 1.314579677e-08 8.863164563e-09 1.109865124e-08 9.111753892e-09 1.103667865e-08 1.134264012e-08 9.66197281e-09 8.420366412e-09 6.727458242e-09 8.102562576e-09 6.543078882e-09 2.912530649e-09 3.717171608e-09 3.04302873e-09 7.868089822e-10 2.408467542e-09 4.698017402e-10 5.67883192e-10 2.145567938e-10 7.835393541e-12 4.779483043e-11 1.088862516e-12 2.228135797e-12 9.797484695e-15 4.268606866e-13 7.247700881e-16 5.386929738e-15 7.679277661e-17 4.720823327e-17 2.817186665e-18 0 5.704011616e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.633181623e-20 4.802429984e-15 1.558853026e-15 9.509775648e-16 2.231527974e-14 2.872847476e-13 2.282665573e-11 6.63012139e-11 4.232918061e-11 2.124998514e-10 5.880839851e-10 4.114751388e-10 1.484686194e-09 2.267953317e-09 1.358344241e-09 4.938640351e-09 1.560037071e-09 3.257830686e-09 4.844052344e-09 5.414498445e-09 6.932355604e-09 1.02463456e-08 9.17800249e-09 7.673464428e-09 8.716378032e-09 1.012607634e-08 1.297830973e-08 1.214248916e-08 1.362636717e-08 1.438346083e-08 1.285345026e-08 1.830495795e-08 1.833038356e-08 1.812041976e-08 1.949966294e-08 1.777087537e-08 2.030434334e-08 2.089977871e-08 2.640453126e-08 2.278551265e-08 2.066104438e-08 2.427247619e-08 2.808283704e-08 2.671424339e-08 2.981874544e-08 2.493578024e-08 1.860769447e-08 2.113705097e-08 1.748467056e-08 2.303648459e-08 3.070531702e-08 1.894850294e-08 2.376184463e-08 2.70883473e-08 2.7738177e-08 2.841287318e-08 1.660707638e-08 2.899443461e-08 2.213115833e-08 2.188938557e-08 1.563102782e-08 1.535557825e-08 2.080716315e-08 1.004943314e-08 1.071474635e-08 1.358922804e-08 1.393895571e-08 1.065162132e-08 8.971062643e-09 1.116346366e-08 1.855451092e-08 9.063785613e-09 1.120262891e-08 7.558765671e-09 9.280455351e-09 1.132760717e-08 8.788343681e-09 8.881451775e-09 9.509218492e-09 7.912118322e-09 7.103778437e-09 1.019432864e-08 9.972885743e-09 5.783847593e-09 9.507264338e-09 8.155750872e-09 6.533446911e-09 8.60990378e-09 9.097288739e-09 1.002355987e-08 8.768132947e-09 1.400171501e-08 8.66233736e-09 1.075869626e-08 1.262502489e-08 1.222425406e-08 8.026207145e-09 7.680211544e-09 1.008776965e-08 1.157508139e-08 1.279329408e-08 1.534737535e-08 1.039016464e-08 1.284462345e-08 2.25896451e-08 1.845822704e-08 2.314292181e-08 1.237363851e-08 2.575132652e-08 1.682488844e-08 1.828325197e-08 2.727116809e-08 2.623360503e-08 2.558047842e-08 3.031260833e-08 2.134794357e-08 2.651832052e-08 2.836519714e-08 3.011438417e-08 2.572445825e-08 2.112112884e-08 2.656571507e-08 2.54721047e-08 2.488478491e-08 2.688163553e-08 2.443298387e-08 2.000320873e-08 2.660462152e-08 2.585684032e-08 2.214545383e-08 1.95734842e-08 2.226386571e-08 1.96421094e-08 1.89108059e-08 1.606299657e-08 1.74964801e-08 1.237493399e-08 1.498128408e-08 1.265671061e-08 1.62808322e-08 9.332496344e-09 1.248042837e-08 1.135891377e-08 9.460344028e-09 1.144782648e-08 8.707724669e-09 6.945881759e-09 4.020092825e-09 6.310047639e-09 6.242328256e-09 4.70834045e-09 3.43479631e-09 2.174084104e-09 1.889008823e-09 1.42921585e-09 5.270225707e-10 2.804394066e-10 1.78158851e-10 2.153942212e-10 1.566407047e-10 5.854282847e-12 4.148029876e-11 1.535821544e-13 1.990573873e-13 1.084474772e-14 1.434663975e-14 6.911449794e-16 3.976418551e-17 6.099219051e-18 4.842232776e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 8.806550581e-11 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.632755587e-18 1.730427655e-18 8.558946906e-16 1.261759955e-15 1.519963149e-13 1.298274388e-13 2.363866142e-14 4.104459964e-12 2.728174137e-11 1.79170454e-10 2.399742175e-10 1.334310896e-10 7.317359611e-10 7.245680721e-10 7.542974325e-10 3.408522541e-09 3.308997882e-09 4.507823029e-09 4.455125488e-09 4.901495935e-09 5.899312775e-09 7.534335526e-09 8.295074485e-09 9.852139362e-09 1.102436324e-08 1.186699015e-08 1.016462462e-08 1.597705778e-08 1.567552209e-08 1.381089581e-08 1.385877465e-08 1.443469153e-08 1.326303485e-08 2.200900136e-08 2.000357179e-08 1.9552108e-08 2.017826803e-08 2.071513208e-08 2.268871998e-08 2.266359564e-08 2.578878813e-08 2.679125922e-08 2.638177899e-08 2.923031248e-08 2.730455218e-08 2.728693347e-08 2.236320815e-08 2.470517331e-08 2.187072929e-08 2.913146846e-08 2.750064068e-08 3.094102419e-08 2.50604486e-08 2.905291356e-08 3.002349476e-08 2.35724979e-08 2.749265252e-08 2.668600761e-08 2.383887225e-08 2.050538335e-08 2.320535722e-08 1.648382259e-08 1.339005705e-08 1.480972635e-08 9.938330323e-09 1.769957102e-08 1.52969782e-08 8.407782535e-09 1.865084197e-08 1.121213037e-08 9.055969253e-09 9.038296379e-09 1.004122479e-08 9.329429027e-09 9.833222434e-09 1.454531622e-08 8.454190729e-09 6.261111158e-09 7.45070359e-09 9.249765766e-09 7.369558363e-09 4.760862714e-09 1.090542481e-08 1.484260449e-08 8.222873054e-09 7.908199397e-09 1.263746832e-08 7.675153328e-09 7.009272616e-09 1.514129733e-08 1.306826581e-08 1.223992406e-08 5.004495611e-09 1.066281528e-08 1.123474503e-08 1.278212626e-08 1.294265445e-08 1.438569611e-08 6.189912253e-09 1.090300338e-08 1.520852233e-08 1.457656061e-08 1.505895033e-08 1.551980978e-08 2.041852167e-08 1.631155917e-08 1.643208206e-08 1.591115961e-08 2.030220827e-08 1.614823008e-08 1.658558026e-08 2.218324915e-08 2.383340748e-08 2.304186286e-08 2.89883995e-08 2.814532768e-08 2.41824353e-08 2.189543758e-08 2.55618128e-08 2.935788226e-08 2.245193584e-08 2.672494662e-08 3.117282661e-08 2.364983559e-08 2.273587519e-08 2.888971941e-08 3.178498848e-08 2.428519818e-08 2.409456644e-08 2.557986311e-08 2.113763455e-08 2.442237597e-08 1.93077227e-08 1.973876349e-08 2.039092984e-08 2.042384978e-08 1.95837175e-08 1.550187467e-08 1.755434326e-08 1.62698032e-08 1.511453253e-08 1.373493752e-08 1.316917641e-08 1.307866937e-08 1.26520497e-08 1.015189233e-08 5.933906757e-09 7.717521859e-09 1.052260831e-08 5.227590712e-09 5.108028636e-09 6.332434945e-09 3.977905359e-09 1.889175494e-09 3.043944601e-09 1.460055968e-09 7.905352971e-10 4.277413943e-10 4.363030196e-10 4.986650247e-10 3.836526603e-10 3.423665233e-11 6.211571599e-12 2.839457671e-13 2.22995286e-13 2.484119982e-14 2.603138649e-15 9.03485716e-16 2.369072668e-17 1.210674601e-18 2.329920993e-18 0 0 0 0 0 0 0 0 7.809620173e-11 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.740121518e-17 2.947576198e-18 4.279108573e-17 1.00999428e-17 2.472767329e-15 7.169019202e-14 2.079701534e-14 5.638566615e-13 1.683623242e-11 4.694079704e-11 2.082425805e-10 2.611303038e-10 8.247854122e-10 8.010171218e-10 2.180122383e-10 1.135352459e-09 3.260497131e-09 2.995344152e-09 4.535972474e-09 4.627684964e-09 4.705739693e-09 4.17295245e-09 7.142512278e-09 9.087514446e-09 6.844390227e-09 9.407737211e-09 9.004358982e-09 1.410682185e-08 8.880963662e-09 1.650045537e-08 1.451769924e-08 9.4654095e-09 1.599767483e-08 1.903189134e-08 1.929374756e-08 1.564537454e-08 1.852421123e-08 1.98105725e-08 2.924159408e-08 2.266446392e-08 2.277645193e-08 2.773823641e-08 2.645393926e-08 2.534724911e-08 2.292359395e-08 3.109954279e-08 2.199430845e-08 2.625756827e-08 2.590171047e-08 2.448447536e-08 3.542271409e-08 1.958216957e-08 3.287123949e-08 2.993967247e-08 3.117946073e-08 2.74475967e-08 2.057155301e-08 1.795641777e-08 2.592853634e-08 1.838481882e-08 2.620253678e-08 1.930832549e-08 1.657978931e-08 1.772346341e-08 1.712756284e-08 1.845098439e-08 1.287363389e-08 1.395228963e-08 7.129242242e-09 7.925114556e-09 1.281827067e-08 1.422140257e-08 9.937798999e-09 9.297647938e-09 9.026765332e-09 1.404907223e-08 8.764975309e-09 1.420320222e-08 8.402314155e-09 1.299806178e-08 9.269701383e-09 7.943631477e-09 9.752517087e-09 1.197951078e-08 1.321904617e-08 8.88802058e-09 1.574803409e-08 1.195305505e-08 1.082800945e-08 1.254733948e-08 6.776314179e-09 5.221218114e-09 1.590526003e-08 1.397804732e-08 1.616367065e-08 1.251392303e-08 1.040374839e-08 7.404419363e-09 6.06481571e-09 1.218918632e-08 9.927542583e-09 1.077914067e-08 1.780862975e-08 7.989591536e-09 1.124250253e-08 2.535936595e-08 3.276867165e-08 1.955468341e-08 1.795227166e-08 2.338636964e-08 2.128868811e-08 2.506696368e-08 2.735910744e-08 2.370161155e-08 2.44770516e-08 2.749576295e-08 2.611907496e-08 2.726406858e-08 2.840488644e-08 2.847964237e-08 2.397876305e-08 2.667719364e-08 2.961023698e-08 3.408678291e-08 2.816799248e-08 3.367134373e-08 2.393377103e-08 2.711596405e-08 2.924747747e-08 2.509743347e-08 1.741695681e-08 2.070194137e-08 2.340148794e-08 2.11789421e-08 1.727978542e-08 1.405516844e-08 2.019512312e-08 1.710016333e-08 2.064336931e-08 1.747174113e-08 1.657508514e-08 1.489598683e-08 1.484693895e-08 1.22459173e-08 1.466356035e-08 9.669884561e-09 7.824404271e-09 9.921853853e-09 9.438323132e-09 8.763822783e-09 9.498739263e-09 5.617998295e-09 6.273750527e-09 3.976783868e-09 2.842926183e-09 3.478160141e-09 1.684343065e-09 8.362989679e-10 4.753259387e-10 1.638756182e-10 4.855357806e-10 1.779823366e-10 1.060074233e-10 3.772795296e-14 6.136584099e-13 2.734683586e-13 1.745085998e-14 9.813302413e-15 2.553623105e-17 2.453456362e-17 1.570947969e-18 3.531333061e-22 0 0 0 0 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.983505338e-18 2.469689563e-21 7.901629632e-18 4.727106258e-17 4.005178647e-16 1.519630664e-14 9.555529181e-14 3.403131322e-12 8.546505585e-12 6.065837962e-11 1.916819887e-10 3.402230414e-10 5.358379184e-10 2.82845542e-10 1.707471245e-09 2.143346821e-09 2.583408698e-09 3.696311767e-09 5.134633326e-09 3.685138731e-09 3.645191746e-09 4.179317001e-09 6.073000611e-09 1.004162479e-08 7.477144527e-09 7.269898022e-09 1.184654859e-08 1.083391888e-08 1.238969622e-08 1.241166408e-08 1.713408684e-08 1.578200041e-08 2.018851526e-08 1.845395852e-08 2.239200942e-08 1.808126099e-08 2.10874391e-08 2.403140205e-08 1.870254652e-08 2.22457018e-08 2.312030784e-08 2.617888123e-08 2.52434927e-08 2.572135753e-08 2.957910219e-08 2.87913384e-08 2.809303583e-08 2.838059507e-08 3.095575011e-08 2.646267463e-08 2.278895175e-08 3.512401803e-08 3.538400874e-08 2.662175399e-08 2.234611664e-08 2.953853801e-08 2.989512856e-08 3.006368568e-08 2.377900273e-08 2.483998352e-08 2.093518796e-08 2.49896262e-08 2.397314726e-08 1.841977415e-08 1.469382128e-08 1.568556817e-08 1.590187212e-08 1.846968992e-08 1.761123967e-08 1.029031295e-08 1.574953228e-08 1.060674739e-08 1.652739891e-08 1.129264926e-08 9.086902813e-09 1.324974141e-08 1.352232575e-08 9.147113088e-09 1.378931079e-08 1.219839851e-08 9.459812027e-09 1.220949974e-08 8.598319635e-09 1.292248308e-08 8.293027654e-09 1.433561883e-08 9.633821793e-09 8.03183556e-09 1.012061263e-08 1.378329834e-08 7.104508649e-09 7.871473763e-09 1.084844439e-08 8.485569242e-09 9.984169688e-09 1.340412955e-08 1.189474889e-08 1.418815974e-08 1.630333936e-08 1.47279046e-08 2.120447224e-08 1.225633048e-08 1.120465436e-08 1.909988485e-08 1.416749323e-08 1.738190005e-08 2.017242108e-08 2.085156482e-08 1.887246446e-08 1.477599447e-08 2.279602998e-08 2.783705833e-08 2.568878094e-08 2.539945919e-08 3.250398673e-08 2.958773944e-08 3.280292757e-08 2.640376044e-08 2.246452666e-08 3.012933889e-08 2.655401402e-08 2.593001653e-08 2.771129385e-08 2.84883335e-08 2.676663597e-08 3.210043784e-08 2.397598423e-08 2.651587936e-08 2.715642587e-08 2.538585128e-08 2.608642911e-08 2.361542194e-08 2.138976397e-08 2.202826355e-08 2.083542114e-08 2.504501492e-08 1.737749452e-08 1.868943425e-08 1.764611655e-08 1.887934797e-08 1.880886257e-08 1.543316978e-08 1.053768736e-08 1.420327501e-08 1.014872616e-08 7.498730653e-09 1.14568152e-08 7.79357232e-09 1.02404966e-08 8.081149412e-09 8.048036969e-09 6.559581124e-09 5.197387496e-09 3.302008766e-09 2.414500136e-09 3.78536995e-09 9.670298466e-10 8.432829236e-10 2.860396925e-10 5.499921128e-10 7.253432413e-11 2.454372307e-10 3.127819042e-13 1.820223704e-11 3.446311318e-12 3.22663992e-13 1.757358935e-12 4.575719119e-16 5.631787696e-17 1.441989033e-16 3.282266821e-19 7.858230716e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.201609159e-17 1.669498042e-17 1.059997291e-15 1.79160622e-15 2.607437377e-14 4.207352527e-13 1.772178297e-12 2.775775227e-12 6.8231658e-11 5.119786222e-11 4.76907355e-10 5.222605179e-10 4.998147859e-10 7.257121808e-10 2.618616035e-09 2.342541482e-09 4.783659403e-09 5.839234011e-09 6.205966942e-09 5.737419587e-09 4.685283569e-09 9.667207346e-09 7.86190072e-09 1.199074657e-08 1.307537458e-08 1.069931093e-08 1.019527916e-08 1.271245554e-08 1.545365048e-08 1.467021846e-08 1.868907077e-08 1.521958209e-08 1.991780878e-08 1.961887641e-08 2.209302609e-08 2.473859073e-08 2.52490823e-08 2.569520101e-08 1.881343643e-08 2.641153456e-08 2.217364918e-08 3.113163686e-08 2.363590348e-08 2.231550824e-08 2.964385085e-08 2.739375972e-08 2.955814472e-08 2.269602692e-08 3.15715912e-08 2.580414893e-08 3.066046463e-08 3.03207478e-08 2.959530793e-08 2.290788604e-08 2.641341396e-08 4.162821182e-08 3.132800418e-08 2.665593948e-08 2.321195207e-08 1.883674564e-08 2.239193536e-08 1.887201514e-08 2.240628833e-08 1.489128245e-08 1.42374622e-08 1.825897895e-08 1.368634335e-08 6.500130213e-09 1.330368724e-08 1.572536966e-08 1.670703522e-08 1.237180945e-08 1.525983587e-08 7.18493951e-09 9.520103397e-09 1.070695076e-08 9.504672285e-09 1.254782208e-08 1.724384255e-08 1.211793364e-08 1.134654869e-08 8.670754087e-09 8.83133389e-09 1.363552488e-08 1.067528152e-08 1.065246021e-08 1.014810932e-08 9.482466252e-09 1.375825176e-08 8.782641546e-09 1.073239389e-08 1.451386925e-08 1.194247617e-08 5.465402973e-09 1.518967341e-08 1.326474061e-08 8.304938694e-09 1.678903778e-08 1.491849576e-08 1.298732639e-08 1.191464825e-08 1.570329954e-08 1.236311409e-08 2.21406916e-08 1.684312618e-08 2.520595695e-08 2.171679362e-08 1.637166378e-08 2.157533356e-08 2.649766217e-08 1.823096844e-08 2.818809271e-08 3.626347482e-08 2.72500152e-08 1.939255821e-08 3.193840391e-08 2.899109365e-08 2.518368315e-08 2.751082702e-08 3.036589743e-08 3.0728788e-08 2.490183416e-08 3.027508235e-08 3.052686715e-08 2.873158487e-08 2.660342379e-08 2.885200233e-08 2.453669482e-08 2.571621909e-08 2.831362035e-08 2.732277276e-08 2.747812019e-08 2.527836781e-08 1.965246653e-08 2.107398313e-08 2.257228979e-08 2.156786382e-08 1.645779122e-08 1.787080959e-08 1.877584854e-08 1.235566011e-08 1.715789241e-08 1.27627367e-08 1.093944347e-08 1.039024657e-08 1.061302482e-08 1.255688699e-08 9.404104093e-09 7.331085671e-09 7.950682258e-09 7.161688894e-09 4.214893449e-09 5.463073881e-09 3.514142036e-09 1.676363684e-09 1.725979378e-09 8.032441423e-10 1.536433751e-10 2.048692459e-10 4.696701456e-10 1.310557855e-10 4.266323581e-11 1.676140145e-11 1.926275705e-13 1.312828963e-13 3.049653163e-16 9.394214087e-16 1.860240606e-15 2.597915166e-17 6.701128933e-17 1.948663422e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.436207229e-19 3.163658535e-18 7.207048398e-18 1.260268123e-16 6.950045987e-17 4.411944748e-16 8.559579371e-14 2.654670471e-14 1.173879451e-10 5.032543662e-12 6.869992962e-11 1.009576445e-10 1.717066435e-10 3.637554383e-10 1.230449416e-10 9.246400846e-10 2.216001967e-09 3.444119873e-09 3.545514778e-09 5.962287446e-09 4.680345228e-09 6.841962195e-09 6.816446678e-09 6.185857578e-09 8.730018751e-09 1.074294919e-08 1.11876142e-08 1.063389679e-08 9.783482909e-09 1.458748551e-08 1.571231368e-08 1.327895807e-08 1.413521385e-08 1.743979236e-08 1.984114938e-08 2.108034946e-08 1.872406872e-08 2.348631736e-08 2.463765057e-08 2.981255923e-08 2.380751713e-08 2.988459378e-08 2.85196837e-08 2.571589517e-08 2.997812599e-08 2.783698783e-08 3.186414291e-08 2.879344889e-08 3.088766311e-08 2.883813163e-08 2.960720203e-08 2.42750426e-08 2.4487297e-08 2.677668087e-08 3.513063451e-08 3.352981403e-08 2.452554821e-08 2.92224092e-08 2.520989239e-08 2.814575447e-08 2.616886675e-08 2.068137084e-08 2.328748183e-08 1.796526016e-08 2.251121334e-08 1.529821697e-08 1.307641021e-08 2.261207299e-08 1.045082262e-08 9.574973906e-09 1.891797039e-08 1.320891436e-08 1.115774855e-08 1.151462343e-08 9.554421153e-09 1.282839938e-08 1.213916255e-08 1.281440567e-08 1.310508323e-08 1.415898688e-08 1.117064235e-08 1.00188962e-08 8.781083084e-09 1.349898229e-08 9.449300251e-09 1.327762657e-08 8.958599635e-09 1.153748743e-08 1.05143199e-08 1.070878889e-08 1.113601094e-08 1.312782879e-08 9.127680566e-09 7.033995496e-09 1.623977003e-08 1.034832592e-08 7.672409372e-09 1.001845625e-08 1.333155534e-08 1.296385231e-08 1.009777401e-08 1.425214305e-08 1.85674358e-08 1.476085474e-08 1.311350911e-08 1.961029675e-08 1.425839098e-08 1.826674125e-08 2.251097216e-08 1.936722456e-08 1.971708876e-08 2.950391087e-08 2.324026946e-08 2.500261904e-08 1.494828199e-08 2.269231795e-08 2.823372887e-08 3.01609258e-08 2.520113948e-08 3.188479058e-08 2.421997486e-08 2.718911117e-08 3.191244741e-08 3.057514032e-08 3.191499757e-08 2.87029693e-08 2.869807936e-08 2.55605874e-08 2.942371948e-08 2.753718754e-08 2.83515468e-08 2.81641074e-08 2.753632925e-08 2.583897209e-08 2.40084757e-08 2.599109325e-08 1.989208942e-08 2.412170401e-08 1.95199947e-08 2.042428008e-08 1.805148889e-08 1.794007788e-08 2.004822691e-08 1.842947393e-08 1.070480715e-08 1.085114335e-08 1.152872343e-08 1.310364159e-08 1.04963037e-08 1.021496425e-08 6.18473433e-09 7.410215741e-09 5.012520328e-09 4.206556945e-09 6.087970019e-09 2.753912372e-09 1.198408991e-09 2.324405092e-09 5.024344123e-10 2.840431797e-10 3.982150073e-10 5.548027778e-10 3.932236926e-11 7.273041353e-12 1.36022121e-11 1.125645735e-13 1.769497346e-14 2.481848909e-14 2.287516735e-15 3.251603326e-23 5.505382142e-17 0 0 0 4.501460116e-19 0 0 0 0 0 0 0 9.837076548e-11 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.241767896e-24 6.883590194e-19 1.767978821e-16 1.713833294e-16 4.996278091e-15 4.319160657e-14 1.342144311e-15 7.401351088e-14 2.524783819e-11 2.196550431e-10 1.934257718e-12 1.294138287e-10 4.646293822e-10 6.699233257e-10 1.026532697e-09 1.619482783e-09 3.812532991e-09 3.817752084e-09 3.526966024e-09 4.214739516e-09 6.666202633e-09 1.0668481e-08 8.791304527e-09 1.12230294e-08 1.1156618e-08 1.287734739e-08 1.234765223e-08 1.487715474e-08 1.550316762e-08 1.808132678e-08 1.573955072e-08 1.6910862e-08 1.974400517e-08 1.58614623e-08 1.873578445e-08 1.953592236e-08 2.697141541e-08 2.534940783e-08 2.503232574e-08 2.005164882e-08 2.582419247e-08 2.621426898e-08 3.045945004e-08 2.539511814e-08 2.881313285e-08 2.755092169e-08 3.217835702e-08 3.368849769e-08 3.276965936e-08 2.462193398e-08 2.584329977e-08 3.567004277e-08 2.724940783e-08 2.480764613e-08 3.111251071e-08 3.111327952e-08 3.228175526e-08 3.063065546e-08 2.60675022e-08 2.505998566e-08 2.882565426e-08 1.670856668e-08 2.159798106e-08 2.157650422e-08 2.053243286e-08 2.00072268e-08 1.885618179e-08 1.263535244e-08 1.289019693e-08 1.56784454e-08 1.38872511e-08 1.567510589e-08 1.344348489e-08 1.269041439e-08 1.630703824e-08 1.193105167e-08 1.083258905e-08 1.060894695e-08 8.217069385e-09 1.604209091e-08 1.553760808e-08 1.00179907e-08 1.142687078e-08 1.376155799e-08 8.838792843e-09 8.018583834e-09 1.103472078e-08 1.315428141e-08 1.232681971e-08 1.320383043e-08 1.276228282e-08 1.179099425e-08 1.027943565e-08 1.03276622e-08 9.25554226e-09 1.053818719e-08 6.771010221e-09 7.555526844e-09 1.08607387e-08 6.964956279e-09 1.33739685e-08 1.508009785e-08 1.43656656e-08 1.68661759e-08 1.595332135e-08 2.212076294e-08 1.868944709e-08 1.438548389e-08 1.445300594e-08 2.5105888e-08 2.64462945e-08 1.954151724e-08 2.767022971e-08 1.854323109e-08 2.797335274e-08 3.081359212e-08 3.543344714e-08 2.520824491e-08 2.484972979e-08 3.383900101e-08 3.741742935e-08 3.300663549e-08 2.918067869e-08 3.201304688e-08 3.075645456e-08 3.178364426e-08 2.587293975e-08 3.083695747e-08 3.52947775e-08 2.843128306e-08 2.989277684e-08 2.535241102e-08 2.378936981e-08 2.237460998e-08 2.153936603e-08 2.335184662e-08 2.148319629e-08 1.849532481e-08 1.573525955e-08 1.871731682e-08 1.657199145e-08 1.831266238e-08 1.667980114e-08 1.377049805e-08 1.248283205e-08 1.097787742e-08 8.485474671e-09 1.066584644e-08 1.208559694e-08 1.156988926e-08 6.761298909e-09 7.202914352e-09 5.381491746e-09 3.885119127e-09 3.630287947e-09 3.656111937e-09 1.272234306e-09 7.163226581e-10 4.568752958e-10 4.296437226e-10 3.605534594e-10 2.434567579e-10 9.096137772e-12 3.625881336e-11 4.523334129e-12 6.200897398e-14 7.684166063e-14 2.925004143e-15 1.156563084e-16 1.29378843e-17 3.899151803e-18 1.520056655e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.569841305e-17 3.350018457e-20 5.026165396e-17 2.990739638e-16 7.490897695e-16 5.585115586e-15 1.285803303e-14 3.05137654e-12 8.721726615e-13 1.9494211e-12 3.198881828e-12 1.385664205e-10 4.569217612e-10 7.562597764e-10 1.205393065e-09 2.405660947e-09 3.520623488e-09 6.094252845e-09 5.625809041e-09 7.058291769e-09 5.915349479e-09 8.280832636e-09 9.668726451e-09 8.97792647e-09 1.361531495e-08 1.108136918e-08 1.370422529e-08 1.528002183e-08 1.527491953e-08 1.860489455e-08 2.046703163e-08 2.030001309e-08 1.420626736e-08 2.131714185e-08 1.685233817e-08 2.216820119e-08 1.980591708e-08 2.596951267e-08 2.081790532e-08 2.608072338e-08 2.84988438e-08 2.901875816e-08 2.865526204e-08 3.319776564e-08 2.734349971e-08 3.795557755e-08 3.312170728e-08 3.830750893e-08 3.771514108e-08 3.554171764e-08 3.24553004e-08 2.622368785e-08 2.814072584e-08 3.033117607e-08 3.270167095e-08 3.491411632e-08 3.459358884e-08 3.076939629e-08 3.263441878e-08 2.420256533e-08 2.874626895e-08 4.070015804e-08 1.81491626e-08 1.906018999e-08 1.925524234e-08 2.075480869e-08 2.035620581e-08 1.907481153e-08 1.817194928e-08 1.720436287e-08 1.620530333e-08 9.746498559e-09 1.008798845e-08 1.309270168e-08 9.957629444e-09 1.328142493e-08 1.183153267e-08 9.810553986e-09 1.339495302e-08 1.182148657e-08 1.369100053e-08 1.513394242e-08 9.084071648e-09 1.401899137e-08 1.191952362e-08 1.231071818e-08 1.297200133e-08 1.052060135e-08 9.525173379e-09 9.417446477e-09 1.295707153e-08 8.967374777e-09 1.221775507e-08 1.629401861e-08 9.956131032e-09 1.44966873e-08 1.261871644e-08 7.090457234e-09 1.535135913e-08 1.067405367e-08 1.187638134e-08 1.123431049e-08 1.698688804e-08 2.437124418e-08 1.130102546e-08 2.242569394e-08 1.921803195e-08 1.297135587e-08 3.170731974e-08 2.822924997e-08 2.371467866e-08 2.502687976e-08 3.146050957e-08 3.058945039e-08 2.549664465e-08 2.867712078e-08 2.809912262e-08 2.965541182e-08 2.785754588e-08 3.258291511e-08 3.432265118e-08 3.719268681e-08 2.771087484e-08 3.391943493e-08 2.910393413e-08 3.196594213e-08 3.031961487e-08 2.983391028e-08 3.25068034e-08 2.785516132e-08 2.529785457e-08 2.606954435e-08 2.427580239e-08 2.113368759e-08 2.199423457e-08 2.944429281e-08 2.482411676e-08 1.810529206e-08 1.874853218e-08 2.161404855e-08 1.883880913e-08 1.930398071e-08 1.005798716e-08 1.741227144e-08 1.309575136e-08 1.053923006e-08 9.950612006e-09 9.174367401e-09 8.142135539e-09 7.879620205e-09 6.396267925e-09 6.551208175e-09 7.460645168e-09 4.27049133e-09 3.43423981e-09 2.89303381e-09 2.39346763e-09 2.175965434e-10 9.166962802e-10 3.327566895e-10 4.476935287e-10 3.496640144e-10 3.291094189e-11 1.979405923e-11 3.050622551e-12 8.473996655e-14 6.95361825e-15 1.878583797e-14 2.504313509e-17 1.622567442e-17 3.770442891e-18 2.597627547e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 2.174437605e-19 0 0 0 0 1.060786446e-18 1.798936725e-17 3.204997778e-17 6.515056423e-16 4.150433217e-16 1.371597983e-15 4.261734098e-14 1.628278962e-12 2.422989597e-11 1.381816341e-12 2.145852092e-10 1.86316192e-10 5.378240787e-10 4.860528361e-10 8.089712329e-10 1.205744148e-09 3.581175785e-09 5.291324559e-09 3.359475361e-09 5.891695694e-09 8.792085931e-09 7.019682587e-09 1.106886056e-08 7.989399434e-09 1.09968932e-08 1.348416872e-08 1.399189517e-08 1.287738952e-08 1.584728654e-08 1.671349636e-08 1.577134688e-08 1.943152517e-08 2.171440801e-08 1.422918861e-08 2.520718938e-08 2.447789652e-08 2.011686494e-08 2.310475103e-08 2.737852169e-08 3.037679106e-08 2.772099213e-08 3.206250329e-08 3.116287655e-08 3.337242098e-08 3.463722833e-08 3.574427339e-08 3.190905448e-08 3.475016136e-08 3.455646053e-08 4.332363579e-08 3.614010355e-08 2.859181313e-08 3.017939832e-08 4.567308373e-08 3.19092234e-08 3.343677077e-08 2.811719489e-08 3.41570906e-08 3.359886475e-08 3.160481459e-08 2.646011494e-08 1.843092611e-08 2.071298397e-08 2.753181675e-08 2.567991605e-08 1.371013907e-08 1.416024991e-08 2.263246726e-08 2.474135284e-08 1.858643155e-08 8.113477895e-09 1.531162895e-08 1.128009744e-08 1.549801087e-08 1.163607381e-08 9.92350308e-09 1.652871175e-08 1.233087127e-08 1.571825433e-08 1.221840125e-08 1.41655813e-08 9.688442319e-09 1.473215097e-08 1.391983334e-08 1.143557911e-08 1.087457815e-08 1.10911157e-08 1.151471162e-08 1.412803503e-08 1.535659699e-08 1.070725763e-08 1.324909267e-08 1.188382115e-08 9.989069731e-09 1.246437973e-08 1.645011729e-08 1.176411097e-08 1.768488633e-08 7.150359436e-09 1.268833155e-08 1.169939617e-08 1.001011394e-08 8.9795507e-09 1.728570761e-08 2.007159613e-08 1.131730625e-08 2.338105843e-08 2.408626603e-08 2.001289011e-08 2.668818621e-08 2.202652723e-08 2.971478132e-08 3.124618185e-08 4.322527883e-08 3.387724814e-08 3.582358973e-08 3.679075222e-08 2.400989856e-08 2.480765057e-08 3.130090031e-08 2.980880368e-08 3.767135807e-08 2.939778248e-08 3.25839017e-08 3.073431351e-08 3.022827992e-08 2.769063266e-08 3.315793447e-08 2.91762427e-08 3.896321415e-08 2.495290621e-08 3.0702129e-08 2.841655587e-08 2.572655405e-08 2.872387846e-08 2.513181019e-08 2.040534454e-08 2.037899654e-08 2.303165188e-08 2.111723549e-08 1.740540879e-08 1.585115838e-08 1.624877532e-08 1.536013164e-08 1.552569379e-08 1.29546709e-08 1.382026392e-08 1.188634538e-08 1.153894657e-08 9.74855523e-09 8.492596607e-09 8.35292935e-09 7.216572564e-09 4.662352876e-09 1.324247777e-09 3.0229695e-09 2.540542827e-09 1.889427876e-09 1.012826123e-09 2.633816916e-10 3.80341179e-10 1.090139169e-10 6.236939072e-11 1.048174645e-11 1.241400917e-12 1.562762864e-12 1.725955569e-14 9.310437711e-15 6.737117273e-17 3.785640718e-18 2.507855466e-18 3.196865286e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.970715951e-21 4.469540096e-19 4.162977053e-18 5.918846544e-17 7.003709567e-16 4.027175427e-15 2.165664043e-14 1.692326027e-13 1.320498747e-13 3.771552725e-12 2.164995648e-11 8.998769094e-11 1.216568076e-10 3.72883772e-10 7.503247833e-10 1.112010928e-09 2.827081702e-09 2.155327394e-09 4.270403018e-09 6.394125954e-09 5.849887315e-09 5.587748938e-09 7.898834999e-09 1.024755569e-08 1.297739737e-08 1.007507477e-08 1.175453257e-08 9.263004333e-09 1.623704101e-08 1.87946306e-08 1.254606801e-08 1.642241841e-08 2.313854018e-08 2.60481193e-08 2.571895128e-08 2.325814271e-08 2.425443715e-08 2.27021271e-08 2.794741784e-08 2.649098106e-08 2.427896174e-08 2.655180732e-08 3.003910259e-08 3.255733873e-08 3.532051324e-08 2.737685984e-08 3.739205145e-08 3.968705867e-08 3.784960781e-08 3.471662285e-08 3.231639523e-08 3.545079409e-08 3.341015173e-08 3.981625534e-08 3.633732789e-08 2.300670516e-08 3.398640876e-08 3.540977084e-08 2.863260586e-08 2.443436706e-08 3.60433357e-08 2.939616991e-08 2.737511726e-08 2.186294442e-08 2.579499946e-08 2.586312385e-08 1.710980805e-08 1.599918642e-08 2.160930361e-08 2.43700124e-08 1.605133279e-08 1.270345908e-08 1.579212382e-08 1.533921276e-08 1.362460087e-08 1.302845804e-08 1.237003103e-08 1.001306361e-08 9.131749884e-09 1.375728852e-08 1.208106603e-08 1.178153265e-08 1.517437849e-08 1.057812008e-08 1.210455209e-08 1.018849181e-08 1.833518926e-08 1.223869199e-08 9.250552213e-09 6.73491001e-09 1.58677172e-08 1.055701682e-08 1.039266648e-08 9.767931288e-09 9.281527409e-09 1.492582383e-08 1.247501733e-08 1.121078707e-08 1.164348628e-08 2.332824977e-08 1.725471797e-08 1.313526309e-08 1.383964389e-08 1.351384421e-08 1.338630475e-08 2.255527471e-08 2.262907827e-08 1.79895462e-08 1.658204365e-08 2.403262544e-08 2.934296975e-08 2.775863756e-08 2.781613251e-08 3.131870974e-08 3.141948841e-08 2.853533439e-08 3.744159182e-08 3.610091489e-08 2.758373797e-08 3.048160226e-08 3.436199977e-08 2.894566547e-08 2.889660152e-08 4.097178421e-08 3.22490366e-08 3.38999206e-08 3.897997781e-08 3.04927911e-08 3.344925218e-08 3.05274808e-08 2.928159349e-08 3.29807245e-08 2.590424059e-08 2.875915532e-08 2.379438748e-08 2.560342182e-08 2.150973093e-08 2.132676726e-08 2.658250666e-08 2.397374517e-08 2.252765914e-08 1.867580739e-08 1.865745649e-08 1.743599415e-08 1.396592635e-08 1.299415759e-08 1.393027238e-08 9.011512651e-09 9.409030523e-09 7.717096167e-09 1.029496203e-08 6.427662834e-09 7.740320524e-09 4.574460373e-09 4.940864749e-09 3.364354996e-09 3.495710773e-09 2.341232651e-09 1.067562385e-09 6.37828775e-10 2.782772077e-10 2.962305761e-10 5.62449506e-11 1.535936893e-10 1.725971496e-12 1.644053029e-12 1.623285093e-13 7.189192906e-15 8.136204488e-16 2.253356752e-16 4.020828851e-16 3.527545268e-18 2.297781635e-18 4.991235939e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.346755711e-18 9.089274946e-19 2.313676316e-17 5.539476171e-16 2.014058005e-15 2.137143071e-15 4.193627528e-14 5.601811007e-13 8.872981838e-12 1.691466326e-10 1.714971381e-10 4.057327153e-10 3.812732872e-10 7.819156907e-10 1.843388287e-09 2.507124815e-09 2.950944005e-09 4.234129742e-09 4.26966199e-09 6.297779659e-09 7.339664656e-09 1.106703589e-08 1.019628339e-08 1.089337322e-08 1.171332247e-08 9.997795684e-09 1.079203441e-08 1.768474416e-08 1.237230975e-08 1.599000048e-08 1.701763303e-08 2.491381416e-08 1.937260471e-08 2.060386912e-08 2.1191721e-08 2.137830723e-08 2.426579619e-08 2.834050746e-08 2.74831731e-08 3.047872259e-08 2.988278786e-08 2.883044379e-08 3.650102561e-08 3.242804081e-08 3.659721591e-08 3.338252562e-08 4.172757727e-08 2.939173029e-08 4.326229293e-08 3.509354985e-08 3.042401485e-08 3.644389212e-08 3.76605699e-08 4.128532412e-08 3.683082939e-08 3.454920823e-08 2.368825145e-08 3.964754696e-08 3.499989156e-08 3.119770908e-08 2.324720833e-08 2.896921042e-08 3.121957459e-08 1.545252376e-08 2.496606074e-08 1.802633849e-08 2.130991412e-08 2.081430973e-08 1.338555189e-08 1.316897574e-08 1.559212716e-08 1.480494317e-08 1.774478197e-08 1.089642483e-08 1.188138487e-08 1.801456912e-08 1.083573358e-08 1.094183588e-08 1.36781094e-08 1.658086054e-08 1.949185651e-08 1.901732989e-08 1.314250342e-08 1.031879574e-08 1.169012389e-08 1.308095473e-08 1.395860958e-08 1.55087419e-08 1.331373682e-08 1.129577849e-08 1.525778632e-08 1.406247189e-08 8.602521323e-09 1.130002013e-08 7.01316085e-09 1.20627144e-08 2.053235418e-08 1.091680402e-08 2.291655566e-08 1.273507146e-08 1.064511569e-08 1.296902248e-08 1.372618676e-08 1.212342848e-08 1.895263108e-08 1.774390656e-08 2.362166122e-08 2.45438737e-08 2.5134639e-08 3.476519298e-08 2.999981551e-08 2.76260399e-08 3.611702376e-08 3.518031788e-08 3.537369036e-08 3.783946235e-08 3.406664849e-08 3.060359184e-08 3.808450277e-08 3.443904406e-08 2.843491978e-08 3.246302265e-08 3.073690812e-08 3.200805352e-08 3.001828198e-08 3.653724618e-08 3.950058309e-08 3.368015666e-08 3.786884946e-08 2.942251241e-08 2.493667059e-08 3.402453476e-08 2.737009424e-08 2.620587753e-08 2.216082919e-08 2.562262411e-08 2.108898134e-08 2.293086471e-08 2.096656466e-08 1.951063344e-08 1.838908494e-08 1.964212869e-08 1.709214744e-08 1.773288895e-08 1.340749689e-08 1.392781716e-08 1.362913023e-08 1.141296546e-08 8.667969434e-09 8.825095411e-09 9.204928818e-09 4.607638413e-09 7.221912955e-09 6.274400022e-09 3.774253653e-09 4.092718889e-09 3.785284004e-09 1.933383693e-09 4.909735269e-10 6.706153608e-10 2.90411042e-10 1.377965465e-10 1.799281523e-10 1.484608294e-12 1.453680065e-12 2.157406577e-13 6.815258005e-14 1.897446404e-15 4.276613564e-16 5.128806437e-16 8.716852561e-19 2.518259693e-18 0 0 0 0 0 0 0 0 0 5.191240241e-18 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.014514269e-18 2.026157018e-19 2.371044413e-23 3.079315881e-17 2.089680832e-16 1.793109973e-16 5.676210635e-15 1.045174947e-14 5.707907944e-13 6.863359172e-12 2.414106267e-11 1.007851618e-10 6.825332382e-10 2.778106814e-10 5.783292025e-10 7.071816343e-10 2.852944816e-09 2.3701329e-09 2.943060713e-09 5.636306838e-09 6.20811155e-09 9.219158678e-09 7.130647573e-09 1.061853854e-08 8.297997724e-09 1.285455033e-08 1.306871435e-08 1.36512548e-08 1.530873886e-08 1.63638254e-08 1.661307357e-08 2.121169145e-08 1.867764393e-08 1.916940275e-08 1.911485171e-08 1.960600285e-08 3.199835315e-08 2.605350221e-08 2.821506683e-08 3.139666795e-08 2.849056377e-08 3.860914002e-08 3.203990122e-08 3.543372376e-08 2.757808439e-08 3.481114351e-08 3.659517129e-08 3.467459846e-08 3.999645601e-08 3.156126536e-08 3.966497589e-08 2.905469256e-08 3.675304117e-08 2.900051426e-08 3.707572672e-08 2.830113525e-08 3.233871526e-08 3.563407114e-08 3.133610594e-08 2.652096258e-08 2.953609246e-08 2.732532387e-08 2.68009481e-08 2.676402229e-08 2.652625602e-08 2.518075994e-08 1.490424966e-08 1.650150743e-08 1.538380525e-08 1.756234361e-08 2.088700814e-08 1.163231295e-08 2.37082407e-08 1.160646329e-08 1.879258363e-08 1.008922015e-08 1.442358181e-08 1.738087351e-08 1.497502707e-08 1.615867343e-08 1.189112323e-08 1.381540678e-08 1.217178361e-08 1.217686049e-08 1.08402943e-08 1.339244738e-08 1.519473828e-08 9.3360738e-09 7.652469228e-09 7.687365483e-09 1.132521927e-08 1.238898483e-08 1.003952839e-08 9.889725371e-09 1.561316952e-08 1.713888003e-08 1.794364029e-08 1.287853801e-08 1.53258594e-08 1.865573074e-08 1.58459731e-08 1.325319312e-08 1.736088716e-08 1.465836448e-08 1.986313783e-08 1.354311924e-08 1.965322152e-08 2.811963777e-08 2.731727688e-08 2.804138118e-08 2.83497354e-08 3.070829729e-08 3.666393228e-08 3.783676285e-08 2.976994882e-08 3.596039078e-08 3.4197256e-08 3.346852253e-08 3.497083421e-08 4.573497914e-08 4.235158131e-08 3.329937225e-08 3.838074339e-08 3.165609385e-08 3.79263399e-08 3.785949846e-08 3.72299972e-08 3.548882977e-08 3.727887325e-08 3.067413922e-08 3.069185387e-08 3.081647873e-08 3.354220014e-08 3.218797174e-08 2.909692503e-08 2.611129063e-08 2.66341351e-08 2.192292404e-08 2.505842557e-08 2.420044311e-08 2.301661869e-08 1.759537737e-08 1.828687413e-08 2.052791782e-08 1.428693601e-08 1.67252911e-08 1.709952248e-08 1.373015546e-08 1.153696062e-08 8.94277556e-09 1.173536539e-08 7.518904323e-09 6.740882879e-09 5.891167157e-09 5.01807817e-09 2.607262379e-09 3.076150234e-09 1.522283154e-09 1.196618291e-09 9.637056674e-11 2.975415821e-10 7.162975896e-11 1.89318679e-10 2.872984112e-10 1.391978942e-11 9.591038625e-14 5.939980533e-15 1.356344535e-14 4.35566806e-16 1.805718501e-15 4.404799876e-18 7.18424169e-18 2.057370797e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 9.62533952e-11 0 1.774602739e-18 3.725191722e-17 3.974484574e-18 7.939169331e-16 9.440794933e-15 3.715002873e-15 2.191293388e-13 1.693294966e-12 4.375267932e-12 2.461071957e-11 1.432553766e-10 4.936211866e-10 3.020626072e-10 3.892847203e-10 1.031155961e-09 1.588464096e-09 3.841124537e-09 6.560637639e-09 6.228981519e-09 6.690385014e-09 6.993094442e-09 7.561594685e-09 1.390451625e-08 1.042253187e-08 1.067268939e-08 1.396526049e-08 1.437495479e-08 1.631122582e-08 1.464683152e-08 1.874328362e-08 1.685308781e-08 2.096806198e-08 2.520707357e-08 2.248491328e-08 2.814888786e-08 2.327922601e-08 2.0889036e-08 2.4021242e-08 2.804212977e-08 2.880754192e-08 2.855206481e-08 3.107414622e-08 3.51484406e-08 3.327519794e-08 3.404556944e-08 3.610316235e-08 3.159948249e-08 3.906127459e-08 3.127416137e-08 3.532726471e-08 3.763225042e-08 4.450520997e-08 3.227968355e-08 3.34712701e-08 3.910519977e-08 3.940788665e-08 3.144700836e-08 3.947037165e-08 3.426984007e-08 2.484811356e-08 3.167399296e-08 3.529327093e-08 3.125884554e-08 2.384653864e-08 2.35750408e-08 2.018707018e-08 1.430235987e-08 2.795048799e-08 1.865139604e-08 1.14932117e-08 1.909444916e-08 1.071533535e-08 2.293469109e-08 1.813621351e-08 1.560377402e-08 1.407227151e-08 1.664600604e-08 1.562245019e-08 9.402344004e-09 1.275826173e-08 1.419641635e-08 1.296932483e-08 1.249276173e-08 1.523272788e-08 1.026368011e-08 1.066532369e-08 2.018207284e-08 1.486441342e-08 9.216035551e-09 1.269371412e-08 1.153822354e-08 7.540586433e-09 1.43316869e-08 1.357466175e-08 8.812898589e-09 1.244512942e-08 1.66992561e-08 1.752013924e-08 1.883769501e-08 1.389275372e-08 1.696260924e-08 1.390239646e-08 1.284608073e-08 1.5932846e-08 2.328019832e-08 1.85476842e-08 2.354524604e-08 2.134298764e-08 3.652404005e-08 2.45336097e-08 2.96393402e-08 3.077568539e-08 3.383962702e-08 2.69350102e-08 2.606941381e-08 2.752445275e-08 3.426453678e-08 3.198097399e-08 3.311799806e-08 3.836125028e-08 4.099924392e-08 3.544189728e-08 3.716090691e-08 4.211518484e-08 3.704376355e-08 3.903728123e-08 4.15197963e-08 3.661161845e-08 3.790423586e-08 3.386934494e-08 3.3529523e-08 3.192480372e-08 2.295528606e-08 2.932106279e-08 3.48804356e-08 2.74151997e-08 2.396773961e-08 2.410351414e-08 2.201124646e-08 2.087136995e-08 1.886946949e-08 2.208646366e-08 1.983690426e-08 1.553717194e-08 1.743947286e-08 1.208313753e-08 1.244057883e-08 1.199701727e-08 1.049962054e-08 6.5588756e-09 1.078616745e-08 6.71855295e-09 7.186430738e-09 5.296157545e-09 3.49365938e-09 4.604892478e-09 1.667737485e-09 1.344187646e-09 5.162339123e-10 4.6247824e-10 3.441524801e-10 3.552207298e-10 5.729886062e-11 1.982334864e-11 1.002631382e-13 3.523956724e-11 2.353218953e-15 6.050301826e-16 1.234967784e-15 2.72401633e-16 3.401448758e-17 3.750288342e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.792959187e-19 1.16331664e-18 4.957359705e-18 5.123421387e-16 2.527061332e-14 1.944157427e-14 5.59867637e-13 2.789895346e-13 1.364057306e-11 2.464156674e-10 2.088655107e-10 7.264104018e-10 2.844988051e-10 4.965466483e-10 1.388623477e-09 2.868765536e-09 3.274602276e-09 4.644637167e-09 5.882569263e-09 7.674426337e-09 9.884504817e-09 9.792899644e-09 1.136549672e-08 1.408729365e-08 1.260710871e-08 1.313120456e-08 1.606759513e-08 1.542705862e-08 1.767796594e-08 1.967877269e-08 1.975208819e-08 2.071038252e-08 1.725785883e-08 2.184309615e-08 2.743070975e-08 2.192074497e-08 2.754850591e-08 3.024609093e-08 3.219332957e-08 3.626161474e-08 3.611976083e-08 3.211552587e-08 3.086695543e-08 3.54798665e-08 3.976689146e-08 3.387552932e-08 3.954213169e-08 3.890928706e-08 3.758897817e-08 3.212727014e-08 4.139395087e-08 3.999572833e-08 3.638538875e-08 3.581136331e-08 3.319591319e-08 3.295027024e-08 4.0793959e-08 3.559299526e-08 3.427587622e-08 3.132822055e-08 2.231257208e-08 2.892770632e-08 3.342748292e-08 2.640540887e-08 2.120420593e-08 2.291258511e-08 2.168882336e-08 1.46737401e-08 1.282520874e-08 1.34955387e-08 1.445629832e-08 2.074201224e-08 1.50210145e-08 1.386876176e-08 1.272448052e-08 1.130419952e-08 1.364992352e-08 1.532594115e-08 1.121397011e-08 7.579498392e-09 1.284193082e-08 1.317893072e-08 1.158959141e-08 1.098176858e-08 7.720595836e-09 1.330085483e-08 1.4385731e-08 1.34298225e-08 1.547389138e-08 1.956449449e-08 1.423048533e-08 1.34919138e-08 1.270261092e-08 1.251610521e-08 1.913728647e-08 1.381659687e-08 1.681819422e-08 2.026397578e-08 1.919601099e-08 1.802262858e-08 7.509810254e-09 1.971520243e-08 8.479242616e-09 2.399141926e-08 1.90402286e-08 1.983925067e-08 2.558267442e-08 1.942375851e-08 2.196017447e-08 3.862913367e-08 2.806443859e-08 2.894573415e-08 2.643153257e-08 3.121290614e-08 3.217732283e-08 3.544052386e-08 4.183937199e-08 3.821664012e-08 4.096621303e-08 4.544568004e-08 4.283853474e-08 2.950372139e-08 4.640908325e-08 3.416811797e-08 3.224546083e-08 3.993425242e-08 3.353833289e-08 4.473764482e-08 3.309130863e-08 3.065458882e-08 3.000800682e-08 2.958272852e-08 3.139579773e-08 2.977716327e-08 2.26660124e-08 2.337830877e-08 2.885232062e-08 2.381287156e-08 2.224998582e-08 2.291556403e-08 1.806613749e-08 2.194244523e-08 1.978448439e-08 1.656614033e-08 1.689037955e-08 1.219054612e-08 1.616611568e-08 1.154851848e-08 9.195150683e-09 9.191679074e-09 1.026617222e-08 5.989734643e-09 6.134875038e-09 4.95533402e-09 2.099327728e-09 3.572286336e-09 2.130541713e-09 8.698202502e-10 7.446384176e-10 2.330789814e-10 3.213749158e-10 1.275734585e-10 1.73913114e-11 2.024466712e-11 1.150267874e-13 4.626206563e-14 1.963192285e-14 2.162040674e-15 1.753262198e-15 0 8.902109352e-18 9.427628322e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.966619982e-19 2.695972574e-18 1.156287371e-17 4.50134364e-17 2.654008222e-16 1.00901092e-14 5.466262116e-14 2.143131317e-13 5.26367638e-13 2.552295594e-11 2.08949392e-11 2.258774017e-10 1.930673529e-10 5.106017643e-10 7.400711284e-10 1.20721538e-09 1.657631472e-09 5.824782806e-09 4.46421783e-09 4.362766776e-09 6.707363666e-09 7.959505699e-09 6.63511178e-09 1.049469633e-08 1.057543394e-08 1.398682287e-08 1.233007109e-08 1.526367988e-08 1.518682018e-08 1.750220597e-08 2.004818073e-08 2.347819948e-08 1.981213591e-08 2.355299886e-08 2.023516038e-08 2.375585452e-08 2.429657286e-08 2.64722968e-08 3.347521563e-08 2.756502947e-08 3.559224992e-08 3.117986666e-08 3.186673304e-08 3.522023916e-08 3.887020172e-08 3.499678976e-08 4.043519843e-08 4.328360069e-08 3.524143e-08 3.599980566e-08 3.444462486e-08 3.826071503e-08 3.564351821e-08 3.8725969e-08 3.42822723e-08 3.928045628e-08 3.437206975e-08 3.975835469e-08 3.252506423e-08 3.085935649e-08 2.93826279e-08 3.863521674e-08 2.829677129e-08 2.688535505e-08 2.113170927e-08 2.316188235e-08 1.775669842e-08 1.607037306e-08 2.348478216e-08 2.083684543e-08 2.256441173e-08 1.432145363e-08 2.071661028e-08 1.256531323e-08 1.393505788e-08 1.80583671e-08 1.293854588e-08 1.741901829e-08 1.497325478e-08 1.609749726e-08 9.677190844e-09 1.023749974e-08 1.448431759e-08 1.848371109e-08 1.309569462e-08 1.335662914e-08 1.09856526e-08 1.533626624e-08 1.102282672e-08 1.691164451e-08 1.94794004e-08 9.682818255e-09 2.10330341e-08 1.320650025e-08 1.947118275e-08 1.399749088e-08 1.603876194e-08 1.198407011e-08 1.010120154e-08 1.527113601e-08 1.123672098e-08 1.509615291e-08 1.223468119e-08 1.602216211e-08 1.770350339e-08 2.204316903e-08 1.880207218e-08 2.144378168e-08 2.242341122e-08 3.40990274e-08 3.193952078e-08 3.04981646e-08 2.415423402e-08 3.072671231e-08 2.634423954e-08 4.26333888e-08 4.477222161e-08 4.616913873e-08 3.055323566e-08 3.728770718e-08 3.71851766e-08 3.755945883e-08 4.094484041e-08 4.2743275e-08 3.581473894e-08 3.710028882e-08 3.392085821e-08 3.812229373e-08 3.142083565e-08 3.700298908e-08 3.342270374e-08 3.50996466e-08 3.149738358e-08 3.429881987e-08 3.579216837e-08 3.088526164e-08 2.59640184e-08 2.528123547e-08 2.445415447e-08 2.472997232e-08 2.447637416e-08 1.84969629e-08 1.868098103e-08 1.913149721e-08 1.860083649e-08 1.258498432e-08 1.4890813e-08 1.192355393e-08 1.583208861e-08 1.147436248e-08 1.012174767e-08 7.355992995e-09 6.757365451e-09 6.118496236e-09 7.788103819e-09 3.692789695e-09 3.892825751e-09 2.790289429e-09 1.33729767e-09 3.714316382e-10 2.515715462e-10 3.740531526e-10 2.089098503e-10 2.193021896e-11 8.324403367e-12 3.354830864e-13 1.000015282e-12 5.94112669e-15 1.068180498e-15 6.849897561e-16 6.83218124e-17 2.492465077e-17 1.392948946e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.205292379e-19 2.413548469e-16 3.91284688e-17 8.163465476e-15 2.51734693e-14 9.530325158e-15 7.321518133e-13 1.351149912e-11 6.264595284e-11 2.433720342e-10 7.698378419e-11 2.559020787e-10 5.421199267e-10 9.005194438e-10 3.076396516e-09 4.699907122e-09 4.645141372e-09 7.400829246e-09 5.2704678e-09 8.563818304e-09 6.802946321e-09 1.011219898e-08 1.093774096e-08 1.499995475e-08 1.388255752e-08 1.786543389e-08 1.590249083e-08 1.75674824e-08 2.15217435e-08 2.513165883e-08 2.37646627e-08 2.167798461e-08 2.011036951e-08 2.260915989e-08 3.226800517e-08 3.032273443e-08 3.006968442e-08 3.09660659e-08 3.535475052e-08 2.735874757e-08 3.508017963e-08 3.834851718e-08 4.010340357e-08 3.613860426e-08 4.844623508e-08 3.53668442e-08 4.514577593e-08 4.666316524e-08 4.755017811e-08 3.643729342e-08 4.458663932e-08 3.427032318e-08 3.467862969e-08 3.736315311e-08 3.463458988e-08 3.158259726e-08 3.296960082e-08 4.199655293e-08 3.152748574e-08 2.996520801e-08 2.869913797e-08 2.235102382e-08 3.284678728e-08 2.838359189e-08 1.683731043e-08 2.603675268e-08 2.286895409e-08 2.406128348e-08 2.037005151e-08 1.288898828e-08 1.750573695e-08 1.767462289e-08 1.64879513e-08 1.807982833e-08 2.267445834e-08 1.483267639e-08 1.724724558e-08 8.51120877e-09 1.808950658e-08 1.223350893e-08 1.094809677e-08 1.255901031e-08 1.140030474e-08 1.583653611e-08 1.282680781e-08 1.281206323e-08 1.606745953e-08 1.137370742e-08 1.150430622e-08 1.747107081e-08 1.698030986e-08 1.093498369e-08 1.266981027e-08 1.600237402e-08 1.086847491e-08 1.707719808e-08 1.130211038e-08 1.417872041e-08 1.677963925e-08 1.474908064e-08 1.604381903e-08 1.873852655e-08 1.646812026e-08 2.749939696e-08 3.107275583e-08 2.723960954e-08 2.682258862e-08 2.401033586e-08 2.829721008e-08 2.587502083e-08 3.288358498e-08 3.105125782e-08 3.232511058e-08 2.797706421e-08 3.943140823e-08 3.445288011e-08 4.037326065e-08 3.855646655e-08 3.149285414e-08 3.602398092e-08 3.443135902e-08 3.7563012e-08 3.775206127e-08 4.239963254e-08 3.711975332e-08 3.423530838e-08 3.326796834e-08 3.712289597e-08 3.875544166e-08 3.527617237e-08 3.070603034e-08 3.261246921e-08 3.187523579e-08 2.750321842e-08 3.132205296e-08 2.343600649e-08 2.742659489e-08 2.158654188e-08 2.431869444e-08 1.569306628e-08 2.017640519e-08 1.694564366e-08 1.977066615e-08 2.028510603e-08 1.612952816e-08 1.404684363e-08 1.453224794e-08 1.219091587e-08 1.150507285e-08 7.663786767e-09 6.950490245e-09 8.974280444e-09 4.953356095e-09 6.306752063e-09 4.960520583e-09 2.588893306e-09 8.809605474e-10 3.923231864e-10 1.891542121e-10 6.557357445e-10 2.487733375e-10 7.242998629e-11 9.54944473e-13 5.133107616e-12 4.155939272e-14 3.72572108e-14 1.158565804e-15 2.747058941e-16 2.681124601e-16 3.792115562e-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 7.831660717e-19 1.923600517e-18 9.235080947e-19 5.295045311e-17 7.264490483e-15 6.313312617e-16 5.007582299e-14 9.226383063e-14 1.181095853e-12 8.625113916e-12 8.619174927e-11 1.59903239e-10 3.493887143e-10 4.641883556e-10 4.859713009e-10 2.312573619e-09 1.040826568e-09 4.128995618e-09 5.328863459e-09 6.548546374e-09 6.738462154e-09 1.03978047e-08 7.054706939e-09 1.099615794e-08 8.071577319e-09 1.459596527e-08 1.549539323e-08 1.839975657e-08 1.598644315e-08 2.330369587e-08 2.182662949e-08 1.733080499e-08 2.37237422e-08 2.328147456e-08 2.727923678e-08 2.639090293e-08 3.025069612e-08 3.578885888e-08 2.986347291e-08 3.599932085e-08 2.795303179e-08 3.394583277e-08 2.770235503e-08 3.442025919e-08 3.954223605e-08 3.973245947e-08 4.324318632e-08 4.837436906e-08 3.549935193e-08 4.228213434e-08 3.850963282e-08 4.217783905e-08 4.210451656e-08 3.960106649e-08 3.930541274e-08 3.940771094e-08 3.365304471e-08 3.708310145e-08 5.280670852e-08 3.775673116e-08 3.174252237e-08 3.349980995e-08 2.606802663e-08 3.278612916e-08 2.17111483e-08 2.124752155e-08 2.01584919e-08 1.581673292e-08 1.794046472e-08 2.222970551e-08 1.28280076e-08 2.068069192e-08 2.047510393e-08 1.73504192e-08 1.303782304e-08 1.858355002e-08 1.851580959e-08 1.478342379e-08 1.373836973e-08 1.779669965e-08 1.254712957e-08 1.164969767e-08 1.494793832e-08 1.160441892e-08 1.346052521e-08 1.566125046e-08 1.373874279e-08 1.261420558e-08 1.257003392e-08 1.492651122e-08 1.584088319e-08 1.161095396e-08 1.501575065e-08 1.79022862e-08 1.66715127e-08 1.210310646e-08 1.190628574e-08 1.945908902e-08 1.363236902e-08 1.36709974e-08 1.855063665e-08 1.14429498e-08 2.156011056e-08 1.931799053e-08 1.69626076e-08 1.374180296e-08 2.02335928e-08 1.980716693e-08 2.814667419e-08 3.151968678e-08 3.426314972e-08 3.416409144e-08 3.780504198e-08 3.342410194e-08 2.66332044e-08 4.207237696e-08 3.575918253e-08 4.508559323e-08 3.547909851e-08 4.167529071e-08 3.645073344e-08 3.588392141e-08 3.844847773e-08 4.335582003e-08 3.922169831e-08 3.834186526e-08 4.955896714e-08 4.761531607e-08 3.549463355e-08 3.122138288e-08 4.19555934e-08 3.528169826e-08 3.10103044e-08 3.040275079e-08 3.375713279e-08 3.452631143e-08 2.758542633e-08 3.230472022e-08 1.602349687e-08 2.406870616e-08 2.451385609e-08 1.940933399e-08 2.297179481e-08 1.77033623e-08 1.628821049e-08 2.240128917e-08 1.477114032e-08 1.343154485e-08 1.129525228e-08 1.116473742e-08 1.121447182e-08 9.215103531e-09 6.198224909e-09 8.036351753e-09 6.290906439e-09 4.984425978e-09 3.476931575e-09 3.156824596e-09 8.806927055e-10 3.028134015e-10 2.653026603e-10 1.452908013e-10 1.187865192e-10 4.674536797e-13 3.474002234e-12 1.409949125e-13 3.291051678e-13 2.783119546e-14 1.894705588e-14 2.196665894e-17 0 1.5448653e-17 4.346684072e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.391767931e-18 2.294174503e-16 7.350934373e-17 3.721650058e-16 9.665512129e-14 9.035777069e-15 1.496051389e-12 6.42189805e-12 1.635269341e-10 1.843293206e-10 2.006271072e-10 5.356433101e-10 4.567541916e-10 1.321338905e-09 1.895034809e-09 3.963848647e-09 7.161069548e-09 8.458376086e-09 9.80677634e-09 1.096528711e-08 1.275746361e-08 1.065096309e-08 1.05832244e-08 1.37974709e-08 1.659190596e-08 1.308740906e-08 1.767019852e-08 1.52238497e-08 1.967549075e-08 2.55082025e-08 2.507182038e-08 2.54515956e-08 2.496012154e-08 2.514800374e-08 2.7411958e-08 2.800891607e-08 3.115821396e-08 3.134800265e-08 3.25939494e-08 2.858084941e-08 3.491065007e-08 3.836551615e-08 4.135813512e-08 4.193359742e-08 4.17422201e-08 4.01251822e-08 3.704465666e-08 4.402559094e-08 4.175736115e-08 3.704265417e-08 3.967155196e-08 4.552282846e-08 4.100298614e-08 4.616656735e-08 4.296665594e-08 2.526114009e-08 4.163015792e-08 3.428305252e-08 3.523818461e-08 3.666692344e-08 3.287274805e-08 3.009848095e-08 2.273337306e-08 2.828292562e-08 2.469405622e-08 2.494154562e-08 1.893523961e-08 2.231330288e-08 1.542710229e-08 1.666102624e-08 2.131088816e-08 1.892677784e-08 1.893378402e-08 5.956936593e-09 2.005995176e-08 1.868630376e-08 1.050390009e-08 1.263329318e-08 1.424682e-08 1.525362595e-08 1.235324635e-08 2.013970783e-08 1.309264517e-08 1.418066003e-08 1.304932435e-08 2.071722718e-08 1.171174063e-08 1.393070964e-08 1.23840778e-08 1.641512244e-08 1.827301411e-08 8.530423041e-09 1.548655718e-08 1.606612324e-08 1.79957914e-08 1.69753825e-08 1.91312534e-08 1.518120318e-08 1.432188309e-08 1.951580536e-08 1.716800112e-08 2.213833467e-08 1.628843575e-08 1.894629266e-08 2.885798184e-08 3.214203567e-08 2.564184694e-08 2.490378151e-08 2.242749446e-08 2.117835123e-08 3.989345672e-08 2.427811303e-08 2.874770318e-08 3.764227645e-08 4.587548066e-08 3.540128427e-08 3.385048237e-08 3.492321277e-08 4.646552995e-08 4.644125355e-08 3.942993092e-08 3.522535884e-08 4.24662761e-08 4.263502622e-08 3.807220877e-08 3.375035322e-08 3.664846628e-08 3.648722866e-08 3.694317989e-08 3.76676218e-08 3.640654296e-08 3.406222195e-08 2.741850178e-08 2.920425454e-08 2.942822171e-08 2.627877324e-08 2.910581028e-08 2.709712543e-08 2.500468579e-08 2.113051082e-08 2.125836143e-08 1.758346458e-08 1.828868117e-08 1.409565052e-08 1.789715663e-08 1.735234911e-08 1.371429181e-08 1.047235008e-08 8.851031999e-09 1.441437381e-08 9.100088725e-09 9.349518823e-09 7.116485597e-09 6.948583588e-09 2.967823736e-09 2.143503464e-09 3.551727668e-10 9.681510599e-10 7.971057801e-10 4.481714315e-10 3.075193104e-10 2.223124449e-10 6.377880867e-12 1.065910153e-13 3.3334155e-13 8.563692758e-14 1.210780731e-14 9.390192165e-17 1.244183235e-16 2.802613674e-17 1.533559277e-19 8.374127495e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.137652218e-19 4.186041027e-18 5.602743174e-17 5.954580892e-17 1.555549029e-16 7.715889044e-15 2.151058942e-13 3.538109047e-13 5.728811886e-12 1.375357303e-11 1.05680669e-11 7.276764694e-10 4.931372727e-10 3.419772875e-10 6.175183232e-10 5.913751537e-10 3.252751117e-09 4.837991163e-09 4.913036031e-09 5.036770937e-09 1.031188903e-08 8.943552394e-09 8.443092563e-09 1.147672904e-08 1.337029008e-08 1.270235525e-08 1.751476716e-08 1.374990076e-08 1.54797188e-08 1.968111663e-08 1.925820498e-08 2.137043606e-08 2.368013063e-08 3.09992663e-08 1.931311826e-08 2.972076094e-08 2.832308778e-08 2.836934194e-08 2.929511044e-08 2.755717674e-08 3.098519534e-08 4.174150303e-08 3.62030925e-08 3.748637915e-08 3.987088023e-08 4.045927e-08 3.424455497e-08 4.458300207e-08 3.879774266e-08 4.403464967e-08 4.442441349e-08 3.402549133e-08 4.285022251e-08 4.426822587e-08 3.57183846e-08 3.886304736e-08 3.917247423e-08 3.590227296e-08 3.678812011e-08 3.456683486e-08 2.779496737e-08 4.550711167e-08 4.252320093e-08 2.855038902e-08 3.430366481e-08 2.672126012e-08 2.975308787e-08 2.233959876e-08 2.357557804e-08 2.310757358e-08 1.812350243e-08 2.079114822e-08 1.783913711e-08 1.452711152e-08 1.664236451e-08 1.876690658e-08 1.036013148e-08 1.300962748e-08 2.062443214e-08 1.577353939e-08 1.411136375e-08 1.712771417e-08 1.66819011e-08 1.896488984e-08 1.303751564e-08 1.891337336e-08 1.370974033e-08 1.500015488e-08 2.041547132e-08 2.123645986e-08 1.593160226e-08 1.503267835e-08 1.505929032e-08 1.766456972e-08 1.358554934e-08 1.431074949e-08 9.756453314e-09 1.875418162e-08 2.307969055e-08 1.85503131e-08 1.518728687e-08 1.912030829e-08 1.45648351e-08 2.028686703e-08 2.2342287e-08 2.007342104e-08 1.358299318e-08 2.434975322e-08 2.886070808e-08 2.93552862e-08 2.346244123e-08 3.041895022e-08 3.473154016e-08 2.812147351e-08 3.399170431e-08 4.154918067e-08 4.054525956e-08 3.83352733e-08 4.007012701e-08 4.825830524e-08 3.461905778e-08 3.997053423e-08 3.57403923e-08 4.319297499e-08 3.367204524e-08 4.525928014e-08 4.000654951e-08 4.494533273e-08 4.205883513e-08 3.538481212e-08 3.905161638e-08 3.515888841e-08 3.89981963e-08 3.485245794e-08 3.00027693e-08 3.187878581e-08 2.57832704e-08 3.016251139e-08 2.980298527e-08 2.806380899e-08 2.492018657e-08 2.244508964e-08 2.098747347e-08 2.16400637e-08 1.877710972e-08 1.592670768e-08 1.489247662e-08 1.314988377e-08 1.270849668e-08 1.292807307e-08 1.005700338e-08 8.770704823e-09 7.558836644e-09 8.89812169e-09 6.205999769e-09 5.379260873e-09 3.285294904e-09 3.112024635e-09 1.161903808e-09 7.147412072e-10 1.034905981e-10 3.107063314e-10 1.795598472e-11 2.13190624e-11 5.066129103e-12 2.056336438e-12 2.051668661e-14 4.101765125e-14 6.325839871e-15 6.733175697e-16 1.28967383e-16 2.155205289e-17 6.164442136e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.903337161e-19 6.360127092e-17 5.386159104e-17 2.043767362e-15 7.582307463e-16 1.303580925e-14 1.205545345e-14 1.528728864e-11 1.015514875e-11 7.646345522e-12 2.511532315e-10 3.854314837e-10 3.281550429e-10 9.413589287e-10 1.821456454e-09 3.322741349e-09 4.097167651e-09 3.742077268e-09 5.502564357e-09 4.990772871e-09 1.037372234e-08 1.129177313e-08 1.333925708e-08 1.162982557e-08 1.139183818e-08 1.39787208e-08 1.54777963e-08 1.76420286e-08 2.30248251e-08 2.206766419e-08 2.148858398e-08 1.9994254e-08 2.167591547e-08 2.657903099e-08 2.451696694e-08 2.600640047e-08 3.313222157e-08 3.207788173e-08 2.742676205e-08 3.797213121e-08 3.10459893e-08 3.690203425e-08 3.988664723e-08 3.481383904e-08 4.426302107e-08 3.977567512e-08 4.116511196e-08 4.463474964e-08 4.192471452e-08 3.890626066e-08 3.614071821e-08 3.896570671e-08 4.837311194e-08 3.679145808e-08 3.829871634e-08 2.50023935e-08 3.746304681e-08 3.441460606e-08 3.699222742e-08 3.965541206e-08 2.93994878e-08 2.752029871e-08 2.401604949e-08 2.274526333e-08 2.919046447e-08 2.050144782e-08 2.068452027e-08 1.974921628e-08 2.592102523e-08 2.386833098e-08 1.574857362e-08 2.259041059e-08 1.975643547e-08 1.556897342e-08 2.279097887e-08 2.301881003e-08 1.675134653e-08 2.065195942e-08 1.843900574e-08 1.407588807e-08 1.342341777e-08 1.376103664e-08 1.283772197e-08 1.59169972e-08 1.152065101e-08 1.665658045e-08 1.664907057e-08 1.495892494e-08 1.521914377e-08 1.267221002e-08 1.247373616e-08 1.705473904e-08 1.415260234e-08 1.129593814e-08 1.609533167e-08 1.666938224e-08 1.376940149e-08 1.725616443e-08 1.89309372e-08 2.149584138e-08 2.856928856e-08 1.836761611e-08 2.180064274e-08 1.158387537e-08 1.923717565e-08 1.715312291e-08 2.784779962e-08 2.240559973e-08 2.565560125e-08 2.014867677e-08 3.839920616e-08 2.815327042e-08 3.820927654e-08 3.805622684e-08 2.477945217e-08 5.156047601e-08 4.2769615e-08 4.503112489e-08 3.845729596e-08 4.079362247e-08 4.126450071e-08 4.664634948e-08 4.117863382e-08 4.285129781e-08 4.253655304e-08 4.197895008e-08 3.407366516e-08 4.19094747e-08 3.455782189e-08 3.990150351e-08 3.882048646e-08 3.819765761e-08 3.128106797e-08 3.168159979e-08 3.038562698e-08 3.199521022e-08 2.432845529e-08 2.502941543e-08 2.589455907e-08 2.286187801e-08 2.095190108e-08 2.027816285e-08 2.525445667e-08 1.71416024e-08 1.917321112e-08 2.085687601e-08 1.727605169e-08 1.693212714e-08 1.259149226e-08 1.217349219e-08 1.232121362e-08 9.295166642e-09 7.828088795e-09 4.857421626e-09 4.898539332e-09 4.926306569e-09 1.555797169e-09 8.411140482e-10 5.166878937e-10 3.251175915e-10 1.226213515e-09 3.562841528e-10 5.307511918e-11 1.329398547e-11 4.855227817e-12 9.123444679e-13 4.092083394e-15 3.187997796e-15 5.211938503e-17 3.416926962e-16 1.729685217e-17 8.742432183e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.030478925e-18 6.928932223e-18 1.446005506e-16 6.984646569e-17 3.569957056e-15 4.057314579e-14 2.490805621e-13 2.833631882e-13 6.259232034e-12 6.244229329e-11 1.887124423e-10 2.795241136e-10 3.162921797e-10 6.372563262e-10 1.366532222e-09 3.178122425e-09 2.762274404e-09 6.622808829e-09 7.027342233e-09 8.137979929e-09 1.042480202e-08 1.389371528e-08 1.037713184e-08 1.066011846e-08 1.692905199e-08 1.887892723e-08 1.155436649e-08 2.297611915e-08 1.660463096e-08 2.014397969e-08 2.152712065e-08 2.612539967e-08 2.655549795e-08 2.366513334e-08 2.790229835e-08 2.69073993e-08 2.536045318e-08 3.053722496e-08 3.368330505e-08 3.262950197e-08 3.824261423e-08 3.502150171e-08 4.020261873e-08 4.449272275e-08 4.829497384e-08 4.356278449e-08 4.389169533e-08 5.059574867e-08 4.036666601e-08 3.96709975e-08 4.146909572e-08 3.976224307e-08 4.199255533e-08 4.429931196e-08 4.284683735e-08 3.833417366e-08 3.777872587e-08 4.26643244e-08 3.137698791e-08 3.243078905e-08 3.611434972e-08 3.315334951e-08 2.350364345e-08 2.976860782e-08 3.408525912e-08 3.281218045e-08 2.407914187e-08 2.08881291e-08 1.852843111e-08 2.240438857e-08 1.090564826e-08 2.769585559e-08 1.709397456e-08 1.903669459e-08 1.532893601e-08 1.611642282e-08 1.474276157e-08 1.531948728e-08 2.138898944e-08 1.010082329e-08 1.805759967e-08 1.298618844e-08 1.882120042e-08 9.303496387e-09 1.222288807e-08 1.126836196e-08 1.477714186e-08 1.583628539e-08 1.538873842e-08 1.306293508e-08 1.47117091e-08 1.446231008e-08 1.06779863e-08 1.45843639e-08 2.273544515e-08 1.015306027e-08 1.60399203e-08 1.677595898e-08 1.93981553e-08 1.878133461e-08 2.035568356e-08 1.723494586e-08 2.446473338e-08 2.236868744e-08 1.572952433e-08 2.765538182e-08 2.545160385e-08 1.274620338e-08 2.604739647e-08 2.962032264e-08 2.805827642e-08 4.224153696e-08 3.904091802e-08 3.130126943e-08 3.847972521e-08 3.685931661e-08 3.461207899e-08 4.501709726e-08 3.903020132e-08 4.114776401e-08 4.108378186e-08 4.156057203e-08 3.60496743e-08 4.270896943e-08 4.801242863e-08 4.468806709e-08 3.729770977e-08 3.634501313e-08 3.858937058e-08 3.891302295e-08 3.589498782e-08 3.632049315e-08 3.189416769e-08 3.594798177e-08 3.412717887e-08 2.447320542e-08 3.053155233e-08 2.9561081e-08 2.751235851e-08 2.24975877e-08 2.732039785e-08 2.378808417e-08 2.130665093e-08 1.78486675e-08 1.725261636e-08 2.196488257e-08 1.710131284e-08 1.605990122e-08 1.231931927e-08 1.459405903e-08 9.184879781e-09 8.590543514e-09 8.879126232e-09 8.38667507e-09 5.713283797e-09 3.163967773e-09 2.446374817e-09 1.546413976e-09 7.674216687e-10 4.68395988e-10 2.820192974e-10 1.011047317e-10 1.523145027e-11 9.628409004e-12 2.929810711e-12 3.338345435e-13 1.417116619e-15 1.924622614e-15 2.283239145e-17 3.247487998e-17 1.464223889e-18 1.946510046e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.470964463e-36 1.510182472e-18 1.123724642e-17 1.125864542e-16 4.431375133e-16 3.161525076e-15 3.131639903e-15 2.11938098e-13 3.358362366e-13 5.270221756e-11 4.110584097e-11 4.716361143e-10 3.41236632e-10 2.401156471e-10 4.413901574e-10 1.829916154e-09 3.859320183e-09 3.222653068e-09 4.226725198e-09 7.562133188e-09 8.466949734e-09 9.050740467e-09 1.155058926e-08 9.657527863e-09 1.233850226e-08 1.872185529e-08 1.426033024e-08 1.204837654e-08 1.907911841e-08 2.104356269e-08 2.089225519e-08 2.41321861e-08 2.267743127e-08 2.511501278e-08 2.377999164e-08 2.919667052e-08 2.838991574e-08 2.94228783e-08 3.114949691e-08 3.89451259e-08 3.397957035e-08 3.500305836e-08 3.557229962e-08 4.522957664e-08 3.90888129e-08 4.497926436e-08 3.921575814e-08 4.127869379e-08 4.532780161e-08 4.586142649e-08 4.156311317e-08 4.62934293e-08 4.105780998e-08 3.711482281e-08 4.842866095e-08 4.00548343e-08 3.866341006e-08 4.288132053e-08 3.625630463e-08 3.561691878e-08 4.131712278e-08 4.127113099e-08 2.830822368e-08 3.306380312e-08 3.940918529e-08 2.978420947e-08 2.911608721e-08 2.299005521e-08 2.484316378e-08 1.845746843e-08 2.418686842e-08 1.266935047e-08 1.044160161e-08 7.138968318e-09 1.805817755e-08 2.206439783e-08 1.898342382e-08 1.697822929e-08 1.511374868e-08 1.522594604e-08 1.429795202e-08 1.508955921e-08 1.213668192e-08 1.465983914e-08 1.454049672e-08 1.592698812e-08 1.200666179e-08 1.729693416e-08 1.556762833e-08 1.868590233e-08 1.364287805e-08 1.123647724e-08 1.061806779e-08 1.648120845e-08 1.424711933e-08 1.171380974e-08 1.024228641e-08 1.054649433e-08 1.250051247e-08 1.726012436e-08 1.780777962e-08 1.162917502e-08 1.942960266e-08 2.369766853e-08 1.151643668e-08 1.884612503e-08 2.115991648e-08 1.986345888e-08 2.319184455e-08 2.688711314e-08 3.320999447e-08 4.163045895e-08 4.14559932e-08 3.365493816e-08 3.430387311e-08 3.972594754e-08 4.073536009e-08 3.575011263e-08 4.654800435e-08 3.908164878e-08 4.06834126e-08 4.941745685e-08 3.712139594e-08 4.126991456e-08 3.960059966e-08 3.407163655e-08 4.483168682e-08 3.64309857e-08 3.865355163e-08 3.438973016e-08 3.761022415e-08 3.670102959e-08 3.457422765e-08 3.554457768e-08 3.748101203e-08 2.834037528e-08 2.623213303e-08 2.768462808e-08 2.778328137e-08 3.068635652e-08 2.155733724e-08 2.349870943e-08 2.540107578e-08 2.135672734e-08 2.074597397e-08 2.052087799e-08 1.504850162e-08 1.650178147e-08 1.738288465e-08 1.213138406e-08 1.349903953e-08 9.508758982e-09 1.224239346e-08 6.283282787e-09 6.325065427e-09 6.062172117e-09 3.238772106e-09 2.728879284e-09 1.451614539e-09 4.085027766e-10 6.384999132e-10 5.011509759e-10 9.745555921e-10 5.89896708e-11 3.873076408e-11 1.755643789e-12 9.351084615e-14 7.086137783e-14 7.503461544e-15 5.893120666e-16 6.300036363e-17 8.540368511e-18 1.018171674e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.80011054e-18 1.948713703e-17 6.186131789e-17 2.151062174e-15 1.886668231e-15 3.18453314e-14 1.007450875e-12 4.005666514e-12 2.129456355e-11 6.79981991e-11 1.528159015e-11 3.276874672e-10 1.055032638e-09 5.508193063e-10 4.799350557e-10 2.842155764e-09 4.542153187e-09 4.748785532e-09 5.565389311e-09 6.195359002e-09 8.540617089e-09 1.038449852e-08 1.471247889e-08 1.131208362e-08 1.467980474e-08 1.636814615e-08 1.79801826e-08 2.090377409e-08 1.962686277e-08 2.125260717e-08 1.976621628e-08 2.299520528e-08 2.564323854e-08 2.740443175e-08 2.501656473e-08 2.999884066e-08 2.725280444e-08 3.173608428e-08 3.830824678e-08 3.683389455e-08 3.969611445e-08 3.271603192e-08 3.90260307e-08 3.642652814e-08 3.423942385e-08 4.028851965e-08 4.466952272e-08 4.915240625e-08 4.482743155e-08 4.300830992e-08 4.387487301e-08 4.249322268e-08 4.726335401e-08 3.95064601e-08 4.454417214e-08 2.77733862e-08 4.040695496e-08 4.208782419e-08 3.56148015e-08 3.65097124e-08 3.296534369e-08 2.69585512e-08 4.305178672e-08 2.522678776e-08 2.29841602e-08 2.305235885e-08 2.470979787e-08 1.778064903e-08 2.209435143e-08 2.478381729e-08 2.544917857e-08 1.877586576e-08 1.154210132e-08 1.593660347e-08 1.77412743e-08 1.466099714e-08 1.630940451e-08 1.62427308e-08 1.870512278e-08 1.294835514e-08 1.632318128e-08 1.424507681e-08 1.219578312e-08 1.139071478e-08 1.418966425e-08 1.391917642e-08 1.170157712e-08 1.260185885e-08 1.295857258e-08 1.232458901e-08 2.360442292e-08 1.679310853e-08 1.530139275e-08 2.394247874e-08 1.046407796e-08 1.412224138e-08 1.586357545e-08 2.073338282e-08 1.717256283e-08 2.145941553e-08 2.28636348e-08 2.091078779e-08 2.126436842e-08 2.916671015e-08 3.579694143e-08 2.791631628e-08 2.862632189e-08 2.395419142e-08 2.727729076e-08 2.592508822e-08 3.874015954e-08 4.021495673e-08 4.151391384e-08 3.036219967e-08 4.019043302e-08 4.324929706e-08 4.601833565e-08 4.783580904e-08 3.912288562e-08 5.350318417e-08 4.773109547e-08 5.093071101e-08 4.907058522e-08 5.579667497e-08 4.261089166e-08 3.816193892e-08 4.125896436e-08 4.20025842e-08 4.21705059e-08 3.941820594e-08 4.112898665e-08 3.870957113e-08 3.378385387e-08 3.15648276e-08 3.573768105e-08 3.264944512e-08 2.861787019e-08 2.621392125e-08 2.598657203e-08 2.873095707e-08 1.720592456e-08 2.101750237e-08 1.963157947e-08 1.839305304e-08 1.929929377e-08 1.541987219e-08 1.652522847e-08 1.250440351e-08 1.504832713e-08 1.079407616e-08 8.995443679e-09 7.635453143e-09 6.650612035e-09 6.551761494e-09 3.247490464e-09 1.691126098e-09 2.476126185e-09 9.819443629e-10 9.09067395e-10 9.274814708e-10 4.48542765e-11 4.977401266e-10 3.183250558e-10 1.962860235e-11 6.672688728e-14 2.485746945e-14 4.916210715e-15 2.001279223e-14 1.184261412e-16 9.537369138e-17 6.584217758e-19 5.348168462e-19 8.050634203e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.168385093e-19 2.390647068e-18 4.87217859e-19 5.804243133e-16 1.495033535e-15 3.984802729e-15 8.353056231e-16 2.663567437e-13 3.512991522e-13 8.656427888e-13 3.100588799e-11 6.539130311e-11 6.394307706e-10 3.113481024e-10 3.384647939e-10 1.559621871e-09 2.514543632e-09 2.651676754e-09 4.373071972e-09 5.662478505e-09 7.052268629e-09 8.722056149e-09 9.213643908e-09 1.092517971e-08 1.11519484e-08 1.127622037e-08 1.616111071e-08 1.14734734e-08 1.968881423e-08 2.028310722e-08 1.954864357e-08 2.40636353e-08 2.495896571e-08 2.64634398e-08 2.676327765e-08 3.029298514e-08 2.962308125e-08 2.783355964e-08 3.862426966e-08 2.830860514e-08 3.934281964e-08 3.214195024e-08 4.554312739e-08 3.308432547e-08 3.978830877e-08 3.981458159e-08 3.989681685e-08 3.472621609e-08 4.382941958e-08 4.515120979e-08 4.014446439e-08 4.421067753e-08 5.115798455e-08 3.773977181e-08 5.059698832e-08 3.784048618e-08 5.17857247e-08 4.472933382e-08 4.083313993e-08 3.274479555e-08 3.267995599e-08 3.332762936e-08 3.434404484e-08 2.461273128e-08 2.81537271e-08 2.984491198e-08 2.109611707e-08 2.492482498e-08 2.009362185e-08 2.417109816e-08 2.466296042e-08 2.078397446e-08 2.035263499e-08 1.390241737e-08 2.348294626e-08 1.521840389e-08 1.832697989e-08 1.277648303e-08 1.737636096e-08 1.277894524e-08 1.824413161e-08 1.924418828e-08 2.151265526e-08 2.007260239e-08 1.788166831e-08 1.161248499e-08 1.439583804e-08 1.511828679e-08 1.698965523e-08 1.381020327e-08 1.02959583e-08 1.621951029e-08 2.205592592e-08 1.057370071e-08 1.180671934e-08 1.499601462e-08 1.336541686e-08 8.650465672e-09 1.541449017e-08 2.27787667e-08 1.669219952e-08 1.374774202e-08 2.038939e-08 1.908071617e-08 1.477012493e-08 1.945140046e-08 2.717668194e-08 2.161551739e-08 2.425151874e-08 2.641359205e-08 2.330457313e-08 2.953210943e-08 2.646845785e-08 3.054436258e-08 3.036188211e-08 4.188925919e-08 3.585818605e-08 3.962161003e-08 4.168724881e-08 4.722955751e-08 3.003093325e-08 3.49286047e-08 4.724646649e-08 4.952496634e-08 4.459918836e-08 4.137305797e-08 4.440964437e-08 4.390219921e-08 4.475844772e-08 3.976640753e-08 4.277433801e-08 4.345376054e-08 3.377146392e-08 3.297488638e-08 3.163047976e-08 3.12251915e-08 3.014697902e-08 2.727956211e-08 2.909983541e-08 2.773867896e-08 2.943237607e-08 2.21722554e-08 2.123619011e-08 1.702932069e-08 2.098257285e-08 1.885616051e-08 1.558324827e-08 1.545814181e-08 1.243800581e-08 1.799488882e-08 1.068464945e-08 8.073648038e-09 9.600267347e-09 6.003288614e-09 4.985685639e-09 4.388332439e-09 2.761930688e-09 2.664100659e-09 1.356783476e-09 5.072803478e-10 6.510601735e-10 6.684689704e-10 3.110140971e-10 8.634544734e-11 3.777261352e-11 5.867213371e-12 4.120523972e-13 2.697558152e-14 5.934885597e-15 9.220261831e-16 1.474355728e-16 4.214656775e-17 7.5960882e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.524691379e-18 2.376258244e-17 3.267788003e-18 1.013227499e-15 5.48670128e-15 6.341959933e-14 4.253232658e-13 5.346187898e-13 4.658140401e-12 1.546689748e-11 2.322404837e-11 1.864473166e-10 5.610234431e-10 3.908073355e-10 1.110068707e-09 2.449355478e-09 3.116287333e-09 4.245601186e-09 6.5563522e-09 4.695397106e-09 7.111452575e-09 1.011430701e-08 1.127663971e-08 1.364089778e-08 1.213047625e-08 1.582764578e-08 2.086915789e-08 1.902469568e-08 2.023847111e-08 2.261208614e-08 2.277479526e-08 2.787829256e-08 2.578851255e-08 2.297614105e-08 2.781804451e-08 2.715170013e-08 2.857593163e-08 3.85331489e-08 3.711161089e-08 3.880345486e-08 3.983305849e-08 4.170559592e-08 4.530956173e-08 4.02004522e-08 4.076767488e-08 4.369892293e-08 4.301314527e-08 3.97716117e-08 4.197718051e-08 4.801873784e-08 4.478807535e-08 3.967266019e-08 4.743505945e-08 4.900883955e-08 3.633608724e-08 4.734649595e-08 3.61824573e-08 3.844458977e-08 3.220363985e-08 3.100331381e-08 3.129400754e-08 3.495194254e-08 4.706785938e-08 2.988000115e-08 2.988378339e-08 2.210387838e-08 1.830441568e-08 1.611398057e-08 1.900602852e-08 1.902972066e-08 1.738017561e-08 2.558929332e-08 1.734202753e-08 1.68168956e-08 2.258088972e-08 1.443730637e-08 2.02848405e-08 1.702531631e-08 2.002686635e-08 1.336629134e-08 2.015160444e-08 1.536261111e-08 1.336592824e-08 1.547599772e-08 2.015654115e-08 2.535907495e-08 1.542453835e-08 1.209326835e-08 1.952927486e-08 1.470271559e-08 1.34046335e-08 1.748632925e-08 2.015448952e-08 2.352923002e-08 1.462742567e-08 1.957693622e-08 2.363242673e-08 1.735108097e-08 2.492611347e-08 2.232876191e-08 1.858030481e-08 1.937694466e-08 2.358884193e-08 2.792237475e-08 2.29158824e-08 2.123323665e-08 2.574730204e-08 2.687795256e-08 3.643300702e-08 2.535836626e-08 2.633423973e-08 3.898754377e-08 4.650678035e-08 3.68340648e-08 2.819770089e-08 3.877256303e-08 4.242562021e-08 4.689296882e-08 4.455405084e-08 3.539245754e-08 4.541723139e-08 3.709987887e-08 4.568512054e-08 4.778844818e-08 4.513287697e-08 3.992295179e-08 4.616474046e-08 3.956368168e-08 4.10508556e-08 3.744110905e-08 3.388184586e-08 4.04714996e-08 3.607837838e-08 3.218636101e-08 2.817252663e-08 2.914627225e-08 3.214386316e-08 2.748071398e-08 2.581052258e-08 2.457853025e-08 2.462816267e-08 2.410664196e-08 1.91635071e-08 1.74137651e-08 1.90395176e-08 1.511855331e-08 1.707863416e-08 1.81089485e-08 1.210424251e-08 1.351843993e-08 1.100203033e-08 9.593850153e-09 7.291167524e-09 6.121746671e-09 4.91230878e-09 3.251263928e-09 3.262668061e-09 1.199892863e-09 6.57348391e-10 1.020707766e-09 4.783078733e-10 4.438227108e-10 9.151550381e-11 1.520772634e-12 6.950882563e-13 2.514515777e-13 1.267902496e-13 1.846188925e-15 7.138998943e-16 1.810403902e-16 1.263470588e-17 1.832079198e-18 5.297487412e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.451856482e-18 3.496031106e-17 2.090702827e-16 6.902494481e-18 1.192910829e-15 7.081103843e-14 3.0951092e-14 1.810224488e-12 2.652213266e-11 1.004987809e-10 3.263910758e-10 7.455033591e-10 1.053209219e-09 3.625423677e-10 1.931931749e-09 3.840128011e-09 4.122551475e-09 5.745966763e-09 3.582820672e-09 7.681506727e-09 8.269372888e-09 9.930550692e-09 1.171400409e-08 1.204688922e-08 1.655183e-08 1.438470335e-08 1.849438902e-08 2.141140862e-08 1.85554633e-08 1.900441736e-08 2.425576599e-08 2.059251643e-08 2.455230937e-08 2.502515756e-08 2.539234832e-08 3.696077734e-08 3.523778789e-08 3.426093318e-08 3.575299122e-08 4.020949558e-08 2.986504544e-08 3.606451626e-08 3.912995292e-08 4.178193676e-08 4.437605006e-08 4.289353891e-08 4.458072156e-08 4.896271284e-08 4.114389749e-08 3.874701068e-08 4.514632272e-08 4.548272247e-08 3.582334774e-08 4.8166719e-08 3.431071708e-08 4.470490284e-08 3.362066983e-08 5.023038441e-08 4.176555177e-08 4.185878041e-08 3.045832411e-08 3.228493993e-08 3.021350885e-08 3.108081984e-08 2.388456926e-08 2.525093805e-08 1.50956998e-08 1.919212865e-08 1.743183073e-08 1.948118786e-08 2.097208475e-08 1.254807188e-08 1.586502907e-08 1.174465335e-08 1.62386545e-08 1.42028571e-08 1.617799961e-08 1.520195313e-08 1.647913571e-08 1.153851273e-08 1.64133544e-08 1.176184568e-08 1.430183429e-08 1.540510573e-08 1.411688289e-08 1.625082415e-08 1.717793274e-08 1.353077879e-08 1.537216869e-08 1.466041398e-08 1.309896458e-08 1.384285903e-08 1.431426854e-08 1.485867115e-08 1.55903572e-08 1.958960281e-08 1.569547079e-08 2.526133748e-08 1.66542061e-08 1.983638538e-08 1.777709088e-08 2.321159243e-08 1.55604785e-08 2.229444584e-08 2.437364661e-08 1.978651846e-08 2.442791819e-08 2.327936524e-08 2.092261022e-08 4.163234092e-08 3.089080875e-08 3.410678201e-08 4.253427247e-08 3.313734576e-08 3.514590876e-08 4.21211883e-08 3.57383393e-08 4.30207838e-08 4.260278397e-08 4.435414787e-08 4.214264741e-08 4.380468009e-08 4.142118686e-08 4.658289401e-08 5.1890041e-08 4.558500591e-08 5.300576444e-08 3.709229741e-08 3.70499607e-08 3.947021154e-08 4.098072591e-08 3.896327155e-08 3.63997361e-08 3.460964288e-08 3.909850028e-08 3.308098252e-08 2.937464631e-08 2.865692991e-08 2.348609704e-08 2.550152984e-08 2.536261331e-08 2.125658729e-08 2.305597747e-08 1.904995204e-08 1.788219984e-08 1.99850032e-08 1.484817948e-08 9.95463495e-09 1.625868858e-08 1.006618807e-08 9.611140518e-09 8.660030786e-09 7.06183888e-09 6.479871407e-09 5.311118712e-09 4.289977372e-09 4.345090996e-09 1.269074048e-09 4.97021963e-10 7.693880435e-10 3.446689605e-10 1.817676872e-10 4.090765373e-11 1.85031356e-11 4.874503127e-13 5.137801105e-13 1.909516253e-14 7.30343285e-16 2.526208997e-16 2.290877629e-16 2.025277482e-17 4.873328847e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.434594396e-18 4.581602068e-19 9.043926952e-17 1.355652264e-16 6.843466113e-15 6.249449378e-14 3.209294039e-13 4.613993818e-12 1.30686028e-11 1.365060016e-11 4.786585195e-10 5.727343904e-10 9.249482937e-10 7.139076345e-10 1.428647884e-09 1.168993029e-09 3.158707404e-09 4.675853665e-09 7.733757778e-09 9.150231364e-09 8.900352709e-09 1.043522729e-08 1.329208027e-08 1.175370695e-08 1.561489571e-08 1.47779581e-08 1.55307494e-08 2.007643566e-08 2.091914679e-08 1.991350189e-08 2.486474929e-08 2.835407235e-08 3.104931955e-08 2.704822665e-08 2.481277655e-08 3.250674633e-08 3.013683661e-08 2.774463726e-08 3.166622809e-08 3.806560823e-08 3.240933232e-08 3.625189916e-08 4.172527714e-08 4.321075774e-08 4.559727027e-08 4.128571646e-08 4.154983487e-08 3.854866862e-08 4.591133854e-08 4.242649224e-08 4.397620045e-08 4.146753641e-08 4.137253652e-08 3.773508846e-08 3.573234146e-08 4.367679952e-08 3.867361629e-08 3.467119472e-08 3.653935254e-08 4.100057986e-08 3.869815444e-08 3.58910913e-08 2.41560576e-08 2.061789717e-08 1.982264698e-08 2.363903712e-08 2.313936662e-08 2.043509622e-08 2.11612089e-08 1.918832861e-08 2.151724364e-08 2.127424191e-08 2.101478944e-08 2.193488935e-08 1.566629185e-08 1.90206272e-08 1.651797104e-08 1.70455499e-08 9.757054307e-09 1.95431707e-08 1.558536054e-08 1.838549968e-08 1.563881469e-08 1.506065656e-08 1.652112514e-08 1.016574889e-08 1.29392159e-08 1.32521123e-08 1.513965319e-08 1.717438065e-08 1.309082146e-08 1.562322048e-08 1.573179557e-08 1.055594493e-08 1.571754352e-08 1.704287198e-08 1.594037652e-08 1.648574045e-08 1.616688838e-08 1.795952458e-08 2.533909659e-08 2.247217897e-08 1.858802388e-08 2.293580735e-08 1.7513866e-08 3.248297668e-08 2.898333446e-08 2.271936587e-08 2.565689228e-08 3.964419278e-08 2.952067799e-08 2.562780713e-08 2.902226263e-08 3.736999495e-08 3.957737994e-08 4.595240859e-08 4.161329817e-08 3.419083259e-08 4.317471242e-08 3.951859591e-08 3.666727363e-08 3.529792028e-08 3.79029881e-08 4.266662778e-08 4.541864594e-08 4.355380667e-08 4.091595503e-08 4.179630044e-08 4.202606216e-08 3.716504189e-08 3.486246624e-08 3.201662353e-08 3.2135886e-08 3.394732175e-08 2.998988647e-08 3.267703579e-08 3.011961513e-08 2.625347391e-08 2.509952768e-08 2.450660095e-08 1.954200642e-08 2.20913589e-08 2.158081635e-08 1.988443609e-08 2.28987819e-08 1.988520861e-08 1.683012966e-08 1.49617678e-08 1.032297066e-08 9.933140616e-09 1.347452137e-08 7.948409485e-09 7.307800502e-09 6.934156441e-09 5.364035971e-09 2.391584562e-09 1.760605593e-09 8.069763235e-10 1.132385525e-09 8.719730303e-10 4.590442269e-10 4.882455958e-10 1.384243924e-10 2.822358929e-11 1.188164441e-12 2.070736817e-13 1.789906892e-13 4.526934451e-16 1.295195527e-15 5.644796702e-17 3.420795359e-18 1.035504665e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.70224063e-19 5.300187815e-17 1.000587152e-16 1.14306908e-15 1.05191777e-14 1.533780729e-14 1.760283025e-12 2.705102217e-12 1.169698985e-11 2.27159936e-10 1.726817275e-10 6.040405147e-10 3.964781872e-10 3.772587313e-10 1.035248115e-09 2.991392476e-09 3.080302457e-09 5.426554696e-09 5.114032616e-09 7.231151754e-09 8.25960769e-09 9.317236408e-09 1.021901733e-08 1.188808894e-08 1.299234009e-08 1.666247717e-08 1.911806413e-08 2.001688031e-08 2.063884594e-08 2.374764587e-08 2.173709906e-08 2.785533793e-08 2.366738737e-08 2.740806669e-08 2.844197732e-08 2.934230877e-08 3.066564788e-08 3.38371524e-08 3.963378162e-08 3.856142826e-08 3.506408781e-08 3.871002503e-08 4.641166778e-08 3.464924133e-08 3.803537882e-08 3.936090599e-08 4.066962616e-08 4.124815456e-08 4.456819562e-08 3.909169543e-08 3.733592113e-08 4.163034821e-08 4.789486354e-08 4.816608231e-08 4.634163579e-08 4.5945873e-08 2.960618232e-08 3.998711133e-08 3.624005477e-08 4.556428686e-08 3.927914662e-08 4.168579408e-08 4.565491261e-08 2.627530959e-08 2.87544464e-08 2.764776454e-08 2.182783441e-08 2.892065908e-08 2.340912306e-08 1.72895732e-08 2.506744931e-08 1.917193127e-08 1.563728355e-08 1.968510268e-08 1.414468901e-08 1.95675316e-08 1.480717278e-08 1.410630201e-08 1.5792723e-08 1.505080599e-08 1.542338535e-08 1.481992922e-08 1.66698199e-08 1.800876349e-08 1.782942529e-08 1.913855022e-08 1.70597634e-08 2.307642041e-08 1.21214674e-08 2.054905268e-08 1.557333551e-08 1.549537566e-08 1.652382038e-08 1.354189401e-08 2.181539649e-08 1.748503163e-08 1.886781844e-08 1.45065953e-08 2.006539511e-08 1.41882136e-08 2.078529581e-08 1.427195297e-08 3.033018756e-08 2.139516346e-08 2.306132674e-08 2.547384377e-08 3.146820632e-08 2.643395718e-08 3.078729907e-08 3.014865731e-08 3.105546083e-08 2.948530715e-08 3.149091206e-08 3.84294543e-08 3.723266e-08 4.35150397e-08 3.819350462e-08 4.232438526e-08 4.01663999e-08 3.70712901e-08 4.009552731e-08 3.931881156e-08 4.861222654e-08 3.724694326e-08 4.625069192e-08 4.174443028e-08 4.051899144e-08 3.035198948e-08 4.71936626e-08 3.677333805e-08 3.628956209e-08 3.783544633e-08 3.26859912e-08 3.200698068e-08 3.281087982e-08 3.110721677e-08 2.887783428e-08 2.723514416e-08 2.668607204e-08 2.450014783e-08 2.515230771e-08 2.09270204e-08 2.212949607e-08 2.352923293e-08 2.115714285e-08 1.700639885e-08 1.267740202e-08 1.148002745e-08 1.346479111e-08 1.247219277e-08 1.129999413e-08 9.043003507e-09 7.777152738e-09 7.627938506e-09 6.196203317e-09 2.99317051e-09 1.415019924e-09 1.078767274e-09 3.876527998e-10 2.600418473e-10 5.26257936e-10 8.087091827e-11 4.140016086e-11 8.739176099e-12 1.014324925e-13 1.09779229e-13 2.39214252e-14 1.793308523e-15 1.130768356e-15 8.929624965e-17 2.695413898e-18 1.265617961e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.240903948e-18 1.54738348e-17 6.979960182e-16 3.750862992e-16 2.158819067e-15 2.914309357e-13 5.927313656e-13 5.728522013e-13 1.960823236e-11 2.882001221e-11 2.458139441e-10 8.626693448e-10 6.59915496e-10 6.508727878e-10 1.363610621e-09 2.598038169e-09 2.582304101e-09 3.553987174e-09 6.27472909e-09 8.933859126e-09 7.237000145e-09 1.081325375e-08 1.262187899e-08 1.218104525e-08 1.124729723e-08 1.767926304e-08 1.545973013e-08 2.045868164e-08 1.822944376e-08 1.9772824e-08 2.386598768e-08 2.282956172e-08 2.335172145e-08 2.579907618e-08 2.466562155e-08 3.075202937e-08 2.649623081e-08 3.06526252e-08 3.572650156e-08 3.936224515e-08 3.80910016e-08 3.862890847e-08 3.81012579e-08 3.81378216e-08 3.860874876e-08 4.253095278e-08 4.081468715e-08 4.331017514e-08 3.952197951e-08 4.161705886e-08 4.287141539e-08 4.580919539e-08 4.422816473e-08 3.805973816e-08 4.367419474e-08 3.734897204e-08 3.420478796e-08 3.237948591e-08 4.180231177e-08 3.709729864e-08 2.117712083e-08 4.6038041e-08 2.344246785e-08 2.995581938e-08 2.899975331e-08 2.318523029e-08 2.959792428e-08 1.606902181e-08 1.896603621e-08 2.504683758e-08 2.189505972e-08 2.066981479e-08 1.283243632e-08 1.335818959e-08 1.659597566e-08 9.968795816e-09 1.50067711e-08 1.122238558e-08 9.307611408e-09 1.883627418e-08 1.203410783e-08 1.812703788e-08 1.710890454e-08 1.710848516e-08 1.108880866e-08 1.613726938e-08 1.594290609e-08 1.386106173e-08 1.82652118e-08 1.656308934e-08 1.758988623e-08 2.073978957e-08 1.347420959e-08 1.779632368e-08 2.115054004e-08 1.596130814e-08 2.108000644e-08 2.94642474e-08 1.28959659e-08 2.045995666e-08 2.084158179e-08 2.572279098e-08 2.291657347e-08 1.8777577e-08 1.596520089e-08 3.045562029e-08 2.798937906e-08 2.701622167e-08 2.832891203e-08 3.092827885e-08 3.818449583e-08 3.959255572e-08 3.414354333e-08 4.126358129e-08 3.450438521e-08 3.393352644e-08 3.392410664e-08 4.203972974e-08 4.097285137e-08 3.934373143e-08 3.593594767e-08 5.156899845e-08 4.162825611e-08 4.339744049e-08 4.041224181e-08 4.446387889e-08 4.263099349e-08 4.590887009e-08 3.978996171e-08 3.619422831e-08 3.482810676e-08 3.615853975e-08 3.928063619e-08 3.803876461e-08 2.719834716e-08 3.464962289e-08 3.18823069e-08 2.908860179e-08 2.759432391e-08 2.323936688e-08 2.715195204e-08 2.392171174e-08 2.37774375e-08 2.363124296e-08 1.814721279e-08 1.595135771e-08 1.553122117e-08 1.321368152e-08 1.629927086e-08 9.649865605e-09 1.176385275e-08 7.998808607e-09 8.269736467e-09 4.921834334e-09 5.423345829e-09 4.081334967e-09 2.725225889e-09 8.354642219e-10 4.167145328e-10 8.65433227e-10 1.788484055e-10 2.307668603e-10 2.108166636e-11 3.123533494e-12 1.209493757e-12 9.083788844e-13 6.757363996e-15 2.079071504e-15 4.910343862e-16 4.009419579e-18 3.993966473e-18 4.019045793e-18 5.511962491e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.125068956e-19 3.018755e-25 3.030687156e-18 7.788862056e-17 8.887438656e-16 2.278306991e-15 2.758415617e-14 1.00194217e-13 5.448211715e-13 9.617212119e-12 1.546983979e-12 2.248024119e-10 6.433620594e-10 4.797696111e-10 5.645797909e-10 1.335370075e-09 2.799934221e-09 3.542819911e-09 6.520866837e-09 5.509604057e-09 8.632462415e-09 1.350917954e-08 1.002367025e-08 1.65147396e-08 1.251673166e-08 1.353690714e-08 1.287572793e-08 1.802152972e-08 1.687067371e-08 1.942786592e-08 2.095663714e-08 2.35273475e-08 1.93376829e-08 2.51770334e-08 2.718035926e-08 2.726222866e-08 2.946700369e-08 2.782531614e-08 3.318928177e-08 3.76026535e-08 3.496595804e-08 3.484683713e-08 3.817750203e-08 3.928437906e-08 4.356461236e-08 3.587774006e-08 3.888052264e-08 4.780956021e-08 4.195722437e-08 4.83043824e-08 4.658886553e-08 4.695024164e-08 4.913544621e-08 4.212602429e-08 4.347393362e-08 3.933714659e-08 4.255834012e-08 3.629194145e-08 3.55741737e-08 3.10954998e-08 3.919516435e-08 2.95243833e-08 3.325745728e-08 3.514837795e-08 2.960072163e-08 2.172440258e-08 2.318979546e-08 1.565215079e-08 2.079762315e-08 2.137424644e-08 1.917954716e-08 1.94137303e-08 2.187956743e-08 1.212315975e-08 1.297363262e-08 1.170694139e-08 1.824685243e-08 1.447423011e-08 1.485231698e-08 1.340743781e-08 1.932054233e-08 1.377073202e-08 2.014654478e-08 1.92278602e-08 1.737883155e-08 1.464472444e-08 1.252255932e-08 1.75612405e-08 1.097803698e-08 1.416614291e-08 7.639324411e-09 1.769642105e-08 1.799636031e-08 1.66607782e-08 1.760959748e-08 1.544957707e-08 1.823841883e-08 1.488934008e-08 1.468971173e-08 1.799947868e-08 1.537351078e-08 1.330303609e-08 2.663881145e-08 2.120608656e-08 1.754875717e-08 1.903932185e-08 2.182040443e-08 2.113315425e-08 1.289755005e-08 2.181020533e-08 3.064501556e-08 3.681576727e-08 2.725489263e-08 3.131947113e-08 3.17493473e-08 3.677228578e-08 3.648626836e-08 4.538394892e-08 5.100618476e-08 5.372372758e-08 4.186972852e-08 4.090917803e-08 4.832076917e-08 4.729849599e-08 4.326497092e-08 4.615875925e-08 4.342124374e-08 3.865324851e-08 3.823923766e-08 3.926900223e-08 3.78751049e-08 4.01671956e-08 3.473777502e-08 3.605547682e-08 3.370107898e-08 3.156928124e-08 3.34293135e-08 2.695456827e-08 2.530967052e-08 2.653112693e-08 2.788550236e-08 2.064502286e-08 2.595772643e-08 2.48021708e-08 2.310125957e-08 1.99641038e-08 1.823683504e-08 1.480160653e-08 1.522191973e-08 1.286785751e-08 1.337410179e-08 9.223729228e-09 9.986451798e-09 7.889127717e-09 7.117334375e-09 5.006468919e-09 6.075217467e-09 2.42748763e-09 5.506904923e-10 4.584184235e-10 5.055625049e-10 3.827694614e-10 2.771639885e-10 2.820607331e-11 3.875936674e-12 1.215967678e-12 3.941449779e-13 1.922638695e-13 2.371854297e-16 1.07948193e-15 3.298676096e-16 0 1.123805848e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.510017589e-19 1.739789334e-18 8.865485109e-17 1.102525595e-16 5.499333982e-15 1.817647166e-14 3.737493645e-13 2.228467611e-13 1.449139679e-12 2.794006447e-11 3.448473824e-10 7.282370916e-10 3.61656081e-10 5.151774555e-10 2.193782964e-09 2.732993439e-09 5.474689114e-09 5.965627622e-09 4.979993986e-09 7.246201295e-09 1.070390111e-08 9.28162105e-09 1.160890359e-08 1.270391516e-08 1.491791882e-08 1.44804462e-08 1.610938703e-08 2.178122154e-08 2.025670168e-08 2.384448535e-08 2.229897789e-08 2.221058352e-08 2.566379779e-08 3.038404067e-08 2.932040467e-08 3.657552447e-08 3.444694615e-08 3.138767584e-08 3.039802996e-08 3.872779942e-08 3.201356345e-08 3.805634692e-08 4.22191214e-08 3.478904282e-08 4.40610824e-08 3.565128284e-08 4.829275441e-08 4.073397176e-08 4.255129357e-08 4.282656295e-08 3.731837537e-08 4.218000414e-08 3.817370675e-08 3.827935025e-08 4.615439544e-08 3.879774874e-08 3.702459514e-08 4.096104093e-08 4.74437187e-08 4.477272558e-08 3.103091609e-08 2.282179937e-08 3.529751155e-08 3.340849348e-08 2.861490871e-08 2.803884085e-08 2.157260067e-08 2.112600872e-08 2.471933955e-08 2.101834844e-08 1.43348735e-08 2.889486492e-08 1.624602563e-08 2.032691047e-08 1.739412923e-08 2.10944605e-08 1.727313134e-08 1.502996536e-08 1.534841149e-08 1.819507832e-08 1.510676444e-08 2.083228617e-08 1.509184495e-08 1.897912545e-08 1.322687134e-08 1.080227569e-08 1.864409087e-08 1.963368496e-08 1.111442234e-08 1.929843066e-08 1.549172876e-08 1.278109653e-08 1.639094351e-08 1.856584557e-08 1.589216784e-08 1.91117702e-08 1.538059693e-08 1.750002054e-08 1.891141813e-08 2.22115236e-08 1.777808111e-08 1.833002249e-08 1.962246648e-08 2.715140377e-08 1.58249913e-08 2.149403084e-08 2.607297515e-08 2.481282514e-08 2.985760203e-08 3.245047221e-08 2.662330214e-08 3.035505298e-08 3.460329022e-08 4.332511838e-08 3.794603431e-08 4.768720903e-08 4.766450148e-08 2.904798281e-08 4.178479721e-08 3.973776644e-08 5.048307132e-08 5.043634972e-08 4.363070213e-08 4.482782044e-08 4.400568322e-08 4.242242232e-08 3.811647686e-08 5.018247347e-08 4.14338792e-08 3.662376926e-08 3.632284133e-08 3.546738253e-08 3.026155918e-08 3.601018452e-08 3.242244003e-08 3.308001359e-08 2.514598239e-08 2.629433277e-08 2.888653574e-08 2.608988661e-08 2.204204695e-08 2.247129106e-08 2.125472502e-08 1.975233891e-08 1.879190151e-08 1.475733354e-08 1.396537522e-08 1.884366113e-08 1.098864393e-08 1.394413372e-08 8.726525926e-09 9.98843726e-09 9.520787942e-09 7.766935541e-09 7.656699273e-09 3.411349426e-09 1.648580462e-09 1.63862173e-09 6.603118067e-10 1.988945709e-10 6.08312842e-10 3.084529481e-10 2.440750802e-11 3.510529958e-12 1.24970938e-13 2.809452181e-13 8.336152957e-14 1.160297582e-14 2.058307105e-15 4.491796618e-17 1.577565315e-17 1.969794101e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.920210491e-19 1.686694955e-18 2.687618966e-17 1.39828005e-17 1.406811712e-15 2.229429881e-14 2.227229529e-15 1.469523068e-13 1.121225553e-13 9.910964301e-13 1.461852878e-10 2.758786252e-10 1.689488476e-10 4.302030368e-10 7.453458604e-10 1.341105634e-09 2.986791137e-09 4.597994476e-09 5.447972705e-09 7.7551791e-09 6.388475658e-09 9.803513494e-09 1.098590668e-08 9.78164573e-09 1.366224494e-08 1.390062912e-08 1.688520481e-08 1.598943342e-08 2.107052493e-08 1.998038741e-08 1.8141181e-08 2.757596383e-08 2.251650726e-08 2.488020323e-08 3.04092141e-08 2.897611442e-08 3.035377065e-08 3.278131857e-08 3.271659885e-08 3.040287768e-08 3.498981594e-08 3.255999862e-08 3.151580572e-08 3.877785178e-08 4.322109156e-08 4.620876079e-08 4.505771787e-08 4.1217502e-08 4.669661981e-08 3.779525019e-08 5.359626529e-08 4.649314441e-08 4.246772658e-08 3.764789911e-08 4.312543277e-08 4.229570089e-08 4.102058231e-08 4.715540488e-08 3.047512244e-08 3.79106794e-08 3.123374874e-08 3.177013757e-08 3.881833058e-08 2.499189168e-08 2.310176996e-08 2.946591738e-08 3.008081737e-08 2.268157378e-08 1.591410781e-08 2.471049114e-08 1.591230996e-08 2.971259881e-08 1.74852071e-08 1.903315881e-08 1.85854373e-08 1.793379645e-08 1.375395035e-08 1.970652285e-08 1.308306407e-08 2.056501975e-08 1.36995561e-08 1.758388797e-08 1.348550952e-08 1.899116412e-08 1.485700858e-08 1.372730967e-08 1.590875971e-08 1.494625751e-08 1.711429372e-08 1.522004812e-08 1.882969839e-08 1.508434139e-08 1.608100659e-08 1.94050454e-08 1.779363879e-08 1.434067837e-08 1.502366656e-08 2.018312531e-08 2.124790305e-08 2.071449755e-08 1.048624565e-08 1.575252919e-08 2.241031629e-08 2.160933014e-08 1.865716993e-08 2.323187947e-08 2.419488793e-08 3.422238738e-08 2.282327476e-08 2.498087841e-08 3.082619515e-08 3.269541092e-08 3.988683713e-08 3.464196746e-08 4.635091112e-08 4.120685184e-08 3.858664006e-08 4.261110642e-08 4.029765309e-08 3.905538662e-08 3.995268224e-08 3.901361001e-08 4.584149329e-08 4.458469712e-08 4.407831067e-08 3.995685778e-08 4.259455867e-08 4.466189004e-08 5.13545094e-08 4.500011427e-08 4.323071338e-08 3.717569583e-08 3.609277493e-08 3.697253887e-08 2.998137418e-08 3.314920376e-08 3.288885684e-08 2.730352265e-08 3.240013262e-08 2.407482229e-08 2.579370802e-08 2.319113978e-08 2.390991841e-08 2.352078622e-08 1.790040813e-08 2.309815376e-08 1.904110266e-08 1.760388261e-08 1.372401687e-08 1.308025062e-08 1.209740619e-08 1.113546773e-08 1.141904732e-08 5.795480451e-09 7.882928816e-09 5.804741228e-09 3.832638126e-09 2.339083317e-09 1.878382805e-09 6.090506885e-10 1.253727382e-09 2.204268941e-10 4.92650052e-10 4.908192399e-11 1.816151284e-11 4.085604146e-12 3.637572476e-14 6.636630009e-14 3.953514673e-15 9.276560223e-16 1.83183267e-16 9.950392362e-18 3.413736229e-18 7.817625372e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.81975312e-22 7.169973963e-19 9.1217354e-18 9.364012229e-16 4.878532562e-15 2.204345587e-14 2.061928511e-13 5.874793461e-14 2.775050808e-11 2.418586064e-11 2.282952405e-10 5.792632603e-10 1.19601866e-10 4.136282184e-10 7.013239115e-10 1.393334905e-09 2.342419192e-09 4.156116352e-09 6.44466199e-09 6.928275092e-09 1.021029704e-08 1.183444579e-08 1.405210704e-08 1.681488381e-08 1.473231041e-08 1.541486551e-08 1.330365299e-08 1.694362052e-08 1.976032557e-08 2.100018005e-08 2.527599489e-08 2.660859006e-08 2.445160768e-08 2.526303143e-08 3.004796073e-08 3.137959334e-08 3.37978122e-08 3.536060143e-08 3.071622129e-08 3.581480236e-08 3.732854577e-08 4.097684235e-08 4.298204939e-08 3.491152898e-08 4.352226603e-08 4.003185195e-08 4.968395447e-08 4.023687674e-08 4.341165562e-08 3.65724285e-08 4.592721832e-08 4.082544518e-08 4.158673032e-08 3.910745196e-08 3.577243964e-08 4.320547314e-08 4.067078533e-08 3.506327751e-08 3.673920262e-08 3.166731955e-08 2.844051544e-08 3.416922159e-08 3.166332857e-08 2.553896045e-08 1.928636974e-08 3.715899674e-08 2.719056508e-08 1.461684164e-08 2.133947556e-08 1.789918208e-08 2.046139018e-08 1.944910908e-08 1.843642175e-08 1.667510845e-08 2.297018749e-08 1.321717946e-08 1.187803117e-08 1.475025514e-08 1.720227793e-08 1.073076335e-08 2.086796059e-08 1.879381583e-08 1.374779417e-08 2.409298145e-08 1.645826479e-08 1.22698363e-08 2.037825168e-08 1.014679435e-08 1.550630208e-08 7.159834619e-09 1.028676579e-08 1.651970349e-08 2.513802672e-08 1.793498695e-08 1.817339713e-08 1.381783948e-08 2.057138692e-08 1.932685807e-08 1.80765048e-08 1.667529917e-08 1.130946801e-08 2.381998106e-08 1.822301108e-08 2.105611534e-08 2.31121831e-08 2.178235693e-08 1.986345938e-08 3.00256477e-08 3.479711427e-08 1.817177459e-08 3.55864349e-08 3.290078531e-08 3.7172549e-08 3.521482153e-08 4.388881418e-08 4.353051938e-08 4.017595005e-08 3.552175082e-08 3.902696951e-08 4.144026087e-08 3.748784715e-08 4.380274022e-08 4.63000444e-08 4.820229469e-08 4.374966689e-08 4.011779375e-08 4.379984203e-08 3.905797669e-08 3.953897467e-08 3.631629649e-08 3.766757565e-08 4.077290477e-08 3.51805092e-08 3.298664731e-08 3.173446267e-08 2.839008037e-08 2.823688192e-08 3.040919161e-08 2.732905962e-08 2.32693164e-08 2.333551525e-08 2.687646897e-08 1.712469414e-08 1.975939288e-08 1.897521833e-08 1.826459437e-08 1.551567983e-08 1.139111695e-08 1.112166892e-08 1.239018445e-08 7.295712266e-09 9.307994719e-09 8.236214563e-09 5.711368521e-09 7.39864361e-09 4.633841842e-09 2.038051984e-09 2.273073697e-09 6.477821913e-10 6.493420891e-10 3.323995882e-10 1.447821933e-10 4.854011229e-11 5.626771622e-12 8.077253521e-13 7.924017087e-14 1.493849275e-15 2.839141174e-14 2.371030081e-15 5.076631012e-17 8.546128973e-17 1.667340977e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.555771919e-19 2.611028445e-18 3.408912501e-29 2.925492563e-17 2.240361783e-16 1.102929495e-16 2.685647905e-14 9.248495917e-15 1.501658858e-12 2.286138445e-11 7.899017727e-11 1.282055915e-10 5.508409737e-10 1.898123122e-10 1.623672196e-09 1.897704771e-09 3.919150729e-09 1.058375418e-09 4.330326936e-09 5.574933815e-09 6.169446417e-09 1.351406993e-08 1.16490541e-08 1.236013326e-08 1.161675328e-08 1.380704408e-08 1.924666941e-08 1.799506988e-08 2.328210051e-08 2.025180976e-08 2.073928295e-08 2.5667079e-08 2.45583943e-08 2.2455538e-08 2.914227035e-08 3.278984878e-08 3.11207578e-08 3.048973318e-08 2.914859632e-08 3.230137969e-08 3.599638767e-08 3.355296917e-08 3.462219173e-08 4.027919895e-08 4.70887962e-08 4.24160293e-08 4.179851065e-08 4.170840945e-08 3.999072636e-08 4.837884366e-08 4.77456697e-08 3.905180554e-08 4.416228148e-08 4.665815424e-08 4.026754897e-08 4.566709026e-08 4.613098462e-08 4.603886635e-08 4.007299376e-08 3.198379617e-08 2.831990442e-08 3.951437743e-08 3.107297759e-08 3.17199046e-08 2.746670268e-08 2.580135959e-08 2.742026037e-08 1.522959946e-08 1.660086353e-08 2.976066687e-08 2.100000321e-08 1.706746877e-08 2.196874022e-08 2.172595249e-08 2.017452885e-08 1.563012561e-08 1.595584258e-08 1.465507142e-08 1.677551207e-08 1.644790204e-08 1.157021425e-08 1.186533826e-08 1.31806098e-08 1.792711953e-08 1.775567639e-08 1.510540235e-08 1.339097387e-08 1.938908998e-08 1.349507922e-08 1.75011248e-08 1.395040193e-08 1.728189666e-08 1.786542153e-08 1.810946938e-08 1.423126946e-08 2.117938282e-08 1.761374088e-08 1.49489932e-08 1.280888101e-08 2.279008862e-08 2.75711442e-08 2.309017621e-08 2.053119185e-08 1.975814918e-08 2.512297335e-08 1.869387934e-08 2.138353994e-08 2.024310784e-08 2.784085083e-08 3.089117155e-08 3.30380661e-08 3.036570716e-08 4.269830613e-08 3.013272612e-08 4.537454471e-08 4.09661668e-08 4.190020549e-08 4.104892816e-08 4.333146534e-08 4.110788868e-08 4.085526213e-08 5.09354702e-08 3.947394842e-08 3.3623272e-08 4.646393491e-08 4.190954877e-08 4.174260321e-08 4.147683746e-08 4.159407938e-08 4.159230795e-08 3.924419643e-08 3.444971166e-08 3.869846108e-08 3.734372771e-08 3.159658931e-08 3.65656889e-08 3.118255609e-08 3.192997004e-08 2.79962801e-08 2.649837659e-08 2.61130531e-08 2.320848131e-08 2.683383242e-08 2.447232559e-08 2.132820643e-08 1.819399303e-08 1.720329275e-08 1.75729886e-08 1.693483362e-08 1.586361623e-08 1.320068826e-08 1.335487804e-08 8.462654217e-09 9.964986814e-09 6.829109519e-09 5.648385431e-09 5.051892324e-09 1.965108752e-09 1.189388522e-09 3.011313538e-10 7.026860378e-10 6.056581734e-10 3.32097166e-10 5.823064949e-11 5.297311152e-12 1.665285036e-12 1.144002772e-14 4.995811053e-14 8.435982349e-15 2.091099689e-16 2.819434706e-16 8.468900706e-18 4.020881475e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.942553975e-19 2.536096367e-17 1.385525309e-16 2.688711301e-16 3.211859723e-15 1.094927046e-13 4.136729004e-13 2.441997833e-12 2.01642482e-11 2.706832524e-10 3.172808407e-11 4.463033939e-10 5.69750041e-10 4.89930253e-10 6.977385929e-10 3.46107283e-09 4.533537207e-09 4.025095687e-09 4.989658257e-09 5.672142886e-09 1.031616341e-08 9.055048439e-09 1.191921347e-08 1.301981205e-08 1.34743162e-08 1.71835658e-08 1.464445339e-08 1.797753208e-08 2.125934609e-08 2.045976791e-08 2.238788191e-08 2.327286126e-08 2.282027529e-08 2.512837267e-08 2.538417688e-08 2.672902233e-08 3.681337539e-08 3.445241288e-08 3.392542149e-08 3.079147785e-08 3.848606911e-08 4.30953997e-08 3.764906908e-08 4.336934724e-08 4.402082856e-08 4.072192806e-08 3.770177806e-08 4.561601944e-08 4.582116836e-08 3.966951685e-08 4.551370678e-08 3.897234408e-08 5.45952441e-08 3.426323808e-08 4.541830151e-08 3.940196795e-08 3.867418878e-08 4.028054783e-08 3.932975818e-08 3.619819578e-08 3.671254579e-08 3.115658356e-08 3.234951444e-08 3.279171907e-08 3.080845989e-08 2.583799769e-08 1.390505114e-08 3.036307845e-08 1.830155136e-08 1.839437844e-08 2.250514824e-08 1.621804087e-08 2.453707199e-08 1.059544046e-08 1.559173864e-08 1.026343097e-08 1.447325309e-08 1.031778153e-08 1.666918891e-08 1.208927189e-08 1.301975595e-08 1.758695769e-08 1.375315721e-08 1.276759213e-08 1.578794928e-08 1.599447633e-08 1.823684998e-08 2.282767407e-08 1.395279001e-08 1.338747415e-08 1.656022676e-08 1.411147729e-08 1.666923112e-08 1.865841574e-08 1.712028763e-08 1.4372339e-08 1.492823348e-08 1.591033642e-08 1.870657769e-08 2.010241991e-08 1.599157835e-08 1.555547951e-08 1.531779917e-08 1.273517403e-08 1.722387151e-08 2.41641366e-08 2.153772647e-08 3.135870279e-08 2.945979696e-08 3.228214783e-08 4.4371379e-08 4.044321509e-08 3.880057891e-08 3.793369143e-08 4.294816651e-08 3.58821636e-08 3.943789069e-08 5.273875291e-08 4.681030475e-08 4.630217257e-08 4.325104716e-08 3.858725716e-08 4.118324156e-08 4.309576706e-08 3.69723811e-08 4.558284595e-08 4.540623271e-08 3.651599258e-08 3.854357274e-08 3.687744674e-08 3.967200777e-08 3.575957761e-08 3.265562366e-08 3.373819731e-08 2.865108531e-08 3.50708222e-08 2.871046586e-08 2.527504957e-08 2.527814195e-08 2.321486451e-08 3.069625711e-08 2.238328456e-08 2.202155015e-08 2.086512172e-08 2.094504248e-08 1.727758632e-08 1.405487969e-08 1.340453702e-08 1.364345819e-08 9.709807893e-09 9.602423366e-09 7.867582591e-09 1.088130599e-08 7.838511895e-09 4.536992827e-09 5.008413892e-09 1.962554561e-09 6.621669211e-10 3.827827271e-10 2.195078168e-10 8.380279335e-10 3.151255341e-10 7.883869519e-11 1.47251624e-11 2.694152862e-12 4.609262479e-13 4.51197982e-14 4.807580705e-15 8.840599528e-17 1.226586494e-16 3.358055922e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.295720791e-18 3.401269854e-18 1.332800275e-16 6.247404422e-16 4.226520879e-14 2.61437583e-14 3.284098584e-13 1.619804907e-12 7.090134851e-12 1.031099077e-11 4.308017965e-10 4.824895209e-10 6.170432934e-10 5.29499641e-10 1.139439532e-09 1.172359433e-09 3.904977849e-09 5.034232242e-09 8.570002887e-09 5.623750477e-09 1.052880521e-08 1.048886926e-08 9.098759267e-09 1.486827103e-08 1.286981971e-08 1.662892911e-08 1.678143513e-08 2.129651219e-08 2.132258063e-08 1.698168352e-08 2.172197533e-08 1.930284179e-08 2.260180331e-08 2.36979213e-08 2.911440021e-08 3.443786231e-08 3.116511228e-08 3.278531095e-08 3.393276965e-08 3.327524254e-08 3.43360047e-08 3.866829384e-08 3.635473811e-08 4.051120083e-08 3.928100923e-08 4.528320995e-08 4.454561556e-08 4.81565972e-08 3.886941461e-08 3.865579702e-08 4.219593112e-08 4.769566292e-08 4.025595301e-08 4.145121528e-08 3.296438958e-08 3.396883826e-08 3.605565791e-08 3.710387696e-08 3.448989203e-08 3.61434776e-08 3.339914773e-08 2.727234775e-08 2.783549361e-08 2.489486011e-08 2.469335517e-08 3.274613522e-08 2.556223256e-08 1.794698084e-08 1.808815673e-08 1.746104552e-08 1.819539542e-08 1.764200723e-08 1.801171325e-08 1.948984203e-08 1.231690969e-08 2.013425307e-08 1.625052902e-08 1.470288956e-08 1.096719623e-08 1.688862242e-08 1.47562225e-08 2.112033465e-08 1.750933956e-08 1.619870628e-08 1.543136116e-08 1.524785139e-08 1.10131846e-08 1.544659212e-08 1.508712264e-08 1.841728554e-08 1.218551e-08 1.862593782e-08 1.959665553e-08 1.497749054e-08 1.768897731e-08 1.538780174e-08 1.650471163e-08 1.845099109e-08 1.468504758e-08 1.231377083e-08 1.569515744e-08 2.109460109e-08 2.03276728e-08 2.32259254e-08 1.654119194e-08 2.078965028e-08 3.086383025e-08 2.860655941e-08 2.796929925e-08 2.492886209e-08 2.606200414e-08 3.844777916e-08 3.303967363e-08 3.786286244e-08 4.228914511e-08 3.361004727e-08 3.744555712e-08 4.179770899e-08 4.383332869e-08 3.786021074e-08 4.291656325e-08 4.064866257e-08 4.310592088e-08 4.240963145e-08 4.417021117e-08 4.878579879e-08 4.281730882e-08 4.191590367e-08 3.82349032e-08 4.161862487e-08 4.323619418e-08 3.921790537e-08 4.101820084e-08 3.716980222e-08 3.487696531e-08 3.512739209e-08 3.210398212e-08 3.224896014e-08 2.772338038e-08 2.627567382e-08 1.713132216e-08 2.479220556e-08 2.450237268e-08 2.341259519e-08 1.704938508e-08 1.779595299e-08 1.444267578e-08 1.582622474e-08 1.32224836e-08 1.372909228e-08 9.963489966e-09 7.983963532e-09 7.831562685e-09 7.298623971e-09 2.782778175e-09 3.415364337e-09 2.669717726e-09 1.482468164e-09 6.999564207e-10 6.486840927e-10 5.902677497e-10 3.287925063e-10 2.942724602e-10 3.31148809e-11 1.30655465e-12 1.247219062e-13 3.940203205e-14 5.871391285e-16 1.925966303e-16 8.004531022e-18 4.302345167e-34 8.708536672e-18 6.54946558e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.632979012e-18 4.136775673e-19 7.657770973e-17 1.99038912e-16 4.383261442e-17 2.299118411e-15 1.354983807e-14 4.852681604e-13 3.538088337e-12 3.673644779e-11 5.89945773e-11 6.83620807e-11 4.1527625e-10 7.603434306e-10 4.794080767e-10 1.736509085e-09 2.937240069e-09 4.481911415e-09 4.494368847e-09 6.529741326e-09 8.063917322e-09 1.015507189e-08 1.285565874e-08 9.792446317e-09 1.30510509e-08 1.346249803e-08 1.64571643e-08 1.904650834e-08 1.866417442e-08 2.050873537e-08 2.452057724e-08 1.678384201e-08 2.155725988e-08 2.195806916e-08 2.838857341e-08 2.607708889e-08 2.467631456e-08 3.526816589e-08 3.192602627e-08 3.524910744e-08 3.773207254e-08 3.224619982e-08 3.215962963e-08 4.076411752e-08 3.774710519e-08 3.652724728e-08 4.224296798e-08 4.248620564e-08 4.196288894e-08 4.580003827e-08 4.667053511e-08 4.739815094e-08 3.810923342e-08 4.889185129e-08 4.308215179e-08 4.34384221e-08 3.911821522e-08 4.336101736e-08 4.056421062e-08 2.713102847e-08 3.850807556e-08 3.751077641e-08 2.830856172e-08 3.891899074e-08 2.516296028e-08 2.318424775e-08 2.938404963e-08 2.923441753e-08 2.777317867e-08 1.782962237e-08 1.676215093e-08 1.229884098e-08 2.373409849e-08 1.399610542e-08 1.620117359e-08 2.004119942e-08 1.904380847e-08 1.591972596e-08 1.841026888e-08 1.908551017e-08 1.638822312e-08 1.618385011e-08 1.643429204e-08 1.726494513e-08 1.147317002e-08 1.364069444e-08 1.221088144e-08 8.206574933e-09 1.459216864e-08 2.204302005e-08 8.957314177e-09 1.605124926e-08 1.385394732e-08 2.146697868e-08 1.825237607e-08 1.40757851e-08 1.265615613e-08 1.697487252e-08 1.556907716e-08 1.90035169e-08 1.956768551e-08 2.164170653e-08 2.195552807e-08 1.896867481e-08 2.154689048e-08 2.039053505e-08 2.764239249e-08 2.483881467e-08 2.416867196e-08 3.191531608e-08 2.467134773e-08 3.556590989e-08 2.45268131e-08 3.111115017e-08 4.082046173e-08 3.957881642e-08 3.989583168e-08 2.746484972e-08 4.384887906e-08 4.553629566e-08 4.706378372e-08 3.569477011e-08 4.745494278e-08 4.771160361e-08 4.631247876e-08 4.354365412e-08 3.854556152e-08 4.236779464e-08 4.457735694e-08 3.902609996e-08 3.912349892e-08 3.666475441e-08 3.620149768e-08 3.628021297e-08 3.605789038e-08 3.287444486e-08 3.493410928e-08 2.756812177e-08 2.947127734e-08 2.638836552e-08 2.442410923e-08 2.235565516e-08 2.459213703e-08 1.831420189e-08 1.843579167e-08 2.0343567e-08 1.614636306e-08 1.519026629e-08 1.480481539e-08 1.493327275e-08 1.388876662e-08 1.232910721e-08 1.073845499e-08 8.028579971e-09 5.956437448e-09 5.890478995e-09 4.40914504e-09 2.202416337e-09 2.172565976e-09 6.507815719e-10 7.981643437e-10 3.542267955e-10 2.664737258e-10 7.371670938e-11 1.617212018e-11 1.293113791e-12 1.227556595e-12 1.923797192e-14 6.185246507e-15 3.309729369e-15 1.157781626e-18 6.732714607e-18 1.147258364e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.36936331e-18 5.827220135e-18 8.042650745e-18 2.20047534e-17 2.849504406e-14 5.526596217e-15 1.388354338e-13 4.798842467e-13 1.293163891e-11 2.835940821e-11 7.286943188e-11 2.140379809e-10 1.469483623e-09 9.452826874e-10 2.170882449e-09 2.711331881e-09 5.298465174e-09 4.296204515e-09 7.507150777e-09 7.02769216e-09 7.386373786e-09 1.048665584e-08 1.140979682e-08 1.437324492e-08 1.264384424e-08 1.563460372e-08 1.793018536e-08 2.002127686e-08 2.458463338e-08 1.930663402e-08 1.909422992e-08 3.003213269e-08 2.603414744e-08 2.533878242e-08 2.72377715e-08 2.945532882e-08 3.514877666e-08 3.109856152e-08 3.033971691e-08 3.561389018e-08 3.619641121e-08 3.90001173e-08 4.383027192e-08 3.470066816e-08 3.703701741e-08 4.526735101e-08 3.955750873e-08 3.866307303e-08 4.168905609e-08 3.265832516e-08 3.793747789e-08 4.884773942e-08 3.623464118e-08 4.044315182e-08 4.060194623e-08 3.985211181e-08 3.970716177e-08 3.325021494e-08 2.541113489e-08 3.635777273e-08 3.680599464e-08 3.659629038e-08 2.3857355e-08 2.802454496e-08 3.138888015e-08 2.555744817e-08 2.122704289e-08 2.045867536e-08 1.970370311e-08 2.550872425e-08 1.735992376e-08 1.600747909e-08 1.133090337e-08 1.5971262e-08 1.693870179e-08 1.319962232e-08 1.048056743e-08 1.701638348e-08 2.112347297e-08 1.886721156e-08 1.684564145e-08 1.323882372e-08 2.329403646e-08 1.953497354e-08 1.516109225e-08 8.769618472e-09 1.543225808e-08 1.677588213e-08 8.223950568e-09 1.813192035e-08 1.538280803e-08 1.549572026e-08 1.076442732e-08 1.39469022e-08 1.432049177e-08 1.628737996e-08 1.810434282e-08 1.589978645e-08 1.455567697e-08 1.553956398e-08 1.692874654e-08 1.922463201e-08 2.605696571e-08 2.309285931e-08 2.20531943e-08 3.03312345e-08 2.932352535e-08 1.564142192e-08 3.115500537e-08 3.207079905e-08 3.164753501e-08 3.467435933e-08 4.562099493e-08 4.013973502e-08 4.451591451e-08 3.294065848e-08 4.35842149e-08 3.683774718e-08 4.429400001e-08 3.970433302e-08 4.860183764e-08 4.100327759e-08 5.474305171e-08 4.968570034e-08 4.389468376e-08 5.019989146e-08 4.743588004e-08 4.054819038e-08 4.097074314e-08 3.583730336e-08 3.749995061e-08 3.72745323e-08 3.671451766e-08 3.272881178e-08 3.361668458e-08 3.378003239e-08 2.742053824e-08 3.138991944e-08 2.946528727e-08 2.664368254e-08 2.291690133e-08 2.221874168e-08 2.010117751e-08 2.222347383e-08 1.957289923e-08 1.807701268e-08 1.645947062e-08 1.506150648e-08 1.64612095e-08 1.119335628e-08 9.577223869e-09 9.812629947e-09 6.455129133e-09 5.385064448e-09 6.023176621e-09 3.410142992e-09 2.463656192e-09 1.2515507e-09 1.286277017e-09 2.697494251e-10 5.909096861e-10 2.440777851e-10 4.129571711e-11 1.761972364e-11 1.319912489e-12 5.537350173e-13 7.094355414e-15 7.697059451e-16 8.596676102e-16 3.874138897e-17 2.960161341e-18 1.537748877e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.449751269e-18 2.691950736e-23 7.160415673e-17 1.387702988e-16 3.189529547e-15 8.329550365e-15 1.741639074e-14 7.47801649e-14 1.800554246e-12 5.593289963e-12 2.817983418e-11 2.694950259e-10 7.57842262e-10 5.721196759e-10 4.492216175e-10 8.455808446e-10 1.90067782e-09 4.360378437e-09 4.660186305e-09 7.87947219e-09 8.907829064e-09 9.306037715e-09 1.102098588e-08 1.228080716e-08 1.206176507e-08 1.517184121e-08 2.0687108e-08 1.624217755e-08 1.764061876e-08 1.816428528e-08 2.227258371e-08 2.33361864e-08 2.206156212e-08 2.756920974e-08 2.763513318e-08 2.513001533e-08 3.730446542e-08 2.802651289e-08 3.250847557e-08 3.383369709e-08 4.032142739e-08 3.244166237e-08 4.324820632e-08 3.925201646e-08 4.668759327e-08 4.031428168e-08 4.141081386e-08 3.966036362e-08 4.023224316e-08 3.725596667e-08 3.238125021e-08 3.732988545e-08 3.596061311e-08 5.510084108e-08 4.237203739e-08 4.638962175e-08 4.060594273e-08 5.082130116e-08 4.354527682e-08 4.104976938e-08 3.892950931e-08 2.93821719e-08 3.777582403e-08 2.363057846e-08 2.649981183e-08 3.166626246e-08 2.475832936e-08 1.797777379e-08 1.63534818e-08 2.690331695e-08 1.50981729e-08 2.120262386e-08 1.414253648e-08 1.674745716e-08 1.459144458e-08 1.676744658e-08 1.495407703e-08 1.944014307e-08 1.909110264e-08 1.114928238e-08 1.359508318e-08 6.247669866e-09 1.430889851e-08 1.976020149e-08 1.628717042e-08 1.220542555e-08 1.973502206e-08 1.659823674e-08 1.996950373e-08 1.287368297e-08 1.174779672e-08 1.211425994e-08 1.301129797e-08 1.721848863e-08 1.42623914e-08 1.508393221e-08 1.733445138e-08 1.497386981e-08 1.884483054e-08 1.888030508e-08 2.04165579e-08 1.834267718e-08 2.219449508e-08 1.996706484e-08 2.483588728e-08 1.666703255e-08 2.413290549e-08 2.495641536e-08 2.634724796e-08 4.000065814e-08 3.583898658e-08 3.803972682e-08 3.367107815e-08 4.466025574e-08 3.507279152e-08 4.221296024e-08 3.805041157e-08 4.285387968e-08 3.89272998e-08 4.350031768e-08 4.016021685e-08 4.21403618e-08 4.647185672e-08 4.817104576e-08 4.226766651e-08 4.603508263e-08 4.681722469e-08 4.446274286e-08 4.724067797e-08 3.609308856e-08 3.874833497e-08 3.822859551e-08 3.938343212e-08 3.511811748e-08 2.808367796e-08 3.201891865e-08 3.358304428e-08 2.917323231e-08 2.240953958e-08 2.499994598e-08 2.848123603e-08 2.621326927e-08 2.447586476e-08 1.904686051e-08 1.799839387e-08 1.686777517e-08 1.561674925e-08 1.505188415e-08 1.744965619e-08 1.34288254e-08 1.306024679e-08 1.141062518e-08 7.81448526e-09 6.50605421e-09 5.894833062e-09 4.714582255e-09 3.538741682e-09 3.065123177e-09 1.524151419e-09 5.5183941e-10 3.340956362e-10 1.704369445e-10 7.405714492e-11 5.549894307e-11 1.238309167e-11 7.68006273e-13 7.081664128e-14 2.879930692e-15 1.834011636e-15 9.480019115e-16 1.493265816e-17 2.429979622e-18 3.22138223e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.474614063e-17 3.66659725e-17 1.339992903e-15 2.668001735e-14 2.933367008e-15 3.465944723e-14 3.911177263e-13 3.561647497e-11 9.955264878e-12 3.90280732e-10 1.860895214e-10 4.437195781e-10 3.670959354e-10 2.956709111e-09 3.424221418e-09 3.454448606e-09 5.05656855e-09 5.377720603e-09 8.728492184e-09 9.571327765e-09 9.079101578e-09 1.025739106e-08 1.043965848e-08 1.472266629e-08 1.247820042e-08 1.875708929e-08 1.88182505e-08 2.183084712e-08 2.162817499e-08 2.320427493e-08 2.404643984e-08 2.480298558e-08 2.909460541e-08 2.499951765e-08 3.224059181e-08 3.448107295e-08 3.071760902e-08 3.340157962e-08 2.969505856e-08 3.545366838e-08 3.95700164e-08 3.701774424e-08 4.34231043e-08 3.710051921e-08 3.881340267e-08 4.287841405e-08 4.084931846e-08 4.453914215e-08 4.013380197e-08 4.140021258e-08 4.460702325e-08 3.930182005e-08 3.430262658e-08 3.409819204e-08 3.471238541e-08 4.582115939e-08 3.707060082e-08 3.650956701e-08 3.317977652e-08 3.456865302e-08 3.219977189e-08 2.347606765e-08 3.22268703e-08 2.63255679e-08 2.061698996e-08 2.511560449e-08 1.762463801e-08 2.019420658e-08 1.778601568e-08 1.738619479e-08 1.486860182e-08 2.266375114e-08 2.335963903e-08 1.408661535e-08 1.115257249e-08 2.078180016e-08 1.518813973e-08 1.29006825e-08 1.323951867e-08 1.762159253e-08 1.67111956e-08 1.750256928e-08 1.248126317e-08 9.96960923e-09 1.188945293e-08 1.113213669e-08 1.362135806e-08 1.30169198e-08 1.253770262e-08 1.445068947e-08 1.89856231e-08 1.528692587e-08 1.951442787e-08 1.496537508e-08 1.182732277e-08 1.242479924e-08 1.448300691e-08 1.777574425e-08 2.313230982e-08 2.491898338e-08 1.944276285e-08 1.586722076e-08 1.939330752e-08 2.171104938e-08 2.268777527e-08 2.891589859e-08 2.393450631e-08 2.986725969e-08 2.936927321e-08 2.632861776e-08 3.173191283e-08 3.744694505e-08 3.624354587e-08 3.535382032e-08 3.806427884e-08 4.158463281e-08 4.436217589e-08 3.818135475e-08 5.171116974e-08 3.715083256e-08 5.201083657e-08 4.473890202e-08 4.57515256e-08 3.770178457e-08 4.143783436e-08 4.474702318e-08 4.225003508e-08 4.64496814e-08 3.963118507e-08 3.429344084e-08 3.332190549e-08 3.662065796e-08 3.466259375e-08 3.282118467e-08 2.784458085e-08 2.714603692e-08 3.166671573e-08 2.996751963e-08 2.445595144e-08 2.50655183e-08 2.375767503e-08 2.403942642e-08 2.179343678e-08 2.160843481e-08 1.700063182e-08 1.748254727e-08 1.576847381e-08 1.193594053e-08 1.161379229e-08 8.953536192e-09 8.201114497e-09 7.977777168e-09 6.840535361e-09 2.647213132e-09 3.517071176e-09 2.578959047e-09 9.94661909e-10 6.601669034e-10 6.504654349e-10 9.611636235e-10 1.383863377e-10 3.563749951e-11 7.804515138e-12 9.314285568e-13 1.88169325e-13 4.211456514e-15 3.058709886e-15 3.722916594e-16 2.547404367e-17 6.605371153e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.591990613e-35 2.560549479e-18 7.955226747e-19 6.033934734e-18 2.590117579e-16 8.94622734e-15 2.67386049e-14 5.102306026e-13 4.125275733e-12 2.046260852e-12 9.741044297e-11 1.721109156e-10 2.484493653e-10 4.438660369e-10 2.451808605e-10 1.052231075e-09 3.000981687e-09 4.276143854e-09 5.312773342e-09 6.418513431e-09 6.127571147e-09 7.004868077e-09 9.568649347e-09 1.252040872e-08 1.354410809e-08 1.665468376e-08 1.572540987e-08 1.769219077e-08 1.583584274e-08 1.904203593e-08 1.601339667e-08 2.386942152e-08 2.258247704e-08 2.80367355e-08 2.867007958e-08 2.563013226e-08 3.640941203e-08 3.429632193e-08 3.468617463e-08 3.794033007e-08 4.010597413e-08 3.542438928e-08 3.52143681e-08 3.992909872e-08 4.007025104e-08 4.198230562e-08 3.893721501e-08 4.158496453e-08 4.43872899e-08 4.657806153e-08 5.174611708e-08 4.890658432e-08 4.438384378e-08 3.362967813e-08 3.725185654e-08 3.977865859e-08 4.538771633e-08 3.524009935e-08 3.067958571e-08 2.809167233e-08 3.952551279e-08 3.614020873e-08 2.988455954e-08 3.232092243e-08 2.961659377e-08 2.948633793e-08 3.195375077e-08 2.353580853e-08 2.44579487e-08 2.060440076e-08 1.736062025e-08 2.372450535e-08 1.937549887e-08 1.942457137e-08 1.721828667e-08 1.793337763e-08 2.464983439e-08 1.412071465e-08 1.380649593e-08 2.043145717e-08 1.63997968e-08 1.706740645e-08 1.523182056e-08 1.160245141e-08 1.795250528e-08 1.525173811e-08 1.332558003e-08 2.321253068e-08 1.256111633e-08 1.883430418e-08 1.935761343e-08 1.386779718e-08 1.234323662e-08 1.964499038e-08 1.902888133e-08 1.741719762e-08 1.487166028e-08 1.679605534e-08 1.934611208e-08 1.922718715e-08 1.60866917e-08 1.537574957e-08 2.233586835e-08 1.403754476e-08 1.903252619e-08 2.184061883e-08 2.755401201e-08 2.422515216e-08 2.985977289e-08 3.755828323e-08 2.409094147e-08 3.654665666e-08 3.31466937e-08 3.767269633e-08 3.263519194e-08 3.877706571e-08 3.198705567e-08 4.426301861e-08 3.759316151e-08 4.447612718e-08 3.575778301e-08 4.203932817e-08 4.451042809e-08 4.91010784e-08 4.497768134e-08 3.79416383e-08 4.323826506e-08 4.748534388e-08 3.827431291e-08 3.96791319e-08 4.220740421e-08 4.157023423e-08 4.035871427e-08 3.215052434e-08 3.55753735e-08 2.979056683e-08 3.461803725e-08 2.8018924e-08 2.848466644e-08 2.81539762e-08 2.410295505e-08 2.518771444e-08 2.664960427e-08 2.164170242e-08 1.745047003e-08 2.049343407e-08 1.818521095e-08 1.385896496e-08 1.329715371e-08 1.16817029e-08 1.251226231e-08 1.135403526e-08 1.002302239e-08 8.211221301e-09 7.74237754e-09 4.888089134e-09 4.517973681e-09 2.305188462e-09 1.275627425e-09 1.053270964e-09 3.305165337e-10 4.267707968e-10 2.326858162e-10 1.16279716e-11 8.424370966e-12 3.062279571e-12 7.296888604e-14 1.111808903e-13 2.486680855e-14 9.309269102e-16 8.342986291e-17 9.45852532e-21 5.231311749e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.778569768e-19 3.361379776e-18 9.91349466e-18 6.91525894e-17 2.224988967e-16 9.044378524e-15 4.741644628e-15 3.033816903e-13 4.862001686e-13 1.928628028e-11 9.881634853e-11 1.832401659e-10 2.626482988e-10 5.068330634e-10 1.246321912e-10 1.306843761e-09 2.387101025e-09 3.451400093e-09 4.219373262e-09 5.790576186e-09 7.733568967e-09 1.024296549e-08 1.103833924e-08 1.00801089e-08 1.540679698e-08 1.20015087e-08 1.767995212e-08 1.696302261e-08 1.776614625e-08 2.217030189e-08 2.298612494e-08 2.469609224e-08 2.636545616e-08 3.021070514e-08 3.109719426e-08 2.663011317e-08 2.465172178e-08 3.237709476e-08 3.527791886e-08 3.313058169e-08 3.028714723e-08 3.543952119e-08 4.107748264e-08 3.600859736e-08 3.975555278e-08 4.237035749e-08 4.225793919e-08 4.554681502e-08 4.010568999e-08 4.597125369e-08 4.484736359e-08 5.043244498e-08 4.26768579e-08 3.964164409e-08 4.468158527e-08 4.616884112e-08 4.045677111e-08 3.628803697e-08 4.0131087e-08 3.89368184e-08 4.271844614e-08 3.151174215e-08 2.425275889e-08 3.129647491e-08 3.508217982e-08 2.988566927e-08 2.108661044e-08 2.810314903e-08 2.034106393e-08 2.393266856e-08 2.051196456e-08 1.878662734e-08 2.702516473e-08 1.382521075e-08 2.157196096e-08 1.428631565e-08 1.466060512e-08 1.8928047e-08 2.161024233e-08 2.110266317e-08 1.816830531e-08 1.52943792e-08 1.566498604e-08 1.102046637e-08 1.209632681e-08 1.86693596e-08 9.732986365e-09 1.712316489e-08 1.554860747e-08 1.78921649e-08 1.427697797e-08 1.817392945e-08 2.116441686e-08 1.436752823e-08 1.044089902e-08 1.691213046e-08 1.469838264e-08 1.559246627e-08 2.202561476e-08 1.798054036e-08 2.028877169e-08 1.575407123e-08 2.076464019e-08 1.585656151e-08 1.335023566e-08 1.828481101e-08 2.577066512e-08 3.091917007e-08 2.794157152e-08 3.394145645e-08 3.388612839e-08 3.694383545e-08 4.064632868e-08 3.586577492e-08 4.583925838e-08 3.765448205e-08 2.729872866e-08 3.743087493e-08 4.247660291e-08 3.768284816e-08 3.899928115e-08 4.959151089e-08 4.295354205e-08 4.262703264e-08 4.574223565e-08 4.311988627e-08 4.406348613e-08 4.407237557e-08 3.887183607e-08 3.866314656e-08 3.718227348e-08 4.211990671e-08 3.719726995e-08 3.492998424e-08 3.415878649e-08 3.45551903e-08 3.012568737e-08 3.098111894e-08 2.76977499e-08 2.49981858e-08 2.40423077e-08 2.658286991e-08 2.217038178e-08 2.149794126e-08 1.736865354e-08 1.727751079e-08 1.695402789e-08 1.303428322e-08 1.288047011e-08 1.524178153e-08 8.749042165e-09 9.081179781e-09 9.323169134e-09 7.492871252e-09 7.148843699e-09 5.304031745e-09 2.340957163e-09 2.962304011e-09 2.104305055e-09 1.054964451e-09 8.306601185e-10 5.724335248e-10 4.180993077e-10 7.10674923e-12 3.80908903e-12 1.121410177e-12 1.171187566e-12 8.794982141e-14 5.286646391e-16 8.45814977e-16 8.36932553e-17 1.140376797e-18 1.723265046e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.822821058e-19 1.902431425e-17 9.614348803e-17 4.760547809e-17 4.539270647e-15 6.895563646e-14 1.216614673e-12 1.555714944e-12 1.721373338e-12 1.169748254e-11 9.487837289e-11 9.979195973e-10 7.312369896e-10 3.468497292e-10 1.802074602e-09 1.676928162e-09 4.233123507e-09 4.078680839e-09 5.160485074e-09 5.488542053e-09 6.797458248e-09 9.941552875e-09 1.371210807e-08 1.550842853e-08 1.755432239e-08 1.643374035e-08 1.847239524e-08 1.731809371e-08 1.843331798e-08 2.258379704e-08 1.995895449e-08 2.142456714e-08 2.403965679e-08 2.740969267e-08 3.076644348e-08 2.799641444e-08 2.974814083e-08 3.368256084e-08 3.462959707e-08 2.739904598e-08 3.84366285e-08 3.856246007e-08 4.308918964e-08 3.90990957e-08 4.845658733e-08 4.312720171e-08 4.081855227e-08 5.037838942e-08 3.729174541e-08 4.464283885e-08 3.948453506e-08 4.878681899e-08 5.117902991e-08 5.042874096e-08 3.812502349e-08 3.705829967e-08 4.805859709e-08 3.757908063e-08 3.29645244e-08 5.443117619e-08 3.779986476e-08 3.051238601e-08 2.920405265e-08 1.966997051e-08 2.125065651e-08 2.12304929e-08 1.908513281e-08 1.974441658e-08 1.81123293e-08 2.275363308e-08 1.916427401e-08 1.788125394e-08 1.564909476e-08 2.263948344e-08 1.854128471e-08 1.663995972e-08 1.670269287e-08 2.149347955e-08 1.364665731e-08 1.574024819e-08 1.254336198e-08 1.895226178e-08 1.612127598e-08 1.611297824e-08 1.57058879e-08 1.420283769e-08 2.393035196e-08 1.326061552e-08 1.739159274e-08 1.193461911e-08 1.693433751e-08 1.916359978e-08 1.926394899e-08 1.203501679e-08 1.470302645e-08 1.774878219e-08 1.602521078e-08 1.701304824e-08 1.883861117e-08 1.691879778e-08 1.566849257e-08 2.944288456e-08 1.226913132e-08 2.157496333e-08 2.013122064e-08 2.943155018e-08 3.179587628e-08 1.716387642e-08 2.727845043e-08 3.350208995e-08 3.485086039e-08 3.757202282e-08 3.626948075e-08 4.680765192e-08 3.598990697e-08 4.324260878e-08 4.079322209e-08 4.42968046e-08 3.398984158e-08 3.696006497e-08 4.182191222e-08 5.343156966e-08 4.642910144e-08 4.780078685e-08 3.886988569e-08 4.318908622e-08 3.820194355e-08 4.984176743e-08 4.087163433e-08 4.014234395e-08 3.671844845e-08 3.69487565e-08 3.605458447e-08 3.379848722e-08 3.022849999e-08 3.384289208e-08 3.142711018e-08 3.003238329e-08 2.507926528e-08 3.004990835e-08 2.276289535e-08 2.055737224e-08 1.857472938e-08 2.517312097e-08 1.609478269e-08 1.592144998e-08 1.635368715e-08 1.668076062e-08 1.372134064e-08 1.140013805e-08 1.090242423e-08 9.099083233e-09 7.750180456e-09 5.671103276e-09 5.81614712e-09 2.739536481e-09 2.770839675e-09 9.161808738e-10 3.18550768e-10 5.159829364e-10 4.76741336e-10 2.826816865e-10 3.165622661e-11 8.066383772e-12 1.79849433e-12 1.977696639e-13 5.041464067e-15 7.326494842e-15 1.635847429e-16 7.707465548e-18 3.469871865e-17 1.551246932e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.659215909e-19 3.86200349e-17 1.247308861e-16 7.555227231e-16 4.303085142e-16 9.654439209e-14 1.290788981e-13 6.752721519e-13 1.593230276e-12 1.944621976e-11 2.963571322e-10 4.190710776e-11 4.581020305e-10 5.984631962e-10 1.935927683e-09 2.725735552e-09 4.607017962e-09 6.337194958e-09 5.326254622e-09 8.393939646e-09 9.198073358e-09 1.110209299e-08 1.205846749e-08 1.159577515e-08 1.590567586e-08 1.712194774e-08 1.62614504e-08 1.611907286e-08 1.87497275e-08 2.555864795e-08 2.050640206e-08 2.48051573e-08 2.987046374e-08 2.655701484e-08 2.660493841e-08 3.0879073e-08 3.096698075e-08 3.015890928e-08 3.660748858e-08 3.590565008e-08 3.699417674e-08 2.983189927e-08 3.63328415e-08 3.274194892e-08 4.29343111e-08 4.354016118e-08 4.651174037e-08 5.318883584e-08 4.44856354e-08 5.433163386e-08 4.170312362e-08 5.28132894e-08 4.061255167e-08 4.65629856e-08 4.74376303e-08 4.242704462e-08 3.295401568e-08 4.012533843e-08 5.070099526e-08 3.625507911e-08 3.649053221e-08 3.775463907e-08 2.764625504e-08 3.712498899e-08 2.803433067e-08 3.540803523e-08 1.686664582e-08 2.068921882e-08 2.644040332e-08 1.85226666e-08 1.534605922e-08 1.551680451e-08 1.189546399e-08 1.071789634e-08 1.187894043e-08 2.128305755e-08 1.718991791e-08 1.940649367e-08 2.474884486e-08 2.064676977e-08 2.176277315e-08 1.289134368e-08 1.737411579e-08 1.727601102e-08 1.109167985e-08 1.706417957e-08 1.486958461e-08 1.081995712e-08 1.828429005e-08 1.224071681e-08 1.077124906e-08 1.615825335e-08 1.573379417e-08 2.033697149e-08 1.732700335e-08 1.430665544e-08 1.471067365e-08 2.314380191e-08 2.216398509e-08 9.064541339e-09 1.828451285e-08 1.209943207e-08 1.200314893e-08 3.091192667e-08 2.60163499e-08 2.848848588e-08 2.048710871e-08 2.291292578e-08 2.510986431e-08 2.415894674e-08 3.386324995e-08 3.122675851e-08 3.814056912e-08 3.285907508e-08 3.168256071e-08 3.128123711e-08 3.368429982e-08 4.611781794e-08 4.763899966e-08 4.235263608e-08 4.288525743e-08 4.19950738e-08 4.605258519e-08 4.714301728e-08 4.083550949e-08 3.739569854e-08 3.890208026e-08 3.665325956e-08 4.036736358e-08 4.510869245e-08 3.357570946e-08 3.635811156e-08 3.627964057e-08 2.90687087e-08 3.442599878e-08 3.25984544e-08 2.93276466e-08 2.709561259e-08 2.494802541e-08 2.482505184e-08 2.228197593e-08 1.892822895e-08 1.926042124e-08 1.807595497e-08 1.767934092e-08 1.770676594e-08 1.862770082e-08 1.644896667e-08 1.205956266e-08 1.44030144e-08 1.154030374e-08 9.996247554e-09 7.340776648e-09 4.752309969e-09 3.575277708e-09 3.932514399e-09 3.513544627e-09 9.462458325e-10 5.124754205e-10 3.721925754e-10 7.066353151e-10 3.109576122e-10 6.512323812e-11 1.202198019e-11 8.090329198e-13 1.626795809e-13 2.542149061e-14 5.966815074e-15 3.473760015e-15 8.300366572e-17 4.93923349e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.289220961e-24 6.066423656e-18 3.268231923e-17 1.29001111e-15 1.369987169e-14 3.809955068e-15 1.861543773e-13 4.454075242e-13 1.459664974e-11 5.281105194e-11 3.18682205e-10 1.755206793e-10 7.404102103e-10 7.258502688e-10 1.45094108e-09 3.550478019e-09 3.516800677e-09 3.509127128e-09 6.944917251e-09 8.033686079e-09 7.807774005e-09 9.728679694e-09 1.025794351e-08 1.367025553e-08 2.039894389e-08 1.752810813e-08 1.719063263e-08 1.683411464e-08 1.766617926e-08 2.158012978e-08 2.757084226e-08 2.365954771e-08 2.612528259e-08 2.728514624e-08 2.664099907e-08 2.803186468e-08 2.507782493e-08 2.795772834e-08 3.040399006e-08 3.408961384e-08 3.567834685e-08 3.931266289e-08 4.019472746e-08 4.431132145e-08 4.519435107e-08 4.435232376e-08 4.545701203e-08 4.194913967e-08 4.377730136e-08 4.443353939e-08 4.603974839e-08 4.783914987e-08 3.965808213e-08 4.038402164e-08 4.314852033e-08 4.134344606e-08 4.859420288e-08 3.679866643e-08 3.848920329e-08 3.368875952e-08 3.340419874e-08 3.848404269e-08 2.800002375e-08 3.767229437e-08 2.753774227e-08 2.842176201e-08 2.148295082e-08 2.090895793e-08 1.61490697e-08 1.784849482e-08 1.75976278e-08 1.744017428e-08 1.224347298e-08 1.53999761e-08 1.562412629e-08 1.677045584e-08 1.450053136e-08 1.864526165e-08 1.903920444e-08 1.350193844e-08 1.634051426e-08 1.280279279e-08 1.267116485e-08 1.569650002e-08 1.43043438e-08 1.421159615e-08 2.340093516e-08 9.425222081e-09 1.525754799e-08 1.435825109e-08 1.539877035e-08 1.114632245e-08 2.196674068e-08 1.557206572e-08 1.530054667e-08 1.727456054e-08 1.762371323e-08 2.187563187e-08 1.520530547e-08 1.437190101e-08 2.790328754e-08 2.436040624e-08 2.540090066e-08 2.658470891e-08 2.81689103e-08 2.382699682e-08 1.413934134e-08 3.190721613e-08 2.665617666e-08 3.606817139e-08 3.009559185e-08 3.113122438e-08 3.955884756e-08 4.03007392e-08 3.407206315e-08 3.86772802e-08 3.925391194e-08 3.82431649e-08 4.030737955e-08 4.042689073e-08 4.205356281e-08 4.581849311e-08 3.998694274e-08 4.069382567e-08 4.21604279e-08 5.062736071e-08 3.67949243e-08 3.976517545e-08 4.034447426e-08 3.763256874e-08 3.384429602e-08 4.321939462e-08 3.830467152e-08 3.06913441e-08 3.105293884e-08 3.522705645e-08 2.967519657e-08 2.733016291e-08 2.487137307e-08 2.752212874e-08 2.83113075e-08 2.615930599e-08 2.159479647e-08 2.115407733e-08 1.570053087e-08 1.679027867e-08 1.59923992e-08 1.394858247e-08 1.524614653e-08 1.198777832e-08 9.576534385e-09 9.010712651e-09 7.541125538e-09 4.118171206e-09 6.174846196e-09 3.317449078e-09 1.894181422e-09 1.942282954e-09 6.416787947e-10 2.435065702e-10 2.587090969e-10 4.086604194e-10 4.697721654e-11 1.092459153e-12 4.987346062e-12 2.321487721e-13 6.39580864e-14 2.370112968e-14 2.407147306e-15 1.034514027e-16 1.495802774e-17 3.991598596e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.885472588e-19 3.75369359e-17 3.714553438e-17 8.421483306e-16 3.320402765e-15 1.620843568e-14 4.383049303e-13 1.01125619e-11 1.458780676e-11 1.070262512e-10 2.038662258e-10 5.16056965e-10 5.778507554e-10 8.813192386e-10 1.767771413e-09 3.325636352e-09 3.190183127e-09 6.008435993e-09 7.122546216e-09 9.495280641e-09 9.033084562e-09 1.138289005e-08 1.14073468e-08 1.369960233e-08 1.385901692e-08 1.192189333e-08 1.793125125e-08 1.722348056e-08 1.831847578e-08 2.307975161e-08 2.274541288e-08 2.299592214e-08 2.422303684e-08 2.430446669e-08 2.518651892e-08 2.616413278e-08 3.096792793e-08 2.956828744e-08 2.94974848e-08 3.444411602e-08 4.161549237e-08 3.775882539e-08 4.179690818e-08 3.798417553e-08 3.756749873e-08 4.394900803e-08 4.146701495e-08 4.511404757e-08 4.047597038e-08 3.356625583e-08 4.444370161e-08 3.524958423e-08 3.623816122e-08 4.485638078e-08 2.842763407e-08 3.055439958e-08 4.323879874e-08 3.940675724e-08 4.439622369e-08 3.665373936e-08 4.534189144e-08 3.48171027e-08 4.224855217e-08 3.024999993e-08 3.56227996e-08 3.344214274e-08 3.03444349e-08 2.629112542e-08 2.365783381e-08 2.141158517e-08 1.339232697e-08 1.171266807e-08 2.125139034e-08 1.518132588e-08 1.443562071e-08 1.56811535e-08 2.227812805e-08 1.240566331e-08 1.492084528e-08 1.393154349e-08 1.649230563e-08 1.251723799e-08 1.373614058e-08 1.185077922e-08 1.223653629e-08 1.140664419e-08 1.95469437e-08 1.221340719e-08 1.737256896e-08 1.064311883e-08 1.936659737e-08 1.748621904e-08 1.329000586e-08 1.530961607e-08 1.7953182e-08 1.316083784e-08 1.795277906e-08 1.591744512e-08 1.696453591e-08 1.8707407e-08 2.066722055e-08 2.034324806e-08 1.812405273e-08 1.862669291e-08 2.412942693e-08 1.938476218e-08 2.168965857e-08 2.21970858e-08 2.810521641e-08 2.634385758e-08 2.975423947e-08 4.546182898e-08 4.171242167e-08 3.606466697e-08 4.445904148e-08 3.409462199e-08 4.309263017e-08 3.867414078e-08 4.725956514e-08 3.574948161e-08 4.947903776e-08 3.137467134e-08 4.851342919e-08 4.084396544e-08 4.74263686e-08 4.397898328e-08 4.107283099e-08 4.735252729e-08 4.079194049e-08 3.403990389e-08 3.872580222e-08 3.802745091e-08 3.388079142e-08 3.26173324e-08 3.547096537e-08 2.824424191e-08 2.860694326e-08 3.041431971e-08 2.488118901e-08 2.061581979e-08 2.133735757e-08 2.488011068e-08 1.747599465e-08 2.221040583e-08 2.097580864e-08 2.00511427e-08 1.756715982e-08 1.310349331e-08 1.378003594e-08 1.379173024e-08 1.107406938e-08 7.98553611e-09 7.66376185e-09 8.279124275e-09 5.583528881e-09 5.020853572e-09 1.336231546e-09 1.21358611e-09 2.634668557e-10 7.759349357e-10 1.722039149e-10 3.79670287e-10 7.152323254e-11 8.461640218e-13 7.85915495e-13 1.375676363e-13 3.226801892e-14 5.945784364e-15 2.333115338e-15 2.722718663e-16 8.621775198e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.667850452e-31 5.641277647e-19 1.168376844e-18 1.072723549e-17 1.415990413e-15 3.979285047e-15 1.294776047e-13 6.992203126e-13 1.42448153e-12 4.646482564e-11 6.775264912e-11 4.556167926e-10 8.074061466e-10 3.40862047e-10 5.091335232e-10 1.687278393e-09 2.69828242e-09 4.229757663e-09 5.401730007e-09 7.0754721e-09 8.279715711e-09 8.214793358e-09 1.28628681e-08 1.093207187e-08 1.204549586e-08 1.40084795e-08 1.599627465e-08 1.614124405e-08 1.935326342e-08 2.005867252e-08 2.037854167e-08 2.130850801e-08 1.969668767e-08 2.493283217e-08 2.184370516e-08 2.509221718e-08 3.033909705e-08 3.08484702e-08 3.394416301e-08 2.983895707e-08 3.524787042e-08 4.145834368e-08 4.40614255e-08 4.584511268e-08 4.076095e-08 4.292460543e-08 5.08026195e-08 4.163129796e-08 3.702658453e-08 4.749824305e-08 4.718023551e-08 4.141967406e-08 4.41470817e-08 3.826987743e-08 4.101666166e-08 4.397321413e-08 4.579146822e-08 3.6372825e-08 3.400091801e-08 4.74129512e-08 3.818160054e-08 4.132093457e-08 3.749308457e-08 4.000682986e-08 3.38852827e-08 2.502203465e-08 2.627109989e-08 2.181243603e-08 1.663033485e-08 2.083462221e-08 1.551325617e-08 1.726661551e-08 3.141166597e-08 1.746140028e-08 1.740496775e-08 1.695456884e-08 1.820046133e-08 1.796833686e-08 1.725351158e-08 1.538421174e-08 1.220427976e-08 1.373427607e-08 1.431003728e-08 1.094963692e-08 1.512342519e-08 1.424056414e-08 1.879046929e-08 1.30953386e-08 1.790088899e-08 9.845155767e-09 1.484117698e-08 8.249332873e-09 1.732730925e-08 2.102797755e-08 1.37358772e-08 1.952398244e-08 2.009065314e-08 2.275270766e-08 1.610807545e-08 1.350246461e-08 2.053527455e-08 1.988063585e-08 2.144133346e-08 1.984258675e-08 2.548952519e-08 1.578414059e-08 2.75425871e-08 3.116051264e-08 2.818418622e-08 2.757469512e-08 2.79308307e-08 3.843676734e-08 2.783593727e-08 4.187916578e-08 4.019979906e-08 4.509817057e-08 3.81380638e-08 4.305256897e-08 3.341624859e-08 4.268700347e-08 4.413690706e-08 3.896628568e-08 5.374114803e-08 3.755621358e-08 4.694362647e-08 4.312089805e-08 4.09606598e-08 3.552630237e-08 4.187362992e-08 3.842540316e-08 3.682181564e-08 3.359299104e-08 3.853484205e-08 3.169222028e-08 3.673407324e-08 2.623164553e-08 3.559285533e-08 2.320852862e-08 2.481306841e-08 2.103615989e-08 2.198398394e-08 2.397283955e-08 2.256618289e-08 1.712278328e-08 1.63215772e-08 1.674507933e-08 1.844671952e-08 1.533595174e-08 1.357795635e-08 1.353264768e-08 1.30213039e-08 7.901843099e-09 9.275569752e-09 6.701781274e-09 9.27146737e-09 4.175667942e-09 2.67138184e-09 2.911454178e-09 1.159818477e-09 2.792555551e-10 1.076619717e-10 4.398398457e-10 3.662887686e-10 7.06210492e-11 1.59372e-11 2.60785678e-12 2.669157707e-13 1.694935235e-14 1.255850072e-15 2.428210624e-16 3.622535366e-17 1.453430665e-17 2.423229462e-18 4.205620187e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.131810023e-20 1.856993134e-18 4.544141868e-17 1.518197272e-17 1.52404482e-15 1.589369027e-14 1.593230595e-14 8.876460463e-14 1.447688353e-12 5.640106123e-12 1.768999939e-11 4.220322294e-11 6.435162726e-10 1.360237523e-10 6.715834199e-10 8.773742923e-10 1.834383097e-09 5.252789473e-09 4.15399188e-09 6.887789875e-09 8.331834364e-09 6.882783069e-09 1.210417517e-08 1.169141129e-08 1.498755263e-08 1.381842698e-08 1.741378021e-08 1.49402508e-08 2.174222398e-08 2.011038724e-08 2.18336619e-08 1.952293102e-08 2.060337916e-08 2.673112017e-08 2.884458155e-08 2.376333514e-08 3.15951706e-08 3.093149916e-08 3.109383179e-08 3.333059784e-08 3.522790597e-08 3.412224601e-08 3.291046746e-08 4.033768681e-08 4.1672691e-08 4.483514134e-08 4.958589761e-08 4.437314899e-08 3.989043329e-08 3.917067638e-08 4.435047171e-08 4.061683384e-08 4.869694734e-08 4.657810267e-08 4.378401888e-08 4.557161826e-08 4.904001125e-08 4.356371684e-08 3.793645998e-08 4.199677541e-08 3.917265202e-08 3.795203261e-08 3.017662444e-08 3.324635349e-08 2.979206414e-08 3.180568265e-08 2.459118745e-08 1.444654951e-08 2.484875741e-08 2.633452834e-08 2.303409789e-08 1.9801706e-08 1.196335957e-08 1.557974074e-08 1.725324836e-08 1.583582001e-08 1.577114932e-08 1.938949035e-08 1.918714546e-08 1.190368729e-08 1.500955683e-08 1.536991161e-08 1.875949216e-08 1.837957084e-08 1.629288397e-08 1.278906046e-08 9.869206516e-09 1.526045232e-08 1.088718498e-08 2.161076141e-08 1.478979014e-08 1.365431919e-08 1.722440216e-08 1.407355741e-08 1.628548318e-08 1.816964886e-08 1.113864972e-08 1.507371396e-08 1.848032619e-08 1.311388793e-08 2.430530231e-08 2.540212924e-08 2.126233813e-08 2.319383402e-08 2.279040269e-08 2.281834447e-08 2.318458652e-08 2.902643564e-08 2.519009184e-08 2.422154354e-08 4.184634734e-08 3.576379034e-08 3.194239271e-08 2.537866994e-08 3.521309089e-08 4.00858248e-08 4.008682136e-08 5.0244453e-08 3.935234587e-08 4.167144643e-08 4.581451065e-08 3.369699385e-08 4.142806643e-08 4.895072906e-08 4.602712256e-08 3.781387456e-08 4.590321306e-08 4.510798559e-08 3.863025553e-08 4.086132075e-08 4.49344731e-08 3.70294466e-08 3.553753549e-08 3.53495596e-08 3.519601127e-08 3.281183148e-08 3.271084569e-08 3.019051621e-08 3.182698571e-08 2.360381388e-08 2.683751663e-08 2.149677506e-08 2.409099045e-08 1.860602841e-08 2.307405231e-08 1.807999638e-08 1.56317455e-08 1.424189935e-08 1.569633521e-08 1.153999424e-08 1.511237625e-08 9.444423867e-09 8.377143014e-09 9.159694219e-09 8.866437084e-09 4.345068449e-09 2.26433063e-09 1.106760317e-09 1.547113429e-09 2.146351476e-10 4.315397774e-10 2.91793148e-10 1.103306987e-10 1.457110058e-10 7.74918927e-12 3.467587697e-13 5.198991054e-14 1.917297113e-14 1.789157114e-15 1.112710502e-15 2.070139991e-16 9.473220302e-18 1.127664386e-17 1.103824387e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.320650089e-33 1.539482701e-17 6.892910257e-16 3.537720185e-17 3.687702248e-15 8.848423387e-14 4.004543917e-13 1.5976051e-12 1.693079684e-11 8.813853246e-11 1.887644744e-10 2.393361986e-10 3.79696279e-11 4.368111222e-10 1.413654719e-09 2.55715696e-09 4.516431511e-09 6.494236355e-09 5.553634409e-09 6.891260359e-09 8.013733015e-09 1.1846117e-08 9.927743687e-09 1.24630175e-08 1.358175344e-08 1.804253382e-08 1.713155045e-08 1.721893435e-08 1.982869665e-08 2.126926371e-08 2.62508798e-08 2.373782297e-08 2.848665547e-08 2.382161755e-08 3.046253963e-08 3.105536225e-08 2.421289674e-08 3.911683058e-08 3.643881395e-08 4.170121087e-08 3.444993521e-08 4.273952302e-08 4.028526382e-08 3.867558859e-08 4.703891148e-08 3.563726109e-08 4.930619599e-08 4.918356125e-08 4.34884395e-08 4.549500571e-08 4.047251244e-08 4.396854997e-08 4.955415712e-08 3.513034793e-08 3.339659159e-08 3.447991448e-08 3.970082678e-08 3.808599329e-08 3.800078239e-08 3.475588187e-08 4.421545711e-08 3.640431977e-08 2.898065684e-08 3.125096779e-08 3.029518774e-08 3.383233832e-08 2.849670888e-08 3.01754903e-08 2.699711206e-08 2.249248247e-08 2.409142627e-08 1.986940573e-08 1.472861517e-08 2.359157347e-08 2.062322818e-08 1.751956728e-08 2.082049932e-08 1.707457835e-08 1.733438608e-08 1.569299973e-08 1.362557658e-08 1.480346731e-08 1.645572151e-08 1.881656425e-08 1.99028788e-08 1.329645484e-08 1.231599503e-08 2.101758985e-08 9.167133021e-09 1.331634016e-08 1.472348105e-08 1.62008311e-08 1.720634497e-08 1.619282495e-08 1.950944114e-08 2.303845481e-08 1.284260642e-08 1.909150074e-08 1.516242491e-08 1.403953548e-08 1.618453843e-08 2.077276959e-08 2.253707151e-08 2.941088146e-08 3.116769009e-08 2.847263842e-08 2.675802186e-08 3.229950324e-08 3.061382583e-08 4.077386763e-08 3.480047e-08 3.869278354e-08 2.760615951e-08 4.17151737e-08 3.79184486e-08 3.722359482e-08 4.077540945e-08 3.559751877e-08 3.989525781e-08 4.424127367e-08 3.930017905e-08 4.225787536e-08 3.817260745e-08 3.655192589e-08 3.961749317e-08 4.56373516e-08 4.869159563e-08 4.606156518e-08 4.373475689e-08 4.358799976e-08 3.655472956e-08 3.448540865e-08 3.153984547e-08 2.606131505e-08 3.690769437e-08 3.452933971e-08 3.288195983e-08 2.682016199e-08 2.511682462e-08 1.975664406e-08 2.87488119e-08 2.105173823e-08 2.022181979e-08 1.898012312e-08 2.065979218e-08 1.856794329e-08 1.982343034e-08 1.256206628e-08 1.305705249e-08 1.239636029e-08 7.764760105e-09 1.177630253e-08 9.06595341e-09 5.570824145e-09 6.232510483e-09 2.826806822e-09 3.882806212e-09 1.666351305e-09 5.27017257e-10 7.982194645e-10 5.092464416e-10 4.667529541e-10 3.822918871e-11 5.319621524e-12 5.739079361e-12 2.430380806e-13 1.064059424e-14 1.310881262e-14 3.698110549e-16 2.039200112e-17 3.55179979e-18 3.130029539e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.729843096e-17 1.48826972e-16 1.031990101e-15 1.071786572e-14 4.339355858e-14 1.105278899e-14 6.776127571e-13 1.389543307e-11 1.659865078e-10 1.283254799e-10 6.59921353e-10 4.938561303e-10 1.211050189e-09 7.623673814e-10 2.347608985e-09 4.403094565e-09 4.50847019e-09 6.223045407e-09 5.759435688e-09 9.4741646e-09 1.036547953e-08 1.11016761e-08 1.474816723e-08 1.400574057e-08 1.590884861e-08 1.565877843e-08 1.746979089e-08 1.941068705e-08 1.910953651e-08 2.234530094e-08 2.963683004e-08 2.398916113e-08 2.959204884e-08 2.496562759e-08 2.668242452e-08 2.804063967e-08 3.005099915e-08 3.2371224e-08 3.356364582e-08 3.640111464e-08 4.357406017e-08 3.646188976e-08 3.367719708e-08 3.914500955e-08 4.647540614e-08 5.066688376e-08 4.225779189e-08 4.273061971e-08 5.353565199e-08 4.669483016e-08 4.844847129e-08 4.858739432e-08 3.969262467e-08 3.922401011e-08 4.772692731e-08 5.099819892e-08 3.247822817e-08 3.000967409e-08 4.372727521e-08 3.024561021e-08 3.312944941e-08 2.575571723e-08 2.836555816e-08 3.396993235e-08 2.267738616e-08 1.637150647e-08 1.865957943e-08 2.115609533e-08 1.509336218e-08 1.770771147e-08 1.815477815e-08 1.563556788e-08 1.940975094e-08 2.418588731e-08 1.896084923e-08 2.030888277e-08 1.308968398e-08 1.49808159e-08 1.49735651e-08 1.25876414e-08 1.568114113e-08 1.376034732e-08 1.256107729e-08 1.187320619e-08 1.530478478e-08 1.071376222e-08 1.166271772e-08 1.581869565e-08 1.186510937e-08 1.277870928e-08 1.233025518e-08 1.672748253e-08 1.734126259e-08 1.542892519e-08 1.478705814e-08 1.530297007e-08 1.823747959e-08 2.156715058e-08 1.268073373e-08 1.94517542e-08 2.346371247e-08 1.979459186e-08 1.682621508e-08 2.322537968e-08 2.26924503e-08 2.957438902e-08 2.334708858e-08 2.690950945e-08 3.485381796e-08 2.993605206e-08 3.398629368e-08 4.428984747e-08 3.918478273e-08 3.466655041e-08 4.22371861e-08 3.770774098e-08 4.318296869e-08 4.372542613e-08 4.249583045e-08 4.197917422e-08 4.028434657e-08 4.486407383e-08 3.97953747e-08 4.673745235e-08 3.969260589e-08 4.030125707e-08 4.074125675e-08 4.262664546e-08 4.248457105e-08 3.788926805e-08 3.394822709e-08 3.721509217e-08 3.47107036e-08 3.336867323e-08 3.248764931e-08 3.008241257e-08 2.732832518e-08 2.30061729e-08 2.550006618e-08 2.499664918e-08 2.408413314e-08 1.875594658e-08 2.130616365e-08 1.980592592e-08 1.730587665e-08 1.483907089e-08 1.308503971e-08 1.400662212e-08 1.139045449e-08 8.963785424e-09 7.134366953e-09 6.672319237e-09 5.343451112e-09 3.575696349e-09 2.672867349e-09 3.523319599e-09 1.673978148e-09 9.338595308e-10 4.666010597e-10 4.493357148e-10 2.475466468e-10 4.728429401e-11 5.435052498e-12 4.003369794e-12 1.868897959e-13 2.072645227e-14 2.885871667e-14 4.078884756e-15 6.462235252e-17 1.613840125e-18 1.494579513e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.114348723e-18 7.154171593e-18 2.783511528e-17 2.581605719e-16 1.334133141e-15 1.50653538e-13 9.759712945e-14 4.734424202e-13 3.583039734e-12 6.395785437e-11 6.664078572e-11 2.2362769e-10 3.220059025e-10 1.571965199e-10 1.258183597e-09 2.444970261e-09 3.08739228e-09 3.407131138e-09 4.976743228e-09 6.202419706e-09 8.242783402e-09 8.130561056e-09 1.293148726e-08 1.519878445e-08 1.840116833e-08 1.642749458e-08 1.79087224e-08 1.571852458e-08 1.878738693e-08 1.790338607e-08 2.32091833e-08 2.576268635e-08 2.438012517e-08 2.883746633e-08 3.404539266e-08 3.024169955e-08 2.816848494e-08 3.576163545e-08 3.734808267e-08 3.94697141e-08 4.092620703e-08 3.922991163e-08 4.477715149e-08 3.837134836e-08 4.074345327e-08 4.203997072e-08 3.894634389e-08 4.64031971e-08 3.818558854e-08 3.845792542e-08 4.260998729e-08 3.270326417e-08 4.952600686e-08 4.208968088e-08 4.434050112e-08 4.59370345e-08 3.650032673e-08 4.021151321e-08 4.816486605e-08 4.208201213e-08 2.984767807e-08 2.355340661e-08 3.511040157e-08 3.535415501e-08 2.27701741e-08 2.43329323e-08 1.84658293e-08 1.829501402e-08 1.71680322e-08 1.229512078e-08 2.539147936e-08 1.09080045e-08 1.293529555e-08 1.49076606e-08 1.996849486e-08 1.61310747e-08 1.538548401e-08 8.555415762e-09 1.025162639e-08 1.678548081e-08 1.221346504e-08 1.336474897e-08 1.178645263e-08 1.41473422e-08 1.792670107e-08 1.528649712e-08 1.556585914e-08 1.996778972e-08 1.244489536e-08 1.653956287e-08 2.073823798e-08 1.418835754e-08 1.349210679e-08 2.015773208e-08 1.28230765e-08 1.245482406e-08 1.657341473e-08 7.619055897e-09 1.963561217e-08 2.162778394e-08 1.940509718e-08 2.107031826e-08 1.937491248e-08 2.521977629e-08 2.33919761e-08 2.054472928e-08 2.258029484e-08 1.787677067e-08 2.667284876e-08 2.320911777e-08 3.529456881e-08 3.949806278e-08 4.398830197e-08 3.433993199e-08 4.387745303e-08 4.091402925e-08 4.203991495e-08 4.346508151e-08 4.509127968e-08 4.971992944e-08 4.856503347e-08 4.156142449e-08 4.009046323e-08 4.481798254e-08 4.204101522e-08 4.100091611e-08 4.484121218e-08 3.636164417e-08 3.377188087e-08 3.960138191e-08 3.583988463e-08 3.694307098e-08 3.632113956e-08 3.337494529e-08 3.239911423e-08 3.411848117e-08 2.79795748e-08 3.166322093e-08 2.211383675e-08 2.265061383e-08 2.608742456e-08 2.377266356e-08 2.526643014e-08 2.291782544e-08 1.849492636e-08 1.581752707e-08 1.081243847e-08 1.592091356e-08 1.203036305e-08 9.512331864e-09 1.021887762e-08 9.472133426e-09 6.663761925e-09 7.148473423e-09 4.352916111e-09 4.164548388e-09 2.724181888e-09 1.726696221e-09 3.279805156e-10 3.276717133e-10 1.689034107e-10 4.682017739e-10 2.217639077e-10 2.326744579e-12 2.445063834e-12 6.246260256e-13 3.242221264e-14 7.128881816e-15 8.560818862e-16 2.263021621e-17 8.106093416e-19 5.309032922e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.744650962e-19 4.181293972e-19 6.862611948e-18 1.898481289e-17 2.682704194e-16 6.883134727e-15 8.230892073e-15 5.110882289e-13 4.069822953e-13 8.025209709e-11 5.482730583e-11 2.43449105e-10 4.847590971e-10 8.180289325e-10 1.008273958e-09 1.443713208e-09 2.104033084e-09 4.838178055e-09 4.893958632e-09 7.651727204e-09 7.539315661e-09 5.126010621e-09 1.016765372e-08 1.243317268e-08 1.49109945e-08 1.522624679e-08 1.423428667e-08 1.480196538e-08 1.782159246e-08 2.290484789e-08 2.509678173e-08 1.89673981e-08 2.531770931e-08 2.85063283e-08 2.883120093e-08 2.787795548e-08 2.934549223e-08 3.426363582e-08 3.28695908e-08 3.308368288e-08 3.053455325e-08 3.770691381e-08 4.128637283e-08 4.212109333e-08 4.391587502e-08 4.226835738e-08 4.352823887e-08 4.170738839e-08 3.999651127e-08 5.025164247e-08 4.785271566e-08 4.308372546e-08 4.713964519e-08 3.242928271e-08 4.901487836e-08 4.663853885e-08 4.325577536e-08 4.067365501e-08 4.552566415e-08 3.716006703e-08 2.641312865e-08 3.077137856e-08 3.047905637e-08 3.254194407e-08 2.45358792e-08 2.75863819e-08 2.338095084e-08 2.555015427e-08 3.152476167e-08 1.825117292e-08 2.134959925e-08 1.627067177e-08 1.638963516e-08 1.702287748e-08 1.996545736e-08 2.31757747e-08 1.323273318e-08 1.909737083e-08 1.764113748e-08 1.494045139e-08 1.551937836e-08 1.529160807e-08 1.424334577e-08 1.85153448e-08 1.440136877e-08 1.774613599e-08 1.290862264e-08 1.251052998e-08 1.493380044e-08 1.314644679e-08 1.117757187e-08 1.546517296e-08 1.377851944e-08 1.645927972e-08 1.125990816e-08 1.431420955e-08 2.196340519e-08 1.798243335e-08 1.221212606e-08 1.423441043e-08 1.889282452e-08 1.708898294e-08 1.885843058e-08 1.810923532e-08 2.374753551e-08 2.082358161e-08 2.240210504e-08 3.293494732e-08 2.762766003e-08 3.387110159e-08 3.088646509e-08 3.028942986e-08 3.600908385e-08 3.674591637e-08 3.699421499e-08 3.654641885e-08 4.088540275e-08 4.32302434e-08 4.334019377e-08 3.627929949e-08 4.230323049e-08 5.166736798e-08 4.825076602e-08 5.194194365e-08 4.313797574e-08 4.347913602e-08 4.180309855e-08 4.136458675e-08 3.794136013e-08 4.382093274e-08 4.139178715e-08 3.59828744e-08 3.545198912e-08 3.418504775e-08 2.617709167e-08 2.854496657e-08 3.434675042e-08 3.075109877e-08 2.95856472e-08 2.276387797e-08 2.452374031e-08 2.670445409e-08 2.186863042e-08 2.54793392e-08 1.980091147e-08 1.512530762e-08 1.744827735e-08 1.029378078e-08 1.72336855e-08 9.933891587e-09 1.085648363e-08 8.682828697e-09 7.874054661e-09 7.736461877e-09 5.296382261e-09 7.350982966e-09 5.345263523e-09 3.481414775e-09 6.135864318e-10 1.220942486e-09 3.420566383e-10 2.926071124e-10 2.086188846e-10 6.895354945e-11 8.026743211e-13 6.892600044e-13 6.259146597e-14 1.00891605e-14 4.429473582e-15 3.534436871e-16 9.748191852e-17 8.107214603e-18 7.072244725e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 6.561039428e-19 2.394271653e-20 1.657398227e-17 2.092933763e-17 7.381436158e-16 6.00889977e-15 1.324515464e-14 6.773797298e-14 1.157675869e-12 4.738226759e-12 1.163851933e-10 1.259087851e-10 3.398292812e-10 3.587660468e-10 6.515413199e-10 1.158860039e-09 2.362434029e-09 4.758093446e-09 6.408355816e-09 6.400084292e-09 7.214526475e-09 1.382900397e-08 1.145532596e-08 1.288714564e-08 1.555010985e-08 1.396952354e-08 1.539222251e-08 1.603255054e-08 1.757930762e-08 2.036792848e-08 2.455953415e-08 2.538193322e-08 2.463505561e-08 2.44762893e-08 2.507095413e-08 2.80232789e-08 3.145603479e-08 3.03767993e-08 3.366010818e-08 3.527841382e-08 3.191524248e-08 3.550487627e-08 3.929822184e-08 3.627914533e-08 3.984883901e-08 3.671201012e-08 4.940873315e-08 4.364026443e-08 4.359527007e-08 4.680656843e-08 4.366295231e-08 4.841907977e-08 3.495898952e-08 3.627296465e-08 4.277985511e-08 4.000447688e-08 4.125934272e-08 3.664692388e-08 3.671556214e-08 4.632075953e-08 3.732033561e-08 3.619939861e-08 3.405414157e-08 3.046093126e-08 3.904279607e-08 2.704328227e-08 2.120207704e-08 2.262445168e-08 2.164611714e-08 2.049582122e-08 1.669425806e-08 1.526657077e-08 1.603562123e-08 2.094586123e-08 1.189641078e-08 1.434891012e-08 1.262774804e-08 1.654829602e-08 1.631079732e-08 1.732545687e-08 1.71507041e-08 1.516659551e-08 1.468381434e-08 1.967374633e-08 1.308090624e-08 1.510979266e-08 1.315485327e-08 1.306284272e-08 1.653247772e-08 1.61329532e-08 1.672921325e-08 1.409616093e-08 1.668757878e-08 1.595394629e-08 1.729030914e-08 1.609473045e-08 1.429858012e-08 1.999522382e-08 1.457793951e-08 1.877224591e-08 1.540259539e-08 2.603833233e-08 1.652798385e-08 1.51510326e-08 2.227752944e-08 2.040724534e-08 2.144819234e-08 3.284298451e-08 2.689215207e-08 3.336184314e-08 2.557937898e-08 2.627638947e-08 3.853943356e-08 3.773940741e-08 3.392773412e-08 2.7577632e-08 4.507796303e-08 4.744832995e-08 3.584883325e-08 4.232122886e-08 3.611464318e-08 4.223524912e-08 4.530617054e-08 4.674936046e-08 4.133990392e-08 4.31423346e-08 4.396254078e-08 3.988725861e-08 4.93436134e-08 4.140713214e-08 3.732068107e-08 3.670548143e-08 3.287157762e-08 3.124500898e-08 2.965744355e-08 2.597421583e-08 2.394675569e-08 2.917941422e-08 2.716954633e-08 2.61681915e-08 2.726569395e-08 2.459979188e-08 1.90428267e-08 2.489233416e-08 1.959614405e-08 2.114331373e-08 1.453652646e-08 1.501338674e-08 1.017777532e-08 1.362243688e-08 9.298784885e-09 1.124838095e-08 1.220987092e-08 9.101189188e-09 8.971562968e-09 4.22972125e-09 4.704443707e-09 2.203708369e-09 1.116547543e-09 1.326512119e-09 6.384129208e-10 1.965168304e-11 5.700984414e-11 2.171734426e-11 1.807154021e-12 6.166574386e-12 1.228645106e-13 1.293888744e-14 6.634975193e-15 3.150598692e-15 2.790670213e-16 6.763142387e-18 1.29452631e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.164055282e-17 1.766398937e-16 2.059764015e-16 3.639402813e-15 3.275725383e-14 8.862792136e-14 8.172731316e-13 2.764024851e-11 1.555730084e-10 4.21685679e-10 4.956225997e-10 6.390641792e-10 6.882871278e-10 1.435453752e-09 3.838612276e-09 5.080974188e-09 5.458210597e-09 7.238622807e-09 6.667800567e-09 9.211454295e-09 1.116527494e-08 1.217547169e-08 1.244171225e-08 1.298856714e-08 1.124357587e-08 1.626383164e-08 1.605810922e-08 1.937031044e-08 2.082053245e-08 2.478498222e-08 2.351303075e-08 2.699216944e-08 3.150881126e-08 3.222280266e-08 2.820783498e-08 2.955470249e-08 3.614735102e-08 3.491580413e-08 3.706962611e-08 3.717181081e-08 3.891202701e-08 3.785086251e-08 3.596434646e-08 4.647283063e-08 4.186505566e-08 4.69937077e-08 4.357074417e-08 3.788881467e-08 4.626216254e-08 3.701921829e-08 4.763810729e-08 4.361802183e-08 3.94527229e-08 3.764499123e-08 3.558430616e-08 3.611821396e-08 3.997693931e-08 2.461626895e-08 3.909944626e-08 3.243784407e-08 3.618560286e-08 2.798187778e-08 2.46865013e-08 2.45173929e-08 2.701882874e-08 1.204752462e-08 1.689074964e-08 2.00520668e-08 2.062056364e-08 2.562579633e-08 2.533768298e-08 1.60361265e-08 2.224958381e-08 1.398962091e-08 1.990138697e-08 1.083099248e-08 1.399392271e-08 1.270891145e-08 1.541334267e-08 1.371033325e-08 1.104996378e-08 1.366388539e-08 1.594703766e-08 1.792892446e-08 1.933837518e-08 1.08033836e-08 1.622503064e-08 1.327357347e-08 1.473730872e-08 1.402931397e-08 1.436505756e-08 1.538932234e-08 1.615468453e-08 1.338479394e-08 1.433428863e-08 2.014194361e-08 1.422669154e-08 1.537883196e-08 1.661573584e-08 1.553838283e-08 2.234140237e-08 2.0005792e-08 2.631446353e-08 2.256040896e-08 2.450544085e-08 2.437435804e-08 2.729939303e-08 2.853424515e-08 3.17734096e-08 2.637903186e-08 2.776713412e-08 4.007914936e-08 3.519735993e-08 4.306887504e-08 3.054973941e-08 4.146351481e-08 4.34851861e-08 4.222301497e-08 4.168999681e-08 4.063268645e-08 4.075600424e-08 4.629708031e-08 4.753989347e-08 4.642394125e-08 3.791456529e-08 4.327729463e-08 4.212088015e-08 3.721332481e-08 4.077666272e-08 3.743931665e-08 3.948583424e-08 3.755467943e-08 3.174642494e-08 3.356876874e-08 2.851920969e-08 3.180602299e-08 2.540073097e-08 2.522410301e-08 2.557585062e-08 2.643273162e-08 1.874515295e-08 1.992558149e-08 2.023596804e-08 1.492290748e-08 1.919914386e-08 1.394427075e-08 1.620848038e-08 1.429902331e-08 1.37260204e-08 1.085254232e-08 9.851373377e-09 7.976087042e-09 3.783499355e-09 2.632158515e-09 2.086194618e-09 2.224612557e-09 1.895912128e-09 1.398657602e-09 4.429010202e-10 4.159603626e-10 1.656681781e-10 1.193930204e-10 1.042944234e-11 8.161809847e-12 9.192843293e-15 5.113250801e-14 1.607520557e-15 1.526150573e-17 5.353122719e-17 1.083767736e-17 1.280161206e-18 6.665678581e-28 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 6.359571834e-11 0 0 2.181662224e-30 1.404484238e-18 2.394700066e-17 6.239879706e-17 3.307554199e-15 2.530147689e-15 1.494273824e-15 1.148506714e-12 1.18692957e-13 1.071441228e-12 2.137609059e-10 2.394111816e-11 3.324662149e-10 5.92534428e-10 4.185027142e-10 1.471497539e-09 2.641620425e-09 3.552977537e-09 4.767667157e-09 6.479215083e-09 7.087351407e-09 8.525934366e-09 1.094487604e-08 1.45580482e-08 1.295830177e-08 1.429667864e-08 1.587117586e-08 1.51898164e-08 1.89045816e-08 1.94599334e-08 2.00531851e-08 2.307929516e-08 1.851600154e-08 2.369264573e-08 3.152055036e-08 2.375381482e-08 2.513955502e-08 2.800333071e-08 3.071673731e-08 3.374980915e-08 3.476950498e-08 3.6163511e-08 4.015984814e-08 4.097945341e-08 3.908453175e-08 3.856324796e-08 4.834126521e-08 4.191007016e-08 4.554271251e-08 3.747472291e-08 4.278102359e-08 4.77857136e-08 4.438742123e-08 3.822878475e-08 3.209601709e-08 4.028598911e-08 4.147097162e-08 4.644089661e-08 4.375276984e-08 3.789669954e-08 4.146952808e-08 3.740206225e-08 3.853447357e-08 2.855370033e-08 3.151899142e-08 2.011864594e-08 2.084166597e-08 1.407095321e-08 2.093168815e-08 2.459039122e-08 1.650044277e-08 1.79835002e-08 1.687663024e-08 1.06678295e-08 1.545177883e-08 1.652526225e-08 1.568701883e-08 1.549033046e-08 1.548546844e-08 1.376389886e-08 9.579971666e-09 1.619522983e-08 1.662274015e-08 1.840199904e-08 1.464101332e-08 1.315343189e-08 1.40739283e-08 1.828684945e-08 1.463534553e-08 1.373264152e-08 1.288076808e-08 1.636086873e-08 1.279504862e-08 2.15884605e-08 1.36789478e-08 1.379151586e-08 1.411752927e-08 1.819479068e-08 1.821957081e-08 2.00484242e-08 1.62483609e-08 1.262492216e-08 1.668198906e-08 1.951530657e-08 2.644396825e-08 2.528134235e-08 2.075783711e-08 2.815338897e-08 2.871328669e-08 2.735963233e-08 2.545173328e-08 4.126260642e-08 2.742737974e-08 3.16117715e-08 3.405313721e-08 4.646869045e-08 4.071409759e-08 3.559287572e-08 5.070544495e-08 3.864845178e-08 3.711282465e-08 3.898808033e-08 4.127235788e-08 4.748734396e-08 3.994669708e-08 4.502018453e-08 4.553542543e-08 5.085345304e-08 4.2747411e-08 4.378304372e-08 4.052348886e-08 3.398516359e-08 3.835245338e-08 3.280930714e-08 2.815482483e-08 3.306439116e-08 3.160269852e-08 3.009175564e-08 2.755496146e-08 2.741845336e-08 2.461888072e-08 2.003059924e-08 2.147152565e-08 1.69930163e-08 2.091996146e-08 1.667417982e-08 1.292014506e-08 1.726392028e-08 1.525115217e-08 1.251057146e-08 1.28122959e-08 7.977596427e-09 8.640501809e-09 8.60419781e-09 7.307826775e-09 6.964698714e-09 2.644075519e-09 1.44008276e-09 2.321382365e-09 8.442369964e-10 5.354115464e-10 1.048188438e-09 3.264643315e-10 3.608078136e-11 1.192408028e-11 2.423658774e-12 3.687433443e-14 1.295858356e-13 1.456981505e-15 5.505449633e-16 8.412582013e-17 2.957836474e-17 1.291227716e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.276041825e-19 1.796495064e-19 3.351997843e-18 1.775051242e-16 1.810357483e-15 2.162827855e-16 1.379340939e-14 8.986116795e-14 1.048529383e-12 4.988252955e-12 1.68851904e-10 7.163681821e-10 4.710974054e-10 3.758637867e-10 8.853771149e-10 8.040341159e-10 2.486504268e-09 4.603859736e-09 5.422551254e-09 8.166930486e-09 5.709606979e-09 1.08556551e-08 9.480343533e-09 1.461865578e-08 1.349911702e-08 1.485628353e-08 1.685682507e-08 1.715618871e-08 1.970380275e-08 2.143459382e-08 2.077204117e-08 2.266202361e-08 2.499275005e-08 2.247392547e-08 2.74879116e-08 2.988394558e-08 3.349293314e-08 3.234932612e-08 2.693145494e-08 3.324994798e-08 3.873487723e-08 3.456121601e-08 3.781891401e-08 4.040592261e-08 3.96047851e-08 4.297264065e-08 4.041496875e-08 4.231556918e-08 3.973446038e-08 5.027596191e-08 5.051428338e-08 4.821341155e-08 3.834140862e-08 5.341565357e-08 4.9319963e-08 5.86600939e-08 3.170297386e-08 3.197268798e-08 3.974961257e-08 3.071648137e-08 3.6785266e-08 4.218074424e-08 2.974221061e-08 3.304554028e-08 3.617391559e-08 2.38663745e-08 3.438494714e-08 2.604915816e-08 2.657572004e-08 2.60967307e-08 1.851887691e-08 2.570091207e-08 1.041451482e-08 1.892535817e-08 1.436445697e-08 2.21043547e-08 2.029601872e-08 1.385891743e-08 1.472446744e-08 1.806176429e-08 1.425209906e-08 1.02270109e-08 1.062935332e-08 1.285037924e-08 1.568826021e-08 1.645511557e-08 1.458042857e-08 1.365852517e-08 1.712263078e-08 1.25085762e-08 2.020406189e-08 1.932935621e-08 1.629926989e-08 1.551480149e-08 1.317924767e-08 2.035046644e-08 1.461880115e-08 1.049736135e-08 1.459164863e-08 2.298146424e-08 1.611539766e-08 1.293825415e-08 2.511299652e-08 2.180462569e-08 1.925701262e-08 2.486099365e-08 2.174735823e-08 2.448083147e-08 3.079733818e-08 2.490826366e-08 2.811481977e-08 2.923436392e-08 3.615716222e-08 4.792546945e-08 4.088413554e-08 3.163005726e-08 4.119597609e-08 3.144157191e-08 4.346145486e-08 4.693270804e-08 3.700505575e-08 4.290329441e-08 4.696229822e-08 4.469835249e-08 4.400298368e-08 4.927597807e-08 4.81439952e-08 3.942774397e-08 4.397376478e-08 4.509067447e-08 4.49069509e-08 3.791972559e-08 3.635146254e-08 3.759399681e-08 3.305650659e-08 3.124733047e-08 2.602496597e-08 3.176693605e-08 3.235299793e-08 2.325170317e-08 2.547735678e-08 2.621009059e-08 2.134092856e-08 2.260945109e-08 2.229134742e-08 1.49313427e-08 1.672939279e-08 1.462955239e-08 1.338205639e-08 1.269510452e-08 1.052933675e-08 8.931559389e-09 9.472870387e-09 8.423677104e-09 7.315741993e-09 5.299735517e-09 5.490767688e-09 2.560904305e-09 1.742732647e-09 7.612644039e-10 1.235799843e-09 7.426819601e-10 1.16726643e-10 9.672038897e-11 1.436522459e-11 2.819009809e-12 3.282221628e-13 4.473807333e-14 1.144485368e-15 1.11912785e-15 2.162987631e-17 2.699890678e-18 3.834756375e-18 9.403698066e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.885230028e-18 1.17351304e-17 1.23253869e-16 7.259584889e-16 6.69328045e-17 7.030263005e-15 6.500146383e-14 1.776014508e-12 1.533549613e-12 6.546852028e-11 3.870317981e-10 3.887511915e-10 2.706294024e-10 5.759090719e-10 6.405557439e-10 4.692275603e-09 2.654989486e-09 5.258822558e-09 7.50889909e-09 7.46763099e-09 1.008663385e-08 1.089618493e-08 1.101154516e-08 1.548866653e-08 1.59488984e-08 1.244863135e-08 2.283028941e-08 1.957119699e-08 1.946770918e-08 2.106909364e-08 2.252430777e-08 2.045001746e-08 2.82130347e-08 2.566715956e-08 2.460468213e-08 2.426883298e-08 2.812258964e-08 3.034784259e-08 3.230420168e-08 3.1031299e-08 3.692146298e-08 3.889155953e-08 4.010621382e-08 3.867257403e-08 3.588928173e-08 4.357743998e-08 4.596569589e-08 3.954494968e-08 4.42474345e-08 3.488079109e-08 4.247285528e-08 4.496990173e-08 3.925140687e-08 4.589219095e-08 3.711700931e-08 3.845380581e-08 4.607292782e-08 4.172261766e-08 4.15803058e-08 3.968718005e-08 4.331342994e-08 3.347053447e-08 2.655212925e-08 2.843381866e-08 3.373243502e-08 2.958687664e-08 2.668689022e-08 2.261624742e-08 2.411762263e-08 1.682657135e-08 2.142228233e-08 1.802002255e-08 1.561723723e-08 2.043760309e-08 1.957200851e-08 1.257721242e-08 1.990251732e-08 1.750868831e-08 2.134323291e-08 1.392805012e-08 1.150027777e-08 1.500172145e-08 1.452528855e-08 1.429531318e-08 1.634696662e-08 1.442492514e-08 1.22575217e-08 1.575795214e-08 1.640641636e-08 1.231408963e-08 1.354965347e-08 1.315017808e-08 1.633478442e-08 1.409187289e-08 1.790188708e-08 2.122274458e-08 1.448252821e-08 2.036300884e-08 1.945782292e-08 1.334092669e-08 2.292956176e-08 1.884447025e-08 1.549201987e-08 2.373553635e-08 1.679102156e-08 2.717625036e-08 3.163071815e-08 2.376828574e-08 2.380918632e-08 2.183473668e-08 2.803271532e-08 3.672769656e-08 3.962286521e-08 3.424737154e-08 3.793583027e-08 3.81263926e-08 4.380528685e-08 4.036149338e-08 3.966996119e-08 4.291351211e-08 3.862471336e-08 4.206597018e-08 4.198685231e-08 4.258993242e-08 3.990908034e-08 4.105529194e-08 4.620768566e-08 3.817992273e-08 3.905631148e-08 3.904921042e-08 3.880011644e-08 3.764823194e-08 3.289560393e-08 3.333352731e-08 3.573874397e-08 3.647770011e-08 3.130003237e-08 2.405507064e-08 2.807995925e-08 2.817153816e-08 2.288640351e-08 2.404717473e-08 1.825332867e-08 1.957249677e-08 1.955920661e-08 1.914274011e-08 1.677172973e-08 1.42637118e-08 1.303251042e-08 1.022702534e-08 8.546066555e-09 1.025009048e-08 8.094359976e-09 5.395155218e-09 5.651042941e-09 2.986823291e-09 2.314688351e-09 1.515221159e-09 1.203606441e-09 7.318367321e-10 5.213168874e-10 2.561359669e-11 3.943260151e-11 1.397867689e-11 1.953759091e-12 6.019564854e-13 3.977956963e-15 1.907126299e-14 1.526182237e-17 7.777926856e-17 8.148924051e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.094276063e-18 8.023054937e-19 6.853380555e-17 1.319787854e-15 4.172630605e-15 4.139215953e-14 3.648884041e-15 4.722401019e-12 1.156106095e-11 1.433697449e-10 1.846851292e-10 4.694283338e-10 2.840228476e-10 9.696656094e-10 1.045742178e-09 3.07251252e-09 4.18399741e-09 6.640307124e-09 4.986434215e-09 6.429998332e-09 9.680362936e-09 1.038180609e-08 8.5319812e-09 1.285702654e-08 1.452652023e-08 1.363718866e-08 1.999509667e-08 1.867202144e-08 2.300973777e-08 2.181940408e-08 2.285110726e-08 2.225358161e-08 2.417656284e-08 3.112385587e-08 2.833356058e-08 2.852858624e-08 2.956421407e-08 3.449499124e-08 3.042072542e-08 3.256585308e-08 3.572985885e-08 3.956775805e-08 3.614604214e-08 3.906872734e-08 4.158988103e-08 4.465763937e-08 4.387545698e-08 4.409493954e-08 5.090221527e-08 4.632062917e-08 4.414737898e-08 4.157125678e-08 3.879637786e-08 3.959428497e-08 3.824900956e-08 4.886342563e-08 4.761785251e-08 4.542135011e-08 3.652972577e-08 4.073521562e-08 3.41223032e-08 3.570465105e-08 2.384956639e-08 2.772516182e-08 1.848496352e-08 1.934832031e-08 2.089476366e-08 2.429622908e-08 2.74223454e-08 2.169713661e-08 2.084486882e-08 1.259735926e-08 1.926661616e-08 2.099937895e-08 1.264963164e-08 9.733116535e-09 1.735810578e-08 1.918046734e-08 1.698094151e-08 1.680493897e-08 1.675837179e-08 1.36314525e-08 1.105404527e-08 1.399754851e-08 1.024258342e-08 1.593634082e-08 1.858372184e-08 2.020397675e-08 2.027814224e-08 1.230210814e-08 1.780537154e-08 1.24051825e-08 2.005732676e-08 1.662923986e-08 1.403093421e-08 1.981830221e-08 1.583764475e-08 1.149960727e-08 1.886917586e-08 2.754477554e-08 1.757388924e-08 1.375173479e-08 1.503163133e-08 2.719401964e-08 2.26802088e-08 2.332412952e-08 1.99969912e-08 3.711140519e-08 2.304443209e-08 3.588448513e-08 2.732832829e-08 4.445551447e-08 3.809786682e-08 3.59470258e-08 3.879438918e-08 4.353454268e-08 3.810546418e-08 3.54390578e-08 4.541333323e-08 4.313044533e-08 4.48982483e-08 5.128990392e-08 4.851527567e-08 3.726847584e-08 3.588799648e-08 3.736105661e-08 4.388370221e-08 3.988197538e-08 3.64457654e-08 3.685808671e-08 4.054262732e-08 3.969902719e-08 3.741351689e-08 3.569044501e-08 3.034177627e-08 2.826482957e-08 2.602132253e-08 2.869015874e-08 2.336113811e-08 2.441626105e-08 2.270265598e-08 2.396727223e-08 2.504653991e-08 2.060451071e-08 2.32359868e-08 1.623191583e-08 1.393296863e-08 1.474549375e-08 9.537366598e-09 1.466656114e-08 1.226023763e-08 6.913042969e-09 8.22319177e-09 8.208060066e-09 4.982191696e-09 5.478872241e-09 2.646964826e-09 1.60968875e-09 9.163640432e-10 3.819975009e-10 1.793834319e-10 8.936148444e-12 2.688998939e-11 1.958510098e-12 3.782540791e-12 2.403197193e-13 1.720202641e-14 4.067234176e-15 1.747858258e-16 1.245537785e-16 4.058429549e-18 3.388860715e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 8.021393894e-19 2.038817679e-18 3.570535701e-18 1.166386914e-17 4.417824721e-16 9.049261069e-16 8.336247768e-15 1.632536471e-12 1.660515982e-12 5.522641221e-12 6.415082307e-11 2.743529118e-10 5.489690916e-10 3.642759685e-10 4.884579593e-10 6.698212449e-10 2.486422291e-09 4.995696577e-09 5.111193222e-09 7.528630824e-09 5.610505486e-09 1.117616382e-08 1.238128734e-08 1.437061256e-08 1.288965043e-08 1.477589953e-08 1.468225761e-08 1.984169022e-08 1.782407885e-08 2.029784765e-08 1.682713238e-08 2.204395756e-08 2.373065218e-08 3.041322727e-08 2.832581938e-08 3.039632049e-08 3.126231591e-08 3.151329162e-08 3.509959073e-08 2.997240084e-08 3.81939643e-08 3.420647069e-08 3.836704926e-08 4.408398455e-08 3.776468113e-08 4.596673041e-08 3.93020886e-08 4.087421472e-08 4.197879046e-08 3.730428962e-08 4.881860509e-08 5.288899863e-08 3.666806854e-08 3.770307865e-08 3.966823739e-08 4.433187726e-08 3.949414281e-08 4.310524769e-08 3.493761227e-08 4.270630504e-08 3.379014991e-08 3.765546138e-08 3.848737592e-08 2.881668071e-08 3.660242775e-08 2.752132607e-08 2.336028634e-08 2.722859973e-08 1.60630497e-08 1.559400532e-08 1.99343605e-08 2.180684872e-08 1.608693665e-08 1.875373419e-08 1.378755595e-08 2.056970333e-08 1.40198511e-08 1.515319461e-08 1.935358109e-08 1.450441254e-08 1.60689806e-08 8.924955355e-09 1.945705411e-08 1.156811809e-08 1.290353968e-08 2.048706318e-08 1.076433962e-08 1.360622677e-08 2.007759569e-08 1.233150669e-08 1.737882247e-08 1.917132612e-08 1.359989493e-08 1.789256954e-08 1.852700414e-08 1.641348628e-08 1.171989463e-08 1.229959328e-08 1.576124969e-08 1.461454793e-08 1.397170588e-08 2.126576528e-08 1.965453103e-08 2.729392623e-08 1.381057686e-08 2.51096697e-08 2.103038052e-08 2.797265523e-08 2.688673188e-08 3.262846713e-08 3.558369063e-08 3.477915191e-08 4.021191934e-08 3.363066182e-08 3.213855749e-08 3.855445841e-08 4.857753487e-08 5.642226468e-08 3.559453722e-08 3.721527269e-08 5.199997962e-08 4.089731383e-08 5.048090944e-08 4.94562724e-08 5.154990989e-08 3.85623327e-08 4.448354384e-08 4.775654907e-08 4.982874131e-08 4.029875714e-08 3.714812248e-08 3.471649779e-08 3.975009095e-08 4.171525438e-08 3.303479191e-08 3.119702623e-08 3.230547197e-08 2.923747083e-08 2.513503028e-08 2.492211055e-08 2.443636384e-08 2.37996234e-08 2.350118889e-08 2.220789527e-08 1.834080292e-08 1.883020005e-08 1.231428769e-08 1.539516896e-08 1.705466111e-08 1.226055221e-08 1.207611214e-08 1.141789959e-08 1.036582964e-08 5.624595174e-09 5.813915703e-09 5.962954246e-09 4.252661785e-09 2.706585865e-09 8.250701197e-10 3.887936723e-10 6.918137167e-10 2.453679268e-10 9.551973211e-11 3.909364392e-11 2.455096577e-11 5.208939972e-14 3.945727569e-13 9.160523886e-14 9.592637044e-15 6.101205596e-15 2.599932391e-16 3.8648788e-18 0 9.514040691e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.614438448e-18 3.398454427e-19 1.887821218e-17 5.053131714e-17 4.937407228e-15 2.371130626e-14 1.853972448e-12 2.331711514e-12 9.281017626e-12 4.583052702e-11 7.062635329e-10 6.879506952e-10 6.462489942e-10 6.343280969e-10 5.329815402e-10 1.383292382e-09 2.804493345e-09 6.942116882e-09 7.686936901e-09 1.066154201e-08 1.079264895e-08 1.07568644e-08 7.654058344e-09 1.509380466e-08 1.273607912e-08 1.507473779e-08 1.624115585e-08 1.879799611e-08 2.028950029e-08 2.111502106e-08 2.586868004e-08 2.300024998e-08 2.792957528e-08 2.395262431e-08 2.84555189e-08 3.51017277e-08 2.807076815e-08 3.534413291e-08 3.477643141e-08 2.963780389e-08 3.476516255e-08 4.359460714e-08 4.238749756e-08 4.148160955e-08 3.954596709e-08 4.495238194e-08 4.818009949e-08 4.310531514e-08 3.918095135e-08 4.332741078e-08 3.751090019e-08 4.485548537e-08 3.64899679e-08 3.831160505e-08 4.40509122e-08 3.555771942e-08 3.186651917e-08 3.166607271e-08 4.258233631e-08 3.804013098e-08 2.923168383e-08 2.812342129e-08 3.726628151e-08 2.573432535e-08 3.054055285e-08 2.206853917e-08 2.398845027e-08 2.314300699e-08 1.860511576e-08 2.643530656e-08 1.875786352e-08 1.792307861e-08 2.069544185e-08 1.93220098e-08 1.720568067e-08 1.350562084e-08 2.137914972e-08 1.91247849e-08 1.26801299e-08 1.55712082e-08 1.286113706e-08 1.834254545e-08 2.011054871e-08 1.560328979e-08 1.4349396e-08 1.466243795e-08 1.476880246e-08 2.084242858e-08 1.362848203e-08 1.537503063e-08 1.454328505e-08 1.234791039e-08 1.22604404e-08 1.892265095e-08 1.727427878e-08 2.007957491e-08 1.379831152e-08 2.673680919e-08 2.037049267e-08 1.918107586e-08 1.698830731e-08 2.118620681e-08 1.895632314e-08 1.868883777e-08 2.343459788e-08 1.686118899e-08 2.391502792e-08 3.127173944e-08 2.945451774e-08 2.507466555e-08 3.406577824e-08 2.569797161e-08 2.830491303e-08 3.394341132e-08 4.843620714e-08 3.596515493e-08 4.012955248e-08 3.864790573e-08 4.451238743e-08 4.31509838e-08 3.866235192e-08 4.091199234e-08 4.543528904e-08 5.092383313e-08 4.586243343e-08 4.456806466e-08 4.404827316e-08 3.814384626e-08 3.970130083e-08 4.178253563e-08 3.647174242e-08 3.514219686e-08 3.353769836e-08 3.192552202e-08 3.021875456e-08 3.17783662e-08 2.600132687e-08 2.938580667e-08 3.108416174e-08 2.219166293e-08 2.263240696e-08 2.104965515e-08 1.699796857e-08 1.753460362e-08 1.873858693e-08 1.797775706e-08 2.008831715e-08 1.455723675e-08 1.182563602e-08 1.089797284e-08 9.489316333e-09 6.835629072e-09 7.695657423e-09 6.264495888e-09 5.358921814e-09 2.298821334e-09 1.771009191e-09 1.199495423e-09 5.175937409e-10 9.364017509e-10 1.073908187e-10 4.190924125e-10 1.387444221e-11 8.808406901e-12 2.999715659e-13 1.281874034e-13 8.975034255e-15 7.106890128e-16 5.726302677e-16 2.204719899e-16 1.985039891e-17 5.779109181e-19 2.943883649e-21 0 0 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.249484928e-19 1.700087935e-17 7.097744313e-17 3.530761208e-17 6.061486386e-16 1.528458266e-15 1.407231974e-13 7.264046984e-13 1.736912839e-12 1.342887211e-11 1.813919126e-10 5.122565112e-10 3.257934578e-10 2.908323821e-10 8.937198956e-10 6.899078106e-10 2.904596887e-09 3.937395682e-09 3.940890196e-09 6.673478138e-09 9.613964789e-09 7.194566187e-09 1.022498956e-08 1.005247105e-08 1.770813257e-08 1.904613786e-08 1.674286728e-08 1.208406094e-08 1.966494577e-08 2.073798863e-08 2.481365357e-08 2.408667459e-08 2.441053382e-08 2.800402515e-08 2.605499343e-08 2.42423355e-08 3.04985732e-08 2.928306578e-08 3.40203256e-08 3.604359473e-08 3.635905358e-08 3.900199981e-08 3.68523352e-08 4.158876628e-08 3.879697083e-08 4.440599606e-08 3.571603241e-08 4.839872399e-08 3.760093267e-08 3.751528203e-08 5.053754872e-08 4.90000413e-08 4.994343826e-08 4.352289501e-08 4.138689979e-08 4.621770077e-08 3.385585547e-08 4.309269185e-08 3.845352008e-08 4.177754407e-08 2.786653305e-08 2.531179112e-08 3.668431399e-08 2.719294539e-08 2.68519356e-08 2.420904362e-08 2.513913627e-08 2.683850955e-08 1.610460377e-08 2.2916002e-08 2.373814103e-08 2.031543327e-08 1.910015053e-08 2.163452272e-08 1.572234696e-08 1.36594229e-08 1.675120482e-08 1.774835624e-08 1.519716651e-08 8.128367502e-09 1.767089471e-08 1.727745571e-08 1.631253773e-08 1.54573928e-08 1.751023644e-08 1.469809235e-08 1.563489332e-08 1.890455594e-08 1.225952396e-08 1.855026646e-08 1.627692543e-08 1.435136144e-08 1.453175982e-08 1.345666823e-08 1.696453519e-08 1.66999975e-08 1.741078183e-08 1.441502643e-08 1.670596357e-08 2.042928498e-08 1.822856923e-08 1.515014693e-08 1.702308676e-08 1.731660696e-08 2.545242009e-08 2.090097397e-08 2.183024096e-08 2.793101231e-08 2.139725496e-08 2.58402051e-08 3.482426826e-08 4.021515207e-08 2.494231589e-08 3.678490694e-08 3.790297551e-08 3.665248851e-08 4.346085186e-08 4.818807965e-08 4.085129268e-08 4.162074755e-08 4.505326054e-08 3.786949296e-08 4.065868034e-08 3.580688628e-08 4.001302487e-08 4.754185212e-08 3.745723682e-08 4.400622103e-08 3.632328139e-08 3.828068401e-08 4.023678273e-08 3.252481841e-08 3.848175037e-08 3.61648096e-08 3.325420224e-08 3.527178551e-08 3.632217336e-08 2.899460578e-08 2.410937869e-08 2.545423361e-08 2.726741831e-08 2.157872439e-08 2.426438245e-08 2.008445813e-08 2.018803886e-08 1.811867808e-08 2.168579625e-08 1.341720358e-08 1.599265848e-08 1.513273028e-08 1.292239849e-08 9.942880452e-09 8.115720542e-09 7.255022824e-09 6.074310106e-09 5.957618428e-09 5.606446976e-09 2.172977588e-09 5.47643366e-10 1.112059192e-09 4.785346544e-10 3.506949084e-10 3.058033089e-10 9.342348671e-12 1.413111431e-11 1.402875414e-12 7.97214157e-15 1.575721572e-14 2.023112289e-15 2.646303268e-16 1.361991377e-16 1.43748863e-17 4.240417106e-19 5.086684156e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.234664572e-18 2.267881911e-17 1.595629576e-17 4.402035384e-16 1.247171698e-14 7.868573797e-14 4.209896944e-13 1.309864221e-12 2.944215019e-12 6.362551393e-11 1.552005041e-10 4.707107537e-10 5.212281756e-10 2.991114062e-10 1.970448621e-09 2.613840658e-09 4.464332483e-09 5.242535149e-09 6.307806788e-09 8.410689565e-09 8.339797044e-09 9.793090097e-09 1.075146246e-08 1.749072956e-08 1.361052917e-08 1.712385293e-08 1.427068829e-08 1.617802742e-08 1.795067749e-08 2.209130388e-08 2.558971515e-08 2.636008316e-08 2.93822966e-08 3.032793635e-08 2.43346236e-08 3.091195978e-08 2.742730155e-08 3.803887334e-08 3.342006645e-08 3.312262626e-08 3.678372666e-08 4.080768368e-08 4.275868523e-08 4.063822786e-08 3.544110029e-08 4.187158578e-08 3.993539469e-08 4.95222469e-08 4.366288338e-08 4.521958065e-08 4.723048278e-08 3.774785202e-08 4.329138169e-08 4.416955068e-08 3.59224086e-08 4.392875174e-08 3.685097867e-08 3.518630233e-08 3.701444149e-08 3.758342028e-08 3.572113699e-08 3.55136818e-08 3.98479684e-08 2.33221579e-08 2.6434007e-08 2.350590116e-08 2.984778489e-08 2.771730058e-08 2.477542105e-08 1.808234183e-08 1.77771082e-08 1.748802878e-08 1.737990228e-08 2.255603622e-08 1.707875796e-08 1.731685887e-08 2.005751468e-08 2.347346198e-08 1.651680772e-08 1.393410948e-08 1.682211576e-08 1.263695824e-08 1.59196504e-08 1.561034562e-08 2.314792435e-08 1.294989179e-08 2.098437935e-08 1.281024432e-08 1.511861628e-08 1.428668849e-08 1.606017118e-08 1.436053273e-08 2.469929999e-08 1.711859001e-08 1.472771801e-08 1.313582503e-08 1.414964612e-08 1.831453459e-08 1.809798634e-08 1.662770519e-08 1.924017911e-08 1.711147094e-08 1.5902265e-08 1.450713818e-08 2.480632352e-08 2.708708204e-08 2.769076673e-08 2.845159783e-08 2.922811134e-08 3.362082754e-08 3.215035438e-08 3.09367956e-08 3.542394257e-08 4.031256073e-08 3.841934119e-08 4.797118287e-08 4.330508056e-08 4.580383103e-08 3.971358106e-08 4.004164451e-08 4.315004599e-08 4.264794878e-08 4.68779906e-08 4.300365029e-08 4.857818725e-08 4.960271478e-08 4.130121928e-08 4.477531752e-08 3.818487074e-08 4.329387185e-08 3.694590047e-08 3.519038284e-08 3.34128908e-08 3.147618584e-08 3.289634145e-08 3.634119117e-08 3.130576498e-08 2.694769367e-08 2.48911371e-08 2.295699769e-08 2.194579302e-08 2.239360321e-08 2.152511861e-08 2.096883527e-08 1.34909439e-08 1.718625556e-08 1.52088573e-08 1.616748436e-08 1.396914749e-08 1.228134757e-08 1.055096027e-08 9.712733864e-09 8.060388154e-09 4.686365361e-09 4.874682704e-09 2.291881672e-09 2.488599907e-09 1.504030517e-09 2.097455903e-10 5.998516528e-10 5.801046872e-10 2.456507171e-10 7.771661701e-11 3.180303283e-11 8.574947835e-13 6.562445996e-14 1.309887345e-14 9.465689725e-15 2.875494199e-17 1.36901754e-16 5.240561029e-19 3.793215948e-18 3.787007971e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.533993021e-19 2.172707255e-17 6.414505138e-16 3.105382327e-16 4.214818811e-15 2.059069634e-14 2.3572816e-14 6.126525116e-13 3.117420171e-11 1.513280232e-10 1.182958384e-10 4.468606384e-10 1.360192829e-10 4.31980553e-10 1.349947429e-09 2.220663751e-09 3.612993235e-09 6.001644658e-09 5.648528994e-09 8.0977288e-09 1.080925717e-08 9.760117761e-09 9.260552953e-09 1.585324044e-08 1.301931176e-08 1.582805822e-08 1.454353788e-08 1.705065098e-08 2.032500728e-08 2.038943961e-08 2.308588194e-08 2.110270715e-08 2.588538596e-08 3.108209136e-08 2.634163663e-08 3.121610133e-08 2.645088623e-08 3.404363761e-08 2.990678238e-08 3.111599298e-08 3.731178766e-08 3.483491674e-08 3.810296813e-08 3.823540845e-08 4.300127801e-08 3.96259826e-08 4.243327504e-08 4.346927579e-08 4.397403756e-08 4.441855772e-08 3.864393944e-08 3.208943796e-08 4.291749358e-08 3.637882685e-08 4.802515339e-08 3.490937886e-08 3.443719655e-08 3.466464381e-08 3.221283432e-08 3.122495929e-08 3.950598957e-08 3.249033995e-08 3.487398616e-08 2.986252937e-08 2.482518959e-08 3.275642559e-08 3.008395003e-08 1.97378408e-08 1.587049483e-08 1.81430927e-08 2.06317768e-08 2.081063147e-08 2.052168667e-08 2.071876683e-08 1.535574421e-08 9.239187072e-09 1.391923022e-08 1.687403737e-08 1.553095294e-08 1.424869385e-08 1.212056185e-08 2.24601539e-08 1.929450662e-08 1.806010489e-08 1.533111257e-08 1.550078919e-08 1.523314105e-08 1.091896121e-08 1.192287387e-08 1.178865811e-08 1.945763977e-08 1.338746385e-08 1.269887564e-08 1.579055955e-08 1.522855786e-08 1.498059109e-08 1.601227443e-08 2.608914513e-08 1.978049654e-08 1.944908924e-08 1.274638744e-08 2.238054583e-08 3.530090937e-08 1.189913021e-08 1.622739276e-08 1.422239659e-08 2.468647716e-08 2.105443857e-08 3.61407572e-08 2.594084408e-08 3.233472612e-08 3.678246043e-08 4.013317214e-08 3.690602971e-08 4.060858647e-08 4.395910337e-08 3.522095337e-08 3.843886978e-08 3.162085469e-08 3.959256458e-08 4.156636751e-08 4.743847109e-08 4.363069612e-08 4.382982539e-08 4.896734037e-08 4.577580117e-08 3.74355381e-08 4.388072841e-08 3.585857011e-08 3.642797874e-08 3.738033372e-08 3.904325537e-08 3.727575542e-08 3.371321693e-08 2.826966832e-08 3.025836518e-08 2.995158622e-08 3.059805471e-08 3.022900542e-08 2.383856665e-08 2.531259864e-08 2.110961969e-08 2.349051764e-08 2.473269963e-08 1.742014923e-08 1.68258598e-08 1.459955173e-08 1.440122964e-08 1.209110733e-08 1.005860701e-08 1.063171233e-08 9.691590425e-09 8.242333602e-09 9.194539847e-09 6.12992161e-09 2.647119645e-09 2.205647613e-09 1.031016874e-09 1.694141838e-09 2.473542937e-10 2.471391075e-10 2.579079305e-10 3.403520199e-11 1.079814451e-11 6.673364829e-13 1.877839081e-13 1.704641136e-14 1.617773797e-14 8.378064253e-17 1.049958036e-17 9.092081795e-18 3.713122787e-34 0 0 0 0 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.179203264e-19 4.017101736e-19 2.429287292e-16 3.969683722e-17 1.360490234e-15 2.546966431e-13 8.450086087e-13 3.130124384e-13 1.375274822e-11 4.603005357e-11 5.057857068e-10 2.894892232e-10 6.742575375e-10 6.811804128e-10 1.857966304e-10 2.438116395e-09 4.391967182e-09 6.213910275e-09 8.229725913e-09 6.824499926e-09 8.169968653e-09 8.651785393e-09 1.068898383e-08 1.251748826e-08 1.526191461e-08 1.441340735e-08 1.578955247e-08 2.076855818e-08 1.895289317e-08 1.836385177e-08 2.499707233e-08 2.420624514e-08 2.434625742e-08 2.607258067e-08 2.812536818e-08 2.570264618e-08 2.573791035e-08 3.321249242e-08 3.147040569e-08 3.483450319e-08 3.66394948e-08 3.639315879e-08 4.157216241e-08 4.000337637e-08 3.923867166e-08 4.270872869e-08 4.54316478e-08 4.118995217e-08 4.078310412e-08 4.702098089e-08 5.104989876e-08 4.772292103e-08 4.756575456e-08 4.815348605e-08 3.829585336e-08 3.464883512e-08 3.623097312e-08 4.163936874e-08 3.489764048e-08 3.298113337e-08 2.066523625e-08 3.74372815e-08 3.874951521e-08 2.73059078e-08 3.164019841e-08 2.084387368e-08 3.088887164e-08 2.756960204e-08 2.641722212e-08 2.389567458e-08 1.852789906e-08 1.329348797e-08 1.301734293e-08 2.63122269e-08 2.511619303e-08 1.550350567e-08 2.874364532e-08 1.46985118e-08 1.97569588e-08 1.249663359e-08 1.443087259e-08 1.802205792e-08 1.656645944e-08 1.381445263e-08 1.074826282e-08 1.709272964e-08 1.765974645e-08 9.10083088e-09 1.548467363e-08 1.030737971e-08 1.241741023e-08 1.010076382e-08 1.531247069e-08 1.300021538e-08 1.247918758e-08 1.165759776e-08 1.548829239e-08 1.095231502e-08 2.255837457e-08 2.104388786e-08 1.406880266e-08 1.629691451e-08 1.440045953e-08 1.340490419e-08 2.396834766e-08 1.665730561e-08 1.800542278e-08 3.202845077e-08 3.094967094e-08 3.473127125e-08 4.443688039e-08 2.822435808e-08 3.494881133e-08 3.959514813e-08 3.514924436e-08 4.064256838e-08 3.304252824e-08 4.319096589e-08 5.000683371e-08 4.092364494e-08 4.436143691e-08 5.45469521e-08 4.046013543e-08 4.323741769e-08 4.235313187e-08 3.985204789e-08 3.767442026e-08 3.596040203e-08 3.994199513e-08 4.332292883e-08 3.703051467e-08 3.778196114e-08 3.461304036e-08 3.42367323e-08 3.088442753e-08 2.855282704e-08 3.207306389e-08 2.960572333e-08 2.521369864e-08 2.637152592e-08 2.495324759e-08 2.566726008e-08 2.037543532e-08 2.110097909e-08 2.166848623e-08 1.694262518e-08 1.484841995e-08 1.523221794e-08 1.47442981e-08 1.410148605e-08 8.734313035e-09 7.899455691e-09 6.328515586e-09 5.86854754e-09 3.515696451e-09 3.30756361e-09 1.894736739e-09 7.470541722e-10 2.009020161e-10 9.599902891e-10 4.790078336e-10 1.435288252e-10 6.945824898e-11 1.491824764e-11 8.345141477e-12 1.426661122e-14 1.152699506e-14 3.062203212e-15 2.494674595e-16 4.659825093e-16 2.739953616e-18 4.618565894e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.229455747e-19 8.005380581e-19 1.002996806e-17 3.553833927e-16 1.784809628e-15 1.411242825e-13 1.425451659e-13 1.458874691e-12 1.356175908e-11 7.541803633e-12 7.937114081e-11 8.276101963e-10 4.119956746e-10 9.001564867e-10 1.365710557e-09 3.405844016e-09 3.894906253e-09 6.297798078e-09 6.18876809e-09 5.976673465e-09 1.018071473e-08 1.28853095e-08 1.140871031e-08 1.382102325e-08 1.581067905e-08 1.584158418e-08 1.522408109e-08 1.942152155e-08 1.992110094e-08 1.831201855e-08 2.212946447e-08 2.787156446e-08 2.847464747e-08 2.719704286e-08 3.02268479e-08 3.365539159e-08 3.093133285e-08 3.557336846e-08 3.129113851e-08 2.879219251e-08 3.996669954e-08 4.139488107e-08 3.785331937e-08 4.123400098e-08 3.706988181e-08 4.136218035e-08 4.574461463e-08 3.76197984e-08 4.763555451e-08 4.093936602e-08 4.704521611e-08 4.798863407e-08 3.574963662e-08 4.161530105e-08 4.108642586e-08 4.070842886e-08 4.714959106e-08 3.149002278e-08 3.869901705e-08 3.611643807e-08 3.239249876e-08 3.311332113e-08 4.292277965e-08 2.680139935e-08 3.109482825e-08 2.367925694e-08 2.268701712e-08 2.271769374e-08 2.030234875e-08 2.262221328e-08 1.779357601e-08 1.489440645e-08 1.887628557e-08 1.821689828e-08 1.664642156e-08 1.342421725e-08 1.521290002e-08 2.105913045e-08 1.556097346e-08 1.476212612e-08 2.055016973e-08 1.55015913e-08 1.493319217e-08 1.661429351e-08 1.528179819e-08 1.445908688e-08 1.821206574e-08 1.641660638e-08 1.237472485e-08 1.650908506e-08 1.42095444e-08 2.193339971e-08 1.273551631e-08 1.518911486e-08 1.202209214e-08 1.374825119e-08 1.420920396e-08 1.462810936e-08 2.164086662e-08 1.243226046e-08 1.552784448e-08 1.459555664e-08 2.137202377e-08 1.747136211e-08 2.299611766e-08 2.622739731e-08 1.991293956e-08 2.160762294e-08 2.746121151e-08 2.464996148e-08 3.001927058e-08 2.558818614e-08 4.962814088e-08 3.488083255e-08 3.595353682e-08 4.534189967e-08 3.28786957e-08 3.954408267e-08 4.210932093e-08 4.200473156e-08 4.642759701e-08 4.386794575e-08 3.505999849e-08 4.172702227e-08 3.963300591e-08 3.938394984e-08 4.442293421e-08 3.906674999e-08 3.793541608e-08 3.79889843e-08 2.958002429e-08 3.749164207e-08 3.604261326e-08 3.325618372e-08 3.171091574e-08 2.726431177e-08 3.012922505e-08 3.042072675e-08 2.639840872e-08 3.141484994e-08 2.070946685e-08 2.268166849e-08 2.57337083e-08 2.058758671e-08 2.090221107e-08 2.199934453e-08 1.7871404e-08 1.488837673e-08 1.288292689e-08 1.267397402e-08 9.513443676e-09 4.83606175e-09 6.523744384e-09 5.460144427e-09 5.00544006e-09 3.708347868e-09 2.142272165e-09 7.792099716e-10 7.646990915e-10 9.278645464e-10 5.898983144e-10 2.699318163e-10 5.997984152e-11 2.766049839e-12 2.340641633e-13 6.92090739e-13 1.635374516e-13 1.197222646e-14 1.107828296e-16 4.000215899e-17 1.582917936e-17 4.77494857e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.367975361e-17 6.866283114e-17 1.280855261e-15 2.563904544e-14 1.194708539e-13 3.039284543e-14 2.932573703e-12 1.49924041e-12 2.2294069e-11 3.303800137e-10 7.820339193e-10 8.012849409e-10 5.299493513e-10 1.050598007e-09 3.556993794e-09 4.810863173e-09 3.976607643e-09 5.625518377e-09 5.821905369e-09 9.682428227e-09 1.133770671e-08 1.343842514e-08 1.303021052e-08 1.352456855e-08 1.43059604e-08 1.525286688e-08 1.943310787e-08 2.235215814e-08 2.314414502e-08 2.23918698e-08 2.363974057e-08 2.771795056e-08 2.627965043e-08 2.581138241e-08 3.491017848e-08 3.121940418e-08 3.128323117e-08 3.925181418e-08 3.774487257e-08 3.56351566e-08 3.374590002e-08 3.997769889e-08 4.467679818e-08 4.473277965e-08 3.470626914e-08 3.921734902e-08 4.092839934e-08 4.26281815e-08 4.473026968e-08 5.065058556e-08 4.681575707e-08 3.709543566e-08 4.052758277e-08 4.464153233e-08 3.90728098e-08 3.447164016e-08 3.070439364e-08 3.644388032e-08 3.766319779e-08 2.828040303e-08 3.160969228e-08 2.806297461e-08 2.382117804e-08 2.741713476e-08 2.891046756e-08 2.116666607e-08 1.946482768e-08 1.904714965e-08 2.217895331e-08 1.463180376e-08 2.16330343e-08 1.430241711e-08 1.498114356e-08 1.591929062e-08 1.243872899e-08 1.780844189e-08 1.558426213e-08 1.419202319e-08 1.298166352e-08 1.384301016e-08 1.493639382e-08 1.652656618e-08 1.866080625e-08 1.675861102e-08 1.536995346e-08 9.296185761e-09 1.488960418e-08 1.659314191e-08 1.293163513e-08 1.477552483e-08 1.802643313e-08 1.229369722e-08 1.500289725e-08 1.655274106e-08 2.330448878e-08 8.713671744e-09 1.289210948e-08 2.104157592e-08 2.137491449e-08 1.436153473e-08 2.136150408e-08 2.177316243e-08 2.37955974e-08 2.622398213e-08 2.718543196e-08 2.393112761e-08 2.133630819e-08 3.33519762e-08 3.012552295e-08 2.698407623e-08 2.780112913e-08 3.853579652e-08 3.978982175e-08 3.350744536e-08 3.992108172e-08 4.333863049e-08 2.876094179e-08 3.880035676e-08 4.069261414e-08 4.171552743e-08 4.026834369e-08 4.289650057e-08 4.471604798e-08 4.248956891e-08 4.315554154e-08 4.9783521e-08 4.115715017e-08 4.347645692e-08 4.062917035e-08 4.123306692e-08 3.303447518e-08 4.035378161e-08 3.264385623e-08 3.11822272e-08 3.203288757e-08 3.367683252e-08 2.477114385e-08 2.644265322e-08 2.721583158e-08 2.664468275e-08 2.257297581e-08 1.957020939e-08 1.912480549e-08 1.447398467e-08 1.93598338e-08 2.05732445e-08 1.436008809e-08 1.4128639e-08 9.243355337e-09 1.049837568e-08 8.205984791e-09 6.879832764e-09 4.52003962e-09 6.71008952e-09 3.363559946e-09 3.557234984e-09 1.495941445e-09 4.196014927e-10 9.158560836e-10 2.107161492e-10 1.939639376e-10 5.512322441e-11 6.71660274e-12 5.633682281e-12 1.422378428e-13 9.104359756e-14 1.51508637e-14 1.764161054e-15 3.645426354e-17 2.62853604e-18 5.004504424e-18 0 0 0 0 0 0 0 0 0 3.189110819e-26 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 6.223342043e-19 9.87665529e-31 2.786081341e-17 2.680087892e-16 1.113424495e-16 6.733169707e-15 9.587605207e-15 4.527751631e-14 3.192871519e-13 6.172815729e-11 7.825881657e-11 1.974836114e-10 7.178964297e-10 6.678061867e-10 6.288062342e-10 9.152302546e-10 1.958421165e-09 5.143804802e-09 5.98640791e-09 5.764389651e-09 7.715159948e-09 6.402806316e-09 1.0086688e-08 9.079767463e-09 1.440815875e-08 1.738452384e-08 1.668350647e-08 1.47120962e-08 2.099087528e-08 1.691332837e-08 2.43374279e-08 1.993247255e-08 1.909070038e-08 2.285319792e-08 2.742417792e-08 2.83416076e-08 3.265784643e-08 2.614984987e-08 2.985079708e-08 3.660841897e-08 3.507342409e-08 3.704085113e-08 4.4438744e-08 3.464451217e-08 5.29308546e-08 3.778706232e-08 4.385428075e-08 4.15284902e-08 5.239017026e-08 4.884968743e-08 4.779423664e-08 4.223105528e-08 4.134643462e-08 4.120230759e-08 4.876458019e-08 4.576538378e-08 3.971380956e-08 4.138675777e-08 4.073644838e-08 4.179521126e-08 3.326240128e-08 3.45326802e-08 2.802263789e-08 3.123023697e-08 2.360841409e-08 3.002277826e-08 2.24992167e-08 1.561501852e-08 1.597033672e-08 2.328384259e-08 2.50884693e-08 1.320287591e-08 1.161792929e-08 2.12059022e-08 1.633219603e-08 2.375494583e-08 1.319145215e-08 1.72295378e-08 1.405277171e-08 1.280323232e-08 1.305974502e-08 2.08075757e-08 1.313789833e-08 1.30882846e-08 1.788206755e-08 1.193244898e-08 1.410877097e-08 1.764252545e-08 1.658411514e-08 1.891824574e-08 1.674609408e-08 1.690396786e-08 1.972549221e-08 1.577117801e-08 1.955049273e-08 1.246428835e-08 1.557271342e-08 1.979698176e-08 1.528480108e-08 1.781296486e-08 2.090714346e-08 1.310164482e-08 1.972361063e-08 1.302271631e-08 1.43610366e-08 2.333090974e-08 2.979090823e-08 2.399388433e-08 3.087719113e-08 3.255836333e-08 2.904926763e-08 3.66309868e-08 2.4237388e-08 3.991211555e-08 3.494201895e-08 3.54980182e-08 3.609332369e-08 4.226313038e-08 3.588616666e-08 3.18400808e-08 4.596997159e-08 4.160007617e-08 3.973288019e-08 4.63388374e-08 5.157502441e-08 4.559883926e-08 4.608271606e-08 3.88359486e-08 3.353778482e-08 3.69431776e-08 3.679187911e-08 3.701281983e-08 3.411807911e-08 3.410358878e-08 3.493942015e-08 3.615443112e-08 2.908903317e-08 3.221354765e-08 2.564009413e-08 2.576703843e-08 2.127157608e-08 2.242776692e-08 1.983261283e-08 2.422913981e-08 2.026431913e-08 1.953134353e-08 1.701990892e-08 1.60943772e-08 1.582285025e-08 1.254934228e-08 1.08885067e-08 6.389731135e-09 8.22821715e-09 9.514344704e-09 8.187583474e-09 4.93927591e-09 4.836818032e-09 2.05175502e-09 5.633778091e-10 1.016691349e-09 5.893795904e-10 5.472253052e-10 6.599520967e-10 3.853177499e-11 2.79036466e-11 1.732572679e-12 3.179128192e-13 8.775512283e-15 1.544473197e-14 3.261703693e-15 4.026780272e-17 3.316654673e-17 5.155050681e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.489341322e-18 9.597532662e-19 1.171130934e-17 1.366889339e-16 5.152282142e-17 3.260532823e-14 7.653668917e-15 1.0851199e-12 8.393197244e-12 6.608551062e-11 1.784596226e-10 6.367400551e-10 1.119278825e-09 6.081912913e-10 8.441368619e-10 1.332872426e-09 6.276834927e-09 4.845419758e-09 7.147755478e-09 1.028011167e-08 8.360667214e-09 1.256693288e-08 1.233981002e-08 9.002253018e-09 1.21511899e-08 1.878413253e-08 1.722064028e-08 1.902611959e-08 1.701629404e-08 2.266624928e-08 2.298413348e-08 2.634832006e-08 2.154651029e-08 2.882578242e-08 2.295452065e-08 2.99890061e-08 3.058418673e-08 3.700958895e-08 3.361066689e-08 3.477851635e-08 3.273543729e-08 3.756571683e-08 3.806889512e-08 3.81065928e-08 3.494966873e-08 4.294343226e-08 4.247184988e-08 4.482789329e-08 4.436012527e-08 4.159494366e-08 4.399818986e-08 4.306261142e-08 4.521022042e-08 3.764754418e-08 3.68578647e-08 3.401660037e-08 4.183574063e-08 4.589781652e-08 3.631658262e-08 3.129987544e-08 3.940105781e-08 3.807216234e-08 2.532157539e-08 2.675301562e-08 2.403525993e-08 2.049663222e-08 1.72127008e-08 2.509546546e-08 2.260706723e-08 2.481560958e-08 2.042702392e-08 1.401907004e-08 2.041114024e-08 1.989523168e-08 1.648012407e-08 1.648568021e-08 1.31813281e-08 1.031544915e-08 1.402939191e-08 1.965801367e-08 1.519459126e-08 1.591003556e-08 1.796087892e-08 1.553969717e-08 1.022512915e-08 1.705854404e-08 1.111510935e-08 1.589745448e-08 1.627791961e-08 1.303624719e-08 1.58283037e-08 1.670225848e-08 1.696236153e-08 1.486368391e-08 1.071150432e-08 2.081575147e-08 1.331769737e-08 2.222425045e-08 1.62575419e-08 1.98933885e-08 1.127301547e-08 1.720670459e-08 2.05745168e-08 2.87125636e-08 2.779417028e-08 1.883797159e-08 2.372814247e-08 3.221053472e-08 3.943686431e-08 2.078559794e-08 3.26164749e-08 3.796271895e-08 3.221106231e-08 2.996485844e-08 3.145403595e-08 4.627424531e-08 3.320556222e-08 3.973614434e-08 5.556899421e-08 5.139589882e-08 3.679298443e-08 4.339823316e-08 3.785088908e-08 3.528474233e-08 4.269490444e-08 4.161756519e-08 4.159578911e-08 4.083795351e-08 3.816219303e-08 4.018115149e-08 3.861071333e-08 4.154693447e-08 3.447788498e-08 2.994979708e-08 3.038167226e-08 2.426787204e-08 3.212822698e-08 2.284986698e-08 3.167742571e-08 2.260441951e-08 2.011049639e-08 2.165633012e-08 2.284635153e-08 2.002523964e-08 1.824178052e-08 1.426592509e-08 1.561955583e-08 1.494407117e-08 1.175183982e-08 1.130002193e-08 1.317065081e-08 1.198389484e-08 7.498548514e-09 5.820000987e-09 3.891147528e-09 3.38015964e-09 2.791713129e-09 2.328743032e-09 2.181816154e-10 5.363616585e-10 3.344101749e-10 1.890286829e-10 1.417683345e-10 2.616343454e-11 7.876927168e-13 1.492290253e-14 1.648742768e-13 5.963188281e-15 2.509281843e-16 7.048434316e-18 2.002190908e-17 0 1.0325763e-18 0 0 0 0 2.939538045e-26 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.236947851e-18 2.944137424e-18 3.005874202e-17 2.820043626e-17 9.214766302e-17 1.71238821e-15 4.751990641e-14 2.953146377e-13 1.160319749e-12 4.022140181e-12 8.088593492e-11 2.148340313e-10 1.520664396e-10 2.14648046e-10 4.113535981e-10 2.169320166e-10 2.786252238e-09 4.244139365e-09 5.386068416e-09 8.620059977e-09 6.770232224e-09 8.461118183e-09 9.102420986e-09 1.173538366e-08 1.296568526e-08 1.15265398e-08 1.959028867e-08 1.914071285e-08 1.860870698e-08 2.056222542e-08 2.341712159e-08 2.27843777e-08 1.970170886e-08 2.882090198e-08 2.519290423e-08 3.072282845e-08 2.78557759e-08 3.060652696e-08 3.052321488e-08 3.388926003e-08 3.690658292e-08 3.209212029e-08 3.889065851e-08 3.988637018e-08 3.921798811e-08 4.226934821e-08 4.48019436e-08 4.352449188e-08 3.860802079e-08 4.439781514e-08 4.158039463e-08 4.950436994e-08 3.754648522e-08 4.128622637e-08 4.242340833e-08 3.694204192e-08 3.701780705e-08 4.106350735e-08 3.953106644e-08 3.63963297e-08 3.580401517e-08 3.399571383e-08 3.003598429e-08 4.494945937e-08 2.577263739e-08 3.252626126e-08 2.00072126e-08 1.574713304e-08 2.934914539e-08 1.967469364e-08 2.403344531e-08 2.642508373e-08 1.767480447e-08 1.797751808e-08 1.466546672e-08 1.641672346e-08 1.612082215e-08 1.28269039e-08 1.263926507e-08 1.754260292e-08 2.11638295e-08 1.903265388e-08 8.485860159e-09 2.051927158e-08 1.706836407e-08 1.323090985e-08 1.623683929e-08 1.598011321e-08 1.643149062e-08 1.563423218e-08 1.954890763e-08 2.019073162e-08 2.204664127e-08 1.531091203e-08 1.587341034e-08 1.846268385e-08 2.653707756e-08 1.956833021e-08 1.641638503e-08 2.281520582e-08 1.544353228e-08 1.6818131e-08 1.814436229e-08 2.198043369e-08 2.373640119e-08 1.161053713e-08 2.549445888e-08 2.953953216e-08 3.249181927e-08 3.400331176e-08 2.806756313e-08 3.436233157e-08 3.670450675e-08 3.49436744e-08 4.270064065e-08 2.4776342e-08 3.87797606e-08 4.563640211e-08 4.344791372e-08 3.98018684e-08 4.28675441e-08 4.498308649e-08 4.229664504e-08 3.877093942e-08 4.229586116e-08 4.484165375e-08 4.295707264e-08 3.76980189e-08 4.120593995e-08 4.228669541e-08 3.996641535e-08 4.426952378e-08 3.278531922e-08 2.753454118e-08 3.249747505e-08 3.316005895e-08 3.456285348e-08 2.938627691e-08 2.502991175e-08 2.696640487e-08 2.667923605e-08 2.111269013e-08 2.43952941e-08 2.456375199e-08 1.982368517e-08 1.643459755e-08 1.628576148e-08 1.554785531e-08 1.412233256e-08 1.365116625e-08 7.025597615e-09 1.036456356e-08 8.948381191e-09 8.513138376e-09 6.425171991e-09 5.510756588e-09 2.403752316e-09 1.645570743e-09 9.234659928e-10 5.353527683e-10 4.302697026e-10 2.738188078e-10 3.37694248e-10 7.730425661e-11 1.210817982e-12 3.576631583e-13 7.846637173e-14 1.110143294e-13 5.891794519e-15 8.920846522e-17 1.797390772e-17 2.756538797e-17 5.007520776e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.927345148e-19 1.523384333e-17 1.001719448e-16 1.839540063e-16 2.699889301e-16 1.925195397e-14 2.403920843e-13 7.610886064e-12 7.272879082e-12 5.253577592e-12 3.008365558e-10 5.737763567e-10 8.609367517e-10 5.02297552e-10 4.501944727e-10 3.259777645e-09 2.9517758e-09 4.454045831e-09 6.261161776e-09 8.58441153e-09 7.043639105e-09 6.163469888e-09 1.303089551e-08 1.279371438e-08 1.4331599e-08 1.83737533e-08 2.007738975e-08 1.893598393e-08 2.044503555e-08 1.859234406e-08 1.787909727e-08 2.473309082e-08 2.999361953e-08 2.48435407e-08 2.604849286e-08 3.222287406e-08 2.960637729e-08 2.81794442e-08 3.367598371e-08 3.404052522e-08 3.984670074e-08 3.439577491e-08 3.468773157e-08 4.212935711e-08 4.217844881e-08 3.466495e-08 3.899468835e-08 4.776081194e-08 3.583197371e-08 4.926844799e-08 4.86295168e-08 3.727699941e-08 3.308993864e-08 3.517009325e-08 3.636285511e-08 4.335506264e-08 3.69206408e-08 3.037632942e-08 3.87639995e-08 4.00811842e-08 3.705949555e-08 2.177942647e-08 3.256998807e-08 3.978307387e-08 2.116753902e-08 3.266524718e-08 2.078215195e-08 2.736832397e-08 1.813824623e-08 1.775115501e-08 1.822627437e-08 1.453026542e-08 1.798494704e-08 2.316759367e-08 1.830266438e-08 1.947416305e-08 1.706332974e-08 1.052456479e-08 1.445590431e-08 2.181488327e-08 1.463084841e-08 1.983767223e-08 1.575594319e-08 1.167187945e-08 1.529975053e-08 1.445204499e-08 1.841252947e-08 9.519956134e-09 1.573688215e-08 1.378826417e-08 1.417488644e-08 1.734229614e-08 1.469221624e-08 1.866641598e-08 1.334039041e-08 1.868864423e-08 2.142201122e-08 2.287898879e-08 1.962424071e-08 2.053789811e-08 2.165833615e-08 1.795791808e-08 2.273141717e-08 2.102227591e-08 2.091175326e-08 2.772138894e-08 3.033909315e-08 2.623748464e-08 2.956482808e-08 3.217098646e-08 3.139620169e-08 3.014272553e-08 3.420262409e-08 3.547040463e-08 4.685992539e-08 3.783452333e-08 4.361133516e-08 4.565144176e-08 3.540852601e-08 4.259866128e-08 4.367684952e-08 4.203998603e-08 5.01305852e-08 4.81753032e-08 3.984762005e-08 3.953859963e-08 4.478632656e-08 4.072374606e-08 4.106029921e-08 4.244403638e-08 3.737667632e-08 3.627743835e-08 3.22551101e-08 3.526468134e-08 3.087564548e-08 3.214785233e-08 3.373533357e-08 2.970625215e-08 2.767547534e-08 2.645075652e-08 2.123172854e-08 2.114040242e-08 2.797380644e-08 2.235627607e-08 1.909949914e-08 1.765815636e-08 1.508650391e-08 1.45182454e-08 1.427950338e-08 1.442596577e-08 1.513112292e-08 8.026723648e-09 6.730968019e-09 7.336233068e-09 4.660928051e-09 3.385280514e-09 2.74928292e-09 9.023895651e-10 4.32635064e-10 7.414377625e-10 3.003312038e-10 3.362085457e-10 1.135883182e-10 5.857324013e-12 9.381963005e-13 1.903016018e-13 1.75743977e-14 1.357094751e-15 4.147846024e-15 4.979138503e-17 1.102149811e-16 0 0 0 0 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.569973985e-19 5.594737361e-19 7.17252586e-18 6.061765945e-17 3.643556568e-17 7.447135685e-15 3.083899422e-14 9.780923899e-11 3.521320342e-13 5.261368662e-13 5.888443464e-11 2.482110233e-10 6.607178778e-10 7.232427967e-10 1.028646182e-09 1.33603034e-09 3.915718992e-09 3.34312952e-09 3.24414434e-09 6.207677923e-09 6.582891568e-09 7.887859115e-09 1.060946175e-08 1.142192221e-08 1.062959358e-08 1.768697393e-08 1.506254272e-08 1.385799757e-08 1.830855983e-08 1.843826025e-08 2.093537624e-08 2.319389233e-08 2.411481195e-08 2.395914031e-08 2.666205731e-08 2.825863945e-08 2.905160622e-08 3.321612407e-08 3.009635041e-08 3.372310388e-08 3.639677239e-08 3.80274949e-08 3.916100588e-08 4.325906957e-08 4.453856651e-08 3.521628545e-08 5.091165708e-08 4.314229174e-08 4.424993967e-08 4.322946393e-08 4.147749133e-08 4.876959436e-08 4.15887207e-08 4.55642815e-08 3.71309024e-08 4.759922658e-08 4.573490244e-08 4.110426069e-08 3.838321987e-08 3.348984448e-08 3.313619862e-08 3.589323679e-08 3.291725693e-08 4.17981687e-08 3.346785544e-08 2.99121338e-08 2.559391546e-08 2.330261585e-08 2.34697482e-08 1.714663794e-08 1.723721613e-08 1.183697288e-08 1.588749768e-08 1.768902991e-08 1.93728165e-08 1.353529762e-08 1.949535915e-08 1.990796609e-08 1.83967947e-08 1.53329147e-08 1.806780892e-08 1.132780238e-08 1.417417907e-08 1.705550487e-08 1.679112065e-08 1.434834194e-08 2.208412101e-08 2.088513546e-08 1.888398816e-08 1.720090109e-08 1.299052984e-08 1.251619298e-08 1.586022583e-08 1.444340224e-08 1.732866569e-08 2.22923145e-08 1.758447771e-08 1.548260681e-08 1.993977561e-08 1.515119201e-08 1.938176077e-08 1.825559456e-08 2.808669663e-08 1.842190228e-08 1.509242456e-08 2.525725628e-08 2.77733711e-08 3.239461778e-08 2.367381814e-08 2.804642614e-08 3.18666052e-08 2.72156818e-08 3.253874263e-08 3.400034428e-08 4.110605009e-08 2.931272014e-08 3.975240954e-08 4.780961199e-08 4.573297291e-08 3.548017134e-08 4.108233627e-08 4.315817606e-08 4.366317715e-08 4.217642284e-08 3.734912006e-08 4.576856568e-08 4.076941084e-08 4.182129685e-08 4.767827109e-08 3.793564586e-08 4.396338287e-08 3.221555502e-08 3.531973701e-08 3.242436144e-08 3.368061924e-08 3.275480435e-08 3.237052776e-08 2.900073632e-08 2.723148669e-08 2.719527911e-08 2.298209113e-08 2.645008116e-08 2.424725958e-08 2.252795888e-08 1.783030526e-08 1.696206672e-08 1.954562493e-08 1.649617308e-08 1.463100174e-08 1.203329473e-08 1.463044668e-08 1.052528179e-08 1.276655049e-08 9.515528121e-09 7.812338408e-09 4.498026297e-09 4.336308638e-09 3.031587028e-09 1.338765555e-09 6.598854886e-10 2.539148015e-10 3.085292899e-10 2.20425624e-10 7.996682532e-11 4.731524653e-11 2.34725768e-12 4.603841672e-13 3.583644996e-14 5.909893266e-15 7.864258413e-16 1.516803954e-16 3.199251734e-18 1.569887262e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.12684672e-18 1.245487528e-18 4.160198368e-16 2.327424996e-16 4.655101826e-16 5.203068021e-14 4.376857014e-13 2.336442632e-12 2.348310151e-11 4.034767818e-11 1.362808295e-10 5.824311865e-10 6.039122023e-10 6.245265855e-10 1.188809321e-09 2.773873032e-09 4.662128979e-09 4.202682353e-09 6.646135403e-09 8.565119745e-09 9.390870795e-09 1.265136371e-08 1.319612607e-08 1.351661481e-08 1.625453971e-08 1.464730977e-08 1.57145863e-08 1.921961913e-08 2.308217046e-08 2.097935327e-08 2.000883922e-08 2.518765659e-08 1.796922338e-08 2.54228101e-08 2.73285988e-08 3.134727439e-08 3.236687881e-08 3.401659227e-08 3.607608678e-08 3.372323665e-08 3.34661376e-08 4.316171755e-08 4.178132635e-08 4.443155543e-08 4.219768295e-08 4.228532415e-08 4.521001828e-08 4.051702376e-08 4.159065139e-08 3.932913895e-08 4.50686355e-08 4.368049921e-08 4.362423864e-08 4.551118643e-08 3.959082482e-08 4.165067266e-08 3.478722569e-08 4.527683319e-08 3.212158458e-08 3.908208982e-08 3.317791727e-08 3.389798835e-08 4.083944553e-08 2.811244892e-08 2.600231891e-08 2.013111453e-08 1.836853869e-08 2.259819157e-08 1.667934103e-08 1.717285091e-08 2.203140928e-08 1.829905433e-08 1.236793398e-08 1.418335594e-08 1.493873676e-08 1.600022492e-08 1.483224658e-08 1.949615641e-08 1.506430896e-08 1.678295974e-08 1.486932356e-08 1.917531095e-08 1.675739826e-08 1.910858946e-08 1.082434353e-08 1.824749904e-08 1.385793592e-08 1.128098862e-08 1.933547396e-08 1.345879506e-08 1.513230638e-08 1.59624287e-08 1.145494692e-08 2.21116497e-08 1.529578397e-08 1.518783587e-08 1.581396718e-08 1.465899434e-08 2.172764079e-08 1.770903102e-08 1.538025512e-08 2.777854433e-08 1.263530915e-08 1.485211381e-08 1.149929862e-08 2.494755248e-08 2.093782975e-08 1.867340863e-08 2.582239286e-08 3.669832366e-08 3.326549488e-08 3.907204493e-08 4.012962764e-08 4.580348019e-08 4.221033847e-08 3.896857413e-08 3.961182544e-08 4.037211429e-08 4.575173548e-08 4.6464058e-08 4.790000269e-08 4.743077592e-08 3.690374052e-08 4.40141605e-08 4.281632556e-08 3.466568897e-08 4.277382004e-08 4.813519947e-08 4.361318408e-08 3.725199018e-08 4.066625876e-08 4.013958669e-08 4.085203725e-08 3.111313139e-08 3.180526588e-08 3.512191936e-08 3.252314674e-08 3.343374042e-08 3.139924751e-08 3.292813852e-08 2.184992897e-08 2.162142819e-08 1.59875895e-08 2.057075328e-08 1.779473063e-08 1.639656663e-08 1.335143035e-08 1.359204837e-08 1.49592834e-08 1.196625847e-08 7.735604112e-09 9.655079463e-09 9.235697611e-09 6.466213454e-09 5.702572158e-09 2.587363305e-09 3.79901032e-09 1.445656747e-09 7.10947031e-10 3.695906983e-10 3.257124167e-10 1.606928434e-10 1.130510663e-11 1.121348492e-11 1.324997912e-13 9.706346589e-14 2.185186255e-14 8.129646043e-15 1.512722083e-15 3.62583367e-17 1.268023444e-17 5.201958557e-19 6.179354965e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.496637627e-19 5.480229471e-18 1.524078801e-17 6.077141541e-17 6.458310087e-16 2.186636845e-14 2.924428139e-15 2.013267733e-13 1.72402812e-12 4.695482981e-11 2.078769615e-11 3.459955824e-10 2.779919047e-10 2.717162942e-10 3.733570892e-10 5.561427898e-10 3.089376982e-09 2.896104621e-09 6.429833059e-09 4.699308496e-09 8.767536737e-09 7.380556973e-09 9.78477516e-09 1.12955428e-08 1.089747429e-08 1.592788775e-08 1.862806799e-08 1.479025918e-08 2.026354137e-08 1.901052037e-08 1.677358985e-08 2.685941137e-08 2.586101518e-08 2.764621377e-08 2.408081459e-08 2.897154024e-08 3.06540997e-08 3.058876514e-08 3.35135937e-08 3.773318391e-08 3.505465453e-08 3.652816978e-08 3.923288647e-08 3.61630733e-08 3.996139926e-08 3.301121613e-08 3.546025638e-08 4.324662171e-08 3.941571597e-08 4.437882231e-08 3.815198988e-08 4.45660952e-08 4.745551415e-08 5.416688882e-08 4.279562688e-08 4.229917248e-08 3.541212977e-08 4.320088365e-08 3.678021941e-08 3.75773726e-08 3.920016701e-08 2.803184523e-08 3.00199496e-08 3.678781729e-08 3.238330614e-08 3.102125911e-08 3.122120038e-08 2.673172335e-08 2.338417014e-08 2.103758844e-08 2.649985182e-08 1.205773022e-08 9.24560575e-09 2.004492514e-08 1.307598259e-08 1.531941141e-08 1.818630105e-08 2.169438053e-08 1.325439354e-08 1.812438781e-08 1.581092871e-08 1.551142133e-08 1.560818288e-08 1.456288171e-08 1.745841149e-08 1.787096223e-08 1.540499312e-08 1.536420941e-08 1.623546191e-08 1.853669201e-08 1.155546303e-08 1.856506069e-08 2.050811221e-08 1.556552571e-08 1.503322647e-08 1.97583465e-08 1.320526334e-08 1.540113827e-08 1.439451704e-08 8.972544087e-09 1.517104328e-08 2.128441996e-08 1.318759606e-08 2.092583388e-08 1.918006266e-08 2.141906438e-08 1.952104225e-08 2.331064411e-08 3.427786697e-08 3.338340374e-08 2.926870245e-08 3.180290232e-08 3.763558221e-08 4.314808104e-08 4.28514725e-08 4.009571387e-08 4.515685336e-08 3.758511464e-08 3.553708714e-08 3.781538302e-08 3.810419131e-08 4.3830702e-08 4.410656259e-08 3.952654791e-08 4.606949138e-08 4.417364387e-08 4.05992722e-08 3.89687783e-08 3.846031998e-08 3.455311174e-08 4.056805203e-08 3.991274735e-08 3.666655449e-08 3.53726585e-08 3.217488008e-08 3.281634067e-08 3.267667093e-08 3.128091039e-08 2.616174554e-08 2.506710563e-08 2.592384458e-08 2.121288643e-08 2.479217413e-08 2.422452852e-08 1.832433164e-08 1.986521399e-08 1.472008985e-08 1.295348268e-08 1.26601838e-08 1.420387768e-08 1.206456611e-08 1.3251723e-08 8.556098084e-09 4.292969799e-09 8.766228188e-09 5.508233333e-09 2.958769062e-09 3.184293831e-09 2.2387278e-09 1.046695311e-09 3.847437953e-10 6.537281961e-10 3.322357688e-10 9.054713483e-11 1.639921926e-12 1.714072934e-12 9.837080106e-14 1.171375562e-15 3.98297043e-15 8.493367938e-16 2.17288989e-18 0 2.089523314e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 2.245288981e-19 0 7.528527114e-18 3.346250307e-17 1.589613196e-15 3.078453802e-15 5.231300234e-14 2.311920114e-13 2.637324211e-12 3.480373507e-11 7.354379488e-11 2.956631313e-10 5.45295306e-10 3.526717096e-10 9.215111829e-10 2.347659254e-09 3.680840167e-09 3.755722024e-09 4.333784098e-09 4.482056373e-09 8.228506555e-09 5.994779322e-09 8.938732551e-09 1.299073432e-08 9.901010469e-09 1.424612207e-08 1.559976467e-08 1.622642442e-08 1.876676499e-08 1.675447965e-08 1.619121264e-08 2.473373702e-08 1.904083943e-08 2.152302268e-08 2.392337257e-08 2.805196953e-08 2.942926397e-08 2.920416563e-08 3.140390584e-08 3.33576198e-08 3.498213177e-08 3.76253605e-08 4.021995402e-08 3.841972807e-08 4.189316795e-08 4.221545433e-08 4.25770098e-08 4.329053749e-08 3.705999011e-08 3.894683227e-08 4.729194429e-08 4.265950107e-08 4.304369861e-08 3.698018499e-08 3.348047203e-08 4.067606425e-08 3.791784701e-08 3.859523166e-08 3.2800518e-08 4.021844768e-08 4.148516105e-08 3.175192141e-08 3.375065251e-08 2.52917334e-08 3.897637056e-08 3.121772519e-08 2.564114677e-08 2.364317529e-08 2.427152078e-08 2.050328032e-08 1.861328238e-08 1.34490527e-08 1.381921718e-08 2.086416033e-08 1.940699951e-08 1.608735234e-08 1.85215849e-08 1.396348444e-08 2.107107762e-08 1.437038681e-08 2.000127739e-08 1.802546395e-08 1.247678591e-08 1.276994751e-08 1.562111273e-08 1.459084742e-08 1.239801118e-08 1.84023516e-08 1.560540701e-08 1.139121781e-08 1.557576653e-08 1.189368768e-08 1.56545457e-08 1.463579287e-08 1.887226757e-08 1.249012762e-08 1.828519417e-08 2.121680373e-08 1.689382591e-08 1.586688156e-08 1.738766259e-08 1.412243293e-08 1.815083315e-08 1.832351544e-08 2.768621702e-08 1.408484033e-08 2.092718512e-08 2.521138464e-08 2.747484128e-08 3.174242828e-08 2.73151194e-08 3.534634129e-08 3.342743982e-08 4.313717957e-08 3.673871622e-08 3.585024021e-08 3.77726887e-08 3.863999174e-08 4.588900512e-08 4.635582205e-08 3.259275919e-08 4.482380685e-08 4.163013468e-08 4.742710692e-08 4.98603385e-08 4.005448772e-08 4.512452977e-08 4.082351091e-08 4.204563304e-08 3.768791733e-08 4.300981973e-08 4.175966076e-08 3.511381399e-08 3.063423556e-08 3.311155545e-08 3.673824644e-08 3.277648537e-08 2.903860956e-08 2.894987505e-08 2.763747622e-08 2.342963416e-08 2.670402324e-08 2.473128867e-08 1.892634036e-08 1.634789674e-08 2.059584651e-08 1.739625724e-08 1.486379034e-08 1.323652815e-08 1.39639579e-08 1.032537246e-08 1.252640493e-08 9.429788909e-09 9.34938974e-09 6.696607637e-09 3.460542615e-09 4.183927376e-09 2.547445857e-09 1.137685991e-09 4.634952408e-10 4.286960243e-10 7.876556205e-10 1.034057318e-10 7.273499085e-11 1.876744346e-11 9.002488833e-13 1.139944928e-12 3.786443264e-15 2.908503705e-15 6.216937011e-17 5.187519633e-17 2.19466338e-17 3.66344867e-18 4.423639168e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 6.628526114e-19 3.604254733e-18 1.978482232e-17 7.514218649e-17 5.915546912e-16 3.554102124e-15 8.375249723e-15 5.298180805e-13 5.727570819e-12 2.131551809e-11 1.186896701e-10 5.923549732e-10 3.08659038e-10 5.675000908e-10 8.04671402e-10 1.02177924e-09 3.26588466e-09 2.674245248e-09 5.270136181e-09 7.483344382e-09 9.671641995e-09 9.312158684e-09 1.370862705e-08 1.267611465e-08 1.572088511e-08 1.327869259e-08 1.433348838e-08 1.231327345e-08 1.717678355e-08 1.748575009e-08 1.661710453e-08 1.89639615e-08 2.436917439e-08 2.193936987e-08 2.90773895e-08 2.149047468e-08 2.822740683e-08 3.149650006e-08 2.983915191e-08 3.27481166e-08 3.339136284e-08 3.200223806e-08 4.15086207e-08 4.105992244e-08 3.589398598e-08 3.568684939e-08 4.4128306e-08 4.899042263e-08 4.665078514e-08 3.62824898e-08 3.272852612e-08 3.820656578e-08 3.549106296e-08 4.168216878e-08 3.782713932e-08 3.384894534e-08 4.492037313e-08 4.696438873e-08 3.592855228e-08 3.303277753e-08 2.789121231e-08 3.831527756e-08 2.582299192e-08 2.634405306e-08 3.090311539e-08 2.090460543e-08 1.972681053e-08 2.742049793e-08 2.770288884e-08 1.790242292e-08 2.123804855e-08 1.482703356e-08 1.967642825e-08 1.617194301e-08 1.844689384e-08 2.259339383e-08 1.666235299e-08 1.888277381e-08 1.973045771e-08 6.35712168e-09 1.529146323e-08 1.308159623e-08 1.492108273e-08 1.726860505e-08 2.041400797e-08 2.782059584e-08 1.39651969e-08 1.628181632e-08 1.679833931e-08 1.661531256e-08 1.728987878e-08 1.437832373e-08 1.337818235e-08 1.572905481e-08 1.652433731e-08 1.766614321e-08 1.545628027e-08 1.647303151e-08 1.904110071e-08 1.543529134e-08 1.792589881e-08 1.459960986e-08 1.512873151e-08 2.473754777e-08 2.74500549e-08 1.396070104e-08 1.973563978e-08 2.833181211e-08 2.240223848e-08 2.789904358e-08 2.873328498e-08 2.878926067e-08 3.564984666e-08 4.143904211e-08 2.711954008e-08 3.356409179e-08 3.827260425e-08 4.205412865e-08 3.684270627e-08 4.187284668e-08 3.538153187e-08 4.106515007e-08 4.649428168e-08 4.062423733e-08 3.822593759e-08 4.359906303e-08 4.43357285e-08 3.472754975e-08 4.77914734e-08 4.606114557e-08 3.855753629e-08 3.185673472e-08 3.824831419e-08 3.620797738e-08 3.245669266e-08 3.349443069e-08 3.554621368e-08 2.571972832e-08 2.851862687e-08 2.57620898e-08 2.287338048e-08 2.512224284e-08 2.231592055e-08 1.588540184e-08 2.093347173e-08 1.371354144e-08 1.501192675e-08 1.409621259e-08 1.457108986e-08 1.417759973e-08 1.04409393e-08 8.387912976e-09 1.013165645e-08 8.655916495e-09 5.510505217e-09 4.108931191e-09 3.729477342e-09 2.315160831e-09 1.563177748e-09 6.152709168e-10 4.672767051e-10 3.338014309e-10 1.988535719e-10 1.476702503e-10 1.147323785e-11 7.60255832e-13 7.343560046e-13 1.72043304e-14 1.731564195e-14 2.357432892e-17 2.321760654e-16 1.341591163e-18 4.610118984e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.194440887e-17 4.510774132e-17 1.146890217e-16 5.398523e-15 1.332662308e-14 4.357055536e-14 1.660287545e-12 5.131214345e-11 2.913216313e-11 1.212889177e-10 9.621043653e-10 7.067376726e-10 5.438228167e-10 1.504092322e-09 1.823479825e-09 4.480075441e-09 6.475332395e-09 6.03071913e-09 7.518901053e-09 7.497048078e-09 9.815074215e-09 9.470270894e-09 1.505031228e-08 1.266234369e-08 1.394249943e-08 1.482543599e-08 1.834986011e-08 1.858241734e-08 1.972495049e-08 2.011025713e-08 2.247299183e-08 2.937186086e-08 1.985957076e-08 2.441159009e-08 2.667782812e-08 3.376986066e-08 3.555705003e-08 2.883490379e-08 3.504576987e-08 2.869342859e-08 3.425569367e-08 3.912468009e-08 4.263821774e-08 3.632823251e-08 4.34666569e-08 3.958769161e-08 4.417356792e-08 3.094267817e-08 4.555061302e-08 4.5436427e-08 4.400210886e-08 4.26947159e-08 3.616183845e-08 4.502947459e-08 3.630622907e-08 3.188827883e-08 3.854028863e-08 3.462712594e-08 3.765071373e-08 3.736897249e-08 2.124392849e-08 3.114355033e-08 3.219205009e-08 2.112230451e-08 2.49741586e-08 2.853985481e-08 1.958287336e-08 1.540459398e-08 1.705359485e-08 2.010488001e-08 1.417488162e-08 2.378639672e-08 1.835495702e-08 2.038211987e-08 2.129268662e-08 1.678045078e-08 1.326266926e-08 1.432386047e-08 1.537611923e-08 1.332001618e-08 1.774614481e-08 1.149830571e-08 1.131078687e-08 1.568639538e-08 1.246396472e-08 1.512816268e-08 1.07130403e-08 1.531429781e-08 7.062434367e-09 1.488170511e-08 1.884193241e-08 1.678702976e-08 1.769939874e-08 1.978988339e-08 1.197335688e-08 1.906748115e-08 2.09598931e-08 1.090927123e-08 1.647150644e-08 2.110579808e-08 1.493920163e-08 2.024384081e-08 2.119107918e-08 1.563705617e-08 2.417802159e-08 2.272571937e-08 3.255563619e-08 2.158344642e-08 3.349772852e-08 3.173237439e-08 3.277015562e-08 3.114544973e-08 3.403249028e-08 4.434403178e-08 4.05607816e-08 3.840125674e-08 5.029586623e-08 4.775163095e-08 4.453220192e-08 4.438145722e-08 3.946679517e-08 4.072040453e-08 3.674593174e-08 3.856345081e-08 3.836803951e-08 4.451977953e-08 3.729975498e-08 3.780503327e-08 3.351665791e-08 3.171844617e-08 3.326174057e-08 3.216426255e-08 3.743491068e-08 3.139632471e-08 3.237890446e-08 2.829418148e-08 2.737800957e-08 2.554526696e-08 2.34041388e-08 2.45923545e-08 2.429405535e-08 1.99764735e-08 1.538170171e-08 1.858298175e-08 1.588006624e-08 1.485154489e-08 1.749725572e-08 1.308627418e-08 1.057513368e-08 1.019685932e-08 8.418190817e-09 8.837529972e-09 6.578391162e-09 5.974947957e-09 2.136303502e-09 2.79862592e-09 6.572659431e-10 4.48935138e-10 1.033385133e-10 4.419003613e-10 3.139292688e-10 6.075147785e-11 1.539442137e-11 7.286664887e-13 9.725634501e-15 3.082701117e-14 7.321132606e-15 3.365913362e-16 3.972432709e-16 2.254537281e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.703376144e-19 3.525113235e-17 2.517418299e-17 9.756925305e-17 1.761947011e-14 5.920429241e-14 1.918320615e-13 8.921899676e-12 2.400393767e-11 3.243656234e-10 3.060083137e-10 9.057461171e-10 9.770065711e-10 6.320885576e-10 6.615382861e-10 1.855174554e-09 3.837048943e-09 4.471594773e-09 5.829420631e-09 4.722182362e-09 1.14248545e-08 8.691623905e-09 1.043179964e-08 7.493023278e-09 1.362842272e-08 1.714389397e-08 1.550693484e-08 1.969662884e-08 1.961585691e-08 2.185749368e-08 2.129144766e-08 2.390464773e-08 2.313864222e-08 2.392983799e-08 2.911258095e-08 2.161034614e-08 3.068884074e-08 3.189156941e-08 3.358889356e-08 3.198121492e-08 3.557823964e-08 3.674534922e-08 3.561437509e-08 4.029981174e-08 3.405969389e-08 3.398343312e-08 3.789949988e-08 4.077365708e-08 3.609651517e-08 4.370507475e-08 4.054574465e-08 4.778294128e-08 3.818230794e-08 5.061274981e-08 3.657033044e-08 3.436818053e-08 3.570576385e-08 3.987008379e-08 3.244476271e-08 3.17432498e-08 3.55955844e-08 2.444314037e-08 4.696935093e-08 3.246977215e-08 2.418919537e-08 2.305776573e-08 1.714577812e-08 2.522838208e-08 1.706237093e-08 1.756051741e-08 2.199718e-08 1.813506217e-08 1.297134411e-08 1.33027348e-08 1.3883514e-08 2.390227953e-08 2.051736725e-08 1.434080722e-08 1.12726118e-08 1.919357373e-08 1.981442342e-08 1.266868713e-08 1.276663954e-08 1.878186868e-08 1.679283469e-08 9.198776716e-09 1.136896977e-08 1.642684949e-08 1.41925704e-08 2.004837107e-08 1.182021543e-08 1.087822503e-08 1.516568038e-08 1.381582419e-08 1.409967174e-08 1.341211848e-08 2.351367639e-08 1.217624615e-08 1.386129011e-08 1.521262787e-08 1.095102669e-08 1.860159609e-08 2.085349938e-08 2.318005968e-08 1.227821554e-08 2.84973126e-08 2.16616455e-08 3.007354631e-08 1.903905141e-08 4.006528348e-08 3.566320152e-08 3.286257491e-08 3.589374596e-08 3.224520028e-08 3.670109801e-08 3.24591464e-08 4.116386794e-08 3.993345512e-08 4.268244888e-08 4.498118438e-08 3.93048333e-08 4.504848603e-08 4.110950466e-08 4.186539473e-08 4.529364042e-08 3.906984552e-08 4.061058453e-08 3.309986887e-08 3.640652079e-08 4.738398257e-08 3.426780011e-08 3.819218379e-08 3.119944555e-08 2.966179411e-08 2.96761397e-08 2.808994794e-08 3.032700209e-08 2.615025572e-08 2.646673502e-08 2.70077315e-08 1.812597053e-08 2.362350994e-08 2.108825195e-08 2.158113801e-08 1.675375442e-08 1.881791811e-08 1.227864632e-08 1.27886112e-08 1.456241898e-08 7.939882504e-09 1.137209645e-08 9.709990041e-09 6.466482442e-09 5.196952631e-09 2.144726322e-09 3.961875091e-09 3.391820285e-09 1.443430409e-09 9.178883778e-10 6.197354779e-10 6.33043322e-10 8.706130531e-12 1.376106616e-11 1.437053911e-12 1.500663688e-12 2.168937844e-13 6.307883594e-14 2.104153897e-15 4.150352859e-16 1.870300148e-17 6.619367489e-17 0 3.856721948e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.752449046e-18 7.122614015e-18 3.714845811e-18 1.799475165e-16 1.183227219e-15 1.866697308e-15 5.319836534e-14 3.344014397e-12 1.518120372e-11 7.603851122e-11 3.138747077e-10 5.612560475e-10 3.988193033e-10 5.455261324e-10 2.355537672e-09 2.713102984e-09 2.798354505e-09 3.953995636e-09 5.598856984e-09 8.406628543e-09 1.0263267e-08 9.823448991e-09 1.106517155e-08 1.416827799e-08 1.516459437e-08 1.662760235e-08 1.550444729e-08 1.902151883e-08 2.105054947e-08 1.865041811e-08 2.361595614e-08 1.72095473e-08 2.378040028e-08 2.492690303e-08 2.633440571e-08 2.515956545e-08 3.195501484e-08 3.061263645e-08 2.767175723e-08 3.260521418e-08 3.676633917e-08 3.431549927e-08 3.396384265e-08 3.332788902e-08 4.104563725e-08 3.904685841e-08 3.399706334e-08 4.08665444e-08 4.235097485e-08 3.233389232e-08 3.997330152e-08 3.671784724e-08 3.424158359e-08 3.866809533e-08 3.210065338e-08 4.728518747e-08 3.893788559e-08 4.386890199e-08 3.297988921e-08 3.329992588e-08 3.362070428e-08 3.171667999e-08 1.887494865e-08 2.841595818e-08 2.359406044e-08 1.975980972e-08 2.262656621e-08 2.210330029e-08 1.894642762e-08 2.36451e-08 2.536589191e-08 2.363924946e-08 1.531677298e-08 1.447567628e-08 1.39545494e-08 2.428816973e-08 2.171001272e-08 1.352167751e-08 1.897168825e-08 1.419205902e-08 2.14341306e-08 1.44665976e-08 1.422379463e-08 8.687822935e-09 1.279608794e-08 1.535971848e-08 1.290948736e-08 1.587029443e-08 9.981738358e-09 1.816791323e-08 1.358185572e-08 1.393428435e-08 1.053636429e-08 1.559055111e-08 1.442390933e-08 1.745770365e-08 4.894876845e-09 1.269695153e-08 2.078283437e-08 1.477584903e-08 1.699103364e-08 1.155571539e-08 2.152436488e-08 2.067630213e-08 1.532567235e-08 2.243178028e-08 2.915809085e-08 1.861262276e-08 3.190390997e-08 2.301451031e-08 2.916433557e-08 3.397850039e-08 2.645180665e-08 3.783908115e-08 4.4268192e-08 3.63201509e-08 3.065114255e-08 3.508288957e-08 3.715841838e-08 3.532248934e-08 3.65992371e-08 3.947172478e-08 3.586485755e-08 3.611096097e-08 4.005686017e-08 4.358338448e-08 3.170539894e-08 3.853390632e-08 3.756292359e-08 3.95126397e-08 2.973775556e-08 2.878084184e-08 3.204058329e-08 3.467022803e-08 3.174264066e-08 2.29219087e-08 3.030716759e-08 2.135883803e-08 2.409932222e-08 2.543473201e-08 1.873799941e-08 2.263270944e-08 1.707571097e-08 1.375224786e-08 1.754797777e-08 1.663248858e-08 1.394412594e-08 1.287219052e-08 8.562316304e-09 1.074850235e-08 9.357167379e-09 1.171762092e-08 8.553311189e-09 6.747739148e-09 6.680157945e-09 2.857035124e-09 2.038216617e-09 7.082761913e-10 4.312074929e-10 6.390865852e-10 4.348635602e-10 3.579789345e-10 5.514882779e-11 4.214063794e-12 1.924373011e-13 1.021754866e-12 2.776811711e-15 4.473398537e-15 3.487242774e-16 7.13601968e-17 1.591439592e-17 1.376503695e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.540040963e-18 2.48084161e-17 7.592133284e-17 2.976773549e-16 4.30072239e-15 2.415465919e-13 2.042214133e-13 5.720504667e-12 2.434940748e-11 1.112253134e-10 1.305937685e-11 7.930648729e-10 5.195972379e-10 4.545186922e-10 1.47947823e-09 2.523661299e-09 2.781052769e-09 4.484771085e-09 3.605553974e-09 6.97464305e-09 6.132888304e-09 5.58099868e-09 9.104445954e-09 1.029200759e-08 1.416465776e-08 1.32680801e-08 1.796861378e-08 1.720293025e-08 1.707416876e-08 1.886748415e-08 2.257037679e-08 2.427711798e-08 2.347504795e-08 2.810423782e-08 2.785163213e-08 2.723731782e-08 2.795416788e-08 2.673994587e-08 3.415977915e-08 3.296585564e-08 3.172521326e-08 3.756274568e-08 3.323834749e-08 3.751175855e-08 3.812310054e-08 4.283296952e-08 3.775738679e-08 3.513740978e-08 4.036575305e-08 4.693196429e-08 3.894330604e-08 4.16095528e-08 3.640576351e-08 3.405897191e-08 3.806700406e-08 3.811905478e-08 3.649057737e-08 4.352360205e-08 3.39728897e-08 3.336138259e-08 2.864427119e-08 2.945149582e-08 2.847149454e-08 2.887732046e-08 2.709496127e-08 2.019039492e-08 1.742055422e-08 2.085525749e-08 1.481728057e-08 1.092099737e-08 9.106642229e-09 2.49634748e-08 1.574971665e-08 1.399183698e-08 1.881218853e-08 7.89720929e-09 1.326141278e-08 1.414603362e-08 1.563946327e-08 1.530252022e-08 1.573491751e-08 1.941140806e-08 1.86016198e-08 1.292872691e-08 2.028829831e-08 1.023940881e-08 1.434641006e-08 1.756921856e-08 1.514319577e-08 1.854268818e-08 1.511852898e-08 1.360572872e-08 1.746424707e-08 9.900649054e-09 1.841037008e-08 1.137360429e-08 2.057628675e-08 2.068877669e-08 1.282628902e-08 1.673074837e-08 1.293776662e-08 1.58570934e-08 1.42073343e-08 1.835184408e-08 2.053462034e-08 2.83801298e-08 2.496280868e-08 2.04821784e-08 2.063926427e-08 3.16699136e-08 1.790010787e-08 3.338649342e-08 3.234254886e-08 3.942414065e-08 3.662052657e-08 3.579903176e-08 3.383158486e-08 4.257354172e-08 3.458008803e-08 3.613318911e-08 3.353490437e-08 4.769817742e-08 4.118135557e-08 4.415218722e-08 3.725760591e-08 4.13774893e-08 4.108103985e-08 3.634947074e-08 3.689264273e-08 3.649096446e-08 3.974150666e-08 3.78083548e-08 3.080956126e-08 3.076681528e-08 3.109749516e-08 2.628312334e-08 2.483276619e-08 2.800758077e-08 1.870715945e-08 2.549996635e-08 2.008205409e-08 1.970054707e-08 1.908570526e-08 1.852050853e-08 1.510831516e-08 1.743439526e-08 1.232451141e-08 8.492297869e-09 1.04007843e-08 9.347309408e-09 9.494369529e-09 6.53831346e-09 6.314050802e-09 4.054671096e-09 3.49594031e-09 3.148589241e-09 2.491316007e-09 1.388571849e-09 6.493075575e-10 7.729547656e-10 2.906138769e-10 3.758446799e-10 8.157185229e-11 4.398871661e-12 5.458295718e-12 5.638759955e-14 1.67273114e-13 1.229814509e-15 4.724146434e-17 8.160843552e-19 9.07308897e-18 0 0 0 0 0 0 0 0 0 0 0 8.902682706e-11 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.721997922e-18 1.648347226e-18 5.497353768e-17 1.17647817e-16 1.355726741e-14 8.719722371e-15 4.223146582e-13 1.226163596e-13 3.861236455e-12 2.088087846e-11 1.937448263e-10 5.966743755e-10 4.94425715e-10 4.592642523e-10 1.014893879e-09 1.966118857e-09 4.325720594e-09 6.040678118e-09 7.694280275e-09 7.255580642e-09 6.198283762e-09 7.025629773e-09 1.341447367e-08 1.477740846e-08 1.385713515e-08 1.40031512e-08 1.508165607e-08 1.656676802e-08 1.841583627e-08 1.993848649e-08 1.993744565e-08 2.006080214e-08 2.446110067e-08 2.57866093e-08 1.985557461e-08 2.919959246e-08 2.793585124e-08 3.031518008e-08 3.09179001e-08 3.472826842e-08 3.470961135e-08 3.223097691e-08 3.720209437e-08 4.213642899e-08 3.31858059e-08 3.695454609e-08 3.316670832e-08 3.652454448e-08 4.187899156e-08 3.692392725e-08 4.382218477e-08 3.360283909e-08 3.54876281e-08 3.863391098e-08 3.313573498e-08 4.178444904e-08 3.796431419e-08 2.809576127e-08 4.245619594e-08 2.504254098e-08 2.265249216e-08 2.758170172e-08 2.79860676e-08 2.285913052e-08 1.612205966e-08 2.402083225e-08 2.06442494e-08 2.327446502e-08 1.335906098e-08 1.675784749e-08 1.839703743e-08 1.863240757e-08 1.223213194e-08 1.887436611e-08 1.96452581e-08 1.681881961e-08 1.338260988e-08 1.222184499e-08 1.280661474e-08 1.509671651e-08 1.940161248e-08 1.142625698e-08 1.072842697e-08 1.035647714e-08 1.105435098e-08 1.391753415e-08 1.088160533e-08 1.575764041e-08 1.113261819e-08 1.258869759e-08 1.513907395e-08 1.135321365e-08 1.70139002e-08 1.994515961e-08 1.107532505e-08 1.27096303e-08 1.055671065e-08 1.722822544e-08 2.411771331e-08 1.324103301e-08 1.52843597e-08 2.179026714e-08 2.067021494e-08 2.118862903e-08 1.823653622e-08 1.639564175e-08 1.544347704e-08 1.74925173e-08 2.587877847e-08 3.202619819e-08 1.585510653e-08 3.133705738e-08 2.724425626e-08 2.691242502e-08 4.451478088e-08 3.950284043e-08 3.192034476e-08 3.440901322e-08 3.926163366e-08 2.653212171e-08 4.478531354e-08 4.71976404e-08 3.57741117e-08 3.490714595e-08 3.438569831e-08 4.434313751e-08 4.527662824e-08 3.901015283e-08 3.838735974e-08 3.185585137e-08 2.812843295e-08 3.2177882e-08 2.880392873e-08 3.451953656e-08 2.757424303e-08 2.927166579e-08 2.755065739e-08 2.860268681e-08 2.185373015e-08 2.068986788e-08 2.091971032e-08 1.934252053e-08 2.195974217e-08 1.962903585e-08 1.914000568e-08 1.224679762e-08 1.534015526e-08 1.083734673e-08 1.208677168e-08 1.050432255e-08 8.469860628e-09 1.095577751e-08 7.212848318e-09 6.705005984e-09 3.687749456e-09 2.782293018e-09 2.308068689e-09 2.464442823e-09 3.168984474e-11 7.260938775e-10 6.901994366e-10 3.981280537e-10 6.450651425e-11 8.309107612e-12 2.29640639e-12 1.303943675e-13 3.333626758e-15 5.261315033e-15 7.812149196e-16 4.346339953e-18 9.749052843e-18 3.170177499e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.405921211e-18 2.684639729e-18 2.435784231e-17 6.673976162e-16 7.282979637e-16 4.497806489e-14 2.129634069e-13 7.873535372e-14 1.973113732e-11 6.545338392e-11 9.182404806e-11 6.279781197e-10 2.642442181e-10 8.237545106e-10 7.534104392e-10 3.086058768e-09 3.991046012e-09 3.095446481e-09 5.462086269e-09 7.018407701e-09 7.961830924e-09 1.112490399e-08 1.049274489e-08 1.003986725e-08 1.080239853e-08 1.34155631e-08 1.608900878e-08 1.575562849e-08 1.542594183e-08 1.984061493e-08 1.930880208e-08 2.009470206e-08 2.35813166e-08 1.850026564e-08 2.582304584e-08 2.732138407e-08 2.589261552e-08 2.756254547e-08 2.950685413e-08 2.940960591e-08 2.978251461e-08 3.660259066e-08 3.427918784e-08 3.286213179e-08 3.533068603e-08 3.509929833e-08 3.543517239e-08 3.333897811e-08 3.184868439e-08 4.205429905e-08 3.81044909e-08 3.921175925e-08 3.822275968e-08 3.86803411e-08 3.541418851e-08 2.454392292e-08 2.847981168e-08 3.311356643e-08 3.822742385e-08 2.672629818e-08 3.781702714e-08 3.031161279e-08 2.739068555e-08 2.58183633e-08 2.312141082e-08 2.302806172e-08 8.053763536e-09 2.044313414e-08 2.05478871e-08 1.550489987e-08 1.642905034e-08 1.285640826e-08 1.913326548e-08 1.567519391e-08 9.498620467e-09 1.293047603e-08 1.595324119e-08 1.132010437e-08 1.168788211e-08 1.605789257e-08 1.065783021e-08 1.452552926e-08 9.674933733e-09 1.508320972e-08 9.842994811e-09 8.005731598e-09 1.586991794e-08 1.187994934e-08 1.230510507e-08 1.415675465e-08 1.74013827e-08 8.593291674e-09 1.103109971e-08 1.074101446e-08 1.506625296e-08 1.413639769e-08 1.316191196e-08 1.736724101e-08 1.309717521e-08 2.160525383e-08 1.091905651e-08 1.620119266e-08 1.042800772e-08 2.172676809e-08 2.127619581e-08 1.274512459e-08 1.892108665e-08 2.524706089e-08 2.704858478e-08 2.410607593e-08 3.662065688e-08 2.155215934e-08 3.426229663e-08 3.208710076e-08 3.461242895e-08 3.01613225e-08 2.853716377e-08 3.617848232e-08 3.901531585e-08 3.43183321e-08 3.457871555e-08 3.8502695e-08 3.966006925e-08 4.100025287e-08 3.049938299e-08 3.780026433e-08 3.425336345e-08 3.552114009e-08 3.702101627e-08 2.854391767e-08 3.244756401e-08 3.048098341e-08 2.81670491e-08 3.167498992e-08 2.415778748e-08 2.857594029e-08 3.005979971e-08 2.765452786e-08 2.655898017e-08 1.625426534e-08 2.003020467e-08 1.97048246e-08 1.770885217e-08 1.607013793e-08 9.897551302e-09 1.09483984e-08 1.237183139e-08 1.482812291e-08 1.053047953e-08 7.275021702e-09 7.830294871e-09 7.905275591e-09 6.487211885e-09 5.247965727e-09 4.311730615e-09 3.64429669e-09 3.799111413e-09 9.75032461e-10 7.34774955e-10 4.195684212e-10 1.944112464e-10 2.774054325e-11 6.156689375e-11 8.144140513e-12 2.755397944e-12 3.237192541e-13 1.427368194e-14 1.727521834e-15 1.995344965e-15 1.563574706e-17 6.457413294e-18 8.275909228e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.929241389e-20 0 1.222124213e-17 6.292508859e-16 8.770800407e-15 1.33353108e-13 1.314736047e-14 3.653500224e-12 1.817029649e-11 2.32790937e-11 3.057802415e-10 1.431066499e-10 3.978641781e-10 9.177186465e-10 1.032469507e-09 1.651686253e-09 3.532694044e-09 5.647142898e-09 3.59705415e-09 4.753135328e-09 7.358824544e-09 6.969975079e-09 1.06935231e-08 1.094381014e-08 1.146321724e-08 1.819789215e-08 1.654909224e-08 1.417159899e-08 2.127285146e-08 1.818821066e-08 2.211797814e-08 2.000753649e-08 1.642973534e-08 2.660548496e-08 2.326976567e-08 2.435708514e-08 2.477592017e-08 3.300391348e-08 2.842577874e-08 3.225226499e-08 3.186632626e-08 3.12162311e-08 3.524702983e-08 3.472328735e-08 4.24085387e-08 4.023055386e-08 3.593995144e-08 3.804657726e-08 3.02939287e-08 3.154539965e-08 4.016931071e-08 3.607976203e-08 3.929922701e-08 3.149817563e-08 3.69213087e-08 2.805991027e-08 2.952143357e-08 2.939152545e-08 3.035398148e-08 2.992098005e-08 3.071260909e-08 2.936072937e-08 2.689553911e-08 2.252318516e-08 2.122053357e-08 2.451699446e-08 2.211447067e-08 2.034417934e-08 1.453669145e-08 1.669846731e-08 2.430229659e-08 1.716006672e-08 1.92944912e-08 1.411727007e-08 1.478788439e-08 1.757499612e-08 1.898426897e-08 1.164719927e-08 1.341025747e-08 8.755839338e-09 1.74631634e-08 1.666538085e-08 1.397652679e-08 6.471387295e-09 1.451193893e-08 1.493592615e-08 1.397398141e-08 1.115071656e-08 8.030756592e-09 1.110408174e-08 1.270459411e-08 1.30406326e-08 1.228715798e-08 1.068964948e-08 2.052624736e-08 1.283139882e-08 1.641737478e-08 1.272123035e-08 1.807123159e-08 1.610119151e-08 1.855492654e-08 1.797378143e-08 1.705641585e-08 1.454541449e-08 1.385856975e-08 2.691805155e-08 2.134901541e-08 1.151520741e-08 3.220348444e-08 2.541248863e-08 2.504315985e-08 2.672223448e-08 3.662644926e-08 3.338638852e-08 3.998301461e-08 3.352204579e-08 3.560592616e-08 4.267671952e-08 3.577839971e-08 4.026419454e-08 3.913684383e-08 2.741604213e-08 3.631864124e-08 4.15048162e-08 3.361159643e-08 3.602118649e-08 4.453653887e-08 3.193090962e-08 3.300046358e-08 3.242491858e-08 3.122554037e-08 2.459172279e-08 2.930036224e-08 2.898086442e-08 2.780446546e-08 2.607888784e-08 2.331667062e-08 2.788673529e-08 2.165612622e-08 1.847877985e-08 2.118463067e-08 1.427356207e-08 1.901962343e-08 1.830079696e-08 1.564571028e-08 1.137515756e-08 1.200023783e-08 1.407920058e-08 9.169828473e-09 1.086418743e-08 1.150000942e-08 6.626389868e-09 4.824527033e-09 4.137454206e-09 4.595144175e-09 3.480369564e-09 1.813733499e-09 4.292663456e-10 4.529340368e-10 3.660314275e-10 1.995696873e-10 3.844570968e-10 3.417074072e-11 1.426976462e-11 4.914924122e-13 8.444566593e-14 8.505962478e-15 9.682913424e-16 1.543819174e-16 1.332516695e-16 4.608194596e-18 3.606551808e-19 1.132311013e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.307187626e-18 1.451358285e-18 7.441038139e-17 1.127823329e-16 1.772055458e-15 2.235140744e-14 3.013732401e-13 1.012524857e-12 5.010348436e-11 1.030269724e-11 2.497453054e-11 2.088048969e-10 4.590438835e-10 1.237125091e-10 1.969764744e-09 1.877896908e-09 2.870691308e-09 2.250906466e-09 5.654387731e-09 5.449935308e-09 6.275158557e-09 5.987811446e-09 9.878355011e-09 9.80745476e-09 1.502068495e-08 9.530077962e-09 1.252072851e-08 1.349501035e-08 1.785955114e-08 1.641058254e-08 1.562725721e-08 1.829601756e-08 2.394813544e-08 2.255602386e-08 2.233124904e-08 2.366486152e-08 2.830057528e-08 2.997920568e-08 2.810100987e-08 2.295518645e-08 2.376239673e-08 3.613032231e-08 2.82469673e-08 3.177525511e-08 3.404068019e-08 3.450750761e-08 3.749405691e-08 3.396419705e-08 4.00977935e-08 3.285432822e-08 3.877052531e-08 3.65726551e-08 3.266537971e-08 3.772703594e-08 3.12236187e-08 2.921161321e-08 2.764029039e-08 3.559132547e-08 2.733281488e-08 2.428995112e-08 2.136299787e-08 2.161240251e-08 3.071907859e-08 2.483522747e-08 2.578034497e-08 1.95491291e-08 1.923173477e-08 2.354686432e-08 1.603989858e-08 2.326356233e-08 1.916749617e-08 1.008275103e-08 1.515088082e-08 1.369156372e-08 1.303880796e-08 1.369564384e-08 1.662102622e-08 1.387248334e-08 1.430729326e-08 7.699920205e-09 1.496102316e-08 1.24006837e-08 1.197035452e-08 1.35144943e-08 1.512250732e-08 1.28827182e-08 8.490709745e-09 1.030445908e-08 1.332152716e-08 1.392068569e-08 1.454289905e-08 1.500643212e-08 1.003410801e-08 1.489147426e-08 9.945606995e-09 1.376097134e-08 1.672833032e-08 1.553745258e-08 2.007857315e-08 1.518859394e-08 1.723746685e-08 1.525054265e-08 2.38314227e-08 1.555318631e-08 1.618602983e-08 2.397530141e-08 1.527857618e-08 2.047436546e-08 2.315365716e-08 1.666192715e-08 2.961683974e-08 2.900631935e-08 2.726447342e-08 3.227760275e-08 2.318475872e-08 3.087934905e-08 3.158639138e-08 3.224125199e-08 3.430862778e-08 3.746397964e-08 3.917103196e-08 2.805311213e-08 3.421170552e-08 3.743878203e-08 3.465566973e-08 3.303656516e-08 4.173472699e-08 3.499364973e-08 2.845576883e-08 3.614025193e-08 3.504732461e-08 2.829184518e-08 3.135805057e-08 2.375384679e-08 2.562733849e-08 2.667213206e-08 2.41777494e-08 2.219568265e-08 2.240436955e-08 2.126333763e-08 2.03952507e-08 2.482940015e-08 1.531681327e-08 2.332836419e-08 1.612143967e-08 1.4813945e-08 1.210726594e-08 1.210934214e-08 9.851524922e-09 8.958815161e-09 9.821172297e-09 7.454751835e-09 5.344727132e-09 7.133630703e-09 4.589338333e-09 2.781427103e-09 1.476229154e-09 1.409637493e-09 4.639875992e-10 5.38368772e-10 3.964380797e-10 1.557761156e-10 4.191715451e-11 1.136022769e-11 5.449258986e-12 4.046519608e-14 1.98950568e-13 2.682441e-15 2.768788534e-15 2.022219499e-18 3.737169437e-18 5.335948778e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.452377242e-19 4.524072726e-18 4.384949714e-17 3.314811163e-17 7.511753764e-15 1.408662826e-13 6.267343065e-13 1.453103378e-13 1.395278917e-11 2.285305298e-11 7.757162715e-11 6.853613932e-10 3.271336255e-10 5.921881345e-10 1.054546432e-09 2.470877279e-09 3.500661841e-09 3.622389086e-09 4.734218577e-09 7.083085741e-09 8.049607887e-09 7.710115435e-09 1.154048146e-08 1.030103035e-08 1.404108084e-08 1.286764734e-08 1.124179492e-08 1.377965856e-08 2.090437192e-08 1.797415647e-08 1.835812256e-08 1.878330049e-08 2.295454263e-08 2.166591453e-08 1.832565659e-08 2.504414286e-08 2.30688348e-08 2.548815822e-08 2.807582855e-08 2.640784676e-08 2.520794336e-08 2.575164009e-08 2.849469791e-08 3.098974762e-08 3.352238609e-08 3.080790618e-08 3.313374954e-08 3.398256703e-08 3.189015441e-08 3.117759065e-08 2.662127093e-08 4.078277494e-08 3.615641465e-08 3.676140511e-08 3.226747798e-08 3.320259985e-08 2.47975129e-08 3.457153883e-08 2.661008996e-08 3.443478331e-08 2.264974079e-08 3.637407196e-08 1.842575261e-08 3.065650712e-08 2.218850822e-08 2.080920974e-08 2.463786506e-08 2.43184954e-08 1.151455892e-08 1.591256844e-08 9.868412917e-09 1.223495395e-08 3.045617821e-08 1.28431996e-08 1.294335425e-08 1.846485983e-08 1.549664039e-08 1.087270648e-08 1.330418322e-08 1.177769234e-08 9.171851466e-09 1.035801647e-08 1.069287623e-08 1.041395929e-08 1.257898267e-08 1.252452857e-08 1.219918926e-08 8.519062981e-09 1.667933107e-08 1.356626633e-08 2.054857862e-08 9.545850165e-09 1.075268924e-08 1.336632526e-08 1.458033378e-08 1.346437004e-08 1.162392396e-08 1.677500216e-08 1.938130524e-08 2.153472145e-08 9.555895034e-09 1.972688866e-08 1.766822518e-08 1.096065021e-08 1.796657501e-08 2.351606448e-08 2.544510554e-08 2.900117808e-08 2.950366119e-08 2.959116308e-08 2.283369326e-08 3.339883188e-08 2.650308672e-08 3.16197167e-08 3.214303189e-08 3.094637094e-08 2.953930474e-08 4.044262003e-08 2.747485517e-08 2.737507569e-08 3.374262476e-08 3.359042711e-08 3.877076665e-08 3.123952506e-08 2.941316e-08 3.756591139e-08 3.654236088e-08 3.674620732e-08 3.185719373e-08 3.448750308e-08 3.065432801e-08 2.564563116e-08 2.553012771e-08 2.532961318e-08 2.595263217e-08 2.312194009e-08 2.268827524e-08 2.493789418e-08 2.102551615e-08 2.078312557e-08 1.914455032e-08 1.857211827e-08 1.655143893e-08 1.679945277e-08 1.591090172e-08 1.491344481e-08 1.42349402e-08 1.304531933e-08 1.280128401e-08 1.009680145e-08 7.18034956e-09 5.850673567e-09 7.453949717e-09 4.259921312e-09 1.987029091e-09 3.455392376e-09 2.424985868e-09 1.154887997e-09 2.010112111e-10 8.032205472e-10 6.726510557e-10 1.492871915e-10 1.481384658e-11 4.826858736e-12 4.606312614e-12 1.321722245e-13 8.063542262e-14 2.579616429e-15 2.887991596e-17 1.986969351e-17 2.971612303e-17 9.390201964e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.664555233e-19 0 2.583244384e-18 5.299357593e-17 1.426085608e-15 1.243573648e-14 1.178919157e-14 1.040723474e-13 2.167750714e-12 7.053098775e-12 5.751170926e-11 2.642264042e-10 1.668106027e-10 4.522369436e-10 4.17257828e-10 8.595765503e-10 2.138408763e-09 3.155879938e-09 3.440960646e-09 5.99623408e-09 7.937900985e-09 7.591969456e-09 6.692431002e-09 6.019717461e-09 1.27167903e-08 1.129375479e-08 1.081037266e-08 1.186214788e-08 1.396922925e-08 1.636662485e-08 2.180859673e-08 1.817100492e-08 1.763300111e-08 2.145054758e-08 2.243233214e-08 2.215907744e-08 2.317080791e-08 2.283331561e-08 2.486099936e-08 2.804691796e-08 3.263327117e-08 2.925502541e-08 2.934293322e-08 2.742122593e-08 3.66629932e-08 3.323206479e-08 3.131435262e-08 4.471147696e-08 2.883225535e-08 3.560399455e-08 3.632996632e-08 2.967070648e-08 3.213434706e-08 3.715274305e-08 3.766430568e-08 2.788992978e-08 2.39150068e-08 2.125552395e-08 3.996079264e-08 2.591196544e-08 2.627382742e-08 1.969872344e-08 2.387541172e-08 2.566507866e-08 1.235199847e-08 1.633081453e-08 2.437758204e-08 2.141220661e-08 1.407665284e-08 1.340326034e-08 1.920040381e-08 1.053945277e-08 1.700721781e-08 1.976728494e-08 2.226808372e-08 1.438742802e-08 1.021772952e-08 1.295211719e-08 1.105100661e-08 6.698864118e-09 1.184400923e-08 6.310293595e-09 1.422672961e-08 1.269772035e-08 1.190229835e-08 1.753653296e-08 1.100574186e-08 8.931972418e-09 1.346784495e-08 1.150442009e-08 1.41256295e-08 1.646638379e-08 9.003722229e-09 9.169669995e-09 8.01172188e-09 1.075705329e-08 1.374560278e-08 1.250789574e-08 8.062835143e-09 1.543051729e-08 1.764082718e-08 6.907795115e-09 1.218617423e-08 1.785934428e-08 1.588395728e-08 2.71142268e-08 2.524962529e-08 1.947607457e-08 2.233556542e-08 3.054651213e-08 2.379360899e-08 2.210797362e-08 3.055296695e-08 2.846062965e-08 3.202362184e-08 3.599436615e-08 3.204424322e-08 3.19114054e-08 3.390001449e-08 3.22091424e-08 3.162355361e-08 3.449439679e-08 3.574902107e-08 3.967931997e-08 3.358482095e-08 2.908269828e-08 3.54002448e-08 3.582900572e-08 3.057671616e-08 2.746755765e-08 3.461290027e-08 2.601025683e-08 2.557761057e-08 2.434642726e-08 2.586217478e-08 2.370860968e-08 2.120163753e-08 2.429115471e-08 2.083956786e-08 1.88017316e-08 1.63970782e-08 1.57624273e-08 1.548127213e-08 1.638077883e-08 1.598672949e-08 1.323925047e-08 1.453158878e-08 1.485298846e-08 1.251465321e-08 1.41066735e-08 1.278252388e-08 7.998359738e-09 5.964923603e-09 7.433890714e-09 4.886410974e-09 3.825692953e-09 2.933488523e-09 9.438418994e-10 5.938819636e-10 5.486850826e-10 3.287316348e-10 2.973905804e-10 2.805495695e-11 9.82291169e-12 6.995174147e-12 2.124667476e-12 2.129020482e-13 4.128625593e-14 1.454758885e-14 3.844060937e-17 2.257040092e-17 6.401255176e-18 1.363774134e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.56340996e-18 5.037685076e-16 5.506476105e-17 2.896291703e-15 9.487278308e-15 7.062443337e-14 3.273358557e-12 3.819328518e-12 4.41735202e-11 1.070054386e-10 4.585911306e-10 1.094349822e-10 1.87621581e-10 9.977061943e-10 2.267795279e-09 2.415952067e-09 3.811504113e-09 5.595527693e-09 5.427195306e-09 6.562407768e-09 7.664942377e-09 9.99001833e-09 8.678914902e-09 8.591098134e-09 1.233765237e-08 1.600928471e-08 1.227706305e-08 1.686721078e-08 1.226617014e-08 1.652621242e-08 1.438829272e-08 1.625071139e-08 2.136863778e-08 2.109098019e-08 2.290633524e-08 2.344513302e-08 2.905105181e-08 2.815311841e-08 2.89921303e-08 2.909777881e-08 2.799448791e-08 2.93591798e-08 2.993892318e-08 3.003102726e-08 3.37626038e-08 2.951913662e-08 3.571589904e-08 4.367880048e-08 3.183174688e-08 3.77619069e-08 2.652227456e-08 2.763014733e-08 2.434026031e-08 2.820682482e-08 2.405927145e-08 3.324613441e-08 4.41598341e-08 2.618289832e-08 2.721204538e-08 3.116162037e-08 2.892532057e-08 2.377882025e-08 1.596045394e-08 2.265627631e-08 2.258646591e-08 1.698951315e-08 1.697389052e-08 9.675953416e-09 1.764498274e-08 1.651778134e-08 1.133825206e-08 1.74086461e-08 1.723188332e-08 1.530565652e-08 1.662320033e-08 1.21288045e-08 7.457422753e-09 9.903227495e-09 1.012009006e-08 5.877627052e-09 1.299641798e-08 1.333070552e-08 1.51756283e-08 1.186026109e-08 1.194839818e-08 2.093414768e-08 1.361381072e-08 1.080249284e-08 1.254359757e-08 1.059883092e-08 1.600823714e-08 1.063139683e-08 8.894979895e-09 1.320942457e-08 1.470415344e-08 1.231634508e-08 1.698055236e-08 1.653454266e-08 2.088536974e-08 1.098520775e-08 2.194269359e-08 1.217392828e-08 1.420218275e-08 1.719445795e-08 2.370654274e-08 1.869554672e-08 2.483979254e-08 1.858276584e-08 2.992796987e-08 2.880750411e-08 3.269248461e-08 2.029360236e-08 3.611741905e-08 2.382297324e-08 3.213734371e-08 2.919224874e-08 3.785817888e-08 3.040088004e-08 2.862275646e-08 3.037320267e-08 3.992804895e-08 3.303886429e-08 3.595090995e-08 3.298404148e-08 3.211308404e-08 3.296435425e-08 3.175166625e-08 3.320501156e-08 2.99930758e-08 2.684359169e-08 2.537449256e-08 2.887462562e-08 2.597447268e-08 2.712298807e-08 2.156067671e-08 2.409688869e-08 2.693478548e-08 1.725811272e-08 2.093886614e-08 1.92114569e-08 1.674335758e-08 1.247722827e-08 1.497599453e-08 1.245278546e-08 1.449835972e-08 9.509586858e-09 9.565052361e-09 7.48075418e-09 9.125328739e-09 5.629832284e-09 6.37961849e-09 6.39368873e-09 4.53290053e-09 5.1515556e-09 2.675195231e-09 2.150446608e-09 1.090390172e-09 2.309233271e-11 2.277572693e-10 8.90387472e-11 7.70863624e-11 4.715011797e-11 1.090602787e-12 1.229805696e-12 7.467412254e-14 2.248198243e-15 1.177392911e-16 8.187982497e-17 2.150715586e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.627103524e-19 5.844320946e-18 6.646415297e-17 2.168452353e-16 1.218281121e-15 3.786721244e-14 7.918332599e-14 1.134283065e-12 2.376646498e-11 7.556743489e-12 8.601431083e-11 1.006415981e-09 6.386962396e-10 2.050374124e-10 1.377779925e-09 1.714883842e-09 1.339871187e-09 5.216159849e-09 3.544718859e-09 6.167507883e-09 7.695516555e-09 5.866946296e-09 5.595529398e-09 8.792018364e-09 1.446966201e-08 1.15437335e-08 1.345628834e-08 1.160059394e-08 1.375346297e-08 1.766624242e-08 2.093483639e-08 1.741213039e-08 1.722665724e-08 1.666274903e-08 1.981278645e-08 1.923855472e-08 2.561801859e-08 2.537059539e-08 2.862513435e-08 2.794838008e-08 2.642585504e-08 3.009065288e-08 3.370870283e-08 3.158651538e-08 3.432262578e-08 2.918323626e-08 3.080461903e-08 3.237355125e-08 2.984506583e-08 3.294136206e-08 3.565300563e-08 2.493673245e-08 2.870806203e-08 2.744945744e-08 2.935427722e-08 3.20770127e-08 3.394616791e-08 3.100818416e-08 2.62508799e-08 3.063284922e-08 2.966972238e-08 2.106249411e-08 2.040062545e-08 2.777276625e-08 2.139065465e-08 2.043613932e-08 1.534929875e-08 1.37357605e-08 1.392252658e-08 2.229624716e-08 1.01445173e-08 1.706411843e-08 1.869641565e-08 1.442750437e-08 1.764546061e-08 1.045705868e-08 1.311603585e-08 1.221114938e-08 1.185264281e-08 7.957073724e-09 1.213353569e-08 8.65535181e-09 1.474719134e-08 1.171543363e-08 1.091356613e-08 1.43042062e-08 9.855259791e-09 1.410492219e-08 1.396823947e-08 1.357398387e-08 1.310232178e-08 6.799525117e-09 1.1605486e-08 1.316739616e-08 1.414480605e-08 1.048686154e-08 1.087264776e-08 1.573861951e-08 1.307628542e-08 1.205894007e-08 1.195430464e-08 1.817963912e-08 1.305880512e-08 1.607989693e-08 1.917034344e-08 1.841749261e-08 1.942059676e-08 1.85931297e-08 2.060906586e-08 2.278823602e-08 2.385424265e-08 2.927755097e-08 3.006658057e-08 2.846083585e-08 2.704545616e-08 4.641105414e-08 3.373554351e-08 3.076139003e-08 2.748421401e-08 3.679271229e-08 2.953039764e-08 2.987919032e-08 3.854785297e-08 3.164522557e-08 3.001363229e-08 2.77862509e-08 3.893764298e-08 3.335594052e-08 3.379875697e-08 2.921203205e-08 2.735161643e-08 2.680582768e-08 2.455135304e-08 2.985758277e-08 2.577408957e-08 2.098612784e-08 2.224761019e-08 1.847067423e-08 1.757297905e-08 1.70003998e-08 1.858185755e-08 1.728043677e-08 1.464755409e-08 1.519153533e-08 1.398140066e-08 1.478647616e-08 1.286202637e-08 1.054280498e-08 8.803960826e-09 7.090709253e-09 7.606189606e-09 5.5986057e-09 8.665966645e-09 5.297173424e-09 2.266344593e-09 2.311010116e-09 2.131227254e-09 1.148588952e-09 4.49906457e-10 3.645636057e-10 2.903144958e-10 7.024067615e-11 3.368662877e-11 2.275954646e-11 2.719670033e-12 2.661971817e-14 3.846071138e-14 8.122667344e-15 4.236288474e-16 1.195960505e-17 1.612684958e-17 3.257334224e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 7.603732753e-27 0 1.3740897e-18 6.311581136e-17 1.801238271e-17 2.019870471e-15 4.747325249e-15 6.612774735e-13 1.938239933e-12 1.483207056e-11 1.121710457e-11 1.697168227e-11 2.352446946e-10 8.023062202e-10 4.267388891e-10 1.148976535e-09 1.366892002e-09 2.884406053e-09 4.886574648e-09 5.39671098e-09 4.656514998e-09 6.636612742e-09 8.216454345e-09 6.022330762e-09 7.431941721e-09 9.324330064e-09 1.199816054e-08 1.323248317e-08 1.580154438e-08 1.445287497e-08 1.710585517e-08 1.462046143e-08 1.550409749e-08 2.098616325e-08 1.998324916e-08 2.079779279e-08 2.424334566e-08 2.29147022e-08 2.49832784e-08 2.358704216e-08 2.414998747e-08 2.699528788e-08 2.070533495e-08 3.349702798e-08 2.948959693e-08 2.457103689e-08 3.101859957e-08 3.402511029e-08 2.949239275e-08 3.495708719e-08 2.724998164e-08 3.013038864e-08 2.834458461e-08 2.814621309e-08 3.165749738e-08 3.009450354e-08 2.8493214e-08 2.780913782e-08 2.452308665e-08 2.126532733e-08 2.987586709e-08 3.572719454e-08 1.83056652e-08 1.231964926e-08 1.824437972e-08 1.361761722e-08 1.4792346e-08 1.903918489e-08 2.035169351e-08 1.63838882e-08 1.580224548e-08 1.528954383e-08 1.347489832e-08 1.278580287e-08 1.391763715e-08 9.784261286e-09 1.052955181e-08 9.438505995e-09 1.240126626e-08 1.126597261e-08 1.302565823e-08 9.078172885e-09 1.036925524e-08 1.145220175e-08 1.243350931e-08 1.283659903e-08 1.215089499e-08 6.309004608e-09 1.164699153e-08 1.009701633e-08 6.343981873e-09 1.32280897e-08 1.060701034e-08 2.144080054e-08 1.247962557e-08 1.106576633e-08 1.82668098e-08 9.524569121e-09 1.103176739e-08 1.267466058e-08 1.75126446e-08 1.148718499e-08 1.399824196e-08 1.287754591e-08 1.95685113e-08 1.474971357e-08 1.867464327e-08 1.701068021e-08 1.993571703e-08 2.436115161e-08 1.691435683e-08 2.371272463e-08 2.117978005e-08 2.255638782e-08 2.618794204e-08 2.868829373e-08 2.52569525e-08 2.507532139e-08 2.948309728e-08 3.007335328e-08 2.428058749e-08 2.883372845e-08 2.755199861e-08 2.42630768e-08 2.664005532e-08 2.724231695e-08 3.023059066e-08 3.208740155e-08 2.929487661e-08 3.353208908e-08 2.759101635e-08 2.758366008e-08 2.505078103e-08 2.234580982e-08 2.706985443e-08 2.744163947e-08 2.521176344e-08 2.430750245e-08 1.738287945e-08 2.247258266e-08 1.550660409e-08 1.704292862e-08 1.740604436e-08 1.664013478e-08 1.565488257e-08 1.470804653e-08 1.324809845e-08 1.283444881e-08 1.444821581e-08 7.636671121e-09 1.022969572e-08 7.911183894e-09 6.042255649e-09 6.572582144e-09 5.662290497e-09 2.366467582e-09 1.851571802e-09 6.490311305e-10 1.396015698e-09 5.329087352e-10 7.45477151e-10 3.299620187e-10 2.092035413e-10 4.981507226e-12 2.902793623e-12 1.526740539e-12 1.191253039e-14 3.787940034e-14 1.459595972e-14 1.202518007e-16 3.434632038e-17 5.357091694e-19 4.415905949e-18 1.166473686e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.487291189e-18 2.315129551e-17 7.395896253e-16 7.721886029e-17 2.80577749e-14 2.289076057e-13 6.107037366e-13 3.190751027e-12 1.805845713e-12 2.240501254e-10 3.42697905e-10 4.531260942e-10 3.602451592e-10 8.819263334e-10 1.554146066e-09 3.187490059e-09 4.570383207e-09 4.759278331e-09 6.31100322e-09 4.473942086e-09 6.760913633e-09 8.361922714e-09 8.276816976e-09 8.996088608e-09 1.488614825e-08 1.317182054e-08 1.505343895e-08 1.575808178e-08 1.220282095e-08 1.753359603e-08 1.857733434e-08 1.489427433e-08 1.40398827e-08 1.739158093e-08 1.894000342e-08 1.881841007e-08 2.599878509e-08 1.992221734e-08 2.521779939e-08 2.263879844e-08 2.9988029e-08 2.949347695e-08 2.936796305e-08 3.083944147e-08 3.025154573e-08 3.071788045e-08 2.833927592e-08 2.866418632e-08 3.723448942e-08 3.273193127e-08 3.275735149e-08 2.697436507e-08 2.441106089e-08 3.713189263e-08 2.620394995e-08 3.590548351e-08 2.563613124e-08 2.796228987e-08 2.459444342e-08 2.90403538e-08 2.547739658e-08 2.234503786e-08 2.520924768e-08 1.79222949e-08 1.61275816e-08 1.611011424e-08 1.592140803e-08 1.5099125e-08 1.538184967e-08 1.678092979e-08 1.016349135e-08 1.349615683e-08 1.421059726e-08 1.487479514e-08 1.42171623e-08 1.546807483e-08 8.04380265e-09 1.037718432e-08 1.252255133e-08 8.156808979e-09 1.704477132e-08 1.405954131e-08 9.021209707e-09 1.141688987e-08 8.605465004e-09 9.275467848e-09 9.501730028e-09 1.359759509e-08 1.026026323e-08 8.334274692e-09 1.243613668e-08 1.737284696e-08 1.29139422e-08 8.583114383e-09 7.86766776e-09 1.068314413e-08 1.421969577e-08 1.270516614e-08 1.801799546e-08 1.62607937e-08 1.708440797e-08 1.651964737e-08 1.34765613e-08 1.597879965e-08 1.160547444e-08 1.709585888e-08 1.230259243e-08 1.86009155e-08 1.454233293e-08 1.668671138e-08 2.984178581e-08 2.853620386e-08 2.873809744e-08 1.965768178e-08 3.33946831e-08 2.471805612e-08 2.92419216e-08 3.138576449e-08 3.023597459e-08 3.094593153e-08 3.315716282e-08 2.688096651e-08 2.874114269e-08 3.312263392e-08 2.945824303e-08 3.942280468e-08 2.593013124e-08 2.614967232e-08 3.083826223e-08 2.701572754e-08 2.988850995e-08 2.098286237e-08 2.816475343e-08 1.735705121e-08 1.735657534e-08 2.225272289e-08 2.207914291e-08 1.837976646e-08 1.724168506e-08 1.686308338e-08 1.458506493e-08 1.600583852e-08 1.437433221e-08 1.109167969e-08 1.257500053e-08 9.610264635e-09 1.217896541e-08 8.504010961e-09 6.89282455e-09 8.257244719e-09 6.104833419e-09 5.266012846e-09 4.25247704e-09 4.519488651e-09 2.871629135e-09 1.492647326e-09 1.083178837e-09 3.230403141e-10 4.270012525e-10 3.071057584e-10 8.612118371e-11 1.177369393e-10 3.727676665e-11 1.735639177e-12 2.665107952e-13 1.118995982e-13 8.563210196e-16 2.792004879e-15 1.754910525e-17 4.618008406e-17 4.455873852e-19 4.230349408e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.007019744e-18 3.892631733e-17 9.343579934e-17 1.918194802e-16 3.007564776e-15 1.059211151e-13 4.132228947e-14 4.252185756e-14 1.841702822e-12 1.874716925e-10 2.503298598e-10 3.712437382e-10 1.244659527e-10 6.098026733e-10 1.369287209e-09 1.67964692e-09 2.562099317e-09 5.24725822e-09 5.07993987e-09 5.352527516e-09 4.760670612e-09 5.846169572e-09 7.158450227e-09 1.062270053e-08 8.905734021e-09 1.090745009e-08 9.76054198e-09 1.060836804e-08 1.241918558e-08 1.342290214e-08 1.860294813e-08 1.629045181e-08 1.683538288e-08 1.523703272e-08 2.003641262e-08 1.604507836e-08 2.357516894e-08 2.297652079e-08 2.676462736e-08 2.097477339e-08 2.355686819e-08 2.887466265e-08 2.87684993e-08 3.188153629e-08 3.077776319e-08 3.224182091e-08 2.609544871e-08 3.057165048e-08 3.310198936e-08 2.636833701e-08 2.542576569e-08 2.987215625e-08 3.247158972e-08 2.635020111e-08 2.516348936e-08 2.982612109e-08 2.795039607e-08 2.433705853e-08 2.365204983e-08 1.491146563e-08 2.539053052e-08 2.131255592e-08 1.668961933e-08 1.612614588e-08 1.531546637e-08 1.299754043e-08 2.569360759e-08 1.981923904e-08 1.5687337e-08 1.697272254e-08 1.156885239e-08 1.925321326e-08 1.615485824e-08 1.506440637e-08 1.156386257e-08 8.827818238e-09 1.318897234e-08 1.039400772e-08 1.758231326e-08 1.312361793e-08 1.102558622e-08 1.621437728e-08 1.073644066e-08 7.414812538e-09 1.480340373e-08 7.345090183e-09 1.261330962e-08 1.181127763e-08 5.422030508e-09 1.24139628e-08 5.578606409e-09 1.175283147e-08 1.131334762e-08 1.370322635e-08 1.495368916e-08 8.10165996e-09 1.011521224e-08 6.900982451e-09 1.602911101e-08 1.235248163e-08 1.493987106e-08 1.165786465e-08 1.533727419e-08 1.385161065e-08 1.845718782e-08 1.576960725e-08 1.06478668e-08 1.904832389e-08 2.448791909e-08 1.746463386e-08 1.892987606e-08 2.023932156e-08 2.253740628e-08 2.776907962e-08 2.436424537e-08 2.654111102e-08 2.694463163e-08 2.324776782e-08 3.133103356e-08 2.360415206e-08 3.731532727e-08 3.014229361e-08 3.09586862e-08 2.778053049e-08 3.012596876e-08 2.815227617e-08 2.502801999e-08 2.603319613e-08 3.093108416e-08 2.492414273e-08 2.840255594e-08 2.047836179e-08 2.241855834e-08 2.169582372e-08 2.172561348e-08 2.057949099e-08 2.063314785e-08 1.646898151e-08 1.517855465e-08 1.804796261e-08 1.394279382e-08 1.276330531e-08 1.583651329e-08 1.116189093e-08 1.593975002e-08 1.274123107e-08 1.328185654e-08 1.064619302e-08 1.097221872e-08 9.049497332e-09 8.844703953e-09 7.990176565e-09 4.672891956e-09 5.074211454e-09 3.675059117e-09 2.476850846e-09 1.277177717e-09 1.697035611e-09 5.345834327e-10 1.440313702e-10 8.960318304e-10 9.243759045e-11 2.300839984e-11 2.4008198e-12 3.596113374e-14 1.938123654e-13 7.820729207e-15 1.16066011e-15 3.100524239e-16 1.115804472e-16 9.31500586e-21 4.063989923e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.575309011e-19 1.254513921e-17 0 1.554158e-17 7.95387416e-16 1.887336163e-15 4.917595787e-14 5.919437835e-15 7.312514827e-12 1.364962909e-10 1.943264981e-11 3.581054927e-10 1.426541874e-10 1.895730687e-10 7.610462682e-10 1.386555437e-09 2.882191454e-09 5.753874142e-09 5.521657618e-09 5.749175527e-09 7.390136036e-09 5.790939739e-09 7.140120073e-09 9.48846319e-09 9.090931405e-09 1.321960562e-08 9.114318648e-09 1.323680849e-08 1.158860991e-08 1.457479248e-08 1.361521851e-08 1.875786388e-08 1.636734163e-08 1.656017454e-08 1.910992966e-08 2.444278872e-08 2.608927768e-08 2.088386203e-08 2.01389416e-08 2.255168635e-08 2.672966247e-08 2.861392862e-08 1.913057155e-08 2.732472858e-08 3.025810539e-08 2.375603146e-08 2.240432635e-08 2.33945407e-08 2.74455233e-08 2.890786274e-08 3.437689764e-08 2.911846661e-08 3.029851104e-08 3.047237618e-08 2.681142821e-08 3.133803388e-08 3.919801439e-08 2.382332055e-08 3.228929608e-08 2.563268629e-08 2.406614677e-08 2.337251523e-08 2.326112528e-08 1.697856529e-08 1.761127388e-08 1.608758509e-08 1.080747311e-08 6.665372851e-09 1.874874521e-08 1.415791261e-08 1.207493882e-08 8.831745877e-09 1.084373165e-08 9.27434881e-09 5.751614744e-09 8.213100999e-09 8.89040743e-09 1.147920963e-08 1.108190128e-08 9.087348091e-09 6.287836917e-09 1.136042829e-08 9.208468412e-09 1.190445165e-08 6.979679929e-09 1.454416281e-08 1.078187454e-08 8.200642328e-09 7.7659757e-09 1.379119387e-08 1.119690713e-08 1.306029679e-08 1.715537529e-08 1.358802371e-08 1.124946651e-08 9.186585126e-09 1.397140032e-08 1.042171912e-08 1.011033249e-08 1.328492977e-08 1.050189788e-08 1.073245175e-08 9.700765804e-09 1.579195253e-08 1.080569e-08 2.022689292e-08 2.216184021e-08 1.364049638e-08 1.777608437e-08 1.364326421e-08 2.14093301e-08 2.466357261e-08 2.369005578e-08 3.101975415e-08 2.839349829e-08 2.78271677e-08 2.617419848e-08 3.211502113e-08 2.716745361e-08 2.53248614e-08 2.452255088e-08 2.420567561e-08 2.701807889e-08 2.479086505e-08 3.105708013e-08 3.123038865e-08 2.811499389e-08 2.996805562e-08 2.288996895e-08 2.818003719e-08 2.533276632e-08 2.697012277e-08 2.314879582e-08 2.538953436e-08 1.957875296e-08 1.947303791e-08 1.718366905e-08 1.921760236e-08 2.250830653e-08 1.580265366e-08 1.069328878e-08 1.483932863e-08 1.4160555e-08 1.2795979e-08 9.789365462e-09 1.119147033e-08 1.300768743e-08 9.778593341e-09 7.418478751e-09 7.888660574e-09 5.871532436e-09 5.682226759e-09 6.634385154e-09 5.950596967e-09 3.183439436e-09 1.814208934e-09 1.616878895e-09 9.822337623e-10 3.714778319e-10 2.108215596e-10 2.555195341e-10 3.197558815e-10 7.396239497e-12 7.903029386e-13 1.09380243e-13 6.142958765e-14 3.091233215e-15 3.838997044e-16 2.42415722e-15 2.127032829e-18 0 0 4.303404135e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.863774587e-19 9.756291994e-18 7.608993263e-17 1.469712757e-16 1.23413834e-16 8.35018109e-16 4.879129764e-13 1.126622291e-13 2.183784636e-12 6.026206191e-12 2.817991281e-10 1.254209376e-10 9.559063782e-11 5.934330793e-10 5.369674462e-10 8.169093913e-10 2.754905229e-09 2.608685812e-09 3.480198598e-09 5.418258163e-09 7.475767944e-09 6.158690313e-09 9.966422564e-09 6.635679485e-09 9.450557051e-09 1.288711455e-08 1.088781336e-08 1.272847462e-08 1.020358035e-08 1.297543979e-08 1.02629805e-08 1.395162496e-08 1.726739723e-08 1.651690189e-08 1.742005967e-08 1.928183533e-08 2.342129336e-08 2.065166816e-08 2.422466652e-08 2.164981701e-08 2.622760248e-08 2.584774015e-08 2.92069077e-08 2.701214927e-08 2.633007542e-08 2.62853579e-08 2.373748366e-08 3.035477902e-08 2.405692985e-08 2.940747637e-08 2.682304698e-08 2.450969091e-08 2.381886566e-08 3.412475328e-08 2.407624132e-08 2.532025018e-08 2.000515166e-08 3.280387907e-08 2.636025172e-08 1.791335007e-08 1.691351413e-08 2.13974344e-08 1.517506872e-08 1.918293997e-08 1.41283396e-08 1.982668433e-08 1.770419047e-08 1.638289303e-08 2.077208606e-08 1.189397979e-08 1.479117746e-08 1.074988246e-08 1.333126283e-08 9.718540506e-09 1.413976264e-08 7.150609794e-09 9.244580623e-09 8.298679685e-09 1.40323878e-08 9.644053347e-09 8.323128998e-09 9.806434883e-09 1.656742929e-08 1.281249258e-08 6.740937995e-09 9.129713165e-09 9.735056237e-09 1.105697033e-08 9.225143556e-09 9.669338036e-09 1.445905038e-08 1.012131066e-08 9.349324798e-09 1.430472941e-08 7.175510655e-09 1.054668591e-08 8.558124291e-09 8.315806005e-09 1.216034311e-08 8.714854462e-09 1.220329289e-08 2.039171822e-08 6.865382301e-09 1.268486363e-08 1.078796335e-08 1.697469415e-08 7.835519987e-09 1.405479205e-08 1.748019185e-08 2.29867381e-08 2.46401959e-08 2.874434812e-08 2.360004736e-08 2.824983555e-08 2.666539151e-08 2.674669358e-08 2.163170365e-08 2.237646067e-08 2.76090021e-08 2.378231046e-08 3.22473588e-08 2.795863116e-08 3.12589272e-08 2.37567684e-08 3.040811423e-08 2.605317e-08 3.005924874e-08 2.660615987e-08 2.21255274e-08 2.411385094e-08 2.942889255e-08 2.393804537e-08 2.319441517e-08 2.557600216e-08 2.293327268e-08 1.860608257e-08 2.356940221e-08 1.96822852e-08 1.505141685e-08 1.60623142e-08 1.445491478e-08 1.630794444e-08 1.550642727e-08 1.045563659e-08 1.248216586e-08 8.417646953e-09 8.577683689e-09 1.064062119e-08 8.127883344e-09 3.643995199e-09 6.01545173e-09 5.316853008e-09 4.809932508e-09 4.611422501e-09 3.659595602e-09 2.20684802e-09 1.469916527e-09 6.210981493e-10 2.466647382e-10 3.556370684e-10 1.907880784e-10 1.653292962e-10 2.998157842e-12 1.149683182e-11 2.906212438e-12 3.961472031e-13 4.077227791e-15 7.609164253e-16 1.049810898e-16 3.86956805e-17 4.073017322e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.147088497e-18 0 2.409489567e-17 5.666252267e-16 5.284057798e-18 2.73274601e-17 6.847583985e-14 1.766153774e-15 3.709988693e-13 1.249257446e-12 1.435983736e-11 5.402062105e-10 3.183335749e-11 5.615387679e-10 5.649504157e-10 3.762526528e-11 1.869102195e-09 2.447859287e-09 3.951795513e-09 4.467751353e-09 4.337221451e-09 7.34197633e-09 5.451428532e-09 9.01821176e-09 9.258670475e-09 9.293120705e-09 1.056099206e-08 1.02056275e-08 1.283163292e-08 1.235679997e-08 1.214846196e-08 1.476991807e-08 1.563511429e-08 1.671178311e-08 1.461446164e-08 1.595481724e-08 1.729609149e-08 2.219233411e-08 1.599449949e-08 1.919783971e-08 2.092943851e-08 2.344579498e-08 2.3860097e-08 2.337548194e-08 2.637268638e-08 2.56162607e-08 2.490224171e-08 3.389610864e-08 3.395623907e-08 2.633389025e-08 3.100291885e-08 2.344125578e-08 2.825604516e-08 2.343128984e-08 2.629978717e-08 2.897093671e-08 2.422321333e-08 3.009373174e-08 3.079141086e-08 2.546611946e-08 2.144437938e-08 2.554447224e-08 2.312597429e-08 1.510403398e-08 1.427775545e-08 1.39606647e-08 1.532720815e-08 1.964913727e-08 1.192022054e-08 1.180831104e-08 1.359587067e-08 1.583713885e-08 1.200461963e-08 1.503917407e-08 1.387441401e-08 1.221402111e-08 1.177988567e-08 1.291344007e-08 1.574769875e-08 1.193808969e-08 1.226953402e-08 8.696488807e-09 8.652478898e-09 7.027165414e-09 9.555831524e-09 9.835128655e-09 1.405885603e-08 1.525817499e-08 1.497541101e-08 1.123821111e-08 1.338684094e-08 1.164347574e-08 1.289462957e-08 9.025563978e-09 8.66825169e-09 8.016816939e-09 6.96729027e-09 9.776181973e-09 1.644977411e-08 6.677978583e-09 8.912240434e-09 1.084190028e-08 9.01977021e-09 1.286964023e-08 1.17311057e-08 1.771162066e-08 1.822172049e-08 1.343864508e-08 1.486472406e-08 2.515519445e-08 1.294538361e-08 1.689162436e-08 2.633045818e-08 2.44578307e-08 2.601383086e-08 2.798529693e-08 2.764478313e-08 2.584049285e-08 2.448989073e-08 2.662031313e-08 3.448338651e-08 3.541930627e-08 2.545839917e-08 2.317437008e-08 2.30909972e-08 2.739023318e-08 2.77097236e-08 2.66918302e-08 2.670219026e-08 2.700643332e-08 2.802887944e-08 2.580680651e-08 2.53660364e-08 2.215494174e-08 1.954550736e-08 2.127462479e-08 2.048018179e-08 2.042049349e-08 1.622503999e-08 1.811427876e-08 1.72230324e-08 1.293782131e-08 1.357006934e-08 1.07359771e-08 1.659517854e-08 1.2035297e-08 8.691255397e-09 1.292900073e-08 1.009087071e-08 1.207835006e-08 7.144842637e-09 7.219270047e-09 5.515329228e-09 4.345351703e-09 4.054611575e-09 2.980870966e-09 2.785121106e-09 1.778279226e-09 3.545540319e-10 2.586554539e-10 3.663724751e-10 4.720564672e-10 2.122516117e-10 4.364011704e-12 1.225082023e-11 1.198025935e-12 7.332672361e-14 3.47164037e-15 4.639587731e-15 2.128694488e-15 5.245222751e-20 0 7.45518294e-18 3.538909711e-22 0 0 0 0 0 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.06376142e-17 2.129179831e-16 7.184901455e-16 7.103938255e-15 1.905568553e-13 1.557104855e-13 5.158694756e-12 2.040416025e-11 2.038042349e-10 1.768342378e-10 7.058722289e-10 4.431275387e-10 3.631445494e-10 7.385169017e-10 2.529001169e-09 1.374352167e-09 3.858769488e-09 3.957782782e-09 6.015722677e-09 5.465611765e-09 7.395394642e-09 8.894104534e-09 8.219445861e-09 9.952854842e-09 1.122615239e-08 1.218047971e-08 1.269192776e-08 1.170730758e-08 1.337975377e-08 1.320404043e-08 1.700623671e-08 1.769287618e-08 1.694415546e-08 1.665189584e-08 2.04525287e-08 1.840360295e-08 1.872168101e-08 2.020521036e-08 2.162145392e-08 2.275476829e-08 2.474215704e-08 2.717115486e-08 2.492731097e-08 2.653234357e-08 1.432789944e-08 2.359334069e-08 2.716596193e-08 2.625703118e-08 2.458326024e-08 2.535843525e-08 2.430354177e-08 3.176835988e-08 2.348585128e-08 1.882209968e-08 2.18191945e-08 2.269107664e-08 2.352121948e-08 2.400059195e-08 2.247167502e-08 2.250973322e-08 2.353519168e-08 1.528253792e-08 2.818525262e-08 1.32235552e-08 9.927743691e-09 1.690897167e-08 1.399801147e-08 1.508704739e-08 1.105073416e-08 9.640016881e-09 1.414157144e-08 6.599478498e-09 1.124570523e-08 8.138508578e-09 1.256044666e-08 1.07610596e-08 6.673462747e-09 8.612840409e-09 7.215360135e-09 1.287781277e-08 8.542332055e-09 1.166493111e-08 7.397902075e-09 7.502006832e-09 5.971850311e-09 5.966418448e-09 7.579987138e-09 9.731660138e-09 1.039633392e-08 1.043800729e-08 5.941928718e-09 1.196351689e-08 9.887712332e-09 1.107436596e-08 1.280692993e-08 1.409372654e-08 1.086054995e-08 8.330572686e-09 1.063950606e-08 1.311371212e-08 1.125404061e-08 9.086979104e-09 8.285278673e-09 1.300499405e-08 1.212310201e-08 2.600113524e-08 2.020063819e-08 1.506971901e-08 1.834775552e-08 1.838235953e-08 2.056715949e-08 3.217392704e-08 2.773567768e-08 1.756415365e-08 1.841390213e-08 2.535990657e-08 2.906495028e-08 2.52373372e-08 2.734262008e-08 3.059745752e-08 3.328545352e-08 3.027359484e-08 1.903219554e-08 2.701606793e-08 3.189886178e-08 2.587112562e-08 2.177688767e-08 1.863806259e-08 2.171154827e-08 2.268058038e-08 1.741203135e-08 1.547141895e-08 1.601040157e-08 1.797226695e-08 1.839884505e-08 1.555782203e-08 9.010536567e-09 1.577589875e-08 1.450179507e-08 1.155674791e-08 1.168193268e-08 1.208838596e-08 8.833896513e-09 1.08855909e-08 9.627251198e-09 5.322155903e-09 8.544095416e-09 7.566568504e-09 5.4397994e-09 7.663526947e-09 3.633787169e-09 5.214171329e-09 2.642248457e-09 2.279025822e-09 2.207972777e-09 4.067803536e-10 4.186015465e-12 3.335588555e-10 3.564684458e-11 2.793621986e-10 7.351383815e-11 4.811184575e-13 3.95788506e-12 6.747357178e-14 1.381185941e-14 1.034980486e-15 6.273060218e-16 2.091159498e-16 6.32895247e-16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 5.06234054e-14 0 0 0 0 0 0 0 0 0 0 0 0 5.893544736e-23 1.245835447e-17 6.214908234e-17 7.095807819e-15 5.921950879e-15 1.679147385e-13 1.955137732e-12 9.271266492e-13 8.341502991e-11 8.206576265e-11 1.675603475e-10 2.493421775e-10 3.885187767e-10 1.533395849e-09 1.204587813e-09 2.033653067e-09 2.840336749e-09 4.714650167e-09 5.092139055e-09 3.336580717e-09 5.175159262e-09 7.751276229e-09 7.638995963e-09 1.004356712e-08 1.121746745e-08 1.194740367e-08 1.238134571e-08 1.254330142e-08 1.35914051e-08 1.422341494e-08 1.205335332e-08 1.44647248e-08 1.392352578e-08 1.35645876e-08 1.740173562e-08 1.363460149e-08 1.842106177e-08 2.243315177e-08 2.036307142e-08 2.596875715e-08 2.565610261e-08 2.091124976e-08 2.364078547e-08 2.890879121e-08 2.279333091e-08 2.244058168e-08 2.531484474e-08 2.400614766e-08 2.394711461e-08 2.193439207e-08 2.01192526e-08 2.41680073e-08 2.625983137e-08 2.692686324e-08 2.018511572e-08 2.420723144e-08 1.769824064e-08 2.064152953e-08 1.51321183e-08 2.427967784e-08 1.624367761e-08 1.980616101e-08 8.330839942e-09 1.460891261e-08 1.383306679e-08 1.202533364e-08 1.62662197e-08 1.356876085e-08 1.493857181e-08 1.525790919e-08 1.334446632e-08 6.591426138e-09 9.071732199e-09 7.269217418e-09 1.210470534e-08 8.289100707e-09 1.402916044e-08 1.251010076e-08 8.245217954e-09 6.430323348e-09 7.348864275e-09 7.841407349e-09 1.120687713e-08 1.047872353e-08 9.603888101e-09 9.589411163e-09 9.405697117e-09 1.150010927e-08 8.616363015e-09 1.121563416e-08 5.666047989e-09 6.123919566e-09 1.241735254e-08 7.404949909e-09 4.31184051e-09 8.686364477e-09 5.848139703e-09 1.081685885e-08 1.39525166e-08 8.711683772e-09 7.247285764e-09 1.25428643e-08 8.518920984e-09 1.255529293e-08 1.559530069e-08 1.404553852e-08 1.315210497e-08 1.324328829e-08 1.759207286e-08 1.712238489e-08 1.934855222e-08 2.088349125e-08 2.3183189e-08 2.129660759e-08 2.618754422e-08 2.541979691e-08 1.903202044e-08 2.647750831e-08 2.421099403e-08 2.233412828e-08 2.243039844e-08 2.95913955e-08 2.334079881e-08 2.469182005e-08 2.591775205e-08 2.498145794e-08 2.301701917e-08 2.612386141e-08 2.629789638e-08 2.35503457e-08 2.060865518e-08 1.999522345e-08 2.069726062e-08 1.728851995e-08 1.637113245e-08 1.788480084e-08 1.707296744e-08 1.358048477e-08 1.483919552e-08 1.448190361e-08 1.747651918e-08 1.07262194e-08 1.389944525e-08 1.235476536e-08 1.039716932e-08 1.37860745e-08 9.342685783e-09 8.431596221e-09 6.773855065e-09 5.748565946e-09 3.851859768e-09 5.473142277e-09 3.549029623e-09 4.039793926e-09 2.732565796e-09 1.307700069e-09 3.64859978e-10 5.470875713e-10 1.725902985e-10 3.893147537e-10 1.250485717e-10 1.356352106e-10 1.790647844e-11 1.266824246e-14 6.442786635e-15 1.5014874e-15 6.915714237e-17 1.185577725e-15 1.087828026e-17 0 8.620604571e-19 1.868677775e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 6.158117571e-19 0 5.623849974e-19 7.841656423e-18 1.84531186e-16 4.151855405e-17 1.42761958e-14 4.973023601e-13 7.37488016e-14 2.022763132e-11 6.168800963e-11 2.645407493e-10 9.131895501e-11 3.531851012e-11 4.945755585e-10 7.706315345e-10 1.003792307e-09 2.49397766e-09 3.200941267e-09 3.599729561e-09 4.807384942e-09 5.512155195e-09 2.868731166e-09 5.984228622e-09 7.229653768e-09 8.22862748e-09 5.879818239e-09 1.032296215e-08 7.59338357e-09 1.209665943e-08 1.603032417e-08 1.257228401e-08 1.100154901e-08 1.303405402e-08 1.509005269e-08 1.747864796e-08 1.386468067e-08 1.438942032e-08 1.541601468e-08 2.440121629e-08 2.019004411e-08 2.028514968e-08 2.579123164e-08 2.372389695e-08 2.289205421e-08 2.60933124e-08 1.86490849e-08 2.202355039e-08 2.128138344e-08 2.610454662e-08 2.433134624e-08 2.184230046e-08 2.493606986e-08 2.386703931e-08 2.885243233e-08 2.290831267e-08 2.516920408e-08 2.337627707e-08 2.113878276e-08 1.668694306e-08 1.35911983e-08 1.110694482e-08 1.460646805e-08 1.206844228e-08 1.494558184e-08 2.2201817e-08 1.432231024e-08 1.624569816e-08 1.409436066e-08 1.011361536e-08 9.351731271e-09 6.331262018e-09 1.112173318e-08 9.698240725e-09 1.430085085e-08 1.203309025e-08 8.158595938e-09 6.310493817e-09 7.777479584e-09 9.495163003e-09 1.028395575e-08 5.87893149e-09 9.847656228e-09 8.404445101e-09 6.4475491e-09 7.516598772e-09 6.913437785e-09 9.594164485e-09 4.016423853e-09 9.759561317e-09 5.825188027e-09 1.256457566e-08 7.996279719e-09 8.949384512e-09 4.322842427e-09 1.313049051e-08 5.891637239e-09 5.581363102e-09 9.982048242e-09 1.505522811e-08 1.138454083e-08 1.029947581e-08 1.000693456e-08 1.223605554e-08 7.042935142e-09 1.048565238e-08 1.357293166e-08 1.708387631e-08 9.771162294e-09 1.800547043e-08 1.637376087e-08 2.34087984e-08 1.799325638e-08 2.31279525e-08 1.780388454e-08 1.938185121e-08 2.590864121e-08 2.034604032e-08 2.170929455e-08 2.045575388e-08 1.988466683e-08 2.537755919e-08 2.034053055e-08 3.137831154e-08 2.172962162e-08 2.744663956e-08 2.562784841e-08 2.20122288e-08 2.045734493e-08 1.964773876e-08 1.700919033e-08 1.794732409e-08 2.203813818e-08 1.802040042e-08 2.123542704e-08 1.717558958e-08 1.767550007e-08 1.718428946e-08 1.41001425e-08 1.445208345e-08 1.289560593e-08 1.472860542e-08 1.115011581e-08 1.165887686e-08 8.384470247e-09 1.470473025e-08 1.049282232e-08 8.968269194e-09 9.106361446e-09 6.221591777e-09 8.774656248e-09 6.944604115e-09 5.155100493e-09 3.66404057e-09 5.140378105e-09 1.630534471e-09 1.778059284e-09 1.053688691e-09 5.135888022e-10 9.596037061e-11 5.201078658e-10 3.038334797e-10 1.861204353e-10 9.433091855e-12 3.02772718e-13 1.180803747e-12 5.863747373e-13 2.981085724e-15 5.977946279e-17 1.124111158e-16 9.027777486e-17 6.762224252e-19 3.567081055e-26 0 0 0 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.052116486e-23 0 8.383057968e-18 3.077628278e-17 6.212497367e-17 5.542953518e-16 1.222267105e-14 2.355311713e-13 1.820499085e-12 1.679817322e-12 1.693510431e-10 5.907923934e-11 4.341267725e-10 3.047753077e-10 3.659305673e-10 1.167247056e-09 7.875094861e-10 1.376790483e-09 2.064848784e-09 2.471872765e-09 3.531656163e-09 4.059347e-09 5.818654834e-09 6.002240871e-09 6.970722933e-09 7.172111737e-09 9.846012815e-09 9.193914065e-09 9.694062297e-09 1.139875333e-08 1.034078967e-08 1.441588519e-08 1.14844976e-08 1.639377048e-08 1.586123473e-08 1.504900815e-08 1.516281169e-08 1.370019034e-08 1.600998326e-08 1.941122993e-08 1.986666199e-08 1.92493331e-08 1.665584562e-08 2.076432701e-08 2.388830654e-08 2.469593129e-08 1.769581406e-08 1.84428814e-08 2.092600521e-08 2.376811849e-08 2.336786642e-08 2.091805641e-08 2.625976794e-08 1.561754311e-08 2.163272608e-08 1.790499648e-08 1.322685771e-08 2.104776765e-08 2.063718769e-08 1.94916791e-08 2.092965452e-08 2.596973757e-08 2.037719986e-08 2.668448523e-08 1.258939844e-08 1.195296488e-08 1.153712965e-08 1.239670878e-08 9.176290247e-09 9.028953211e-09 1.130956668e-08 9.471114679e-09 1.20469623e-08 1.418785288e-08 1.641536298e-08 9.070950038e-09 9.388502526e-09 1.068785659e-08 7.501952919e-09 9.263223007e-09 1.072452649e-08 1.025362502e-08 8.660816902e-09 7.370210267e-09 5.502423923e-09 6.954683442e-09 4.109771486e-09 6.41007045e-09 7.290094129e-09 8.08726162e-09 7.894997801e-09 9.051695835e-09 4.242445081e-09 1.12132853e-08 6.368793874e-09 1.058174432e-08 1.25095993e-08 1.212094844e-08 8.537769608e-09 1.354145283e-08 8.78612447e-09 1.867972546e-08 1.436274751e-08 1.340164455e-08 1.643856377e-08 1.761845885e-08 1.58360414e-08 1.160250053e-08 1.763023856e-08 1.814086588e-08 1.904140163e-08 1.531757441e-08 2.441675308e-08 2.259506174e-08 2.572024422e-08 2.291582619e-08 2.344078873e-08 1.871016372e-08 2.058946206e-08 1.897614114e-08 2.420607501e-08 2.528602814e-08 2.21016674e-08 2.558726476e-08 2.297996041e-08 2.271192085e-08 2.093439738e-08 2.658126658e-08 1.835483354e-08 1.592040856e-08 2.222001752e-08 1.882025113e-08 2.057263974e-08 2.069024581e-08 2.112249869e-08 1.763530886e-08 1.590734456e-08 1.20237546e-08 1.33699423e-08 1.496319235e-08 1.214675178e-08 1.331074296e-08 1.224714837e-08 1.401292206e-08 9.639911451e-09 1.097297003e-08 9.050348869e-09 8.697560968e-09 7.31343852e-09 4.87776731e-09 5.874330939e-09 6.452621005e-09 3.189530071e-09 4.410582707e-09 4.021511804e-09 2.335656679e-09 1.666588927e-09 1.206827552e-09 3.842461235e-10 3.916910288e-10 2.751093727e-11 2.294119211e-10 2.92571764e-11 6.0951441e-11 1.429409202e-11 1.29448069e-12 1.295651654e-13 5.090303416e-15 1.710241709e-15 4.172236421e-17 4.667831038e-17 1.61018898e-17 9.626038834e-25 0 0 0 0 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.824998996e-18 1.736197032e-18 3.426993381e-18 3.679679852e-16 1.013540646e-17 3.603913816e-17 1.973529236e-14 7.020630243e-13 1.002276031e-11 9.770483321e-11 7.307871095e-11 1.576849591e-10 7.80801491e-10 8.133688279e-10 1.070587073e-09 1.078968792e-09 2.420997479e-09 2.910411806e-09 1.932607671e-09 3.253537093e-09 7.325201459e-09 4.22026323e-09 6.200058754e-09 7.220341795e-09 7.888634031e-09 7.401850998e-09 1.016336321e-08 8.80255036e-09 9.280531469e-09 1.246237934e-08 1.219397728e-08 9.830533246e-09 1.056455136e-08 1.461902739e-08 1.527619511e-08 1.778218369e-08 1.627104781e-08 1.702793238e-08 1.609583846e-08 1.980629488e-08 1.858073697e-08 1.692825126e-08 2.524045899e-08 2.039205067e-08 2.302179555e-08 2.537601301e-08 2.406996183e-08 2.037226527e-08 2.243690643e-08 1.387214882e-08 1.832648987e-08 2.568448668e-08 1.551847804e-08 2.049596894e-08 2.680671146e-08 2.256136505e-08 1.807958587e-08 2.487182413e-08 2.416009815e-08 1.884144028e-08 2.079024671e-08 1.956799414e-08 1.434033658e-08 1.55936624e-08 1.867873826e-08 1.096026973e-08 2.169502628e-08 1.487501549e-08 1.101284112e-08 8.889491207e-09 9.022837919e-09 9.134406611e-09 9.296166728e-09 8.238648915e-09 6.867209176e-09 6.951731207e-09 1.209968289e-08 1.413987755e-08 1.301995616e-08 7.801048392e-09 5.044758803e-09 8.95765521e-09 6.22348464e-09 7.494227178e-09 4.146842722e-09 8.955729583e-09 6.343332779e-09 9.027962695e-09 1.043880174e-08 6.685820324e-09 8.279968369e-09 1.373838703e-08 6.650212673e-09 6.15261223e-09 5.71142377e-09 5.671792123e-09 4.131436003e-09 8.187824143e-09 1.110234204e-08 7.699030486e-09 1.112253238e-08 9.019234482e-09 1.292250302e-08 1.503997609e-08 1.014803597e-08 2.025832312e-08 2.155765486e-08 2.133488833e-08 1.424063734e-08 1.321697841e-08 1.66583554e-08 2.528122838e-08 1.739633572e-08 2.132281226e-08 1.648667557e-08 1.370237176e-08 1.718132836e-08 2.045848363e-08 1.715735025e-08 2.013957122e-08 1.894668344e-08 2.57848347e-08 1.971857392e-08 2.217657473e-08 1.961731685e-08 2.253366991e-08 2.733154667e-08 2.089290721e-08 2.460333134e-08 1.766252359e-08 1.66434336e-08 1.50442927e-08 2.158173686e-08 1.993493646e-08 2.030873407e-08 1.361001758e-08 1.364640576e-08 1.422016414e-08 1.661855782e-08 1.465183336e-08 1.593468868e-08 1.252648727e-08 1.271430544e-08 1.2178706e-08 6.397668928e-09 9.095658533e-09 8.522601076e-09 9.563948521e-09 8.115902832e-09 8.22625461e-09 4.813525203e-09 5.08035146e-09 4.427369621e-09 3.490906619e-09 2.595848907e-09 1.976983045e-09 5.334432475e-10 2.408389817e-10 4.810838723e-11 4.052193376e-10 1.883865392e-10 1.762849545e-10 4.528070895e-12 4.796627715e-13 1.605008185e-12 2.031710467e-14 1.308507694e-16 2.032702025e-16 4.585739791e-16 1.88407488e-17 6.562328742e-18 1.773382552e-24 0 0 0 0 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.160245211e-18 2.087895155e-18 3.568571071e-17 7.820508095e-16 7.87596916e-15 2.668674383e-15 1.593830062e-13 5.875865398e-14 4.48631327e-12 3.908282023e-11 1.962710616e-10 1.868697683e-11 2.773084373e-10 8.329231319e-12 3.959543586e-10 1.77864299e-09 2.826974356e-09 2.495458564e-09 3.67112976e-09 6.44292264e-09 2.975725417e-09 5.112324135e-09 7.933431371e-09 5.617847351e-09 8.893316491e-09 7.943713093e-09 1.097719631e-08 9.225000581e-09 7.786584707e-09 8.382065801e-09 1.134285962e-08 8.537717027e-09 1.101733116e-08 1.2107187e-08 1.515087391e-08 1.478009092e-08 1.168777966e-08 1.632930575e-08 1.673180513e-08 1.464656993e-08 1.618119115e-08 1.848395373e-08 1.711931134e-08 2.235207304e-08 2.443347912e-08 1.938565996e-08 2.048604203e-08 2.242172582e-08 2.007036793e-08 2.407106344e-08 2.360859548e-08 2.521654518e-08 2.480169957e-08 2.335965927e-08 2.413343224e-08 2.043366365e-08 1.536213516e-08 2.301552099e-08 2.085701326e-08 1.494738678e-08 1.645935521e-08 1.233378076e-08 1.295515334e-08 1.4075832e-08 1.192093549e-08 1.155617981e-08 1.487589784e-08 1.014516172e-08 1.363922177e-08 7.223481919e-09 7.742520277e-09 6.74674594e-09 1.159899436e-08 1.17958253e-08 1.185223749e-08 1.086751566e-08 8.794845581e-09 1.14338702e-08 8.419119105e-09 1.056472441e-08 1.078728036e-08 5.927866836e-09 1.137943187e-08 9.037804172e-09 1.509814598e-08 6.655136354e-09 8.574279681e-09 7.220790765e-09 7.568583224e-09 1.112804953e-08 9.333883455e-09 8.283296966e-09 4.91196255e-09 6.819915346e-09 7.014107308e-09 1.097367765e-08 6.716446832e-09 7.036701552e-09 8.973940534e-09 1.133421602e-08 1.279842827e-08 5.480143522e-09 9.139385341e-09 1.090643948e-08 1.787029376e-08 6.1750198e-09 8.815140692e-09 1.257672769e-08 1.671590334e-08 1.923974382e-08 1.327073149e-08 2.010051413e-08 1.588423026e-08 1.811244257e-08 1.971625952e-08 2.028764163e-08 2.007343203e-08 2.261955726e-08 2.248497799e-08 2.577335167e-08 2.089174879e-08 2.25832652e-08 2.548792827e-08 2.356352827e-08 1.992260987e-08 1.859221122e-08 1.639598175e-08 1.69728534e-08 1.982950362e-08 1.741090614e-08 1.968024596e-08 2.339885042e-08 1.654246584e-08 1.41104144e-08 1.539021256e-08 1.316568411e-08 1.971750532e-08 1.250801796e-08 1.386858845e-08 1.62533303e-08 1.126226201e-08 1.355899044e-08 8.376197732e-09 9.991098908e-09 1.071724227e-08 1.043136073e-08 9.61102316e-09 7.910044642e-09 6.447694568e-09 6.292744238e-09 5.497085972e-09 5.341224662e-09 5.940666231e-09 2.598191493e-09 2.017569575e-09 2.317875155e-09 8.032334121e-10 1.085042251e-09 5.625815153e-10 3.576258233e-10 1.319278165e-11 8.041686149e-11 9.144233591e-12 1.672891378e-13 1.050313465e-12 1.015627862e-12 2.633825018e-15 7.385269872e-16 1.930679646e-17 5.371905422e-19 0 9.517530387e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.126516577e-19 0 5.04877686e-18 1.940752604e-16 1.811096013e-15 3.226441152e-15 1.167455027e-14 2.757070412e-13 3.067905518e-11 1.519989446e-11 2.503026586e-11 3.86292779e-10 4.577233447e-10 1.062244907e-10 8.048610782e-10 1.381076594e-09 1.196966952e-09 3.39630425e-09 5.035769027e-09 2.88143366e-09 4.15436372e-09 5.585926949e-09 6.002383532e-09 6.459404744e-09 8.459081947e-09 7.322914519e-09 8.687286074e-09 9.969888395e-09 5.95100737e-09 1.067746852e-08 1.104305386e-08 9.713884539e-09 1.252774582e-08 1.071161088e-08 1.529513722e-08 1.419884029e-08 1.74619402e-08 1.451007039e-08 1.618742037e-08 1.765783616e-08 1.527994778e-08 1.96340291e-08 1.791688922e-08 1.692053455e-08 2.001966982e-08 2.007643811e-08 2.662618359e-08 1.903566066e-08 1.84032878e-08 2.353413466e-08 1.820074509e-08 2.164452568e-08 1.800325647e-08 2.29894711e-08 1.941858679e-08 1.845496514e-08 1.926100665e-08 1.794148518e-08 1.915226789e-08 2.417927378e-08 1.793922044e-08 1.309813651e-08 1.551665515e-08 1.065261601e-08 1.690058242e-08 1.128422247e-08 7.465164876e-09 1.810384133e-08 1.116691179e-08 1.083048071e-08 1.375799849e-08 8.527759369e-09 1.193784563e-08 8.983812931e-09 1.069002583e-08 1.192094137e-08 1.031375245e-08 1.021894714e-08 1.028040742e-08 6.453195049e-09 7.376231617e-09 9.699186356e-09 7.154318035e-09 1.028986731e-08 1.010500069e-08 1.34719501e-08 1.110687758e-08 1.215079839e-08 1.028072469e-08 1.375298285e-08 9.633585142e-09 1.142056676e-08 8.581638218e-09 1.254009218e-08 1.157580192e-08 1.505051263e-08 1.074320193e-08 1.125206266e-08 1.158499232e-08 1.09970923e-08 1.168758713e-08 9.195352122e-09 1.315953484e-08 1.21493854e-08 1.967383505e-08 9.545154941e-09 1.33463253e-08 1.200880519e-08 1.013011505e-08 1.593430246e-08 1.532071116e-08 1.907921105e-08 1.880585295e-08 2.21295097e-08 2.075628118e-08 2.114377971e-08 1.974684663e-08 1.985046026e-08 1.835357614e-08 1.794279367e-08 1.950730238e-08 1.630055999e-08 1.558089759e-08 1.910616064e-08 1.611758396e-08 1.979183741e-08 2.170014129e-08 2.624917725e-08 1.667123303e-08 1.793096429e-08 1.607293585e-08 1.759687026e-08 1.928685037e-08 1.768886876e-08 1.594897983e-08 1.398427456e-08 1.523639013e-08 1.052436847e-08 1.398274376e-08 1.160076212e-08 1.316971508e-08 1.050257088e-08 1.146149885e-08 1.010253632e-08 7.818980408e-09 6.481099836e-09 7.42330907e-09 6.566158415e-09 7.590522512e-09 5.585505649e-09 6.422282599e-09 3.221616361e-09 3.82051835e-09 3.26969681e-09 2.230024177e-09 1.544025269e-09 1.248161352e-09 2.507491173e-10 3.759096671e-11 3.182326882e-10 2.674976564e-11 2.251728622e-11 2.738227103e-11 2.077455224e-11 5.064365408e-13 3.46345843e-15 3.428997573e-14 1.109634001e-17 1.599898048e-16 4.054680133e-17 2.916239431e-17 2.396738646e-21 0 0 0 0 0 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.144122401e-18 2.427071253e-17 1.107388084e-16 2.536302501e-15 2.40826856e-15 3.114997263e-14 3.023186933e-12 4.35321195e-12 6.875269761e-11 8.550410251e-11 3.851998405e-10 1.032345443e-10 4.034565401e-11 7.261264898e-10 4.166121465e-10 1.121888501e-09 2.953823481e-09 1.250566302e-09 2.45626537e-09 5.20398637e-09 3.289638199e-09 5.892116969e-09 5.669211237e-09 6.671739164e-09 6.370864381e-09 7.314441341e-09 6.200361391e-09 1.044266192e-08 9.685788426e-09 9.540023611e-09 1.288400208e-08 1.032837233e-08 1.36944755e-08 1.093746579e-08 1.475594642e-08 1.456282283e-08 1.516796897e-08 1.370043548e-08 1.604230581e-08 1.797834548e-08 1.469788764e-08 2.178725512e-08 1.952313272e-08 2.047389399e-08 2.33569325e-08 1.973118181e-08 2.197756577e-08 2.066565769e-08 1.713850162e-08 1.6397671e-08 1.714945436e-08 2.155607808e-08 1.820454046e-08 1.892866738e-08 2.231847533e-08 2.283658868e-08 1.810577993e-08 2.066880573e-08 1.424559984e-08 1.416247503e-08 1.862600903e-08 1.059796262e-08 1.250340449e-08 1.047114975e-08 1.355596653e-08 1.767651867e-08 1.165236483e-08 1.744738309e-08 8.666717258e-09 1.74799834e-08 9.923172193e-09 1.400003358e-08 1.083539023e-08 1.117086768e-08 9.538490332e-09 8.5693504e-09 8.333938616e-09 7.335718998e-09 1.167200049e-08 6.030134065e-09 1.09600734e-08 1.193693863e-08 8.416725702e-09 9.754090748e-09 1.305368061e-08 1.12740452e-08 9.43865822e-09 7.873856416e-09 1.139447634e-08 9.744819745e-09 6.680123703e-09 1.165380237e-08 1.048051197e-08 1.136727946e-08 1.107462657e-08 8.298045377e-09 1.010518598e-08 1.817454647e-08 1.035472992e-08 1.52459661e-08 1.204576608e-08 7.457065726e-09 1.157946701e-08 1.126137646e-08 9.586318802e-09 1.265711503e-08 1.496267008e-08 9.150505893e-09 1.653562273e-08 1.735759173e-08 2.313499969e-08 2.035928641e-08 2.126094062e-08 1.779158392e-08 2.337298977e-08 2.45038073e-08 1.503944786e-08 2.009668536e-08 1.797964802e-08 2.030842397e-08 2.526291101e-08 2.140211023e-08 2.402591823e-08 1.539520695e-08 2.315086456e-08 1.711904927e-08 1.946083932e-08 1.843926656e-08 1.324974908e-08 2.083781789e-08 1.31905669e-08 1.689425505e-08 1.318291046e-08 1.572167885e-08 1.487308756e-08 1.512055945e-08 1.16095225e-08 1.264065376e-08 1.310706689e-08 1.026769893e-08 9.486735639e-09 8.583997403e-09 1.016672882e-08 7.803081647e-09 7.663904877e-09 8.878639212e-09 7.044548956e-09 6.42160016e-09 4.06985584e-09 4.575007753e-09 3.782170234e-09 5.0324857e-09 2.155780127e-09 1.354330142e-09 1.566652367e-09 1.627486851e-09 7.849030293e-10 5.404842287e-11 2.305601098e-10 2.768828715e-11 4.530892633e-11 6.963794931e-12 3.669900656e-11 2.229369499e-12 1.02392204e-13 1.657240428e-15 6.987240865e-15 4.965048021e-16 4.049477723e-18 3.948251187e-18 5.869202629e-18 0 0 0 6.652406414e-13 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.683608826e-19 3.976917579e-19 1.368362247e-18 1.030943115e-18 6.680242004e-17 4.720643586e-15 6.876387477e-15 3.69006783e-14 2.893229432e-12 1.653438483e-12 1.735148439e-11 7.368101523e-11 2.943346645e-10 5.318654433e-10 1.045354481e-10 2.583032578e-10 1.790833567e-09 1.940504761e-09 2.198878504e-09 4.668623037e-09 2.916228963e-09 3.144577946e-09 3.84111545e-09 5.639868953e-09 5.744634301e-09 5.742755788e-09 7.674054196e-09 8.279109314e-09 8.606016791e-09 6.231318527e-09 9.278910328e-09 8.299257324e-09 1.182123746e-08 1.129347242e-08 9.173443393e-09 1.283538707e-08 8.169949275e-09 1.273289598e-08 1.212443724e-08 1.645810316e-08 1.405650401e-08 1.44180439e-08 1.382628862e-08 1.656900178e-08 1.770384033e-08 2.150671871e-08 1.540859378e-08 2.061825472e-08 1.729320224e-08 1.828725976e-08 1.910090329e-08 1.61322287e-08 1.554369556e-08 3.004905028e-08 2.222123837e-08 1.812919176e-08 1.736805778e-08 2.095550824e-08 1.59460153e-08 1.546465429e-08 2.082104548e-08 1.961687479e-08 1.129958342e-08 1.267390929e-08 1.142808477e-08 1.84282306e-08 1.452983345e-08 1.566411108e-08 1.465427293e-08 1.468883464e-08 1.342850006e-08 8.168010103e-09 1.420951991e-08 7.930979992e-09 1.351980356e-08 1.487649252e-08 1.04201224e-08 1.73597313e-08 1.475622512e-08 1.63960169e-08 1.00026358e-08 7.1543759e-09 1.258806688e-08 1.293456939e-08 1.116936688e-08 1.218396911e-08 1.110620628e-08 1.039715953e-08 1.016283701e-08 1.068925147e-08 1.096680631e-08 1.092651498e-08 1.122388291e-08 1.242684359e-08 1.260463244e-08 1.150683792e-08 1.502837105e-08 1.136284157e-08 9.141806056e-09 1.141802141e-08 1.295749684e-08 9.963738234e-09 1.55859684e-08 1.098835917e-08 1.198563401e-08 1.402523312e-08 2.022668585e-08 1.237390803e-08 8.740785334e-09 1.420170982e-08 1.061977024e-08 2.071003837e-08 1.639600739e-08 2.361212022e-08 1.369940186e-08 1.848874183e-08 1.974473731e-08 2.120732384e-08 1.582177986e-08 2.063046023e-08 1.479644477e-08 1.890126112e-08 2.247014994e-08 1.800878427e-08 2.417590354e-08 2.047112064e-08 2.213719184e-08 1.548512609e-08 1.833898863e-08 1.378550646e-08 2.018454584e-08 1.263596816e-08 2.105720988e-08 1.46793822e-08 1.486485417e-08 1.443664277e-08 1.254799744e-08 1.223759564e-08 9.420625918e-09 1.177628775e-08 1.176948794e-08 9.661999652e-09 6.857803096e-09 9.613330983e-09 6.673834854e-09 9.598386535e-09 6.652745987e-09 6.558331036e-09 6.530514634e-09 6.728082062e-09 8.181858371e-09 4.208122766e-09 3.888425792e-09 5.393069284e-09 3.790975566e-09 2.19316758e-09 1.854771725e-09 9.619493122e-10 2.56505342e-10 7.744761272e-10 2.979914548e-11 3.070985992e-10 1.209689298e-11 2.960513541e-11 1.159257682e-11 6.692555544e-14 1.523656603e-13 9.0556988e-14 1.993039558e-14 2.147081931e-16 2.68622055e-17 5.986608756e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.785746456e-19 1.388478603e-18 5.252308302e-17 6.823797448e-16 5.002227973e-16 7.924115758e-15 5.302824777e-13 1.157608802e-14 4.398237294e-13 3.695378018e-11 1.048063485e-10 2.119962774e-10 1.129457029e-10 2.424159583e-10 3.723066042e-10 7.26807931e-10 1.272471493e-09 1.03974189e-09 3.253964238e-09 5.200528741e-09 5.290127989e-09 3.948310187e-09 3.571164901e-09 5.144187051e-09 6.920608313e-09 5.262388292e-09 4.780189951e-09 8.439494906e-09 8.605000806e-09 7.782023347e-09 1.010915941e-08 6.501656979e-09 1.077382463e-08 9.480305648e-09 1.136667963e-08 1.125584682e-08 1.22195702e-08 1.907921426e-08 1.341686322e-08 1.740220779e-08 1.600011714e-08 1.867762449e-08 1.416834408e-08 1.711747177e-08 1.698944878e-08 1.261961192e-08 1.810838422e-08 1.779312632e-08 2.345549309e-08 2.006303696e-08 1.550041883e-08 1.281936852e-08 1.542718804e-08 2.21111535e-08 1.797354369e-08 1.852029656e-08 1.731351681e-08 1.984050322e-08 1.764838095e-08 1.812495723e-08 1.226706839e-08 2.108827285e-08 1.213812693e-08 1.752665754e-08 1.484241097e-08 1.648484059e-08 1.784082269e-08 1.190279179e-08 8.105970231e-09 1.415047585e-08 9.750733334e-09 1.429272207e-08 1.068303703e-08 1.132259466e-08 9.026540756e-09 1.266092743e-08 1.178259678e-08 1.673072006e-08 1.078596572e-08 1.564646133e-08 1.443469707e-08 1.269349477e-08 1.06001286e-08 1.076313783e-08 1.042025604e-08 1.282753965e-08 1.151588853e-08 9.254653749e-09 1.54349625e-08 1.364549917e-08 1.182045732e-08 1.58983319e-08 1.336259012e-08 1.08938427e-08 1.275925651e-08 1.224943414e-08 1.303485884e-08 1.363906166e-08 9.827742882e-09 1.399862118e-08 7.53027161e-09 1.21163197e-08 1.154581074e-08 1.374181075e-08 1.44070128e-08 1.428844559e-08 1.269451284e-08 1.353758303e-08 1.169249143e-08 1.976830537e-08 2.341759553e-08 1.651184898e-08 1.751767215e-08 1.477913267e-08 1.80104566e-08 1.987863869e-08 2.741362715e-08 1.706564336e-08 2.020712814e-08 2.0404952e-08 1.8445483e-08 1.744612321e-08 1.675817051e-08 1.837748905e-08 1.813959836e-08 1.887942634e-08 1.933139571e-08 1.276074394e-08 1.33809768e-08 1.286573309e-08 1.861643656e-08 1.887274684e-08 1.354652578e-08 1.598774841e-08 1.278448061e-08 9.903971221e-09 1.28945647e-08 1.094211099e-08 1.104486065e-08 1.103357102e-08 1.071121534e-08 1.177429602e-08 7.217801745e-09 9.417976882e-09 5.839448904e-09 7.409386456e-09 4.882061054e-09 8.168600635e-09 3.79121426e-09 3.397894754e-09 3.610374462e-09 3.429543076e-09 2.870518629e-09 4.694413349e-09 1.590137621e-09 2.065082768e-09 5.834307233e-10 4.147996376e-10 3.147720742e-10 3.234810248e-11 3.333659776e-10 1.559302653e-11 1.51340054e-10 8.530788572e-12 1.436528504e-13 1.205945439e-13 5.117113379e-15 2.027985157e-16 4.012021495e-16 2.160993115e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.055754684e-19 1.787774895e-17 2.288425317e-17 1.549635157e-16 3.062264386e-15 3.126408974e-13 1.600384984e-12 9.95915227e-12 1.068793738e-12 2.841861834e-10 3.24446392e-10 3.357894084e-10 1.215060865e-10 2.314597243e-10 1.514563214e-09 1.205441272e-09 1.467644916e-09 2.235352978e-09 4.516877851e-09 1.854856442e-09 5.299110925e-09 3.957123983e-09 5.475788454e-09 6.779990806e-09 6.864379235e-09 5.531729974e-09 6.038020629e-09 9.458367646e-09 9.929408948e-09 8.648926734e-09 6.969398232e-09 1.138171555e-08 9.701428032e-09 1.29456409e-08 9.730303794e-09 1.590791595e-08 1.135253103e-08 1.067328762e-08 1.089508965e-08 1.173193162e-08 1.143490082e-08 1.231650162e-08 1.711074727e-08 1.780690311e-08 1.987397781e-08 1.240673217e-08 2.294725958e-08 1.699693916e-08 1.499954666e-08 2.08209016e-08 1.594344372e-08 1.969997095e-08 1.348890164e-08 2.123527544e-08 1.822385325e-08 1.615157478e-08 1.630361459e-08 1.629114093e-08 1.705102349e-08 1.684283476e-08 1.347030548e-08 1.391454427e-08 1.212184471e-08 9.928185869e-09 1.069306255e-08 1.384566613e-08 1.612991908e-08 1.376277754e-08 1.380617383e-08 1.289853157e-08 1.643512857e-08 1.696511838e-08 1.810200116e-08 1.336296867e-08 1.260429121e-08 8.451314134e-09 1.779422872e-08 1.430586508e-08 1.417314227e-08 1.532299312e-08 1.241825615e-08 1.072871047e-08 1.530943309e-08 1.085048845e-08 1.074874937e-08 1.22965991e-08 1.487026924e-08 1.538766008e-08 1.214080842e-08 1.209491337e-08 1.347089333e-08 1.224425937e-08 1.277628715e-08 1.146189593e-08 1.142238762e-08 1.22322605e-08 1.479733027e-08 1.011354379e-08 1.343121707e-08 1.010423929e-08 1.208496279e-08 1.149425331e-08 1.245290428e-08 1.295373637e-08 1.525410121e-08 1.167877596e-08 1.391828254e-08 1.660648313e-08 1.404683721e-08 1.777986463e-08 2.144109357e-08 1.563731434e-08 1.809679971e-08 1.485192996e-08 1.79523666e-08 2.136735924e-08 1.589847833e-08 1.901177863e-08 1.939609409e-08 1.925286117e-08 1.952237978e-08 1.864059302e-08 1.629288649e-08 1.369036805e-08 1.780962349e-08 1.703525057e-08 1.799418523e-08 1.59002219e-08 1.898922867e-08 1.387159322e-08 1.277516654e-08 1.348275591e-08 1.330689728e-08 1.26340868e-08 1.228383052e-08 7.656337494e-09 1.190320253e-08 1.360744542e-08 9.038628737e-09 1.076987882e-08 1.016197232e-08 8.688250906e-09 6.99471903e-09 7.478081881e-09 6.29750084e-09 5.438357629e-09 6.611793383e-09 5.584679783e-09 3.468216071e-09 2.837954023e-09 4.665841077e-09 2.45382882e-09 2.345211818e-09 2.645517063e-09 6.861617979e-10 2.825804899e-09 4.578924034e-10 3.246186106e-10 1.08578028e-10 2.084264078e-10 3.38907736e-10 4.031244011e-13 3.870131644e-11 3.871955045e-13 4.166341237e-13 1.29668531e-14 9.469615533e-16 3.429750004e-16 2.243817568e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.313057196e-19 2.129116923e-18 4.659076072e-18 1.918231236e-16 6.212670539e-17 2.891489383e-14 5.172148459e-15 1.457733756e-12 8.814491079e-13 8.913221357e-12 5.675094715e-10 4.27179806e-12 2.460681211e-10 3.938569773e-10 9.828519648e-10 9.333534313e-11 7.652747049e-10 1.775538494e-09 3.219835438e-09 3.809965377e-09 1.901585524e-09 3.620208035e-09 5.110834509e-09 6.206208034e-09 5.948736917e-09 5.893931406e-09 5.698487658e-09 7.511324405e-09 9.682391627e-09 9.258780522e-09 8.392282847e-09 9.324827316e-09 7.033006394e-09 1.029463583e-08 9.546023447e-09 1.023325238e-08 1.214643928e-08 1.331921258e-08 1.266910947e-08 1.067743485e-08 1.456834566e-08 1.397570155e-08 1.36727433e-08 1.672791017e-08 1.317042332e-08 1.818836354e-08 1.593714367e-08 1.476832158e-08 1.576886042e-08 1.535048877e-08 1.676600836e-08 1.778164961e-08 1.887172295e-08 1.778042552e-08 1.229315232e-08 1.95708301e-08 1.969241778e-08 2.035345551e-08 1.734015728e-08 2.078172667e-08 2.014690409e-08 1.484328424e-08 1.342161852e-08 1.722240837e-08 1.23867373e-08 1.285305635e-08 1.32027031e-08 2.453694407e-08 1.233953671e-08 1.108962389e-08 6.485082074e-09 1.651782115e-08 1.221590755e-08 1.321795262e-08 1.157088089e-08 1.352430042e-08 1.471219268e-08 1.531136194e-08 1.351422984e-08 1.122971322e-08 1.39337817e-08 2.13471538e-08 1.29907247e-08 1.454536766e-08 1.322147965e-08 1.123092497e-08 1.437745853e-08 1.669627549e-08 1.022904116e-08 1.258883932e-08 1.291830663e-08 1.50799612e-08 1.359177316e-08 1.242805859e-08 1.596791461e-08 1.247304612e-08 1.355037874e-08 1.119851575e-08 1.32374498e-08 1.71836998e-08 1.275649387e-08 1.377312604e-08 1.544041838e-08 1.633185919e-08 1.473636566e-08 1.799073644e-08 1.828286526e-08 1.418008559e-08 2.019253353e-08 1.767107209e-08 1.929930162e-08 1.413116805e-08 1.876085861e-08 1.691245432e-08 2.256418232e-08 1.872962434e-08 1.446689272e-08 1.610527679e-08 1.647964241e-08 1.75644079e-08 1.654435637e-08 1.629529262e-08 1.418416151e-08 1.89214568e-08 1.765580589e-08 1.80499653e-08 1.319337371e-08 1.705098963e-08 1.096228445e-08 1.587707622e-08 1.334652929e-08 1.220399949e-08 1.357500219e-08 1.008484729e-08 1.012087851e-08 1.139824274e-08 1.14391641e-08 1.064623109e-08 1.058947196e-08 1.047638394e-08 7.555362994e-09 7.65621239e-09 8.067461859e-09 1.075713955e-08 6.449381654e-09 6.942284579e-09 8.189466588e-09 5.382998261e-09 6.654031992e-09 3.69207977e-09 2.805569007e-09 3.518619879e-09 3.085488705e-09 3.852713164e-09 2.185081592e-09 1.684827591e-09 1.560383041e-09 2.335394358e-10 3.112493369e-10 3.618151587e-10 3.524226877e-10 1.409367911e-11 8.288652206e-11 4.443705502e-14 1.358041008e-12 9.76183906e-14 8.385856572e-15 4.335648332e-16 1.152686495e-17 5.812156504e-18 1.170981346e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.473326265e-19 0 1.078160628e-18 6.651080451e-22 1.732071905e-17 4.272973019e-15 1.781966984e-17 8.208717143e-15 7.46127514e-13 4.000338153e-12 1.263097843e-10 6.776493627e-12 2.216279459e-10 3.673320732e-10 1.114986722e-12 8.450780049e-10 1.019017521e-09 1.644291495e-09 4.08484693e-10 3.006227925e-09 2.281480895e-09 2.537029687e-09 2.922403946e-09 5.853503165e-09 3.879393899e-09 2.312720246e-09 3.903351217e-09 5.37458977e-09 6.660483602e-09 7.332630193e-09 9.017003756e-09 6.729964466e-09 6.918413634e-09 6.980013082e-09 7.548303669e-09 1.000248114e-08 8.795342844e-09 1.10573911e-08 1.140067885e-08 8.743281987e-09 1.272832891e-08 1.21951014e-08 1.642729596e-08 1.234849185e-08 1.068029461e-08 8.901544764e-09 1.506168227e-08 1.258159518e-08 1.51083815e-08 1.667163502e-08 1.535709568e-08 1.456355189e-08 1.982086906e-08 1.821783165e-08 1.701414329e-08 1.399557386e-08 1.761542578e-08 1.798117828e-08 2.162354904e-08 1.956415785e-08 2.015429709e-08 1.278446483e-08 1.49790974e-08 1.228064077e-08 1.62696218e-08 1.570795717e-08 1.547897911e-08 1.340420542e-08 1.50858647e-08 1.556537117e-08 1.62265632e-08 1.70085227e-08 2.134688759e-08 1.461672948e-08 1.384516476e-08 1.357328136e-08 1.298909677e-08 1.733476065e-08 1.718240803e-08 1.827692879e-08 1.541051085e-08 1.385067737e-08 1.653098111e-08 1.593323681e-08 1.342090882e-08 1.318619597e-08 1.31099727e-08 2.058179783e-08 1.425262031e-08 1.654642651e-08 1.749477059e-08 1.4639114e-08 1.42486014e-08 1.310839266e-08 1.392450515e-08 1.632867361e-08 1.324752803e-08 1.448323831e-08 1.757922134e-08 1.474009819e-08 1.484745672e-08 1.405586045e-08 1.431418328e-08 1.723798073e-08 1.469422074e-08 2.050676711e-08 1.720609916e-08 2.324255031e-08 1.346498281e-08 1.278920388e-08 1.48766327e-08 1.542325011e-08 1.231822839e-08 1.637457072e-08 1.895973435e-08 2.179419985e-08 2.184256764e-08 1.584602515e-08 1.14661169e-08 2.162995562e-08 1.454297729e-08 1.808726698e-08 1.702093453e-08 1.41707037e-08 1.239990447e-08 1.491669428e-08 2.332782406e-08 1.334199666e-08 1.353342063e-08 1.476937554e-08 1.17662469e-08 1.591771207e-08 1.100487659e-08 1.302755365e-08 1.208845304e-08 1.166171286e-08 8.219026891e-09 8.453091893e-09 9.95183093e-09 8.315236612e-09 6.408607439e-09 1.27379848e-08 8.517030542e-09 6.904466938e-09 6.789830318e-09 7.133211632e-09 5.522264637e-09 6.459757007e-09 7.379743197e-09 4.153164229e-09 2.600586599e-09 6.570589457e-09 1.766838e-09 2.247724779e-09 2.087845633e-09 2.068281465e-09 1.180191737e-09 4.040634108e-10 2.021442843e-10 3.268873071e-10 5.784607837e-11 2.338473514e-11 1.996118396e-10 2.734458034e-12 6.61337418e-13 2.828841403e-13 1.348050781e-16 1.069737469e-15 1.420410833e-15 2.651165705e-20 5.952970439e-19 7.265312222e-23 5.663984599e-19 5.308461521e-19 0 0 0 0 0 0 0 9.264983953e-11 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.767443746e-18 1.347924792e-16 4.248922705e-17 5.154520306e-17 1.135577959e-16 3.501588776e-15 4.342045387e-14 5.225947701e-12 1.28654573e-14 1.555135148e-10 5.906393728e-11 7.986631699e-11 1.794551517e-10 5.707352492e-10 6.585310893e-10 1.711797785e-09 1.61308478e-09 2.449160639e-09 2.208893626e-09 1.917080003e-09 3.31851745e-09 3.156740229e-09 4.402733236e-09 4.237859874e-09 4.662554391e-09 4.093880542e-09 5.470656346e-09 4.978373006e-09 5.77145356e-09 6.431165189e-09 5.409833183e-09 6.510403662e-09 5.558154951e-09 9.785434103e-09 1.153896872e-08 9.210882586e-09 9.901925681e-09 1.218795277e-08 7.333534458e-09 1.335922293e-08 1.132964053e-08 1.214881233e-08 1.417552008e-08 1.56053422e-08 1.226869168e-08 1.395739265e-08 1.523930514e-08 1.845281033e-08 1.304264127e-08 1.554266158e-08 1.304461002e-08 1.372700959e-08 1.485542884e-08 1.713403204e-08 1.608444804e-08 1.30662068e-08 1.918089503e-08 1.517364804e-08 1.690143135e-08 1.63922563e-08 1.593605871e-08 1.847492236e-08 1.809647536e-08 1.165784811e-08 1.659813779e-08 2.27066683e-08 1.594536175e-08 1.195078236e-08 1.205817464e-08 1.219810211e-08 1.312238419e-08 1.400004423e-08 1.640898621e-08 1.526879807e-08 1.216249456e-08 1.471532965e-08 1.405535589e-08 1.213272112e-08 1.265197145e-08 1.286102612e-08 1.640077125e-08 1.859499306e-08 1.406983387e-08 1.670462797e-08 1.496205605e-08 1.382668959e-08 1.445827076e-08 1.743555016e-08 1.224609669e-08 1.19271228e-08 1.530710675e-08 1.514533397e-08 1.388515878e-08 1.610053537e-08 1.997476403e-08 1.814380187e-08 1.435188634e-08 1.028142911e-08 1.499443633e-08 1.593102213e-08 1.43693886e-08 1.334758473e-08 1.36807695e-08 1.597296058e-08 1.724931272e-08 1.267626977e-08 1.787442686e-08 1.719997831e-08 1.490993893e-08 1.67902917e-08 1.572071273e-08 1.497699335e-08 1.831204538e-08 1.813285926e-08 1.292068038e-08 1.530815894e-08 1.800173373e-08 1.164183615e-08 1.526983211e-08 1.493025078e-08 1.798392603e-08 1.704485583e-08 1.483627833e-08 1.588443985e-08 1.412679629e-08 1.530703569e-08 1.186768866e-08 1.687896398e-08 1.196805733e-08 1.182662758e-08 9.80325067e-09 1.217923505e-08 1.131863161e-08 1.000276262e-08 8.517451095e-09 7.973630926e-09 1.156290735e-08 8.513941122e-09 6.910967535e-09 7.125991759e-09 6.021264612e-09 8.539182629e-09 6.156946828e-09 5.771856642e-09 4.722141735e-09 6.185158478e-09 6.945880933e-09 3.931478034e-09 3.849084542e-09 3.900331605e-09 3.192592861e-09 2.107960088e-09 2.657170479e-09 1.347032845e-09 1.206605086e-09 6.314536452e-10 3.023438155e-10 4.50117764e-10 1.434706622e-10 3.323828154e-10 1.195111958e-10 1.705143325e-14 1.148268111e-12 3.951870701e-13 1.215017048e-14 2.943970252e-14 1.637193757e-15 1.460143156e-17 6.591533499e-19 0 1.127374372e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.798888054e-27 0 1.21010506e-17 1.25909721e-15 4.486827572e-15 5.349519875e-16 3.635931695e-13 1.465898032e-14 4.687988194e-12 4.765483457e-12 3.72171418e-12 2.116424105e-10 7.302430621e-13 2.860016123e-10 3.157620832e-10 1.346994844e-09 7.530867269e-10 1.638771157e-09 3.280183769e-09 1.404290489e-09 2.576899181e-09 3.241494051e-09 3.574742042e-09 3.717054519e-09 6.158633163e-09 3.215779195e-09 6.724570725e-09 7.111283591e-09 7.121065464e-09 7.425940202e-09 5.756748522e-09 7.618650787e-09 8.47703149e-09 6.533474629e-09 7.820183356e-09 8.551650098e-09 8.918968228e-09 9.381456893e-09 9.417012916e-09 7.667595838e-09 9.858820893e-09 1.136427624e-08 1.339791037e-08 1.416020308e-08 1.110922613e-08 1.169604696e-08 1.737725988e-08 2.059825848e-08 1.91604927e-08 1.346399929e-08 1.972753787e-08 1.363999413e-08 1.45591022e-08 1.640565846e-08 1.481058886e-08 1.383811824e-08 1.608283173e-08 1.42641232e-08 1.46492468e-08 1.817928441e-08 1.488870035e-08 1.270240389e-08 1.392243129e-08 1.500327514e-08 1.251026149e-08 1.823874394e-08 1.490405893e-08 2.0183488e-08 2.109919936e-08 1.468739856e-08 1.331994162e-08 1.539269186e-08 1.838425086e-08 1.679266543e-08 1.569559675e-08 1.634465923e-08 2.079424795e-08 1.65753045e-08 1.500697675e-08 1.451688926e-08 1.938033982e-08 1.892779927e-08 1.550287742e-08 1.14063977e-08 1.637493342e-08 1.471613098e-08 1.921036157e-08 1.657471632e-08 1.460718904e-08 1.31395062e-08 1.570419261e-08 1.496104384e-08 1.452751231e-08 1.463243649e-08 1.189175812e-08 1.256582606e-08 1.388043219e-08 1.75020186e-08 1.631305528e-08 1.577577224e-08 1.737936752e-08 1.112685449e-08 1.587005826e-08 1.306874821e-08 1.449886082e-08 1.337875599e-08 1.263199972e-08 1.206610118e-08 2.166951409e-08 1.564034781e-08 1.578105938e-08 1.392043574e-08 1.669404487e-08 1.206277212e-08 1.186787258e-08 1.484804654e-08 1.555722145e-08 1.504934323e-08 1.528593494e-08 1.460485655e-08 1.498964653e-08 1.228073176e-08 9.74996234e-09 1.007766099e-08 1.08934062e-08 8.494474026e-09 1.290335473e-08 1.260483595e-08 1.261599772e-08 1.270892745e-08 1.427920896e-08 8.955468988e-09 9.297572383e-09 1.346491144e-08 1.071021057e-08 9.208640826e-09 9.775720948e-09 8.819310781e-09 7.73012419e-09 6.820125603e-09 6.963655804e-09 5.252975285e-09 5.901153615e-09 6.970203617e-09 3.922137902e-09 5.507046824e-09 3.980366603e-09 4.540807656e-09 3.153318229e-09 2.920682415e-09 1.802903448e-09 3.044728108e-09 3.198920556e-09 6.397930267e-10 1.339723192e-09 7.737892828e-10 3.418257289e-10 3.016762272e-10 5.460847728e-10 2.650290057e-10 2.336487566e-10 2.163545621e-10 2.56507601e-14 3.229257019e-13 6.84450597e-13 3.717107145e-13 1.232850083e-17 1.124288593e-16 3.547997332e-17 1.570764202e-18 7.843874272e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.330979225e-16 2.788067133e-16 5.189645836e-17 2.935413681e-14 1.904831012e-14 5.68942436e-14 3.80624552e-12 1.15807352e-12 1.158687779e-10 3.811456679e-10 9.358254817e-12 2.485770708e-10 2.872993745e-10 1.174137913e-09 1.246833157e-09 1.287733613e-09 2.213593777e-09 1.74578689e-09 2.334783621e-09 2.500615632e-09 4.440618634e-09 2.954546809e-09 4.472328223e-09 4.345112662e-09 4.156338136e-09 6.384858296e-09 4.774505682e-09 3.603803131e-09 8.296034661e-09 5.575083861e-09 7.30378735e-09 8.322792579e-09 5.258657301e-09 7.888318484e-09 1.003598071e-08 1.10509506e-08 9.977785548e-09 7.83893803e-09 1.486230064e-08 1.313911866e-08 1.084895431e-08 9.610257692e-09 1.024598823e-08 1.218040994e-08 1.171050936e-08 1.308749131e-08 1.543653476e-08 1.218593241e-08 1.563396721e-08 1.256059811e-08 1.51951304e-08 1.50901455e-08 1.624767854e-08 1.566240946e-08 1.65650343e-08 1.237550646e-08 1.39905902e-08 1.660349779e-08 1.375503004e-08 1.444555364e-08 1.643565952e-08 1.366316974e-08 1.156917215e-08 1.753332449e-08 1.564782365e-08 1.721944038e-08 1.573142176e-08 1.430840515e-08 1.412936253e-08 1.492755251e-08 1.690863411e-08 1.487575421e-08 1.228448021e-08 1.410500909e-08 1.583220374e-08 1.349822921e-08 1.863641838e-08 1.224217606e-08 1.782359012e-08 1.874049628e-08 1.593153234e-08 1.667164164e-08 1.380250993e-08 1.831257088e-08 1.744072062e-08 1.262687222e-08 1.619110754e-08 1.683438547e-08 1.727754487e-08 1.388795427e-08 1.694640966e-08 1.279935917e-08 1.214331198e-08 1.688460443e-08 1.668848587e-08 1.630368188e-08 1.77050969e-08 1.69230972e-08 1.39657027e-08 1.425968871e-08 1.795986836e-08 1.409686394e-08 1.69432791e-08 1.580393856e-08 1.755918769e-08 1.143722088e-08 1.6794294e-08 1.714225383e-08 1.59131082e-08 1.580902318e-08 1.525242753e-08 1.926994032e-08 1.481604769e-08 1.78301732e-08 1.268877943e-08 1.541638596e-08 1.302681772e-08 1.162860016e-08 1.350157231e-08 1.232632828e-08 1.150517094e-08 1.224329773e-08 1.029139242e-08 1.466256762e-08 1.358755014e-08 1.185565286e-08 1.189677425e-08 8.223142887e-09 1.267817547e-08 1.023989758e-08 7.604773968e-09 1.061415307e-08 9.453477856e-09 1.111087357e-08 9.130167708e-09 8.726683018e-09 8.355657958e-09 9.329544907e-09 4.92867882e-09 6.486420425e-09 5.073710795e-09 5.330549756e-09 7.103740897e-09 5.182913859e-09 5.830354811e-09 4.431086572e-09 4.716700068e-09 4.962855189e-09 2.950328854e-09 2.756318702e-09 1.948718125e-09 1.653300406e-09 2.418484613e-09 1.186851384e-09 1.166474999e-09 4.153488468e-10 4.717903405e-10 1.435323514e-10 1.178351137e-10 1.139152148e-10 8.069340164e-12 3.498208964e-13 6.478709121e-13 9.629624444e-16 5.156418289e-19 1.301605219e-16 2.574129078e-17 5.649691241e-17 0 6.507646986e-23 0 0 0 0 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.448368382e-19 0 3.724087794e-17 2.62316105e-16 1.720573281e-15 7.358775344e-14 7.350854883e-15 4.99260224e-16 8.599547489e-13 2.951966906e-13 7.126270808e-11 1.54697007e-11 2.44964473e-10 1.099628561e-10 3.017777108e-10 5.09971357e-10 1.837983246e-09 9.183196823e-10 1.496686257e-09 2.218303264e-09 7.322078859e-10 2.02217471e-09 3.087318106e-09 4.344763491e-09 3.016321601e-09 5.072645745e-09 3.163959314e-09 3.85898022e-09 8.590409338e-09 7.096781175e-09 4.156307507e-09 6.184135217e-09 9.031288454e-09 5.666180101e-09 6.829880508e-09 7.600144903e-09 9.407519926e-09 7.629637182e-09 1.054864432e-08 8.212201607e-09 7.366354394e-09 1.134015309e-08 9.363807344e-09 9.546076309e-09 1.008590288e-08 8.966844609e-09 1.030896843e-08 1.155611485e-08 1.287729591e-08 1.281646224e-08 1.32367928e-08 1.316564255e-08 1.13005056e-08 1.573066842e-08 1.747181809e-08 1.544869361e-08 1.439051685e-08 1.620051487e-08 1.387825094e-08 1.539449545e-08 1.256858379e-08 1.460363316e-08 1.067452632e-08 1.429376759e-08 1.447305561e-08 1.744567213e-08 1.353622845e-08 1.493142528e-08 1.475863115e-08 1.385523404e-08 1.570447651e-08 1.591339634e-08 1.318521951e-08 1.274540412e-08 1.313761786e-08 1.483676105e-08 1.932623386e-08 1.937041818e-08 1.608404089e-08 1.589794355e-08 1.517804257e-08 1.552147549e-08 1.70270117e-08 1.168626833e-08 1.414349021e-08 1.617171367e-08 1.553181448e-08 1.370927346e-08 1.325116725e-08 1.379886805e-08 1.321630359e-08 1.467348564e-08 1.693031339e-08 1.409310051e-08 1.402329537e-08 1.521594504e-08 1.470533548e-08 1.546722755e-08 1.418440454e-08 1.270133183e-08 1.451035886e-08 1.66735164e-08 1.590866933e-08 1.81919579e-08 1.588589174e-08 1.668180445e-08 1.524994583e-08 1.702910031e-08 1.527096937e-08 1.589763072e-08 1.517154813e-08 1.597084471e-08 1.538925967e-08 1.680687178e-08 1.217128735e-08 1.473277463e-08 1.539907499e-08 1.197529001e-08 1.362364381e-08 1.54404762e-08 1.525868496e-08 1.486850301e-08 1.036723179e-08 1.54973061e-08 1.025031372e-08 1.152608475e-08 1.560904443e-08 1.068220116e-08 1.355990395e-08 8.445775203e-09 9.939556713e-09 8.876918378e-09 8.70852714e-09 9.527581359e-09 8.984129775e-09 8.168847462e-09 8.348456016e-09 9.174038208e-09 7.480778724e-09 7.477559727e-09 6.24797121e-09 3.828440541e-09 4.260432717e-09 5.391059936e-09 3.715616626e-09 3.401873508e-09 2.514532782e-09 4.164261045e-09 2.121495414e-09 1.752913473e-09 2.443860355e-09 1.730913737e-09 2.396309793e-09 5.438893744e-10 1.031281658e-09 1.597716972e-09 8.609578996e-10 2.287609058e-10 2.210006232e-10 8.810436744e-11 2.997785612e-10 1.108789197e-10 7.352464408e-11 1.467293921e-12 3.22984506e-13 1.924792097e-14 5.779871665e-14 1.950166096e-15 1.527987343e-15 0 2.719140548e-17 6.555969913e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.459836928e-19 0 1.698338511e-17 6.509070761e-18 3.415530178e-17 1.226412148e-13 7.961108159e-14 1.936234705e-11 3.034765813e-11 1.119569635e-12 1.475865804e-10 6.766047741e-11 1.741216827e-10 4.148697378e-10 1.219455622e-09 8.113169902e-10 1.147324229e-09 1.316640647e-09 2.015972168e-09 1.406745673e-09 3.071181119e-09 4.452684609e-09 3.210908503e-09 4.013515642e-09 2.518852512e-09 4.770225734e-09 3.52680971e-09 6.559195741e-09 8.495911582e-09 5.126441813e-09 5.746839682e-09 8.624549784e-09 7.458202098e-09 6.71345946e-09 7.049451854e-09 7.338017456e-09 7.776272045e-09 7.325366754e-09 9.887426847e-09 7.862877774e-09 6.430388806e-09 1.006439917e-08 1.084441331e-08 8.225704165e-09 1.277050011e-08 9.857245307e-09 8.911493561e-09 1.302869351e-08 1.152827325e-08 1.400523385e-08 1.331143833e-08 1.223157375e-08 1.367724185e-08 1.432036235e-08 1.582285738e-08 1.345834849e-08 1.288494778e-08 1.329494251e-08 1.027001605e-08 1.577550796e-08 1.265047485e-08 1.395034926e-08 1.181372995e-08 1.10515247e-08 1.675052231e-08 1.536816385e-08 1.587300439e-08 1.777574204e-08 1.041904602e-08 1.063016181e-08 1.351058399e-08 1.615812968e-08 1.164230734e-08 1.335733145e-08 1.37416765e-08 9.862704969e-09 1.625427103e-08 1.446019006e-08 1.655034913e-08 1.617489162e-08 1.221695917e-08 1.176854545e-08 1.741085318e-08 1.540223177e-08 1.494854232e-08 1.357456654e-08 1.575648196e-08 1.443308975e-08 1.437191612e-08 1.107188775e-08 1.538364204e-08 1.592907101e-08 1.814479148e-08 1.33123887e-08 1.610369382e-08 1.319512594e-08 1.592629323e-08 1.32677656e-08 1.495521054e-08 1.7957761e-08 1.349547363e-08 1.615860908e-08 1.623612389e-08 1.123927516e-08 1.63741903e-08 1.442040011e-08 1.542408768e-08 1.064732575e-08 1.535687963e-08 1.537618732e-08 1.331323075e-08 1.155328871e-08 1.012909943e-08 1.225478361e-08 1.571967509e-08 1.349731265e-08 1.585029805e-08 1.098139579e-08 1.080558563e-08 1.203112908e-08 1.731497719e-08 1.199237908e-08 1.110046602e-08 8.534216577e-09 1.50236012e-08 8.827566248e-09 1.204139372e-08 9.568247327e-09 1.161069936e-08 7.152949988e-09 8.447104365e-09 8.025717095e-09 5.885430178e-09 4.216030724e-09 5.693143109e-09 4.704814453e-09 6.605453955e-09 6.081448211e-09 4.589634799e-09 4.470008541e-09 5.911821732e-09 7.618075993e-09 5.414811415e-09 5.199937717e-09 2.748889193e-09 3.078871018e-09 3.884717575e-09 2.467326069e-09 1.093441195e-09 2.480585276e-09 3.010580117e-09 3.815632576e-10 1.531634268e-09 1.162526365e-09 9.645587501e-10 8.07776985e-10 7.976859703e-10 1.113954993e-10 1.72582578e-10 1.365942065e-10 6.122393879e-11 1.533276688e-13 2.529313016e-11 2.75808971e-13 2.888146805e-15 1.48322798e-16 8.259091403e-17 5.011135532e-17 2.682751609e-22 8.338871273e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.507374977e-19 8.948190061e-19 2.143795478e-18 1.190245163e-15 2.245121642e-17 1.876694176e-16 1.743924975e-14 4.606526174e-14 6.113521505e-13 2.927595361e-11 2.063572989e-15 8.241981797e-11 2.947135018e-10 6.562153259e-11 2.982606644e-10 1.219803217e-09 9.752678207e-10 4.623964885e-10 1.252136006e-09 8.912747621e-10 2.611023911e-09 1.761543185e-09 1.4701697e-09 1.285828394e-09 3.751283166e-09 3.447983581e-09 5.217825988e-09 3.640605667e-09 2.86854712e-09 5.335258222e-09 3.735229515e-09 4.91116807e-09 5.326861173e-09 5.585149572e-09 7.521272491e-09 4.403621955e-09 5.27884554e-09 7.615872825e-09 9.123623672e-09 6.064188616e-09 6.95432406e-09 8.690480111e-09 4.405306628e-09 1.024133575e-08 8.564233099e-09 9.136965454e-09 1.300618498e-08 1.293116607e-08 1.139946432e-08 1.021897378e-08 1.185841511e-08 1.12909074e-08 1.08403397e-08 8.198567185e-09 1.30144685e-08 1.367084472e-08 1.239825157e-08 1.011032089e-08 1.339280647e-08 1.080155475e-08 1.401467013e-08 8.010491106e-09 1.276731336e-08 1.258824323e-08 1.398485851e-08 1.212811727e-08 1.07539811e-08 1.363973002e-08 1.451438015e-08 1.16560344e-08 1.155355589e-08 1.077285911e-08 1.148393726e-08 1.140660029e-08 1.132566014e-08 1.221142257e-08 1.382385729e-08 1.752094644e-08 1.470988738e-08 1.673206998e-08 1.476547567e-08 1.118265862e-08 1.457266335e-08 1.736377899e-08 1.298302534e-08 1.353536255e-08 1.687816833e-08 9.94603589e-09 1.216993778e-08 1.289989636e-08 1.171920062e-08 1.338699919e-08 1.811690562e-08 1.13795538e-08 1.097655006e-08 1.774036721e-08 1.282537064e-08 1.164060655e-08 1.192328936e-08 1.401775311e-08 1.207849742e-08 1.176036941e-08 1.109458106e-08 1.338137563e-08 1.033455968e-08 1.086669548e-08 1.362555535e-08 1.332841967e-08 1.558268919e-08 1.379466905e-08 1.355289355e-08 1.229117921e-08 1.288744325e-08 1.271570183e-08 1.343525165e-08 1.096836799e-08 1.396614538e-08 1.180139252e-08 1.039264176e-08 8.069369313e-09 9.700616677e-09 1.157860162e-08 8.785812183e-09 9.948508453e-09 1.009745726e-08 9.653095693e-09 7.937413136e-09 5.08681188e-09 8.323577303e-09 8.306885046e-09 6.089594839e-09 8.304991367e-09 7.317198011e-09 5.792969187e-09 7.357670593e-09 6.17796518e-09 8.502482023e-09 6.493943155e-09 5.979560381e-09 5.370527581e-09 4.921780753e-09 6.523944774e-09 3.243482645e-09 4.747960946e-09 3.50190603e-09 5.284701805e-09 3.321113643e-09 3.62965986e-09 2.58588193e-09 1.868535625e-09 2.56454854e-09 2.227473768e-09 1.14705975e-09 1.175422566e-09 1.392863604e-09 1.16938141e-09 3.530495969e-10 7.718774042e-10 1.877312041e-10 2.354309816e-10 1.523240803e-11 4.333284089e-11 2.657009059e-12 1.433429384e-11 3.576768122e-13 2.283112272e-13 3.037524513e-16 3.310320419e-15 8.86510828e-16 1.567340042e-17 1.02948533e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.581360771e-19 2.375108997e-25 7.413197393e-20 9.522952627e-20 2.020039193e-15 3.569542425e-15 1.017514517e-16 1.289666555e-12 1.385739502e-12 9.703487175e-12 8.729005128e-11 9.362746806e-13 7.402513906e-11 2.566009912e-10 3.389004413e-10 5.652442318e-10 5.672942918e-11 1.109649619e-09 1.168868905e-09 5.372689308e-10 2.227353267e-09 1.200997017e-09 2.018938607e-09 2.233421847e-09 3.85617971e-09 3.213271643e-09 2.545147704e-09 3.896742627e-09 4.024317029e-09 2.554463584e-09 5.485643905e-09 3.786353694e-09 3.519250789e-09 4.999376003e-09 6.3934938e-09 7.003331266e-09 6.556099572e-09 8.062182694e-09 5.929872777e-09 6.928877628e-09 5.79602142e-09 6.217030607e-09 8.378547978e-09 6.327081036e-09 6.120824414e-09 1.035123777e-08 1.142107369e-08 8.308897255e-09 7.831588873e-09 7.989545151e-09 7.910111302e-09 8.794279843e-09 8.100707739e-09 1.207562092e-08 1.022504002e-08 1.06573864e-08 1.47970511e-08 1.415192094e-08 9.75378147e-09 1.566975283e-08 1.352331333e-08 8.959533799e-09 1.230915395e-08 1.320622711e-08 1.115051456e-08 1.002311463e-08 1.200681826e-08 9.609130806e-09 1.29109e-08 8.090589774e-09 1.435014639e-08 1.209115543e-08 1.046863325e-08 1.501182684e-08 9.324522869e-09 9.820088334e-09 1.299314557e-08 1.206014967e-08 1.371437591e-08 1.294518018e-08 1.203326937e-08 1.382223024e-08 1.428834118e-08 1.234148549e-08 1.169267825e-08 1.321762163e-08 1.107159634e-08 1.464133729e-08 1.230208265e-08 1.233349672e-08 1.070100697e-08 1.157206498e-08 1.26290602e-08 1.425605544e-08 1.108830539e-08 1.087738828e-08 1.387792107e-08 1.16511826e-08 1.090820382e-08 1.222866976e-08 1.566882638e-08 1.355788611e-08 1.235296799e-08 1.072358127e-08 1.179166822e-08 1.171922836e-08 9.072811241e-09 1.219630325e-08 1.430634436e-08 1.344375366e-08 1.445003032e-08 8.361251941e-09 1.2349456e-08 1.168402697e-08 9.791719639e-09 1.035714867e-08 1.224461153e-08 1.218533728e-08 8.575613998e-09 1.015778013e-08 1.120263611e-08 9.226717903e-09 1.315701324e-08 7.227435286e-09 8.06277185e-09 1.214994602e-08 1.056793087e-08 9.647743553e-09 8.213272811e-09 9.616141739e-09 7.404511471e-09 7.917506304e-09 8.032564805e-09 6.078266901e-09 4.616416001e-09 7.844702381e-09 5.020036919e-09 8.170608138e-09 5.842900697e-09 7.283391187e-09 6.154501857e-09 4.743540462e-09 3.343037798e-09 2.226234555e-09 3.16367036e-09 3.591250064e-09 1.822172258e-09 2.555383465e-09 2.922391899e-09 2.216564941e-09 1.508941827e-09 8.688140422e-10 1.575767906e-09 9.371174632e-10 2.105583689e-09 1.018249482e-09 6.924392321e-10 9.915067048e-12 1.470207792e-13 6.457033302e-13 2.885996471e-11 1.523908355e-11 1.655971892e-10 8.699838313e-15 2.425564497e-14 1.041861013e-16 5.27849929e-15 2.549491025e-15 1.470911486e-16 1.029930767e-17 1.596806595e-27 0 0 0 0 0 0 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.28107182e-23 0 0 3.418661329e-14 8.960529355e-14 1.066654342e-14 4.113128475e-13 4.909160802e-13 6.909878712e-13 1.066422758e-10 9.226940569e-11 1.128464335e-11 3.744052469e-11 9.806514322e-13 3.547929283e-10 3.011748786e-10 3.60651991e-10 1.670096118e-09 2.502222665e-09 8.90394428e-10 9.908306328e-10 2.295844186e-09 7.944405829e-10 2.501756469e-09 2.738891759e-09 2.093331957e-09 3.571616776e-09 2.638356448e-09 3.565289285e-09 7.407327729e-09 3.055126584e-09 3.702062901e-09 3.563119502e-09 4.167626218e-09 7.651229596e-09 5.779066624e-09 6.72399344e-09 6.769627062e-09 7.303693218e-09 5.258705197e-09 6.914713476e-09 7.511535408e-09 6.646700229e-09 7.319125102e-09 6.347206124e-09 1.02414319e-08 7.747334933e-09 8.175388176e-09 7.379663517e-09 6.747254114e-09 7.742065632e-09 7.653420555e-09 5.541856043e-09 1.072077119e-08 8.93257695e-09 8.903704521e-09 1.021268437e-08 9.916131151e-09 7.512662771e-09 1.259704356e-08 1.155283817e-08 1.277451552e-08 8.98502843e-09 8.681694057e-09 1.071356867e-08 9.362600665e-09 1.338345946e-08 8.013516362e-09 7.837408059e-09 1.482952795e-08 8.328492681e-09 1.137655716e-08 6.127779086e-09 1.175135962e-08 1.014282086e-08 9.457808413e-09 8.044680625e-09 1.345698346e-08 1.106431781e-08 1.052167915e-08 1.069670822e-08 1.172080519e-08 9.527749118e-09 1.27936481e-08 1.042959282e-08 8.512149253e-09 9.848579099e-09 9.910345427e-09 8.80810375e-09 1.367190042e-08 1.25118135e-08 8.580622251e-09 1.077788448e-08 8.478610067e-09 1.152503547e-08 8.563354808e-09 1.162151149e-08 1.012596021e-08 7.20190996e-09 1.231362435e-08 9.107836356e-09 8.507777838e-09 1.042366796e-08 9.876374874e-09 9.726173928e-09 1.118497126e-08 1.082024447e-08 8.287585832e-09 1.01908179e-08 9.704360006e-09 7.621557386e-09 1.058690376e-08 1.0816859e-08 1.143271305e-08 9.949084558e-09 7.604112376e-09 1.282044353e-08 8.51395891e-09 8.676335953e-09 1.111708209e-08 7.470486414e-09 9.919568629e-09 7.821667849e-09 7.144874625e-09 6.409244178e-09 7.666581662e-09 6.230094744e-09 6.360798277e-09 8.730849718e-09 3.783597928e-09 5.692939824e-09 5.879717926e-09 8.873888331e-09 6.050981055e-09 4.393835765e-09 3.99522603e-09 6.314062905e-09 4.392497415e-09 5.10967993e-09 4.628202349e-09 4.41577706e-09 5.472129798e-09 3.999733012e-09 4.353034286e-09 2.668001366e-09 3.492339984e-09 1.993143409e-09 2.460932217e-09 1.92693804e-09 1.610891403e-09 1.403706497e-09 2.30741506e-09 1.189966613e-09 3.306188061e-10 7.034811029e-10 8.248715156e-10 9.371049947e-11 3.346603758e-10 1.179569882e-13 5.542024314e-11 1.311633621e-13 9.461566417e-12 5.491834702e-15 7.546001755e-17 1.39514944e-13 1.469654988e-16 8.940265692e-17 1.896521689e-16 7.757176022e-17 6.630652746e-22 8.275672875e-26 0 0 0 0 0 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.043809755e-21 2.082124374e-16 1.326588931e-16 1.444139351e-15 1.396722035e-14 8.103577152e-15 3.907486108e-13 1.159337969e-12 2.426868193e-11 5.612667045e-11 1.23091296e-12 1.592559621e-10 7.193323368e-11 4.83578082e-10 9.005043377e-10 1.180856654e-09 1.14417168e-09 2.106887469e-09 1.149988968e-09 2.11727899e-09 2.045266645e-09 1.406523359e-09 9.73865854e-10 1.58277623e-09 2.801189455e-09 2.505041534e-09 2.957471088e-09 3.646778927e-09 4.355827509e-09 3.659824459e-09 3.210368629e-09 3.801707352e-09 4.33731401e-09 3.992020681e-09 5.044531531e-09 5.309245799e-09 5.157077294e-09 8.019016821e-09 4.936882223e-09 5.44911857e-09 5.469791274e-09 6.754661115e-09 7.915915059e-09 6.432470322e-09 6.72956892e-09 7.769410064e-09 5.892041926e-09 6.935215344e-09 6.965252316e-09 7.518491766e-09 6.257071176e-09 8.887806014e-09 9.485021546e-09 9.178130015e-09 8.552957155e-09 8.169157876e-09 9.050944557e-09 7.513377147e-09 8.319186916e-09 8.784433136e-09 9.374179521e-09 7.659576357e-09 9.593867411e-09 1.295900024e-08 7.584850765e-09 9.211368718e-09 7.640834745e-09 1.171057863e-08 1.006937844e-08 9.341746582e-09 8.293417246e-09 9.336072916e-09 7.40567217e-09 7.095887793e-09 9.984576031e-09 1.041376695e-08 9.855680263e-09 1.0144911e-08 1.045877954e-08 8.670589762e-09 1.329704481e-08 6.897849393e-09 1.063269021e-08 7.106414648e-09 9.874739189e-09 1.040272777e-08 9.256824314e-09 1.215078013e-08 9.267790715e-09 8.157879946e-09 9.152610281e-09 1.202253564e-08 1.370094242e-08 1.060649009e-08 8.965360487e-09 8.282059138e-09 8.052046409e-09 7.284034209e-09 8.357830149e-09 1.08674707e-08 9.094046395e-09 8.939076422e-09 8.918095802e-09 1.154215876e-08 9.696045414e-09 1.014621589e-08 9.799879005e-09 8.816974067e-09 8.783013178e-09 9.380713695e-09 1.124353022e-08 1.000939649e-08 8.267401097e-09 9.978407197e-09 8.593178538e-09 8.97409983e-09 6.772646524e-09 5.864872906e-09 1.036914434e-08 8.855808993e-09 7.84793372e-09 5.940437835e-09 8.04034472e-09 7.730498717e-09 8.183836286e-09 7.566673642e-09 7.615110443e-09 8.038579155e-09 6.569558131e-09 6.215479457e-09 6.370898461e-09 5.574112208e-09 4.165973513e-09 4.823757708e-09 3.660102421e-09 3.668041323e-09 5.304665534e-09 3.921413064e-09 4.557469533e-09 3.729228772e-09 3.908445789e-09 3.37233525e-09 1.9937429e-09 1.995342137e-09 2.470411217e-09 3.434207218e-09 2.735366529e-09 1.978007261e-09 2.138870115e-09 1.584199123e-09 2.051183954e-09 4.137315721e-10 8.17431711e-10 1.097705442e-09 8.707621139e-10 2.760999388e-13 1.456028714e-10 3.543012299e-10 5.131162772e-11 3.680732707e-13 2.073019302e-13 7.913759661e-14 6.708191549e-15 3.298298551e-12 2.006548408e-15 4.022461397e-14 4.813004929e-16 2.541873599e-16 4.162024346e-18 7.330874789e-19 3.231198355e-21 0 0 0 0 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.658888358e-19 2.098750637e-18 5.446683223e-23 3.957817658e-18 2.359079913e-17 3.363771362e-15 2.528798013e-16 5.044067107e-14 2.640972545e-14 5.260689069e-14 5.067396485e-15 5.988651986e-12 4.757345833e-11 5.329427259e-12 3.725701624e-13 4.898613251e-10 6.287774098e-10 1.826574588e-09 6.822236681e-10 1.480377372e-09 9.801092139e-10 1.429954519e-09 7.498253875e-10 1.64086886e-09 1.385832461e-09 2.00954621e-09 1.041856044e-09 2.401816176e-09 3.634377547e-09 2.872214348e-09 2.134263313e-09 4.096448201e-09 3.936405752e-09 3.134474789e-09 4.529903428e-09 5.61843273e-09 2.680090895e-09 4.514735025e-09 3.916145087e-09 5.218973157e-09 3.715203253e-09 7.479145916e-09 2.984910489e-09 5.188584768e-09 4.484454817e-09 6.246926884e-09 4.952734857e-09 6.881654783e-09 6.298262313e-09 4.127012407e-09 7.065241917e-09 5.396481167e-09 5.456675412e-09 9.240888074e-09 1.059172166e-08 7.191281378e-09 9.198087768e-09 7.116492071e-09 6.271814391e-09 7.568152567e-09 7.448749946e-09 7.47457059e-09 9.108995942e-09 9.607749381e-09 1.063452896e-08 9.34883806e-09 8.328385833e-09 9.989669629e-09 7.760621719e-09 8.134493993e-09 6.371412412e-09 8.834928738e-09 7.244930022e-09 9.624397312e-09 6.523187675e-09 8.888802547e-09 7.053152805e-09 9.621060803e-09 7.137149771e-09 1.04692197e-08 7.110356308e-09 9.45516696e-09 6.945598325e-09 7.271931178e-09 7.410233198e-09 5.472934453e-09 7.164481489e-09 7.484441454e-09 8.080816987e-09 5.468160434e-09 1.049418379e-08 8.188559842e-09 8.226255872e-09 8.836179901e-09 7.489421832e-09 6.249429515e-09 4.849400319e-09 7.12581109e-09 7.629109076e-09 9.847354211e-09 1.046548209e-08 7.290347607e-09 6.797116084e-09 7.809960493e-09 6.161120406e-09 1.074734338e-08 6.8395064e-09 7.666382189e-09 7.14365941e-09 7.668518442e-09 8.471257984e-09 9.963214421e-09 8.985658644e-09 9.00732721e-09 7.223428641e-09 9.605413924e-09 4.746409526e-09 6.43689599e-09 7.404272301e-09 6.943333673e-09 5.640040473e-09 6.448663169e-09 6.690933767e-09 6.42191696e-09 6.13784019e-09 5.849416173e-09 4.788376858e-09 6.781249401e-09 3.912485673e-09 3.752490347e-09 2.901378634e-09 5.690028834e-09 3.127381052e-09 6.462371619e-09 4.008581038e-09 5.341759124e-09 4.643066841e-09 3.690456896e-09 3.605303701e-09 2.533622368e-09 4.608480212e-09 1.715544483e-09 3.331342999e-09 2.972512718e-09 1.876883127e-09 2.083507494e-09 2.872430674e-09 2.5037365e-09 1.980450725e-09 1.270303187e-09 6.015969905e-10 1.81142293e-09 1.386400564e-09 6.000467036e-10 4.758159339e-10 5.752421882e-11 2.469546886e-10 5.767863403e-11 2.218556067e-10 7.712354958e-12 6.912615212e-11 3.802105369e-14 3.744590363e-14 6.856883597e-14 2.754833618e-15 2.21290146e-16 1.192699298e-15 9.373276751e-16 1.469505084e-16 0 4.24626154e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.024804936e-16 1.193710987e-16 4.654994249e-16 9.391387446e-15 5.035725207e-14 1.474324603e-15 4.717246656e-14 1.367728628e-14 6.889936915e-12 1.040726505e-11 1.852666204e-10 3.405408726e-10 3.230580742e-11 6.06022771e-10 5.567172144e-10 1.085653164e-09 1.127081094e-09 7.494649234e-10 9.891191819e-10 1.577240215e-09 1.181674123e-09 9.314113339e-10 1.132399041e-09 2.84943947e-09 2.79073388e-09 2.120492417e-09 2.659228253e-09 3.587101148e-09 2.715560916e-09 2.276278986e-09 3.968589745e-09 4.652977372e-09 3.279468685e-09 1.451773991e-09 4.27417699e-09 2.993170359e-09 4.01384381e-09 5.873709358e-09 5.540149311e-09 5.232823051e-09 3.718900645e-09 4.887423755e-09 3.967651074e-09 5.026219383e-09 5.864290988e-09 5.148429418e-09 3.926010036e-09 4.172111892e-09 7.334838092e-09 6.77473702e-09 6.052251872e-09 5.785226694e-09 7.647345333e-09 8.37656301e-09 6.070747929e-09 4.240301584e-09 7.519721996e-09 6.864820046e-09 6.43918656e-09 7.472134065e-09 5.110468504e-09 5.930744286e-09 6.790615779e-09 7.883904803e-09 6.535914342e-09 7.216264055e-09 9.590546177e-09 7.528562444e-09 6.38737625e-09 8.054347482e-09 7.069274356e-09 7.705442497e-09 6.198964082e-09 5.381680279e-09 6.71798154e-09 5.71992025e-09 7.810719573e-09 7.065192797e-09 5.234727534e-09 8.307886595e-09 7.150324464e-09 6.621659563e-09 9.071983605e-09 7.999972744e-09 4.700217948e-09 5.676318242e-09 8.054540915e-09 6.089832258e-09 8.569336318e-09 8.609581619e-09 8.777743241e-09 6.250539749e-09 8.765849638e-09 8.025408887e-09 6.679544182e-09 5.765862346e-09 6.101866122e-09 6.105437025e-09 6.576740205e-09 7.748670669e-09 5.656079102e-09 6.307508178e-09 7.941945723e-09 4.078120279e-09 6.697719146e-09 4.758653737e-09 6.981674619e-09 6.671816721e-09 6.844280318e-09 8.490275071e-09 6.263602905e-09 8.026292033e-09 7.519306471e-09 4.876148478e-09 1.078070628e-08 5.186264403e-09 5.202102169e-09 5.537866521e-09 6.827161946e-09 3.297893985e-09 4.484718503e-09 7.932773824e-09 4.380311686e-09 3.785676437e-09 6.458721269e-09 4.30519535e-09 5.333692243e-09 3.911011418e-09 4.56701446e-09 3.323795074e-09 2.27533521e-09 2.889634565e-09 2.161301621e-09 4.011502273e-09 2.45839515e-09 2.659135133e-09 4.274537392e-09 7.233014537e-10 1.908800814e-09 2.71236247e-09 1.72795322e-09 1.93979391e-09 1.711023047e-09 1.300557088e-09 2.427301173e-09 1.00506221e-09 2.27384365e-09 1.135524425e-09 9.543680473e-10 5.593130075e-11 3.127609358e-10 2.067366535e-10 3.068786704e-10 1.256309812e-10 1.103663071e-12 1.915338241e-11 2.00831131e-10 1.590925485e-16 1.440726437e-10 6.654015471e-13 3.790941661e-15 1.534223769e-15 4.077028056e-14 1.433232524e-16 3.11598178e-18 4.104128782e-17 3.579162888e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.210575479e-18 2.743143427e-24 4.715953733e-19 5.84315045e-16 1.575178874e-16 5.926759047e-14 1.809482853e-12 4.704815993e-15 5.22353149e-13 2.084447019e-10 3.260642139e-11 1.950306728e-10 8.075629672e-12 1.397275683e-10 2.472834426e-10 1.395228208e-10 6.401771546e-10 5.575994583e-10 1.687885795e-13 1.264842821e-09 3.161484508e-10 1.1339559e-09 2.022522703e-09 6.719886566e-10 1.350714962e-09 1.941526026e-09 3.353005166e-09 1.265563241e-09 7.125745174e-10 2.472047148e-09 2.398343887e-09 2.862444213e-09 1.153289101e-09 3.279897536e-09 2.133771274e-09 2.272307365e-09 3.153035467e-09 3.048890523e-09 4.424163031e-09 2.662047295e-09 3.459520409e-09 3.24092886e-09 5.558217088e-09 5.977771922e-09 4.638617859e-09 4.857670368e-09 5.637269133e-09 4.371421185e-09 5.457314759e-09 4.53962533e-09 5.273013333e-09 5.19125384e-09 3.84477226e-09 2.782798228e-09 4.93390177e-09 4.814960515e-09 4.655037673e-09 4.825474751e-09 5.037312498e-09 4.453033653e-09 5.428141854e-09 3.559083002e-09 6.110203549e-09 5.592184682e-09 5.263980486e-09 4.913823923e-09 4.586826175e-09 7.43135376e-09 3.39976087e-09 4.943586782e-09 6.061444652e-09 6.316239928e-09 4.256169409e-09 5.662539974e-09 4.512993388e-09 5.805586154e-09 6.252464807e-09 5.994914518e-09 5.172213456e-09 7.688084255e-09 6.196542625e-09 7.29706782e-09 5.537892447e-09 6.540369966e-09 3.816170212e-09 5.494737576e-09 7.454962404e-09 4.989156307e-09 5.510706276e-09 5.114177037e-09 8.671046938e-09 5.234149406e-09 6.88858663e-09 3.748405734e-09 7.399877939e-09 4.395111691e-09 2.728844519e-09 5.302610876e-09 6.041143167e-09 6.540867404e-09 8.056368647e-09 4.670548571e-09 7.549297705e-09 8.270975379e-09 6.27738687e-09 6.154430536e-09 5.859208283e-09 5.766689601e-09 6.950483876e-09 7.262100321e-09 8.492955389e-09 5.072215616e-09 3.342715411e-09 5.531414688e-09 5.463827304e-09 4.18969218e-09 5.519417777e-09 4.374697815e-09 3.981904208e-09 3.48281504e-09 3.145096122e-09 4.611808854e-09 4.277356517e-09 5.278999538e-09 4.358637496e-09 4.3052458e-09 4.677057304e-09 3.545461064e-09 3.191976116e-09 3.733012996e-09 2.605372475e-09 6.159081157e-09 3.326083038e-09 2.232955079e-09 2.268597643e-09 1.969834593e-09 2.707459169e-09 2.731819855e-09 3.169178927e-09 2.537186682e-09 2.475221579e-09 2.407737807e-09 3.033539521e-09 1.905366434e-09 2.669038682e-09 1.627504843e-09 1.874566952e-09 1.864826772e-09 9.493533415e-10 8.530372551e-10 1.447880293e-09 5.180380974e-10 8.98215912e-10 6.605815862e-10 1.775755135e-10 2.424502409e-10 3.056770911e-10 1.444177176e-10 5.117585564e-12 9.174205856e-11 4.485766071e-14 7.161285124e-11 1.924829566e-13 1.150955607e-18 2.479873834e-14 2.396657104e-15 7.621193179e-19 1.948709762e-16 4.682070191e-19 1.111728861e-21 7.350934022e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.821450158e-20 1.26007754e-26 0 4.34640522e-19 2.464943803e-17 1.618826011e-24 6.834805731e-18 6.592095345e-18 6.375422458e-15 1.152889231e-18 9.862829486e-12 2.425766413e-13 2.254670482e-11 1.805361553e-13 1.013382363e-10 3.296139259e-10 2.564424929e-10 5.112720795e-10 3.876355487e-10 3.349423803e-10 3.007074049e-10 1.957687271e-10 3.641801699e-10 1.211375793e-09 8.792214129e-10 1.341155384e-09 1.222670031e-09 2.296885751e-09 7.527814313e-10 6.261305891e-10 1.512576037e-09 2.071123128e-09 3.104840723e-09 1.86146158e-09 2.805868262e-09 1.79417184e-09 2.188797443e-09 2.208886586e-09 2.237674688e-09 2.362007309e-09 2.027091011e-09 1.112040182e-09 3.970931837e-09 4.219297094e-09 4.543664349e-09 2.371643073e-09 1.837322304e-09 2.752406281e-09 3.323484024e-09 3.357608711e-09 3.989782712e-09 4.515094716e-09 4.572507309e-09 3.403162688e-09 1.767418857e-09 5.647652745e-09 1.981128536e-09 3.798416937e-09 4.788204545e-09 6.186066807e-09 4.673517782e-09 4.622780229e-09 3.973679873e-09 3.923198997e-09 4.123228982e-09 3.665952545e-09 4.137727705e-09 5.109661825e-09 5.589770631e-09 4.553854699e-09 5.752071096e-09 2.384955364e-09 4.1184186e-09 5.721897872e-09 3.984658416e-09 5.295527377e-09 5.010361183e-09 3.117241558e-09 5.338636215e-09 5.287047878e-09 5.418183368e-09 3.946612408e-09 4.298395914e-09 3.098225137e-09 5.463229035e-09 4.959020913e-09 5.538324442e-09 4.582410336e-09 4.755416494e-09 3.465495483e-09 3.692731707e-09 4.084437827e-09 5.383102584e-09 3.579236881e-09 2.434297652e-09 3.847115278e-09 5.475181438e-09 3.743047682e-09 6.927571131e-09 5.49834174e-09 5.422253681e-09 3.894810034e-09 4.432627244e-09 4.527281878e-09 3.554453518e-09 4.739588158e-09 3.345679258e-09 3.584755481e-09 5.074242029e-09 4.333040817e-09 5.039047169e-09 4.084868285e-09 4.066205517e-09 3.713700924e-09 5.278180929e-09 3.467628921e-09 5.802812297e-09 3.743139149e-09 4.553870655e-09 5.816127877e-09 4.702044407e-09 3.578160484e-09 2.383085332e-09 6.315696285e-09 4.935297437e-09 3.660180933e-09 3.661292031e-09 3.304292067e-09 2.210012653e-09 3.854576391e-09 2.601666634e-09 3.465418437e-09 3.499959312e-09 2.138825338e-09 4.346234828e-09 3.173380351e-09 1.866585519e-09 1.728490286e-09 8.031913625e-10 3.109649532e-09 2.962956833e-09 1.815928491e-09 1.44028004e-09 1.367420687e-09 9.926560219e-10 4.243377102e-10 7.341144037e-10 1.768801787e-10 2.032966187e-09 7.401257088e-10 1.370203004e-09 6.715193472e-10 8.293756204e-11 3.163167943e-10 7.321562333e-10 2.49092891e-10 5.103566055e-14 1.328195422e-10 1.251744018e-10 7.443383648e-13 6.301741953e-11 5.96201786e-13 1.413184452e-10 8.719716567e-14 3.390504595e-14 2.148107925e-12 1.953419538e-16 7.427013603e-16 1.361357847e-17 2.869203844e-23 0 0 4.001276306e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.996060554e-25 8.479902128e-24 1.748038052e-14 2.912386371e-15 2.499333823e-14 4.189871805e-12 1.373433026e-14 7.596327598e-14 2.03668614e-10 7.91366166e-11 2.215576022e-10 2.496398745e-15 4.042283383e-11 3.568386595e-10 8.819155588e-10 2.344864765e-10 2.378914518e-10 8.679304117e-10 5.542462215e-11 6.122249301e-10 3.928698782e-10 9.532794858e-10 8.210605359e-10 6.066904355e-10 7.627499953e-10 4.275496962e-10 1.321949981e-09 7.650426883e-10 1.42992876e-09 6.053825811e-10 1.298307366e-09 2.936437945e-09 1.780364778e-09 1.758472523e-09 2.01929225e-09 1.812631268e-09 1.805404653e-09 1.863507758e-09 2.838633351e-09 1.803231997e-09 2.247597754e-09 1.738918169e-09 2.344004887e-09 1.334742783e-09 2.831485818e-09 1.712004743e-09 2.517529355e-09 3.091708252e-09 4.584002852e-09 3.330628418e-09 2.964405598e-09 2.350894343e-09 1.883574477e-09 2.564737949e-09 2.044140176e-09 2.660842169e-09 2.303343662e-09 3.894197515e-09 2.495429749e-09 1.793620714e-09 3.043642077e-09 3.516970097e-09 3.113260141e-09 2.276184413e-09 3.682806835e-09 4.256716679e-09 2.863891437e-09 3.023047745e-09 1.898111434e-09 3.026045382e-09 4.70129113e-09 2.966376349e-09 3.509054451e-09 2.830754019e-09 2.385043662e-09 3.839208534e-09 2.344485912e-09 4.366610754e-09 2.034835956e-09 2.405744934e-09 3.441197082e-09 3.020498204e-09 3.026450261e-09 3.188099382e-09 3.931825985e-09 4.446220262e-09 2.028682166e-09 3.184572078e-09 3.666824204e-09 2.40939871e-09 3.792106585e-09 1.94402121e-09 4.205955549e-09 3.074080892e-09 3.254956627e-09 4.073782966e-09 1.958912151e-09 3.086693381e-09 5.818799752e-09 4.988640738e-09 2.784318096e-09 3.113571914e-09 3.709790279e-09 3.063667552e-09 1.957357214e-09 3.706286286e-09 3.246211881e-09 2.442205261e-09 3.060405487e-09 5.638247469e-09 4.766846153e-09 2.287547633e-09 3.324863175e-09 2.322896567e-09 3.458244831e-09 1.958354816e-09 1.676583153e-09 2.202782639e-09 2.357038072e-09 2.176048376e-09 1.90631972e-09 2.929244171e-09 2.64684178e-09 1.420984206e-09 2.937822498e-09 2.155458982e-09 1.14211876e-09 1.989557972e-09 8.452014797e-10 1.595983955e-09 1.159914461e-09 1.598396396e-09 1.594543919e-09 1.18914251e-09 1.36546361e-09 2.201449637e-09 1.421191069e-09 1.088783973e-09 8.33245201e-10 1.278045009e-09 8.942296749e-10 4.325290975e-10 7.293582024e-10 9.115086644e-10 1.078966183e-09 2.300226119e-09 5.466903106e-10 4.796542825e-10 9.781034521e-10 2.652292203e-10 1.696508535e-10 6.031133583e-10 4.580755129e-10 1.255582364e-10 1.799360857e-12 1.813370053e-13 1.678760481e-10 1.221921081e-13 4.602377045e-14 1.188941408e-13 1.673696406e-14 5.162466156e-15 1.400789106e-15 4.465857781e-18 2.441559306e-17 1.923783041e-17 5.100435695e-21 1.405887406e-25 3.587669295e-22 0 0 0 0 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.171323206e-21 0 2.977075953e-17 4.124534787e-20 8.878804543e-17 1.059633653e-22 5.057593923e-14 3.173934159e-13 7.431090725e-18 1.389366121e-11 1.745696633e-15 6.527890268e-14 1.105065203e-13 1.532177853e-10 1.208509354e-13 1.184651973e-11 3.054427227e-10 1.688797604e-10 7.346124517e-11 5.191793975e-10 5.290627713e-10 7.484606653e-10 5.340634313e-10 9.009768196e-10 1.193490252e-09 7.338852194e-10 3.005522005e-10 3.893444427e-10 4.540343607e-10 4.760800548e-10 1.44333e-09 4.785745371e-10 3.681554826e-10 5.63102577e-10 6.32400553e-10 5.604420088e-10 1.126781308e-09 1.473137662e-09 4.997677904e-10 3.372007451e-10 1.590271143e-09 2.473534496e-09 4.68996733e-10 1.856761579e-09 1.175234687e-09 1.338873516e-09 1.517788679e-09 2.101564869e-09 1.196401564e-09 2.267866057e-09 2.449234749e-09 2.693747086e-09 1.57136569e-09 1.498236638e-09 1.96937705e-09 1.649819648e-09 1.764221881e-09 2.651396016e-09 2.326631017e-09 2.36385125e-09 1.732105386e-09 2.156214354e-09 2.49473725e-09 1.885148622e-09 2.375917843e-09 1.121839869e-09 2.387491725e-09 1.365065413e-09 2.313608534e-09 1.948326978e-09 1.081736968e-09 3.147499949e-09 2.42309986e-09 3.045623378e-09 1.49005364e-09 2.021393272e-09 1.54287347e-09 2.299832002e-09 1.471939506e-09 2.711916554e-09 3.918539373e-09 2.640575166e-09 2.080271568e-09 2.434731032e-09 2.588062452e-09 2.059889084e-09 2.357943218e-09 3.088545052e-09 1.837027681e-09 1.791094183e-09 2.67576842e-09 2.898332945e-09 2.090829788e-09 1.584380631e-09 2.822151457e-09 3.886638907e-09 3.568776499e-09 2.540291037e-09 1.746462081e-09 1.320234262e-09 2.970873685e-09 3.837101872e-09 1.575259615e-09 2.470583617e-09 1.362571072e-09 2.456543027e-09 1.265894452e-09 2.30165903e-09 3.442292474e-09 2.34210323e-09 1.415135724e-09 3.025455202e-09 1.53820848e-09 3.574799638e-09 2.733352983e-09 2.968995454e-09 1.416298709e-09 2.421947885e-09 2.164948998e-09 2.914184704e-09 1.296787442e-09 1.125010908e-09 1.168022567e-09 2.075492673e-09 7.367769969e-10 1.338026367e-09 9.408266398e-10 8.49479002e-10 1.158205631e-09 7.862323403e-10 1.271500053e-09 9.798106261e-10 9.889200296e-10 1.518501225e-09 4.042626781e-10 9.484235985e-10 1.288620742e-09 1.144182023e-09 9.944145241e-10 1.601258232e-09 7.334843912e-10 6.596210979e-10 6.66066155e-10 7.636416725e-10 6.519857055e-10 2.126629385e-10 4.380929647e-10 9.127719596e-10 3.384495922e-10 8.082018667e-11 3.061217842e-10 3.703751937e-11 3.167896311e-10 3.120843412e-10 4.004037825e-10 5.449201109e-12 1.42517814e-10 3.434767479e-11 8.799497936e-13 1.236205244e-13 9.509740025e-13 7.192200786e-11 3.514288015e-13 7.151441357e-13 4.961157207e-14 1.56805699e-17 1.506760412e-22 1.597150556e-17 1.933369084e-24 2.534747415e-20 1.434228917e-18 5.285874886e-23 0 0 0 0 0 0 0 0 0 1.076021668e-10 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.034193158e-24 0 1.142047391e-17 1.184198808e-19 8.195702134e-20 8.08844736e-15 2.408443247e-16 5.503333791e-15 7.681943835e-18 6.16082568e-14 2.533378992e-14 1.541877105e-16 1.003034107e-11 1.280151731e-12 1.442942279e-12 2.999609079e-10 7.016738247e-11 1.47370682e-10 9.239571521e-13 1.692585037e-10 1.846063879e-10 4.217129868e-10 5.733650819e-10 1.925063587e-10 2.547390384e-11 6.174101154e-10 3.517351688e-10 1.450799667e-10 2.41696906e-10 2.160092532e-10 6.763281986e-10 3.239257551e-10 3.98822378e-10 9.148939687e-10 1.235092179e-10 3.642697141e-10 5.340352177e-10 2.068555816e-11 1.847513503e-10 8.222460419e-10 8.976926786e-10 3.858868754e-10 3.056344213e-10 1.030998799e-09 7.115421413e-10 3.089834862e-10 6.315173725e-10 1.301244225e-09 1.658226362e-10 1.837689721e-09 5.749784099e-10 1.740281636e-09 1.036393843e-09 3.129268454e-10 8.548855399e-10 7.495869534e-10 5.566802763e-10 1.198763851e-09 8.149949869e-10 4.059952452e-10 1.2407372e-09 1.038919605e-09 7.996805156e-10 6.709157273e-10 6.996182281e-10 7.531485032e-10 4.162413297e-10 1.464480248e-09 6.865703791e-10 3.940237601e-10 7.319631533e-10 1.513517259e-09 1.00316287e-09 4.276033471e-10 3.757924754e-10 1.743731262e-09 6.869014332e-10 8.42715851e-10 1.049673694e-09 5.283252702e-10 1.571424142e-09 9.671204235e-10 5.47155557e-10 9.615594022e-10 1.327130336e-09 3.761811527e-10 5.758751275e-10 7.273879477e-10 4.781848836e-10 1.075806424e-09 1.288838745e-09 4.583874444e-10 8.42285518e-10 5.167694419e-10 8.283061174e-10 1.114892111e-09 1.302361087e-09 6.751204429e-10 7.80026221e-10 6.031587023e-10 7.39289835e-10 1.483895212e-09 1.06980982e-09 1.083107887e-09 8.050095381e-10 6.127016258e-10 6.183729715e-10 1.329720472e-09 1.126941975e-09 5.194656009e-10 1.349451986e-09 6.642409858e-10 8.274023628e-10 5.825587277e-10 1.326848842e-09 1.909205409e-10 8.712404362e-10 8.540618946e-10 4.661141024e-10 6.81036551e-10 8.697101006e-10 6.509672325e-10 6.90620123e-10 7.058905705e-10 1.255914004e-09 5.653057713e-10 5.239627263e-10 4.807853354e-10 6.136449326e-10 1.383035092e-09 1.099460572e-09 2.084460998e-10 3.197948574e-10 6.596591753e-10 1.354479286e-09 4.781723251e-11 2.392703939e-10 2.321672786e-10 5.790926591e-10 5.657995953e-10 3.355232913e-10 2.921976449e-10 2.037080388e-11 2.709829336e-10 2.461586394e-10 3.842530683e-12 3.589743358e-13 3.025442574e-10 3.111563222e-10 6.680305743e-10 1.655276552e-12 4.951126649e-11 2.051007529e-11 3.5266674e-12 1.445255694e-12 1.358419816e-11 7.733653887e-14 1.447481366e-11 1.14389921e-14 4.159535212e-13 6.568363487e-14 1.35859471e-16 2.87648333e-17 4.485172649e-20 4.186418404e-19 5.273125615e-14 1.782768182e-18 7.080037442e-20 1.592241806e-21 1.696505725e-19 5.315031999e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.437781786e-22 1.518779674e-21 7.945414297e-22 0 6.205636322e-17 1.754071246e-17 7.101667447e-18 3.678185118e-14 2.033322353e-16 2.185443725e-16 1.002756627e-13 8.617797786e-16 3.278058842e-16 1.402339555e-10 1.352770514e-15 1.066748107e-10 1.392652068e-12 1.387375087e-14 4.560949916e-12 2.953593208e-12 2.023153915e-10 1.097923543e-11 2.168050791e-12 5.383566853e-12 2.038626022e-10 2.444427121e-11 4.361372735e-12 7.432020813e-11 1.619538355e-11 1.924875837e-10 1.240288105e-10 4.417446639e-11 1.429949381e-11 3.508860683e-11 1.443646131e-10 1.516065013e-10 1.823595159e-10 1.699285757e-10 7.995012607e-11 1.542262957e-10 1.293860636e-10 1.25783814e-12 3.613242072e-11 2.410705341e-10 2.130720521e-10 3.05541311e-11 6.807233269e-11 1.422262811e-10 2.961831786e-10 4.897017888e-10 1.927740833e-10 4.814191663e-10 3.57563573e-10 2.608717009e-10 4.127701451e-10 1.182655424e-10 6.561604687e-11 1.813269282e-10 4.054468687e-10 2.245512839e-10 3.926286e-10 7.991787513e-11 1.720825101e-10 5.176142411e-10 3.095827307e-10 5.737571985e-11 6.276217073e-11 2.501775425e-10 9.644681539e-11 4.801408698e-10 3.883381777e-10 4.179540016e-11 1.440043578e-10 1.770941488e-11 4.42116924e-10 3.166054455e-10 2.685446285e-10 4.210014045e-10 1.357216725e-10 1.197735741e-10 3.348072301e-10 1.678826297e-10 1.452448753e-10 4.515743836e-10 6.986414924e-10 2.190981819e-10 2.115936349e-10 3.226640499e-10 2.006581515e-10 3.39774394e-10 1.476556059e-10 8.890348561e-11 2.346423778e-10 5.181564186e-10 4.119937259e-10 2.365505972e-10 1.973022168e-10 2.893690504e-11 5.890340174e-11 3.939032032e-10 3.034880448e-10 3.261288862e-10 4.768124765e-11 2.244682722e-10 2.153887133e-10 2.549738091e-10 1.785493914e-10 1.659625491e-10 4.286328774e-10 2.900619539e-10 6.393077189e-10 5.888230604e-11 3.238091972e-11 4.155014475e-10 2.829086062e-10 1.695048586e-10 2.042136897e-10 1.001207158e-10 3.464727316e-10 6.916559906e-11 7.903026409e-11 2.788954999e-10 4.095349774e-12 1.49720192e-10 7.099303883e-11 4.903413926e-10 2.0974067e-10 3.59747008e-10 2.707080061e-10 4.29556481e-11 3.520654456e-10 2.559032861e-11 1.131413929e-10 2.566031522e-11 2.65922918e-10 2.275446078e-10 1.280450143e-10 1.323250401e-10 1.769243326e-10 9.051253789e-11 3.949462958e-12 2.201982728e-10 7.691619567e-11 1.824169662e-10 5.37142317e-12 3.617376824e-10 1.186869951e-10 7.815152898e-11 1.739405892e-12 1.348265315e-10 5.165181979e-13 1.907018694e-11 1.750781975e-10 4.67540043e-11 2.098554799e-11 2.203487731e-14 2.10144476e-12 7.701219134e-12 8.549808452e-12 1.009170845e-11 1.483942617e-15 1.491580896e-15 5.419048783e-17 9.604557799e-15 3.611830049e-18 1.019529686e-15 4.110878369e-16 8.475359968e-21 2.696603674e-20 5.521137854e-23 0 0 0 0 0 0 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.31676135e-20 0 0 5.952247339e-19 9.203474439e-24 9.659342781e-18 1.793498414e-18 4.08540719e-14 5.723630949e-18 2.640109624e-17 7.991576221e-13 1.628625642e-13 1.663460408e-19 3.359605136e-15 4.580552584e-14 5.177957876e-15 2.932163822e-12 1.086890404e-13 1.665520705e-13 4.211612467e-16 2.139258788e-11 8.587059808e-12 5.910896405e-12 1.989598001e-11 3.183570584e-11 6.674830858e-12 5.15132676e-11 7.738471151e-11 1.102345245e-10 1.897405636e-12 7.698011594e-12 1.33629417e-13 9.698476015e-11 2.528325965e-11 1.400979777e-11 3.05831084e-11 1.743564068e-11 7.603459135e-11 7.593185078e-11 9.153230098e-14 1.699138988e-11 1.645342028e-10 1.067997939e-10 3.743673929e-11 7.458731369e-11 1.665584094e-11 1.669909383e-10 2.711128814e-11 1.277907915e-11 1.624055575e-11 2.013046488e-11 1.113899954e-10 2.63602756e-11 3.438178149e-11 6.207672205e-11 4.993437769e-11 2.339114833e-10 1.040602616e-10 4.712649053e-11 1.343071441e-10 8.021966077e-11 6.904117924e-11 5.332292848e-11 1.364652592e-10 8.057418076e-11 8.565208673e-12 9.114668031e-11 3.349192224e-11 3.935236414e-11 2.4681007e-11 6.573643051e-11 1.39056841e-10 1.379722658e-11 4.007607111e-11 2.525612503e-11 2.554021044e-11 2.913316451e-11 7.342387446e-11 9.039154736e-11 5.951400623e-12 1.101847663e-10 1.009179466e-10 7.434285208e-11 7.76013972e-11 7.084639409e-11 9.040798789e-11 5.380365957e-11 2.702981654e-10 4.906099602e-11 5.677279648e-12 2.758688706e-11 1.479867496e-11 2.172810987e-11 2.119750758e-11 1.630846413e-10 2.439234704e-10 1.235003184e-10 1.331482416e-11 3.011004041e-11 1.154857326e-10 4.976663417e-11 2.162382133e-11 8.96290647e-11 2.774595222e-11 5.167989663e-11 3.803902815e-11 1.081039985e-10 6.374494581e-11 7.401523052e-11 1.15371534e-10 9.663120681e-11 2.267987379e-11 5.431807367e-12 5.274766128e-11 9.809271339e-11 1.160288057e-10 2.523948361e-11 2.317665278e-11 2.514774833e-11 1.799483537e-10 3.074562701e-11 1.423218397e-11 2.696752159e-11 2.310439223e-11 1.393520957e-10 1.708294384e-11 2.094148309e-11 5.950937063e-13 5.39072533e-11 1.370048722e-11 9.860477582e-11 8.914344927e-13 1.245449196e-10 3.672009359e-12 3.196377961e-12 2.523146697e-11 8.953751066e-12 1.664766799e-12 2.440436177e-12 2.133704718e-12 2.369402715e-12 8.168478579e-11 3.779846459e-11 1.066632446e-13 2.746936472e-12 1.01118709e-11 2.59316794e-13 1.55550937e-12 1.994612917e-11 1.478730099e-11 4.361548762e-11 5.655016374e-14 1.074210512e-12 4.319618938e-11 1.91922092e-15 9.763576366e-11 6.837159926e-14 1.018521086e-14 6.154920697e-14 1.960827994e-12 7.485883438e-15 1.418366642e-18 1.137160793e-18 3.289739525e-17 2.352178767e-22 1.113278243e-15 0 1.493306273e-19 9.763840627e-24 4.080886201e-20 6.109109471e-24 0 0 0 0 0 0 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.01161195e-27 7.38394355e-22 5.307924029e-21 3.627880132e-20 7.902195499e-22 2.245715358e-20 2.971725327e-17 2.986173122e-22 1.420099418e-17 4.94005764e-21 1.860667027e-14 1.418113383e-13 4.32213581e-16 1.697354599e-13 4.798848959e-13 6.33940864e-16 4.502720014e-14 4.6294088e-14 6.915839497e-14 1.499965867e-13 3.053281589e-13 6.712873345e-13 3.47072814e-14 3.07091824e-12 8.155161719e-12 4.316658838e-13 1.46914018e-12 2.477647705e-13 3.072165233e-13 2.45516927e-11 9.660317048e-13 6.346176472e-12 3.792204845e-12 5.13162742e-12 1.341952804e-11 3.193605198e-12 3.563009644e-11 5.996474906e-12 3.821996018e-11 1.415127599e-11 1.86700629e-11 2.603202521e-11 1.437044611e-12 2.607738957e-11 2.460480315e-13 8.321809405e-12 2.409764145e-12 7.956514594e-14 1.188606038e-11 2.720308063e-12 3.104823805e-12 1.354374821e-11 1.062150847e-11 5.944749159e-11 3.106097751e-12 1.921350003e-12 3.360777091e-11 2.708675216e-11 9.924777841e-12 2.89412983e-12 6.062945516e-12 1.186545896e-11 2.085821411e-12 1.420664725e-12 1.344170986e-12 3.873083597e-12 2.111061516e-11 1.433396854e-12 3.180586405e-12 2.254219367e-12 4.304806245e-11 5.584278128e-12 1.535941249e-11 1.715633647e-11 6.587506933e-12 3.7023729e-11 7.042816891e-12 2.779719075e-11 3.526680192e-12 2.03439341e-12 2.25194939e-11 1.943115139e-12 1.735887054e-11 2.004500046e-11 5.432842645e-12 5.787912631e-12 1.646698047e-11 3.645846113e-12 1.291740267e-11 1.229758257e-11 4.609163068e-12 9.352590732e-12 1.606940741e-11 1.354031434e-11 5.908821575e-11 7.467523175e-12 6.842819982e-12 1.227960069e-11 7.830155673e-12 2.335142938e-11 1.013955223e-11 7.608477277e-12 5.423216505e-12 1.608475853e-11 2.706108582e-12 3.85421742e-11 3.985780887e-11 2.404762441e-11 4.261558497e-12 1.094476847e-11 5.89036982e-11 6.235521391e-11 1.467997929e-11 9.287537988e-12 9.989658624e-12 2.297737011e-11 5.941440624e-12 6.262462504e-12 5.678694227e-12 1.53655497e-11 1.235945485e-12 2.239059648e-11 2.147953799e-11 1.410846133e-11 4.242451618e-13 2.412148839e-11 2.52588897e-12 3.351621635e-12 2.078065441e-11 4.45018507e-13 3.27881629e-12 9.355014991e-13 2.088397075e-13 1.387560268e-11 1.779708538e-12 9.47452847e-12 9.553283301e-12 2.309358542e-12 1.671224009e-12 2.388522076e-13 1.298009581e-12 3.794635905e-13 2.523647643e-14 1.403118326e-11 1.541211314e-11 9.106093145e-12 1.328497381e-13 1.458340147e-13 5.714100248e-14 1.134686169e-16 1.42205057e-13 7.720313902e-15 1.707149742e-12 8.991367555e-14 3.216772008e-13 1.9849852e-15 3.945380689e-18 4.267391288e-17 4.554380664e-15 3.252255483e-17 8.740159513e-19 4.457599018e-16 2.048100084e-18 5.240496094e-20 7.611059574e-17 2.241122107e-19 5.327323852e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.075658749e-25 2.830700876e-22 3.020029418e-25 6.469837012e-20 0 9.344695108e-26 3.95360878e-19 1.973367395e-19 1.468453411e-18 3.278103453e-16 3.639886856e-16 2.707012713e-15 2.119291837e-14 9.201718149e-18 8.130407992e-16 1.602411392e-14 3.949431178e-12 1.575996332e-12 4.433996816e-14 4.247271291e-14 3.35760899e-15 6.857132666e-17 2.251836488e-12 3.240020086e-13 1.321153025e-14 5.763836304e-12 1.212380816e-14 1.563113973e-15 3.310569633e-14 3.212774434e-14 1.084490302e-13 5.125421167e-14 9.696574652e-13 7.702636287e-13 1.285647714e-12 1.962158354e-12 7.683003601e-13 1.308886762e-14 1.084157707e-12 2.157180219e-12 7.008590619e-13 6.919801994e-13 1.410465338e-12 5.682124739e-14 4.005163733e-12 1.588733511e-12 3.881622334e-13 2.462164215e-12 3.147989571e-13 8.58523415e-13 6.589145916e-13 8.839310698e-13 3.182941944e-12 6.168606718e-13 1.254940198e-11 7.053423214e-13 1.145622521e-13 3.822858462e-13 2.790563515e-13 1.004837775e-11 9.359824387e-12 4.118269772e-14 1.782811099e-12 4.036555285e-12 3.594266405e-12 1.850229589e-12 3.664823573e-13 1.139828912e-12 1.219407124e-12 4.233713909e-13 3.563291698e-12 2.17065074e-12 5.574739205e-13 2.854895771e-12 3.943129878e-12 8.258569711e-13 1.295789155e-12 2.218703159e-12 4.12626925e-14 4.528611433e-12 1.156860252e-13 8.726402445e-14 1.50157048e-12 1.312287366e-13 3.842732551e-12 2.610180821e-13 5.883642625e-12 5.39616732e-13 5.727059653e-12 3.36385216e-12 2.221041164e-12 6.451327298e-12 4.052563569e-12 1.175851167e-13 3.330493741e-13 1.327769529e-12 2.410108953e-12 1.48813566e-12 5.507676202e-12 5.806859035e-13 4.58805492e-13 1.265112969e-12 9.200955036e-14 5.757955871e-12 1.267230181e-12 4.252974358e-12 1.38741369e-12 1.415485762e-12 1.134669554e-13 3.903454618e-12 1.804578833e-12 3.078604196e-14 1.812533166e-12 2.598005801e-13 3.235078125e-12 9.480408966e-13 1.574330638e-12 1.568040323e-12 7.409605807e-13 6.635195268e-13 6.084389593e-13 2.103431712e-14 8.159138789e-12 1.891442035e-13 3.929937225e-12 4.220639689e-12 1.825295265e-12 1.439893013e-13 4.127946206e-12 1.804385008e-12 2.918637892e-12 1.905059447e-13 7.406617012e-13 3.935527783e-14 3.59985445e-13 8.701508021e-14 2.36453186e-13 2.363108419e-12 2.571859892e-15 5.891480665e-13 6.544620194e-12 3.261905651e-14 2.061636515e-13 6.748067648e-15 2.811778554e-13 2.407092532e-14 2.753884197e-14 4.070750553e-16 1.768634256e-14 1.985729242e-15 2.33202981e-13 1.567391338e-14 5.187942953e-13 1.038430178e-10 3.974791367e-16 1.679900838e-17 1.789347749e-17 1.495542671e-17 1.618077372e-20 2.57836925e-18 9.456871527e-19 1.12603775e-16 1.086214552e-15 6.62875655e-22 0 8.160357482e-23 3.87560673e-20 9.872123026e-22 0 4.117238906e-21 0 0 0 0 0 0 0 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.571512541e-23 4.666070257e-23 1.363468467e-27 1.58615029e-21 0 1.375782762e-19 3.165160127e-23 6.434536067e-17 4.786391264e-14 3.211715433e-14 2.205475631e-17 1.442283347e-16 1.101708569e-17 1.562097232e-16 5.825052567e-14 3.168717146e-15 1.605969121e-13 1.911474861e-14 5.56984134e-14 1.706732301e-18 8.428211079e-15 5.542168527e-15 2.665848655e-15 4.190315637e-13 1.453890803e-13 3.511370502e-15 2.365889478e-15 3.833293287e-13 2.576079925e-16 2.313825479e-15 1.870545038e-13 2.546247293e-13 8.802922765e-14 1.204557832e-13 7.180945892e-13 2.282445547e-15 1.472357179e-13 3.245040604e-13 3.808218676e-13 4.353756264e-15 1.349369339e-14 1.013177576e-13 8.977883528e-14 9.575310091e-14 5.629404497e-14 1.807889821e-13 3.416084697e-13 4.61176593e-15 7.198804885e-14 1.317573595e-13 2.793381828e-13 1.80516594e-13 1.214595581e-13 9.922423834e-14 2.39913696e-13 1.150421764e-13 4.806965015e-14 1.167335729e-12 1.964313073e-13 4.128415189e-13 1.30797966e-14 9.190140696e-14 6.789791231e-14 3.214036894e-13 6.429022528e-13 3.700527703e-14 3.877891395e-13 5.959567281e-14 2.004153628e-14 1.87506529e-14 4.338795842e-14 6.234841197e-14 2.050113972e-13 5.371658413e-13 1.095808948e-13 8.112312211e-14 9.482868861e-14 6.38185522e-13 1.18990045e-12 4.557360842e-13 2.88845303e-14 1.135275419e-13 2.423729093e-13 3.886569312e-13 4.585212431e-14 3.006521955e-13 5.288046813e-14 1.278534588e-13 5.668942809e-14 3.994137008e-13 1.934028452e-13 3.767058807e-14 1.340597085e-13 1.474220905e-13 6.933906606e-14 9.745616484e-14 8.935904658e-14 3.840202152e-13 8.31119738e-14 3.877945488e-13 7.339327207e-14 5.664586306e-14 3.895962771e-14 2.569076861e-13 1.630868021e-14 1.359857064e-12 6.308884881e-14 1.352565942e-13 1.441359948e-13 5.428362257e-14 3.849545162e-14 2.934524679e-13 1.73791949e-14 5.236438252e-13 5.038606135e-15 1.849722183e-13 5.888958651e-13 7.861130716e-14 7.047813142e-16 2.812285387e-13 6.296003295e-14 1.365498569e-13 1.552087174e-12 1.962085867e-15 1.321713774e-13 8.889636493e-14 5.171141441e-14 1.912199453e-13 3.338988715e-14 2.16662879e-15 2.288532548e-13 8.296675269e-13 4.64753673e-14 6.258205035e-15 8.692341346e-14 1.543891433e-14 1.200066928e-13 9.739628818e-14 8.583899828e-13 8.633933892e-14 5.49241248e-15 3.066516336e-15 1.341696174e-14 5.868008293e-15 2.732552665e-14 9.17975388e-13 3.99892082e-14 1.791906429e-15 2.969017712e-13 8.387244917e-18 1.759578807e-16 4.958548481e-16 7.427353068e-16 2.0113831e-14 1.069937883e-16 9.898577607e-19 3.901505104e-15 2.494246092e-19 1.42571238e-18 2.774305979e-15 3.658948391e-18 2.338109761e-15 1.565924374e-23 3.052678269e-22 0 3.171256319e-19 1.110970629e-25 0 0 0 0 0 0 0 0 0 0 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.239688903e-23 3.438580368e-25 2.368551149e-25 3.88236781e-21 8.128126695e-26 8.062257695e-24 3.244326938e-19 9.684540085e-20 1.105238286e-14 6.747898483e-16 1.477295075e-25 1.955344619e-16 1.60212711e-16 3.759790925e-17 8.722944115e-15 1.097356729e-15 2.921848612e-15 4.830328483e-16 6.79125097e-16 6.609783244e-15 1.808224559e-14 3.921685094e-15 7.682678756e-15 2.432161817e-16 4.281785287e-15 1.796809329e-15 1.559257671e-15 7.205597073e-14 4.818076578e-14 8.469808645e-15 3.161079583e-16 8.622752726e-15 2.172279669e-15 1.898533441e-14 5.797798228e-17 2.639290563e-15 7.807751362e-14 4.971140189e-15 7.321177104e-15 2.551606743e-13 7.236271778e-15 3.84891298e-14 5.237385182e-14 1.373903126e-14 2.065441321e-15 6.500407104e-14 1.025564514e-16 9.100864386e-15 6.949122528e-15 8.373075406e-14 5.337416943e-15 2.455032099e-15 2.429094331e-14 2.901878721e-14 1.530388203e-14 3.211385114e-14 4.63480065e-15 3.969167866e-13 3.261938474e-14 1.187497979e-14 9.021418347e-15 1.445362054e-14 7.116592299e-15 2.100329311e-14 3.711803715e-14 2.725383872e-14 4.016086026e-14 2.572044825e-13 2.037518723e-14 4.942442481e-14 2.182628302e-14 2.967314272e-15 3.610824324e-14 3.578865568e-14 1.110483722e-14 1.29743618e-15 8.251214024e-14 1.665065292e-15 1.15007378e-13 8.109983858e-15 1.223917037e-13 4.601759025e-14 6.582781881e-14 4.838824562e-14 6.206398713e-14 3.908761578e-14 8.545508819e-14 7.741898734e-15 1.74588036e-14 1.593261335e-15 5.906840065e-14 1.875097185e-14 1.139945722e-14 7.709467853e-15 2.284886339e-14 9.685605373e-14 2.720176682e-14 6.513512528e-14 6.920423387e-14 4.60196859e-14 1.275988239e-14 1.773445489e-15 2.116867124e-14 2.648361149e-15 2.845541333e-14 6.399608525e-14 1.951514007e-14 3.279832603e-14 6.580618705e-14 1.529248367e-13 3.337872571e-14 3.313219436e-15 1.888239775e-14 2.57747759e-14 4.832076361e-14 7.475124598e-15 1.757950758e-14 9.667650225e-15 3.906606291e-15 2.594604106e-14 4.090693506e-15 2.860400004e-14 1.59863618e-15 7.931862288e-14 3.798605444e-14 1.217434386e-16 7.042674065e-15 1.485580897e-13 6.840813794e-17 6.144362905e-14 5.990538577e-15 6.119287523e-15 4.345334334e-15 1.248871028e-15 6.611035921e-15 2.519286033e-16 3.494536585e-15 2.624623387e-14 1.617496307e-15 6.427545414e-16 5.594493764e-16 2.947478323e-15 2.900194608e-14 1.200110165e-17 4.981387954e-16 4.996689742e-15 6.764511859e-15 1.060176881e-15 2.336078261e-15 2.910016352e-15 2.153699571e-16 1.653662348e-15 1.639955967e-17 3.975744961e-17 3.858466936e-20 4.248163092e-15 1.966599402e-18 4.048881067e-18 1.919215155e-20 6.525757987e-25 1.563934037e-24 3.149662081e-22 1.897208141e-21 7.554272878e-23 7.331569951e-21 2.028827207e-21 2.829382125e-26 2.617462817e-23 0 0 0 0 0 0 0 0 0 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.820767587e-26 0 8.02370891e-21 0 1.295535542e-21 2.628609061e-17 2.466858192e-20 8.938510027e-21 1.216319005e-19 1.858787812e-19 3.159069071e-17 1.3328975e-20 1.136446116e-17 1.349887447e-17 3.397409447e-17 4.452845121e-18 1.618757378e-16 1.838373276e-16 9.014703195e-17 5.041391648e-16 8.900604868e-18 7.577109485e-16 7.022313299e-16 2.609187004e-14 9.895244182e-17 8.633123298e-17 6.840686597e-16 2.721954323e-15 3.35822763e-17 2.780051261e-16 6.86386104e-16 7.391473224e-16 1.511926415e-15 1.715229451e-14 8.337912948e-16 7.406344898e-15 4.311107559e-16 1.241790956e-15 1.201315524e-15 3.994061407e-17 2.518866677e-15 1.62250101e-14 7.428355035e-16 3.671583452e-14 1.218575584e-15 2.434065248e-15 1.588903853e-15 6.648549164e-15 2.228790634e-15 1.537208024e-14 1.419824277e-15 3.066032597e-15 4.006304387e-15 3.085529368e-15 8.087080152e-16 2.357530954e-15 2.684728215e-15 3.19741663e-16 7.574893916e-16 1.112573823e-15 3.603555679e-15 2.360591691e-15 7.792659241e-16 1.454409613e-14 1.450937368e-15 3.327493627e-15 5.507533769e-16 2.850718875e-15 4.3327187e-15 6.311109434e-15 3.005045694e-15 4.265785685e-15 3.325623111e-15 1.174439218e-15 1.712683734e-15 5.08413711e-15 1.372036326e-15 1.741481753e-15 3.975037351e-15 2.624962491e-14 4.464820869e-15 4.854815045e-15 1.755436153e-16 3.375607617e-15 4.472445076e-16 2.952904029e-15 5.207392793e-15 3.387410675e-15 1.982251643e-16 6.787269471e-15 2.669952523e-14 2.57620513e-16 3.141637744e-14 3.674016549e-16 5.003174189e-15 5.527998939e-15 3.36432925e-15 8.854782159e-16 3.941271396e-15 9.930086544e-16 3.997835468e-15 3.013963115e-15 1.676785963e-15 2.01290072e-14 4.534205855e-15 3.295249151e-15 4.657478974e-15 7.918527243e-15 1.444121987e-15 1.301324236e-14 2.983268154e-15 3.160080592e-15 8.66972705e-16 8.778567905e-15 5.724274619e-15 3.362677899e-15 5.353989192e-16 1.706842289e-14 1.667792795e-15 1.517480504e-15 1.196294782e-15 3.66918411e-17 1.173059144e-15 1.803536373e-15 6.722258752e-16 2.634241252e-16 1.574652247e-16 5.124663258e-17 9.731799789e-16 8.016741108e-15 2.118847445e-15 5.9085115e-15 9.276796827e-16 1.337688268e-15 6.153293854e-16 1.809993581e-15 2.627699501e-16 2.941515273e-15 1.575642824e-14 2.184482029e-16 6.171453268e-19 1.194404404e-18 2.205404183e-15 9.668621633e-20 7.246636168e-16 8.549063275e-16 1.943190088e-16 3.431318505e-18 5.408299988e-16 1.168736808e-15 1.417646231e-17 1.924177069e-17 1.035039026e-21 2.053001525e-17 3.431783748e-22 2.52526398e-19 3.866972393e-19 7.512194456e-22 1.596164524e-17 1.774893575e-17 2.655443576e-20 5.713434089e-21 3.789520961e-22 2.881393867e-22 3.403249759e-20 0 2.722615711e-25 0 0 0 0 0 0 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.254309967e-24 0 0 0 2.747795724e-25 0 1.495566176e-23 0 0 5.755993556e-21 0 8.731767271e-23 5.034121708e-23 4.006437875e-20 4.858925543e-19 8.918948781e-19 1.823634133e-19 1.022009906e-15 4.075241989e-17 3.31309109e-16 6.265693925e-18 5.405679757e-17 4.763454721e-16 2.319270211e-17 3.223677669e-19 1.854041672e-15 7.358447516e-18 6.850269536e-17 2.572250395e-17 2.094274079e-17 1.487479955e-16 1.237901393e-15 1.912960221e-15 8.253843019e-16 6.471644745e-19 1.012761493e-17 2.598648189e-16 2.53896138e-17 1.325991018e-16 9.278333598e-16 8.835449724e-16 2.720977882e-16 4.815953082e-16 2.551426171e-18 3.031810413e-17 1.15573232e-17 8.108163286e-17 1.758148686e-16 2.078072745e-16 7.253943171e-16 8.472549721e-16 3.767293625e-15 3.692712277e-16 4.897578733e-16 8.600380848e-17 1.009975549e-15 1.976504686e-16 5.36854892e-16 2.283839576e-15 1.046215603e-16 1.05562375e-15 2.361454055e-16 9.967473036e-17 8.553956496e-18 2.57312201e-15 2.334978378e-15 7.342198493e-16 1.14785025e-15 3.153497674e-16 7.603869604e-16 2.050059886e-17 2.294312578e-15 4.629321418e-17 7.817541063e-16 5.019762014e-17 2.23757016e-16 1.458478261e-17 1.236196315e-16 2.701316403e-17 1.289600328e-15 1.684511007e-15 1.415566772e-15 1.29938374e-15 9.119252873e-16 8.361476224e-17 3.195275038e-17 6.146321483e-16 3.454340294e-16 7.964836714e-17 9.762039417e-16 6.059723085e-16 7.462485221e-16 9.74709447e-17 1.265027028e-15 6.277612168e-16 1.340399417e-16 3.350657116e-16 5.075120321e-17 2.616849957e-16 1.274020634e-15 2.344633043e-15 1.242668556e-15 5.356386436e-16 2.11875192e-15 7.819341112e-16 5.630852336e-25 8.010959037e-16 6.886219331e-16 9.2276108e-16 1.102726479e-16 4.38448296e-16 4.886658528e-16 4.93568594e-15 2.192027138e-15 4.140562855e-16 1.100817095e-17 2.974126582e-16 5.953720939e-18 7.680325401e-16 8.010364907e-17 9.881912841e-16 2.035030079e-16 2.844994947e-16 3.504273397e-16 1.994865211e-16 1.077439223e-15 1.119831845e-15 4.187279514e-17 1.071912142e-15 2.584923105e-17 1.591202311e-15 7.412952662e-16 1.710630953e-16 2.408603253e-16 2.173419399e-16 2.648547449e-16 1.34606117e-15 3.569421326e-17 1.700576658e-15 2.400862026e-17 5.6221611e-17 5.421747556e-18 9.17047853e-17 0 4.552528337e-17 1.509522793e-18 4.380798414e-17 2.981329165e-17 1.587638176e-17 3.807883051e-18 7.065248248e-22 8.253283697e-17 4.049961331e-19 5.29091007e-19 1.125713682e-16 1.755146268e-18 1.099190409e-22 1.666655011e-21 9.26897303e-27 3.522454579e-26 0 0 0 0 8.702033408e-25 0 4.376969316e-25 0 0 1.901158504e-26 0 0 0 0 0 0 0 0 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.770103758e-27 6.734022645e-25 0 0 0 4.043482272e-20 0 1.165021421e-25 0 0 4.9942793e-23 1.45245796e-24 6.004449725e-22 2.348063191e-22 7.74833e-16 7.480895062e-19 2.705504802e-17 0 2.030321934e-17 1.615348547e-17 1.001237165e-16 1.771670435e-18 6.433148694e-19 1.001169626e-18 4.748931063e-19 1.203978226e-18 8.90326755e-17 5.885126627e-19 6.801987038e-19 3.774231001e-18 3.334053934e-27 1.129514794e-16 2.612379558e-16 7.41878364e-18 1.547148894e-18 1.329421147e-17 1.58150666e-17 1.999901959e-16 1.55273648e-16 2.403375835e-16 4.430321004e-18 1.795622862e-16 1.127709633e-18 1.440242172e-17 7.17366508e-16 1.153338638e-17 5.166368813e-16 5.271461185e-18 2.715067368e-17 1.110764661e-18 1.177117948e-16 9.668304759e-18 1.498031648e-16 1.832225015e-18 2.785450012e-16 1.570006552e-17 1.152941605e-16 5.955570619e-17 4.42243095e-18 2.16240512e-17 3.699635798e-18 2.907294096e-16 2.256428106e-17 2.735592013e-16 6.962126305e-17 3.958736812e-17 7.951088688e-17 4.20251925e-16 7.207730006e-17 3.172384368e-18 1.908236918e-17 1.155104476e-23 1.061784587e-16 2.581592838e-17 3.510402748e-17 4.863773938e-16 5.634118631e-17 5.71290673e-17 9.481481197e-18 1.132345684e-16 8.591088233e-18 6.248025743e-17 5.373876767e-17 1.151966787e-16 1.906914945e-16 1.749423742e-16 1.512937565e-16 2.678430007e-17 3.303292685e-17 1.917679576e-17 5.813073313e-18 8.556418711e-17 5.816033365e-17 1.609307764e-16 4.939566259e-17 3.941637063e-17 1.849416137e-16 2.427068954e-17 3.904472572e-16 1.843673956e-16 2.863552281e-17 3.047490663e-17 2.440534366e-17 3.517548296e-16 6.256061386e-17 1.387323375e-17 7.725240873e-17 3.051758847e-17 2.57913909e-16 7.102712932e-19 2.053721625e-16 7.639963162e-17 5.599934652e-17 6.961816139e-17 1.641759651e-17 7.876688406e-17 1.049843515e-17 1.05733205e-16 1.652044841e-17 1.704647177e-16 3.080855356e-17 1.037526435e-17 1.552653174e-18 8.517352283e-17 1.63341687e-17 1.076290635e-17 2.134144052e-17 1.300324459e-16 1.512738796e-17 1.601711209e-17 2.578973033e-17 3.053340857e-17 2.449938134e-17 6.112372341e-22 1.044876935e-17 1.573128015e-17 1.142450264e-16 1.482099959e-18 1.948708522e-17 3.270262238e-18 2.525072144e-17 8.498828965e-24 2.425742442e-19 2.400501905e-26 1.660835283e-17 3.784715221e-17 2.808004123e-17 0 0 8.570239533e-17 6.430712644e-19 1.326453299e-18 1.505220866e-18 3.212237496e-19 6.87856954e-23 0 4.670352523e-23 2.872694887e-21 4.948548778e-23 3.281126609e-25 4.614866357e-22 0 0 0 0 0 0 2.475699598e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 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.48063213e-25 0 4.409955364e-24 0 0 2.342567313e-23 6.439308894e-25 0 0 0 0 0 2.809546237e-22 2.457926519e-18 1.38309616e-18 8.177305555e-17 0 5.006954375e-18 3.268703834e-18 1.589012296e-17 7.21352681e-19 3.497410168e-17 3.990811365e-17 3.382448908e-18 1.477097639e-17 9.316956365e-23 1.434042201e-17 9.195344911e-23 9.076867543e-23 2.452049002e-17 5.866226577e-19 4.608149618e-17 7.720126902e-19 4.113239804e-17 1.748029116e-17 0 3.384245061e-18 1.265829206e-18 7.382414336e-19 2.446963133e-18 9.745237154e-18 0 1.256984028e-17 5.850823163e-18 3.320481591e-18 7.348255717e-18 2.626694817e-17 3.052648237e-17 1.812679684e-17 8.708291513e-17 8.803998338e-19 3.878921274e-17 8.536210731e-19 2.129354716e-17 2.80893434e-17 4.913948668e-17 1.607331756e-17 1.975644295e-18 1.145976858e-17 8.786007746e-18 3.084320479e-17 4.908612916e-18 1.735119376e-18 9.349101194e-18 8.237101215e-18 7.077495337e-33 2.559412592e-18 3.610577375e-17 2.777157291e-17 7.348232061e-19 0 2.569538066e-17 1.012750764e-17 6.542410102e-17 5.853151367e-18 1.036233743e-17 2.054377105e-17 3.827680283e-18 3.153442835e-17 0 8.754029566e-17 1.215606446e-17 8.730777729e-19 1.294040874e-17 3.53469432e-17 9.758555095e-18 4.461318837e-18 3.124435949e-19 3.199675713e-18 4.992468798e-17 1.197046968e-18 1.299889746e-17 1.839677204e-17 7.497907352e-17 4.954149158e-17 2.472019445e-18 3.569875534e-18 8.857655284e-19 1.02243985e-18 1.889124919e-17 2.36373431e-17 3.745208444e-17 5.395918776e-18 4.561910153e-18 4.534939744e-19 2.468755355e-18 1.582124174e-17 0 1.287525939e-18 8.627363657e-18 1.035208252e-18 4.217935482e-18 4.884128069e-18 2.326860276e-18 9.852903551e-18 3.403725676e-18 1.0109187e-17 7.427985701e-19 0 3.01677713e-20 3.706795467e-18 2.848844556e-18 1.016022094e-17 1.280126455e-17 1.80324392e-17 5.44653808e-18 0 0 0 3.312922084e-20 0 7.096398726e-18 7.764152758e-18 1.784488794e-17 1.330326531e-21 1.208684721e-17 6.660869307e-18 1.588962376e-18 2.7344045e-17 7.101294417e-22 0 7.719491358e-26 6.826110808e-17 0 1.60295663e-17 2.248588745e-19 0 4.947296144e-22 0 1.270945243e-18 0 8.97914719e-24 3.129196799e-20 2.212854406e-26 0 1.414752255e-22 0 0 0 0 8.608219558e-23 0 0 0 0 0 0 0 0 0 0 0 0 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.357111943e-27 0 0 0 0 0 9.30157525e-22 1.417003355e-25 1.639646276e-22 0 0 0 2.493082561e-21 5.6164162e-19 0 2.35110629e-20 0 1.090299914e-18 0 0 0 0 1.058095709e-22 0 0 9.109141407e-19 4.388196155e-19 9.849368928e-25 8.724101284e-24 1.495486985e-18 0 9.471041659e-19 2.833939545e-18 0 0 1.363710407e-18 4.212949601e-18 3.922637964e-18 5.917348844e-19 1.362452705e-18 0 4.117989659e-18 1.576412521e-18 3.659447382e-18 2.323624502e-18 9.474230788e-19 0 5.021201742e-19 0 4.629557793e-19 4.21889653e-19 5.867224877e-18 1.170549986e-18 0 0 0 0 1.858793846e-18 4.47899884e-19 3.966573595e-18 0 1.56421563e-18 5.174306116e-18 1.185822827e-18 5.234878755e-19 7.453705235e-18 2.237860878e-18 1.461552618e-18 1.649134296e-18 3.211572784e-18 2.243629483e-18 3.415002114e-18 3.549855267e-29 5.007838655e-18 1.414451161e-18 1.041438005e-17 0 5.654985423e-18 1.84276859e-18 0 9.191265816e-18 1.61142059e-18 9.406878396e-19 2.920955309e-18 0 5.418196431e-19 0 0 3.068641534e-18 0 4.486919792e-18 2.506024681e-18 0 1.568446365e-18 1.940459676e-30 0 4.809438328e-18 2.72271424e-18 4.844858829e-18 4.146313683e-19 0 6.700313406e-18 1.888823286e-18 4.195511006e-19 1.319918276e-18 2.700665389e-18 0 6.590849696e-18 0 2.088091528e-18 2.049041226e-18 1.933485594e-18 4.199561355e-18 9.579383599e-19 0 0 0 1.354426347e-18 0 0 0 3.595000271e-18 4.750317023e-19 1.007844721e-10 3.456754813e-20 9.865828213e-21 4.779108676e-18 6.997121723e-19 6.553030948e-19 0 2.332834592e-18 9.829756444e-19 0 5.764796766e-18 0 3.866493732e-18 0 0 0 4.455168518e-24 7.591457497e-19 0 0 8.910272248e-19 5.97504447e-18 0 0 0 8.565750175e-19 3.296612117e-26 5.165254175e-20 0 0 0 0 0 0 0 0 0 9.06294655e-22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 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.072939993e-28 0 0 0 0 0 0 0 7.517723976e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.473552128e-18 0 0 0 0 0 0 0 0 9.125498918e-19 0 0 0 0 0 0 0 6.593499059e-19 0 1.054857702e-18 8.629709186e-19 0 0 0 0 0 0 3.556936577e-33 0 4.674903398e-19 3.614130381e-19 0 4.535470213e-19 1.112340254e-28 0 0 9.050246902e-19 0 0 7.106370899e-19 0 0 0 4.687864649e-33 0 4.388208066e-29 0 0 0 0 0 9.786860917e-19 0 0 6.318186188e-19 0 0 0 0 0 0 6.869110242e-16 4.15745543e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.129007927e-19 0 4.064117855e-19 6.062760184e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.458992654e-26 1.342151185e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.213592735e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.15355523e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.107871958e-17 3.491413224e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.515047946e-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 7.735160167e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.124563959e-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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.021173085e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.758430277e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.885004098e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.449516867e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +# Errors [PSD/PSD.dat] I_err: +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.883361597e-11 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.13138197e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.176303142e-18 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.111208884e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.512569703e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.304089484e-11 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.068813319e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.13889238e-14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.340218913e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 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.732642742e-24 0 1.433948998e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 2.461044926e-22 0 0 1.343194535e-18 0 1.121747477e-18 0 0 5.148744315e-19 4.610252444e-21 0 0 0 0 0 4.470662612e-19 0 0 0 0 0 0 1.722787491e-18 1.074015018e-19 4.835681448e-19 0 0 0 0 0 0 0 4.554417581e-19 3.478796283e-19 0 8.187606379e-19 0 0 0 0 0 0 0 0 0 3.555714916e-19 0 8.104780338e-19 0 0 0 5.386018288e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 1.25990799e-19 0 0 5.941281407e-19 0 0 7.946341814e-19 0 0 9.781469164e-19 0 0 0 0 0 0 0 0 0 9.802436043e-19 0 0 0 3.486975412e-19 0 0 0 0 3.799111561e-19 0 0 0 1.476254179e-24 2.621303867e-19 0 0 0 0 0 0 0 0 0 6.866524162e-11 0 0 0 0 0 4.33000772e-12 0 0 9.088757162e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.675351311e-26 0 0 0 0 0 0 9.254864586e-18 0 0 0 1.257706491e-22 3.641269306e-18 1.393328074e-23 0 2.213685524e-18 0 0 4.067980837e-18 0 0 0 0 0 1.62241405e-18 0 4.790007151e-19 5.456807638e-19 1.023205441e-18 5.676098889e-19 0 3.834609551e-18 0 0 9.036645786e-19 0 5.396075115e-18 5.005305026e-19 1.440816483e-18 2.069354936e-18 0 9.631043691e-19 9.799640231e-19 2.002189523e-18 0 3.671594357e-18 1.670522712e-18 3.215065596e-19 4.707066091e-18 1.054194872e-22 4.941363018e-18 1.335506612e-18 0 0 0 1.533401513e-18 2.784066172e-18 2.795933431e-18 0 1.522478718e-34 0 0 6.131642129e-19 2.362057132e-18 2.688487103e-18 9.034013004e-19 5.422219555e-18 1.075882266e-34 1.757360745e-18 0 8.947752732e-19 0 3.902534062e-19 5.071115275e-18 4.273719033e-18 0 2.259041574e-19 1.554348251e-17 4.40603543e-18 0 8.760000355e-18 9.76210066e-18 4.802924516e-18 3.421699799e-18 4.982595876e-19 1.706012427e-18 7.397561191e-31 5.429361333e-19 2.009887769e-33 1.382574757e-18 5.113213296e-18 0 2.917097928e-18 0 0 0 0 0 0 1.336362181e-18 1.948537217e-18 7.423373011e-19 1.7850617e-18 1.398351856e-35 1.416345762e-18 2.635478376e-18 1.271812994e-18 2.172851301e-18 0 0 1.034692914e-20 0 1.040946656e-18 0 0 0 1.367063636e-18 5.135909176e-22 0 0 9.562537001e-19 2.291733282e-18 0 0 0 0 0 1.120282766e-18 0 7.120141225e-19 0 3.164405469e-18 0 0 0 5.173878507e-23 0 0 1.043594648e-23 0 0 0 0 1.510286312e-18 0 0 2.247638843e-18 0 0 0 1.008970517e-20 0 1.769195779e-20 3.033848292e-26 0 0 0 1.895800982e-26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.932381537e-25 0 0 6.336407602e-27 0 4.446441783e-22 0 1.155937215e-18 0 3.652495405e-25 9.335596068e-19 0 0 0 1.924196487e-18 3.630143839e-26 1.133528559e-20 2.925970566e-27 1.988210149e-18 1.188532696e-18 0 6.174557857e-18 5.83693688e-22 0 3.291807841e-18 1.197329691e-18 0 2.227395619e-17 4.034084608e-18 3.488070272e-18 3.138821924e-17 4.945540487e-19 1.13120098e-18 1.321689816e-17 4.812798449e-17 1.027674316e-18 2.310641008e-18 5.631009401e-18 9.678773675e-18 1.789901923e-17 3.863804425e-18 3.131308899e-18 1.270353875e-18 6.677564025e-18 2.522347465e-13 4.236072517e-18 7.574118677e-18 1.47975112e-17 9.786492594e-19 3.606266719e-20 1.767172204e-17 8.403634482e-19 2.685239407e-17 9.907931671e-18 1.509830635e-10 5.585995369e-17 3.556164482e-17 2.874603326e-18 5.710880138e-18 0 1.961983154e-17 1.836474572e-17 2.877488255e-18 5.789340226e-17 2.075314245e-18 6.507095701e-18 8.07000274e-19 1.24046056e-17 2.347950613e-17 1.903094553e-18 2.225546667e-18 4.604383502e-18 4.334042929e-17 7.775479704e-19 6.017982141e-18 8.886707327e-19 1.043065778e-33 9.560540608e-18 1.033093951e-18 1.538488743e-17 3.291155414e-18 3.673261961e-17 1.641956125e-17 1.544550693e-18 4.786928056e-18 2.528659306e-18 4.896094432e-17 7.921068397e-18 1.14750188e-16 1.53358916e-17 8.632005439e-19 3.985236529e-18 2.397782578e-17 5.651384964e-17 1.917147778e-17 1.195818386e-17 7.703628681e-19 3.013905259e-18 1.348262271e-17 4.230831629e-18 6.719453254e-18 2.893605072e-18 3.447024676e-18 4.46961172e-18 4.683119735e-18 1.605918406e-17 1.29006474e-17 8.769201457e-18 1.329471482e-17 2.323522533e-18 9.182492569e-18 6.604651066e-17 2.964121455e-17 0 8.647441513e-18 2.482000778e-18 5.860273547e-19 4.515386244e-18 0 0 9.236553988e-19 4.001925491e-22 5.624068367e-17 1.079878941e-17 1.042698643e-16 7.899012146e-21 8.460900553e-19 3.272722628e-18 3.498309841e-17 1.446293448e-18 0 3.122775726e-18 6.328565203e-17 7.653474364e-24 8.498529489e-19 3.318607757e-18 7.483438533e-19 6.938259447e-21 0 1.729028439e-27 1.331324709e-17 0 8.580237849e-18 7.402719012e-20 1.475971641e-20 5.419869723e-18 9.701698354e-24 0 3.106455003e-22 0 0 3.780087351e-20 3.427941887e-19 3.918498513e-19 0 0 5.574788499e-24 0 4.308052104e-24 0 0 0 1.150551558e-25 0 0 0 0 0 0 0 0 0 0 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.618978547e-25 0 0 0 0 2.705283451e-24 0 2.93209447e-20 1.069397461e-18 3.122454229e-27 0 1.453145883e-19 4.948090053e-19 2.00489967e-26 9.016857389e-19 3.235393234e-19 1.957484878e-18 0 3.097935153e-20 6.713949387e-22 4.171607681e-19 2.183114014e-18 7.548350908e-18 1.047675344e-17 1.820159513e-17 4.197002783e-18 1.503682242e-17 6.137737745e-18 9.310556881e-18 4.319118263e-19 2.351850358e-18 1.45794005e-18 4.769791312e-17 4.604264344e-17 5.381539879e-18 2.763387847e-17 2.576584808e-16 4.045381808e-18 5.045071329e-17 1.281284589e-18 6.125446644e-19 1.437833838e-17 2.305178506e-18 1.673032691e-17 2.642481452e-16 1.278232541e-17 1.399141102e-17 7.173750651e-18 2.974586552e-16 1.660535246e-18 1.920560646e-17 3.361090747e-17 6.517240253e-17 6.260833788e-18 1.232508819e-17 1.600386087e-16 1.890906301e-16 1.235000979e-17 1.499579734e-17 2.345416345e-17 6.812254654e-18 1.706661384e-16 1.846423423e-17 2.384348197e-18 1.611452774e-17 7.869571731e-17 3.228995502e-16 5.977624069e-18 1.467968235e-17 3.819507358e-17 5.738609801e-16 1.129090447e-17 7.469378618e-17 1.176340863e-17 2.364731202e-17 3.809428408e-18 3.623432195e-17 8.712530073e-17 1.012218119e-16 5.121911327e-17 1.876334827e-17 4.803861631e-17 1.21696831e-16 6.488249599e-17 1.973651771e-16 1.383741433e-17 1.906002983e-17 8.419678252e-19 4.395239443e-17 1.137992594e-16 8.471424697e-17 2.244598459e-17 2.438088382e-17 2.232578376e-17 9.599382955e-17 3.893416653e-17 6.580621796e-18 2.757854855e-16 4.515247964e-18 2.100409772e-16 1.029818783e-17 3.475343004e-16 4.504911743e-17 1.809525172e-16 2.087152632e-17 1.323765555e-17 4.379806897e-16 1.351494329e-16 1.253621995e-16 1.792945344e-17 1.68840589e-17 2.007614393e-16 3.696258591e-17 1.075041406e-16 1.374269462e-16 1.728874795e-17 5.752575664e-17 1.545230866e-16 3.692735243e-16 5.164702299e-16 9.576956409e-18 2.327598975e-17 9.847196384e-17 9.142878931e-18 6.596950075e-18 1.423623407e-16 2.001307632e-17 8.862981689e-18 9.665385432e-17 4.299470074e-17 2.74463601e-17 2.037452575e-18 1.004173762e-17 6.101608391e-17 2.244571895e-16 0 2.323921634e-16 3.58250994e-17 1.228407788e-16 5.721707631e-17 2.124904082e-16 2.197438564e-17 6.882833905e-19 8.019036727e-19 7.301845712e-23 1.875230458e-23 4.90690842e-19 1.13502509e-16 1.869964545e-19 2.445762542e-16 2.244668623e-18 0 7.380075469e-20 5.340894583e-23 2.476386315e-18 0 3.765582972e-24 0 1.140935596e-21 3.054202701e-20 0 0 0 3.125260257e-27 6.176499882e-24 3.379199665e-27 0 0 0 0 0 0 0 0 0 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.149531011e-27 0 1.435926142e-23 4.732426088e-25 0 8.52613378e-23 5.806270476e-22 7.559303246e-27 1.073877291e-21 6.105426775e-20 1.888044785e-18 7.106926755e-20 3.681729348e-19 7.811934775e-19 1.809465843e-18 1.029771123e-17 1.366625714e-23 6.274725768e-18 1.801512453e-18 7.890171907e-18 4.490018757e-22 1.024314631e-18 1.660972585e-22 4.303233705e-17 1.032778912e-15 1.36150002e-23 4.04593707e-15 3.525322455e-17 9.210003269e-18 2.847947739e-17 8.249432452e-17 9.332493658e-16 1.104293184e-18 8.97915797e-17 1.229076574e-15 1.93559857e-17 3.082728526e-16 3.503563139e-16 1.621637479e-16 1.839597921e-16 2.118744454e-16 8.697115749e-17 2.098300691e-16 6.624286801e-17 1.89209731e-17 5.023985577e-16 7.94747752e-16 1.956914498e-15 2.954657653e-16 2.381148711e-16 1.170008785e-16 3.479342621e-16 8.610143832e-17 4.741007495e-16 1.34769932e-17 1.530523845e-15 1.76871577e-16 6.451397825e-16 2.553158906e-17 3.487095714e-16 1.057500129e-15 5.470876909e-17 5.249897567e-17 9.52977954e-16 1.711577744e-15 6.204494796e-16 1.331833847e-15 5.080734831e-17 4.607933701e-17 3.595636206e-16 2.273732292e-16 2.584301943e-15 6.961431108e-16 2.040711456e-15 5.073944221e-15 8.781917912e-17 2.958634938e-16 1.689898432e-16 6.671449578e-17 5.802198925e-16 2.299756854e-16 6.11036699e-17 1.566957158e-15 1.824078915e-16 2.048987506e-15 2.168750675e-16 1.220426537e-16 7.637907797e-18 8.9404611e-17 1.151899316e-16 6.182435831e-16 2.427988184e-16 4.144803952e-16 2.807444532e-16 2.603803748e-16 4.041195328e-16 2.152817211e-16 3.027447283e-17 3.702668676e-15 8.450874751e-16 7.868084246e-16 7.260254573e-16 4.02021313e-16 1.211943187e-16 6.783272067e-16 1.021121513e-16 1.823427341e-16 1.891508559e-16 4.655467269e-16 1.050845606e-16 1.919017577e-16 5.289805747e-16 1.77886067e-15 1.907577731e-15 1.560050419e-15 1.717969835e-16 1.59265799e-16 6.86527627e-16 7.796480271e-17 2.006843981e-16 8.313930679e-17 5.449568789e-17 5.660573404e-16 8.71626987e-16 4.291544055e-16 1.095032363e-15 7.057032964e-16 1.730092601e-16 1.312555737e-16 4.593190254e-17 2.403005332e-17 3.405218896e-16 9.493799407e-16 1.704164995e-16 5.670660207e-17 7.993534754e-17 2.21474594e-15 5.12635396e-17 5.34277825e-19 8.011507592e-16 1.759073988e-17 2.706063813e-16 2.558753364e-17 8.338381376e-17 6.371814156e-18 2.156484855e-18 1.14504054e-17 5.862259839e-17 8.288613997e-18 1.02733281e-16 1.48589618e-18 1.428505221e-16 1.57590457e-16 1.409713185e-21 2.159986917e-15 2.724846668e-17 2.179531999e-18 2.55680838e-24 9.960538558e-19 3.063926861e-26 1.633689922e-19 8.27294002e-19 1.571584618e-18 4.970876495e-21 1.974330465e-27 1.111032839e-26 7.914502251e-25 8.050245653e-26 0 0 2.928780552e-25 0 0 7.022157843e-15 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 2.953196914e-11 0 0 0 0 0 0 0 0 2.866898892e-24 0 0 2.835237518e-24 1.474856661e-24 2.953480738e-21 2.308150206e-22 2.345221609e-23 0 1.038434369e-25 0 5.233937475e-18 3.758051981e-19 1.243596756e-16 6.525265491e-18 3.46100738e-19 5.551134848e-18 2.373835595e-22 2.166108343e-16 2.099400053e-15 9.092986883e-16 1.859835771e-17 3.373562543e-16 1.493711245e-15 1.343790371e-17 6.545869885e-17 6.823725571e-15 1.327610273e-17 1.473275473e-15 1.397829746e-15 1.226003591e-14 5.798615087e-16 2.62954931e-17 5.521253475e-15 2.940214756e-15 5.32331487e-17 6.900403103e-15 2.155751111e-16 2.795011023e-15 1.4296717e-24 2.175095527e-15 4.084726329e-17 1.277673027e-16 2.177967974e-15 2.700955742e-15 3.383043181e-15 7.503877661e-16 6.016529883e-16 3.463221759e-15 5.112949569e-16 3.823130909e-16 1.377084181e-15 2.217600734e-15 9.216771539e-15 5.120655112e-15 1.04858113e-14 3.738131909e-16 1.234074694e-15 4.53397329e-16 2.506245872e-15 2.922248057e-15 1.386304759e-15 9.388554108e-16 2.152134785e-15 2.381729351e-16 1.46944359e-17 1.276142396e-15 3.196058956e-16 6.96726917e-15 2.15520469e-15 4.758469093e-15 2.167352001e-15 3.045498742e-16 1.497299137e-15 4.670882484e-15 4.483626556e-15 9.009312718e-16 8.814604592e-16 7.932030022e-15 2.747472314e-16 3.909760948e-15 1.199057455e-14 2.793722331e-15 1.293870919e-14 8.889831525e-15 2.008108309e-14 1.127461816e-15 4.014113945e-15 3.699027272e-15 2.052913273e-15 3.866833218e-15 1.715902288e-15 4.768230582e-16 2.335937778e-14 6.862184315e-15 3.007975742e-15 8.621263372e-16 1.162323983e-15 1.820797146e-14 1.543561141e-15 4.575278763e-16 3.049128686e-16 3.954284837e-15 5.734951237e-15 4.669176691e-16 1.808462092e-16 4.990941641e-15 1.577201749e-14 5.038394475e-16 3.258451638e-15 9.382578919e-15 3.573650239e-15 1.52908273e-14 1.223164803e-14 9.474676212e-17 6.7526608e-16 2.039827934e-14 6.063639819e-15 1.860377157e-16 3.221148852e-15 3.605110196e-15 2.108930339e-14 4.524095213e-16 1.224291551e-16 5.406526481e-16 1.622715178e-15 7.878919695e-17 2.84837536e-15 5.718848235e-16 7.574019499e-16 2.609700204e-16 4.543197077e-15 2.491959318e-15 2.392568605e-15 5.296597689e-16 2.073457016e-15 4.633118296e-16 3.192742154e-16 4.051311091e-17 2.555131307e-17 8.838469556e-17 8.86194708e-15 1.538548543e-16 4.697724962e-18 6.367243242e-15 1.27835412e-15 3.503375043e-17 1.497370504e-15 4.386400877e-17 3.671503563e-17 2.695575184e-15 5.760453381e-16 1.390186937e-18 3.811200379e-16 1.910738195e-17 2.117791646e-18 3.067548569e-24 5.567350216e-22 4.617476377e-18 1.009586673e-20 5.14107124e-19 2.30891713e-20 2.139306473e-19 7.708219254e-19 9.009874504e-26 0 7.61790199e-25 2.268051779e-24 0 0 0 0 0 1.642097949e-12 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.137638324e-26 0 0 0 0 1.508863804e-18 1.429700526e-24 3.077730433e-18 3.144138597e-21 4.578665532e-16 1.713885257e-18 1.066473442e-21 1.071726363e-18 6.175169306e-15 5.832632274e-16 2.664416901e-20 5.974623249e-18 2.50183066e-18 1.392728635e-15 7.266847999e-21 2.859483695e-14 9.64502664e-11 2.697837551e-20 1.156645233e-14 5.058626714e-16 3.409813176e-14 1.396300834e-14 1.271265642e-14 1.104966107e-14 2.23267844e-14 3.060131351e-14 3.851046475e-14 7.914232956e-15 1.228219969e-16 1.583692046e-16 2.054168764e-15 5.860378816e-14 6.295147981e-15 2.857970218e-14 7.919109617e-15 1.559305361e-14 1.923707586e-14 8.107604948e-15 9.712683546e-15 2.094190049e-15 5.313712189e-14 2.314951193e-15 1.186835589e-14 5.034676989e-16 3.007546947e-15 2.440267186e-14 2.118938599e-14 1.627824515e-14 1.082759731e-14 3.960232334e-14 1.778616704e-14 4.866350355e-14 4.245322073e-14 7.575790245e-11 1.802952819e-14 2.676538787e-14 4.775566807e-15 7.571297933e-16 1.720769869e-13 3.031359765e-14 2.961962225e-14 2.233143685e-15 4.046540883e-15 2.08920872e-14 3.576721138e-14 2.825011891e-15 4.19610903e-15 5.943829849e-15 1.021236813e-14 5.668705833e-15 2.077372394e-14 9.596585816e-15 5.835315462e-14 9.877059065e-14 3.090694725e-15 3.688138827e-14 3.415259867e-14 2.49101696e-14 4.7689407e-15 3.129677836e-14 6.937038795e-14 6.140598365e-14 4.317695467e-14 1.053511638e-14 8.94445887e-16 1.043839754e-13 1.200689183e-15 1.362893866e-14 5.94272186e-15 1.033359812e-14 7.95636582e-14 3.821713913e-14 5.650656938e-15 3.032910964e-15 2.090944655e-15 4.458324731e-15 1.015070963e-14 2.549196059e-15 1.09689417e-13 1.380483539e-15 1.052630863e-14 5.603654413e-14 2.397074917e-15 8.248232802e-15 1.430902487e-14 5.387026623e-14 1.096074428e-13 9.007312584e-15 4.882894495e-14 7.107577751e-14 1.352939221e-14 9.769586223e-11 3.115261709e-15 9.754707577e-16 3.922537797e-13 1.917014845e-14 1.32868935e-15 2.328276875e-14 7.146301647e-14 1.222317149e-14 9.965617987e-15 1.862163648e-14 1.098581375e-14 6.882800039e-15 3.423055234e-14 3.095177538e-15 4.649095386e-15 5.013591378e-16 9.774672697e-15 3.26871746e-14 2.313875269e-15 6.080527227e-14 2.369110537e-14 3.629576203e-14 1.952169815e-14 4.542907121e-15 4.585339358e-15 5.754004739e-15 4.042153462e-15 7.046995297e-18 2.429681102e-17 1.682344219e-15 6.192409949e-15 1.020749275e-15 1.863461191e-15 2.515416513e-16 1.450168774e-13 2.870452331e-16 0 2.002268057e-17 7.671219132e-18 1.1053394e-19 3.720871061e-15 0 3.538604614e-18 3.947564343e-19 9.5899933e-17 4.810361711e-18 4.844415861e-24 0 0 3.691166512e-27 1.947910812e-21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1.050143151e-10 0 0 0 0 0 0 0 0 0 0 0 2.787857845e-23 1.178445438e-26 0 4.20323023e-19 1.412001986e-21 2.897301178e-16 2.251161176e-22 5.455335779e-17 4.633476263e-18 1.497535726e-14 1.147590824e-15 8.012220063e-15 2.680949272e-17 9.886948682e-16 1.294798872e-16 1.658589596e-13 2.83856109e-13 9.272570781e-15 1.640411625e-14 7.877657524e-14 1.265615542e-13 2.597324297e-13 8.783960199e-15 2.753691543e-14 3.031012153e-15 3.971495904e-14 1.59169141e-13 1.146507561e-14 7.898891333e-14 1.40461833e-14 2.046454488e-15 3.705085793e-13 4.542285394e-14 4.541935193e-13 1.719202844e-14 8.168525485e-15 3.023975656e-13 4.187903336e-16 9.312561221e-14 3.687995698e-15 7.204934455e-13 5.070125204e-15 1.175170821e-13 5.842002862e-14 4.814576034e-14 1.303737567e-14 8.2238284e-14 2.998308179e-15 2.872459688e-14 6.978547559e-14 1.59937555e-13 6.790098962e-14 1.032192679e-14 2.348738774e-13 2.168766088e-13 2.44735133e-14 3.973716792e-14 5.945011303e-13 1.471373158e-14 1.763655635e-14 9.174551671e-14 2.336925868e-13 9.224974643e-15 9.686006436e-14 1.23669909e-12 6.505693262e-14 3.939326694e-13 7.392217088e-14 8.985613917e-14 6.50687244e-15 6.42808997e-13 1.168270735e-13 5.657186563e-14 2.108341102e-13 1.002898297e-13 8.512878598e-15 1.311493036e-14 2.666228188e-13 9.004700034e-14 3.914115774e-13 3.015850174e-14 4.578853584e-13 2.211080389e-14 6.198369822e-14 4.555308028e-14 6.617838241e-14 8.103902494e-14 1.764005056e-13 3.663912549e-13 2.271713065e-14 1.750650218e-13 3.510003499e-13 1.620321536e-12 2.143367153e-13 1.70920372e-14 2.766566567e-13 1.015846282e-13 3.269341541e-13 2.317951585e-13 1.053696752e-13 2.81652339e-14 5.399917992e-14 1.39219853e-13 5.514042598e-14 7.697100672e-14 4.961969464e-14 8.828907893e-14 1.196230515e-12 3.613636756e-13 2.10603595e-13 1.660264709e-12 1.207459804e-13 2.472425221e-14 4.018903387e-13 2.562141441e-14 2.331271741e-13 1.619798389e-14 2.653789022e-13 3.024210394e-13 7.004035337e-15 1.989746186e-15 1.846053647e-13 7.331221481e-14 1.18171081e-13 4.633965706e-13 1.257245115e-13 4.796609667e-14 2.013391009e-13 2.966840231e-14 5.9097021e-14 4.289311923e-13 1.737958118e-14 2.94808907e-13 2.070568665e-15 9.623551669e-15 1.234099167e-14 8.73600399e-15 2.133356425e-14 1.251259509e-15 4.697264333e-14 6.924070758e-14 4.424365861e-16 1.545495778e-13 9.799836309e-15 7.705017745e-13 8.282899314e-14 3.52283767e-15 1.816993989e-16 3.35465183e-16 1.771643556e-15 2.028527642e-17 4.624582621e-18 3.0752531e-16 2.00592508e-13 5.278390332e-20 2.015811858e-16 4.28863304e-18 1.190789717e-15 2.117916e-20 3.036646492e-18 3.444506404e-19 5.030125215e-19 8.09742831e-24 2.165386905e-20 1.304748388e-23 7.43658833e-24 2.850899248e-21 0 0 6.65680438e-22 0 0 0 6.665385663e-11 0 0 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.012486027e-21 1.091106345e-26 3.564813698e-19 7.561145476e-22 1.476831331e-16 2.363419866e-16 3.67704124e-22 2.732011806e-17 4.732275453e-19 1.714829757e-25 2.179754841e-17 1.14087211e-14 7.363299568e-15 1.00242774e-18 8.734608409e-14 8.932742643e-17 2.023453386e-15 2.53348418e-15 1.166415083e-14 3.159511925e-14 2.896910262e-13 1.464965629e-13 1.422098974e-17 2.586135203e-14 1.530107782e-15 9.241778429e-13 1.552494169e-13 2.393800932e-14 3.692431989e-12 1.55276888e-14 1.786590189e-13 3.255701452e-13 2.923361265e-13 4.514124067e-13 7.454203007e-14 9.125561604e-12 1.869195135e-13 4.166445915e-15 3.662284739e-12 1.646184289e-12 1.578261057e-13 7.914676462e-15 2.719498145e-13 8.278992932e-13 2.443977536e-13 3.912920643e-13 1.324415371e-12 1.151047584e-12 1.110599259e-12 2.126927481e-13 2.459475152e-12 2.008000892e-12 3.35604641e-13 1.474292556e-12 9.117848847e-14 1.501214314e-12 1.104674754e-12 1.550390338e-12 1.973580922e-12 2.057684247e-12 1.00395295e-12 8.635963494e-13 9.305686361e-13 8.395325615e-14 7.590074977e-13 2.153888534e-13 2.204437798e-12 8.58440284e-13 6.630037857e-13 5.878997395e-13 4.437561785e-13 3.458605209e-14 9.10089176e-12 1.501996224e-12 1.174555131e-12 1.251172294e-12 3.499586732e-13 2.682424681e-13 2.183290579e-12 1.46183133e-12 4.924747485e-13 2.167261085e-12 3.221897208e-13 6.100328787e-13 4.660385965e-12 4.644535751e-13 1.028155502e-12 6.029862127e-13 2.753923393e-13 4.178511017e-12 2.750170453e-12 2.410586829e-13 4.54280724e-12 4.398055819e-13 3.647801179e-13 9.454855487e-13 1.161460043e-12 2.183587098e-12 9.3830507e-13 3.810598237e-12 3.344702527e-13 2.468578504e-12 1.036931727e-12 3.700948671e-13 6.892938525e-13 2.543393242e-13 1.153701546e-12 1.406471201e-12 1.176421398e-14 4.143372255e-12 1.441265947e-12 1.032481887e-11 1.084977325e-12 1.274285927e-13 6.276926466e-13 2.521855401e-12 6.022088788e-13 6.745614894e-13 2.536054466e-12 1.12273177e-12 8.571053131e-14 8.228379611e-13 3.49737309e-13 1.947085023e-13 1.143656299e-12 1.958090738e-12 5.75991088e-12 9.21170088e-13 1.170221612e-12 5.018709137e-13 2.292867959e-13 4.607335226e-14 2.259617551e-12 5.113958158e-14 8.546897963e-13 2.412961269e-12 1.0728798e-13 4.024306668e-14 8.158630097e-13 4.910311576e-12 2.167951277e-15 1.075171718e-13 7.454178317e-13 4.433128114e-12 8.229862686e-14 3.369292039e-17 8.638454633e-13 5.479314517e-13 9.84433293e-15 3.337386774e-12 1.81125159e-13 5.059749796e-15 5.187239392e-14 2.046157885e-15 1.702295057e-16 1.421795824e-16 1.46462601e-21 1.179415899e-17 6.135679033e-16 8.702752954e-19 1.515060401e-21 1.354937402e-19 6.010341067e-25 0 3.062069644e-16 0 0 0 0 0 0 0 0 0 0 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.32827645e-23 0 5.897454098e-24 0 1.39635897e-20 1.31775771e-18 1.538134668e-16 1.898037636e-13 7.973605481e-21 5.116267266e-15 6.967344041e-17 2.80264087e-14 1.627500601e-17 1.065810198e-13 6.830466225e-16 5.108272013e-16 4.880512515e-13 2.211703571e-14 3.932617699e-15 2.291746989e-13 4.695867681e-13 1.023477989e-12 8.538407131e-14 1.816990303e-11 8.442650335e-12 9.034543166e-12 1.06915502e-11 8.473283185e-13 4.903463684e-14 2.199254169e-11 6.564218796e-13 7.01157834e-14 6.802335945e-12 5.01316096e-12 4.985604881e-12 2.186524681e-14 1.039826047e-11 1.629232068e-12 4.643671843e-12 2.118833394e-11 3.022121922e-12 2.208097202e-11 3.985324769e-13 1.030406419e-11 2.465360881e-13 1.584577348e-12 3.774951061e-12 3.492948112e-12 2.354643121e-11 9.884709336e-12 1.374374981e-12 3.292322156e-12 2.307065565e-11 1.188526824e-11 2.897664629e-12 3.10562045e-13 1.059774759e-11 1.592778497e-11 8.899162816e-12 2.794260271e-12 3.19393e-12 1.534325414e-11 1.988839064e-12 8.691975785e-12 1.852745781e-12 1.867516399e-12 1.034600956e-11 2.872414886e-11 1.31312367e-11 6.946766761e-12 2.944331544e-12 7.12174304e-12 7.591491231e-12 1.99875946e-12 3.75515159e-11 4.554122317e-13 6.221613822e-12 8.952407549e-13 7.438454594e-12 5.541895357e-12 1.417069701e-11 6.854977162e-12 3.179928191e-12 4.053301544e-12 1.953542422e-11 1.88962001e-11 9.38963825e-12 1.129008675e-11 1.847503943e-12 4.984961255e-12 1.240721176e-12 4.912054449e-12 8.961507201e-12 2.125962614e-11 5.972768047e-12 1.599299465e-13 6.291330629e-12 2.051535072e-12 2.470234208e-11 6.545217453e-12 2.755173317e-11 4.179062634e-12 2.109020515e-13 1.609283578e-11 7.972189747e-12 1.718649627e-11 5.455474537e-13 1.397110113e-12 4.669850944e-13 1.916368527e-12 1.160188144e-11 1.253120819e-12 1.226461409e-11 3.781182439e-12 1.23373868e-12 1.671017336e-12 1.178826541e-11 1.71704722e-12 1.255761254e-11 2.641584382e-11 1.367091164e-12 2.476489225e-12 3.554709445e-12 1.173663178e-11 4.45463272e-12 3.092471596e-12 1.704402921e-11 1.485122264e-11 2.657893521e-12 2.660946523e-11 8.537885873e-12 7.619775007e-13 1.209152243e-12 2.602217868e-12 1.718251418e-11 2.252119515e-13 2.959480397e-12 1.463009058e-11 9.114853056e-12 2.803428489e-13 1.99983894e-12 3.34107903e-12 5.640795675e-14 3.003644048e-12 1.042188721e-13 2.08774768e-14 1.158796328e-13 7.490995561e-12 1.582666808e-14 3.241884786e-14 6.317936885e-12 5.226954542e-13 8.88917246e-15 9.380506135e-13 1.997566517e-15 6.776352756e-16 2.636324049e-13 3.398867307e-16 3.95188692e-19 9.371321462e-19 4.390691396e-17 1.388093652e-17 5.225602302e-16 1.995567705e-17 6.498457827e-21 1.957684666e-26 2.032000125e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.772035261e-22 0 1.391397208e-21 4.610290859e-20 6.468799685e-21 1.706692693e-18 1.021939977e-20 2.25209339e-16 8.513869358e-21 1.918789157e-11 9.392794263e-14 2.980692476e-12 8.457327446e-14 1.455524612e-13 1.465552766e-16 1.456317548e-13 3.028449738e-12 1.224849181e-15 7.778181544e-12 1.186798498e-12 2.192517515e-13 8.815129011e-13 8.559894893e-12 2.197006893e-11 1.116968513e-11 1.096551689e-10 2.852419812e-12 1.882167499e-13 4.324677141e-11 1.642652581e-11 6.587656451e-12 4.68677078e-12 7.461979626e-11 1.074570253e-10 3.248817552e-11 1.207390351e-10 2.365315482e-12 1.047681379e-10 4.442860891e-13 1.771943765e-12 1.4857276e-10 1.527112962e-11 5.734019783e-12 5.80971851e-11 4.203063507e-11 8.047222339e-13 3.44237835e-11 1.500956394e-11 1.199636831e-10 3.422531757e-11 7.566474027e-12 6.594119685e-11 7.311232382e-11 1.945187132e-11 2.966774449e-12 3.314094739e-11 8.722705287e-11 3.695335622e-11 8.092811069e-12 5.88946949e-11 1.935096889e-11 6.525638039e-11 6.535672048e-11 3.947539117e-11 1.605782029e-11 1.128330261e-10 1.500500931e-11 2.874322625e-11 5.435853733e-11 2.340803197e-11 3.433547087e-11 1.419612726e-11 7.33990123e-11 6.026978444e-11 6.271321825e-11 1.446399202e-10 1.236232728e-10 5.716355974e-12 2.009225756e-11 8.673964309e-11 3.211842094e-11 2.37387858e-11 8.55996969e-11 1.166458133e-10 7.433451425e-11 1.721128338e-11 2.743040104e-12 4.58170443e-11 6.466038757e-11 1.640021042e-11 4.051812192e-11 1.833356617e-11 5.176413341e-11 4.297206211e-11 6.910962489e-11 1.234141679e-11 4.258707941e-11 5.903131055e-11 1.698456399e-11 9.172663947e-12 6.754672018e-13 1.01973916e-10 3.369684835e-11 8.978613102e-11 2.048617137e-11 2.972538576e-12 8.581650733e-11 6.542417573e-11 4.456405199e-11 1.107826956e-11 9.170445862e-12 6.703536175e-11 1.001729528e-10 6.395314919e-11 6.209663051e-11 1.687506328e-10 3.455339649e-11 1.067913428e-11 1.526804232e-11 1.051635394e-10 5.043738437e-12 1.821906896e-11 8.369810613e-11 1.798321547e-11 1.968477683e-11 1.020661185e-11 5.791226419e-13 2.006211013e-12 2.166802019e-12 2.075353435e-11 9.582264971e-12 1.166387096e-11 6.760212152e-11 5.124334863e-11 4.910399757e-13 3.480008124e-12 3.490345958e-11 4.768661447e-11 1.541554979e-11 5.19674639e-12 8.720201345e-11 3.988841625e-11 8.955860305e-12 3.077780495e-12 2.935946073e-12 8.204764303e-13 1.154191003e-11 1.324565537e-11 5.21579395e-11 3.215437746e-11 4.458943646e-13 4.286821225e-12 3.746226707e-11 3.139043806e-17 1.628218552e-16 2.856704974e-19 4.913789104e-12 6.170454808e-12 8.671790584e-18 6.002187308e-18 2.561670729e-19 9.080378829e-21 1.265712926e-19 2.949191295e-19 4.595686214e-15 2.434644643e-18 1.581688628e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.551660816e-21 1.709847097e-24 1.749627705e-21 4.428909596e-24 2.628802957e-20 3.486495955e-16 5.073225697e-18 4.008704004e-22 6.144522171e-12 9.505050686e-14 2.430603773e-16 7.18067083e-12 9.466549242e-14 1.032346759e-15 8.800050148e-13 5.140667652e-11 3.575017538e-12 1.287447636e-13 4.223507006e-11 2.193908977e-10 1.035347726e-12 2.262864102e-11 2.202816809e-12 1.138996872e-11 3.347918716e-13 1.059106295e-10 1.024336832e-10 7.073824741e-12 2.15392513e-11 8.790093324e-11 1.983643713e-10 2.317136712e-10 1.441936691e-10 6.499837775e-11 1.359066117e-10 4.682924e-11 2.043892065e-10 1.290484652e-10 1.046919308e-10 3.668261866e-11 5.871423337e-11 1.853500846e-11 1.783790014e-10 3.085265164e-11 1.881910082e-10 1.862741675e-11 2.045883042e-10 1.532335363e-10 9.488446856e-11 2.64839334e-11 1.718070835e-10 1.699982617e-10 1.018887633e-10 7.358346579e-11 1.565353071e-10 1.740943294e-10 9.683452724e-11 2.394284345e-10 1.488199408e-10 1.891506758e-10 6.614212844e-11 1.187480502e-10 1.234673483e-10 4.562715528e-11 8.993231105e-11 1.05357026e-10 2.427837439e-10 1.713576056e-10 1.572245506e-10 3.421446339e-11 3.262265852e-10 2.650029049e-11 1.654779364e-10 2.056677169e-10 2.78434508e-10 9.425143318e-11 2.047950029e-10 8.219965727e-11 3.371752323e-11 1.504915736e-10 6.036648817e-11 1.46250711e-10 2.829215651e-10 1.34519522e-10 3.168022379e-10 2.29644413e-10 3.329112665e-10 1.210163301e-10 9.182576036e-11 4.082769265e-11 8.276644985e-11 2.436000854e-10 2.613578173e-10 1.791375908e-10 2.780778101e-10 2.606872814e-10 2.714994766e-10 1.851629125e-10 2.456623156e-10 1.652452042e-10 6.628098064e-11 8.893270103e-11 1.054529745e-10 1.732335705e-10 1.23463814e-10 1.46368722e-10 4.505581062e-11 2.822271654e-10 6.956708388e-11 2.539648005e-10 1.609051846e-10 2.335766348e-10 2.002702504e-10 1.580683028e-10 6.757489055e-11 9.836721162e-11 1.222095859e-10 1.413420811e-10 3.405973092e-10 2.65941214e-10 1.343372517e-10 1.336903962e-10 4.009796354e-11 1.367045375e-10 1.984382316e-10 2.059219406e-10 6.573786027e-11 2.598321538e-10 1.336674882e-10 4.773721953e-11 2.409272406e-10 1.340974789e-10 1.809718753e-10 9.827015235e-11 1.869808474e-10 2.613438105e-11 2.358592474e-10 8.252051742e-11 1.819550557e-10 1.794032095e-10 6.851662409e-12 1.212373602e-11 1.068940544e-12 9.038876064e-11 2.122714486e-10 1.751179687e-11 5.907163481e-14 9.140194374e-12 4.909034535e-12 2.424787293e-12 2.767043625e-11 1.277930686e-10 2.91211638e-13 1.007658766e-11 1.089831149e-12 1.631940888e-13 2.983571959e-12 8.430483793e-15 2.18282112e-14 4.651219216e-17 3.514373408e-18 2.385691646e-14 3.347412184e-13 2.720451936e-13 1.956951029e-21 5.744435177e-26 1.580151973e-24 1.544793806e-19 4.60246138e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.034211037e-24 1.006439909e-19 2.083540214e-18 8.855063931e-16 2.329148784e-20 5.985016769e-18 4.354397658e-15 1.31801143e-18 3.359800805e-17 6.312340332e-18 3.293437154e-11 1.288821963e-10 2.568771078e-13 1.748298674e-10 8.565242975e-15 1.749236912e-10 7.17654414e-14 3.492453809e-10 1.716389657e-10 4.555105205e-12 1.843014202e-10 1.624384875e-10 1.422855009e-10 4.407660318e-10 2.231104742e-11 3.070374917e-10 1.431116299e-10 4.349931646e-11 3.282154867e-10 4.006937111e-11 3.051522718e-10 3.558135994e-10 1.839839746e-10 4.512235046e-10 1.899567126e-10 4.047440212e-10 2.20179733e-10 2.969299493e-11 3.065230831e-10 1.546389874e-10 5.777829273e-11 3.502154402e-10 5.112106723e-10 3.151705853e-10 3.989346483e-10 1.516556244e-10 1.22553801e-10 2.969680875e-10 6.471258991e-10 4.052721276e-10 3.53695124e-10 4.556576256e-10 3.162021748e-10 2.996033329e-10 4.765455722e-10 4.562433271e-10 2.067795045e-10 3.14826411e-10 5.334987126e-10 3.425972299e-10 5.14853821e-10 1.547953402e-10 5.991062412e-10 7.896156813e-11 6.464086994e-10 3.091721147e-10 4.289201309e-10 4.141232577e-10 4.961295123e-10 5.49045512e-10 4.840620472e-10 4.047592154e-10 6.39876762e-10 4.55278856e-10 2.241754924e-10 5.570954467e-10 6.342032893e-10 3.682207214e-10 6.635821133e-10 3.803351441e-10 5.461564294e-10 2.21840242e-10 3.239119997e-10 4.835198703e-10 4.873425134e-10 3.962453186e-10 6.508240062e-10 4.387478032e-10 5.650887348e-10 4.82392863e-10 1.851031485e-10 3.931882646e-10 7.045084181e-10 2.823107046e-10 3.827943795e-10 4.619225309e-10 3.060733462e-10 2.547276514e-10 4.172387927e-10 8.210457766e-10 6.058127877e-10 7.478975077e-10 4.090499254e-11 2.286580686e-10 3.810125955e-10 4.743471227e-10 3.678500609e-10 4.392541465e-10 4.716019154e-10 6.179054912e-10 5.142997168e-10 3.892470259e-10 6.477194014e-10 3.437634111e-10 3.196430127e-10 5.812786425e-10 5.939188305e-10 3.768407567e-10 5.692122983e-10 5.775556107e-10 1.404514563e-10 2.843237894e-10 5.666256055e-10 1.436787825e-10 5.26520562e-10 2.935422667e-10 5.249819883e-10 1.753075924e-10 4.497058997e-10 1.687161355e-10 1.901251983e-10 2.459115384e-10 4.692068726e-10 4.600459292e-11 1.454743411e-10 4.079154716e-10 1.284500334e-11 3.18755351e-10 1.22758648e-11 4.880625565e-10 2.327494056e-10 2.253360775e-10 4.718258189e-12 3.148971242e-10 1.22766893e-12 3.113007558e-10 4.467639466e-10 2.865650109e-11 3.312975464e-10 6.210457804e-11 5.053827256e-11 1.511972421e-11 1.248262804e-10 5.101436857e-13 4.537784426e-12 3.368340275e-13 7.270434758e-13 1.066472471e-16 7.353112875e-14 1.091902741e-16 2.944745343e-19 2.732288191e-14 3.437605279e-19 4.304979038e-15 7.711809055e-27 2.430696736e-19 0 6.545455871e-26 0 0 0 0 0 0 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.461729271e-18 2.584512781e-24 3.249584474e-23 5.758222442e-17 6.027963898e-19 7.356696923e-18 5.025440628e-19 5.884040056e-16 2.617800322e-12 3.96032924e-17 1.429389769e-17 6.067062934e-14 3.54273153e-11 1.151451775e-11 4.751310259e-11 6.115095511e-18 1.105800701e-10 4.36557903e-10 1.499153263e-10 9.224476252e-12 1.339926082e-10 3.463741492e-10 3.814220706e-10 5.831309036e-10 1.896110083e-10 3.193226228e-10 4.312144021e-10 4.380844427e-10 6.966702703e-11 5.882937218e-10 4.308172721e-10 5.204153224e-10 3.0772733e-10 9.91919927e-11 5.277433048e-10 2.560578024e-11 6.893863021e-10 6.687574665e-10 6.479679523e-10 8.141796586e-10 5.612513257e-10 5.840604934e-10 4.959136863e-10 4.885360778e-10 6.959358904e-10 8.585870437e-10 4.356180435e-10 7.470036189e-10 7.09948596e-10 5.659839967e-10 9.016089082e-10 4.953325838e-10 6.465326206e-10 6.197199392e-10 6.918380148e-10 8.340384193e-10 8.528324421e-10 5.489292201e-10 9.627694934e-10 8.262761864e-10 7.291496207e-10 7.393039484e-10 5.116905689e-10 6.222356495e-10 8.315248204e-10 8.777739866e-10 8.478418398e-10 7.58234382e-10 5.082733936e-10 7.735501494e-10 8.183593113e-10 7.844863232e-10 7.280091779e-10 8.19352109e-10 1.064052816e-09 6.184208285e-10 8.282733801e-10 9.553750708e-10 6.454166406e-10 6.653108009e-10 7.334063285e-10 6.239635144e-10 7.639331673e-10 6.893074825e-10 4.901337195e-10 7.613105801e-10 6.792751941e-10 6.693436254e-10 6.994289208e-10 5.32748491e-10 6.743686855e-10 6.529151937e-10 7.122156699e-10 8.310801368e-10 7.872034046e-10 6.986725527e-10 7.912922104e-10 5.569209072e-10 8.957274269e-10 8.353687711e-10 6.193951732e-10 7.192608915e-10 5.445503805e-10 5.147017179e-10 7.30313483e-10 9.111110904e-10 6.258383921e-10 6.198135147e-10 5.60362341e-10 9.255345235e-10 7.522658034e-10 7.673504336e-10 6.137067595e-10 8.081041494e-10 5.706988863e-10 3.019424518e-10 6.750587581e-10 8.316832932e-10 8.351272476e-10 8.19990912e-10 7.048142753e-10 8.175406904e-10 6.568854225e-10 6.120415137e-10 4.808786436e-10 9.735572422e-10 5.426271675e-10 8.046531299e-10 4.240687721e-10 3.70628764e-10 5.499457358e-10 3.190247922e-10 6.433576632e-10 3.563512865e-10 6.071786012e-10 3.871356282e-10 4.664494767e-10 4.584027843e-10 3.916826733e-10 1.587261786e-10 4.771846078e-10 4.866792666e-10 4.55237966e-10 3.676474862e-10 3.130087297e-10 4.559705273e-10 2.967802059e-10 3.172969134e-10 3.074140938e-10 4.35202811e-10 3.085577005e-10 3.077712503e-10 1.208284744e-11 1.379499378e-10 1.872365965e-10 8.869756789e-14 2.227899442e-10 3.118319046e-13 1.771434064e-13 1.449127393e-11 1.754534232e-12 7.535923063e-13 1.000359637e-16 2.433446287e-15 3.262048226e-14 2.889309696e-19 3.413483071e-19 2.98602077e-19 1.932311218e-17 1.338259868e-19 7.118524738e-18 1.525806499e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.219169326e-23 1.34425023e-22 1.279694218e-14 2.418680845e-15 1.687097155e-17 2.765467693e-13 2.478143511e-14 7.050318061e-14 1.401786687e-10 3.628771922e-11 8.214200579e-15 2.873378719e-12 3.368840711e-13 4.961033012e-11 3.146053732e-10 1.691599411e-10 7.585775086e-15 4.346294352e-10 4.386641512e-10 5.423360131e-10 5.435335573e-10 3.170852026e-10 3.619297974e-10 3.058167486e-10 5.991560563e-10 4.35907256e-10 4.058842032e-10 5.291674178e-10 4.324552813e-10 4.384853775e-10 6.11053882e-10 5.296475769e-10 6.281296812e-10 4.391240016e-10 5.864505006e-10 6.989012763e-10 8.098182935e-10 7.938731309e-10 7.154463271e-10 7.499793668e-10 1.099128036e-09 7.78491526e-10 9.782682315e-10 6.756700277e-10 1.050918064e-09 9.085627521e-10 8.231715724e-10 5.942890464e-10 9.472649778e-10 9.343461542e-10 9.286327028e-10 6.111552234e-10 9.682859295e-10 8.106813726e-10 8.413661007e-10 8.818663282e-10 7.289669786e-10 8.055521274e-10 9.177310154e-10 8.726471297e-10 8.847208516e-10 7.851347691e-10 8.018802062e-10 1.075281511e-09 8.380158333e-10 8.986139193e-10 8.937828889e-10 1.042636245e-09 1.019709572e-09 1.071328413e-09 1.083513834e-09 9.71803105e-10 1.001810098e-09 9.350017749e-10 8.085980242e-10 1.078423863e-09 8.880076302e-10 9.175014777e-10 5.238564535e-10 7.799124467e-10 9.578637355e-10 1.192755468e-09 1.192749536e-09 1.077512206e-09 9.20036307e-10 7.659919356e-10 1.050703303e-09 9.585351742e-10 9.295439471e-10 8.768750551e-10 8.413187854e-10 8.248894317e-10 9.461957688e-10 8.638925111e-10 6.663715985e-10 1.184585195e-09 9.185770556e-10 1.094068316e-09 7.160129159e-10 1.124890661e-09 6.367647693e-10 9.084111874e-10 1.023740622e-09 5.49807288e-10 8.976868985e-10 9.220852151e-10 8.526075669e-10 1.051947071e-09 7.880319845e-10 9.480808649e-10 1.012894269e-09 9.351950577e-10 7.304498275e-10 8.249506234e-10 7.997859039e-10 5.945545864e-10 1.08837582e-09 1.002793713e-09 9.241699887e-10 9.170163469e-10 1.026757974e-09 9.928034391e-10 1.01242461e-09 7.559935001e-10 8.659787947e-10 7.75836816e-10 6.581977262e-10 9.029592311e-10 9.198542137e-10 7.12034509e-10 3.916552281e-10 5.993806448e-10 6.524248569e-10 7.477338391e-10 5.605544798e-10 7.56721064e-10 8.097811872e-10 5.840315199e-10 6.717236861e-10 4.266345236e-10 6.939875059e-10 4.446034896e-10 4.822804104e-10 5.456710445e-10 4.946829217e-10 4.000427885e-10 5.8387669e-10 1.747073924e-10 4.322723991e-10 3.747332548e-11 4.346203479e-10 1.740208405e-10 1.305248031e-12 3.128764175e-10 4.336979837e-10 2.650341626e-11 2.384895255e-11 1.472824292e-10 1.701536708e-11 2.464723563e-11 2.399490723e-15 4.4852481e-15 2.090934679e-16 1.030360776e-16 9.060651065e-20 1.304206257e-17 1.115535514e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.750899232e-20 3.372566979e-17 6.320765111e-23 6.146432519e-15 4.810650396e-15 2.255866221e-14 1.304993784e-11 5.901368822e-15 1.354198165e-11 1.029065374e-11 2.298999798e-13 4.259652947e-12 7.435633368e-16 3.991266836e-10 3.922129364e-10 3.541529194e-10 5.321400194e-10 4.345284975e-10 5.277816272e-10 5.316310853e-10 7.261445874e-10 5.293373409e-10 6.591296947e-10 6.109323212e-10 7.849381465e-10 8.026088035e-10 8.80831367e-10 4.927758005e-10 7.379262836e-10 8.710633491e-10 7.348888818e-10 7.669542264e-10 7.29513846e-10 7.443097502e-10 7.199647066e-10 7.357686724e-10 8.389270291e-10 9.392886675e-10 7.887794057e-10 7.730418187e-10 8.584403359e-10 8.055850266e-10 1.062868225e-09 6.526655632e-10 1.071279313e-09 8.174718717e-10 9.814012713e-10 8.905709038e-10 9.438051656e-10 1.033359844e-09 7.208444591e-10 1.185315685e-09 1.1257214e-09 1.027136172e-09 7.847113268e-10 9.525204268e-10 1.450389646e-09 1.216477527e-09 1.051250101e-09 8.612535829e-10 9.081124463e-10 1.183506819e-09 9.517838215e-10 1.137714275e-09 1.329110473e-09 1.284729213e-09 9.392945559e-10 1.250991346e-09 1.098396777e-09 1.225293707e-09 1.230016406e-09 9.209159905e-10 8.550921832e-10 1.207384301e-09 9.507535635e-10 1.205526402e-09 8.521105969e-10 9.895410389e-10 1.174613239e-09 1.17972365e-09 1.354233651e-09 9.769580765e-10 1.046304481e-09 1.287327049e-09 9.30817059e-10 8.596018326e-10 1.26598737e-09 1.141261924e-09 1.085665748e-09 1.182379381e-09 1.213199009e-09 1.174001316e-09 9.150935676e-10 7.453024562e-10 1.24922007e-09 1.242553265e-09 1.103587152e-09 1.090288626e-09 1.065732156e-09 1.065705856e-09 1.040109284e-09 1.176443269e-09 1.158612121e-09 1.218277733e-09 9.934478907e-10 8.643616831e-10 1.217065852e-09 9.781009909e-10 1.036592515e-09 1.191728802e-09 1.180509012e-09 1.136189058e-09 1.082294127e-09 9.601134448e-10 1.312236774e-09 1.072135991e-09 1.130578322e-09 1.010491495e-09 8.910047468e-10 1.084902173e-09 9.772099794e-10 1.063430819e-09 1.067427356e-09 1.047870121e-09 9.295671181e-10 7.1780882e-10 7.905205637e-10 1.004619289e-09 8.631742024e-10 1.037808486e-09 8.838467661e-10 1.019787606e-09 3.752598391e-10 7.321057238e-10 5.501603676e-10 7.152586431e-10 7.620310444e-10 6.346531059e-10 6.577044827e-10 7.466345039e-10 5.466133456e-10 5.293121269e-10 7.712778226e-10 3.625454329e-10 3.061604015e-10 3.132776735e-10 4.379798778e-10 5.100193193e-10 3.362502536e-10 5.331236245e-10 6.169637358e-10 5.432602906e-10 2.802720703e-11 9.730984712e-12 5.26922299e-14 1.429058664e-11 1.747654026e-12 7.16621465e-12 8.985204804e-11 5.314850545e-18 6.771534731e-12 4.438460438e-14 3.568911769e-16 6.030155035e-14 5.569177874e-16 4.408466482e-17 7.428107508e-19 3.890394703e-19 1.66932662e-22 0 0 0 0 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.27175689e-18 9.952534287e-19 1.999807624e-20 3.218159662e-23 2.003283406e-16 2.475609596e-14 1.127966667e-13 1.067492217e-14 1.301033797e-12 7.728468445e-18 8.645303695e-12 6.623476547e-11 7.542982451e-14 2.175114085e-12 3.42118276e-13 1.77185538e-10 4.322639727e-10 3.22076358e-10 4.365938671e-10 4.622059597e-11 1.401190921e-10 1.816941029e-10 5.343677962e-10 4.521948659e-10 7.479736058e-10 5.188869119e-10 8.673392349e-10 5.378418796e-10 1.031022359e-09 9.692487873e-10 7.206089802e-10 7.79378047e-10 8.610400102e-10 8.518183525e-10 7.902224201e-10 7.456322514e-10 9.996011177e-10 1.039887266e-09 9.337476021e-10 7.88527832e-10 8.041056974e-10 9.57165818e-10 9.240739673e-10 6.89951149e-10 1.02240873e-09 1.238763906e-09 9.239467863e-10 9.905104624e-10 1.177890934e-09 1.333542862e-09 1.216066823e-09 1.04482621e-09 1.173953916e-09 9.710227942e-10 1.049954706e-09 1.221163693e-09 9.820398028e-10 1.289559759e-09 1.4863012e-09 1.069144572e-09 1.257811799e-09 1.262763077e-09 1.350143503e-09 1.096108503e-09 1.278993179e-09 1.047314718e-09 1.250875476e-09 1.340110878e-09 1.137138409e-09 1.11533843e-09 1.363711012e-09 1.062086389e-09 1.252023291e-09 1.232746043e-09 1.317394931e-09 1.197465203e-09 1.290154114e-09 1.230057483e-09 1.179864371e-09 1.4712672e-09 1.182733516e-09 1.115018058e-09 1.245046648e-09 1.278430973e-09 1.337259399e-09 1.129963943e-09 1.152620138e-09 1.25737251e-09 1.262888673e-09 8.149467578e-10 1.636854693e-09 1.110598634e-09 1.232916899e-09 1.180350702e-09 1.194838317e-09 1.258091219e-09 1.131438611e-09 1.175014843e-09 1.148236793e-09 1.131654088e-09 9.877283329e-10 1.304414291e-09 1.261346854e-09 1.127651385e-09 1.140203553e-09 1.033623074e-09 1.415724748e-09 1.346646869e-09 1.165118231e-09 1.003706457e-09 9.642533468e-10 1.237325996e-09 1.302863549e-09 8.387657489e-10 1.495951807e-09 1.378006241e-09 1.133022684e-09 1.234729466e-09 1.334710063e-09 9.439669431e-10 9.224474693e-10 1.25927681e-09 1.042344394e-09 8.58662115e-10 9.042710098e-10 9.434965492e-10 9.1934286e-10 1.027708061e-09 1.036705841e-09 8.325209026e-10 9.478904498e-10 9.38626239e-10 7.455303179e-10 9.186771249e-10 1.135229633e-09 8.537814837e-10 1.037145815e-09 9.922715272e-10 9.898577412e-10 7.374867632e-10 8.668912855e-10 8.745159048e-10 7.737114551e-10 6.085979976e-10 7.137061647e-10 8.987011766e-10 7.918819914e-10 4.430021084e-10 4.389087497e-10 6.870305309e-10 4.965635123e-10 6.978864028e-10 4.434392135e-10 4.75948739e-10 1.595830809e-10 6.157308299e-11 3.132931203e-10 8.333957501e-13 1.208658207e-12 7.933846452e-12 2.039368741e-10 2.428182337e-12 2.254123041e-12 3.129294924e-15 3.460727801e-15 3.377406909e-14 1.231459289e-16 6.071587264e-15 7.467413168e-16 5.317280925e-19 5.585253364e-22 0 4.802508042e-20 0 0 9.724421158e-13 0 0 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.757188552e-18 2.35359422e-18 1.52353478e-17 3.308248111e-18 1.008391154e-15 1.52701119e-14 1.593365897e-12 2.526942768e-11 5.531158101e-14 1.631846238e-10 3.959137196e-11 7.235347848e-11 3.565518227e-13 1.400780227e-10 3.399879742e-10 5.5200488e-10 4.339194499e-10 4.889059366e-10 4.469650204e-10 5.907620729e-10 4.90730097e-10 5.602870064e-10 5.88981309e-10 6.115105591e-10 6.546123794e-10 8.00055712e-10 9.573036908e-10 6.745869343e-10 9.003224413e-10 7.347263365e-10 1.098070007e-09 9.299838938e-10 8.286100879e-10 1.111356322e-09 1.016760567e-09 1.04945247e-09 8.893332956e-10 1.175264616e-09 1.104166147e-09 9.897683276e-10 1.167353448e-09 1.097376393e-09 8.7245304e-10 1.157501098e-09 1.278070469e-09 9.508974693e-10 1.401566715e-09 1.049426584e-09 1.100226116e-09 1.29137183e-09 1.323870203e-09 1.161933777e-09 1.347582881e-09 1.346078234e-09 1.092331285e-09 1.398246593e-09 1.390170528e-09 1.264160764e-09 1.315174548e-09 1.395319221e-09 1.392723492e-09 1.313686562e-09 1.388991339e-09 1.575111628e-09 1.232280598e-09 1.403683617e-09 1.258060377e-09 1.403399373e-09 1.284097879e-09 1.255667873e-09 1.37449725e-09 1.244407088e-09 1.110556294e-09 1.289546601e-09 1.232741252e-09 1.254163944e-09 1.177492104e-09 1.30388444e-09 1.130817182e-09 1.406476549e-09 1.072887125e-09 1.470068544e-09 1.452459029e-09 1.365392199e-09 1.32697202e-09 1.080889508e-09 1.270793577e-09 1.225627452e-09 1.191686701e-09 1.226370919e-09 1.437826224e-09 1.562458314e-09 1.558764923e-09 1.310695242e-09 1.368947079e-09 1.33655762e-09 1.297135768e-09 1.348885492e-09 1.416163856e-09 1.699370435e-09 1.450963931e-09 1.082077013e-09 1.275005443e-09 1.35747149e-09 1.582391567e-09 1.188766967e-09 1.305823467e-09 1.678882991e-09 1.282335228e-09 1.202397332e-09 1.461008022e-09 1.238630059e-09 1.251023679e-09 1.284569152e-09 1.4335536e-09 1.23006178e-09 1.431293584e-09 1.039964749e-09 1.237089399e-09 1.188938125e-09 1.143537597e-09 1.203884134e-09 1.275810831e-09 1.164503524e-09 1.269878721e-09 1.280126217e-09 1.229979391e-09 1.268897825e-09 1.130307129e-09 1.150945386e-09 7.894636452e-10 1.037419785e-09 1.071453371e-09 9.697522589e-10 9.679704487e-10 1.040341757e-09 7.088797352e-10 8.017074348e-10 8.463882077e-10 9.429737389e-10 8.571255914e-10 9.11258744e-10 8.448916121e-10 6.764986433e-10 6.431288551e-10 6.947333076e-10 6.15765269e-10 4.501636163e-10 7.932380608e-10 4.327916175e-10 1.416736135e-10 4.222899614e-10 3.812054471e-10 8.257753472e-11 3.104906434e-10 5.363899116e-13 1.475080256e-10 2.115245972e-11 1.506431855e-10 1.062700786e-10 5.653952568e-12 7.164137788e-12 3.001077782e-12 1.030810715e-13 1.403670171e-18 3.098463067e-17 3.84450651e-18 4.107584425e-18 3.019208553e-19 7.323806116e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.437372797e-21 1.382917264e-18 6.272731099e-18 1.93088126e-18 5.210929557e-17 1.002689937e-15 1.416771837e-15 4.250899846e-16 3.327536833e-13 3.751819612e-12 1.625872657e-11 1.491505539e-10 5.666388906e-12 8.041630063e-11 2.361999735e-10 3.609943263e-10 4.522052296e-10 1.751680211e-10 7.440119752e-10 4.512625808e-10 5.559562047e-10 6.459654044e-10 4.586925005e-10 7.033362745e-10 7.952303679e-10 6.813935562e-10 9.492769765e-10 7.277047669e-10 4.602655779e-10 9.419857403e-10 1.143315587e-09 1.112223582e-09 1.186901276e-09 1.051743063e-09 7.890738638e-10 1.187395001e-09 9.545888008e-10 1.118317152e-09 1.269188304e-09 9.899436455e-10 1.143149911e-09 9.516181018e-10 1.374950286e-09 1.130718352e-09 1.198474998e-09 1.256667352e-09 1.45175779e-09 1.091419309e-09 1.231955933e-09 1.500056074e-09 1.280541573e-09 1.489992575e-09 1.546144976e-09 1.491462347e-09 1.354701749e-09 1.570533596e-09 1.213278498e-09 1.554904017e-09 1.431828385e-09 1.651199442e-09 1.405044236e-09 1.438431225e-09 1.411492039e-09 1.271144083e-09 1.739088603e-09 1.672821211e-09 1.589610349e-09 1.593812072e-09 1.288776703e-09 1.323109913e-09 1.407588833e-09 1.587167459e-09 1.546374505e-09 1.261135908e-09 1.402288877e-09 1.653307786e-09 1.725114989e-09 1.636592014e-09 1.792148141e-09 1.406797746e-09 1.406881449e-09 1.271490522e-09 1.378537781e-09 1.479751294e-09 1.368713535e-09 1.73618779e-09 1.423253309e-09 1.499760022e-09 1.278052659e-09 1.30764288e-09 1.528495907e-09 1.576481267e-09 1.241159623e-09 1.450856824e-09 1.545024093e-09 1.190828852e-09 1.344859475e-09 1.297430842e-09 1.429099783e-09 1.478005218e-09 1.395310406e-09 1.433474847e-09 1.723293205e-09 1.304939163e-09 1.688387965e-09 1.527901314e-09 1.519941266e-09 1.507924036e-09 1.343040737e-09 1.492441784e-09 1.644251277e-09 1.318833392e-09 1.244691532e-09 1.392786849e-09 1.447177363e-09 1.352787903e-09 1.243105789e-09 1.579215715e-09 1.439091734e-09 1.33988809e-09 1.474436075e-09 1.455337625e-09 1.300852497e-09 1.399215493e-09 1.287953403e-09 1.034509482e-09 1.296555394e-09 1.395422912e-09 1.278430407e-09 1.281370878e-09 1.185964358e-09 1.368184367e-09 9.386165613e-10 1.15001799e-09 1.224993113e-09 1.038347878e-09 9.887986963e-10 9.846339373e-10 8.008751545e-10 9.575991141e-10 8.114984173e-10 8.465742346e-10 7.590317844e-10 8.341768828e-10 9.329166922e-10 8.311405866e-10 8.478602254e-10 7.064299438e-10 6.46521887e-10 7.454303471e-10 4.340497566e-10 6.103692657e-10 7.165577685e-10 3.73293251e-10 5.290065986e-10 3.192738197e-10 4.364189589e-10 9.678734435e-11 8.853421094e-11 5.940901727e-12 1.129627906e-10 5.316377721e-12 3.65185455e-13 4.338691135e-12 2.069096766e-16 4.638126741e-14 1.780040229e-17 4.297106404e-15 1.416093935e-15 0 8.168031355e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.631798198e-19 7.099570849e-24 7.969968007e-20 4.536618159e-21 2.169391544e-15 5.796573888e-18 1.820380592e-12 5.2090217e-15 4.183325776e-12 3.844494049e-11 9.1148208e-15 1.6870321e-10 2.517778726e-15 1.748385534e-10 2.258908188e-10 3.113753227e-10 4.679499412e-10 3.935025903e-10 4.65678593e-10 6.935119981e-10 7.073616573e-10 7.716188984e-10 7.550933599e-10 7.23804868e-10 7.532142616e-10 7.854973416e-10 8.261816041e-10 8.750182843e-10 1.027902417e-09 8.743561847e-10 9.636377489e-10 1.027278529e-09 1.024234378e-09 9.381419109e-10 1.133925033e-09 9.558874259e-10 1.131995536e-09 9.557743187e-10 1.130629388e-09 1.31402731e-09 1.396791593e-09 1.182542382e-09 1.232294876e-09 1.363300472e-09 1.248303068e-09 1.153691754e-09 1.435538772e-09 1.379496902e-09 1.659458254e-09 1.531873073e-09 1.441388721e-09 1.69520147e-09 1.311470762e-09 1.466135462e-09 1.715982303e-09 1.747711622e-09 1.65697261e-09 1.388574702e-09 1.528471333e-09 1.711980303e-09 1.816698455e-09 1.47635406e-09 1.502593236e-09 1.577184352e-09 1.531633687e-09 1.38956338e-09 1.506786152e-09 1.732405196e-09 1.529339926e-09 1.616212384e-09 1.447730653e-09 1.65184049e-09 1.836531432e-09 1.47087973e-09 1.640110137e-09 1.79272522e-09 1.418692227e-09 1.425399605e-09 1.682927199e-09 1.338979259e-09 1.599022374e-09 1.664530552e-09 1.560094546e-09 1.431333141e-09 1.544803417e-09 1.461257459e-09 1.564433141e-09 1.525403616e-09 1.593099925e-09 1.584588321e-09 1.730633486e-09 1.649764626e-09 1.727470404e-09 1.458005187e-09 1.521272735e-09 1.692001998e-09 1.751832781e-09 1.51114112e-09 1.556619081e-09 1.597819784e-09 1.54463152e-09 1.497544089e-09 1.634078909e-09 1.413401318e-09 1.572306568e-09 1.415694187e-09 1.389842725e-09 1.631813315e-09 1.694452515e-09 1.569591008e-09 1.54148027e-09 1.54681244e-09 1.573940145e-09 1.507531512e-09 1.55500607e-09 1.660782806e-09 1.720904888e-09 1.641408933e-09 1.327469996e-09 1.481035406e-09 1.504897304e-09 1.588131462e-09 1.507540176e-09 1.302431473e-09 1.432724247e-09 1.123396216e-09 1.338432757e-09 1.08100665e-09 1.32475174e-09 1.382930555e-09 1.197826613e-09 1.161913026e-09 1.104146028e-09 1.227336368e-09 1.20540922e-09 1.055422657e-09 9.586951836e-10 1.194711972e-09 9.537718406e-10 5.419055877e-10 1.110591962e-09 9.12745738e-10 9.495381703e-10 9.831116017e-10 7.78530672e-10 8.502136886e-10 8.809663666e-10 8.696026763e-10 7.311380121e-10 7.587712876e-10 6.609814215e-10 7.775869398e-10 7.964775074e-10 4.169825684e-10 3.863267103e-10 3.099455194e-10 1.253621804e-10 2.817655999e-10 2.114894367e-10 1.032980899e-10 7.181145225e-13 1.000266241e-10 5.61180108e-12 1.408030492e-14 2.600755541e-16 1.065685089e-17 1.554507714e-15 2.286166193e-18 9.024505704e-18 7.410371059e-22 0 0 0 0 0 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.58031316e-19 3.085770788e-26 5.811288108e-18 2.403673884e-20 2.825827476e-18 3.63275357e-15 3.089895141e-15 2.224221059e-15 1.971619541e-13 7.2483267e-14 3.504221356e-11 4.036170946e-11 9.041630014e-11 8.53068163e-11 6.415074375e-11 1.848864688e-11 4.412759248e-10 1.20755246e-10 4.936983959e-10 6.521256925e-10 3.12229588e-10 3.728829878e-10 3.852730187e-10 8.22492275e-10 8.909426636e-10 7.622801184e-10 9.223798272e-10 1.120771053e-09 9.83498609e-10 1.131882635e-09 9.502085486e-10 1.118548587e-09 1.113902117e-09 1.44563669e-09 1.052969662e-09 1.202780486e-09 1.035990695e-09 1.264104459e-09 1.210805149e-09 1.323217367e-09 1.456002862e-09 1.167929721e-09 1.394418115e-09 1.34045517e-09 1.508142344e-09 1.49082099e-09 1.572958597e-09 1.196767607e-09 1.596289908e-09 1.494061548e-09 1.414593045e-09 1.511791147e-09 1.542666169e-09 1.777340183e-09 1.629470385e-09 1.70905306e-09 1.555278377e-09 1.747559618e-09 1.734618232e-09 1.498750321e-09 1.641872484e-09 1.544601385e-09 1.400124706e-09 1.70912408e-09 1.850090571e-09 1.780231736e-09 1.821393667e-09 1.730980206e-09 1.668637418e-09 1.82209498e-09 1.511726754e-09 1.866334709e-09 1.594032812e-09 1.568099598e-09 1.513485128e-09 1.705437287e-09 1.61397787e-09 1.468087051e-09 1.655354433e-09 1.760351318e-09 1.929438888e-09 1.488972282e-09 1.647305506e-09 1.675782999e-09 1.775063709e-09 1.61924731e-09 1.943474387e-09 1.804771654e-09 1.642164594e-09 1.595987378e-09 1.788508683e-09 1.759826041e-09 1.722310006e-09 1.560046018e-09 1.484576316e-09 1.720631498e-09 1.613623852e-09 1.519842456e-09 1.64980867e-09 1.926255619e-09 1.770558839e-09 1.694504973e-09 1.672047879e-09 1.778184162e-09 1.65191225e-09 1.676793491e-09 1.538359004e-09 1.54747758e-09 1.686350407e-09 1.679352736e-09 1.619005735e-09 1.471491703e-09 1.451497198e-09 1.601519814e-09 1.421898243e-09 1.564553911e-09 1.731085003e-09 1.900759864e-09 1.317849146e-09 1.456069199e-09 1.521408003e-09 1.654020729e-09 1.661627252e-09 1.791262599e-09 1.511204514e-09 1.397251018e-09 1.309428015e-09 1.337163421e-09 1.45983732e-09 1.45763009e-09 1.200445362e-09 1.177250827e-09 1.504849512e-09 1.168529039e-09 1.329285071e-09 1.024354532e-09 1.474097939e-09 8.116913931e-10 1.196351838e-09 1.166940159e-09 8.212434641e-10 1.075428843e-09 1.018658311e-09 1.236638083e-09 8.558991514e-10 1.053461926e-09 1.080216791e-09 4.869129951e-10 9.56345621e-10 7.385683323e-10 6.799158431e-10 8.791159607e-10 6.405533244e-10 6.994751144e-10 4.876314852e-10 4.357740732e-10 3.103504216e-10 1.694230414e-11 3.345442036e-10 1.725718153e-11 2.282193576e-10 5.168755001e-11 3.055857461e-11 2.700833524e-13 3.016023111e-14 5.336168445e-14 1.14617373e-15 5.27537773e-16 1.371417016e-17 3.656955311e-18 3.211143452e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.650062463e-19 2.045320317e-17 2.936064368e-17 3.33425628e-17 1.564464074e-15 1.208976672e-14 5.989715214e-13 5.280907462e-12 2.817745337e-11 3.79481668e-12 1.037727142e-10 5.144366528e-11 1.32051684e-11 1.080570142e-10 5.419796878e-10 3.99600162e-10 5.369767181e-10 7.927864771e-10 4.25146348e-10 5.865310012e-10 6.862709628e-10 6.21463483e-10 7.679580476e-10 8.533222656e-10 9.047057423e-10 1.039702956e-09 9.475533533e-10 1.169339466e-09 1.250686493e-09 1.097976979e-09 1.143100843e-09 1.233120908e-09 1.088361385e-09 1.002917794e-09 1.416419686e-09 1.12309901e-09 1.479972111e-09 1.564844426e-09 1.360326189e-09 1.533802477e-09 1.454487079e-09 1.634737327e-09 1.555868275e-09 1.345125052e-09 1.553917194e-09 1.187538209e-09 1.498158085e-09 1.79309443e-09 1.417434353e-09 1.537620887e-09 1.831169078e-09 1.42047604e-09 1.8967198e-09 1.654307656e-09 1.854736703e-09 1.707093857e-09 1.692380282e-09 1.863499221e-09 1.658699156e-09 1.902192642e-09 1.783213761e-09 1.750897455e-09 1.756296542e-09 1.822965416e-09 1.506842354e-09 1.920955286e-09 1.822483833e-09 1.797192468e-09 1.58961495e-09 2.060029801e-09 1.692915051e-09 1.680112073e-09 1.772138922e-09 1.811458851e-09 1.678083968e-09 1.874106415e-09 1.790456318e-09 1.91825035e-09 1.915523722e-09 1.990732085e-09 1.768523766e-09 1.712691789e-09 1.908859866e-09 1.478404059e-09 1.812690058e-09 1.759570991e-09 1.769413483e-09 1.871318892e-09 1.527217782e-09 1.324438071e-09 1.792440322e-09 1.843061756e-09 1.796152093e-09 1.875447991e-09 1.62137352e-09 1.77551267e-09 1.876109885e-09 1.940346484e-09 1.596250545e-09 1.943195413e-09 1.886419825e-09 1.830082236e-09 1.853309548e-09 1.940106958e-09 1.70090596e-09 1.803126269e-09 1.541736725e-09 1.985267565e-09 1.847308865e-09 1.846389711e-09 1.808443358e-09 1.910259138e-09 1.684588404e-09 1.534416287e-09 1.27820315e-09 1.632516811e-09 1.591799385e-09 1.755479133e-09 1.614205421e-09 1.690490664e-09 1.735646433e-09 1.638022591e-09 1.488426819e-09 1.665927239e-09 1.429684989e-09 1.470213367e-09 1.444073432e-09 1.213187026e-09 1.317084529e-09 1.629726062e-09 1.292514477e-09 1.512425019e-09 1.578349102e-09 1.381157461e-09 1.334070136e-09 9.761051315e-10 1.187812054e-09 9.734992458e-10 1.128130802e-09 1.256913381e-09 1.255429153e-09 1.443542531e-09 1.270017043e-09 1.025071708e-09 9.966111802e-10 1.112424688e-09 9.838650822e-10 9.216878977e-10 6.640649902e-10 6.164655166e-10 5.93852352e-10 5.266176273e-10 5.289993663e-10 6.503820006e-10 5.611383505e-10 3.112898529e-10 9.147125699e-11 2.979335311e-11 5.366917013e-13 7.238445799e-11 6.860860853e-13 4.958675108e-13 3.916379384e-13 1.325835952e-14 4.260414735e-13 1.280658668e-14 1.677682469e-17 3.601051409e-16 1.419784762e-18 3.522593047e-22 0 0 0 0 0 0 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.817551757e-24 8.923183409e-21 3.899179751e-16 3.224922793e-17 5.596199947e-14 7.785311419e-15 4.903888241e-13 2.300419942e-15 3.987679553e-11 2.656188725e-11 5.193986887e-12 2.048651376e-10 1.565672301e-10 2.290603152e-10 4.883224755e-10 5.317107285e-10 4.461503085e-10 6.25321817e-10 8.484894745e-10 8.907758319e-10 7.351682416e-10 1.011541868e-09 9.324328948e-10 9.233696421e-10 7.828796069e-10 1.049239482e-09 1.154779822e-09 8.578207736e-10 1.130145002e-09 1.420221691e-09 7.182501717e-10 1.224229498e-09 1.100613448e-09 1.332164974e-09 1.252850653e-09 1.293981551e-09 1.297312138e-09 1.35660048e-09 1.632483492e-09 1.434979193e-09 1.470896449e-09 1.628523292e-09 1.423047697e-09 1.732957875e-09 1.639863083e-09 1.708849372e-09 1.597739374e-09 1.807355858e-09 1.760825282e-09 1.677970664e-09 1.923575827e-09 1.499702942e-09 1.865206517e-09 1.703612715e-09 1.690655529e-09 2.058019389e-09 1.816865948e-09 1.903370922e-09 1.710886955e-09 1.897576515e-09 1.815048756e-09 1.761290394e-09 1.629739033e-09 1.758443139e-09 1.899141949e-09 1.964068572e-09 1.768954764e-09 1.949901127e-09 1.678206245e-09 1.733524298e-09 2.070889655e-09 1.953445024e-09 1.820347656e-09 1.848150307e-09 1.839720584e-09 1.917928368e-09 1.929683256e-09 2.046466281e-09 1.662087076e-09 2.013164487e-09 1.910373621e-09 1.891133567e-09 2.10774383e-09 1.736446966e-09 1.667077242e-09 1.914221552e-09 1.907353662e-09 2.088222113e-09 1.88863832e-09 2.043032586e-09 1.95514803e-09 2.049296827e-09 1.523893489e-09 1.547150483e-09 2.073332128e-09 1.947844421e-09 1.846570783e-09 1.883472571e-09 1.722464242e-09 1.807723649e-09 1.954188019e-09 1.784038054e-09 1.886649881e-09 1.664129708e-09 1.786777169e-09 1.679480954e-09 1.870716381e-09 1.808782137e-09 1.651630516e-09 1.945080785e-09 1.75598048e-09 1.75874884e-09 1.581807635e-09 1.917933021e-09 1.578866016e-09 1.854207921e-09 1.825200683e-09 1.76826747e-09 1.810323175e-09 1.744264176e-09 1.482751788e-09 1.742547629e-09 1.562697576e-09 1.57638538e-09 1.91524638e-09 1.681247087e-09 1.666034412e-09 1.526885239e-09 1.576830232e-09 1.676357242e-09 1.460642808e-09 1.522203633e-09 1.49160473e-09 1.192202471e-09 1.585552012e-09 1.500930274e-09 1.033811668e-09 1.338847812e-09 1.185093332e-09 1.085208529e-09 1.096392252e-09 9.286824526e-10 8.577007526e-10 1.143632711e-09 1.013086016e-09 9.778648237e-10 7.506486422e-10 1.005080539e-09 7.211474932e-10 4.759341392e-10 8.838405896e-10 5.402564797e-10 5.328850264e-10 6.878035672e-10 3.915371282e-10 4.098280694e-10 2.171322652e-10 5.564480718e-11 9.559134831e-13 7.509824143e-11 6.283089031e-12 1.612661566e-12 1.639471526e-12 4.06188653e-12 1.996363119e-15 8.134802491e-15 3.518427692e-17 7.772698429e-18 3.89838956e-18 1.670741128e-21 2.521972392e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.097402873e-18 6.698699997e-19 7.223496121e-18 4.392387826e-17 1.090108385e-17 4.429861715e-16 4.83979895e-14 8.330133542e-12 5.401844841e-12 2.122929859e-10 1.02528858e-10 5.053212359e-13 1.960928858e-10 4.495242417e-10 4.122077512e-11 4.662130153e-10 7.808865825e-10 5.468879421e-10 8.063420038e-10 8.421869739e-10 8.699368323e-10 1.039119828e-09 7.692241755e-10 6.080119329e-10 1.150265488e-09 9.188627794e-10 8.469363703e-10 1.167449538e-09 1.219059857e-09 1.382715043e-09 1.230768505e-09 1.16828594e-09 1.237516509e-09 1.362038934e-09 1.398165275e-09 1.497747549e-09 1.543098878e-09 1.290109921e-09 1.485261317e-09 1.582251006e-09 1.59101324e-09 1.8134051e-09 1.650904649e-09 1.287865124e-09 1.554806142e-09 1.635153796e-09 1.684271693e-09 1.75828744e-09 1.851644672e-09 1.673087523e-09 1.709290731e-09 1.931012692e-09 2.30517217e-09 1.962165515e-09 1.92683465e-09 1.968046078e-09 1.921939162e-09 1.956098836e-09 1.973625107e-09 1.832746691e-09 1.851669541e-09 2.184147203e-09 1.737896328e-09 1.956257559e-09 1.9325457e-09 2.177290225e-09 1.83645613e-09 1.899972775e-09 1.956715285e-09 1.863003625e-09 2.023389091e-09 2.00924694e-09 2.050460536e-09 1.938000523e-09 1.996689395e-09 1.78546931e-09 1.855708096e-09 2.371175262e-09 1.980180484e-09 1.83050351e-09 2.014940689e-09 2.296927439e-09 2.33867822e-09 2.139341965e-09 1.918512381e-09 2.026786529e-09 1.728804538e-09 1.994283478e-09 1.950722886e-09 1.786402478e-09 2.133130318e-09 1.586395168e-09 2.114142796e-09 1.990929398e-09 1.923176406e-09 2.03948986e-09 2.019058127e-09 2.176355035e-09 1.884412947e-09 1.646452981e-09 1.873353453e-09 1.847088191e-09 2.120708251e-09 1.863666958e-09 1.940475719e-09 1.966313334e-09 1.882661994e-09 1.849845231e-09 1.677093384e-09 2.073326724e-09 1.936913873e-09 1.859183396e-09 1.859405191e-09 1.574129951e-09 1.883939832e-09 1.730343738e-09 1.731789094e-09 2.245420825e-09 1.812001817e-09 1.730179128e-09 1.655699766e-09 1.740470489e-09 1.550762677e-09 1.597485854e-09 1.819760594e-09 1.544172849e-09 1.613885286e-09 1.444081813e-09 1.640278879e-09 1.666213908e-09 1.66071505e-09 1.565328536e-09 1.662561207e-09 1.619124879e-09 1.311403665e-09 1.319793315e-09 1.491887498e-09 1.32703145e-09 1.248473104e-09 1.115817684e-09 1.23956627e-09 1.109783394e-09 1.082051883e-09 1.243617568e-09 1.047324584e-09 9.96979394e-10 8.471667316e-10 8.405697618e-10 1.033896285e-09 6.449070895e-10 7.411932754e-10 8.273561393e-10 6.145933475e-10 3.985843377e-10 5.790812204e-10 9.092658862e-11 2.288270817e-10 1.556529624e-10 2.004413871e-10 1.51265364e-10 7.873771368e-11 6.069602924e-11 2.797091468e-13 1.213718913e-12 2.54336104e-13 2.843273291e-14 5.076114655e-15 6.979321311e-17 8.759061628e-19 0 8.630711256e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 3.630999724e-11 0 0 0 0 0 0 0 0 0 0 1.401585135e-18 2.396127986e-17 1.116383156e-17 2.903441784e-16 5.624755398e-16 5.924265098e-15 8.112618518e-13 5.42385593e-14 4.246765988e-11 2.05789022e-10 1.29536213e-10 1.814669983e-10 2.391854407e-10 4.707117063e-10 3.696425591e-10 3.129033732e-10 7.474352341e-10 9.149082762e-10 7.214370205e-10 7.754658738e-10 7.88429676e-10 8.504128743e-10 1.005039209e-09 7.911535921e-10 9.401131563e-10 1.183880424e-09 1.079853782e-09 1.055322967e-09 1.172196848e-09 1.462075061e-09 1.329632791e-09 1.41942326e-09 1.623047966e-09 1.424936445e-09 1.219871383e-09 1.502194217e-09 1.600081897e-09 1.44072307e-09 1.596085502e-09 1.697417019e-09 1.885186569e-09 1.749655801e-09 1.803313369e-09 1.881180796e-09 1.507156953e-09 1.600101459e-09 1.84695944e-09 1.933593258e-09 1.909417814e-09 1.9551011e-09 1.79273456e-09 1.987216681e-09 1.812553375e-09 1.87862021e-09 1.798742404e-09 2.003147904e-09 2.064644193e-09 1.832930286e-09 2.17801265e-09 1.998724118e-09 1.852033113e-09 1.9996935e-09 1.742745074e-09 2.179470663e-09 1.925961392e-09 1.889604385e-09 1.967900535e-09 2.061151455e-09 1.954576877e-09 1.974018844e-09 2.05982515e-09 1.744987742e-09 2.008814174e-09 2.022123304e-09 2.577997968e-09 2.021233199e-09 2.392363648e-09 1.977429971e-09 2.29109585e-09 1.952403899e-09 2.288096009e-09 2.072963945e-09 2.284754346e-09 2.096952048e-09 2.073622872e-09 1.802961429e-09 2.002799493e-09 1.858954895e-09 1.975773257e-09 1.848248361e-09 1.9022652e-09 1.961060908e-09 2.154127891e-09 1.918562398e-09 1.81401019e-09 2.049793321e-09 2.188456858e-09 2.062881074e-09 2.097089895e-09 2.17976266e-09 2.16147487e-09 2.083212571e-09 2.095053256e-09 1.893644884e-09 2.245346316e-09 2.081254141e-09 2.485786822e-09 1.963200293e-09 1.959685031e-09 1.880791917e-09 1.908975421e-09 2.029140442e-09 2.010490129e-09 1.946635709e-09 2.08196772e-09 1.977960727e-09 1.685363569e-09 1.974938291e-09 1.973518401e-09 1.716546505e-09 1.623103649e-09 1.958586608e-09 1.79975281e-09 1.310175265e-09 1.940485238e-09 1.80767683e-09 1.643222373e-09 1.75104283e-09 1.441675712e-09 1.891242786e-09 1.456988546e-09 1.602400259e-09 1.679071089e-09 1.321721238e-09 1.559932725e-09 1.436533307e-09 1.465325578e-09 1.360313205e-09 1.237709208e-09 1.282637732e-09 1.012253547e-09 1.075822664e-09 8.380860467e-10 1.171154208e-09 1.100301222e-09 9.003598432e-10 8.98639277e-10 8.731091181e-10 9.24198018e-10 1.009035792e-09 7.289199655e-10 7.278433266e-10 6.106629732e-10 3.665492351e-10 2.799750749e-10 3.820313495e-10 1.067128381e-10 1.711906618e-11 5.17143312e-11 7.762690199e-12 3.618058355e-12 6.842761731e-13 8.468449212e-13 8.401619857e-13 7.083291996e-15 3.187866069e-15 1.843574607e-16 1.634491816e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.504075964e-18 5.645047823e-27 3.674364133e-17 3.60911927e-16 8.858220138e-16 7.880147543e-14 1.762241219e-13 9.381107491e-14 5.000501567e-13 1.035997585e-11 2.22707601e-10 4.722443442e-11 1.859518013e-11 1.933216585e-10 3.139280492e-10 5.952114935e-10 5.530801948e-10 7.903447321e-10 7.605270904e-10 8.515056925e-10 6.950325228e-10 8.212095775e-10 9.055080983e-10 7.97240895e-10 8.364497818e-10 9.505726649e-10 1.220752099e-09 1.01461085e-09 1.030271077e-09 1.234803297e-09 1.493939759e-09 1.269519316e-09 1.776123887e-09 1.49597181e-09 1.544491505e-09 1.404303749e-09 1.20342477e-09 1.452583534e-09 1.776457727e-09 1.766000526e-09 1.714603502e-09 1.85295559e-09 1.503989625e-09 1.834701974e-09 1.619022091e-09 1.991276491e-09 1.949823521e-09 1.968015434e-09 1.752103905e-09 1.9274512e-09 1.919680438e-09 2.166852716e-09 2.218845287e-09 2.036709165e-09 1.974004547e-09 2.129938487e-09 1.886619023e-09 2.218720528e-09 2.19861385e-09 2.019661482e-09 2.17228476e-09 2.317128223e-09 2.100517748e-09 1.980789039e-09 2.421743469e-09 1.920730085e-09 2.144906723e-09 2.415698873e-09 2.008170396e-09 2.071944343e-09 1.996040509e-09 1.920945916e-09 2.259097421e-09 2.090317891e-09 1.927066707e-09 2.379193371e-09 1.953291523e-09 2.259470787e-09 2.006542383e-09 2.182047889e-09 2.218611895e-09 2.763279586e-09 2.322844402e-09 2.251820645e-09 2.359211999e-09 1.968740101e-09 2.136421043e-09 2.230932435e-09 1.959677823e-09 2.426198149e-09 2.194823696e-09 1.884996748e-09 2.269545305e-09 1.969157711e-09 2.114536813e-09 2.814695576e-09 2.061961825e-09 2.176853773e-09 2.08353758e-09 2.041195782e-09 2.182391888e-09 2.159055956e-09 2.295258827e-09 2.100372473e-09 1.993001331e-09 2.083922251e-09 2.277743937e-09 1.943097894e-09 2.051964331e-09 2.079146138e-09 2.123211726e-09 2.487563598e-09 2.236192384e-09 2.101557969e-09 1.795234011e-09 1.975603314e-09 1.936462201e-09 1.825095663e-09 1.931538164e-09 2.278036014e-09 1.811022594e-09 1.864770764e-09 2.177714519e-09 1.966244586e-09 1.956618996e-09 1.689970602e-09 1.610985917e-09 1.814057378e-09 1.804005057e-09 1.746381501e-09 1.641705868e-09 1.583510908e-09 1.498443214e-09 1.325796283e-09 1.364972906e-09 1.590677914e-09 1.461134758e-09 1.241272603e-09 1.341223733e-09 1.452798113e-09 1.697547011e-09 1.400315096e-09 1.232242279e-09 1.261405785e-09 9.647319735e-10 1.238174321e-09 1.241457979e-09 9.256314565e-10 9.324750067e-10 9.989049635e-10 8.499410846e-10 6.904920052e-10 9.495522528e-10 4.953908225e-10 5.195509092e-10 2.879778008e-10 1.338751092e-10 3.813312743e-10 1.270367251e-10 1.594469941e-11 2.223435036e-12 5.255729953e-11 1.802386348e-13 1.283520053e-14 6.818782499e-14 1.239450959e-14 5.422583283e-18 3.154944204e-20 9.966769401e-21 3.342055427e-18 0 1.820306286e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.712132271e-19 3.095431961e-18 3.44440442e-17 2.310294488e-17 2.120233844e-16 1.974970874e-14 1.575434119e-14 1.362033916e-13 3.134485404e-12 2.958353492e-12 1.546076e-10 2.459031068e-11 1.906333966e-10 1.130792257e-11 3.280665581e-10 7.948904949e-10 6.470951731e-10 6.409757381e-10 5.0099804e-10 9.0785295e-10 8.714128038e-10 8.138978313e-10 7.440107982e-10 1.09016252e-09 9.394492088e-10 1.04682482e-09 1.339905545e-09 1.119545993e-09 1.178070134e-09 1.611095854e-09 1.454556944e-09 1.385199303e-09 1.577096733e-09 1.368973254e-09 1.242519057e-09 1.690153003e-09 1.450644268e-09 1.564348351e-09 1.721967988e-09 1.584220018e-09 1.830622991e-09 1.483234734e-09 1.536894843e-09 1.778197621e-09 1.971106216e-09 1.830080396e-09 2.125592384e-09 1.793312107e-09 2.054022125e-09 2.408096858e-09 2.255852654e-09 2.057274749e-09 1.908678803e-09 1.852049589e-09 2.570292026e-09 1.850977775e-09 2.257378007e-09 2.641200764e-09 1.9814933e-09 2.815819372e-09 2.112091979e-09 1.751984979e-09 2.486522476e-09 2.618936304e-09 2.315913164e-09 3.021855288e-09 1.821493962e-09 2.736770115e-09 2.547375448e-09 1.845384039e-09 2.222695045e-09 2.026418764e-09 2.289268629e-09 2.134940748e-09 1.972199384e-09 2.008111184e-09 2.04422607e-09 2.10926772e-09 2.902592691e-09 1.591677713e-09 2.133622634e-09 2.016427086e-09 2.503475936e-09 2.159041118e-09 1.981315006e-09 1.943067081e-09 2.336749667e-09 1.887833156e-09 1.954150563e-09 3.631204453e-09 2.145293129e-09 2.961613451e-09 2.35168112e-09 2.212383221e-09 2.290309458e-09 2.137930171e-09 2.196096605e-09 2.287979899e-09 1.940489177e-09 2.305556586e-09 1.633991999e-09 1.682589313e-09 2.084147183e-09 2.302927847e-09 2.502015291e-09 2.660598935e-09 2.005209924e-09 1.782702952e-09 2.598416181e-09 1.981675539e-09 2.00860233e-09 2.211306012e-09 2.230581438e-09 2.653152679e-09 1.988539128e-09 2.263760713e-09 1.912238965e-09 2.337781202e-09 1.920614748e-09 1.903556579e-09 1.931061069e-09 2.101749186e-09 2.117531693e-09 2.289649529e-09 2.033361935e-09 1.831351639e-09 1.858851057e-09 1.916784687e-09 1.777547532e-09 1.901479815e-09 2.00454824e-09 1.813138073e-09 1.465639371e-09 1.526122334e-09 1.517157371e-09 1.863810867e-09 1.692852404e-09 1.408807728e-09 1.505381682e-09 1.662299888e-09 1.467455713e-09 1.312405226e-09 1.50975486e-09 1.051475949e-09 1.056371012e-09 1.447025407e-09 1.353810347e-09 1.023183106e-09 1.165346154e-09 1.215019391e-09 9.989004558e-10 7.296034826e-10 8.476304222e-10 7.161074261e-10 6.108839283e-10 7.459882665e-10 3.893575961e-10 2.287948449e-10 1.820523184e-10 2.289796198e-10 5.806102618e-11 1.70129318e-10 2.823621348e-11 5.465001099e-12 2.743315684e-14 6.187905737e-17 1.50992617e-14 1.146521942e-14 3.667477785e-18 2.518438942e-19 3.330123168e-17 2.930851828e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1.134038824e-31 0 0 1.112182709e-17 6.053468319e-18 6.162966746e-23 4.524452924e-16 1.896160738e-16 2.714852471e-16 7.790413216e-13 5.161311021e-14 1.321755692e-13 1.423396828e-11 8.216062436e-11 1.007415238e-10 1.425273261e-10 2.123207563e-10 6.855186095e-10 4.323462767e-10 5.676327741e-10 7.411636533e-10 8.502357188e-10 7.923544879e-10 1.066164078e-09 1.100527293e-09 9.847947938e-10 1.133963199e-09 1.23083654e-09 1.116752961e-09 1.184260128e-09 1.551484542e-09 1.409816463e-09 1.456365351e-09 1.575414673e-09 1.309872389e-09 1.370601066e-09 1.539587418e-09 1.542645343e-09 1.88393098e-09 1.967171595e-09 1.704711735e-09 1.812527552e-09 2.127159506e-09 2.032783052e-09 1.9251448e-09 2.046999025e-09 1.800258697e-09 1.997722308e-09 1.972495729e-09 1.876809537e-09 1.963935581e-09 2.265066028e-09 2.419272783e-09 2.257558218e-09 2.379673632e-09 2.025597247e-09 2.301363747e-09 3.520694186e-09 1.967596522e-09 2.233626679e-09 2.726038218e-09 3.693981522e-09 2.776570062e-09 3.356228078e-09 3.342742375e-09 1.987557616e-09 1.929776796e-09 2.442061957e-09 1.932747231e-09 3.316586069e-09 2.470730921e-09 2.315339589e-09 2.161026201e-09 3.179725227e-09 2.846898332e-09 2.418223432e-09 2.075038904e-09 1.966438273e-09 2.478197497e-09 1.951025716e-09 1.876341334e-09 1.813527027e-09 2.245366192e-09 2.237972596e-09 2.545775899e-09 2.341939981e-09 1.810267993e-09 3.478505095e-09 2.435890997e-09 2.694671846e-09 2.016034409e-09 2.16214306e-09 2.122038481e-09 2.056721043e-09 1.970926459e-09 1.910651825e-09 1.931295455e-09 2.012054434e-09 1.808285865e-09 2.439233474e-09 2.096443816e-09 2.174268145e-09 2.086669052e-09 1.856533344e-09 2.411846052e-09 2.092279961e-09 2.055822944e-09 3.015360307e-09 2.623469933e-09 2.371436118e-09 3.707647721e-09 2.736867989e-09 1.723538256e-09 3.13235665e-09 2.971582695e-09 2.510563046e-09 1.940170051e-09 2.791929273e-09 2.337233788e-09 2.285543439e-09 2.375849621e-09 2.161631245e-09 2.052455591e-09 2.093281769e-09 1.932544046e-09 1.784935851e-09 2.000646096e-09 2.048151968e-09 1.96857489e-09 2.221947925e-09 1.69263246e-09 1.762366377e-09 1.508417463e-09 2.020732534e-09 1.803436161e-09 1.918710496e-09 1.324035495e-09 1.609621287e-09 1.589021814e-09 1.571446892e-09 1.581586598e-09 1.287391649e-09 1.5707655e-09 1.426875822e-09 1.726835973e-09 1.492230153e-09 1.267976371e-09 1.106032186e-09 1.138225321e-09 9.1411147e-10 1.010751247e-09 9.755755733e-10 6.323216172e-10 9.808091384e-10 6.389732447e-10 7.6170944e-10 8.065858788e-10 9.486808243e-10 5.727015865e-10 8.708891421e-11 2.84723209e-10 1.577317856e-11 9.22752498e-11 8.967326513e-11 1.228012407e-11 1.380180341e-13 2.998513858e-12 1.813803524e-15 1.247491891e-14 2.80339098e-15 1.901364389e-18 5.749339913e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.027948716e-16 2.160574674e-17 2.057835207e-15 1.392183384e-14 2.212978874e-13 9.653466681e-13 7.508342411e-13 2.876374212e-12 1.056631513e-10 2.214115492e-10 5.476242579e-11 1.543712394e-10 1.787006343e-10 6.259732013e-10 5.534796042e-10 9.767397426e-10 6.290451155e-10 5.753454947e-10 8.142250158e-10 8.766607415e-10 9.29093105e-10 1.226901962e-09 1.407229033e-09 1.102061901e-09 1.452275727e-09 1.172174146e-09 1.347167936e-09 1.32035666e-09 1.586694048e-09 1.502486184e-09 1.530800653e-09 1.516130383e-09 1.687497739e-09 1.624092168e-09 1.546815627e-09 1.612697795e-09 1.687834098e-09 1.78824164e-09 2.013605714e-09 1.64932149e-09 1.827140028e-09 1.915184938e-09 1.889023032e-09 1.989047728e-09 2.007121241e-09 2.016788829e-09 2.156067097e-09 1.962558703e-09 2.121519282e-09 2.654527251e-09 2.388052965e-09 2.798666862e-09 2.637000159e-09 2.323361442e-09 2.928307846e-09 1.965902791e-09 2.3354731e-09 2.21430522e-09 1.745559935e-09 4.400579167e-09 2.175211724e-09 2.231213305e-09 1.787630354e-09 2.350853849e-09 1.702891412e-09 2.321180016e-09 2.654613682e-09 1.839596757e-09 2.34053566e-09 3.111278566e-09 1.972477077e-09 2.491581235e-09 2.564218271e-09 2.489188126e-09 2.097707846e-09 2.009342266e-09 2.698537886e-09 2.250338967e-09 2.181525896e-09 1.771188072e-09 2.687038286e-09 2.13491993e-09 1.95789115e-09 1.995635647e-09 1.834978692e-09 2.043175272e-09 2.312629457e-09 2.115279217e-09 3.04329072e-09 2.243152623e-09 2.109028519e-09 2.124155057e-09 2.036421038e-09 2.045793326e-09 1.9211541e-09 2.5884432e-09 1.96264471e-09 2.447558555e-09 2.812645347e-09 3.309553769e-09 3.172283835e-09 1.940069222e-09 2.889635907e-09 3.341290456e-09 2.364665392e-09 2.187952724e-09 2.978828884e-09 3.584194104e-09 3.090122233e-09 1.941446083e-09 2.293068024e-09 3.298766687e-09 2.480946693e-09 2.346504411e-09 2.913729387e-09 3.893260994e-09 1.876355536e-09 2.26575555e-09 2.882529747e-09 2.378071176e-09 1.93238286e-09 2.511179051e-09 1.895305761e-09 1.810315341e-09 1.714967951e-09 1.909565634e-09 2.14310679e-09 2.025497911e-09 1.919888205e-09 1.915198762e-09 1.582100217e-09 1.87596441e-09 2.120442377e-09 1.567013521e-09 1.642578657e-09 1.48841962e-09 1.603390412e-09 1.625953802e-09 1.622635957e-09 1.229645943e-09 1.402920393e-09 1.348966992e-09 1.126924282e-09 1.374996745e-09 1.20722619e-09 1.2865922e-09 1.331451512e-09 1.202079161e-09 7.570058962e-10 8.981586375e-10 8.396202179e-10 8.181518577e-10 7.64937785e-10 8.047683996e-10 5.325989599e-10 1.284195441e-10 4.047074564e-11 1.308922923e-10 1.45188003e-13 1.043306061e-10 6.467684122e-12 1.831863252e-12 1.858754661e-13 1.723516108e-13 1.972815155e-14 6.78556233e-17 7.868396398e-18 4.331619851e-18 2.731553752e-20 9.840243227e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +6.774001001e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 1.565558915e-24 2.835333701e-18 5.024919585e-18 4.285466605e-16 2.698794626e-16 3.545734968e-17 2.211365173e-13 9.47466741e-15 2.5315547e-12 4.171351424e-12 1.742279399e-10 2.25075153e-10 1.236455345e-10 1.148702959e-10 4.718015326e-10 6.178683367e-10 6.417431283e-10 5.283645176e-10 8.148436974e-10 7.135280981e-10 1.20491829e-09 1.272435369e-09 1.11590972e-09 9.520821716e-10 1.065270258e-09 1.334261768e-09 1.518181791e-09 1.323840976e-09 1.408934626e-09 1.404847902e-09 1.8485303e-09 1.542081013e-09 1.551358035e-09 1.70674769e-09 1.491399501e-09 1.904831288e-09 1.698750091e-09 1.935342691e-09 1.552094822e-09 1.875143736e-09 1.88916514e-09 1.666321965e-09 1.870668763e-09 2.447161633e-09 2.02864264e-09 2.047690365e-09 2.186989721e-09 2.06445492e-09 2.349669958e-09 2.845624006e-09 2.380431347e-09 2.298415974e-09 1.853159479e-09 2.730481191e-09 3.086392726e-09 2.277233308e-09 1.957652394e-09 3.742361037e-09 2.642478478e-09 2.906228359e-09 1.929119821e-09 1.968707603e-09 3.06310408e-09 3.893014826e-09 4.171400138e-09 3.239193644e-09 2.758872767e-09 2.176151243e-09 2.820286703e-09 2.705387945e-09 2.627203205e-09 2.273863238e-09 2.638511959e-09 2.331716133e-09 2.149763156e-09 2.341394078e-09 2.509864092e-09 1.895777935e-09 2.200532138e-09 2.386709938e-09 1.906442845e-09 1.986933824e-09 2.53654692e-09 1.831795687e-09 3.209449459e-09 2.099111592e-09 2.599795001e-09 3.21851405e-09 2.121860547e-09 2.337934485e-09 1.522437012e-09 1.984371681e-09 2.253681706e-09 3.381681258e-09 2.232952087e-09 2.198110007e-09 2.358375571e-09 2.2643086e-09 2.6373998e-09 1.852115795e-09 2.537537858e-09 2.492967509e-09 3.139423034e-09 2.876705745e-09 2.763975185e-09 3.664351775e-09 2.487040087e-09 2.038873802e-09 4.257725487e-09 2.386346443e-09 2.984220885e-09 3.815279953e-09 2.73011981e-09 4.063986053e-09 3.022747838e-09 2.318693574e-09 2.462977918e-09 3.68740221e-09 2.099809404e-09 2.937524023e-09 2.623315183e-09 1.686029382e-09 2.156623006e-09 2.16049629e-09 2.776775923e-09 2.663438696e-09 2.07887769e-09 2.13703456e-09 2.016864428e-09 1.713494299e-09 1.621517294e-09 1.989908135e-09 1.790988786e-09 1.888459256e-09 1.948102594e-09 1.467314894e-09 1.920710499e-09 1.606911073e-09 1.336143511e-09 1.438361676e-09 1.744994847e-09 1.286399719e-09 1.57069187e-09 1.513076942e-09 1.116376334e-09 1.165139961e-09 1.451553916e-09 1.31158941e-09 1.252573097e-09 1.197010013e-09 9.612253886e-10 9.738784621e-10 1.080128853e-09 9.343118259e-10 7.587424348e-10 6.124684211e-10 3.811820781e-10 3.847784413e-10 3.028969033e-10 2.277593044e-10 1.786265956e-10 2.738412767e-10 6.924947752e-11 1.174078052e-11 4.602671295e-13 2.75342942e-14 6.433645696e-16 2.56264717e-15 6.173718748e-16 3.049046698e-17 2.713880003e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.877765923e-18 8.934277024e-18 2.931716861e-17 8.023365814e-16 1.925187328e-15 7.340353332e-14 1.251097955e-12 5.936203247e-13 1.371725667e-11 1.854885381e-10 1.938635316e-10 2.69682989e-10 2.347381688e-10 2.772043858e-10 6.624256203e-10 5.444175964e-10 7.520279047e-10 6.380946828e-10 7.379675996e-10 1.142476258e-09 1.161972976e-09 8.845010203e-10 9.805718523e-10 1.123562878e-09 1.434830013e-09 1.216076521e-09 1.358553706e-09 1.549669602e-09 1.59944392e-09 1.50936822e-09 1.378944255e-09 1.667494544e-09 1.64343556e-09 2.0538217e-09 1.922544392e-09 1.730847864e-09 2.096590899e-09 2.001736152e-09 1.874400136e-09 1.88732785e-09 2.147812557e-09 1.819148322e-09 1.952773432e-09 1.759907376e-09 2.117160891e-09 2.46521364e-09 1.870368663e-09 2.329517949e-09 2.641558989e-09 3.139483486e-09 2.790167402e-09 2.206376585e-09 2.294808344e-09 1.969030546e-09 2.870110817e-09 1.885249275e-09 2.376765889e-09 3.641199487e-09 2.317693855e-09 2.452981327e-09 2.142389095e-09 2.673894024e-09 2.57550012e-09 2.956597228e-09 2.597118455e-09 2.687787222e-09 2.419088469e-09 1.593560034e-09 2.517495819e-09 1.538790267e-09 2.464090524e-09 1.694410682e-09 1.954263631e-09 2.208175682e-09 2.934884485e-09 2.384867902e-09 2.060062129e-09 2.109260929e-09 1.906746581e-09 1.880628193e-09 2.328284597e-09 2.426244034e-09 1.762199393e-09 2.404558449e-09 2.327300859e-09 2.248322305e-09 2.288160782e-09 2.595457556e-09 2.278206452e-09 2.302399262e-09 2.06081121e-09 2.109988988e-09 2.05637895e-09 2.311226041e-09 2.543908331e-09 2.383521571e-09 3.462955939e-09 2.500587071e-09 2.236298357e-09 2.729707647e-09 2.357727591e-09 2.096780903e-09 2.228027974e-09 2.278909634e-09 3.005252084e-09 3.246268882e-09 2.316499813e-09 3.699098487e-09 3.293834982e-09 3.867531488e-09 3.203613359e-09 2.775029843e-09 2.70112588e-09 4.150521862e-09 2.743143456e-09 2.467980597e-09 3.282576575e-09 2.350914777e-09 2.50474559e-09 3.868769117e-09 1.893613355e-09 2.195930964e-09 2.743839065e-09 2.662220229e-09 2.183115827e-09 2.221809819e-09 2.144362014e-09 2.033612117e-09 2.136521761e-09 2.042674517e-09 1.768926307e-09 2.187008351e-09 2.012362364e-09 1.996389313e-09 1.893148108e-09 1.670685982e-09 1.835897318e-09 1.562900276e-09 1.543414556e-09 1.43017982e-09 1.566852248e-09 1.454937857e-09 1.58197629e-09 1.54634214e-09 1.279302969e-09 1.643500953e-09 1.178561135e-09 1.225415625e-09 1.213996034e-09 1.056322201e-09 1.044713595e-09 7.266627099e-10 7.460176513e-10 9.088606757e-10 5.997390597e-10 3.391085728e-10 2.47713964e-10 1.490632901e-10 6.463389193e-11 1.606199941e-10 9.198030174e-11 4.557200301e-11 4.967482769e-12 2.154153321e-12 1.574855455e-14 2.359732864e-15 3.448483261e-16 1.964657791e-16 7.579463372e-17 7.075607557e-19 2.226787197e-21 0 0 0 0 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.180055316e-18 1.943186303e-18 2.904737057e-26 5.797175055e-17 2.066292769e-18 2.624886079e-14 8.976327847e-15 3.4735739e-13 1.330080929e-11 3.179218733e-11 1.90679803e-10 2.289802425e-10 1.820555671e-10 3.398181716e-10 3.622350754e-10 6.243920383e-10 4.516497668e-10 6.491345309e-10 7.86938044e-10 8.161678898e-10 1.110361573e-09 1.264267638e-09 1.06395665e-09 1.395944896e-09 1.435579328e-09 1.760316348e-09 1.257086126e-09 1.463117066e-09 1.380806687e-09 1.480765394e-09 1.73117433e-09 1.88167746e-09 1.75138103e-09 1.638065319e-09 1.851474524e-09 1.945900953e-09 1.842832617e-09 2.118828598e-09 2.056339076e-09 1.697873763e-09 2.070806586e-09 2.073039277e-09 2.172331453e-09 1.969105614e-09 2.089857189e-09 2.138237454e-09 3.879486137e-09 2.892747105e-09 1.931597855e-09 2.401163338e-09 2.38718683e-09 1.967753144e-09 3.057659821e-09 2.453329443e-09 2.462663338e-09 3.094043259e-09 3.103829551e-09 2.551498121e-09 2.574330958e-09 4.075219059e-09 2.523570085e-09 2.624414546e-09 2.523061846e-09 4.373968e-09 2.513805191e-09 3.948303631e-09 1.333494779e-09 2.973150625e-09 3.253920012e-09 2.822725106e-09 2.592310714e-09 2.644972226e-09 2.322150941e-09 2.101889937e-09 2.294830887e-09 1.608686878e-09 2.889846981e-09 1.936876589e-09 2.421855963e-09 1.847181378e-09 2.423985941e-09 1.581013732e-09 2.612168747e-09 1.690147121e-09 2.196481415e-09 3.055773218e-09 2.25647231e-09 2.527187472e-09 2.47499086e-09 1.641385766e-09 2.220756781e-09 2.796601164e-09 2.226541063e-09 2.356778478e-09 2.176992163e-09 1.886993705e-09 2.105906154e-09 2.606612543e-09 2.63636116e-09 2.698071389e-09 2.412414683e-09 2.518578551e-09 2.512201122e-09 3.385554465e-09 2.829446634e-09 2.720810012e-09 3.306729166e-09 4.1574935e-09 3.509243847e-09 3.751584695e-09 2.902694892e-09 3.194144804e-09 3.543675511e-09 2.622778823e-09 2.654643544e-09 2.620567904e-09 2.13647297e-09 2.706692229e-09 2.209159666e-09 3.529360603e-09 2.048487886e-09 3.898825111e-09 2.194837001e-09 2.326045203e-09 2.800519254e-09 2.655329333e-09 2.868557369e-09 2.050144101e-09 2.049907626e-09 1.881339295e-09 2.119965718e-09 2.130139862e-09 1.840888379e-09 2.050893663e-09 2.053546293e-09 2.149689675e-09 1.89566628e-09 1.869235366e-09 1.745566024e-09 1.749085455e-09 1.760165939e-09 1.543763004e-09 1.673633147e-09 1.519223652e-09 1.43224622e-09 1.426150376e-09 1.228557256e-09 1.086989648e-09 1.273292859e-09 1.152709284e-09 1.086800087e-09 9.401978014e-10 7.945760694e-10 8.649537159e-10 6.631028379e-10 9.357456547e-10 3.970424901e-10 1.795925158e-10 3.606845607e-10 2.01953924e-10 1.730559186e-10 2.367440355e-11 1.159158794e-10 3.221806605e-13 6.692008165e-13 4.856064422e-13 3.111161649e-15 3.979054126e-15 6.47863698e-16 6.839440818e-18 5.235601694e-18 4.34631343e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.093616276e-27 8.84195737e-19 2.371595272e-17 1.392268186e-15 8.822102346e-16 2.329124189e-14 4.115550976e-14 1.583118191e-14 6.408940641e-12 2.178049437e-11 1.4365674e-10 6.55389558e-12 2.357641074e-10 9.968104273e-11 4.795221559e-10 3.671634791e-10 4.922365201e-10 7.924800717e-10 6.519246685e-10 9.9108892e-10 8.297017615e-10 1.284089787e-09 1.17246589e-09 1.300777263e-09 1.204712668e-09 1.429402908e-09 1.574503338e-09 1.482440888e-09 1.563974712e-09 1.443468251e-09 1.747220031e-09 1.644473323e-09 1.920843495e-09 1.992314772e-09 1.911759643e-09 1.840486259e-09 2.024382478e-09 2.09678672e-09 2.017610729e-09 2.097185746e-09 1.98844315e-09 2.184819607e-09 1.994880868e-09 2.226684131e-09 2.711544112e-09 2.424235652e-09 3.890587677e-09 2.732141123e-09 3.765767599e-09 2.217339405e-09 3.988518899e-09 3.027848291e-09 2.097451421e-09 4.002428622e-09 3.753940063e-09 3.320577287e-09 3.855541298e-09 3.567442618e-09 2.291425673e-09 3.09965584e-09 3.457574451e-09 2.242205554e-09 4.267375179e-09 3.657437189e-09 3.424903457e-09 2.96752789e-09 3.003886013e-09 3.460276214e-09 3.825517537e-09 2.549358565e-09 2.820779886e-09 3.086009826e-09 2.630487766e-09 2.552830579e-09 1.876976232e-09 1.864612424e-09 2.569588091e-09 2.951175776e-09 2.303166976e-09 1.822167898e-09 2.409584e-09 2.116713722e-09 2.310931524e-09 2.07267946e-09 2.539485585e-09 3.419700342e-09 1.988900317e-09 2.601481636e-09 1.974490524e-09 2.790549487e-09 1.843836453e-09 2.320029646e-09 2.134889075e-09 2.173687028e-09 1.804746648e-09 2.07298108e-09 1.631486802e-09 2.856010579e-09 2.232539027e-09 2.355584335e-09 2.542900397e-09 2.480820608e-09 2.582617947e-09 2.79647076e-09 3.093905218e-09 3.418607112e-09 2.582570685e-09 3.32262534e-09 3.745370688e-09 3.955726698e-09 3.380255125e-09 3.174893098e-09 1.754928114e-09 3.872466149e-09 3.836733299e-09 4.354664513e-09 1.960637315e-09 3.083258037e-09 2.737885119e-09 4.244214952e-09 2.522208863e-09 3.134312671e-09 2.406499384e-09 2.306645032e-09 2.02902277e-09 2.801257944e-09 2.015912896e-09 1.966000129e-09 2.286569846e-09 2.468452875e-09 2.101618093e-09 1.989817692e-09 2.202018445e-09 2.093431512e-09 2.068888729e-09 1.74091388e-09 1.916160332e-09 1.800405715e-09 1.727388822e-09 1.992835836e-09 1.708458992e-09 1.546518654e-09 1.511026065e-09 1.469669209e-09 1.460852053e-09 1.316149733e-09 1.402214733e-09 1.392156483e-09 1.128901924e-09 1.091598947e-09 8.102578497e-10 1.150819884e-09 7.856251278e-10 8.587928949e-10 1.063079878e-09 5.995947242e-10 3.831416278e-10 3.911767009e-10 2.142157861e-10 3.451907084e-10 1.91753802e-11 5.012856157e-11 1.986473564e-11 2.226373744e-11 9.920298039e-14 8.532684576e-14 2.763125131e-16 1.666188174e-16 4.266017332e-16 0 6.82812125e-19 2.148103305e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.761382366e-18 2.053260193e-17 3.377793055e-16 5.384736762e-15 5.962414957e-15 4.324105431e-15 4.493355282e-13 3.514742941e-11 1.62202786e-12 2.467053152e-12 1.627886768e-10 3.998971697e-11 1.187344559e-10 2.86960051e-10 4.311296481e-10 6.920526828e-10 9.24528992e-10 8.828586727e-10 9.930560331e-10 1.131975673e-09 1.25531292e-09 1.238730697e-09 1.054542737e-09 1.322358495e-09 1.443026848e-09 1.508298743e-09 1.314124731e-09 1.629436394e-09 1.793528582e-09 1.651681575e-09 1.70719244e-09 1.59763961e-09 2.047353212e-09 1.772433081e-09 2.019743527e-09 1.77106696e-09 1.590966165e-09 1.968679058e-09 2.005570067e-09 2.353256682e-09 2.215172968e-09 2.195941196e-09 2.136029468e-09 2.068940021e-09 3.210006624e-09 2.160182409e-09 2.630619127e-09 2.311591053e-09 2.549997809e-09 3.024101984e-09 3.83855229e-09 2.852737271e-09 4.230574898e-09 2.886325474e-09 3.639318591e-09 2.141503298e-09 4.045335141e-09 3.309041999e-09 2.331881567e-09 2.226328211e-09 3.54719627e-09 5.156205728e-09 3.06923767e-09 3.799277053e-09 3.638378887e-09 3.860615833e-09 3.88044909e-09 2.490309126e-09 3.031934956e-09 2.897259202e-09 2.437924533e-09 3.337037353e-09 2.541522175e-09 1.60726995e-09 2.074419469e-09 2.679090725e-09 1.976053898e-09 2.483145547e-09 2.010370501e-09 2.014256327e-09 2.793584034e-09 1.91459381e-09 2.054849021e-09 2.598350372e-09 2.068816374e-09 2.333747543e-09 2.349879521e-09 2.7344187e-09 1.826988025e-09 1.943113543e-09 1.741254038e-09 2.410165525e-09 1.939154285e-09 2.146431952e-09 2.935216942e-09 2.361933636e-09 2.284101664e-09 2.396421072e-09 2.916326e-09 2.256516751e-09 2.737305388e-09 3.295958282e-09 3.287619308e-09 2.843105686e-09 3.837305507e-09 3.009434054e-09 3.895681067e-09 3.709534053e-09 2.547751174e-09 2.482102906e-09 2.294209072e-09 2.487061831e-09 3.545070814e-09 4.412859756e-09 3.721354173e-09 3.653721863e-09 3.069907228e-09 3.477954861e-09 3.844032201e-09 3.647559956e-09 3.408534032e-09 3.820044752e-09 3.163348413e-09 2.288864772e-09 3.218894161e-09 2.360747946e-09 2.150516535e-09 2.133117054e-09 2.343666095e-09 2.373155257e-09 1.919057672e-09 2.327830582e-09 1.919154102e-09 1.753927061e-09 2.012612981e-09 2.089240873e-09 1.673016225e-09 1.814570559e-09 1.754012468e-09 1.691853756e-09 1.723824435e-09 1.590997897e-09 1.398762904e-09 1.416522212e-09 1.72408998e-09 1.266086517e-09 1.567379008e-09 1.258906468e-09 1.124473154e-09 9.259947631e-10 8.764431713e-10 1.092179752e-09 1.047873333e-09 9.678994335e-10 7.178646066e-10 5.064018855e-10 2.866966477e-10 2.307392546e-10 4.107848625e-11 1.917579486e-10 2.160633143e-11 7.035238864e-13 3.256650205e-12 2.375231432e-13 2.238593055e-14 7.053928141e-15 1.226548917e-15 6.721626383e-16 4.92843191e-16 2.701534272e-17 7.885072461e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.436249688e-19 1.555133773e-18 6.923331492e-18 6.927867031e-20 1.539598009e-15 1.43032413e-15 1.454810141e-15 3.236495383e-15 1.55014105e-13 2.277228481e-11 1.070424602e-11 5.714722015e-12 2.790665308e-11 2.387796813e-10 1.973426158e-10 2.243055337e-10 5.844417013e-10 8.389471742e-10 4.215214779e-10 8.881050211e-10 9.406855831e-10 1.101542225e-09 1.08878894e-09 1.076966686e-09 1.237860421e-09 1.124302909e-09 1.73677343e-09 1.577118293e-09 1.920497297e-09 1.568981255e-09 1.738776388e-09 1.755654611e-09 1.576740663e-09 1.832474759e-09 1.97273535e-09 1.945209632e-09 2.016050027e-09 1.952061408e-09 2.16794624e-09 1.95459264e-09 2.002231542e-09 2.132100541e-09 2.468574745e-09 2.130443656e-09 1.803448582e-09 2.217331266e-09 2.324908221e-09 2.094821045e-09 3.03906479e-09 2.629750079e-09 3.047813536e-09 4.001636155e-09 4.462201516e-09 3.809634976e-09 2.466785465e-09 4.506906894e-09 3.595495721e-09 3.066571591e-09 3.277488515e-09 3.038108691e-09 3.419844944e-09 4.09668115e-09 2.980517942e-09 3.32533438e-09 3.154896472e-09 3.204979796e-09 4.122850665e-09 3.509068751e-09 2.892331779e-09 2.961039603e-09 3.529835997e-09 2.348203433e-09 3.026996276e-09 3.073683446e-09 2.726396797e-09 3.607146264e-09 2.31829027e-09 2.857483282e-09 1.786999229e-09 2.658707384e-09 2.274879174e-09 2.783876683e-09 3.216143719e-09 2.0289292e-09 1.719856588e-09 2.444129065e-09 2.790174223e-09 2.222161778e-09 1.880986862e-09 2.449492614e-09 2.258970675e-09 2.521366868e-09 2.38498367e-09 2.405605557e-09 1.923176487e-09 2.395814922e-09 2.273255364e-09 1.913430791e-09 2.1988977e-09 3.153787689e-09 2.279704664e-09 2.284205162e-09 2.157072951e-09 2.912464409e-09 2.400803559e-09 3.747926759e-09 2.943253986e-09 2.697842933e-09 4.772778779e-09 3.797460362e-09 4.501480234e-09 3.433597304e-09 1.950290266e-09 3.179380927e-09 3.492588949e-09 2.754247836e-09 2.956555786e-09 4.215432434e-09 3.709658582e-09 4.3329686e-09 3.290204284e-09 1.77353712e-09 3.431713326e-09 3.880695401e-09 3.043841218e-09 2.630875403e-09 2.682635132e-09 2.785708685e-09 2.398378013e-09 2.1781767e-09 2.348804885e-09 2.261228867e-09 2.118445196e-09 2.190661137e-09 1.964715083e-09 2.077869569e-09 1.992892367e-09 2.003961986e-09 1.860466538e-09 1.763477649e-09 1.80805749e-09 1.754316062e-09 1.81740363e-09 1.561982309e-09 1.692186967e-09 1.503149646e-09 1.507844107e-09 1.59993765e-09 1.442673109e-09 1.406714051e-09 1.175608948e-09 1.40772896e-09 1.264177534e-09 1.095959129e-09 5.498598653e-10 6.651229906e-10 8.07382312e-10 6.724887929e-10 4.544033182e-11 2.980193304e-10 3.150390891e-10 1.056947882e-10 3.46704569e-11 3.96048377e-12 7.830563741e-13 1.913861403e-14 3.564264692e-13 1.357958257e-14 3.061831611e-16 5.8726977e-16 5.809871637e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.90159414e-18 9.190238667e-18 5.535129756e-16 1.418225731e-16 5.818427658e-16 3.492024854e-15 1.086736079e-15 7.778763941e-11 2.340244623e-11 6.685059874e-11 7.830272863e-12 1.926056832e-10 2.226935305e-10 2.083622382e-10 1.362642793e-10 3.181473173e-10 7.188884613e-10 7.16419501e-10 8.138659878e-10 9.931479215e-10 7.21796063e-10 1.417624009e-09 1.19507624e-09 1.148365727e-09 9.676465492e-10 1.473027562e-09 1.660032768e-09 1.49478059e-09 1.619121899e-09 1.723240182e-09 1.57507365e-09 1.9205194e-09 1.692739358e-09 1.824837643e-09 2.133105244e-09 2.012523282e-09 2.071423112e-09 2.059210782e-09 1.992561121e-09 2.35052344e-09 2.201220048e-09 2.653611045e-09 2.319814149e-09 2.309311653e-09 2.326747535e-09 2.717226935e-09 2.344300642e-09 2.353601183e-09 3.805289272e-09 3.019781931e-09 2.392757824e-09 4.443644241e-09 3.317569774e-09 3.651508393e-09 3.45820424e-09 4.039247461e-09 4.013779404e-09 3.118790801e-09 5.648774568e-09 4.435616254e-09 4.045677498e-09 3.299693176e-09 3.686488061e-09 3.483147557e-09 3.894580986e-09 3.137045802e-09 3.655848008e-09 4.214894834e-09 4.687457732e-09 2.904515137e-09 2.494176845e-09 2.639849724e-09 2.538945284e-09 2.517532767e-09 3.011404762e-09 2.951729748e-09 2.666346363e-09 2.657246393e-09 2.550626241e-09 2.423208715e-09 2.657200122e-09 2.556026848e-09 2.108621426e-09 2.167722388e-09 1.827603219e-09 1.996479796e-09 2.245542031e-09 1.573443175e-09 2.349609781e-09 2.380048362e-09 2.288014438e-09 2.086938254e-09 2.79603221e-09 2.024561431e-09 2.142702387e-09 2.644963215e-09 2.457465808e-09 2.929702928e-09 2.815640372e-09 3.090713119e-09 3.237367027e-09 2.227398711e-09 3.004830128e-09 3.352090334e-09 3.956612285e-09 3.927202536e-09 4.221788878e-09 3.51020071e-09 4.08591019e-09 3.764719727e-09 4.114689902e-09 3.485213217e-09 3.681064191e-09 4.012664992e-09 2.570164714e-09 2.929990833e-09 4.252150736e-09 3.280221569e-09 3.515884752e-09 2.767315584e-09 4.196902464e-09 2.82309717e-09 2.125180822e-09 2.932130506e-09 3.099636192e-09 2.494303812e-09 2.537858706e-09 2.474787142e-09 2.448454546e-09 2.189292668e-09 2.116748391e-09 2.301568039e-09 2.045152039e-09 2.072979641e-09 2.030250866e-09 1.807617285e-09 2.017283461e-09 1.879874691e-09 1.786804233e-09 1.777637147e-09 1.937999189e-09 1.44130949e-09 1.628982393e-09 1.892936225e-09 1.588891825e-09 1.655735437e-09 1.490937278e-09 1.285858434e-09 1.235994159e-09 1.292065552e-09 1.299373904e-09 9.68398793e-10 8.937460054e-10 1.081908878e-09 1.077889866e-09 6.336368665e-10 5.210117949e-10 2.275410279e-10 1.592792458e-10 3.212336178e-11 1.075194541e-10 7.348308943e-11 8.599825234e-11 1.798617236e-11 2.185787896e-12 8.613956296e-16 2.316412776e-14 6.398001856e-16 2.090033906e-16 4.455238167e-17 1.59663034e-17 8.224094122e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.371258264e-20 0 0 2.783486497e-18 1.401160146e-15 6.656792023e-15 4.056195971e-14 3.992057566e-15 2.850690942e-13 1.675828246e-11 1.902619821e-11 2.844821025e-11 1.49621195e-10 2.080662404e-10 1.074363564e-10 4.18154891e-10 6.223735781e-10 8.179104593e-10 7.168621692e-10 9.166230485e-10 7.371000544e-10 1.070821308e-09 9.980338351e-10 1.461142593e-09 1.530903697e-09 1.320642402e-09 1.64581928e-09 1.439508142e-09 1.443336199e-09 1.707475117e-09 1.647528202e-09 1.998608728e-09 1.853580824e-09 2.174951269e-09 1.809167223e-09 1.887644354e-09 1.730327604e-09 1.941847411e-09 2.238825603e-09 2.214510633e-09 2.19049343e-09 2.426246528e-09 2.329983059e-09 2.129374825e-09 2.409188864e-09 2.527698007e-09 2.950322039e-09 2.881438871e-09 3.682196905e-09 2.447100635e-09 2.61736479e-09 3.735264069e-09 2.837038892e-09 4.260406966e-09 3.243208638e-09 3.664590674e-09 3.891376333e-09 4.219498123e-09 2.99067177e-09 4.080712506e-09 4.796985401e-09 3.580270083e-09 1.738523137e-09 4.166834276e-09 2.73287193e-09 3.295499362e-09 3.096936743e-09 4.123665007e-09 3.718148837e-09 4.613095177e-09 3.529309628e-09 2.308559244e-09 3.296293194e-09 2.890473722e-09 2.458763581e-09 2.18934305e-09 2.234017533e-09 2.922940609e-09 2.105124267e-09 1.935376465e-09 2.289935782e-09 3.217201185e-09 2.388191414e-09 2.783318946e-09 1.758733329e-09 2.401019217e-09 2.355031365e-09 2.813270364e-09 2.572220371e-09 1.716563506e-09 1.805627563e-09 1.886131493e-09 2.778877569e-09 2.234696129e-09 2.722242181e-09 2.820381504e-09 2.294949455e-09 2.787434343e-09 2.059749213e-09 2.043712258e-09 2.837811962e-09 2.548134385e-09 3.423764396e-09 3.052626906e-09 2.361631518e-09 2.976366216e-09 4.155083087e-09 3.543708287e-09 3.858353819e-09 3.144503503e-09 3.465571052e-09 2.978379056e-09 3.869737931e-09 3.497441866e-09 2.219189316e-09 3.092326784e-09 5.418600873e-09 3.065494602e-09 3.417698893e-09 3.525453479e-09 3.040084734e-09 4.052612443e-09 3.204309292e-09 2.646920122e-09 5.65298672e-09 3.629410158e-09 2.671538048e-09 3.530024894e-09 2.645250078e-09 2.51563068e-09 2.435504206e-09 2.236356809e-09 2.257479469e-09 2.388411044e-09 2.286092211e-09 2.210995737e-09 2.208088794e-09 2.147742526e-09 1.836809667e-09 1.909833493e-09 1.648543115e-09 1.821482367e-09 1.805467151e-09 1.725642406e-09 1.607673149e-09 1.843542234e-09 1.573588838e-09 1.335623621e-09 1.529363412e-09 1.36461227e-09 1.154478652e-09 1.110659894e-09 1.232934075e-09 8.498272167e-10 1.235236773e-09 8.444775376e-10 6.830971424e-10 5.461926205e-10 3.012657427e-10 2.088876035e-10 1.535228927e-10 9.440611283e-11 1.690221836e-10 6.648188721e-11 5.361405007e-12 7.741027424e-11 2.037239923e-14 2.293567363e-14 1.909224542e-15 1.031797682e-16 2.363828217e-17 4.32476681e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.954283371e-18 3.276206406e-18 1.990239335e-18 5.90169678e-17 7.665319706e-16 5.451232986e-16 3.384775904e-15 1.190098438e-14 5.937498493e-14 3.323155824e-12 2.496646499e-11 6.690168034e-11 2.77374208e-10 1.973001838e-10 1.138673956e-10 4.377640016e-10 5.185292761e-10 6.53459046e-10 9.032793233e-10 7.645320963e-10 9.49513565e-10 9.679371029e-10 1.166373117e-09 1.290511292e-09 1.566213127e-09 1.311064118e-09 1.617338076e-09 1.127404549e-09 1.565569818e-09 1.732870553e-09 1.461505418e-09 1.758022371e-09 1.960495914e-09 1.856178678e-09 2.073737817e-09 2.060276942e-09 1.856264239e-09 2.023250248e-09 2.060759842e-09 2.329415421e-09 2.383280246e-09 2.425592012e-09 2.587933453e-09 2.090682895e-09 2.365166108e-09 2.646106013e-09 2.945249586e-09 2.548786416e-09 2.665168505e-09 3.19591623e-09 3.790981838e-09 4.446620376e-09 3.102487129e-09 2.764263584e-09 3.928356363e-09 2.196573406e-09 3.418731747e-09 3.640517002e-09 4.696636865e-09 3.085408228e-09 3.582419379e-09 2.955365968e-09 3.361379427e-09 3.574132913e-09 2.2290193e-09 2.916189955e-09 3.720780758e-09 3.405550615e-09 3.446897389e-09 3.655960397e-09 2.908547397e-09 3.148204227e-09 2.706154856e-09 2.767509802e-09 2.337090477e-09 2.174811845e-09 1.566920808e-09 2.461717208e-09 2.456936178e-09 2.237550548e-09 2.476283717e-09 2.544511939e-09 2.514007804e-09 2.502421014e-09 2.348041865e-09 2.44776605e-09 2.350497907e-09 2.83894231e-09 2.746880741e-09 2.58865138e-09 2.423618447e-09 2.494876772e-09 2.238842279e-09 2.523132947e-09 2.505203876e-09 2.033696383e-09 2.695670613e-09 2.049624608e-09 2.289568899e-09 3.043511167e-09 2.184364524e-09 2.676947509e-09 2.822621819e-09 3.811459278e-09 3.401549882e-09 2.470334763e-09 3.870652979e-09 4.343905535e-09 3.410947822e-09 3.917980518e-09 4.178627793e-09 3.25132843e-09 3.265760754e-09 3.968454902e-09 3.20982716e-09 4.164572751e-09 3.389799267e-09 4.037914116e-09 3.308476135e-09 3.997742185e-09 2.867467881e-09 4.102234439e-09 3.020050819e-09 4.298321013e-09 4.739810256e-09 3.071302526e-09 3.354619513e-09 3.22226375e-09 2.950793832e-09 2.41096269e-09 2.380966846e-09 2.259443341e-09 2.410650277e-09 2.037872001e-09 2.197920139e-09 2.217308715e-09 1.911904873e-09 2.146019873e-09 2.009523914e-09 1.954156661e-09 1.732556924e-09 1.52771402e-09 1.776034855e-09 1.767683193e-09 1.520373254e-09 1.368769581e-09 1.516490514e-09 1.366122753e-09 1.380459949e-09 1.540846357e-09 1.522960938e-09 1.227439368e-09 9.584931921e-10 1.166932885e-09 1.160408328e-09 5.746627788e-10 6.850095928e-10 4.309994908e-10 1.779557286e-10 3.544355072e-10 2.466644362e-10 2.197370582e-10 2.416870866e-10 6.298063174e-11 9.324761545e-12 3.828684e-14 4.752115624e-14 2.68606856e-15 3.441854178e-17 3.459846133e-15 2.734542928e-16 1.325314037e-18 1.758410842e-18 0 0 0 6.672225859e-20 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 2.89441481e-24 0 0 0 4.173526173e-19 1.680488034e-25 2.521579411e-16 5.558474838e-17 4.614011626e-16 2.659193592e-14 2.931753381e-14 5.292190367e-14 3.541134273e-13 2.496210887e-12 6.087100112e-11 8.256567009e-11 2.805469325e-10 2.449849689e-10 3.164065246e-10 2.68104853e-10 6.596740216e-10 9.09052337e-10 8.708868127e-10 9.036565558e-10 1.143356434e-09 1.256657218e-09 1.365025284e-09 1.579658365e-09 1.578819348e-09 1.617487599e-09 1.604579592e-09 1.745104782e-09 1.448012274e-09 1.879046906e-09 1.921662583e-09 1.903793159e-09 1.943279653e-09 2.228450334e-09 2.224968881e-09 2.147820318e-09 2.043812393e-09 2.212858386e-09 2.230851773e-09 2.242262485e-09 2.512645441e-09 2.482255064e-09 2.605208925e-09 2.547223702e-09 3.142503808e-09 2.58064726e-09 2.631829681e-09 3.1447015e-09 3.159216221e-09 3.109378504e-09 3.927072375e-09 3.376800125e-09 2.304021785e-09 4.394408889e-09 4.698221077e-09 2.936111774e-09 4.46439662e-09 4.081230447e-09 3.497160805e-09 4.399335382e-09 3.82237157e-09 3.279853883e-09 3.598847236e-09 2.934289396e-09 3.929416304e-09 3.885750068e-09 2.84717469e-09 2.374769373e-09 3.805953455e-09 3.113664623e-09 3.243545964e-09 2.620537871e-09 3.343570832e-09 3.150888955e-09 2.913681774e-09 2.409951552e-09 2.601974067e-09 2.975113939e-09 3.022592164e-09 2.596420867e-09 2.23804431e-09 2.464637618e-09 1.910680954e-09 1.828910035e-09 1.924727153e-09 2.37925734e-09 2.808919852e-09 1.892242943e-09 1.925689137e-09 2.607667519e-09 2.793363729e-09 2.061689897e-09 1.749934325e-09 3.033775975e-09 2.713583359e-09 3.34333968e-09 2.732336545e-09 1.632877576e-09 2.615222726e-09 3.88801923e-09 2.515125488e-09 4.255742463e-09 3.124884918e-09 2.251282685e-09 4.54494246e-09 4.646167205e-09 4.405517776e-09 3.492531127e-09 4.241467606e-09 2.175860359e-09 4.206624748e-09 3.43268973e-09 5.001817125e-09 4.132386656e-09 5.256360418e-09 5.060045514e-09 3.582400228e-09 3.526985267e-09 5.515015696e-09 2.746255344e-09 2.927835443e-09 3.618504414e-09 3.425485038e-09 3.588350578e-09 3.673469476e-09 2.990749771e-09 2.467166915e-09 2.454056138e-09 2.896816011e-09 2.333666811e-09 2.22216126e-09 2.40849825e-09 2.258805136e-09 2.431761808e-09 2.084692838e-09 1.948083805e-09 2.207373975e-09 1.926393944e-09 1.943153008e-09 1.96227065e-09 2.038741475e-09 2.062504477e-09 2.101005454e-09 1.707844583e-09 1.734321604e-09 1.772673439e-09 1.352368404e-09 1.583799739e-09 1.359585822e-09 1.513940338e-09 1.473343852e-09 1.518602026e-09 9.227149705e-10 7.705485265e-10 6.246304518e-10 6.984079966e-10 4.665933017e-10 3.337930653e-10 1.886749817e-10 2.243318897e-10 2.63525143e-10 2.416669561e-11 2.741085681e-11 7.891130881e-12 3.330161897e-13 6.70344145e-14 3.561609722e-14 4.277388673e-15 2.613740725e-17 1.43460265e-16 5.428960626e-17 3.655556623e-18 2.318253623e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.563262394e-27 0 6.852804312e-19 4.883259776e-17 1.294431391e-16 6.387109822e-17 1.036114965e-15 1.337828274e-14 1.601932444e-13 5.346366369e-12 2.196806657e-11 1.781363895e-12 9.272189142e-12 2.289174876e-10 2.538653726e-10 2.892968566e-10 7.469673399e-10 9.328488262e-10 9.568942676e-10 8.541603267e-10 1.112483519e-09 1.216832007e-09 1.381886454e-09 1.234995999e-09 1.453411836e-09 1.326637172e-09 1.729029588e-09 1.533519989e-09 1.827822609e-09 1.599508055e-09 1.834836208e-09 1.865563508e-09 1.840195912e-09 1.842123663e-09 2.163495651e-09 1.993628093e-09 2.165092876e-09 2.168018173e-09 2.224656809e-09 2.190001241e-09 2.218416314e-09 2.689786753e-09 2.428301773e-09 2.299192631e-09 2.254840207e-09 2.535082553e-09 2.556216276e-09 3.105658454e-09 3.651443078e-09 4.066307738e-09 4.128151792e-09 4.266333051e-09 2.878098049e-09 4.005762173e-09 3.61372005e-09 4.557761498e-09 3.418075835e-09 4.925722749e-09 3.002936075e-09 4.23499835e-09 2.687914562e-09 3.259310768e-09 3.204045692e-09 4.147038726e-09 3.775245261e-09 2.98108761e-09 3.94620663e-09 5.093769407e-09 3.661218383e-09 3.099971067e-09 3.612254577e-09 3.344821359e-09 3.221218839e-09 3.069224978e-09 3.391135375e-09 2.624573465e-09 2.955384822e-09 2.7007458e-09 2.540315033e-09 2.873908118e-09 1.846443815e-09 2.44064757e-09 2.48123242e-09 2.350402796e-09 2.753213589e-09 2.665423847e-09 1.792456526e-09 2.237120476e-09 2.376770047e-09 2.145712343e-09 2.226895881e-09 2.295410979e-09 2.562561236e-09 2.45728887e-09 2.538796042e-09 2.729603434e-09 2.081481412e-09 2.494938102e-09 2.760813177e-09 2.729925247e-09 2.903303035e-09 2.957208433e-09 2.948729116e-09 3.952443986e-09 2.917583514e-09 4.194215171e-09 3.416541683e-09 3.682088616e-09 4.122164831e-09 3.453683286e-09 4.482397268e-09 4.906985055e-09 5.146126355e-09 4.573698023e-09 4.480569486e-09 3.955151491e-09 6.457136892e-09 3.490273586e-09 5.362260995e-09 3.698202818e-09 3.1419752e-09 4.851784997e-09 2.435415042e-09 3.830996237e-09 4.211120142e-09 3.72402023e-09 4.045126293e-09 3.435957686e-09 2.414542801e-09 2.654903691e-09 2.35290339e-09 2.855786166e-09 2.274415395e-09 2.236215337e-09 2.600827763e-09 2.321596615e-09 2.576637586e-09 2.174185467e-09 2.148805064e-09 1.783982492e-09 2.018211176e-09 1.949725947e-09 1.883142602e-09 1.534021885e-09 1.717435975e-09 1.606993634e-09 1.760838304e-09 1.765358077e-09 1.603771028e-09 1.499295356e-09 1.326484871e-09 1.464327855e-09 1.372416111e-09 8.765758685e-10 1.018559947e-09 9.123908942e-10 3.826881645e-10 8.013098592e-10 2.523570198e-10 2.613526264e-10 1.760493864e-10 3.763730322e-12 2.462552032e-11 7.420533971e-13 1.886776505e-12 5.432108019e-15 3.267164636e-13 3.787454616e-16 5.47795142e-15 5.602714701e-17 4.638765109e-17 2.817186665e-18 0 5.704011616e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.633181623e-20 3.013404584e-15 1.207035065e-15 8.121617716e-16 2.136007725e-14 1.75893415e-13 2.300736612e-11 6.173546127e-11 2.041903791e-11 1.867213718e-10 3.004638206e-10 2.387701075e-10 6.029174389e-10 7.679082066e-10 5.748976419e-10 1.158430145e-09 6.243799018e-10 9.528926234e-10 1.134589331e-09 1.1991589e-09 1.41478774e-09 1.665989771e-09 1.584942749e-09 1.452527486e-09 1.559082245e-09 1.682707957e-09 1.9029487e-09 1.812959463e-09 1.914475632e-09 1.989323212e-09 1.878369166e-09 2.249107398e-09 2.213859418e-09 2.215156857e-09 2.319856184e-09 2.211220821e-09 2.351790238e-09 2.380031617e-09 2.675172394e-09 2.530900499e-09 2.356782993e-09 2.585682389e-09 3.373812598e-09 2.753206758e-09 3.548364378e-09 2.829150603e-09 2.36072969e-09 3.035199861e-09 2.465779692e-09 3.484504219e-09 4.678784914e-09 2.291485689e-09 3.502775931e-09 3.348966408e-09 4.751178854e-09 5.03303244e-09 2.882515827e-09 5.661802024e-09 4.232897959e-09 4.140351601e-09 3.672914104e-09 3.315345733e-09 4.607918503e-09 3.08178932e-09 3.585972281e-09 3.760451246e-09 3.76734407e-09 3.017268114e-09 2.775370668e-09 2.920062449e-09 3.870102209e-09 2.721961474e-09 2.954770616e-09 2.31302127e-09 2.606838115e-09 2.840467579e-09 2.501049605e-09 2.445767132e-09 2.688421272e-09 2.263418548e-09 2.134865594e-09 2.707284642e-09 2.531269765e-09 1.976672078e-09 2.50414687e-09 2.304177145e-09 2.081436657e-09 2.458475592e-09 2.400928784e-09 2.74040075e-09 2.484273517e-09 3.121059557e-09 2.508947417e-09 2.859572708e-09 3.065594103e-09 3.146822495e-09 2.567328539e-09 2.593001675e-09 2.894427223e-09 3.15266811e-09 3.464209923e-09 3.867130169e-09 3.289860385e-09 3.732430048e-09 5.065734402e-09 3.968823013e-09 4.540960987e-09 3.045287531e-09 5.068919531e-09 2.67075661e-09 2.910868933e-09 5.169108392e-09 3.871483519e-09 4.333197782e-09 4.669375576e-09 3.008235279e-09 4.481089297e-09 4.406575773e-09 4.177401967e-09 3.575228944e-09 2.465591555e-09 3.386870983e-09 2.701811716e-09 3.703464521e-09 3.387746832e-09 2.624906789e-09 2.332731875e-09 2.674844694e-09 2.705185519e-09 2.438007194e-09 2.313300065e-09 2.497235472e-09 2.313946481e-09 2.282757657e-09 2.088368455e-09 2.183465503e-09 1.852632319e-09 2.03744141e-09 1.875626846e-09 2.141840037e-09 1.588827716e-09 1.880913978e-09 1.747879986e-09 1.61632622e-09 1.780426134e-09 1.52220441e-09 1.394213925e-09 9.856677598e-10 1.290709632e-09 1.299583887e-09 1.119907293e-09 9.775323123e-10 7.413026118e-10 7.445610767e-10 5.735491856e-10 2.231184578e-10 1.595417236e-10 1.2807619e-10 1.124609535e-10 9.165732577e-11 3.910301773e-12 2.640447079e-11 7.685949311e-14 1.775175555e-13 1.052285022e-14 1.020402754e-14 4.156471926e-16 3.500372172e-17 4.240956807e-18 4.301273409e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 8.806550581e-11 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.632755587e-18 1.348123021e-18 5.195150822e-16 8.478093272e-16 1.081655787e-13 8.827634781e-14 1.412946929e-14 1.95528081e-12 1.785789785e-11 1.760628698e-10 1.371749871e-10 7.081601483e-11 3.367957188e-10 4.168999871e-10 3.953366305e-10 9.49962414e-10 9.409717256e-10 1.095825442e-09 1.115659779e-09 1.154236228e-09 1.277219971e-09 1.42273161e-09 1.46594447e-09 1.659836699e-09 1.754744748e-09 1.807070365e-09 1.694642174e-09 2.109792622e-09 2.080498532e-09 1.919782502e-09 1.95733762e-09 1.997378427e-09 1.877657444e-09 2.479049258e-09 2.341274327e-09 2.327125151e-09 2.325349772e-09 2.389596063e-09 2.510776205e-09 2.498236069e-09 2.673141543e-09 2.722821691e-09 3.059832397e-09 2.875231822e-09 3.232754533e-09 3.397135302e-09 2.527053785e-09 2.871474469e-09 2.854786499e-09 4.552090487e-09 4.114147656e-09 4.567505671e-09 3.252451118e-09 3.779816531e-09 4.748460482e-09 3.425067532e-09 4.978549376e-09 5.260447654e-09 5.266865198e-09 4.384572284e-09 5.011231434e-09 3.730622002e-09 3.426586856e-09 3.702535627e-09 2.576523538e-09 4.274736216e-09 3.932163121e-09 2.860723584e-09 4.238989377e-09 3.211171617e-09 2.697782662e-09 2.634177749e-09 2.751059213e-09 2.671918472e-09 2.678133297e-09 3.313354702e-09 2.514858598e-09 2.110645763e-09 2.163846344e-09 2.529117816e-09 2.291181244e-09 1.728402751e-09 2.7115196e-09 3.15818241e-09 2.379314128e-09 2.296016739e-09 2.829557081e-09 2.334289447e-09 2.16585519e-09 3.283013825e-09 2.961370029e-09 2.926707827e-09 1.883695364e-09 2.764297859e-09 2.787790477e-09 3.107974577e-09 3.1399527e-09 3.401808195e-09 2.251730362e-09 2.980692821e-09 3.67171253e-09 3.456606664e-09 3.946629284e-09 4.007508465e-09 4.802454119e-09 4.140336096e-09 4.058684565e-09 3.920855969e-09 4.502366069e-09 3.152699192e-09 3.182513829e-09 4.323382799e-09 5.157687338e-09 3.886598602e-09 4.845001441e-09 5.080363969e-09 3.665269478e-09 3.1036524e-09 4.2896048e-09 3.950505335e-09 2.618755175e-09 3.908641032e-09 3.671982334e-09 2.757815941e-09 2.813191299e-09 3.257627448e-09 2.970976904e-09 2.605821269e-09 2.5452703e-09 2.685605863e-09 2.397522457e-09 2.581930344e-09 2.301945129e-09 2.341915637e-09 2.366062757e-09 2.348223244e-09 2.283935138e-09 2.054682422e-09 2.188555352e-09 2.102231009e-09 2.02527013e-09 1.933563128e-09 1.942337062e-09 1.898592055e-09 1.838045045e-09 1.645885179e-09 1.234824738e-09 1.395212244e-09 1.712928333e-09 1.216022078e-09 1.1800904e-09 1.310754599e-09 1.022023332e-09 6.892353087e-10 8.794733349e-10 6.227979903e-10 4.283993537e-10 2.40959872e-10 2.17964763e-10 2.638636278e-10 2.3271563e-10 2.212039254e-11 4.447064064e-12 2.630184313e-13 2.013047578e-13 1.824603035e-14 2.202824641e-15 8.83805873e-16 1.757870523e-17 9.420715042e-19 2.329920993e-18 0 0 0 0 0 0 0 0 7.809620173e-11 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.819998604e-17 2.116521139e-18 3.841692704e-17 9.78043026e-18 2.302833347e-15 4.78871773e-14 2.025288024e-14 4.138730449e-13 1.49298857e-11 3.841627326e-11 1.562632716e-10 1.840825626e-10 3.673277514e-10 3.749618438e-10 1.096657628e-10 5.635717575e-10 8.981616692e-10 8.474724056e-10 1.089055266e-09 1.08416289e-09 1.154795361e-09 1.050295518e-09 1.394312783e-09 1.598101805e-09 1.359055894e-09 1.597974427e-09 1.569307668e-09 1.965749332e-09 1.548936027e-09 2.123770428e-09 1.957404287e-09 1.587776476e-09 2.054896336e-09 2.282082474e-09 2.312597277e-09 2.069068162e-09 2.263555561e-09 2.36460957e-09 2.868350835e-09 2.505113951e-09 2.478789656e-09 2.74569428e-09 2.701392631e-09 2.712827927e-09 2.833415186e-09 3.13807564e-09 2.472337104e-09 3.263018452e-09 3.39532275e-09 2.882009794e-09 4.692572505e-09 2.410637469e-09 4.739232141e-09 4.473029915e-09 4.68811815e-09 4.431028087e-09 4.367414705e-09 2.992460728e-09 4.47907146e-09 3.179599693e-09 5.270697647e-09 3.619844103e-09 4.117382469e-09 3.919139657e-09 4.018747045e-09 4.122754846e-09 3.718973747e-09 3.708134173e-09 2.595043984e-09 2.476015052e-09 3.512655644e-09 3.575488386e-09 2.894447089e-09 2.770430674e-09 2.600428002e-09 3.260282063e-09 2.48238794e-09 3.255552297e-09 2.44100788e-09 3.004584067e-09 2.581102431e-09 2.331691743e-09 2.555460258e-09 2.817634387e-09 2.993426705e-09 2.476396043e-09 3.183767524e-09 2.792833128e-09 2.668170126e-09 3.002481665e-09 2.043906065e-09 1.893121827e-09 3.324742711e-09 3.164841376e-09 3.295491521e-09 2.979782321e-09 2.831178721e-09 2.454097637e-09 2.085305669e-09 3.309469122e-09 2.822348602e-09 3.046349916e-09 4.057060898e-09 2.542035841e-09 3.379051699e-09 5.694550892e-09 6.030844281e-09 3.945823559e-09 3.854381215e-09 5.079511853e-09 4.095116189e-09 5.035982127e-09 5.064922088e-09 4.334511198e-09 4.12111163e-09 4.585355517e-09 4.697018816e-09 3.570320315e-09 3.574678733e-09 4.500467621e-09 2.867483743e-09 3.957596403e-09 4.086333499e-09 5.162324487e-09 3.591810635e-09 4.558583653e-09 2.599653378e-09 2.743723812e-09 2.866101949e-09 2.5996279e-09 2.178883063e-09 2.410011431e-09 2.523706863e-09 2.417584882e-09 2.166807617e-09 1.937496539e-09 2.352234139e-09 2.165308274e-09 2.347154727e-09 2.215896218e-09 2.111671161e-09 2.022755881e-09 2.021801564e-09 1.850559789e-09 2.033590336e-09 1.650904827e-09 1.42078996e-09 1.635217435e-09 1.600594438e-09 1.553035079e-09 1.616062779e-09 1.227506059e-09 1.29805821e-09 1.027397261e-09 8.454505142e-10 9.794706677e-10 5.635600557e-10 4.273077799e-10 2.31967288e-10 8.349723988e-11 2.401897599e-10 8.791931352e-11 8.80062918e-11 2.268467543e-14 4.759689038e-13 1.838522002e-13 1.745136195e-14 6.846253996e-15 2.003709736e-17 2.460093987e-17 1.382301884e-18 3.531333061e-22 0 0 0 0 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.708196219e-18 2.469689563e-21 5.626090779e-18 4.957044146e-17 2.440128154e-16 1.280647063e-14 6.888770387e-14 2.463263617e-12 8.336878426e-12 4.368542169e-11 1.253056054e-10 2.170778087e-10 2.928161349e-10 1.944365864e-10 6.803966798e-10 7.783545995e-10 8.44826816e-10 9.496722149e-10 1.186363136e-09 9.697373741e-10 9.888772146e-10 1.035941806e-09 1.297378462e-09 1.653566426e-09 1.432763772e-09 1.372580406e-09 1.790408808e-09 1.698942602e-09 1.867522588e-09 1.872149318e-09 2.128792081e-09 2.060371371e-09 2.368874584e-09 2.228370197e-09 2.47561684e-09 2.234251196e-09 2.429480757e-09 2.584644177e-09 2.254870046e-09 2.491983653e-09 2.518935164e-09 2.686803256e-09 2.621044983e-09 2.695373729e-09 2.902270786e-09 3.405450661e-09 3.384750914e-09 3.362575389e-09 4.334897164e-09 3.295508334e-09 3.034271609e-09 5.167981724e-09 4.608825802e-09 4.138179111e-09 3.821081532e-09 4.508318022e-09 5.01911464e-09 5.043018986e-09 3.806042558e-09 4.800316979e-09 4.122753664e-09 4.846377755e-09 4.912860821e-09 3.558658472e-09 3.349845686e-09 3.5430691e-09 4.138685519e-09 4.591749238e-09 4.235087887e-09 3.127479002e-09 3.628520679e-09 3.009012238e-09 3.791233312e-09 2.973755857e-09 2.695955512e-09 2.986533571e-09 3.200494878e-09 2.60648833e-09 3.150170412e-09 2.879607533e-09 2.509334891e-09 2.850265817e-09 2.418518451e-09 2.99835292e-09 2.342372608e-09 3.17108311e-09 2.552801468e-09 2.298919873e-09 2.54385335e-09 3.116317881e-09 2.205256496e-09 2.332497907e-09 2.712093666e-09 2.353062662e-09 2.737811898e-09 3.154306985e-09 3.038403045e-09 3.232432185e-09 3.610550774e-09 3.470388459e-09 4.320056606e-09 3.297746689e-09 3.194990343e-09 4.284653872e-09 3.765802246e-09 4.256325877e-09 4.789877867e-09 4.909391041e-09 4.251040135e-09 3.63185634e-09 4.446446805e-09 4.862729461e-09 4.184226787e-09 4.302510517e-09 5.034815021e-09 4.752228556e-09 5.082870773e-09 3.824500704e-09 3.027137659e-09 4.178856827e-09 3.161069386e-09 2.953071222e-09 3.834967989e-09 2.848193578e-09 2.759115267e-09 3.723824087e-09 2.609917751e-09 2.757600693e-09 2.992855344e-09 2.658270972e-09 2.670364939e-09 2.542575442e-09 2.408603668e-09 2.481212566e-09 2.408169355e-09 2.618176695e-09 2.175266478e-09 2.2778299e-09 2.196361784e-09 2.271185952e-09 2.274611578e-09 2.037102225e-09 1.676509723e-09 1.968427403e-09 1.689163525e-09 1.452032732e-09 1.77185704e-09 1.428972796e-09 1.646224065e-09 1.476694408e-09 1.454321739e-09 1.344873615e-09 1.156802529e-09 9.13725002e-10 7.651632022e-10 9.559070826e-10 4.154490296e-10 4.086469501e-10 1.974578479e-10 2.641283271e-10 4.549108154e-11 1.559066605e-10 2.579909633e-13 1.04170771e-11 1.999723891e-12 3.147567349e-13 1.805604017e-12 3.284397133e-16 6.13843984e-17 9.104414102e-17 4.019924871e-19 7.858230716e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.590743662e-17 1.329032279e-17 6.12123019e-16 1.175381563e-15 1.897771756e-14 4.039941955e-13 1.074006778e-12 1.765488251e-12 4.12558639e-11 2.290134128e-11 2.509775438e-10 2.957823984e-10 2.616317225e-10 3.816522364e-10 8.387399285e-10 7.972069731e-10 1.149879225e-09 1.24452792e-09 1.316683766e-09 1.244910254e-09 1.096683844e-09 1.621283116e-09 1.467550718e-09 1.795394202e-09 1.884057668e-09 1.727255262e-09 1.623546956e-09 1.870900123e-09 2.05294825e-09 2.023693e-09 2.273685637e-09 2.040412809e-09 2.351569799e-09 2.320030682e-09 2.457379911e-09 2.629394472e-09 2.659791483e-09 2.658813061e-09 2.259192029e-09 2.69522015e-09 2.435491591e-09 2.961592532e-09 2.54219999e-09 2.478948328e-09 3.55136425e-09 3.484547328e-09 3.431807878e-09 2.536877755e-09 4.7023737e-09 2.977990949e-09 4.27850559e-09 4.508236464e-09 4.046979296e-09 3.178273872e-09 4.375947694e-09 6.416798176e-09 5.113804122e-09 4.212223369e-09 5.079251446e-09 3.374118481e-09 4.31018218e-09 4.131635058e-09 5.242844387e-09 3.791357934e-09 3.578635077e-09 4.702504339e-09 3.882114352e-09 2.248496688e-09 3.369974457e-09 3.637705123e-09 3.797986196e-09 3.172605407e-09 3.493565982e-09 2.261404099e-09 2.674984001e-09 2.738197312e-09 2.577374196e-09 2.993960061e-09 3.436872155e-09 2.929620085e-09 2.753384785e-09 2.440201437e-09 2.400550509e-09 2.984977052e-09 2.673853065e-09 2.653953985e-09 2.585278573e-09 2.399860936e-09 3.060531548e-09 2.453422259e-09 2.6942519e-09 3.148666208e-09 2.80036801e-09 1.969794123e-09 3.311111735e-09 3.184795318e-09 2.485396012e-09 3.616680713e-09 3.51640503e-09 3.369062039e-09 3.408917505e-09 3.813975843e-09 3.306166284e-09 5.017232383e-09 4.170322813e-09 4.931888711e-09 4.558016936e-09 3.320371973e-09 4.425064225e-09 5.254371236e-09 3.554459758e-09 4.691764795e-09 5.733900958e-09 5.056603016e-09 3.405130305e-09 5.321626503e-09 4.676828718e-09 3.602669947e-09 3.644828655e-09 5.325071837e-09 4.425073026e-09 3.412070011e-09 3.704448438e-09 3.555923658e-09 3.198717382e-09 2.738120061e-09 3.418488734e-09 2.600155435e-09 2.667493963e-09 2.812484466e-09 2.7777695e-09 2.739019271e-09 2.644684457e-09 2.329608028e-09 2.388551978e-09 2.478143477e-09 2.415878683e-09 2.149553717e-09 2.20004793e-09 2.272702052e-09 1.874987511e-09 2.155321059e-09 1.845375418e-09 1.762764801e-09 1.701790554e-09 1.736131773e-09 1.876807372e-09 1.558043056e-09 1.395045137e-09 1.504291568e-09 1.384719357e-09 1.075104892e-09 1.199931961e-09 9.808192167e-10 6.456476352e-10 6.275859736e-10 3.528322664e-10 8.8691559e-11 1.504880217e-10 2.235656477e-10 9.485845159e-11 3.176721423e-11 1.11196013e-11 1.312662983e-13 1.164987086e-13 2.018361995e-16 1.025671681e-15 1.640083179e-15 2.486822816e-17 5.903748519e-17 2.386607119e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.436207229e-19 2.58145449e-18 5.560175954e-18 1.196854257e-16 3.174811577e-17 2.941727631e-16 7.483116419e-14 2.425265231e-14 1.191128908e-10 3.403726702e-12 4.945885716e-11 8.736274742e-11 1.433154714e-10 1.952312235e-10 6.783841498e-11 4.868964165e-10 7.234963655e-10 9.693402332e-10 9.860835303e-10 1.290850666e-09 1.096953761e-09 1.340451714e-09 1.341298764e-09 1.289158429e-09 1.533355128e-09 1.691737343e-09 1.732332487e-09 1.72376191e-09 1.664037592e-09 1.980349069e-09 2.043352146e-09 1.889800491e-09 1.93808635e-09 2.197196283e-09 2.342586865e-09 2.385468511e-09 2.255439756e-09 2.569929678e-09 2.611573054e-09 2.840560244e-09 2.570497688e-09 2.868303525e-09 2.811395526e-09 2.637318898e-09 2.864248009e-09 2.801618588e-09 3.010794252e-09 3.336359039e-09 3.811957209e-09 3.894462708e-09 3.111542761e-09 3.248929673e-09 3.523511744e-09 4.131877608e-09 4.50826481e-09 5.101266829e-09 4.369217666e-09 4.540251435e-09 4.026818624e-09 4.187549695e-09 4.11930283e-09 4.191162522e-09 4.319545111e-09 3.480390784e-09 5.027916172e-09 3.682617919e-09 3.36744455e-09 5.262678131e-09 3.296710062e-09 2.86924161e-09 4.294832856e-09 3.402156508e-09 3.04176028e-09 2.932845666e-09 2.766724652e-09 3.1418591e-09 3.111485497e-09 2.895787254e-09 2.942962425e-09 3.108014824e-09 2.825672195e-09 2.648500972e-09 2.488068188e-09 2.960346329e-09 2.590826399e-09 3.007987547e-09 2.440560099e-09 2.794425138e-09 2.639642684e-09 2.704582217e-09 2.67329292e-09 2.959917844e-09 2.464667398e-09 2.245861933e-09 3.52410513e-09 2.740287558e-09 2.376962212e-09 2.935091361e-09 3.149894673e-09 3.210545961e-09 2.800250762e-09 3.487053317e-09 4.097804149e-09 3.680476256e-09 3.847640664e-09 4.859455806e-09 3.562163792e-09 4.387552979e-09 4.739455819e-09 4.593041902e-09 3.893774122e-09 5.031725437e-09 4.153157531e-09 4.436964072e-09 2.38138402e-09 3.362459031e-09 4.908767716e-09 4.476768222e-09 3.345636712e-09 4.450791274e-09 2.8620239e-09 3.580504241e-09 3.930591369e-09 3.13384249e-09 3.808315584e-09 3.310348341e-09 2.982077844e-09 3.218942077e-09 3.272795126e-09 3.048753597e-09 2.773479998e-09 2.775182368e-09 2.749353407e-09 2.686601614e-09 2.532192013e-09 2.676396981e-09 2.339453031e-09 2.550781326e-09 2.330593646e-09 2.35767051e-09 2.235286317e-09 2.224537735e-09 2.36317478e-09 2.242961764e-09 1.719204637e-09 1.724162588e-09 1.790101256e-09 1.937869931e-09 1.695360413e-09 1.678345174e-09 1.30499462e-09 1.441251326e-09 1.104599088e-09 1.05499856e-09 1.310845282e-09 8.471088711e-10 5.183333993e-10 7.391287244e-10 3.200966625e-10 2.201769994e-10 2.821585773e-10 2.584403765e-10 2.694449488e-11 5.915950675e-12 1.321902908e-11 1.021661603e-13 1.556355501e-14 2.577386358e-14 2.238078764e-15 3.106186083e-23 4.718649469e-17 0 0 0 4.501460116e-19 0 0 0 0 0 0 0 9.837076548e-11 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.241767896e-24 7.938646167e-19 1.01268612e-16 1.675135505e-16 2.600724289e-15 3.800872734e-14 8.225979086e-16 5.651022673e-14 1.562426258e-11 1.668215393e-10 8.778756124e-13 9.224025794e-11 3.007214552e-10 3.216677571e-10 4.839100827e-10 5.85482296e-10 1.000296679e-09 1.010153769e-09 9.505273889e-10 1.081413544e-09 1.350961648e-09 1.702792954e-09 1.535899283e-09 1.748171627e-09 1.743611096e-09 1.876355766e-09 1.859377421e-09 2.045314468e-09 2.065134313e-09 2.240106168e-09 2.093924278e-09 2.149965607e-09 2.324888034e-09 2.08715596e-09 2.247868809e-09 2.320869797e-09 2.765479971e-09 2.652914994e-09 2.619419446e-09 2.363491551e-09 2.636831332e-09 2.698165495e-09 2.89277898e-09 2.629553202e-09 2.828649783e-09 3.143538706e-09 3.121725733e-09 4.191051716e-09 3.352662734e-09 2.739614934e-09 2.988110462e-09 5.408983979e-09 4.461786431e-09 3.456196035e-09 3.536095206e-09 4.812860969e-09 4.976083007e-09 5.059438224e-09 4.606788671e-09 4.81944763e-09 4.575748505e-09 3.173311988e-09 4.303608277e-09 4.577688137e-09 4.101795051e-09 4.139449668e-09 4.249020074e-09 3.75603226e-09 3.433879868e-09 3.842350261e-09 3.522914096e-09 3.754728205e-09 3.23614643e-09 3.140161276e-09 3.479141068e-09 2.910672194e-09 2.851838774e-09 2.73052491e-09 2.517286622e-09 3.344657015e-09 3.362488408e-09 2.628953102e-09 2.734637962e-09 3.145577087e-09 2.389347433e-09 2.298612718e-09 2.711005921e-09 2.96434422e-09 2.875407415e-09 3.106692411e-09 2.922406481e-09 2.811030393e-09 2.717934959e-09 2.714475264e-09 2.607238347e-09 2.691142542e-09 2.299874159e-09 2.320939758e-09 2.986431928e-09 2.298690438e-09 3.253807307e-09 3.475220702e-09 3.750577099e-09 4.166825283e-09 3.983684775e-09 5.136002924e-09 4.316531447e-09 3.344562292e-09 3.656577275e-09 4.67441342e-09 4.988702543e-09 3.220247097e-09 4.46111201e-09 3.352771328e-09 4.228229953e-09 4.925466883e-09 5.52693512e-09 3.851079702e-09 3.299086683e-09 4.972065166e-09 4.785725892e-09 3.805017556e-09 4.024351741e-09 4.383257021e-09 3.358764337e-09 3.580974337e-09 3.039178713e-09 2.941233617e-09 3.148040079e-09 2.786566935e-09 2.868698937e-09 2.637639498e-09 2.561993882e-09 2.458884082e-09 2.4511433e-09 2.525825181e-09 2.443735285e-09 2.226774962e-09 2.075365223e-09 2.228541754e-09 2.147910598e-09 2.209973319e-09 2.140319253e-09 1.932262883e-09 1.816498137e-09 1.719255349e-09 1.494496151e-09 1.673392183e-09 1.800475754e-09 1.803961968e-09 1.352821428e-09 1.38702541e-09 1.221242953e-09 1.00434307e-09 1.007512207e-09 9.784403158e-10 5.384306731e-10 4.323943495e-10 2.529053075e-10 2.295204034e-10 2.271107437e-10 2.173433707e-10 5.566580188e-12 2.738893363e-11 2.736578958e-12 4.679212247e-14 7.288862311e-14 1.583218282e-15 7.488726383e-17 1.433327795e-17 3.899151803e-18 1.288514929e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.111921524e-17 4.102905154e-20 3.847739009e-17 2.242419122e-16 6.921916869e-16 3.411461582e-15 8.115904514e-15 2.034842212e-12 4.603191509e-13 1.159607051e-12 2.061415587e-12 1.199651341e-10 2.625857174e-10 3.448523556e-10 4.865699127e-10 7.879700245e-10 9.454435039e-10 1.27606908e-09 1.243527223e-09 1.357061876e-09 1.234568596e-09 1.467023758e-09 1.582333781e-09 1.545778124e-09 1.90949119e-09 1.754930611e-09 1.953239576e-09 2.064826046e-09 2.054313648e-09 2.260955017e-09 2.36112961e-09 2.351963293e-09 1.962849447e-09 2.40273748e-09 2.135465697e-09 2.462275902e-09 2.318982895e-09 2.718045665e-09 2.377232975e-09 2.6732461e-09 2.794913556e-09 2.829434633e-09 2.799186443e-09 3.052997857e-09 2.764918597e-09 4.328643609e-09 4.33235082e-09 4.10834083e-09 5.045541559e-09 4.421934999e-09 4.509225519e-09 3.560319989e-09 3.783383028e-09 4.776745504e-09 4.239190986e-09 5.851322738e-09 5.309423389e-09 4.836628324e-09 4.984262491e-09 4.304896142e-09 4.858692587e-09 6.723682471e-09 4.085791599e-09 4.265356794e-09 3.99462724e-09 4.723763412e-09 5.165409612e-09 4.415047639e-09 4.37799141e-09 4.210033078e-09 3.734771199e-09 2.810427136e-09 2.81948051e-09 3.082854741e-09 2.810828739e-09 3.129883343e-09 2.897258065e-09 2.696997291e-09 3.090729604e-09 2.899732687e-09 3.022369607e-09 3.15041633e-09 2.354174418e-09 3.092468378e-09 2.884769434e-09 2.86053488e-09 2.902060084e-09 2.669500952e-09 2.556010768e-09 2.589635426e-09 2.923202584e-09 2.49345826e-09 2.833586973e-09 3.302019461e-09 2.732466155e-09 3.155878234e-09 2.989056084e-09 2.394493476e-09 3.465670978e-09 2.967374331e-09 3.151696116e-09 3.102152201e-09 3.935684872e-09 5.162794631e-09 3.293625504e-09 4.956689713e-09 4.42123771e-09 3.404406239e-09 6.043841881e-09 5.079200966e-09 4.439159263e-09 4.154227954e-09 5.069144372e-09 5.268121234e-09 3.823501536e-09 4.805215568e-09 3.668954351e-09 4.074126572e-09 3.669143705e-09 4.266125888e-09 4.925619531e-09 5.225125253e-09 3.770352078e-09 4.425501622e-09 3.026194574e-09 3.927887619e-09 3.369862413e-09 2.885114543e-09 3.008892103e-09 2.772664756e-09 2.626529672e-09 2.673443913e-09 2.563331615e-09 2.399051969e-09 2.481409024e-09 2.840513477e-09 2.631565777e-09 2.207410644e-09 2.299355592e-09 2.441742737e-09 2.28738898e-09 2.319051571e-09 1.624114937e-09 2.185607135e-09 1.860296292e-09 1.678356138e-09 1.656848039e-09 1.546627624e-09 1.475731482e-09 1.420323615e-09 1.288726307e-09 1.313239176e-09 1.400222416e-09 1.051573414e-09 9.871325734e-10 8.661074914e-10 7.76729691e-10 1.459087118e-10 3.849033839e-10 1.800010617e-10 2.253806737e-10 2.024098794e-10 2.021817561e-11 1.880619864e-11 2.95731874e-12 5.382659757e-14 4.502111401e-15 1.635190161e-14 1.604159219e-17 1.136058256e-17 2.277833156e-18 1.602844533e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 2.174437605e-19 0 0 0 0 1.060786446e-18 1.149956756e-17 2.596834874e-17 6.175749335e-16 3.816617211e-16 1.20591479e-15 2.924388506e-14 1.038043301e-12 1.866607711e-11 6.200415475e-13 1.421589098e-10 8.496578776e-11 2.63766716e-10 2.394589614e-10 3.604656664e-10 5.240045991e-10 9.78669754e-10 1.164464998e-09 9.394245594e-10 1.266512498e-09 1.583324308e-09 1.352387901e-09 1.730895842e-09 1.504315937e-09 1.728128911e-09 1.932035728e-09 1.937327991e-09 1.851415185e-09 2.094994411e-09 2.152719455e-09 2.030123396e-09 2.29913797e-09 2.434462462e-09 1.98813203e-09 2.68374606e-09 2.58759933e-09 2.356990952e-09 2.531936473e-09 2.750143441e-09 2.88851276e-09 2.749912489e-09 2.986199364e-09 2.97716632e-09 3.04648605e-09 3.240224663e-09 3.156354526e-09 3.827004837e-09 3.247207358e-09 3.270853893e-09 5.670409462e-09 5.400274653e-09 3.737987375e-09 4.810727528e-09 6.21797956e-09 4.474938539e-09 5.198549428e-09 4.149101825e-09 5.165217186e-09 5.319867274e-09 5.623230627e-09 4.998825714e-09 3.93375328e-09 3.966843846e-09 5.704594522e-09 5.287033533e-09 3.575937997e-09 3.449001109e-09 4.687051728e-09 5.083992062e-09 4.394255439e-09 2.679667371e-09 3.380941447e-09 3.142473733e-09 3.491344696e-09 2.962470524e-09 2.697234538e-09 3.384012719e-09 3.069855323e-09 3.321689091e-09 2.977395999e-09 3.100535134e-09 2.560726413e-09 3.183740306e-09 3.135529379e-09 2.741263173e-09 2.627894169e-09 2.642858666e-09 2.759557383e-09 3.140397444e-09 3.176094233e-09 2.716414447e-09 2.999049516e-09 2.820265549e-09 2.732092665e-09 3.104516894e-09 3.561440799e-09 2.840984637e-09 3.670881744e-09 2.331030382e-09 3.077704251e-09 3.042294717e-09 2.841406374e-09 2.740344939e-09 4.165671448e-09 4.853188921e-09 3.365847539e-09 4.982210578e-09 5.361294924e-09 4.340783164e-09 4.750683936e-09 4.133389034e-09 4.496375203e-09 5.136796908e-09 6.598683138e-09 5.155932781e-09 5.310884914e-09 5.612159928e-09 3.831463163e-09 2.983315107e-09 4.18411046e-09 4.078040811e-09 5.127301448e-09 4.251210323e-09 3.329093027e-09 3.451743538e-09 3.844171712e-09 2.984626088e-09 3.041832362e-09 2.877483941e-09 3.288070446e-09 2.623622359e-09 2.875353374e-09 2.781934952e-09 2.661702819e-09 2.807527841e-09 2.607023578e-09 2.361680726e-09 2.383795661e-09 2.489435998e-09 2.447382091e-09 2.205879839e-09 2.075737035e-09 2.10171768e-09 2.065867856e-09 2.047718918e-09 1.879301633e-09 1.967207404e-09 1.797023157e-09 1.77427751e-09 1.624806886e-09 1.505029836e-09 1.520954135e-09 1.383863296e-09 1.097437684e-09 5.531153174e-10 8.98773382e-10 7.839251394e-10 6.786429279e-10 3.555483581e-10 1.971427039e-10 1.756176186e-10 5.727298101e-11 2.858361044e-11 7.299576088e-12 9.361623956e-13 1.458336421e-12 1.598201627e-14 8.301050917e-15 6.479167078e-17 4.371248554e-18 2.036615367e-18 2.475090344e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.970715951e-21 4.469540096e-19 2.547310552e-18 4.443129952e-17 7.453137407e-16 3.220539153e-15 2.117378008e-14 1.124583831e-13 7.682518892e-14 1.81455935e-12 1.261550832e-11 7.037586867e-11 7.480165047e-11 2.30220753e-10 3.471873836e-10 4.625695295e-10 8.355542569e-10 7.615089318e-10 1.047350811e-09 1.290991205e-09 1.203043761e-09 1.210075738e-09 1.425530045e-09 1.645691455e-09 1.868230325e-09 1.62348018e-09 1.800216462e-09 1.555977239e-09 2.121856894e-09 2.273421526e-09 1.842808955e-09 2.14566702e-09 2.523867605e-09 2.691869694e-09 2.662466921e-09 2.549561183e-09 2.569614722e-09 2.514468063e-09 2.76581016e-09 2.697515712e-09 2.568177985e-09 2.696161738e-09 2.872794174e-09 2.963646388e-09 3.128443513e-09 2.748671668e-09 4.015133708e-09 4.34967154e-09 3.738413236e-09 3.552856571e-09 3.931511641e-09 4.05285759e-09 4.299416226e-09 5.115283946e-09 4.313432863e-09 2.842669173e-09 5.711534811e-09 5.746573001e-09 3.802894751e-09 4.404631653e-09 5.76300308e-09 4.994105872e-09 4.436567397e-09 3.791500691e-09 4.856229718e-09 4.736187743e-09 4.139088558e-09 4.442349137e-09 4.863298732e-09 5.035477255e-09 3.998268585e-09 3.41226176e-09 3.636727427e-09 3.586169001e-09 3.304188538e-09 3.13494067e-09 3.065334222e-09 2.756123598e-09 2.491100464e-09 3.085497914e-09 2.829547645e-09 2.786940568e-09 3.193453816e-09 2.618721526e-09 2.911047491e-09 2.63506698e-09 3.528572121e-09 2.847858707e-09 2.375135256e-09 1.913183377e-09 3.23542172e-09 2.736317469e-09 2.723856492e-09 2.478757524e-09 2.529942197e-09 3.274033381e-09 2.918031651e-09 2.824647382e-09 2.989726049e-09 4.312200236e-09 3.843720272e-09 3.195409025e-09 3.562894853e-09 3.466739942e-09 3.864079557e-09 5.073693953e-09 5.126563453e-09 4.162930835e-09 3.923603831e-09 4.817357498e-09 5.062545531e-09 5.258619295e-09 4.513675064e-09 5.566473785e-09 4.646244896e-09 4.384705409e-09 5.302162509e-09 5.113336929e-09 3.548776024e-09 3.7301619e-09 3.938115674e-09 3.650074785e-09 3.169365659e-09 5.758824366e-09 3.845738679e-09 3.960409194e-09 3.505930161e-09 3.454519007e-09 3.529877533e-09 2.8987712e-09 2.844802409e-09 3.016642259e-09 2.693687181e-09 2.797786613e-09 2.531638994e-09 2.639804006e-09 2.410346421e-09 2.406221006e-09 2.68183491e-09 2.563665666e-09 2.495334425e-09 2.26063749e-09 2.285672554e-09 2.164830329e-09 1.933065309e-09 1.849988993e-09 1.939597874e-09 1.521495184e-09 1.595571229e-09 1.446046063e-09 1.682938841e-09 1.350394349e-09 1.434332173e-09 1.059659594e-09 1.148232836e-09 9.021121932e-10 9.672610585e-10 7.423765482e-10 4.782161225e-10 3.025802209e-10 1.747005902e-10 2.011500884e-10 3.915978958e-11 1.288431294e-10 9.824468515e-13 1.289936487e-12 8.478918567e-14 4.841520368e-15 6.797236383e-16 1.218534363e-16 4.026756304e-16 4.319933781e-18 2.297781635e-18 4.991235939e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.839865879e-18 9.089274946e-19 1.551434656e-17 5.728298187e-16 1.277086053e-15 1.885494485e-15 3.869937769e-14 3.879669947e-13 6.413374593e-12 1.103449239e-10 1.692427707e-10 2.304867442e-10 1.881648843e-10 3.377010268e-10 6.302545395e-10 7.779292932e-10 8.539424039e-10 1.040359359e-09 1.046725178e-09 1.30200121e-09 1.389727967e-09 1.742868051e-09 1.702170828e-09 1.71298774e-09 1.788808683e-09 1.657498341e-09 1.689770093e-09 2.20070809e-09 1.82609713e-09 2.053826925e-09 2.118592579e-09 2.644111939e-09 2.291480695e-09 2.378248693e-09 2.393034517e-09 2.427794535e-09 2.545383298e-09 2.809729792e-09 2.738195645e-09 2.858858599e-09 2.851110717e-09 2.801710942e-09 3.157997852e-09 3.120442683e-09 3.202339355e-09 3.329276463e-09 4.364509411e-09 3.104428165e-09 4.257405662e-09 4.24657299e-09 3.843682316e-09 4.526457994e-09 5.136880018e-09 5.372998034e-09 5.450857706e-09 4.235029148e-09 3.040161182e-09 5.337582317e-09 5.127206011e-09 5.098977824e-09 3.898882679e-09 4.861950741e-09 5.616295441e-09 3.103883365e-09 4.816435505e-09 3.953223838e-09 4.662202754e-09 4.859153521e-09 3.504429249e-09 3.392448187e-09 3.80950192e-09 3.460313961e-09 3.819847377e-09 2.896936186e-09 2.956316157e-09 3.624340243e-09 2.843207934e-09 2.747438661e-09 2.959012799e-09 3.377448595e-09 3.731826612e-09 3.650897139e-09 3.013117015e-09 2.514355919e-09 2.81658719e-09 2.877900753e-09 2.982359122e-09 3.121722053e-09 2.930724483e-09 2.7441968e-09 3.123320105e-09 3.094221611e-09 2.356850321e-09 2.84914164e-09 2.124992733e-09 2.927562945e-09 3.903935518e-09 2.849011636e-09 4.373963492e-09 3.215762984e-09 3.004241788e-09 3.081089791e-09 3.730178903e-09 3.411808367e-09 4.595970989e-09 4.122344863e-09 4.69758155e-09 4.960182032e-09 5.005015558e-09 5.431835529e-09 4.880419659e-09 4.976335856e-09 6.050174281e-09 4.98803343e-09 5.612503643e-09 5.779270269e-09 4.891500705e-09 3.72462718e-09 5.393232331e-09 4.595573409e-09 3.274170654e-09 4.222799194e-09 3.465987781e-09 3.2559925e-09 2.919669024e-09 3.467824734e-09 3.303567554e-09 3.089758009e-09 3.282142922e-09 2.829575579e-09 2.614172397e-09 3.061725277e-09 2.734445683e-09 2.675452737e-09 2.420455984e-09 2.64169129e-09 2.38449283e-09 2.464219742e-09 2.366059501e-09 2.316732823e-09 2.227432179e-09 2.310500633e-09 2.115770665e-09 2.164049462e-09 1.90668718e-09 1.945146969e-09 1.920558265e-09 1.767107613e-09 1.547560861e-09 1.532651491e-09 1.556636394e-09 1.125514116e-09 1.392446811e-09 1.320658699e-09 9.637582365e-10 1.008028306e-09 9.702265695e-10 6.909460181e-10 2.507187726e-10 3.523802389e-10 1.759891022e-10 9.926147613e-11 9.093893512e-11 8.742053803e-13 7.704576544e-13 1.822256316e-13 4.82171775e-14 1.147508974e-15 1.905218829e-16 3.017708714e-16 8.716852561e-19 1.792564356e-18 0 0 0 0 0 0 0 0 0 5.191240241e-18 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 7.351642825e-19 2.026157018e-19 2.371044413e-23 2.903024139e-17 1.379908718e-16 1.07943081e-16 5.058195587e-15 9.118703488e-15 3.962137978e-13 5.067552641e-12 1.701888283e-11 5.666132648e-11 2.655178936e-10 1.522526092e-10 2.85221854e-10 3.603260808e-10 8.340419859e-10 7.752443935e-10 8.976673743e-10 1.251757103e-09 1.314067535e-09 1.585562911e-09 1.401787268e-09 1.688052749e-09 1.481710471e-09 1.905761998e-09 1.898981037e-09 1.899446614e-09 2.018834756e-09 2.113028619e-09 2.136121736e-09 2.38676833e-09 2.267497878e-09 2.304347267e-09 2.265602118e-09 2.297213517e-09 2.993870788e-09 2.706396122e-09 2.798196098e-09 2.962257866e-09 2.794982968e-09 3.239498096e-09 2.948461179e-09 3.102972031e-09 2.741270088e-09 3.121299558e-09 3.320572657e-09 3.363157784e-09 4.585832101e-09 3.270392323e-09 4.02473039e-09 3.140359099e-09 4.740224085e-09 4.3994598e-09 4.243005911e-09 3.57570187e-09 4.350886368e-09 4.861286919e-09 4.110662654e-09 3.89372342e-09 4.445731432e-09 4.227259723e-09 4.653173897e-09 4.885334344e-09 4.815128373e-09 4.669215267e-09 3.763014363e-09 3.816085986e-09 3.96426436e-09 3.97519905e-09 4.358619532e-09 3.245043463e-09 4.57211049e-09 3.110660085e-09 3.783421156e-09 2.62592288e-09 3.308957048e-09 3.516383255e-09 3.304717119e-09 3.32573363e-09 2.735616817e-09 3.02902743e-09 2.72648643e-09 2.806229077e-09 2.698732552e-09 2.918006307e-09 3.100808165e-09 2.43917685e-09 2.179421417e-09 2.168657855e-09 2.75165016e-09 2.80254371e-09 2.637578736e-09 2.594418347e-09 3.3263112e-09 3.421262865e-09 3.760499529e-09 3.199847813e-09 3.463611383e-09 3.848991446e-09 3.548543477e-09 3.311784538e-09 4.018320749e-09 3.748604277e-09 4.718697735e-09 3.530708918e-09 4.238166591e-09 5.470878562e-09 5.327454347e-09 5.279681459e-09 4.96822895e-09 5.252888508e-09 5.796837845e-09 6.116158969e-09 4.45647103e-09 4.697785484e-09 4.803482764e-09 4.666977361e-09 4.602172827e-09 5.086881445e-09 5.484343171e-09 4.422732499e-09 4.696690302e-09 3.776558002e-09 3.855216124e-09 3.702440733e-09 3.912445452e-09 3.142447869e-09 3.571359132e-09 2.897046465e-09 2.94174939e-09 2.915219191e-09 3.051558409e-09 2.952985609e-09 2.834471827e-09 2.663657105e-09 2.709207983e-09 2.432349371e-09 2.637590397e-09 2.552714753e-09 2.519532903e-09 2.189250749e-09 2.23213905e-09 2.355649823e-09 1.978647654e-09 2.144794628e-09 2.140135995e-09 1.925010844e-09 1.756406883e-09 1.546501271e-09 1.793839991e-09 1.401210562e-09 1.331459617e-09 1.262344704e-09 1.150548365e-09 8.214747907e-10 9.17457097e-10 6.080046751e-10 5.313311746e-10 7.313276622e-11 1.248242935e-10 6.183450154e-11 1.190852017e-10 1.706102964e-10 1.074332603e-11 5.192949953e-14 3.140756347e-15 1.3527345e-14 2.954005007e-16 9.859840476e-16 2.498335586e-18 5.634968611e-18 2.515242886e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 9.62533952e-11 0 1.774602739e-18 2.301663285e-17 2.913990617e-18 6.775783412e-16 5.925297324e-15 3.008558962e-15 1.689803596e-13 1.234132831e-12 4.21967004e-12 1.2169326e-11 1.093703596e-10 2.412326811e-10 1.836617859e-10 1.901108845e-10 5.036555118e-10 5.660173384e-10 9.2373887e-10 1.300445224e-09 1.280118966e-09 1.311873712e-09 1.355029052e-09 1.42597231e-09 1.964103604e-09 1.665639525e-09 1.662566213e-09 1.935243862e-09 1.960405373e-09 2.074031706e-09 1.94342526e-09 2.280020391e-09 2.185908459e-09 2.380371193e-09 2.639054723e-09 2.449040053e-09 2.778568957e-09 2.517276257e-09 2.381572874e-09 2.591452171e-09 2.741869243e-09 2.803980737e-09 2.767171518e-09 2.945309739e-09 3.117652891e-09 2.993609891e-09 3.092225387e-09 3.181680982e-09 2.997180516e-09 3.919848879e-09 3.533235238e-09 3.650752425e-09 4.428442211e-09 5.720528945e-09 3.792775164e-09 3.890270199e-09 5.473307123e-09 5.890096022e-09 4.010771506e-09 5.551503122e-09 4.924948002e-09 4.260280142e-09 5.459301121e-09 5.910351167e-09 5.437326034e-09 4.850520316e-09 4.564830526e-09 4.050656827e-09 3.735263103e-09 5.225166484e-09 4.040776044e-09 3.172253259e-09 4.158186378e-09 2.903882163e-09 4.307519141e-09 3.648733484e-09 3.486307038e-09 3.236440549e-09 3.429611094e-09 3.351700479e-09 2.539762425e-09 2.926992216e-09 3.054186363e-09 2.935947723e-09 2.882071267e-09 3.218367404e-09 2.527513512e-09 2.586149334e-09 3.639015916e-09 3.032436514e-09 2.440796648e-09 2.870316771e-09 2.746021435e-09 2.254261192e-09 3.028497431e-09 3.17011917e-09 2.538943112e-09 2.930283511e-09 3.545330665e-09 3.626516078e-09 3.898507906e-09 3.118120901e-09 3.901848129e-09 3.430425021e-09 3.56111875e-09 3.661825725e-09 5.114861917e-09 4.555274619e-09 4.551409923e-09 4.516238076e-09 5.892089923e-09 4.802091859e-09 4.858050364e-09 5.181975114e-09 5.378524459e-09 3.380858181e-09 3.087389622e-09 4.431468427e-09 4.302257773e-09 4.285139582e-09 3.971326741e-09 5.0256547e-09 5.265573873e-09 3.930604035e-09 4.251154862e-09 4.594362965e-09 3.578108641e-09 3.836057008e-09 4.422202846e-09 3.177156367e-09 3.203554777e-09 3.021817321e-09 3.045533856e-09 2.959179966e-09 2.510078068e-09 2.797334451e-09 3.078736812e-09 2.7680049e-09 2.55349561e-09 2.552248923e-09 2.465864297e-09 2.345745859e-09 2.266152839e-09 2.450231107e-09 2.332943275e-09 2.057637825e-09 2.160975535e-09 1.829480762e-09 1.83593101e-09 1.792319377e-09 1.680047057e-09 1.310613761e-09 1.699095116e-09 1.314680608e-09 1.335740803e-09 1.208098989e-09 9.91704955e-10 1.04533517e-09 6.065451117e-10 5.185399052e-10 3.040088841e-10 2.011305616e-10 2.183718055e-10 1.410815599e-10 3.742996701e-11 1.256435152e-11 7.190669358e-14 3.497735524e-11 1.586020952e-15 3.478933877e-16 1.011824004e-15 2.05543711e-16 1.432537669e-17 2.157905535e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.792959187e-19 8.921130669e-19 6.069901886e-18 4.419733088e-16 1.218552299e-14 1.468168411e-14 5.580470683e-13 2.42553308e-13 7.856005544e-12 1.73269402e-10 1.732386432e-10 3.157786341e-10 2.075552819e-10 2.443943755e-10 5.733843625e-10 8.757837479e-10 9.172468061e-10 1.118473508e-09 1.226184967e-09 1.42779904e-09 1.656043074e-09 1.61968286e-09 1.742049771e-09 1.935880683e-09 1.842784018e-09 1.899160364e-09 2.077720957e-09 2.02061391e-09 2.195573763e-09 2.313418878e-09 2.297626192e-09 2.36319787e-09 2.126239358e-09 2.442451506e-09 2.734292991e-09 2.432715518e-09 2.701526184e-09 2.849926389e-09 2.942534485e-09 3.183064285e-09 3.137946971e-09 2.965813345e-09 2.930997171e-09 3.117041573e-09 3.495792477e-09 3.43526628e-09 4.254228989e-09 3.725136677e-09 3.769156087e-09 3.116624852e-09 4.827553194e-09 5.195312102e-09 4.701188225e-09 3.941113948e-09 4.534064405e-09 3.858755275e-09 5.67519264e-09 4.765569718e-09 4.970501792e-09 4.682368332e-09 3.300609378e-09 4.854056675e-09 5.708622978e-09 4.553840302e-09 4.179683254e-09 4.620269754e-09 4.888055549e-09 3.488941414e-09 3.304250228e-09 3.469848207e-09 3.5627024e-09 4.101880167e-09 3.460034676e-09 3.257447984e-09 3.074714131e-09 2.87879696e-09 3.080587579e-09 3.363973084e-09 2.788919845e-09 2.278252145e-09 2.895538827e-09 3.029460217e-09 2.745957942e-09 2.658269533e-09 2.275483582e-09 2.906409633e-09 2.987811826e-09 2.860081575e-09 3.245589026e-09 3.621844979e-09 2.98542922e-09 2.96790395e-09 2.937272447e-09 2.981724053e-09 3.667640285e-09 3.102848677e-09 3.627185966e-09 3.906097741e-09 3.873296622e-09 3.904401237e-09 2.574023518e-09 4.085785161e-09 2.789052816e-09 5.006485688e-09 4.611380317e-09 4.096627119e-09 5.104109805e-09 3.828127234e-09 4.180134496e-09 6.480860294e-09 4.414157766e-09 4.413224395e-09 4.081410907e-09 4.400867984e-09 4.53951535e-09 4.885137762e-09 6.193896067e-09 4.934530423e-09 5.759664698e-09 5.749882067e-09 4.603959743e-09 3.113951147e-09 5.163004835e-09 3.487951238e-09 3.472308734e-09 4.780138046e-09 3.651212448e-09 4.35557346e-09 2.984001748e-09 2.879619468e-09 2.862127207e-09 2.853849986e-09 2.93387213e-09 2.829308933e-09 2.488870901e-09 2.551045638e-09 2.79038726e-09 2.509866486e-09 2.467256906e-09 2.46722836e-09 2.179797091e-09 2.439997999e-09 2.321155747e-09 2.135422135e-09 2.150490718e-09 1.821884862e-09 2.075252724e-09 1.767577901e-09 1.594130706e-09 1.56216948e-09 1.637373262e-09 1.272572441e-09 1.26855094e-09 1.143102062e-09 7.334986452e-10 9.496256747e-10 7.111043126e-10 3.641130816e-10 3.220447723e-10 1.766300047e-10 1.711965181e-10 9.912355545e-11 1.199221924e-11 9.845437713e-12 5.912223004e-14 4.34322544e-14 1.249911775e-14 1.661834991e-15 1.243643382e-15 0 5.537552732e-18 9.427628322e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.966619982e-19 2.695972574e-18 1.141192998e-17 3.143070062e-17 2.009875936e-16 6.305656196e-15 4.385292826e-14 1.457013219e-13 4.086199313e-13 2.567933188e-11 1.347696288e-11 9.731944159e-11 1.483205682e-10 2.850087288e-10 3.336777185e-10 5.509306056e-10 5.968887249e-10 1.210458508e-09 1.099078787e-09 1.026497669e-09 1.331809442e-09 1.42700599e-09 1.304512647e-09 1.667310009e-09 1.692463051e-09 1.952320195e-09 1.785934496e-09 2.002115976e-09 2.026152645e-09 2.165187777e-09 2.332354421e-09 2.519051724e-09 2.321703087e-09 2.537171941e-09 2.318083109e-09 2.541936166e-09 2.559023989e-09 2.696321445e-09 3.004561251e-09 2.714543188e-09 3.124412077e-09 2.933840024e-09 2.931286679e-09 3.086488146e-09 3.315471254e-09 3.094168387e-09 3.406906385e-09 5.416141401e-09 3.539762793e-09 3.661830012e-09 3.790836196e-09 5.259245835e-09 4.399262786e-09 4.369910739e-09 4.3493496e-09 4.811964203e-09 5.187198308e-09 5.829007543e-09 4.033994636e-09 4.802891757e-09 4.886464595e-09 5.460457437e-09 4.754925577e-09 4.56428355e-09 4.434895619e-09 4.997781409e-09 3.827408355e-09 3.789969126e-09 4.954849672e-09 4.539500793e-09 4.80384274e-09 3.410996238e-09 4.196444001e-09 2.955665038e-09 3.335421976e-09 3.832134439e-09 2.951357126e-09 3.421855116e-09 3.233905928e-09 3.398973536e-09 2.486434867e-09 2.620581122e-09 3.098287819e-09 3.469178611e-09 2.891076566e-09 2.913927509e-09 2.589692192e-09 3.194460202e-09 2.684740647e-09 3.362696938e-09 3.660110347e-09 2.48873818e-09 3.801354972e-09 2.975732229e-09 3.673306923e-09 3.142604731e-09 3.361025907e-09 2.861910405e-09 2.790242867e-09 3.379806503e-09 3.051935247e-09 3.561371095e-09 3.2248535e-09 3.73439617e-09 4.087238849e-09 4.847030023e-09 4.066179393e-09 4.450712292e-09 4.397174454e-09 5.602132976e-09 5.059631984e-09 5.503894993e-09 4.075505238e-09 4.834616492e-09 4.409948991e-09 5.702362075e-09 6.246139039e-09 5.939257336e-09 3.226652214e-09 4.936570504e-09 4.674014299e-09 4.264703025e-09 5.15769545e-09 4.541279706e-09 4.083943982e-09 3.413761707e-09 3.422380206e-09 4.120701597e-09 2.937305096e-09 3.204303993e-09 3.027737597e-09 3.103685503e-09 2.951951857e-09 3.078943779e-09 3.129668118e-09 2.88810664e-09 2.708492506e-09 2.593831848e-09 2.553111648e-09 2.564314885e-09 2.570649921e-09 2.228603143e-09 2.261048005e-09 2.289128068e-09 2.219531437e-09 1.831309178e-09 1.989090644e-09 1.769341487e-09 2.08900414e-09 1.760843827e-09 1.634060765e-09 1.394603162e-09 1.328950229e-09 1.255261103e-09 1.414592354e-09 9.867629088e-10 9.912683148e-10 7.783134403e-10 4.98509817e-10 1.965548096e-10 1.585648233e-10 2.362223527e-10 1.0918969e-10 2.189076382e-11 6.085868648e-12 1.471121652e-13 8.673078858e-13 3.195046138e-15 9.702042608e-16 6.896523042e-16 4.534945996e-17 1.836559518e-17 1.70598692e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.15282461e-19 1.297533411e-16 2.019500692e-17 7.172432434e-15 1.725720369e-14 6.589085851e-15 4.694996253e-13 7.559449132e-12 3.42390847e-11 1.507119994e-10 5.109061188e-11 1.442956421e-10 2.864799468e-10 4.151329558e-10 8.854718273e-10 1.101092687e-09 1.09978775e-09 1.400294676e-09 1.152363033e-09 1.513348194e-09 1.385667904e-09 1.644501183e-09 1.668655767e-09 1.996258641e-09 1.897041919e-09 2.212869882e-09 2.056903285e-09 2.184682554e-09 2.422288802e-09 2.572051252e-09 2.528764969e-09 2.395890305e-09 2.303477093e-09 2.450118847e-09 2.967710538e-09 2.879884648e-09 2.883584104e-09 2.868988633e-09 3.091268722e-09 2.733715686e-09 3.06204955e-09 3.241727611e-09 3.619341792e-09 3.173993702e-09 5.032516365e-09 3.697508409e-09 4.256768917e-09 4.942646652e-09 4.766528922e-09 4.05831371e-09 4.813799867e-09 4.439722627e-09 4.650405524e-09 4.398065841e-09 4.511048173e-09 4.598649646e-09 4.826878292e-09 6.097059076e-09 4.532519124e-09 4.537171179e-09 4.990544095e-09 4.2179487e-09 5.87247965e-09 4.467321343e-09 4.29044049e-09 5.108313713e-09 4.949448948e-09 4.903283608e-09 4.248260536e-09 3.196105363e-09 3.809074088e-09 3.741832531e-09 3.59194678e-09 3.686535451e-09 4.021632325e-09 3.250819923e-09 3.534946911e-09 2.395744666e-09 3.544330279e-09 2.940779006e-09 2.62309105e-09 2.85744367e-09 2.754996822e-09 3.221280968e-09 2.924194377e-09 2.904849316e-09 3.148454458e-09 2.714175965e-09 2.718955179e-09 3.475430757e-09 3.503333547e-09 2.569097469e-09 3.026920428e-09 3.360931508e-09 2.724170357e-09 3.484690628e-09 2.835986284e-09 3.363456924e-09 3.700541099e-09 3.523012365e-09 3.603377865e-09 4.289119108e-09 3.968290593e-09 5.40833742e-09 5.359652755e-09 5.286651791e-09 5.316151307e-09 4.480537438e-09 4.971194351e-09 4.128050948e-09 5.517730939e-09 4.61816095e-09 4.293016496e-09 3.357685267e-09 5.565449556e-09 4.894094095e-09 5.409965827e-09 4.841312121e-09 4.262879369e-09 4.182796795e-09 3.778746899e-09 3.346697248e-09 4.146599068e-09 4.315926954e-09 3.819269408e-09 3.069733145e-09 3.198587711e-09 3.325661086e-09 3.250616998e-09 3.079352547e-09 2.88748011e-09 2.973862784e-09 2.924924485e-09 2.720377753e-09 2.905971953e-09 2.507218998e-09 2.734801718e-09 2.407501669e-09 2.545233868e-09 2.065483512e-09 2.345974431e-09 2.130211613e-09 2.313505624e-09 2.357937581e-09 2.090861065e-09 1.95611032e-09 1.979149426e-09 1.790370974e-09 1.756440881e-09 1.399452623e-09 1.327991447e-09 1.557602347e-09 1.147672571e-09 1.31040812e-09 1.09753151e-09 7.917670636e-10 4.438823557e-10 2.2606582e-10 9.824247727e-11 3.247640278e-10 1.441514544e-10 3.900358871e-11 3.940880287e-13 3.429672179e-12 4.021862481e-14 3.214604529e-14 7.544805606e-16 1.57175806e-16 2.09966791e-16 3.792115562e-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 7.831660717e-19 2.355919465e-18 7.153569628e-19 5.57422422e-17 4.448369675e-15 4.914659714e-16 3.307606189e-14 5.254999106e-14 7.659886401e-13 3.875061823e-12 6.684397081e-11 9.872088587e-11 1.914545016e-10 2.416322346e-10 2.069448227e-10 7.28008133e-10 4.20235458e-10 1.028574464e-09 1.179324662e-09 1.319327368e-09 1.293067943e-09 1.602889763e-09 1.358061096e-09 1.716740439e-09 1.505094798e-09 1.978802706e-09 2.024522337e-09 2.220680827e-09 2.078901078e-09 2.50035182e-09 2.398740769e-09 2.165439753e-09 2.506870617e-09 2.498541254e-09 2.703517172e-09 2.6605991e-09 2.893659277e-09 3.095021393e-09 2.85461689e-09 3.107821875e-09 2.730350299e-09 2.997164746e-09 2.714383592e-09 3.017064472e-09 3.295871731e-09 3.297880534e-09 3.43945511e-09 4.58921905e-09 4.180933399e-09 4.134374747e-09 4.51790673e-09 4.748116947e-09 4.635028887e-09 4.531995398e-09 5.501106523e-09 4.846889022e-09 4.284789189e-09 4.6690363e-09 7.791731771e-09 5.628447915e-09 4.409009527e-09 5.69768912e-09 4.721469378e-09 5.708281204e-09 3.808650719e-09 4.291799596e-09 3.915733147e-09 3.261348285e-09 4.357186148e-09 4.748754534e-09 3.366055012e-09 4.281435954e-09 4.110061351e-09 3.714141407e-09 3.10027177e-09 3.808102846e-09 3.66565604e-09 3.247610953e-09 3.014511013e-09 3.528757827e-09 2.879629137e-09 2.716951619e-09 3.218395516e-09 2.81200248e-09 2.928414068e-09 3.197989006e-09 2.906379482e-09 2.79402195e-09 2.92001276e-09 3.117525207e-09 3.130532657e-09 2.820869082e-09 3.120751239e-09 3.490684876e-09 3.379413271e-09 2.912253908e-09 2.822284129e-09 3.710109971e-09 3.203569728e-09 3.130808887e-09 3.884974811e-09 2.937938643e-09 4.204320176e-09 4.144898708e-09 4.02215999e-09 3.851537257e-09 4.668279295e-09 4.550194015e-09 5.646692867e-09 4.963477009e-09 5.466830272e-09 5.377682787e-09 5.454837281e-09 5.054415531e-09 3.978845644e-09 6.253740317e-09 4.397666246e-09 6.129510579e-09 4.580860942e-09 5.330867022e-09 4.286551517e-09 4.766466435e-09 4.80302401e-09 4.500412839e-09 3.977566251e-09 4.070541355e-09 4.821981426e-09 4.544110728e-09 3.239591647e-09 2.896192016e-09 3.380017311e-09 3.082517707e-09 2.901530884e-09 2.862962912e-09 3.011226508e-09 3.04978112e-09 2.729347918e-09 2.910800342e-09 2.05348678e-09 2.539621112e-09 2.54645498e-09 2.290835233e-09 2.486087004e-09 2.168872521e-09 2.117317092e-09 2.466011475e-09 1.952328071e-09 1.910249899e-09 1.737653182e-09 1.748446558e-09 1.739449222e-09 1.586847821e-09 1.25509093e-09 1.434796885e-09 1.257078137e-09 1.10254592e-09 9.370370973e-10 8.932446852e-10 3.943318505e-10 2.042999189e-10 2.010044118e-10 6.852935374e-11 6.023784462e-11 2.051608191e-13 3.149971709e-12 1.389755634e-13 3.012822973e-13 2.085407586e-14 1.553652225e-14 1.306143564e-17 0 1.164085597e-17 4.311279884e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.569786736e-18 2.173521502e-16 4.102076716e-17 1.968045404e-16 8.007620918e-14 7.366727531e-15 1.124020778e-12 3.902221472e-12 9.694278553e-11 1.405952219e-10 1.062831302e-10 2.509389375e-10 2.636583106e-10 5.545038779e-10 6.199155378e-10 9.713104191e-10 1.376297648e-09 1.523988775e-09 1.600574516e-09 1.731906353e-09 1.860989602e-09 1.660235358e-09 1.650398192e-09 1.895057484e-09 2.139360687e-09 1.825483088e-09 2.161294675e-09 2.040642405e-09 2.325438133e-09 2.592572472e-09 2.609806512e-09 2.590238674e-09 2.592308999e-09 2.629293437e-09 2.720984308e-09 2.74788431e-09 2.896381626e-09 2.907422234e-09 2.951106965e-09 2.769352844e-09 3.03994971e-09 3.199067956e-09 3.593123841e-09 3.402188811e-09 4.014822907e-09 4.18268977e-09 3.443479955e-09 4.989602492e-09 4.682393246e-09 4.402742787e-09 4.589786058e-09 5.133435312e-09 4.505338389e-09 6.169651123e-09 5.411401276e-09 3.846537185e-09 5.618717828e-09 4.819816687e-09 5.110637971e-09 6.093265025e-09 5.309607286e-09 5.274815746e-09 4.470865201e-09 5.052954143e-09 4.764634835e-09 4.775017897e-09 4.425848879e-09 4.94156914e-09 3.804725938e-09 3.820384743e-09 4.136183223e-09 3.922628436e-09 3.781144955e-09 2.091497361e-09 3.808099228e-09 3.624483932e-09 2.69047835e-09 2.942392222e-09 3.089612264e-09 3.190733282e-09 2.821472664e-09 3.62564593e-09 2.991210693e-09 2.95727719e-09 2.927930423e-09 3.741643921e-09 2.681053497e-09 2.96829702e-09 2.858877807e-09 3.27948367e-09 3.437869649e-09 2.314950268e-09 3.225497688e-09 3.349690938e-09 3.605326864e-09 3.511231763e-09 3.645402752e-09 3.384656428e-09 3.397361394e-09 4.064714403e-09 3.869779318e-09 4.588730872e-09 3.961819503e-09 4.409115188e-09 5.544422104e-09 5.850997917e-09 4.762100592e-09 4.771848794e-09 3.814448104e-09 3.744492386e-09 6.378243841e-09 4.046291526e-09 4.150874133e-09 4.530148281e-09 5.832625705e-09 4.854784531e-09 4.318917854e-09 3.230462582e-09 5.496463627e-09 4.998999348e-09 4.005424392e-09 3.857758633e-09 4.754839061e-09 4.126712858e-09 3.874077155e-09 3.045118577e-09 3.335899696e-09 3.147429152e-09 3.16172743e-09 3.188178967e-09 3.131134651e-09 3.025149321e-09 2.730191882e-09 2.797090304e-09 2.80277977e-09 2.662382036e-09 2.810105347e-09 2.733103313e-09 2.580605516e-09 2.38837587e-09 2.377360897e-09 2.152267591e-09 2.230691196e-09 1.942441524e-09 2.188051817e-09 2.146509979e-09 1.887901987e-09 1.664053922e-09 1.553126727e-09 1.991285921e-09 1.551190128e-09 1.576903078e-09 1.343210574e-09 1.336497014e-09 8.423652374e-10 6.721982857e-10 1.967994731e-10 4.004093044e-10 3.065781478e-10 2.33121839e-10 1.083229439e-10 1.425488598e-10 3.528457776e-12 5.985782448e-14 2.255870439e-13 8.590627228e-14 1.153592955e-14 4.80291218e-17 9.394443078e-17 2.163056652e-17 1.87821886e-19 8.374127495e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.137652218e-19 4.422187335e-18 3.724269932e-17 3.639757321e-17 6.683413264e-17 5.34349369e-15 1.664135853e-13 2.410131033e-13 4.047352394e-12 8.519530595e-12 6.510583352e-12 2.659004607e-10 2.151191912e-10 2.06684051e-10 2.750238395e-10 3.57498671e-10 8.989013348e-10 1.142683065e-09 1.100427272e-09 1.121048016e-09 1.661632453e-09 1.513843363e-09 1.487316153e-09 1.739799614e-09 1.876669376e-09 1.795205529e-09 2.1601414e-09 1.876146449e-09 2.033723177e-09 2.283644875e-09 2.285710661e-09 2.362566702e-09 2.514902886e-09 2.921964947e-09 2.26135508e-09 2.803063236e-09 2.765900815e-09 2.744846396e-09 2.796954978e-09 2.718972659e-09 2.914232166e-09 3.356536709e-09 3.11746324e-09 3.153876357e-09 3.627420184e-09 3.310522101e-09 3.282829057e-09 4.40010139e-09 3.27025246e-09 5.169599991e-09 5.316260461e-09 3.568532686e-09 4.718305329e-09 4.758259446e-09 4.618013389e-09 4.496319659e-09 5.47589804e-09 4.133905735e-09 5.947501164e-09 4.223764587e-09 4.079513745e-09 6.643564257e-09 6.300805831e-09 5.000535424e-09 5.934267117e-09 4.930426225e-09 5.661590262e-09 4.535283401e-09 5.199816498e-09 4.833628028e-09 3.921602551e-09 4.167032829e-09 3.901082922e-09 3.319905812e-09 3.662142008e-09 3.771508656e-09 2.806769755e-09 3.016979953e-09 3.851114305e-09 3.290370302e-09 3.063713221e-09 3.365472558e-09 3.277490213e-09 3.564377615e-09 2.870962202e-09 3.470675297e-09 2.903333164e-09 3.06882446e-09 3.639229652e-09 3.729445774e-09 3.240950696e-09 3.096591335e-09 3.155561632e-09 3.415012134e-09 3.017482857e-09 3.16905802e-09 2.655001463e-09 3.686069565e-09 4.115827148e-09 3.875974993e-09 3.505726505e-09 3.872911092e-09 3.561905797e-09 4.297716592e-09 4.74820441e-09 4.648420679e-09 3.556866182e-09 4.642698414e-09 5.082044819e-09 5.004915061e-09 4.050365581e-09 4.463127727e-09 5.373855413e-09 4.186289028e-09 4.548429641e-09 5.474502577e-09 5.129102261e-09 5.43536237e-09 5.541160553e-09 5.805469101e-09 3.474465191e-09 4.421679122e-09 3.894852467e-09 4.998722427e-09 3.278330059e-09 4.114706619e-09 4.011902665e-09 3.815092158e-09 3.382196179e-09 3.065554495e-09 3.244725152e-09 3.046554473e-09 3.259019758e-09 3.064766058e-09 2.874076762e-09 2.926738767e-09 2.627927478e-09 2.842789063e-09 2.813519399e-09 2.737121471e-09 2.560916026e-09 2.440840002e-09 2.3764327e-09 2.358403225e-09 2.210085016e-09 2.02520289e-09 1.99347628e-09 1.867502887e-09 1.825770242e-09 1.812280461e-09 1.626050543e-09 1.498535212e-09 1.397320367e-09 1.520729565e-09 1.279245361e-09 1.159156622e-09 9.290876969e-10 8.594463882e-10 4.826003824e-10 2.450734898e-10 5.858863789e-11 1.14142387e-10 1.004658322e-11 1.252831683e-11 2.612039838e-12 1.82829617e-12 1.092701784e-14 3.140649556e-14 3.913973546e-15 5.179074329e-16 6.70276814e-17 2.579381501e-17 6.164442136e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.903337161e-19 7.004715655e-17 4.711982589e-17 1.689538077e-15 3.961948591e-16 8.159427261e-15 5.090031337e-15 1.487242943e-11 8.101482758e-12 3.554280532e-12 1.351896932e-10 2.47769063e-10 1.93360833e-10 3.594585108e-10 5.816450225e-10 9.210118208e-10 9.972477165e-10 9.775196179e-10 1.169015896e-09 1.103202066e-09 1.671402989e-09 1.676240661e-09 1.897515792e-09 1.750038959e-09 1.691292374e-09 1.907130842e-09 2.047392034e-09 2.168363885e-09 2.450313453e-09 2.428672783e-09 2.362664855e-09 2.266320034e-09 2.40647853e-09 2.656820726e-09 2.554097376e-09 2.629855537e-09 2.973603857e-09 2.947318356e-09 2.694524692e-09 3.206725934e-09 2.824946473e-09 3.125965927e-09 3.240588783e-09 3.038222294e-09 3.469607921e-09 3.735998234e-09 4.359240596e-09 4.553885752e-09 4.200497528e-09 4.321802959e-09 4.11263407e-09 4.840865943e-09 5.317715718e-09 4.509583313e-09 4.570086148e-09 3.217788249e-09 4.347953329e-09 4.901112629e-09 5.48801225e-09 5.299303629e-09 4.669114177e-09 4.547590438e-09 4.099254792e-09 4.60469107e-09 5.386766425e-09 4.26188401e-09 4.522341936e-09 4.308614672e-09 4.819415521e-09 4.718132851e-09 3.540296906e-09 4.313170133e-09 3.789638805e-09 3.417122446e-09 4.031987887e-09 4.145110152e-09 3.402081968e-09 3.763017757e-09 3.582920615e-09 3.037876362e-09 2.917852969e-09 2.973121829e-09 2.779741548e-09 3.170298805e-09 2.660165784e-09 3.253156104e-09 3.256784478e-09 3.074455876e-09 3.065663536e-09 2.763880198e-09 2.783425787e-09 3.347919817e-09 3.013199714e-09 2.786394469e-09 3.346125419e-09 3.406119213e-09 3.138335542e-09 3.607930804e-09 3.727970434e-09 3.992894501e-09 4.926397123e-09 4.019635562e-09 4.319007208e-09 3.102275154e-09 4.229527108e-09 4.078999638e-09 5.35981127e-09 4.640079344e-09 4.674066852e-09 3.493263485e-09 5.745832037e-09 4.498055588e-09 5.626520339e-09 5.323349015e-09 3.740698989e-09 6.528529245e-09 5.523199993e-09 5.928199742e-09 5.058532506e-09 5.040119945e-09 4.045864781e-09 5.039049173e-09 4.399522019e-09 4.416845853e-09 4.246147917e-09 4.017414439e-09 3.274207571e-09 3.361161895e-09 3.084306559e-09 3.269954557e-09 3.198657275e-09 3.224676274e-09 2.891218034e-09 2.880533389e-09 2.842386066e-09 2.921573563e-09 2.549398157e-09 2.586634534e-09 2.621677726e-09 2.441312137e-09 2.353108329e-09 2.320327268e-09 2.579116646e-09 2.118483328e-09 2.255111386e-09 2.375400343e-09 2.124224266e-09 2.148061847e-09 1.829524829e-09 1.789766536e-09 1.796278989e-09 1.590501242e-09 1.400926864e-09 1.134626361e-09 1.136226883e-09 1.063377852e-09 5.87007023e-10 4.015962811e-10 2.669807024e-10 2.390586398e-10 4.748023521e-10 1.633784775e-10 3.127591372e-11 6.841210018e-12 3.590205041e-12 7.069219809e-13 2.85009919e-15 1.493536375e-15 3.341544971e-17 3.647448444e-16 1.389047228e-17 8.742432183e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.89913133e-19 5.837130609e-18 8.692258408e-17 6.206452627e-17 2.020004037e-15 2.848430005e-14 2.505934104e-13 1.660065545e-13 5.965046169e-12 4.130225667e-11 1.268984033e-10 1.394404258e-10 2.040750521e-10 3.022830544e-10 5.619105774e-10 8.853354537e-10 8.302616174e-10 1.26458766e-09 1.281847335e-09 1.488283379e-09 1.638384867e-09 1.948730997e-09 1.606263198e-09 1.658622856e-09 2.131784752e-09 2.231577733e-09 1.739083128e-09 2.472795503e-09 2.063904639e-09 2.331587176e-09 2.365671524e-09 2.638297442e-09 2.670320639e-09 2.490658345e-09 2.73779125e-09 2.627132925e-09 2.591158216e-09 2.853215328e-09 2.999379043e-09 2.92929819e-09 3.188065178e-09 3.050120088e-09 3.262083753e-09 3.457123557e-09 3.842247432e-09 3.741747341e-09 3.966548687e-09 5.048957645e-09 3.858958473e-09 4.14215531e-09 4.541432031e-09 4.235781537e-09 4.780695145e-09 4.970877696e-09 4.783584055e-09 5.046860286e-09 4.690170458e-09 5.454000054e-09 4.063548366e-09 5.00957666e-09 5.589641729e-09 5.293141209e-09 4.27025302e-09 5.157805315e-09 5.765704616e-09 5.804389757e-09 4.790174993e-09 4.581041006e-09 4.274744531e-09 4.321189041e-09 3.036978375e-09 4.726014123e-09 3.518101454e-09 3.915456016e-09 3.452778555e-09 3.390272493e-09 3.17339772e-09 3.160681735e-09 3.883800413e-09 2.697345411e-09 3.442188439e-09 2.863804441e-09 3.498932046e-09 2.471632668e-09 2.770034171e-09 2.64418425e-09 3.003071785e-09 3.168196049e-09 3.043046554e-09 2.82838587e-09 3.063495197e-09 3.000466622e-09 2.674017552e-09 3.105154729e-09 4.065515449e-09 2.544061796e-09 3.418311089e-09 3.430108168e-09 3.846744766e-09 3.842527168e-09 4.169345529e-09 3.869090614e-09 4.609827002e-09 4.501635898e-09 3.989075483e-09 5.334360923e-09 5.304991571e-09 2.770901001e-09 5.103005509e-09 5.087363578e-09 4.412002093e-09 5.801198146e-09 5.265904094e-09 4.511195086e-09 4.603469756e-09 4.754387004e-09 4.268761052e-09 6.003120119e-09 4.844077916e-09 4.655333966e-09 4.570463754e-09 4.318481724e-09 3.816395808e-09 4.605242386e-09 3.79170874e-09 4.220126183e-09 3.158031643e-09 3.157431302e-09 3.209063899e-09 3.204449035e-09 3.066470756e-09 3.141394222e-09 2.924144689e-09 3.080183055e-09 3.013198342e-09 2.54928906e-09 2.842938669e-09 2.80309346e-09 2.667279298e-09 2.457592831e-09 2.733688339e-09 2.508673832e-09 2.376704361e-09 2.174712325e-09 2.170374854e-09 2.413847901e-09 2.114765785e-09 2.058699467e-09 1.765345235e-09 1.945651645e-09 1.558486517e-09 1.495840928e-09 1.536023355e-09 1.472113777e-09 1.203323923e-09 8.842408207e-10 6.996110591e-10 5.652031869e-10 3.60263639e-10 1.921948132e-10 1.515485757e-10 4.612716047e-11 7.895540692e-12 4.896557444e-12 1.684913324e-12 1.808482551e-13 8.134826324e-16 1.037425055e-15 1.252866644e-17 2.438189531e-17 9.03889009e-19 1.740282054e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.470964463e-36 1.126756479e-18 7.831569373e-18 9.768588816e-17 2.556741595e-16 2.076788633e-15 2.267777495e-15 1.13190076e-13 1.817182353e-13 2.71890495e-11 2.816061195e-11 2.394386892e-10 1.999404329e-10 1.345000342e-10 2.173374268e-10 5.685155139e-10 9.435896592e-10 9.048968438e-10 1.048643655e-09 1.415382555e-09 1.476847301e-09 1.526884551e-09 1.731939027e-09 1.589663054e-09 1.792755346e-09 2.211289048e-09 1.930957562e-09 1.784289293e-09 2.229504686e-09 2.358822029e-09 2.362578549e-09 2.524930658e-09 2.447027132e-09 2.553427156e-09 2.516585956e-09 2.793143047e-09 2.792177581e-09 2.771208602e-09 2.885566621e-09 3.219277757e-09 2.997164163e-09 2.991646766e-09 3.050124037e-09 3.443930516e-09 3.216635009e-09 3.587445782e-09 3.280404169e-09 3.553325355e-09 4.381811937e-09 4.642543679e-09 4.646921331e-09 5.01110169e-09 4.319947483e-09 4.618417754e-09 5.582624648e-09 5.206314084e-09 4.988368053e-09 5.331024519e-09 4.645960658e-09 5.013057576e-09 6.231666452e-09 6.666014989e-09 4.366181376e-09 5.613845506e-09 6.438006668e-09 5.365562783e-09 5.786356352e-09 5.041357545e-09 5.040848233e-09 4.121550678e-09 4.539358336e-09 3.218039597e-09 2.923191977e-09 2.374033209e-09 3.659172332e-09 4.110293239e-09 3.663770108e-09 3.377749722e-09 3.163889421e-09 3.29764206e-09 3.116771519e-09 3.173819337e-09 2.784928962e-09 2.95082797e-09 3.135075675e-09 3.108310422e-09 2.740370779e-09 3.323785819e-09 3.145746711e-09 3.424188932e-09 2.897108881e-09 2.606903814e-09 2.627782611e-09 3.328608125e-09 3.077319437e-09 2.858337457e-09 2.637606994e-09 2.675427642e-09 2.890589442e-09 3.616969758e-09 3.978180665e-09 3.015557444e-09 4.072694347e-09 4.766752016e-09 3.348090781e-09 4.085990897e-09 4.445678733e-09 4.631478684e-09 4.103676983e-09 4.502929403e-09 5.768026566e-09 6.544450569e-09 6.119620663e-09 5.334668492e-09 4.631217803e-09 4.97743076e-09 5.888399366e-09 4.156753073e-09 5.757895365e-09 4.869828267e-09 3.914536557e-09 6.157425975e-09 4.130401768e-09 4.666788329e-09 4.015590577e-09 3.228133087e-09 4.238421779e-09 3.118942837e-09 3.212331525e-09 3.025692918e-09 3.144965017e-09 3.093253534e-09 3.039512497e-09 3.081154549e-09 3.129072688e-09 2.738023317e-09 2.623966197e-09 2.710137535e-09 2.733341567e-09 2.840579927e-09 2.395735781e-09 2.495207979e-09 2.562375032e-09 2.378712306e-09 2.317102696e-09 2.308745885e-09 1.989758181e-09 2.081994754e-09 2.112643145e-09 1.738521798e-09 1.839931746e-09 1.554599046e-09 1.775477565e-09 1.253993111e-09 1.238077869e-09 1.289755611e-09 9.015366678e-10 8.024762791e-10 5.301740388e-10 2.461540327e-10 3.100368723e-10 2.463441183e-10 3.676694861e-10 3.249360768e-11 3.558897989e-11 1.230338044e-12 5.747553536e-14 4.680426583e-14 5.587792991e-15 2.644855422e-16 4.148219943e-17 4.77057622e-18 1.018171674e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.680971343e-18 2.077903081e-17 3.656861744e-17 1.392733489e-15 1.076233398e-15 1.996415815e-14 7.656264952e-13 3.168966629e-12 1.810423125e-11 2.576952555e-11 7.080625387e-12 1.33339801e-10 4.212621743e-10 2.083962446e-10 2.170042733e-10 8.328673517e-10 1.093349097e-09 1.105889398e-09 1.152120793e-09 1.233456336e-09 1.508971472e-09 1.663630931e-09 1.970533277e-09 1.727134151e-09 1.960465924e-09 2.042524886e-09 2.179759905e-09 2.33598246e-09 2.278006663e-09 2.34650651e-09 2.259079477e-09 2.443131071e-09 2.628028737e-09 2.674533214e-09 2.599669442e-09 2.766693774e-09 2.723219394e-09 2.917060521e-09 3.166251655e-09 3.118304291e-09 3.239152791e-09 2.962011699e-09 3.226084068e-09 3.119314344e-09 3.05831125e-09 3.367634924e-09 3.788180736e-09 4.630635905e-09 4.557290041e-09 4.174476688e-09 4.987757064e-09 4.471568584e-09 5.625006623e-09 5.422132183e-09 5.618486984e-09 3.411173562e-09 5.673325964e-09 5.509416448e-09 4.808296934e-09 5.911259244e-09 5.501426305e-09 3.862652959e-09 6.980337764e-09 4.437490744e-09 4.763831897e-09 4.556727534e-09 4.706654624e-09 3.990119263e-09 4.47350378e-09 4.809191208e-09 4.670030288e-09 4.023118595e-09 2.929740459e-09 3.506985604e-09 3.74039138e-09 3.245731296e-09 3.300821962e-09 3.331050336e-09 3.58564032e-09 2.898093235e-09 3.194472814e-09 3.00973089e-09 2.764836696e-09 2.66885765e-09 3.021306713e-09 3.074550497e-09 2.642379796e-09 2.959671124e-09 2.91484468e-09 2.746464069e-09 3.853344658e-09 3.303212943e-09 3.204244373e-09 4.106590986e-09 2.629622743e-09 3.092831081e-09 3.321478225e-09 3.817174291e-09 3.589167123e-09 4.167018394e-09 4.299514709e-09 4.280848315e-09 4.317299915e-09 5.452430339e-09 6.16017863e-09 5.592193332e-09 5.124162242e-09 4.46192052e-09 4.90684353e-09 4.326239942e-09 5.903326637e-09 6.143903016e-09 6.095953397e-09 4.159413529e-09 5.155465644e-09 5.004365141e-09 5.861315339e-09 5.782849999e-09 4.981526181e-09 6.051070086e-09 5.198715545e-09 6.607795106e-09 5.384661468e-09 5.485166154e-09 3.815277223e-09 3.206244086e-09 3.702857063e-09 3.352233072e-09 3.342658655e-09 3.235760319e-09 3.290389422e-09 3.212459462e-09 2.995176341e-09 2.88308058e-09 3.086409513e-09 2.969463454e-09 2.744405153e-09 2.626487951e-09 2.6059111e-09 2.769695436e-09 2.12296352e-09 2.327203191e-09 2.297065297e-09 2.194934533e-09 2.287862053e-09 1.950686593e-09 2.090436953e-09 1.808082796e-09 1.988847531e-09 1.667073569e-09 1.542353002e-09 1.425907618e-09 1.303297265e-09 1.315003697e-09 8.904050545e-10 6.377660229e-10 8.225228332e-10 4.76226268e-10 3.471493281e-10 3.422566924e-10 2.563125162e-11 2.71239594e-10 1.786093254e-10 1.409076915e-11 4.644976925e-14 1.705459041e-14 3.190517951e-15 1.755616545e-14 6.731801742e-17 6.282131327e-17 6.584217758e-19 6.549856934e-19 8.391786069e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.168385093e-19 1.698428905e-18 4.87217859e-19 4.724364891e-16 9.223004971e-16 2.947266989e-15 5.694830144e-16 1.607480966e-13 2.056270437e-13 5.105525454e-13 1.720884313e-11 3.322431287e-11 3.10872795e-10 1.68184766e-10 1.77808202e-10 6.068676491e-10 7.500248717e-10 7.557289075e-10 1.02789248e-09 1.200953327e-09 1.365029149e-09 1.485499935e-09 1.51422454e-09 1.693897947e-09 1.655795591e-09 1.687462532e-09 2.057162701e-09 1.711190489e-09 2.265967693e-09 2.295024518e-09 2.236808502e-09 2.5158795e-09 2.583489714e-09 2.652804354e-09 2.634318576e-09 2.834007561e-09 2.861311818e-09 2.709268871e-09 3.188319765e-09 2.686201223e-09 3.219630069e-09 2.888547109e-09 3.477581741e-09 2.931586361e-09 3.265327673e-09 3.40786333e-09 3.866606711e-09 3.44470565e-09 4.070623422e-09 5.062214321e-09 3.920157213e-09 4.526915697e-09 4.999277338e-09 3.882441365e-09 6.051262279e-09 4.445279448e-09 6.911539366e-09 5.591587264e-09 4.97965904e-09 4.602216415e-09 4.240717904e-09 5.298700764e-09 4.837665583e-09 4.846135243e-09 4.965980443e-09 5.033361752e-09 4.305598018e-09 5.236176035e-09 4.209414299e-09 4.616717814e-09 4.794025064e-09 4.246172642e-09 4.014515533e-09 3.287655983e-09 4.259433043e-09 3.356924316e-09 3.5083391e-09 2.939522366e-09 3.339895232e-09 2.958560549e-09 3.353254052e-09 3.638223435e-09 3.599090387e-09 3.623585375e-09 3.392556823e-09 2.719622782e-09 3.062510279e-09 3.133938766e-09 3.300529769e-09 3.085151333e-09 2.487838704e-09 3.278832592e-09 3.775992595e-09 2.66171691e-09 2.689883875e-09 3.183472762e-09 2.876573133e-09 2.416651943e-09 3.373038402e-09 4.139197272e-09 3.520717974e-09 3.420384735e-09 3.996986926e-09 4.239587838e-09 3.580832347e-09 4.377841526e-09 5.29047691e-09 4.330022707e-09 4.697719138e-09 4.839991232e-09 4.095899202e-09 4.654864547e-09 4.06782103e-09 4.850120416e-09 3.475538751e-09 5.642394644e-09 4.668004411e-09 5.064883415e-09 5.013253836e-09 5.119473214e-09 3.091559816e-09 4.167455382e-09 5.434900291e-09 5.631202676e-09 4.336014926e-09 4.011056929e-09 4.077708026e-09 4.469168256e-09 3.620907798e-09 3.269853403e-09 3.382606429e-09 3.361157969e-09 2.983989773e-09 2.920970218e-09 2.879036783e-09 2.872117085e-09 2.848626406e-09 2.680998957e-09 2.747719502e-09 2.700900467e-09 2.755464399e-09 2.396705783e-09 2.352954976e-09 2.095278609e-09 2.336802121e-09 2.268054981e-09 2.037223527e-09 2.002253792e-09 1.799324193e-09 2.175216379e-09 1.701070737e-09 1.461683211e-09 1.577519831e-09 1.258474027e-09 1.136327686e-09 1.082906725e-09 7.877664918e-10 7.874965463e-10 5.105948111e-10 2.134108276e-10 3.131736311e-10 3.177819784e-10 1.825878894e-10 6.969627483e-11 1.581895467e-11 2.651770514e-12 3.444868796e-13 1.225391399e-14 4.198911922e-15 6.754991754e-16 1.297864803e-16 3.841782081e-17 7.5960882e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.797123014e-18 1.862136515e-17 2.745157612e-18 7.278228988e-16 3.525348186e-15 5.522659777e-14 2.321604522e-13 3.647895873e-13 2.884330599e-12 9.913921425e-12 2.034123753e-11 1.539255787e-10 2.956651108e-10 1.927461192e-10 4.701569941e-10 7.598250528e-10 8.52332615e-10 1.05901588e-09 1.315958062e-09 1.084458938e-09 1.355313901e-09 1.598497465e-09 1.724886696e-09 1.881773248e-09 1.787991785e-09 2.021981868e-09 2.319086254e-09 2.241342438e-09 2.303532999e-09 2.436904603e-09 2.469418612e-09 2.715924635e-09 2.610847029e-09 2.426359727e-09 2.73087597e-09 2.659396275e-09 2.774911785e-09 3.196762897e-09 3.121810194e-09 3.203926055e-09 3.260737017e-09 3.327246126e-09 3.498060585e-09 3.262322737e-09 3.279546683e-09 3.422405695e-09 3.561226758e-09 3.420315799e-09 3.895350842e-09 5.004991645e-09 4.470660302e-09 4.639620678e-09 5.040825336e-09 5.335299815e-09 3.736680224e-09 5.905469711e-09 4.174011531e-09 4.735031227e-09 3.741996189e-09 4.555211662e-09 4.859102598e-09 5.491292003e-09 6.717886276e-09 4.714312266e-09 5.727851129e-09 4.586376013e-09 4.482155014e-09 3.719422309e-09 4.258383308e-09 4.054440357e-09 3.907044497e-09 4.53259235e-09 3.675878202e-09 3.438055791e-09 3.968554602e-09 3.275034469e-09 3.880728453e-09 3.266204488e-09 3.737879899e-09 2.986540023e-09 3.67559312e-09 3.118222552e-09 2.963562035e-09 3.102403894e-09 3.609383035e-09 4.007824227e-09 3.145268807e-09 2.778351918e-09 3.484516503e-09 3.097090166e-09 2.873199364e-09 3.337304819e-09 3.802875192e-09 4.032519749e-09 3.213819866e-09 3.746141551e-09 4.18471386e-09 3.497247138e-09 4.435365161e-09 4.101348309e-09 3.921516313e-09 4.089884296e-09 4.452886506e-09 5.159513209e-09 4.484038241e-09 4.679372925e-09 4.842738904e-09 4.948278538e-09 5.981057401e-09 4.390544661e-09 4.422864072e-09 5.931553916e-09 5.872388966e-09 5.213034102e-09 3.864261586e-09 4.924763058e-09 5.525342359e-09 5.529050463e-09 5.412062512e-09 3.552811895e-09 5.166746814e-09 3.856072451e-09 5.009721482e-09 4.303031302e-09 4.027600534e-09 4.22565361e-09 4.174487686e-09 3.24126252e-09 3.506367938e-09 3.139201722e-09 2.98450714e-09 3.318566765e-09 3.068848329e-09 2.933595288e-09 2.682875319e-09 2.748395329e-09 2.926048793e-09 2.667730646e-09 2.597131362e-09 2.569039923e-09 2.529017171e-09 2.569028896e-09 2.229303197e-09 2.117247905e-09 2.239036602e-09 1.947211978e-09 2.081175253e-09 2.189719463e-09 1.749128011e-09 1.891423586e-09 1.692613181e-09 1.562051933e-09 1.387025886e-09 1.271337533e-09 1.089259008e-09 8.739344705e-10 8.819128358e-10 5.062281397e-10 3.010908423e-10 3.574838847e-10 2.639693222e-10 2.309440027e-10 6.63571215e-11 9.921565075e-13 3.405153472e-13 1.466292998e-13 1.188658172e-13 9.390746871e-16 6.552789877e-16 1.291712992e-16 1.31226547e-17 2.243829602e-18 5.297487412e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.994871651e-18 2.804364119e-17 1.163449833e-16 4.350193755e-18 6.382919635e-16 6.699722427e-14 2.117135134e-14 9.798387665e-13 2.137620809e-11 7.203700275e-11 2.022650549e-10 3.143610058e-10 4.074540453e-10 2.334327204e-10 6.573277956e-10 9.445063889e-10 1.046751015e-09 1.200807291e-09 9.37397997e-10 1.383253763e-09 1.472943037e-09 1.602092876e-09 1.72747224e-09 1.731854718e-09 2.092008753e-09 1.924002599e-09 2.192621079e-09 2.371971143e-09 2.214009811e-09 2.199475952e-09 2.488259611e-09 2.344088081e-09 2.557656961e-09 2.550657598e-09 2.60303475e-09 3.110710338e-09 3.066083694e-09 2.987841963e-09 3.029946543e-09 3.261184082e-09 2.785142215e-09 3.100346318e-09 3.228410693e-09 3.708201087e-09 3.711172744e-09 4.437956884e-09 3.939264176e-09 4.778994964e-09 3.692006973e-09 3.508220829e-09 4.464211654e-09 5.12072984e-09 3.774832715e-09 5.20751363e-09 4.09273976e-09 5.429597001e-09 4.241118394e-09 6.093111228e-09 5.29431921e-09 6.283482202e-09 4.43558364e-09 4.505889548e-09 4.812669767e-09 5.40555494e-09 4.407355487e-09 5.165488421e-09 3.387330183e-09 4.184726233e-09 3.94961113e-09 4.32580257e-09 4.088978278e-09 2.991377543e-09 3.496934226e-09 3.072676748e-09 3.432481247e-09 3.220909051e-09 3.435280532e-09 3.23484364e-09 3.199466694e-09 2.690950867e-09 3.286573096e-09 2.802984229e-09 2.985081476e-09 3.012141664e-09 2.972140378e-09 3.201373761e-09 3.157596918e-09 2.887741015e-09 3.133706505e-09 2.985088448e-09 2.847343382e-09 2.974218081e-09 3.04848086e-09 3.165612101e-09 3.208488502e-09 3.789396331e-09 3.419594772e-09 4.205701845e-09 3.810461414e-09 3.834935661e-09 3.809560992e-09 4.494215928e-09 3.595652529e-09 4.558739035e-09 4.77730838e-09 4.188259156e-09 4.827358332e-09 4.381416022e-09 3.88421035e-09 6.478290982e-09 4.959711775e-09 5.182540502e-09 5.914822433e-09 4.610539366e-09 5.205096616e-09 5.714340396e-09 4.441810883e-09 5.515336887e-09 5.075461977e-09 4.515919536e-09 3.649372833e-09 4.411164075e-09 4.118751305e-09 3.784537541e-09 4.653528193e-09 4.10121085e-09 4.826033365e-09 3.193390323e-09 3.157128698e-09 3.2330349e-09 3.29250951e-09 3.203103862e-09 3.12622833e-09 3.029183719e-09 3.209365266e-09 2.92359277e-09 2.7862091e-09 2.762391039e-09 2.48717947e-09 2.537151423e-09 2.625744313e-09 2.363786239e-09 2.495570928e-09 2.235753758e-09 2.176771295e-09 2.272102916e-09 1.983623737e-09 1.61371361e-09 2.072928956e-09 1.585864795e-09 1.558851217e-09 1.474804889e-09 1.356887348e-09 1.3045772e-09 1.141097923e-09 1.074727739e-09 1.055842328e-09 4.793954316e-10 2.483608101e-10 3.108322575e-10 1.927958895e-10 1.404403237e-10 3.111291901e-11 1.185805461e-11 3.470172139e-13 2.664014872e-13 1.610408547e-14 3.886053469e-16 1.340364836e-16 1.26294232e-16 1.100738712e-17 5.304654902e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.287014047e-18 5.295776812e-19 7.055118779e-17 6.929096974e-17 6.196314576e-15 4.218758877e-14 3.189316421e-13 2.198076954e-12 7.122669024e-12 7.644382406e-12 1.93276092e-10 2.73176616e-10 3.549828784e-10 3.225684937e-10 4.963017413e-10 4.438283234e-10 8.774330079e-10 1.049069984e-09 1.433609587e-09 1.51560292e-09 1.508846351e-09 1.614668728e-09 1.865155245e-09 1.748187601e-09 2.034779844e-09 1.94530462e-09 2.034814314e-09 2.286468284e-09 2.350512275e-09 2.289261245e-09 2.524428753e-09 2.712909738e-09 2.881732957e-09 2.626416332e-09 2.546970219e-09 2.911094342e-09 2.858105517e-09 2.701923193e-09 2.84388589e-09 3.183794345e-09 2.905434219e-09 3.071694677e-09 3.343148192e-09 3.580544903e-09 3.545998092e-09 3.618317496e-09 3.361464672e-09 3.390514864e-09 4.401365713e-09 4.516529937e-09 4.29493476e-09 4.402839028e-09 4.502836932e-09 4.701009269e-09 4.198775767e-09 5.281328434e-09 5.519181972e-09 4.772984608e-09 5.291293552e-09 5.735284236e-09 5.331076608e-09 5.599363751e-09 4.196629293e-09 4.06445343e-09 4.179287758e-09 4.750097665e-09 4.586004656e-09 4.376642716e-09 4.603251149e-09 4.409899943e-09 4.367427144e-09 4.188843044e-09 3.986521095e-09 4.202053854e-09 3.343103426e-09 3.703428707e-09 3.548660344e-09 3.468217188e-09 2.461475663e-09 3.548897852e-09 3.197712528e-09 3.454821407e-09 3.070853679e-09 3.158341355e-09 3.191138879e-09 2.598668395e-09 2.846277204e-09 2.826438774e-09 3.087192973e-09 3.279516482e-09 2.881604326e-09 3.164116258e-09 3.106786935e-09 2.591592306e-09 3.355989797e-09 3.39091186e-09 3.287862598e-09 3.432415536e-09 3.592979858e-09 3.737620717e-09 4.659844113e-09 4.363652025e-09 3.953088234e-09 4.73559296e-09 4.112665002e-09 5.823365643e-09 5.436015949e-09 4.324011687e-09 5.176659836e-09 6.372667716e-09 4.278312712e-09 3.730224272e-09 3.967895488e-09 5.162972479e-09 5.183274042e-09 5.534154505e-09 5.470575022e-09 3.812864943e-09 5.746875805e-09 4.423970835e-09 4.212578542e-09 3.446362896e-09 3.73761636e-09 4.228866728e-09 4.618802185e-09 4.129745517e-09 3.32206959e-09 3.356282096e-09 3.335665479e-09 3.126291406e-09 3.055448488e-09 2.888720597e-09 2.896679773e-09 3.004953025e-09 2.809502315e-09 2.953595727e-09 2.856073142e-09 2.627785655e-09 2.57980098e-09 2.541182888e-09 2.226580531e-09 2.42106482e-09 2.392931422e-09 2.285310116e-09 2.44622953e-09 2.270754761e-09 2.103059031e-09 1.97600367e-09 1.617726153e-09 1.644012458e-09 1.839820816e-09 1.428428963e-09 1.307993381e-09 1.311383738e-09 1.133870904e-09 6.704602899e-10 6.535317885e-10 3.334517298e-10 3.99643321e-10 3.569736283e-10 2.100279152e-10 2.261789689e-10 1.032317945e-10 1.937468471e-11 6.556043727e-13 8.102100783e-14 1.342824807e-13 2.308914762e-16 6.426257258e-16 3.763219993e-17 2.675052007e-18 7.495428759e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.70224063e-19 5.780041638e-17 5.445779092e-17 9.497721935e-16 7.642009457e-15 1.518763697e-14 1.023340165e-12 2.004942929e-12 1.161417182e-11 1.296929571e-10 9.877744993e-11 2.699303833e-10 1.884826682e-10 2.152583945e-10 3.892769619e-10 8.612481812e-10 8.675158379e-10 1.135321672e-09 1.148940207e-09 1.339309727e-09 1.455028825e-09 1.553101283e-09 1.610507233e-09 1.76199937e-09 1.831022616e-09 2.098405306e-09 2.200304371e-09 2.277197622e-09 2.333626108e-09 2.48574535e-09 2.389434721e-09 2.706251943e-09 2.474898117e-09 2.6626784e-09 2.732139867e-09 2.77210172e-09 2.833325826e-09 2.968437803e-09 3.229368136e-09 3.217727293e-09 3.018738007e-09 3.19477561e-09 3.509811774e-09 2.998209124e-09 3.185705173e-09 3.490096637e-09 3.681337152e-09 3.536812641e-09 4.763466962e-09 3.853899007e-09 3.993651065e-09 4.680492429e-09 6.60558235e-09 4.824455342e-09 5.883337371e-09 5.797843075e-09 3.694812509e-09 5.392638417e-09 5.213330128e-09 6.469099684e-09 6.061617456e-09 5.7287938e-09 6.554249517e-09 4.837575768e-09 5.065354344e-09 5.153184133e-09 4.943049692e-09 5.194159142e-09 4.767174589e-09 4.01909433e-09 4.593019212e-09 3.837290867e-09 3.441555027e-09 3.856640347e-09 3.251407572e-09 3.742576502e-09 3.250400005e-09 3.085564283e-09 3.196029014e-09 3.21994056e-09 3.251270839e-09 3.102530555e-09 3.178809439e-09 3.310789911e-09 3.2514046e-09 3.428590289e-09 3.214865254e-09 3.788382585e-09 2.676156588e-09 3.699149836e-09 3.179862312e-09 3.09952158e-09 3.285637493e-09 3.024977765e-09 3.701544968e-09 3.417613834e-09 3.632225726e-09 3.264488404e-09 3.86483436e-09 3.288533615e-09 4.170684878e-09 3.398774786e-09 5.093334317e-09 4.487880769e-09 4.793488275e-09 4.784276665e-09 5.414966192e-09 4.44745424e-09 5.091149884e-09 5.159989961e-09 5.074305181e-09 4.175691951e-09 4.590562972e-09 5.699942504e-09 5.118052783e-09 5.321552231e-09 4.940687943e-09 5.795131689e-09 5.219998073e-09 3.655191635e-09 4.275088886e-09 3.651069134e-09 5.906730623e-09 4.283734191e-09 4.078770239e-09 3.52920365e-09 3.61085961e-09 2.794255353e-09 3.522801579e-09 3.139784328e-09 3.092259755e-09 3.167257841e-09 2.958309014e-09 2.914288691e-09 2.940402482e-09 2.866660487e-09 2.766718992e-09 2.675641225e-09 2.662257085e-09 2.512202397e-09 2.534501189e-09 2.34721948e-09 2.422554693e-09 2.498447043e-09 2.369316039e-09 2.106934672e-09 1.803516848e-09 1.757241954e-09 1.873529387e-09 1.797235175e-09 1.709633792e-09 1.556729618e-09 1.411079167e-09 1.357069636e-09 1.290238844e-09 8.212945841e-10 5.033026822e-10 4.042451791e-10 2.243398177e-10 1.167685931e-10 2.279279552e-10 4.189457666e-11 2.658083849e-11 4.369922532e-12 7.686039704e-14 5.551559148e-14 1.412827373e-14 1.061154714e-15 1.144314573e-15 5.439117003e-17 2.505412153e-18 9.667205195e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.71155213e-18 7.648754553e-18 7.56522706e-16 2.066153075e-16 1.373868406e-15 1.203488069e-13 4.000488312e-13 4.847692559e-13 1.919348615e-11 1.646786451e-11 1.676487007e-10 3.419181995e-10 3.023749158e-10 2.92140361e-10 4.8323413e-10 7.485792662e-10 7.510642172e-10 9.723212363e-10 1.254878442e-09 1.524564351e-09 1.385748243e-09 1.694234963e-09 1.795790641e-09 1.79110614e-09 1.730922683e-09 2.139906456e-09 1.982743325e-09 2.341358082e-09 2.189885872e-09 2.288917651e-09 2.473444945e-09 2.477510041e-09 2.494191222e-09 2.604562787e-09 2.586551486e-09 2.847604464e-09 2.629222425e-09 2.827079984e-09 3.074542608e-09 3.252614983e-09 3.171643267e-09 3.182803976e-09 3.177577211e-09 3.245731828e-09 3.392263292e-09 3.691911973e-09 4.070881537e-09 4.306883271e-09 4.243474656e-09 4.29748855e-09 4.844383233e-09 5.135723503e-09 5.128984058e-09 4.215976887e-09 5.134583466e-09 4.10437052e-09 3.994414068e-09 4.292811651e-09 6.109439331e-09 5.284039493e-09 3.220392905e-09 6.444965096e-09 3.928880518e-09 5.288284606e-09 5.421684618e-09 4.305676581e-09 5.257259045e-09 4.071482802e-09 4.302773571e-09 4.540901682e-09 4.277760024e-09 4.094269643e-09 3.249830399e-09 3.294474572e-09 3.530041554e-09 2.803659612e-09 3.15673143e-09 2.789688148e-09 2.406269953e-09 3.458162157e-09 2.657673357e-09 3.5312748e-09 3.35881234e-09 3.263918618e-09 2.67513952e-09 3.206537236e-09 3.198401903e-09 2.970046347e-09 3.339856475e-09 3.360924982e-09 3.331204406e-09 3.634721366e-09 3.01371767e-09 3.377217722e-09 3.819372121e-09 3.269003448e-09 3.800400665e-09 4.637683102e-09 3.021389177e-09 3.8917803e-09 4.214729261e-09 4.84570013e-09 4.67596308e-09 4.241287157e-09 4.052310067e-09 5.695174057e-09 5.108952221e-09 5.5909074e-09 4.394198245e-09 4.908513861e-09 5.936871622e-09 5.623619214e-09 4.908933714e-09 4.651975816e-09 4.106042326e-09 4.476959263e-09 3.382795088e-09 4.528595195e-09 4.874462173e-09 4.332561965e-09 4.263442986e-09 4.835054429e-09 4.533194437e-09 4.316846124e-09 4.214796743e-09 4.641948465e-09 3.530612654e-09 3.552187624e-09 3.245722178e-09 3.058121337e-09 3.027896661e-09 3.093822531e-09 3.262681947e-09 3.149788384e-09 2.663199002e-09 3.02425744e-09 2.862039028e-09 2.787501914e-09 2.684198587e-09 2.470999632e-09 2.686329975e-09 2.494723899e-09 2.48844999e-09 2.483587228e-09 2.186626949e-09 2.05782571e-09 1.995014427e-09 1.82991032e-09 2.075635706e-09 1.568259814e-09 1.718749803e-09 1.426758648e-09 1.439160942e-09 1.119092504e-09 1.149011758e-09 9.928512405e-10 8.441365664e-10 4.24500508e-10 1.947709609e-10 3.373198924e-10 9.469904671e-11 1.021649953e-10 1.954238112e-11 2.090147638e-12 7.276152061e-13 5.480825794e-13 3.594739184e-15 7.917009155e-16 4.635088918e-16 3.257784358e-18 3.410059408e-18 4.019045793e-18 5.511962491e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.125068956e-19 3.018755e-25 1.830917746e-18 4.826718888e-17 4.240420653e-16 1.437421101e-15 2.00665382e-14 6.965748619e-14 3.515888597e-13 5.594995837e-12 6.741714487e-13 1.157597099e-10 3.050282642e-10 2.584919223e-10 2.901846286e-10 4.419860965e-10 7.832799395e-10 9.216896123e-10 1.290210645e-09 1.198604222e-09 1.511764274e-09 1.881003175e-09 1.620704996e-09 2.063046708e-09 1.819669744e-09 1.867179255e-09 1.826416415e-09 2.17150541e-09 2.102674798e-09 2.216455023e-09 2.319234461e-09 2.489394967e-09 2.233564217e-09 2.557125562e-09 2.665104707e-09 2.683021973e-09 2.834460485e-09 2.68764377e-09 2.934348735e-09 3.174571407e-09 2.98459998e-09 3.023285845e-09 3.175994862e-09 3.224450447e-09 3.389411692e-09 3.101910414e-09 3.32945714e-09 3.852197946e-09 3.634474505e-09 4.473118236e-09 4.160474811e-09 5.357707039e-09 5.44981843e-09 5.155308642e-09 4.936896019e-09 4.871972686e-09 6.319714094e-09 4.789956861e-09 4.700562416e-09 4.581933791e-09 5.971696208e-09 4.149831857e-09 5.279840396e-09 5.950747889e-09 4.906989802e-09 4.510510014e-09 4.619241207e-09 3.969156787e-09 4.238713801e-09 4.352192072e-09 4.09175621e-09 4.070783388e-09 4.249601451e-09 3.120604325e-09 3.06389988e-09 2.838316903e-09 3.571104939e-09 3.266440881e-09 3.126556731e-09 3.037247862e-09 3.526728644e-09 2.945513792e-09 3.685443731e-09 3.545021481e-09 3.304782574e-09 3.02590751e-09 2.832520486e-09 3.345749632e-09 2.624395076e-09 3.066602538e-09 2.180262226e-09 3.34050387e-09 3.42467868e-09 3.264837039e-09 3.409871978e-09 3.242921849e-09 3.656262354e-09 3.378473281e-09 3.219466288e-09 3.74671106e-09 3.500370898e-09 3.170269037e-09 4.9288583e-09 4.188813479e-09 3.858594866e-09 4.372151344e-09 4.811006612e-09 3.960485665e-09 3.034428571e-09 4.248609586e-09 5.201334128e-09 5.675814778e-09 4.335876789e-09 4.413792706e-09 4.420603495e-09 4.482032439e-09 4.751215096e-09 5.047155443e-09 6.320120811e-09 6.243991899e-09 5.437637158e-09 4.420211602e-09 5.325203286e-09 4.962796696e-09 3.995920885e-09 4.285914585e-09 4.188564734e-09 3.596599817e-09 3.566206909e-09 3.25958547e-09 3.153558809e-09 3.262590011e-09 2.99420364e-09 3.061220039e-09 2.988545204e-09 2.833810263e-09 2.966796267e-09 2.650453767e-09 2.573561998e-09 2.667203488e-09 2.730613222e-09 2.332299473e-09 2.606993966e-09 2.528834708e-09 2.484467991e-09 2.269615274e-09 2.1585319e-09 1.98072478e-09 1.981462248e-09 1.79094659e-09 1.862419284e-09 1.531261283e-09 1.595070894e-09 1.440451515e-09 1.315025301e-09 1.148316844e-09 1.230808451e-09 7.208429417e-10 2.583308577e-10 2.523886507e-10 2.447414291e-10 1.814014017e-10 1.414642711e-10 1.994926166e-11 2.630048591e-12 6.79912869e-13 3.602864607e-13 1.009623472e-13 2.077214464e-16 7.978644096e-16 2.931710291e-16 0 8.23693801e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.510017589e-19 1.232667144e-18 5.933818787e-17 5.661786419e-17 5.458331209e-15 1.388878401e-14 3.23592941e-13 1.583190068e-13 7.359435137e-13 1.423126814e-11 2.105098784e-10 3.093552425e-10 2.249855569e-10 2.446471121e-10 6.720662167e-10 7.763953009e-10 1.157622536e-09 1.19257398e-09 1.132194777e-09 1.381135687e-09 1.6400086e-09 1.516962006e-09 1.73017468e-09 1.781170617e-09 1.979627509e-09 1.952849193e-09 2.022177378e-09 2.347199569e-09 2.289984678e-09 2.501714164e-09 2.342094428e-09 2.431209806e-09 2.570080062e-09 2.805302029e-09 2.775988414e-09 3.131761776e-09 3.003607495e-09 2.876353727e-09 2.807110265e-09 3.198437472e-09 2.888321484e-09 3.150684543e-09 3.363628881e-09 3.021829579e-09 3.428202612e-09 3.167004164e-09 4.373902067e-09 4.277027198e-09 4.55753827e-09 4.064421853e-09 3.413810437e-09 4.175713022e-09 4.093636123e-09 4.935315449e-09 5.945574929e-09 5.066242975e-09 4.934446256e-09 5.325721669e-09 6.407351774e-09 7.106602055e-09 5.488637534e-09 3.506037963e-09 5.03805956e-09 5.366087484e-09 4.420670635e-09 5.309056882e-09 4.498025987e-09 4.603278945e-09 4.943864354e-09 4.359093523e-09 3.375347772e-09 4.975939919e-09 3.538140184e-09 3.760961262e-09 3.517071363e-09 3.897608393e-09 3.449359522e-09 3.272192171e-09 3.319129405e-09 3.446517501e-09 3.025617034e-09 3.761352266e-09 3.141395425e-09 3.413320746e-09 2.923118987e-09 2.611987129e-09 3.403720002e-09 3.48480133e-09 2.590371036e-09 3.586071461e-09 3.134553308e-09 2.977412296e-09 3.180082285e-09 3.465716062e-09 3.238862061e-09 3.615534811e-09 3.347025076e-09 3.728228179e-09 3.809734545e-09 4.124838887e-09 3.775856932e-09 3.885812196e-09 4.280785744e-09 5.079157448e-09 3.905809288e-09 4.662475868e-09 4.848595965e-09 4.886739947e-09 4.713470048e-09 5.484482132e-09 4.319852355e-09 5.300090114e-09 5.388597284e-09 5.938010817e-09 5.011111677e-09 6.351387814e-09 6.313949219e-09 4.035026055e-09 4.839423041e-09 3.94656987e-09 5.59944186e-09 6.083193582e-09 4.741521991e-09 4.47783395e-09 3.989313766e-09 4.733635009e-09 3.791549209e-09 3.793020511e-09 3.497382561e-09 3.112498515e-09 3.080141884e-09 3.100030436e-09 2.812358381e-09 3.072437336e-09 2.923927116e-09 2.939812139e-09 2.523210154e-09 2.618153611e-09 2.769587012e-09 2.620721716e-09 2.41058404e-09 2.439453749e-09 2.359569849e-09 2.271946731e-09 2.207442471e-09 1.960458865e-09 1.8934445e-09 2.223203045e-09 1.69112286e-09 1.88191136e-09 1.45636379e-09 1.60200175e-09 1.589638147e-09 1.457747951e-09 1.360793367e-09 9.415156779e-10 6.366106767e-10 6.133113897e-10 2.460536468e-10 1.020472374e-10 2.576294554e-10 1.183555021e-10 1.219978144e-11 1.894596392e-12 6.033590846e-14 1.562110926e-13 5.843438573e-14 1.090492911e-14 1.8842496e-15 2.067210887e-17 1.026759686e-17 1.311833071e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.920210491e-19 1.686694955e-18 1.922786e-17 8.024505422e-18 7.759648504e-16 1.340202693e-14 1.693786165e-15 9.67698632e-14 6.495565308e-14 4.681451987e-13 9.525720163e-11 1.442304169e-10 1.194953762e-10 2.710201924e-10 3.045751047e-10 5.558143917e-10 8.961417926e-10 1.019743369e-09 1.188508517e-09 1.382254391e-09 1.291819327e-09 1.596833534e-09 1.624094008e-09 1.531962586e-09 1.891407609e-09 1.921476136e-09 2.133083746e-09 2.051609469e-09 2.377890192e-09 2.282652231e-09 2.145736377e-09 2.692273934e-09 2.443906554e-09 2.557987475e-09 2.824855345e-09 2.754166992e-09 2.830795562e-09 2.943059138e-09 2.911509531e-09 2.837209338e-09 3.013653868e-09 2.942509089e-09 2.866032988e-09 3.25302206e-09 3.388259586e-09 3.528182873e-09 3.791463671e-09 3.689594985e-09 4.0278645e-09 4.003434269e-09 5.481772641e-09 4.612778514e-09 4.422279316e-09 4.970260371e-09 5.080856683e-09 5.450483227e-09 5.292904289e-09 6.001137454e-09 4.008928084e-09 5.202142374e-09 4.571866048e-09 4.98999442e-09 6.679417317e-09 4.175432766e-09 4.73795028e-09 5.409988719e-09 5.585914558e-09 4.867879285e-09 3.811654366e-09 4.929889866e-09 3.783217819e-09 5.007172497e-09 3.583386474e-09 3.938442081e-09 3.774014456e-09 3.579868803e-09 3.092802378e-09 3.777483493e-09 2.838393101e-09 3.635831954e-09 2.984930659e-09 3.436883537e-09 2.748093943e-09 3.380015013e-09 3.116736803e-09 2.91672837e-09 3.182989032e-09 2.934794783e-09 3.228650687e-09 3.052664353e-09 3.479170953e-09 3.019606175e-09 3.194380476e-09 3.568075337e-09 3.447326399e-09 3.078853157e-09 3.117127134e-09 3.651378908e-09 3.813971005e-09 4.034569677e-09 2.739317513e-09 3.493025148e-09 4.190331808e-09 4.422259168e-09 4.348610325e-09 4.648114351e-09 5.37940711e-09 5.717966491e-09 4.509363582e-09 4.478929564e-09 5.188394403e-09 5.280624044e-09 5.155862248e-09 5.41393873e-09 5.744488762e-09 5.618383814e-09 4.45397044e-09 4.922736234e-09 4.451947485e-09 4.930533182e-09 4.865849835e-09 4.531977909e-09 4.61460429e-09 4.239912895e-09 4.247816764e-09 3.58731612e-09 3.93707974e-09 3.646863253e-09 4.214955182e-09 3.503330231e-09 3.387103594e-09 3.118242234e-09 3.074898639e-09 3.106420474e-09 2.797178036e-09 2.939273056e-09 2.94500734e-09 2.642214145e-09 2.923020356e-09 2.497514957e-09 2.618317471e-09 2.461580527e-09 2.446972317e-09 2.467181278e-09 2.167238621e-09 2.477076092e-09 2.236269483e-09 2.147718968e-09 1.891255938e-09 1.853585964e-09 1.729905082e-09 1.662207485e-09 1.718292284e-09 1.228792496e-09 1.417694268e-09 1.152249217e-09 9.498366133e-10 7.388131369e-10 6.12159318e-10 2.905679763e-10 4.50818146e-10 8.708804413e-11 2.534821254e-10 3.092401325e-11 8.308218464e-12 2.187168517e-12 1.974603555e-14 2.805661303e-14 3.613719363e-15 6.655962214e-16 1.228524859e-16 9.580483041e-18 2.659356271e-18 7.817625372e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.81975312e-22 7.169973963e-19 4.32109446e-18 7.919313061e-16 4.584767974e-15 1.254981507e-14 1.297766847e-13 3.644599687e-14 1.672636776e-11 1.322892051e-11 1.33810861e-10 2.945038759e-10 6.005098516e-11 2.081302865e-10 3.18091949e-10 4.928272835e-10 7.145420389e-10 1.014317742e-09 1.263210803e-09 1.345791122e-09 1.624697484e-09 1.732161693e-09 1.956637017e-09 2.094754065e-09 1.950906503e-09 1.986984209e-09 1.821077197e-09 2.137591743e-09 2.245080413e-09 2.32806677e-09 2.592776441e-09 2.647330451e-09 2.552150905e-09 2.568847695e-09 2.776523457e-09 2.849691934e-09 2.989450135e-09 3.045458878e-09 2.86687024e-09 3.080109716e-09 3.121906079e-09 3.289633755e-09 3.331002435e-09 3.058805993e-09 3.76504969e-09 3.308310043e-09 4.64092653e-09 4.28217967e-09 3.970522135e-09 3.508131801e-09 4.740473866e-09 4.617247004e-09 4.406798854e-09 4.142061866e-09 4.362990539e-09 5.506333848e-09 4.640939356e-09 4.385285824e-09 5.402972888e-09 4.534908197e-09 4.104532945e-09 4.902438556e-09 5.290658763e-09 4.359370706e-09 4.098644494e-09 6.160224926e-09 5.408552718e-09 3.597891734e-09 4.321086795e-09 3.85330804e-09 4.150810975e-09 3.81663584e-09 3.68482027e-09 3.555109139e-09 4.257272994e-09 2.919621001e-09 2.801755555e-09 2.979579328e-09 3.303440295e-09 2.629063274e-09 3.711084132e-09 3.533441485e-09 2.925056573e-09 3.929435681e-09 3.263596693e-09 2.682362194e-09 3.474868659e-09 2.467700097e-09 3.106829643e-09 1.988857901e-09 2.540328764e-09 3.304145005e-09 4.002616929e-09 3.430280445e-09 3.479255731e-09 3.118517349e-09 3.777956303e-09 3.768327416e-09 3.459671354e-09 3.455881197e-09 2.898411767e-09 4.500303023e-09 3.907432898e-09 4.31228098e-09 4.635716423e-09 4.614389905e-09 4.067696742e-09 5.110478241e-09 5.163428695e-09 3.313941623e-09 5.468116986e-09 4.800663613e-09 6.289004909e-09 4.517489455e-09 5.849760409e-09 5.003322129e-09 5.043045463e-09 4.922636146e-09 3.831035505e-09 4.383584421e-09 4.186850014e-09 4.369638748e-09 5.330551863e-09 5.046311596e-09 4.647258194e-09 3.286703145e-09 4.150007191e-09 3.24899837e-09 3.631293536e-09 3.107747e-09 3.139025065e-09 3.27376603e-09 3.02864364e-09 2.967314476e-09 2.90169984e-09 2.748138312e-09 2.702550687e-09 2.817144409e-09 2.673459323e-09 2.462945087e-09 2.464702157e-09 2.645154676e-09 2.070618855e-09 2.237477351e-09 2.255646442e-09 2.165104459e-09 2.031051473e-09 1.719360732e-09 1.694482055e-09 1.755161204e-09 1.328412808e-09 1.554302195e-09 1.474967667e-09 1.174346301e-09 1.385410093e-09 1.080293141e-09 6.51023666e-10 7.000856117e-10 3.127813826e-10 2.816444055e-10 1.637061019e-10 8.861780435e-11 2.553487673e-11 3.159249611e-12 4.214840306e-13 4.163489238e-14 7.358493523e-16 1.826974947e-14 1.877988123e-15 3.133505229e-17 5.497472219e-17 1.492814561e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.555771919e-19 2.611028445e-18 4.174968935e-29 1.969842911e-17 1.921960967e-16 6.747483731e-17 1.526765447e-14 8.249447003e-15 1.074252879e-12 1.005726444e-11 3.871933061e-11 8.662629085e-11 2.120763341e-10 1.007646551e-10 5.078886691e-10 6.701508869e-10 9.58981215e-10 4.740540928e-10 1.056799876e-09 1.196466474e-09 1.21291543e-09 1.901999667e-09 1.734418388e-09 1.766894736e-09 1.742603712e-09 1.901148901e-09 2.23745868e-09 2.153294962e-09 2.467143947e-09 2.282916212e-09 2.323429918e-09 2.562892233e-09 2.532134765e-09 2.426054841e-09 2.773739379e-09 2.946577169e-09 2.850639812e-09 2.808452704e-09 2.750405417e-09 2.903003773e-09 3.076063327e-09 2.94945042e-09 2.992764982e-09 3.231749262e-09 3.702281134e-09 3.492254536e-09 3.342130512e-09 4.378604162e-09 3.730108538e-09 5.831962718e-09 5.756011939e-09 4.394927308e-09 4.456189601e-09 5.231284054e-09 4.273433799e-09 5.009219359e-09 5.48134322e-09 5.752175139e-09 4.976226855e-09 4.194320973e-09 4.230243854e-09 6.318917414e-09 5.585598535e-09 5.379336557e-09 4.583801846e-09 4.865921454e-09 5.086193306e-09 3.624647376e-09 3.709412735e-09 5.197840165e-09 4.4000015e-09 3.787906492e-09 4.223425711e-09 4.113633108e-09 3.865626623e-09 3.285234192e-09 3.400613421e-09 3.184195319e-09 3.363802436e-09 3.297609983e-09 2.850513339e-09 2.735854478e-09 2.863701293e-09 3.363915847e-09 3.336404593e-09 3.076226975e-09 2.870991586e-09 3.565019291e-09 2.790705702e-09 3.360263994e-09 2.940346464e-09 3.340056703e-09 3.310511748e-09 3.432560436e-09 3.081089056e-09 3.682647745e-09 3.401225771e-09 3.223913003e-09 2.971916448e-09 4.240458187e-09 4.70408601e-09 4.454496007e-09 4.194733535e-09 4.179691561e-09 4.746221996e-09 3.967269939e-09 4.62030632e-09 4.378041441e-09 4.965057329e-09 5.241700534e-09 5.656236548e-09 5.005001445e-09 6.392047632e-09 4.285467269e-09 5.510885097e-09 4.680886033e-09 5.106413376e-09 5.188876718e-09 5.24903233e-09 5.061540781e-09 5.060250263e-09 5.935914523e-09 3.801385512e-09 3.210134095e-09 4.414591334e-09 4.2339958e-09 3.747072018e-09 3.388898053e-09 3.581945348e-09 3.374965201e-09 3.208481217e-09 2.985760734e-09 3.171915901e-09 3.157948803e-09 2.878086579e-09 3.117381257e-09 2.837707952e-09 2.857652231e-09 2.698488573e-09 2.641707624e-09 2.616624667e-09 2.448517384e-09 2.663187645e-09 2.51896092e-09 2.326901027e-09 2.201078686e-09 2.098560753e-09 2.108486435e-09 2.132532486e-09 2.039508743e-09 1.826472409e-09 1.858051937e-09 1.455233647e-09 1.603892108e-09 1.302485893e-09 1.154808008e-09 1.078624222e-09 7.253731399e-10 4.441888298e-10 1.406716771e-10 2.979096262e-10 3.099596485e-10 1.81702439e-10 4.842790411e-11 3.563634427e-12 1.252902231e-12 8.993630353e-15 3.397243526e-14 5.493087419e-15 1.023502049e-16 1.76365318e-16 8.084448789e-18 4.020881475e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.851693361e-19 1.807900438e-17 9.929779836e-17 2.492395455e-16 2.219903217e-15 8.11074517e-14 2.927002283e-13 1.655624581e-12 1.108139316e-11 1.700627217e-10 1.882743176e-11 2.280776686e-10 2.492802861e-10 2.595494299e-10 3.180599115e-10 8.911919411e-10 1.076320605e-09 1.007668583e-09 1.136682508e-09 1.197036454e-09 1.629394115e-09 1.526918981e-09 1.760868334e-09 1.810376752e-09 1.863521663e-09 2.104398257e-09 1.925129899e-09 2.184633567e-09 2.332386368e-09 2.258662188e-09 2.429310589e-09 2.4661644e-09 2.432507263e-09 2.560401867e-09 2.59864344e-09 2.666805213e-09 3.112897944e-09 3.004445556e-09 2.984812243e-09 2.790221623e-09 3.1349718e-09 3.3500095e-09 3.159083472e-09 3.404199237e-09 3.410398466e-09 3.342060665e-09 4.161168521e-09 4.607822912e-09 4.075264759e-09 3.541848752e-09 4.831702151e-09 4.155179091e-09 5.975406457e-09 3.140229157e-09 5.320213167e-09 5.111516985e-09 5.060497069e-09 5.094912726e-09 5.922403565e-09 4.85457592e-09 5.588036732e-09 5.579055577e-09 5.246330036e-09 5.96713236e-09 5.275058823e-09 5.183374251e-09 3.384987324e-09 5.7520958e-09 3.800900363e-09 4.008457969e-09 4.274590005e-09 3.650971881e-09 4.420443231e-09 2.804903761e-09 3.438396612e-09 2.697913702e-09 3.081108399e-09 2.598817994e-09 3.380129993e-09 2.836616345e-09 2.836012037e-09 3.302328912e-09 2.997390849e-09 2.776487473e-09 3.168184795e-09 3.088260785e-09 3.472907904e-09 3.767520178e-09 2.949691631e-09 2.854229278e-09 3.259251982e-09 3.034900118e-09 3.335204762e-09 3.459530926e-09 3.434752971e-09 3.158144164e-09 3.20088501e-09 3.356401438e-09 3.797014512e-09 3.852720581e-09 3.661701267e-09 3.773947213e-09 3.636664461e-09 3.353983917e-09 4.06467436e-09 4.646762559e-09 4.204500689e-09 5.387371631e-09 4.821659464e-09 5.349013027e-09 6.298152677e-09 6.176821595e-09 5.757784794e-09 5.013851776e-09 5.738903081e-09 5.255569116e-09 4.133911093e-09 6.480507381e-09 5.111848277e-09 5.339496964e-09 4.821619978e-09 4.291107419e-09 3.866258231e-09 3.828874479e-09 3.563734437e-09 4.651776776e-09 3.845886714e-09 3.129673139e-09 3.206429849e-09 3.117932462e-09 3.212738144e-09 3.050209451e-09 2.931877655e-09 2.977166221e-09 2.776162277e-09 3.052115891e-09 2.70750628e-09 2.574723694e-09 2.580171923e-09 2.428143652e-09 2.831076051e-09 2.396563937e-09 2.38599625e-09 2.350117932e-09 2.318062827e-09 2.114933404e-09 1.917187057e-09 1.870384023e-09 1.887376298e-09 1.560842156e-09 1.580075044e-09 1.432110122e-09 1.666429709e-09 1.428232684e-09 1.019429268e-09 1.066207912e-09 6.700182565e-10 3.729704132e-10 1.978925758e-10 1.267065773e-10 3.300807418e-10 1.670570317e-10 3.621769133e-11 9.836084853e-12 2.610989079e-12 2.473001163e-13 3.216205267e-14 4.168770346e-15 4.290664905e-17 8.069333463e-17 2.619788441e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.295720791e-18 2.076436781e-18 1.231743008e-16 3.519813533e-16 2.354624526e-14 1.60841543e-14 1.354023108e-13 1.146404182e-12 5.147278997e-12 4.419880103e-12 2.005245642e-10 2.31125289e-10 2.483974329e-10 2.648818208e-10 4.38604981e-10 5.081562553e-10 9.958073678e-10 1.108829627e-09 1.48596236e-09 1.185819304e-09 1.648974022e-09 1.643410271e-09 1.565773006e-09 1.97078876e-09 1.803081398e-09 2.085343233e-09 2.076242229e-09 2.352885058e-09 2.351453198e-09 2.120169716e-09 2.381016241e-09 2.222806552e-09 2.392907532e-09 2.489505065e-09 2.761519047e-09 2.991481946e-09 2.851989687e-09 2.942135181e-09 2.984024793e-09 2.929808236e-09 2.959542415e-09 3.183448092e-09 3.061910855e-09 3.279189856e-09 3.638131972e-09 3.880146013e-09 4.400967485e-09 4.484110606e-09 3.374552658e-09 4.455702906e-09 3.934798487e-09 5.588367416e-09 4.15881673e-09 4.335765581e-09 4.57038824e-09 4.257482697e-09 4.692857762e-09 4.182162277e-09 4.163586808e-09 5.551217527e-09 5.102396353e-09 4.796377498e-09 4.506205152e-09 4.839821107e-09 4.662556607e-09 5.704732547e-09 4.925851454e-09 4.28737699e-09 4.271600426e-09 3.839465591e-09 3.809029895e-09 3.597671276e-09 3.667418966e-09 3.743188735e-09 3.034363463e-09 3.81441322e-09 3.321621673e-09 3.010572148e-09 2.771542278e-09 3.34332244e-09 3.227836923e-09 3.625920624e-09 3.407497844e-09 3.251306599e-09 3.087169168e-09 3.025187337e-09 2.553414306e-09 3.193750084e-09 3.114622888e-09 3.586910224e-09 2.76746673e-09 3.375844091e-09 3.590434888e-09 3.176585683e-09 3.497489597e-09 3.157499925e-09 3.490631145e-09 3.584760435e-09 3.342284359e-09 2.928325188e-09 3.421970968e-09 4.351470471e-09 4.34254391e-09 4.544079008e-09 4.135114558e-09 4.288305756e-09 5.461296272e-09 5.393568195e-09 4.57383412e-09 3.797111088e-09 4.693256101e-09 5.55192379e-09 5.222677757e-09 4.638270147e-09 6.16260504e-09 4.586111315e-09 4.727259728e-09 4.767132656e-09 4.340011563e-09 4.343647225e-09 4.609741107e-09 4.696992457e-09 4.583862615e-09 3.968130895e-09 3.816294741e-09 4.48995686e-09 3.38674729e-09 3.815347751e-09 3.187861755e-09 3.329907323e-09 3.373077901e-09 3.205667528e-09 3.274601173e-09 3.118129908e-09 3.042997602e-09 3.005319259e-09 2.901460881e-09 2.928534136e-09 2.673819182e-09 2.609268697e-09 2.108486699e-09 2.544882564e-09 2.557981715e-09 2.501990833e-09 2.102918654e-09 2.152116146e-09 1.934742983e-09 2.05274613e-09 1.847701375e-09 1.937567428e-09 1.606380415e-09 1.423755663e-09 1.432089982e-09 1.335601124e-09 8.155359294e-10 9.218008564e-10 7.863137271e-10 4.925531183e-10 2.863412352e-10 3.320537573e-10 2.768997089e-10 1.815848031e-10 1.67201101e-10 1.998106859e-11 8.979406727e-13 5.587424187e-14 3.970073517e-14 3.911539998e-16 2.004782654e-16 4.880385127e-18 4.302345167e-34 7.80803938e-18 6.54946558e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.632979012e-18 5.066494509e-19 8.039201675e-17 2.090005193e-16 2.658731437e-17 2.340306338e-15 7.345790749e-15 2.466846032e-13 2.438688074e-12 1.893063703e-11 3.949086588e-11 4.580121672e-11 1.895789893e-10 3.395096954e-10 1.834564518e-10 5.797789269e-10 8.643645765e-10 1.044679892e-09 1.053205955e-09 1.272545935e-09 1.400661897e-09 1.629561404e-09 1.828129681e-09 1.572404855e-09 1.841343364e-09 1.845792518e-09 2.090004194e-09 2.23862248e-09 2.167172918e-09 2.323502822e-09 2.533546653e-09 2.058343214e-09 2.37569836e-09 2.391009339e-09 2.726895533e-09 2.593700547e-09 2.575295678e-09 3.040252239e-09 2.916586073e-09 3.035362964e-09 3.14066622e-09 2.935938232e-09 2.913800319e-09 3.300575316e-09 3.134540539e-09 3.327978611e-09 4.045528095e-09 4.015710836e-09 3.823592551e-09 4.639171574e-09 4.302158347e-09 4.693230034e-09 3.540777666e-09 5.379154621e-09 4.811298766e-09 4.959767367e-09 4.391741258e-09 5.223553924e-09 5.181453749e-09 3.96423784e-09 5.206022032e-09 5.596303224e-09 4.088609966e-09 5.617050196e-09 4.867707498e-09 4.814789584e-09 5.263043374e-09 5.584360077e-09 5.143279679e-09 4.027012648e-09 3.82657947e-09 3.259189204e-09 4.450984956e-09 3.325652975e-09 3.450560613e-09 3.78794334e-09 3.623310459e-09 3.220730727e-09 3.563725859e-09 3.524620974e-09 3.173576066e-09 3.210260346e-09 3.234633476e-09 3.433625377e-09 2.542461296e-09 3.019798747e-09 2.798481906e-09 2.241592573e-09 2.954270152e-09 3.722509497e-09 2.363406955e-09 3.187866172e-09 2.966761353e-09 3.750899611e-09 3.472306098e-09 3.140682732e-09 2.967892912e-09 3.476446723e-09 3.3175623e-09 3.774100831e-09 3.9588833e-09 4.259522224e-09 4.410983683e-09 4.030531038e-09 4.62691728e-09 4.474122112e-09 5.119772407e-09 4.882880849e-09 4.554850057e-09 5.440412932e-09 4.786807209e-09 5.440859937e-09 3.639300736e-09 4.459334565e-09 5.338106669e-09 4.952831668e-09 3.865723589e-09 3.660432073e-09 5.509340025e-09 5.337976546e-09 5.698788327e-09 4.729013125e-09 5.076675179e-09 4.097664697e-09 4.032916633e-09 4.050830905e-09 3.534720554e-09 3.549003591e-09 3.909446072e-09 3.31932349e-09 3.2050281e-09 3.097108915e-09 3.086021381e-09 3.081232053e-09 3.081234006e-09 2.939814102e-09 3.034527094e-09 2.679336259e-09 2.768404649e-09 2.648028014e-09 2.477404672e-09 2.427789558e-09 2.513260269e-09 2.169202173e-09 2.190872868e-09 2.32051833e-09 2.069928142e-09 1.94441751e-09 1.932546761e-09 1.951875218e-09 1.924393479e-09 1.7773638e-09 1.707768359e-09 1.435879044e-09 1.179183358e-09 1.234575891e-09 1.067626333e-09 7.544921091e-10 6.381029342e-10 2.825657765e-10 3.164413398e-10 1.643639236e-10 1.162335273e-10 4.172121726e-11 9.12825097e-12 8.931440487e-13 7.204826084e-13 1.157504006e-14 5.795611018e-15 2.007035302e-15 6.968623706e-19 5.177639828e-18 1.405098798e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.034382314e-18 3.788772428e-18 5.548893122e-18 1.634809311e-17 2.943387908e-14 3.512069953e-15 1.26553911e-13 2.74519906e-13 8.619167454e-12 2.448648803e-11 4.832653193e-11 1.081942912e-10 4.195392298e-10 3.640590681e-10 7.143489087e-10 7.932504107e-10 1.172428532e-09 1.019722785e-09 1.401470758e-09 1.262782277e-09 1.390631313e-09 1.635184743e-09 1.688409148e-09 1.909926929e-09 1.793109871e-09 2.018558412e-09 2.162254288e-09 2.290117471e-09 2.537931346e-09 2.26761821e-09 2.196536651e-09 2.817868377e-09 2.59093625e-09 2.590713248e-09 2.67662155e-09 2.78242139e-09 3.070596706e-09 2.801061612e-09 2.811475828e-09 3.064470239e-09 3.079810656e-09 3.220779007e-09 3.413934624e-09 3.023434198e-09 3.493561165e-09 3.86454467e-09 3.409113896e-09 3.57465905e-09 3.588792012e-09 3.102892562e-09 4.424861333e-09 5.941146675e-09 4.618765115e-09 4.629139059e-09 4.612447002e-09 4.704668247e-09 5.119298009e-09 3.597749506e-09 3.010661681e-09 5.64357225e-09 5.03176742e-09 5.416613999e-09 4.388905628e-09 4.677043121e-09 5.267757358e-09 4.974703441e-09 4.682840522e-09 4.584711074e-09 4.263417003e-09 4.574493695e-09 3.75764952e-09 3.517640857e-09 2.86219081e-09 3.545546396e-09 3.480885331e-09 3.13096325e-09 2.556495288e-09 3.445223566e-09 3.739699253e-09 3.565343171e-09 3.311609148e-09 2.864906391e-09 3.908212793e-09 3.486470789e-09 3.034770021e-09 2.314039338e-09 3.111732444e-09 3.232893266e-09 2.250243485e-09 3.454818042e-09 3.095152803e-09 3.186627402e-09 2.555520943e-09 3.00985457e-09 3.163448053e-09 3.425850913e-09 3.687679266e-09 3.377140754e-09 3.343078247e-09 3.411502343e-09 3.839175644e-09 3.966159598e-09 4.822825477e-09 4.523212847e-09 4.493885577e-09 5.594781772e-09 5.401497187e-09 3.6715927e-09 5.42451882e-09 4.547832357e-09 4.69700172e-09 5.293890536e-09 6.940503452e-09 5.95023684e-09 5.692252734e-09 4.521210206e-09 5.860159734e-09 4.249044769e-09 5.123915407e-09 4.291064005e-09 4.632505993e-09 3.639569189e-09 5.989583702e-09 5.543761567e-09 3.974876558e-09 4.846642304e-09 3.601578598e-09 3.508104582e-09 3.283118373e-09 3.042275623e-09 3.154093439e-09 3.132142107e-09 3.102067154e-09 2.94135807e-09 2.980608112e-09 2.945688677e-09 2.651080406e-09 2.914295265e-09 2.779030195e-09 2.605224295e-09 2.452279562e-09 2.422203195e-09 2.259684936e-09 2.404051872e-09 2.248831263e-09 2.1559139e-09 2.089214514e-09 1.952841802e-09 2.061290157e-09 1.64532057e-09 1.575115996e-09 1.578608242e-09 1.275324904e-09 1.171908818e-09 1.270701247e-09 8.89012016e-10 7.594957633e-10 5.326136593e-10 3.909332541e-10 1.248453523e-10 2.829604719e-10 1.589390996e-10 1.616604043e-11 1.367468919e-11 7.769260189e-13 5.379873039e-13 5.58008688e-15 5.332749308e-16 5.286779758e-16 2.005101262e-17 3.336892049e-18 1.883317302e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.449751269e-18 2.691950736e-23 4.229802583e-17 1.17115069e-16 1.795613873e-15 6.046507005e-15 8.209859283e-15 3.954214824e-14 1.229951305e-12 2.21219014e-12 1.546222027e-11 1.444845713e-10 3.043657795e-10 2.621849173e-10 2.312566925e-10 3.453177718e-10 6.65731325e-10 1.056557792e-09 1.037205221e-09 1.427157582e-09 1.528320351e-09 1.541503985e-09 1.671924371e-09 1.77835553e-09 1.768902981e-09 1.982826424e-09 2.330952689e-09 2.042317708e-09 2.131712102e-09 2.197158914e-09 2.422333099e-09 2.474360229e-09 2.38689802e-09 2.685064435e-09 2.673446774e-09 2.576095834e-09 3.122404728e-09 2.690019678e-09 2.915296771e-09 2.976124268e-09 3.247936306e-09 2.904558378e-09 3.357527647e-09 3.221553936e-09 3.503804208e-09 3.288889246e-09 3.377047196e-09 3.386248392e-09 3.833441158e-09 3.856744076e-09 2.94572509e-09 3.440228349e-09 3.616018619e-09 6.487706048e-09 5.34192099e-09 5.718869181e-09 5.091973644e-09 6.512329749e-09 5.757944844e-09 4.847592135e-09 5.6901021e-09 4.428221023e-09 5.446169692e-09 4.033190737e-09 4.789371151e-09 5.17692077e-09 4.833928639e-09 4.217107073e-09 3.876542463e-09 5.464672198e-09 3.617326807e-09 4.371676443e-09 3.303018147e-09 3.31817977e-09 3.211697215e-09 3.398547095e-09 3.284642388e-09 3.581198552e-09 3.585272139e-09 2.706223892e-09 2.967036519e-09 1.916408714e-09 3.051027269e-09 3.560963274e-09 3.131324384e-09 2.80713098e-09 3.593828802e-09 3.185343233e-09 3.517749969e-09 2.801227503e-09 2.714358046e-09 2.667711219e-09 2.877298008e-09 3.391692375e-09 3.032249127e-09 3.23577636e-09 3.450377943e-09 3.248996045e-09 3.736863567e-09 3.621375267e-09 3.970632179e-09 3.946258778e-09 4.317604418e-09 4.40138552e-09 4.772555015e-09 4.197426927e-09 4.675412582e-09 5.097308106e-09 5.019085537e-09 6.233672246e-09 5.718324043e-09 5.854775869e-09 4.432395256e-09 5.757434255e-09 4.816346677e-09 5.297783496e-09 4.768302354e-09 5.482777917e-09 4.952136443e-09 5.246448806e-09 4.714296197e-09 4.918772632e-09 5.067818854e-09 5.041742802e-09 3.905661228e-09 4.479365372e-09 4.032818158e-09 4.222833327e-09 4.253991384e-09 3.09219546e-09 3.441026161e-09 3.202604184e-09 3.236589963e-09 3.032747555e-09 2.727300371e-09 2.868375376e-09 2.991358191e-09 2.767529698e-09 2.390410359e-09 2.546857032e-09 2.767481244e-09 2.636480244e-09 2.511031155e-09 2.242018037e-09 2.163843804e-09 2.08608256e-09 2.016270972e-09 1.96770228e-09 2.161692041e-09 1.873169193e-09 1.856838644e-09 1.699846565e-09 1.371665212e-09 1.262068096e-09 1.212349476e-09 1.046183659e-09 9.058150157e-10 7.828172823e-10 5.28452372e-10 2.642426452e-10 1.811490518e-10 1.277936418e-10 3.534394836e-11 3.139516216e-11 6.62027127e-12 4.384496123e-13 6.179658109e-14 1.918522569e-15 1.034422383e-15 7.606093733e-16 8.584658241e-18 1.183056921e-18 2.861564143e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.338832383e-17 3.083963365e-17 7.094093828e-16 1.723123926e-14 1.688761473e-15 2.886812106e-14 3.439204235e-13 3.509937534e-11 7.092923665e-12 2.184585392e-10 9.517061952e-11 2.44457595e-10 2.024212924e-10 7.795473791e-10 9.273160163e-10 8.981018926e-10 1.125221593e-09 1.128965351e-09 1.509144655e-09 1.558393008e-09 1.532556938e-09 1.607145835e-09 1.637681633e-09 1.908891267e-09 1.794684709e-09 2.169770899e-09 2.219745078e-09 2.421430211e-09 2.330485645e-09 2.479366839e-09 2.496909559e-09 2.52529746e-09 2.77666768e-09 2.563947084e-09 2.908437854e-09 3.003478437e-09 2.824894421e-09 2.937618039e-09 2.770930651e-09 3.031915256e-09 3.22539684e-09 3.108098338e-09 3.388957526e-09 3.200950226e-09 3.532163066e-09 3.82091043e-09 4.273672299e-09 3.913429512e-09 3.941427571e-09 4.802232251e-09 4.571164942e-09 4.556868588e-09 4.026550593e-09 4.394646421e-09 4.034990578e-09 5.643463476e-09 5.13065942e-09 5.111969644e-09 4.442487087e-09 4.922141119e-09 5.093693675e-09 4.036654164e-09 5.466594826e-09 4.817755708e-09 4.373425085e-09 4.755589343e-09 4.231106587e-09 4.387059721e-09 3.898634784e-09 3.797456256e-09 3.392951683e-09 4.130440174e-09 4.247714376e-09 3.148003759e-09 2.78659855e-09 3.930354211e-09 3.286322983e-09 2.877979204e-09 2.909887278e-09 3.478932017e-09 3.227316583e-09 3.385036034e-09 2.805057797e-09 2.471303252e-09 2.748460992e-09 2.733366957e-09 2.978759706e-09 2.78227985e-09 2.837483185e-09 3.017893137e-09 3.595564195e-09 3.25117184e-09 3.581282787e-09 3.105036548e-09 2.801464103e-09 3.009269711e-09 3.160151635e-09 3.647423303e-09 4.265084619e-09 4.623829918e-09 3.846080306e-09 3.639918543e-09 4.058350313e-09 4.436245807e-09 4.764785245e-09 5.009522551e-09 4.772227099e-09 5.086530755e-09 5.009426e-09 4.251401088e-09 5.44819287e-09 4.638535419e-09 5.41191951e-09 4.856524626e-09 4.370876054e-09 4.860680488e-09 5.183062254e-09 4.060227099e-09 5.883724123e-09 4.914579562e-09 5.667314333e-09 4.248662039e-09 4.597484964e-09 3.415857902e-09 3.486574056e-09 3.763155244e-09 3.622360458e-09 3.49234286e-09 3.216480963e-09 2.96054877e-09 2.941454179e-09 3.109548864e-09 3.006353089e-09 2.936005183e-09 2.693962327e-09 2.628609791e-09 2.871902261e-09 2.759295481e-09 2.54054709e-09 2.542478356e-09 2.475856618e-09 2.515559687e-09 2.383337613e-09 2.34629222e-09 2.099485387e-09 2.145617692e-09 2.020730735e-09 1.747084813e-09 1.718326646e-09 1.536794907e-09 1.455480066e-09 1.434029904e-09 1.329535389e-09 7.778906433e-10 9.386060104e-10 7.627022358e-10 3.546063388e-10 3.148062247e-10 2.588064947e-10 3.86347657e-10 7.979607425e-11 2.795341735e-11 4.423360871e-12 6.177646606e-13 9.640442065e-14 2.08285263e-15 1.778038409e-15 3.259861768e-16 1.795873509e-17 5.557324885e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.591990613e-35 3.136019842e-18 8.378564114e-19 2.514249577e-18 1.764300101e-16 5.541416494e-15 2.395254694e-14 2.853440877e-13 3.016891174e-12 1.421967568e-12 6.733695119e-11 6.737949242e-11 1.191500203e-10 2.449471825e-10 1.363526123e-10 4.486108495e-10 8.520487444e-10 1.054364554e-09 1.141863914e-09 1.239772228e-09 1.223320364e-09 1.350116912e-09 1.519298537e-09 1.777101512e-09 1.865202602e-09 2.084609141e-09 1.996980728e-09 2.143007883e-09 2.023801383e-09 2.231249097e-09 2.017195759e-09 2.481890749e-09 2.415601494e-09 2.686559256e-09 2.746675039e-09 2.561533307e-09 3.085288656e-09 3.017101278e-09 3.028904028e-09 3.180343229e-09 3.251922534e-09 3.040170658e-09 3.030926754e-09 3.230368445e-09 3.596018075e-09 3.334875313e-09 3.254898746e-09 3.707782343e-09 4.313799932e-09 4.711666207e-09 4.724681967e-09 5.48846372e-09 5.396778178e-09 3.619045865e-09 4.622536072e-09 5.243428449e-09 5.42651985e-09 4.612925648e-09 4.422986225e-09 3.50036595e-09 5.215543959e-09 5.280755229e-09 4.557550986e-09 5.397837906e-09 4.610486959e-09 4.912603806e-09 5.450185107e-09 4.848085412e-09 5.107270517e-09 4.380699657e-09 3.902609054e-09 4.595305197e-09 3.907427358e-09 3.896585214e-09 3.512603922e-09 3.584283793e-09 4.136456148e-09 3.032603576e-09 2.995789811e-09 3.714179232e-09 3.286857217e-09 3.214391675e-09 3.06258108e-09 2.724265421e-09 3.357441005e-09 3.073997294e-09 2.852005434e-09 3.822046176e-09 2.8979364e-09 3.39708047e-09 3.569965765e-09 2.956100177e-09 2.834483516e-09 3.555094951e-09 3.524972776e-09 3.477530542e-09 3.113871715e-09 3.403543977e-09 3.796081146e-09 3.913122814e-09 3.544203717e-09 3.439426419e-09 4.369414265e-09 3.539307197e-09 4.330837463e-09 4.555631062e-09 5.295929586e-09 5.187143987e-09 5.275366884e-09 5.835586995e-09 4.427649885e-09 5.398949783e-09 5.096421928e-09 5.368374618e-09 4.708971461e-09 5.422079077e-09 3.979275598e-09 5.635175356e-09 4.785732683e-09 5.139498131e-09 4.213022762e-09 4.376973615e-09 5.575937964e-09 5.129203116e-09 4.789836653e-09 4.264224185e-09 4.440390607e-09 3.640358287e-09 3.170036295e-09 3.232942179e-09 3.364256771e-09 3.31618662e-09 3.259596886e-09 2.90204216e-09 3.02535547e-09 2.78690705e-09 3.018802777e-09 2.714723189e-09 2.686369686e-09 2.706103241e-09 2.487268817e-09 2.597890501e-09 2.656970486e-09 2.370281009e-09 2.088089956e-09 2.307102225e-09 2.232521425e-09 1.880214244e-09 1.830116831e-09 1.709850183e-09 1.810386948e-09 1.71164906e-09 1.608447944e-09 1.423179844e-09 1.369069412e-09 1.052668382e-09 1.087553537e-09 7.381653219e-10 4.912495803e-10 4.164002838e-10 1.673962262e-10 2.182040928e-10 9.633015456e-11 7.830009912e-12 6.399211148e-12 2.288164184e-12 3.710922017e-14 1.001492972e-13 1.519216423e-14 9.040142103e-16 4.18382077e-17 1.084825712e-20 4.706581489e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.627783945e-19 3.361379776e-18 6.301207417e-18 6.747964323e-17 9.460962784e-17 5.214440868e-15 2.153036688e-15 1.793033632e-13 3.603215423e-13 1.110406612e-11 5.44456025e-11 1.019077449e-10 2.022264209e-10 2.542097292e-10 6.208554929e-11 5.253381299e-10 7.299693291e-10 9.310553275e-10 1.007489164e-09 1.216186819e-09 1.394835871e-09 1.62201703e-09 1.713298607e-09 1.602047381e-09 1.991366658e-09 1.781494115e-09 2.148938169e-09 2.089499914e-09 2.164048853e-09 2.379385452e-09 2.440517157e-09 2.529828574e-09 2.60798773e-09 2.816540136e-09 2.868065434e-09 2.637878143e-09 2.514369577e-09 2.886601833e-09 3.056320791e-09 2.912707131e-09 2.808038808e-09 3.017049642e-09 3.28497706e-09 3.058318118e-09 3.251917447e-09 3.41903103e-09 3.722149045e-09 4.621299364e-09 3.669690697e-09 4.919942812e-09 5.274403018e-09 4.868557978e-09 5.196547831e-09 5.274540749e-09 5.860959298e-09 5.377039664e-09 4.93940539e-09 4.381436894e-09 4.732604485e-09 4.89592585e-09 5.617403217e-09 4.636955386e-09 4.246424697e-09 5.217928017e-09 5.537938182e-09 5.339664331e-09 4.278371197e-09 5.761720678e-09 4.281910207e-09 4.679921826e-09 4.494864924e-09 3.844146734e-09 4.611010545e-09 3.424756134e-09 3.899275764e-09 3.313440168e-09 3.194974523e-09 3.658041149e-09 3.874912041e-09 3.663750974e-09 3.425327815e-09 3.162564966e-09 3.128722106e-09 2.581662378e-09 2.750855761e-09 3.318444537e-09 2.44908064e-09 3.27970207e-09 3.032979105e-09 3.320882668e-09 3.011797821e-09 3.374271127e-09 3.767244817e-09 3.113543006e-09 2.633167365e-09 3.395529353e-09 3.130660114e-09 3.441706738e-09 4.116305927e-09 3.792613773e-09 3.964916563e-09 3.477327555e-09 4.381675195e-09 3.736132491e-09 3.536087958e-09 4.161085618e-09 5.280991621e-09 5.36688667e-09 5.411993481e-09 5.269022075e-09 5.432374739e-09 5.411477314e-09 6.076370286e-09 4.788363373e-09 6.496388398e-09 5.221676719e-09 4.354966824e-09 4.80810089e-09 5.24406414e-09 4.30379559e-09 3.801046469e-09 5.293423744e-09 4.476727324e-09 4.555078641e-09 3.929536284e-09 3.920642854e-09 4.302555827e-09 4.095860197e-09 3.216822982e-09 3.154916993e-09 3.114244663e-09 3.323070929e-09 3.117588939e-09 3.022620586e-09 2.971535839e-09 3.018115743e-09 2.797290722e-09 2.843640853e-09 2.702370833e-09 2.561955365e-09 2.46337112e-09 2.619541021e-09 2.405294697e-09 2.356376569e-09 2.126195906e-09 2.086429806e-09 2.115463861e-09 1.855523789e-09 1.807590169e-09 1.979108015e-09 1.529533552e-09 1.537315046e-09 1.516715539e-09 1.378776542e-09 1.362987762e-09 1.203275414e-09 7.688299134e-10 8.696823358e-10 6.981346639e-10 4.114784735e-10 3.610161647e-10 2.816013597e-10 2.063738521e-10 3.506961492e-12 1.703227956e-12 7.363742131e-13 7.030651984e-13 6.89657568e-14 4.152027766e-16 7.307751291e-16 5.31661916e-17 1.196181964e-18 1.723265046e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.822821058e-19 1.940614349e-17 8.057218941e-17 4.014606639e-17 4.310154973e-15 3.996750346e-14 9.641019544e-13 8.71479305e-13 8.764268339e-13 6.161486629e-12 5.737121275e-11 3.842442829e-10 3.047177024e-10 2.251809347e-10 5.873772563e-10 6.264404118e-10 1.014030386e-09 9.883304905e-10 1.132199418e-09 1.181311444e-09 1.292933154e-09 1.603342301e-09 1.875893286e-09 1.992688981e-09 2.140074183e-09 2.066341234e-09 2.178530285e-09 2.117381874e-09 2.184636794e-09 2.393907691e-09 2.255966614e-09 2.350625863e-09 2.463819058e-09 2.645404781e-09 2.821995164e-09 2.713925554e-09 2.780453788e-09 2.954874459e-09 2.988006894e-09 2.677134564e-09 3.18025717e-09 3.1607112e-09 3.367785082e-09 3.201739084e-09 3.579921608e-09 3.508853299e-09 3.315170102e-09 5.361274836e-09 4.259847016e-09 4.200062732e-09 4.495607693e-09 4.877498862e-09 5.691971544e-09 6.593486373e-09 4.725973133e-09 4.263392363e-09 5.427568925e-09 4.501605464e-09 4.855063173e-09 7.421428522e-09 5.299241552e-09 4.382721735e-09 4.565464017e-09 3.77768862e-09 4.222143137e-09 4.137356494e-09 4.371227082e-09 4.292939073e-09 3.939442275e-09 4.613267911e-09 3.739771165e-09 3.841454496e-09 3.565228274e-09 4.033712648e-09 3.653657012e-09 3.409163142e-09 3.40488246e-09 3.801338091e-09 3.022319603e-09 3.186592581e-09 2.819948668e-09 3.474329341e-09 3.189019047e-09 3.031190927e-09 3.085425634e-09 2.889979983e-09 3.828192259e-09 2.943259558e-09 3.318644455e-09 2.836410093e-09 3.255248314e-09 3.494994765e-09 3.612273183e-09 2.748730981e-09 3.215014825e-09 3.52714242e-09 3.297617457e-09 3.541244278e-09 3.711891853e-09 3.807747317e-09 3.504022797e-09 4.96854346e-09 3.266605804e-09 4.473364238e-09 4.531198316e-09 5.891203446e-09 5.84742193e-09 3.381439069e-09 4.63146458e-09 5.610846042e-09 5.405962161e-09 5.61760479e-09 4.914995084e-09 6.362816381e-09 4.983307956e-09 5.213294102e-09 5.399665179e-09 5.710943307e-09 4.234040355e-09 4.077753098e-09 5.009072979e-09 5.765250929e-09 4.667804187e-09 5.733983867e-09 3.52287048e-09 3.853568016e-09 3.202280888e-09 4.020804503e-09 3.348527493e-09 3.246178881e-09 3.100574451e-09 3.096767346e-09 3.066921603e-09 2.995285642e-09 2.813485813e-09 2.981050899e-09 2.862505263e-09 2.810305937e-09 2.563858643e-09 2.770718027e-09 2.432259895e-09 2.327812742e-09 2.204809234e-09 2.538760292e-09 2.011949644e-09 2.055711791e-09 2.033416599e-09 2.068614412e-09 1.86318036e-09 1.722259023e-09 1.69056736e-09 1.563153714e-09 1.382564563e-09 1.223886294e-09 1.249283937e-09 7.367214542e-10 8.066779785e-10 4.224175648e-10 1.771280471e-10 2.869061256e-10 2.056552608e-10 1.55354712e-10 2.780914489e-11 5.805393447e-12 1.334476139e-12 1.123547377e-13 3.393571448e-15 4.467272608e-15 9.616324598e-17 8.482105534e-18 3.413078752e-17 1.551246932e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.659215909e-19 2.139623473e-17 9.689322866e-17 5.106889432e-16 2.233001586e-16 7.047319023e-14 8.694930093e-14 5.095827733e-13 1.019452328e-12 9.098103792e-12 1.337241996e-10 3.254627618e-11 2.76020062e-10 3.03707125e-10 6.519597625e-10 8.156494847e-10 1.043463633e-09 1.245110342e-09 1.187925297e-09 1.428876205e-09 1.514147379e-09 1.680806759e-09 1.745163482e-09 1.746328405e-09 2.028507522e-09 2.100917493e-09 2.070454542e-09 2.050189928e-09 2.240636144e-09 2.569643761e-09 2.281159417e-09 2.533804195e-09 2.800133197e-09 2.635210898e-09 2.619582145e-09 2.844370843e-09 2.877748163e-09 2.797464232e-09 3.100502704e-09 3.064770188e-09 3.1024675e-09 2.764338968e-09 3.066235447e-09 2.907963886e-09 4.092747829e-09 4.442059895e-09 3.991779042e-09 5.514400581e-09 3.994406226e-09 4.902203924e-09 4.310359609e-09 6.016888808e-09 5.029273436e-09 5.321745198e-09 6.35197404e-09 4.973875178e-09 3.892423317e-09 5.665399832e-09 6.51651399e-09 5.345454739e-09 4.989958147e-09 5.90227706e-09 4.638527771e-09 5.896374009e-09 5.2274305e-09 6.138610635e-09 3.879989819e-09 4.54281856e-09 4.873040315e-09 3.94723864e-09 3.722020362e-09 3.624154208e-09 2.993828338e-09 2.733048174e-09 2.905188768e-09 4.012409964e-09 3.369991951e-09 3.651334091e-09 4.217233433e-09 3.724918788e-09 3.658638428e-09 2.789034358e-09 3.282932445e-09 3.383031501e-09 2.623073234e-09 3.277551578e-09 3.043258757e-09 2.550853225e-09 3.460999716e-09 2.868998166e-09 2.528452589e-09 3.182459944e-09 3.256031249e-09 3.732989405e-09 3.356951248e-09 3.091398636e-09 3.216847969e-09 4.2189507e-09 4.20565412e-09 2.54288383e-09 3.895722965e-09 3.066684844e-09 3.278111649e-09 5.383360061e-09 5.155943772e-09 5.270172586e-09 4.206982457e-09 4.445842504e-09 4.0591722e-09 4.138733605e-09 5.222131106e-09 5.032665144e-09 5.321317869e-09 4.288901396e-09 4.133475226e-09 4.207730149e-09 3.549363699e-09 4.991669351e-09 5.572991964e-09 5.862024946e-09 5.580497828e-09 4.912379402e-09 4.008383891e-09 4.90195431e-09 4.194942995e-09 3.87218286e-09 3.352946502e-09 3.171794177e-09 3.628856946e-09 3.475357163e-09 2.968580273e-09 3.088524439e-09 3.100818104e-09 2.739966812e-09 2.984801887e-09 2.883358157e-09 2.759979268e-09 2.687022135e-09 2.566812752e-09 2.545595086e-09 2.37109341e-09 2.192776598e-09 2.267627693e-09 2.178333383e-09 2.140309017e-09 2.153190122e-09 2.14906198e-09 2.090730545e-09 1.767537196e-09 1.936755172e-09 1.693589162e-09 1.59820591e-09 1.371487592e-09 1.147575488e-09 9.108222954e-10 9.839317117e-10 9.10686973e-10 3.511341701e-10 2.383824257e-10 1.65317632e-10 3.277643615e-10 1.639666635e-10 4.345924384e-11 6.144886425e-12 7.148234775e-13 8.117114904e-14 1.593916606e-14 3.78378458e-15 3.487665871e-15 7.738326606e-17 5.021399336e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.289220961e-24 3.285863183e-18 1.811858091e-17 1.346124447e-15 9.498385336e-15 2.056806615e-15 1.649493484e-13 2.727186767e-13 1.44270454e-11 2.724900664e-11 1.949032995e-10 9.7397057e-11 3.025075147e-10 3.294551415e-10 5.799575205e-10 9.193248741e-10 8.982272266e-10 9.068388295e-10 1.326608139e-09 1.411134125e-09 1.427333903e-09 1.567989455e-09 1.620376305e-09 1.870820498e-09 2.311090158e-09 2.155820793e-09 2.07276798e-09 2.083892333e-09 2.165320091e-09 2.365671988e-09 2.710837939e-09 2.462806648e-09 2.61436606e-09 2.669882934e-09 2.61247857e-09 2.722135555e-09 2.55801687e-09 2.698811324e-09 2.824993169e-09 2.97914907e-09 3.053389004e-09 3.213543317e-09 3.256933906e-09 3.802110904e-09 4.149290684e-09 4.459489934e-09 4.652953004e-09 3.875529521e-09 3.588751596e-09 4.936950836e-09 4.663643562e-09 5.784950043e-09 4.341346883e-09 4.862834e-09 5.564536812e-09 5.104375838e-09 6.157718846e-09 4.469004843e-09 5.101410914e-09 4.802548512e-09 4.838614164e-09 5.484160776e-09 4.786674935e-09 5.613509769e-09 4.920651618e-09 5.180240205e-09 4.456113564e-09 4.537294199e-09 3.932382358e-09 3.914974357e-09 3.779055305e-09 3.692693571e-09 2.992631828e-09 3.393091838e-09 3.391120523e-09 3.42708865e-09 3.176075695e-09 3.57835043e-09 3.549991744e-09 2.9833381e-09 3.224746092e-09 2.766598061e-09 2.82925043e-09 3.128725958e-09 2.935095819e-09 3.016989377e-09 3.774102445e-09 2.45429983e-09 3.144268368e-09 2.980444123e-09 3.146174628e-09 2.56771747e-09 3.777227782e-09 3.22800004e-09 3.172698263e-09 3.361487042e-09 3.617149141e-09 3.900450024e-09 3.233871774e-09 3.194704598e-09 4.824143273e-09 4.388589114e-09 4.814748173e-09 5.064071753e-09 5.28495843e-09 4.594864127e-09 3.440911068e-09 5.269061316e-09 4.770386941e-09 6.215997786e-09 5.069492206e-09 4.931179613e-09 5.144010071e-09 5.522817488e-09 5.047653715e-09 4.722832909e-09 5.350461765e-09 4.477749272e-09 4.580031986e-09 4.082751416e-09 5.425515924e-09 4.759104162e-09 3.869971096e-09 4.081461638e-09 3.394058499e-09 5.27921764e-09 3.529802996e-09 3.245702137e-09 3.246211092e-09 3.141717851e-09 2.960211452e-09 3.371694525e-09 3.176235392e-09 2.831464181e-09 2.852879581e-09 3.04701785e-09 2.774893601e-09 2.640919759e-09 2.54909721e-09 2.68223397e-09 2.727281874e-09 2.589585587e-09 2.397025132e-09 2.349604029e-09 1.999831143e-09 2.113001941e-09 1.980446336e-09 1.863862782e-09 1.984025104e-09 1.788301547e-09 1.565680322e-09 1.510846304e-09 1.394498599e-09 1.017045583e-09 1.221839271e-09 9.070054215e-10 6.320251135e-10 6.399827604e-10 3.05756206e-10 1.726763965e-10 1.081476133e-10 2.098801493e-10 3.130432432e-11 7.082440047e-13 3.799325774e-12 1.508603084e-13 3.320395787e-14 1.586553284e-14 1.704526844e-15 7.392246099e-17 1.369099279e-17 4.615574491e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.035257388e-19 3.922338786e-17 2.418096133e-17 7.990780609e-16 2.080289219e-15 8.09521317e-15 1.928043011e-13 9.677453409e-12 7.755840865e-12 6.626465275e-11 1.618005604e-10 2.273896215e-10 2.350325386e-10 3.399135493e-10 6.177040366e-10 8.71323386e-10 8.683027718e-10 1.201550921e-09 1.385860136e-09 1.553969003e-09 1.578836629e-09 1.721645751e-09 1.694550785e-09 1.862961027e-09 1.900305248e-09 1.730647371e-09 2.158030363e-09 2.101311214e-09 2.165998582e-09 2.430088659e-09 2.41898128e-09 2.482438729e-09 2.501472829e-09 2.558257083e-09 2.559036329e-09 2.609686583e-09 2.848812072e-09 2.760632352e-09 2.761297102e-09 2.995709013e-09 3.295057135e-09 3.157460462e-09 3.297991467e-09 3.172679373e-09 3.631554672e-09 3.731118582e-09 3.91444087e-09 4.107889813e-09 4.450493112e-09 3.55251561e-09 4.579447665e-09 3.320024018e-09 3.850245496e-09 5.160351376e-09 3.383178679e-09 3.286032356e-09 5.643002596e-09 5.182525832e-09 5.603346017e-09 5.244860451e-09 6.497130428e-09 5.081410642e-09 6.565907401e-09 5.130071475e-09 6.442117827e-09 6.156911582e-09 5.297584178e-09 5.025397273e-09 4.477820805e-09 4.425779933e-09 3.379303886e-09 3.061818383e-09 4.098621149e-09 3.387533503e-09 3.226697715e-09 3.328349382e-09 4.029567967e-09 2.819700288e-09 3.130116562e-09 2.93412055e-09 3.274846761e-09 2.850392863e-09 2.932804072e-09 2.800095747e-09 2.692573646e-09 2.566722374e-09 3.582357416e-09 2.750308023e-09 3.24104694e-09 2.662525018e-09 3.431110502e-09 3.261009667e-09 3.043082152e-09 3.062824964e-09 3.510309007e-09 3.03383075e-09 3.540190567e-09 3.397281592e-09 3.471560206e-09 3.661426148e-09 3.974547046e-09 4.042045585e-09 3.876189011e-09 4.220466152e-09 4.776361167e-09 4.402989547e-09 4.227431397e-09 4.230593816e-09 5.116376909e-09 4.8932043e-09 4.721641791e-09 6.303055664e-09 5.954011107e-09 5.607511555e-09 5.464836963e-09 4.688964136e-09 5.218531158e-09 4.616866327e-09 5.116566624e-09 3.334015002e-09 5.559425853e-09 3.037962761e-09 4.79045047e-09 4.211374703e-09 4.482305617e-09 3.446378998e-09 3.598887134e-09 4.03853259e-09 3.275782023e-09 2.963819731e-09 3.19488149e-09 3.181485034e-09 2.944642184e-09 2.913151968e-09 3.075569093e-09 2.711528903e-09 2.723393565e-09 2.828020358e-09 2.533771734e-09 2.342786049e-09 2.361268089e-09 2.575624317e-09 2.115526731e-09 2.432207679e-09 2.321508001e-09 2.232513982e-09 2.11610582e-09 1.821725896e-09 1.893769492e-09 1.898445163e-09 1.692676809e-09 1.422478459e-09 1.385628771e-09 1.481884524e-09 1.159474832e-09 1.088745072e-09 5.052077642e-10 4.792492674e-10 1.618163259e-10 2.502076528e-10 7.534101896e-11 2.417020191e-10 3.258373988e-11 3.399639229e-13 7.033922635e-13 9.057398581e-14 2.248885664e-14 3.862712864e-15 2.007527412e-15 2.157980992e-16 9.955568462e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.667850452e-31 5.641277647e-19 1.274012808e-18 8.73939206e-18 1.146142011e-15 2.543948578e-15 1.040684653e-13 4.034140449e-13 1.180774398e-12 3.372675891e-11 2.577593324e-11 2.531704772e-10 3.183579645e-10 2.096092841e-10 2.544957724e-10 5.797328399e-10 7.438421541e-10 1.032817167e-09 1.136775348e-09 1.353627371e-09 1.470269553e-09 1.421179421e-09 1.797061548e-09 1.667152441e-09 1.754527086e-09 1.901059378e-09 2.013681414e-09 2.021599454e-09 2.244441513e-09 2.278610226e-09 2.28694842e-09 2.344297655e-09 2.232831408e-09 2.53062807e-09 2.38112673e-09 2.553411123e-09 2.829796847e-09 2.851616746e-09 2.975914381e-09 2.812996689e-09 3.034533132e-09 3.304051247e-09 3.399384822e-09 3.504649422e-09 3.251970017e-09 3.549546961e-09 4.465047716e-09 4.08635525e-09 3.193936914e-09 5.199844051e-09 4.597437678e-09 4.434931601e-09 4.490909955e-09 3.629220264e-09 4.133786338e-09 5.017182056e-09 5.752236894e-09 4.643095569e-09 4.466418315e-09 6.469982886e-09 5.439881362e-09 5.658880483e-09 5.314394549e-09 5.975757145e-09 5.792732111e-09 4.311925469e-09 4.935942486e-09 4.435404623e-09 4.389426179e-09 4.268301538e-09 3.69643574e-09 3.62062778e-09 5.278048777e-09 3.666553355e-09 3.655439319e-09 3.416839804e-09 3.704618487e-09 3.625735542e-09 3.324129615e-09 3.079354006e-09 2.789775203e-09 2.893728861e-09 3.077525297e-09 2.672813433e-09 3.039306124e-09 2.964365686e-09 3.509680086e-09 2.735323531e-09 3.344744699e-09 2.5082538e-09 3.13441976e-09 2.223306963e-09 3.389583744e-09 3.834962594e-09 3.057570999e-09 3.569860938e-09 3.780235169e-09 4.052247746e-09 3.421624964e-09 3.193259246e-09 3.988095308e-09 3.990015488e-09 4.199076305e-09 4.142484846e-09 4.879510933e-09 3.856436843e-09 5.471382419e-09 5.419446305e-09 5.467578319e-09 4.655323993e-09 4.669669824e-09 5.860464172e-09 3.443943144e-09 6.126183639e-09 5.97995114e-09 5.650722788e-09 5.362000739e-09 5.212979087e-09 4.017330115e-09 4.647110733e-09 4.041285083e-09 4.067171957e-09 5.665564685e-09 3.325540673e-09 4.30417984e-09 4.38729629e-09 3.532203791e-09 3.074125567e-09 3.338955652e-09 3.257324243e-09 3.102384778e-09 2.954756964e-09 3.18641765e-09 2.875743558e-09 3.099484839e-09 2.62332374e-09 3.072126642e-09 2.426329915e-09 2.514992434e-09 2.333064132e-09 2.392622921e-09 2.515314264e-09 2.413367927e-09 2.108097142e-09 2.037647427e-09 2.079701092e-09 2.180487961e-09 1.998320023e-09 1.885150011e-09 1.833795512e-09 1.822235955e-09 1.411460805e-09 1.578061686e-09 1.25820986e-09 1.543394695e-09 9.718012724e-10 7.96977914e-10 7.986352775e-10 4.449111633e-10 2.03185376e-10 5.81481266e-11 2.378126456e-10 2.40729333e-10 3.607210242e-11 1.268977095e-11 1.714304425e-12 2.013034636e-13 9.67792069e-15 7.205797059e-16 2.351698373e-16 2.455768772e-17 7.250339768e-18 2.967837855e-18 4.205620187e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.131810023e-20 1.856993134e-18 3.910784763e-17 8.476142529e-18 9.327299857e-16 1.145528063e-14 7.440711209e-15 5.608771504e-14 8.342871059e-13 2.057950567e-12 1.237730699e-11 2.966935128e-11 3.121507118e-10 6.124406781e-11 2.904062757e-10 4.255402954e-10 6.036515487e-10 1.135142056e-09 9.579821699e-10 1.33037015e-09 1.45932948e-09 1.298074357e-09 1.783499403e-09 1.740829349e-09 1.943699768e-09 1.892905339e-09 2.116261219e-09 1.91926789e-09 2.413448541e-09 2.307802003e-09 2.352730928e-09 2.251515661e-09 2.309701969e-09 2.617694493e-09 2.739283111e-09 2.503444626e-09 2.887333989e-09 2.859196032e-09 2.818692506e-09 2.959839335e-09 3.020509303e-09 3.035098378e-09 2.916686908e-09 3.243742876e-09 3.313560163e-09 3.796537188e-09 4.043221374e-09 3.984350128e-09 3.508608137e-09 3.883569915e-09 4.773882179e-09 5.086514509e-09 5.243332875e-09 5.343671829e-09 4.837031843e-09 5.93426513e-09 5.366229304e-09 5.399824109e-09 5.09645555e-09 6.307968356e-09 5.065553021e-09 5.198601854e-09 4.873947687e-09 4.851602949e-09 4.879401409e-09 5.82135445e-09 4.654897719e-09 3.502779358e-09 4.938876052e-09 4.966384053e-09 4.432716951e-09 4.144492956e-09 2.945260005e-09 3.383202438e-09 3.61427321e-09 3.370786354e-09 3.295354722e-09 3.685773726e-09 3.558562846e-09 2.721673701e-09 3.091836276e-09 3.17200436e-09 3.467480482e-09 3.317122472e-09 3.293135619e-09 2.834795551e-09 2.426249583e-09 3.0932068e-09 2.674377168e-09 3.682784288e-09 3.140803489e-09 3.00195215e-09 3.328919503e-09 2.997385731e-09 3.249521725e-09 3.575785886e-09 2.642995735e-09 3.14996414e-09 3.667339322e-09 3.104825617e-09 4.293655962e-09 4.40470037e-09 4.016807776e-09 4.6341192e-09 4.614029088e-09 4.979349234e-09 5.086242017e-09 5.117640798e-09 4.579919263e-09 3.907144541e-09 6.54632598e-09 5.331712005e-09 4.913250359e-09 4.200921994e-09 5.513697129e-09 5.42704221e-09 5.122773564e-09 6.628636299e-09 4.014501217e-09 4.42792322e-09 4.885491468e-09 4.345617149e-09 4.540147514e-09 5.391188563e-09 4.091584761e-09 3.221708493e-09 4.555038442e-09 4.174575304e-09 3.186596979e-09 3.281247923e-09 3.440833903e-09 3.114657253e-09 3.039636123e-09 3.045973386e-09 3.032783546e-09 2.963819914e-09 2.923441189e-09 2.810703748e-09 2.885821544e-09 2.465794416e-09 2.637892066e-09 2.375919459e-09 2.495293599e-09 2.221091424e-09 2.461241875e-09 2.107034168e-09 2.028891931e-09 1.937484517e-09 1.988978672e-09 1.717335262e-09 1.985915328e-09 1.537756341e-09 1.45372053e-09 1.55513849e-09 1.490739888e-09 1.067021035e-09 6.908091522e-10 4.540530957e-10 5.571537815e-10 1.038593836e-10 2.597513414e-10 2.177344473e-10 9.074637491e-11 8.778084474e-11 4.237935238e-12 3.143751732e-13 2.387001149e-14 1.435930554e-14 1.205308571e-15 7.273586545e-16 1.995585627e-16 7.061144762e-18 7.225891018e-18 9.155203623e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.320650089e-33 1.62797e-17 6.645993004e-16 1.87171563e-17 2.16258162e-15 6.447006841e-14 3.518675241e-13 1.246019899e-12 1.303216775e-11 5.026898912e-11 1.411047426e-10 1.199571357e-10 2.173505186e-11 2.311925321e-10 5.629075524e-10 7.175244557e-10 1.072901863e-09 1.2621982e-09 1.157847853e-09 1.308319195e-09 1.439657033e-09 1.74450405e-09 1.567202148e-09 1.762264082e-09 1.875257475e-09 2.188155389e-09 2.139621337e-09 2.099755641e-09 2.250434455e-09 2.297389514e-09 2.601755252e-09 2.503999132e-09 2.719321592e-09 2.503969418e-09 2.780888083e-09 2.823213596e-09 2.4672245e-09 3.229476404e-09 3.068362234e-09 3.333509183e-09 3.016608631e-09 3.350375156e-09 3.242560131e-09 3.15219511e-09 4.11424705e-09 3.171006589e-09 5.000141934e-09 4.955244357e-09 4.138554538e-09 4.220847067e-09 4.553294198e-09 5.071167487e-09 5.461136919e-09 4.081776113e-09 3.77955208e-09 4.41691542e-09 4.935779599e-09 4.615045471e-09 5.063578196e-09 4.647384261e-09 6.774475143e-09 4.97010508e-09 4.855309073e-09 6.257830378e-09 5.238407525e-09 5.975835648e-09 5.060323864e-09 5.549766135e-09 4.905852282e-09 4.417822481e-09 4.663175735e-09 3.957558815e-09 3.246665226e-09 4.134005797e-09 4.068742644e-09 3.602235773e-09 3.809089864e-09 3.435767887e-09 3.465053387e-09 3.189333659e-09 3.058714157e-09 3.053481231e-09 3.200839959e-09 3.391613722e-09 3.44731915e-09 2.860408812e-09 2.758440426e-09 3.64324495e-09 2.417806349e-09 2.924948796e-09 3.010382364e-09 3.201906053e-09 3.299403435e-09 3.353684438e-09 3.620850353e-09 3.950106144e-09 2.975463926e-09 3.785684648e-09 3.409334733e-09 3.365870711e-09 3.600660428e-09 4.292595921e-09 4.455556034e-09 5.177462559e-09 5.789979915e-09 5.208505901e-09 4.940438984e-09 5.649939807e-09 5.500162118e-09 5.848994533e-09 5.012708741e-09 5.560365677e-09 4.195114361e-09 5.734160368e-09 4.758119943e-09 4.597223293e-09 5.076474149e-09 3.562143198e-09 4.758657971e-09 5.62683501e-09 4.360927661e-09 4.349735619e-09 3.668368223e-09 3.160548052e-09 3.842673782e-09 3.904058681e-09 4.41074829e-09 3.837382825e-09 3.361057089e-09 3.38639241e-09 3.080239557e-09 2.994904202e-09 2.870576371e-09 2.615646637e-09 3.106269892e-09 3.011453065e-09 2.93896842e-09 2.653764927e-09 2.574816877e-09 2.261729725e-09 2.730437221e-09 2.286081988e-09 2.287006477e-09 2.212121389e-09 2.265709522e-09 2.181092963e-09 2.262802114e-09 1.801338837e-09 1.833480454e-09 1.821327956e-09 1.401085298e-09 1.785599849e-09 1.529800614e-09 1.195432163e-09 1.259266883e-09 8.078749294e-10 9.405290893e-10 5.659447003e-10 2.767804201e-10 3.680724842e-10 2.523979289e-10 2.514618435e-10 2.184760554e-11 2.434429801e-12 3.496039183e-12 1.822622233e-13 5.627782517e-15 1.045905027e-14 2.28421235e-16 2.14312198e-17 1.83506368e-18 3.130029539e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.861160195e-17 1.085562308e-16 6.2419054e-16 9.188327713e-15 2.85254666e-14 7.192359073e-15 3.388371523e-13 8.678029368e-12 9.649648124e-11 6.43023002e-11 2.925399008e-10 2.247858553e-10 4.198382386e-10 3.259810915e-10 7.32933034e-10 1.009484194e-09 1.058969339e-09 1.239127221e-09 1.153653402e-09 1.552608001e-09 1.599690084e-09 1.70110543e-09 1.92834309e-09 1.949039457e-09 2.013804495e-09 2.059871814e-09 2.094559326e-09 2.240116997e-09 2.212459755e-09 2.408960354e-09 2.756718248e-09 2.503450826e-09 2.790165149e-09 2.547432703e-09 2.618017483e-09 2.676226699e-09 2.808225749e-09 2.914052584e-09 2.961167162e-09 3.060550945e-09 3.372556577e-09 3.085119641e-09 2.964713121e-09 3.207216623e-09 4.44867296e-09 4.880330652e-09 3.849472917e-09 4.680461262e-09 6.479864978e-09 5.804859126e-09 5.814795961e-09 5.661771079e-09 4.794537058e-09 4.467647681e-09 6.0544852e-09 6.151909456e-09 3.881999314e-09 3.77433922e-09 6.252930705e-09 4.579589714e-09 5.433569779e-09 4.384640381e-09 4.9468053e-09 5.676273162e-09 4.369843847e-09 3.821145175e-09 4.030005002e-09 4.596479355e-09 3.459597933e-09 3.7598607e-09 3.762526464e-09 3.433632675e-09 3.709459034e-09 4.164272963e-09 3.606771254e-09 3.853129714e-09 2.952391993e-09 3.1725619e-09 3.136022091e-09 2.858962815e-09 3.080058638e-09 2.873724584e-09 2.691472298e-09 2.766419506e-09 3.075503044e-09 2.448653048e-09 2.728023389e-09 3.157158826e-09 2.756074457e-09 2.809197108e-09 2.895390331e-09 3.361085733e-09 3.389571601e-09 3.142689499e-09 3.095097091e-09 3.287807396e-09 3.628926163e-09 3.991491865e-09 3.141867782e-09 3.87578583e-09 4.46990602e-09 4.185816835e-09 4.01348701e-09 4.822191743e-09 4.710872325e-09 5.124128706e-09 4.934491226e-09 5.140688418e-09 5.279464557e-09 4.896869074e-09 5.124505051e-09 6.028243824e-09 5.411315504e-09 4.724521359e-09 4.591864965e-09 4.55420282e-09 5.276645472e-09 5.169016682e-09 4.906581705e-09 5.006873639e-09 4.408509069e-09 5.223820083e-09 4.326152039e-09 4.614602203e-09 3.545788136e-09 3.700732544e-09 3.324324634e-09 3.53965923e-09 3.345370328e-09 3.151849418e-09 2.953839802e-09 3.128139244e-09 2.988759959e-09 2.922980175e-09 2.916543984e-09 2.801567834e-09 2.680323113e-09 2.452248601e-09 2.570122601e-09 2.551635943e-09 2.515950082e-09 2.204094271e-09 2.36809305e-09 2.280318322e-09 2.107748661e-09 1.959171715e-09 1.808957294e-09 1.917159377e-09 1.71099071e-09 1.518222778e-09 1.363156456e-09 1.271343695e-09 1.139773399e-09 9.328167378e-10 7.628496028e-10 9.062142669e-10 5.67494266e-10 4.015074534e-10 2.094550572e-10 2.632835033e-10 1.168773485e-10 3.32868692e-11 2.849357953e-12 3.205992762e-12 1.437276866e-13 1.305294272e-14 2.509815847e-14 3.043932756e-15 4.628379377e-17 1.375518723e-18 1.599713557e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.114348723e-18 3.695837362e-18 2.684970475e-17 1.571243535e-16 7.90071613e-16 7.610038174e-14 6.464933577e-14 2.385191851e-13 2.335305761e-12 3.029097125e-11 3.292507646e-11 1.930315185e-10 1.792649743e-10 6.989163628e-11 4.915770613e-10 7.609138725e-10 8.678379584e-10 8.823242883e-10 1.113098335e-09 1.25023499e-09 1.407306719e-09 1.403174513e-09 1.811952847e-09 1.981660928e-09 2.183902956e-09 2.077093116e-09 2.154057623e-09 2.046132907e-09 2.179949107e-09 2.123034172e-09 2.467338084e-09 2.580379458e-09 2.526159683e-09 2.735827015e-09 2.963732221e-09 2.833229474e-09 2.747618498e-09 3.065210385e-09 3.161844578e-09 3.210154395e-09 3.2822842e-09 3.230440347e-09 3.427298928e-09 3.898470405e-09 3.244176494e-09 3.601434572e-09 3.591677134e-09 4.574168879e-09 3.82994829e-09 3.375418765e-09 4.574381115e-09 2.954355426e-09 6.123714237e-09 5.467788404e-09 4.903474474e-09 5.297237181e-09 4.320289255e-09 5.000834552e-09 6.366623368e-09 6.288708557e-09 4.536815529e-09 3.788618043e-09 5.752980592e-09 5.680347082e-09 3.96304462e-09 4.478790523e-09 3.758802408e-09 4.529824685e-09 3.879523111e-09 3.098170703e-09 4.841361253e-09 2.96449325e-09 3.028130815e-09 3.257485517e-09 3.868185906e-09 3.30484461e-09 3.254661733e-09 2.306337193e-09 2.610583797e-09 3.28000157e-09 2.869071076e-09 2.904767574e-09 2.734225779e-09 3.116477669e-09 3.334833357e-09 3.070298809e-09 3.013983982e-09 3.640892832e-09 2.792407031e-09 3.176129342e-09 3.638014593e-09 2.984444972e-09 2.928782821e-09 3.656252333e-09 2.974734704e-09 2.87994842e-09 3.431723644e-09 2.373003161e-09 3.913523752e-09 4.177346531e-09 3.955033037e-09 4.280891046e-09 4.115626919e-09 4.927548192e-09 4.499058264e-09 4.17104027e-09 4.515076109e-09 3.529059201e-09 5.056139468e-09 4.006501574e-09 5.304839808e-09 5.150663073e-09 6.510777016e-09 5.101417687e-09 5.469197019e-09 4.415549613e-09 5.371073012e-09 5.078560225e-09 5.408978948e-09 6.289173488e-09 5.243880141e-09 4.543544183e-09 4.504456526e-09 4.190725745e-09 4.212953642e-09 4.097975896e-09 3.844838623e-09 3.111914461e-09 3.008872261e-09 3.212075689e-09 3.068877574e-09 3.089431957e-09 3.075078239e-09 2.955043816e-09 2.939590383e-09 2.990854034e-09 2.702812998e-09 2.89577158e-09 2.368444346e-09 2.422237093e-09 2.614665589e-09 2.482411904e-09 2.569867225e-09 2.448419498e-09 2.201989796e-09 2.031173792e-09 1.708600012e-09 2.012878913e-09 1.753777222e-09 1.597011536e-09 1.631958938e-09 1.592088833e-09 1.306800838e-09 1.331256231e-09 1.048356336e-09 1.010426998e-09 8.169952732e-10 6.458581656e-10 1.580078817e-10 1.556687704e-10 9.615420941e-11 2.321952173e-10 1.284399711e-10 1.07366513e-12 9.535413301e-13 4.841656509e-13 2.496827282e-14 6.911882469e-15 6.64936371e-16 1.175893508e-17 6.041823264e-19 3.490803903e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.744650962e-19 4.181293972e-19 4.390777327e-18 1.102102106e-17 2.643196802e-16 4.639825661e-15 5.268683334e-15 3.208473107e-13 3.165998101e-13 6.241636807e-11 4.127287397e-11 1.590727431e-10 2.458484598e-10 3.240813006e-10 3.541216613e-10 4.990836234e-10 6.276732976e-10 1.050286938e-09 1.09286007e-09 1.398018149e-09 1.353001657e-09 1.168640756e-09 1.617428537e-09 1.830890251e-09 1.979337421e-09 1.987398985e-09 1.952188435e-09 1.926511835e-09 2.118313303e-09 2.45017939e-09 2.542633641e-09 2.209975916e-09 2.551935967e-09 2.70514923e-09 2.751888487e-09 2.698401793e-09 2.778896333e-09 2.982422818e-09 2.943248535e-09 2.940313566e-09 2.826659233e-09 3.134337961e-09 3.313522173e-09 3.340355279e-09 3.39411473e-09 3.464324063e-09 3.458206846e-09 4.219925218e-09 3.926345932e-09 5.324127337e-09 4.892940597e-09 4.913914131e-09 6.003978603e-09 3.970094984e-09 5.288671788e-09 5.781966432e-09 5.363142403e-09 5.164518827e-09 5.498543595e-09 4.470574194e-09 3.443967202e-09 4.41950255e-09 4.735353496e-09 5.327359988e-09 5.083497976e-09 4.863142045e-09 4.555046483e-09 5.234572681e-09 5.672544215e-09 4.033963154e-09 4.276494326e-09 3.631870531e-09 3.59826032e-09 3.507249197e-09 3.920651894e-09 3.911913782e-09 2.974645519e-09 3.724626888e-09 3.366403169e-09 3.151841644e-09 3.194116995e-09 3.162564827e-09 3.001423299e-09 3.324838448e-09 3.06605219e-09 3.378346424e-09 2.785126433e-09 2.787668258e-09 3.124285525e-09 2.947239785e-09 2.580815354e-09 3.083411854e-09 3.090480066e-09 3.29766668e-09 2.665568048e-09 3.013724038e-09 3.858546207e-09 3.554948383e-09 2.820369896e-09 3.313003971e-09 3.716396943e-09 3.637812628e-09 4.036121354e-09 4.146464789e-09 4.881355021e-09 4.475632641e-09 4.978449152e-09 5.770525435e-09 4.945510155e-09 5.976461378e-09 5.081250016e-09 5.315866518e-09 5.481417721e-09 5.808827202e-09 4.268812797e-09 4.553002692e-09 4.908067333e-09 5.611715754e-09 4.790500432e-09 4.164095894e-09 4.486133239e-09 6.280207284e-09 5.245158133e-09 5.853118006e-09 4.104701593e-09 3.913700995e-09 3.838535408e-09 3.370425377e-09 3.24700898e-09 3.410790045e-09 3.281365707e-09 3.049582151e-09 3.009978369e-09 2.999119985e-09 2.602171837e-09 2.707264543e-09 3.026502446e-09 2.786963399e-09 2.793547494e-09 2.467756199e-09 2.504061682e-09 2.648617006e-09 2.39503174e-09 2.558936259e-09 2.286103064e-09 1.922211443e-09 2.136516594e-09 1.593206561e-09 2.119803355e-09 1.586525803e-09 1.671253243e-09 1.463141881e-09 1.385562442e-09 1.421252832e-09 1.102098521e-09 1.367506477e-09 1.166847556e-09 9.029137045e-10 3.295602728e-10 4.006768836e-10 1.744163825e-10 1.634596599e-10 1.71465507e-10 3.976850539e-11 3.93132798e-13 5.046155857e-13 2.09106243e-14 9.583236448e-15 2.875882911e-15 2.42423721e-16 7.685858095e-17 7.778026833e-18 3.634767018e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 8.035599391e-19 2.394271653e-20 1.757877804e-17 1.598113829e-17 4.724453754e-16 3.629171884e-15 5.756685303e-15 4.47030947e-14 8.125330479e-13 2.206864875e-12 8.111255695e-11 5.572754285e-11 2.206489448e-10 2.023083542e-10 3.08081289e-10 4.694632665e-10 7.225455189e-10 1.080424911e-09 1.269893138e-09 1.22842068e-09 1.364251333e-09 1.898402166e-09 1.716216819e-09 1.789655331e-09 1.994391612e-09 1.887470672e-09 2.011512691e-09 1.994729016e-09 2.152327957e-09 2.302756736e-09 2.546866673e-09 2.555845437e-09 2.555523359e-09 2.499120239e-09 2.526650665e-09 2.732943748e-09 2.854507385e-09 2.801167544e-09 2.980385012e-09 3.066193768e-09 2.895930978e-09 3.000262071e-09 3.220864097e-09 3.050913309e-09 3.241279645e-09 3.129663267e-09 4.241079374e-09 3.795184881e-09 3.823338329e-09 4.869835657e-09 4.281715188e-09 5.631091064e-09 3.704861345e-09 3.922893e-09 4.711578572e-09 4.737120918e-09 4.527214157e-09 4.216054325e-09 4.673548806e-09 6.293387501e-09 5.082681771e-09 4.991620708e-09 5.311906359e-09 5.305349727e-09 6.028100968e-09 4.40791994e-09 4.206080798e-09 4.579619423e-09 4.978278762e-09 4.248593089e-09 3.666550633e-09 3.554988632e-09 3.540974643e-09 4.023602258e-09 2.97369065e-09 3.187184212e-09 3.024744153e-09 3.411826967e-09 3.246841904e-09 3.375325678e-09 3.302641442e-09 3.084872273e-09 3.103986449e-09 3.448510211e-09 2.886982202e-09 3.047191119e-09 2.751244022e-09 2.751046787e-09 3.152444603e-09 3.204990783e-09 3.298945413e-09 2.983269144e-09 3.292598256e-09 3.08293832e-09 3.292214098e-09 3.237365014e-09 3.089652855e-09 3.725584732e-09 3.302599717e-09 3.731406445e-09 3.371077271e-09 4.632901982e-09 3.738685075e-09 3.603087459e-09 4.568556576e-09 4.505414088e-09 4.513874803e-09 5.780482405e-09 4.760353219e-09 5.197662936e-09 4.25755514e-09 4.316582593e-09 5.737758409e-09 5.861446555e-09 4.425961102e-09 3.25709481e-09 5.429646407e-09 5.742638646e-09 4.13940275e-09 4.517701161e-09 4.363532819e-09 4.928530748e-09 5.28307553e-09 5.178138273e-09 3.815669823e-09 3.946114355e-09 4.223704244e-09 3.525883561e-09 3.633034774e-09 3.319412344e-09 3.147196269e-09 3.10563287e-09 2.942583587e-09 2.855255232e-09 2.792115469e-09 2.60635263e-09 2.52022927e-09 2.766270687e-09 2.630053897e-09 2.604300416e-09 2.670108189e-09 2.513824359e-09 2.225973434e-09 2.517584876e-09 2.212518043e-09 2.326802443e-09 1.947618229e-09 1.946451851e-09 1.60906222e-09 1.888830561e-09 1.548991076e-09 1.698299671e-09 1.784202141e-09 1.522936102e-09 1.538011301e-09 1.021483017e-09 1.103994632e-09 7.017938567e-10 3.960959109e-10 4.287454957e-10 2.449434466e-10 1.167010811e-11 3.360030759e-11 1.874246525e-11 1.212573737e-12 4.605384543e-12 5.163922952e-14 1.073836423e-14 5.053713208e-15 2.281127593e-15 2.877048584e-16 6.140443882e-18 9.963603875e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.378624917e-17 1.167098006e-16 1.115990855e-16 1.851638032e-15 1.854137502e-14 3.933422029e-14 8.231742177e-13 1.916552928e-11 7.422387182e-11 2.221134535e-10 2.574813151e-10 3.220024817e-10 3.107363532e-10 4.706375711e-10 9.631299603e-10 1.121501055e-09 1.132967633e-09 1.374730152e-09 1.290794384e-09 1.535133391e-09 1.707947561e-09 1.764700248e-09 1.822781406e-09 1.82773558e-09 1.646304739e-09 2.058716759e-09 2.034404845e-09 2.241096045e-09 2.321212974e-09 2.516598259e-09 2.482275254e-09 2.641075135e-09 2.900637861e-09 2.877916863e-09 2.72644415e-09 2.75219825e-09 3.105485176e-09 3.038200652e-09 3.09899018e-09 3.122113949e-09 3.159783811e-09 3.12455581e-09 3.085098456e-09 3.519259105e-09 3.343368262e-09 4.175106436e-09 3.755530947e-09 3.239847098e-09 4.826365042e-09 3.846337075e-09 4.885385913e-09 5.511207291e-09 3.732293462e-09 4.557771983e-09 4.049835832e-09 4.900275077e-09 4.946982313e-09 3.386817885e-09 4.930518256e-09 4.630731255e-09 5.546855292e-09 4.428326433e-09 4.75076929e-09 4.29933996e-09 5.26075345e-09 2.831750825e-09 4.076934573e-09 4.28630064e-09 4.335974883e-09 4.634079172e-09 4.500438979e-09 3.508695235e-09 4.147060653e-09 3.051862572e-09 3.924160725e-09 2.739195896e-09 2.99215134e-09 2.913248253e-09 3.070236302e-09 2.915802864e-09 2.679913102e-09 2.978387397e-09 3.141351345e-09 3.408264976e-09 3.497654097e-09 2.523581321e-09 3.101831571e-09 2.890420176e-09 3.043745021e-09 2.979913058e-09 3.062773592e-09 3.087142234e-09 3.337678574e-09 2.913673695e-09 3.255279418e-09 3.823432968e-09 3.201660279e-09 3.433273475e-09 3.566890801e-09 3.543455827e-09 4.386794481e-09 3.995320655e-09 4.957716737e-09 4.597854823e-09 4.6413908e-09 4.406753267e-09 4.752904442e-09 5.10861985e-09 5.297071904e-09 4.014286124e-09 4.328826441e-09 5.30022961e-09 4.957754042e-09 5.406759731e-09 3.562371713e-09 5.773317121e-09 5.043464955e-09 4.849933068e-09 4.372011881e-09 4.534865358e-09 5.14486161e-09 4.63149427e-09 4.920336641e-09 3.939031277e-09 3.178698627e-09 3.855214176e-09 3.354360881e-09 3.099307823e-09 3.253980026e-09 3.158164385e-09 3.220948194e-09 3.146715175e-09 2.88670094e-09 2.948651287e-09 2.742004203e-09 2.879729874e-09 2.552731332e-09 2.573677669e-09 2.570032819e-09 2.649638437e-09 2.224092453e-09 2.259218971e-09 2.319641626e-09 1.948803681e-09 2.237383127e-09 1.91697834e-09 2.028784987e-09 1.915590144e-09 1.866220271e-09 1.705147617e-09 1.619575149e-09 1.439932016e-09 9.604572191e-10 7.78695492e-10 6.95339013e-10 7.340371463e-10 6.379772447e-10 4.519123904e-10 2.106333718e-10 1.951811828e-10 9.070628373e-11 1.174312371e-10 9.210581154e-12 7.705494189e-12 5.107735265e-15 3.238133779e-14 9.309530562e-16 9.70614052e-18 3.713888922e-17 1.327338976e-17 1.280161206e-18 6.665678581e-28 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 6.359571834e-11 0 0 2.181662224e-30 1.084355683e-18 1.820072024e-17 5.633499034e-17 1.781064918e-15 1.423178798e-15 1.067402128e-15 9.754077229e-13 7.835254926e-14 6.13023e-13 9.26541147e-11 1.440339924e-11 1.782217617e-10 2.764197368e-10 2.317921264e-10 5.733431071e-10 8.161539768e-10 9.611793532e-10 1.088408409e-09 1.278527616e-09 1.311618387e-09 1.509156316e-09 1.679615718e-09 1.928362383e-09 1.81404957e-09 1.900450339e-09 2.010417963e-09 2.010586744e-09 2.238678737e-09 2.231280437e-09 2.288916737e-09 2.485416691e-09 2.180087373e-09 2.503873267e-09 2.870582774e-09 2.490991156e-09 2.528294785e-09 2.680766254e-09 2.856825958e-09 2.97028291e-09 2.999159939e-09 3.089876745e-09 3.238075701e-09 3.276205233e-09 3.207775243e-09 3.196647009e-09 4.553653534e-09 4.073626183e-09 4.272893688e-09 3.835269244e-09 4.827205593e-09 5.778731397e-09 4.846239501e-09 4.979579066e-09 4.26075236e-09 4.835905419e-09 4.913672436e-09 5.94482078e-09 5.453207748e-09 4.502839578e-09 6.051318323e-09 4.818146489e-09 6.449810706e-09 4.995668477e-09 5.23876262e-09 4.168683168e-09 4.165146887e-09 3.538893911e-09 4.505323742e-09 5.066721758e-09 3.651504621e-09 3.956953466e-09 3.700187195e-09 2.969105955e-09 3.396313969e-09 3.549204149e-09 3.208547839e-09 3.207671711e-09 3.204970636e-09 2.982181909e-09 2.401682882e-09 3.096958598e-09 3.237165355e-09 3.425780087e-09 3.183851726e-09 2.947011937e-09 2.955790578e-09 3.374467367e-09 3.064918563e-09 2.940061995e-09 2.779686207e-09 3.175784645e-09 2.888505309e-09 3.725987378e-09 3.008183781e-09 2.945604467e-09 3.155515236e-09 3.615315934e-09 3.597035984e-09 3.866585953e-09 3.513350567e-09 3.024429221e-09 3.682334013e-09 4.102105868e-09 4.992366538e-09 5.099224183e-09 4.331779965e-09 5.251096688e-09 5.365594931e-09 4.774699475e-09 4.855605504e-09 6.463099664e-09 4.051368907e-09 4.455853163e-09 4.177663643e-09 5.93549285e-09 5.773738535e-09 4.963513759e-09 5.661754636e-09 4.086041327e-09 4.728867583e-09 4.482853641e-09 3.995420905e-09 4.964576671e-09 3.52584748e-09 4.483721525e-09 4.09170791e-09 4.795683002e-09 3.434883219e-09 3.389000692e-09 3.250073305e-09 2.980606549e-09 3.165372042e-09 2.913641427e-09 2.699510482e-09 2.960552911e-09 2.872550217e-09 2.836110352e-09 2.652077459e-09 2.669130935e-09 2.486813665e-09 2.268694889e-09 2.345413425e-09 2.06664455e-09 2.306098382e-09 2.100116944e-09 1.803361392e-09 2.124548083e-09 1.957455943e-09 1.795489996e-09 1.809672019e-09 1.455971886e-09 1.492499894e-09 1.496373849e-09 1.362072129e-09 1.309411325e-09 7.77645033e-10 5.853320531e-10 7.094381751e-10 3.802740786e-10 2.940861548e-10 3.386463726e-10 1.65806802e-10 2.11228737e-11 8.083869864e-12 1.407909623e-12 2.176737207e-14 1.201908719e-13 9.292954467e-16 3.391385889e-16 7.684525183e-17 2.275479522e-17 1.235675799e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.276041825e-19 1.796495064e-19 2.086092633e-18 1.630518707e-16 1.790766027e-15 1.285738031e-16 6.773889246e-15 5.43248702e-14 9.739080775e-13 4.117166933e-12 9.820841151e-11 3.062167093e-10 2.494344477e-10 2.040710932e-10 3.65413953e-10 3.610252991e-10 6.974381202e-10 1.093671645e-09 1.18479998e-09 1.447111463e-09 1.164134025e-09 1.67420842e-09 1.549546935e-09 1.96107128e-09 1.855670274e-09 1.964081083e-09 2.091582807e-09 2.068498431e-09 2.237537162e-09 2.366444953e-09 2.318461117e-09 2.405859023e-09 2.555282746e-09 2.419030906e-09 2.687219894e-09 2.825059751e-09 2.957678417e-09 2.872204818e-09 2.646083477e-09 2.970248674e-09 3.171945169e-09 2.979878384e-09 3.1265763e-09 3.283311137e-09 3.21355811e-09 3.476953886e-09 3.429045321e-09 4.308359919e-09 3.277778992e-09 4.885680418e-09 5.4082709e-09 5.458046698e-09 3.786942392e-09 6.496048046e-09 6.398761057e-09 6.555782137e-09 3.57946221e-09 3.734774785e-09 5.593284064e-09 4.454547018e-09 4.762115277e-09 6.449342739e-09 4.410828488e-09 5.462320527e-09 6.212503277e-09 4.605699327e-09 5.81694493e-09 4.996254436e-09 5.157649364e-09 4.840558351e-09 4.176056239e-09 4.605283651e-09 2.757172883e-09 3.829642256e-09 3.236888065e-09 3.989129133e-09 3.8321039e-09 3.106320008e-09 3.075112479e-09 3.543099726e-09 2.982730417e-09 2.62860779e-09 2.725231283e-09 2.779412891e-09 3.182070204e-09 3.353650113e-09 3.026001608e-09 2.968788563e-09 3.282266906e-09 2.805598881e-09 3.568164808e-09 3.587062058e-09 3.2578853e-09 3.029469346e-09 2.932578516e-09 3.704058014e-09 3.092555138e-09 2.74265137e-09 3.121858861e-09 4.249696023e-09 3.617863129e-09 3.266870543e-09 4.495654331e-09 4.333544854e-09 4.22543087e-09 5.002961732e-09 4.604099564e-09 4.690084027e-09 5.172897676e-09 4.681084703e-09 4.922975973e-09 4.749335418e-09 5.581466768e-09 6.099256276e-09 5.003859638e-09 4.109240842e-09 5.211618137e-09 3.949835422e-09 4.816329011e-09 5.802629172e-09 3.875534315e-09 4.360236626e-09 5.165997186e-09 4.46835467e-09 4.201200062e-09 4.44859215e-09 4.685829414e-09 3.917540219e-09 3.687029136e-09 3.477097307e-09 3.457150336e-09 3.11898645e-09 3.06138543e-09 3.169444309e-09 2.939236613e-09 2.834717943e-09 2.586644135e-09 2.897823527e-09 2.906540326e-09 2.442012969e-09 2.605047877e-09 2.614654288e-09 2.346057234e-09 2.406495473e-09 2.42399173e-09 1.954252611e-09 2.086896314e-09 1.934136351e-09 1.871450336e-09 1.780286874e-09 1.64454125e-09 1.462741154e-09 1.554873426e-09 1.465187498e-09 1.363523761e-09 1.10194913e-09 1.187752391e-09 7.550444186e-10 5.652036891e-10 3.140048453e-10 4.408616887e-10 3.334311823e-10 6.724426982e-11 6.26731076e-11 9.690246302e-12 1.86457875e-12 3.0281978e-13 3.715624669e-14 7.396602163e-16 1.087527805e-15 1.523021685e-17 1.520618487e-18 3.834756375e-18 7.192800495e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.344954375e-18 8.0396707e-18 9.231112622e-17 5.293063896e-16 2.748358803e-17 4.695070229e-15 4.007615517e-14 1.497907399e-12 8.08697995e-13 4.088704893e-11 2.120403977e-10 2.209256851e-10 1.508701786e-10 2.778783833e-10 3.246494245e-10 1.050468012e-09 7.701883609e-10 1.150201317e-09 1.40311035e-09 1.359409422e-09 1.583414605e-09 1.644240155e-09 1.690545203e-09 2.007103678e-09 1.965020016e-09 1.772009101e-09 2.460244455e-09 2.284926402e-09 2.212296929e-09 2.355463812e-09 2.418160208e-09 2.333848456e-09 2.744527627e-09 2.577001765e-09 2.541570737e-09 2.498561753e-09 2.692347227e-09 2.829346476e-09 2.887888372e-09 2.854955724e-09 3.136172288e-09 3.149365175e-09 3.219405632e-09 3.165706968e-09 3.227547879e-09 3.79688875e-09 4.244136709e-09 3.317867745e-09 4.509004941e-09 3.126382602e-09 4.408187096e-09 5.294602074e-09 4.400586201e-09 5.124440376e-09 4.627648442e-09 5.796623365e-09 5.578254663e-09 4.908953994e-09 5.408014522e-09 5.557715669e-09 6.35765233e-09 4.921049888e-09 4.152854165e-09 4.465084617e-09 5.647697097e-09 4.76834872e-09 5.36257696e-09 4.84610338e-09 4.789142082e-09 3.747125852e-09 4.189614159e-09 3.821704205e-09 3.305211175e-09 3.922317192e-09 3.751289632e-09 2.924928493e-09 3.63902722e-09 3.442628306e-09 3.837397034e-09 2.987788445e-09 2.689808296e-09 2.969698335e-09 3.096797459e-09 2.964049136e-09 3.226646292e-09 3.00379672e-09 2.754157017e-09 3.145542135e-09 3.121623613e-09 2.745726739e-09 2.92601931e-09 2.846383782e-09 3.12020826e-09 3.13482978e-09 3.434607552e-09 3.962315562e-09 3.241415379e-09 3.793822472e-09 3.698802992e-09 3.267267217e-09 4.439642228e-09 4.021934842e-09 3.609046148e-09 4.567799025e-09 3.928843108e-09 5.276003041e-09 5.859466634e-09 4.829557025e-09 4.402463864e-09 3.668319856e-09 4.847201664e-09 5.280532723e-09 5.676887434e-09 4.080461776e-09 5.021243225e-09 4.620566392e-09 6.186185549e-09 4.678668136e-09 4.932493011e-09 4.847293358e-09 4.137675918e-09 4.972308072e-09 4.106656215e-09 4.034862587e-09 3.794935427e-09 3.69549506e-09 4.139338295e-09 3.560083036e-09 3.213129514e-09 3.192483959e-09 3.200146718e-09 3.130956216e-09 2.948731306e-09 2.915096675e-09 3.059961563e-09 3.084030615e-09 2.898339967e-09 2.475099996e-09 2.685633687e-09 2.701827437e-09 2.435100698e-09 2.536058501e-09 2.185132109e-09 2.278197575e-09 2.266698081e-09 2.233875514e-09 2.096604549e-09 1.914888306e-09 1.794338265e-09 1.617269087e-09 1.424530836e-09 1.627976597e-09 1.441688898e-09 1.149602382e-09 1.194057054e-09 8.35229349e-10 7.1787379e-10 5.322153647e-10 4.205011796e-10 3.323808493e-10 2.861367458e-10 1.451241929e-11 2.400149867e-11 1.07076597e-11 1.282000613e-12 5.499723028e-13 2.519600778e-15 1.205791544e-14 1.062318527e-17 5.924894597e-17 8.148924051e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.564953868e-18 8.149814268e-19 4.16343251e-17 8.531986109e-16 2.379950403e-15 2.68387406e-14 1.587862735e-15 2.476103398e-12 8.256638113e-12 8.759461975e-11 1.5251234e-10 2.426771445e-10 1.237097193e-10 4.107171302e-10 4.022094858e-10 7.759696577e-10 1.019869031e-09 1.302658139e-09 1.112498292e-09 1.244489816e-09 1.606434623e-09 1.649294815e-09 1.421660529e-09 1.832939124e-09 1.98457109e-09 1.853724994e-09 2.259432881e-09 2.183873658e-09 2.450024632e-09 2.361957633e-09 2.434776107e-09 2.395995131e-09 2.509520332e-09 2.899889377e-09 2.741910626e-09 2.73420695e-09 2.75480884e-09 2.992771493e-09 2.782315183e-09 2.913326474e-09 3.050994653e-09 3.22044629e-09 3.087476988e-09 3.216900064e-09 3.734901104e-09 3.449253472e-09 3.822437446e-09 3.745975802e-09 4.207262636e-09 5.268352856e-09 5.080096089e-09 4.558078918e-09 4.515411531e-09 4.911988706e-09 4.205969651e-09 6.287562784e-09 5.70845995e-09 6.221581835e-09 4.993875576e-09 6.096002542e-09 4.666967779e-09 5.474607241e-09 4.352660368e-09 5.264933276e-09 3.502764582e-09 3.910954026e-09 4.429001152e-09 4.885766359e-09 5.025632591e-09 4.378496895e-09 4.238322586e-09 3.165224191e-09 3.796199668e-09 4.053257992e-09 2.916358119e-09 2.447926577e-09 3.465399257e-09 3.540296187e-09 3.341413653e-09 3.38014732e-09 3.324583836e-09 2.964129287e-09 2.576764561e-09 3.008120587e-09 2.522552546e-09 3.216189299e-09 3.515081772e-09 3.553409118e-09 3.480808346e-09 2.666176892e-09 3.414180867e-09 2.86983761e-09 3.720538661e-09 3.40602847e-09 3.023663751e-09 3.616912008e-09 3.297251981e-09 2.772188761e-09 3.896951573e-09 4.643321252e-09 3.537611556e-09 3.338695176e-09 3.523907979e-09 4.992886073e-09 4.369259847e-09 4.702678864e-09 4.280179599e-09 5.527549688e-09 4.060254976e-09 5.913513102e-09 4.671727605e-09 6.225788184e-09 5.128150834e-09 4.730383237e-09 5.088403608e-09 6.133599418e-09 4.518902119e-09 4.436640627e-09 5.135992692e-09 5.218853728e-09 5.370909128e-09 5.760360605e-09 5.639290771e-09 3.337549994e-09 3.436874666e-09 3.807827552e-09 3.613901245e-09 3.254727305e-09 3.118643557e-09 3.125013656e-09 3.241884358e-09 3.237947542e-09 3.154948676e-09 3.024023732e-09 2.813701899e-09 2.728642543e-09 2.598506193e-09 2.736517666e-09 2.454783236e-09 2.522374737e-09 2.414588432e-09 2.480195991e-09 2.539242822e-09 2.304988912e-09 2.433783374e-09 2.049041195e-09 1.878056781e-09 1.932207649e-09 1.54945579e-09 1.935064171e-09 1.772432217e-09 1.366594353e-09 1.436967912e-09 1.484592137e-09 1.126542762e-09 1.174359387e-09 7.51912852e-10 5.56430183e-10 3.303825879e-10 2.132467869e-10 1.045516799e-10 5.21040664e-12 1.37374754e-11 1.073839099e-12 2.916412471e-12 1.391216237e-13 1.028636499e-14 3.251942926e-15 1.027357687e-16 8.696687054e-17 2.392006481e-18 3.114799963e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 8.021393894e-19 1.442559552e-18 2.478626206e-18 5.801854603e-18 2.937608612e-16 7.0335956e-16 5.163445945e-15 1.232119504e-12 9.298812851e-13 5.203266338e-12 4.012445971e-11 1.978725662e-10 2.571959049e-10 1.642658451e-10 2.417299877e-10 3.295880008e-10 7.954744974e-10 1.084177879e-09 1.144667423e-09 1.360067962e-09 1.218905144e-09 1.660549231e-09 1.767673011e-09 1.93947936e-09 1.775869114e-09 1.939801446e-09 1.993657863e-09 2.266604908e-09 2.139523491e-09 2.29952204e-09 2.039004089e-09 2.381510186e-09 2.504375472e-09 2.820064778e-09 2.711741909e-09 2.833200656e-09 2.85052657e-09 2.816333522e-09 3.034657505e-09 2.801394051e-09 3.169438092e-09 2.975188129e-09 3.162850725e-09 3.397150318e-09 3.231268928e-09 3.968102764e-09 3.263073056e-09 3.813806212e-09 4.564407428e-09 3.648955181e-09 5.18296305e-09 5.766410815e-09 4.149949704e-09 4.40671722e-09 4.028604906e-09 4.432567446e-09 4.919460567e-09 5.029595977e-09 4.427864798e-09 5.542010968e-09 4.245218404e-09 5.87081188e-09 6.439869999e-09 4.762978017e-09 5.843392633e-09 5.045269232e-09 4.549039295e-09 5.162045801e-09 4.190362779e-09 4.04427008e-09 4.236586015e-09 4.388807783e-09 3.521164856e-09 3.804387374e-09 3.197736873e-09 3.788738948e-09 3.168352589e-09 3.358596682e-09 3.681507784e-09 3.113614592e-09 3.157962979e-09 2.204593921e-09 3.444147347e-09 2.590432298e-09 2.863144012e-09 3.641877034e-09 2.507971564e-09 2.964623577e-09 3.586577164e-09 2.760191858e-09 3.256009029e-09 3.558468968e-09 2.821354331e-09 3.385343664e-09 3.533749622e-09 3.328810287e-09 2.907625455e-09 2.799223572e-09 3.371910435e-09 3.255390942e-09 3.373962019e-09 4.357066271e-09 4.270795089e-09 4.902997414e-09 3.406057235e-09 5.204923014e-09 4.102924644e-09 5.286751547e-09 4.855859915e-09 5.618836645e-09 4.890142095e-09 5.703907785e-09 5.661607769e-09 4.387449488e-09 4.065011901e-09 5.283673963e-09 7.174962325e-09 7.068771908e-09 4.849450369e-09 4.686905983e-09 6.027882401e-09 4.677394166e-09 5.710426675e-09 4.938282388e-09 5.824890133e-09 4.062279643e-09 3.946130388e-09 4.404531153e-09 3.922328342e-09 3.248443438e-09 3.129079352e-09 2.993672401e-09 3.239903607e-09 3.308963174e-09 2.90373877e-09 2.838113283e-09 2.923414607e-09 2.791940731e-09 2.550701116e-09 2.529571714e-09 2.533129239e-09 2.50094356e-09 2.4706815e-09 2.427234374e-09 2.190856271e-09 2.208791575e-09 1.730781948e-09 1.981397685e-09 2.110478818e-09 1.780308511e-09 1.775683495e-09 1.727534734e-09 1.667440281e-09 1.1625793e-09 1.233893991e-09 1.18002498e-09 1.049227487e-09 7.610956343e-10 3.470185561e-10 1.94068977e-10 3.398279205e-10 1.30459039e-10 7.121452684e-11 1.849799969e-11 2.06960538e-11 2.632012491e-14 2.490597269e-13 8.024344711e-14 7.917664268e-15 4.131897882e-15 1.696000432e-16 2.618479775e-18 0 9.514040691e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.203734312e-18 3.793056554e-19 1.901017711e-17 2.65904439e-17 4.714894318e-15 1.793684447e-14 1.695062589e-12 1.545491335e-12 5.591089851e-12 3.309914442e-11 3.177322967e-10 3.091250789e-10 3.022368973e-10 2.645971519e-10 2.217845879e-10 4.937267947e-10 8.089441658e-10 1.326505506e-09 1.447159275e-09 1.662378615e-09 1.67891081e-09 1.646073281e-09 1.361644365e-09 1.983727159e-09 1.78617423e-09 1.994097014e-09 2.055292817e-09 2.249048491e-09 2.304253621e-09 2.358111622e-09 2.611083436e-09 2.429135255e-09 2.6707006e-09 2.494257683e-09 2.71885411e-09 3.047056085e-09 2.721439231e-09 3.053646417e-09 3.0055774e-09 2.780801118e-09 3.039856084e-09 3.377004064e-09 3.337751594e-09 3.299495796e-09 3.591919655e-09 3.503063054e-09 4.690572383e-09 4.092055951e-09 3.881294633e-09 4.262191091e-09 4.16306393e-09 5.012675996e-09 4.303967178e-09 4.565494672e-09 4.94858311e-09 4.623521227e-09 3.45377993e-09 4.307135423e-09 5.646147505e-09 5.144295413e-09 3.985991699e-09 4.566763575e-09 5.849663627e-09 4.393809388e-09 5.630576339e-09 4.356101675e-09 4.957885131e-09 4.86188529e-09 4.136913041e-09 4.780413536e-09 4.126925338e-09 3.765133194e-09 4.035609723e-09 3.702201914e-09 3.511734214e-09 3.178119825e-09 3.83336985e-09 3.638875781e-09 2.921462577e-09 3.207999502e-09 2.805163672e-09 3.417631601e-09 3.570535423e-09 3.120369014e-09 3.004940917e-09 3.049395397e-09 2.951570031e-09 3.686194421e-09 3.027994958e-09 3.161133276e-09 3.067483713e-09 2.721010838e-09 2.845658499e-09 3.479778254e-09 3.454774834e-09 3.796153946e-09 3.080781271e-09 4.456295395e-09 4.046496797e-09 3.942881679e-09 3.612913652e-09 4.277370211e-09 4.145963434e-09 3.917766713e-09 4.908821205e-09 4.080862966e-09 4.76655998e-09 5.54272635e-09 4.918659869e-09 4.7524935e-09 4.592894678e-09 4.038895817e-09 4.446462072e-09 5.093160322e-09 6.01262091e-09 4.709098904e-09 4.736866244e-09 3.87321958e-09 4.663399414e-09 4.842063528e-09 4.435661204e-09 4.199820155e-09 4.125662719e-09 4.959015369e-09 3.680038286e-09 4.063000287e-09 3.713044636e-09 3.325394076e-09 3.230930559e-09 3.289935611e-09 3.067276931e-09 3.010331588e-09 2.966724111e-09 2.902029412e-09 2.787760611e-09 2.890653759e-09 2.617840252e-09 2.770622691e-09 2.852575592e-09 2.408769244e-09 2.439871167e-09 2.309479348e-09 2.053592764e-09 2.147119577e-09 2.193008046e-09 2.162762105e-09 2.306623547e-09 1.907226487e-09 1.719852472e-09 1.641213335e-09 1.56780514e-09 1.309150833e-09 1.398615486e-09 1.239148915e-09 1.190095555e-09 7.297265203e-10 6.264174244e-10 5.388652395e-10 2.476757141e-10 3.768594454e-10 6.930415761e-11 2.137055171e-10 8.739721019e-12 7.730165964e-12 1.404978426e-13 1.165545875e-13 7.002227024e-15 3.85598049e-16 3.921643221e-16 1.541974573e-16 1.985039891e-17 5.779109181e-19 2.943883649e-21 0 0 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.249484928e-19 2.012712581e-17 6.463901966e-17 2.186263302e-17 2.570722379e-16 7.096803241e-16 1.138895102e-13 6.056723979e-13 1.068663018e-12 1.01904544e-11 1.160368981e-10 2.271630516e-10 2.107775677e-10 2.015540856e-10 3.114691328e-10 2.833599703e-10 8.333962224e-10 9.275592938e-10 9.723727799e-10 1.330691284e-09 1.542605408e-09 1.35714922e-09 1.603385247e-09 1.610434994e-09 2.134211708e-09 2.249802574e-09 2.09156825e-09 1.772396618e-09 2.274374741e-09 2.308147184e-09 2.591645796e-09 2.513501689e-09 2.545654595e-09 2.700876823e-09 2.582292509e-09 2.514671598e-09 2.811852192e-09 2.77059636e-09 2.988162219e-09 3.093221386e-09 3.10614533e-09 3.168966866e-09 3.12976041e-09 3.332088563e-09 3.185543583e-09 3.448751193e-09 3.105754438e-09 4.114066562e-09 3.636648818e-09 3.713620009e-09 5.120840384e-09 5.680603932e-09 5.284319731e-09 4.578900217e-09 5.052318092e-09 5.634284419e-09 3.9985261e-09 5.273080518e-09 5.453505957e-09 6.243156848e-09 4.25814473e-09 4.111105933e-09 5.250308767e-09 3.846361909e-09 4.607194754e-09 4.08124034e-09 5.162962302e-09 5.16432877e-09 3.802690748e-09 4.785242507e-09 4.628633248e-09 4.189644477e-09 4.018456129e-09 3.958420725e-09 3.263059222e-09 3.125914243e-09 3.469441035e-09 3.577504627e-09 3.147857796e-09 2.326601598e-09 3.391935157e-09 3.366863972e-09 3.159374269e-09 3.240068064e-09 3.217605815e-09 2.977569121e-09 3.202207063e-09 3.465039506e-09 2.715004541e-09 3.366067503e-09 3.301259883e-09 2.940979857e-09 3.066694733e-09 2.884958297e-09 3.200546924e-09 3.393481753e-09 3.518676013e-09 3.120111899e-09 3.523089511e-09 4.001931842e-09 3.687559201e-09 3.301197298e-09 3.718690667e-09 3.753465504e-09 5.080939565e-09 4.525229523e-09 4.877286859e-09 5.219045682e-09 4.345747177e-09 4.587368786e-09 6.000419162e-09 6.333518389e-09 4.287100983e-09 5.355812784e-09 4.800302202e-09 4.521648116e-09 5.103046972e-09 5.852556096e-09 5.094548973e-09 4.957996348e-09 4.857943549e-09 4.245964622e-09 4.506897956e-09 3.46496392e-09 3.660332255e-09 4.822709823e-09 3.596100159e-09 3.442519215e-09 3.144511198e-09 3.192558128e-09 3.273164316e-09 2.891663127e-09 3.155586459e-09 3.063669427e-09 2.967057646e-09 3.059745532e-09 3.078711023e-09 2.7254423e-09 2.527423008e-09 2.565551395e-09 2.648605972e-09 2.381898576e-09 2.538305132e-09 2.260407413e-09 2.299556761e-09 2.168180774e-09 2.400658953e-09 1.861873884e-09 2.016301999e-09 1.9599014e-09 1.812428042e-09 1.601837567e-09 1.426254209e-09 1.380668321e-09 1.246282588e-09 1.228933401e-09 1.179116216e-09 6.24328978e-10 2.826134911e-10 4.158698634e-10 2.290588715e-10 1.813351848e-10 1.341316436e-10 4.102348819e-12 1.095610491e-11 1.044243289e-12 3.802901942e-15 1.403250245e-14 1.063449289e-15 2.538427326e-16 7.684035575e-17 1.75962153e-17 4.240417106e-19 5.086684156e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.736813588e-18 1.05331569e-17 1.725601334e-17 4.012459411e-16 8.768267738e-15 3.520916166e-14 3.696576538e-13 9.693969889e-13 1.934105929e-12 3.068651616e-11 1.088965862e-10 2.612132544e-10 2.527367778e-10 1.574407455e-10 6.585806047e-10 8.064370697e-10 1.049672921e-09 1.132479268e-09 1.233611802e-09 1.451425419e-09 1.440912393e-09 1.561230263e-09 1.653239898e-09 2.141577588e-09 1.919170052e-09 2.101118242e-09 1.892312445e-09 2.047995563e-09 2.183203867e-09 2.443020218e-09 2.612112135e-09 2.626511424e-09 2.782370129e-09 2.782604135e-09 2.487218086e-09 2.861570795e-09 2.714286397e-09 3.164764153e-09 2.964166813e-09 2.962370993e-09 3.10939571e-09 3.282186774e-09 3.361989521e-09 3.572048722e-09 3.118227487e-09 4.016543045e-09 3.992728252e-09 4.129410425e-09 4.53373761e-09 4.905520824e-09 4.626603393e-09 3.656721629e-09 5.272663884e-09 4.946177334e-09 4.473789158e-09 5.259807216e-09 4.573973085e-09 5.821122878e-09 5.578479702e-09 5.100843828e-09 5.434129472e-09 5.216832715e-09 6.372994805e-09 4.192607884e-09 4.892869558e-09 4.6947003e-09 5.459476812e-09 5.229837139e-09 4.953357667e-09 3.864611176e-09 3.785152719e-09 3.765414492e-09 3.63663388e-09 4.13270494e-09 3.52322115e-09 3.435627224e-09 3.812213809e-09 4.0090352e-09 3.321247923e-09 2.978895451e-09 3.317172086e-09 2.85628584e-09 3.163194611e-09 3.063287534e-09 3.906121502e-09 2.865027746e-09 3.601977898e-09 2.841399932e-09 3.026849138e-09 2.993264169e-09 3.154154177e-09 3.075543752e-09 4.050951506e-09 3.346744752e-09 3.049236277e-09 3.07576635e-09 3.040747909e-09 3.578063387e-09 3.715847736e-09 3.57329045e-09 3.873211885e-09 3.678294936e-09 3.798122353e-09 3.671488412e-09 5.062094428e-09 5.173089149e-09 4.919803483e-09 4.960601673e-09 5.26628761e-09 5.004566445e-09 5.360465981e-09 4.965870027e-09 5.442992076e-09 5.354072439e-09 4.776678505e-09 6.144624041e-09 5.631202177e-09 5.270716636e-09 4.695226918e-09 5.078892031e-09 5.139619776e-09 4.461698324e-09 4.647393436e-09 4.103213596e-09 4.91488523e-09 4.325004076e-09 3.495789207e-09 4.005979367e-09 3.161206361e-09 3.394632656e-09 3.075017358e-09 3.064065691e-09 2.947233322e-09 2.863889448e-09 2.902277924e-09 3.074502684e-09 2.854153222e-09 2.654949074e-09 2.552643923e-09 2.466886582e-09 2.38073385e-09 2.400102797e-09 2.366881107e-09 2.337457112e-09 1.876133045e-09 2.087314053e-09 2.013967668e-09 2.084768279e-09 1.894844642e-09 1.766450708e-09 1.624684803e-09 1.563271264e-09 1.447119719e-09 1.031084571e-09 1.07597192e-09 7.491145959e-10 8.090842422e-10 5.531826154e-10 1.666325442e-10 3.265708434e-10 2.749524381e-10 1.597178081e-10 4.801563681e-11 1.918776592e-11 5.006944881e-13 4.313784784e-14 6.436007084e-15 6.493101001e-15 1.689394865e-17 1.666931643e-16 5.857948178e-19 3.954087651e-18 3.787007971e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.533993021e-19 1.597155241e-17 5.470762621e-16 2.828930219e-16 3.103157516e-15 1.247342154e-14 1.737030239e-14 3.276534957e-13 3.074924308e-11 1.374094377e-10 5.444122919e-11 1.996163552e-10 6.050315768e-11 1.690036875e-10 5.330163445e-10 6.891360623e-10 9.151596009e-10 1.232294851e-09 1.178384829e-09 1.427294245e-09 1.706797481e-09 1.586848891e-09 1.549009324e-09 2.038934285e-09 1.796607576e-09 2.040275942e-09 1.931585903e-09 2.092295484e-09 2.269661544e-09 2.337959336e-09 2.419009829e-09 2.358125496e-09 2.615856312e-09 2.884959736e-09 2.643632267e-09 2.868080541e-09 2.647878122e-09 2.987932767e-09 2.813156773e-09 2.860819145e-09 3.117565464e-09 2.999531957e-09 3.145941565e-09 3.174551483e-09 3.777580548e-09 3.45770208e-09 3.969660089e-09 4.051081202e-09 4.418113403e-09 4.250138088e-09 4.352396817e-09 3.073946118e-09 4.511511577e-09 4.126185492e-09 5.948384893e-09 3.938946997e-09 4.429802584e-09 4.859295557e-09 4.37393228e-09 4.552790823e-09 5.866138523e-09 5.882744402e-09 5.312324723e-09 4.878305311e-09 4.884167718e-09 5.689335774e-09 5.184213279e-09 4.117053225e-09 3.704686253e-09 3.793939071e-09 4.257303094e-09 4.101404097e-09 4.079213659e-09 3.954983681e-09 3.361977972e-09 2.552090227e-09 3.15822647e-09 3.349904477e-09 3.294246165e-09 3.005229258e-09 2.729294651e-09 3.848436199e-09 3.470542497e-09 3.435301669e-09 3.131289458e-09 3.056973303e-09 3.166798056e-09 2.599374696e-09 2.677756607e-09 2.781852864e-09 3.517263493e-09 3.011682439e-09 2.872186705e-09 3.287023963e-09 3.257578519e-09 3.255344432e-09 3.249549227e-09 4.34739496e-09 3.854032242e-09 3.822846974e-09 3.249337202e-09 4.251803167e-09 5.768950774e-09 3.135605532e-09 4.02178407e-09 3.438337504e-09 4.674921743e-09 3.969005786e-09 5.561584212e-09 4.612574451e-09 5.296002437e-09 5.743044229e-09 5.621291996e-09 4.702033496e-09 5.134316545e-09 5.422400736e-09 4.637456599e-09 4.615986293e-09 3.812510085e-09 3.651549214e-09 4.826291854e-09 4.714970222e-09 4.363147469e-09 3.891558484e-09 4.276055409e-09 4.215126579e-09 3.38638769e-09 3.425541368e-09 3.067940436e-09 3.086538608e-09 3.130178315e-09 3.223955771e-09 3.13489602e-09 2.990354704e-09 2.696000401e-09 2.811346937e-09 2.810660345e-09 2.810573455e-09 2.802568285e-09 2.481504476e-09 2.60377236e-09 2.340302679e-09 2.497637234e-09 2.559439989e-09 2.108975553e-09 2.063309853e-09 1.938974076e-09 1.935866964e-09 1.756589102e-09 1.607875436e-09 1.65985961e-09 1.555904185e-09 1.470588967e-09 1.539319125e-09 1.260211851e-09 8.17370435e-10 7.575864812e-10 4.755287525e-10 5.13299333e-10 1.197465032e-10 9.870820637e-11 1.576659747e-10 2.457668175e-11 9.013608535e-12 3.984898733e-13 1.450043079e-13 1.341492754e-14 9.398011256e-15 5.393592456e-17 8.138915375e-18 9.719819992e-18 3.713122787e-34 0 0 0 0 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.118457764e-19 4.017101736e-19 1.397776977e-16 2.018629505e-17 1.2122622e-15 1.749698855e-13 4.145200809e-13 1.935667845e-13 9.938320762e-12 2.210086511e-11 2.284406911e-10 1.234240098e-10 3.455868908e-10 2.71344432e-10 8.452024696e-11 7.567936036e-10 1.062044583e-09 1.221200356e-09 1.421495531e-09 1.308705243e-09 1.484393723e-09 1.509793134e-09 1.664419953e-09 1.818283004e-09 1.997560942e-09 1.926122956e-09 1.984182813e-09 2.322645309e-09 2.186215304e-09 2.182497017e-09 2.56073693e-09 2.517727719e-09 2.476477843e-09 2.629917498e-09 2.711159731e-09 2.590990484e-09 2.591533723e-09 2.963036551e-09 2.872988546e-09 2.999143729e-09 3.101606802e-09 3.076400462e-09 3.312668378e-09 3.24337609e-09 3.233396587e-09 4.151940266e-09 4.315736482e-09 3.967737043e-09 4.017388575e-09 4.723860217e-09 4.973695566e-09 5.429079107e-09 5.135868678e-09 5.372956589e-09 4.093229332e-09 4.744737323e-09 4.590047064e-09 5.643970471e-09 4.638462146e-09 5.523019244e-09 3.599493245e-09 4.977348643e-09 5.748544477e-09 4.654334072e-09 5.575336637e-09 4.416713533e-09 5.688907952e-09 5.533023936e-09 5.082605641e-09 4.476819585e-09 3.79772352e-09 3.181981387e-09 3.32414296e-09 4.556304948e-09 4.301030038e-09 3.392221112e-09 4.549310486e-09 3.083503995e-09 3.732940433e-09 2.796815414e-09 3.190578702e-09 3.346093792e-09 3.312445374e-09 2.813413804e-09 2.54683637e-09 3.22246742e-09 3.281830543e-09 2.343991574e-09 3.100816442e-09 2.50092497e-09 2.847675282e-09 2.545193195e-09 3.091280585e-09 2.914130438e-09 2.917339003e-09 2.846558442e-09 3.277608804e-09 2.762103325e-09 4.063969046e-09 3.952998416e-09 3.331473938e-09 3.629248548e-09 3.665554381e-09 3.479717999e-09 4.977398598e-09 3.620178901e-09 3.621707747e-09 5.297733966e-09 5.178789529e-09 5.432396525e-09 6.482746732e-09 4.720816178e-09 4.671845555e-09 5.479262883e-09 4.913419921e-09 4.998705219e-09 4.493799814e-09 4.949920363e-09 5.740164831e-09 4.998972137e-09 5.221620349e-09 6.752808433e-09 4.588431045e-09 4.000292284e-09 4.012903918e-09 3.815961338e-09 3.231714153e-09 3.467029597e-09 3.278978334e-09 3.396216431e-09 3.133165288e-09 3.153071803e-09 3.008192399e-09 3.008040553e-09 2.855256228e-09 2.750735151e-09 2.912686051e-09 2.777506556e-09 2.591015438e-09 2.602455364e-09 2.585283449e-09 2.577600382e-09 2.260445714e-09 2.357016863e-09 2.406474634e-09 2.124634187e-09 1.937208434e-09 1.987382771e-09 1.968805797e-09 1.920253013e-09 1.513711193e-09 1.399023589e-09 1.220493829e-09 1.201870375e-09 9.259922304e-10 9.461858009e-10 6.518131915e-10 4.054572433e-10 1.444595494e-10 3.69454224e-10 2.459052943e-10 8.993318766e-11 4.441662026e-11 9.038176609e-12 5.913349613e-12 1.083687512e-14 8.259199164e-15 2.80134888e-15 1.54975668e-16 4.542405702e-16 3.355728369e-18 4.618565894e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.003112746e-18 9.804548579e-19 5.249776988e-18 2.21146221e-16 1.239513185e-15 9.466327504e-14 9.376753961e-14 6.579694471e-13 8.328822252e-12 4.287582697e-12 4.551277031e-11 3.428379834e-10 1.922442524e-10 3.283886746e-10 5.33862877e-10 8.871414672e-10 9.533964967e-10 1.252693293e-09 1.246713129e-09 1.20897937e-09 1.627305018e-09 1.81803995e-09 1.711063407e-09 1.874635548e-09 2.046980528e-09 2.015412878e-09 1.974150049e-09 2.287702677e-09 2.294762657e-09 2.15662744e-09 2.425332045e-09 2.721177099e-09 2.76795214e-09 2.660468654e-09 2.786059212e-09 2.953597617e-09 2.846021059e-09 3.063878706e-09 2.831621478e-09 2.75260021e-09 3.223281333e-09 3.324407526e-09 3.1525898e-09 3.342081843e-09 3.126417451e-09 3.512852615e-09 4.549404561e-09 3.456134309e-09 5.569602524e-09 4.758943701e-09 5.170326298e-09 5.641942197e-09 4.438661524e-09 5.124741916e-09 5.12970856e-09 5.281579211e-09 5.641193798e-09 4.484322448e-09 5.958533445e-09 6.047902533e-09 4.746043193e-09 4.869713398e-09 6.386548039e-09 4.4083636e-09 5.149052044e-09 4.925934155e-09 4.763067604e-09 4.867691609e-09 4.525076315e-09 4.353662149e-09 3.883122325e-09 3.452448591e-09 3.733258731e-09 3.582475089e-09 3.442301804e-09 2.950947074e-09 3.29302051e-09 3.853544897e-09 3.206388416e-09 2.985411888e-09 3.660233665e-09 3.036889017e-09 3.100302531e-09 3.211097372e-09 3.15020755e-09 3.019095243e-09 3.361616401e-09 3.216727386e-09 2.779309424e-09 3.202015805e-09 3.024441304e-09 3.765502314e-09 2.863899055e-09 3.146389923e-09 2.935712471e-09 3.029189432e-09 3.210081614e-09 3.097196061e-09 4.122916603e-09 2.851164357e-09 3.469678501e-09 3.748535409e-09 4.25325187e-09 3.961606965e-09 4.993933444e-09 5.128913422e-09 4.360805993e-09 4.439533617e-09 4.77892118e-09 3.938965657e-09 4.600515568e-09 4.189567002e-09 6.83923578e-09 5.490920842e-09 5.118287035e-09 5.800760346e-09 3.855816787e-09 4.927985457e-09 4.250640182e-09 5.209386108e-09 5.167041723e-09 5.157213129e-09 3.506471757e-09 4.132639335e-09 3.435295429e-09 3.26483567e-09 4.14165155e-09 3.23739042e-09 3.155043173e-09 3.188794433e-09 2.771472017e-09 3.138334582e-09 3.080616015e-09 2.940141605e-09 2.866316852e-09 2.674873647e-09 2.793593351e-09 2.81407453e-09 2.642613339e-09 2.853565837e-09 2.271241481e-09 2.447981563e-09 2.599912855e-09 2.331327819e-09 2.370044207e-09 2.43867859e-09 2.161467477e-09 1.961731519e-09 1.818789758e-09 1.780910232e-09 1.571778313e-09 1.11450532e-09 1.265422169e-09 1.195930045e-09 1.142316348e-09 9.370963906e-10 7.215125208e-10 2.981626117e-10 3.164026984e-10 3.298359188e-10 2.486380987e-10 1.178406756e-10 4.244299137e-11 1.583466233e-12 1.33891087e-13 4.119111991e-13 1.465982653e-13 7.077432859e-15 8.328795282e-17 2.940039054e-17 1.125327466e-17 4.77494857e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.558885298e-18 3.166097679e-17 9.508180707e-16 1.863559235e-14 6.368074986e-14 2.079977971e-14 1.812199265e-12 8.160026494e-13 1.548472428e-11 1.616961927e-10 2.851934897e-10 3.209885031e-10 2.306152184e-10 3.789921735e-10 9.098351124e-10 1.087316179e-09 9.183953068e-10 1.124961019e-09 1.203792267e-09 1.559929592e-09 1.70680424e-09 1.889237685e-09 1.821394661e-09 1.878819698e-09 1.920449138e-09 1.98456125e-09 2.243727296e-09 2.442849909e-09 2.473423754e-09 2.4152441e-09 2.488973701e-09 2.666777141e-09 2.660437487e-09 2.594301926e-09 3.013902157e-09 2.853907593e-09 2.837023487e-09 3.22777321e-09 3.159629836e-09 3.070260653e-09 2.973393996e-09 3.27090055e-09 3.471774551e-09 3.596825391e-09 3.081763789e-09 3.237066999e-09 3.827944439e-09 5.031526816e-09 4.292248721e-09 5.59431552e-09 5.017555999e-09 4.589749071e-09 4.829344032e-09 5.616988405e-09 4.890080204e-09 4.240559491e-09 4.279167883e-09 4.274471371e-09 5.404185287e-09 4.453370527e-09 4.901101573e-09 5.117494282e-09 4.216952274e-09 5.004471304e-09 5.169489692e-09 4.508728065e-09 4.242652941e-09 4.13879443e-09 4.317620639e-09 3.3753259e-09 4.230589265e-09 3.436044795e-09 3.350071494e-09 3.311003104e-09 2.846425972e-09 3.370922168e-09 3.216111405e-09 2.899239701e-09 3.012602505e-09 3.052353812e-09 2.986918233e-09 3.196517304e-09 3.451019993e-09 3.232688321e-09 3.18979596e-09 2.460282618e-09 2.978268651e-09 3.267655226e-09 2.911458362e-09 3.118764388e-09 3.390535192e-09 2.906023753e-09 3.107555728e-09 3.374604091e-09 4.125935998e-09 2.412095318e-09 3.163425235e-09 3.997387382e-09 3.983828404e-09 3.362382963e-09 4.356354488e-09 4.269760752e-09 4.797389942e-09 5.114458536e-09 5.291204872e-09 4.790069971e-09 4.493123616e-09 5.512772373e-09 5.17906974e-09 4.175387657e-09 4.574689998e-09 5.764147132e-09 5.355841725e-09 4.580765986e-09 5.17120325e-09 5.01606485e-09 3.489433773e-09 4.395803745e-09 4.458135009e-09 5.142397279e-09 4.701616146e-09 4.100369505e-09 3.792622491e-09 3.883986218e-09 4.778128213e-09 4.498579567e-09 3.313339778e-09 3.410254172e-09 3.279675382e-09 3.301823386e-09 2.947902567e-09 3.273763323e-09 2.917446648e-09 2.846789188e-09 2.919298391e-09 2.985452861e-09 2.529536262e-09 2.644483554e-09 2.65173354e-09 2.637554264e-09 2.413551911e-09 2.257237101e-09 2.210395821e-09 1.904004027e-09 2.260158236e-09 2.350921363e-09 1.906839041e-09 1.92250159e-09 1.558555951e-09 1.657250464e-09 1.469381476e-09 1.282177689e-09 1.076049762e-09 1.336707409e-09 8.74822478e-10 9.104734871e-10 5.385095506e-10 2.689598988e-10 3.638698595e-10 1.086916093e-10 1.405503464e-10 5.157942582e-11 4.942335134e-12 3.133805323e-12 8.189694345e-14 6.584780836e-14 1.328664479e-14 1.808014589e-15 1.818695117e-17 2.62853604e-18 5.004504424e-18 0 0 0 0 0 0 0 0 0 3.189110819e-26 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 6.223342043e-19 9.87665529e-31 2.786081341e-17 2.172451625e-16 6.707337256e-17 4.670240749e-15 7.072645018e-15 2.859460004e-14 2.052036962e-13 5.370015836e-11 5.41802828e-11 1.186277032e-10 3.081671241e-10 2.721465606e-10 2.63652162e-10 4.085814902e-10 6.138904768e-10 1.1099426e-09 1.221026414e-09 1.19534404e-09 1.36602268e-09 1.283540828e-09 1.599881401e-09 1.514827115e-09 1.920677094e-09 2.1444586e-09 2.094286739e-09 1.991356422e-09 2.33263485e-09 2.11550715e-09 2.532030185e-09 2.246898378e-09 2.218936826e-09 2.460562545e-09 2.675744152e-09 2.770941785e-09 2.948921227e-09 2.619614243e-09 2.811700587e-09 3.090590872e-09 3.031977106e-09 3.124640803e-09 3.45062754e-09 3.02167487e-09 3.744513502e-09 3.337357685e-09 3.425466902e-09 3.939892705e-09 4.629250935e-09 4.876886092e-09 4.278788059e-09 4.849591624e-09 4.690597993e-09 5.412452089e-09 5.774239369e-09 5.607384675e-09 4.942065129e-09 4.990337305e-09 5.444205115e-09 6.491542231e-09 4.481187601e-09 5.070329612e-09 4.350727631e-09 5.179135538e-09 3.767755041e-09 5.251911688e-09 4.300767141e-09 3.783603425e-09 3.823113005e-09 4.701621901e-09 4.819035406e-09 3.291294438e-09 3.095948416e-09 4.046470892e-09 3.391003985e-09 4.141906345e-09 2.960256633e-09 3.525494621e-09 3.080998822e-09 2.967037686e-09 2.852162027e-09 3.722427958e-09 2.867062953e-09 2.8300397e-09 3.312855635e-09 2.706876422e-09 3.020037098e-09 3.345427098e-09 3.218991536e-09 3.355651946e-09 3.267734552e-09 3.308093887e-09 3.534153793e-09 3.24168193e-09 3.590976631e-09 2.883721854e-09 3.344931619e-09 3.721392885e-09 3.322411719e-09 3.711103884e-09 4.042052981e-09 3.146851676e-09 3.877270883e-09 3.328832356e-09 3.624432936e-09 4.834405376e-09 6.107427926e-09 4.657471276e-09 5.3355869e-09 5.033823067e-09 4.845547667e-09 5.814329807e-09 3.854911482e-09 5.679972709e-09 4.290469635e-09 4.426078591e-09 4.88949006e-09 5.452651693e-09 3.618512385e-09 3.573588633e-09 4.864322836e-09 4.698588634e-09 3.769466971e-09 4.393447187e-09 5.742693258e-09 4.020660814e-09 4.008626546e-09 3.246282786e-09 2.999139385e-09 3.095366955e-09 3.114816432e-09 3.106466812e-09 3.000667743e-09 3.014481485e-09 3.03991819e-09 3.049455985e-09 2.788981101e-09 2.921707632e-09 2.571019398e-09 2.607956193e-09 2.338401305e-09 2.422343855e-09 2.287080607e-09 2.539104758e-09 2.312842706e-09 2.277020141e-09 2.111610632e-09 2.087966821e-09 2.037150916e-09 1.837462628e-09 1.631441017e-09 1.237880539e-09 1.466697296e-09 1.553230618e-09 1.461299084e-09 1.156611312e-09 1.08195748e-09 7.00911089e-10 3.322141846e-10 4.048826893e-10 2.8477796e-10 2.635859789e-10 2.453233317e-10 2.760842979e-11 2.213929496e-11 1.155973066e-12 1.602653262e-13 4.151197458e-15 1.195959973e-14 3.25483177e-15 2.195832579e-17 3.612162572e-17 5.155050681e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.005115391e-18 6.958539457e-19 8.722685145e-18 8.544020042e-17 2.849940882e-17 3.220793691e-14 7.515019828e-15 4.52331703e-13 6.05992955e-12 3.497730085e-11 1.172312851e-10 2.934009392e-10 3.955773199e-10 2.463952442e-10 4.278063375e-10 5.36021877e-10 1.269729817e-09 1.051385918e-09 1.380966476e-09 1.610934665e-09 1.450289691e-09 1.824612429e-09 1.765939747e-09 1.54026568e-09 1.7715256e-09 2.205735353e-09 2.103387818e-09 2.211245562e-09 2.093827512e-09 2.433773806e-09 2.457596921e-09 2.647737885e-09 2.376205743e-09 2.749695597e-09 2.472399609e-09 2.812569078e-09 2.854043528e-09 3.077954049e-09 2.935343521e-09 3.01754829e-09 2.920752594e-09 3.136762787e-09 3.159718977e-09 3.173567307e-09 3.422605231e-09 3.725869895e-09 3.989572881e-09 4.182841309e-09 4.162762989e-09 4.316448442e-09 4.972509472e-09 5.026512121e-09 4.670571523e-09 4.755626138e-09 4.531218001e-09 4.478745371e-09 5.571194407e-09 5.970956376e-09 5.044535498e-09 4.778645175e-09 6.112936987e-09 6.324739875e-09 3.927845976e-09 4.880278725e-09 4.540234469e-09 4.170651905e-09 4.010694218e-09 5.168645864e-09 4.51000051e-09 4.621881104e-09 4.056708214e-09 3.253341594e-09 3.969822712e-09 3.852889158e-09 3.409178018e-09 3.586297825e-09 3.052559851e-09 2.647287445e-09 2.990011977e-09 3.633928025e-09 3.147327546e-09 3.18921525e-09 3.417183328e-09 3.223680187e-09 2.494821926e-09 3.290816365e-09 2.65974201e-09 3.142196852e-09 3.257058618e-09 2.771608386e-09 3.096844177e-09 3.222118945e-09 3.333038812e-09 3.104684806e-09 2.651142197e-09 3.796308748e-09 2.941031556e-09 3.932374496e-09 3.470064163e-09 3.979531994e-09 2.870851986e-09 3.717601432e-09 4.169700543e-09 5.286162619e-09 5.38826395e-09 3.914723645e-09 4.48890421e-09 5.320369386e-09 6.217006738e-09 3.643785e-09 5.21208308e-09 5.918508971e-09 4.232372568e-09 4.205076867e-09 4.377842249e-09 6.307045884e-09 3.440085412e-09 5.004306575e-09 6.383010567e-09 5.964724058e-09 4.574872395e-09 4.605276712e-09 4.310749954e-09 3.551830244e-09 3.838361439e-09 3.499187775e-09 3.499214462e-09 3.30303823e-09 3.166207883e-09 3.255539695e-09 3.200819903e-09 3.34238798e-09 2.995958399e-09 2.794511269e-09 2.82886427e-09 2.536125507e-09 2.896186386e-09 2.4600873e-09 2.896150267e-09 2.421815779e-09 2.305352049e-09 2.368817936e-09 2.422043277e-09 2.298751862e-09 2.161350241e-09 1.907686545e-09 2.004034475e-09 1.973037079e-09 1.744738731e-09 1.719999652e-09 1.839325317e-09 1.787528302e-09 1.407462179e-09 1.200753532e-09 1.017113982e-09 8.951167369e-10 8.023653053e-10 7.330010623e-10 1.946893664e-10 2.714323739e-10 1.858287598e-10 1.122708381e-10 1.148905029e-10 1.613795899e-11 6.45619827e-13 1.337629521e-14 1.408053026e-13 5.089331422e-15 1.787756831e-16 4.69162953e-18 1.778221803e-17 0 7.590786231e-19 0 0 0 0 2.939538045e-26 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 8.91895241e-19 2.944137424e-18 1.777197348e-17 1.316531965e-17 8.623355699e-17 9.741498796e-16 2.523175261e-14 2.054064086e-13 1.093678105e-12 2.305240788e-12 4.462611912e-11 1.375683545e-10 5.140306856e-11 1.437087542e-10 2.167419788e-10 1.325319851e-10 8.058082588e-10 1.042873336e-09 1.137582115e-09 1.496554494e-09 1.293641299e-09 1.500903241e-09 1.485134141e-09 1.730530993e-09 1.804324085e-09 1.672937627e-09 2.277021847e-09 2.237390767e-09 2.171773373e-09 2.31273173e-09 2.479492669e-09 2.443373642e-09 2.288554572e-09 2.73478144e-09 2.544056797e-09 2.855455931e-09 2.700182018e-09 2.827550572e-09 2.861085741e-09 2.974021422e-09 3.114819226e-09 2.912818728e-09 3.213251516e-09 3.254423003e-09 3.453225513e-09 3.352022718e-09 3.91893685e-09 3.920773421e-09 3.844460099e-09 4.583180421e-09 4.545284166e-09 5.438029455e-09 4.265189355e-09 4.164863591e-09 5.415746534e-09 4.859385763e-09 4.371360973e-09 5.666147062e-09 5.430795041e-09 5.425969325e-09 4.970266542e-09 4.822806625e-09 4.744838555e-09 6.728005299e-09 4.744257425e-09 5.546242733e-09 4.298353401e-09 3.533451671e-09 5.377117641e-09 4.239454726e-09 4.799262514e-09 4.652453117e-09 3.781044735e-09 3.687642277e-09 3.166235054e-09 3.462357535e-09 3.388467071e-09 2.952864937e-09 2.972466791e-09 3.460070931e-09 3.681647442e-09 3.443883171e-09 2.265318561e-09 3.631252133e-09 3.252190151e-09 2.932627874e-09 3.090600014e-09 3.161399967e-09 3.305886751e-09 3.049370923e-09 3.512164837e-09 3.563846448e-09 3.799118576e-09 3.048530487e-09 3.305767527e-09 3.632473739e-09 4.308665774e-09 3.678579389e-09 3.554394583e-09 4.198211326e-09 3.391253994e-09 3.78426419e-09 3.964330787e-09 4.335308114e-09 4.59100939e-09 3.197023793e-09 4.930340765e-09 5.207853328e-09 5.672366071e-09 5.839416217e-09 4.356930747e-09 5.442074282e-09 5.057052612e-09 4.945435171e-09 6.096393751e-09 3.770262462e-09 5.002205453e-09 5.634220232e-09 5.143344531e-09 5.03951441e-09 5.100550668e-09 5.01131325e-09 4.532833353e-09 3.725880582e-09 3.569413587e-09 4.037269027e-09 3.86030811e-09 3.497857633e-09 3.334675067e-09 3.391856995e-09 3.231880999e-09 3.445455879e-09 2.912054472e-09 2.672126495e-09 2.964325714e-09 2.967378275e-09 2.999769807e-09 2.804738642e-09 2.521980436e-09 2.673634835e-09 2.636220116e-09 2.369046958e-09 2.514089425e-09 2.529673067e-09 2.279978336e-09 2.062948238e-09 2.036979718e-09 1.998113274e-09 1.944490377e-09 1.864566184e-09 1.322181774e-09 1.63282897e-09 1.474280611e-09 1.473001099e-09 1.307532419e-09 1.205567443e-09 7.224035147e-10 5.664951736e-10 4.601748126e-10 2.227253255e-10 2.420957567e-10 1.321358684e-10 1.886401831e-10 5.343979003e-11 6.645243735e-13 1.790677866e-13 5.210825464e-14 7.135170902e-14 2.955529116e-15 6.635042522e-17 9.091489088e-18 1.48168459e-17 3.878147992e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.927345148e-19 1.192641052e-17 7.161945048e-17 8.810045544e-17 1.203733757e-16 1.319219356e-14 1.489285524e-13 7.200275074e-12 5.579961812e-12 4.270422959e-12 1.6033431e-10 2.805677992e-10 3.546888941e-10 2.686603771e-10 1.932976531e-10 8.888851501e-10 8.4196106e-10 1.067380395e-09 1.234183358e-09 1.461668823e-09 1.351537527e-09 1.230106151e-09 1.813038677e-09 1.824257856e-09 1.92015717e-09 2.209596753e-09 2.278798825e-09 2.2409493e-09 2.331122179e-09 2.228290762e-09 2.18631918e-09 2.590516032e-09 2.816879605e-09 2.547307384e-09 2.630459893e-09 2.949638461e-09 2.808144743e-09 2.713426901e-09 2.978584241e-09 2.996440714e-09 3.26614619e-09 2.986885641e-09 3.009705789e-09 3.362668659e-09 3.367221239e-09 3.402133331e-09 3.82308152e-09 4.847088777e-09 3.211458744e-09 5.010560707e-09 5.609103747e-09 4.15649226e-09 3.643136871e-09 3.704663109e-09 4.822377873e-09 5.650858761e-09 4.286292624e-09 4.328034419e-09 5.788843581e-09 6.064573031e-09 5.292638155e-09 3.617648861e-09 5.00436283e-09 6.313262427e-09 3.770348362e-09 5.781037103e-09 4.480207455e-09 5.455052169e-09 4.097163764e-09 3.89895679e-09 4.035552924e-09 3.424644689e-09 3.757365587e-09 4.183119641e-09 3.738213115e-09 3.699599343e-09 3.53866282e-09 2.641225533e-09 2.969717625e-09 3.787341195e-09 3.113260761e-09 3.509745005e-09 3.105156876e-09 2.621029087e-09 3.045328246e-09 3.063469912e-09 3.412226074e-09 2.340184824e-09 3.170844504e-09 2.888403821e-09 3.036934669e-09 3.380585035e-09 3.087360348e-09 3.520792576e-09 2.977522869e-09 3.562466863e-09 3.827898869e-09 4.019723858e-09 3.798968421e-09 4.22447487e-09 4.281777604e-09 3.756758913e-09 4.51741247e-09 4.508478228e-09 4.645050953e-09 5.140257914e-09 5.439176912e-09 4.682071804e-09 4.959304182e-09 5.379045335e-09 5.146815932e-09 4.051501062e-09 4.911795146e-09 5.074549957e-09 6.921351619e-09 5.036069381e-09 5.579487787e-09 5.841191851e-09 4.259983576e-09 5.638774453e-09 4.872163178e-09 4.256818384e-09 5.605218739e-09 5.483693361e-09 3.559402001e-09 3.882768166e-09 4.138964247e-09 3.377095697e-09 3.312454568e-09 3.378616477e-09 3.121920458e-09 3.100225344e-09 2.936750882e-09 3.014222166e-09 2.85496584e-09 2.910537806e-09 2.996315292e-09 2.775707747e-09 2.691279726e-09 2.630218508e-09 2.3227732e-09 2.356679815e-09 2.746117315e-09 2.4435336e-09 2.254413774e-09 2.147742411e-09 1.976416018e-09 1.943526077e-09 1.954875403e-09 1.956779097e-09 1.972838715e-09 1.402193127e-09 1.321057797e-09 1.340092847e-09 1.043046678e-09 9.281862396e-10 8.064702906e-10 4.584515543e-10 2.182139115e-10 3.26011933e-10 1.546109677e-10 1.394653006e-10 8.469175148e-11 4.262942256e-12 5.775126546e-13 1.090770096e-13 1.058772982e-14 1.325517094e-15 4.055777884e-15 2.961898078e-17 9.241473442e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.569973985e-19 5.594737361e-19 3.102221959e-18 3.737473564e-17 1.964590321e-17 3.761172161e-15 2.73872068e-14 9.931947287e-11 1.837546512e-13 3.352844507e-13 5.119642215e-11 1.541723021e-10 3.15815883e-10 3.295580902e-10 4.158800943e-10 4.747239348e-10 9.397176737e-10 8.828020463e-10 9.013022902e-10 1.239151675e-09 1.275494265e-09 1.429971219e-09 1.654408009e-09 1.717935723e-09 1.646532607e-09 2.170448372e-09 1.996993567e-09 1.895972975e-09 2.198493498e-09 2.206527379e-09 2.34399871e-09 2.469208846e-09 2.516791553e-09 2.530256808e-09 2.643846989e-09 2.728338324e-09 2.754283314e-09 2.955683415e-09 2.849663742e-09 3.001084932e-09 3.110738323e-09 3.171442401e-09 3.231724949e-09 3.385604332e-09 3.537830574e-09 3.10423667e-09 4.353548891e-09 4.094166805e-09 4.680626149e-09 4.451320768e-09 4.436174133e-09 5.796964524e-09 4.354083089e-09 5.767891815e-09 4.417796842e-09 6.312717097e-09 5.344083982e-09 5.130220494e-09 4.822833905e-09 4.363384096e-09 4.72650734e-09 5.213320334e-09 5.191263931e-09 6.52573481e-09 5.616771209e-09 5.463262375e-09 4.543838416e-09 4.65567207e-09 5.088941387e-09 3.955938316e-09 3.719007561e-09 3.305615033e-09 3.480914334e-09 3.723279805e-09 3.726971384e-09 3.044666095e-09 3.753058061e-09 3.774174595e-09 3.563324689e-09 3.144687753e-09 3.474859523e-09 2.601384305e-09 3.048108937e-09 3.330919957e-09 3.340799216e-09 3.041003561e-09 3.646189999e-09 3.648969211e-09 3.432337454e-09 3.35085129e-09 2.920172645e-09 2.843668141e-09 3.170795012e-09 3.017754983e-09 3.451099924e-09 3.874432848e-09 3.532785518e-09 3.424621785e-09 3.673310072e-09 3.330105363e-09 3.985061436e-09 3.663612086e-09 4.991017722e-09 3.984569537e-09 3.632088771e-09 5.193156502e-09 5.375752384e-09 5.462830605e-09 4.646671247e-09 5.234886736e-09 5.052895267e-09 4.472601713e-09 4.801786249e-09 4.881091911e-09 5.313023577e-09 3.862535551e-09 5.061775266e-09 5.911342021e-09 5.665355182e-09 3.89154806e-09 4.884273627e-09 4.284790038e-09 4.749791561e-09 4.539730137e-09 3.439603954e-09 4.074402214e-09 4.122103154e-09 3.479400798e-09 3.773244827e-09 3.14968868e-09 3.392624889e-09 2.907657327e-09 3.083813973e-09 2.892225182e-09 2.952272837e-09 2.960600483e-09 2.941661973e-09 2.736220578e-09 2.674397489e-09 2.655082522e-09 2.437996239e-09 2.600557758e-09 2.512707059e-09 2.419105191e-09 2.130428787e-09 2.095602269e-09 2.260867346e-09 2.057113906e-09 1.952259086e-09 1.756098761e-09 1.95317546e-09 1.648037236e-09 1.808901312e-09 1.594879221e-09 1.427407653e-09 1.10146718e-09 1.046518475e-09 8.739460706e-10 4.863511563e-10 2.983436706e-10 9.428327818e-11 1.512332353e-10 9.859700683e-11 5.378624721e-11 3.17091621e-11 1.942442893e-12 2.429563645e-13 2.989484213e-14 3.560425908e-15 5.583055214e-16 8.357763381e-17 3.199251734e-18 1.569887262e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.543066105e-18 1.518613955e-18 4.576860933e-16 1.66183413e-16 2.237530014e-16 4.321604955e-14 2.6956672e-13 1.947239119e-12 1.850104433e-11 2.476679984e-11 7.815169652e-11 2.951025141e-10 2.506606651e-10 2.901980724e-10 4.419582655e-10 8.312158262e-10 1.06664086e-09 1.014456454e-09 1.305289713e-09 1.496582917e-09 1.568448275e-09 1.822019296e-09 1.869528942e-09 1.889539699e-09 2.063140041e-09 1.953558629e-09 2.003338791e-09 2.256640251e-09 2.487374098e-09 2.330967085e-09 2.283212129e-09 2.608695053e-09 2.18405078e-09 2.571160393e-09 2.640380021e-09 2.85127623e-09 2.891975949e-09 3.003425053e-09 3.066028052e-09 2.99481473e-09 2.990906889e-09 3.343781594e-09 3.315475618e-09 3.407491073e-09 3.436580686e-09 3.684625948e-09 4.229765253e-09 3.625281038e-09 3.915668897e-09 4.109383291e-09 4.549378337e-09 5.382228902e-09 5.178392113e-09 5.118381518e-09 4.99735964e-09 5.085336521e-09 4.897010176e-09 5.686727227e-09 4.000378024e-09 5.068431397e-09 4.949129803e-09 4.747703146e-09 6.599173391e-09 4.958882977e-09 4.566684549e-09 3.895222316e-09 4.087349473e-09 4.731892426e-09 3.992098506e-09 3.922974052e-09 4.309794735e-09 3.812832549e-09 3.057158369e-09 3.4138046e-09 3.354374715e-09 3.439897442e-09 3.23387111e-09 3.656711456e-09 3.21880274e-09 3.314513407e-09 3.072153578e-09 3.599083781e-09 3.398134568e-09 3.465335058e-09 2.585378448e-09 3.373584478e-09 2.819055576e-09 2.532810389e-09 3.495586902e-09 3.022278481e-09 3.054421401e-09 3.278156876e-09 2.766155797e-09 3.846970147e-09 3.105952306e-09 3.3164466e-09 3.269656674e-09 3.27881325e-09 4.112430326e-09 3.602833593e-09 3.649829769e-09 4.934852235e-09 3.193744699e-09 3.362666583e-09 3.15052494e-09 4.528168095e-09 4.802522574e-09 4.054323447e-09 4.554403543e-09 6.11782166e-09 5.86040514e-09 5.348619451e-09 5.403879436e-09 6.014329153e-09 5.285423473e-09 5.378188824e-09 5.410517604e-09 4.662448142e-09 5.433995098e-09 5.490829739e-09 5.8538903e-09 5.076392772e-09 3.597254502e-09 4.266506725e-09 4.048207336e-09 3.084286025e-09 4.158384191e-09 3.981148865e-09 3.376256195e-09 3.127377213e-09 3.2873911e-09 3.263381636e-09 3.301320312e-09 2.848851582e-09 2.904831126e-09 3.048325794e-09 2.973569901e-09 2.94801905e-09 2.875564437e-09 2.966826335e-09 2.419258076e-09 2.377777785e-09 2.062017402e-09 2.314904816e-09 2.152841396e-09 2.076917555e-09 1.836015872e-09 1.856187683e-09 1.970198652e-09 1.774546799e-09 1.424028847e-09 1.574543333e-09 1.549664557e-09 1.250588975e-09 1.185748872e-09 7.734597441e-10 9.612115773e-10 5.037259358e-10 3.490172045e-10 2.357999069e-10 1.776157906e-10 1.000690071e-10 6.582974728e-12 6.212704005e-12 8.264566638e-14 7.272795653e-14 1.795299512e-14 4.926905307e-15 1.406244061e-15 2.363452205e-17 1.552809044e-17 5.201958557e-19 6.179354965e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.496637627e-19 3.354881506e-18 1.322186397e-17 2.741691787e-17 4.385641787e-16 2.169210601e-14 2.068738041e-15 1.169888721e-13 1.204814803e-12 3.101851805e-11 1.194744218e-11 2.197406974e-10 1.966698452e-10 1.697281328e-10 1.784450473e-10 3.067486766e-10 8.230876146e-10 8.165284631e-10 1.300461043e-09 1.12044995e-09 1.519610474e-09 1.382451487e-09 1.593538128e-09 1.723168867e-09 1.689508845e-09 2.029423001e-09 2.231841021e-09 1.942456544e-09 2.306258449e-09 2.267536849e-09 2.064277172e-09 2.675975423e-09 2.596370353e-09 2.715412645e-09 2.553194484e-09 2.762171518e-09 2.851255321e-09 2.843712235e-09 2.980505497e-09 3.169308763e-09 3.024134439e-09 3.14807805e-09 3.20756396e-09 3.114057366e-09 3.268909502e-09 2.977286799e-09 3.651532108e-09 4.028116895e-09 3.488558147e-09 4.616713317e-09 3.892983499e-09 4.781459261e-09 4.993577838e-09 6.326063734e-09 4.665172881e-09 5.040739653e-09 4.499076825e-09 5.77159029e-09 4.765041233e-09 5.451822473e-09 5.354013139e-09 4.223526069e-09 4.386549173e-09 6.103949197e-09 5.343517408e-09 5.436225103e-09 5.597158691e-09 5.209271662e-09 5.049625253e-09 4.184791478e-09 4.938704914e-09 3.200753009e-09 2.737031192e-09 3.945498761e-09 3.009876109e-09 3.215616546e-09 3.564978484e-09 3.916805743e-09 2.907361174e-09 3.510021793e-09 3.09958752e-09 3.202632392e-09 3.18516302e-09 3.077515124e-09 3.269471657e-09 3.490243633e-09 3.212794252e-09 3.057046864e-09 3.157165397e-09 3.393637645e-09 2.641029934e-09 3.436175199e-09 3.702851217e-09 3.247229878e-09 3.238461199e-09 3.737615279e-09 2.974529337e-09 3.302859423e-09 3.071358479e-09 2.608806739e-09 3.428939017e-09 4.238985502e-09 3.393996354e-09 4.209132044e-09 4.360012005e-09 4.446040988e-09 4.637706909e-09 4.324994021e-09 6.004575753e-09 5.724194894e-09 5.444052406e-09 5.156104301e-09 5.860430158e-09 5.864488332e-09 5.365925638e-09 5.395186326e-09 5.734275359e-09 4.657165718e-09 4.990104031e-09 4.223090946e-09 4.575688164e-09 4.479672722e-09 4.615532219e-09 4.159611541e-09 4.643419755e-09 4.296285589e-09 3.975747456e-09 3.297885637e-09 3.211828996e-09 3.02305763e-09 3.210720938e-09 3.251144833e-09 3.103050204e-09 3.098723373e-09 2.908514319e-09 2.934491556e-09 2.910006631e-09 2.857126805e-09 2.628607289e-09 2.592337251e-09 2.632738524e-09 2.383998616e-09 2.546243721e-09 2.528827721e-09 2.181251036e-09 2.300542523e-09 1.977553075e-09 1.858884921e-09 1.798505158e-09 1.929409629e-09 1.76969192e-09 1.866252228e-09 1.499400454e-09 1.042203332e-09 1.509324566e-09 1.201558602e-09 7.687105773e-10 8.949531055e-10 6.706319257e-10 4.106242014e-10 1.791406773e-10 2.915055864e-10 1.687720354e-10 8.680455585e-11 8.292828716e-13 1.408652914e-12 8.035431828e-14 5.252246616e-16 1.903403519e-15 3.988152207e-16 1.38967009e-18 0 1.840595937e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 2.245288981e-19 0 7.528527114e-18 2.233093314e-17 9.568880845e-16 2.304865811e-15 3.049495309e-14 1.608872588e-13 1.850716115e-12 2.730706496e-11 6.575444391e-11 1.829075357e-10 2.207331811e-10 1.795846123e-10 3.689606436e-10 6.856106963e-10 9.328704242e-10 9.49688446e-10 1.043068835e-09 1.106248448e-09 1.471828261e-09 1.182700128e-09 1.507685307e-09 1.87249527e-09 1.61555463e-09 1.918833928e-09 2.0069016e-09 2.096498889e-09 2.233336208e-09 2.086329646e-09 2.079682953e-09 2.565889861e-09 2.256814325e-09 2.401609036e-09 2.522110751e-09 2.76140514e-09 2.846899696e-09 2.815241483e-09 2.911956208e-09 2.966499789e-09 3.044911373e-09 3.171590654e-09 3.265289567e-09 3.208147028e-09 3.377518511e-09 3.398501037e-09 4.025232936e-09 4.630260536e-09 3.786504292e-09 3.655565929e-09 4.884865365e-09 5.381137291e-09 4.470691526e-09 4.095749189e-09 3.87200441e-09 5.118306656e-09 4.64986367e-09 5.323614179e-09 4.423099107e-09 5.473810583e-09 6.119408519e-09 5.069549734e-09 5.50135096e-09 5.021478126e-09 6.254437238e-09 5.988371414e-09 4.593917913e-09 4.43997253e-09 4.907758941e-09 4.426515534e-09 4.017177942e-09 3.280624846e-09 2.98015866e-09 4.149782077e-09 3.674369887e-09 3.417602488e-09 3.593262097e-09 3.068156402e-09 3.7713738e-09 2.971185103e-09 3.668381886e-09 3.452250771e-09 2.919707121e-09 2.840861121e-09 3.221763676e-09 2.956198218e-09 2.794281596e-09 3.387002002e-09 3.130933906e-09 2.614418056e-09 3.113035634e-09 2.777179169e-09 3.249337553e-09 3.223932714e-09 3.500827973e-09 2.942158059e-09 3.615032186e-09 3.933569601e-09 3.61515123e-09 3.583823465e-09 3.740142059e-09 3.299142183e-09 3.913515896e-09 4.02946263e-09 5.278566031e-09 3.520429758e-09 4.670523611e-09 4.561187895e-09 5.164546606e-09 5.490100474e-09 4.791235035e-09 5.632364817e-09 4.9118207e-09 6.421599628e-09 5.298585986e-09 4.136468212e-09 4.89963451e-09 4.941092423e-09 5.11288094e-09 5.174996714e-09 3.615925267e-09 5.113833862e-09 4.944667183e-09 4.852685404e-09 5.41560752e-09 3.763213848e-09 4.01446979e-09 4.127401789e-09 3.340454251e-09 3.641692266e-09 3.393417192e-09 3.337031633e-09 3.073730381e-09 2.826411924e-09 2.960874087e-09 3.118726159e-09 2.963388353e-09 2.780853466e-09 2.766764623e-09 2.710134079e-09 2.481146828e-09 2.672471165e-09 2.576975454e-09 2.222404032e-09 2.064214562e-09 2.320101477e-09 2.140443606e-09 1.957178796e-09 1.858659097e-09 1.937266848e-09 1.648553208e-09 1.817864021e-09 1.547849993e-09 1.558559956e-09 1.319270868e-09 8.815382273e-10 1.007584168e-09 7.775138204e-10 4.821729536e-10 2.625495214e-10 2.241458364e-10 3.206265132e-10 4.334838686e-11 3.902329327e-11 1.355570859e-11 7.33453656e-13 6.260434186e-13 2.850760958e-15 2.936131278e-15 4.22497408e-17 2.890040919e-17 1.915379064e-17 3.529495204e-18 4.423639168e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 6.628526114e-19 3.604254733e-18 2.09993579e-17 4.516085717e-17 4.881206484e-16 3.16475428e-15 6.652150167e-15 4.348946375e-13 5.631471861e-12 2.021955466e-11 1.094888696e-10 3.050753729e-10 1.970229085e-10 2.573968461e-10 3.645933853e-10 3.663259516e-10 8.88550524e-10 8.255027263e-10 1.193196276e-09 1.410100248e-09 1.620417351e-09 1.560313164e-09 1.897695118e-09 1.846515046e-09 1.988088048e-09 1.891359236e-09 1.950877871e-09 1.841929482e-09 2.133430267e-09 2.142286092e-09 2.092908323e-09 2.241778337e-09 2.546517321e-09 2.386316877e-09 2.781578747e-09 2.389426643e-09 2.737187929e-09 2.892270816e-09 2.78627861e-09 2.950403004e-09 2.988634653e-09 2.91662716e-09 3.322594213e-09 3.289050048e-09 3.066480621e-09 3.097727209e-09 4.114509204e-09 4.991519511e-09 4.71206618e-09 3.17902208e-09 3.285065175e-09 4.286522771e-09 3.777939479e-09 5.240224545e-09 4.611399677e-09 4.401007933e-09 5.473833753e-09 5.989570629e-09 4.813976325e-09 4.955271046e-09 4.110036277e-09 6.067627976e-09 3.849381229e-09 4.783678323e-09 5.7222464e-09 4.24291386e-09 4.486083582e-09 5.220200357e-09 5.252324552e-09 3.950784005e-09 4.450099712e-09 3.472091731e-09 3.885587542e-09 3.501432456e-09 3.696352691e-09 4.052170758e-09 3.510527635e-09 3.708585132e-09 3.692909042e-09 1.977294224e-09 3.220152727e-09 2.844932536e-09 3.025201869e-09 3.400667e-09 3.686772909e-09 4.216080473e-09 2.943079109e-09 3.071659605e-09 3.245911099e-09 3.294211556e-09 3.377604886e-09 3.112193544e-09 2.981847937e-09 3.296692456e-09 3.239674619e-09 3.52684669e-09 3.387274291e-09 3.42727273e-09 3.842661786e-09 3.404911056e-09 3.723103352e-09 3.437064346e-09 3.579578494e-09 4.787402451e-09 5.165121807e-09 3.623268171e-09 4.350438309e-09 4.996778925e-09 4.719442823e-09 4.477939163e-09 5.19753611e-09 4.993789915e-09 5.179414154e-09 5.326618765e-09 3.324866965e-09 3.699459522e-09 5.15715104e-09 4.845015025e-09 4.759792614e-09 5.05829552e-09 4.271792406e-09 4.945968992e-09 4.687072796e-09 4.308271374e-09 3.901622863e-09 4.658511977e-09 3.702767688e-09 3.113248243e-09 4.062742013e-09 3.544808213e-09 3.250159807e-09 2.907164223e-09 3.195082023e-09 3.093410712e-09 2.923735028e-09 2.99192403e-09 3.102219208e-09 2.588833158e-09 2.756866872e-09 2.615358984e-09 2.472059903e-09 2.575542495e-09 2.423302418e-09 2.042260619e-09 2.387651826e-09 1.886587414e-09 1.975264883e-09 1.936345829e-09 1.950381794e-09 1.965345299e-09 1.634709309e-09 1.463277645e-09 1.615013971e-09 1.468162408e-09 1.205082739e-09 1.002164162e-09 9.558937853e-10 7.281514051e-10 5.386303847e-10 2.749845033e-10 2.320796261e-10 1.9111285e-10 8.179105431e-11 8.584573442e-11 6.707551613e-12 4.845154147e-13 5.853728734e-13 1.728460147e-14 1.148229461e-14 1.550883448e-17 1.309564578e-16 1.341591163e-18 5.646219583e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.544945528e-18 3.124266404e-17 6.782939534e-17 3.940338764e-15 1.274918003e-14 2.019828885e-14 1.115188132e-12 3.168673779e-11 1.800155572e-11 6.33342522e-11 3.359178756e-10 2.855312004e-10 2.501805999e-10 5.980713944e-10 6.393655003e-10 1.067481891e-09 1.28142956e-09 1.287530002e-09 1.373211833e-09 1.375145671e-09 1.62313503e-09 1.5682584e-09 2.022654716e-09 1.838075381e-09 1.930562764e-09 1.998402296e-09 2.225565797e-09 2.206309681e-09 2.289666056e-09 2.294445191e-09 2.437623906e-09 2.80073882e-09 2.292998357e-09 2.541100659e-09 2.663558417e-09 3.00414856e-09 3.125092528e-09 2.745083926e-09 3.094984768e-09 2.76545123e-09 3.019382294e-09 3.240604778e-09 3.387105411e-09 3.221020306e-09 3.73386563e-09 4.235135377e-09 4.332755921e-09 2.910940441e-09 4.713106749e-09 4.719116713e-09 5.257322282e-09 5.474521662e-09 5.050502366e-09 5.969381884e-09 4.251629994e-09 4.349357008e-09 4.668458768e-09 5.144807342e-09 5.463373765e-09 5.821525529e-09 4.110911521e-09 4.848831714e-09 5.583676022e-09 3.870679607e-09 5.316319529e-09 5.36891772e-09 4.549634936e-09 3.94123135e-09 3.969650972e-09 4.255274624e-09 3.519204555e-09 4.270062367e-09 3.824433561e-09 3.900860773e-09 3.915241257e-09 3.454724757e-09 3.032908676e-09 2.970067466e-09 3.008034587e-09 2.973123923e-09 3.44549703e-09 2.780555838e-09 2.723035216e-09 3.229291532e-09 2.909771149e-09 3.06694129e-09 2.578402863e-09 3.120332465e-09 2.148450292e-09 3.066092633e-09 3.562915947e-09 3.39149938e-09 3.542096484e-09 3.616535698e-09 2.925327733e-09 3.682246784e-09 3.913916511e-09 2.898684127e-09 3.482815006e-09 4.262188972e-09 3.449480945e-09 4.450367189e-09 4.538710229e-09 3.967926423e-09 4.875743939e-09 4.736355155e-09 5.754846769e-09 3.996847292e-09 5.87102663e-09 5.563214624e-09 5.085816005e-09 4.597903336e-09 5.105060998e-09 6.001468746e-09 4.84517491e-09 4.964635368e-09 5.799391061e-09 6.486764596e-09 4.828422737e-09 5.573364518e-09 4.567669251e-09 4.242388778e-09 5.172781004e-09 3.581805758e-09 3.572105635e-09 4.623201218e-09 3.917523785e-09 3.191538685e-09 2.982201728e-09 2.865490515e-09 2.98783291e-09 2.935629766e-09 3.164827177e-09 2.890303578e-09 2.943701787e-09 2.774623537e-09 2.707017894e-09 2.609986577e-09 2.523036044e-09 2.559778606e-09 2.562350976e-09 2.301549312e-09 2.035103774e-09 2.240059957e-09 2.028215068e-09 1.977839842e-09 2.149749945e-09 1.865485659e-09 1.642397268e-09 1.602554767e-09 1.490263763e-09 1.499362996e-09 1.321129447e-09 1.272708748e-09 7.436248408e-10 7.955260151e-10 3.247506261e-10 2.16133269e-10 7.176823738e-11 2.924897779e-10 1.744551612e-10 5.044551561e-11 1.065206663e-11 6.504719898e-13 4.650017931e-15 1.805934184e-14 6.941023122e-15 2.613178826e-16 2.486679285e-16 2.144223359e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.703376144e-19 2.906309224e-17 1.072384658e-17 9.3690206e-17 1.042463951e-14 4.153683246e-14 1.447000202e-13 8.870201171e-12 1.86024294e-11 1.608114016e-10 1.631619172e-10 3.416154978e-10 3.097624696e-10 3.214279498e-10 3.449019697e-10 6.162389409e-10 1.005677052e-09 1.071356125e-09 1.234066676e-09 1.039452101e-09 1.734171091e-09 1.497157921e-09 1.657479916e-09 1.414151182e-09 1.911003386e-09 2.144120948e-09 2.044178855e-09 2.330803826e-09 2.292987207e-09 2.396727669e-09 2.403011587e-09 2.53051837e-09 2.477132387e-09 2.528043773e-09 2.814545827e-09 2.398651834e-09 2.869523083e-09 2.932578028e-09 3.013007088e-09 2.938979213e-09 3.071987012e-09 3.147958711e-09 3.083087793e-09 3.296047438e-09 3.426138775e-09 3.026484568e-09 3.601595354e-09 4.123068971e-09 3.497521469e-09 4.654925721e-09 4.07018247e-09 5.802446092e-09 4.13491293e-09 6.296484852e-09 5.537196663e-09 4.224280378e-09 5.337186615e-09 5.566361582e-09 3.843505197e-09 4.896411216e-09 5.414634622e-09 4.287894805e-09 6.873148198e-09 5.734495922e-09 4.725889028e-09 4.615718312e-09 4.020070112e-09 5.412588949e-09 4.284155984e-09 4.029245082e-09 4.470291177e-09 3.937985256e-09 3.0965651e-09 3.207938415e-09 3.084861792e-09 4.216071268e-09 3.717664162e-09 3.201559715e-09 2.7348182e-09 3.572625507e-09 3.652039806e-09 2.882657623e-09 2.83257965e-09 3.508408008e-09 3.257944997e-09 2.434118531e-09 2.813120336e-09 3.165462168e-09 3.032553143e-09 3.683360686e-09 2.723032729e-09 2.588772777e-09 3.271372495e-09 3.103290298e-09 3.09806336e-09 3.022343197e-09 4.098171666e-09 3.070691295e-09 3.275205422e-09 3.562158631e-09 2.835049062e-09 3.965160052e-09 4.42232404e-09 4.603922444e-09 3.456870245e-09 5.621613198e-09 4.697941091e-09 5.011234664e-09 3.93346055e-09 6.221140975e-09 5.855412109e-09 5.478046763e-09 5.002034086e-09 4.684072717e-09 5.442560526e-09 4.458765491e-09 5.779576407e-09 4.512949366e-09 5.472685343e-09 5.548794134e-09 4.291904854e-09 5.046499497e-09 5.313962639e-09 4.760984238e-09 4.610746378e-09 4.268727308e-09 3.906841749e-09 3.002064828e-09 3.159475549e-09 3.595241967e-09 3.034550212e-09 3.187125137e-09 2.87158799e-09 2.823215469e-09 2.81821957e-09 2.768655624e-09 2.867466621e-09 2.64168132e-09 2.674581343e-09 2.688621828e-09 2.19852218e-09 2.542268249e-09 2.368609477e-09 2.417064588e-09 2.094392354e-09 2.284732409e-09 1.795551884e-09 1.843416068e-09 1.963025601e-09 1.409125812e-09 1.725690241e-09 1.595421206e-09 1.308354572e-09 1.149423889e-09 7.311368426e-10 1.020822815e-09 8.939905244e-10 5.440526653e-10 3.45986143e-10 2.86860264e-10 3.240828165e-10 4.518271178e-12 6.543997927e-12 8.336323033e-13 1.376130855e-12 1.156388222e-13 4.132087196e-14 1.444190297e-15 2.814163378e-16 1.968569011e-17 7.097570016e-17 0 3.856721948e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.221377194e-18 5.760250636e-18 3.557679111e-18 1.182830153e-16 8.30065922e-16 9.694068145e-16 3.305145998e-14 2.719510126e-12 1.211027528e-11 4.320543933e-11 1.679749134e-10 3.010913737e-10 1.927508098e-10 2.188728738e-10 7.41188249e-10 7.964023141e-10 8.714264789e-10 1.047928033e-09 1.22265134e-09 1.461153547e-09 1.65019824e-09 1.621884225e-09 1.718283878e-09 1.973014417e-09 2.010193513e-09 2.122830545e-09 2.040730654e-09 2.279948653e-09 2.375781834e-09 2.250595225e-09 2.535383064e-09 2.067178103e-09 2.509104975e-09 2.555448849e-09 2.651570084e-09 2.599767055e-09 2.951288074e-09 2.879225769e-09 2.719925676e-09 2.965507716e-09 3.173427384e-09 3.037160523e-09 2.979846687e-09 2.996704623e-09 3.822534167e-09 4.247799739e-09 3.463112311e-09 4.337894238e-09 4.45760086e-09 3.007520351e-09 4.31571581e-09 4.34919765e-09 4.327909893e-09 5.434686047e-09 4.039693882e-09 5.478067944e-09 5.753330205e-09 6.002227817e-09 4.803996506e-09 4.709167254e-09 5.904251797e-09 5.243563738e-09 3.459961392e-09 5.290254197e-09 4.607719482e-09 4.083204788e-09 4.8203275e-09 4.967177231e-09 4.399289566e-09 4.603544887e-09 4.913001629e-09 4.497852326e-09 3.520939471e-09 3.476274609e-09 3.201101903e-09 4.331725718e-09 4.03417113e-09 3.025004526e-09 3.618577617e-09 3.066428918e-09 3.792462209e-09 3.061708159e-09 3.08389002e-09 2.452961379e-09 2.859873743e-09 3.119868098e-09 2.85112349e-09 3.15140469e-09 2.465392164e-09 3.495114273e-09 3.023985808e-09 3.100953952e-09 2.572932586e-09 3.251843924e-09 3.209798071e-09 3.546007471e-09 1.762021326e-09 3.027745601e-09 3.977085893e-09 3.41010038e-09 3.682718999e-09 3.075886667e-09 4.437509618e-09 4.42347214e-09 3.60299353e-09 4.695403483e-09 5.43753337e-09 3.980954139e-09 5.301942224e-09 4.084269545e-09 4.286079302e-09 5.915552101e-09 3.695911667e-09 5.180219543e-09 6.154715087e-09 4.643978397e-09 3.307884323e-09 5.198809586e-09 4.158956478e-09 4.738973272e-09 4.398883763e-09 4.402761761e-09 3.469649872e-09 3.331294058e-09 4.055709194e-09 4.165431081e-09 2.944944445e-09 3.232997587e-09 3.190315843e-09 3.286678286e-09 2.840072197e-09 2.770254484e-09 2.908511273e-09 3.053345966e-09 2.947308257e-09 2.465062771e-09 2.871075956e-09 2.396097071e-09 2.55476888e-09 2.626650116e-09 2.240101641e-09 2.480514042e-09 2.147954208e-09 1.884944396e-09 2.150207067e-09 2.114819867e-09 1.908625347e-09 1.844845493e-09 1.486794206e-09 1.683643001e-09 1.529676456e-09 1.762751549e-09 1.531665768e-09 1.318566588e-09 1.374725272e-09 8.074962484e-10 6.855104722e-10 3.58117341e-10 1.796732713e-10 2.577531138e-10 2.039273455e-10 2.137127766e-10 4.352394176e-11 2.451523029e-12 1.388446155e-13 9.891213239e-13 1.184037374e-15 2.425561843e-15 1.839293563e-16 7.430415243e-17 1.030586147e-17 1.123513121e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.257947457e-18 2.058963404e-17 7.107503448e-17 2.618083398e-16 3.187936085e-15 1.619809555e-13 1.775806573e-13 4.238409729e-12 2.16060653e-11 7.582028565e-11 8.022622586e-12 3.460631958e-10 2.293302896e-10 2.398978203e-10 5.26811402e-10 7.844738395e-10 8.140519686e-10 1.083305535e-09 9.395485071e-10 1.336277553e-09 1.262457812e-09 1.22117681e-09 1.546852042e-09 1.631671861e-09 1.94532877e-09 1.911776089e-09 2.210012672e-09 2.126819064e-09 2.14340166e-09 2.243439607e-09 2.46509136e-09 2.556886129e-09 2.539312068e-09 2.762650009e-09 2.737085933e-09 2.715167233e-09 2.742151427e-09 2.666995537e-09 3.034714951e-09 2.985902998e-09 2.905152529e-09 3.151156044e-09 2.980857381e-09 3.209648619e-09 3.206916254e-09 3.945023391e-09 3.845469332e-09 3.636771959e-09 3.923666967e-09 5.220816224e-09 4.413312016e-09 4.922234727e-09 4.909179634e-09 4.209561578e-09 4.216225266e-09 4.725970559e-09 4.769648525e-09 5.388595506e-09 4.634260002e-09 4.893977533e-09 4.878758241e-09 4.673470163e-09 5.07638326e-09 5.057953854e-09 5.245621986e-09 4.211409769e-09 4.18015179e-09 4.727791468e-09 3.730147706e-09 3.069804084e-09 2.734106634e-09 4.550783639e-09 3.568878827e-09 3.172283546e-09 3.819721455e-09 2.348814257e-09 3.038591187e-09 3.16625707e-09 3.302994747e-09 3.151729591e-09 3.256054712e-09 3.416402895e-09 3.505906619e-09 2.890907559e-09 3.671203043e-09 2.528178577e-09 3.050316029e-09 3.275823768e-09 3.105541312e-09 3.495953999e-09 3.077945313e-09 2.997061771e-09 3.34119075e-09 2.492630116e-09 3.630248237e-09 2.82774234e-09 3.97382494e-09 3.978970542e-09 2.93624507e-09 3.616930954e-09 3.303863995e-09 3.674920512e-09 3.524035076e-09 4.097067592e-09 4.405683708e-09 5.479490163e-09 5.122226167e-09 4.150056789e-09 4.01702245e-09 5.299374515e-09 3.092371762e-09 5.488719437e-09 4.807367994e-09 5.709225672e-09 5.19544021e-09 4.738181909e-09 3.809827571e-09 5.361120949e-09 4.639645458e-09 4.115933454e-09 4.038003447e-09 6.516463335e-09 4.934016058e-09 4.129100093e-09 3.962034058e-09 3.870158624e-09 4.149834233e-09 3.259388187e-09 3.162056914e-09 3.136796746e-09 3.26536844e-09 3.235041158e-09 2.906258905e-09 2.895097705e-09 2.881460465e-09 2.696334606e-09 2.614047974e-09 2.73501845e-09 2.247702796e-09 2.609985189e-09 2.304315291e-09 2.331305971e-09 2.272122415e-09 2.235414873e-09 1.991647073e-09 2.139163718e-09 1.8124319e-09 1.496116378e-09 1.673672775e-09 1.592879737e-09 1.58331005e-09 1.30704969e-09 1.26556668e-09 1.030286273e-09 9.179911158e-10 9.191521031e-10 7.956238987e-10 5.405479011e-10 2.817310287e-10 3.278665318e-10 1.396366859e-10 2.285272546e-10 8.204069636e-11 2.344711949e-12 2.200697381e-12 4.143795743e-14 1.371559855e-13 8.218648271e-16 3.57995729e-17 9.774546053e-19 6.91466345e-18 0 0 0 0 0 0 0 0 0 0 0 8.902682706e-11 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.721997922e-18 1.260243675e-18 6.123129915e-17 9.30508877e-17 1.267434938e-14 5.066512942e-15 3.701301944e-13 9.530531254e-14 3.602709435e-12 1.147621767e-11 1.810225244e-10 2.659897734e-10 2.412504038e-10 3.165844531e-10 4.075585794e-10 6.88263605e-10 1.006936624e-09 1.22420309e-09 1.384196185e-09 1.377754528e-09 1.291903556e-09 1.36704492e-09 1.871738232e-09 2.002582684e-09 1.939967355e-09 1.935702948e-09 2.005894826e-09 2.091199346e-09 2.227733355e-09 2.322169316e-09 2.29745962e-09 2.357836239e-09 2.600954816e-09 2.643029468e-09 2.293941277e-09 2.829309248e-09 2.73936554e-09 2.860563546e-09 2.903304572e-09 3.087876786e-09 3.061324354e-09 2.986175633e-09 3.203033788e-09 3.619876646e-09 3.566213054e-09 3.584146448e-09 3.059231047e-09 4.246522141e-09 3.618468981e-09 3.986112329e-09 5.317451445e-09 3.67452121e-09 3.998710712e-09 5.115630793e-09 3.98631083e-09 5.260297643e-09 5.613555122e-09 3.858901986e-09 5.874407674e-09 4.116013102e-09 3.435327047e-09 5.207178358e-09 4.884208555e-09 4.517073614e-09 3.385547037e-09 4.737594064e-09 4.498880563e-09 4.798977249e-09 4.041371225e-09 3.843788051e-09 4.018932193e-09 4.027282665e-09 3.178217407e-09 3.947923242e-09 3.809616567e-09 3.639543183e-09 3.215255404e-09 2.972368761e-09 3.040377766e-09 3.137398617e-09 3.622042889e-09 2.718092936e-09 2.742896514e-09 2.47303933e-09 2.693207217e-09 3.04436843e-09 2.636888451e-09 3.224907699e-09 2.657387953e-09 2.879140129e-09 3.122686164e-09 2.716305416e-09 3.396243674e-09 3.675285242e-09 2.836619991e-09 2.917116762e-09 2.706301347e-09 3.639363566e-09 4.267177158e-09 3.214534411e-09 3.549876394e-09 4.31981846e-09 4.300083095e-09 4.775705109e-09 4.453615673e-09 3.694727507e-09 3.582428297e-09 4.04795133e-09 4.598950174e-09 5.653205498e-09 2.937590666e-09 4.919312962e-09 4.747957072e-09 3.991938642e-09 6.497108238e-09 5.095277e-09 4.924941541e-09 4.612179701e-09 4.720335033e-09 3.636478328e-09 5.476196167e-09 4.950945112e-09 4.758344598e-09 3.343067469e-09 3.095170603e-09 4.060968438e-09 4.136324245e-09 3.294391798e-09 3.234475679e-09 2.924731484e-09 2.76408637e-09 2.971388042e-09 2.790728838e-09 3.045096325e-09 2.741324707e-09 2.791135355e-09 2.741432819e-09 2.754894182e-09 2.417902142e-09 2.358416663e-09 2.348567627e-09 2.302926366e-09 2.451182729e-09 2.319905607e-09 2.26129891e-09 1.778441213e-09 2.05071608e-09 1.704745945e-09 1.776366096e-09 1.653582698e-09 1.472952475e-09 1.746679509e-09 1.374173236e-09 1.280399267e-09 9.652544675e-10 8.422289829e-10 7.556078757e-10 7.599279498e-10 1.641840706e-11 2.991452862e-10 3.078774347e-10 1.814908261e-10 5.506408252e-11 6.580438328e-12 1.712188528e-12 7.581581383e-14 2.381202021e-15 4.633606389e-15 5.602759608e-16 3.240652412e-18 7.454891922e-18 2.679943313e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.95590017e-18 2.038484731e-18 1.390311797e-17 6.077441028e-16 6.068388658e-16 3.787059307e-14 1.540325757e-13 7.536304209e-14 1.718755468e-11 4.829878493e-11 6.312602764e-11 2.722480463e-10 1.972794191e-10 3.875458159e-10 3.720218647e-10 8.827031288e-10 1.004557818e-09 8.598575924e-10 1.187189368e-09 1.361687188e-09 1.47364073e-09 1.74384045e-09 1.659796942e-09 1.652172139e-09 1.719289232e-09 1.906463622e-09 2.096762042e-09 2.055516216e-09 2.047394515e-09 2.319327361e-09 2.286142449e-09 2.333031853e-09 2.506839009e-09 2.222892484e-09 2.635006564e-09 2.704307408e-09 2.604893134e-09 2.70606718e-09 2.80503196e-09 2.82607005e-09 2.832289102e-09 3.175247567e-09 3.052796955e-09 2.979315934e-09 3.430755967e-09 3.479720571e-09 3.671300371e-09 3.155182171e-09 3.278208944e-09 5.065985646e-09 4.428843727e-09 4.580912311e-09 4.619683481e-09 4.805896239e-09 4.820283747e-09 3.407177187e-09 3.921424552e-09 4.773857908e-09 4.946573485e-09 4.645399666e-09 5.982500348e-09 5.274785634e-09 5.033458425e-09 4.835202951e-09 4.658831013e-09 5.246453948e-09 2.44524597e-09 4.559874995e-09 4.654627565e-09 3.668551904e-09 3.691333231e-09 3.289646532e-09 3.99362034e-09 3.567749185e-09 2.607359586e-09 3.052909995e-09 3.388278736e-09 2.876709333e-09 2.83351871e-09 3.272527049e-09 2.712670632e-09 3.125955276e-09 2.541551741e-09 3.162161499e-09 2.531123863e-09 2.282821857e-09 3.308151264e-09 2.76454973e-09 2.88750691e-09 3.020800075e-09 3.381902564e-09 2.320917613e-09 2.839447702e-09 2.688109714e-09 3.280040628e-09 3.231210608e-09 3.046489887e-09 3.60173357e-09 3.128125161e-09 4.1974329e-09 2.9074233e-09 3.831865865e-09 2.843737406e-09 4.892385748e-09 4.443128564e-09 3.419132196e-09 4.342381775e-09 4.986080527e-09 5.35072227e-09 4.331334523e-09 5.410108134e-09 3.337505613e-09 5.798839599e-09 4.648682684e-09 5.112837872e-09 3.816537077e-09 3.447040301e-09 4.762868156e-09 5.418171178e-09 4.593761067e-09 3.914710914e-09 3.847671917e-09 4.158122786e-09 3.66307988e-09 3.11222775e-09 4.051298421e-09 3.289257827e-09 3.720303081e-09 3.159708875e-09 2.778557301e-09 2.960507206e-09 2.863870421e-09 2.755915608e-09 2.953718832e-09 2.544326349e-09 2.788802184e-09 2.832314638e-09 2.745472057e-09 2.664628207e-09 2.122552271e-09 2.327576631e-09 2.3003737e-09 2.176647048e-09 2.04482722e-09 1.593175533e-09 1.689482214e-09 1.806716881e-09 1.977761191e-09 1.648717845e-09 1.384770156e-09 1.45378621e-09 1.457775605e-09 1.319008884e-09 1.192355363e-09 1.028567748e-09 9.41697141e-10 9.835916938e-10 4.529731464e-10 3.630080305e-10 2.35299757e-10 8.024950197e-11 2.601160934e-11 3.792895457e-11 4.382686293e-12 2.549496306e-12 1.940207144e-13 7.320010656e-15 1.428981104e-15 1.500557697e-15 1.470397376e-17 4.355550543e-18 8.275909228e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.929241389e-20 0 1.286619976e-17 5.005213786e-16 8.42448423e-15 1.18609645e-13 1.176135717e-14 2.136697614e-12 1.671858232e-11 1.476277851e-11 1.752230617e-10 8.001645906e-11 2.792027814e-10 3.367734542e-10 5.06343221e-10 6.21952013e-10 1.006048777e-09 1.24186195e-09 9.897479397e-10 1.114686238e-09 1.399057866e-09 1.329473114e-09 1.691087853e-09 1.748160379e-09 1.772219659e-09 2.219393382e-09 2.133301661e-09 1.967259049e-09 2.431467285e-09 2.244572755e-09 2.45867682e-09 2.365827574e-09 2.11043419e-09 2.697642758e-09 2.504846917e-09 2.568667044e-09 2.598956768e-09 3.007577547e-09 2.793614692e-09 2.980379447e-09 2.923526681e-09 2.940999315e-09 3.098653669e-09 3.083522442e-09 3.843957541e-09 3.633627745e-09 3.613968122e-09 4.084598272e-09 3.092358388e-09 3.078355088e-09 4.508239992e-09 4.227500333e-09 5.006233254e-09 4.054216968e-09 4.910640634e-09 3.610703329e-09 3.878653103e-09 4.18399467e-09 4.210928522e-09 4.70681852e-09 4.852029077e-09 5.351009456e-09 5.029793466e-09 4.840729753e-09 4.581983718e-09 4.94922168e-09 4.685896407e-09 4.540524039e-09 3.869741077e-09 3.944364491e-09 4.601282534e-09 3.797857919e-09 4.006118359e-09 3.290611013e-09 3.311625916e-09 3.654355429e-09 3.720738252e-09 2.923351736e-09 2.962501966e-09 2.32114089e-09 3.412321581e-09 3.450460613e-09 3.096715462e-09 1.907688485e-09 3.085836471e-09 3.126188265e-09 2.983373408e-09 2.717512671e-09 2.302262761e-09 2.672173096e-09 2.911724907e-09 2.889286807e-09 2.96791059e-09 2.714142669e-09 3.663647457e-09 2.969637124e-09 3.537662199e-09 3.109033703e-09 3.838337158e-09 3.554881914e-09 4.082598883e-09 3.993102718e-09 4.236925182e-09 3.796610006e-09 4.090503457e-09 4.892727145e-09 4.356276601e-09 2.957940413e-09 5.83513816e-09 5.123153239e-09 4.244836773e-09 4.133375031e-09 5.192105442e-09 4.658806298e-09 5.579468114e-09 4.319489686e-09 4.240431273e-09 5.538211948e-09 4.80098814e-09 5.36330502e-09 5.643278008e-09 3.42556845e-09 4.40776675e-09 4.914436028e-09 3.367134805e-09 3.302351049e-09 4.357939167e-09 3.040004268e-09 3.011158785e-09 2.971838157e-09 2.930922372e-09 2.571728282e-09 2.827529803e-09 2.81458333e-09 2.775013905e-09 2.648269587e-09 2.518569509e-09 2.764456513e-09 2.42206445e-09 2.250449396e-09 2.405954514e-09 1.945903845e-09 2.25731196e-09 2.216365522e-09 2.064862e-09 1.74667339e-09 1.782931041e-09 1.983421469e-09 1.553905871e-09 1.695881637e-09 1.763449556e-09 1.315729332e-09 1.109069117e-09 9.57259526e-10 1.125267358e-09 9.610100316e-10 6.705703164e-10 2.145471513e-10 2.701649242e-10 2.254319299e-10 1.233327676e-10 2.271063807e-10 1.892904625e-11 1.249525943e-11 3.023266921e-13 6.721427525e-14 6.963051571e-15 6.685931619e-16 1.151663864e-16 8.224112102e-17 3.193009477e-18 3.606551808e-19 8.991130009e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.011653654e-18 1.211803014e-18 4.121830319e-17 7.663221692e-17 1.069347931e-15 1.441844379e-14 2.024969971e-13 9.258382612e-13 3.098186112e-11 6.306342691e-12 1.388198563e-11 1.056172596e-10 2.238371174e-10 9.460141677e-11 6.983025495e-10 7.27331073e-10 8.21043115e-10 7.285527602e-10 1.215147978e-09 1.219685601e-09 1.31737951e-09 1.254458246e-09 1.621028616e-09 1.609927156e-09 2.045916107e-09 1.599680929e-09 1.883017638e-09 1.934222624e-09 2.20662611e-09 2.117890933e-09 2.064750628e-09 2.238630516e-09 2.561512108e-09 2.523038321e-09 2.468484605e-09 2.53231857e-09 2.765174587e-09 2.876814765e-09 2.772558032e-09 2.488062807e-09 2.562263486e-09 3.14797603e-09 2.811315942e-09 2.94394492e-09 3.093371475e-09 3.477287534e-09 3.247153957e-09 3.670099605e-09 4.114551953e-09 4.565310384e-09 4.317189553e-09 4.154943492e-09 4.392947265e-09 4.849921597e-09 4.672687526e-09 3.722713365e-09 3.99736173e-09 5.321036154e-09 4.164019037e-09 3.894296749e-09 3.195038015e-09 4.326810885e-09 5.293117886e-09 4.569254839e-09 4.8937661e-09 4.222922402e-09 4.387303785e-09 5.229545883e-09 3.800732181e-09 4.673885159e-09 4.132840368e-09 2.880801062e-09 3.443657204e-09 3.18513652e-09 3.063123445e-09 3.102866256e-09 3.422134802e-09 3.26073724e-09 3.226551548e-09 2.266329679e-09 3.226034999e-09 2.886768816e-09 2.733384379e-09 2.834591081e-09 3.145467945e-09 2.946482635e-09 2.425259776e-09 2.572708764e-09 3.010134284e-09 3.092032325e-09 3.037096642e-09 3.234751108e-09 2.605402763e-09 3.179200143e-09 2.609705868e-09 3.157676307e-09 3.492542473e-09 3.457862964e-09 3.955482048e-09 3.618684759e-09 3.763293418e-09 3.677473036e-09 4.652017303e-09 4.164012837e-09 3.942802964e-09 4.875841832e-09 3.547045683e-09 4.212389603e-09 4.1677545e-09 3.465790996e-09 5.470540108e-09 4.951902124e-09 4.996055171e-09 4.495063069e-09 3.293608377e-09 4.168321047e-09 4.40537652e-09 4.161783998e-09 3.889678448e-09 4.390337851e-09 4.429011559e-09 3.920989713e-09 3.347160408e-09 4.134663007e-09 3.74411856e-09 3.065180854e-09 4.007470223e-09 3.611628988e-09 3.025070557e-09 3.134815081e-09 3.111012786e-09 2.76273186e-09 2.951783228e-09 2.530389471e-09 2.634162393e-09 2.694440488e-09 2.540250775e-09 2.442513491e-09 2.480636722e-09 2.394813513e-09 2.357886339e-09 2.584342788e-09 2.030546989e-09 2.542259051e-09 2.058879504e-09 2.018738757e-09 1.818520086e-09 1.755830641e-09 1.648272487e-09 1.538925104e-09 1.632351983e-09 1.398302098e-09 1.219142341e-09 1.365556401e-09 1.097189537e-09 8.857499145e-10 5.607590815e-10 5.573858528e-10 2.430225087e-10 3.034345299e-10 2.180281101e-10 9.8256767e-11 3.8121595e-11 1.112102499e-11 3.82699233e-12 3.427745306e-14 1.331228172e-13 2.669722981e-15 1.821535398e-15 1.318889381e-18 3.548255388e-18 4.572936243e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.452377242e-19 4.729098224e-18 3.694192531e-17 2.930665708e-17 6.907372908e-15 1.152007409e-13 6.302667488e-13 1.035086302e-13 1.010219291e-11 1.358125518e-11 4.801173849e-11 2.99197798e-10 2.233451857e-10 3.094083549e-10 5.086428046e-10 7.418469349e-10 9.522362498e-10 9.726466577e-10 1.124018171e-09 1.408304697e-09 1.448537399e-09 1.389195003e-09 1.750665143e-09 1.66359685e-09 1.952027058e-09 1.880117444e-09 1.771313859e-09 1.919938495e-09 2.400148703e-09 2.225456561e-09 2.219487643e-09 2.258854361e-09 2.512992238e-09 2.451311963e-09 2.229251941e-09 2.612736383e-09 2.521855061e-09 2.639627469e-09 2.781859594e-09 2.68202389e-09 2.628065762e-09 2.641565208e-09 2.807527371e-09 2.909784265e-09 3.411124714e-09 2.936082504e-09 4.057497607e-09 3.784413315e-09 3.825818836e-09 3.725022765e-09 3.088569218e-09 5.466485778e-09 5.685598525e-09 4.218290023e-09 5.400621082e-09 5.007991006e-09 4.084480326e-09 5.06509134e-09 3.958030013e-09 5.775723519e-09 4.145634357e-09 5.873185293e-09 3.668464146e-09 5.358618249e-09 4.454902606e-09 4.299193446e-09 5.130139943e-09 5.135163236e-09 3.361985376e-09 3.875332691e-09 2.627897467e-09 3.254152991e-09 5.114972738e-09 3.1671842e-09 3.238425572e-09 3.800079081e-09 3.307727608e-09 2.668530354e-09 3.054945349e-09 2.865263012e-09 2.507368462e-09 2.597425361e-09 2.631039112e-09 2.636089234e-09 2.749914256e-09 2.841115357e-09 2.832345671e-09 2.381453249e-09 3.263994666e-09 3.055463284e-09 3.807731729e-09 2.43873851e-09 2.721567221e-09 3.073486895e-09 3.24221094e-09 3.048519874e-09 2.941305504e-09 3.698674159e-09 3.956565873e-09 4.070359872e-09 2.845159462e-09 4.249520143e-09 4.040027244e-09 3.352729889e-09 3.990337008e-09 4.856858108e-09 5.024748533e-09 5.668593016e-09 5.277773105e-09 4.730215363e-09 4.05735788e-09 5.84147022e-09 4.35436223e-09 4.73198709e-09 4.349579222e-09 4.64773852e-09 4.16501152e-09 5.580755933e-09 3.442144492e-09 3.161135138e-09 3.708058239e-09 4.44564859e-09 4.55172219e-09 3.094443319e-09 2.875733415e-09 4.009097479e-09 3.58004287e-09 3.618706788e-09 2.966215224e-09 3.081041059e-09 2.922788586e-09 2.657393499e-09 2.636158345e-09 2.627174972e-09 2.657473046e-09 2.528299622e-09 2.457503359e-09 2.58727424e-09 2.419144282e-09 2.372018865e-09 2.282733863e-09 2.251472594e-09 2.140308212e-09 2.135904832e-09 2.073546998e-09 2.024640517e-09 1.979802429e-09 1.884327356e-09 1.834303119e-09 1.637825313e-09 1.395558182e-09 1.278356081e-09 1.425691461e-09 1.062056309e-09 7.21173222e-10 9.403928297e-10 7.544658018e-10 4.435878462e-10 9.873480693e-11 3.426230288e-10 2.705759584e-10 8.867206104e-11 1.091325148e-11 3.154393019e-12 4.382367358e-12 7.8739544e-14 6.735344753e-14 1.652482398e-15 1.537318706e-17 1.574577668e-17 2.200914185e-17 1.149844383e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 5.664555233e-19 0 1.714978846e-18 4.020365998e-17 1.135509816e-15 9.060388537e-15 9.169189196e-15 7.096261602e-14 1.595388659e-12 4.658226849e-12 3.615883944e-11 1.8366112e-10 1.207204989e-10 2.682065696e-10 2.362246789e-10 3.458022088e-10 7.083354254e-10 8.719775351e-10 9.505153727e-10 1.255053656e-09 1.461764654e-09 1.419431214e-09 1.32680275e-09 1.241364813e-09 1.896572677e-09 1.721194339e-09 1.718061222e-09 1.772743796e-09 1.963945568e-09 2.101756969e-09 2.462329484e-09 2.216366838e-09 2.210695051e-09 2.413711896e-09 2.478103244e-09 2.469257287e-09 2.50866648e-09 2.486922222e-09 2.60784465e-09 2.764777329e-09 2.981704087e-09 2.824585292e-09 2.833233119e-09 2.757097135e-09 3.176206102e-09 3.077494446e-09 2.984694001e-09 4.951199882e-09 3.603915231e-09 3.858133439e-09 4.577636284e-09 3.77985211e-09 3.972225116e-09 4.916667743e-09 4.769338363e-09 4.024161441e-09 2.819118499e-09 3.178802307e-09 5.516720772e-09 4.352409742e-09 4.542383928e-09 3.923272973e-09 3.608952053e-09 4.6126246e-09 2.900276125e-09 3.518388171e-09 5.170370455e-09 4.517089311e-09 3.541775981e-09 3.651333833e-09 4.266816224e-09 3.036430598e-09 3.698433726e-09 4.20838657e-09 4.280313422e-09 3.200427872e-09 2.700533604e-09 3.030180872e-09 2.794197343e-09 2.06405872e-09 2.902671422e-09 2.045130107e-09 3.025650437e-09 2.891336265e-09 2.831195581e-09 3.335993481e-09 2.703352856e-09 2.509640785e-09 2.98852728e-09 2.711696674e-09 3.179167984e-09 3.422988449e-09 2.439551241e-09 2.517160361e-09 2.365513375e-09 2.700089942e-09 3.121496214e-09 3.016093429e-09 2.422920029e-09 3.450535396e-09 3.880665494e-09 2.353085972e-09 3.310036896e-09 4.041745885e-09 3.968280127e-09 5.557143815e-09 5.194818259e-09 4.039994183e-09 4.940548896e-09 5.835467655e-09 4.282563133e-09 4.093202106e-09 5.266706686e-09 4.884222489e-09 5.507717643e-09 4.741275197e-09 5.38326204e-09 4.742602142e-09 4.923893054e-09 4.372147603e-09 4.582846113e-09 4.285735027e-09 3.647009017e-09 3.988349904e-09 3.914028289e-09 3.332753401e-09 3.587853371e-09 3.961090735e-09 2.919228619e-09 2.76080844e-09 3.105178429e-09 2.668845675e-09 2.639202656e-09 2.581972567e-09 2.664798823e-09 2.53677116e-09 2.413365754e-09 2.606723538e-09 2.401794139e-09 2.224470077e-09 2.118838287e-09 2.080562903e-09 2.017941801e-09 2.086818407e-09 2.058983157e-09 1.90246276e-09 1.992544571e-09 2.017310266e-09 1.8374836e-09 1.968678204e-09 1.857386219e-09 1.421888087e-09 1.285206809e-09 1.411785648e-09 1.128854671e-09 9.812345729e-10 8.900352909e-10 5.203193045e-10 3.44821409e-10 2.728237236e-10 1.897662311e-10 1.580673511e-10 1.329469457e-11 4.453460811e-12 3.591042952e-12 1.849232957e-12 1.86668606e-13 3.139543317e-14 1.466689093e-14 2.037327043e-17 1.661129314e-17 5.121889594e-18 1.115549525e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.46203202e-18 3.152240043e-16 4.60122549e-17 2.059723932e-15 8.284631911e-15 5.040646771e-14 3.170691826e-12 3.138774329e-12 2.103843068e-11 6.456331119e-11 2.109649084e-10 6.829167146e-11 1.020665411e-10 4.081417227e-10 7.661228395e-10 8.023976858e-10 1.003118238e-09 1.242128951e-09 1.237373059e-09 1.310961448e-09 1.427126652e-09 1.611663456e-09 1.536423336e-09 1.506664476e-09 1.84172032e-09 2.099539018e-09 1.801138862e-09 2.147286925e-09 1.824913887e-09 2.101450119e-09 1.962575564e-09 2.088209809e-09 2.422705112e-09 2.406902604e-09 2.530748351e-09 2.547121946e-09 2.83295941e-09 2.773791884e-09 2.843657579e-09 2.834843271e-09 2.780100953e-09 2.849259661e-09 2.912370729e-09 3.015864431e-09 3.777515189e-09 3.244656744e-09 3.498033125e-09 4.267846288e-09 4.218333778e-09 4.47723768e-09 3.749050502e-09 3.732137745e-09 3.71728446e-09 3.486154356e-09 3.23276698e-09 5.402855679e-09 5.984132049e-09 3.665692248e-09 4.45699578e-09 5.383121675e-09 4.701994158e-09 4.565697973e-09 3.770453882e-09 4.516618251e-09 4.552345701e-09 3.860535023e-09 4.061940534e-09 3.024958734e-09 4.155722736e-09 4.108195273e-09 3.097378446e-09 3.776115104e-09 3.661855812e-09 3.480870269e-09 3.512439287e-09 2.913840365e-09 2.10361436e-09 2.666714131e-09 2.580421763e-09 1.970469378e-09 2.937584e-09 3.006538537e-09 3.199564351e-09 2.809228437e-09 2.891401231e-09 3.663333891e-09 3.033583695e-09 2.717329804e-09 2.93862176e-09 2.779579172e-09 3.420659749e-09 2.610036097e-09 2.411900005e-09 3.001021796e-09 3.24509454e-09 3.15160278e-09 3.636919349e-09 3.516344101e-09 4.13744343e-09 3.151782811e-09 4.493474178e-09 3.2676932e-09 3.930041735e-09 4.215800264e-09 5.132381511e-09 4.215377917e-09 5.098581346e-09 4.016385569e-09 5.109997344e-09 4.908383977e-09 5.640977643e-09 2.952725607e-09 5.915079265e-09 3.998206998e-09 4.349188566e-09 4.194485908e-09 5.880865815e-09 4.768926142e-09 3.698794496e-09 4.342882387e-09 5.003409831e-09 3.586017728e-09 4.641819263e-09 3.262118885e-09 3.467355917e-09 3.066836777e-09 2.93610124e-09 3.032707556e-09 2.894224759e-09 2.717852957e-09 2.62582485e-09 2.812152749e-09 2.644308621e-09 2.746185564e-09 2.463919551e-09 2.54991815e-09 2.751134319e-09 2.176092038e-09 2.376530168e-09 2.295851687e-09 2.152208408e-09 1.782469093e-09 2.01986159e-09 1.825618674e-09 2.001343337e-09 1.610500322e-09 1.572613571e-09 1.402973984e-09 1.579363574e-09 1.23018999e-09 1.289162634e-09 1.34252982e-09 1.082872311e-09 1.199125251e-09 8.11948209e-10 7.20314876e-10 4.775861322e-10 1.156321635e-11 1.792743382e-10 4.892500884e-11 7.497059384e-11 4.550666347e-11 6.772578575e-13 9.583584268e-13 4.462747375e-14 1.335895106e-15 8.049989171e-17 7.44461188e-17 2.052650773e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.442276351e-19 4.657098473e-18 5.218873713e-17 1.28885961e-16 1.07845845e-15 2.983391679e-14 6.561246502e-14 9.863661877e-13 1.772818066e-11 3.440692732e-12 4.922504684e-11 4.023371963e-10 2.8692796e-10 1.293110958e-10 5.749746274e-10 5.954734659e-10 5.72207954e-10 1.173075802e-09 9.542792352e-10 1.27277119e-09 1.412438392e-09 1.255458847e-09 1.171744622e-09 1.580279208e-09 2.016597899e-09 1.745859584e-09 1.931149886e-09 1.782942166e-09 1.935413746e-09 2.236869527e-09 2.432135992e-09 2.170589533e-09 2.168108264e-09 2.101400286e-09 2.32007045e-09 2.321875794e-09 2.651126205e-09 2.625841842e-09 2.805354626e-09 2.746258641e-09 2.71303712e-09 2.8947037e-09 3.021111868e-09 2.96107188e-09 3.53406331e-09 2.87945697e-09 3.86709981e-09 3.058885362e-09 2.901555783e-09 3.404009921e-09 4.351611625e-09 3.054699065e-09 4.530748903e-09 4.21173599e-09 4.207555162e-09 4.989694146e-09 5.476528409e-09 4.145218085e-09 4.795747474e-09 5.315460291e-09 4.713447897e-09 4.224580898e-09 4.33221759e-09 4.949874646e-09 4.726926458e-09 4.755498663e-09 4.339648649e-09 3.828515965e-09 3.630355655e-09 4.625377145e-09 2.912882163e-09 3.922909782e-09 3.995693348e-09 3.387062529e-09 3.638155554e-09 2.685898876e-09 3.084504205e-09 2.980740511e-09 2.832496975e-09 2.347710994e-09 2.923979793e-09 2.342424338e-09 3.173059317e-09 2.80933508e-09 2.741893334e-09 3.060882059e-09 2.491203329e-09 3.172294565e-09 2.952962453e-09 2.985916817e-09 2.898221363e-09 2.205876677e-09 2.801717515e-09 3.103266878e-09 3.145995499e-09 2.674886949e-09 2.860225078e-09 3.473223039e-09 3.22108008e-09 3.155733411e-09 3.098200775e-09 4.113491238e-09 3.607454131e-09 4.016059699e-09 4.390890242e-09 4.438397742e-09 4.554895829e-09 4.142311386e-09 4.225886565e-09 4.479020023e-09 4.88578338e-09 4.643747641e-09 5.499384481e-09 4.781961589e-09 4.389063245e-09 6.776189739e-09 5.29796707e-09 4.26803133e-09 4.011916995e-09 5.592174025e-09 4.305371338e-09 3.084597237e-09 4.291121599e-09 3.222355353e-09 3.164736387e-09 3.083953448e-09 3.911134605e-09 3.046697417e-09 3.083600655e-09 2.806895585e-09 2.744054614e-09 2.740665781e-09 2.616752955e-09 2.892895351e-09 2.648225014e-09 2.410318289e-09 2.473826536e-09 2.268935681e-09 2.186380547e-09 2.161376133e-09 2.249554473e-09 2.166596732e-09 1.991971665e-09 2.018217986e-09 1.954199837e-09 1.998798071e-09 1.889894449e-09 1.702509418e-09 1.551662976e-09 1.356403419e-09 1.456266984e-09 1.217456385e-09 1.523270726e-09 1.159770312e-09 7.762905337e-10 7.636712151e-10 7.286697941e-10 5.07053759e-10 2.531113019e-10 2.172747701e-10 2.016107061e-10 5.988681559e-11 1.824412555e-11 1.875705633e-11 2.751516428e-12 1.888487799e-14 3.099270984e-14 4.941758928e-15 2.610178947e-16 7.234630241e-18 1.711397107e-17 2.336752587e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 6.670822162e-27 0 1.682909253e-18 5.484003121e-17 1.992878942e-17 1.736648866e-15 3.310640699e-15 6.057490936e-13 1.890597252e-12 8.946829121e-12 7.315362405e-12 1.128662921e-11 1.17634426e-10 3.732731865e-10 1.979119992e-10 5.436347733e-10 5.547087323e-10 8.636514055e-10 1.11011947e-09 1.142484249e-09 1.10402166e-09 1.349369991e-09 1.505262162e-09 1.244669392e-09 1.401416113e-09 1.559956856e-09 1.808607334e-09 1.902272026e-09 2.088604556e-09 1.968262838e-09 2.174532562e-09 2.013606761e-09 2.076002264e-09 2.442307918e-09 2.355218059e-09 2.385283367e-09 2.594178187e-09 2.510489548e-09 2.639728629e-09 2.56155527e-09 2.592004469e-09 2.730458072e-09 2.402080554e-09 3.072874789e-09 2.834884352e-09 2.633023896e-09 3.52643621e-09 4.027471854e-09 2.903240012e-09 4.044875083e-09 3.855909455e-09 3.523776866e-09 3.941534228e-09 4.425111423e-09 5.380727622e-09 4.318737052e-09 4.558711201e-09 4.542050297e-09 3.232197715e-09 4.086832907e-09 5.018587985e-09 6.044706254e-09 3.367957386e-09 2.561062929e-09 3.665040548e-09 3.208953589e-09 3.904644625e-09 4.472567816e-09 4.392026561e-09 4.100039324e-09 3.789987411e-09 3.678269951e-09 3.342911637e-09 3.043957629e-09 3.257871305e-09 2.691028558e-09 2.828643597e-09 2.611386139e-09 2.968285386e-09 2.829917643e-09 2.957469823e-09 2.501300624e-09 2.640497698e-09 2.768069396e-09 2.92997882e-09 2.898101303e-09 2.774215912e-09 2.027406097e-09 2.804170189e-09 2.532436159e-09 2.008103849e-09 3.06970972e-09 2.723374807e-09 3.843144478e-09 2.950725554e-09 2.789315528e-09 3.73847776e-09 2.617496342e-09 2.929127087e-09 3.101833398e-09 3.888028649e-09 3.211584039e-09 3.459702676e-09 3.543089322e-09 4.530038997e-09 3.927461484e-09 4.051928849e-09 4.247882416e-09 3.894863603e-09 4.823217009e-09 3.93766631e-09 5.206662947e-09 3.349559767e-09 4.093999223e-09 3.675069679e-09 4.661516783e-09 3.947712723e-09 3.396166887e-09 4.595719726e-09 4.570844207e-09 4.012214363e-09 4.382901509e-09 3.540755775e-09 2.735294499e-09 3.118977733e-09 2.782600658e-09 2.953852963e-09 3.028232074e-09 3.018226189e-09 3.066123285e-09 2.766637929e-09 2.749272036e-09 2.590245899e-09 2.473049673e-09 2.72564431e-09 2.762494782e-09 2.611028587e-09 2.601702759e-09 2.136280948e-09 2.498807949e-09 2.049657093e-09 2.155662055e-09 2.158645282e-09 2.132267623e-09 2.07516432e-09 2.018553123e-09 1.901751451e-09 1.846247625e-09 1.994199322e-09 1.417370149e-09 1.6995708e-09 1.478918742e-09 1.275121532e-09 1.287656014e-09 1.237704229e-09 7.48694098e-10 7.108711964e-10 3.739356251e-10 5.963611714e-10 2.498242941e-10 3.009483551e-10 1.979710788e-10 1.36522226e-10 3.064998646e-12 1.662607794e-12 1.46416009e-12 7.994701227e-15 3.380322297e-14 1.21123346e-14 1.274724403e-16 3.390765293e-17 4.593296411e-19 2.884528664e-18 1.166473686e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.999012966e-18 1.867442865e-17 6.200293882e-16 6.80049729e-17 1.827763653e-14 1.587483369e-13 6.191507547e-13 1.942072322e-12 8.867140491e-13 1.807984597e-10 1.932975121e-10 2.985406671e-10 1.869677645e-10 4.018527381e-10 6.266197794e-10 9.153645419e-10 1.112575307e-09 1.13331032e-09 1.321959462e-09 1.090459484e-09 1.366070306e-09 1.502180796e-09 1.508628159e-09 1.577641196e-09 2.038254822e-09 1.891470341e-09 2.06407789e-09 2.095585657e-09 1.81235198e-09 2.211571251e-09 2.269529353e-09 2.025629358e-09 1.969250026e-09 2.19844675e-09 2.266613917e-09 2.297533448e-09 2.709830195e-09 2.299771606e-09 2.638795596e-09 2.490024728e-09 2.899488966e-09 2.861788473e-09 2.804627534e-09 2.93693501e-09 3.174553264e-09 3.210132068e-09 3.438912241e-09 2.86464972e-09 4.361960036e-09 3.91190079e-09 3.924029831e-09 3.829141797e-09 2.984220276e-09 4.74959648e-09 4.034651763e-09 5.096129884e-09 3.698109374e-09 4.7105095e-09 4.627047749e-09 5.23769258e-09 4.207364774e-09 4.353021907e-09 5.531912014e-09 3.806213168e-09 4.044326656e-09 3.748463811e-09 4.026227451e-09 3.636107389e-09 3.761450691e-09 4.031704658e-09 2.812118476e-09 3.320578947e-09 3.322474654e-09 3.343207332e-09 3.222205357e-09 3.386157154e-09 2.272236642e-09 2.609400771e-09 2.849377965e-09 2.351973435e-09 3.368769432e-09 2.994424102e-09 2.467627905e-09 2.799613659e-09 2.357083737e-09 2.524847432e-09 2.508519531e-09 2.969647218e-09 2.52936665e-09 2.35873849e-09 2.920826439e-09 3.404673898e-09 2.964996686e-09 2.532674515e-09 2.361927876e-09 2.722151984e-09 3.344881386e-09 3.192026421e-09 3.724538395e-09 3.606590182e-09 3.894590977e-09 3.916008052e-09 3.439740396e-09 3.98301663e-09 3.115399879e-09 4.239942621e-09 3.24006588e-09 4.067489097e-09 3.056922036e-09 3.632142019e-09 5.509151754e-09 4.837908949e-09 5.015457767e-09 3.145561867e-09 5.061520473e-09 4.036774023e-09 4.101267428e-09 5.054718236e-09 4.280988835e-09 4.125351016e-09 4.931741287e-09 3.12728831e-09 3.260550082e-09 3.688402258e-09 2.915349447e-09 4.383121493e-09 2.687257898e-09 3.294966703e-09 2.917313322e-09 2.730132689e-09 2.860184373e-09 2.386293879e-09 2.798027847e-09 2.172667844e-09 2.156157148e-09 2.485287686e-09 2.488198527e-09 2.235227583e-09 2.17804624e-09 2.148983989e-09 2.000136955e-09 2.075681165e-09 1.984092218e-09 1.737172099e-09 1.870174732e-09 1.592838109e-09 1.837843284e-09 1.505068696e-09 1.358552643e-09 1.507389715e-09 1.291846013e-09 1.209572406e-09 1.0502251e-09 1.069606107e-09 8.740955837e-10 6.308234263e-10 4.092094265e-10 2.280843031e-10 2.84304994e-10 2.039450669e-10 4.789272236e-11 1.163524281e-10 3.391392461e-11 1.400860776e-12 2.317868008e-13 9.991348385e-14 5.281747052e-16 1.895156862e-15 1.515249305e-17 4.520028477e-17 4.455873852e-19 4.230349408e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.007019744e-18 2.599811481e-17 9.507393589e-17 1.841112019e-16 2.348361592e-15 6.908526454e-14 2.953077216e-14 3.211243128e-14 1.225125187e-12 1.681973041e-10 1.874967565e-10 2.590385124e-10 7.203576639e-11 3.140234016e-10 5.659024117e-10 6.269588244e-10 8.517644676e-10 1.17079893e-09 1.148360361e-09 1.168246497e-09 1.160709816e-09 1.245803796e-09 1.387629297e-09 1.693014753e-09 1.580779331e-09 1.724155455e-09 1.613668557e-09 1.716442449e-09 1.833854904e-09 1.946316436e-09 2.276146701e-09 2.118796516e-09 2.120334746e-09 2.044228376e-09 2.339007289e-09 2.070606222e-09 2.538874697e-09 2.500336585e-09 2.743652586e-09 2.398530849e-09 2.520212406e-09 2.814771722e-09 2.823338193e-09 2.970735041e-09 3.027979419e-09 3.013442501e-09 2.846985984e-09 3.615338376e-09 4.629077865e-09 3.919435892e-09 3.049279189e-09 3.714210851e-09 4.692600115e-09 3.903319027e-09 3.791645242e-09 4.714979647e-09 4.216754187e-09 4.493929839e-09 4.617358245e-09 2.125945104e-09 4.614204025e-09 4.528627585e-09 3.558019189e-09 3.832249312e-09 3.074171959e-09 3.324500193e-09 5.416616041e-09 4.467320955e-09 3.745595738e-09 4.181377311e-09 3.199735741e-09 4.083325433e-09 3.625922933e-09 3.503464723e-09 2.90157708e-09 2.500551005e-09 3.17261284e-09 2.78807515e-09 3.53866179e-09 3.155240364e-09 2.722324363e-09 3.289929974e-09 2.666524869e-09 2.285664851e-09 3.212720806e-09 2.258021937e-09 2.975892037e-09 2.812464551e-09 1.783941193e-09 2.993303354e-09 1.945437777e-09 2.895872038e-09 2.79140891e-09 3.056607739e-09 3.30565577e-09 2.228960306e-09 2.755717464e-09 2.223932296e-09 3.576643228e-09 3.080414137e-09 3.430646012e-09 3.274433614e-09 3.753202885e-09 3.632548778e-09 4.353663796e-09 3.929033921e-09 3.615269124e-09 4.023400889e-09 4.644488823e-09 3.553370762e-09 4.056286352e-09 3.380076198e-09 4.401212215e-09 5.168509451e-09 4.642621231e-09 4.902909542e-09 3.751351926e-09 2.823751149e-09 4.526453633e-09 3.657560755e-09 4.804281807e-09 4.499756716e-09 4.050187409e-09 3.135391425e-09 3.661048871e-09 3.035075619e-09 2.65773322e-09 2.697300673e-09 2.966891491e-09 2.640022417e-09 2.796795751e-09 2.369075737e-09 2.501110655e-09 2.433363065e-09 2.455967923e-09 2.40358121e-09 2.390985778e-09 2.105676309e-09 2.048588809e-09 2.213068952e-09 1.940717815e-09 1.885989253e-09 2.081471584e-09 1.732952992e-09 2.109160382e-09 1.896186254e-09 1.905699001e-09 1.718459191e-09 1.759800593e-09 1.607679436e-09 1.549516439e-09 1.510968322e-09 1.14444726e-09 1.179142896e-09 9.494754473e-10 8.11713724e-10 6.052593571e-10 5.993749069e-10 2.747001715e-10 1.026706318e-10 3.618867086e-10 6.054872899e-11 1.968180306e-11 1.154302273e-12 2.125544784e-14 1.942548537e-13 6.423537951e-15 9.500214901e-16 2.081353248e-16 8.774872294e-17 1.140848482e-20 4.063989923e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.575309011e-19 1.21700112e-17 0 1.565348167e-17 4.698108346e-16 1.59166778e-15 3.991937865e-14 3.654179889e-15 4.956944925e-12 7.536051711e-11 1.138850764e-11 1.777053542e-10 7.633910957e-11 1.214021351e-10 4.025937037e-10 5.635931771e-10 8.184998846e-10 1.229113029e-09 1.229291289e-09 1.233735707e-09 1.386889372e-09 1.256384521e-09 1.386514703e-09 1.631983033e-09 1.569032703e-09 1.925576069e-09 1.596216117e-09 1.90470111e-09 1.802974333e-09 2.018064177e-09 1.962872642e-09 2.286149706e-09 2.096333923e-09 2.117460425e-09 2.280679346e-09 2.581012177e-09 2.669555873e-09 2.409846592e-09 2.336850224e-09 2.520934889e-09 2.726610368e-09 2.848331051e-09 2.294754485e-09 3.307459562e-09 3.450397842e-09 3.265992232e-09 2.931573882e-09 2.600082434e-09 3.281684102e-09 3.419449366e-09 5.125255863e-09 4.870891291e-09 4.624310325e-09 4.88711314e-09 3.409080412e-09 4.746782761e-09 6.161155849e-09 4.180850422e-09 5.153597657e-09 3.82576683e-09 4.431228926e-09 4.081276127e-09 5.079892142e-09 3.642106024e-09 4.217367253e-09 3.434514038e-09 3.241394898e-09 2.434414467e-09 4.526424614e-09 3.609400962e-09 3.365641285e-09 2.749910192e-09 2.827881184e-09 2.627164942e-09 1.957509825e-09 2.507773406e-09 2.462638761e-09 2.749837076e-09 2.783066703e-09 2.56002068e-09 2.123528513e-09 2.723748397e-09 2.442324262e-09 2.770173268e-09 2.06344892e-09 3.02195463e-09 2.624217534e-09 2.377239795e-09 2.315162881e-09 3.125205539e-09 2.727543187e-09 2.890921166e-09 3.507904119e-09 3.113091729e-09 2.804337799e-09 2.71927015e-09 3.20445698e-09 2.834267747e-09 2.816458238e-09 3.383950007e-09 3.026736563e-09 3.047313966e-09 2.905307037e-09 4.006179348e-09 3.090474281e-09 4.824311055e-09 4.481459966e-09 3.170826298e-09 3.841879583e-09 2.972034118e-09 4.162644684e-09 4.385843077e-09 3.888058658e-09 4.337857713e-09 4.820506538e-09 4.597126834e-09 3.885004424e-09 4.696695191e-09 4.47597556e-09 3.399194734e-09 2.966393834e-09 3.361218506e-09 2.771574704e-09 2.826857713e-09 3.79654844e-09 3.439899024e-09 3.641791202e-09 2.909453218e-09 2.522249924e-09 2.810213686e-09 2.616214646e-09 2.745926488e-09 2.523753315e-09 2.678883068e-09 2.342419884e-09 2.301461544e-09 2.174563861e-09 2.295196524e-09 2.509909155e-09 2.081259155e-09 1.694398381e-09 2.0164363e-09 1.961504182e-09 1.86176514e-09 1.598903442e-09 1.706334194e-09 1.872975427e-09 1.649713698e-09 1.407721357e-09 1.450075714e-09 1.28110434e-09 1.240723765e-09 1.313253047e-09 1.243239261e-09 9.448229309e-10 7.178054984e-10 6.222059385e-10 4.437302194e-10 1.965597856e-10 1.358883455e-10 1.784138284e-10 1.661710827e-10 3.660811922e-12 7.030073354e-13 7.465221335e-14 5.252171346e-14 2.988047699e-15 3.639257379e-16 2.13119769e-15 1.545963253e-18 0 0 4.303404135e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.863774587e-19 9.613001725e-18 8.400557902e-17 1.376142202e-16 8.302899905e-17 5.226566114e-16 4.345780127e-13 9.598889271e-14 1.220083426e-12 3.842917524e-12 1.716225915e-10 8.776739991e-11 5.788466453e-11 3.048166106e-10 3.785101743e-10 4.184505519e-10 8.490631568e-10 7.775172021e-10 9.216096427e-10 1.215568362e-09 1.442705875e-09 1.311569262e-09 1.649294613e-09 1.373347244e-09 1.605284212e-09 1.888982618e-09 1.744144513e-09 1.85787997e-09 1.651362358e-09 1.895185647e-09 1.664217908e-09 1.976093574e-09 2.185617846e-09 2.099932491e-09 2.193637179e-09 2.303640644e-09 2.569414695e-09 2.406518745e-09 2.569998683e-09 2.458546851e-09 2.693787742e-09 2.671184584e-09 2.867514967e-09 2.957414744e-09 2.709161545e-09 3.058282623e-09 2.869047192e-09 3.423562994e-09 2.891548334e-09 4.266770206e-09 3.078260683e-09 2.649602804e-09 4.007496609e-09 4.704212389e-09 3.522476601e-09 3.808259411e-09 3.048379184e-09 5.210951842e-09 4.241371227e-09 3.582700079e-09 3.021886191e-09 4.236410738e-09 3.594496097e-09 4.095952153e-09 3.492768043e-09 4.543213045e-09 3.981774403e-09 3.910994771e-09 4.67432526e-09 3.224242345e-09 3.605785017e-09 3.078815067e-09 3.272017885e-09 2.625783399e-09 3.373873973e-09 2.12351691e-09 2.673633076e-09 2.370834539e-09 3.179527769e-09 2.709775698e-09 2.486382594e-09 2.626386409e-09 3.406549352e-09 2.998588732e-09 2.243608415e-09 2.438977365e-09 2.56208231e-09 2.664796541e-09 2.533269055e-09 2.556996649e-09 3.06205974e-09 2.634940039e-09 2.343067012e-09 3.089405913e-09 2.306439297e-09 2.673229579e-09 2.5557687e-09 2.492545143e-09 2.93753914e-09 2.70741006e-09 3.30346563e-09 4.273913809e-09 2.46398498e-09 3.572523935e-09 3.304598354e-09 3.991782103e-09 3.073695753e-09 3.089183403e-09 4.029883711e-09 5.124911077e-09 4.478783129e-09 4.966708629e-09 4.20811216e-09 4.689868932e-09 4.930187805e-09 4.792969033e-09 3.750744166e-09 3.342489913e-09 4.459736388e-09 2.755018439e-09 4.837219307e-09 4.171055052e-09 3.297182928e-09 2.754141631e-09 3.503211619e-09 3.116659026e-09 2.917704007e-09 2.70462004e-09 2.470532427e-09 2.574967499e-09 2.861977273e-09 2.591998991e-09 2.513807981e-09 2.653147423e-09 2.540640713e-09 2.260854771e-09 2.590791404e-09 2.329144255e-09 2.04322269e-09 2.084716833e-09 2.012022781e-09 2.112313144e-09 2.038569587e-09 1.730788117e-09 1.831721048e-09 1.47142768e-09 1.519636112e-09 1.725452687e-09 1.478473737e-09 9.660304325e-10 1.26968393e-09 1.18939998e-09 1.125127603e-09 1.107111229e-09 1.006042656e-09 7.352839395e-10 5.745346544e-10 3.515840401e-10 1.77604487e-10 2.498528393e-10 1.586557771e-10 1.176308195e-10 2.697076262e-12 8.247152802e-12 1.888122047e-12 2.276847192e-13 3.376587415e-15 4.695617259e-16 8.044968741e-17 1.894880057e-17 4.984170627e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.147088497e-18 0 2.409489567e-17 5.823090905e-16 3.829321301e-18 1.895400947e-17 3.898184191e-14 1.370761377e-15 2.69817431e-13 1.12213516e-12 1.01442639e-11 2.951511933e-10 2.403543341e-11 2.961171109e-10 2.614152521e-10 1.901237482e-11 6.531586754e-10 7.191589927e-10 1.052758724e-09 1.109148661e-09 1.071186203e-09 1.421121321e-09 1.244052033e-09 1.584728687e-09 1.618295094e-09 1.594044554e-09 1.700698629e-09 1.692379941e-09 1.882859693e-09 1.867818791e-09 1.766666778e-09 2.012641024e-09 2.04813109e-09 2.142593733e-09 2.025570372e-09 2.106264192e-09 2.173380042e-09 2.483967235e-09 2.099136294e-09 2.311887138e-09 2.407254774e-09 2.548672113e-09 2.542211814e-09 2.531897057e-09 2.68240977e-09 2.891734655e-09 3.073064613e-09 4.287120573e-09 4.134121093e-09 3.786826552e-09 3.914265905e-09 3.573773666e-09 4.527412967e-09 2.69322586e-09 4.458496384e-09 4.263027811e-09 3.48671778e-09 5.612462692e-09 5.20251099e-09 4.929290305e-09 4.469196383e-09 5.140675502e-09 4.338069827e-09 3.468446411e-09 3.310580205e-09 3.507233165e-09 4.041947941e-09 4.620359756e-09 3.48994398e-09 3.232250175e-09 3.504060814e-09 3.733965654e-09 3.274146754e-09 3.521756727e-09 3.33741349e-09 2.97677014e-09 2.998174304e-09 3.038650566e-09 3.352851342e-09 2.859746513e-09 2.988823431e-09 2.447371323e-09 2.402267497e-09 2.156338749e-09 2.465414246e-09 2.604987387e-09 3.020394842e-09 3.141815411e-09 3.117261259e-09 2.737124471e-09 3.066781276e-09 2.787394316e-09 2.974412534e-09 2.383961848e-09 2.558939331e-09 2.52610267e-09 2.213511299e-09 2.79525136e-09 3.59269649e-09 2.251958518e-09 2.620933886e-09 3.014448012e-09 2.837420251e-09 3.526710329e-09 3.306974888e-09 4.726854425e-09 4.715893126e-09 3.949474153e-09 3.577492834e-09 5.199005985e-09 3.270792098e-09 4.046106192e-09 5.353027496e-09 5.202957706e-09 4.08035228e-09 4.7744989e-09 4.353196177e-09 4.404335696e-09 4.031596956e-09 3.31730822e-09 5.156626043e-09 5.429358081e-09 3.481894297e-09 3.604570593e-09 3.523428413e-09 3.016585966e-09 3.607428904e-09 2.935142757e-09 3.190210319e-09 2.731699382e-09 2.774166915e-09 2.68727417e-09 2.640428693e-09 2.452060398e-09 2.308342341e-09 2.435567226e-09 2.342938727e-09 2.390834205e-09 2.110676557e-09 2.250625792e-09 2.152120539e-09 1.939024454e-09 1.916516277e-09 1.710729164e-09 2.147769933e-09 1.809040433e-09 1.530613327e-09 1.888530985e-09 1.666014576e-09 1.810648505e-09 1.394426441e-09 1.438926355e-09 1.225741959e-09 1.010186862e-09 1.046158972e-09 8.929304128e-10 8.440691778e-10 6.713478207e-10 2.294551459e-10 2.020535282e-10 2.289439864e-10 2.589908014e-10 9.778816879e-11 2.268586834e-12 6.129932266e-12 7.958551191e-13 4.774562039e-14 2.711373575e-15 3.729814909e-15 2.034648687e-15 6.056655824e-20 0 7.45518294e-18 3.538909711e-22 0 0 0 0 0 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.615785448e-17 2.294286867e-16 6.490641901e-16 7.085553091e-15 1.617910676e-13 1.358447726e-13 4.882540396e-12 1.341474248e-11 1.993526491e-10 9.158765283e-11 3.198751547e-10 2.095133704e-10 1.855367731e-10 3.831997359e-10 7.978031843e-10 5.822770023e-10 1.004268628e-09 1.022893865e-09 1.28065735e-09 1.234326536e-09 1.420103568e-09 1.515190426e-09 1.489564136e-09 1.637525103e-09 1.765512586e-09 1.848406284e-09 1.854302055e-09 1.767790633e-09 1.935296925e-09 1.91531899e-09 2.167920576e-09 2.210136198e-09 2.159653776e-09 2.141817692e-09 2.374163586e-09 2.251503637e-09 2.276250542e-09 2.354163334e-09 2.444049103e-09 2.456386852e-09 2.662415764e-09 2.748065056e-09 2.632810638e-09 3.205626846e-09 1.99783562e-09 3.09782293e-09 3.370247258e-09 2.947822503e-09 3.35988338e-09 3.972144255e-09 3.280305465e-09 4.401765779e-09 3.947110865e-09 2.869684333e-09 4.233013518e-09 3.929073871e-09 4.172549653e-09 4.601657261e-09 3.816401366e-09 4.371997029e-09 4.384145477e-09 3.462363507e-09 5.867562204e-09 3.674830967e-09 2.993491887e-09 4.50639795e-09 4.06381121e-09 3.772985653e-09 3.312475635e-09 2.830180261e-09 3.484595832e-09 2.252379595e-09 2.996805245e-09 2.489708998e-09 2.961005816e-09 2.73680617e-09 2.215632222e-09 2.398751173e-09 2.162608205e-09 2.987855921e-09 2.362970263e-09 2.829966077e-09 2.225080507e-09 2.210297226e-09 1.918652808e-09 1.920439951e-09 2.207281742e-09 2.600922142e-09 2.664813554e-09 2.681725397e-09 2.042441937e-09 2.954284947e-09 2.700447625e-09 2.764660517e-09 2.998954976e-09 3.286334953e-09 3.003697359e-09 2.592408943e-09 3.181263281e-09 3.310166607e-09 3.320682872e-09 3.002542218e-09 2.796619322e-09 3.569960526e-09 3.759597905e-09 5.996254539e-09 4.891638795e-09 3.098792664e-09 3.589884828e-09 3.45633145e-09 4.513537088e-09 4.959205042e-09 4.701370743e-09 2.862874905e-09 3.194799766e-09 3.035308654e-09 4.76077717e-09 3.862980017e-09 4.538796555e-09 4.927531197e-09 5.31304889e-09 3.430364947e-09 2.329264946e-09 3.238472784e-09 3.33602749e-09 2.72876893e-09 2.456106994e-09 2.266422668e-09 2.443356827e-09 2.481712158e-09 2.188576548e-09 2.060624815e-09 2.108389654e-09 2.216823071e-09 2.263714109e-09 2.070981622e-09 1.567977574e-09 2.070544853e-09 1.974530611e-09 1.76823839e-09 1.786386173e-09 1.821285725e-09 1.518095139e-09 1.698108267e-09 1.612131766e-09 1.188996469e-09 1.555016407e-09 1.409494469e-09 1.214123894e-09 1.429501123e-09 9.613577751e-10 1.179523626e-09 8.26281209e-10 7.316583891e-10 7.810583288e-10 3.120971854e-10 1.817870074e-12 2.333850282e-10 1.903384382e-11 1.590194619e-10 5.34986611e-11 4.692392486e-13 4.015782325e-12 2.857745816e-14 8.386685308e-15 1.042455631e-15 4.218854913e-16 2.013490111e-16 6.749269011e-16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 5.06234054e-14 0 0 0 0 0 0 0 0 0 0 0 0 5.893544736e-23 1.28353881e-17 4.519441537e-17 6.728568841e-15 4.457153203e-15 1.7300278e-13 1.267056466e-12 9.062361276e-13 4.944082597e-11 5.622852397e-11 1.516138923e-10 1.619473195e-10 2.375966592e-10 5.529580594e-10 5.793531645e-10 7.113676169e-10 8.773738634e-10 1.122229467e-09 1.162170078e-09 9.653315125e-10 1.194447952e-09 1.470915633e-09 1.431269821e-09 1.661471681e-09 1.775278724e-09 1.811059362e-09 1.846310394e-09 1.88010521e-09 1.940974869e-09 1.973492862e-09 1.824704028e-09 2.007683737e-09 1.936356097e-09 1.920413641e-09 2.187902147e-09 1.935742021e-09 2.249112291e-09 2.480933113e-09 2.399131762e-09 2.713417961e-09 2.676031557e-09 2.396087684e-09 2.552025657e-09 2.858916529e-09 2.883666891e-09 2.51808805e-09 3.740350761e-09 3.015576881e-09 2.669107389e-09 2.999163806e-09 2.617873553e-09 3.873695314e-09 4.286859785e-09 4.180321953e-09 3.205412985e-09 3.90060561e-09 3.526006858e-09 3.569075241e-09 3.080890335e-09 4.628672905e-09 3.187731771e-09 4.520174958e-09 2.041732773e-09 3.817428916e-09 3.491493032e-09 3.08040792e-09 4.361218559e-09 3.683655791e-09 3.773000958e-09 3.578803858e-09 3.439245188e-09 2.191732283e-09 2.659597028e-09 2.325193621e-09 3.094616996e-09 2.525740435e-09 3.161235558e-09 3.061760485e-09 2.34339234e-09 2.169189027e-09 2.201243097e-09 2.303473666e-09 2.742975617e-09 2.644523627e-09 2.501615689e-09 2.559665046e-09 2.464276215e-09 2.753865409e-09 2.397360567e-09 2.770648386e-09 1.929839674e-09 2.010695113e-09 2.95934543e-09 2.335871507e-09 1.772268692e-09 2.589743375e-09 2.169413578e-09 2.949734892e-09 3.401578539e-09 2.59892697e-09 2.605970228e-09 3.462336012e-09 2.952827835e-09 3.373176436e-09 4.009063487e-09 3.708953794e-09 3.31209915e-09 2.924372843e-09 3.883736324e-09 3.759556686e-09 3.894307752e-09 3.614893993e-09 3.699517228e-09 3.059572904e-09 4.699645173e-09 4.212536109e-09 2.931295738e-09 4.256458377e-09 3.128480588e-09 3.226457468e-09 3.274944656e-09 4.748623837e-09 2.572331238e-09 2.889156947e-09 3.180190938e-09 2.851171341e-09 2.538716443e-09 2.706745361e-09 2.6975383e-09 2.542579918e-09 2.378799234e-09 2.373073293e-09 2.404031169e-09 2.194957261e-09 2.104439084e-09 2.194099084e-09 2.162976314e-09 1.956234325e-09 2.01102671e-09 1.982920095e-09 2.191042182e-09 1.745374991e-09 1.946915265e-09 1.842904257e-09 1.674809657e-09 1.922659295e-09 1.614750408e-09 1.530513785e-09 1.340282056e-09 1.273692576e-09 9.894854728e-10 1.238575567e-09 9.856911671e-10 1.047194323e-09 8.281180038e-10 5.703459957e-10 2.071843286e-10 2.239222118e-10 1.504174969e-10 2.000446058e-10 8.67474335e-11 1.316751841e-10 1.754913691e-11 7.775722314e-15 4.77824247e-15 9.463667293e-16 4.839173228e-17 9.224269199e-16 1.01429039e-17 0 1.055803945e-18 1.868677775e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 6.158117571e-19 0 5.623849974e-19 7.346897295e-18 1.655134837e-16 3.624182042e-17 7.502401802e-15 4.105296891e-13 5.836964995e-14 1.663268585e-11 6.286343206e-11 1.720754085e-10 5.707644065e-11 2.582447004e-11 2.94019406e-10 3.610447047e-10 4.567634402e-10 7.84656874e-10 9.40479412e-10 9.573110147e-10 1.161004193e-09 1.178131741e-09 9.114729505e-10 1.290990431e-09 1.424284978e-09 1.468687495e-09 1.283382016e-09 1.646210335e-09 1.451907923e-09 1.82107526e-09 2.112561224e-09 1.832143509e-09 1.73518531e-09 1.883910254e-09 2.023677032e-09 2.181038408e-09 1.977882331e-09 1.97215165e-09 2.041892864e-09 2.61098295e-09 2.357787782e-09 2.363025156e-09 2.691299943e-09 2.563813408e-09 2.972569886e-09 2.710372211e-09 2.304586658e-09 2.519152868e-09 3.070461458e-09 3.286253358e-09 3.516205031e-09 2.988094721e-09 3.391496148e-09 3.252080811e-09 4.507504216e-09 3.644759968e-09 4.113303124e-09 4.017434902e-09 4.122867398e-09 3.241221434e-09 2.697024158e-09 2.366881168e-09 3.15215066e-09 3.118877149e-09 3.816156445e-09 4.620573272e-09 3.548048195e-09 4.121762299e-09 3.777308191e-09 3.154261667e-09 2.804026446e-09 2.255821598e-09 3.148658173e-09 2.912690533e-09 3.359566006e-09 3.059081872e-09 2.521116107e-09 2.194245079e-09 2.367579575e-09 2.503371362e-09 2.68235518e-09 2.013448751e-09 2.601411906e-09 2.436980794e-09 2.109356337e-09 2.244520744e-09 2.197851369e-09 2.454371196e-09 1.624380377e-09 2.592872404e-09 2.025488207e-09 3.004640397e-09 2.344092005e-09 2.546413404e-09 1.785343932e-09 2.992147111e-09 2.041920782e-09 2.080670669e-09 2.732288777e-09 3.545455212e-09 3.127550459e-09 2.799807483e-09 3.125541945e-09 3.505021594e-09 2.626242008e-09 3.644528313e-09 3.685677118e-09 4.384103455e-09 2.76134353e-09 3.946628952e-09 3.59642391e-09 5.108263684e-09 3.618456639e-09 4.295171898e-09 3.325689066e-09 3.035349165e-09 3.959289297e-09 3.181741545e-09 3.198320684e-09 3.074179512e-09 3.716530145e-09 4.005010034e-09 2.724741098e-09 4.799752442e-09 3.145667866e-09 4.022324301e-09 2.71892118e-09 2.921018847e-09 2.384455436e-09 2.324783332e-09 2.128434631e-09 2.221006139e-09 2.465281752e-09 2.261540988e-09 2.393910469e-09 2.179906603e-09 2.223227729e-09 2.163691375e-09 1.981767221e-09 1.957773254e-09 1.901918476e-09 1.98623141e-09 1.754219031e-09 1.787380192e-09 1.521747562e-09 2.006552287e-09 1.67473023e-09 1.559276576e-09 1.588150686e-09 1.315841682e-09 1.546643914e-09 1.362641873e-09 1.201285949e-09 1.000531614e-09 1.189238227e-09 6.669263977e-10 6.672209394e-10 4.364599873e-10 3.168288501e-10 4.842006135e-11 2.763975289e-10 2.200767902e-10 1.845793456e-10 5.135153258e-12 2.018166057e-13 7.046612326e-13 5.614700688e-13 2.626428452e-15 4.697394223e-17 7.554751838e-17 6.107074087e-17 6.762224252e-19 3.567081055e-26 0 0 0 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.92390845e-23 0 8.740000553e-18 2.098178651e-17 4.928098876e-17 3.549122359e-16 1.059640595e-14 1.736308753e-13 1.259196295e-12 1.411363212e-12 1.30674583e-10 3.282048298e-11 2.902713624e-10 1.508608385e-10 1.920702621e-10 5.063529179e-10 4.342034737e-10 6.005724379e-10 7.347177965e-10 8.134898929e-10 9.68779425e-10 1.057543753e-09 1.241796335e-09 1.256048208e-09 1.404082402e-09 1.397960015e-09 1.633412183e-09 1.560419174e-09 1.66653014e-09 1.765365889e-09 1.668343396e-09 2.002856383e-09 1.763789442e-09 2.083416686e-09 2.087182755e-09 2.042414703e-09 2.011981066e-09 1.957500378e-09 2.065376343e-09 2.295375731e-09 2.338791675e-09 2.32263589e-09 2.152788672e-09 2.395980814e-09 3.241220661e-09 2.638299114e-09 2.219919279e-09 2.266434786e-09 3.132146142e-09 3.103650597e-09 2.881547114e-09 2.580168874e-09 4.318196372e-09 2.62609285e-09 3.376416982e-09 2.826797563e-09 2.557899634e-09 4.266435647e-09 3.536398751e-09 4.409396956e-09 4.421400698e-09 4.636710356e-09 4.412169355e-09 5.168478828e-09 3.526501595e-09 3.319830043e-09 3.331906392e-09 3.531157522e-09 2.980154488e-09 2.899760507e-09 3.255423799e-09 3.094830592e-09 3.159341208e-09 3.412784057e-09 3.691867187e-09 2.663295176e-09 2.574445599e-09 2.865395369e-09 2.24321398e-09 2.551785353e-09 2.736646367e-09 2.527358889e-09 2.395840934e-09 2.171917315e-09 1.919925251e-09 2.215268003e-09 1.734679332e-09 2.100094407e-09 2.235222154e-09 2.274864415e-09 2.253152754e-09 2.586400157e-09 1.794106702e-09 2.766343697e-09 2.09297158e-09 2.699152743e-09 3.070640386e-09 3.093439865e-09 2.558934637e-09 3.254743404e-09 2.646593344e-09 4.067474251e-09 3.602081365e-09 3.522495828e-09 4.215512255e-09 4.465560977e-09 3.891435918e-09 3.330064859e-09 4.500630162e-09 4.206437684e-09 4.716375565e-09 3.57525865e-09 4.914924125e-09 4.567980204e-09 4.55392299e-09 4.127213667e-09 4.440877071e-09 3.622366767e-09 3.178768101e-09 2.750777886e-09 4.883576156e-09 3.690058338e-09 3.440961591e-09 3.653140464e-09 3.045548643e-09 2.966828433e-09 2.443748064e-09 3.429234672e-09 2.270212972e-09 2.104843729e-09 2.467099355e-09 2.278909804e-09 2.384408453e-09 2.418165155e-09 2.39516376e-09 2.195054739e-09 2.099893332e-09 1.775609304e-09 1.932568832e-09 2.042176003e-09 1.828702336e-09 1.906196644e-09 1.840402734e-09 1.961563284e-09 1.633103515e-09 1.747352083e-09 1.568334374e-09 1.53098024e-09 1.419784028e-09 1.155074215e-09 1.23568392e-09 1.295495626e-09 9.510203954e-10 1.120251279e-09 1.05353153e-09 8.077212832e-10 6.286558318e-10 5.173313085e-10 2.205007842e-10 2.529244852e-10 1.788119557e-11 1.553004549e-10 2.495790701e-11 5.792122477e-11 1.362546441e-11 1.308713259e-12 7.897601497e-14 4.154385896e-15 1.232640023e-15 2.938835533e-17 3.567137621e-17 1.907242923e-17 9.626038834e-25 0 0 0 0 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.053340369e-17 1.736197032e-18 3.18591064e-18 2.607238328e-16 1.042685583e-17 2.559515684e-17 1.938071335e-14 4.420836494e-13 7.814313019e-12 7.232148138e-11 5.796570221e-11 1.572632564e-10 3.327275909e-10 4.080741929e-10 5.14175637e-10 5.042456953e-10 7.935070957e-10 8.922528387e-10 6.745520419e-10 9.376397973e-10 1.405696789e-09 1.088192544e-09 1.282073086e-09 1.413652355e-09 1.489896082e-09 1.409993292e-09 1.675177543e-09 1.565154969e-09 1.59799329e-09 1.825957212e-09 1.834975474e-09 1.650349542e-09 1.685185122e-09 1.982804591e-09 2.059443539e-09 2.232712588e-09 2.140274991e-09 2.134302736e-09 2.081171996e-09 2.342083784e-09 2.264859486e-09 2.1581747e-09 2.644270074e-09 2.36790895e-09 3.01294861e-09 2.679659023e-09 2.608778061e-09 2.834878674e-09 2.90820465e-09 2.052272581e-09 2.303920199e-09 4.503620722e-09 2.209426584e-09 3.590088199e-09 4.962500805e-09 3.534465452e-09 2.937866736e-09 4.112574367e-09 3.87655999e-09 3.289871928e-09 3.963747722e-09 3.888839774e-09 3.387445924e-09 3.699052459e-09 4.457247265e-09 3.272146563e-09 4.706389838e-09 3.886320024e-09 3.28644006e-09 2.691943656e-09 2.649891713e-09 2.564492688e-09 2.627374143e-09 2.548917954e-09 2.223304433e-09 2.135874292e-09 2.852890613e-09 3.038933716e-09 2.917026307e-09 2.191851365e-09 1.809672833e-09 2.441853604e-09 1.904356304e-09 2.176094587e-09 1.61612281e-09 2.27996414e-09 2.041086805e-09 2.340359505e-09 2.630930476e-09 2.039674523e-09 2.313919563e-09 3.171029371e-09 2.030944514e-09 1.993216685e-09 2.056994394e-09 1.97849367e-09 1.631716764e-09 2.360372437e-09 2.837412395e-09 2.3725351e-09 2.952345612e-09 2.967933243e-09 3.639299214e-09 3.559363576e-09 3.122820045e-09 4.577334591e-09 4.459279502e-09 4.824628128e-09 3.679506825e-09 3.626208057e-09 3.180628728e-09 5.258035972e-09 2.941449958e-09 3.901796915e-09 3.602430826e-09 2.474874207e-09 2.972549908e-09 4.183514274e-09 2.474059829e-09 2.907086048e-09 3.55220357e-09 4.288442202e-09 2.86910925e-09 3.237773711e-09 2.3586313e-09 2.821092348e-09 3.113865054e-09 2.610471817e-09 3.143699407e-09 2.19489069e-09 2.147328623e-09 1.98586742e-09 2.423349312e-09 2.327935028e-09 2.377412913e-09 1.934213552e-09 1.940445518e-09 1.995849522e-09 2.167800295e-09 1.965199233e-09 2.129946216e-09 1.895232286e-09 1.872316325e-09 1.83163376e-09 1.336057957e-09 1.580410026e-09 1.457511577e-09 1.608388071e-09 1.499114684e-09 1.484169535e-09 1.080126943e-09 1.140331788e-09 1.088494686e-09 9.527757478e-10 8.01085849e-10 7.16300552e-10 3.242998722e-10 2.13582109e-10 3.809039207e-11 1.954048449e-10 1.457717217e-10 1.139379182e-10 3.877100675e-12 4.310447928e-13 1.290153088e-12 1.624356885e-14 8.888459669e-17 1.042125224e-16 4.046388878e-16 1.006602762e-17 5.47027572e-18 1.773382552e-24 0 0 0 0 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.253181528e-19 1.508221249e-18 2.265574713e-17 8.850446504e-16 8.061207737e-15 1.638463944e-15 1.558616292e-13 4.181480128e-14 3.603805674e-12 3.601500086e-11 1.14308443e-10 1.025952901e-11 1.5141977e-10 4.253301563e-12 3.087309873e-10 6.728295034e-10 8.610352142e-10 8.03566998e-10 9.932223027e-10 1.34575789e-09 8.855165965e-10 1.170763011e-09 1.466834145e-09 1.244703883e-09 1.54327647e-09 1.476805177e-09 1.760286357e-09 1.605451932e-09 1.439897193e-09 1.484893868e-09 1.725567606e-09 1.499560159e-09 1.73454692e-09 1.820119467e-09 2.030858795e-09 1.98179235e-09 1.773287375e-09 2.120138658e-09 2.150167022e-09 2.002020304e-09 2.096014925e-09 2.274837848e-09 2.152033501e-09 2.992361054e-09 2.650002622e-09 2.700509057e-09 2.413456898e-09 2.899763382e-09 4.052750845e-09 3.657056986e-09 2.592690428e-09 3.93336827e-09 4.312873263e-09 3.58682664e-09 3.946237729e-09 3.92337643e-09 2.890665329e-09 4.51492237e-09 3.943972376e-09 3.114504573e-09 3.447421097e-09 2.857621408e-09 3.209979141e-09 3.201646994e-09 2.912013291e-09 2.931180329e-09 3.371416086e-09 3.380447378e-09 3.619379879e-09 2.520414488e-09 2.316210886e-09 2.139082422e-09 2.80017958e-09 2.843988275e-09 2.745606155e-09 2.702304651e-09 2.141637583e-09 2.847131384e-09 2.310873075e-09 2.44062585e-09 2.425678364e-09 1.849347721e-09 2.647667444e-09 2.333728289e-09 3.007015604e-09 2.028156708e-09 2.107224859e-09 2.057849749e-09 1.961539262e-09 2.535719234e-09 2.327901713e-09 2.150256225e-09 1.747181919e-09 2.046057419e-09 2.102508266e-09 2.773409376e-09 2.09451654e-09 2.173942935e-09 2.399829242e-09 2.911312146e-09 2.956387654e-09 1.936168779e-09 2.641915783e-09 2.714854587e-09 4.000720168e-09 2.054238415e-09 2.429113417e-09 3.432599196e-09 4.40600025e-09 4.428546674e-09 2.978472233e-09 3.970018714e-09 2.699307978e-09 3.280517041e-09 3.804179545e-09 3.456329405e-09 3.538302842e-09 3.951608407e-09 3.796322974e-09 4.254674385e-09 3.914549029e-09 2.635292722e-09 4.1459132e-09 2.602120888e-09 2.868329171e-09 2.310323554e-09 2.139827345e-09 2.22269521e-09 2.337005182e-09 2.149415796e-09 2.34757918e-09 2.550582995e-09 2.133376475e-09 1.979337115e-09 2.069169047e-09 1.881337705e-09 2.336114186e-09 1.834268627e-09 1.978681962e-09 2.114161421e-09 1.715279476e-09 1.936755702e-09 1.503065749e-09 1.652670098e-09 1.694152976e-09 1.698239609e-09 1.632112517e-09 1.432500396e-09 1.305663275e-09 1.314295016e-09 1.21455993e-09 1.190004904e-09 1.295300382e-09 8.267584552e-10 7.558198966e-10 7.541016625e-10 4.145651973e-10 5.515419895e-10 3.213012682e-10 2.536531794e-10 6.069473687e-12 4.466236502e-11 5.573993837e-12 1.657630299e-13 6.392343944e-13 9.577683405e-13 2.314208377e-15 4.844120224e-16 9.042352174e-18 6.579213255e-19 0 6.341673081e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.126516577e-19 0 4.097915028e-18 1.657997473e-16 1.599360166e-15 2.945074211e-15 1.148038151e-14 2.187133069e-13 3.100440429e-11 1.260581471e-11 1.601220376e-11 1.939583662e-10 2.611965638e-10 5.903780004e-11 4.261696023e-10 5.992597931e-10 5.61253875e-10 9.284434951e-10 1.176482349e-09 8.76644745e-10 1.066132802e-09 1.253607615e-09 1.269088539e-09 1.326381528e-09 1.543305939e-09 1.437053431e-09 1.566815226e-09 1.662316057e-09 1.284345935e-09 1.705846422e-09 1.758797736e-09 1.621888638e-09 1.824912114e-09 1.712374856e-09 2.031546548e-09 1.971051621e-09 2.214325611e-09 1.983474526e-09 2.114224198e-09 2.192755373e-09 2.082981034e-09 2.318359717e-09 2.228332387e-09 2.177298704e-09 2.376814315e-09 2.73830057e-09 3.234797174e-09 2.529337692e-09 2.661499393e-09 3.228142275e-09 2.612848896e-09 2.672487768e-09 2.819756544e-09 3.439635203e-09 3.401198481e-09 3.827498881e-09 3.152426579e-09 3.164009105e-09 4.096701669e-09 4.96894271e-09 3.292644121e-09 2.554585927e-09 3.831602496e-09 2.576731154e-09 3.940694425e-09 3.008162481e-09 1.96238451e-09 4.30263145e-09 3.072398354e-09 2.66703064e-09 3.114767717e-09 2.144173874e-09 2.574661801e-09 2.523652299e-09 2.59209378e-09 2.76081896e-09 2.649822248e-09 2.435445733e-09 2.40324963e-09 1.686787006e-09 1.939248834e-09 2.265794113e-09 1.85444516e-09 2.301233816e-09 2.260663099e-09 2.797375211e-09 2.448380321e-09 2.733900318e-09 2.503991701e-09 2.683689565e-09 2.385855714e-09 2.486882937e-09 2.011944226e-09 2.684999367e-09 2.459341178e-09 3.048838347e-09 2.578323781e-09 2.816168449e-09 2.70913302e-09 2.735238409e-09 2.892474398e-09 2.468827894e-09 3.345493141e-09 3.399949264e-09 4.238112087e-09 2.336059235e-09 3.554276165e-09 3.112863631e-09 2.009483963e-09 3.695787717e-09 3.751450822e-09 3.834113777e-09 3.883265352e-09 4.176502457e-09 3.850737312e-09 3.449053126e-09 3.106564152e-09 3.533556424e-09 2.768522423e-09 2.39726333e-09 3.158091449e-09 3.349673931e-09 2.106873124e-09 2.463589768e-09 2.129995314e-09 2.364442314e-09 3.100109388e-09 2.74043284e-09 2.147454971e-09 2.240371099e-09 2.132736562e-09 2.206775256e-09 2.325785219e-09 2.236804141e-09 2.110217265e-09 1.951302076e-09 2.054624625e-09 1.703084335e-09 1.934355222e-09 1.757722615e-09 1.899321844e-09 1.686191183e-09 1.767627601e-09 1.658885247e-09 1.4766766e-09 1.361648416e-09 1.387784208e-09 1.260108912e-09 1.416420102e-09 1.231032638e-09 1.34701249e-09 9.423663889e-10 9.949384695e-10 8.951665157e-10 7.90281469e-10 6.177097736e-10 5.514126413e-10 2.010328693e-10 2.47634318e-11 2.327373316e-10 2.003625376e-11 1.55882929e-11 2.702210132e-11 1.460371744e-11 5.215249064e-13 2.053776978e-15 2.53312723e-14 8.970471038e-18 1.162803293e-16 3.562479194e-17 2.916239431e-17 2.396738646e-21 0 0 0 0 0 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.144122401e-18 2.529863529e-17 1.110604234e-16 2.255657195e-15 1.852369265e-15 2.346489618e-14 2.693643825e-12 2.830711616e-12 3.666992981e-11 7.249210538e-11 2.065306798e-10 7.005964886e-11 3.438953886e-11 3.12731441e-10 3.164311819e-10 5.431609711e-10 8.327780315e-10 5.289439272e-10 8.102534526e-10 1.1716015e-09 9.073348005e-10 1.289659507e-09 1.234676203e-09 1.341619853e-09 1.333076183e-09 1.404212741e-09 1.285600383e-09 1.669533221e-09 1.617772187e-09 1.592340459e-09 1.907332227e-09 1.682114578e-09 1.952439963e-09 1.708480175e-09 2.015280535e-09 1.942978872e-09 2.03969696e-09 1.925290615e-09 2.112636794e-09 2.224893966e-09 2.029556582e-09 2.4388259e-09 2.332804496e-09 2.382941424e-09 2.949457928e-09 2.706094178e-09 3.133339019e-09 2.780223068e-09 2.491533633e-09 2.374970129e-09 2.602811555e-09 3.554110763e-09 3.289944973e-09 2.501778976e-09 4.052507846e-09 3.962720933e-09 3.610086646e-09 2.985763165e-09 2.914850869e-09 2.543024742e-09 4.069719023e-09 1.84867174e-09 2.679591092e-09 2.483252616e-09 3.381922873e-09 4.207549043e-09 2.811793568e-09 3.601007172e-09 2.357949173e-09 3.485196775e-09 2.267830988e-09 3.20087838e-09 2.531031934e-09 2.554896089e-09 2.377111537e-09 2.248790359e-09 1.902780775e-09 1.835485785e-09 2.431921584e-09 1.706261463e-09 2.191723259e-09 2.358383965e-09 2.029659995e-09 2.158309922e-09 2.525003842e-09 2.403249063e-09 2.143072639e-09 1.672796643e-09 2.283779592e-09 2.061620642e-09 1.851763548e-09 2.460441844e-09 2.196254119e-09 2.406332684e-09 2.742506747e-09 1.880123191e-09 2.279873769e-09 3.388614722e-09 2.326813159e-09 3.362498281e-09 2.775975116e-09 1.837226012e-09 3.161539477e-09 2.8160617e-09 2.53435969e-09 3.118873989e-09 2.990276989e-09 2.053640647e-09 2.660133629e-09 3.619012383e-09 3.899573207e-09 4.100052663e-09 4.312515168e-09 3.046269259e-09 3.717888007e-09 4.41537454e-09 2.176095262e-09 3.176991854e-09 2.980436708e-09 2.814839281e-09 4.137371964e-09 4.183110354e-09 2.617517289e-09 2.113239346e-09 2.605434361e-09 2.202443133e-09 2.340884931e-09 2.231224689e-09 1.928761067e-09 2.395189637e-09 1.892750108e-09 2.170852834e-09 1.871591047e-09 2.06149927e-09 2.027183934e-09 2.035867353e-09 1.821120989e-09 1.848155452e-09 1.922161363e-09 1.674215605e-09 1.616691825e-09 1.551185921e-09 1.643192262e-09 1.452720354e-09 1.453123347e-09 1.574848747e-09 1.393214969e-09 1.325320538e-09 1.053628995e-09 1.099840936e-09 9.826934473e-10 1.20150946e-09 7.111268756e-10 5.308652729e-10 6.223364536e-10 6.080726971e-10 3.289597968e-10 3.581150999e-11 1.456657683e-10 1.607276606e-11 2.984345387e-11 6.801450113e-12 2.077777321e-11 1.766913146e-12 8.529785827e-14 1.50579244e-15 7.138678395e-15 4.728986537e-16 4.959429352e-18 3.948251187e-18 5.869202629e-18 0 0 0 6.652406414e-13 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 3.683608826e-19 3.976917579e-19 1.092859704e-18 7.396883651e-19 7.437338148e-17 4.968107921e-15 6.872449131e-15 3.049337269e-14 2.85877005e-12 1.462649012e-12 1.756429914e-11 6.971238659e-11 2.272652834e-10 2.998657871e-10 8.287537583e-11 1.960948215e-10 6.598944112e-10 6.998898261e-10 7.383032005e-10 1.138352025e-09 8.860375209e-10 8.884750435e-10 1.000810752e-09 1.225346312e-09 1.199568044e-09 1.26018823e-09 1.431481222e-09 1.474653023e-09 1.55271115e-09 1.294985348e-09 1.613324245e-09 1.496990207e-09 1.811502458e-09 1.777238448e-09 1.597347218e-09 1.892889655e-09 1.459442786e-09 1.903124945e-09 1.812435131e-09 2.116898654e-09 1.946889525e-09 1.988636042e-09 1.952192857e-09 2.105705307e-09 2.207814278e-09 2.422666521e-09 2.099401234e-09 2.690187504e-09 2.755198757e-09 2.278558648e-09 2.886247342e-09 2.836772606e-09 2.240271453e-09 5.849939182e-09 3.664763329e-09 2.985277443e-09 3.422459481e-09 3.677511719e-09 2.885722257e-09 2.949556579e-09 3.761995821e-09 3.996425209e-09 2.134706964e-09 2.91570319e-09 2.525733269e-09 3.617020467e-09 2.759498096e-09 3.572691648e-09 3.260290507e-09 3.236539937e-09 3.293289375e-09 1.926885758e-09 2.904373165e-09 2.061886913e-09 2.900220211e-09 2.764162976e-09 2.325170455e-09 3.043088418e-09 2.818356861e-09 2.935927962e-09 1.94661046e-09 1.605963497e-09 2.521638137e-09 2.405042035e-09 2.194631016e-09 2.39088506e-09 2.178679726e-09 2.394695191e-09 2.238017073e-09 2.103891737e-09 2.271726744e-09 2.304991815e-09 2.420695589e-09 2.381831875e-09 2.387091951e-09 2.420222075e-09 2.701693304e-09 2.426556132e-09 1.919237922e-09 2.506940758e-09 2.649249101e-09 1.977210971e-09 3.000079331e-09 2.624637178e-09 2.659057084e-09 3.380382212e-09 3.521155131e-09 2.800379871e-09 1.911089048e-09 3.600984455e-09 1.997014462e-09 4.422985477e-09 2.951848382e-09 3.864303016e-09 2.660942511e-09 3.6169282e-09 3.903810209e-09 3.964999539e-09 2.107721226e-09 3.894713009e-09 2.364571853e-09 2.837857176e-09 2.734356488e-09 2.362262208e-09 2.981168936e-09 2.922036645e-09 3.469591731e-09 2.07401391e-09 2.288537412e-09 1.966608495e-09 2.380193235e-09 1.864090384e-09 2.425944996e-09 2.006026241e-09 2.024294661e-09 2.024765423e-09 1.856192964e-09 1.849976262e-09 1.636629135e-09 1.824345371e-09 1.800677669e-09 1.618861093e-09 1.358513458e-09 1.613155485e-09 1.342802004e-09 1.629653147e-09 1.376182818e-09 1.335705599e-09 1.306375808e-09 1.343978004e-09 1.497918424e-09 1.07659947e-09 1.000123661e-09 1.197506655e-09 1.018507402e-09 7.409509248e-10 6.937741264e-10 4.899087729e-10 2.14894335e-10 3.331033224e-10 2.07321124e-11 1.792445657e-10 8.671384468e-12 2.124038562e-11 9.749318344e-12 5.020430495e-14 1.460381085e-13 5.707601406e-14 2.080542248e-14 2.195424465e-16 3.266432951e-17 5.986608756e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.785746456e-19 1.576461869e-18 5.128740795e-17 3.345341548e-16 3.447748423e-16 4.529592463e-15 4.23868321e-13 9.752503189e-15 3.835124022e-13 2.473108777e-11 8.068094778e-11 1.801585661e-10 7.88954197e-11 1.835142423e-10 3.076363662e-10 3.892775919e-10 5.39745993e-10 5.134441406e-10 9.428383575e-10 1.193218484e-09 1.206116225e-09 1.041137245e-09 9.249807472e-10 1.185768639e-09 1.393957324e-09 1.151975136e-09 1.125970372e-09 1.512339343e-09 1.564879552e-09 1.467200221e-09 1.669052613e-09 1.368466988e-09 1.701930957e-09 1.611124306e-09 1.764114242e-09 1.745055565e-09 1.837624957e-09 2.292536882e-09 1.91139649e-09 2.18575105e-09 2.0846101e-09 2.289478234e-09 1.962166704e-09 2.192720917e-09 2.476801537e-09 1.880712315e-09 2.860243119e-09 2.823794172e-09 3.440478653e-09 3.256715617e-09 2.401094959e-09 2.037215836e-09 2.88921895e-09 3.128166611e-09 3.267786657e-09 2.980318522e-09 2.741462464e-09 3.348100753e-09 2.653464526e-09 2.928631144e-09 2.592606909e-09 3.607627559e-09 2.468386443e-09 2.988399319e-09 2.775710793e-09 3.002662421e-09 3.695996136e-09 2.828947162e-09 1.826813695e-09 2.923793513e-09 2.269874135e-09 2.797590621e-09 2.392716371e-09 2.369549963e-09 1.907465853e-09 2.307570234e-09 2.164458335e-09 2.898975122e-09 2.001614787e-09 2.994589917e-09 2.589424715e-09 2.335424568e-09 2.059164997e-09 2.0033537e-09 2.073909881e-09 2.354761221e-09 2.120571606e-09 1.911502368e-09 2.540001019e-09 2.607612524e-09 2.122418457e-09 2.724209314e-09 2.27923254e-09 2.16747744e-09 2.523334263e-09 2.154088199e-09 2.404716699e-09 2.367856182e-09 2.04347323e-09 2.824096758e-09 1.655438259e-09 2.683508255e-09 2.389864615e-09 2.78175025e-09 3.129051026e-09 3.583183697e-09 2.808282085e-09 2.403306986e-09 1.904997243e-09 3.81531738e-09 4.56918516e-09 2.721012018e-09 2.891736857e-09 2.68088962e-09 2.857642458e-09 3.858558254e-09 4.597616268e-09 2.21476658e-09 3.788633491e-09 3.10764283e-09 2.434862552e-09 2.904343537e-09 2.885728317e-09 2.487276517e-09 2.450430189e-09 2.313719228e-09 2.738908152e-09 1.872464843e-09 1.921693147e-09 1.887753044e-09 2.24581248e-09 2.289953736e-09 1.947224937e-09 2.092308062e-09 1.875291231e-09 1.660419812e-09 1.855802875e-09 1.756410154e-09 1.716781294e-09 1.73421391e-09 1.731769116e-09 1.798608789e-09 1.385285337e-09 1.587133507e-09 1.248065879e-09 1.414836622e-09 1.154352444e-09 1.492055078e-09 1.033856682e-09 9.299867993e-10 9.876543205e-10 9.824073981e-10 9.057564838e-10 1.118459101e-09 6.306480667e-10 7.355063496e-10 3.489883747e-10 2.492111475e-10 1.995468625e-10 2.440798463e-11 2.032406453e-10 1.078330443e-11 8.966204606e-11 5.541227938e-12 8.54628187e-14 8.204861089e-14 4.84456397e-15 2.134243395e-16 4.38061615e-16 1.958988848e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.055754684e-19 1.472461735e-17 1.481973155e-17 9.179606548e-17 2.765378161e-15 3.213866556e-13 1.604955658e-12 7.857763012e-12 7.30512476e-13 1.656665414e-10 2.212690376e-10 2.007485149e-10 6.480452259e-11 1.047983504e-10 5.719436867e-10 5.224516272e-10 6.450829769e-10 7.792385998e-10 1.134984375e-09 7.004265708e-10 1.199810942e-09 1.039132216e-09 1.238219803e-09 1.371461007e-09 1.346212567e-09 1.220320684e-09 1.306363639e-09 1.618571561e-09 1.6504096e-09 1.509450739e-09 1.354088887e-09 1.751221273e-09 1.609115616e-09 1.922674557e-09 1.668887978e-09 2.107252944e-09 1.77574356e-09 1.707941999e-09 1.735042555e-09 1.777906566e-09 1.774739589e-09 1.844015914e-09 2.171599622e-09 2.237619013e-09 2.389740938e-09 1.868137273e-09 3.682386709e-09 2.296481423e-09 2.40139154e-09 3.635727821e-09 2.149359629e-09 3.185183749e-09 2.383451225e-09 3.4302799e-09 2.982117496e-09 2.591788262e-09 3.028382219e-09 2.91876024e-09 3.624345951e-09 2.943486856e-09 2.460473512e-09 2.603410039e-09 2.803691192e-09 2.039856432e-09 1.768209399e-09 2.651972693e-09 2.766736852e-09 3.313548587e-09 3.006474613e-09 2.627558356e-09 2.719732897e-09 2.77000292e-09 2.978588925e-09 2.192972335e-09 2.375485858e-09 1.675750118e-09 2.694871735e-09 2.393321157e-09 2.329529653e-09 2.438322153e-09 2.289025124e-09 1.929515453e-09 2.745703179e-09 1.989597617e-09 1.809983321e-09 2.18540981e-09 2.21654618e-09 2.605937509e-09 2.390532999e-09 2.138621427e-09 2.341028921e-09 2.061572497e-09 2.077208448e-09 2.230031482e-09 2.143741582e-09 2.348882848e-09 2.279402506e-09 2.325701448e-09 2.965107525e-09 2.117898787e-09 2.239871021e-09 1.901940952e-09 2.223408645e-09 2.058673776e-09 3.152623415e-09 3.583106928e-09 2.354288678e-09 3.014099467e-09 2.426581903e-09 4.014047721e-09 3.758366876e-09 3.05339533e-09 3.272778673e-09 2.644161135e-09 3.002394023e-09 3.196612102e-09 2.065116958e-09 3.33529352e-09 2.834199265e-09 2.333439323e-09 2.87805166e-09 2.511784516e-09 2.147881818e-09 2.128036984e-09 2.819981052e-09 2.182601913e-09 2.250822918e-09 2.104774647e-09 2.287869536e-09 1.917874801e-09 1.871183717e-09 1.911302377e-09 1.867013765e-09 1.879367848e-09 1.809695351e-09 1.424266277e-09 1.810210246e-09 1.956946796e-09 1.556169027e-09 1.706749486e-09 1.6724634e-09 1.534520788e-09 1.38296511e-09 1.425355064e-09 1.279384415e-09 1.224868711e-09 1.357229738e-09 1.183534441e-09 9.585347329e-10 9.109439655e-10 1.082207292e-09 8.213540933e-10 7.605535712e-10 8.308149524e-10 4.355682915e-10 9.122196555e-10 2.472937381e-10 1.958550551e-10 6.436608663e-11 1.191486514e-10 2.311085732e-10 3.672767038e-13 3.580451438e-11 2.48560481e-13 2.292971297e-13 1.150569734e-14 1.158342112e-15 4.200559598e-16 1.249205675e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.313057196e-19 2.129116923e-18 3.667107622e-18 1.792037075e-16 4.791763593e-17 2.437642122e-14 3.636025359e-15 1.46098973e-12 8.948143235e-13 5.630808669e-12 2.939983354e-10 3.282367739e-12 1.807138719e-10 2.721181296e-10 4.527415241e-10 5.808492573e-11 4.080665279e-10 6.841965873e-10 9.012665047e-10 1.021008409e-09 6.957156053e-10 9.490371839e-10 1.174444772e-09 1.300889103e-09 1.276371368e-09 1.250866396e-09 1.250108026e-09 1.447397183e-09 1.634209606e-09 1.582828246e-09 1.481860264e-09 1.615257124e-09 1.331916839e-09 1.694005546e-09 1.610230409e-09 1.666148097e-09 1.778840764e-09 1.917991916e-09 1.827452457e-09 1.729140855e-09 2.019587518e-09 1.919476451e-09 1.91620047e-09 2.129577525e-09 1.881534005e-09 2.805645639e-09 2.127160668e-09 2.042341383e-09 2.100717304e-09 2.05083695e-09 2.145720294e-09 2.463291457e-09 2.71468661e-09 3.091551179e-09 2.324524237e-09 2.878499735e-09 3.377082076e-09 3.233520381e-09 2.304458212e-09 3.497389956e-09 3.127414451e-09 2.232953864e-09 2.494986248e-09 2.853251631e-09 2.24414767e-09 2.242934421e-09 3.134555729e-09 4.460646434e-09 2.542516209e-09 2.170416152e-09 1.488520238e-09 2.761036439e-09 2.396982929e-09 2.369683234e-09 2.111358278e-09 2.331273856e-09 2.249823504e-09 2.541098406e-09 2.268261095e-09 2.014431049e-09 2.134939961e-09 3.245548496e-09 2.173087563e-09 2.445534092e-09 2.138285675e-09 1.824836365e-09 2.324022247e-09 2.51445661e-09 1.988587716e-09 2.121280475e-09 2.183707725e-09 2.307969142e-09 2.091950225e-09 2.180281134e-09 2.744036531e-09 2.050504637e-09 2.390615393e-09 1.834943591e-09 2.169077986e-09 2.890621151e-09 2.42522842e-09 2.227752808e-09 2.547767135e-09 3.022295714e-09 2.2271161e-09 3.878745689e-09 3.326200038e-09 2.70200773e-09 3.717656176e-09 2.953506874e-09 3.554788369e-09 2.027653553e-09 3.116579605e-09 2.659462857e-09 3.08697843e-09 2.634481604e-09 1.947642853e-09 2.788554135e-09 2.184562524e-09 2.388572159e-09 2.490497134e-09 3.403395296e-09 2.238839127e-09 2.662677232e-09 2.611355708e-09 2.404426747e-09 1.919066668e-09 2.833054998e-09 1.726939854e-09 2.112365006e-09 1.876644333e-09 1.809719504e-09 1.96768546e-09 1.653233768e-09 1.667223379e-09 1.7823774e-09 1.775458821e-09 1.741605429e-09 1.700889494e-09 1.707444675e-09 1.445545351e-09 1.423533866e-09 1.516858379e-09 1.694688083e-09 1.33807291e-09 1.365617987e-09 1.485427716e-09 1.194325701e-09 1.319146358e-09 1.015215389e-09 8.590182963e-10 9.731922128e-10 9.039159455e-10 9.769715697e-10 7.140025603e-10 6.448341582e-10 6.200619436e-10 1.977834512e-10 2.056036366e-10 1.896335046e-10 2.49156365e-10 8.728039589e-12 8.017979887e-11 3.194696412e-14 1.330201261e-12 7.958405052e-14 5.311290391e-15 3.745986077e-16 8.568441354e-18 3.635976713e-18 1.434153278e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 4.473326265e-19 0 1.226054841e-18 6.651080451e-22 1.096360554e-17 4.278994125e-15 1.663086502e-17 7.532653305e-15 7.532462436e-13 3.995886774e-12 1.240927195e-10 4.465936479e-12 1.301944461e-10 2.047075688e-10 9.16012225e-13 4.519720214e-10 5.120859399e-10 6.556109226e-10 3.129940572e-10 8.998905226e-10 7.416069342e-10 8.397351288e-10 8.551499099e-10 1.262884185e-09 1.020905267e-09 7.691122833e-10 9.995215512e-10 1.23756811e-09 1.38202611e-09 1.434968665e-09 1.580347968e-09 1.3229781e-09 1.371160324e-09 1.387273689e-09 1.390258736e-09 1.668297234e-09 1.520839854e-09 1.694250747e-09 1.764461332e-09 1.581197796e-09 1.830386163e-09 1.803084355e-09 2.128479949e-09 1.859081229e-09 1.726623218e-09 1.578863445e-09 2.066256954e-09 1.888467365e-09 2.036441941e-09 2.185670602e-09 2.072359685e-09 2.023812328e-09 3.029866009e-09 2.422909776e-09 2.947577572e-09 2.315259852e-09 3.251035044e-09 2.535219806e-09 4.197385428e-09 3.382985417e-09 3.560945137e-09 2.030307088e-09 2.331569828e-09 2.348280692e-09 2.476697004e-09 2.416529816e-09 3.162287377e-09 2.556127386e-09 2.821672518e-09 3.001500434e-09 3.578058779e-09 2.660124756e-09 3.900698175e-09 2.417506592e-09 2.039300214e-09 2.217084313e-09 2.048252924e-09 2.29631821e-09 3.31055837e-09 2.69604944e-09 2.268020838e-09 2.258186927e-09 2.256194408e-09 2.440712663e-09 1.999746476e-09 2.107038856e-09 2.176434797e-09 2.609551111e-09 2.196489986e-09 3.257891764e-09 2.342390414e-09 2.272753113e-09 2.079700352e-09 2.221808024e-09 2.262118231e-09 2.546146908e-09 2.150184565e-09 2.352267404e-09 3.538554837e-09 2.260858313e-09 2.275772272e-09 2.119362572e-09 2.124446035e-09 3.344791064e-09 2.471354371e-09 3.372802728e-09 3.648366142e-09 3.195368055e-09 1.924170678e-09 1.900881106e-09 2.310571409e-09 2.750991827e-09 1.862792576e-09 2.632428802e-09 3.438874874e-09 2.858918415e-09 4.637707015e-09 2.193288527e-09 1.788540116e-09 3.075155188e-09 1.999954236e-09 2.476805683e-09 2.352372649e-09 3.096904019e-09 1.862715189e-09 2.049841917e-09 3.918663454e-09 1.925098181e-09 1.952607936e-09 2.007017517e-09 1.814062242e-09 2.087830434e-09 1.729547598e-09 1.869943114e-09 1.778252779e-09 1.805758297e-09 1.47803794e-09 1.524645006e-09 1.669724103e-09 1.507967713e-09 1.301163156e-09 1.885899919e-09 1.537055302e-09 1.401393754e-09 1.329146049e-09 1.391718721e-09 1.188656789e-09 1.336940643e-09 1.450673947e-09 1.055054964e-09 8.728170186e-10 1.345664757e-09 6.673442131e-10 7.578710046e-10 7.135838631e-10 7.766705161e-10 5.531089607e-10 2.769033416e-10 1.198633401e-10 1.782375107e-10 3.944510867e-11 2.002721841e-11 1.964691357e-10 2.142062528e-12 5.245115105e-13 2.051705412e-13 1.045912457e-16 6.916327552e-16 1.506399832e-15 2.042571027e-20 5.952970439e-19 7.265312222e-23 5.663984599e-19 5.308461521e-19 0 0 0 0 0 0 0 9.264983953e-11 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.767443746e-18 1.36435232e-16 3.456429789e-17 3.600925272e-17 1.058030265e-16 2.150231231e-15 4.246351739e-14 4.59193616e-12 9.046952019e-15 1.037351428e-10 5.222347012e-11 6.859419223e-11 1.531888611e-10 3.739928424e-10 3.994764849e-10 6.516605873e-10 5.419659633e-10 8.190280698e-10 7.627176623e-10 6.847464655e-10 9.598197528e-10 8.869921514e-10 1.084060748e-09 1.047833866e-09 1.137928362e-09 1.018197525e-09 1.235385699e-09 1.19149268e-09 1.241349784e-09 1.336593779e-09 1.225207522e-09 1.322855009e-09 1.212992645e-09 1.639130671e-09 1.801829571e-09 1.567267931e-09 1.660686156e-09 1.831869171e-09 1.377158634e-09 1.895171098e-09 1.779373309e-09 1.803058301e-09 2.066819851e-09 2.087688413e-09 2.426316808e-09 2.261060611e-09 2.35651761e-09 2.555754546e-09 1.892572638e-09 2.087129894e-09 1.88870025e-09 2.779085689e-09 2.042637143e-09 2.527688828e-09 2.110107328e-09 1.895641335e-09 3.121187865e-09 2.070980536e-09 2.34391004e-09 2.787238396e-09 3.631889209e-09 3.156483227e-09 2.738866509e-09 1.844602633e-09 2.314458411e-09 4.394045025e-09 2.336214232e-09 2.150328351e-09 1.845691978e-09 1.834251928e-09 2.218637777e-09 2.425433067e-09 3.049467323e-09 2.447450107e-09 1.834208785e-09 2.19545912e-09 2.656466552e-09 1.893941181e-09 1.940574497e-09 1.89315999e-09 2.942582796e-09 2.547007588e-09 2.136992086e-09 2.242301484e-09 2.129860789e-09 2.043595845e-09 2.213358912e-09 2.338938989e-09 1.871903772e-09 2.282071625e-09 2.948207751e-09 2.380152926e-09 2.146820948e-09 2.115317869e-09 2.526910137e-09 2.418116302e-09 2.000708703e-09 1.847574744e-09 2.221862667e-09 2.707057913e-09 2.503030401e-09 1.973891049e-09 3.000445769e-09 2.619811564e-09 2.675966295e-09 2.00999893e-09 2.38587026e-09 2.45350342e-09 2.186328903e-09 2.764875012e-09 2.498056079e-09 2.198027742e-09 3.047875316e-09 2.739419072e-09 1.905320132e-09 2.371879547e-09 3.119967781e-09 1.869324667e-09 2.063317157e-09 2.125989e-09 3.080303136e-09 2.17958211e-09 2.047576521e-09 2.158658008e-09 2.362739379e-09 2.064344414e-09 1.823199587e-09 2.156797809e-09 1.845724535e-09 1.787919686e-09 1.607653723e-09 1.817953872e-09 1.743117725e-09 1.668650128e-09 1.49575496e-09 1.473973621e-09 1.787804607e-09 1.557059579e-09 1.370662894e-09 1.403913334e-09 1.270018025e-09 1.509839813e-09 1.276801101e-09 1.277817459e-09 1.149297785e-09 1.328706745e-09 1.388885984e-09 1.014384786e-09 1.017555774e-09 1.031965037e-09 9.706738759e-10 7.440097967e-10 8.525367298e-10 5.446761793e-10 5.237620258e-10 3.823146478e-10 3.070280753e-10 2.566406164e-10 9.852857663e-11 2.466786952e-10 8.800086706e-11 1.342376692e-14 7.959294115e-13 2.822907492e-13 1.088867499e-14 2.211391412e-14 1.992934963e-15 9.477015389e-18 7.710894086e-19 0 1.127374372e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.798888054e-27 0 1.03490057e-17 1.36424871e-15 4.890940125e-15 4.501210012e-16 3.748854644e-13 1.369579128e-14 4.787096042e-12 3.412896878e-12 3.845798618e-12 1.51212955e-10 4.698687942e-13 2.174099807e-10 3.057881589e-10 6.023885816e-10 4.480902785e-10 6.885702487e-10 9.703915338e-10 6.068427751e-10 8.497206992e-10 9.866554139e-10 9.866337097e-10 9.573529883e-10 1.300196027e-09 9.428488962e-10 1.351514978e-09 1.395663789e-09 1.377035973e-09 1.420215288e-09 1.216494525e-09 1.426123877e-09 1.54714692e-09 1.324693589e-09 1.440182875e-09 1.503091449e-09 1.538936242e-09 1.576129732e-09 1.616221165e-09 1.430395801e-09 1.638658692e-09 1.75060886e-09 1.944604876e-09 1.966314647e-09 1.739975313e-09 1.79902273e-09 2.657334175e-09 3.143351012e-09 2.376955778e-09 1.952471444e-09 2.922989906e-09 1.949337654e-09 2.123112139e-09 2.148509472e-09 2.036259042e-09 2.192059356e-09 2.59892709e-09 2.010729475e-09 2.068455983e-09 2.413462351e-09 2.502464904e-09 1.843693275e-09 2.015475543e-09 2.047451161e-09 1.833547647e-09 2.288525717e-09 2.009020936e-09 2.672142248e-09 3.420070615e-09 2.022998219e-09 2.166534673e-09 3.415131897e-09 2.260093405e-09 2.175661435e-09 2.181854306e-09 2.15917071e-09 2.425953026e-09 2.566668087e-09 2.181825143e-09 2.312436516e-09 3.199329097e-09 2.650615439e-09 2.148363173e-09 1.792155616e-09 2.153375769e-09 2.004339411e-09 3.104553488e-09 2.19288843e-09 2.015466364e-09 1.895753571e-09 2.244053417e-09 2.599343704e-09 2.060620085e-09 2.015737074e-09 1.804901601e-09 1.860314254e-09 2.030533268e-09 2.192965503e-09 2.398027318e-09 2.96785061e-09 2.368572304e-09 1.725304809e-09 2.135125451e-09 1.884589129e-09 2.010489598e-09 1.94208873e-09 1.834004873e-09 1.926375859e-09 2.850224374e-09 2.30424133e-09 2.061530192e-09 1.947415964e-09 2.683578746e-09 1.822959353e-09 1.789482539e-09 2.031886188e-09 2.067048854e-09 2.070219392e-09 2.082929202e-09 2.013503261e-09 2.010747479e-09 2.056627067e-09 1.662741049e-09 1.664046207e-09 1.721606672e-09 1.510381432e-09 2.300433494e-09 1.879395288e-09 1.883087647e-09 1.896625508e-09 1.984893682e-09 1.552890803e-09 1.594504085e-09 1.91882023e-09 1.694042405e-09 1.56357544e-09 1.635023989e-09 1.552276054e-09 1.432134929e-09 1.384375894e-09 1.397363561e-09 1.226328326e-09 1.26317088e-09 1.402477037e-09 1.030634588e-09 1.254927222e-09 1.052864811e-09 1.114510731e-09 9.321802199e-10 8.725766075e-10 7.047499322e-10 8.769596571e-10 9.668985363e-10 4.326016497e-10 6.186820901e-10 4.453659249e-10 3.059153228e-10 3.070307312e-10 2.967107873e-10 1.411453899e-10 1.691666874e-10 2.083505568e-10 1.524409648e-14 2.190087687e-13 4.068485556e-13 3.852811168e-13 9.788161393e-18 1.155424854e-16 3.304786919e-17 1.855050438e-18 9.606743596e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.422274014e-16 3.04534974e-16 3.445050253e-17 2.765257306e-14 2.028161451e-14 4.629377515e-14 3.216864201e-12 9.412551504e-13 9.571574982e-11 2.770685393e-10 7.269191567e-12 2.223236045e-10 2.011496006e-10 5.621616699e-10 5.190225219e-10 5.465717113e-10 7.607657409e-10 6.500536132e-10 7.899352786e-10 8.169421463e-10 1.10537605e-09 8.814970491e-10 1.095907595e-09 1.05312313e-09 1.076352662e-09 1.350510646e-09 1.142002929e-09 9.700786791e-10 1.525856212e-09 1.199931159e-09 1.37816411e-09 1.542346285e-09 1.157700468e-09 1.424062162e-09 1.638908933e-09 1.781361341e-09 1.651323271e-09 1.48850433e-09 2.005533986e-09 1.921224541e-09 1.665341202e-09 1.598494885e-09 1.68882759e-09 1.824457651e-09 1.814885171e-09 1.907246465e-09 2.087192579e-09 1.854289006e-09 2.084427586e-09 1.825726756e-09 2.086591346e-09 2.011936765e-09 2.120666187e-09 2.16806497e-09 2.129933462e-09 1.829277448e-09 1.935330079e-09 2.136925967e-09 1.970294384e-09 1.968790052e-09 2.115878942e-09 1.907259363e-09 1.797320698e-09 2.586351943e-09 3.100136066e-09 2.164376531e-09 2.09510059e-09 1.991072403e-09 1.958667239e-09 2.044535e-09 2.185459114e-09 2.022972679e-09 1.829630788e-09 2.281766097e-09 2.04764275e-09 1.971204672e-09 2.271326666e-09 1.807897206e-09 2.192948124e-09 2.346421326e-09 2.132910821e-09 2.126197541e-09 1.933136014e-09 2.61061726e-09 2.227269563e-09 1.857490379e-09 2.097694793e-09 2.460941052e-09 2.190369684e-09 1.985916256e-09 2.136663802e-09 1.866769016e-09 1.809460778e-09 2.132991834e-09 2.122703347e-09 2.133562773e-09 2.267403716e-09 2.40225167e-09 1.957505567e-09 1.970051899e-09 2.246851548e-09 1.988519844e-09 2.205613708e-09 2.131334569e-09 2.190840027e-09 1.791500669e-09 2.477055312e-09 2.159600531e-09 2.084686485e-09 2.07669737e-09 2.03201063e-09 2.309596548e-09 2.008698043e-09 2.230434435e-09 1.867757711e-09 2.058011576e-09 1.904653662e-09 1.785374507e-09 1.912967253e-09 1.845813073e-09 1.751272089e-09 1.844717973e-09 1.693562145e-09 2.028451366e-09 1.921066091e-09 1.81952299e-09 1.829148971e-09 1.426554018e-09 1.888886574e-09 1.672576766e-09 1.430465906e-09 1.731644252e-09 1.625033313e-09 1.718030476e-09 1.590165861e-09 1.50222352e-09 1.511694291e-09 1.599884009e-09 1.144773526e-09 1.352791608e-09 1.125793893e-09 1.235142542e-09 1.381461923e-09 1.185766227e-09 1.251489094e-09 1.103147571e-09 1.155391463e-09 1.158292841e-09 8.984268781e-10 8.630215792e-10 7.427657109e-10 6.617950983e-10 7.899190263e-10 5.550401882e-10 5.553166586e-10 3.141992427e-10 3.012166071e-10 1.11645673e-10 1.226281097e-10 1.10027011e-10 7.409810951e-12 3.196040362e-13 5.757836185e-13 6.483286326e-16 5.11057656e-19 8.838101277e-17 2.124620066e-17 5.970630906e-17 0 7.953715213e-23 0 0 0 0 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.997796531e-19 0 3.724087794e-17 2.86838466e-16 1.603985924e-15 7.5228688e-14 7.692644729e-15 4.479077584e-16 8.695077703e-13 2.934433512e-13 4.113221725e-11 1.503330466e-11 1.649825445e-10 1.114755756e-10 3.112891747e-10 3.083534511e-10 6.899514463e-10 5.284236267e-10 6.212329618e-10 7.741049411e-10 3.836525825e-10 7.467560973e-10 9.3425333e-10 1.088747817e-09 8.756321895e-10 1.168939573e-09 9.685218551e-10 1.039980585e-09 1.52233153e-09 1.423269815e-09 1.047263013e-09 1.246671025e-09 1.575119683e-09 1.239686073e-09 1.316980252e-09 1.454537139e-09 1.60283129e-09 1.452338663e-09 1.707584076e-09 1.536134793e-09 1.431627133e-09 1.782011473e-09 1.569685444e-09 1.638743531e-09 1.66344873e-09 1.554267577e-09 1.68952221e-09 1.799555684e-09 1.88930279e-09 1.880030593e-09 1.916063327e-09 1.864924155e-09 1.754488579e-09 2.101545758e-09 2.156542694e-09 2.010746712e-09 2.164741077e-09 2.158343013e-09 1.951455158e-09 2.035275687e-09 1.84345597e-09 1.95731799e-09 1.672533289e-09 1.944403442e-09 2.561437498e-09 2.17696945e-09 1.904406731e-09 2.016989168e-09 1.950394566e-09 1.912438541e-09 2.014275866e-09 2.075225332e-09 1.888065528e-09 1.837496446e-09 1.900615089e-09 1.977752879e-09 2.520177763e-09 2.219409704e-09 2.035321896e-09 2.043970959e-09 2.023610812e-09 2.067432593e-09 2.134174386e-09 1.735829758e-09 1.991851e-09 2.071329296e-09 2.035920977e-09 1.909532254e-09 1.860070443e-09 1.923662523e-09 1.880106726e-09 1.978075502e-09 2.423222727e-09 1.933270155e-09 1.92885088e-09 1.991016967e-09 1.995515983e-09 2.042191458e-09 1.938826334e-09 1.820385563e-09 1.965870431e-09 2.098330735e-09 2.053372808e-09 2.194919428e-09 2.093931415e-09 2.244899586e-09 2.014127299e-09 2.271762668e-09 2.002055266e-09 2.077979277e-09 2.016508009e-09 2.082342447e-09 2.032958775e-09 2.142464355e-09 1.796362304e-09 1.992527999e-09 2.061759449e-09 1.801059556e-09 1.912352097e-09 2.021254482e-09 2.026196199e-09 2.034735107e-09 1.660325069e-09 2.088589786e-09 1.660288555e-09 1.783457933e-09 2.079478246e-09 1.706906305e-09 1.923762522e-09 1.538549578e-09 1.651702989e-09 1.602712139e-09 1.556039465e-09 1.623582221e-09 1.556544929e-09 1.495172128e-09 1.521341443e-09 1.61616343e-09 1.422470684e-09 1.431285598e-09 1.317568513e-09 1.0326696e-09 1.057031792e-09 1.221225764e-09 1.035106495e-09 9.753586726e-10 7.80607234e-10 1.072484107e-09 7.559337476e-10 6.714085891e-10 8.300014298e-10 7.192132994e-10 8.293677699e-10 3.509185463e-10 5.080854985e-10 6.670948775e-10 4.46177096e-10 1.528915643e-10 2.279641088e-10 6.390204746e-11 1.984410818e-10 1.115917139e-10 6.95045537e-11 1.34191321e-12 3.353651743e-13 1.936746867e-14 5.499021356e-14 2.007058349e-15 1.682969443e-15 0 2.719140548e-17 7.568133376e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.459836928e-19 0 1.11442523e-17 7.849868071e-18 4.051570382e-17 8.640094558e-14 8.103351214e-14 1.950746303e-11 2.439459891e-11 1.01514007e-12 1.376461987e-10 6.594163837e-11 1.320279486e-10 2.95954786e-10 5.496935843e-10 4.751425805e-10 5.138637836e-10 6.189071626e-10 7.086564979e-10 6.07214745e-10 9.38581716e-10 1.104898216e-09 9.075173375e-10 1.060919846e-09 8.304825966e-10 1.120412449e-09 9.839408553e-10 1.343085712e-09 1.537667336e-09 1.168644945e-09 1.271989467e-09 1.562272522e-09 1.435828887e-09 1.350043733e-09 1.372131347e-09 1.401690048e-09 1.466436593e-09 1.437836159e-09 1.657203388e-09 1.487817916e-09 1.341573086e-09 1.617944836e-09 1.75699486e-09 1.488181978e-09 1.888885749e-09 1.652302955e-09 1.529193202e-09 1.915674501e-09 1.769865794e-09 1.983771114e-09 1.907109846e-09 1.829595293e-09 1.934868571e-09 1.975567482e-09 2.057341318e-09 1.859932159e-09 1.856578123e-09 1.858434318e-09 1.644859695e-09 2.048671247e-09 1.823730671e-09 1.909728401e-09 1.775472798e-09 1.709704874e-09 2.125594303e-09 2.019268469e-09 2.052938136e-09 2.195999115e-09 1.638641028e-09 1.668095644e-09 1.897715201e-09 2.036241826e-09 1.746875127e-09 1.881948995e-09 1.889854665e-09 1.61872195e-09 2.066386161e-09 1.936853507e-09 2.099593179e-09 2.060876818e-09 1.754040841e-09 1.739268179e-09 2.129054899e-09 2.012873248e-09 2.002318354e-09 1.883416561e-09 1.998329469e-09 1.91746115e-09 1.950919406e-09 1.701760717e-09 1.989591809e-09 2.048695309e-09 2.197660775e-09 1.851759e-09 2.022201012e-09 1.847460822e-09 2.003249493e-09 1.858866238e-09 1.982247729e-09 2.152067838e-09 1.861534512e-09 2.068238659e-09 2.082068413e-09 1.750311166e-09 2.093410788e-09 1.945968326e-09 2.009894195e-09 1.684058683e-09 2.029821243e-09 2.04146209e-09 1.893112364e-09 1.738204254e-09 1.645065358e-09 1.792193981e-09 2.075643737e-09 1.905350856e-09 2.072932684e-09 1.72229521e-09 1.72559859e-09 1.791493574e-09 2.166680969e-09 1.788113269e-09 1.746071833e-09 1.555284479e-09 2.033320468e-09 1.56118202e-09 1.851106509e-09 1.611894892e-09 1.799922396e-09 1.400564248e-09 1.513763823e-09 1.48640709e-09 1.294429655e-09 1.033684599e-09 1.215465944e-09 1.138831621e-09 1.372094187e-09 1.287526639e-09 1.135078549e-09 1.104989562e-09 1.291799743e-09 1.473905845e-09 1.198686042e-09 1.195343411e-09 8.811069482e-10 8.98945948e-10 1.05294225e-09 8.220508602e-10 4.957841375e-10 8.583560999e-10 9.585134966e-10 3.09297639e-10 6.265484565e-10 5.239050791e-10 5.088906923e-10 4.538838259e-10 4.586743351e-10 6.144707364e-11 1.588012322e-10 1.406463602e-10 5.408053629e-11 1.442578161e-13 2.57725837e-11 1.665828055e-13 2.73698571e-15 1.579508715e-16 8.63730825e-17 5.78098155e-17 2.682751609e-22 7.508788993e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.507374977e-19 1.095887552e-18 2.475341099e-18 8.526263387e-16 2.245121642e-17 1.502978013e-16 1.826727647e-14 2.521867549e-14 6.028322661e-13 3.08466419e-11 1.447481693e-15 5.572081607e-11 2.162142364e-10 3.138631126e-11 2.063282501e-10 6.112819452e-10 5.366751174e-10 3.26749904e-10 5.596240556e-10 4.932921026e-10 8.540409111e-10 6.975108191e-10 5.812312413e-10 6.085651354e-10 1.022533732e-09 9.806520968e-10 1.211437227e-09 9.769019194e-10 8.487359392e-10 1.185962342e-09 9.921366313e-10 1.150378296e-09 1.216333766e-09 1.259360924e-09 1.433533563e-09 1.09630794e-09 1.190450538e-09 1.442903275e-09 1.59263433e-09 1.249670935e-09 1.374882788e-09 1.526315817e-09 1.119552547e-09 1.707524689e-09 1.540323466e-09 1.5895914e-09 1.917958616e-09 1.875741718e-09 1.794057951e-09 1.678279645e-09 1.809877424e-09 1.72665793e-09 1.737249553e-09 1.497564905e-09 1.891160752e-09 1.945458569e-09 1.808954009e-09 1.629430197e-09 1.854940617e-09 1.656709607e-09 1.943683463e-09 1.447516238e-09 1.835137955e-09 1.811582009e-09 1.896661533e-09 1.808486413e-09 1.667811455e-09 1.891389075e-09 1.963674231e-09 1.777824258e-09 1.758686246e-09 1.630845512e-09 1.721372462e-09 1.743539915e-09 1.691913569e-09 1.790196092e-09 1.886729163e-09 2.178053358e-09 1.943850631e-09 2.092340651e-09 1.961461031e-09 1.692836726e-09 1.948812127e-09 2.11744586e-09 1.846901386e-09 1.865940791e-09 2.082123692e-09 1.601930448e-09 1.758582296e-09 1.870975462e-09 1.720239486e-09 1.856661636e-09 2.188528057e-09 1.699010828e-09 1.695705921e-09 2.20637117e-09 1.834635423e-09 1.709041389e-09 1.765182104e-09 1.89471965e-09 1.763634386e-09 1.760513201e-09 1.706354424e-09 1.869592832e-09 1.643319893e-09 1.696244684e-09 1.904638089e-09 1.887432345e-09 2.040893457e-09 1.904938349e-09 1.881531676e-09 1.834999568e-09 1.83058804e-09 1.826098902e-09 1.941606013e-09 1.702510819e-09 1.938414117e-09 1.774497453e-09 1.665193092e-09 1.492746441e-09 1.594228301e-09 1.768642843e-09 1.562865601e-09 1.629344683e-09 1.653758234e-09 1.645824123e-09 1.471221574e-09 1.159012813e-09 1.515546178e-09 1.503173601e-09 1.298345116e-09 1.516237287e-09 1.397011988e-09 1.280743574e-09 1.407367521e-09 1.307921288e-09 1.522876877e-09 1.326709404e-09 1.285901383e-09 1.195266729e-09 1.174916748e-09 1.300470554e-09 9.609343218e-10 1.155559085e-09 9.841882129e-10 1.220466413e-09 9.63068646e-10 1.022366369e-09 8.221750999e-10 7.310703145e-10 8.558291219e-10 7.539068281e-10 5.070049334e-10 5.523399639e-10 6.222075118e-10 4.833209872e-10 2.062539541e-10 3.934735203e-10 1.064736282e-10 1.59722716e-10 1.46950831e-11 3.216048561e-11 2.326536599e-12 1.313040831e-11 3.46865783e-13 2.333738083e-13 2.665087747e-16 3.799783886e-15 9.40928214e-16 1.567340042e-17 1.02948533e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.581360771e-19 2.375108997e-25 6.265210812e-20 9.522952627e-20 2.154261157e-15 3.01966038e-15 7.420375877e-17 1.316367902e-12 8.449657607e-13 7.578732428e-12 8.481226742e-11 9.561137047e-13 5.150254027e-11 1.765206813e-10 2.601431501e-10 3.88036582e-10 3.161019038e-11 5.675166953e-10 5.296369081e-10 3.533837495e-10 7.433792733e-10 5.711597439e-10 7.282015421e-10 8.088174066e-10 1.0746521e-09 9.118387917e-10 8.620782855e-10 1.026429132e-09 1.042743756e-09 8.12096885e-10 1.214208603e-09 9.975713438e-10 9.474034222e-10 1.171387685e-09 1.355296119e-09 1.370623529e-09 1.323278666e-09 1.526304621e-09 1.262441326e-09 1.397355192e-09 1.257914318e-09 1.295845338e-09 1.524592277e-09 1.284651033e-09 1.288832304e-09 1.702521319e-09 1.773859601e-09 1.535454923e-09 1.465792572e-09 1.495182254e-09 1.46452357e-09 1.556697258e-09 1.488585901e-09 1.811260973e-09 1.635206958e-09 1.694609777e-09 2.019676103e-09 1.943497034e-09 1.581986557e-09 2.021985908e-09 1.908578129e-09 1.499495026e-09 1.81417517e-09 1.862810654e-09 1.685511192e-09 1.616913012e-09 1.787163786e-09 1.584293096e-09 1.863595325e-09 1.449870336e-09 1.983427093e-09 1.799473837e-09 1.650813005e-09 1.965782248e-09 1.562544708e-09 1.614036796e-09 1.844738145e-09 1.800766988e-09 1.872307883e-09 1.831796757e-09 1.776951984e-09 1.904309702e-09 1.941664471e-09 1.785866154e-09 1.698412333e-09 1.855835781e-09 1.682466671e-09 1.974750807e-09 1.746493329e-09 1.775883569e-09 1.689643451e-09 1.746042406e-09 1.807756778e-09 1.94220785e-09 1.635998067e-09 1.643125507e-09 1.932571603e-09 1.770434083e-09 1.683446911e-09 1.798581614e-09 2.072837888e-09 1.888185426e-09 1.818616207e-09 1.696106998e-09 1.704846011e-09 1.771495327e-09 1.540225245e-09 1.827768638e-09 1.993140019e-09 1.882941246e-09 1.96045374e-09 1.487011647e-09 1.808415273e-09 1.759906432e-09 1.608023988e-09 1.657939055e-09 1.814907056e-09 1.821324664e-09 1.513260097e-09 1.631722014e-09 1.698098549e-09 1.590571183e-09 1.882647465e-09 1.388295951e-09 1.492319831e-09 1.861741765e-09 1.7230444e-09 1.619077659e-09 1.486578571e-09 1.616925172e-09 1.419677381e-09 1.487323187e-09 1.511172801e-09 1.291682116e-09 1.126151095e-09 1.478896105e-09 1.151227295e-09 1.522714812e-09 1.262151786e-09 1.428014734e-09 1.294733644e-09 1.139303546e-09 9.341026861e-10 7.909788461e-10 9.148141749e-10 9.942468674e-10 6.593164722e-10 7.729088857e-10 8.987384066e-10 7.868418268e-10 6.798419137e-10 4.608816719e-10 6.693331964e-10 5.296927354e-10 8.043162618e-10 5.205229558e-10 3.944062924e-10 7.17231019e-12 1.240394987e-13 6.483984531e-13 2.983987856e-11 9.478009951e-12 1.518021011e-10 7.59721263e-15 1.81767304e-14 6.227529155e-17 5.602003833e-15 2.376816397e-15 1.671225717e-16 1.078446573e-17 1.596806595e-27 0 0 0 0 0 0 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.28107182e-23 0 0 3.746535973e-14 9.444392983e-14 7.775098439e-15 3.578777755e-13 4.73172004e-13 5.39154699e-13 1.11129703e-10 8.13130566e-11 6.094652828e-12 3.885233457e-11 8.695588357e-13 2.467760722e-10 3.077537192e-10 1.941458542e-10 6.884188492e-10 7.869061136e-10 4.817124593e-10 4.980256259e-10 8.162778126e-10 4.522094812e-10 8.206467242e-10 8.819067517e-10 7.328281562e-10 9.773970729e-10 8.435860311e-10 9.691807224e-10 1.463890848e-09 8.981249243e-10 9.708571762e-10 9.825438173e-10 1.091533677e-09 1.483071029e-09 1.250045704e-09 1.362024084e-09 1.373835891e-09 1.429856053e-09 1.212967169e-09 1.379393994e-09 1.434839191e-09 1.36327903e-09 1.444088085e-09 1.29597581e-09 1.706672835e-09 1.465645452e-09 1.48941616e-09 1.409857507e-09 1.341087017e-09 1.429801444e-09 1.409121582e-09 1.181170927e-09 1.688675397e-09 1.555993985e-09 1.553445302e-09 1.628203412e-09 1.636382003e-09 1.423503703e-09 1.816178931e-09 1.728403784e-09 1.82686033e-09 1.518911608e-09 1.489603144e-09 1.686551611e-09 1.574581605e-09 1.903514118e-09 1.454869117e-09 1.418985298e-09 1.974650728e-09 1.508153836e-09 1.722559833e-09 1.249318869e-09 1.759785959e-09 1.603161099e-09 1.530215987e-09 1.445730375e-09 1.899859891e-09 1.675684711e-09 1.644895452e-09 1.65921401e-09 1.749474064e-09 1.573767773e-09 1.802172284e-09 1.65306824e-09 1.440982456e-09 1.590670252e-09 1.607765276e-09 1.517801105e-09 1.868700084e-09 1.818694708e-09 1.44592325e-09 1.653187623e-09 1.45841209e-09 1.727947196e-09 1.477388496e-09 1.739835846e-09 1.616769786e-09 1.359236199e-09 1.797496419e-09 1.54658277e-09 1.469152184e-09 1.670525853e-09 1.622132413e-09 1.601639074e-09 1.717994732e-09 1.686118522e-09 1.413463442e-09 1.602669574e-09 1.592458624e-09 1.404224193e-09 1.67678179e-09 1.714117562e-09 1.742623471e-09 1.615436559e-09 1.42343235e-09 1.898886004e-09 1.514786978e-09 1.506087591e-09 1.745037922e-09 1.446729829e-09 1.666004362e-09 1.468740102e-09 1.386504214e-09 1.345740449e-09 1.437190083e-09 1.292662629e-09 1.299795914e-09 1.579238516e-09 1.024689473e-09 1.211091434e-09 1.283117293e-09 1.577003819e-09 1.28858562e-09 1.097529557e-09 1.044897965e-09 1.340633315e-09 1.099181886e-09 1.184237574e-09 1.079399173e-09 1.100688469e-09 1.254695936e-09 1.061926362e-09 1.126177743e-09 8.558372841e-10 9.9496117e-10 7.078043498e-10 8.099613323e-10 7.525555202e-10 6.925216604e-10 6.164413182e-10 8.003087246e-10 5.441561391e-10 2.463373709e-10 4.441299259e-10 4.904078398e-10 9.709543886e-11 2.23305667e-10 1.173722406e-13 4.243690158e-11 8.361991341e-14 8.833842861e-12 4.346962715e-15 5.657605057e-17 1.506524145e-13 1.69190623e-16 6.87656272e-17 1.81202487e-16 9.444989021e-17 8.006736221e-22 8.275672875e-26 0 0 0 0 0 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.043809755e-21 2.082124374e-16 1.624732986e-16 1.461389306e-15 1.529849043e-14 7.531818339e-15 3.358114426e-13 1.228851571e-12 2.483212141e-11 5.547029234e-11 1.063858794e-12 1.625549539e-10 5.147039862e-11 2.998549343e-10 5.315734508e-10 5.725117392e-10 5.166279371e-10 7.25237176e-10 5.790264464e-10 8.061040863e-10 7.613255394e-10 6.030505666e-10 4.619665846e-10 6.820290192e-10 8.392959597e-10 8.023576592e-10 9.032304881e-10 1.003563053e-09 1.107202532e-09 9.771510234e-10 8.752110324e-10 1.026054746e-09 1.108201128e-09 1.013393585e-09 1.170010222e-09 1.219008804e-09 1.191135495e-09 1.451330556e-09 1.180930898e-09 1.221376713e-09 1.232208349e-09 1.361280328e-09 1.470530523e-09 1.346322529e-09 1.327856242e-09 1.478648188e-09 1.293849144e-09 1.392377851e-09 1.379415493e-09 1.427723049e-09 1.24289982e-09 1.56944959e-09 1.586740256e-09 1.552150037e-09 1.468227056e-09 1.483366233e-09 1.546938954e-09 1.413653882e-09 1.475681936e-09 1.484209957e-09 1.583389715e-09 1.440967338e-09 1.571592623e-09 1.834775563e-09 1.396982581e-09 1.579103287e-09 1.385355341e-09 1.758715428e-09 1.655764369e-09 1.527401293e-09 1.500970835e-09 1.575885138e-09 1.388507253e-09 1.331167975e-09 1.642548025e-09 1.65276485e-09 1.604686134e-09 1.654914418e-09 1.675142947e-09 1.504432212e-09 1.876704689e-09 1.296349695e-09 1.69398502e-09 1.367218102e-09 1.614564464e-09 1.63986691e-09 1.571331465e-09 1.786949422e-09 1.535762927e-09 1.426616679e-09 1.557736898e-09 1.764758317e-09 1.901031331e-09 1.662472497e-09 1.539327125e-09 1.452343469e-09 1.424022368e-09 1.387925143e-09 1.499718883e-09 1.678614589e-09 1.510909692e-09 1.511345972e-09 1.558555792e-09 1.759608824e-09 1.57571095e-09 1.643320269e-09 1.610136414e-09 1.515200748e-09 1.504191202e-09 1.550798479e-09 1.739864983e-09 1.661730394e-09 1.481776691e-09 1.572296792e-09 1.492667055e-09 1.582873818e-09 1.369239902e-09 1.247734899e-09 1.689062301e-09 1.547658401e-09 1.429898733e-09 1.254858592e-09 1.49592706e-09 1.46458962e-09 1.485092665e-09 1.470365706e-09 1.463599335e-09 1.488120388e-09 1.338061163e-09 1.253342816e-09 1.324203856e-09 1.27544584e-09 1.064150105e-09 1.161223089e-09 1.003038453e-09 1.000068356e-09 1.18448738e-09 9.958314649e-10 1.132529105e-09 1.030554751e-09 1.058243667e-09 9.788826599e-10 7.170423968e-10 7.21585173e-10 8.054991912e-10 9.972819617e-10 8.667371549e-10 7.497676159e-10 7.356841785e-10 6.644968924e-10 7.69871853e-10 3.276600907e-10 4.289490573e-10 5.695007353e-10 4.618880637e-10 1.767315333e-13 1.054906964e-10 2.340926766e-10 3.364712374e-11 3.342209991e-13 1.871767875e-13 8.051736184e-14 5.212906099e-15 2.564387876e-12 1.780363088e-15 3.303074943e-14 4.961349278e-16 2.565091833e-16 5.097283352e-18 6.537558091e-19 3.231198355e-21 0 0 0 0 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.658888358e-19 2.098750637e-18 5.446683223e-23 3.957817658e-18 2.677149276e-17 3.519784017e-15 2.73134864e-16 4.581367853e-14 2.523711189e-14 4.300774153e-14 4.417508221e-15 3.596525528e-12 4.088944381e-11 5.693006178e-12 1.989637323e-13 3.402108765e-10 4.345912557e-10 7.459790959e-10 3.869263639e-10 6.290577543e-10 5.305487611e-10 5.980409011e-10 4.425765614e-10 6.56427313e-10 5.780577565e-10 7.018349118e-10 5.365091825e-10 8.247403696e-10 9.666522289e-10 9.162598805e-10 7.786092143e-10 1.047560613e-09 1.060417397e-09 9.284149992e-10 1.099506662e-09 1.251732937e-09 8.464370542e-10 1.114988164e-09 1.016489463e-09 1.202076428e-09 9.753003655e-10 1.462836069e-09 8.89914156e-10 1.196361199e-09 1.084984154e-09 1.337451378e-09 1.150241873e-09 1.391147907e-09 1.332114209e-09 1.041708641e-09 1.386090955e-09 1.181214166e-09 1.19648157e-09 1.5801442e-09 1.717780844e-09 1.387428882e-09 1.560582086e-09 1.388284421e-09 1.251999494e-09 1.366023594e-09 1.38021635e-09 1.401694215e-09 1.561738076e-09 1.564630611e-09 1.664482101e-09 1.571689129e-09 1.476788838e-09 1.625629187e-09 1.413130668e-09 1.467533299e-09 1.285738195e-09 1.498589704e-09 1.364049727e-09 1.604451493e-09 1.27046921e-09 1.484270285e-09 1.356220666e-09 1.601129237e-09 1.337019042e-09 1.665353333e-09 1.310991505e-09 1.570369527e-09 1.342575675e-09 1.371405123e-09 1.330268675e-09 1.188682666e-09 1.36128269e-09 1.399122886e-09 1.45228514e-09 1.159276073e-09 1.640285446e-09 1.413817281e-09 1.429060048e-09 1.494717338e-09 1.411914186e-09 1.236768188e-09 1.105355766e-09 1.3189893e-09 1.408601577e-09 1.60620211e-09 1.672030293e-09 1.356165642e-09 1.293095262e-09 1.429618731e-09 1.276475041e-09 1.69875831e-09 1.328132206e-09 1.431298618e-09 1.387164931e-09 1.40926554e-09 1.503304631e-09 1.642027661e-09 1.536948233e-09 1.537050644e-09 1.345370596e-09 1.601941371e-09 1.09353238e-09 1.343567575e-09 1.421218017e-09 1.361391144e-09 1.218734646e-09 1.304522457e-09 1.355587746e-09 1.310635013e-09 1.299037232e-09 1.288720933e-09 1.12138784e-09 1.368085961e-09 1.02404916e-09 9.807414178e-10 8.68842341e-10 1.275339462e-09 9.302106102e-10 1.326535438e-09 1.065318067e-09 1.203799016e-09 1.142104727e-09 9.976688077e-10 9.725596361e-10 8.366030364e-10 1.101713662e-09 6.955110049e-10 9.091782514e-10 9.145438685e-10 7.224284877e-10 7.663860977e-10 8.955534751e-10 8.33228611e-10 7.007605692e-10 5.626772533e-10 4.312149346e-10 7.098056927e-10 6.360558129e-10 4.346361286e-10 3.265657851e-10 5.540363065e-11 2.237488822e-10 5.560754943e-11 1.982405644e-10 7.160711172e-12 7.125353846e-11 2.934730774e-14 2.66350352e-14 6.5679041e-14 2.075925874e-15 2.179468125e-16 9.821101431e-16 9.360791446e-16 1.163812085e-16 0 4.24626154e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.252128639e-16 1.461988326e-16 3.883180889e-16 1.013670644e-14 5.439097514e-14 1.079278394e-15 4.952820015e-14 1.353522302e-14 6.797088879e-12 1.067630693e-11 1.609936695e-10 1.915138214e-10 3.302870792e-11 4.341419105e-10 3.489989807e-10 5.497240413e-10 5.315066737e-10 4.478055149e-10 5.318637909e-10 6.824636054e-10 5.750582717e-10 5.281913446e-10 5.438871507e-10 8.86932273e-10 8.963040158e-10 7.650742689e-10 8.56656132e-10 9.918105932e-10 8.251712729e-10 7.857937096e-10 1.071033739e-09 1.147993271e-09 9.443989699e-10 6.441564761e-10 1.104131608e-09 8.887292106e-10 1.04145847e-09 1.283139375e-09 1.247542254e-09 1.200084608e-09 9.555083552e-10 1.161337964e-09 1.063902271e-09 1.156033913e-09 1.222095574e-09 1.20337398e-09 1.030067182e-09 1.043857824e-09 1.423332849e-09 1.378335327e-09 1.277985753e-09 1.238535721e-09 1.45873269e-09 1.479446985e-09 1.280815731e-09 1.034679337e-09 1.437998126e-09 1.359509654e-09 1.299045917e-09 1.38340696e-09 1.13041391e-09 1.243884211e-09 1.336897883e-09 1.415203985e-09 1.304769599e-09 1.362037753e-09 1.589490549e-09 1.379173861e-09 1.251620551e-09 1.423775567e-09 1.33439123e-09 1.441007244e-09 1.250730242e-09 1.144377942e-09 1.309424678e-09 1.216338368e-09 1.400898492e-09 1.373699954e-09 1.166541612e-09 1.456405766e-09 1.339831369e-09 1.296090844e-09 1.503856127e-09 1.461475145e-09 1.119339052e-09 1.205149704e-09 1.439979239e-09 1.230130169e-09 1.474797173e-09 1.473741844e-09 1.518479223e-09 1.242392425e-09 1.508887929e-09 1.428191124e-09 1.324151485e-09 1.245994155e-09 1.272820877e-09 1.234936431e-09 1.335569909e-09 1.429301902e-09 1.22840694e-09 1.261425705e-09 1.437255399e-09 1.07868638e-09 1.326943405e-09 1.099662669e-09 1.359297587e-09 1.364015692e-09 1.351167337e-09 1.519281634e-09 1.286858724e-09 1.45183112e-09 1.422112998e-09 1.131673144e-09 1.711869089e-09 1.180855616e-09 1.153828375e-09 1.195267333e-09 1.385702497e-09 9.440586895e-10 1.091972146e-09 1.495496959e-09 1.075161915e-09 9.782069249e-10 1.336326077e-09 1.047149667e-09 1.162277986e-09 1.032286577e-09 1.118002685e-09 9.708222909e-10 7.86301634e-10 9.161691173e-10 7.722901696e-10 1.046387738e-09 8.237846018e-10 8.591430627e-10 1.076998274e-09 3.65748674e-10 6.974811407e-10 8.798391639e-10 7.044184936e-10 7.306383834e-10 6.646631534e-10 6.008722611e-10 8.36033508e-10 4.871811939e-10 7.941009946e-10 5.688258149e-10 4.727226843e-10 4.039980129e-11 3.11332381e-10 1.820553608e-10 3.078028671e-10 1.262710705e-10 9.040191495e-13 1.618439712e-11 2.124642623e-10 1.276575264e-16 1.273834385e-10 6.819000025e-13 2.724562072e-15 1.427058667e-15 3.194991357e-14 1.497798656e-16 2.865907038e-18 4.520663654e-17 3.579162888e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.481941585e-18 2.743143427e-24 4.715953733e-19 6.236669005e-16 1.563039767e-16 4.769843686e-14 1.899178364e-12 5.011340024e-15 5.331489244e-13 2.277515141e-10 3.29844833e-11 1.977082015e-10 8.154681871e-12 1.283416906e-10 2.425940115e-10 9.970898946e-11 4.358976065e-10 3.640343635e-10 1.000129305e-13 5.775346436e-10 3.070867192e-10 5.55771055e-10 7.254604265e-10 3.860654294e-10 6.198073776e-10 7.434003442e-10 9.915770028e-10 5.593761109e-10 4.465104198e-10 8.341160269e-10 7.328078588e-10 8.696620497e-10 5.533013005e-10 9.549481421e-10 7.037883761e-10 7.817782899e-10 9.351976065e-10 8.946861877e-10 1.09008666e-09 8.262307205e-10 9.129672395e-10 9.222156461e-10 1.235203924e-09 1.303897002e-09 1.157874883e-09 1.152655343e-09 1.217336666e-09 1.056083434e-09 1.239533951e-09 1.122095302e-09 1.196347289e-09 1.18719957e-09 9.858431748e-10 8.615384614e-10 1.125248452e-09 1.105458598e-09 1.125243749e-09 1.127611037e-09 1.180669132e-09 1.053847353e-09 1.171538282e-09 9.894483374e-10 1.236978928e-09 1.220229585e-09 1.171205528e-09 1.142976848e-09 1.110169454e-09 1.423590761e-09 9.0417173e-10 1.10990768e-09 1.242227907e-09 1.254165504e-09 9.850141736e-10 1.205633098e-09 1.074137837e-09 1.186455578e-09 1.264508587e-09 1.228044458e-09 1.128369162e-09 1.407300489e-09 1.262421389e-09 1.371270535e-09 1.153627106e-09 1.320197625e-09 9.527604249e-10 1.182256016e-09 1.39560465e-09 1.129105458e-09 1.209408318e-09 1.137750903e-09 1.522844874e-09 1.176646745e-09 1.377713718e-09 9.333164406e-10 1.383363171e-09 1.084114678e-09 8.329442685e-10 1.180094868e-09 1.263673444e-09 1.311720616e-09 1.438388204e-09 1.100355183e-09 1.431211317e-09 1.464829607e-09 1.277233991e-09 1.243466201e-09 1.212924423e-09 1.270676437e-09 1.359427831e-09 1.377371792e-09 1.493144771e-09 1.140696119e-09 9.348028051e-10 1.160350323e-09 1.206947623e-09 1.031671186e-09 1.195516396e-09 1.055543129e-09 1.031893647e-09 9.81889245e-10 9.167369596e-10 1.121955113e-09 1.060388668e-09 1.215568539e-09 1.053582496e-09 1.030292221e-09 1.142279301e-09 9.469901671e-10 9.240710992e-10 9.879759678e-10 8.473472607e-10 1.284863131e-09 9.147707757e-10 7.489059944e-10 8.087381608e-10 6.729976033e-10 8.546862731e-10 8.135889993e-10 9.177352946e-10 8.660846458e-10 8.331700703e-10 8.030894101e-10 9.034625929e-10 7.470539161e-10 8.571001644e-10 6.657108956e-10 7.061204167e-10 7.113481669e-10 4.580220669e-10 4.71271064e-10 6.538894553e-10 3.555785724e-10 4.722477563e-10 4.37176527e-10 1.586182613e-10 1.771967802e-10 3.092057582e-10 1.531019067e-10 3.217431083e-12 9.604752659e-11 3.959557432e-14 7.446672315e-11 2.028742135e-13 1.326955273e-18 2.145378729e-14 2.616553792e-15 9.332622605e-19 2.386672266e-16 4.682070191e-19 1.111728861e-21 7.350934022e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1.821450158e-20 1.26007754e-26 0 5.018146337e-19 2.731974999e-17 1.618826011e-24 7.887002864e-18 6.528999636e-18 6.76808516e-15 1.152889231e-18 1.08487315e-11 1.52926956e-13 2.134320133e-11 1.480309239e-13 1.049566704e-10 2.293277978e-10 1.7010796e-10 3.815337168e-10 3.187488332e-10 3.077656186e-10 3.073770349e-10 2.008715945e-10 2.445225673e-10 5.152971364e-10 4.898137483e-10 5.546696631e-10 6.080902368e-10 7.787808993e-10 4.288364696e-10 3.174124226e-10 6.439507687e-10 7.806813832e-10 9.033071783e-10 6.815216521e-10 8.590300154e-10 6.983888768e-10 7.582295278e-10 7.770565666e-10 7.530903486e-10 8.18631999e-10 6.949904816e-10 4.747174201e-10 1.039910856e-09 1.073794616e-09 1.110270609e-09 7.776160767e-10 7.200439871e-10 8.589701539e-10 9.682605986e-10 9.603712677e-10 1.002704499e-09 1.083543714e-09 1.119070047e-09 9.468094644e-10 6.76669199e-10 1.242256159e-09 6.729569076e-10 9.80285377e-10 1.131516234e-09 1.263368617e-09 1.100850734e-09 1.096666334e-09 9.72892147e-10 9.717504428e-10 1.047978541e-09 9.790704191e-10 1.034155678e-09 1.113643161e-09 1.193433272e-09 1.074271374e-09 1.236952293e-09 7.437299666e-10 1.030357122e-09 1.191116197e-09 9.813102439e-10 1.154382751e-09 1.139035953e-09 8.664905275e-10 1.192254639e-09 1.140040862e-09 1.197448877e-09 9.910657709e-10 1.040126967e-09 8.355970167e-10 1.163686303e-09 1.10962817e-09 1.182766386e-09 1.081257599e-09 1.112449011e-09 9.370148879e-10 9.362395737e-10 1.020279628e-09 1.17885986e-09 9.446581777e-10 7.994897397e-10 9.685210312e-10 1.15843019e-09 9.807933789e-10 1.37010149e-09 1.175530091e-09 1.147243888e-09 1.003698861e-09 1.056897519e-09 1.083165509e-09 8.810754541e-10 1.084817516e-09 9.392999303e-10 9.199935308e-10 1.151253469e-09 1.076976621e-09 1.141288764e-09 1.048659055e-09 1.011501542e-09 9.644339634e-10 1.186092598e-09 9.929261164e-10 1.234980812e-09 9.712369842e-10 1.06242967e-09 1.26296398e-09 1.070936195e-09 9.714537952e-10 7.926906533e-10 1.313158787e-09 1.174981533e-09 1.005418909e-09 1.003467096e-09 9.276796779e-10 7.805237321e-10 1.013491505e-09 8.514718162e-10 9.974203724e-10 9.773613636e-10 8.039930157e-10 1.114229798e-09 9.25937366e-10 6.439973907e-10 6.288649636e-10 4.324376158e-10 9.180490967e-10 9.029315078e-10 7.43893383e-10 6.130086779e-10 6.208275133e-10 5.34855465e-10 2.59433198e-10 4.382376044e-10 8.728800526e-11 7.758134712e-10 4.091853492e-10 5.973469828e-10 4.363640991e-10 7.700071816e-11 3.092955704e-10 4.361288941e-10 2.379909007e-10 4.598537993e-14 1.154964848e-10 1.222959205e-10 7.265025022e-13 5.88032659e-11 6.284177045e-13 1.110664774e-10 8.811850972e-14 3.295850789e-14 2.264202511e-12 2.06308979e-16 7.667633977e-16 1.048780645e-17 3.493011134e-23 0 0 4.90054259e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.654801297e-25 8.479902128e-24 1.914874903e-14 3.301481955e-15 2.597345324e-14 4.386633333e-12 1.504446992e-14 8.039877713e-14 2.144765437e-10 8.234445218e-11 2.359282369e-10 2.389418362e-15 4.232099731e-11 3.135962269e-10 4.665675432e-10 2.189720543e-10 2.349670857e-10 4.725324545e-10 4.208785667e-11 4.342224959e-10 3.185505253e-10 4.348258289e-10 4.354334042e-10 3.612010298e-10 4.2305511e-10 3.285421133e-10 6.073562337e-10 3.610392135e-10 6.500534186e-10 4.319903477e-10 5.760274638e-10 9.063005663e-10 6.989247752e-10 6.701753249e-10 7.191542337e-10 7.438222344e-10 7.429184268e-10 7.063378005e-10 8.807555195e-10 6.927719128e-10 7.716370877e-10 6.587545802e-10 7.738749005e-10 5.462423572e-10 8.563993358e-10 6.685074491e-10 7.220245159e-10 8.789582691e-10 1.108311809e-09 9.236678273e-10 9.073484014e-10 7.441569272e-10 7.02058682e-10 8.141269492e-10 7.025932087e-10 8.431122072e-10 7.306891027e-10 1.008023594e-09 8.162557937e-10 6.697899405e-10 8.948998445e-10 9.120642784e-10 8.854597543e-10 7.746936348e-10 9.638845224e-10 1.051963752e-09 8.556536926e-10 8.401357062e-10 6.968974298e-10 8.444168612e-10 1.093325816e-09 8.769436966e-10 9.118121146e-10 8.38719039e-10 7.177210702e-10 1.012792584e-09 7.426541348e-10 1.074034424e-09 6.861449748e-10 7.845735624e-10 9.393025649e-10 8.544025698e-10 8.704066465e-10 9.151734082e-10 9.663055418e-10 1.055052112e-09 7.234689162e-10 9.091305979e-10 9.307920756e-10 7.967044515e-10 9.950061802e-10 6.704801184e-10 1.022500859e-09 8.468810235e-10 8.905417653e-10 1.065896419e-09 6.705560819e-10 8.628207818e-10 1.214211651e-09 1.125047783e-09 8.301928019e-10 8.900065338e-10 9.721095496e-10 8.564561828e-10 7.080448083e-10 1.00935907e-09 8.754058403e-10 7.726374257e-10 8.643894888e-10 1.181636979e-09 1.104249043e-09 7.887883615e-10 9.772910006e-10 7.756731297e-10 9.008037769e-10 7.409370561e-10 6.254980212e-10 7.303156094e-10 8.256745232e-10 7.693820734e-10 7.087984048e-10 9.031384016e-10 8.264377352e-10 6.12498169e-10 8.735868405e-10 7.631388168e-10 5.280699879e-10 7.171395831e-10 4.873031427e-10 6.666101162e-10 5.301470152e-10 6.300108985e-10 6.359501219e-10 5.259448869e-10 6.143625498e-10 7.919809851e-10 6.223661128e-10 4.837451494e-10 4.575444944e-10 5.553255924e-10 4.971121233e-10 3.16924475e-10 3.999837998e-10 5.297674367e-10 5.02379575e-10 8.295226216e-10 2.596485205e-10 2.55604282e-10 4.900371967e-10 1.691832543e-10 1.194196444e-10 4.357509722e-10 2.392732148e-10 9.055010154e-11 1.921841293e-12 1.486300396e-13 1.729976974e-10 1.268466748e-13 4.84453247e-14 1.159317271e-13 1.378217599e-14 5.48524206e-15 1.115902328e-15 5.082967422e-18 2.636799989e-17 1.469442331e-17 4.341168314e-21 1.071516795e-25 3.587669295e-22 0 0 0 0 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.171323206e-21 0 3.543855915e-17 4.124534787e-20 8.878804543e-17 1.025987352e-22 5.839446434e-14 3.476813667e-13 5.61240646e-18 1.429329054e-11 1.632116055e-15 6.753308811e-14 1.154017336e-13 1.527528962e-10 1.351153727e-13 1.241407225e-11 3.086698741e-10 1.350644545e-10 7.275243349e-11 3.585366652e-10 3.39747636e-10 4.485234669e-10 3.54714715e-10 4.966935575e-10 5.594638203e-10 4.557967966e-10 3.070288526e-10 3.177013388e-10 3.246058568e-10 3.481253236e-10 6.232001511e-10 3.235913542e-10 3.106441044e-10 3.906863696e-10 3.667381688e-10 3.644914791e-10 5.417107557e-10 6.096136865e-10 3.180011561e-10 1.963307826e-10 6.367275349e-10 8.283950912e-10 3.355918012e-10 6.832935157e-10 5.068327277e-10 5.815535637e-10 6.272756026e-10 7.232258371e-10 5.389389937e-10 7.68457291e-10 7.606456375e-10 8.532224659e-10 6.210872999e-10 6.253839156e-10 7.01267437e-10 6.651365137e-10 6.617653097e-10 8.216132264e-10 7.539073099e-10 7.551861245e-10 6.788874703e-10 7.425362121e-10 7.893084773e-10 6.991628147e-10 7.898227108e-10 5.240206421e-10 7.819512429e-10 5.633075916e-10 7.729032237e-10 6.773130447e-10 5.039073111e-10 8.838401163e-10 7.71674101e-10 8.861374403e-10 5.534102747e-10 7.018188497e-10 6.207995639e-10 7.03661887e-10 5.442541065e-10 7.887210317e-10 1.025101522e-09 7.873482236e-10 7.322453591e-10 7.879801093e-10 8.073287955e-10 7.136423392e-10 7.326398747e-10 8.974182173e-10 6.553651794e-10 6.464405523e-10 8.284644577e-10 8.063622132e-10 7.528733631e-10 6.067558638e-10 8.205169399e-10 1.010950946e-09 9.655546045e-10 8.361433708e-10 6.370286745e-10 5.339901792e-10 8.448893641e-10 9.894431079e-10 5.88972879e-10 8.006216588e-10 5.563870096e-10 7.767405069e-10 5.508678019e-10 7.662178741e-10 9.345110088e-10 7.920034898e-10 6.065056391e-10 8.611566559e-10 6.612326016e-10 9.51794696e-10 8.015188661e-10 8.985469638e-10 5.812935243e-10 7.736692858e-10 7.502054052e-10 8.736433434e-10 5.623381905e-10 4.92724293e-10 5.579035308e-10 7.336292546e-10 4.40671183e-10 6.129976779e-10 4.915932868e-10 4.149923481e-10 5.279963218e-10 3.747632743e-10 5.625203919e-10 5.287718864e-10 5.273999416e-10 6.787563001e-10 3.13068144e-10 4.992089204e-10 6.113947519e-10 5.782620856e-10 4.959068074e-10 5.806909784e-10 4.429201823e-10 3.812721226e-10 4.396363009e-10 4.469557741e-10 4.351815425e-10 1.605140586e-10 3.331581467e-10 5.30152015e-10 3.109765545e-10 7.79774322e-11 3.073861831e-10 2.575088587e-11 3.083560946e-10 3.082793965e-10 3.204109278e-10 5.592992537e-12 1.386930607e-10 3.491746879e-11 8.558514594e-13 1.021982562e-13 7.845633324e-13 7.412614035e-11 3.577401727e-13 7.326530527e-13 5.358620849e-14 9.813822825e-18 1.67319461e-22 1.844193681e-17 2.320806132e-24 2.475265417e-20 1.434228917e-18 5.285874886e-23 0 0 0 0 0 0 0 0 0 1.076021668e-10 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.034193158e-24 0 1.142047391e-17 1.450312657e-19 1.000854796e-19 8.997578863e-15 2.140803792e-16 4.183701167e-15 8.287155282e-18 6.428530629e-14 2.770174771e-14 1.097588668e-16 1.05078382e-11 1.368426493e-12 1.156370583e-12 3.285907111e-10 6.706012952e-11 1.180563904e-10 6.674270212e-13 1.6058673e-10 1.680525949e-10 3.32707853e-10 3.684517922e-10 1.730741517e-10 1.571789683e-11 3.860957718e-10 2.332259744e-10 1.352149367e-10 1.224373484e-10 1.435382315e-10 4.372997021e-10 3.055710063e-10 2.50149002e-10 4.102001593e-10 8.404185664e-11 2.154453671e-10 3.350339563e-10 1.217378646e-11 1.064206717e-10 4.198657598e-10 4.580161748e-10 3.114500097e-10 1.896189395e-10 4.030945351e-10 4.442208987e-10 1.727786535e-10 4.254206247e-10 5.553886089e-10 1.031138933e-10 6.841748448e-10 2.679157841e-10 6.301485254e-10 4.773030572e-10 1.957519076e-10 4.200136564e-10 4.318444215e-10 3.264686845e-10 5.444541976e-10 3.66020812e-10 3.020133606e-10 5.13418745e-10 4.303229066e-10 3.16886669e-10 4.064857943e-10 3.548598575e-10 3.668304434e-10 2.517675475e-10 4.925400345e-10 3.072516554e-10 1.802144944e-10 3.8518413e-10 5.928474233e-10 4.767442576e-10 2.720926632e-10 2.779390675e-10 6.365155634e-10 4.312877623e-10 4.276649835e-10 5.228164436e-10 3.296875715e-10 6.240835504e-10 4.257148567e-10 3.061278375e-10 4.330391408e-10 5.304939077e-10 1.618150278e-10 3.303587535e-10 4.274104278e-10 2.975156276e-10 4.932718013e-10 5.096725788e-10 2.948149155e-10 3.715835666e-10 2.610416259e-10 4.212280137e-10 4.214431704e-10 5.446674043e-10 3.480864093e-10 4.345895646e-10 3.628423274e-10 3.86575285e-10 5.860475653e-10 4.723829152e-10 5.021071197e-10 3.989027175e-10 3.651215497e-10 3.796922361e-10 5.505986446e-10 5.18353606e-10 2.817022438e-10 5.782405164e-10 3.484308411e-10 3.313293621e-10 2.966378444e-10 4.908718298e-10 1.698948733e-10 4.252872058e-10 4.297681878e-10 2.857138328e-10 3.423075935e-10 4.548608593e-10 4.30082394e-10 3.759386618e-10 3.93922997e-10 5.393779056e-10 3.300751881e-10 3.460502268e-10 3.441285479e-10 3.502062565e-10 5.592661803e-10 5.16304716e-10 1.313663055e-10 1.758108635e-10 3.56694698e-10 5.478456412e-10 3.445420694e-11 2.336375061e-10 2.164191865e-10 3.428638607e-10 3.859870539e-10 3.061923074e-10 1.980432235e-10 1.943048662e-11 2.445944303e-10 2.3688883e-10 3.610421007e-12 2.447195313e-13 3.132919796e-10 2.111793971e-10 2.912954226e-10 1.418415065e-12 4.482599232e-11 1.63300342e-11 3.213415989e-12 1.133383877e-12 9.885613686e-12 6.689354168e-14 1.535247878e-11 1.156262332e-14 4.306950056e-13 6.077347706e-14 9.823789318e-17 2.522590775e-17 4.444570154e-20 4.679988172e-19 5.592874005e-14 1.950003488e-18 5.908039682e-20 1.592241806e-21 2.077685172e-19 5.980051566e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.437781786e-22 1.518779674e-21 7.945414297e-22 0 6.936677579e-17 1.903759546e-17 5.36673237e-18 3.969195592e-14 1.21847423e-16 1.577490783e-16 7.169163351e-14 6.433733596e-16 3.06006789e-16 1.247228369e-10 8.062941957e-16 1.118786529e-10 9.68870634e-13 1.222200194e-14 3.200824842e-12 2.134667731e-12 1.155634634e-10 9.333595476e-12 1.810986997e-12 3.066815807e-12 1.475823627e-10 1.542722823e-11 2.923537362e-12 7.538948551e-11 8.152723747e-12 1.398865824e-10 8.798544317e-11 2.499833289e-11 7.385645386e-12 2.274444548e-11 8.229504924e-11 1.544216383e-10 1.102276755e-10 1.546575057e-10 5.999533931e-11 1.427181421e-10 8.336135825e-11 6.436380115e-13 2.479726182e-11 1.583241214e-10 2.036204013e-10 1.446175224e-11 4.805358371e-11 1.060361706e-10 1.646914075e-10 2.52477182e-10 1.049827461e-10 2.37443598e-10 2.138554537e-10 1.320314283e-10 1.9726365e-10 6.201221524e-11 5.079141619e-11 9.332458362e-11 1.72676547e-10 2.047491365e-10 2.190142384e-10 4.331297037e-11 1.119526028e-10 2.372579118e-10 2.082921778e-10 2.637264369e-11 4.346254258e-11 2.025164848e-10 5.74613315e-11 2.099946498e-10 2.49331265e-10 3.529335441e-11 9.097194258e-11 8.237116204e-12 1.790437483e-10 1.60614044e-10 1.94751118e-10 1.758141545e-10 8.96981876e-11 8.053724407e-11 1.728005342e-10 7.43575937e-11 6.477401375e-11 2.307103884e-10 2.846204661e-10 1.448142988e-10 1.637035409e-10 1.600286929e-10 1.118389925e-10 2.218669749e-10 7.544841046e-11 6.759047688e-11 1.594990497e-10 2.692412153e-10 1.836416572e-10 1.4737659e-10 1.105900689e-10 1.597041208e-11 3.416382758e-11 2.151997462e-10 2.07392411e-10 1.765897258e-10 2.503280732e-11 1.370707619e-10 1.247831121e-10 1.429083519e-10 1.535060616e-10 1.447043133e-10 2.239934418e-10 1.763813211e-10 3.128581648e-10 3.579140857e-11 2.314068216e-11 2.055894291e-10 1.312403702e-10 1.117132887e-10 1.155432594e-10 6.01616477e-11 2.317134039e-10 4.180756473e-11 3.864686107e-11 1.341625364e-10 1.990191158e-12 8.8682606e-11 4.111831273e-11 2.58902053e-10 1.051375471e-10 2.062026891e-10 1.960981124e-10 2.791641819e-11 2.195895913e-10 1.436875534e-11 9.04186255e-11 1.50781392e-11 1.47941757e-10 1.567733771e-10 8.567500932e-11 9.484860541e-11 1.624055119e-10 4.796939189e-11 2.271464395e-12 1.903764213e-10 7.877128085e-11 1.202074149e-10 3.019642727e-12 1.97561153e-10 1.201856321e-10 7.999522285e-11 9.885546999e-13 1.402969319e-10 4.853621288e-13 1.149910754e-11 1.551169238e-10 4.95769549e-11 2.156729373e-11 1.644040096e-14 2.204007207e-12 5.681774822e-12 9.010184599e-12 1.058422742e-11 1.22423105e-15 1.5062213e-15 4.319885779e-17 9.604557799e-15 2.57723722e-18 1.177251364e-15 5.034076078e-16 6.982907317e-21 2.696603674e-20 5.521137854e-23 0 0 0 0 0 0 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.31676135e-20 0 0 5.952247339e-19 9.203474439e-24 7.728664838e-18 1.963983701e-18 4.364065492e-14 3.572768762e-18 3.170635005e-17 8.535975971e-13 1.740345821e-13 1.266323323e-19 3.502697936e-15 4.82409132e-14 3.750921216e-15 2.362882731e-12 9.286891462e-14 1.579326242e-13 4.40513529e-16 1.524175911e-11 8.416882171e-12 5.706595862e-12 1.500640019e-11 3.03708885e-11 3.762381608e-12 5.268936641e-11 4.643547445e-11 8.794414446e-11 9.486151872e-13 7.446963515e-12 6.996703395e-14 7.236985317e-11 1.410148049e-11 7.612058665e-12 2.60045924e-11 1.744973726e-11 5.487206602e-11 5.276136443e-11 5.673841614e-14 8.696792985e-12 1.051391079e-10 7.150278939e-11 2.582301809e-11 6.498736083e-11 1.138201293e-11 1.053149382e-10 2.640449804e-11 1.251008426e-11 9.141161649e-12 1.088463651e-11 5.820902513e-11 1.534940293e-11 2.222880367e-11 5.58690974e-11 2.86080596e-11 1.404823005e-10 6.363621835e-11 2.288223916e-11 1.143691166e-10 6.932744994e-11 6.688934605e-11 4.169312914e-11 1.047841659e-10 7.15896189e-11 4.757564242e-12 9.050747763e-11 2.119592658e-11 2.843105543e-11 2.114142484e-11 3.463197846e-11 1.108924634e-10 7.626312394e-12 3.291607562e-11 1.550560124e-11 1.254917315e-11 1.919749804e-11 6.520707544e-11 6.225315853e-11 4.507391885e-12 6.628967914e-11 6.802377713e-11 4.134106158e-11 5.935392001e-11 4.853906546e-11 5.901325548e-11 2.497622739e-11 1.427419327e-10 3.433305615e-11 1.935194708e-12 1.69057972e-11 8.386139024e-12 1.182679121e-11 1.083080226e-11 1.179919989e-10 1.398574317e-10 9.157030162e-11 7.521531134e-12 2.711094751e-11 8.348166441e-11 3.751326658e-11 1.274576162e-11 7.042317412e-11 1.664757728e-11 3.001121619e-11 1.819595712e-11 8.630253474e-11 6.148889149e-11 6.054667166e-11 8.412875687e-11 8.172838674e-11 1.22578347e-11 5.140455185e-12 3.615708853e-11 9.903037024e-11 8.712624533e-11 2.380249521e-11 1.245766549e-11 2.108423072e-11 1.605715631e-10 2.64775738e-11 9.175191266e-12 1.658636076e-11 1.165505928e-11 9.134501736e-11 1.248233377e-11 1.254745969e-11 4.905433983e-13 3.438845509e-11 8.754389677e-12 8.794837617e-11 6.843169333e-13 1.236647345e-10 3.522024827e-12 2.439621723e-12 2.132133125e-11 7.961086906e-12 1.556393373e-12 1.715827119e-12 1.752556628e-12 1.6216288e-12 6.977556712e-11 3.086218829e-11 6.172208121e-14 2.383010869e-12 9.924747994e-12 1.818007975e-13 1.247807572e-12 2.061666796e-11 1.077158516e-11 4.339327965e-11 4.69035715e-14 9.151553175e-13 4.523255152e-11 1.768026934e-15 1.054287573e-10 7.136953902e-14 1.097446988e-14 4.18598686e-14 2.117682098e-12 8.192262396e-15 1.341157916e-18 1.097187503e-18 2.505844857e-17 2.764929622e-22 1.162119997e-15 0 1.801326056e-19 9.763840627e-24 4.080886201e-20 6.109109471e-24 0 0 0 0 0 0 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.01161195e-27 7.38394355e-22 6.500843322e-21 3.905259246e-20 5.58321194e-22 2.583243781e-20 2.427197385e-17 2.986173122e-22 1.328299484e-17 4.94005764e-21 1.973999617e-14 1.238232622e-13 4.018090699e-16 1.74318095e-13 4.971093955e-13 4.725499539e-16 3.511670587e-14 4.874539475e-14 5.206414957e-14 1.322191795e-13 2.298941916e-13 5.844996743e-13 2.66266882e-14 2.56421012e-12 6.692230893e-12 3.301708606e-13 1.29624201e-12 2.18960713e-13 1.870968485e-13 1.247784958e-11 5.514692422e-13 6.11866898e-12 2.887936035e-12 3.13441155e-12 9.510639459e-12 1.938088376e-12 2.928549826e-11 5.697246095e-12 3.76607655e-11 1.266568931e-11 1.156052967e-11 2.59839153e-11 1.224811036e-12 2.102599155e-11 1.110166427e-13 4.803804743e-12 2.279087882e-12 3.97586416e-14 5.382830492e-12 2.480616313e-12 2.061406255e-12 1.005511442e-11 5.65437988e-12 2.898491325e-11 2.213375095e-12 7.199613098e-13 2.712554094e-11 1.482644787e-11 5.707977381e-12 2.411951122e-12 3.886017403e-12 5.639928415e-12 1.484780216e-12 1.008649698e-12 8.936464839e-13 2.360327614e-12 1.250842833e-11 7.851175334e-13 1.693527689e-12 1.836990628e-12 3.793168697e-11 4.487931452e-12 9.705912385e-12 1.618949746e-11 5.151515925e-12 2.372491238e-11 4.906687472e-12 1.345550361e-11 2.336315847e-12 1.097329118e-12 1.637736444e-11 1.490152548e-12 8.731205166e-12 1.40648e-11 4.761745289e-12 5.141424247e-12 9.680346881e-12 1.819135111e-12 1.013094117e-11 7.173842516e-12 2.648461758e-12 7.413964955e-12 1.299684981e-11 6.891344665e-12 4.925480439e-11 3.52621148e-12 3.303273603e-12 5.609493845e-12 4.656719548e-12 1.641142707e-11 5.142827467e-12 3.794809796e-12 2.984386046e-12 1.231292765e-11 1.473523775e-12 2.562182661e-11 2.938006648e-11 1.329570181e-11 1.842482525e-12 8.681592703e-12 5.231196639e-11 6.131872881e-11 8.678444675e-12 6.582329113e-12 9.04284019e-12 1.847788998e-11 3.128182313e-12 4.74210864e-12 5.562391783e-12 1.266362035e-11 6.237673368e-13 1.458102262e-11 1.645749898e-11 1.389575626e-11 4.143948272e-13 1.580868184e-11 1.503461922e-12 2.262313962e-12 1.435985402e-11 4.123411973e-13 2.671089458e-12 6.259619371e-13 2.005460492e-13 1.256837533e-11 1.434949368e-12 6.725508078e-12 8.932695933e-12 1.628142128e-12 1.106937594e-12 1.894908071e-13 9.396323346e-13 3.836066861e-13 2.045170233e-14 1.299359327e-11 1.575296678e-11 9.338603875e-12 1.020264664e-13 1.06869774e-13 3.597428699e-14 1.232749598e-16 1.491667164e-13 5.439179662e-15 1.767560542e-12 8.928849947e-14 2.421861667e-13 2.143859187e-15 3.243014338e-18 4.923982804e-17 4.590907125e-15 3.5119425e-17 9.571070268e-19 4.786083826e-16 2.36319217e-18 4.411865785e-20 8.309545088e-17 2.744791621e-19 5.327323852e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.144005932e-25 3.464185455e-22 3.268225115e-25 6.469837012e-20 0 9.344695108e-26 4.157533503e-19 1.502942726e-19 1.44175447e-18 3.566386698e-16 3.519790468e-16 2.787521845e-15 2.321261051e-14 7.753613631e-18 8.776644413e-16 1.191666186e-14 4.326374869e-12 1.650412878e-12 4.659575579e-14 4.376285341e-14 2.899934085e-15 5.473417234e-17 2.131752569e-12 2.201720855e-13 1.082241846e-14 5.907475137e-12 1.172413779e-14 9.62356875e-16 1.88359762e-14 2.377432749e-14 1.028542669e-13 3.547104769e-14 7.727446881e-13 4.356225477e-13 1.315574294e-12 1.01661622e-12 7.604428102e-13 9.841636634e-15 7.423953565e-13 2.163642648e-12 4.611210885e-13 3.791867515e-13 1.123970281e-12 4.085590436e-14 2.506169509e-12 1.011476749e-12 2.1692671e-13 2.107646263e-12 2.605299861e-13 5.900625903e-13 5.181040932e-13 7.192100946e-13 3.224812361e-12 4.490665211e-13 7.099763077e-12 3.59915522e-13 1.067296702e-13 2.809398217e-13 1.72355417e-13 7.905908524e-12 8.354757269e-12 2.801013186e-14 8.283473745e-13 1.90356166e-12 3.070479748e-12 1.480561432e-12 2.557415762e-13 4.470539446e-13 8.485166865e-13 2.913645684e-13 2.041086311e-12 1.492367839e-12 3.910997938e-13 1.769540807e-12 1.686296629e-12 6.137368439e-13 8.555709252e-13 1.717556318e-12 3.296802945e-14 3.879368444e-12 5.753723888e-14 5.927546903e-14 8.321789481e-13 6.433442166e-14 3.65872622e-12 1.728392713e-13 4.782300692e-12 3.543097932e-13 3.382592183e-12 1.719495073e-12 1.96527986e-12 5.661420311e-12 2.455222481e-12 7.074195128e-14 2.005862794e-13 8.539560076e-13 2.387932218e-12 1.387879116e-12 4.794122532e-12 3.15581804e-13 4.07450179e-13 7.880133088e-13 4.823185551e-14 3.267543954e-12 7.034786622e-13 3.147499559e-12 1.279091848e-12 7.578543801e-13 6.957306492e-14 2.901951026e-12 1.127344483e-12 1.94307374e-14 8.49051996e-13 1.396379889e-13 2.857892805e-12 5.106429001e-13 1.040478773e-12 1.102314864e-12 5.759630533e-13 5.228789169e-13 4.109252625e-13 1.415765757e-14 8.204756702e-12 1.043433445e-13 4.024035806e-12 4.036960613e-12 1.607667809e-12 8.532041583e-14 3.970355105e-12 1.870158079e-12 2.78103446e-12 1.291893499e-13 4.708366241e-13 2.9843947e-14 3.063421902e-13 6.987910977e-14 1.199803241e-13 2.22548615e-12 1.462232065e-15 5.248971948e-13 6.730631886e-12 2.10596189e-14 2.080759214e-13 6.434256026e-15 2.707141803e-13 1.80648906e-14 2.841598276e-14 3.965483627e-16 1.845531413e-14 1.57706582e-15 2.442278899e-13 1.505898309e-14 5.057998574e-13 1.101398237e-10 2.47768699e-16 1.789468563e-17 1.288526179e-17 1.724843485e-17 1.857565139e-20 2.974017071e-18 8.080287423e-19 1.300236182e-16 1.328873865e-15 8.116974136e-22 0 8.160357482e-23 4.690902892e-20 9.872123026e-22 0 4.117238906e-21 0 0 0 0 0 0 0 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.571512541e-23 5.69925946e-23 1.363468467e-27 1.074728076e-21 0 9.733213922e-20 3.805957738e-23 7.880660756e-17 5.243215494e-14 3.360204541e-14 2.334284704e-17 1.540139185e-16 9.138552337e-18 1.445733221e-16 6.104609258e-14 2.364907641e-15 1.351806144e-13 1.711965564e-14 5.683651001e-14 1.969990551e-18 6.113342078e-15 5.972107755e-15 2.054154673e-15 3.836511047e-13 1.069073772e-13 3.573427896e-15 1.491558338e-15 3.456747968e-13 2.426931843e-16 1.580625675e-15 1.92321801e-13 2.597797787e-13 7.343734984e-14 7.662785456e-14 7.154595312e-13 2.283375752e-15 1.513251162e-13 2.488565702e-13 3.576248786e-13 3.135079457e-15 1.143771686e-14 7.662061025e-14 6.593176051e-14 8.015440443e-14 4.655370209e-14 1.202250628e-13 2.618339445e-13 2.432428175e-15 6.628110168e-14 7.272650636e-14 1.284748531e-13 1.099194615e-13 1.085497387e-13 8.339520766e-14 1.420100198e-13 6.790030752e-14 2.699540405e-14 9.108008528e-13 1.583574593e-13 3.579538099e-13 5.407141469e-15 4.845638472e-14 2.533448315e-14 2.483140981e-13 5.258744523e-13 1.867915902e-14 2.517721591e-13 4.723146724e-14 9.790665795e-15 9.295082254e-15 3.151093685e-14 5.655837234e-14 1.642234488e-13 4.308765251e-13 5.99881632e-14 4.804943177e-14 6.336812439e-14 3.766335673e-13 6.909490249e-13 2.579994221e-13 2.128861377e-14 9.11628768e-14 1.40052629e-13 2.126906742e-13 2.773727826e-14 1.886790161e-13 2.277999516e-14 5.607453286e-14 4.970420153e-14 2.368531977e-13 1.089333607e-13 3.340015624e-14 9.942396877e-14 6.177748721e-14 6.06454202e-14 6.055263451e-14 5.377647454e-14 2.521449929e-13 6.455352687e-14 2.721405717e-13 6.700117468e-14 3.354093336e-14 2.531566645e-14 2.066716681e-13 8.46016289e-15 1.296156691e-12 2.967060806e-14 1.302794852e-13 1.291086317e-13 3.885719752e-14 1.801845753e-14 1.862125989e-13 1.094544608e-14 3.822418852e-13 3.267389818e-15 9.530735543e-14 4.30492039e-13 4.365765987e-14 3.354724963e-16 2.551525527e-13 5.352575848e-14 1.023660588e-13 1.518305686e-12 1.155487942e-15 1.316592407e-13 5.248677419e-14 5.166477859e-14 1.18577341e-13 3.029319502e-14 9.5444247e-16 2.296580165e-13 8.310897214e-13 2.792787764e-14 4.093382883e-15 8.416989718e-14 9.86150059e-15 1.037247434e-13 9.373021738e-14 8.82623766e-13 6.374241967e-14 3.793834973e-15 2.217771687e-15 1.277597247e-14 5.704807292e-15 2.237201876e-14 8.109085865e-13 3.511612639e-14 1.706558067e-15 2.185763974e-13 5.991534412e-18 1.685865344e-16 5.146629349e-16 6.87060062e-16 2.077797647e-14 1.13684585e-16 1.104975183e-18 2.963191938e-15 2.70162368e-19 1.179398846e-18 2.292621337e-15 3.878226417e-18 2.463126021e-15 1.565924374e-23 3.50876144e-22 0 3.171256319e-19 1.110970629e-25 0 0 0 0 0 0 0 0 0 0 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.515420606e-23 3.438580368e-25 2.148340405e-25 3.88236781e-21 8.128126695e-26 8.062257695e-24 3.255806452e-19 9.684540085e-20 1.276218255e-14 7.699970757e-16 1.477295075e-25 2.165290357e-16 1.712555975e-16 2.964219039e-17 8.57528022e-15 1.157512893e-15 3.575312662e-15 5.291223e-16 6.454133873e-16 4.59584652e-15 1.75034146e-14 3.645805213e-15 5.503385898e-15 1.342584021e-16 4.624856527e-15 1.791408301e-15 7.306619434e-16 6.509163612e-14 4.498759422e-14 7.392877451e-15 3.028933589e-16 8.547152399e-15 1.363574733e-15 1.739913183e-14 4.097118661e-17 1.622898282e-15 6.752904967e-14 2.84202e-15 6.464274454e-15 2.287110742e-13 6.119092581e-15 2.144277175e-14 3.123153843e-14 1.285184287e-14 1.681051227e-15 4.01895499e-14 7.660802233e-17 7.830201412e-15 5.267958289e-15 7.180684842e-14 3.105700203e-15 1.312561575e-15 2.366465867e-14 1.7314971e-14 7.443399766e-15 2.406646999e-14 4.473557488e-15 2.673237795e-13 2.407365263e-14 8.36924674e-15 8.022282119e-15 8.220707605e-15 4.367721505e-15 1.482686908e-14 2.215298036e-14 1.808091254e-14 2.600633243e-14 2.182601869e-13 1.497392836e-14 2.906760385e-14 2.208526645e-14 2.000491527e-15 1.87408611e-14 3.007246768e-14 5.065391972e-15 7.56314304e-16 5.951614491e-14 1.283726466e-15 1.046619107e-13 4.447688603e-15 9.687085704e-14 3.971566822e-14 4.535828602e-14 2.155868232e-14 4.462594749e-14 2.291359538e-14 6.663508018e-14 5.016384124e-15 1.570565138e-14 7.981277229e-16 3.709960091e-14 1.210661562e-14 6.812804513e-15 5.808615789e-15 1.827536607e-14 8.01989114e-14 2.242269805e-14 5.630041488e-14 3.838423893e-14 2.688741037e-14 1.276691408e-14 9.017995845e-16 1.602594511e-14 1.713167335e-15 2.6307007e-14 3.739430696e-14 1.494874714e-14 2.948774409e-14 6.012871575e-14 1.187466167e-13 3.179535934e-14 2.39030244e-15 1.474962906e-14 1.751012312e-14 4.297655512e-14 7.098355838e-15 1.465669556e-14 6.414166598e-15 3.227721458e-15 2.600722706e-14 3.94757531e-15 2.933858097e-14 8.938173653e-16 6.798374966e-14 2.957980393e-14 7.725824722e-17 6.482538897e-15 1.443906005e-13 5.557479206e-17 6.375342433e-14 4.105376629e-15 6.212736359e-15 4.21810771e-15 7.195782703e-16 3.777585025e-15 1.942845673e-16 3.280205185e-15 2.045404367e-14 1.588606623e-15 5.043900209e-16 3.684127352e-16 2.3838606e-15 3.043547117e-14 9.63751853e-18 4.728250556e-16 4.228579393e-15 7.189939949e-15 1.142016452e-15 1.354200737e-15 3.185732795e-15 2.299092993e-16 1.711884109e-15 1.892441055e-17 4.590295314e-17 3.278515208e-20 4.748969078e-15 1.371647718e-18 3.682385212e-18 2.081883346e-20 6.525757987e-25 1.563934037e-24 2.809736285e-22 2.156274087e-21 8.748980579e-23 8.465734685e-21 2.028827207e-21 2.075498534e-26 2.617462817e-23 0 0 0 0 0 0 0 0 0 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.820767587e-26 0 9.820173286e-21 0 1.295535542e-21 2.628609061e-17 3.021160182e-20 7.50097587e-21 1.328371415e-19 1.448196731e-19 3.645377353e-17 1.183609834e-20 1.045540928e-17 1.148276975e-17 3.397409447e-17 4.978386857e-18 1.765112497e-16 1.85741034e-16 6.748068209e-17 4.233858329e-16 7.029781244e-18 7.07915828e-16 7.268590316e-16 2.137861562e-14 6.020604744e-17 7.191070193e-17 5.459955298e-16 2.680422937e-15 3.472291784e-17 2.969119344e-16 6.978360775e-16 7.544643537e-16 1.141441793e-15 1.788985002e-14 5.881597255e-16 7.134058055e-15 3.874745781e-16 7.478227443e-16 9.848793722e-16 4.138228834e-17 2.535491941e-15 1.322238314e-14 5.918415326e-16 2.416523151e-14 8.834907204e-16 1.259598102e-15 1.57783302e-15 5.275551362e-15 1.639621826e-15 1.300641546e-14 8.467927103e-16 1.357596164e-15 2.4967597e-15 2.323954503e-15 3.5688169e-16 2.105942822e-15 1.445217543e-15 2.200268518e-16 3.824677997e-16 8.075241453e-16 2.493128006e-15 1.611830007e-15 4.917921204e-16 9.696615624e-15 1.1694418e-15 1.675131668e-15 5.339114004e-16 2.266273124e-15 3.257015641e-15 4.915325788e-15 1.661968174e-15 3.083240328e-15 1.967765016e-15 1.018423775e-15 1.365436525e-15 2.581711936e-15 1.270713538e-15 9.489541898e-16 3.612332555e-15 1.868270376e-14 1.759303172e-15 3.244537271e-15 1.224070585e-16 2.063713177e-15 3.244583504e-16 2.832524509e-15 3.210459749e-15 2.138498326e-15 1.335344022e-16 4.978510473e-15 1.905053359e-14 1.73197883e-16 2.638671185e-14 2.510618e-16 4.083139269e-15 3.51437916e-15 2.829975854e-15 3.962801271e-16 3.727186266e-15 9.35518911e-16 3.817827934e-15 2.242550821e-15 1.04767267e-15 1.396498386e-14 2.507454311e-15 2.917812916e-15 3.208076198e-15 5.501105273e-15 1.08749349e-15 9.573079253e-15 2.099373866e-15 2.84341055e-15 5.507301449e-16 6.863329392e-15 4.207589559e-15 1.79754477e-15 3.150826701e-16 1.341813277e-14 1.118530294e-15 8.616417472e-16 1.021891299e-15 3.528585381e-17 9.386939237e-16 1.201122066e-15 5.340449926e-16 1.533557059e-16 1.311298228e-16 3.45461236e-17 5.183546239e-16 8.642940128e-15 2.057099521e-15 6.00744319e-15 9.210111636e-16 7.182041702e-16 5.550006455e-16 1.631268338e-15 2.745795034e-16 3.039421794e-15 8.462530214e-15 2.232603412e-16 6.593993665e-19 1.378771893e-18 2.4016955e-15 9.929756875e-20 8.065622801e-16 8.701705307e-16 1.797753964e-16 3.535703819e-18 5.806851857e-16 1.136157013e-15 1.734475667e-17 2.107456035e-17 1.111352149e-21 2.294341714e-17 3.447724432e-22 3.092777733e-19 3.526883333e-19 8.513521153e-22 1.942034861e-17 1.960256049e-17 3.252089477e-20 4.570450423e-21 4.641157456e-22 2.881393867e-22 3.804605058e-20 0 2.722615711e-25 0 0 0 0 0 0 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.254309967e-24 0 0 0 2.747795724e-25 0 1.495566176e-23 0 0 6.083686693e-21 0 1.008095583e-22 5.034121708e-23 3.131508197e-20 5.591173618e-19 7.177858151e-19 2.105635032e-19 9.886005845e-16 3.659060599e-17 3.576660851e-16 7.673362107e-18 5.143169806e-17 4.934672814e-16 1.841238889e-17 3.776948673e-19 1.336701496e-15 6.496483129e-18 8.262438991e-17 2.426784332e-17 1.745227618e-17 1.769849819e-16 1.297296983e-15 1.28405786e-15 7.729017404e-16 6.471644745e-19 7.745715848e-18 1.453525118e-16 1.451454189e-17 1.56792092e-16 9.452917575e-16 7.407148973e-16 1.826475015e-16 4.294148144e-16 1.957008926e-18 2.284415484e-17 5.441134621e-18 4.580230608e-17 2.125997636e-16 1.388285268e-16 5.943720492e-16 7.06114418e-16 3.188541604e-15 3.164898967e-16 3.185707874e-16 5.918221162e-17 1.069828937e-15 1.368486504e-16 2.51454664e-16 1.925163548e-15 7.738528638e-17 6.872564511e-16 2.337669946e-16 4.071336625e-17 7.751091358e-18 2.416852594e-15 2.353095846e-15 4.41746529e-16 6.830539658e-16 1.993282455e-16 6.7577175e-16 1.744289809e-17 1.424030671e-15 3.029019088e-17 5.206967941e-16 3.384185228e-17 2.185570647e-16 7.028905233e-18 6.74993199e-17 1.795553987e-17 9.826565837e-16 1.24994152e-15 1.213892739e-15 7.93852338e-16 5.61850162e-16 5.559641222e-17 2.293346972e-17 4.723265648e-16 1.982611583e-16 4.184851098e-17 8.908023191e-16 4.086475987e-16 3.534673287e-16 8.816395069e-17 6.891322751e-16 4.175199704e-16 1.029037867e-16 2.082459287e-16 3.545154137e-17 1.25839103e-16 6.990530357e-16 2.082644997e-15 9.934858927e-16 3.188934599e-16 2.260966312e-15 5.500973515e-16 5.630852336e-25 5.573246074e-16 6.32706833e-16 7.150051077e-16 1.157755081e-16 3.639636571e-16 2.263847817e-16 4.179642787e-15 1.658907786e-15 4.059381459e-16 7.985160084e-18 1.839249573e-16 4.34549414e-18 4.287080913e-16 6.59881056e-17 8.246687659e-16 1.68408733e-16 2.822217516e-16 2.970968057e-16 2.081803737e-16 6.876108025e-16 1.032429025e-15 3.807935788e-17 7.091877045e-16 1.496036065e-17 7.646791078e-16 6.314025285e-16 1.696974908e-16 1.85097355e-16 1.588955664e-16 2.894241286e-16 1.377011918e-15 2.578522146e-17 1.01990441e-15 2.934143564e-17 5.6221611e-17 3.611072923e-18 1.118461449e-16 0 4.45892817e-17 1.509522793e-18 3.833762652e-17 2.123028095e-17 1.234726915e-17 2.593919571e-18 8.648482014e-22 6.571164128e-17 4.948208646e-19 5.878947095e-19 1.299768203e-16 1.962265905e-18 1.339947444e-22 1.666655011e-21 9.26897303e-27 3.522454579e-26 0 0 0 0 8.702033408e-25 0 2.934312065e-25 0 0 1.901158504e-26 0 0 0 0 0 0 0 0 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.770103758e-27 6.734022645e-25 0 0 0 4.043482272e-20 0 1.165021421e-25 0 0 4.9942793e-23 1.45245796e-24 6.004449725e-22 1.699288353e-22 7.74833e-16 7.480895062e-19 3.161465898e-17 0 2.138553376e-17 1.141072572e-17 1.025271324e-16 1.814645757e-18 6.583441794e-19 1.1054412e-18 5.814788287e-19 1.230340072e-18 6.798647571e-17 5.885126627e-19 7.820506778e-19 2.929446427e-18 3.334053934e-27 9.345530423e-17 2.188700833e-16 6.1386307e-18 1.231607323e-18 1.433824055e-17 1.685534628e-17 1.479936119e-16 9.403630695e-17 2.629319841e-16 3.110233068e-18 1.782971543e-16 1.381071777e-18 9.95365478e-18 4.042067406e-16 6.514484849e-18 6.319580207e-16 4.403262543e-18 1.767359313e-17 1.352649363e-18 9.770836784e-17 8.539113429e-18 1.128552254e-16 2.108869213e-18 1.786035184e-16 1.922714992e-17 1.249901374e-16 4.508025098e-17 2.635835511e-18 1.259563152e-17 2.615492563e-18 2.024651166e-16 1.882062868e-17 2.316407876e-16 5.628994296e-17 3.388333781e-17 7.878486677e-17 3.65121492e-16 4.85438786e-17 1.92162238e-18 9.582737315e-18 1.291446065e-23 6.153664402e-17 1.524706328e-17 2.357389498e-17 4.88808656e-16 4.135765028e-17 5.505284286e-17 1.136763716e-17 9.353509248e-17 5.257436456e-18 5.270108464e-17 4.196396838e-17 6.725266522e-17 1.934739319e-16 1.647453077e-16 1.473917241e-16 1.416349834e-17 2.301785698e-17 1.495490388e-17 5.382765902e-18 5.405553702e-17 4.055191286e-17 1.382076809e-16 4.307719094e-17 3.126293087e-17 1.120545801e-16 1.452715112e-17 2.198914541e-16 2.009507559e-16 2.077681432e-17 2.694177856e-17 1.339166086e-17 1.982613078e-16 5.775666612e-17 9.184294993e-18 4.060272965e-17 2.440609723e-17 1.653134094e-16 5.485690018e-19 1.527025892e-16 7.510570727e-17 4.047807076e-17 6.609948694e-17 8.332077541e-18 5.073048054e-17 6.378364279e-18 8.787931415e-17 1.069620509e-17 9.624100177e-17 2.6539275e-17 1.270703269e-17 1.372341296e-18 6.001525637e-17 1.940905339e-17 7.93726925e-18 1.628014296e-17 1.226540189e-16 1.095696618e-17 1.709122437e-17 2.311262055e-17 2.155129179e-17 1.743935077e-17 6.925699539e-22 1.140567285e-17 1.037141612e-17 1.123785068e-16 1.482099959e-18 1.105311848e-17 3.038140428e-18 2.837332903e-17 8.498828965e-24 2.425742442e-19 2.400501905e-26 1.660835283e-17 2.814296141e-17 3.242243616e-17 0 0 9.641208201e-17 6.430712644e-19 1.326453299e-18 1.726439714e-18 3.934170577e-19 6.164816364e-23 0 4.670352523e-23 2.872694887e-21 4.948548778e-23 3.281126609e-25 5.644677097e-22 0 0 0 0 0 0 2.475699598e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 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.48063213e-25 0 4.409955364e-24 0 0 2.342567313e-23 6.439308894e-25 0 0 0 0 0 2.809546237e-22 2.457926519e-18 1.468209482e-18 7.964046279e-17 0 6.132239748e-18 3.268703834e-18 1.190796079e-17 7.21352681e-19 3.426553809e-17 4.47821773e-17 3.382448908e-18 9.773397283e-18 9.316956365e-23 1.096893634e-17 9.195344911e-23 1.078494182e-22 1.877067174e-17 5.866226577e-19 5.218773421e-17 9.355629876e-19 3.025822575e-17 1.84343881e-17 0 2.445055803e-18 9.745692097e-19 7.382414336e-19 2.446963133e-18 6.154978787e-18 0 8.479472996e-18 4.543109309e-18 2.649974808e-18 7.206182815e-18 2.692199149e-17 3.052648237e-17 2.121852415e-17 6.762337356e-17 8.803998338e-19 4.104977203e-17 8.536210731e-19 1.782626081e-17 2.837657733e-17 3.047655524e-17 1.607331756e-17 1.975644295e-18 9.799987978e-18 5.915499908e-18 1.812632356e-17 3.530399197e-18 1.394432239e-18 5.229419861e-18 6.381149484e-18 7.077495337e-33 1.827522733e-18 3.366582762e-17 1.346686552e-17 5.21800859e-19 0 2.372426549e-17 6.219468684e-18 6.577085862e-17 5.095311402e-18 8.061832912e-18 2.441390296e-17 2.639170267e-18 2.586378268e-17 0 6.068070944e-17 9.560613825e-18 1.069297525e-18 1.266639013e-17 1.698963295e-17 5.936264039e-18 3.135508694e-18 3.124435949e-19 2.352237164e-18 2.881412882e-17 1.197046968e-18 9.165292437e-18 1.395659562e-17 6.286098328e-17 4.000516828e-17 2.976797111e-18 2.590561771e-18 8.857655284e-19 7.947993916e-19 1.125128104e-17 1.902842689e-17 3.128803073e-17 3.091627624e-18 3.285223192e-18 4.534939744e-19 1.484316264e-18 1.166469777e-17 0 1.002552137e-18 8.313367808e-18 1.035208252e-18 2.090369336e-18 4.43260956e-18 1.816359119e-18 7.402258461e-18 3.403725676e-18 6.678004087e-18 7.427985701e-19 0 3.69448255e-20 3.706795467e-18 2.848844556e-18 6.02494915e-18 1.184824738e-17 1.650088975e-17 3.876698307e-18 0 0 0 3.312922084e-20 0 5.491191551e-18 8.213364694e-18 1.677666123e-17 1.330326531e-21 1.282742561e-17 5.428263223e-18 1.588962376e-18 3.157417525e-17 7.101294417e-22 0 5.692322057e-26 5.493992488e-17 0 1.606741531e-17 2.248588745e-19 0 4.947296144e-22 0 1.270945243e-18 0 8.97914719e-24 3.129196799e-20 2.212854406e-26 0 1.414752255e-22 0 0 0 0 1.050446045e-22 0 0 0 0 0 0 0 0 0 0 0 0 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.357111943e-27 0 0 0 0 0 9.30157525e-22 1.417003355e-25 1.639646276e-22 0 0 0 2.493082561e-21 5.6164162e-19 0 2.35110629e-20 0 1.090299914e-18 0 0 0 0 1.058095709e-22 0 0 9.109141407e-19 4.388196155e-19 9.849368928e-25 8.724101284e-24 1.142729737e-18 0 7.057632142e-19 2.012253814e-18 0 0 1.66782797e-18 3.863370802e-18 3.922637964e-18 5.917348844e-19 1.362452705e-18 0 2.807212819e-18 1.249243108e-18 3.659447382e-18 1.412600415e-18 6.950532933e-19 0 5.021201742e-19 0 4.629557793e-19 4.21889653e-19 5.105629912e-18 1.170549986e-18 0 0 0 0 1.858793846e-18 4.47899884e-19 2.947223457e-18 0 9.837464525e-19 5.073980498e-18 1.185822827e-18 6.392905481e-19 9.12783371e-18 1.410418791e-18 1.178769e-18 1.649134296e-18 2.12741468e-18 2.243629483e-18 3.174248198e-18 3.549855267e-29 4.885430492e-18 1.235295247e-18 1.065216184e-17 0 4.976095695e-18 1.725008029e-18 0 8.204957241e-18 1.241108176e-18 9.406878396e-19 2.233956396e-18 0 5.418196431e-19 0 0 3.068641534e-18 0 3.6157194e-18 1.131469365e-18 0 1.1807478e-18 1.940459676e-30 0 4.30683269e-18 2.152511379e-18 4.676862643e-18 4.146313683e-19 0 6.700313406e-18 1.389198226e-18 4.195511006e-19 1.319918276e-18 2.27095265e-18 0 4.699900522e-18 0 1.484300666e-18 1.742212614e-18 1.933485594e-18 4.199561355e-18 9.579383599e-19 0 0 0 1.354426347e-18 0 0 0 2.814030263e-18 4.750317023e-19 1.234352643e-10 3.456754813e-20 9.865828213e-21 4.235659799e-18 8.569592244e-19 6.553030948e-19 0 2.085909292e-18 9.829756444e-19 0 5.764796766e-18 0 4.063043927e-18 0 0 0 4.455168518e-24 7.591457497e-19 0 0 8.910272248e-19 4.57742462e-18 0 0 0 8.565750175e-19 3.296612117e-26 6.326117461e-20 0 0 0 0 0 0 0 0 0 9.06294655e-22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 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.072939993e-28 0 0 0 0 0 0 0 7.517723976e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.762764403e-18 0 0 0 0 0 0 0 0 6.474781039e-19 0 0 0 0 0 0 0 6.593499059e-19 0 1.054857702e-18 1.024248326e-18 0 0 0 0 0 0 3.556936577e-33 0 4.674903398e-19 3.614130381e-19 0 4.535470213e-19 1.112340254e-28 0 0 9.050246902e-19 0 0 5.487045849e-19 0 0 0 4.687864649e-33 0 4.388208066e-29 0 0 0 0 0 9.786860917e-19 0 0 7.738160787e-19 0 0 0 0 0 0 6.869110242e-16 4.15745543e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.129007927e-19 0 4.064117855e-19 6.062760184e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.458992654e-26 1.342151185e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.213592735e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.15355523e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.107871958e-17 3.491413224e-25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.515047946e-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 7.735160167e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.124563959e-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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.021173085e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.758430277e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.885004098e-20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.449516867e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +# Events [PSD/PSD.dat] N: +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 2 0 0 1 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 2 0 0 0 1 1 1 0 1 0 0 1 0 0 0 0 0 2 0 1 1 1 2 0 1 0 0 1 0 1 1 2 1 0 1 1 3 0 1 2 1 3 1 3 2 0 0 0 2 2 4 0 1 0 0 1 1 3 1 4 1 1 0 2 0 1 3 3 0 1 3 2 0 5 2 4 4 1 1 2 1 1 2 3 0 4 0 0 0 0 0 0 4 3 1 3 1 1 2 3 2 0 0 1 0 2 0 0 0 3 1 0 0 2 1 0 0 0 0 0 1 0 2 0 2 0 0 0 2 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 1 0 1 0 1 0 1 2 0 0 0 1 1 1 1 3 1 0 4 2 0 3 2 0 4 2 4 2 1 2 2 3 1 1 4 7 2 5 4 1 2 3 1 3 3 2 2 3 2 3 2 2 4 2 6 2 0 4 5 6 6 1 6 2 2 2 5 3 3 5 3 6 2 1 3 2 6 5 4 4 4 3 5 6 5 7 4 2 5 4 5 5 7 2 4 4 3 4 2 1 3 5 5 1 1 5 5 5 6 3 0 3 3 1 2 0 0 1 1 4 4 4 3 2 1 3 3 0 1 2 2 1 3 3 1 0 1 1 0 3 1 2 3 1 0 1 0 0 3 1 1 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 1 0 2 2 1 0 1 1 1 2 1 1 0 3 2 1 3 2 4 3 1 1 3 4 1 3 1 5 5 3 6 2 4 2 2 1 8 3 6 7 6 4 4 7 3 6 3 2 4 6 7 8 5 4 7 2 7 5 2 7 6 4 5 12 5 8 4 5 8 10 4 6 6 3 8 7 6 5 11 12 8 4 2 6 9 5 6 6 4 7 7 5 7 9 6 2 6 11 7 6 4 6 8 8 7 4 7 7 4 7 7 7 5 3 4 7 4 5 5 4 3 3 2 2 4 8 3 2 5 6 0 5 2 7 3 4 7 2 3 1 1 1 3 3 5 4 0 2 1 1 0 1 0 3 1 0 0 0 1 1 2 0 0 0 0 0 0 0 0 0 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 0 1 3 0 1 1 1 4 2 3 1 5 1 1 2 2 2 2 3 2 2 1 3 9 1 7 7 4 3 6 3 3 3 6 4 9 5 5 3 8 6 8 7 10 13 5 13 6 8 6 8 8 9 5 11 13 14 6 11 2 11 9 13 11 10 8 11 8 10 9 14 13 13 12 14 12 13 15 12 10 6 8 5 11 14 12 9 11 10 15 4 16 14 7 14 15 10 12 14 8 17 11 7 13 11 14 8 12 6 7 9 7 14 8 11 8 14 7 9 9 7 13 8 2 7 10 7 7 7 6 10 10 8 6 7 5 4 1 5 2 3 5 7 3 2 4 2 2 3 2 2 3 3 2 4 2 1 1 1 4 5 2 1 1 1 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 1 4 3 2 0 1 0 4 5 4 1 1 4 3 5 6 8 2 6 3 5 2 9 6 8 7 8 13 7 11 11 10 12 6 8 1 10 5 19 6 10 13 7 12 14 14 16 14 11 13 9 19 15 22 13 20 17 15 16 11 11 9 21 18 16 11 20 16 17 17 26 11 13 12 19 14 17 20 20 21 18 13 14 18 19 19 21 15 18 11 13 19 24 20 26 9 15 5 24 17 7 13 19 22 10 15 14 4 17 11 11 10 12 18 14 11 9 12 12 6 5 9 12 8 11 11 7 11 16 9 7 11 8 7 14 2 7 10 4 5 13 4 6 5 5 6 6 4 3 8 4 2 1 2 2 3 2 2 7 3 1 0 2 1 0 0 0 0 0 1 0 0 0 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 0 0 0 0 3 2 3 3 4 4 4 3 3 4 4 4 3 6 3 5 8 1 7 8 12 6 9 12 11 16 13 16 17 11 11 7 11 12 15 12 17 11 8 14 13 11 21 15 13 24 17 13 17 17 15 22 21 16 18 15 14 22 16 16 29 21 13 26 20 21 21 21 25 16 16 20 25 24 13 24 18 23 23 22 32 25 23 22 17 20 19 17 22 31 23 23 17 22 17 24 21 15 21 13 25 25 18 19 23 19 14 21 18 18 19 16 22 17 15 13 15 15 21 16 12 5 11 8 12 13 13 9 5 9 11 16 9 10 11 7 6 12 11 4 3 6 4 6 10 7 9 2 0 4 2 8 3 0 4 3 5 3 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 2 0 2 5 7 4 7 2 7 8 3 7 9 3 6 5 4 14 10 8 9 6 7 5 8 12 10 9 13 12 15 15 12 22 18 23 18 14 11 17 12 21 17 20 20 22 20 24 14 23 22 20 22 22 26 22 27 23 27 21 16 22 20 25 23 31 22 34 28 15 34 23 31 26 22 25 29 32 28 26 23 35 28 32 33 30 31 43 31 38 36 25 25 29 25 32 32 22 25 17 26 33 29 24 36 18 24 28 31 22 21 23 26 16 30 18 13 29 24 17 29 10 25 13 24 22 19 17 18 25 19 22 14 19 12 15 11 15 19 10 12 19 9 12 8 9 5 10 5 6 2 5 11 2 8 4 7 4 3 6 4 3 2 3 2 2 0 0 1 0 0 0 1 0 0 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 1 2 1 3 4 1 7 2 1 6 8 11 10 5 8 7 6 17 12 16 9 6 14 13 14 20 15 16 14 15 19 15 15 26 18 19 19 15 25 20 20 22 30 15 31 22 19 27 24 27 20 21 23 23 31 30 35 27 27 33 32 33 23 30 27 36 34 33 45 38 34 39 39 33 38 32 35 29 41 34 42 39 37 31 36 29 34 34 38 35 36 42 39 29 29 41 40 34 30 35 36 34 38 39 34 34 25 19 33 27 28 34 32 21 24 29 27 26 17 22 26 19 19 21 25 25 20 18 15 31 13 20 16 17 18 18 21 16 8 16 18 8 20 6 12 11 10 8 8 11 8 6 7 5 3 2 3 7 4 2 1 1 0 1 0 0 0 0 0 0 0 0 0 0 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 0 1 0 6 6 6 4 4 10 9 5 5 8 6 10 15 8 11 9 8 16 15 12 15 12 15 25 17 16 18 23 13 24 21 17 27 30 33 25 25 29 20 39 18 27 24 28 27 34 29 31 38 35 38 38 43 41 31 31 35 45 39 43 45 47 50 39 39 43 32 41 52 38 43 36 27 27 48 44 38 36 28 48 37 35 45 45 29 42 35 50 35 46 31 32 50 42 40 54 36 41 29 28 31 30 26 28 24 33 44 36 34 43 33 32 33 32 28 32 33 32 26 30 30 26 19 32 18 25 37 20 23 25 27 17 20 24 10 17 18 14 12 16 14 11 12 9 11 10 12 13 7 11 4 9 4 7 4 6 5 5 4 2 4 1 4 0 0 0 0 0 0 0 0 0 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 0 1 1 1 3 4 4 5 8 9 6 7 7 10 12 15 9 15 16 12 15 20 15 18 16 20 15 23 26 24 25 20 36 26 29 36 29 23 17 29 41 32 25 34 26 34 34 27 34 40 37 39 40 39 37 46 48 42 49 39 43 40 51 68 45 43 46 47 44 33 49 43 46 46 51 46 52 48 66 53 47 40 51 42 44 37 52 55 48 43 48 51 36 36 39 64 33 49 41 47 42 54 50 33 39 46 50 45 45 43 43 36 39 44 49 31 31 29 35 42 38 37 20 32 22 29 34 27 31 25 24 29 30 21 21 28 18 21 19 20 19 27 19 19 12 17 15 11 18 6 13 14 9 8 5 10 8 7 6 6 7 6 8 5 2 4 0 0 0 0 0 0 0 0 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 2 1 3 2 6 8 4 6 3 12 11 5 8 12 11 9 10 19 9 17 17 19 13 17 15 25 32 22 25 28 39 25 24 33 32 26 35 31 24 25 35 39 30 37 52 37 35 46 38 53 34 58 42 46 44 55 48 44 34 36 36 50 49 49 48 44 39 60 53 61 48 52 54 70 53 45 50 59 66 62 47 46 56 59 57 63 58 55 50 57 48 44 58 58 48 66 54 59 44 56 55 45 61 42 36 33 54 42 62 39 50 41 44 55 35 40 39 39 38 37 34 30 27 36 44 21 36 26 29 31 37 31 30 24 29 18 23 31 29 19 25 18 25 20 20 12 23 21 17 14 17 12 8 18 10 16 9 9 7 3 5 6 7 2 1 1 3 2 0 0 0 0 0 0 0 0 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 3 7 5 2 5 6 9 4 8 8 6 5 14 12 10 15 11 19 19 21 14 16 23 32 28 19 21 27 25 29 33 33 32 33 33 31 29 32 28 27 36 39 38 39 33 41 45 52 44 38 50 53 43 49 50 51 50 53 51 50 42 58 54 72 62 51 57 66 56 70 61 49 63 52 53 56 58 73 51 64 52 49 62 54 62 61 51 60 57 58 49 58 60 62 66 56 65 78 85 64 66 54 51 55 64 71 50 50 57 51 47 64 50 50 49 43 51 39 47 50 41 50 53 48 43 35 48 39 40 44 42 31 24 22 30 37 29 21 23 35 38 27 25 20 13 13 17 25 12 18 9 13 12 10 15 14 5 10 5 5 8 3 7 1 3 0 1 0 0 0 0 0 0 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 1 2 2 1 4 6 4 6 3 10 5 11 13 15 10 19 18 19 13 16 16 23 22 28 24 37 29 24 26 28 26 23 22 38 37 30 44 30 53 37 38 38 35 47 52 31 42 45 53 49 49 35 52 52 58 71 47 70 65 57 60 55 63 58 69 61 48 50 61 67 65 65 60 80 61 82 72 74 73 58 70 71 63 91 72 59 58 62 55 71 64 68 79 63 51 74 63 67 71 54 68 56 48 64 67 55 73 51 63 75 44 49 59 44 47 59 64 62 69 48 42 49 46 48 57 39 45 45 41 38 40 41 35 31 37 36 34 23 32 29 29 31 28 22 21 20 14 25 18 18 20 14 12 14 16 21 14 12 6 10 11 1 10 8 3 2 2 2 3 2 1 0 0 0 0 0 0 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 2 4 4 5 9 11 11 10 14 8 8 18 10 10 11 13 19 16 17 20 14 29 26 29 28 29 27 26 22 30 27 49 43 38 36 49 46 45 38 44 46 54 59 67 48 37 43 53 55 64 48 57 60 59 56 45 62 55 60 61 64 70 65 67 75 76 65 88 74 87 78 75 65 64 73 75 89 68 48 83 84 76 87 67 67 63 81 98 58 64 62 73 74 71 75 73 82 58 86 68 59 91 59 83 67 68 71 80 77 69 67 64 83 53 57 46 58 56 54 70 48 60 41 60 52 33 53 50 31 32 28 35 32 40 46 26 31 39 31 44 33 35 27 24 26 22 18 25 19 20 16 17 15 21 13 15 12 9 8 9 7 4 6 1 2 2 0 0 0 0 0 0 0 0 0 0 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 3 2 6 10 9 14 9 13 14 11 9 13 19 20 31 18 22 25 26 16 27 22 35 32 46 38 30 37 47 30 35 33 41 42 42 54 41 54 57 51 52 55 37 65 57 49 68 59 62 56 75 66 56 62 73 87 74 66 62 66 79 67 95 81 86 71 87 79 90 85 85 69 80 76 81 69 64 80 79 75 66 89 103 73 79 86 73 77 88 86 87 59 69 83 90 80 83 83 85 83 75 56 84 81 71 78 61 70 80 72 77 51 53 82 56 66 63 56 58 55 69 62 49 57 63 54 44 33 45 54 41 39 34 30 30 38 38 33 33 26 30 24 26 24 18 14 23 12 22 19 14 16 12 4 8 10 10 12 4 12 5 7 6 5 2 1 1 1 0 0 0 0 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 1 1 2 3 4 6 8 10 10 10 14 6 10 18 20 25 16 16 23 12 27 32 24 24 33 36 29 50 30 29 49 49 50 46 38 47 53 52 37 34 60 47 49 58 58 49 61 64 65 71 63 60 69 73 71 78 91 89 68 83 79 78 86 81 71 101 80 82 74 72 65 90 72 79 92 95 82 69 87 90 77 93 93 89 80 75 102 86 69 107 81 85 86 72 85 88 75 72 88 84 71 88 66 88 70 82 76 76 47 74 79 64 51 90 64 66 63 67 67 46 73 61 71 65 56 61 53 47 52 60 53 38 60 51 34 44 55 55 47 41 42 32 31 42 44 40 29 28 29 27 32 21 26 23 14 11 13 17 16 14 12 10 6 10 4 8 6 7 2 1 0 1 0 0 1 0 0 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 7 3 4 7 10 10 15 5 15 16 9 12 16 24 21 21 29 28 27 29 36 28 22 29 33 40 35 31 38 50 39 42 58 44 50 42 47 54 62 53 65 49 64 67 67 78 54 74 90 71 85 67 82 69 73 73 82 69 67 73 93 87 97 75 84 81 93 112 90 93 93 85 94 82 88 95 91 91 92 86 96 101 94 99 96 96 103 92 97 101 108 85 93 108 93 100 105 110 115 102 78 87 79 94 85 81 98 76 73 75 66 77 69 79 68 78 71 60 73 59 64 66 64 56 60 64 62 58 59 45 44 37 54 39 45 26 31 36 38 30 40 36 27 30 33 26 32 37 25 22 26 17 23 14 18 17 12 18 11 9 11 14 4 4 4 4 2 2 1 0 0 0 0 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 2 4 5 3 3 9 4 10 10 11 12 12 19 12 19 26 25 29 24 27 28 26 31 34 29 39 35 34 38 42 47 52 39 36 54 57 56 58 56 60 56 79 59 63 56 67 52 97 80 76 90 107 79 77 76 70 91 80 92 77 96 90 100 112 98 99 97 69 103 103 100 89 96 89 118 119 104 106 104 117 91 87 101 83 108 91 104 88 109 99 109 83 110 107 103 84 80 86 96 96 95 114 82 103 101 87 115 74 95 95 69 77 87 98 70 88 77 74 73 86 82 79 62 58 71 81 74 60 56 66 60 49 55 52 49 53 47 39 43 34 39 41 37 45 33 36 32 39 38 27 25 22 16 25 26 16 22 16 10 26 10 10 10 11 9 3 6 5 0 3 0 0 0 0 0 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 1 2 1 7 1 12 9 18 16 13 19 6 19 21 21 33 23 35 26 26 22 39 30 33 37 32 39 47 33 42 49 45 68 45 50 52 49 49 72 78 69 68 64 65 76 81 70 90 69 68 90 68 79 87 106 95 86 82 98 94 91 80 91 97 88 94 115 102 98 92 94 101 78 103 91 89 92 102 102 114 97 85 78 106 102 119 100 110 103 112 107 103 105 88 98 109 93 113 109 100 105 106 89 107 88 87 102 101 99 90 90 85 85 95 86 93 90 77 82 84 89 69 57 83 54 63 57 57 80 71 59 58 58 61 54 63 52 49 34 47 42 43 32 42 38 40 35 34 35 31 31 35 20 32 16 11 15 16 17 15 17 12 9 7 6 7 3 2 1 0 0 0 0 0 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 1 2 1 4 8 5 10 10 10 21 16 20 18 15 21 19 25 23 25 21 31 35 35 40 38 46 45 34 58 37 47 59 56 52 55 57 59 54 69 83 57 66 83 78 72 76 70 78 76 75 73 79 87 89 87 80 101 78 84 94 78 72 98 106 107 108 92 105 108 94 104 121 99 87 98 96 94 93 87 118 87 86 98 100 101 120 119 106 100 118 106 115 100 100 100 94 92 110 114 110 108 103 111 98 102 102 87 94 87 86 78 75 94 100 88 95 86 77 77 65 73 87 92 72 64 62 74 72 67 67 60 75 50 62 68 61 41 53 48 52 44 55 47 45 49 48 33 41 30 38 34 27 19 34 17 21 12 17 18 14 12 16 14 13 11 9 7 4 2 3 0 0 0 0 0 0 0 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 1 5 7 5 12 17 13 16 18 17 14 18 13 29 26 12 39 30 29 39 24 33 44 42 47 51 42 59 46 57 56 53 57 68 51 63 68 72 70 67 77 87 59 79 78 69 95 69 71 95 72 109 80 96 91 87 93 88 96 87 101 88 109 83 102 100 104 79 110 95 92 101 104 94 97 97 103 92 116 96 105 109 94 98 89 110 116 90 83 95 98 100 100 78 89 105 93 87 113 98 98 94 92 102 90 75 107 100 101 93 102 90 76 59 96 81 80 83 83 91 104 74 86 81 76 68 53 61 82 69 77 69 64 59 55 60 50 57 62 57 53 53 43 48 47 34 47 27 26 24 23 25 28 25 13 19 18 19 22 23 16 10 12 9 14 4 2 2 1 0 0 0 0 0 0 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 1 5 4 7 9 8 11 14 11 16 13 22 19 29 23 27 24 40 32 38 43 40 40 32 53 51 49 61 58 49 63 62 70 58 64 54 69 71 75 68 84 61 76 78 77 81 82 82 77 94 74 86 83 73 104 87 102 88 88 87 76 71 95 108 111 113 86 82 104 100 99 103 99 90 91 93 117 77 104 97 96 107 88 86 95 96 114 82 108 86 91 69 86 104 110 109 92 99 97 113 88 90 74 82 87 97 86 82 100 92 70 67 106 74 84 79 104 93 78 65 95 71 86 83 80 78 70 64 87 66 70 69 62 63 65 53 71 61 48 45 43 37 57 44 46 40 44 30 21 41 34 30 34 20 18 17 19 12 25 19 18 14 8 8 10 5 4 3 1 1 0 0 0 0 0 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 2 1 10 6 6 15 11 10 26 23 15 24 24 21 22 34 24 25 40 38 54 39 30 48 40 46 51 61 64 66 61 60 61 61 66 76 65 63 82 90 91 86 65 73 82 72 110 81 89 72 86 119 89 84 95 87 87 78 76 83 102 71 84 106 90 83 90 78 90 97 82 93 91 101 81 77 113 92 82 89 107 99 104 90 99 82 83 94 77 99 79 90 91 91 86 92 90 84 76 99 92 95 90 94 89 78 71 70 88 79 77 90 69 80 83 75 106 80 75 79 90 73 73 84 74 79 66 89 78 80 75 92 69 67 58 60 63 65 60 57 47 53 64 55 41 38 32 46 29 30 44 25 28 18 28 18 23 23 28 20 14 8 10 8 7 3 2 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 5 4 6 8 11 18 17 14 18 17 20 23 16 24 21 33 51 43 34 41 32 43 41 46 56 46 63 68 70 55 68 86 75 68 74 76 66 73 101 85 91 83 72 70 74 81 81 90 84 86 83 85 77 82 75 87 70 84 93 74 80 74 90 77 81 77 86 88 82 97 65 75 91 97 76 106 80 96 75 85 79 76 83 81 78 80 72 77 72 74 81 93 70 64 80 61 88 86 94 86 87 87 79 100 83 97 67 74 86 82 91 88 95 92 77 76 86 89 78 80 92 89 80 101 84 81 82 61 89 71 90 82 68 63 72 66 58 57 70 44 54 54 50 47 43 49 38 51 40 32 37 29 23 24 22 23 22 11 20 20 17 16 13 13 4 7 3 0 0 0 0 0 0 0 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 1 6 4 6 8 13 18 22 28 24 16 22 22 23 27 25 33 37 29 35 36 48 36 38 66 46 58 41 54 53 61 90 72 75 48 68 77 84 101 95 83 76 94 71 95 92 89 81 83 85 85 102 91 81 83 82 92 87 81 91 94 86 83 91 83 87 96 92 85 67 68 95 82 73 87 76 86 67 84 82 75 91 83 93 70 91 91 76 103 85 71 89 77 79 82 79 86 76 71 81 90 79 89 66 86 97 73 81 82 78 87 94 82 79 79 83 89 86 90 84 87 86 78 93 76 81 84 93 90 79 68 80 63 76 80 69 55 63 66 64 59 58 68 48 44 56 35 36 58 47 32 30 36 27 31 36 29 27 17 15 18 22 10 10 5 5 1 3 1 0 1 0 0 0 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 4 2 6 8 6 10 9 15 18 19 17 15 18 19 40 25 28 34 40 39 44 48 46 49 48 57 50 74 84 73 68 72 57 55 79 64 85 85 81 96 67 68 85 95 80 111 81 87 103 92 84 83 79 81 75 92 89 79 80 94 72 73 79 87 72 68 68 68 73 74 70 88 80 68 67 76 77 70 50 81 71 62 71 79 67 69 76 66 67 75 74 66 76 83 69 80 74 63 90 60 63 86 89 66 86 80 71 77 74 80 73 78 74 77 92 79 107 79 80 91 92 98 94 100 74 86 87 84 97 96 107 82 85 81 88 93 66 68 75 69 68 71 51 55 60 58 50 50 57 45 26 39 31 29 26 24 23 21 16 26 20 19 16 15 8 9 10 2 2 3 2 0 0 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 0 0 2 2 1 10 10 4 17 20 15 26 21 21 27 24 44 27 34 29 35 33 49 48 52 52 50 49 62 61 62 64 69 54 70 78 64 86 101 86 91 97 78 96 90 83 83 84 86 91 84 76 91 106 83 103 79 86 92 94 80 89 84 74 84 72 65 74 72 74 87 73 70 84 75 67 64 66 66 64 61 57 69 89 66 57 63 67 56 66 73 62 71 66 66 61 68 51 60 76 72 81 63 72 69 76 73 67 85 74 90 59 72 98 86 76 91 88 97 78 86 96 85 88 70 105 102 83 90 84 81 72 103 85 98 76 93 77 79 88 59 79 62 79 69 56 54 63 45 56 42 37 42 33 25 40 35 25 33 22 24 32 16 26 14 11 17 6 14 3 4 0 0 0 0 0 0 0 0 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 3 7 6 19 13 23 26 21 20 23 34 27 31 31 37 27 32 40 46 57 51 57 48 59 53 58 63 68 73 70 74 93 73 74 79 83 91 99 79 80 91 85 83 97 86 102 85 91 89 85 86 68 92 90 79 93 74 65 66 63 77 67 81 66 72 72 61 68 63 58 59 68 59 62 54 62 66 60 51 61 78 59 64 59 70 69 59 61 70 65 52 67 44 66 60 59 69 67 79 85 71 76 71 84 82 64 67 69 76 75 89 81 80 79 98 69 89 84 103 95 102 84 81 75 89 101 98 88 104 85 94 100 82 83 64 81 77 82 66 67 62 53 62 61 60 56 61 37 31 46 37 40 28 32 26 21 22 19 15 14 22 14 13 12 3 3 4 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 3 5 11 4 16 14 17 19 27 23 30 20 32 39 39 35 28 40 61 55 45 58 57 61 64 67 68 64 87 83 83 79 78 87 91 100 73 92 95 76 83 98 90 99 83 80 104 97 79 88 77 72 98 91 72 80 85 70 72 77 63 64 87 73 71 60 68 72 72 57 76 70 53 56 63 55 63 52 52 66 64 48 48 60 66 77 64 49 41 59 52 64 64 66 73 46 67 48 61 55 62 52 62 63 56 65 81 59 79 76 83 79 80 80 86 98 77 91 91 78 84 105 81 96 96 94 95 71 82 96 96 96 95 78 79 77 71 80 83 71 70 76 61 57 53 61 70 68 52 36 56 37 33 28 31 29 28 23 30 23 21 14 15 15 13 7 5 3 3 0 0 0 0 0 0 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 3 6 7 5 14 22 19 22 36 26 32 32 26 30 40 41 45 41 51 48 40 53 43 69 47 70 70 60 67 55 74 87 117 83 89 99 99 89 94 102 76 88 89 86 79 70 96 101 97 102 98 88 75 86 77 89 83 67 70 67 62 68 69 62 66 48 60 71 56 53 47 60 52 69 51 44 48 46 42 57 53 49 57 56 51 60 55 70 57 47 58 57 61 59 52 50 57 51 64 53 67 54 50 60 79 83 62 78 72 72 74 72 85 79 79 82 82 85 95 82 104 87 89 95 91 94 93 98 89 95 123 101 101 107 78 84 83 77 73 82 70 65 73 62 70 61 53 57 57 52 30 50 39 45 36 33 38 22 31 26 26 19 16 14 14 11 6 5 1 1 0 0 0 0 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 1 2 1 5 9 18 8 25 17 19 30 31 22 22 29 38 49 34 50 41 57 44 61 68 73 54 79 69 76 70 89 79 78 76 103 95 109 123 91 108 100 101 78 91 99 102 90 78 98 100 82 75 88 97 74 95 86 84 79 70 63 63 64 58 76 48 54 61 57 54 57 47 38 50 47 45 46 50 51 56 42 59 41 43 60 57 56 46 36 48 49 36 62 50 41 44 48 58 56 51 62 49 75 62 59 68 82 62 62 62 64 81 57 79 86 85 98 82 101 89 88 91 93 96 92 109 89 84 82 108 112 101 106 100 112 100 90 86 83 78 75 85 74 77 64 62 52 60 54 52 52 34 53 44 41 34 24 35 27 25 15 31 12 15 7 13 11 11 7 3 1 0 0 0 0 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 2 3 7 10 11 19 18 16 19 25 19 30 25 29 33 37 51 39 42 52 64 54 56 56 71 67 70 73 86 75 81 101 91 103 86 106 100 93 106 101 107 94 99 100 87 111 124 107 89 109 93 85 87 79 92 86 80 87 61 78 65 59 74 62 42 55 57 61 65 51 52 55 40 39 30 56 43 42 36 47 32 39 52 49 45 48 51 36 44 36 52 43 38 43 40 39 36 39 47 45 55 56 49 51 60 56 68 59 74 65 78 63 69 92 106 71 72 87 100 82 96 98 102 88 94 85 92 104 112 94 112 128 118 108 98 95 83 82 101 89 80 79 71 65 54 63 56 57 44 41 52 47 37 44 27 23 33 24 32 31 29 18 19 16 15 14 5 6 0 2 2 0 0 0 0 0 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 3 7 11 8 17 20 21 24 20 27 40 32 36 39 43 36 49 59 51 72 68 43 53 74 79 61 80 89 70 92 76 113 92 99 101 83 104 99 116 122 104 97 88 107 91 111 95 89 89 83 75 85 90 78 80 77 76 70 50 57 75 63 63 56 59 42 40 57 45 42 45 38 44 29 41 34 38 39 43 49 30 34 41 38 33 41 41 40 34 27 39 37 31 40 47 29 39 45 44 46 64 50 50 57 46 67 50 64 56 68 80 80 96 77 68 84 97 75 88 100 106 119 94 104 95 93 101 119 120 92 119 93 95 102 103 91 80 88 91 80 83 75 68 75 58 72 74 60 44 61 46 42 50 37 37 33 25 32 25 22 23 21 17 14 14 6 8 3 4 1 0 0 0 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 2 4 1 7 11 13 13 14 27 31 26 26 40 34 38 27 43 35 40 47 61 64 55 55 56 85 72 95 71 100 90 95 90 110 103 98 109 120 106 97 111 141 94 83 99 82 98 95 102 104 100 106 94 92 92 80 76 75 73 76 52 55 65 63 45 56 52 54 51 56 48 44 39 40 34 42 34 22 36 31 38 38 27 21 31 42 31 31 39 38 40 40 34 39 39 37 30 23 52 32 37 38 47 55 41 60 58 59 46 59 56 53 63 72 88 86 90 84 89 94 70 90 102 100 90 103 76 106 100 113 125 110 113 110 106 113 107 91 88 96 98 82 70 77 81 94 73 74 82 54 64 69 58 50 50 48 29 31 26 29 17 32 16 15 11 15 11 5 7 5 0 0 0 0 0 0 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 3 6 6 8 12 8 16 23 26 23 23 27 26 33 28 42 36 49 49 64 59 64 51 47 81 76 65 84 89 76 91 92 93 96 110 105 110 118 131 108 139 100 119 100 103 100 97 108 84 99 91 91 85 86 72 96 84 81 62 65 64 51 38 56 56 43 40 63 41 34 36 33 26 33 37 35 34 26 29 31 34 38 25 26 28 24 19 31 24 25 25 30 25 23 30 23 32 27 24 47 34 42 39 46 50 60 47 62 62 64 46 79 76 82 73 101 94 90 82 88 101 88 103 105 110 115 108 112 105 102 110 95 99 116 102 103 103 89 98 94 78 82 103 77 89 67 62 68 59 59 51 47 44 52 41 46 37 35 22 33 29 20 22 20 12 15 9 8 5 6 2 0 0 0 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 0 0 3 8 7 11 14 21 26 22 21 27 31 31 29 41 34 40 48 41 55 45 69 80 59 85 79 79 74 87 102 92 101 91 93 97 108 124 121 137 131 106 104 108 111 117 119 111 105 88 107 104 110 89 90 90 88 82 88 77 50 48 49 58 44 44 36 44 50 47 31 33 30 28 20 17 32 18 29 18 33 21 29 17 21 27 23 30 20 20 17 26 26 30 29 23 27 21 20 27 31 38 35 36 39 43 48 52 58 49 49 66 59 69 93 84 69 88 77 92 116 83 84 123 95 109 122 116 118 127 107 117 128 133 122 116 113 94 103 92 99 83 85 73 80 92 73 78 68 58 61 66 53 48 44 35 38 29 29 23 28 33 26 27 22 13 16 8 7 3 2 0 0 0 0 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 2 1 10 7 7 20 12 18 21 30 43 38 35 36 39 28 49 37 59 45 56 57 71 84 70 77 70 92 78 93 86 103 98 113 112 111 103 108 124 134 122 120 102 102 113 107 114 101 104 111 93 94 101 87 91 86 91 80 78 75 52 53 53 36 48 49 39 31 37 42 42 24 25 21 14 17 24 18 21 24 24 22 23 24 20 25 24 29 26 29 22 20 28 18 20 29 15 18 30 21 26 29 35 40 33 32 52 44 48 41 55 75 63 76 63 98 73 90 91 82 94 111 101 103 94 113 120 107 116 120 111 124 118 127 125 100 120 107 109 80 64 85 75 79 66 66 72 71 66 71 55 48 64 55 41 47 33 35 39 42 35 25 29 17 22 11 10 8 5 4 3 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 4 6 10 11 15 26 21 24 28 30 36 26 40 39 47 55 52 59 60 61 72 79 71 73 84 91 84 95 102 100 103 124 131 113 110 115 120 124 134 124 133 120 139 118 95 101 122 113 111 82 83 99 98 81 99 75 78 75 52 47 48 57 41 50 45 27 47 33 45 31 40 28 23 18 24 29 28 29 19 20 13 18 16 22 24 19 20 27 28 21 12 29 26 36 24 12 25 41 25 48 44 39 39 42 50 40 62 40 76 65 79 79 77 84 93 77 104 84 99 109 90 104 105 107 109 96 135 129 99 127 119 136 126 106 115 126 106 109 105 114 117 90 86 100 69 72 67 85 67 78 43 52 38 43 42 39 39 29 29 39 21 27 26 17 10 12 4 3 6 1 1 0 0 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 0 3 4 6 11 6 28 17 37 33 18 26 36 45 36 41 49 45 61 55 63 75 68 83 73 76 79 89 93 105 104 96 94 111 112 119 125 110 131 138 150 107 101 95 111 99 109 94 95 127 95 84 94 103 89 86 96 94 78 64 70 56 66 55 47 44 43 56 38 41 43 37 32 27 28 23 24 24 28 16 20 25 20 24 20 17 30 25 21 23 22 27 24 23 25 19 21 22 29 33 31 36 54 50 47 43 42 66 57 53 62 64 65 67 77 93 69 98 95 102 96 90 128 117 120 111 117 114 134 119 155 132 140 151 124 139 121 113 94 119 100 97 91 97 82 89 97 87 73 65 67 66 41 40 53 38 46 32 40 35 32 42 23 18 22 19 17 12 10 3 1 0 1 0 0 0 0 0 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 12 11 9 17 21 25 21 38 45 39 32 41 40 49 59 34 56 61 65 65 81 65 96 84 80 108 96 104 104 103 124 121 128 138 120 136 132 144 122 116 120 130 120 126 104 93 110 87 100 118 96 109 114 89 79 77 71 86 71 50 62 53 35 41 44 47 39 41 42 33 27 22 21 24 23 24 19 27 18 27 22 26 19 24 22 18 21 27 24 22 37 29 23 29 30 26 22 32 42 49 39 40 48 60 58 62 40 67 74 74 82 93 93 105 83 93 104 108 107 96 120 117 100 124 117 112 146 151 143 119 139 136 122 117 117 95 107 89 115 89 88 93 99 97 75 69 47 82 61 51 54 42 45 41 39 42 32 37 40 34 33 21 17 11 10 10 7 5 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 8 9 18 26 26 25 31 34 38 39 50 27 36 56 47 58 54 64 68 77 81 88 88 92 103 120 104 111 108 101 104 131 134 126 140 133 132 142 136 148 127 142 124 119 112 121 101 102 100 103 102 107 102 97 89 78 69 60 70 57 57 57 52 53 46 38 47 28 32 36 33 22 26 31 24 16 27 19 24 21 29 33 21 23 32 25 18 38 37 28 15 26 23 24 32 25 22 34 50 46 48 41 46 54 63 56 56 66 61 75 74 89 100 86 99 98 86 122 110 109 128 102 113 128 151 131 140 138 122 162 136 132 146 144 143 123 120 112 116 106 107 108 96 84 62 77 84 54 70 61 48 37 69 44 41 39 44 42 36 33 25 19 17 18 10 9 7 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 5 5 11 16 13 29 22 27 33 35 45 42 35 35 49 49 57 60 53 65 74 91 77 96 88 96 83 128 109 97 123 132 133 106 113 122 165 134 140 157 145 127 112 143 107 118 108 109 125 109 116 110 111 97 81 71 96 75 78 71 56 55 47 52 46 42 30 44 37 43 30 26 28 23 20 28 20 34 25 21 20 25 28 21 33 30 26 26 19 14 32 31 35 27 25 21 19 24 36 37 45 35 42 54 68 54 62 61 75 71 85 77 97 96 86 102 114 111 108 111 111 117 125 135 109 122 148 144 116 128 141 140 118 113 137 127 141 104 126 118 102 93 94 88 88 97 72 70 74 64 69 52 51 51 57 45 43 38 34 38 25 25 15 18 10 12 4 3 2 1 0 0 0 0 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 1 6 4 10 18 15 24 16 38 26 35 38 34 41 48 38 53 65 58 62 59 67 89 84 76 98 98 103 84 115 128 132 140 149 127 125 148 145 163 142 142 139 132 129 134 122 130 128 126 102 115 129 112 89 98 104 95 86 79 63 77 67 63 63 50 55 48 42 40 38 31 36 26 18 31 24 25 32 29 30 29 19 26 26 26 25 20 26 29 17 22 24 23 21 28 30 32 33 33 56 46 38 52 33 56 47 57 56 53 81 81 93 88 96 91 107 98 97 116 110 120 113 125 121 130 126 126 128 133 149 154 137 141 123 151 143 123 116 128 115 121 98 111 87 66 92 92 95 79 76 77 61 60 65 55 52 43 29 44 38 40 21 27 28 16 15 14 4 6 2 1 0 0 0 0 0 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 6 10 11 10 16 22 30 31 32 39 36 42 51 47 53 78 73 67 80 82 96 86 90 102 93 98 95 113 118 121 120 132 131 157 157 150 147 133 145 127 154 125 106 135 111 126 103 122 117 117 103 105 90 95 114 89 97 71 65 75 67 53 51 40 41 38 47 57 53 43 28 32 22 22 26 26 27 37 24 29 24 23 28 26 26 26 27 29 21 34 28 27 18 33 34 26 33 39 37 44 48 49 54 55 70 66 60 63 70 60 90 96 92 77 97 102 105 104 108 117 98 128 124 131 132 130 129 137 154 170 177 161 133 141 139 137 109 135 120 96 116 105 84 92 83 92 94 78 64 78 67 60 58 44 43 38 38 55 34 35 44 40 19 22 11 5 10 5 3 2 0 0 0 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 5 5 7 8 10 18 16 29 33 30 37 33 49 39 36 48 50 53 66 66 62 83 70 88 91 89 94 83 105 125 97 109 129 136 131 131 154 152 192 143 170 156 143 148 130 144 123 109 120 127 104 102 105 138 109 86 100 94 99 90 68 74 70 56 56 46 59 47 48 47 43 29 28 27 26 23 28 33 33 26 23 26 37 24 29 23 31 31 27 21 29 27 21 31 18 21 21 25 33 31 51 56 55 39 49 54 44 64 52 68 76 80 82 81 95 85 110 114 125 106 113 126 146 131 122 139 117 140 133 149 160 153 158 149 144 145 170 119 127 138 119 122 126 97 81 80 95 105 90 75 82 60 63 67 64 40 55 51 37 35 41 29 34 23 17 20 12 9 3 5 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 6 4 10 25 12 23 28 32 35 35 38 46 48 57 50 61 52 66 69 96 83 108 96 93 88 109 116 121 102 122 135 114 137 128 155 151 150 145 164 140 158 130 138 124 134 131 136 113 114 107 94 109 127 95 104 97 85 85 97 62 61 61 59 62 55 52 48 40 40 36 34 26 36 22 22 30 21 31 32 20 28 31 24 21 25 33 25 28 29 27 22 28 25 28 20 23 27 26 33 56 57 51 54 62 55 53 45 74 83 75 88 81 109 108 102 97 106 119 138 140 106 131 138 141 122 137 169 157 167 163 152 153 145 140 150 139 118 135 116 132 106 108 104 97 82 93 102 69 77 72 64 59 58 54 47 49 47 41 39 40 45 26 29 21 17 12 11 3 1 2 0 0 0 0 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 2 4 8 11 15 13 30 23 35 37 40 56 45 54 53 61 68 64 72 68 91 90 73 105 90 109 108 106 125 136 144 112 128 104 149 156 157 130 165 163 150 148 160 136 151 138 155 145 133 124 104 116 113 121 99 103 96 98 89 88 94 60 73 70 55 56 56 52 59 52 42 29 33 22 27 32 27 28 27 35 31 28 31 30 33 28 26 19 22 28 21 26 36 25 27 29 16 38 31 44 43 51 54 40 68 52 56 66 78 73 84 104 92 98 94 110 117 105 134 120 133 111 138 127 133 131 137 155 142 154 146 158 141 136 175 155 133 123 135 135 130 101 128 113 82 104 90 84 79 73 91 87 60 48 58 54 41 44 39 48 43 32 26 24 19 18 7 6 6 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 3 4 3 12 14 23 30 41 35 36 47 42 42 45 56 53 62 65 72 86 87 90 83 105 97 108 110 114 115 120 134 150 102 146 150 125 145 170 181 163 175 152 154 154 157 137 144 147 151 131 120 120 141 121 124 111 109 106 90 74 59 76 70 68 48 61 60 71 49 43 41 26 27 32 21 36 29 38 30 35 25 33 33 30 34 26 25 33 36 29 37 31 20 29 34 25 37 26 33 36 42 45 51 55 53 69 54 59 72 72 93 89 107 109 120 121 99 102 115 108 124 108 142 134 119 133 153 133 183 131 175 165 171 172 157 139 122 153 138 121 113 120 113 121 104 122 98 96 96 86 83 85 70 52 63 50 47 42 44 44 38 42 32 23 17 18 13 5 3 3 3 0 0 0 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 1 4 9 3 14 17 20 26 33 29 44 43 38 46 52 54 47 61 76 87 71 87 108 104 115 90 116 120 125 106 124 144 151 161 142 150 147 188 166 149 157 156 160 162 136 152 157 141 148 131 149 138 133 135 101 112 117 116 91 103 83 88 84 72 66 58 55 57 61 48 38 39 36 29 28 25 22 23 35 30 22 29 26 32 32 45 30 28 19 39 28 27 24 23 29 30 35 32 43 37 45 46 46 55 46 55 56 69 63 80 67 97 88 107 95 115 115 108 123 128 113 120 136 129 130 170 139 134 141 156 175 143 170 165 153 145 137 167 140 147 131 129 130 111 117 107 86 94 99 79 68 79 58 66 62 57 43 52 42 46 47 38 55 32 24 24 16 12 11 7 2 1 1 0 0 0 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 1 8 5 10 8 15 24 24 37 50 41 43 45 59 61 50 68 61 83 80 98 90 97 99 96 92 131 110 123 119 155 143 133 155 136 164 178 156 176 175 152 180 149 166 145 163 125 158 138 122 147 125 131 130 127 106 126 104 95 84 88 80 64 70 64 62 53 46 58 43 46 39 26 33 34 23 26 29 34 35 34 26 33 27 29 28 35 29 30 36 34 22 35 22 30 42 24 41 39 35 47 68 51 47 52 61 72 71 89 84 81 86 128 108 111 111 120 126 117 113 121 127 140 136 152 167 150 177 151 147 184 155 174 151 158 153 156 145 143 120 138 127 126 119 121 105 89 80 95 91 70 79 76 60 63 65 69 49 42 46 33 33 35 36 21 19 15 9 8 1 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 3 10 12 17 22 25 38 34 49 54 42 49 46 63 55 60 72 65 81 74 109 94 92 112 116 120 124 121 144 125 124 145 142 177 165 178 175 153 208 175 171 151 152 170 148 152 138 149 127 135 111 135 109 118 126 115 105 94 83 87 74 78 75 54 57 54 64 56 51 58 39 37 27 29 40 30 36 30 34 30 33 30 28 36 22 24 23 24 33 24 22 35 31 43 27 28 38 40 33 47 53 61 48 56 81 71 74 89 80 84 98 99 117 119 110 130 158 131 123 141 134 156 163 152 157 164 147 160 159 178 180 175 176 165 143 145 149 155 133 128 148 113 111 122 121 116 91 105 98 81 83 64 57 41 53 51 36 44 53 40 37 44 28 18 10 12 10 5 3 2 0 0 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 0 1 5 5 6 12 13 22 32 20 36 38 38 52 45 51 52 81 72 82 72 80 92 106 98 103 109 101 128 129 127 128 143 133 157 159 152 142 155 164 175 160 162 168 159 155 157 142 153 133 149 139 150 131 134 120 117 119 120 108 79 80 87 86 63 71 64 48 68 54 38 55 42 48 44 37 31 38 33 26 30 29 34 30 36 26 30 37 29 26 25 32 17 33 29 18 26 33 37 37 43 52 41 49 69 58 62 66 62 84 74 92 87 89 117 118 108 126 122 127 131 147 140 142 152 157 165 168 164 181 172 176 168 148 185 188 180 152 162 154 138 139 151 156 134 120 96 96 105 94 76 85 78 97 73 62 72 52 50 50 54 43 52 33 30 20 31 13 17 10 4 9 5 0 0 0 0 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 3 2 11 12 15 18 19 37 40 50 54 41 55 61 58 67 61 71 92 77 81 100 113 97 113 105 106 137 140 153 142 125 150 169 150 180 171 182 188 184 158 159 163 165 140 151 163 151 137 155 135 128 147 117 130 120 116 110 103 86 79 93 86 70 65 62 54 51 61 53 52 40 34 38 25 32 35 26 20 31 25 31 30 23 34 38 33 36 41 30 37 28 31 38 35 30 39 34 32 32 57 43 53 56 63 76 70 76 85 91 90 90 102 111 126 127 130 130 164 170 131 176 144 138 161 164 186 165 170 156 175 181 189 155 161 173 163 157 174 143 144 133 117 119 107 119 90 78 77 100 80 79 66 45 68 52 63 45 55 38 41 43 41 22 24 15 15 15 0 4 1 0 0 0 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 1 3 4 11 12 18 35 25 34 36 53 49 38 46 54 68 76 69 77 76 90 89 101 96 117 111 124 119 129 145 165 143 165 149 161 170 166 210 181 198 169 174 183 188 162 176 137 148 150 146 139 131 148 132 145 104 118 124 110 102 121 84 80 73 67 57 56 62 53 62 52 50 42 29 34 31 41 35 30 30 27 35 42 27 35 29 39 30 41 44 24 45 34 43 35 34 24 27 37 35 46 44 47 55 55 58 67 76 90 88 85 75 101 88 132 117 152 129 134 132 147 147 159 147 163 151 148 154 173 170 178 188 189 195 192 157 171 154 159 162 125 137 146 143 105 132 115 128 106 97 85 75 67 83 55 76 57 52 49 49 39 38 34 35 22 21 14 11 11 9 7 2 0 0 0 0 0 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 7 10 10 25 27 30 27 40 45 44 57 53 63 55 62 76 85 79 74 94 108 92 125 102 123 120 126 153 167 147 153 139 164 185 193 184 186 189 163 185 184 188 166 186 166 177 157 178 148 172 129 124 134 133 115 105 113 106 99 87 81 85 98 56 67 62 76 63 38 38 49 30 34 45 30 36 26 42 31 25 28 34 35 32 27 43 29 30 32 32 28 29 37 28 35 28 31 40 40 57 57 49 63 75 74 78 73 87 86 92 116 117 119 123 130 142 139 128 152 145 161 168 166 168 152 156 179 188 191 156 190 190 182 189 150 164 142 168 128 124 120 159 137 116 122 122 90 113 84 98 89 71 69 70 57 58 30 47 42 54 46 28 33 17 13 11 10 10 1 0 0 0 0 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 2 2 3 11 13 20 26 23 31 33 42 48 48 51 66 81 76 74 72 89 105 90 95 92 115 125 126 124 158 152 131 147 164 169 164 186 217 204 186 173 195 157 175 186 190 196 183 135 175 151 157 167 156 131 139 131 131 134 107 112 88 81 89 71 65 61 70 52 53 46 62 55 41 32 37 45 40 33 40 33 26 29 25 27 38 35 31 32 42 42 31 34 37 37 22 31 38 28 34 47 41 56 66 64 56 64 66 75 88 102 109 115 103 100 113 136 147 138 144 139 123 148 160 163 149 183 190 164 149 197 195 176 189 210 212 178 209 129 165 162 126 139 143 118 144 117 120 97 106 99 93 80 84 70 89 62 70 54 40 51 47 47 33 31 24 30 20 15 8 0 3 2 0 0 0 0 0 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 5 13 13 16 18 27 28 42 39 58 48 51 53 70 69 70 91 86 94 111 109 109 114 131 115 160 108 141 169 153 165 164 166 177 184 195 188 197 171 177 196 195 193 180 163 163 181 165 149 154 160 159 142 144 98 127 113 102 102 98 80 68 76 82 73 62 74 53 57 54 38 40 16 44 34 26 29 39 28 31 38 32 31 40 42 30 33 30 39 38 26 38 33 35 33 43 38 39 48 56 71 58 58 75 75 80 84 75 79 99 87 99 141 143 126 130 150 161 175 157 146 156 168 150 164 167 182 183 192 207 206 185 185 189 175 196 174 172 152 160 159 134 115 126 133 116 110 76 117 93 85 87 81 57 47 55 58 58 63 55 40 35 22 30 16 10 9 11 10 2 1 0 0 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 2 6 4 15 16 26 24 29 37 33 62 48 48 47 59 61 88 64 92 100 88 89 114 117 110 137 125 119 157 122 158 159 171 139 180 193 199 168 171 189 234 179 182 178 181 149 170 180 158 160 132 158 162 131 137 129 140 114 125 89 121 110 80 82 81 75 72 65 78 62 58 50 34 34 38 29 28 45 31 31 35 36 39 32 47 36 32 44 46 35 31 37 41 37 35 32 38 46 42 32 58 47 68 66 50 53 73 91 87 86 109 104 99 120 119 147 122 130 160 141 153 143 155 156 183 161 183 189 180 190 197 221 206 174 189 175 187 187 190 165 164 147 151 130 138 127 117 114 119 103 109 71 81 84 71 71 81 54 57 57 50 61 35 39 26 24 14 14 11 10 2 1 0 0 0 0 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 2 4 13 20 21 26 26 32 43 53 49 52 49 49 69 76 67 64 85 98 114 110 104 109 128 122 138 150 156 152 149 149 177 160 182 195 217 195 205 188 205 199 181 197 168 159 180 154 159 136 146 176 138 144 108 134 113 122 113 91 94 88 75 83 69 74 55 66 74 56 51 48 29 47 46 30 46 41 32 30 36 28 34 29 38 39 38 38 34 34 38 40 24 38 39 34 35 39 56 63 59 86 52 57 63 93 75 86 77 103 82 102 120 94 139 133 143 132 145 160 167 167 182 178 177 159 191 175 199 202 203 183 201 201 201 172 169 161 156 154 141 171 138 153 138 136 146 104 118 109 75 90 75 75 85 58 65 56 58 53 51 41 52 41 33 19 19 9 5 5 1 0 0 0 0 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 3 9 8 16 13 22 38 40 49 53 56 48 48 50 76 64 90 92 89 100 109 105 110 123 134 114 159 137 139 155 161 174 168 186 178 172 191 190 189 210 188 203 201 214 177 183 191 167 157 161 157 162 162 161 131 139 132 109 116 102 99 82 86 92 77 64 61 60 64 41 65 48 39 30 43 36 29 46 25 42 37 40 26 33 40 37 43 43 32 38 35 30 35 46 23 30 36 43 47 48 51 82 68 55 68 74 65 73 88 96 127 132 108 147 125 142 140 142 148 162 172 138 184 206 185 177 165 179 192 190 205 202 206 212 161 189 165 190 157 167 158 161 141 132 147 133 128 108 122 90 85 91 78 82 72 67 67 47 55 47 46 43 47 39 30 20 10 8 4 4 2 0 0 0 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 2 3 6 11 14 20 28 36 46 38 63 48 48 50 72 79 71 66 76 92 94 107 108 107 141 126 132 147 166 147 174 162 173 158 194 182 186 193 219 206 202 199 228 190 205 175 181 179 193 163 177 155 138 174 143 127 139 133 116 114 108 98 85 95 88 71 63 75 57 84 65 45 32 37 41 38 42 37 34 29 34 27 33 31 38 35 42 34 48 39 35 29 33 35 28 27 25 34 45 40 50 65 70 61 69 76 68 89 85 91 100 105 104 120 140 131 131 166 145 178 160 150 166 159 154 180 168 182 177 198 196 195 218 229 183 178 189 177 193 156 164 174 146 155 129 120 123 146 117 132 110 117 84 86 84 59 68 64 48 59 53 57 54 43 28 27 21 12 15 7 5 1 0 0 0 0 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 3 7 8 14 19 33 30 35 49 37 54 61 60 49 69 83 86 83 79 98 103 123 124 128 121 141 160 156 149 161 166 163 174 158 202 195 204 206 205 229 186 195 180 159 184 199 203 190 173 162 181 159 132 159 123 129 135 119 109 97 100 96 88 78 69 88 58 73 89 66 43 43 36 32 37 30 42 42 33 39 38 35 33 37 34 40 28 32 30 55 40 33 43 28 33 35 43 37 50 62 65 66 75 79 79 85 70 83 78 111 93 106 119 138 162 148 163 148 182 180 164 188 210 191 169 177 201 198 209 239 212 206 195 193 210 177 180 172 202 136 154 142 142 144 126 131 134 123 103 106 106 99 91 70 68 65 65 46 60 48 63 53 49 30 22 18 13 11 8 1 2 2 0 0 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 2 1 6 8 9 13 30 32 43 41 39 56 42 45 45 64 77 80 84 95 100 105 110 112 102 139 111 146 148 159 162 166 164 174 208 179 194 240 213 222 188 240 178 205 195 172 156 181 182 174 173 195 158 170 150 151 146 141 121 118 111 125 78 83 89 66 64 70 71 59 49 55 45 47 36 46 30 41 36 48 44 53 44 37 35 39 33 39 30 28 40 43 28 29 36 34 25 39 48 42 40 67 73 78 74 78 86 75 84 91 99 103 109 133 138 133 151 147 178 142 148 168 180 194 184 190 179 208 191 220 234 197 209 211 210 201 181 187 187 183 168 162 150 157 141 126 129 119 147 107 89 99 94 92 72 66 60 64 57 57 53 56 47 53 43 22 14 13 13 9 6 1 0 0 0 0 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 5 4 9 17 27 28 36 46 42 32 59 48 58 68 66 83 84 84 79 85 94 117 113 107 127 149 151 161 168 171 193 182 178 178 194 191 240 233 233 229 224 239 197 199 218 187 189 194 186 187 161 182 171 158 156 152 144 146 106 103 95 120 106 82 75 61 61 85 84 54 58 42 37 41 35 45 43 41 40 40 41 44 42 46 54 35 29 47 36 38 38 39 43 39 36 45 37 41 56 53 70 82 77 82 70 89 105 102 84 93 117 142 128 114 144 154 161 165 162 170 168 170 196 201 174 195 202 197 196 206 239 224 203 209 206 202 184 172 165 169 156 156 166 134 138 127 136 116 116 99 104 86 95 77 75 79 52 46 64 53 54 58 42 31 25 21 21 10 8 3 2 1 0 0 0 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 5 9 6 15 15 28 33 38 42 52 54 65 62 66 96 68 85 78 109 104 113 125 121 147 133 164 168 150 161 182 137 188 184 169 241 215 203 218 230 188 201 217 202 216 188 208 192 198 190 188 171 167 180 143 158 148 156 154 126 125 117 100 98 89 77 61 55 69 71 66 44 47 34 34 30 42 35 48 31 38 28 37 37 40 46 46 37 38 33 40 36 36 46 40 40 38 55 38 53 52 68 69 72 76 68 82 88 76 112 97 118 128 125 123 150 130 156 168 178 199 182 177 203 210 187 242 190 188 217 218 246 230 229 253 216 212 200 169 186 175 174 170 147 174 166 120 116 128 124 102 109 87 75 94 76 81 67 62 68 65 50 42 49 37 27 22 15 11 10 6 2 0 0 0 0 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 2 5 14 16 20 31 48 40 52 64 60 58 68 90 71 75 77 101 113 110 111 115 111 139 136 128 163 174 180 195 201 215 191 177 227 194 209 213 242 205 230 211 212 231 190 201 189 202 178 182 177 175 168 145 161 147 130 133 123 130 102 97 82 74 77 81 69 65 70 52 53 60 54 40 41 42 37 38 40 38 47 43 44 45 31 31 37 44 40 33 35 40 34 37 47 39 40 35 46 68 64 71 79 69 88 81 89 80 102 113 117 123 129 144 161 152 153 165 173 162 163 179 185 181 196 209 194 219 204 206 200 213 229 207 209 204 182 183 180 161 165 158 151 163 166 149 151 123 105 134 90 103 96 88 91 51 62 57 52 57 53 47 34 32 31 15 15 14 7 3 2 0 0 0 0 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 4 12 15 13 23 32 44 28 69 50 62 64 74 74 74 59 94 82 101 108 119 122 124 136 135 171 162 172 179 154 197 188 204 193 195 221 226 239 251 218 218 246 192 197 187 202 194 193 172 165 173 149 192 167 164 143 138 131 132 114 122 129 101 99 88 71 80 75 62 82 62 49 48 40 44 33 31 38 36 37 33 49 55 43 44 52 50 33 43 40 47 42 31 55 44 42 40 42 40 61 56 75 85 82 79 91 87 101 98 115 112 125 134 136 157 144 143 153 165 170 184 183 166 217 192 195 178 226 196 216 218 226 220 224 207 207 194 201 174 187 174 163 160 157 158 139 127 131 114 120 98 82 98 85 67 68 65 65 58 75 54 44 34 29 33 28 11 10 10 2 4 0 0 0 0 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 9 5 19 16 27 29 27 35 47 63 63 57 61 71 82 71 71 92 113 107 112 113 115 131 152 149 163 150 154 191 169 181 190 190 222 195 230 235 246 232 230 213 209 188 211 198 205 177 185 179 188 173 164 163 145 153 138 141 128 101 131 110 88 85 96 101 65 62 89 76 65 33 36 44 23 43 33 32 46 35 41 41 44 34 40 40 40 51 37 51 57 34 51 44 45 56 62 37 53 69 72 77 61 73 92 102 85 104 114 105 132 132 150 159 144 165 186 163 176 151 221 180 199 171 188 201 223 225 203 216 221 236 242 197 226 213 197 197 188 192 184 183 173 151 155 146 134 142 107 127 116 108 94 103 82 72 55 71 59 64 63 60 37 36 34 22 23 13 3 3 1 1 0 0 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 1 3 11 17 17 21 30 34 45 51 59 64 72 80 80 92 74 87 91 106 115 125 151 122 138 129 149 149 155 177 176 168 181 183 201 210 199 238 241 247 238 219 212 240 198 191 230 205 215 217 197 193 167 181 163 151 152 141 136 133 112 107 106 104 79 91 67 83 93 80 74 66 47 38 33 45 27 33 41 49 36 51 47 46 37 35 47 36 39 29 50 46 47 44 36 46 31 36 45 42 52 71 65 83 60 81 92 84 87 105 118 115 126 123 150 147 179 181 184 159 175 195 190 202 212 198 198 204 207 216 227 224 232 223 219 225 194 186 193 197 163 194 193 176 179 176 152 143 129 122 117 111 113 92 76 82 75 63 59 60 50 59 55 40 37 25 29 12 10 10 0 2 0 0 0 0 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 2 8 15 17 17 27 37 59 56 59 58 61 59 78 86 103 102 102 104 111 119 129 131 127 129 151 177 171 188 179 184 195 222 206 237 258 216 236 242 222 231 226 207 219 200 223 190 204 188 198 188 165 161 163 150 144 166 153 120 112 88 116 104 104 93 86 82 70 90 67 74 47 55 50 47 46 41 39 46 38 50 39 45 37 28 48 51 41 54 42 38 46 54 34 42 47 45 39 53 59 71 72 84 67 77 82 88 96 108 112 117 119 151 155 160 165 129 174 184 200 195 187 201 198 203 196 250 202 214 204 236 216 260 234 245 202 199 194 185 188 175 177 178 164 140 143 150 129 144 116 108 103 102 102 77 71 58 66 57 72 66 54 47 32 30 26 19 12 8 5 3 0 0 0 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 1 5 9 19 21 24 28 39 46 42 44 53 54 66 65 78 74 107 100 91 118 121 128 137 143 169 154 182 180 162 204 169 177 223 191 211 233 219 224 229 218 186 213 235 227 229 203 220 203 223 209 187 159 166 163 156 173 147 143 127 127 89 106 83 98 83 77 79 83 78 82 63 53 44 44 29 47 41 51 37 47 37 49 40 39 43 51 48 43 45 38 50 50 49 48 42 51 48 47 50 54 75 73 83 76 66 95 94 93 108 115 139 138 153 148 171 189 177 171 162 171 212 205 196 201 203 228 251 249 248 233 243 252 226 233 224 209 222 193 187 204 186 189 171 168 152 161 146 132 144 116 129 83 104 108 81 73 67 69 82 66 60 55 71 37 26 26 15 14 7 3 5 1 0 0 0 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 1 6 19 16 18 26 39 34 49 56 59 63 66 69 80 84 79 118 98 121 131 127 142 131 154 152 152 166 181 188 208 193 215 228 231 237 248 226 231 220 254 249 195 217 211 224 197 209 182 201 170 181 186 165 160 174 156 133 122 119 130 115 95 82 104 86 77 80 83 77 65 63 40 47 43 38 43 48 33 51 51 39 51 49 38 60 40 53 35 36 51 57 52 45 45 52 43 49 44 50 79 83 77 77 82 92 92 108 101 116 126 125 142 172 181 159 152 196 191 174 196 192 210 208 216 204 208 212 214 232 245 240 249 212 223 227 200 206 185 195 192 153 185 159 165 137 125 139 143 116 118 99 106 93 80 74 73 61 76 65 57 47 48 44 32 21 18 16 9 5 6 0 0 0 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 1 2 6 12 13 30 32 32 57 55 60 57 56 67 63 80 72 96 90 97 127 124 127 125 147 150 163 189 177 164 214 198 186 213 225 240 254 225 225 245 227 223 231 248 219 217 207 196 190 186 175 195 213 196 189 180 172 166 140 121 137 98 105 100 94 101 84 56 91 80 75 64 58 54 34 43 41 49 43 36 42 42 46 53 43 42 46 43 47 41 40 49 46 35 48 50 41 36 51 52 59 64 75 89 88 74 88 110 100 101 106 123 134 168 161 176 164 170 170 169 198 196 181 210 203 197 225 222 225 226 222 250 245 232 246 223 247 222 189 177 194 199 180 183 170 162 148 145 139 130 132 108 119 93 102 83 71 81 60 61 56 61 44 54 43 23 31 16 17 10 4 1 0 0 0 0 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 4 8 14 22 31 31 40 55 57 54 71 55 57 72 88 89 88 80 117 135 130 119 135 138 153 136 193 164 187 170 174 194 204 200 204 252 246 239 228 250 278 225 228 235 218 199 211 223 206 200 185 208 172 194 158 153 151 130 147 115 94 109 115 97 86 69 88 87 63 86 62 64 33 41 35 35 37 35 36 37 46 45 39 37 47 44 54 41 42 48 42 42 43 44 42 44 38 50 51 50 68 58 78 66 82 91 106 102 116 128 136 138 143 158 144 181 176 178 188 190 180 201 210 180 213 244 208 218 225 234 235 237 229 219 246 223 201 196 202 216 183 170 172 177 161 128 143 140 121 119 109 115 114 79 96 79 61 59 65 73 65 64 52 41 30 28 20 21 8 3 0 0 0 0 0 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 7 11 13 19 23 28 40 43 47 47 60 75 61 85 76 96 84 104 106 116 113 127 134 150 144 153 165 168 159 188 173 178 193 217 248 231 239 242 235 246 239 224 221 198 238 195 217 199 186 199 187 193 190 154 150 165 164 151 125 119 101 102 95 101 113 84 74 69 75 68 59 53 54 41 53 37 47 31 45 43 57 44 37 50 44 37 46 41 44 39 48 51 48 43 40 43 45 38 41 57 65 74 95 75 80 96 99 91 101 102 126 110 144 134 142 151 174 186 166 197 196 197 203 222 223 222 210 204 251 266 250 266 247 232 258 231 215 227 210 153 186 188 206 175 161 127 141 135 131 110 111 119 105 73 75 94 86 75 66 61 75 47 34 31 34 15 14 9 4 1 3 1 0 0 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 2 5 5 9 13 22 39 43 53 55 69 54 59 64 68 92 95 75 100 103 133 119 127 154 148 163 166 178 183 193 168 186 197 206 214 194 250 214 246 248 211 219 225 209 210 209 191 204 213 215 195 192 196 191 185 171 166 141 110 148 123 115 121 91 82 87 81 86 76 76 56 61 40 38 41 48 42 48 46 45 42 38 41 40 46 34 34 46 51 33 40 42 46 47 33 38 47 39 49 58 61 72 72 68 68 85 90 94 103 92 119 112 124 155 157 186 133 153 182 185 161 213 220 215 215 207 201 220 206 239 223 233 256 245 260 247 212 235 201 207 178 206 164 163 161 144 144 152 151 138 118 112 108 109 79 86 67 72 57 66 55 58 43 54 34 37 18 20 12 4 4 2 0 0 0 0 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 5 4 9 12 25 37 47 61 46 53 54 72 75 76 75 83 95 110 111 98 115 136 142 147 163 150 165 184 151 175 219 212 182 205 217 241 252 225 249 238 224 245 218 193 235 209 205 203 181 188 179 154 167 167 173 170 163 145 123 148 125 99 106 102 91 71 75 69 98 61 46 43 38 44 35 40 40 50 46 43 41 62 53 42 32 48 42 30 42 42 38 40 38 41 47 40 39 36 49 42 73 84 93 78 86 111 76 104 125 117 116 138 144 167 137 161 171 184 171 216 204 217 208 212 217 235 212 233 224 223 238 246 235 265 244 216 218 222 210 179 178 172 179 157 163 145 137 157 136 102 123 94 77 84 86 83 68 60 61 65 60 57 43 46 17 20 19 12 7 3 2 0 0 0 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 1 7 8 19 17 21 22 25 58 53 51 67 54 54 53 78 84 96 100 113 98 119 123 127 143 163 136 153 178 169 170 177 200 200 197 245 229 256 240 243 225 263 243 241 223 226 203 189 190 176 182 165 197 165 183 159 167 155 164 143 121 110 94 94 95 98 64 71 78 75 78 46 57 40 46 43 46 41 27 37 29 36 45 51 34 52 45 52 37 39 42 41 43 34 41 42 41 44 48 52 62 66 59 75 74 98 90 98 110 111 117 136 155 134 185 165 164 163 181 182 180 189 199 195 208 225 203 233 202 216 222 254 235 217 245 222 224 183 207 215 197 186 171 167 161 139 163 178 145 128 151 118 116 85 81 106 78 71 75 54 46 62 43 51 39 37 26 18 11 6 6 3 0 0 0 0 0 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 4 19 23 29 20 33 42 51 51 64 62 45 79 66 93 91 102 104 123 119 120 114 154 114 169 147 156 186 195 192 205 210 200 226 251 242 241 207 243 252 216 243 212 207 218 182 212 197 189 198 168 163 143 154 173 156 148 129 125 121 109 98 98 80 85 81 82 74 62 50 57 58 26 38 50 36 33 49 39 42 40 47 38 38 40 33 36 34 45 41 37 57 40 30 35 37 43 60 58 80 71 78 85 80 88 83 102 115 113 99 146 125 160 164 168 176 168 200 174 218 196 201 194 208 229 225 255 238 239 223 250 231 214 215 217 218 236 187 198 180 192 179 178 168 151 146 151 121 104 104 95 106 88 75 83 82 52 61 75 73 47 46 34 39 25 13 7 7 6 0 0 0 0 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 2 4 9 13 17 28 33 34 31 50 65 65 67 72 75 83 85 93 124 96 114 112 126 144 156 173 148 154 164 153 199 188 207 201 210 248 214 229 267 251 226 206 238 211 223 213 210 216 222 225 193 174 189 166 168 155 146 134 150 133 131 120 101 109 104 99 91 72 81 82 75 73 56 47 55 57 48 47 49 42 45 38 35 44 39 37 56 32 44 44 42 35 52 51 42 47 40 48 47 51 58 77 72 52 85 79 87 94 114 90 119 128 126 139 151 153 159 159 186 178 200 175 218 204 186 198 245 210 213 234 248 259 239 247 223 230 204 220 208 198 207 199 172 168 172 151 138 140 135 134 137 108 88 105 103 95 75 64 73 56 63 68 60 34 42 31 28 27 12 9 3 3 0 0 0 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 1 7 5 11 19 29 31 43 35 43 60 51 70 72 70 77 79 97 91 111 106 129 120 133 133 146 167 174 206 189 180 200 224 211 207 193 245 230 226 226 256 242 220 223 236 199 202 202 204 202 216 173 172 180 180 178 154 163 149 154 120 97 108 108 89 79 90 77 87 91 64 69 37 47 37 43 42 50 53 50 44 37 35 34 49 34 46 47 48 32 44 47 36 32 44 35 36 41 38 47 61 69 72 60 80 89 97 96 106 123 119 117 131 145 146 123 160 176 178 177 197 188 189 226 211 218 220 210 235 230 261 235 244 232 242 199 212 203 199 207 213 169 178 168 152 142 140 151 138 115 114 118 124 94 81 81 77 69 55 57 57 71 45 45 37 38 26 12 11 5 3 1 0 0 0 0 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 3 8 13 16 24 25 38 38 56 52 68 78 54 71 77 88 98 84 102 111 108 132 127 169 141 169 141 173 181 169 172 192 223 247 235 230 246 239 215 262 243 235 227 251 211 215 193 189 207 182 218 189 178 165 160 182 161 143 158 134 111 102 104 84 83 78 67 73 73 89 60 52 53 51 47 42 51 43 48 40 45 49 43 42 34 64 38 49 38 47 50 50 51 41 47 43 37 49 43 57 82 57 77 71 93 93 100 102 109 117 127 138 145 143 173 169 164 168 175 182 205 226 199 185 214 196 239 222 244 217 246 247 239 233 228 217 210 205 220 187 174 145 193 150 154 162 156 140 130 128 112 125 104 95 97 86 69 76 65 67 54 56 49 44 31 19 22 13 2 6 1 0 0 0 0 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 8 10 15 14 28 21 35 38 52 76 59 65 68 71 75 75 99 83 114 117 136 137 125 151 172 168 152 158 197 194 173 222 196 203 237 221 235 258 245 242 203 224 208 214 220 234 213 223 241 194 195 179 186 169 175 150 148 164 139 139 109 93 111 102 98 78 68 79 91 59 52 52 36 35 43 51 47 48 45 57 42 46 46 39 45 41 39 49 39 43 40 45 47 51 38 41 48 55 39 63 64 82 88 77 88 82 103 96 103 120 117 128 131 138 139 162 189 201 178 182 174 211 215 176 198 195 195 210 256 215 250 224 220 236 242 217 197 220 217 183 170 159 159 155 166 159 143 149 133 131 137 111 84 90 96 92 71 73 71 72 74 51 55 28 32 18 22 13 13 2 0 0 0 0 0 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 8 13 8 26 17 30 53 56 58 63 73 70 54 79 83 94 93 92 110 99 107 113 122 155 156 165 154 149 176 208 208 191 203 214 188 185 230 229 237 254 239 237 233 228 210 202 204 220 192 203 203 185 188 178 156 159 157 157 118 124 124 98 120 99 105 86 64 70 78 61 51 40 48 34 54 48 40 56 37 44 40 38 39 46 38 65 33 36 45 40 42 50 42 37 52 47 50 41 45 69 89 88 73 94 77 70 107 103 112 98 130 154 156 126 167 151 174 179 194 173 210 197 190 203 209 184 222 210 228 193 261 236 247 221 230 224 226 202 194 209 192 174 152 149 164 158 141 150 134 106 107 101 102 116 78 77 73 66 61 64 46 52 40 44 36 22 17 12 7 7 2 0 0 0 0 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 4 8 8 23 25 33 48 38 59 47 63 64 61 80 73 82 97 100 102 103 111 125 140 142 140 155 156 165 182 188 175 189 186 218 204 227 227 239 241 263 243 254 211 203 224 211 230 187 171 212 176 173 188 141 154 171 160 154 135 130 128 110 105 100 85 94 77 86 80 57 52 59 41 42 34 47 41 43 47 45 38 44 37 41 50 48 40 52 39 53 52 40 46 47 31 40 44 38 60 63 70 77 68 86 86 91 78 99 106 99 134 134 142 166 147 170 172 205 179 192 168 210 204 223 237 222 238 218 199 235 256 223 247 248 207 214 230 214 158 184 185 168 169 168 185 155 148 130 141 124 110 98 110 93 101 77 73 57 88 69 49 45 41 37 30 22 15 11 6 3 0 0 0 0 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 1 4 3 11 17 33 26 30 46 73 71 73 67 69 83 84 78 93 108 113 107 119 136 127 155 155 176 168 188 192 194 177 217 187 200 223 229 236 234 258 262 266 244 221 230 220 205 190 205 199 176 194 183 187 185 156 143 164 152 141 135 114 118 110 108 78 87 66 74 70 69 67 56 41 46 41 38 43 48 39 47 38 30 43 52 42 35 45 31 43 38 41 51 38 48 52 51 45 39 54 65 76 81 85 78 85 92 87 106 113 112 135 151 127 158 157 178 147 184 209 184 229 201 213 208 210 188 232 223 216 236 269 224 260 212 244 210 221 175 193 186 184 161 166 165 177 147 141 151 143 118 104 95 125 81 70 91 81 68 61 57 53 57 40 33 35 23 25 14 8 7 2 1 0 0 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 1 7 9 8 20 30 29 47 50 57 37 57 60 63 61 78 78 95 112 100 88 121 134 146 130 165 145 184 182 201 172 184 191 218 201 232 238 223 253 262 222 217 246 215 214 245 212 195 185 199 185 200 183 184 169 196 162 147 136 134 150 110 106 92 98 87 75 98 89 73 65 56 54 46 43 47 53 48 44 41 43 46 52 48 40 31 41 44 46 41 40 38 35 41 45 37 45 49 37 71 70 64 71 83 76 79 90 87 127 114 119 116 123 125 152 161 174 178 174 200 155 192 203 216 188 206 235 208 222 249 231 248 246 260 233 224 221 251 199 207 178 195 155 185 170 158 125 156 124 141 128 113 123 115 70 71 78 78 63 61 67 63 49 55 36 33 23 17 15 6 4 3 2 0 0 0 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 3 9 10 24 27 22 34 52 64 63 63 65 63 67 68 81 98 95 112 104 146 123 159 146 146 153 160 201 177 198 198 217 198 215 249 202 278 245 262 222 267 237 220 243 204 239 218 211 201 195 193 196 164 162 156 168 164 141 142 113 134 124 85 103 85 95 97 100 84 66 61 46 51 41 48 51 52 45 46 34 37 51 44 54 40 34 50 40 42 41 47 52 44 52 51 42 45 43 36 55 67 84 111 92 78 93 113 93 122 128 128 113 151 139 159 178 171 164 174 187 189 198 204 192 207 228 232 239 246 231 226 240 200 247 236 248 197 200 201 194 177 178 170 168 148 173 137 138 117 111 126 106 92 85 80 80 77 78 65 73 54 56 52 44 23 21 19 13 4 5 1 0 0 0 0 0 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 11 13 19 33 33 40 48 50 67 75 67 52 84 81 82 77 94 113 115 135 115 144 134 152 159 159 163 167 181 213 207 220 198 212 209 238 230 241 244 241 210 206 226 210 228 220 203 201 173 176 196 171 175 185 172 157 129 139 108 118 101 97 110 95 79 80 82 74 66 58 49 51 59 44 41 35 35 52 36 49 40 41 37 44 29 35 39 36 39 38 38 48 40 42 46 49 54 41 66 64 79 78 67 73 97 86 99 118 105 116 144 146 145 181 158 178 172 183 186 168 194 192 214 199 193 216 223 237 228 218 261 272 242 216 225 219 188 206 195 181 167 176 157 168 145 133 139 152 109 106 96 95 86 81 74 92 64 54 60 59 50 41 39 30 25 21 11 8 3 3 0 0 0 0 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 7 4 15 21 24 27 47 39 59 52 63 63 57 70 77 69 74 87 94 123 120 139 152 158 159 165 149 181 183 166 212 185 200 241 213 203 272 239 249 256 229 244 190 224 212 181 218 194 195 196 179 192 165 189 180 154 150 153 132 125 113 123 97 96 90 81 78 65 70 67 43 43 51 47 44 54 24 34 41 37 44 42 30 44 40 44 58 38 50 55 45 40 50 39 43 44 26 45 56 61 68 81 77 75 77 92 77 118 102 126 129 128 122 166 173 175 175 180 179 209 193 186 199 206 209 218 205 187 224 232 255 257 246 215 249 207 233 192 185 218 209 180 186 145 132 113 174 126 109 133 114 108 95 112 91 68 75 78 60 56 54 56 42 34 36 32 13 7 9 2 4 0 0 0 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 1 6 9 7 15 23 33 36 49 44 67 51 68 61 85 99 100 91 103 132 86 106 126 143 137 151 155 169 174 207 185 205 199 215 217 226 240 224 240 224 260 255 246 244 220 233 207 190 214 215 199 186 157 203 178 156 161 157 153 127 125 120 111 89 90 105 80 82 94 76 64 59 44 45 60 39 50 40 36 45 39 44 48 42 54 42 51 38 34 37 43 40 46 42 41 50 40 41 43 46 56 66 74 78 65 74 91 91 104 100 105 127 119 155 150 165 170 184 171 166 192 201 213 196 217 201 197 206 239 254 233 239 225 211 225 233 258 239 197 193 220 182 209 170 151 164 128 161 137 129 116 118 104 101 101 80 78 72 75 67 59 40 59 35 39 39 17 20 14 9 4 5 0 0 0 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 1 3 6 9 23 23 39 42 46 54 65 56 62 58 71 75 105 88 110 107 140 127 141 145 147 138 160 156 172 181 190 206 202 210 201 229 210 249 247 247 218 228 242 210 199 232 236 206 208 212 204 172 184 185 162 182 159 156 164 138 132 120 98 110 105 88 81 75 87 70 78 57 55 40 42 34 41 43 40 46 47 40 54 35 45 36 42 50 55 38 37 38 45 55 50 38 48 43 42 52 74 72 74 70 81 89 100 96 116 103 109 112 120 144 141 166 179 152 176 167 192 196 193 192 212 203 199 242 210 209 216 225 226 231 227 187 220 215 196 221 209 165 204 172 186 150 149 115 139 123 121 133 111 96 85 102 75 75 79 69 60 57 39 46 37 27 26 18 15 5 4 2 0 0 0 0 0 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 12 9 19 23 28 33 49 55 70 67 63 67 73 87 94 97 94 93 116 133 121 148 129 143 148 156 162 173 197 182 197 229 246 221 238 261 238 261 229 270 230 208 249 227 225 219 211 218 179 206 170 183 163 161 138 145 127 151 121 119 101 97 104 82 73 70 78 83 72 72 45 54 48 42 36 43 36 43 40 39 44 44 42 53 32 48 36 48 38 34 40 47 33 39 55 35 40 53 53 74 69 83 60 105 101 96 100 93 106 125 137 149 160 153 151 186 176 191 173 175 209 214 215 209 208 225 223 250 236 259 255 234 232 207 261 217 225 194 204 156 165 169 163 154 145 162 133 125 128 126 106 91 69 84 74 63 60 72 53 47 52 45 38 23 24 21 6 8 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 1 3 6 9 16 22 19 41 36 44 57 54 57 77 72 76 75 83 96 96 99 100 141 141 152 140 162 150 150 173 169 184 171 193 236 209 209 226 226 241 251 248 245 232 224 207 221 196 214 179 191 189 192 155 156 176 161 156 173 166 120 133 112 107 106 85 98 79 76 88 87 68 66 41 39 42 42 43 40 34 34 49 46 39 43 37 41 43 44 40 38 46 37 55 40 45 44 49 45 41 40 59 81 77 84 77 68 86 95 95 101 109 117 123 147 154 152 164 199 188 175 189 196 195 191 222 224 225 229 239 229 226 249 256 214 244 226 217 222 210 195 183 197 162 169 162 144 150 153 145 153 114 107 107 110 80 72 72 68 60 57 65 51 52 47 43 31 26 19 12 6 6 2 0 0 0 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 1 7 10 11 11 29 38 34 46 52 59 60 48 78 67 84 93 88 107 98 97 105 158 140 156 164 157 185 187 174 190 192 187 194 216 262 260 219 240 240 244 264 225 218 225 215 203 210 214 215 198 189 179 174 204 158 156 153 122 149 129 124 111 108 94 105 79 76 86 71 84 38 54 41 54 51 35 46 39 41 34 31 42 41 45 38 44 55 41 49 46 40 47 39 47 46 28 42 46 47 42 82 81 74 81 65 93 105 98 103 99 125 146 152 143 156 146 184 182 187 207 192 201 198 216 212 213 222 236 236 232 253 258 241 242 216 230 224 190 193 197 170 186 170 161 148 150 135 131 121 115 115 125 95 102 98 69 74 59 63 57 71 49 40 42 27 24 12 12 8 6 1 3 0 0 0 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 7 10 15 18 31 32 45 36 62 64 58 64 61 69 85 93 94 122 103 106 124 142 129 149 141 159 166 166 164 192 186 207 209 194 218 197 216 221 239 226 261 242 214 196 236 218 204 194 181 205 199 173 181 163 142 177 171 145 150 139 118 110 112 97 94 72 74 81 68 75 61 49 50 47 34 50 45 48 54 37 48 45 39 43 34 41 38 52 49 44 37 44 33 51 43 36 45 49 39 50 85 85 75 69 82 87 79 92 107 99 136 144 147 142 165 158 164 183 182 183 189 194 209 199 198 226 197 222 227 239 251 230 264 235 239 210 201 205 210 189 195 170 177 168 151 160 144 120 131 114 134 120 91 112 91 63 73 67 70 69 50 40 46 44 30 31 15 7 6 1 0 0 0 0 0 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 2 11 10 18 26 29 49 37 54 61 65 77 69 80 95 93 104 94 94 111 111 121 138 144 157 175 180 177 210 182 194 199 219 208 231 201 247 237 227 240 228 221 214 210 224 228 233 214 193 201 169 183 176 170 176 175 152 142 131 126 124 104 98 102 83 78 83 80 88 64 71 62 45 39 35 47 47 45 40 46 40 42 45 32 45 46 54 47 39 47 33 48 38 39 45 41 39 44 64 49 67 92 85 85 86 86 108 99 127 105 128 147 141 148 163 161 153 196 180 174 208 213 198 194 189 210 220 204 222 258 242 270 262 231 231 195 213 199 171 189 186 179 176 198 143 150 143 122 142 137 102 112 111 94 80 77 72 62 44 55 43 55 43 27 30 24 20 13 9 4 3 0 0 0 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 2 4 9 12 19 21 36 41 48 53 46 56 77 51 62 81 97 99 107 98 107 120 133 151 141 141 165 155 156 167 180 183 218 221 232 231 256 242 243 242 238 243 264 208 220 202 199 181 183 208 213 189 177 183 192 162 168 145 161 137 111 114 108 122 88 95 109 71 72 70 53 66 57 34 48 32 43 45 40 50 42 57 37 37 50 33 41 53 32 49 46 42 54 49 42 34 40 38 42 49 65 66 100 64 71 80 84 85 106 122 118 118 142 134 141 160 191 157 168 196 179 217 215 206 185 220 214 244 227 222 216 255 270 232 242 230 215 224 206 208 189 207 173 151 161 125 145 130 136 126 135 109 110 107 97 88 79 86 71 69 69 56 44 46 49 30 31 22 14 8 5 0 1 0 0 0 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 4 3 15 19 20 39 37 48 56 66 78 75 66 69 73 95 97 104 134 120 127 114 134 150 145 153 168 174 169 181 188 203 199 211 220 222 236 237 234 247 247 241 232 213 217 217 200 182 192 184 199 150 167 166 150 159 132 150 134 111 105 114 99 87 84 96 80 61 77 70 51 50 44 39 38 46 51 32 41 34 47 48 47 38 43 52 48 32 38 37 38 43 56 40 43 42 56 52 44 59 67 89 76 80 81 83 102 100 90 117 119 119 143 161 158 160 184 198 187 189 198 215 210 220 214 222 206 226 248 241 243 225 228 221 218 190 218 212 178 199 190 163 165 169 168 163 159 136 113 113 112 103 103 94 81 85 70 58 63 61 53 39 41 34 36 17 16 16 12 1 1 1 0 0 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 2 6 6 17 21 21 37 48 41 47 64 77 72 75 76 71 91 93 82 123 102 126 105 163 158 159 134 175 184 193 194 184 204 196 178 215 220 218 252 247 265 227 230 223 228 190 225 173 194 211 193 192 194 172 190 160 179 151 147 121 98 123 119 94 101 80 92 77 78 83 65 61 54 48 37 53 44 42 23 46 44 47 43 46 38 41 56 33 46 30 44 48 41 45 45 45 38 41 49 63 62 88 79 91 67 65 93 91 97 112 123 100 125 159 151 151 182 165 189 181 181 180 162 199 207 190 217 194 238 225 225 242 250 232 238 253 206 213 211 202 163 195 194 184 142 189 153 152 153 125 121 104 105 104 95 96 79 62 65 68 58 58 58 42 36 36 26 16 8 10 2 1 1 0 0 0 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 6 4 11 18 37 47 43 35 46 63 48 46 56 80 67 96 99 116 109 109 117 121 150 137 155 148 154 156 172 198 201 220 223 209 205 211 253 241 224 229 242 246 221 195 196 181 239 199 216 222 178 165 187 166 176 156 111 141 141 129 119 99 101 102 87 85 84 75 69 77 52 58 54 43 46 48 59 38 42 38 33 40 40 54 38 47 42 40 47 44 42 56 42 39 31 46 45 45 52 55 64 79 61 82 97 97 111 111 109 102 115 125 143 164 157 160 174 180 159 176 176 210 202 205 236 210 239 230 233 241 210 225 238 252 250 218 223 201 181 175 184 196 188 146 150 142 166 143 116 115 113 110 108 98 85 68 74 63 83 57 64 50 43 29 30 30 18 4 2 4 2 1 0 0 0 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 4 7 13 22 23 17 38 36 58 66 58 64 66 51 58 82 83 102 115 108 125 112 135 161 167 155 159 162 173 189 164 195 225 205 212 219 238 218 232 266 221 229 214 222 212 218 204 206 205 176 178 194 183 167 162 152 141 124 125 116 111 109 107 81 115 90 85 71 91 81 64 52 54 43 29 35 45 37 42 35 49 48 54 40 47 42 29 42 31 46 42 39 44 44 38 47 58 40 46 44 78 84 58 69 67 82 99 129 88 100 128 135 160 159 164 149 159 156 182 182 202 201 207 228 211 201 224 222 219 230 250 253 237 204 214 218 211 220 204 187 173 189 177 165 147 147 139 122 119 123 117 98 106 89 86 75 60 80 64 73 68 43 38 41 21 24 20 11 4 4 1 0 0 0 0 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 1 11 15 20 19 32 41 44 60 57 65 65 60 61 70 85 84 111 94 95 100 111 134 146 138 150 190 164 180 190 190 198 209 203 224 184 225 217 227 243 231 252 217 206 195 210 191 188 208 208 178 189 181 177 152 149 152 141 129 85 135 113 86 95 80 88 78 79 87 75 55 38 55 48 33 63 51 41 35 37 45 48 39 39 48 45 32 37 35 31 40 37 36 32 30 40 35 49 54 53 69 70 72 69 72 77 94 105 110 130 97 137 150 142 167 138 174 187 171 170 176 185 211 198 188 192 203 224 227 226 238 238 223 227 212 221 218 199 198 187 186 179 159 164 142 132 136 144 126 104 107 98 93 82 77 73 73 65 64 69 54 48 46 35 21 21 12 8 12 2 1 0 0 0 0 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 2 8 16 11 23 27 46 57 43 57 60 55 66 76 88 93 102 98 81 125 129 117 134 137 165 158 160 160 158 170 201 197 202 208 213 223 239 240 220 243 247 210 209 202 211 204 200 199 186 193 190 161 171 160 152 174 139 129 109 123 121 121 96 95 97 71 75 69 81 72 52 55 50 50 41 40 43 43 41 49 45 42 46 35 45 50 43 41 46 39 48 44 41 35 37 34 51 47 48 57 57 79 75 81 88 82 80 97 102 108 112 138 117 131 166 146 164 176 186 186 186 171 202 205 209 222 215 221 207 192 229 237 236 221 190 225 214 205 211 178 188 186 168 160 163 155 147 118 148 97 88 94 96 85 99 68 77 65 66 71 57 58 48 28 30 22 23 6 6 7 1 0 0 0 0 0 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 15 12 22 28 24 36 34 48 53 57 63 66 70 80 92 82 114 88 119 125 126 129 159 143 150 153 173 187 182 183 199 179 210 248 226 230 251 258 225 213 205 219 200 191 201 189 178 202 197 218 163 168 162 138 147 136 140 116 123 115 85 88 91 86 82 77 78 84 50 52 48 39 40 33 45 41 36 39 37 41 46 44 45 41 29 46 40 39 37 46 33 38 36 46 25 31 49 56 55 66 75 71 76 79 90 74 111 110 93 110 122 152 137 142 158 136 163 182 176 169 190 218 203 195 227 201 214 218 221 218 266 219 234 219 224 206 182 210 195 177 159 179 153 149 162 129 138 110 114 106 106 74 78 71 84 80 59 51 60 51 49 38 40 30 23 28 8 10 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 10 10 15 20 18 37 58 52 54 59 70 80 50 68 79 93 94 99 109 119 92 123 154 147 134 166 145 169 164 148 160 205 184 236 204 222 238 250 226 247 182 262 195 208 189 207 197 210 175 168 169 167 158 169 166 145 126 137 109 96 99 98 87 90 71 76 79 75 63 45 50 44 54 38 36 39 38 38 45 37 42 48 44 34 41 49 44 44 45 46 43 42 33 36 45 36 44 56 51 78 64 68 64 80 90 101 97 97 113 98 130 150 135 151 155 165 163 180 180 186 194 201 212 201 208 174 198 222 234 213 231 235 226 202 208 200 177 166 173 151 171 155 156 159 150 133 114 127 101 106 112 108 68 75 67 67 73 73 53 58 53 33 29 38 35 25 15 11 3 1 0 0 0 0 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 3 5 15 9 17 19 46 40 38 43 60 56 63 59 67 80 93 98 104 111 113 143 100 127 162 141 166 152 170 185 188 180 205 190 208 213 268 242 233 192 199 215 212 179 195 188 189 189 177 181 177 182 160 158 133 148 147 136 105 117 102 96 100 70 86 84 68 71 72 69 44 43 53 47 40 32 29 40 40 42 39 37 38 38 41 40 41 45 42 52 41 42 41 26 42 39 49 40 56 58 53 83 85 75 73 81 112 91 99 108 117 124 126 134 148 148 162 192 176 144 179 171 170 214 195 199 196 201 222 216 230 232 217 205 194 215 177 205 186 167 176 191 154 146 130 139 135 111 107 120 104 99 106 78 77 89 67 50 69 58 62 47 46 27 30 29 15 8 6 5 0 2 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 7 8 6 14 28 25 30 43 53 67 57 53 51 59 79 82 75 97 99 103 120 121 130 135 144 151 163 155 170 165 158 204 196 211 204 225 199 217 221 210 219 219 188 199 206 192 167 185 171 187 166 183 153 151 159 137 143 124 123 110 99 122 91 90 75 59 90 72 88 76 57 53 45 32 43 38 34 42 43 44 31 52 46 32 50 40 41 48 47 52 49 42 34 41 52 40 43 54 46 45 69 65 69 55 71 89 100 96 110 106 112 127 142 107 147 159 169 150 162 181 175 172 201 216 187 183 204 220 224 231 200 201 207 208 226 189 183 181 187 147 183 174 155 143 152 136 117 157 109 119 115 102 79 96 68 69 59 80 53 59 49 57 38 33 25 25 17 9 7 8 2 0 0 0 0 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 3 7 12 18 23 26 43 30 37 48 53 63 58 55 81 71 69 92 90 106 83 112 105 131 145 145 144 154 146 144 173 181 185 177 202 202 184 215 216 229 198 180 196 208 171 180 193 166 196 188 163 146 170 141 159 144 114 123 127 122 88 107 101 83 92 66 78 84 77 52 56 38 49 41 42 41 25 36 48 35 46 40 32 38 33 44 32 34 47 38 42 32 49 35 47 42 46 45 45 56 71 66 66 74 74 98 91 97 106 91 115 119 125 119 151 157 156 136 165 154 182 172 184 186 178 197 191 203 217 205 214 212 235 208 204 219 202 197 194 158 155 184 159 145 143 138 125 123 136 126 115 98 99 66 69 71 60 55 60 61 62 42 31 35 32 23 10 16 6 3 0 0 0 0 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 1 6 9 7 14 13 29 33 29 50 44 54 67 44 67 87 67 63 98 97 102 114 110 115 141 128 123 135 133 160 170 169 185 194 196 185 213 200 212 225 216 211 218 225 163 227 184 176 172 171 171 173 152 147 150 156 153 142 125 118 107 101 101 95 80 90 74 69 66 65 51 48 47 48 30 42 37 40 40 42 36 37 42 47 34 55 48 50 48 34 27 47 42 34 53 43 38 45 35 48 53 65 53 58 74 78 84 73 79 89 87 102 117 147 112 131 161 157 153 161 180 172 171 167 206 174 204 213 196 222 184 200 210 211 203 216 200 188 173 172 189 177 164 140 133 146 131 138 125 125 101 110 106 94 67 85 69 60 56 70 52 47 43 37 36 27 22 14 11 9 1 1 0 0 0 0 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 2 3 6 12 21 22 37 47 49 48 64 49 67 67 65 95 90 84 99 106 128 121 120 142 139 127 145 160 142 170 169 146 181 199 204 207 193 221 214 202 232 219 230 196 184 191 184 173 164 178 152 161 158 140 153 125 136 125 133 120 111 102 89 86 80 64 72 67 71 60 46 32 28 32 36 36 41 41 35 37 45 37 44 28 47 36 34 40 28 47 39 31 39 39 29 35 29 44 49 47 74 64 68 57 77 62 64 78 98 83 126 123 144 150 132 130 149 158 169 170 171 167 190 183 153 193 210 216 186 220 226 250 196 198 226 196 196 194 206 156 161 132 160 136 134 134 133 136 116 94 109 91 100 81 64 87 62 55 55 63 46 43 30 29 21 24 12 10 8 2 1 1 0 0 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 4 3 12 10 13 15 32 33 31 35 46 48 49 62 61 78 72 92 74 114 92 106 96 117 144 139 127 145 139 120 165 168 180 166 197 196 171 203 219 221 193 208 177 195 160 151 168 164 177 159 169 172 186 163 169 127 140 120 121 125 87 105 88 92 92 79 71 59 65 84 57 38 42 39 43 40 42 30 35 37 39 35 32 42 37 34 39 35 42 37 41 47 37 40 46 36 32 41 27 37 60 51 72 67 60 58 87 83 86 76 94 107 128 146 134 147 134 115 147 143 155 177 169 181 185 176 179 184 172 201 210 195 201 215 188 185 190 174 161 170 158 164 169 137 146 114 113 120 122 132 120 91 71 102 94 75 71 71 64 68 57 49 36 31 38 32 15 17 14 3 0 3 0 0 0 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 0 1 7 9 18 16 32 32 33 27 55 53 64 59 59 74 60 81 71 81 96 93 114 99 134 126 131 153 133 127 159 146 157 160 186 176 179 187 202 214 207 199 197 188 193 176 168 154 167 185 156 158 138 130 138 135 130 125 131 115 106 87 69 97 69 89 79 63 57 59 38 47 51 42 38 45 32 41 39 45 33 32 32 43 37 36 43 37 28 37 28 34 38 42 30 37 40 39 37 35 46 51 70 66 53 75 80 78 94 97 100 109 105 101 132 131 130 164 161 134 173 161 179 186 164 179 176 190 164 205 213 206 199 212 222 171 188 180 173 159 183 168 136 129 151 130 124 112 126 93 110 89 88 88 76 81 70 51 66 42 53 50 47 30 33 41 26 11 6 7 5 2 1 0 0 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 1 2 8 11 14 19 28 39 35 42 53 44 50 52 55 63 70 72 80 99 107 118 107 120 107 129 122 155 156 140 139 179 142 167 170 184 201 203 194 204 189 208 197 173 171 179 178 169 164 143 165 148 146 135 123 150 151 124 113 100 105 92 77 81 76 66 72 73 64 64 51 56 38 38 45 34 39 40 29 35 38 38 37 46 54 34 42 39 40 34 35 32 34 42 39 31 41 34 33 51 42 57 64 70 59 60 75 80 83 92 83 106 130 120 151 126 156 137 156 143 149 175 160 159 180 187 151 208 205 177 188 227 205 200 198 207 166 184 163 166 169 164 128 132 120 122 125 113 118 95 108 107 92 90 75 79 60 64 58 52 49 56 52 47 28 28 17 12 9 7 1 2 0 0 0 0 0 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 8 11 11 19 25 34 45 46 41 58 55 60 62 54 66 78 79 84 84 91 101 121 98 120 130 120 134 162 145 152 189 132 174 166 196 207 173 198 170 199 195 203 175 190 165 179 156 168 173 163 145 126 132 140 108 139 110 106 92 66 86 77 87 66 77 68 55 64 59 43 50 37 40 48 34 31 34 35 33 40 34 25 38 29 35 28 36 23 35 37 37 37 42 31 38 45 28 51 41 49 56 61 53 69 65 91 81 70 84 99 105 108 128 140 133 160 139 163 157 157 163 132 170 159 179 156 188 174 176 169 187 213 208 184 198 179 178 144 156 140 135 132 134 129 117 136 116 102 109 82 101 83 69 65 66 63 54 64 46 48 38 36 35 21 23 15 12 6 2 0 0 0 0 0 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 4 10 11 17 23 22 36 35 37 49 69 56 42 53 67 66 73 78 69 96 90 110 74 107 126 112 140 139 144 152 164 159 174 191 166 197 189 200 192 193 201 179 195 142 154 167 158 148 173 162 150 152 152 123 131 112 123 127 99 106 74 106 92 71 71 58 56 57 53 60 48 36 30 33 51 46 33 25 41 39 33 35 37 40 31 23 35 30 38 31 27 38 34 31 36 46 25 29 42 49 58 62 56 43 65 68 96 67 100 96 94 117 112 114 120 128 153 151 150 140 159 141 163 169 151 177 155 164 221 183 207 199 174 192 172 190 178 168 178 144 155 147 148 124 124 104 116 118 94 104 93 80 78 66 65 79 62 61 49 47 44 53 26 34 36 19 16 6 5 4 0 1 0 0 0 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 4 2 12 13 15 20 30 31 54 45 46 52 55 56 62 53 64 64 96 95 94 97 108 116 141 130 131 147 129 144 117 178 167 169 160 187 188 185 185 193 185 175 166 177 152 154 155 166 142 161 139 134 136 129 167 116 135 118 114 88 85 72 81 69 65 69 57 65 79 67 51 44 34 31 41 49 32 44 31 41 32 30 26 35 36 31 34 31 38 37 30 27 37 39 33 14 35 41 40 46 50 60 79 69 66 71 63 90 82 97 89 100 115 133 120 132 123 140 128 142 156 154 154 169 179 147 169 180 209 180 173 190 210 178 165 183 145 154 155 125 142 122 109 135 119 112 105 94 101 100 97 92 84 79 70 62 55 53 69 57 41 37 39 28 27 20 19 13 5 4 2 0 0 0 0 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 4 4 8 13 19 38 35 48 36 44 55 55 60 57 54 54 82 72 83 74 68 87 87 124 104 122 128 125 139 149 180 137 181 185 164 189 171 189 205 187 208 163 179 173 168 149 149 163 169 162 159 118 131 147 123 134 140 121 117 85 91 76 85 88 76 53 54 57 48 43 62 44 34 37 20 38 30 34 33 35 45 41 29 44 24 36 41 35 35 34 28 39 31 36 33 39 34 41 35 43 39 56 70 50 72 64 61 73 93 68 100 112 111 112 125 139 146 121 139 141 151 154 183 156 169 172 172 170 173 191 189 193 197 195 170 175 183 146 166 144 142 156 123 127 132 103 87 108 92 78 82 70 69 61 61 61 56 54 42 40 42 37 39 40 25 16 8 9 2 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 6 16 19 25 30 24 44 45 44 51 43 67 69 61 85 92 84 83 81 125 114 98 113 128 127 135 159 138 149 157 149 140 185 166 197 181 193 186 167 181 188 152 164 156 156 173 141 149 145 136 124 132 132 114 111 130 93 87 82 86 72 73 68 57 53 37 44 59 46 31 33 40 35 31 30 31 37 44 30 26 28 29 33 27 35 29 24 38 24 36 42 24 34 28 35 48 32 36 61 63 52 63 74 52 65 91 81 64 90 90 96 110 144 113 127 147 111 157 164 132 144 155 191 180 179 178 173 171 166 175 195 169 200 170 176 138 137 158 140 147 142 140 113 108 103 106 97 98 104 80 76 65 49 64 65 43 53 43 46 39 30 30 27 15 15 8 3 2 2 0 0 0 0 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 2 4 14 14 21 28 19 42 30 45 36 43 42 54 62 64 74 82 83 87 107 108 90 95 117 138 119 114 149 150 136 170 148 172 179 161 167 191 188 188 173 180 164 158 153 145 150 144 148 145 148 140 135 131 97 110 115 125 88 98 78 73 69 77 56 45 54 62 57 36 42 39 36 27 31 32 30 27 30 23 34 25 31 24 17 33 25 31 35 42 30 22 28 34 34 29 33 35 52 41 45 60 58 53 61 61 65 76 82 103 85 94 113 117 124 112 127 125 129 143 158 163 165 144 149 147 159 179 140 186 188 175 192 165 179 167 183 163 135 134 135 131 131 91 110 106 118 103 84 87 87 76 66 77 65 62 51 51 57 48 29 38 39 25 25 19 12 13 4 4 1 0 0 0 0 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 0 3 10 12 20 16 25 27 36 34 46 35 53 50 51 50 61 58 68 75 89 108 92 113 126 117 109 118 132 138 147 133 160 151 168 148 187 166 189 189 152 190 170 186 180 153 151 132 147 149 135 140 111 128 114 110 107 103 93 90 85 81 62 58 63 55 57 55 49 61 37 37 32 34 33 37 28 36 30 37 32 28 23 37 32 33 37 21 21 31 36 28 19 42 35 30 25 36 38 37 52 58 53 37 72 70 59 86 64 78 96 113 120 118 126 139 138 143 137 131 134 134 146 139 153 173 148 155 169 167 154 166 184 179 165 163 171 148 148 140 112 137 130 109 115 104 101 92 94 84 79 62 65 60 50 66 51 51 42 45 48 43 36 39 20 20 14 6 5 3 1 2 0 0 0 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 3 9 8 11 15 33 23 33 34 40 48 42 51 54 48 61 58 82 80 85 67 75 89 109 89 97 98 129 128 127 128 157 143 132 156 167 180 184 178 140 187 140 153 163 139 169 145 156 122 159 144 126 127 125 121 100 107 100 104 88 73 86 73 74 56 61 62 48 67 60 38 37 38 27 36 34 29 35 19 29 27 32 38 39 35 26 23 35 44 31 30 25 36 24 26 29 28 44 34 49 55 59 50 45 65 60 74 85 66 76 85 78 107 98 119 114 121 137 128 159 114 148 154 138 144 177 156 146 182 173 169 176 153 168 161 164 150 151 144 132 148 115 155 131 120 94 105 86 88 88 72 57 79 57 46 56 51 48 49 48 40 24 23 27 17 21 12 9 3 2 2 0 0 0 0 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 2 3 5 14 18 21 26 29 40 41 33 52 58 39 63 74 56 60 78 98 81 87 98 115 107 97 106 139 123 133 129 155 139 147 161 154 175 171 172 158 144 138 160 145 146 139 136 136 129 113 142 114 147 103 114 95 119 107 99 83 88 61 81 65 73 56 60 55 61 53 36 50 33 30 37 36 25 38 22 23 38 29 21 26 30 29 25 33 33 38 23 22 31 30 36 28 32 43 51 34 54 58 56 52 72 68 63 74 97 78 89 81 99 122 111 123 122 121 116 143 132 149 144 140 152 149 160 146 173 166 146 167 151 167 138 145 152 139 139 133 121 109 117 115 127 112 112 105 86 74 72 59 67 62 46 56 36 51 50 50 33 40 30 26 21 16 16 8 4 4 2 0 0 0 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 0 3 5 10 14 17 23 30 29 28 43 34 47 41 37 57 59 59 83 82 71 81 86 91 82 85 112 99 115 128 124 113 141 144 143 152 148 160 169 177 169 161 142 175 150 152 164 120 142 141 115 134 131 130 102 105 93 123 89 85 69 92 87 54 70 56 63 54 61 67 36 42 45 47 29 21 32 29 21 23 18 37 29 34 45 27 21 27 32 28 33 22 32 23 28 34 26 22 36 44 26 47 57 57 62 57 65 61 67 77 69 82 83 88 126 104 106 123 117 115 128 142 159 148 132 145 147 140 143 171 138 154 155 162 153 152 139 122 140 108 113 107 115 113 103 104 99 115 119 98 90 73 77 71 64 69 47 43 50 44 43 40 36 28 23 22 26 13 10 4 2 2 0 0 0 0 0 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 6 5 9 11 17 28 27 54 36 45 40 38 44 47 56 60 72 81 75 85 97 66 105 100 115 111 122 89 122 120 114 147 143 147 174 195 162 172 161 146 151 147 136 135 134 157 166 126 151 109 115 102 109 105 115 127 100 93 88 97 81 60 64 68 57 55 43 57 42 39 35 40 38 32 37 19 24 24 19 30 30 31 32 29 36 38 26 29 23 37 24 29 32 32 25 34 40 39 31 58 46 48 55 62 64 61 72 76 81 80 88 99 91 117 108 113 107 117 118 138 151 137 145 140 156 156 155 154 154 145 178 178 157 142 161 161 132 146 134 103 115 109 111 113 100 98 90 78 76 80 67 72 67 54 61 41 36 50 34 35 32 29 27 16 17 12 7 4 0 0 0 0 0 0 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 3 11 8 10 25 17 19 21 39 41 35 62 37 52 64 50 67 52 70 70 76 67 74 94 108 100 91 105 125 133 127 126 125 140 132 164 167 185 164 149 157 172 154 140 126 118 141 143 135 129 106 110 100 106 102 106 120 85 92 82 73 66 80 63 60 46 48 53 59 37 35 38 32 32 27 27 25 33 22 26 23 27 27 24 33 25 24 39 31 34 18 25 30 29 28 28 33 34 29 41 58 47 56 59 53 59 68 74 69 70 89 89 107 92 123 112 112 107 119 117 138 154 134 141 127 162 163 149 155 138 138 146 178 172 135 150 114 131 125 124 121 112 103 112 106 92 81 72 87 82 70 91 62 54 55 52 33 40 43 42 31 40 36 20 17 20 12 14 5 3 5 0 0 0 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 0 2 3 3 14 17 27 23 34 40 39 41 50 42 39 50 56 67 72 60 73 80 74 78 93 98 115 115 108 131 111 115 140 135 132 144 153 158 153 143 148 124 158 147 122 141 145 138 136 109 119 132 106 104 115 97 98 107 87 89 86 73 55 60 61 46 60 49 45 50 52 32 33 32 32 24 19 31 28 30 23 30 22 27 25 27 17 28 27 22 31 24 37 29 20 37 26 27 25 39 32 45 48 58 47 50 51 71 62 62 68 76 74 105 87 95 109 103 111 104 109 105 114 125 121 137 150 139 161 157 145 150 140 164 161 160 145 121 145 123 126 128 118 105 121 105 102 104 86 83 90 73 75 57 52 59 42 40 38 41 44 41 38 24 32 23 21 9 3 4 3 3 1 0 0 0 0 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 4 10 4 13 15 24 29 33 38 38 37 41 50 44 47 63 58 72 60 66 70 93 87 109 100 112 117 103 119 116 98 106 120 133 129 147 142 166 143 140 149 149 151 139 127 128 137 140 135 129 116 106 128 97 114 100 82 76 81 86 66 59 56 50 58 43 57 46 37 29 41 39 29 29 35 25 29 29 24 35 27 24 30 25 28 24 38 31 24 26 34 35 19 24 23 31 31 40 47 51 53 54 58 51 49 54 67 63 55 79 87 99 77 109 86 111 121 130 125 110 113 131 143 123 165 120 113 151 152 173 140 160 130 125 153 153 131 128 131 101 120 118 100 96 89 103 79 78 82 66 62 64 54 54 45 48 49 44 44 29 38 25 29 20 17 13 8 5 3 1 1 0 0 0 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 4 6 9 7 12 15 12 30 36 32 42 32 43 48 41 55 65 49 71 59 76 77 82 72 91 92 97 97 99 112 116 121 115 132 134 158 153 168 145 134 163 139 149 143 147 127 120 135 110 120 122 107 102 98 95 100 82 87 77 78 50 65 46 62 58 53 55 48 43 48 46 33 33 25 26 32 27 33 28 26 33 27 22 30 20 31 27 16 26 14 27 29 30 28 20 33 22 34 32 45 47 58 59 43 63 42 68 68 62 52 73 70 82 80 81 106 103 112 104 134 124 114 127 134 132 121 124 144 123 150 129 139 148 144 133 142 125 128 125 103 95 107 99 108 110 112 97 96 81 78 82 62 65 63 62 50 45 36 45 58 33 38 27 22 15 12 12 10 5 2 1 0 0 0 0 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 4 0 5 11 8 15 16 32 38 25 47 41 39 32 51 70 60 53 67 82 67 78 84 86 90 74 114 92 107 99 128 118 114 117 149 159 143 140 140 145 154 117 132 131 104 100 115 120 118 121 98 116 103 113 101 102 90 96 93 78 77 56 65 56 59 37 36 42 45 37 36 41 23 17 22 20 25 25 19 21 28 25 26 19 36 27 21 21 29 26 26 34 28 30 19 35 23 27 32 28 38 41 58 47 47 52 51 64 58 71 78 87 99 103 100 106 110 97 103 112 107 120 123 126 131 123 143 114 142 142 165 142 157 113 126 130 127 143 124 106 122 113 99 97 95 105 81 73 74 69 59 68 74 55 55 48 42 42 31 50 42 28 22 22 19 13 10 7 2 0 0 1 0 0 0 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 3 2 4 11 13 23 25 40 28 42 37 41 42 37 42 48 58 62 57 73 79 88 67 81 101 93 93 98 96 87 101 112 112 122 122 146 142 150 131 146 144 154 132 133 124 109 129 106 115 127 116 96 126 97 99 77 106 92 74 68 63 57 65 48 61 49 39 42 43 45 41 32 27 22 24 23 26 30 24 23 23 31 35 17 22 23 23 30 23 38 26 24 35 19 28 18 22 31 31 37 61 40 46 36 51 39 54 55 67 75 88 73 93 96 84 88 100 96 116 125 103 135 108 122 119 131 131 112 127 161 140 137 148 149 139 131 127 102 103 107 119 112 82 115 93 87 85 86 64 68 69 71 62 50 63 45 43 48 31 40 33 32 23 29 21 12 6 4 12 2 0 0 0 0 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 0 1 10 5 8 19 17 26 28 23 31 28 37 39 44 48 66 63 49 61 70 62 78 76 83 95 77 93 101 107 107 107 120 107 132 123 136 125 127 130 137 145 123 135 122 126 133 126 105 130 98 96 102 90 111 97 93 104 84 70 74 73 50 56 49 48 56 47 50 40 53 33 31 28 29 24 33 31 30 26 18 24 17 21 20 29 38 30 30 34 29 30 28 21 21 19 22 33 19 30 35 41 35 47 45 45 40 52 57 48 58 70 63 95 102 93 95 98 109 115 115 107 98 99 116 125 116 120 126 143 144 142 149 130 142 142 127 121 124 103 95 109 93 120 104 78 99 71 102 68 57 61 53 58 50 50 38 37 40 45 47 35 31 28 27 18 10 14 6 3 0 1 1 0 0 0 0 0 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 6 6 21 22 27 25 37 29 43 41 36 36 40 39 48 63 52 63 65 67 86 68 88 88 91 103 103 103 112 119 120 116 117 132 117 135 134 121 139 130 132 124 132 89 117 117 119 113 115 100 121 104 85 72 87 81 80 85 63 65 59 69 48 41 42 45 38 31 26 41 17 23 16 26 30 17 20 14 34 24 21 18 25 19 19 24 20 29 26 15 26 26 28 31 29 26 22 35 54 30 29 33 48 49 53 44 54 64 64 68 97 91 82 81 106 118 102 98 109 122 132 94 127 135 117 119 116 130 127 112 108 128 117 132 117 82 109 132 84 96 97 89 83 84 59 72 75 65 80 51 66 51 41 48 40 33 38 31 38 34 21 23 16 10 11 8 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 2 8 11 11 11 23 28 27 25 33 31 34 38 30 44 41 60 55 49 63 73 76 83 77 95 97 96 99 89 103 109 101 90 125 97 130 151 122 140 144 122 122 146 110 119 112 112 112 97 94 91 100 98 80 98 72 83 71 84 65 52 47 51 56 45 33 44 52 38 39 21 22 22 24 20 29 28 24 18 21 20 24 23 23 20 27 29 21 26 18 19 28 17 17 19 19 20 28 29 27 39 26 43 46 36 55 56 59 60 63 70 93 88 87 94 82 104 107 95 117 121 116 108 119 131 116 124 134 136 136 136 128 108 128 111 113 97 109 113 117 77 99 89 89 101 78 88 78 69 46 60 48 56 58 40 38 40 34 40 37 33 31 15 11 10 9 6 2 0 2 1 0 0 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 0 1 3 4 8 14 17 15 27 22 30 34 25 30 37 48 53 45 44 71 69 57 63 65 82 59 93 59 92 103 102 92 108 107 117 95 110 132 141 121 129 135 133 114 127 92 95 109 108 101 102 102 113 102 82 90 93 77 66 69 54 55 43 53 62 59 46 42 33 40 30 31 20 27 21 17 17 22 20 21 17 25 20 21 20 14 23 16 21 21 32 28 25 12 28 16 20 22 27 31 30 33 34 38 39 38 45 49 51 58 51 67 78 69 81 86 86 92 95 84 102 93 120 96 120 121 98 101 113 100 114 136 106 135 113 114 125 98 119 91 107 82 86 89 102 88 80 80 68 85 74 49 50 66 55 31 40 38 38 38 31 27 25 28 21 14 15 11 8 6 1 1 0 0 0 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 0 3 7 5 7 12 13 29 21 25 36 25 41 38 35 39 48 40 47 56 59 54 72 63 80 86 78 74 83 92 94 102 119 114 101 110 95 114 125 129 118 116 117 106 117 92 97 94 107 112 96 99 81 87 83 61 74 82 76 72 76 58 64 49 36 44 44 41 33 39 33 32 29 28 16 23 22 23 17 26 28 25 24 14 20 14 16 16 26 20 18 11 25 24 30 29 21 27 27 25 35 42 41 46 36 52 43 46 56 53 52 70 63 73 73 91 74 88 97 77 94 98 102 102 109 100 111 101 88 129 112 125 123 134 116 112 90 106 105 104 95 84 98 81 77 80 70 77 58 67 63 51 54 63 35 41 52 30 31 27 33 26 25 33 19 18 15 10 6 4 2 1 0 0 0 0 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 1 3 9 4 5 10 18 22 34 31 32 49 38 45 46 38 42 59 50 66 55 63 72 81 77 94 66 80 89 86 95 79 111 112 121 124 126 106 126 120 99 121 101 118 122 116 102 107 81 92 99 86 87 87 92 85 91 90 71 64 66 50 51 56 39 50 52 42 36 42 43 23 20 21 24 24 32 33 20 18 22 29 22 14 21 20 22 27 23 21 34 22 18 17 16 11 24 31 29 43 37 44 52 44 52 63 54 56 42 60 58 78 76 65 69 75 74 84 93 83 99 96 102 101 108 118 103 115 104 113 119 124 137 133 90 107 86 103 112 105 94 99 93 52 77 74 88 76 74 58 59 50 55 51 46 36 36 34 38 29 35 27 20 21 18 10 14 9 5 2 1 0 0 0 0 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 2 7 3 11 13 10 22 30 21 35 28 25 25 38 43 47 42 53 62 46 57 62 62 83 71 79 77 68 82 98 73 93 96 99 103 91 115 119 103 100 101 105 105 119 92 100 104 93 105 111 95 98 100 89 83 70 66 77 71 64 46 50 54 50 68 47 38 41 34 31 29 32 33 32 28 27 33 26 29 36 20 35 28 40 22 27 28 29 34 21 23 25 22 29 29 25 18 29 34 44 36 41 53 47 32 46 41 41 51 53 57 71 79 68 90 81 91 88 91 82 109 102 115 103 87 90 93 108 114 112 136 117 105 102 97 127 90 106 101 96 104 78 82 93 86 86 68 71 67 51 53 47 47 38 45 37 35 35 29 36 35 31 19 24 19 12 11 8 2 0 3 0 0 0 0 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 0 3 8 12 11 16 14 21 25 33 41 36 31 35 32 48 41 50 54 53 58 51 66 79 67 73 82 57 86 93 90 113 87 107 100 117 103 109 117 103 123 100 107 108 97 120 82 96 106 90 99 85 102 84 69 74 80 68 75 62 54 55 44 61 48 45 43 42 49 54 42 41 38 37 37 28 32 34 26 27 34 26 31 40 38 35 35 29 39 32 35 34 40 38 36 36 26 44 37 43 43 53 49 53 54 41 40 59 63 51 73 71 82 89 81 88 78 85 92 93 70 81 95 84 97 97 125 94 106 103 114 126 120 116 97 97 89 101 81 97 77 86 84 76 56 78 74 75 59 52 46 47 45 40 33 34 30 28 27 35 30 28 26 13 17 13 5 6 3 1 1 0 0 0 0 0 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 4 8 6 12 8 26 26 30 30 40 26 21 35 34 34 46 46 42 57 52 68 65 66 61 66 64 83 83 80 100 84 96 86 90 113 123 109 110 119 103 118 108 114 107 99 104 106 84 88 83 97 77 94 89 92 72 87 58 70 57 66 56 48 52 53 61 62 44 55 39 47 32 41 35 33 40 31 50 28 39 44 37 44 49 42 41 36 39 38 30 38 45 42 37 37 36 63 43 50 53 47 42 45 43 56 68 47 77 65 85 75 69 83 92 93 79 91 73 93 111 89 108 95 119 99 116 101 86 115 106 120 104 104 102 117 80 104 88 86 90 69 91 68 70 70 62 52 53 48 46 49 41 38 40 30 42 21 27 14 25 15 22 19 14 8 11 5 2 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 2 3 7 10 20 21 23 15 26 22 23 29 34 35 42 45 46 49 49 51 55 66 58 64 66 72 60 75 75 84 86 71 82 72 98 92 114 109 93 100 98 105 126 90 109 81 93 89 78 81 85 95 89 66 84 80 72 77 67 69 50 48 76 63 56 60 50 54 40 63 42 43 53 39 51 45 50 48 34 44 44 44 49 47 36 39 43 44 39 38 43 49 43 52 44 34 36 51 51 56 43 67 54 77 40 51 55 55 56 67 77 64 72 71 80 78 77 72 84 106 94 125 103 97 87 102 85 102 96 122 109 107 98 95 89 91 87 98 83 72 84 64 80 65 59 63 56 56 51 46 54 47 45 38 28 32 40 28 23 34 24 16 9 15 9 7 5 2 1 0 0 0 0 0 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 3 5 11 9 12 11 17 26 17 29 27 22 34 27 35 40 32 44 59 63 56 47 63 56 60 71 75 71 62 84 70 97 81 85 102 91 110 100 105 113 121 102 98 97 82 84 102 103 95 80 72 83 100 92 75 80 77 77 81 67 78 56 71 63 68 71 52 57 59 44 58 45 44 43 48 50 65 45 55 53 57 51 45 57 47 44 41 64 47 45 53 54 45 41 49 47 53 46 47 38 48 56 71 57 55 54 70 65 78 76 74 83 80 84 84 104 97 79 97 100 86 102 90 91 101 101 86 76 81 116 122 111 103 97 90 101 86 75 98 88 85 71 83 70 70 69 68 45 52 58 48 43 50 30 40 30 40 38 24 33 22 29 31 19 20 8 7 5 5 0 0 0 0 0 0 0 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 4 5 6 8 13 14 15 20 33 25 32 26 29 35 27 30 40 55 37 53 52 48 71 55 66 60 77 73 83 67 89 82 97 70 117 84 98 83 86 74 79 101 97 103 81 96 89 84 86 88 96 70 89 88 80 74 73 75 76 69 61 53 57 67 56 69 58 47 55 69 68 67 57 46 47 68 57 63 58 56 52 56 47 52 49 67 55 48 54 66 57 55 49 46 55 65 39 48 46 62 65 68 73 70 55 64 75 64 71 79 75 80 76 75 91 95 96 99 113 102 87 94 82 99 98 106 93 112 98 95 100 120 87 102 68 94 102 91 94 85 70 54 68 60 64 66 64 46 40 57 38 51 45 24 36 26 25 26 24 28 17 13 19 23 10 2 2 4 0 0 0 0 0 0 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 1 2 7 10 11 11 19 12 16 27 18 24 29 25 21 42 32 50 42 41 49 52 68 61 61 61 65 73 75 80 74 64 90 80 82 100 88 100 96 113 101 100 109 88 96 93 92 85 91 95 105 95 87 67 87 81 85 91 76 89 79 57 77 63 64 58 87 52 68 44 66 51 59 54 58 63 57 53 48 61 76 55 55 55 53 55 64 51 67 50 62 57 48 64 66 57 57 58 68 63 74 77 66 76 67 68 68 75 83 67 67 77 78 101 85 77 86 88 89 84 81 75 102 95 108 78 101 79 89 91 94 94 87 87 88 87 85 91 78 69 64 69 81 70 59 77 60 52 39 47 50 42 45 41 36 17 21 23 21 31 19 22 22 12 15 13 7 5 3 2 0 0 0 0 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 0 3 1 6 15 7 14 12 19 16 18 28 25 20 30 28 35 25 36 38 41 46 66 39 40 50 56 62 73 73 66 71 60 82 75 76 89 80 84 99 105 104 89 83 66 83 91 93 86 82 98 97 94 87 75 75 96 82 78 81 73 65 63 73 74 70 61 66 82 72 85 79 72 59 59 59 76 69 73 68 66 83 61 61 60 57 79 59 72 76 71 72 54 61 69 65 59 59 69 67 77 75 70 76 78 77 92 79 63 69 65 73 82 82 103 97 93 62 94 78 96 102 72 82 88 107 88 95 96 79 103 94 93 91 92 77 72 77 70 66 83 67 60 74 67 61 63 73 53 36 60 38 37 41 38 34 23 23 31 25 21 20 26 19 17 8 6 4 4 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 4 6 10 11 14 13 35 19 30 22 27 25 42 37 38 31 39 39 40 68 41 60 57 53 53 67 67 59 66 72 85 85 86 68 91 73 106 85 89 84 91 93 93 90 98 90 101 77 76 82 84 86 82 90 86 86 71 72 75 82 57 86 87 74 64 74 66 68 63 56 68 64 77 61 66 63 67 70 78 75 81 78 64 67 73 63 52 62 66 61 70 79 82 72 59 77 62 68 75 65 89 75 75 83 87 72 88 80 79 84 87 78 85 90 65 84 83 101 96 89 101 81 90 81 102 93 101 80 109 99 80 75 82 80 77 58 65 57 78 63 49 53 61 56 51 54 41 41 38 33 31 28 27 21 26 17 19 21 10 28 15 14 10 2 9 2 0 1 0 0 0 0 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 0 3 5 5 9 12 14 19 16 13 22 21 28 26 33 30 31 34 34 40 35 49 43 49 42 62 62 76 74 55 74 70 78 75 78 83 94 79 81 91 81 81 85 83 77 102 92 101 93 108 86 87 95 80 81 74 80 84 94 76 70 76 85 78 93 77 96 81 73 72 67 94 69 77 80 98 76 68 67 84 86 83 63 77 70 86 75 70 65 72 64 66 62 71 62 70 91 75 69 83 72 85 72 85 70 74 62 97 78 84 76 85 68 79 72 89 81 87 77 89 80 64 71 74 75 82 81 83 81 94 72 73 98 92 73 86 70 76 68 53 57 46 52 51 46 50 53 40 41 36 44 46 27 30 26 32 21 30 23 19 21 16 19 18 13 5 5 3 2 2 0 0 0 0 0 0 0 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 4 7 8 6 9 15 19 19 26 20 21 27 27 32 31 35 37 35 32 48 44 56 43 53 59 52 46 86 54 66 70 56 64 84 76 77 64 104 99 84 79 80 73 85 80 90 80 84 82 85 86 94 82 92 76 84 92 72 81 96 78 73 89 70 79 72 71 77 82 83 84 71 73 87 63 93 67 90 90 76 99 73 77 78 66 87 84 85 77 88 68 62 98 89 79 86 87 73 75 92 67 85 87 79 56 82 90 87 86 70 99 89 86 74 79 69 78 87 74 77 91 79 83 93 72 90 82 88 89 74 78 71 90 76 83 70 74 65 75 48 48 53 56 50 43 47 49 43 37 40 34 38 30 25 31 20 25 12 18 26 18 15 10 6 8 3 5 0 2 0 0 0 0 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 0 1 5 5 13 6 9 11 12 22 16 19 18 13 28 42 27 22 32 34 37 39 49 50 49 43 46 69 56 56 74 70 66 66 70 71 69 98 77 77 99 73 85 84 75 75 69 91 81 88 81 81 91 98 91 82 85 75 85 75 82 67 86 82 88 78 84 84 81 89 77 70 72 73 82 99 100 85 84 86 78 100 67 82 87 85 82 75 78 76 80 81 77 83 87 76 90 76 82 79 93 91 93 77 85 81 93 85 89 91 90 88 94 74 95 93 82 80 82 89 91 77 103 80 70 92 83 82 69 74 80 68 72 75 70 70 64 56 64 60 50 45 56 46 52 44 38 37 35 35 28 33 34 28 33 20 27 14 24 27 16 16 15 10 13 6 10 4 0 1 3 0 0 0 0 0 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 0 5 2 2 12 14 15 10 16 23 15 21 26 29 26 18 35 33 35 38 45 47 51 49 47 46 54 66 49 54 65 53 66 61 81 73 63 93 92 53 86 78 67 89 73 77 84 93 89 83 90 85 85 94 94 84 82 73 92 83 77 82 79 94 84 90 110 77 69 87 100 70 84 91 71 87 95 96 100 87 70 103 90 86 84 101 90 91 74 93 95 103 90 93 84 99 92 91 98 84 96 100 71 91 85 85 74 81 93 86 80 71 77 90 79 102 74 81 87 115 75 73 81 103 67 81 79 89 74 75 67 68 48 65 59 57 61 50 50 56 58 49 44 36 45 35 31 34 40 35 26 32 35 17 21 25 17 17 13 17 20 15 15 8 7 7 3 1 2 0 0 0 0 0 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 2 3 7 1 5 8 15 12 9 13 17 16 22 15 23 19 23 21 29 24 28 34 37 43 41 62 52 47 64 54 55 53 67 66 59 59 69 65 61 69 67 48 74 67 62 87 99 76 84 73 85 79 75 90 89 87 76 98 71 104 69 94 92 96 89 84 92 104 87 89 90 83 83 87 99 90 114 100 113 99 82 101 115 89 89 108 80 93 77 89 91 112 80 97 101 96 100 74 101 97 96 92 106 81 88 101 90 107 87 101 72 84 99 83 77 90 86 81 84 88 88 69 78 78 80 74 72 78 68 58 67 72 64 70 66 90 59 62 54 48 59 41 45 35 44 42 41 34 29 37 46 30 24 21 35 15 27 24 24 23 18 13 14 9 10 8 3 5 1 1 0 0 0 0 0 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 1 3 1 6 11 8 8 15 15 17 14 21 19 33 14 19 23 27 31 39 25 34 32 41 40 44 32 54 35 67 40 52 46 54 75 71 61 75 82 58 71 69 71 69 75 90 70 75 77 74 70 76 101 83 95 113 92 78 112 87 83 96 95 82 88 93 84 98 88 89 104 80 99 97 79 95 98 114 103 88 108 105 98 101 106 83 96 104 98 85 98 111 113 82 92 102 89 94 96 104 100 91 84 99 94 81 100 90 97 101 78 104 86 98 89 86 90 81 80 98 83 93 62 71 89 75 84 66 82 65 71 75 65 53 63 52 69 55 63 60 50 57 34 46 48 36 48 39 40 32 23 23 26 29 23 26 19 13 10 14 19 13 8 10 7 7 6 2 2 1 0 0 0 0 0 0 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 0 0 4 8 9 7 14 11 11 18 22 8 15 21 19 16 31 29 29 24 37 37 43 40 42 49 38 46 58 47 61 48 50 64 55 63 57 71 57 65 72 60 67 70 75 72 80 57 71 75 84 78 102 85 86 93 88 88 101 98 98 94 80 103 76 104 92 87 112 84 101 84 104 113 98 83 94 97 95 99 108 103 115 93 89 91 101 86 118 107 89 103 98 104 87 97 89 92 115 85 89 93 95 92 84 95 86 89 91 78 88 101 90 85 74 88 77 78 82 90 76 80 80 67 71 68 66 69 67 62 63 77 67 56 47 62 58 54 57 46 51 50 42 42 42 38 36 29 20 25 36 35 17 24 20 12 14 12 17 17 14 9 9 6 3 3 4 2 2 1 0 0 0 0 0 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 1 2 5 5 7 11 8 17 18 11 23 21 23 19 19 22 27 22 23 29 32 28 34 36 34 39 46 44 52 48 44 45 49 55 59 54 77 53 61 52 57 75 73 75 70 56 68 79 82 71 77 87 99 79 90 96 81 96 88 87 78 105 101 83 77 96 109 87 98 91 96 86 98 99 119 101 95 96 68 122 102 101 77 91 113 100 109 97 99 97 117 112 95 90 100 88 94 101 115 108 108 88 105 84 105 94 94 87 86 95 86 63 95 89 87 64 83 87 81 80 80 74 63 72 74 68 69 67 69 67 67 55 57 50 52 60 67 61 45 42 38 47 33 41 30 40 28 31 29 30 21 27 16 16 16 18 18 13 17 13 12 9 18 9 9 7 4 2 3 1 0 0 0 0 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 1 1 1 2 6 6 18 11 7 9 16 18 7 14 19 20 27 16 26 37 31 30 24 30 34 29 31 38 42 34 46 41 47 52 49 36 44 46 65 65 67 49 64 59 70 57 71 65 62 70 61 75 78 95 78 80 84 79 92 86 82 92 99 114 89 98 95 104 90 85 93 100 97 83 109 101 94 90 104 115 99 89 96 88 91 98 99 96 78 110 97 88 103 97 86 82 106 99 114 96 88 97 98 89 116 93 101 86 83 91 91 84 85 89 91 81 76 74 69 62 67 68 71 71 55 64 73 58 62 57 69 44 67 47 63 59 35 45 44 53 36 42 46 33 36 29 29 34 30 29 29 21 19 29 21 20 15 19 14 15 15 12 11 5 9 5 9 7 0 1 0 0 0 0 0 0 0 0 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 2 5 6 6 12 9 7 11 13 13 20 16 20 17 25 30 18 26 27 30 29 22 27 41 32 38 45 44 39 48 46 46 34 44 45 53 57 42 55 58 63 62 60 70 57 63 71 77 63 78 71 75 77 61 70 81 76 87 92 67 83 91 95 80 85 91 92 110 87 83 88 86 87 95 92 82 90 88 100 86 86 98 89 82 97 90 91 98 99 102 92 110 104 84 84 78 100 86 100 77 78 83 60 87 67 73 75 81 78 78 76 78 79 83 76 69 74 65 62 55 76 53 64 65 59 68 58 50 47 45 45 33 49 35 34 50 44 38 43 35 30 36 27 30 29 32 36 26 21 13 20 19 18 16 12 8 10 10 9 9 9 7 6 4 4 1 0 0 0 0 0 0 0 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 1 1 7 4 4 7 7 10 5 18 15 12 10 15 15 18 20 16 23 21 19 33 31 22 36 33 40 25 49 45 45 40 47 41 49 44 50 58 41 56 45 64 65 55 50 63 69 67 62 67 63 57 64 71 72 69 65 69 69 73 71 82 76 84 83 77 82 68 80 82 95 81 85 97 91 93 84 92 112 88 74 80 97 72 91 90 92 76 88 91 65 88 78 102 74 91 77 92 82 98 84 82 95 87 85 100 66 87 88 83 71 63 65 79 67 56 68 54 56 54 64 64 65 53 71 50 51 48 52 36 51 38 50 34 46 44 47 32 36 47 41 43 33 37 44 38 29 25 20 29 22 20 17 23 18 16 8 13 10 13 9 9 3 7 5 2 2 1 1 1 0 0 0 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 1 0 3 4 1 3 2 7 1 4 7 9 5 13 14 16 11 14 22 20 17 24 23 29 28 34 30 28 36 32 31 43 52 50 40 43 39 44 49 46 50 49 55 45 51 49 51 50 58 58 61 58 62 64 64 55 67 76 69 67 67 66 81 58 72 71 84 72 83 76 77 70 82 80 74 89 74 72 87 92 80 77 79 80 82 85 93 83 70 83 67 78 83 74 76 83 71 83 81 90 72 88 89 74 82 78 72 82 67 74 62 57 61 71 59 62 67 60 67 79 57 46 61 60 54 55 72 45 59 45 45 52 32 63 49 51 47 36 39 45 34 33 30 29 24 21 27 29 28 26 19 19 16 25 17 15 13 15 15 12 9 18 7 11 9 8 7 6 2 0 0 2 0 0 0 0 0 0 0 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 1 5 3 10 10 5 8 9 12 7 8 10 17 19 21 20 19 22 20 26 29 23 24 29 18 30 26 24 26 25 50 31 45 44 32 39 57 38 46 42 42 49 35 51 39 57 65 48 63 66 53 46 57 66 60 55 63 61 64 63 64 51 64 77 69 72 63 75 83 81 68 60 60 67 75 75 64 70 72 73 75 69 65 70 83 63 71 70 63 72 69 70 62 64 74 74 67 87 80 71 62 72 71 60 52 65 62 61 66 68 51 68 56 54 44 67 69 51 45 52 51 42 43 44 44 38 46 38 33 37 44 45 30 36 39 43 39 27 36 29 18 17 23 29 25 21 24 19 21 26 17 19 16 7 7 16 8 6 17 3 7 8 3 4 2 4 2 1 0 0 0 0 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 0 2 1 1 2 3 5 5 11 7 13 11 9 4 10 17 24 17 17 22 23 26 26 26 18 21 21 28 30 32 37 31 35 28 31 39 35 30 27 37 36 27 39 39 55 43 45 36 61 57 60 55 36 45 55 46 58 60 61 50 42 60 51 66 64 65 67 69 64 59 72 70 69 67 64 61 70 72 76 71 78 67 60 66 76 64 72 55 57 61 77 64 65 74 74 73 64 66 61 73 78 58 63 64 66 62 64 68 63 52 53 56 64 55 56 76 49 55 53 44 36 46 45 45 47 40 38 36 42 41 34 41 34 27 41 35 32 31 52 25 37 19 27 21 30 27 22 16 13 20 17 18 18 18 13 19 11 9 13 13 14 10 18 6 6 3 3 2 3 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 2 2 4 6 7 6 11 5 8 10 7 21 5 10 16 22 18 16 14 20 19 20 26 21 19 31 29 26 28 31 35 30 29 34 29 35 42 40 20 27 46 32 51 40 45 37 38 36 46 42 30 59 55 48 53 58 61 51 47 52 51 46 52 56 65 57 52 66 60 73 57 45 57 49 64 57 63 72 55 68 61 69 60 52 44 53 67 56 60 60 61 69 51 52 64 51 61 65 56 66 60 59 59 48 59 47 57 47 54 45 54 69 40 49 52 43 42 52 46 47 41 63 48 36 32 31 47 40 42 36 37 39 26 23 24 27 38 28 24 21 16 22 13 22 11 15 28 18 16 13 18 14 9 13 8 10 13 6 10 6 7 4 8 3 4 1 2 3 0 0 0 0 0 0 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 1 1 0 4 4 11 6 9 7 7 8 5 16 11 10 8 10 16 12 19 17 15 19 16 20 25 24 21 22 22 15 31 22 26 20 36 30 29 36 35 34 29 46 36 32 31 34 45 52 34 41 49 54 54 47 34 49 44 40 45 59 49 47 48 54 49 38 56 50 53 57 48 56 63 59 45 55 61 56 58 50 54 60 66 57 47 57 50 56 59 45 43 56 53 49 59 46 53 50 50 59 47 51 54 35 41 47 61 50 53 29 43 48 48 36 47 50 55 37 44 47 33 40 33 33 48 49 39 33 36 33 32 30 36 19 32 27 25 31 20 21 15 20 22 18 19 19 24 12 13 21 17 8 14 9 10 8 9 10 6 6 6 1 9 3 2 4 1 1 0 0 0 0 0 0 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 0 0 1 1 5 5 7 7 2 7 7 5 11 9 10 13 7 9 7 20 16 18 18 13 25 14 25 23 17 13 29 27 26 26 26 24 22 31 17 34 36 32 47 30 31 41 28 32 25 35 46 40 35 29 35 56 32 51 47 42 39 40 48 53 49 35 48 49 38 42 50 33 58 54 46 39 52 48 41 44 45 56 48 51 41 47 51 54 58 43 48 47 48 56 35 55 48 44 62 58 45 44 52 43 49 39 41 47 32 53 39 38 41 40 30 42 38 43 31 30 34 38 35 40 29 28 16 24 37 20 26 22 20 20 21 19 21 25 38 25 26 19 21 14 19 16 21 14 12 17 7 11 10 6 6 11 6 12 6 4 6 3 9 2 5 0 2 1 1 1 0 0 0 0 0 0 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 1 2 3 4 3 8 1 8 1 6 11 6 11 11 8 9 9 14 8 14 15 15 9 13 19 11 22 16 21 19 17 18 24 25 26 27 14 27 39 26 30 28 36 26 37 21 20 32 22 25 35 32 39 27 40 39 39 46 26 34 42 44 30 36 45 39 30 35 40 36 45 38 36 35 54 43 56 36 41 45 40 40 38 49 43 40 39 35 44 50 52 44 47 46 37 51 45 35 35 34 39 44 46 31 39 33 34 35 25 33 33 27 32 23 37 37 33 20 29 29 32 30 21 15 32 28 35 40 18 14 31 16 16 20 25 18 19 25 17 18 15 13 17 21 13 17 16 18 5 7 8 13 7 9 6 6 3 9 6 5 6 3 6 5 2 1 0 0 0 0 0 0 0 0 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 2 3 1 0 1 7 5 5 3 8 6 5 8 6 8 5 10 9 14 9 10 11 9 6 15 8 11 12 15 15 22 18 21 14 24 15 18 25 18 18 20 27 19 22 23 31 30 34 28 19 22 23 26 32 26 23 33 25 29 31 20 40 38 31 39 22 28 37 34 38 43 31 28 41 38 22 29 37 34 33 29 46 38 32 34 32 38 51 44 34 32 28 30 37 34 28 27 41 31 31 32 28 35 38 28 32 35 31 33 28 21 42 38 29 31 31 35 20 26 24 17 25 19 20 24 23 19 28 13 11 28 20 18 21 16 21 21 15 16 16 15 16 11 18 8 14 8 11 9 7 9 7 8 8 6 8 3 3 3 8 3 2 2 0 1 2 1 0 1 0 0 0 0 0 0 0 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 2 1 4 0 2 2 2 5 8 6 5 9 6 10 8 4 6 13 3 9 6 6 11 16 11 14 17 9 9 12 15 17 18 16 9 16 16 21 17 14 22 20 20 21 17 28 11 17 20 25 23 30 24 20 24 25 26 31 27 27 22 37 30 26 28 38 26 28 31 22 21 26 29 26 23 26 30 22 25 23 25 28 24 27 31 32 27 27 38 25 25 25 32 26 25 26 32 26 23 23 35 27 18 27 29 21 19 21 22 21 25 23 22 23 25 28 20 14 21 19 23 27 16 25 24 9 15 17 21 13 11 16 13 12 14 18 14 11 11 10 8 10 9 14 11 9 8 8 8 5 6 3 9 6 4 6 5 3 4 8 6 1 3 0 1 1 0 0 0 0 0 0 0 0 0 0 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 1 2 1 1 1 4 1 3 3 1 4 6 8 6 7 2 5 7 10 6 6 13 10 6 9 10 10 13 8 6 10 17 11 8 14 11 17 15 16 11 11 19 15 15 23 8 13 16 20 21 14 16 19 23 19 12 26 18 21 19 23 14 13 18 31 26 20 19 16 16 17 18 26 26 20 24 14 24 20 18 22 31 21 28 22 22 26 21 19 28 12 22 21 31 15 18 20 18 21 15 17 23 14 16 19 15 21 16 18 21 23 15 20 10 18 20 19 15 18 14 13 15 13 13 10 16 17 8 8 22 11 17 12 10 10 11 11 7 11 10 11 7 6 8 5 7 6 13 5 7 8 3 3 4 4 7 5 3 1 1 2 3 2 3 1 2 1 0 0 0 0 0 0 0 0 0 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 0 2 0 1 1 2 3 5 4 3 6 3 6 1 4 4 5 9 6 5 9 6 10 8 3 10 10 2 5 9 7 10 9 13 13 7 12 8 5 6 7 9 6 8 20 10 9 10 20 12 15 12 13 18 15 12 12 16 9 16 16 17 16 11 17 15 16 18 21 16 15 15 16 11 26 11 15 18 24 26 16 12 19 13 12 19 21 14 13 20 12 17 13 13 13 13 18 16 13 14 15 13 13 12 18 13 12 11 22 9 7 14 20 10 17 13 16 8 13 10 3 11 11 4 12 8 9 11 6 8 8 7 13 7 10 6 11 9 7 7 3 5 2 4 4 5 2 4 4 2 5 4 4 4 2 4 3 2 4 2 6 2 1 4 0 1 0 0 0 0 0 0 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 0 0 0 1 0 1 0 0 4 0 3 1 7 3 4 3 3 3 5 2 5 4 6 2 9 3 2 6 6 2 7 7 4 1 5 7 7 2 6 9 9 11 2 10 6 9 2 9 7 9 13 5 6 5 5 10 14 7 9 10 6 10 6 14 11 12 10 10 12 5 17 5 15 10 9 6 9 7 12 17 10 9 7 9 9 9 10 13 18 13 11 5 14 10 12 16 9 12 17 7 10 8 5 11 1 10 7 10 3 5 12 14 9 7 6 11 6 9 5 9 4 6 9 6 10 8 6 7 6 12 8 7 8 9 5 9 10 9 2 1 4 2 0 6 1 5 5 6 4 2 4 2 4 3 4 2 1 1 1 0 0 0 0 1 0 3 0 0 1 0 0 0 0 0 0 0 0 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 1 0 0 0 1 0 1 0 0 1 1 1 2 1 1 2 0 4 8 3 2 3 4 2 2 4 1 3 3 1 3 4 4 2 3 3 8 6 3 5 6 2 7 7 6 2 2 5 2 5 4 11 2 7 2 4 4 4 7 3 10 6 7 9 5 6 9 7 3 6 4 8 8 4 9 5 6 2 7 8 5 9 10 6 7 8 9 9 4 5 9 10 8 4 6 7 7 11 5 5 6 6 10 3 5 8 5 6 2 6 10 9 4 7 9 5 8 4 9 4 2 3 6 2 5 4 7 5 2 4 3 4 2 3 5 4 1 4 3 3 1 1 1 1 5 3 0 0 3 1 1 3 2 2 0 1 1 1 1 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 1 0 0 1 1 0 0 0 0 0 1 1 3 2 0 2 1 2 1 4 3 1 4 1 2 1 2 3 1 3 2 5 3 0 2 3 1 1 4 0 4 3 2 3 3 1 2 6 1 4 1 2 3 6 1 1 4 5 9 5 2 6 3 1 2 4 7 2 0 5 6 4 2 2 2 4 3 0 6 5 2 3 9 5 4 1 4 7 1 4 5 7 3 2 4 1 3 4 4 4 5 3 1 3 3 0 2 3 1 6 2 4 2 1 4 1 0 2 1 1 3 2 4 3 0 0 0 1 0 3 3 3 1 3 3 1 3 1 0 2 2 0 2 1 0 1 0 1 0 1 1 1 0 1 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 1 1 1 0 0 0 1 1 0 1 0 1 0 0 0 0 1 0 0 1 1 1 1 4 0 2 2 0 0 2 2 1 1 1 0 3 2 1 3 2 0 1 0 1 1 2 1 0 0 0 0 1 1 2 0 4 2 1 2 2 3 3 1 3 1 2 1 2 3 2 0 4 2 0 3 4 1 2 0 1 0 0 1 0 3 5 0 2 1 0 2 2 3 1 0 1 2 1 1 2 0 3 0 2 4 1 1 1 0 0 0 1 0 0 0 4 1 2 1 1 3 2 1 0 2 1 0 1 0 2 0 0 0 1 1 0 0 1 2 0 0 0 1 1 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 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 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 1 2 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 1 0 0 2 0 0 0 1 0 1 0 0 0 0 0 1 0 0 2 0 0 0 0 0 0 1 1 0 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 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/mcstasscript/tests/test_data_set/PSD_4PI.dat b/mcstasscript/tests/test_data_set/PSD_4PI.dat new file mode 100644 index 00000000..be568542 --- /dev/null +++ b/mcstasscript/tests/test_data_set/PSD_4PI.dat @@ -0,0 +1,933 @@ +# Format: McCode with text headers +# URL: http://www.mccode.org +# Creator: McStas 2.5 - Dec. 12, 2018 +# Instrument: jupyter_demo.instr +# Ncount: 5000000 +# Trace: no +# Gravitation: no +# Seed: 1557975068 +# Directory: jupyter_demo3 +# Nodes: 4 +# Param: wavelength=1 +# Date: Wed May 15 08:19:54 2019 (1557901194) +# type: array_2d(300, 300) +# Source: jupyter_demo (jupyter_demo.instr) +# component: PSD_4PI +# position: 0 0 11 +# title: 4PI PSD monitor +# Ncount: 20000000 +# filename: PSD_4PI.dat +# statistics: X0=-0.142189; dX=140.285; Y0=0.299127; dY=15.4061; +# signal: Min=0; Max=1.99345e-05; Mean=5.17405e-09; +# values: 0.000465664 4.478e-07 4.36906e+06 +# xvar: Lo +# yvar: La +# xlabel: Longitude [deg] +# ylabel: Latitude [deg] +# zvar: I +# zlabel: Signal per bin +# xylimits: -180 180 -90 90 +# variables: I I_err N +# Data [PSD_4PI/PSD_4PI.dat] I: +0 0 0 0 0 0 0 0 0 7.311770765e-13 1.086283723e-16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.04074204e-13 0 0 0 0 4.372287023e-27 0 0 0 0 0 7.338159334e-11 0 0 0 0 0 0 0 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.19836707e-12 0 0 0 0 0 0 1.34440804e-20 1.409925914e-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 1.567822131e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.006369923e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.823578936e-12 0 0 0 1.581600341e-11 0 0 0 0 0 2.52316499e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 2.768962386e-14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.479387877e-17 0 0 0 +0 8.517303687e-11 0 0 0 0 0 3.815294543e-12 0 2.442504202e-16 0 0 0 8.585725385e-12 0 0 0 1.18689567e-11 0 0 0 8.063387771e-12 0 2.083024398e-11 0 0 0 7.451009623e-11 0 0 2.936428675e-11 1.610876254e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.479774634e-11 0 0 0 0 1.818014746e-28 7.999288633e-12 0 1.072510484e-10 0 1.971338827e-29 1.077206918e-10 0 0 0 0 0 0 7.177600902e-12 0 0 0 0 0 0 8.204526367e-11 1.965579281e-11 0 1.265837487e-17 0 0 4.405670268e-11 0 0 0 5.864044209e-15 0 5.055879007e-12 0 4.72280282e-18 0 0 7.710046852e-11 0 6.221063302e-13 3.474742052e-12 0 0 0 0 0 0 0 4.049869765e-11 0 0 0 0 0 1.411892429e-11 1.719163157e-28 0 0 0 6.296212256e-12 0 0 0 1.88694897e-11 2.279290946e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.655680112e-11 0 4.587989947e-11 0 2.558962808e-26 0 0 4.052695203e-12 0 0 0 4.245717898e-12 0 0 0 0 0 0 0 3.956172084e-11 1.190956741e-11 0 0 0 4.788015179e-12 0 0 0 0 0 0 0 0 0 0 0 1.001402989e-16 0 0 0 0 0 0 0 0 0 7.970063061e-11 0 0 0 3.002906945e-18 0 0 0 3.23997849e-16 3.404433578e-11 4.621971532e-11 1.941154762e-23 0 0 0 2.927762415e-11 1.21247893e-17 0 4.820040092e-11 0 1.746126751e-11 0 5.879403455e-11 0 0 2.527075748e-16 1.20880524e-11 0 0 5.074132122e-11 1.836572848e-11 4.010435349e-14 1.992191956e-11 6.148071372e-13 0 1.238416366e-11 0 6.620561004e-11 1.049466699e-10 4.985926437e-14 0 0 0 9.102654831e-12 3.236637614e-11 0 0 0 0 1.182791876e-11 0 0 3.086825549e-11 7.340547264e-11 0 6.177464553e-11 0 0 0 4.170170915e-11 0 0 2.842355119e-11 0 0 0 0 0 0 4.649380996e-14 0 0 0 0 3.225547512e-11 1.705681648e-25 1.370733607e-13 1.682252696e-15 8.082019803e-12 0 2.321736025e-11 3.354467782e-15 0 0 1.847477308e-18 0 6.014249183e-11 0 0 1.904343242e-11 1.25962928e-11 0 1.995118043e-11 9.090684898e-20 1.024149271e-17 0 5.283351724e-15 0 3.249739386e-17 1.115832061e-11 0 8.464503531e-11 0 9.565529174e-18 0 4.014721842e-11 7.824972066e-15 8.951580783e-12 0 0 0 0 5.290844364e-21 0 0 0 0 0 0 +9.005860865e-11 0 0 5.174786953e-20 0 0 6.337912832e-11 0 9.347356602e-15 2.457351334e-11 0 0 9.627031306e-13 2.849397984e-17 0 4.416271937e-12 0 0 2.423284106e-10 0 4.065930118e-11 2.636539054e-11 4.910931437e-12 3.509609691e-11 0 0 0 0 2.992194202e-14 3.683549903e-11 5.023215161e-12 7.08741223e-12 1.426317258e-28 0 0 1.074732238e-14 0 1.892312606e-10 4.795395388e-11 0 1.988703579e-15 1.426377528e-15 9.340781134e-14 2.349442943e-11 0 0 0 1.101807342e-11 0 1.427194823e-18 5.565797145e-11 0 0 2.320321388e-25 4.789117001e-11 4.401394665e-11 0 0 1.115716366e-11 0 0 1.265292414e-11 2.985039142e-11 3.088252604e-11 0 0 4.036993061e-11 0 0 1.110358076e-13 0 0 1.210370463e-25 5.067289121e-15 2.229879146e-10 6.703627714e-17 0 1.090331837e-10 0 0 3.638321077e-11 0 5.147970611e-11 0 0 3.868887215e-23 0 1.022269991e-10 0 7.074383244e-23 0 0 1.327084478e-16 0 3.427876481e-11 0 0 0 1.206686582e-11 2.782339466e-11 6.319870709e-12 0 5.57767408e-11 0 0 0 2.970955253e-11 0 0 0 2.794598943e-11 0 0 0 0 0 0 0 0 0 2.547823968e-15 0 3.318438294e-19 5.239804704e-11 0 0 3.261289317e-16 0 0 0 5.255417388e-13 0 1.630680193e-11 6.27538136e-11 0 3.915102824e-12 1.329519383e-11 2.380907718e-15 0 4.575326364e-11 1.619144684e-11 2.842331526e-11 0 6.327046366e-15 0 0 1.314948798e-11 0 0 5.829998406e-11 3.248144631e-11 3.64654712e-11 0 0 2.668750105e-11 2.897460656e-11 0 0 4.459135773e-11 1.506313375e-11 0 1.530969826e-11 8.508780976e-12 0 0 7.635776161e-12 4.221107982e-11 9.33272812e-11 3.0468383e-12 9.021107021e-12 1.021007011e-25 8.503943188e-12 0 0 0 0 0 0 0 0 7.077762662e-18 9.981368907e-11 0 0 0 6.365375831e-11 1.980893995e-10 2.798378223e-11 0 0 2.383258458e-11 7.862896136e-11 0 1.263634123e-11 3.34885375e-17 5.981314249e-16 0 1.154601802e-11 1.800939379e-12 0 0 0 6.426574648e-11 0 2.042013657e-15 1.265856067e-20 3.592720772e-10 0 1.175275947e-10 0 0 0 1.380412394e-13 1.360289294e-11 0 0 0 0 5.479519804e-11 9.96664885e-11 2.48368137e-11 0 0 7.913255262e-16 2.267924724e-11 0 2.964320671e-11 1.785428406e-16 0 3.163447497e-15 0 1.174133569e-11 0 3.13489229e-12 0 1.157801125e-11 0 0 0 9.291380646e-13 4.339881175e-16 9.424870508e-12 3.113564668e-11 0 8.980124428e-14 7.863657133e-14 1.849520197e-11 0 0 5.656188227e-11 3.653591242e-23 3.550941751e-11 0 1.965445952e-11 0 0 0 1.350011296e-11 0 0 0 3.825770839e-11 2.433493276e-12 1.313475072e-11 3.747620146e-18 2.484725095e-11 0 3.405191922e-11 5.247819004e-11 2.309106144e-12 2.361417304e-11 1.929961488e-11 5.826967472e-24 0 2.085596774e-11 1.01547371e-11 0 1.285156563e-11 4.68858002e-11 3.720490392e-11 0 4.532549275e-12 2.611053083e-11 0 6.708277403e-12 4.594753596e-11 2.898632669e-26 1.194051024e-11 7.24916938e-11 5.128728437e-18 0 1.551314705e-11 0 2.775618522e-10 0 9.953300897e-20 1.334247546e-29 0 7.790535026e-12 1.080051128e-11 +2.140918005e-11 0 0 0 0 0 5.035420566e-11 0 3.174790463e-16 0 9.126307932e-12 2.590174462e-28 1.550623546e-11 3.15398733e-16 2.592046104e-15 3.904306364e-24 0 1.661960361e-12 1.524779577e-13 1.210776281e-15 0 4.213560472e-11 4.623573916e-11 9.171400709e-11 1.937724202e-11 0 7.340831493e-14 1.676390722e-23 0 0 2.7858071e-11 0 5.592763907e-11 6.998076533e-11 1.044148084e-10 0 9.76852302e-12 0 2.21362765e-11 7.299124578e-11 0 4.851055023e-11 0 8.828653092e-16 1.982336692e-12 0 5.615590117e-11 0 7.270964786e-12 1.43009853e-15 1.328363911e-11 2.882206442e-11 4.179303773e-11 0 0 4.079014337e-11 2.689920489e-12 3.214484188e-16 0 4.436527558e-11 0 1.045695617e-10 2.2676016e-11 0 5.374010508e-11 1.432454158e-12 1.042859697e-10 1.862275913e-16 2.824222027e-11 1.2791587e-11 0 1.371985284e-11 0 8.545393476e-12 0 3.316955834e-11 1.350940646e-11 1.876522834e-10 1.255163316e-13 8.884210847e-11 0 2.50856234e-11 0 7.497340339e-12 2.222580974e-21 4.236306034e-11 0 1.062118691e-11 1.804159321e-11 3.400939896e-26 3.835657226e-20 6.147333703e-17 4.557387788e-17 5.796786499e-11 4.17390913e-14 1.868994508e-28 0 0 1.053964157e-11 0 0 0 0 4.073501498e-11 7.272679305e-16 2.436044885e-11 6.670976032e-13 4.772382279e-18 0 1.44532783e-11 1.741337863e-17 0 0 8.563113782e-11 3.629425562e-12 3.440147239e-11 3.113928592e-11 0 1.146040476e-11 1.164638277e-10 2.213999241e-11 1.053759986e-10 3.11156888e-12 0 4.202200755e-11 1.593670677e-16 2.370786008e-11 4.368013854e-13 0 0 1.539930644e-11 3.070135895e-12 5.798415285e-12 0 3.863204204e-12 7.821684307e-11 1.025314139e-11 0 3.061640325e-11 7.327907509e-11 0 2.500736059e-11 5.944331264e-11 9.920321461e-11 1.665503827e-10 2.221693687e-11 0 1.014630187e-10 0 2.34896338e-11 1.111537752e-10 1.914069445e-12 6.863878309e-11 0 1.269982101e-11 6.194565175e-11 0 0 1.190533729e-11 6.43814809e-11 1.062881572e-11 1.051340487e-11 5.815172319e-13 0 0 0 0 9.779113251e-12 2.742418333e-14 0 3.104227677e-12 5.408087257e-11 5.094978673e-11 1.951703591e-11 0 0 1.368109587e-16 1.78459121e-10 2.734223446e-11 2.626619055e-11 1.77132854e-14 0 7.771285707e-11 0 2.934097667e-11 0 0 7.629635731e-12 1.834895612e-14 2.733540697e-11 0 0 0 4.572302242e-16 1.751714616e-11 4.473456524e-11 3.48512633e-11 2.276499662e-11 6.624311208e-17 3.219513155e-11 0 0 4.005802799e-11 1.126206507e-27 0 2.664464582e-11 0 6.30254143e-12 0 1.393067291e-11 0 0 0 3.450374322e-11 0 0 1.678554691e-11 9.781603749e-11 5.875409239e-19 0 1.14130517e-10 7.923973796e-12 0 1.513769415e-18 3.337840356e-17 1.070160093e-15 2.519503599e-11 1.72949397e-11 3.271532226e-14 4.316085313e-12 1.33946275e-11 4.488373179e-12 0 0 0 0 6.986455521e-13 0 0 7.093714579e-12 1.520985103e-11 8.973864696e-11 5.98718303e-14 1.225371244e-12 2.94023983e-13 4.123151324e-11 4.737829477e-11 4.194372846e-28 3.215887852e-11 0 6.971350298e-11 3.804568338e-14 0 2.470685249e-18 6.818024254e-12 0 4.345929799e-11 0 4.187888533e-25 2.906219463e-12 0 0 5.45180877e-11 0 8.883129646e-12 0 0 4.441878092e-11 1.185510862e-11 0 0 1.106072065e-11 4.675705128e-12 3.085179365e-11 0 2.867109637e-11 0 2.7886058e-20 3.203361191e-11 0 0 1.429137914e-10 1.061527815e-11 0 9.435831563e-13 2.307504712e-11 0 5.733649422e-26 9.132786309e-11 3.445771948e-11 4.697744543e-23 2.234388929e-11 2.415503511e-11 6.448752689e-11 0 0 4.22838609e-11 5.070644475e-11 0 2.389085825e-14 +2.527144241e-11 1.537334562e-10 0 7.07957154e-12 4.958196923e-16 2.827551676e-10 3.036369688e-11 1.462794591e-20 0 3.345552749e-12 0 6.76352942e-11 9.558625882e-21 8.009195622e-12 0 0 2.984072978e-11 4.77429829e-12 1.48257141e-10 2.996332898e-11 9.631042416e-17 3.222428847e-12 0 6.524263911e-20 0 1.682061635e-10 1.66188914e-11 9.064882167e-24 2.553648426e-11 1.082073315e-11 0 4.881815193e-12 5.004543753e-11 1.754577609e-11 1.576474921e-11 9.20791207e-12 4.164473644e-11 4.091459654e-12 9.092571531e-14 5.424292282e-11 3.890017157e-11 4.139949722e-11 0 0 5.95958098e-13 0 2.076004216e-11 7.83235608e-14 8.325587707e-12 0 9.523287746e-21 2.948293333e-24 2.506662127e-11 0 3.730619271e-11 3.980193175e-11 0 2.70128343e-11 0 1.987461942e-12 1.50515753e-10 1.385884833e-11 6.744310047e-11 1.043230525e-11 0 5.648645475e-15 4.383503008e-13 0 0 1.724077801e-10 6.097317999e-13 1.019457183e-11 4.628345455e-11 3.143916914e-12 0 6.154992866e-12 1.191213267e-15 0 2.657996639e-11 7.915742442e-17 0 0 3.003352936e-11 3.470220413e-10 1.527081124e-11 1.553823286e-10 3.271687425e-11 1.80614695e-10 3.01225071e-11 0 2.598324623e-11 4.329380717e-11 1.130598975e-13 4.109758926e-14 1.721877983e-10 2.573976161e-11 2.62566687e-11 0 5.404048063e-12 1.971057181e-11 7.630889368e-11 2.095143612e-11 2.065973746e-16 4.413964476e-11 1.432107449e-11 3.163118527e-11 3.574408191e-14 1.611268697e-11 8.694879743e-12 0 3.446398549e-15 0 3.833808746e-11 2.402530411e-11 0 1.582736317e-15 0 1.665821674e-13 0 0 2.609454049e-18 3.84242038e-11 2.172978762e-11 1.760418309e-11 0 2.566501931e-11 4.702794736e-21 3.004823226e-11 2.915372998e-11 0 5.161816581e-11 0 0 0 0 7.351714338e-11 3.829495172e-15 1.439057323e-11 4.559241646e-19 6.612231656e-11 2.616239597e-11 3.235065339e-11 4.616228175e-11 9.093392964e-11 2.28001721e-11 1.179709482e-10 1.713285976e-11 1.347547238e-10 0 1.065699125e-11 0 7.27234652e-11 1.744334025e-19 0 0 0 0 5.230360608e-12 0 3.890186526e-11 0 0 2.199515574e-11 1.631106328e-10 2.203634547e-12 0 3.291726128e-11 1.323832735e-11 0 4.150703179e-13 5.897030589e-11 9.357468127e-11 0 1.273555468e-11 2.631231667e-11 3.080609247e-11 4.453311702e-11 3.042183051e-11 5.478820611e-11 0 0 3.533980543e-11 3.472999841e-12 3.429679898e-11 0 0 0 5.181337534e-11 8.83467687e-11 3.542505652e-11 3.813800311e-11 0 1.184894524e-11 0 7.304380455e-11 3.866214045e-18 1.171906009e-21 3.178503951e-11 1.558967308e-11 0 1.116980781e-11 2.829223595e-11 0 4.896548143e-11 9.47298617e-11 0 1.787071019e-11 1.2972293e-18 8.656760304e-12 0 4.592965758e-21 0 4.063075032e-11 6.454628003e-12 1.170396216e-10 3.627387051e-11 0 0 0 1.914309218e-11 7.454407619e-12 0 2.63857655e-19 1.28444494e-10 3.170483487e-11 4.048692623e-29 1.701430114e-11 3.7670182e-11 6.728558214e-11 1.213564111e-11 1.091601316e-11 9.115128831e-16 3.243569134e-14 1.809108943e-10 0 1.030633103e-10 1.836943404e-11 7.676187072e-13 1.887909297e-11 2.482424321e-11 3.838332303e-20 8.780828267e-11 2.880118843e-15 1.052456192e-16 1.559608879e-10 3.041423603e-11 2.635724339e-13 0 0 4.766632647e-12 4.248567981e-12 0 0 8.314889182e-11 1.314711394e-13 1.225339377e-11 0 1.882761192e-11 9.510609637e-12 1.656295274e-11 2.680275042e-11 0 1.271151124e-14 1.523136944e-10 4.517331166e-11 6.786691447e-11 1.691482389e-11 9.373338316e-12 2.203151009e-11 7.171379468e-11 0 1.790186581e-11 0 0 1.849242023e-11 3.16134004e-11 0 0 6.578395779e-11 5.917928226e-15 1.554318622e-10 1.298937656e-11 4.242735415e-11 1.020418586e-10 4.937921585e-13 2.828058931e-11 2.649205371e-11 1.034942447e-10 0 3.846287907e-17 1.274512732e-10 0 8.483479641e-11 1.71721196e-11 0 7.055661384e-22 0 2.485694779e-12 4.73680869e-14 1.281503514e-10 +1.717264423e-11 1.227464437e-10 5.965107604e-11 6.645673671e-11 0 7.939511721e-11 0 1.318667258e-11 1.211332166e-14 1.002252585e-12 1.188861681e-10 2.151732847e-14 2.149359689e-11 8.869605637e-12 7.625423522e-12 4.885593787e-12 0 0 1.631565892e-11 2.716853429e-15 5.462236886e-11 2.093784664e-10 0 1.12546965e-10 1.998378324e-10 4.947790583e-11 3.5411358e-11 9.347349414e-11 2.139568718e-13 3.265203979e-18 1.281732218e-14 6.506800942e-11 8.912607622e-11 4.478817012e-11 1.198346882e-10 1.469779699e-11 2.102207721e-11 8.064808673e-11 1.562874095e-10 7.673531232e-12 1.473881925e-18 4.564179941e-11 3.434301964e-11 1.838890369e-11 6.777053103e-11 1.42316491e-10 1.274818104e-10 3.347060964e-11 5.665116472e-11 1.473362707e-10 3.271513108e-11 5.060449229e-11 3.818409669e-17 0 6.382533596e-11 5.302882673e-16 6.389714179e-11 1.680467677e-11 3.431021859e-11 1.854412442e-11 8.163401896e-11 2.315191322e-11 2.077999457e-11 7.400479012e-11 2.777793825e-11 8.629015696e-11 2.718342738e-11 2.591469287e-11 0 0 3.607575451e-11 1.69794018e-11 2.166054259e-11 1.133817873e-11 3.298302727e-11 1.045010874e-14 4.463484855e-11 1.071686887e-10 0 6.208148359e-11 1.043697702e-12 2.238595168e-11 4.856918226e-11 7.500531915e-18 1.301910343e-10 4.768876739e-11 1.202212688e-15 2.034972771e-10 1.826728827e-11 1.115026323e-10 0 9.364146967e-14 3.746996805e-11 6.898138296e-19 7.761279788e-12 0 1.306771134e-10 5.200811754e-11 0 1.593359405e-11 2.584679516e-10 1.660733613e-10 2.963739954e-11 0 1.70032612e-10 0 7.215751677e-12 1.515235207e-10 1.246645974e-15 1.004520388e-11 1.23791417e-10 7.3368334e-12 0 6.500089001e-15 0 7.774718899e-11 2.055709066e-32 5.237313741e-11 0 5.485571472e-11 5.634136941e-14 1.999003441e-11 3.724761165e-11 4.031715063e-12 3.82143945e-11 0 0 4.016163758e-11 1.522775896e-10 1.762515266e-10 6.300049575e-11 1.655446302e-25 2.884905907e-12 5.615265195e-11 1.407061283e-11 6.190785231e-11 4.690024179e-11 0 3.905927963e-17 9.789187076e-11 1.408306202e-11 0 0 0 1.204115289e-10 0 1.62939296e-11 5.604703257e-11 6.268186411e-11 2.236290365e-16 1.446487142e-11 2.651149609e-12 3.319737694e-11 7.168456444e-11 1.272870033e-10 3.321709568e-11 4.213705713e-11 1.808959435e-11 0 0 5.180505107e-11 4.77065735e-13 7.808480678e-22 1.15180695e-10 0 2.724645196e-24 1.069157341e-10 1.345851659e-11 8.354303969e-11 2.491918665e-10 5.177212745e-11 1.772764201e-15 3.273019633e-11 0 7.345930835e-11 0 0 1.088525067e-11 0 1.931003357e-11 3.055819587e-11 0 0 5.644780232e-11 4.229793604e-12 0 1.374447349e-28 0 1.064970848e-14 6.398263754e-11 1.580974408e-11 2.764167127e-12 2.154805282e-11 2.48878254e-11 1.368314925e-10 2.862515048e-13 2.986768361e-11 5.854460693e-11 1.423713558e-11 1.343993764e-11 2.728024613e-11 4.117220104e-13 7.265668348e-11 0 1.544069103e-11 1.022940684e-10 1.534250601e-10 0 7.72763191e-13 8.627477316e-25 0 6.240766818e-12 3.01439794e-18 3.718770499e-11 4.795120719e-11 2.485451146e-15 8.964887842e-11 1.093696204e-10 1.106524723e-10 0 0 4.634191985e-11 1.785625674e-10 1.434616919e-11 7.873662789e-11 5.080801413e-12 0 2.476961563e-11 1.527236638e-10 1.820464218e-11 0 5.570687623e-28 1.789072295e-11 1.714287726e-10 5.248297696e-11 2.891581781e-11 2.850145353e-11 1.896215661e-11 1.265764035e-10 2.173881103e-10 2.38114242e-11 0 0 4.687331581e-12 0 3.431033902e-13 1.510941422e-11 2.185047552e-12 8.856210435e-12 0 2.8681481e-11 2.75951857e-11 4.221463111e-14 4.230533316e-11 3.350190072e-21 3.458552121e-11 1.728833614e-14 3.827423358e-18 7.857737817e-11 2.993664199e-12 1.188596502e-12 0 1.139737904e-11 5.344569538e-18 5.614564043e-17 3.584127463e-18 2.144246766e-11 6.030208302e-11 6.359344851e-11 4.576096368e-11 5.010304466e-11 1.986607059e-10 3.785704691e-11 1.172187311e-21 2.676781489e-11 6.875469929e-12 7.240525473e-11 7.757386347e-21 1.171708767e-10 5.694737071e-11 5.312844654e-13 1.844028811e-10 6.264069218e-11 2.421323463e-11 0 0 4.755305081e-11 1.601882909e-11 3.222239444e-11 3.963158758e-11 8.965558444e-19 8.919241221e-13 8.504147961e-11 0 4.806962174e-11 8.938979128e-12 4.252405957e-11 3.632280422e-11 8.589794008e-28 0 +2.271115015e-11 0 0 6.596567938e-11 1.505302208e-11 7.954179756e-12 6.393733851e-11 1.975174312e-10 3.907294799e-10 4.412128916e-12 8.775230731e-11 0 1.054169191e-12 1.158022224e-10 0 8.377150195e-11 3.675793675e-11 1.485962696e-10 2.27366819e-11 2.542300338e-21 3.525994808e-11 3.151989319e-11 0 0 9.106716256e-11 2.01198078e-11 1.449602306e-11 1.003334649e-10 1.563588897e-11 1.333555343e-12 2.551338323e-11 1.023241376e-10 7.143286647e-11 2.44960366e-11 1.77773761e-11 2.434566798e-33 1.780298841e-10 1.68461754e-10 9.561903172e-12 1.126969453e-10 0 5.277857116e-11 7.89980814e-11 2.557914056e-10 1.670951282e-10 3.262900581e-11 7.40557243e-11 7.392821422e-11 7.401381095e-11 6.30532881e-11 8.14777428e-11 5.904772529e-11 4.954679279e-14 7.237249103e-12 8.95170439e-11 8.694486272e-11 0 1.381772868e-10 2.052396003e-13 1.458327964e-11 0 8.883374818e-11 2.560906788e-18 0 1.035894953e-10 1.075155452e-10 3.788542848e-11 8.882698699e-21 4.448433956e-11 1.687166539e-11 1.143446696e-11 8.872577747e-11 7.315224185e-12 1.375876511e-10 1.020986976e-10 1.321073559e-10 1.438208875e-11 1.70504749e-10 0 1.049083124e-19 3.443018097e-11 5.346465752e-11 9.209469338e-11 1.214886378e-11 9.607228276e-12 4.022618102e-16 5.433475653e-11 4.081608121e-12 7.295934963e-12 7.591492928e-12 5.910227389e-12 3.040263837e-12 1.006329613e-11 5.140195936e-11 1.160595569e-11 2.630202073e-17 7.301193572e-11 5.614030719e-11 0 3.76968372e-12 0 0 2.614519649e-11 5.764276166e-11 4.353389922e-11 9.597646352e-20 6.68562583e-17 8.112691321e-11 1.564579106e-11 0 2.859389362e-11 8.780068239e-13 0 5.883749652e-11 2.61591885e-10 0 9.10963906e-11 2.902742346e-12 1.322014274e-10 5.829187226e-11 0 1.540015392e-17 0 1.843816972e-10 1.657783357e-17 7.715288535e-11 0 3.192781671e-11 0 0 0 2.288126446e-13 1.649032122e-11 6.2767206e-11 8.801276964e-12 1.528266525e-11 1.053836422e-10 1.511637822e-11 1.848080941e-18 3.602912642e-11 0 5.201583953e-15 1.228162651e-22 3.190408386e-11 3.988962543e-11 3.761910487e-11 5.583583215e-13 0 4.253299986e-11 5.028336067e-15 2.453964846e-12 3.131066435e-11 9.032873118e-14 0 4.078186347e-12 8.126924658e-11 0 5.69864321e-12 0 6.190248427e-11 0 5.787243634e-11 1.6935813e-10 0 1.165432869e-21 1.036105438e-10 1.373340328e-13 4.718615904e-11 2.026968907e-11 4.849305561e-11 6.59309907e-11 1.203291003e-10 1.783518107e-10 7.870987371e-11 2.017772084e-10 3.308239413e-12 1.232110901e-25 3.602487508e-11 8.96638652e-14 1.892570413e-11 2.009885784e-11 4.974487968e-11 3.291062464e-12 5.046494939e-11 7.387324125e-11 0 4.540551432e-12 6.4573393e-11 9.403030317e-11 3.74476117e-11 5.12523166e-14 1.20645941e-11 6.805495939e-11 1.490787294e-11 5.904052573e-15 8.391216996e-11 2.162332339e-10 7.268340324e-11 1.296037245e-10 3.17864094e-11 2.056379106e-11 1.081082322e-11 3.108186159e-11 4.051511649e-12 3.204763034e-11 6.510401187e-14 5.869458617e-15 0 6.737058865e-11 3.276693291e-11 4.664834438e-11 6.110089782e-11 6.708297025e-14 2.760479777e-18 0 1.882715884e-11 3.073528539e-11 0 6.06575415e-11 1.044267826e-10 4.415428194e-19 6.315163512e-11 0 3.543075336e-17 3.623884142e-11 6.579457693e-11 9.954958199e-15 1.062160851e-10 7.910063415e-11 1.795748026e-11 7.156462719e-11 4.575654629e-11 1.491720917e-10 6.794512286e-15 2.392279457e-23 0 3.139306769e-11 6.117973225e-11 5.44343757e-11 9.220955874e-12 1.084100939e-10 1.826732543e-11 1.246696686e-10 1.281037772e-11 2.04609107e-10 1.232341761e-11 6.456980072e-11 1.420562959e-11 2.476180911e-12 2.104710231e-12 0 0 4.577335597e-11 1.9507133e-28 6.299388633e-11 2.247647341e-10 5.87880267e-11 1.44174509e-11 5.478300569e-11 2.615457284e-10 3.630110854e-11 1.291260978e-10 3.040418964e-11 2.734444008e-20 4.366145588e-11 6.449563973e-11 0 1.683777027e-11 1.926083205e-11 2.741477136e-11 8.863053472e-11 1.067022566e-11 3.62229083e-11 1.696474308e-10 4.442017468e-11 3.464409553e-11 1.359948525e-31 9.424365626e-15 5.001506004e-11 1.182594185e-11 7.820484816e-12 7.336001933e-12 1.922473235e-10 1.058735079e-10 5.605778208e-11 1.335019131e-11 1.189442376e-10 4.040889857e-11 5.682960662e-11 1.345953761e-20 1.102216832e-10 8.078099317e-13 3.04525133e-16 5.102883246e-11 0 1.743966932e-10 0 0 6.300021972e-14 2.39634554e-11 +2.534115152e-11 7.450285334e-11 7.396545341e-11 3.681961093e-11 0 4.896292185e-12 6.508621873e-11 1.695931739e-11 2.439982836e-11 2.300136555e-10 3.006878544e-11 1.171697693e-11 2.525475179e-12 9.525889717e-11 2.833351481e-11 6.62608894e-11 3.165388097e-11 3.618136669e-11 1.1541088e-12 4.809223973e-19 2.821202539e-11 7.547221644e-11 2.232481982e-11 1.269517531e-10 0 0 2.481885124e-26 5.580782769e-11 0 4.97320843e-11 1.78382164e-10 4.06071247e-11 1.070985576e-10 3.455174956e-11 1.182607745e-10 2.665289644e-10 7.598068655e-11 4.923966495e-11 2.305390745e-11 1.26022462e-11 3.279670575e-15 1.519506096e-10 5.941949045e-11 1.118782143e-11 4.082812946e-12 7.682146571e-11 1.894606798e-10 2.578992624e-11 1.779912736e-11 2.011368537e-10 9.130553773e-12 1.962192239e-11 3.549995742e-18 1.593412334e-10 1.169089343e-10 8.573445737e-12 1.299545657e-10 1.585843493e-11 6.725378872e-11 0 3.767874192e-11 1.155075035e-10 2.337007284e-10 1.043533288e-13 6.563597933e-11 3.881423215e-11 2.181140554e-17 4.880108587e-11 5.305764923e-11 9.956815877e-11 2.001099843e-11 2.101809545e-11 2.531803292e-11 1.148521328e-10 7.982661776e-13 1.472769505e-11 2.383368982e-11 2.398668597e-11 1.912061401e-11 9.654397897e-11 3.759426695e-11 3.907067315e-11 3.342849866e-12 6.453434026e-11 5.775336324e-11 1.120702438e-10 9.535057e-18 8.205903416e-11 2.10031543e-11 6.848963239e-11 3.477622523e-11 8.135863547e-11 9.079708723e-11 7.765981109e-12 1.738044125e-10 2.115239036e-10 1.518155745e-10 2.428309748e-12 1.665099681e-11 6.177681206e-11 2.054075345e-13 8.340619464e-11 1.518627227e-10 9.073180061e-11 0 3.915028397e-11 2.655622815e-11 2.005207439e-10 6.99674864e-11 0 4.490491315e-19 1.806731919e-15 1.365820493e-11 4.526814035e-11 1.956707845e-11 0 7.487651092e-27 1.637007963e-11 7.960205123e-12 1.228257322e-11 9.348647543e-11 5.320898227e-11 6.158825582e-11 1.118488358e-10 1.23742875e-10 7.789663425e-11 9.631242367e-11 9.450222983e-11 1.320490987e-11 5.879838524e-11 4.024932962e-11 1.396989696e-11 9.529096073e-19 0 9.245024473e-11 2.30497462e-11 9.07600968e-11 0 1.898628663e-11 2.888818556e-11 1.755082783e-11 1.237577714e-10 1.569595565e-10 0 0 3.782258845e-11 8.462864614e-12 3.690347285e-16 5.939250476e-11 5.629792979e-18 1.003344659e-10 5.607443112e-11 4.455547548e-11 2.903504219e-11 7.703445279e-11 7.817332898e-11 2.034211307e-11 1.69746316e-10 6.078682335e-11 2.178574316e-15 4.250594916e-13 3.875161495e-12 6.561863652e-12 0 2.62064279e-11 1.446990266e-11 2.487598735e-11 5.421034324e-11 8.261546191e-12 1.468031998e-10 2.253103762e-11 0 1.97811566e-11 3.398508082e-11 1.816069209e-11 4.55054532e-11 1.298714493e-10 4.176847683e-11 4.082127433e-11 6.679346045e-12 4.454222657e-11 2.044141538e-11 4.70844108e-11 8.671585391e-15 2.773859033e-11 5.366493726e-11 3.304327283e-11 9.285715035e-13 1.639603459e-11 7.083709351e-11 1.282808833e-10 4.319482529e-11 1.054563609e-10 8.505935041e-11 3.717457278e-11 1.464365783e-11 2.891695834e-11 2.331452666e-10 3.036858972e-10 2.421846662e-11 4.882044314e-11 7.605685436e-11 6.05829108e-11 1.475233609e-16 4.008740501e-11 1.102528301e-10 1.183087759e-11 8.720400965e-11 1.016253772e-10 1.118906259e-10 1.340690007e-10 1.381142371e-10 1.187099212e-10 1.597880775e-11 1.177826908e-10 2.289448873e-11 4.397703854e-11 2.301046401e-14 2.503271775e-12 9.584818213e-12 1.271291934e-13 0 3.832136378e-15 7.554179207e-11 1.268401338e-10 2.336267297e-10 1.633118575e-10 3.879939256e-13 5.209530874e-11 2.376551878e-10 1.730641506e-10 1.744149025e-10 2.024948732e-11 1.111092304e-10 4.249651709e-11 1.637482802e-10 1.739437311e-11 7.632622106e-11 1.742234774e-10 9.664368646e-14 4.857012966e-11 3.360382325e-11 3.841553796e-11 6.652781782e-11 5.2799794e-11 0 1.010444406e-11 3.691469982e-11 5.824655864e-11 4.10714152e-10 1.02573858e-10 9.311257458e-12 1.327053802e-10 7.473041782e-11 7.883352056e-11 9.756059022e-11 1.525673173e-10 2.357438497e-10 5.259229344e-18 2.451764973e-11 8.937182695e-12 2.523156503e-12 2.945188379e-11 4.33924445e-11 1.469752401e-10 3.001771264e-12 1.048095831e-11 4.101892123e-11 7.13672272e-13 2.381570372e-11 3.941714004e-11 1.255702587e-10 3.456402083e-11 1.64558001e-11 5.571355751e-11 4.318092818e-11 2.689364403e-11 4.023590651e-15 1.007271128e-11 1.005541285e-11 1.870783322e-11 2.07206298e-11 5.761976864e-11 4.699865791e-11 1.786182665e-11 4.04106231e-11 6.833964861e-11 2.430848934e-12 2.816401054e-10 8.838733927e-11 3.605899116e-11 3.463248322e-11 1.01733001e-10 1.271540011e-10 4.969741055e-11 6.918819765e-11 2.447965061e-11 5.75284914e-11 6.978678847e-11 5.140677873e-11 +9.32820314e-11 4.382476823e-11 3.133252521e-12 2.559591047e-10 5.421146666e-11 1.170450885e-10 3.425945171e-12 1.339211782e-10 2.115890445e-11 6.915951487e-11 2.834758339e-11 1.067375831e-10 9.041893394e-11 1.641921323e-10 6.110153419e-11 7.062476733e-11 2.228506197e-11 3.368388127e-11 3.804712981e-12 5.233148961e-11 2.16039898e-10 1.421884937e-11 2.172603177e-10 1.356230873e-10 1.199196009e-10 1.227524463e-10 3.972661602e-10 2.456981773e-11 8.880255086e-12 3.153798059e-11 6.382533581e-11 8.044882947e-11 2.207440728e-17 2.254683458e-11 1.246596859e-11 1.044634464e-15 2.653711216e-11 2.531952798e-14 9.756985689e-11 3.668297955e-12 1.677731952e-10 1.343433164e-11 1.835906118e-12 1.354264043e-10 2.024192776e-10 1.106197398e-11 2.687291831e-10 4.632901525e-11 6.746012982e-11 4.331707383e-11 7.781609788e-11 2.43713177e-12 1.041437998e-11 1.196669805e-10 9.216648741e-11 1.853758506e-11 1.417607991e-11 1.447374354e-10 6.239565595e-12 1.746117821e-10 8.041457683e-11 1.554259769e-10 7.278303797e-11 2.597565626e-12 2.792802182e-11 2.578645179e-10 1.028305058e-10 1.31907426e-10 1.875009772e-10 0 6.455751311e-11 0 8.903552408e-12 2.560597258e-11 1.110353342e-10 8.746703082e-11 9.735599718e-11 2.065994361e-14 0 4.529507447e-11 2.464145055e-10 0 1.905528748e-11 4.743439937e-11 1.357882628e-10 4.053855752e-11 4.377698912e-11 2.719928387e-10 1.57867387e-10 3.237845806e-11 8.823976178e-11 4.934509849e-12 8.946387122e-11 6.121361685e-11 2.844944099e-11 1.940743279e-11 2.990711735e-10 1.490385433e-11 1.820574392e-10 3.203626807e-11 1.606332548e-11 4.772829253e-11 9.387000676e-11 1.089576736e-11 2.094730948e-11 3.606907416e-11 8.890316131e-11 1.535717337e-11 2.627245037e-11 6.111711601e-11 9.967723668e-11 2.505396092e-10 4.763817917e-11 4.008774522e-11 1.426743496e-10 1.870453601e-10 0 2.161392828e-10 4.077049229e-11 6.245398126e-11 7.390696106e-11 0 9.107830705e-11 2.122404582e-10 1.415131253e-13 2.203662702e-11 1.240798821e-10 9.836765841e-11 1.264348587e-10 1.254068527e-11 3.775867685e-22 5.00538434e-11 1.463447452e-10 4.348998001e-11 1.012321319e-10 5.583054758e-11 3.915316285e-11 0 5.719894642e-11 7.195559579e-11 3.95945625e-11 3.795238363e-10 2.050001934e-10 1.516762407e-10 3.733319632e-11 3.304147537e-11 2.185565061e-11 9.663299497e-11 4.530837278e-11 2.625926188e-11 1.358113035e-10 5.950231052e-11 8.706117913e-11 7.47518917e-11 1.830329826e-10 3.481433982e-11 4.30512705e-11 4.384450007e-11 2.566814248e-11 7.457853956e-12 3.19941603e-10 1.322660994e-10 7.383558363e-12 4.678766441e-13 3.340078967e-11 1.931153595e-11 1.335694422e-10 9.0833612e-24 6.964575712e-11 2.156277356e-10 1.322103347e-17 8.139713814e-11 0 1.329673992e-10 5.924779185e-11 2.312800626e-11 9.348201648e-11 1.696455918e-10 1.744082757e-10 4.593239332e-12 7.390059227e-11 2.610038996e-10 4.826739041e-11 0 6.059258705e-11 1.069781975e-16 1.720285182e-14 9.265923694e-11 1.35335965e-27 1.039328472e-10 4.168577336e-11 1.181076602e-11 0 3.221200996e-11 0 4.73909222e-11 1.206026869e-10 4.379417505e-12 5.771917333e-11 9.632740801e-16 1.246427505e-17 8.364347083e-12 1.144066014e-10 4.004204562e-11 0 6.790406716e-11 1.463141057e-11 1.944335555e-10 6.222794311e-11 2.830841302e-11 5.951365451e-11 7.078667975e-11 1.060069965e-10 1.662891855e-10 6.604723085e-12 1.328965918e-10 4.06882032e-11 1.310873603e-11 2.910600401e-11 9.638699721e-11 1.176463026e-10 6.058374563e-12 1.349250613e-12 1.185178617e-12 5.41871206e-13 8.591446504e-11 1.523740588e-10 5.474227434e-11 5.249664511e-11 1.802410063e-10 9.436597991e-11 4.918186097e-13 3.438117041e-10 5.840440458e-11 5.220986649e-11 1.081712971e-11 1.066751068e-10 2.019078986e-10 3.250044203e-11 0 3.001300008e-17 7.8958224e-11 5.639787813e-11 2.836735726e-11 1.218366742e-10 1.630943929e-10 1.285141334e-10 0 2.512764212e-11 4.568189441e-11 1.698252419e-11 1.821523611e-11 1.796747732e-18 1.11104992e-16 6.942836477e-11 2.157346443e-10 2.037134579e-10 6.796448527e-11 0 2.294086278e-10 5.718302184e-13 2.548134227e-10 5.171592347e-16 4.96251576e-13 0 4.090914419e-11 0 6.773506684e-11 7.984164688e-12 3.53941359e-11 4.536048422e-11 3.211255278e-16 1.666644856e-11 8.322309154e-11 2.238577658e-10 4.888515568e-11 5.840347661e-11 2.487666847e-11 4.960171398e-11 1.762189579e-10 6.235891489e-11 2.969006431e-11 0 1.412077759e-10 6.194754033e-11 3.101996115e-10 7.968652737e-11 4.912778149e-11 1.649475329e-11 4.083859164e-10 2.384459272e-10 1.242128479e-10 7.076864133e-11 9.974571024e-11 6.432971369e-11 1.650873276e-10 2.855752763e-10 8.063608854e-11 2.138998169e-11 3.204601565e-11 +1.104757264e-10 5.600847361e-11 1.045696091e-10 2.306402657e-10 5.951217014e-11 4.32249949e-11 2.538150911e-11 2.376988735e-11 9.032748384e-11 8.863885457e-11 1.190077709e-10 3.691588506e-11 1.072902512e-10 5.444432841e-14 1.977934511e-11 3.535350236e-11 6.555666869e-11 6.438372105e-11 1.563702676e-11 6.872317721e-11 6.882931744e-11 8.100875507e-11 6.69951947e-17 2.62276995e-11 3.931239199e-11 3.782299726e-11 2.179130054e-11 1.015961898e-10 1.080637913e-10 4.380962349e-11 2.220917206e-10 3.992048375e-11 5.541716773e-11 1.628775735e-11 4.386694154e-19 7.302653205e-11 5.159339617e-11 1.26415031e-10 8.617430505e-12 5.379371499e-11 4.116470471e-11 2.549933784e-18 8.807242509e-11 0 0 1.069686521e-10 1.579899202e-10 7.156612539e-11 1.062488963e-10 1.128156764e-11 4.99141975e-13 1.131815166e-10 9.76770892e-12 2.413766782e-11 1.7197034e-10 1.308515433e-10 1.179043718e-11 5.082098219e-11 3.352830133e-15 1.943794854e-10 1.038670861e-10 5.820880808e-11 5.654640748e-11 2.74236691e-11 1.068170331e-10 1.626993721e-11 6.717681437e-11 4.150607381e-11 1.487286359e-10 3.64841618e-19 2.028282809e-10 4.161575134e-12 1.413911068e-10 4.479767106e-11 1.119188049e-10 4.830510487e-14 7.863481058e-11 2.357927953e-10 1.64583998e-16 1.007359489e-11 1.103112233e-11 5.632453446e-11 7.056537476e-11 3.381820993e-12 3.385878853e-11 1.014154998e-10 3.8817588e-11 7.71530317e-11 1.08503286e-11 7.280975458e-11 2.213191348e-11 1.665697976e-11 4.945753408e-11 3.087405914e-11 1.279588023e-10 2.0382679e-11 5.631838045e-11 1.505249554e-10 7.124121508e-11 2.68933654e-11 1.298425425e-14 1.291844981e-10 1.40603211e-10 2.859961712e-10 0 4.083233213e-11 2.705300293e-11 4.981637951e-14 1.977353865e-10 4.014232952e-12 2.645208562e-20 9.439233552e-16 1.278782725e-10 1.630835454e-10 6.642239101e-11 5.842698845e-11 1.171032156e-10 4.185733689e-11 3.274596607e-10 1.162010332e-10 3.246144247e-11 4.054498998e-11 8.65500566e-11 4.135449618e-11 2.953110739e-11 6.281093651e-11 1.281805717e-10 0 9.999125987e-11 1.468873186e-10 2.035758731e-11 1.55482481e-11 2.236616122e-11 2.221825691e-11 4.911830429e-11 1.007620385e-10 1.075022607e-11 7.810028334e-11 7.56822378e-11 1.738297451e-11 7.194742434e-11 9.165189396e-17 1.565361277e-10 1.094115514e-10 4.678269609e-11 2.37179197e-10 1.788950777e-10 6.027621794e-11 1.706011473e-11 7.157345578e-11 5.983364714e-11 1.334036708e-10 6.451117106e-11 1.319167232e-11 1.975779126e-10 9.279997541e-11 5.914180414e-11 1.918915739e-10 1.73231252e-10 2.578665345e-11 1.899210258e-10 3.728157589e-11 4.164207861e-11 3.143833892e-13 6.196850229e-11 3.088832139e-10 1.037245634e-16 5.623462929e-12 6.31253403e-14 2.039297195e-11 2.869563848e-26 1.488259698e-11 3.891352243e-11 9.241703289e-11 8.53102094e-11 1.577144237e-10 2.993047448e-11 1.37359853e-11 1.259957656e-10 1.33084496e-10 5.628004358e-11 3.135353705e-10 3.111695246e-12 3.099955615e-10 0 1.893463902e-16 2.988696761e-11 3.795011116e-11 0 8.457751847e-11 2.054017803e-14 1.58325387e-10 5.719310216e-11 1.742374596e-10 0 5.412430111e-11 8.082697779e-11 5.341732684e-16 2.827317812e-11 6.242678204e-11 7.439674185e-12 1.688912332e-10 1.266633163e-10 7.024788469e-11 2.220656662e-11 4.64351138e-11 0 7.243554117e-24 0 1.382612044e-10 2.658922377e-13 3.644377324e-11 4.726342198e-11 1.410764604e-10 1.335295781e-10 4.946119829e-11 2.968245982e-19 1.34168349e-10 7.188667164e-11 9.606472883e-12 1.67330043e-10 8.040834248e-11 2.024784701e-11 9.190666341e-11 1.253654574e-10 7.843475034e-11 1.144054339e-10 1.056027192e-10 2.282358632e-12 1.613959247e-10 7.867922151e-11 1.08364291e-11 4.330413971e-11 1.359301708e-10 1.004216382e-10 2.456396047e-10 1.681504004e-12 1.670485788e-11 7.461129401e-11 4.355607292e-12 7.658512869e-33 1.051558979e-13 1.762454317e-11 2.792170927e-10 1.107753521e-21 6.850482634e-12 3.186344701e-11 3.661554425e-11 4.81432106e-11 8.290262826e-11 5.325694211e-11 1.202115047e-10 2.619471003e-11 7.912615199e-12 2.656631964e-11 3.073675409e-11 1.353891622e-11 7.416619515e-11 3.377386107e-11 4.664514478e-11 1.25257156e-10 1.976841886e-10 4.993513664e-11 7.385072625e-11 4.989979317e-11 1.365336575e-10 3.954826152e-11 1.154119798e-10 3.111229336e-10 6.029627407e-18 2.647401178e-10 7.611551456e-11 2.764428332e-12 1.469453661e-10 2.049566219e-10 2.042128489e-10 8.28508543e-11 7.853547952e-11 1.09844391e-10 1.126385482e-10 1.974114463e-10 5.80007445e-11 6.010999381e-11 1.094316037e-11 6.698971394e-11 1.556386495e-10 1.083681609e-10 0 4.063374823e-11 1.5352862e-11 2.166300441e-10 2.260961017e-10 1.541626286e-10 5.560691381e-11 4.657895664e-10 1.700915075e-10 1.831947539e-10 1.721769063e-10 1.062707747e-10 3.764917348e-11 +3.533362757e-11 3.924630929e-11 1.397782639e-10 2.777013439e-10 3.710567423e-11 1.034783027e-23 1.329851879e-10 7.006308293e-11 2.939387383e-10 6.164254668e-11 2.975179879e-10 5.036843362e-11 1.040337971e-10 8.697494842e-11 4.210075443e-11 9.858847506e-11 3.098239411e-11 3.224262107e-11 5.940564245e-11 1.617938688e-10 1.680190625e-10 6.323886906e-11 2.627105029e-11 1.952970334e-19 2.210741848e-10 1.159249505e-10 1.193577703e-10 2.117144967e-10 2.038370939e-11 1.612089769e-10 0 6.841675648e-11 3.54350868e-11 2.035387285e-11 8.738949145e-11 6.521398915e-11 1.14417472e-10 1.792445779e-10 9.06306003e-11 6.016484933e-12 3.893863543e-11 3.252286973e-10 5.52114038e-12 1.505970264e-10 2.037097086e-10 2.227257119e-11 5.024831496e-11 1.21684062e-10 3.489798782e-11 0 8.231448868e-12 3.963116432e-11 1.163957892e-10 3.493634012e-10 1.702923737e-10 6.336761593e-12 4.1729321e-11 1.349413661e-11 1.545895953e-10 9.257163086e-12 2.199960072e-10 2.617821887e-11 2.187685041e-11 5.482395893e-11 4.985432603e-11 3.452872367e-11 6.34992935e-11 2.878110922e-10 1.267087408e-18 1.264857768e-11 5.261438551e-11 9.152315848e-13 1.491072253e-11 2.797710339e-10 2.835012263e-10 2.976354269e-11 2.627830673e-11 8.591094108e-11 1.134050163e-10 5.743013698e-12 6.141517036e-11 2.61949796e-11 9.82099539e-11 8.177048341e-11 3.29752561e-10 2.312592247e-11 4.297539258e-10 4.342787362e-11 1.541078317e-10 3.785353922e-11 1.647935027e-26 7.495437583e-11 1.453865908e-10 2.464958034e-10 2.072696862e-13 0 3.716079181e-11 2.230732615e-11 1.59359969e-11 1.765797121e-10 1.742555154e-11 3.497610512e-10 3.657378486e-11 6.1242417e-18 8.717590985e-11 5.870989003e-11 2.285581917e-11 8.157328801e-11 1.925901362e-12 3.639869949e-13 1.782565421e-10 5.920386854e-11 1.628210711e-10 4.94462747e-11 2.156815384e-11 5.338795831e-15 1.842838174e-10 2.103092602e-10 1.805591426e-11 1.36063559e-10 3.399742805e-10 3.06858758e-11 1.484902065e-11 1.482287896e-10 8.088934237e-11 2.673632429e-10 1.34141254e-10 1.41813925e-10 2.1234125e-10 5.553998821e-10 5.898498387e-11 7.877169797e-28 1.818483321e-10 1.544184357e-10 2.64038029e-10 1.351271927e-10 4.898622947e-11 2.198221992e-10 8.484401926e-11 2.158872879e-10 4.42200385e-10 3.308711715e-10 6.210278793e-12 1.715725466e-10 3.573408683e-11 2.818653546e-11 4.373190078e-11 2.071482702e-10 3.57049262e-10 2.637014161e-10 1.40333003e-10 7.092212436e-11 2.839686835e-10 9.59916591e-11 2.112955792e-10 2.664616864e-10 1.576547119e-11 7.684246334e-11 5.906481328e-12 3.885479125e-10 6.81681925e-11 1.363060232e-10 1.404736204e-10 5.962938964e-11 2.587081756e-11 2.13339752e-10 4.929987699e-11 3.022017266e-11 1.561169465e-10 1.254734155e-11 3.348353002e-11 1.282060583e-10 3.831751867e-10 3.588145311e-10 9.062611827e-12 6.700065805e-11 2.358212819e-11 1.650605317e-11 2.001110957e-10 1.142560294e-10 1.094588309e-12 1.383633495e-10 4.858497893e-11 6.137320822e-11 0 1.03326635e-10 2.367978068e-11 7.139791319e-11 2.480371578e-11 1.861542609e-10 4.601151237e-11 1.637066224e-11 1.598677924e-10 7.354737198e-11 1.505793967e-19 1.04674859e-10 7.177260635e-12 5.956944004e-11 4.789847753e-11 2.816181368e-11 9.828990375e-11 3.945161903e-19 7.845933591e-11 6.054143726e-11 2.609652225e-12 8.471746428e-11 7.284663636e-11 1.354765234e-10 7.01393581e-11 2.647171233e-11 4.786492177e-11 0 3.126017477e-11 4.839359429e-11 5.818554861e-12 4.073024699e-11 2.115472195e-10 1.0244309e-11 2.383010915e-13 4.497682023e-10 6.82885197e-11 5.131927874e-11 7.63176142e-11 1.810605584e-10 2.054611581e-10 1.92947128e-11 1.793161991e-10 1.064328621e-10 1.191403142e-10 1.812626318e-11 1.525673198e-18 8.429196096e-11 1.678646354e-11 7.002155866e-17 6.059814387e-11 0 2.298735128e-10 5.362389639e-12 2.932408787e-11 8.784616379e-11 9.587238972e-11 2.395165688e-13 1.341009797e-10 3.246426159e-11 2.89008888e-12 1.124168356e-11 1.727536371e-31 7.466024992e-11 2.825943467e-15 1.749239369e-10 5.024719905e-11 9.247521858e-11 1.013790438e-14 5.931977241e-11 8.89738532e-11 4.51489402e-11 4.78172085e-11 1.511015443e-16 1.365993148e-10 5.035313853e-11 2.066875483e-10 1.008748878e-10 7.908480547e-11 4.621386291e-11 3.589409506e-10 9.9426929e-11 1.982361935e-10 8.380078849e-11 1.016035502e-10 3.750206793e-10 1.368043458e-10 9.948569251e-11 7.553151428e-11 6.504377169e-11 5.867805547e-11 2.572627224e-11 2.544473061e-10 5.455387632e-11 1.436585668e-10 2.070066795e-10 7.318829961e-11 9.402189499e-11 7.628097483e-11 1.587002101e-11 2.015926908e-10 5.819434123e-11 4.348638004e-11 6.532746864e-13 1.38447533e-10 3.809795987e-11 1.698283409e-10 1.245833462e-10 4.201667871e-10 3.735732638e-10 1.284396061e-10 3.306764309e-11 1.406405347e-10 2.386921861e-25 9.792852321e-12 1.775276197e-10 +5.6222363e-11 1.205141898e-10 2.548419084e-10 1.826671008e-10 2.586179825e-10 1.545635494e-10 9.953360395e-11 5.01932499e-11 1.32404835e-10 5.014729361e-11 9.942215975e-12 1.383374038e-10 8.428488749e-11 4.637914539e-12 5.79034141e-11 4.628439787e-10 1.691246974e-11 7.455045094e-11 5.232567767e-11 2.110889869e-10 7.239292167e-11 1.736302887e-10 1.222568652e-10 8.550791253e-11 1.806720315e-10 2.474955329e-10 2.619619344e-10 1.473957694e-26 1.854298514e-11 4.98554761e-11 1.712230429e-10 1.817420818e-11 1.401815945e-10 1.085552146e-10 8.80241498e-11 1.929801451e-10 2.806759427e-11 1.237514488e-10 9.721054326e-11 8.724606705e-11 1.065808614e-10 2.552327599e-10 6.914967213e-11 1.130750729e-11 1.455296988e-10 5.650872953e-12 1.960505768e-10 8.71881082e-12 2.475855502e-11 2.647025738e-10 8.635669436e-11 7.418977994e-11 1.636965922e-10 2.304629859e-10 6.26400032e-11 6.905901825e-11 8.155068369e-11 3.45491121e-11 3.715198701e-11 3.686209506e-11 4.441619617e-11 4.050031835e-11 4.341869117e-11 3.082023861e-11 2.444925347e-10 1.276670376e-11 7.270817261e-11 6.739245017e-11 1.348472649e-10 1.380032962e-10 4.639087386e-11 5.475070625e-11 1.824110391e-10 8.810024526e-11 4.105549265e-11 9.892963427e-16 1.030619581e-10 9.696834317e-12 4.450054872e-11 5.114504639e-11 2.491415286e-11 0 2.820523923e-10 7.707108649e-12 2.164602545e-10 7.756639253e-13 1.355341792e-10 4.556424626e-11 1.012306829e-10 5.797508288e-11 1.259325468e-10 9.435781487e-11 2.499313608e-11 2.174796903e-10 5.723691644e-10 9.807990669e-11 5.706115165e-21 1.004330452e-10 3.373074483e-11 9.726532593e-11 3.6700998e-11 2.246945447e-10 1.042145068e-10 1.187583879e-10 9.281604612e-11 1.332378175e-16 1.579558659e-12 3.371176453e-11 1.060048365e-10 1.783224228e-10 1.289605312e-10 1.407952264e-10 2.750884414e-10 2.098636087e-10 4.40468051e-10 1.861345005e-10 7.852399019e-11 1.608085202e-10 4.143481976e-10 2.193089023e-10 1.104389836e-11 8.096082644e-16 3.877064224e-10 1.384169127e-10 6.966781102e-11 1.88217251e-11 2.218426003e-10 9.759871324e-11 6.749849222e-11 8.869512758e-11 9.955431698e-11 4.139532976e-10 1.27472923e-10 2.448142881e-10 3.354175226e-10 9.794734749e-11 3.279960126e-11 3.574956419e-10 1.456114585e-10 5.402086085e-11 4.900982177e-11 1.690683249e-10 4.685567185e-11 2.075210606e-10 1.502725974e-10 5.62969141e-11 3.62872971e-11 3.086417548e-10 2.897605537e-13 7.057549546e-11 1.253000188e-10 1.93055893e-10 5.40297416e-10 2.202106597e-10 1.630148926e-10 2.164375565e-10 3.591387529e-17 9.362697181e-11 6.295739383e-11 1.579354163e-10 2.871171059e-10 3.712449446e-10 2.423893144e-10 2.565834969e-10 2.263837659e-10 2.900784351e-11 3.901698714e-11 6.387852456e-11 2.626284688e-24 1.055450136e-10 1.532324726e-10 5.181777494e-11 8.355748818e-11 5.806958862e-11 3.753750802e-10 1.250418336e-10 1.964561755e-10 7.106693783e-11 5.894691265e-11 3.071726771e-17 3.489681917e-11 8.629481968e-11 1.771623497e-11 4.872612896e-10 1.365195182e-10 1.688259686e-11 1.482025129e-10 1.135620073e-10 2.477414694e-10 6.218258608e-12 1.590216419e-10 1.591225312e-10 6.882321825e-11 6.765052712e-11 0 1.822617841e-10 4.394933384e-11 1.409525146e-11 8.606738789e-11 1.719727428e-10 7.526175197e-11 9.659900162e-11 3.899977267e-11 6.419650437e-16 1.84574159e-10 9.269304823e-11 5.034983579e-18 6.445943016e-11 1.714768494e-10 1.184769714e-10 2.16408603e-11 1.976605298e-10 1.156744976e-10 0 2.142925284e-19 5.693669091e-11 1.570163506e-10 1.913851185e-11 1.169617899e-10 2.001188198e-11 1.617093792e-11 3.767634273e-10 1.942471989e-10 0 8.657293626e-11 2.230066653e-10 5.733004213e-11 3.839771553e-11 3.050062539e-10 3.093400577e-11 3.598684221e-11 5.230993319e-11 2.235629165e-10 1.519684606e-17 1.241394868e-10 8.058301785e-11 9.980958396e-11 8.424156968e-11 1.959476123e-10 1.423257482e-10 1.92198294e-12 3.926757142e-11 1.462104325e-10 7.939439721e-11 2.350460519e-10 1.248523905e-10 2.965365916e-10 6.214737973e-11 1.049249392e-10 3.541504345e-11 2.406012486e-16 3.008031919e-11 4.997913647e-17 2.250606539e-11 8.800932454e-11 1.854910305e-10 1.241088419e-16 5.063119154e-10 1.342452871e-10 5.855169671e-11 2.790799728e-11 2.53346145e-10 9.937852178e-12 2.100117517e-10 9.430926792e-11 2.186802188e-10 2.664427214e-11 6.650261231e-11 1.2493137e-10 3.718954391e-11 1.002140012e-10 3.942712472e-10 1.919726803e-11 6.369485151e-11 1.043802191e-10 2.462474483e-10 5.331256631e-11 8.998276799e-11 6.062025849e-11 3.794557904e-11 6.090288478e-11 2.389147881e-11 3.337342869e-11 1.92940369e-10 2.25462026e-10 1.167886692e-10 1.539484854e-10 3.588168605e-10 8.782331921e-11 5.573603518e-11 6.37513588e-14 2.064736439e-10 4.328266595e-11 1.760746454e-10 4.001115011e-11 7.215357203e-11 1.089012753e-10 3.252938851e-10 4.224259751e-12 1.222337504e-11 +4.533007809e-11 2.430820585e-10 3.823539886e-11 5.211767611e-11 3.300013075e-10 1.009112472e-10 2.160742153e-10 1.434053034e-10 8.623970299e-11 8.72841787e-11 1.458202511e-10 8.221246271e-12 1.297760828e-10 3.276504599e-11 1.100640593e-10 2.179521117e-10 1.395736017e-10 9.458578269e-11 2.80966299e-11 1.085396192e-10 2.986639007e-11 1.076374047e-10 7.339537767e-11 2.773548413e-11 9.247175877e-11 1.09267537e-10 4.415148433e-10 1.111972451e-10 3.666886605e-11 2.772762924e-10 1.69666721e-10 4.098801465e-10 7.937154534e-11 1.300049558e-10 6.711160256e-11 2.203129548e-10 9.483358497e-11 4.01665665e-10 1.769047491e-10 7.488076813e-11 3.798240423e-10 3.648698995e-11 2.090160901e-11 3.605518743e-11 1.165533565e-10 4.177949531e-12 2.272587337e-10 4.252918022e-11 8.267603851e-11 4.343768973e-11 1.336938241e-10 8.106915966e-11 8.845353037e-11 1.932737709e-11 1.248728095e-10 1.122767318e-10 3.551692558e-11 1.535809206e-10 1.463806162e-10 1.2919615e-11 4.503642058e-11 1.802776028e-10 6.537108994e-11 1.048356001e-10 3.205027874e-11 2.95313368e-11 6.487987795e-11 1.217817756e-10 1.266153939e-10 6.902149537e-11 1.4136069e-12 2.385199227e-10 1.682036663e-10 2.806134454e-10 1.615155805e-10 1.058797346e-10 7.708517857e-11 3.752041021e-11 1.846582746e-15 2.498299129e-10 8.050555955e-11 6.025984704e-11 3.315373186e-11 3.843460776e-11 4.240292127e-11 2.520923119e-11 1.842411923e-10 4.436626917e-11 3.147629762e-11 5.59384148e-12 5.160476549e-11 7.060636842e-11 9.589871221e-12 1.254767058e-10 6.346839915e-11 4.173838631e-11 5.785247865e-11 1.103850542e-10 1.111082039e-10 8.145040023e-16 1.149879207e-10 3.971138832e-11 2.312601267e-11 2.84494069e-10 1.165694216e-10 3.576021082e-12 1.48293099e-10 4.495551706e-12 1.431130914e-10 8.358825269e-11 8.522100351e-11 9.681199029e-11 6.533793394e-11 2.213737069e-11 8.893035848e-11 1.281715793e-10 4.156696278e-10 1.6616483e-10 1.902903785e-10 1.386626979e-10 1.57292035e-10 4.446250052e-11 5.454093365e-11 7.606399932e-11 4.88447916e-11 1.36308304e-10 1.111674104e-11 7.705765475e-11 2.69274976e-10 3.050803438e-10 1.725251767e-10 1.199781652e-10 1.580456809e-10 1.234698135e-10 1.777513414e-10 1.422077678e-10 1.25433027e-10 1.447988433e-10 4.095893209e-10 1.541717638e-10 3.160416389e-10 5.65710694e-11 4.312266583e-11 1.787853046e-10 1.497044266e-10 2.005900901e-10 5.58808641e-10 1.973852946e-10 4.978853702e-11 9.363041405e-11 2.029860105e-10 1.855893012e-10 1.320808685e-10 2.642555625e-10 1.026281764e-14 4.50540576e-11 1.369677629e-10 8.895714556e-11 2.522019422e-10 3.570619402e-10 1.850404576e-10 3.291080094e-10 2.427146838e-10 5.292222653e-10 3.747916767e-10 3.141649492e-10 1.13310095e-10 1.675532547e-10 2.107489796e-10 4.277907632e-10 6.645655378e-11 4.592065468e-10 1.833924605e-10 1.395735634e-10 1.006772616e-11 1.325577664e-10 6.273502066e-11 1.443724982e-10 1.721625037e-10 1.337639871e-10 2.889339827e-10 2.456269411e-10 1.441677328e-10 1.74595638e-10 3.744225376e-11 3.17659567e-10 7.286927007e-11 4.086494397e-11 2.244867101e-10 1.487878425e-10 0 1.619373678e-10 1.754307758e-10 4.056114141e-12 1.547032978e-13 1.458457206e-10 1.623422742e-10 1.555088638e-10 3.325061634e-11 1.762630497e-10 1.821023764e-10 3.670463409e-22 1.226487796e-10 4.172280059e-11 6.466788134e-11 1.773969558e-11 1.618647226e-10 6.045053505e-11 1.774058146e-10 1.42101346e-10 1.43432523e-10 5.931220082e-11 1.911863519e-11 2.46478948e-10 1.655212507e-11 5.029499956e-11 1.573641926e-11 5.546869644e-11 2.899314246e-11 4.380592843e-11 1.760509223e-10 5.333994612e-11 2.154745449e-11 9.945437243e-12 2.598512317e-10 2.630909559e-10 2.611363344e-10 2.625825605e-11 1.009024554e-11 1.902605442e-10 1.290408071e-10 5.789595844e-11 6.693235433e-11 7.414193886e-11 1.730947942e-10 4.870629455e-11 4.901794726e-11 3.509503048e-11 1.848147787e-10 2.033648318e-10 5.164500623e-11 2.559012886e-28 6.379152606e-12 6.261614412e-11 1.54580799e-11 4.057847012e-11 8.612364603e-11 8.796109022e-11 1.150611829e-10 2.050167355e-10 2.715053769e-10 2.77542456e-11 2.651409149e-10 9.521234671e-11 1.16165369e-11 1.116754691e-10 3.924480614e-10 7.971860879e-11 1.029008175e-10 1.40741538e-11 9.124413552e-11 1.704108218e-10 1.427113747e-10 1.290847981e-11 6.974165177e-11 6.169037916e-12 1.920561618e-10 3.049298545e-10 2.564747031e-10 1.097513222e-10 5.255781623e-11 4.664915197e-11 3.577525622e-11 3.430407519e-11 9.918060358e-11 7.203773421e-12 6.889157895e-11 3.05859196e-10 8.098450717e-11 3.897067988e-11 1.668567831e-11 3.72595251e-10 8.953709988e-11 7.271674724e-11 2.401850381e-10 1.349142749e-11 9.475025048e-12 1.606639221e-10 6.728774225e-11 5.348314426e-10 6.882505649e-11 1.460905028e-10 2.931719404e-10 4.102676602e-11 7.203872839e-11 1.235656912e-10 2.797054528e-10 3.255028312e-10 4.993961363e-13 8.355048196e-11 +7.833855688e-11 7.265455284e-11 4.319581554e-11 1.447958269e-10 5.956485868e-11 4.120423986e-11 4.40072632e-11 2.199612188e-10 1.435841437e-10 6.273942477e-11 6.416176306e-11 4.554476293e-17 1.508037234e-10 3.748686718e-11 4.998437336e-11 4.861879066e-10 2.007424954e-11 8.146531153e-11 3.146208758e-10 8.304054795e-11 2.053257679e-10 2.01477134e-10 9.550905206e-12 5.330449326e-11 9.363216724e-11 2.425171039e-10 1.473977247e-11 1.255366437e-10 1.384712934e-10 3.388577189e-11 1.576568222e-10 1.2705051e-10 1.731128831e-10 9.143291849e-11 2.887582337e-11 1.015397269e-10 2.300196984e-10 1.185426188e-10 1.230189775e-10 9.543120981e-11 6.281220888e-11 9.094213597e-12 6.948773128e-13 1.789473605e-10 2.279358454e-10 1.19000409e-10 2.405850718e-11 2.574906924e-11 1.515870003e-10 2.356930447e-10 6.102421779e-11 5.079691697e-11 7.890788912e-11 1.698282478e-10 6.731914299e-11 2.988649959e-10 5.125089166e-11 2.857978026e-10 2.25113214e-11 6.8237591e-18 3.227123549e-10 6.435770663e-11 1.301995641e-10 1.95487669e-11 7.971616493e-11 5.048591428e-11 1.0326774e-10 1.085580756e-14 8.909955372e-11 1.410593382e-10 1.147169032e-10 3.387342263e-13 1.05328989e-11 1.14152948e-10 1.754275549e-11 1.024592171e-10 3.757095644e-15 2.685275604e-10 7.068971882e-11 2.130057825e-10 1.002561324e-11 0 1.582103529e-10 6.912560903e-11 2.695800835e-10 9.490326664e-11 1.040212768e-10 1.229411453e-22 1.601959058e-12 2.484178611e-11 7.704460237e-11 3.096990032e-11 3.107578445e-10 2.630180141e-10 1.441684478e-10 1.024398809e-10 8.472490645e-11 8.044491254e-12 2.308104124e-10 1.212161657e-10 5.437213879e-11 2.864131085e-11 1.023480985e-10 2.61604841e-11 1.971641505e-10 2.041830744e-11 2.241890033e-11 2.292393808e-10 5.809548878e-11 3.361065659e-11 1.734710842e-10 5.461454927e-11 2.317190968e-10 1.445607256e-10 2.654490234e-10 2.034872671e-10 1.915364118e-11 2.89348372e-10 7.556719812e-11 1.635615638e-10 1.364438931e-10 1.672289138e-10 1.347182267e-10 5.662081834e-11 3.934656462e-10 4.231078822e-10 1.412109809e-10 3.166632475e-10 1.970781593e-10 1.534373159e-10 1.79968349e-10 1.601391321e-10 2.3515599e-10 2.05271726e-10 2.402472099e-10 5.321483401e-10 3.489524544e-10 5.480256994e-10 2.298317119e-11 4.118153173e-11 2.603831082e-10 2.078787918e-10 1.200056617e-10 1.931979312e-10 1.631973804e-11 2.711144699e-10 5.595919729e-11 3.871185679e-10 2.84185864e-10 2.002817864e-10 3.161834733e-10 4.569366686e-10 2.235888379e-10 1.606350364e-10 6.317691292e-11 1.941780531e-10 4.901497805e-10 2.265347548e-10 2.218582529e-10 1.082711982e-10 1.479917104e-10 3.773753966e-11 1.415187245e-10 9.815659109e-11 4.64914883e-10 3.823628599e-10 1.508466291e-10 7.546999406e-11 1.035730987e-10 5.38838679e-11 2.214407454e-10 2.296680836e-10 1.51900228e-10 5.0231278e-10 2.074014327e-10 3.751096823e-10 2.147350729e-10 3.42597541e-11 2.374945077e-10 9.993825196e-11 1.650579636e-10 5.298819494e-10 2.293670095e-11 1.271033867e-10 3.991887135e-11 8.461252013e-11 1.550721661e-10 7.101897197e-11 8.855867195e-12 9.921758149e-15 2.310838944e-10 3.466039569e-11 2.35394816e-10 7.991309271e-11 4.372342975e-11 2.480526198e-10 2.050912227e-10 2.54194534e-11 6.220331114e-11 6.313895369e-11 3.403340343e-11 6.218491686e-11 4.092320017e-11 6.516689533e-11 2.722956553e-10 4.163704527e-16 3.519927125e-11 4.824017657e-14 4.502431657e-11 1.787591192e-10 1.034088916e-11 9.579787489e-11 6.473118771e-11 2.502091345e-10 5.165439259e-14 2.356019475e-10 4.391749782e-11 2.093459033e-10 9.11376842e-11 4.005276178e-11 2.96608889e-11 2.73570495e-10 5.184004115e-11 4.146063563e-11 1.927689575e-10 4.46066919e-11 1.481727166e-10 1.379768852e-10 2.926367804e-11 6.522267918e-12 1.531564014e-11 7.068611492e-11 1.192182546e-10 1.659767749e-10 6.225323512e-11 3.575269691e-15 1.406728363e-10 1.768438016e-10 1.005700013e-10 2.806834716e-11 7.908616463e-11 9.133461612e-12 1.793030441e-10 2.327144058e-10 2.673868467e-10 1.405597426e-10 7.08846607e-11 5.057657054e-11 6.731618834e-12 4.475460385e-11 7.266059217e-12 1.696792514e-11 2.427398722e-11 1.039386729e-10 1.782451563e-10 6.410440549e-11 1.675416852e-10 9.152501212e-11 1.971086428e-11 5.954693282e-10 1.168295933e-10 1.155339032e-10 6.215268038e-11 8.824493911e-11 1.084427655e-10 1.235430208e-10 3.499026688e-10 3.631411284e-11 6.097095777e-11 1.953391736e-10 8.04616518e-11 3.197682983e-11 4.230055018e-10 1.673293935e-10 3.514703451e-10 8.593093886e-11 1.596049696e-10 2.641968808e-10 7.103176913e-11 6.348710001e-11 2.37711089e-10 2.978617741e-10 4.801595305e-11 1.933392774e-11 8.996021247e-13 2.363661069e-10 1.73076648e-10 1.172653754e-10 4.711883186e-11 1.128179834e-10 5.60405423e-11 2.953444681e-11 6.153012392e-11 1.508098406e-10 1.363431098e-10 8.099340676e-11 1.56511101e-10 2.654043932e-10 1.641982728e-10 1.143016445e-10 +9.233647334e-11 2.449811995e-11 7.656185664e-11 1.081488513e-10 2.362657967e-10 5.20598865e-12 1.439996714e-10 1.200603031e-10 2.507949467e-10 1.816684993e-10 1.342621975e-10 6.468551972e-11 1.091316503e-10 1.071496688e-10 1.731385648e-10 1.853610307e-10 4.394726125e-11 1.731209965e-10 3.040461992e-11 2.771463929e-11 4.847282423e-11 1.667852297e-11 1.263788354e-10 2.976035533e-10 2.09755234e-10 6.997565789e-11 1.403000874e-10 4.130554539e-11 7.424977427e-11 2.021783004e-11 1.075033608e-10 1.775411466e-10 6.84782352e-11 2.007880608e-10 1.632804851e-10 2.297640122e-10 1.15629181e-10 5.099762202e-11 4.248166319e-11 3.03318797e-10 2.250090297e-11 2.436956563e-10 8.987057917e-11 1.661292745e-10 2.589357362e-10 5.680805202e-11 1.279702531e-10 2.37585663e-10 1.562286225e-10 5.830099011e-17 1.641742682e-10 1.432548859e-10 7.217273542e-11 6.664783731e-12 3.525812848e-11 9.099501854e-11 2.063931049e-10 2.240839431e-28 6.800602471e-11 1.207027754e-10 1.802703652e-11 4.701003872e-10 1.175967315e-10 4.946895479e-11 1.167130744e-10 1.743080887e-11 5.016570614e-11 6.313861983e-11 6.759893986e-13 6.111140362e-11 1.624157678e-10 6.906042809e-11 4.687844009e-11 2.148047137e-11 3.137729843e-10 7.773791944e-11 1.817587621e-10 1.175640747e-10 8.327297024e-16 4.642108881e-11 5.911588667e-11 1.065516961e-10 2.297475014e-10 7.624413137e-11 6.000319993e-11 4.455198008e-11 3.538837462e-11 1.978857796e-10 4.784469302e-11 1.10823709e-10 3.298895494e-11 3.116390582e-10 8.596975376e-11 1.831436402e-11 4.069646904e-11 1.580658234e-10 1.243123679e-10 1.56503898e-10 1.285588196e-10 8.236858993e-11 4.805310887e-11 1.180806432e-10 2.400299433e-10 6.372480665e-11 5.502701169e-11 2.9451126e-10 2.836152487e-10 9.856220404e-11 6.115221444e-11 0 1.917305181e-11 1.937249247e-10 3.823122632e-11 1.114365467e-10 4.508055353e-11 5.284588325e-11 1.597188187e-10 2.800633482e-10 2.076717876e-10 6.265201298e-12 2.372324374e-10 7.181598988e-10 2.384152178e-10 5.476515834e-10 3.829579764e-10 2.185742539e-10 1.076202446e-10 1.125511453e-10 2.425523046e-10 1.412872094e-10 5.588363881e-11 2.0656055e-10 1.604998664e-10 1.33879955e-10 6.794841438e-10 4.353128738e-10 2.368483637e-10 2.265564707e-10 3.177773063e-10 3.444666306e-10 3.017030155e-10 2.686152843e-10 4.36914098e-10 5.690342579e-10 2.375921105e-10 3.230867662e-10 1.19229727e-10 3.295561964e-10 9.851769152e-11 2.459417726e-10 1.271792385e-10 3.186101725e-10 9.503979946e-11 4.748220314e-10 2.440483151e-10 9.497602633e-11 4.580930156e-11 5.949589544e-11 7.519320098e-11 1.615863247e-10 1.487321491e-10 2.926948272e-10 4.447033384e-10 9.082897766e-11 9.275362606e-11 2.880915359e-10 1.23727787e-10 3.146146654e-10 1.769153778e-10 1.004006931e-10 3.213820992e-10 8.163776449e-11 3.035256726e-10 6.254716859e-11 1.727988258e-10 4.037804685e-10 6.319635014e-11 2.579570364e-10 1.32061911e-10 1.101238312e-10 3.352493797e-10 2.606364368e-10 1.736980089e-10 2.69509877e-10 1.23632652e-10 1.539836724e-10 1.603509871e-10 8.79920778e-11 8.351736126e-11 2.280073974e-10 5.75057018e-11 1.9848527e-10 1.362861358e-10 5.929264074e-11 3.055918489e-10 2.434515689e-10 1.90048534e-11 6.759118015e-11 2.183637118e-10 1.788826807e-10 2.000704299e-10 2.002854523e-10 5.085317137e-11 1.855867413e-10 8.917766898e-12 7.692950043e-11 7.102284673e-11 9.344475279e-11 1.480513918e-10 7.947679576e-11 1.107575306e-10 1.72752488e-10 2.965840852e-10 1.416554736e-10 2.912469125e-11 1.60737375e-10 6.262799403e-11 1.104490455e-10 7.423458186e-11 1.502845792e-11 5.409237178e-11 6.91028046e-11 1.427342543e-10 6.099005466e-11 1.130000783e-11 1.763746746e-10 2.164251901e-10 6.864261165e-12 2.335737733e-10 6.002709338e-11 7.630987508e-11 1.060977101e-10 2.759616104e-10 9.241308997e-11 1.680277694e-11 2.319378973e-10 2.446591032e-10 6.534049147e-12 2.745237562e-10 1.534972657e-14 1.140317673e-10 1.16779247e-10 2.047242557e-10 5.513903479e-11 1.705755121e-10 4.031155514e-11 1.494903619e-10 9.092964105e-11 3.731494802e-11 7.941668249e-11 1.024277788e-10 1.032765131e-10 3.62465635e-11 1.894087917e-10 3.211563414e-12 6.048350509e-11 8.383182031e-11 2.26541736e-10 5.775810038e-11 6.219994288e-11 9.762534208e-11 1.283048622e-10 1.636719925e-10 3.406049409e-10 1.970648921e-10 2.098318103e-10 7.643941687e-11 3.05208302e-11 2.331694186e-10 3.141175642e-10 3.422123459e-11 1.589589396e-10 1.147623724e-13 7.883354299e-11 1.374776762e-11 1.412035608e-10 1.642888267e-10 3.22829902e-11 8.026670116e-11 2.939500823e-10 1.739474602e-10 1.560182727e-10 2.295947911e-11 3.104456228e-10 6.375218686e-11 7.082987722e-11 1.194395768e-10 9.479856799e-11 2.380502397e-10 1.069937094e-10 1.733086731e-10 1.129420054e-10 8.591224391e-11 1.01432588e-10 6.537271352e-11 1.706828606e-10 1.998965524e-10 1.255751145e-10 8.424199009e-11 1.646564747e-10 +1.41628105e-10 7.217994386e-11 1.749469914e-10 5.364787541e-11 3.672609505e-10 3.286555376e-10 9.791276556e-12 9.635947974e-12 1.872878856e-10 3.672807352e-11 3.892746517e-10 8.731866332e-11 3.5922651e-10 1.899644636e-10 1.18470531e-10 7.101800788e-11 3.608403231e-11 1.485913262e-10 8.4218893e-11 9.85329099e-11 2.132215303e-11 3.2621413e-10 1.780741958e-10 1.895708751e-10 7.701197612e-11 2.784877102e-10 2.599508539e-10 9.736845201e-11 1.95197323e-10 5.0737005e-11 4.057379877e-10 2.309452643e-10 2.601444341e-10 4.228499751e-15 9.498422356e-11 2.307981071e-10 1.333754897e-10 4.266389656e-10 1.565703336e-10 2.949614731e-10 4.84482743e-12 7.675500141e-11 2.645282776e-10 3.709789774e-10 3.369379519e-11 2.930729021e-10 2.583638892e-10 1.873075436e-11 1.184460884e-11 3.897757795e-10 7.220854706e-11 3.262447104e-10 1.126412952e-10 1.830121177e-10 1.113169781e-10 1.309151608e-10 6.685468413e-11 4.976905001e-11 1.243889137e-10 1.918489579e-11 4.865574391e-11 7.625141308e-11 7.771438507e-11 6.141445375e-11 2.505717594e-10 1.741218588e-10 1.024052771e-11 9.452983755e-12 1.413151338e-10 1.548117296e-10 2.918682156e-10 3.058914453e-10 1.0102483e-10 1.043255466e-11 8.120608277e-11 1.664889784e-10 2.23460051e-11 1.47896267e-10 6.935269758e-11 1.587841391e-10 2.640076867e-10 9.462610784e-11 7.718524837e-11 2.184962033e-10 2.848912576e-10 1.03486037e-10 2.389821731e-10 7.445167823e-11 2.671888376e-21 9.672629552e-11 1.019548405e-10 7.532141039e-11 1.212053296e-10 2.332294892e-10 2.710896522e-11 1.760315986e-10 1.373509388e-10 2.170406987e-10 2.407327721e-10 2.054370224e-11 3.112375869e-10 1.592304365e-10 8.316669816e-11 8.277386191e-12 3.827411402e-11 4.646653053e-11 1.449601649e-10 3.326558976e-10 4.502177912e-11 1.566485217e-10 7.566431721e-11 5.722228777e-10 2.16439448e-10 8.257413239e-11 5.23287052e-11 2.533203095e-10 2.151389087e-10 2.429326085e-11 2.219707326e-10 3.493619673e-10 3.171798949e-10 9.304595317e-11 1.526725719e-10 3.585523993e-10 4.388957e-10 3.384997009e-10 3.850417071e-10 1.814126129e-10 1.290464279e-10 1.512974267e-10 2.879334482e-10 3.347184046e-10 4.862112062e-10 2.934553706e-10 1.134756559e-10 3.678601207e-10 1.691233821e-10 2.711348071e-10 3.319339228e-10 1.160311106e-10 3.330498617e-10 1.419252409e-10 3.461445614e-10 3.935767824e-10 2.754164104e-10 2.123328852e-10 7.358786247e-11 1.507628065e-10 1.871794936e-10 2.035778855e-10 3.335446262e-10 4.091840033e-10 1.04203188e-10 2.370895805e-10 1.006251006e-10 3.139182403e-10 4.231957931e-10 2.681662723e-11 4.841173343e-10 1.624569629e-10 5.951601929e-10 2.287719141e-10 1.27143306e-10 1.091873059e-10 2.086261914e-10 5.685239143e-11 2.396499709e-10 3.850453969e-10 5.890952085e-10 2.212410003e-10 4.950697444e-10 4.579452193e-10 2.848036827e-10 2.561696752e-11 4.652730434e-10 3.748995712e-10 2.908094398e-10 2.70923687e-10 9.961897554e-11 4.023144603e-10 9.96673786e-11 3.322639335e-10 1.353328707e-10 1.127526225e-10 2.257039307e-10 1.590454936e-10 2.03404641e-10 4.813906018e-11 4.221234575e-10 4.970085943e-11 1.130987685e-10 1.223704115e-10 3.526377002e-10 2.442500129e-11 2.039052936e-10 9.444887633e-11 9.98029689e-11 1.324802997e-10 8.399078048e-11 4.04407038e-11 2.038760887e-10 1.61441238e-10 6.205924848e-11 1.878451473e-11 5.335677692e-11 1.066868959e-10 2.26107967e-10 3.480790326e-11 9.044287172e-11 8.297508873e-11 3.138648095e-11 1.055586764e-12 1.252495597e-10 2.749998603e-10 1.199147432e-10 1.806282892e-11 2.657896683e-10 1.164491839e-10 3.62328652e-11 2.360923929e-10 6.886736537e-11 6.502159882e-11 1.776863396e-11 2.031134847e-10 5.516614188e-11 4.176618762e-10 6.496334374e-11 1.34115922e-10 1.084062379e-10 1.683031205e-10 1.435607682e-10 7.2232253e-15 3.549377784e-11 5.988442595e-11 1.575760894e-10 1.62429817e-10 2.28349579e-11 8.79497473e-11 1.277933269e-10 1.27773306e-10 6.017741383e-11 7.52347775e-11 3.951720184e-11 2.58896882e-10 1.75708437e-10 1.366476384e-10 1.420816097e-12 1.130537448e-10 2.872715822e-10 8.35467175e-11 1.034117979e-10 1.607941634e-10 3.171995402e-10 1.45557376e-10 2.65375452e-10 2.822949056e-11 3.973003899e-11 3.824575133e-11 5.449095529e-11 7.82554974e-11 6.795374467e-11 3.289779783e-11 1.336129114e-10 2.59547218e-10 2.730255625e-10 3.964761805e-11 4.870971235e-11 5.361526553e-11 1.432681453e-10 2.909855119e-11 1.313114407e-10 2.536633028e-10 1.483967694e-10 1.331621711e-11 2.509449093e-10 5.803045037e-11 9.842375348e-11 1.018241567e-10 1.50514141e-10 1.120046525e-10 8.49925852e-11 6.271176447e-11 1.594965304e-11 2.680638728e-10 1.292530664e-11 1.847284018e-10 2.56685849e-10 1.733179505e-10 1.871648893e-10 2.486792759e-10 8.960844252e-11 1.40297179e-10 4.21417903e-11 2.396899787e-10 1.441543872e-11 3.25222735e-10 2.176447844e-10 3.297437332e-11 3.053841426e-11 3.39645201e-10 +1.050099659e-10 1.817658253e-10 1.706195814e-10 1.85464053e-10 5.087433815e-11 2.98788246e-10 9.596782572e-11 1.241974467e-10 1.724583406e-10 2.21449672e-10 1.142719385e-10 1.131522579e-10 1.605522842e-10 2.258141692e-10 3.770087537e-11 2.81357443e-10 1.159625365e-10 1.585767584e-10 1.139992806e-10 2.511815094e-10 2.681867093e-10 4.261821438e-11 5.53383528e-11 2.649795361e-10 1.625707255e-10 1.613487848e-10 1.138837298e-10 1.864142621e-10 1.258585948e-10 6.246498326e-11 9.499873058e-11 1.175732916e-10 2.497684797e-10 1.146709687e-10 3.371126369e-10 1.210536927e-10 2.833308988e-10 7.696331861e-11 5.449806115e-11 1.819270635e-10 4.684382811e-11 1.849415661e-10 3.601109849e-10 4.603921949e-10 1.814513002e-11 5.13462378e-10 1.32614574e-10 2.540730061e-10 5.623858776e-11 2.482353642e-10 1.391810795e-10 4.619400107e-11 2.923404427e-10 1.171678256e-10 1.323513017e-10 2.675300731e-10 2.369454775e-10 1.393566008e-10 3.102691692e-10 1.615057201e-10 2.262592965e-10 5.844518679e-11 8.43363275e-11 3.077364093e-11 2.354976784e-11 1.794639567e-10 1.207187833e-10 1.087736612e-15 3.0795577e-11 1.420482996e-10 1.256286646e-10 7.078947421e-11 1.686031557e-10 2.304881476e-10 8.245653317e-11 1.250319854e-10 9.075259467e-11 2.962866323e-11 2.080076273e-10 8.99830701e-12 1.73539152e-10 2.197585528e-10 1.231671958e-10 1.421056187e-10 8.69901358e-12 8.921201893e-11 7.269359207e-12 1.449561023e-10 1.370790404e-10 2.378219207e-10 1.181148196e-10 2.271352675e-11 7.409234342e-11 2.121059781e-10 3.966422773e-10 2.394667603e-10 1.367045185e-10 4.963602547e-11 4.365462272e-10 4.135965945e-10 3.008667359e-10 1.746930645e-10 1.205815722e-10 1.694468282e-10 9.519117989e-11 1.910537073e-10 3.568732581e-10 1.343692568e-10 3.936069709e-10 1.766202813e-10 9.418719328e-11 2.556998763e-10 3.726455774e-10 8.529141938e-11 1.076426958e-10 3.22389696e-10 4.118231527e-10 2.291123855e-10 1.00667235e-10 2.102899813e-10 3.272154527e-10 3.906040465e-10 1.968623701e-10 1.611379706e-10 3.164804763e-10 3.483366737e-10 4.039981067e-10 1.8876136e-10 2.771133194e-10 1.72943772e-10 2.311746896e-10 6.597374985e-11 4.805687057e-10 5.22835721e-10 9.118947212e-11 2.554410999e-10 2.625007419e-10 2.500470205e-10 1.437339351e-10 1.845764388e-10 8.89389037e-11 3.573154455e-10 5.49591053e-10 3.715165324e-11 5.470842792e-10 2.202772578e-10 4.409956761e-11 3.582676587e-10 4.693978928e-10 1.968447587e-10 4.139140475e-10 1.604280148e-10 3.053854963e-10 2.42563922e-10 2.309642791e-10 3.223936134e-10 1.730090657e-10 4.174974412e-10 2.141585215e-10 3.512137791e-10 1.491384243e-10 3.637229008e-10 3.504965155e-10 2.941886099e-10 2.645613818e-10 1.476315954e-10 1.376946449e-10 2.685009818e-10 4.031729872e-10 2.745397419e-10 8.253575435e-11 4.361311328e-10 2.480022623e-10 1.351102573e-10 4.932182942e-11 3.680691678e-10 2.744218538e-10 2.606184137e-10 1.491267999e-10 6.556203549e-10 8.435929295e-11 3.9999014e-10 3.908949586e-10 1.381958916e-13 4.412970998e-10 5.481287566e-10 5.14020792e-11 9.384732169e-11 2.253991277e-10 2.860272457e-10 9.963555855e-13 6.10205522e-11 2.006598687e-10 2.648879436e-10 4.678097948e-11 1.397029004e-10 3.405896207e-10 1.645655761e-10 1.366577635e-10 6.787439174e-19 1.098671848e-10 2.953040575e-10 2.749638465e-10 1.885769912e-10 1.379160662e-11 3.975980142e-12 7.192781169e-12 1.457130608e-10 2.267451662e-10 4.530142691e-11 1.406837729e-10 2.295920724e-11 3.040309479e-10 1.230077685e-10 4.144691949e-11 3.135507899e-11 3.497137945e-11 2.408902757e-11 1.483868662e-10 3.328035415e-10 1.768651852e-10 2.077236085e-10 7.231945193e-11 2.559634919e-11 1.418640587e-10 2.562299016e-11 7.132009374e-11 2.595247783e-10 5.022586234e-11 4.442935527e-11 6.848367415e-11 1.301133294e-10 3.112296403e-10 5.944922762e-11 3.772699893e-11 2.329961799e-11 4.16167258e-11 2.969038592e-10 3.994044908e-11 1.117803699e-10 3.768224546e-11 5.770504451e-11 1.602620961e-10 2.368774598e-10 1.765439664e-10 1.849459003e-10 3.303314004e-11 1.976039912e-11 3.630541959e-11 1.344179336e-10 1.784951209e-10 1.630143276e-10 9.214931987e-11 1.588091371e-10 2.917252133e-12 1.56304426e-10 1.998325088e-11 1.151577726e-10 3.43823135e-10 1.219805999e-10 1.126366127e-10 2.341127508e-10 3.200328377e-10 8.95587979e-11 8.777704218e-11 1.470888044e-10 2.108315824e-10 2.781759426e-10 4.769181979e-11 1.219600228e-10 8.461720169e-11 8.548578126e-11 5.221267408e-11 7.740825956e-11 1.161962908e-10 1.471875697e-10 2.071528098e-10 3.081261136e-10 2.444231205e-10 1.231634527e-11 1.467850881e-10 9.247399265e-11 2.79045372e-10 8.883658778e-11 1.904937377e-10 1.929114728e-10 3.445382094e-11 1.173500447e-10 2.985384414e-10 2.687835628e-11 1.935343621e-10 1.706480186e-10 2.323238234e-10 9.439141837e-11 4.189732012e-11 1.109492798e-10 1.113323371e-10 1.816397e-10 1.046973792e-10 1.40957221e-10 +2.25316931e-10 2.361133566e-10 1.302854829e-10 2.218367446e-10 1.329899962e-10 1.220129186e-11 2.834502888e-10 1.458830689e-10 2.392697498e-11 1.950416267e-10 2.319500864e-10 4.044072253e-10 3.073997187e-11 2.805529422e-10 1.054831512e-10 1.910904771e-10 1.310057392e-10 5.321671174e-11 2.592530279e-11 1.077607765e-12 1.071491791e-10 4.668265943e-10 8.580003155e-11 1.286162474e-10 5.106012723e-11 8.261595894e-11 1.582390873e-10 3.363252139e-10 2.003440435e-10 7.846036136e-11 2.353782919e-11 2.344276874e-10 8.653932298e-11 1.868896813e-10 4.831675983e-11 2.45166605e-10 6.838558997e-11 3.675687447e-10 1.059657411e-11 3.767676003e-10 2.656994658e-10 1.257646487e-10 3.984575257e-28 1.727961306e-10 1.499975762e-10 1.864069682e-10 9.4007938e-11 2.017023263e-10 1.489218e-10 5.737865306e-11 3.37860662e-10 8.542923511e-11 7.704508581e-10 2.817821576e-10 4.429197393e-10 5.033788628e-11 2.084691615e-10 1.70816021e-10 3.187049409e-10 3.303811848e-10 1.265407707e-10 4.709331194e-10 6.821646664e-11 3.925464193e-11 3.130696215e-11 1.91325946e-10 2.194039342e-10 2.9086252e-10 1.046344639e-10 1.493364599e-10 8.96217103e-11 5.17234546e-11 5.372279361e-11 2.896996269e-11 1.734218656e-10 1.048395085e-10 1.594204986e-10 3.201670774e-10 1.433491826e-10 1.980668913e-10 2.208764806e-10 2.749729069e-10 7.579962325e-11 2.976729917e-10 4.455114785e-10 1.92466108e-10 2.581528356e-11 8.09328402e-11 9.850515805e-11 1.564935358e-10 1.290171152e-10 2.402698064e-11 1.940319541e-10 4.044386935e-10 1.390270848e-10 1.580899128e-10 1.52796951e-10 1.322259283e-10 4.044505802e-10 1.982143684e-10 3.527861411e-10 4.259489232e-10 1.648218506e-10 1.618231277e-10 3.317737563e-10 2.906239966e-10 2.52577558e-10 1.624130999e-10 3.462623228e-10 1.716043305e-10 1.930165398e-10 1.707435095e-10 3.027670456e-10 7.564839295e-11 6.131290986e-10 7.815180227e-11 2.732155482e-10 2.615931495e-10 1.121261235e-10 3.320457562e-10 2.50595446e-10 2.373363641e-10 2.983524905e-10 6.237337089e-11 1.363433639e-10 3.695969698e-10 1.813674425e-10 3.919084072e-10 3.162409744e-10 7.108662652e-11 3.004396927e-10 5.054700295e-10 2.711117811e-10 2.551872794e-10 1.342198871e-10 4.088492865e-10 4.204009776e-10 3.654570665e-10 2.048574864e-10 7.758201252e-11 7.817011265e-11 3.033987597e-10 1.96673659e-10 1.78757499e-10 2.731443265e-10 2.68405279e-10 4.549896219e-11 3.308758239e-10 1.183635173e-10 1.90680382e-10 1.711393925e-10 3.073911079e-10 1.680270337e-26 3.267032819e-10 2.678135421e-10 2.155354399e-10 1.597244217e-10 2.561538865e-10 2.217367853e-10 2.603805057e-10 4.156685946e-10 3.281695154e-10 2.463529141e-10 7.445647267e-12 2.538838861e-10 1.316931701e-10 5.72408651e-10 1.30370401e-10 2.14139214e-10 7.278175864e-11 2.606074163e-10 2.694723937e-10 4.099838915e-10 3.373611143e-10 1.612355074e-10 2.222376718e-10 1.807137069e-10 6.600836235e-11 3.436841954e-10 1.219789089e-10 5.61215264e-10 2.771753505e-10 1.567739503e-10 4.889219147e-10 3.384766955e-10 3.719837232e-10 3.506506335e-10 4.174359409e-10 2.31729003e-10 4.411736001e-10 2.664925673e-10 2.024347084e-10 1.522015119e-10 2.113807171e-10 1.506965046e-10 6.844217709e-11 2.812177856e-10 2.569927693e-10 1.502910574e-10 2.913906496e-10 2.809372482e-10 7.673615309e-11 3.784361815e-10 2.42391883e-10 1.775503731e-10 2.553274589e-10 5.423657704e-11 1.290765326e-10 1.355658676e-10 2.459555167e-10 8.219769962e-11 1.414588961e-10 3.129055024e-11 1.454803786e-10 1.759746113e-10 4.897458968e-11 8.92602086e-11 8.093420194e-11 6.543139751e-11 1.745221014e-11 1.854695716e-10 1.130020597e-10 1.811606177e-10 4.548491862e-10 2.409273069e-10 2.139656998e-10 1.463426797e-10 1.176199682e-10 7.867095607e-11 1.48077818e-10 1.790231057e-10 9.357037518e-11 1.797101996e-12 2.333115816e-11 9.35700183e-11 2.631323051e-10 3.149770488e-10 2.119256675e-10 2.126330803e-10 1.863871337e-10 1.297886294e-10 9.021753752e-11 1.979612298e-10 5.411294912e-10 5.256465429e-11 2.380827789e-10 3.104131374e-11 2.738690947e-10 2.39567613e-10 1.26852217e-10 8.522445394e-11 3.09625293e-10 1.267116132e-11 2.574861849e-10 1.429471781e-10 1.593975949e-10 1.455613351e-10 4.636961592e-10 1.041064e-10 1.894162672e-10 6.569949633e-11 5.961728464e-11 4.249624555e-12 1.548817249e-10 2.451659732e-10 1.854387662e-10 1.503939757e-10 4.882286637e-11 1.229202512e-10 9.190823419e-11 3.142217213e-11 3.955876394e-11 1.716504883e-10 1.322746265e-10 1.341364962e-10 1.987686412e-10 7.355873186e-11 2.097621923e-10 3.686868814e-11 2.421630802e-10 2.141489862e-10 1.047151495e-10 1.013105947e-10 2.049792318e-10 6.128083489e-11 3.133537674e-10 2.895245092e-10 2.389678973e-10 2.642077921e-10 1.227098888e-10 4.457896576e-11 3.28924301e-10 4.085134425e-10 7.907437936e-11 3.6820067e-10 9.50127143e-11 5.563486522e-11 2.622825254e-10 1.010700148e-10 1.034132444e-10 +9.897974209e-11 6.89038755e-11 1.09286928e-10 1.94359869e-10 5.849008013e-11 1.622485496e-11 4.026329874e-10 9.855027768e-11 5.27277033e-11 9.784704118e-12 1.319429511e-10 2.384101852e-11 2.355234575e-10 8.134582001e-11 3.229934916e-10 2.188806128e-10 3.164796309e-10 4.177597408e-10 1.039669167e-10 1.369587127e-10 1.144568868e-10 9.943995371e-11 2.558637333e-10 1.052854257e-11 9.17392934e-11 1.025710181e-10 5.721187104e-11 2.969862729e-10 9.458544569e-11 1.143927004e-10 5.557529384e-11 1.777416765e-10 6.182712759e-11 1.040366891e-10 1.745941165e-10 8.83997067e-11 3.89553079e-11 3.419510894e-10 6.156581821e-11 2.759240652e-10 5.64973251e-10 3.290817275e-10 4.964425696e-10 8.717510828e-11 3.677241076e-10 8.117740351e-11 1.232538481e-10 6.311888621e-11 1.073442038e-10 5.713426482e-11 1.800427391e-10 1.876058699e-10 1.289335093e-10 1.614099651e-10 3.238771417e-10 1.685964521e-10 3.156653531e-10 1.287634292e-10 2.916089294e-11 7.868449281e-11 1.152417976e-10 8.792314833e-13 1.832505712e-10 4.523978348e-11 1.011787501e-10 1.101919743e-10 1.991778485e-10 1.518933249e-10 3.557385718e-10 8.763880796e-11 1.826697629e-10 1.276426253e-10 3.162111434e-11 5.513033199e-11 1.05397568e-10 1.986868318e-10 2.724774552e-10 1.210871669e-10 8.602595754e-11 3.370044601e-11 1.472477867e-10 4.941884321e-10 1.577179238e-10 8.23353335e-11 1.518498076e-10 0 2.331263128e-10 6.576009492e-11 2.244756652e-14 1.880638879e-10 1.900096386e-11 1.017008009e-10 2.406872917e-10 2.60544486e-10 1.514346251e-10 1.600693939e-10 1.591700841e-11 1.996628408e-10 1.443731046e-10 2.492036258e-10 2.355590457e-10 5.646420292e-10 8.313262811e-11 1.52901455e-10 2.041794838e-10 2.190550228e-10 8.191525409e-11 4.083671006e-10 5.51954336e-10 6.08523796e-11 5.471477353e-10 4.643679959e-11 1.759999417e-10 7.120626232e-10 1.84698325e-10 2.914951034e-10 1.750779343e-10 2.004131297e-10 3.283808679e-10 3.474499077e-10 3.087237301e-10 2.866879551e-10 3.267471075e-10 2.247082588e-10 2.932289034e-10 6.252076063e-10 4.176654959e-11 2.46485692e-10 2.218616389e-10 1.964595196e-10 3.458585361e-10 3.001976034e-11 1.826224246e-10 6.927595469e-10 1.138616421e-10 1.449654706e-10 3.693650231e-10 1.510100919e-10 4.34450792e-10 1.261737776e-10 1.264133739e-10 8.192910772e-11 1.562305528e-10 5.616941725e-10 4.096726867e-10 4.252375948e-10 1.224834e-10 5.495734892e-10 3.98684426e-10 1.354728824e-10 1.892677408e-10 3.331832484e-10 2.021787461e-10 3.507806217e-10 8.206130914e-11 1.880764751e-10 1.86952711e-10 1.260485832e-10 1.297018463e-10 1.488405568e-10 1.652291709e-10 2.256539703e-10 1.006598659e-10 2.19012125e-10 1.241702592e-10 2.763675856e-10 2.752982265e-10 3.876077337e-10 3.147818939e-10 4.319577038e-10 7.554574893e-10 1.679308323e-10 7.884802117e-11 2.132161489e-13 3.289231224e-11 3.296923523e-10 1.134399984e-10 1.60069852e-10 1.223360526e-10 2.745105769e-10 4.552051949e-10 1.516406602e-10 4.424628388e-10 3.720047057e-10 2.306985235e-10 1.07218239e-10 2.96306792e-10 2.920879592e-10 3.766320129e-10 3.885548784e-10 3.633749255e-10 1.766142554e-10 3.24641613e-10 4.787033743e-10 1.416151292e-10 2.187687714e-10 1.234146922e-10 2.637849805e-10 3.94999342e-10 1.430395141e-10 1.701293087e-10 4.213206969e-10 9.844162233e-11 1.293972818e-10 8.940643874e-11 5.363164312e-11 1.445710919e-10 1.00432543e-10 1.180032097e-10 1.314520197e-10 1.07144239e-10 1.409162444e-10 2.583056328e-10 7.371629413e-14 2.24906612e-15 1.690110709e-10 1.556449425e-20 1.762966626e-11 7.718440063e-11 1.147355801e-10 1.148210316e-10 1.31627278e-11 7.645698642e-11 3.993673859e-11 8.304546017e-11 1.571920316e-10 2.09065515e-12 2.699248515e-10 1.496231149e-10 1.63387506e-10 5.058766458e-11 2.046340227e-10 6.055017826e-12 1.025451192e-10 1.085372116e-10 2.742080833e-10 1.700998616e-10 1.424838158e-10 1.222453336e-10 2.161994085e-10 7.40066588e-11 5.273676669e-10 4.462547804e-11 3.080375873e-10 6.815447627e-11 2.588256653e-10 2.727583e-10 2.188468699e-10 1.922060826e-10 4.08115851e-10 2.744540405e-10 9.166896531e-11 2.391547581e-10 1.900033113e-10 1.805680961e-10 7.746792268e-11 3.624077661e-10 2.440301099e-11 6.12529281e-11 2.486946333e-10 2.381160635e-10 1.6249317e-10 2.274719306e-10 1.326517617e-10 4.753574025e-11 2.402307883e-10 2.952457972e-11 1.75101659e-10 1.100243162e-10 1.434542821e-10 1.345133392e-10 3.637719479e-10 3.044437941e-10 8.584543345e-11 2.01724833e-10 1.627823722e-10 1.6696343e-10 1.432830288e-10 1.577249024e-11 1.368144817e-10 1.724077596e-10 2.687324362e-10 1.051024803e-10 4.648592279e-10 6.675709029e-11 5.072803288e-11 9.681296235e-11 4.483879012e-11 8.73425089e-11 1.061870491e-10 1.035181868e-10 1.074398216e-10 1.545384243e-10 1.892944481e-10 1.767154841e-10 8.075283583e-11 3.58677516e-11 1.616338098e-10 1.627568982e-10 1.607577561e-10 +2.670302656e-10 1.560648058e-10 2.660031506e-11 1.190571013e-10 7.489164257e-11 4.806654292e-11 3.067769181e-10 5.781118066e-11 1.144396e-10 1.580489102e-11 3.869017495e-10 6.278415767e-11 3.003680229e-10 6.39972802e-10 1.489076569e-10 1.815679043e-10 7.850513967e-11 2.288712373e-10 3.886586703e-10 1.751759734e-10 5.727191018e-11 1.1812639e-10 2.539886954e-10 1.620160256e-10 9.454575051e-11 1.664713286e-10 7.235778964e-11 1.45961743e-10 7.115236014e-11 2.190597871e-10 1.880503905e-10 1.305107065e-10 1.066666296e-10 2.51014301e-10 1.288176983e-10 1.159283717e-10 2.80680622e-10 2.029259304e-10 1.536438484e-10 1.847238217e-10 3.074637972e-11 1.808716888e-10 2.623034954e-10 1.385842228e-10 2.788107032e-10 5.889171384e-10 1.996257869e-10 4.813680036e-10 6.472921758e-11 6.287201302e-11 1.4951868e-10 1.151283476e-10 3.03702648e-10 8.529622056e-11 1.274832647e-10 1.920392529e-10 3.189881849e-10 3.886234977e-10 1.212096566e-10 2.560308756e-10 4.238928834e-11 3.010688117e-10 2.181324707e-10 1.320706559e-10 2.148794351e-10 1.118558442e-12 1.524214709e-10 7.34452403e-11 1.077280538e-10 1.025242885e-10 2.537407978e-10 4.136053122e-10 2.048591927e-10 1.925828946e-10 9.963189896e-11 1.826235528e-11 2.794693077e-10 1.980026822e-10 3.47844759e-10 1.342316368e-10 1.482673391e-10 2.568063609e-10 6.137932531e-11 1.710878587e-10 9.244170695e-11 2.804895533e-10 6.181717673e-11 2.179094282e-11 8.251338656e-11 2.054005696e-13 8.280043713e-11 8.969183607e-11 2.010391725e-10 2.658996881e-10 1.609239638e-10 2.412980702e-10 2.362490452e-10 1.957261138e-10 2.861647326e-10 6.428929531e-11 6.13021943e-11 2.205436401e-10 2.588234327e-10 4.510972297e-10 3.824027525e-10 9.440994783e-11 6.159570381e-11 2.130486844e-10 3.292806375e-10 1.943115606e-10 1.988232068e-10 2.779991412e-10 9.76649401e-11 1.812800096e-10 5.682867735e-10 3.434620834e-10 2.616422255e-10 3.835365863e-10 3.402732159e-10 1.789079118e-10 1.560496992e-10 4.860535479e-10 2.314117587e-10 1.909426276e-10 4.98125321e-10 1.620008343e-10 4.698630906e-10 3.293566586e-10 3.448273715e-10 2.105492271e-10 3.024179421e-10 1.901213594e-10 2.252723705e-10 4.779221856e-10 3.098981879e-10 2.812121889e-10 3.494903198e-19 1.884183933e-10 1.684043891e-10 2.353434762e-10 4.172335366e-10 3.304764602e-10 2.497885455e-10 3.370098876e-10 5.484822842e-10 9.11634779e-10 2.13925664e-10 6.291206179e-10 6.066108498e-10 0 5.598253982e-11 4.366255762e-10 3.495212728e-10 1.11531425e-10 1.146459503e-10 1.566735823e-10 3.875284167e-10 1.670314834e-10 3.192735112e-10 2.79036301e-10 6.125186397e-11 4.218988154e-10 2.236209583e-10 2.36235732e-10 4.377508149e-10 2.985319048e-10 4.268062761e-10 7.754040791e-11 5.50804917e-10 2.049645776e-10 3.013223261e-10 1.575579454e-10 4.077281405e-10 8.364812514e-11 4.079438185e-10 1.965673848e-10 6.897073435e-10 1.950052168e-10 2.642005961e-10 3.420227584e-10 1.87217133e-10 1.803033144e-10 3.581158045e-10 2.45454314e-10 3.447818871e-10 4.563581414e-10 2.582031794e-10 2.798433086e-10 1.9724874e-10 3.811042566e-10 2.336106723e-10 3.013722527e-10 2.548173938e-10 8.860986007e-10 2.890133683e-10 9.795283226e-15 1.788576941e-10 1.407573151e-11 2.566637339e-10 3.501466227e-10 2.68656864e-11 1.815535417e-10 2.772108054e-10 4.305431625e-11 1.992636919e-10 4.013571921e-10 2.842110615e-10 1.535676841e-10 1.385835316e-10 2.894885831e-10 1.115715116e-10 1.240410552e-10 1.879326512e-10 3.147513624e-10 9.643256135e-11 1.468110261e-11 1.217658161e-10 1.733177899e-10 2.272427456e-10 2.257798981e-10 1.498687408e-10 1.265242862e-14 1.212312641e-10 1.155016131e-10 8.780145074e-11 7.469716466e-11 1.796302087e-10 6.522105252e-10 2.975818602e-11 3.036013871e-10 1.283203467e-10 2.847925149e-10 1.450877345e-10 3.253465e-10 1.482109625e-10 5.127308211e-10 1.482221527e-10 2.567512349e-10 8.8247153e-11 9.47803121e-12 4.604963681e-10 2.282026855e-10 1.218383783e-10 6.397147467e-11 3.517491368e-10 2.918431959e-10 4.016610691e-10 3.8477277e-10 1.435075252e-10 2.845542643e-10 1.835899485e-10 3.234588534e-10 3.059079504e-10 2.196991473e-10 3.640131497e-10 6.146778685e-11 9.086800574e-11 2.050351335e-10 1.024678356e-10 1.202285108e-10 1.23329345e-10 2.644766201e-10 1.101469801e-10 7.604534615e-11 1.45731026e-10 1.326498813e-10 9.651022276e-11 2.921483408e-10 1.412143282e-10 3.503809984e-11 6.949027522e-11 5.543973697e-11 3.392318913e-11 2.066423115e-10 2.392328366e-10 1.175442841e-10 3.010983311e-10 6.421302405e-11 2.245441899e-10 2.01559989e-10 7.671515554e-11 6.095811807e-11 3.468825598e-10 3.149769235e-10 2.47938618e-10 1.954203629e-10 1.319898839e-10 1.061358739e-10 5.118820872e-11 1.501676776e-10 1.819279922e-11 1.302929977e-10 2.536404361e-10 2.149922669e-10 7.756252941e-11 1.954637641e-10 3.078144828e-10 1.109105103e-10 4.349859623e-10 1.978809333e-10 +3.795609872e-10 2.550478572e-10 1.295182391e-10 1.964376817e-10 1.882160005e-10 1.018213813e-10 3.983776147e-10 1.223658882e-10 4.8612198e-10 2.731461823e-10 5.110905739e-10 5.235126885e-11 1.241537807e-10 1.751523499e-10 2.212712679e-10 3.576064707e-10 6.352045612e-11 3.520525455e-10 1.669360471e-10 8.09461804e-11 1.198094199e-10 1.250904044e-10 2.250151181e-10 8.28845564e-11 3.970194628e-10 1.56540732e-10 1.415257308e-10 7.898940489e-11 2.269564617e-10 1.248089037e-10 7.067447954e-11 1.455559585e-10 9.481827957e-11 3.0198961e-11 2.992226438e-10 2.877859475e-10 1.022856802e-10 2.114165042e-10 2.877727709e-10 2.994003778e-10 6.300003508e-11 3.639945368e-10 5.152774882e-11 8.065076244e-11 3.148454009e-10 3.789634636e-10 1.129086587e-10 2.971158744e-10 1.405341884e-10 1.643604438e-10 2.716640853e-10 8.391657629e-11 2.744542344e-10 1.964462908e-10 1.924595337e-10 1.977315824e-10 8.18919249e-11 3.082903563e-10 1.71463723e-10 1.499453669e-10 2.769143368e-10 1.941322987e-10 7.269068692e-11 3.154178519e-10 4.178163387e-11 1.930275568e-11 3.486514087e-10 2.667427514e-10 1.488165307e-10 1.876066095e-10 3.642863863e-10 1.5224123e-10 3.333288077e-10 2.34694608e-10 1.192127608e-10 1.175012964e-10 1.742857358e-10 1.592597588e-10 7.207878277e-11 2.759728531e-10 3.288791236e-11 3.404831803e-12 2.196014361e-18 5.015223758e-11 2.344181889e-10 5.634758495e-11 8.63831997e-11 1.527367666e-10 7.199682465e-11 6.086929582e-11 3.803431204e-10 1.399865615e-10 2.213096835e-10 1.500770063e-10 1.959900933e-11 2.143012976e-10 3.582725841e-10 4.381338121e-11 2.466146619e-10 1.987014617e-10 4.548419664e-10 1.852759519e-10 1.145551439e-10 3.859923784e-10 3.642302305e-10 5.135902934e-10 4.38015801e-10 1.249701537e-10 2.307117599e-10 1.211102012e-10 1.701638626e-10 4.092284106e-10 2.143610246e-10 2.870669124e-10 4.089117712e-10 1.824323391e-10 3.606122103e-10 1.844017079e-10 2.448016687e-10 5.143210929e-10 6.073445929e-10 6.874322154e-10 1.359580829e-10 3.873792483e-10 2.21724405e-10 2.152227157e-10 3.085694607e-10 5.118702127e-10 3.090389372e-10 4.029213341e-10 3.257111613e-10 2.490259755e-10 1.16067925e-10 2.728483501e-10 5.294236064e-10 2.182551444e-10 1.28445778e-10 3.731784192e-10 1.555898757e-10 5.156841218e-10 3.06113304e-11 3.430980421e-10 2.831243417e-10 2.112745312e-10 3.976205688e-10 4.93626508e-11 4.199893294e-12 4.800188397e-10 1.126150336e-10 5.126027708e-10 3.993067099e-10 3.326904671e-10 1.808057595e-10 4.080830157e-10 3.037081263e-10 2.029607824e-10 3.622595995e-10 6.117151085e-11 1.548594983e-10 2.454122795e-10 1.710341377e-10 1.10621795e-10 3.412600066e-10 6.465080583e-11 1.393789819e-10 1.464446679e-10 1.487174652e-10 3.113602287e-10 2.03625477e-10 5.103125194e-10 4.836370819e-10 4.250744471e-10 5.624871899e-11 1.492826324e-10 2.110816959e-10 1.635035314e-10 3.169997904e-10 2.269779964e-10 3.771449891e-10 4.452324743e-10 4.553787027e-10 1.379253732e-10 1.173610103e-10 3.015286728e-10 4.775970284e-10 1.938107499e-10 1.758231582e-10 4.74324585e-10 3.867466597e-10 2.514353518e-10 1.849666217e-10 3.112696999e-10 4.556670911e-10 4.717007006e-10 2.197448509e-10 2.106211369e-10 1.79196225e-10 3.520122541e-10 4.195081675e-10 5.794997657e-10 1.139519402e-10 4.407945217e-10 2.861574799e-10 2.731469369e-10 3.790291953e-11 3.262553705e-10 1.122595389e-10 4.821257021e-11 2.335978505e-10 3.512050125e-11 3.031638535e-11 1.092790516e-10 1.834615365e-10 1.903317377e-10 1.007310609e-10 4.963775767e-11 5.560900606e-11 1.748804259e-10 4.833107068e-10 8.577471322e-11 1.648947464e-10 1.08446439e-11 3.436938692e-11 2.960645583e-10 9.784911542e-11 1.468758563e-10 1.227652822e-10 3.894168908e-10 1.071143194e-10 4.530980637e-10 1.39436362e-10 2.02449322e-11 2.695924751e-10 2.649485163e-11 3.293572262e-11 1.012074943e-10 3.437919021e-10 8.276860216e-11 1.521883049e-10 2.315757052e-10 5.190353096e-10 1.967051594e-11 4.419537518e-10 2.006150763e-10 7.271023579e-11 1.152332869e-10 2.729579571e-10 4.684196495e-10 7.400494386e-11 2.562249067e-10 3.336963948e-12 3.876557138e-10 1.009946467e-10 1.924713805e-10 2.074700326e-10 3.605940696e-10 1.084742618e-10 7.480809908e-11 3.293205713e-10 2.067261588e-11 2.678577871e-10 9.639078649e-11 2.486610951e-10 3.179332565e-10 6.985242976e-11 3.338787964e-11 3.212899313e-10 1.03929849e-10 1.850892473e-10 1.113339111e-10 2.415104622e-11 1.450059414e-10 1.832294532e-10 1.659681159e-10 7.80104349e-11 2.204741346e-10 1.009044639e-10 2.611847186e-11 3.268411779e-10 2.172876898e-10 2.248862031e-10 3.316917219e-10 4.789362783e-10 6.802356117e-11 7.840730699e-11 6.731759627e-11 1.644186162e-10 1.039075022e-10 4.435951271e-10 2.89116729e-10 4.698036317e-10 5.240094712e-10 4.635814891e-11 2.310178499e-10 1.553491621e-10 1.437515389e-10 2.834913472e-11 1.495545602e-10 1.657712831e-10 1.600232256e-10 +3.022994356e-10 1.514287526e-10 3.606539403e-10 8.746187591e-11 2.299011765e-10 1.018170003e-10 5.350847972e-11 4.053792106e-11 2.313899326e-10 5.772538612e-11 3.256930423e-10 4.311418814e-10 3.960586861e-10 1.809991414e-10 1.02779925e-10 7.472919709e-11 2.020541503e-10 1.132871931e-10 2.217574914e-10 1.699358638e-10 5.312922771e-10 1.90871385e-10 3.00613633e-11 1.873341896e-10 3.414127119e-10 6.524529662e-11 1.973833928e-10 5.116462288e-10 1.946731672e-10 1.685553393e-10 6.5033729e-11 1.388673596e-10 5.779523936e-10 6.256192981e-10 6.946773088e-11 1.546729771e-10 2.70094157e-10 1.57913235e-10 1.443230206e-10 1.510487324e-10 3.790833433e-10 2.082898856e-10 1.120386834e-10 1.755663107e-10 4.452056244e-10 1.033386837e-10 3.162209326e-10 4.265205043e-11 1.403906322e-10 1.157605654e-10 7.154395877e-11 2.680375953e-10 1.928974231e-10 6.234521469e-10 6.706879635e-11 2.938222332e-10 1.731627214e-10 2.550649708e-10 1.974276695e-10 2.621537245e-11 4.435982966e-10 1.263768384e-10 7.726736647e-11 2.266749712e-10 1.080623854e-10 2.823640154e-10 3.255958706e-10 2.912554586e-10 1.894778101e-10 2.381883152e-10 7.207925695e-11 1.288164798e-10 2.301744491e-10 1.332638079e-10 6.711805578e-11 1.725270156e-10 1.146475323e-10 2.549177059e-10 2.387150535e-10 3.447138724e-10 1.09204042e-10 1.620145755e-10 3.281166599e-10 1.151573801e-10 5.934795789e-11 2.209415281e-10 1.009024947e-10 2.181139463e-10 5.872413856e-10 2.099227255e-10 4.625981729e-11 2.126779832e-10 1.014937099e-10 8.51547345e-11 4.576518501e-10 4.13101857e-10 4.662626621e-10 3.711322425e-10 9.1035718e-11 2.529989247e-10 4.223440089e-10 2.400467229e-10 3.584780805e-10 1.874661962e-10 6.136032649e-10 3.513982829e-10 1.916594452e-10 4.568194602e-10 1.687866358e-10 8.224441134e-11 5.353928858e-10 3.264625472e-10 7.268879013e-10 1.656159112e-10 2.216289764e-10 5.289079761e-10 3.955108547e-10 1.051882966e-10 2.36109831e-10 3.910240057e-10 2.368065961e-10 2.3504512e-10 2.218506128e-10 3.357569234e-10 4.401272887e-10 5.784903528e-10 2.809074376e-11 2.467024131e-10 3.453265318e-10 9.473017425e-11 2.253441787e-10 1.335528359e-10 7.831148665e-11 2.373933622e-10 4.793269018e-10 1.251250819e-10 3.193053631e-10 2.852732008e-10 9.35091782e-11 2.723868105e-10 1.593642602e-10 2.79051841e-10 1.536625368e-10 1.285629837e-10 9.034563077e-11 2.498951364e-10 2.033244365e-10 3.493541505e-10 1.139288506e-10 1.652401335e-10 5.917544499e-10 3.199250461e-10 6.879234074e-11 4.052434269e-10 3.944246749e-10 2.566614459e-10 2.590189932e-11 6.176709128e-10 7.504759156e-11 2.163429586e-10 2.266522474e-10 2.080874994e-10 1.581893715e-10 3.107115641e-11 1.146951769e-10 7.446776995e-11 4.047477914e-10 4.636144274e-10 1.956407687e-10 4.787634444e-10 5.741187562e-10 2.320500333e-10 1.884014136e-10 1.658372915e-10 2.006855327e-10 4.871164296e-10 8.585412068e-11 2.193498497e-10 3.351513404e-10 3.584413101e-10 4.643971503e-10 3.693456727e-10 2.312437438e-10 2.560138835e-10 5.015260477e-10 2.736076915e-10 1.415039443e-10 3.562157259e-10 1.742790007e-10 3.429077347e-10 3.024120477e-10 4.980132765e-10 4.594714098e-10 1.674621974e-10 7.134831581e-10 8.402504226e-10 2.316308254e-10 4.185376254e-10 5.585494191e-10 2.975491559e-10 5.025317161e-10 1.56974891e-10 3.943114365e-10 1.646183249e-10 3.119260305e-10 8.239380407e-11 3.867130492e-10 2.140517105e-10 1.259343775e-10 3.14611234e-10 7.459812326e-11 4.491052767e-11 8.6136625e-11 1.862929661e-10 1.600247758e-10 7.628802138e-11 2.30540028e-10 2.749385711e-10 1.148471332e-10 6.999971611e-11 2.282723166e-10 3.241903294e-10 2.739360507e-10 7.21834464e-11 6.926764403e-11 5.877994665e-11 1.733364775e-10 2.156413166e-10 1.896643109e-10 2.653140057e-11 3.106609505e-10 3.662603415e-10 1.581423112e-10 2.476261877e-10 1.456576659e-10 7.809603226e-11 1.35674114e-10 1.088700968e-10 1.199438058e-10 3.258341104e-10 2.548465765e-11 2.585029101e-10 9.497623934e-11 1.684193877e-14 3.315202205e-10 2.316237682e-10 1.899514454e-10 3.977747062e-10 2.592243579e-10 9.343103371e-11 2.59861523e-10 4.782368974e-10 5.135815991e-11 2.034464882e-10 1.1607541e-10 3.074258179e-10 1.681808756e-10 6.669330138e-11 2.416216018e-10 1.607132477e-10 6.142895054e-11 2.396228821e-10 5.140300466e-11 2.002093422e-10 1.839104852e-10 3.050876001e-10 3.005058265e-10 3.323908624e-10 7.282570797e-11 9.350803416e-11 6.045811519e-11 2.909118964e-10 3.196811522e-10 1.717005872e-10 1.048921209e-10 5.228166132e-11 1.782552966e-10 1.841292253e-11 1.563649041e-10 7.800354663e-11 4.594241213e-11 3.046718422e-10 1.817960532e-10 3.635622085e-11 2.957145229e-10 1.084880488e-10 1.62225601e-10 5.641104508e-11 2.71973563e-10 2.380271674e-10 1.626176863e-10 3.610160117e-10 7.751427175e-11 1.03826262e-10 3.006514268e-12 1.980765985e-10 3.899645117e-10 1.797951617e-10 1.069279576e-10 2.032614221e-10 +3.301403337e-10 3.916166579e-10 1.537313245e-10 1.968307627e-10 2.137494968e-10 4.607604982e-11 1.852926617e-10 4.747629538e-10 5.704396567e-10 4.008009745e-10 1.834401976e-10 1.035255092e-12 2.701114624e-10 3.330181627e-10 2.762965587e-10 1.052648424e-10 2.699327732e-11 1.23813479e-10 1.930552132e-10 1.149988661e-10 1.159658918e-10 1.28713345e-10 2.270569345e-10 7.699284961e-11 1.966676455e-10 1.772329452e-10 1.437947091e-10 1.628670983e-10 3.316236026e-10 4.502902298e-10 1.022458323e-10 9.079143608e-11 8.205004529e-10 2.021167001e-10 1.450212873e-10 1.54128128e-10 3.030390859e-10 2.055281381e-10 6.089499805e-10 2.997795092e-10 8.59251731e-11 7.456702364e-11 1.857776502e-11 2.037443653e-10 5.673339096e-10 2.533212037e-10 1.382305355e-10 3.727240732e-10 7.20712799e-11 1.757484367e-10 2.494272143e-10 2.284807712e-10 4.06127153e-10 4.877129435e-10 3.603884661e-11 2.118808848e-10 2.319317613e-10 1.771577523e-10 2.354651755e-10 3.841991297e-10 1.916094516e-10 5.953039105e-10 4.080674667e-16 3.048062661e-10 2.406137867e-10 2.995567743e-10 1.17566325e-10 1.342211133e-10 8.013831807e-11 3.262216643e-10 2.943241109e-10 1.093569791e-10 6.214832103e-11 6.864931254e-11 2.396987398e-10 3.037461575e-10 3.383902911e-10 4.593899234e-10 2.475005669e-10 2.872504633e-10 2.787485981e-10 1.168614904e-10 4.804472402e-11 1.837882361e-10 1.026076789e-10 2.090349792e-10 1.234394395e-10 3.110271542e-10 1.101374814e-10 3.611009185e-10 1.294805445e-10 1.866490986e-10 4.586837494e-10 2.851487324e-11 1.657005723e-10 2.225029191e-10 2.05376972e-10 1.678730865e-10 4.162372614e-10 4.069087171e-10 2.951106691e-10 5.083549386e-10 8.623964926e-11 3.562571797e-10 3.402930325e-10 6.132555274e-10 3.191870012e-10 5.230911827e-10 3.698830572e-10 4.602919008e-10 3.808900302e-10 3.770495556e-10 2.823495947e-10 2.968285209e-10 4.50344023e-10 8.494142904e-11 5.650551749e-10 8.765734675e-11 4.884980793e-10 6.463054128e-10 3.038566987e-10 2.02370267e-10 3.759470482e-10 1.881532509e-10 1.149413186e-10 2.817268107e-10 2.991219929e-10 3.179643266e-10 2.453042619e-10 2.512095958e-10 1.758870776e-10 2.504211353e-10 1.808388752e-10 3.874400949e-10 2.787764925e-10 4.065354305e-10 4.125278825e-10 1.43828275e-10 1.579368424e-10 5.921634671e-10 1.499576385e-10 4.805466438e-10 5.43982808e-10 3.941657596e-10 3.880848091e-10 2.083869625e-10 3.965211273e-10 3.362237558e-10 2.304080911e-10 1.824490354e-10 1.518641758e-10 4.148938173e-10 1.995824372e-10 9.430072171e-11 4.100343675e-10 4.356323638e-10 3.169751674e-10 3.063255766e-10 5.5656673e-10 2.204413669e-10 4.678427921e-10 6.157377267e-10 2.647913035e-10 2.013606954e-10 1.260265131e-10 3.025589257e-10 2.823036181e-10 3.802585656e-10 1.917292148e-10 2.113073994e-10 4.557096817e-10 1.703915308e-10 7.021564214e-11 3.528247273e-10 2.715818562e-10 7.638050558e-10 3.575363854e-10 8.331349259e-11 2.715906917e-10 2.684299183e-10 6.965621999e-10 2.721724745e-10 6.466884374e-11 5.582769578e-10 1.493994663e-10 3.524590493e-10 2.341163929e-10 2.648601869e-10 1.78606682e-10 2.526533904e-10 3.787700661e-10 3.58171559e-10 3.564318811e-10 1.897601361e-10 3.400169345e-10 4.961824191e-10 2.682386182e-10 3.6294825e-10 2.159028547e-10 4.937196371e-10 1.211762211e-10 2.47225998e-10 6.770975378e-10 2.080908811e-10 2.400462116e-10 1.00310294e-10 2.955021826e-10 2.393768937e-10 3.652023191e-10 9.46900959e-11 3.045534176e-10 4.397215848e-10 1.16808428e-10 2.907125625e-10 1.635079519e-10 2.729146487e-11 9.018524595e-11 4.887342374e-11 4.070023513e-10 2.543496703e-13 1.18411625e-10 1.737417905e-10 7.901642977e-11 1.815928465e-10 6.260599104e-11 1.827912228e-10 1.849795387e-10 2.659687553e-10 2.67490332e-10 2.008682153e-10 1.943870196e-10 5.144264079e-10 6.217418629e-11 2.402416233e-10 2.86408973e-10 2.652321393e-10 2.103631569e-10 9.158385503e-11 1.959041281e-11 1.455514989e-10 9.417696138e-11 4.526359867e-10 1.859334767e-10 1.545060505e-10 1.512116297e-10 1.439695281e-10 9.105945842e-11 6.461636359e-10 3.01338137e-10 2.633748195e-10 1.689461064e-11 2.370638795e-10 3.491322175e-10 9.263712007e-11 1.21584245e-10 2.289570292e-10 2.969980033e-10 3.641355338e-10 2.904201391e-10 1.689370184e-10 2.143787286e-10 1.684308551e-10 2.444690305e-10 1.693280443e-10 5.377400193e-11 1.269392852e-10 3.957313634e-10 2.453758757e-10 1.77268454e-10 3.443184154e-10 2.032210114e-11 2.017964871e-10 9.432943218e-11 1.063448257e-10 1.680502064e-10 3.546314377e-10 1.452206677e-10 2.802143524e-10 4.042734852e-10 1.50844029e-10 2.853318462e-10 3.121982519e-10 2.088535591e-11 2.956720238e-10 2.696715332e-10 3.402993643e-11 1.382840831e-10 2.07605817e-10 3.669739801e-10 1.072573181e-10 2.949815663e-10 1.832240747e-10 2.390697481e-10 1.139859379e-11 8.875988183e-11 1.672415769e-10 5.63845289e-11 3.713284639e-10 7.523082275e-11 1.782338517e-10 +5.213778577e-10 5.32172134e-10 4.268276164e-10 4.753876426e-10 6.086689009e-11 9.230654619e-11 1.061205409e-10 3.269935567e-10 3.773129388e-10 5.079416753e-11 1.99841268e-10 3.227609531e-10 6.246475292e-10 3.781168867e-11 3.003233931e-10 3.168592597e-10 2.209959438e-10 1.540785026e-14 1.788691945e-10 9.072124087e-11 3.233441053e-10 6.77661737e-11 8.616248205e-11 1.589986318e-10 3.705546608e-10 6.714104925e-12 7.655328264e-11 7.217907057e-11 3.113677613e-11 4.622651421e-10 1.805593568e-10 1.119304967e-10 3.4091883e-10 3.29411173e-10 1.644631216e-10 1.770017519e-10 1.115824759e-10 3.685670723e-10 2.374481297e-10 1.238742965e-10 8.122199688e-11 5.260727433e-11 1.485792321e-10 4.243129247e-10 1.562315832e-10 4.255264759e-10 7.874062748e-11 8.786494052e-11 8.673692115e-11 3.272498419e-10 2.97402456e-10 4.017281742e-10 9.07011386e-11 3.766524812e-10 2.020169424e-10 2.804424624e-10 2.737451642e-10 2.520401022e-11 1.598274602e-10 2.815272006e-10 1.282063666e-10 1.268403147e-10 1.902999481e-10 7.020158679e-11 9.192800141e-11 1.630600913e-10 1.646882511e-10 2.570485644e-10 2.903405534e-10 2.687015087e-10 1.338745829e-10 2.054623777e-10 2.105587719e-10 8.00026964e-14 4.764416544e-10 3.510795104e-10 1.887528746e-10 1.027334662e-10 2.331935941e-10 8.296868698e-11 4.616632802e-10 3.57120895e-10 3.054186584e-10 9.433990175e-11 2.594067687e-10 1.737791363e-10 3.72300137e-10 1.649746216e-11 3.163005509e-10 1.751533983e-10 2.281464421e-10 2.90657318e-10 1.159152857e-10 1.490299443e-10 5.33290696e-10 1.513611292e-10 4.739572557e-10 8.091709421e-11 2.788143126e-10 3.455313463e-10 2.608124798e-10 3.094598436e-10 5.362584547e-10 4.413284542e-10 2.689029373e-10 7.137239231e-11 4.621264058e-10 1.164325791e-10 5.343918097e-10 2.435807153e-10 1.536380393e-10 1.649942049e-12 2.182350703e-10 3.356496467e-10 3.146010952e-10 6.305415225e-10 5.910862347e-10 1.424925728e-10 2.401274458e-10 3.058999361e-10 3.362348634e-10 3.284023906e-10 3.594806297e-10 2.981425638e-10 2.185560911e-10 9.398694948e-11 2.121553746e-10 1.074772429e-09 7.37846852e-11 4.119576926e-10 2.353767369e-10 1.937313645e-10 6.076702516e-10 2.013749166e-10 3.189851605e-10 1.629337422e-10 3.830262698e-10 6.304643438e-10 8.103602606e-10 1.273941316e-10 1.3908832e-10 7.673678854e-11 2.284127993e-10 4.721920432e-10 3.904989213e-10 1.48692428e-10 4.295266665e-10 2.306045367e-10 3.207593805e-10 3.297216029e-10 2.975064514e-10 1.933579794e-10 2.33792089e-10 7.431717232e-11 2.370851302e-10 1.988477164e-10 2.196776793e-10 4.330947474e-10 4.932922668e-10 9.494203698e-11 1.021351603e-09 1.653458902e-10 1.807569181e-10 3.297282159e-11 2.967238828e-10 1.398703499e-10 4.453127226e-10 5.890247661e-10 4.046494327e-10 3.30314183e-10 5.885742314e-11 7.044923387e-10 3.668211678e-10 1.315928583e-10 2.460423148e-10 3.155095134e-10 3.578730655e-10 3.272690214e-10 4.08425158e-10 1.750434744e-10 2.322756676e-10 2.199231875e-10 5.618665752e-10 1.217751888e-10 6.959370557e-10 2.902407788e-10 3.85057699e-10 3.368527959e-10 4.621163725e-10 5.31201833e-10 1.164072266e-10 4.1029442e-10 4.762806241e-10 2.293460032e-10 3.06244439e-10 4.484841077e-10 8.18163855e-10 3.317082576e-10 4.250525888e-10 1.4591241e-10 4.252589112e-10 4.459092157e-10 3.645600285e-10 2.660389694e-10 5.407217615e-10 4.88650203e-10 3.463960473e-10 2.991706042e-10 3.210861528e-10 1.759324962e-10 2.226739121e-10 1.839554471e-10 6.793997877e-10 4.868837782e-11 6.348387546e-10 6.90518946e-11 8.952671968e-11 3.118204434e-10 2.688452752e-10 4.100235891e-11 1.249811323e-10 2.50850997e-10 3.574063516e-10 1.684235699e-10 1.300284199e-10 2.52121009e-10 7.977610621e-11 3.372680623e-10 2.236961104e-10 6.28728876e-11 9.40929929e-11 2.73633464e-10 1.677618854e-10 1.0628838e-10 2.186740326e-10 2.792780899e-10 1.994738829e-10 4.419103147e-10 1.10763798e-10 7.388464808e-11 1.898258636e-10 3.189239547e-10 8.646453146e-11 4.014606349e-10 2.195290481e-10 3.150292274e-10 2.396601627e-10 2.499590261e-10 1.984202488e-10 5.099690895e-10 7.278410565e-11 3.397208865e-10 4.123306724e-10 1.928097573e-10 2.377769215e-10 4.115383786e-11 1.060479883e-10 4.700830527e-11 2.555159257e-10 1.655522898e-10 1.290142755e-10 2.661384845e-10 1.193413916e-10 6.0248387e-10 2.339330225e-10 7.724092688e-10 2.610949233e-10 2.391824192e-10 2.503409865e-10 6.32352303e-11 2.445764798e-10 2.583925408e-10 3.68642491e-10 2.190521479e-10 3.262069274e-10 3.35273781e-10 3.894325894e-10 6.503072815e-11 1.103009421e-10 1.339093992e-10 2.043285445e-10 1.380311395e-10 3.302307868e-10 2.785464155e-10 1.640953132e-10 2.03493737e-10 3.801854773e-10 2.711215031e-10 2.526602356e-10 2.155126694e-10 9.999902016e-11 1.729864586e-10 5.756539676e-10 2.478092727e-10 4.131574678e-10 5.172928155e-11 2.527040033e-10 8.543035387e-11 1.226790899e-10 1.258578978e-10 +2.419049737e-11 1.572186404e-10 2.4959601e-10 4.883002051e-10 3.114108332e-10 1.130575738e-10 1.044591615e-10 5.28423011e-10 8.11857062e-11 5.550044452e-10 1.128318911e-10 2.996456346e-10 9.022467827e-11 2.392804863e-10 3.522668324e-10 2.217491623e-10 2.648109959e-10 1.105877848e-10 4.785462313e-10 2.38977961e-10 1.173088879e-10 3.472459789e-10 2.816060265e-10 7.223753218e-10 5.212991722e-11 3.484307954e-10 2.020550633e-10 2.131555628e-10 2.270283153e-10 1.558273227e-10 1.045343757e-10 1.855608025e-10 4.033131978e-10 1.739574965e-10 2.379699721e-10 2.186621968e-10 6.778446586e-10 1.912304435e-10 1.446835439e-10 3.136008271e-10 2.299182443e-10 4.632931335e-10 1.499414691e-10 1.268732916e-10 2.098480313e-10 2.694375887e-10 2.852121584e-10 3.553965476e-10 2.157246025e-10 3.439139004e-10 7.144528659e-10 2.837989907e-10 1.866917712e-10 5.355652835e-10 5.018239932e-10 1.455050102e-10 2.032168766e-10 1.882543552e-10 1.655022283e-10 1.276928516e-10 2.051342235e-10 2.200919982e-10 1.558061468e-10 5.194825359e-11 3.571887702e-10 8.872140878e-11 1.35650691e-10 4.75551242e-10 3.764910704e-10 1.091894437e-10 2.269342619e-10 2.448927311e-10 3.023562462e-10 2.077290618e-10 5.774466116e-10 8.529292558e-11 4.286656203e-10 1.45606739e-11 3.555115826e-10 1.711809286e-10 3.15689455e-10 2.057168196e-10 1.701620472e-10 3.204101464e-10 2.069871906e-10 2.421819605e-10 3.222625289e-10 1.898804442e-10 1.700247121e-10 2.224573031e-10 7.907024555e-10 3.625085008e-10 5.377572047e-10 2.064705228e-10 1.525140536e-10 4.043883041e-10 2.395208522e-10 2.745028028e-10 1.843608992e-10 1.051395656e-10 4.112766361e-10 3.221063004e-10 5.679676741e-10 5.707439869e-10 3.905920906e-10 5.005533141e-10 5.262353266e-10 3.538758262e-10 1.093794936e-10 2.011520721e-10 1.557380407e-10 1.118266535e-10 3.238821206e-10 2.250041503e-10 2.963367061e-10 2.556505282e-10 1.867067725e-10 5.905320452e-10 4.163748058e-10 2.951689552e-10 3.723248268e-10 3.405637728e-10 2.034824195e-10 5.97885826e-10 1.633693373e-10 1.515074479e-10 9.155927762e-10 3.594394642e-10 3.929575796e-10 2.926781329e-10 1.378853162e-10 1.831208124e-10 1.602219817e-10 2.433450066e-10 1.499947825e-10 3.829228007e-10 1.766417274e-10 1.306358302e-10 1.956874429e-10 2.660014397e-10 5.611151947e-10 5.247974164e-10 3.06243164e-10 4.066273625e-10 2.987808415e-10 4.527838441e-10 3.510103802e-10 1.97021621e-10 8.056713292e-10 2.423245272e-10 1.600798407e-10 2.782670243e-10 3.131556843e-11 2.696655504e-10 2.461147346e-10 4.159578079e-10 2.364401268e-10 2.912237173e-10 3.485687795e-10 2.569710237e-10 3.087286642e-10 2.254594791e-10 7.305898665e-10 4.708537867e-10 2.670105371e-10 2.2291469e-10 5.973793449e-10 2.546831474e-10 1.732835876e-10 2.915393587e-10 3.358184186e-10 4.532873374e-10 1.944319684e-10 3.948975505e-10 3.098321902e-10 1.31377453e-10 2.325563721e-10 2.471655194e-10 1.877437855e-10 5.312888913e-10 3.402523147e-10 2.341221307e-10 3.380167231e-10 1.999702497e-10 1.733915372e-10 3.685014083e-10 3.496567534e-10 3.459034812e-10 4.617848858e-10 2.134793751e-10 1.862573057e-10 1.845312775e-10 7.159993591e-10 4.411275211e-10 5.899239279e-10 3.325347252e-10 2.453740283e-10 5.121593573e-10 2.531072027e-10 1.787008757e-10 3.095205895e-10 4.209195361e-10 5.182424345e-10 3.030415618e-10 2.377464698e-10 3.430456413e-10 1.422217205e-10 1.332188686e-10 4.605217027e-10 4.040087038e-10 1.451378045e-10 2.646618826e-10 4.707082898e-11 2.165128432e-10 2.33996512e-10 2.179073734e-10 1.339353888e-10 1.452351151e-10 1.63631152e-10 1.336899331e-10 1.845197147e-10 6.023419982e-11 3.441869994e-10 8.504029787e-10 3.332061064e-10 1.070345998e-10 1.938327134e-10 1.024430656e-10 9.34808249e-11 1.862926847e-10 2.716403228e-10 1.182811771e-10 2.128566645e-10 2.233630697e-10 2.252550669e-10 5.440109653e-10 1.744029493e-10 2.40566686e-10 5.497122626e-11 4.056423814e-11 2.335208688e-10 3.294406739e-10 5.600060329e-10 3.179933938e-10 3.621553614e-10 1.453337301e-10 1.155832977e-10 1.828129919e-10 1.286226613e-10 1.736662059e-10 1.465705344e-10 2.911746898e-10 1.694293635e-10 1.038736158e-10 2.315511252e-10 3.425859063e-10 3.979829776e-10 7.985137811e-11 2.638248512e-10 1.047780629e-10 1.368600177e-10 1.455973274e-10 1.551391261e-10 1.615950842e-10 1.182170114e-10 3.584953007e-10 9.839748916e-11 3.879972199e-10 1.569722244e-10 2.438688666e-10 4.21130063e-10 2.405967618e-10 2.830504541e-10 5.298964314e-10 2.776677048e-11 5.058375576e-10 1.005743123e-10 6.836406811e-10 3.41892101e-10 1.130384713e-10 2.145943994e-10 2.173965078e-10 3.215537203e-10 3.319361189e-10 1.068756619e-10 5.19031206e-10 7.79872654e-11 4.476266733e-10 1.57263887e-10 1.084555287e-10 2.529037652e-10 6.072233015e-11 2.232126409e-10 2.193337926e-10 1.26256235e-10 2.034698141e-10 2.51936333e-10 8.50329973e-11 2.75507918e-10 9.309564581e-11 +3.577727744e-10 2.788349044e-10 1.944912479e-10 5.383161336e-10 4.574008587e-10 2.385401792e-10 9.574925942e-11 2.964551572e-10 3.031989266e-10 3.263092494e-10 2.397644112e-10 8.704303438e-11 5.721622751e-11 1.299329583e-10 4.572883716e-10 2.323642256e-10 3.562507485e-10 2.840006954e-11 2.10642724e-10 3.475651626e-10 1.278467245e-10 1.913520528e-10 2.749977302e-10 1.855350425e-10 9.843357829e-11 2.235847668e-10 2.657430192e-10 2.631015992e-10 1.133496891e-10 1.923093285e-10 7.733677338e-11 3.852341736e-10 8.114061874e-11 1.259726741e-10 3.52372493e-10 1.948255713e-10 2.470072639e-10 2.132831313e-10 1.280475875e-10 2.262795347e-10 7.375047348e-11 9.396082494e-11 2.740887925e-10 1.813431626e-10 4.319716524e-10 3.037047282e-10 2.248247039e-10 1.170598019e-10 8.107314206e-11 3.309689435e-10 1.677692399e-10 2.563727161e-10 2.316000821e-10 1.466352212e-10 7.358429285e-10 5.197053126e-10 4.20076752e-10 2.216336793e-10 2.408526124e-10 2.434134875e-10 2.593966591e-10 5.283333686e-11 2.584930824e-10 2.742985793e-10 7.469500084e-11 4.337529877e-11 3.712532097e-10 1.135245952e-10 2.22790786e-10 1.574266301e-10 3.004478091e-11 1.601805262e-10 2.610666871e-10 2.267752986e-10 1.758744805e-10 1.645425643e-10 5.718184817e-11 9.473831515e-11 6.270879971e-11 1.733107638e-10 2.96526718e-10 1.380476643e-10 1.127686722e-10 1.268738371e-10 2.839025704e-10 8.684186356e-11 1.11631595e-10 1.503006058e-10 3.478695562e-10 3.788927217e-10 4.931441795e-10 2.09603333e-10 9.249699309e-11 2.669285268e-10 5.180161704e-10 6.497241909e-11 2.799364818e-10 3.038950093e-10 7.143984558e-10 3.951234796e-10 2.768187288e-10 2.909029923e-10 5.238967594e-10 2.448991817e-10 1.508513171e-10 5.053046571e-10 4.451872377e-10 2.374195428e-10 4.100670634e-10 2.071767435e-10 2.799949153e-10 2.462247221e-10 1.300589065e-10 8.21948861e-11 2.140576881e-10 9.017410317e-12 4.326886706e-10 6.170798515e-10 2.919568825e-10 4.956327375e-10 5.851826441e-10 8.77571499e-10 2.388725351e-10 4.542880878e-10 5.082976219e-10 4.804624406e-10 6.502477996e-10 1.168706047e-10 3.721306483e-10 3.7898703e-10 1.512216072e-10 1.153973949e-10 4.615712164e-10 2.005953051e-10 1.593117897e-10 5.591756418e-10 4.161914026e-10 1.690865614e-10 2.951701122e-10 4.546723962e-10 2.177850034e-10 1.063118297e-09 3.06349684e-10 2.328572713e-10 2.902507039e-10 4.108588337e-10 2.355303927e-10 2.948544355e-10 4.591233448e-10 4.706892361e-10 4.675156269e-10 1.532967099e-10 4.053326764e-10 6.675427429e-10 2.396513184e-10 9.388467821e-11 4.607427286e-10 3.750394247e-10 1.074888542e-10 1.816223735e-10 3.515007715e-10 2.62168627e-10 3.366936923e-10 2.970191453e-10 5.755369163e-10 3.911953757e-10 1.941831198e-10 3.195518493e-10 3.129488773e-10 4.474127852e-10 1.99900385e-10 3.884753682e-10 3.319621874e-10 3.209575705e-10 4.06987265e-10 1.667570756e-10 8.43845249e-11 3.719739926e-10 2.890275716e-10 4.469690617e-10 4.002219475e-10 5.098134686e-10 3.357998679e-10 5.245483431e-10 9.232171638e-11 4.968295539e-11 2.818294768e-10 2.642549683e-10 3.571224051e-10 1.914339506e-10 3.715964149e-10 2.015535251e-10 4.813718122e-10 7.197777889e-10 3.225663686e-10 6.338006961e-10 1.126018306e-09 5.535699446e-10 2.221377917e-10 5.151201013e-10 5.178972441e-10 1.684514094e-10 6.519943555e-10 3.302396504e-10 4.846424738e-10 4.721625577e-10 1.13078799e-10 4.019032882e-10 3.820076632e-10 3.138366335e-10 4.23043291e-10 2.598248083e-10 3.95100766e-10 4.986471411e-10 2.309032254e-10 1.567585421e-10 1.170398436e-10 3.310493738e-10 1.388122442e-14 1.771163837e-10 1.774879838e-10 6.687846641e-10 3.319531808e-10 7.082457159e-11 1.124999583e-10 1.638306663e-10 2.380299403e-10 1.617507483e-10 9.745531533e-11 2.128682965e-10 4.102941578e-10 4.144135076e-10 1.134993875e-10 1.010827259e-10 2.000020139e-10 9.035483744e-11 6.837785275e-11 5.691680353e-10 4.116986901e-11 1.213451862e-10 1.212626317e-10 1.188363518e-10 5.120019887e-10 4.651704984e-11 2.978623361e-10 2.633637276e-10 1.116873225e-10 2.147413411e-10 3.196269702e-10 3.549422791e-10 1.271564215e-10 9.297674132e-11 1.397904498e-10 2.78145293e-10 1.379982875e-10 2.457267246e-10 3.574946145e-11 2.559571899e-10 1.894438894e-10 2.458246534e-10 4.612449254e-10 2.521394076e-10 4.545690179e-10 1.884141589e-10 1.839493877e-10 9.477901995e-11 1.758079305e-10 1.221075657e-10 3.305362399e-10 2.253981961e-10 8.575596202e-11 4.578166521e-10 2.100590207e-10 1.552396061e-10 1.711596505e-10 2.058305308e-10 3.573082685e-10 1.081609171e-10 8.99099223e-11 3.257639399e-10 1.88945412e-10 1.996731312e-10 2.913485438e-10 1.193798257e-10 2.322775347e-10 1.289717099e-10 2.044974564e-10 1.676150324e-10 3.614006101e-10 1.65393083e-10 8.944705538e-11 1.919170275e-10 3.187463291e-10 3.058458976e-10 1.69430417e-10 6.110152478e-11 2.308448653e-10 2.849967379e-10 1.793846775e-10 2.474903326e-10 +9.613104391e-11 5.257629022e-10 1.075149632e-10 3.717491088e-11 1.912921218e-10 8.621156777e-11 1.790940334e-10 1.578464997e-10 3.128215032e-10 1.285920596e-10 2.379982153e-10 1.019888304e-10 3.122182318e-10 4.757661587e-11 1.276913445e-10 1.052502521e-10 1.336576138e-10 1.026991035e-10 1.465473325e-10 4.238843023e-10 2.735374379e-10 1.528390671e-10 2.56656267e-10 3.861707996e-10 3.706427435e-10 2.356801591e-10 1.49625609e-10 3.473864635e-10 1.350048755e-10 3.060735289e-10 8.474698367e-11 4.665351066e-10 2.107699828e-10 3.062837896e-10 2.802760251e-10 4.466019993e-10 8.991197024e-11 3.099054241e-10 2.710987688e-10 3.219738478e-10 9.078327373e-11 4.502381279e-10 2.142383667e-10 3.974166152e-10 2.093725877e-10 1.568321165e-10 2.853580061e-10 1.580584626e-10 1.777456899e-10 2.543699461e-10 1.544146877e-10 2.252155975e-10 3.562536122e-10 2.552926363e-10 1.173086328e-10 5.533495509e-10 4.846516395e-10 2.300144505e-10 3.851180972e-10 6.85733492e-11 1.556683806e-10 1.056025375e-10 2.49096902e-10 1.665103611e-10 2.073616539e-10 3.286040787e-10 1.233111589e-10 2.499721355e-10 5.649306145e-10 1.349674854e-10 2.354192175e-10 9.461888109e-11 2.307952524e-10 1.274629107e-10 1.613971379e-10 2.329481142e-10 1.725265135e-10 2.645171011e-10 3.526449981e-10 3.075983921e-10 5.729240195e-10 3.554159158e-10 2.320522121e-10 2.248208959e-10 4.848234532e-11 9.261045021e-11 1.351159507e-10 3.915324093e-10 3.516723018e-10 2.423299664e-10 2.892012568e-10 2.550733695e-10 1.986018351e-10 5.593642823e-10 2.474432164e-10 3.185464497e-10 3.757398957e-10 3.396835388e-10 4.075972748e-10 3.163147128e-10 5.522490496e-10 2.929052868e-10 4.898468479e-10 1.083085922e-10 2.12167298e-10 9.335159364e-11 5.902383032e-10 3.042476035e-10 2.132625968e-10 5.382483142e-10 4.56542033e-10 3.27396488e-10 4.601521153e-10 4.837764818e-10 2.948391387e-10 5.201518095e-10 6.359172552e-10 3.258826145e-10 7.080233208e-10 3.644546147e-10 5.700227286e-10 1.536937694e-10 4.525943402e-10 5.838040835e-10 2.320901708e-10 6.885662408e-11 4.938862801e-10 4.10099285e-10 1.648495718e-10 4.975330368e-10 4.139274261e-10 1.009575628e-10 4.329593404e-10 3.659848496e-10 4.74995461e-10 2.023939965e-10 3.603056016e-10 4.000526623e-10 2.094324026e-10 4.314471839e-10 1.071817366e-10 3.063512288e-10 2.301470766e-10 2.442193848e-10 1.095513288e-10 2.438875524e-10 3.724785635e-10 3.193153169e-10 5.085614008e-10 7.066988165e-11 5.051391971e-10 3.689159134e-10 4.30910717e-10 1.97863704e-10 3.986200597e-10 3.950029726e-10 2.558436326e-10 4.152787608e-10 1.546944135e-10 7.701854678e-10 4.980468603e-10 3.187852085e-10 5.156970808e-10 2.328731905e-10 8.116894245e-10 9.216653642e-10 5.149068009e-10 4.280754723e-10 3.782487803e-10 4.609768369e-10 4.184537351e-10 5.350945759e-10 7.843883277e-10 3.41852314e-10 2.995208661e-10 4.617571049e-10 5.313768369e-10 3.73493243e-10 6.004644856e-10 3.944697337e-10 1.283868078e-10 6.91713576e-10 2.261016187e-10 3.555162161e-10 3.712548034e-10 1.617287973e-10 4.824571739e-10 2.492362402e-10 3.430578051e-10 4.782956513e-10 2.473487106e-10 4.574406291e-10 7.789846019e-10 5.339265818e-10 1.70803083e-10 4.987334908e-10 3.130323386e-10 3.324289188e-10 2.972290849e-10 8.207968101e-10 3.761459603e-10 3.654272882e-10 1.976489294e-10 1.186462879e-10 5.522534746e-10 3.252855274e-10 6.529128012e-10 2.843479525e-10 4.224705528e-10 1.708662335e-10 6.369798836e-10 3.819024192e-11 2.341905714e-10 2.124284249e-10 4.041392518e-10 2.098110645e-10 1.728384029e-10 5.593499007e-11 3.571580931e-10 2.928381168e-11 9.879259834e-11 2.450946387e-10 4.950871531e-10 3.413701518e-10 1.860085744e-10 2.12237127e-10 1.940855256e-10 7.264028508e-11 2.585815525e-10 2.379265696e-10 3.17394052e-10 8.647304363e-11 6.38198255e-11 2.795072054e-10 2.357923401e-10 4.873334156e-11 3.521382238e-10 2.281100948e-10 1.334483802e-10 2.099862131e-10 1.98083932e-10 4.292835046e-10 2.625627645e-10 3.16272788e-10 4.210334305e-10 4.283011455e-10 2.074978392e-10 2.199865768e-10 3.785028155e-11 1.39417521e-10 4.562948316e-10 2.323672242e-10 3.661064291e-11 9.078026377e-11 2.361387439e-10 3.334570451e-10 8.293410471e-11 2.076046199e-10 2.775581241e-10 1.409588758e-10 2.576748697e-10 2.911619757e-10 5.911690897e-10 5.412890539e-11 3.733098906e-10 2.527710761e-10 2.364557676e-10 3.602124264e-10 6.365539996e-11 3.35639044e-10 4.974669586e-10 2.033053102e-10 2.373926966e-10 1.217750564e-10 4.685622627e-10 2.101267024e-10 6.299153278e-11 2.753934069e-10 3.429917814e-10 2.507997633e-10 4.340766684e-10 2.319102961e-10 3.928648949e-10 1.921236541e-10 1.907732543e-10 2.69710741e-10 2.077992406e-11 2.622607872e-10 1.750187016e-10 8.950879646e-11 9.180945976e-11 3.178618028e-10 2.266168e-10 1.366372311e-10 3.27059998e-10 6.033642637e-10 4.531721744e-11 3.606595234e-10 3.978988542e-10 2.984787644e-11 +6.418665215e-11 5.0371589e-10 1.485901527e-10 1.557071638e-10 9.088869855e-11 8.366798272e-11 6.125488053e-10 5.393252835e-11 1.43240773e-10 1.476008174e-10 1.799677297e-10 1.842156666e-10 2.372709148e-10 2.911199905e-10 5.63298033e-11 2.003931039e-10 4.657985185e-10 9.563055363e-11 9.801532333e-11 4.86391654e-10 2.407821892e-10 3.201010661e-10 2.108311785e-10 2.019987707e-10 2.318862157e-10 7.617573624e-11 3.83598812e-10 2.300585132e-10 5.380816191e-10 4.434526301e-10 3.65996971e-10 3.602405918e-10 3.639806494e-10 4.244721097e-10 4.013892972e-10 4.669672314e-10 4.601476584e-10 2.862916081e-10 1.001320266e-10 2.000842981e-10 6.193190138e-10 3.139000798e-10 4.303800365e-10 3.425927607e-10 2.782832326e-10 1.60202663e-10 6.777367509e-10 4.424394995e-10 3.585727266e-10 2.171714752e-10 2.929717911e-10 3.380460645e-10 5.27222585e-10 2.725144058e-10 9.690816741e-11 3.342274753e-10 2.840000019e-10 2.601902964e-10 3.525476722e-10 1.739603372e-10 4.084835233e-10 4.26609473e-10 2.369075591e-10 4.984832158e-10 1.656577578e-10 3.874466502e-10 2.439106263e-10 8.546263321e-11 2.32722524e-10 2.867115207e-10 2.608621569e-10 3.195214326e-10 1.867353486e-10 4.479149405e-10 6.047967121e-10 8.347060269e-11 3.332437401e-10 2.601864827e-10 1.290817904e-10 1.574000446e-10 4.713358582e-10 2.040876589e-10 2.995892102e-10 2.384069005e-10 7.079502098e-11 2.292372646e-10 6.242381411e-10 2.210597545e-10 2.480440134e-10 6.984930459e-11 1.975985123e-10 3.381686366e-10 2.344583146e-10 3.230389541e-10 6.339997677e-10 2.321534073e-10 5.556431406e-10 4.774263787e-10 4.407405848e-10 4.216487315e-10 6.5683464e-10 8.883298937e-10 2.348370903e-10 4.345569236e-10 7.290484908e-10 2.165237829e-10 4.374604235e-10 6.350466396e-10 3.070048317e-10 5.881431277e-10 1.688274075e-10 5.184091481e-10 3.088436768e-10 3.194143829e-10 2.228460344e-10 5.989700447e-10 5.121449809e-10 1.861903934e-10 1.157064797e-10 1.705032619e-10 3.561950736e-10 4.49546247e-10 3.096705461e-10 8.89386492e-10 1.734998701e-10 2.659517734e-16 2.387888754e-10 4.094832199e-10 2.754616134e-10 5.854858342e-10 5.611432003e-10 1.999211882e-10 1.399629259e-10 7.655272254e-10 5.213770151e-10 2.204140746e-10 5.478611601e-10 1.651867741e-10 1.133775236e-10 2.823317511e-10 5.179871192e-10 3.827722228e-10 1.759775388e-10 2.55428524e-10 2.604289927e-10 2.837215211e-10 2.81544217e-10 4.151707634e-10 3.395435033e-10 4.496257537e-10 1.858810036e-10 2.247833975e-10 6.050791522e-10 6.756123264e-10 4.428009701e-10 5.231442868e-10 2.816786342e-10 3.0296103e-10 9.15849803e-10 1.495182969e-10 4.506424252e-10 1.026338822e-10 4.474026313e-11 5.664162345e-11 4.332084991e-10 3.092538238e-10 1.916811248e-10 1.278399538e-10 8.446475176e-10 2.019737671e-10 2.867721646e-10 1.551276098e-10 6.00219382e-10 2.852861259e-10 7.226508774e-10 3.04318435e-10 5.701621363e-10 3.752442917e-10 1.28492319e-10 3.335877782e-10 3.330389264e-10 4.40562508e-10 2.388125948e-10 2.428972028e-10 1.903789675e-10 3.402355914e-10 1.120230855e-10 4.564025161e-10 2.913181223e-10 8.678721918e-10 2.684449859e-10 8.943725956e-10 2.034748822e-10 5.771098216e-10 1.682089006e-10 3.871976374e-10 8.022614092e-10 7.307891206e-10 3.833106601e-10 4.327263583e-10 6.611368882e-10 5.217706336e-10 5.921548441e-10 4.166567348e-10 2.557375242e-10 3.03518067e-10 1.564185397e-10 4.309449175e-10 6.98067202e-10 1.197191593e-10 1.837146223e-10 2.084282258e-10 1.659690855e-10 2.521010878e-10 2.630744682e-10 2.16311785e-10 2.332974116e-10 2.914057677e-10 2.181952229e-10 5.042107743e-10 3.545523977e-10 4.629441983e-11 8.752829028e-11 1.128702258e-10 1.232921658e-10 4.458542136e-11 3.225441443e-10 3.538505377e-10 2.651774004e-10 3.523610236e-10 2.02266895e-10 1.759370637e-10 4.407397111e-10 2.196189382e-10 9.55275197e-11 1.025651364e-10 4.250818792e-11 1.067314843e-10 3.32951032e-10 2.058291701e-10 5.115458691e-10 1.88203054e-10 8.848815484e-10 1.4951531e-10 4.149985626e-10 1.715691306e-10 5.175117802e-10 5.197222411e-11 2.432976154e-10 2.113737316e-10 1.983597875e-10 2.800260992e-10 4.459560039e-11 3.390902969e-10 2.814960436e-10 1.943394831e-10 2.385368348e-10 2.576040887e-10 4.484568421e-10 2.638113317e-10 3.663578273e-10 2.852617482e-10 1.771940009e-10 1.919652248e-10 4.211132895e-10 1.238580606e-10 4.613764256e-10 1.98380507e-10 4.033304658e-10 1.956920374e-10 4.79804377e-10 3.784296954e-10 6.929846436e-10 1.691938877e-10 2.799313332e-10 5.201139636e-10 3.095720752e-10 4.074874566e-10 2.747556592e-10 1.94392917e-10 2.101136841e-10 7.223073179e-11 3.678067727e-10 1.329029011e-10 1.036083277e-10 3.273809801e-10 7.758167368e-11 2.409592608e-10 2.185013696e-10 4.790374895e-12 3.079219766e-10 2.934004103e-10 1.938239503e-10 1.067130393e-10 1.253054571e-10 1.842284847e-10 1.359839463e-10 2.360180114e-11 1.066956701e-10 1.058103428e-10 +3.412693755e-10 1.421928479e-10 1.383259356e-10 1.323798284e-10 1.502235534e-10 1.419568835e-10 2.767672939e-10 2.019103093e-10 2.519677752e-10 1.536780444e-10 4.485489046e-10 1.207113781e-10 2.330366551e-10 3.9177085e-10 5.609184806e-10 1.259424953e-10 2.444623837e-11 3.383878049e-10 2.776960455e-10 1.362948552e-10 1.679416155e-10 1.913305482e-10 1.549416231e-10 9.063634413e-11 1.728496843e-10 3.203045794e-10 3.704889096e-10 4.517152589e-10 3.144369319e-10 3.320827833e-10 1.751596193e-10 2.562709531e-10 2.734430369e-10 7.25802137e-11 1.37123514e-10 4.200322642e-10 1.809516626e-10 1.454646945e-10 2.865629755e-10 1.998724682e-10 2.927570218e-10 2.106876746e-10 1.783773521e-10 3.740045923e-10 2.427790319e-10 1.362936068e-10 1.238266542e-10 4.328232468e-10 2.946060636e-10 3.722124011e-10 2.048132763e-10 3.975763673e-10 1.740931241e-10 5.35277803e-10 2.095263526e-10 4.477345552e-10 2.015832878e-10 6.329845834e-10 3.218108467e-10 2.434931906e-10 1.525890495e-10 2.268317586e-10 1.346946753e-10 2.017997009e-10 3.255599096e-10 7.717688134e-11 6.419076101e-10 1.34791451e-10 2.775483905e-10 1.511353804e-10 1.531585067e-10 6.190471621e-10 2.356282117e-10 1.275871307e-10 2.837817232e-10 1.466442794e-10 2.957980966e-10 1.855681839e-10 7.896086061e-11 1.085152742e-10 2.978068647e-10 1.816255579e-10 1.88289147e-10 1.911937256e-10 4.880608881e-10 2.591196671e-10 1.725489005e-10 3.483744185e-10 2.514649421e-10 4.276289712e-10 3.600321236e-10 1.701111742e-10 2.854384616e-10 1.026187662e-09 4.295374764e-10 3.615905829e-10 4.038057691e-10 2.697930056e-10 8.870964543e-10 9.333290649e-10 3.514642226e-10 6.09338769e-10 7.302369578e-10 6.416639123e-10 6.602503806e-10 3.208146601e-10 3.204157153e-10 6.132342199e-10 5.647684681e-10 5.154894353e-10 4.679014051e-10 6.039631875e-10 4.473292439e-10 2.105149299e-10 1.954220852e-10 7.683649022e-10 2.535243338e-10 2.968075886e-10 3.890365966e-10 3.568503346e-10 4.797607671e-10 2.54339881e-10 2.172237792e-11 2.209665576e-10 3.276217658e-10 5.973501137e-10 3.829956432e-10 1.02525403e-09 4.886765478e-10 3.090183179e-10 5.956382325e-10 2.16532681e-10 4.796252586e-10 7.054658406e-10 3.088803465e-10 3.279228437e-10 4.869068955e-10 3.594325268e-10 6.207972674e-10 6.61002504e-10 4.356230907e-10 2.339944979e-10 2.706803808e-10 2.831672761e-10 5.061096416e-10 5.29248824e-10 1.774155049e-10 2.349488983e-10 3.784964222e-10 7.232320791e-10 2.288325827e-10 1.861976887e-10 1.764824926e-10 3.575863789e-10 3.294630118e-10 5.622953301e-10 2.115582378e-10 1.770663435e-10 3.562614692e-10 9.669695494e-11 4.516994115e-10 1.749194792e-10 4.030691643e-10 1.248691914e-10 4.137617965e-10 3.43522115e-10 4.826838501e-10 5.87362428e-10 4.027539586e-10 4.483883136e-10 4.47032506e-10 6.126679301e-10 4.938945825e-10 2.991018308e-10 3.132498296e-10 2.667217157e-10 3.273573595e-10 6.058558058e-10 3.04412584e-10 5.066681085e-10 1.853591283e-10 3.583864983e-10 4.302539096e-10 5.219409734e-10 1.717948928e-10 2.872414762e-10 4.802943019e-10 4.119438078e-10 2.548042865e-10 9.981151674e-10 4.102428034e-10 2.271495015e-10 5.071273761e-10 7.284732934e-10 3.555351135e-10 3.25496815e-10 5.645337e-10 6.330319032e-10 4.710015941e-10 4.733062189e-10 5.485467679e-10 7.42842915e-10 7.093726986e-11 3.0628145e-10 5.87675198e-10 4.13613733e-10 1.336443424e-10 5.558393713e-10 5.517604706e-10 3.221270383e-10 5.677967531e-10 6.862379199e-10 4.309330052e-10 3.497002521e-10 3.350515478e-10 2.042875343e-10 8.442818795e-11 2.505435779e-10 1.536145515e-10 2.649132053e-10 1.035687437e-10 7.722688996e-11 1.958384718e-10 3.222112996e-10 3.409746393e-10 1.754284807e-10 4.34245356e-11 1.152256017e-10 4.724585164e-10 4.08408952e-10 3.539186148e-10 1.806989361e-10 2.500835855e-10 4.275535993e-10 2.187330236e-10 2.294619921e-10 1.29096998e-10 2.780944348e-10 2.536464569e-10 5.264536848e-10 6.814555561e-10 6.691055975e-11 4.125192929e-10 3.757947965e-10 5.223063207e-10 1.215588972e-10 2.684853965e-10 2.148557284e-10 3.932226404e-10 3.660889948e-10 1.854221572e-10 2.507563369e-10 5.213543866e-10 2.065021547e-10 1.740857873e-10 1.967952613e-10 1.034945018e-10 5.343829722e-10 1.535557487e-10 3.088190315e-10 1.030345941e-10 8.06219414e-11 2.771640667e-10 2.506837138e-10 3.765515766e-10 3.325022611e-10 4.262827139e-10 1.612846624e-10 3.536516003e-10 2.172365141e-10 5.730188304e-11 2.446330289e-10 3.614832217e-10 3.384308917e-10 1.730779382e-10 9.093526889e-11 1.194182741e-10 1.66846585e-10 4.606902894e-10 2.036932271e-10 2.191345604e-10 2.293652418e-10 1.012503989e-10 3.062432962e-10 9.832464023e-11 6.731849651e-11 2.839722624e-10 1.323540393e-10 1.894759002e-10 2.572167331e-10 6.78705357e-11 2.168589914e-10 1.867056236e-10 2.170153818e-10 5.048272711e-10 1.633085187e-10 1.235891386e-10 4.305377571e-10 2.18356034e-10 2.636281468e-10 +1.200309842e-10 1.521326191e-10 2.842404311e-10 6.196928108e-11 5.647945815e-10 2.125536745e-10 1.259057332e-10 9.024285266e-11 1.627640567e-10 2.829468461e-10 9.812973395e-11 7.010062557e-11 1.886900397e-10 2.21010953e-10 2.786666843e-10 2.018809552e-10 6.508790755e-11 1.132015636e-10 2.849558452e-11 1.58785209e-10 2.306711775e-10 1.659395032e-10 9.037315344e-11 8.550247185e-11 3.808377872e-10 6.904268642e-11 9.783753411e-11 2.276237446e-10 1.982126005e-10 1.30613658e-10 4.3996434e-10 4.677539835e-10 3.889859317e-10 2.335898069e-10 2.75541343e-10 5.514775116e-10 2.512647374e-10 1.195557766e-10 2.568524242e-10 5.31130919e-10 6.037644412e-10 6.884080893e-10 1.652091074e-10 4.158262956e-10 2.710620837e-10 4.03615787e-10 1.78751341e-10 1.909495118e-10 4.705395457e-10 6.268212569e-10 3.305764788e-10 1.802817936e-10 2.485226375e-10 4.229243189e-10 3.110622805e-10 2.006430004e-10 2.735191163e-10 4.171639772e-10 1.920614761e-10 4.546260577e-11 4.923679845e-10 1.780601335e-10 7.660881827e-10 1.553362605e-10 4.81228831e-11 1.001780162e-09 2.100821782e-10 2.139165335e-11 8.519102496e-11 1.536954622e-10 1.530304792e-10 1.380142899e-10 2.626711716e-10 1.439592183e-10 2.109517992e-10 1.142694976e-10 2.771367056e-10 3.137498814e-10 1.916741631e-10 4.210107463e-10 1.981628777e-10 5.603794679e-12 2.213626266e-10 4.542403473e-10 3.298248554e-10 1.909332528e-10 2.062108535e-10 4.459303588e-10 8.16964125e-11 2.307326452e-10 5.288269256e-10 2.590978888e-10 3.033170707e-10 9.639379666e-11 3.881234054e-10 4.76568173e-10 2.988306154e-10 1.700463831e-10 7.360391479e-10 2.046531884e-10 5.191964841e-10 2.89637972e-10 9.053197061e-11 6.793104894e-10 6.13385926e-10 3.357391842e-10 2.631646502e-10 2.154378094e-10 2.800511767e-10 7.227728664e-10 3.064713215e-10 4.385080211e-10 3.252179917e-10 4.851539497e-10 4.232468628e-10 5.054938801e-10 2.064758371e-10 6.21208347e-10 5.343930248e-10 3.980135322e-10 4.747071137e-10 2.815748124e-10 1.153491827e-09 2.202845127e-10 4.720414214e-10 4.337998315e-10 6.334606847e-10 2.965900026e-10 5.311070321e-10 2.11482049e-10 7.913100068e-11 2.128903466e-10 5.990629288e-10 2.836366062e-10 4.092681938e-10 6.048530986e-10 3.086282747e-10 2.402368917e-10 6.061882187e-10 4.51957813e-10 2.534145287e-10 5.294295299e-10 3.854854023e-10 5.098162637e-10 3.722989521e-10 2.296199792e-10 8.895668785e-10 1.172753184e-11 4.33728995e-10 3.765959471e-10 5.792523874e-10 1.589008369e-10 6.883398567e-10 3.709618039e-10 2.134195839e-10 1.107627311e-10 4.078768555e-10 4.436931034e-10 1.810940081e-10 5.047345114e-10 5.473475507e-10 1.59241012e-10 2.320147996e-10 5.189840149e-10 3.930346276e-10 2.918558328e-10 5.078246383e-10 7.540108374e-10 3.144939788e-10 3.302482231e-10 2.497229035e-10 6.125000318e-10 6.108093537e-10 3.811105738e-10 2.726746153e-10 8.006090485e-10 5.167284281e-10 3.192127932e-10 2.350700657e-10 5.844802577e-10 5.52883712e-10 8.743926854e-10 9.175981039e-10 9.206911204e-11 9.67026637e-11 1.183615713e-10 5.349453754e-10 1.742016935e-10 4.161481891e-10 4.572817955e-10 1.378510508e-10 4.532880324e-10 3.274009665e-10 4.535055358e-10 4.0413985e-10 1.082531667e-09 2.838178868e-10 1.257240942e-09 7.255600392e-10 3.041732629e-10 6.593575707e-10 2.579118857e-10 4.734617612e-10 3.974661876e-10 5.585014953e-10 8.647256158e-10 5.630012356e-10 1.630548929e-10 2.281512342e-10 3.529003523e-10 5.688211614e-10 1.635785134e-10 2.411640615e-10 2.278005256e-10 3.119535458e-10 2.116304685e-10 1.881842056e-10 1.214356269e-10 3.825264971e-10 1.267813628e-10 7.601191616e-11 1.305683853e-10 3.298317021e-10 4.41095108e-10 2.63378636e-10 5.529098605e-10 2.540793882e-10 2.805475103e-10 1.882044315e-10 2.731113157e-10 2.555166232e-10 1.854130166e-10 3.062494208e-10 4.054707348e-10 6.350308675e-10 1.676211818e-10 2.415363528e-10 4.71947153e-10 3.503623575e-10 5.430904208e-10 5.286477251e-11 2.233657998e-10 1.746069923e-10 4.078563331e-10 2.937072307e-10 4.125299829e-10 3.752764408e-10 4.093081838e-10 1.745789002e-10 2.969269331e-10 4.042155722e-10 1.780833162e-10 2.361811326e-10 2.750865479e-10 2.187063093e-10 3.74573362e-10 3.232083204e-10 2.503413639e-10 4.033626047e-10 5.41282529e-10 1.727582384e-10 2.057410526e-10 1.373426168e-10 2.900360156e-10 3.463780137e-10 6.232033533e-10 1.473334009e-10 5.571424161e-10 1.390645327e-10 2.837661088e-10 2.354751703e-10 1.710320905e-10 4.656395434e-10 2.696658793e-10 1.63225842e-10 3.823955609e-10 3.500267439e-10 4.264449809e-10 2.786807164e-10 1.442825894e-10 3.292435223e-10 1.000908251e-10 2.679310769e-10 1.905229184e-10 4.764664968e-10 3.610392935e-10 1.829397018e-10 1.24117039e-10 1.30083224e-10 1.978140121e-10 1.631614918e-10 1.277877864e-10 3.077152981e-10 6.703977535e-11 2.951188675e-10 1.147364079e-10 9.796260441e-11 2.226676919e-10 3.8858202e-10 3.975850772e-10 +1.001274541e-10 6.074540546e-11 5.521010016e-10 4.988394757e-10 2.67001808e-10 2.936553823e-11 1.843394328e-10 3.602600455e-10 1.82262794e-10 1.199240219e-10 2.34529439e-10 3.643443855e-10 1.084305419e-10 3.516663563e-10 8.157498544e-11 2.788519876e-10 3.262404037e-10 5.584247286e-10 7.546344933e-11 6.281302362e-11 1.433255016e-10 2.932311934e-10 2.040833945e-10 2.684559823e-10 1.925486637e-10 7.695030374e-10 1.657052228e-10 2.34465922e-10 2.92877625e-10 4.239771904e-10 7.1592965e-10 2.576879908e-10 1.297842856e-10 4.591673126e-10 3.428014899e-10 3.415324199e-10 4.064388442e-10 2.55498678e-10 6.404365213e-10 3.01884891e-10 9.850485807e-11 1.805964299e-10 4.586177598e-10 1.388292268e-10 5.352473767e-10 1.916067329e-10 5.090056858e-10 4.254102101e-10 1.08416987e-10 3.595214701e-10 1.183690583e-10 2.645999836e-10 2.837118566e-10 5.415002726e-10 3.430534459e-10 2.763458758e-10 1.151488968e-10 6.843579012e-10 2.439093106e-10 3.117804364e-10 6.603860794e-10 2.194158125e-10 5.608429006e-10 2.518223843e-10 3.474171521e-10 3.177754594e-10 1.703979165e-10 3.018105654e-10 9.247791155e-11 4.218668926e-10 3.885811372e-10 3.835141862e-10 7.667373777e-11 8.073937992e-10 7.374642543e-10 2.173166072e-10 1.290982487e-10 1.263372525e-10 8.017288585e-11 3.324876204e-10 1.734277276e-10 3.212824368e-10 6.561542109e-11 3.027267241e-10 1.90547173e-10 1.631958868e-10 2.816236463e-10 4.550702164e-10 3.137612427e-10 4.308464618e-10 3.949805476e-10 4.621607423e-10 5.311400917e-10 4.221070722e-10 2.630737853e-10 6.23211556e-10 5.294203216e-10 2.690800828e-10 1.013872795e-09 3.035117041e-10 8.90524551e-10 3.128193113e-10 6.907780075e-11 4.555685766e-10 6.566766006e-10 1.854760588e-10 4.336463869e-10 7.425615496e-10 5.574392921e-10 1.226077985e-10 3.368936938e-10 8.817651813e-10 2.703712783e-10 4.876563429e-10 4.422509862e-10 5.099105747e-10 4.255000178e-10 6.118790908e-10 5.100432185e-10 2.929381872e-10 9.793184831e-10 4.268629448e-10 3.005909235e-10 4.355453603e-10 3.519797573e-10 6.441144024e-10 6.411688879e-10 3.954050144e-10 3.708285819e-10 5.064644835e-10 2.661576505e-10 4.777635367e-10 3.820291864e-10 4.514333686e-10 3.437298147e-10 7.648917668e-10 3.084745818e-10 2.980941906e-10 4.256151572e-10 1.864807878e-10 6.355888432e-10 7.318700047e-10 3.547120713e-10 3.982560571e-10 2.017038626e-10 6.529321549e-10 1.334715187e-10 4.110770674e-10 2.574508164e-10 4.91350967e-10 6.217333588e-10 2.510931049e-10 3.811225263e-10 2.298679668e-10 3.417873783e-10 1.01729504e-10 4.913921723e-10 1.934333532e-10 3.793119413e-10 1.052785627e-10 5.912495182e-10 4.308934977e-10 1.911346964e-10 3.34872879e-10 3.319123276e-10 8.088217169e-10 2.026894364e-10 3.109577934e-10 1.892565156e-10 1.106769188e-10 3.862432795e-10 4.057472436e-10 1.087426563e-09 5.413511231e-10 2.018130039e-10 2.532851901e-10 2.328216545e-10 4.030094251e-10 2.75007991e-10 3.128729184e-10 2.412124945e-10 5.735981768e-10 1.053164481e-09 4.071283616e-10 3.222036286e-10 7.689340307e-11 6.03839883e-10 6.211378932e-10 4.622765332e-10 4.229607936e-10 4.155475392e-10 7.749168528e-10 4.472653754e-10 2.467311367e-10 6.420627485e-10 3.266581515e-10 4.754946293e-10 4.609973552e-10 4.101564992e-10 4.450665272e-10 8.527457664e-10 8.583303692e-10 1.995984899e-10 2.505101301e-10 6.705300707e-10 1.163157486e-09 6.508367845e-10 6.999789463e-10 4.093376819e-10 1.020116622e-09 2.973205433e-10 2.235708995e-10 5.180266059e-10 2.672581926e-10 6.625726502e-11 1.545352363e-10 3.816720833e-10 8.832295114e-11 1.916260916e-10 1.626329172e-10 1.615241647e-10 4.643620429e-10 2.422092706e-10 1.123445131e-10 4.460289529e-10 4.917956795e-10 5.849879395e-11 4.51677786e-10 2.962515198e-10 5.134198775e-10 3.307018318e-10 3.218469713e-10 1.499855394e-10 2.431521738e-10 2.115820775e-10 1.479613552e-10 2.587873036e-10 5.048443931e-10 4.079876356e-10 1.780507442e-10 3.232462253e-10 9.079297434e-12 3.79470684e-10 3.711123219e-10 2.454727088e-10 4.684537511e-10 3.086157531e-10 1.510268244e-10 2.460338065e-10 4.267477324e-10 2.977743564e-10 1.303418198e-10 3.031457409e-10 2.446949531e-10 5.498416302e-10 4.567710596e-10 8.570764228e-11 7.652677032e-10 3.687890899e-10 4.29175933e-10 7.78854478e-11 3.188142012e-10 2.414729168e-10 1.175860687e-10 1.474142061e-10 1.162765049e-10 3.711308599e-10 4.285449278e-10 6.452717472e-10 4.079813851e-10 2.428597591e-10 3.859718228e-10 3.86392734e-10 5.077641742e-10 2.317721374e-10 2.886288537e-10 1.101150878e-10 4.381241392e-11 2.116378329e-10 2.640813104e-10 2.364670575e-10 1.351516747e-10 1.758279741e-10 3.033445586e-10 1.02437196e-10 3.201422993e-10 3.160128235e-10 9.926835331e-11 5.171299819e-10 3.945545038e-11 1.072862388e-10 3.351917168e-10 4.168703302e-10 2.766249947e-10 8.857472948e-10 2.162199625e-10 1.984741183e-10 8.147417878e-11 2.742867572e-10 2.447652363e-10 +2.400098758e-10 1.561154161e-10 1.139519313e-10 2.772906139e-10 5.324134918e-10 1.941830648e-10 3.028925917e-10 8.462516758e-11 1.159516812e-10 1.242210071e-10 1.869528831e-10 4.998553994e-10 2.954063586e-10 1.195751174e-10 1.162207027e-10 1.414023496e-10 8.998835842e-11 2.361083084e-10 2.055853616e-10 1.348749748e-10 1.972571875e-10 1.518135638e-10 1.264992114e-10 8.449145638e-11 2.985680167e-10 3.638802116e-10 2.317383564e-10 2.049370254e-10 3.319985964e-10 4.159062649e-10 2.920150964e-10 3.357033939e-10 2.032121689e-10 3.639805928e-10 7.227433419e-10 3.540610489e-10 2.893544287e-10 3.261932871e-10 2.729757537e-10 5.003850364e-10 1.941174819e-10 3.614888624e-10 3.17300916e-10 1.668866878e-10 2.194939868e-10 5.563131156e-10 1.156521642e-10 2.386885346e-10 2.275244431e-10 1.012122564e-10 1.209318908e-10 2.686445265e-10 2.084607539e-10 2.550430553e-10 5.415060044e-10 1.635100378e-10 4.731359113e-10 2.736104122e-10 7.03064333e-10 1.987291654e-10 2.875461299e-10 4.926717088e-10 2.010973376e-10 6.488488668e-10 7.152056252e-10 3.324932817e-10 1.439026017e-10 3.283983857e-10 2.708649494e-10 4.272227156e-10 2.614872798e-10 3.1009421e-10 4.195122978e-10 6.022727579e-10 8.788078974e-11 8.644918766e-12 4.33802596e-10 1.661321009e-10 4.663820335e-11 3.481679425e-10 4.121980947e-10 2.762844031e-10 1.013791866e-09 2.50958314e-10 5.939194261e-10 6.291165025e-10 5.170791417e-10 7.832989981e-11 5.579953123e-10 7.134359222e-10 4.150879131e-10 3.706468868e-10 1.764039115e-10 3.796258277e-10 4.758986569e-10 1.193766753e-09 4.237737165e-10 9.675690292e-10 1.673201714e-10 9.678905969e-10 2.341259861e-10 9.538871867e-10 3.603232249e-10 3.011623433e-10 5.325455359e-10 3.424886043e-10 5.502972253e-10 7.417656046e-10 4.920174777e-10 3.010653234e-10 7.211673991e-10 1.109187595e-10 1.085050448e-09 4.106563475e-10 2.782443025e-10 3.398324198e-10 4.496738612e-10 4.359156883e-10 3.537106417e-10 3.575743921e-10 5.212000226e-10 3.970973147e-10 3.17149591e-10 3.962482182e-10 3.342188627e-10 4.335084741e-10 3.592820984e-10 3.043686936e-10 3.568981794e-10 5.666465889e-10 4.359476686e-10 4.963373433e-10 2.079045918e-10 6.412367119e-10 1.637633105e-10 2.452035021e-10 3.071704376e-10 4.934652893e-10 2.648569527e-10 3.699629312e-10 3.471225143e-10 9.519688423e-11 2.846672061e-10 3.088564983e-10 4.658967188e-10 5.097393638e-10 1.915817236e-10 4.232722892e-10 4.000136296e-10 1.066762509e-09 6.335431549e-10 2.857897294e-10 6.140899722e-10 6.866296111e-10 5.522362258e-10 3.683720426e-10 4.633750751e-10 3.016577226e-10 1.72424024e-10 3.547843423e-10 3.991342431e-10 2.08330595e-10 2.237451011e-10 6.688042923e-10 4.093651249e-10 7.842781909e-10 1.83281369e-10 2.383541951e-10 4.246170249e-10 2.689225378e-10 3.360880541e-10 3.278484279e-10 8.288829496e-11 1.78751598e-10 4.577052148e-10 8.417339101e-10 3.895952589e-10 6.415390816e-10 3.620957337e-10 5.439827452e-10 2.647088677e-10 1.366834077e-10 5.083149416e-10 2.612822114e-10 2.878455137e-10 3.519191252e-10 2.431352273e-10 2.440865971e-10 4.469048411e-10 1.05201948e-10 4.097456239e-10 7.868663081e-10 2.081492502e-10 4.4944871e-10 3.290955348e-10 4.155260431e-10 5.708020031e-10 4.085722724e-10 4.652405728e-10 5.606065216e-10 6.682965188e-10 7.478779814e-10 8.059818425e-10 4.004667489e-10 3.588491704e-10 5.388599803e-10 4.760139468e-10 4.051407331e-10 3.464755204e-10 6.178852559e-10 9.945487546e-10 4.911928369e-10 3.177175676e-10 3.62844476e-10 6.03431439e-10 1.028044293e-10 4.816972781e-11 1.572194962e-10 9.678778728e-11 1.219322083e-10 4.706946942e-10 2.998601731e-11 2.311357518e-10 2.596912083e-10 1.188689039e-10 4.047922993e-10 2.903100427e-10 2.690938637e-10 1.030775067e-10 4.976892595e-10 2.541995596e-10 3.981764875e-10 3.024180971e-10 1.958299033e-10 1.144446004e-10 3.372150694e-10 2.585021919e-10 1.04929088e-10 3.051447733e-10 7.827149456e-10 1.027866619e-10 4.579159729e-10 4.545854336e-10 2.575687433e-10 7.252635702e-10 2.971294142e-10 2.601736648e-10 3.839182641e-10 3.999396648e-10 2.174225237e-10 2.393365745e-10 3.18816789e-10 6.65477994e-11 2.479948404e-10 1.826711198e-10 7.203835855e-10 2.751542067e-10 1.825652948e-10 2.844525316e-10 2.616846588e-10 1.244346552e-10 5.15880839e-10 3.209474156e-10 1.19330928e-10 2.578974398e-10 5.227929349e-10 1.859895666e-10 1.805019256e-10 3.816837504e-10 1.400539468e-10 1.235698788e-10 3.763089858e-10 3.838307555e-10 1.758984493e-10 2.664543022e-10 1.746820331e-10 9.358881209e-11 1.404729416e-10 3.254962933e-10 3.110062854e-10 2.568139288e-10 3.722297492e-10 2.045596107e-10 3.731495499e-10 1.052536688e-10 2.999122248e-10 1.85947255e-10 9.148677489e-11 2.014457661e-10 1.943711772e-10 3.153916067e-10 1.832715991e-10 2.894324056e-10 1.890729104e-10 1.1482834e-10 2.683765713e-10 2.929967043e-10 1.509576427e-10 3.708562803e-10 3.24007653e-10 +1.110002164e-10 2.283671037e-10 3.46788913e-10 4.383866038e-10 2.40883717e-10 4.202311939e-10 3.687676451e-10 3.921233256e-10 3.471274959e-10 4.026593294e-10 5.291365378e-10 4.737427662e-10 2.667175994e-10 6.127560509e-11 3.727057315e-10 2.433477014e-10 2.28824452e-10 1.962258259e-10 8.663038246e-11 3.989162982e-11 1.205648585e-10 1.758744407e-10 2.892530664e-10 2.179042245e-10 8.298105117e-11 2.870624236e-10 5.644233012e-10 2.804397959e-10 1.9395137e-10 1.737735636e-10 1.269284597e-10 2.648104076e-10 3.411658559e-10 4.618909371e-10 5.291211171e-10 1.281602139e-10 4.185837784e-10 2.921683635e-10 2.893816728e-10 4.810537557e-10 2.899181613e-10 1.602935078e-10 2.880096694e-10 4.33390944e-10 1.246692331e-10 4.560460289e-10 9.10963517e-11 2.930056421e-10 2.409263496e-10 1.386759148e-10 5.28345319e-10 1.097038833e-10 2.158328696e-10 3.894694323e-10 5.87774845e-10 3.18866063e-10 4.752221292e-10 1.34604983e-10 4.781636179e-10 2.180053309e-10 1.917085013e-10 1.501927887e-10 5.474176243e-10 1.634568157e-10 1.843789015e-10 1.353453133e-10 6.030405932e-10 1.764612366e-10 3.154047364e-10 3.841657551e-10 2.344355844e-10 8.352968455e-10 4.33510504e-10 1.482230326e-10 3.904682245e-10 5.270139245e-10 1.721959543e-10 4.333766962e-10 1.648848584e-10 5.224321892e-11 5.675076273e-10 3.626823677e-10 2.32641056e-10 2.807440366e-10 2.49913887e-10 4.885895487e-10 6.980348575e-10 5.629996969e-10 7.017219277e-10 5.49834615e-10 1.874387863e-10 3.252184984e-10 3.817740367e-10 4.661303698e-10 1.091541456e-09 9.037988463e-10 8.759671561e-10 1.243394563e-09 2.000408475e-10 2.629760043e-10 3.407269252e-10 4.422425588e-10 4.442138654e-10 7.052933315e-10 5.791381764e-10 1.100088126e-09 3.008654911e-10 3.611708748e-10 1.160190461e-09 4.621451656e-10 8.178211353e-10 7.001930749e-10 2.328277847e-10 6.853812517e-10 4.466882099e-10 3.642265703e-10 6.215380487e-10 1.619917348e-10 5.326007109e-10 4.805566219e-10 3.311261975e-10 3.383235963e-10 5.240300005e-10 1.516699695e-10 3.095805104e-10 3.991573969e-10 4.612678209e-10 5.387791115e-10 1.777863603e-10 3.243299346e-10 3.735461778e-10 3.930914619e-10 3.123078024e-10 7.129416392e-10 3.877333681e-10 3.611554484e-10 5.253153456e-10 4.855455385e-10 6.251677228e-10 3.583771269e-10 4.938870593e-10 3.311957678e-10 1.010788684e-09 6.288996093e-10 2.266731035e-10 4.07623707e-10 3.201563862e-10 4.972840565e-10 3.37258486e-10 4.164726024e-10 5.870842305e-10 4.305335353e-10 2.790619493e-10 8.58293121e-10 3.088833856e-10 4.493529454e-10 2.822926829e-10 3.967915819e-10 4.654024595e-10 4.393142998e-10 3.100019052e-10 3.308112631e-10 5.888186338e-10 4.391972595e-10 3.338868055e-10 4.312544838e-10 3.874570978e-10 5.636956603e-10 5.41766794e-10 4.027554282e-10 4.069660027e-10 8.942155294e-10 6.099661449e-10 2.746862099e-10 7.038845364e-10 3.212254669e-10 3.772802806e-10 5.888858527e-10 3.262429387e-10 3.542492473e-10 5.491397607e-10 4.012348247e-10 6.400444329e-10 6.632897067e-10 4.660789255e-10 4.08182065e-10 4.864451549e-10 7.432084624e-10 3.838570056e-10 3.877198824e-10 7.031019312e-10 4.840508949e-10 3.177590841e-10 5.058535983e-10 7.360884967e-10 1.736515759e-10 4.033327937e-10 5.492899035e-10 6.717810705e-10 7.051523678e-10 7.93314013e-11 7.568700687e-10 6.455665521e-10 6.295673722e-10 1.167690912e-09 4.125491014e-10 4.913018515e-10 3.996690379e-10 4.503997753e-10 1.782039016e-10 7.11752167e-10 8.214553875e-10 5.292408943e-10 2.441226016e-10 8.900849008e-10 2.340178608e-10 2.391274105e-10 5.422662684e-10 1.779667092e-10 6.525909686e-11 1.525103667e-10 1.551593374e-10 3.314764669e-10 1.607929404e-10 3.11137716e-10 4.917694217e-10 2.60243257e-10 1.246843372e-10 4.031708335e-10 2.574471008e-10 4.633569933e-10 5.572156254e-10 3.390910287e-10 7.37781458e-11 2.586022481e-10 3.785023017e-11 5.836357782e-10 2.713334354e-10 3.632892069e-10 3.278974141e-10 3.520959137e-10 1.136686975e-10 3.458316831e-10 3.741615632e-10 8.064862669e-11 2.308841392e-10 3.97890153e-10 4.484776507e-10 3.405712324e-10 2.630256533e-10 2.361130237e-10 3.414986144e-10 1.679615022e-10 2.769882253e-10 1.779060189e-10 1.654643088e-10 4.394541949e-10 2.518866327e-10 3.103001409e-10 5.267444283e-10 4.726993163e-10 3.430325657e-10 3.458863544e-10 2.244070277e-10 2.62367535e-10 2.412678895e-10 5.778289865e-10 3.31490987e-10 2.661748143e-10 1.140856251e-10 8.543725573e-11 2.405209281e-10 3.58982338e-10 9.302176529e-11 3.812639191e-10 2.223159309e-10 2.438475426e-10 2.775192354e-10 3.764720356e-10 6.612439933e-11 1.928298948e-10 4.010808464e-10 1.606237685e-10 2.957463883e-10 3.476102721e-10 2.171801716e-10 2.25814751e-10 1.736906855e-10 2.062603872e-10 9.704968272e-11 1.222422806e-10 5.18263698e-10 2.304705667e-10 7.235132165e-11 4.167030907e-10 1.601309486e-10 2.394827301e-10 4.480411829e-10 4.009084539e-10 7.726834193e-11 +3.81299901e-10 2.795851229e-10 3.513549571e-10 9.46225934e-11 5.850911358e-10 2.831067059e-10 1.724266899e-10 1.240223656e-10 2.269058655e-10 8.492232994e-11 1.791708778e-10 1.269342649e-10 1.3805835e-10 2.80685919e-10 2.096428405e-10 1.135864845e-10 5.689948991e-10 2.168709484e-10 1.420481219e-10 2.907754184e-10 6.346636854e-11 1.266640331e-10 3.218852983e-10 1.038994889e-10 3.268724984e-10 1.660547394e-10 1.45105165e-10 1.12030982e-10 2.260002293e-10 1.213410703e-10 4.837861542e-10 2.249874004e-10 3.641840293e-10 4.715546081e-10 2.380295822e-10 4.335348725e-10 5.426098915e-10 3.022733453e-10 3.9018073e-10 4.362383168e-10 1.052626654e-10 3.178165841e-10 4.258004249e-10 2.939145471e-10 3.124057522e-10 2.978470544e-10 7.194303036e-10 3.686811149e-10 5.513493726e-10 2.576363046e-10 2.262555343e-10 1.662407637e-10 1.48683934e-10 3.964627165e-10 4.510007384e-10 4.955148392e-10 2.466417699e-10 4.23764281e-10 3.89900421e-10 4.799995797e-10 6.322651287e-10 6.411057184e-10 3.410705762e-10 6.115261501e-10 4.985075147e-10 2.740019978e-10 2.079540893e-10 2.480828562e-10 3.0648019e-10 2.879733362e-10 4.142417132e-10 1.221820491e-10 2.798555618e-10 4.004925188e-10 1.887173946e-10 3.985576188e-10 1.602245072e-10 7.679708657e-10 2.407783149e-10 1.39984603e-10 1.435405893e-10 3.770062816e-10 1.65805592e-10 1.20614406e-10 3.874351976e-10 7.601274195e-10 4.174932245e-10 8.430775126e-10 5.586636947e-10 1.969650669e-10 5.118199463e-10 3.396886541e-10 4.060670514e-10 4.048083579e-10 3.376398441e-10 6.057036025e-10 6.315176261e-10 3.28738125e-10 3.154070144e-10 5.348353081e-10 6.788783731e-10 3.714392491e-10 6.284368965e-10 1.712548513e-10 2.983237045e-10 2.949005321e-10 5.328957629e-10 3.582683742e-10 5.990428482e-10 9.173001313e-10 8.173066983e-10 2.389452698e-10 3.081678226e-10 7.146969559e-10 5.026809249e-10 6.626073531e-10 3.024142729e-10 4.938317768e-10 4.651416916e-10 1.998467808e-10 3.947613124e-10 9.624829238e-11 7.347449643e-10 2.304177584e-10 6.339453672e-10 5.301925877e-10 2.056468881e-10 3.796565701e-10 8.753977695e-10 2.014778677e-10 4.056354747e-10 6.328891664e-10 2.787528542e-10 3.075159514e-10 3.823424267e-10 2.145676918e-10 3.632508122e-10 3.786923545e-10 1.587307041e-10 3.359633164e-10 3.823001962e-10 4.793107337e-10 2.682170656e-10 2.233658641e-10 2.658421275e-11 3.530518025e-10 3.888739457e-10 1.797603585e-10 5.031733181e-10 3.954057904e-10 7.152892402e-10 4.963291568e-10 2.881210019e-10 8.730048459e-10 7.120921368e-10 5.22723554e-10 7.445233626e-10 6.206251523e-10 4.535822215e-10 4.027823778e-10 5.819295288e-10 2.494095593e-10 7.756191336e-10 7.410684785e-10 3.997975137e-10 2.682041859e-10 5.054351198e-10 4.050958932e-10 5.208082855e-10 5.018613818e-10 2.970020839e-10 6.667730147e-10 3.32074079e-10 6.979308951e-11 4.012231699e-10 4.879641191e-10 3.452188582e-10 4.077625667e-10 2.624261156e-10 6.604603899e-10 3.129689736e-10 5.664147616e-10 3.73020702e-10 3.964961856e-10 4.401549815e-10 4.243512377e-10 6.938642507e-10 3.271396006e-10 2.547895661e-10 2.762341837e-10 7.190999662e-10 3.663506004e-10 8.788591344e-10 2.484316119e-10 5.041817929e-10 2.702935333e-10 6.242772862e-10 2.819161333e-10 2.583592726e-10 7.335094391e-10 6.857058033e-10 4.255233737e-10 7.675201046e-10 5.133456754e-10 6.350491102e-10 1.315953377e-10 5.744295547e-10 4.065508417e-10 4.15262405e-10 4.616628491e-10 6.384787164e-10 9.847970871e-11 4.223185653e-10 1.385286194e-10 2.836564814e-10 1.234643315e-10 3.471175132e-10 3.324764984e-10 2.631294157e-10 1.401261031e-10 4.330832142e-10 2.579880378e-10 3.600186185e-10 2.489982786e-10 1.155442292e-10 1.437033937e-10 4.87706228e-10 7.09964466e-10 1.41413831e-10 4.755045498e-10 4.270273055e-11 2.768050788e-10 1.327002548e-10 2.542892284e-10 2.108416393e-10 3.500910947e-10 2.545154362e-10 1.482567383e-10 4.110219767e-10 4.114396727e-10 7.235411522e-10 2.277448143e-10 2.610772294e-10 1.977266986e-10 8.134965023e-10 3.807332473e-10 1.628430773e-10 2.483163953e-10 1.89194042e-10 6.435112637e-10 3.749614862e-10 3.941681403e-10 7.811643561e-11 2.209116394e-10 5.748139992e-10 3.725538665e-10 8.56412888e-10 2.03653083e-10 2.596237561e-10 7.582488786e-10 3.651828095e-10 9.371567597e-11 1.01247848e-10 2.530567478e-10 5.692842757e-10 8.968126491e-11 4.295417308e-10 1.753736341e-10 9.782385767e-11 1.700844607e-10 1.172512917e-10 2.926638103e-10 1.039511243e-10 2.054795611e-10 3.766800363e-10 1.396822999e-10 2.22519181e-10 1.359688064e-10 1.964810973e-10 1.018876548e-10 2.07449244e-10 3.805290649e-10 3.964071597e-10 2.002844798e-10 6.716702834e-11 3.192691272e-10 1.355362397e-10 1.604834174e-10 3.774687769e-10 1.611176221e-10 2.857365472e-10 4.736627198e-10 2.063924593e-10 1.682505414e-10 4.211097133e-10 3.916853068e-11 1.725562951e-10 9.153725796e-11 4.058412328e-10 2.083581122e-10 +2.521668444e-10 6.356011158e-11 3.779461229e-10 2.491100453e-10 1.733777978e-10 3.67972186e-10 1.437399937e-10 1.833817924e-10 1.404483457e-10 2.540526932e-10 4.040493964e-10 7.773209479e-11 4.424108574e-10 4.090986809e-10 2.903888522e-10 2.32918127e-10 4.353188607e-10 3.490369274e-10 5.066653782e-10 2.780449308e-10 4.107441119e-10 4.559822022e-10 1.374372927e-10 1.937446722e-10 2.97443694e-10 2.487411175e-10 1.553739813e-10 2.065556786e-10 7.579511106e-10 4.51435356e-10 1.457632523e-10 2.418906788e-10 2.772567545e-11 3.355113346e-10 2.960002051e-10 2.790288571e-10 3.926758706e-10 3.763728303e-10 2.967620682e-10 1.845169015e-10 3.566629259e-10 5.021610547e-10 1.938609822e-10 5.068281433e-10 3.273413783e-10 3.288537239e-10 3.234793935e-10 2.663529888e-10 4.164859419e-10 1.828169321e-10 3.525659797e-10 3.07976671e-10 2.209769642e-10 4.366771344e-10 2.49435836e-10 2.843153031e-10 5.612289935e-10 4.337549524e-10 2.01366121e-10 5.840192386e-10 3.436126947e-10 4.576187299e-10 9.698243309e-11 4.0375715e-10 2.385066567e-10 4.270902347e-10 2.145607258e-10 4.035209189e-10 3.531512903e-10 4.009601324e-10 1.897132446e-10 2.060127914e-10 4.503061733e-10 1.694850823e-10 1.929422391e-10 1.245118067e-10 2.96329138e-10 2.750412266e-10 1.037074203e-10 2.688118062e-11 1.844909165e-10 1.919959556e-10 2.353453311e-10 2.353094507e-10 4.972892191e-10 5.200094863e-10 2.21873673e-10 5.448630582e-10 1.525597614e-10 4.934108414e-10 6.234977347e-10 7.107009989e-10 6.450998777e-10 7.884013695e-10 4.422967503e-10 6.361720065e-10 5.155172672e-10 5.140331056e-10 2.111445535e-10 3.327262753e-10 8.860944228e-10 2.5447712e-10 4.031104782e-10 6.103157518e-10 6.672465255e-10 8.433737911e-10 2.325285177e-10 3.129577528e-10 6.693626664e-10 4.746651799e-10 3.128122506e-10 7.872901768e-10 5.23697299e-10 2.649031457e-10 2.452869431e-10 3.125684881e-10 5.198811667e-10 4.2944397e-10 3.02457337e-10 2.704431232e-10 2.585400981e-10 1.568684562e-10 8.951086675e-10 5.934340112e-10 4.957291474e-10 8.899200629e-10 3.830155142e-10 7.912236064e-10 4.814889616e-10 1.501077136e-10 1.818943024e-10 3.231003786e-10 5.281560495e-10 1.792558989e-10 2.83035448e-10 4.987583408e-10 5.70045167e-10 5.980305285e-10 4.163837858e-10 2.360519128e-10 2.490182048e-10 1.018352276e-09 2.897841985e-10 3.360704054e-10 3.31586393e-10 1.957495117e-10 7.030292011e-10 3.882192396e-10 6.200943441e-10 2.936373457e-10 2.12242395e-10 1.977960925e-10 5.185070682e-10 1.627401426e-10 3.7165556e-10 4.073549439e-10 5.9825994e-10 2.938673131e-10 7.014532386e-11 3.060404721e-10 2.916099428e-10 3.792639192e-10 1.675640243e-10 5.148522935e-10 5.202322948e-10 4.72930563e-10 4.392597983e-10 3.666664488e-10 7.63726276e-10 6.974643094e-10 4.28077202e-10 6.923729471e-10 2.542930805e-10 3.994509653e-10 4.357515936e-10 7.600659038e-10 3.724388822e-10 2.460937809e-10 3.447626401e-10 3.809954249e-10 2.689684823e-10 3.044368169e-10 4.498943954e-10 3.743185977e-10 6.086726707e-10 4.941465457e-10 5.079810953e-10 4.438552068e-10 5.055324934e-10 2.649351996e-10 5.544186842e-10 7.667361556e-10 3.348328075e-10 5.664586734e-10 8.409163514e-10 9.368092337e-10 5.464045938e-10 2.708729786e-10 3.263313264e-10 5.892956621e-10 4.171319102e-10 4.366300277e-10 8.045150406e-10 6.158797988e-10 6.454914771e-10 4.628115346e-10 9.814605155e-11 4.515487326e-10 6.120370028e-10 5.294422837e-10 5.844788846e-10 3.916648784e-10 8.396160658e-10 2.95839883e-10 2.794820646e-10 3.859152709e-10 5.518193612e-10 1.438147209e-10 2.577602846e-10 3.055407693e-10 3.813526439e-10 2.663135324e-10 2.08372131e-10 4.052296607e-10 6.08966806e-11 3.125122011e-10 2.384059378e-10 2.851676844e-10 1.319868093e-10 4.597754549e-10 2.988362668e-10 2.723951093e-10 5.941312489e-10 3.859651591e-10 3.895907396e-10 2.253775825e-10 2.375121609e-11 5.565504503e-10 4.136038693e-10 1.376149652e-09 3.086557087e-10 4.266080381e-10 4.363587985e-10 3.173858884e-10 2.170403498e-10 1.620805281e-10 2.694214238e-10 5.222918962e-10 7.083049758e-10 2.589866038e-10 2.700568165e-10 2.722238835e-10 2.490126396e-10 1.207688881e-10 4.362502197e-10 1.891370178e-10 3.918346857e-10 4.500298968e-10 3.820496001e-10 4.363337636e-10 1.679056428e-10 2.48776998e-10 6.80558209e-10 2.732105352e-10 3.731362324e-10 2.170956794e-10 2.8142467e-10 4.366892561e-10 3.338235675e-10 4.598953255e-10 4.416802492e-10 2.757963431e-10 2.201382796e-10 6.313622327e-11 1.500365683e-10 3.11075309e-10 1.439050085e-10 8.676346096e-11 2.665966076e-10 1.144797956e-10 3.583992643e-10 2.545515051e-10 1.224644954e-10 3.460273946e-10 5.219028878e-10 3.986136592e-10 4.667932689e-10 6.39343083e-11 3.430327037e-10 2.179352371e-10 4.402278528e-10 4.378373305e-10 1.590982166e-10 3.434453296e-10 1.969346261e-10 1.195728925e-10 2.480595094e-10 1.980576138e-10 2.660062461e-10 3.559873948e-10 +1.668270356e-10 2.134570731e-10 3.879284682e-10 2.18393392e-10 4.667609882e-10 3.868817991e-10 4.255734109e-10 2.092526349e-10 3.271982764e-10 6.406330637e-10 5.4019946e-10 3.121249261e-10 5.279753992e-10 1.262170577e-10 4.316063357e-10 1.25743387e-10 5.061051967e-10 4.078200195e-10 8.653809163e-10 3.802018657e-10 1.098523498e-10 3.161186404e-10 2.40553103e-10 2.77767128e-10 1.090139485e-10 2.637373676e-10 1.275093047e-10 3.065780661e-10 1.499275818e-10 7.213379726e-10 3.096694185e-10 3.331350809e-10 5.554057845e-10 2.904800693e-10 1.610717773e-10 1.764008793e-10 1.725036141e-10 1.932641994e-10 5.433657128e-10 3.056239974e-10 3.697989068e-10 5.451756997e-10 7.02732e-10 3.556369237e-10 7.24654212e-10 6.168390502e-10 4.059563547e-10 3.618821221e-10 7.178586401e-10 2.614742046e-10 2.687203496e-10 4.117220826e-10 1.800451517e-10 2.414197584e-10 4.734614647e-10 6.131626133e-10 4.188051647e-10 3.51050417e-10 5.834800066e-11 3.615838463e-10 1.811587841e-10 3.648089922e-10 2.633511297e-10 2.958129241e-10 5.437907083e-10 2.790711923e-10 2.698902473e-10 4.866215089e-10 7.655593224e-10 4.225775508e-10 5.778216889e-10 5.505747161e-10 7.841941613e-10 2.152579978e-10 2.696520056e-10 2.553287713e-10 6.041433888e-10 6.380955502e-10 4.293725355e-10 5.06777049e-10 9.538331341e-11 3.29782979e-10 4.718378701e-10 2.520143985e-10 1.754789415e-10 4.137901972e-10 5.332013276e-10 8.577577092e-10 5.191799704e-10 2.123306045e-10 6.17417708e-10 4.621652607e-10 5.002831996e-10 1.003639282e-09 3.076977962e-10 3.771747134e-10 4.614199618e-10 3.136551645e-10 2.387142762e-10 7.331515341e-10 4.527957084e-10 6.134187351e-10 3.583604638e-10 5.794430945e-10 3.178426358e-10 4.167167319e-10 5.294453105e-10 4.315015914e-10 5.424824583e-10 8.315239167e-10 8.295475914e-10 2.64840753e-10 2.186763382e-10 6.342984207e-10 4.635725189e-10 3.244214554e-10 8.077881197e-10 3.345890508e-10 3.083365247e-10 4.702389532e-10 4.323416282e-10 2.61781489e-10 4.206194601e-10 3.32989595e-10 6.168217547e-10 7.285092935e-10 7.676821449e-10 3.677345709e-10 7.349051439e-10 6.221485845e-10 2.712037582e-10 2.751835236e-10 5.993432366e-10 4.398966953e-10 2.262671644e-10 2.772259169e-10 4.027305921e-10 4.060486006e-10 5.352994897e-10 5.981914581e-10 1.996662162e-10 1.243602059e-10 3.378797949e-10 4.645646619e-10 1.179431283e-10 3.417890566e-10 1.927240219e-10 2.780450891e-10 5.730789342e-10 8.285010265e-10 4.517148125e-10 1.346347443e-10 5.564719992e-10 3.060162258e-10 4.396827787e-10 9.140298707e-11 2.473082287e-10 3.531014386e-10 4.984611147e-10 6.218923113e-10 1.794755872e-10 3.847044332e-10 1.933983661e-10 3.751421346e-10 4.710098338e-10 3.689693391e-10 4.220776746e-10 4.060794554e-10 3.242246927e-10 2.190547607e-10 4.101051829e-10 1.3099711e-10 7.96916175e-10 1.401668848e-10 6.6998846e-10 4.141771947e-10 4.431793533e-10 1.841129285e-10 4.005579355e-10 3.910243837e-10 4.804563977e-10 9.083211347e-10 6.555912888e-10 5.768680371e-10 6.655378656e-10 2.423548171e-10 3.794907913e-10 3.217299088e-10 3.036835017e-10 4.166859579e-10 9.285953616e-10 2.558648053e-10 4.49909865e-10 6.878655859e-10 6.971240917e-10 5.057195627e-10 1.19765889e-09 6.958145737e-10 6.718840095e-10 7.914378191e-10 6.482350749e-10 8.112117798e-10 7.180919727e-10 3.382183404e-10 6.105557413e-10 1.166001165e-09 5.071088698e-10 4.331004707e-10 6.168135702e-10 5.762555177e-10 6.57147361e-10 2.818154944e-10 5.63871102e-10 4.21483833e-10 4.398188877e-10 4.113400118e-10 3.058339392e-10 6.753478292e-10 3.853178989e-10 1.948865613e-10 3.673102848e-10 2.334059684e-10 2.655512284e-10 6.547111259e-10 9.272623015e-11 6.338915105e-10 3.56523692e-10 3.594181288e-10 7.589224689e-10 3.309506103e-10 3.345326692e-10 1.939958658e-10 3.11642724e-10 1.324658179e-10 8.487467022e-11 6.77908252e-11 5.274814189e-10 3.591564605e-10 1.315860041e-10 3.648430089e-10 4.169019087e-10 3.547746607e-10 2.545547213e-10 1.825283782e-10 3.125736158e-10 3.641928878e-10 3.60844631e-10 5.52340515e-10 2.699555683e-10 1.884033014e-10 2.113476808e-10 1.173575245e-10 1.659435086e-10 1.666351811e-10 3.465018085e-10 5.844046362e-10 2.354844391e-10 4.0567374e-10 1.03280271e-10 3.784854546e-10 2.109367511e-10 5.548537775e-10 9.094830737e-11 4.906978736e-10 1.417353897e-10 5.39399079e-10 6.785975398e-10 1.78167466e-11 3.026739225e-10 3.223112438e-10 3.24661915e-10 2.12168957e-10 1.946233929e-10 3.662773699e-10 2.815455686e-10 6.023413207e-11 1.681600488e-10 3.785259582e-10 2.101011341e-10 3.200774758e-10 9.516978455e-11 1.624733686e-10 2.836909278e-10 1.785513919e-10 2.149652912e-10 5.111316052e-10 8.075338875e-10 3.112543328e-10 2.553041276e-10 4.184870494e-10 5.255451454e-10 3.688011631e-10 1.733404852e-10 3.290755563e-10 2.510741015e-10 2.29558721e-10 4.56578033e-10 3.494509264e-10 1.316403427e-10 5.889349709e-10 +1.869797579e-10 3.476791691e-10 9.294119677e-11 4.861737818e-10 5.683953337e-10 2.790160539e-10 5.866684064e-10 3.306811293e-10 2.324043262e-10 7.095529435e-10 2.688562506e-10 2.289710976e-10 2.358461588e-10 1.582732322e-10 5.403946464e-10 1.535306039e-10 3.640449946e-10 5.52266407e-10 4.114224671e-10 1.84058502e-10 5.073140555e-10 1.686391344e-10 1.282621115e-10 4.254047673e-10 5.816527019e-10 2.289261692e-10 4.465244465e-10 3.974360793e-10 4.484327049e-10 6.725038591e-11 4.933224298e-10 3.166164898e-10 1.3539132e-10 1.576392326e-10 2.173825579e-10 2.605834368e-10 1.225508249e-10 4.40302027e-11 2.729836701e-10 4.810200955e-10 5.063319685e-10 3.095866031e-10 4.160889856e-10 3.843731836e-10 7.670867439e-10 3.835913385e-10 4.314599197e-10 2.629818421e-10 7.651704216e-11 1.788865256e-10 3.625639904e-10 2.296137868e-10 2.416068958e-10 4.644628147e-10 2.326635837e-10 5.666562795e-10 3.711334019e-10 5.597179446e-10 3.711886829e-10 3.041661832e-10 4.117133876e-10 6.194275759e-10 4.385292086e-10 6.260576157e-10 4.040792625e-10 2.580730962e-10 5.371585536e-10 1.900845219e-10 2.315341497e-10 4.503743289e-10 3.89133539e-10 1.981364395e-10 2.217631022e-10 5.257040168e-10 1.226599267e-10 2.407888862e-10 3.21342274e-10 2.553331536e-10 3.081297889e-10 4.005425587e-10 3.628881462e-10 1.384002752e-10 4.445935138e-10 5.296947016e-10 2.397960403e-10 7.500362104e-10 2.848451056e-10 1.097755208e-09 8.406795188e-10 3.333963172e-10 1.616110071e-10 4.59447056e-10 3.421232678e-10 7.619469896e-10 8.152910206e-10 7.933003067e-10 5.061768936e-10 4.625504789e-10 5.783936155e-10 4.063732334e-10 4.935811343e-10 6.397388172e-10 4.078846649e-10 5.010060312e-10 6.390878937e-10 7.117451048e-10 3.591881287e-10 2.385249747e-10 1.011010824e-09 1.823205741e-10 1.020276681e-09 5.714861879e-10 7.181894644e-10 4.16349215e-10 7.087409313e-11 4.962991766e-10 6.342508551e-10 4.875270857e-10 1.022652005e-09 5.623375518e-10 3.759924305e-10 4.877170562e-10 5.270923358e-10 5.453006743e-10 4.481048548e-10 5.681820337e-10 5.711222422e-10 5.012334679e-10 3.614331929e-10 7.151462741e-10 3.027531679e-10 6.568178941e-10 5.806547453e-10 5.735381755e-10 3.920734785e-10 9.060376504e-10 2.755172497e-10 1.467173895e-10 5.055605805e-10 4.662096073e-10 7.321528982e-10 3.114520583e-10 5.871355065e-10 2.590106898e-10 8.536569625e-10 5.584552807e-10 6.396579234e-10 3.550791728e-10 5.173341092e-10 7.341959275e-10 4.080701768e-10 3.303667823e-10 4.384019031e-10 3.360325768e-10 1.143581707e-09 4.594344673e-10 2.890125122e-10 5.232625252e-10 5.539193029e-10 7.31855995e-10 3.514916981e-10 6.564326917e-10 4.140580049e-10 5.600317022e-10 3.054084462e-10 4.191173438e-10 2.458271102e-10 2.319277143e-10 6.166515619e-10 5.389917249e-10 2.770515344e-10 7.817617505e-10 4.933251637e-10 6.60450233e-10 4.623150502e-10 7.842561998e-10 2.080885108e-10 2.182296933e-10 4.657829758e-10 3.631758551e-10 4.076141508e-10 5.195998981e-10 6.493492569e-10 3.558285196e-10 2.936050012e-10 4.175893628e-10 5.259295247e-10 6.900483027e-10 3.046219243e-10 5.858414724e-10 3.876196102e-10 6.411637842e-10 5.688486648e-10 5.98944243e-10 5.846841048e-10 8.067449103e-10 4.358719767e-10 7.549912606e-10 3.993416404e-10 5.928238413e-10 6.434428029e-10 1.064934703e-09 5.697725245e-10 3.852960314e-10 1.02744587e-09 6.82957612e-10 9.046669321e-10 5.689603672e-10 5.374700698e-10 6.861200091e-10 2.674996067e-10 3.150445635e-10 4.623746669e-10 4.772722521e-10 1.377853607e-10 4.569136816e-10 6.868135434e-10 2.483950029e-10 1.706756542e-10 4.74603536e-10 2.433875715e-10 4.54268372e-10 5.482377293e-10 3.498635165e-10 3.538921496e-10 2.220682972e-10 4.722561214e-10 3.249318088e-10 4.189535309e-10 2.316070678e-10 4.858857979e-10 3.329534691e-10 2.857094101e-10 2.17937106e-10 3.146191771e-10 6.004812369e-10 1.734452451e-10 1.95105094e-10 4.665418563e-10 5.347699719e-10 2.463707493e-10 2.912711714e-10 3.324712228e-10 5.676891526e-10 3.622668202e-10 5.362812364e-10 3.997707181e-10 6.980640137e-10 2.955250703e-10 3.461146428e-10 3.29107988e-10 2.269570641e-10 2.720007187e-10 4.744177989e-10 6.164183327e-10 8.51464511e-11 2.413845643e-10 2.010999368e-10 2.637379549e-10 8.50135761e-10 2.368654319e-10 1.479178458e-10 9.730852545e-10 1.113419202e-10 4.343173323e-10 2.734733535e-10 3.781640917e-10 2.368424917e-10 5.009027114e-10 2.099711811e-10 3.20570839e-10 2.436933602e-10 2.489995593e-10 3.017107709e-10 3.605859091e-10 2.588280616e-10 2.8724722e-10 4.479122653e-10 2.468439514e-10 1.384114631e-10 2.559712611e-10 2.014990078e-10 6.712471891e-10 3.918605506e-10 2.548673011e-10 2.997203169e-10 6.278975264e-10 9.740091742e-10 1.787311596e-10 1.806403123e-10 2.630838043e-10 7.725230114e-10 2.136361853e-10 4.662569593e-10 1.270630197e-10 4.624249898e-10 3.604073032e-10 2.840069587e-10 2.295064103e-10 6.063098081e-10 +5.409919273e-10 1.791157166e-10 2.635420609e-10 1.842969582e-10 2.727635683e-10 2.714031281e-10 4.579904788e-10 3.715897293e-10 7.020605891e-10 3.176535198e-10 2.590517455e-10 4.906050461e-10 3.957710431e-10 2.562525085e-10 7.266650944e-10 7.384752318e-11 1.613819112e-10 2.184670462e-10 2.160380352e-10 1.421680589e-10 2.600506599e-10 5.061419443e-10 5.573927843e-10 5.546886756e-10 1.350273368e-10 6.069955741e-10 1.930401805e-10 1.351284273e-10 7.733075479e-10 2.420555813e-10 1.484356246e-10 1.920727691e-10 1.483402843e-10 1.508405208e-10 6.568845033e-11 9.064939035e-11 5.174032318e-10 3.120034418e-10 3.377362662e-10 1.951315467e-10 5.097762235e-10 1.944170699e-10 5.723058732e-10 3.417931022e-10 3.815434541e-10 6.676219274e-10 4.459802223e-10 3.140099805e-10 2.406918044e-10 2.249527218e-10 5.819401733e-10 5.213283138e-10 7.931354638e-11 2.558849861e-10 6.469367782e-10 1.789853242e-10 1.586418839e-10 2.713128557e-10 6.791975622e-10 2.798891388e-10 3.029305424e-10 3.062475814e-10 3.41170197e-10 3.436747499e-10 5.169885491e-10 5.910507049e-10 2.425339676e-10 1.76572607e-10 4.2907182e-10 2.478073682e-10 3.000243647e-10 2.747521082e-10 3.751039071e-10 2.509826929e-10 3.176414626e-10 7.144409098e-11 6.76263289e-10 1.347054034e-10 2.571378329e-10 3.715821747e-10 1.590377206e-10 4.409688775e-10 3.321791758e-10 5.006876471e-10 4.690356345e-10 6.473504895e-10 2.856700222e-10 4.979516739e-10 3.363975664e-10 4.48861438e-10 9.616906308e-10 9.42412549e-10 9.664558987e-10 5.90009657e-10 7.177311388e-10 3.185564786e-10 3.114644084e-10 5.312555913e-10 1.031689675e-09 8.292055192e-10 4.356078423e-10 7.826549791e-10 5.414476567e-10 5.804400617e-10 3.671940647e-10 6.476647549e-10 2.483516105e-10 2.961218669e-10 2.740470564e-10 3.372737096e-10 4.828685823e-10 4.157401585e-10 5.206557457e-10 4.203089771e-10 7.528331688e-10 3.700166439e-10 2.968318055e-10 2.757643674e-10 5.817928108e-10 5.736591353e-10 3.901315641e-10 6.914680414e-10 8.814008557e-10 1.930473505e-10 3.52401956e-10 3.462991701e-10 7.87796159e-10 5.581480069e-10 8.982622698e-11 4.204743562e-10 4.907819435e-10 6.168907935e-10 3.835837366e-10 4.89243955e-10 7.878841581e-10 4.661671996e-10 3.899592947e-10 5.103946182e-10 7.482835158e-10 8.758886787e-10 4.275113016e-10 7.493849112e-10 6.873211105e-10 2.33922239e-10 2.951137359e-10 3.713607908e-10 2.632315861e-10 2.88806157e-10 5.63888706e-10 5.547845497e-10 2.064349083e-10 2.480543353e-10 1.6390181e-10 3.684099232e-10 9.540768951e-11 3.917240702e-10 2.029748279e-10 3.694294146e-10 3.018518174e-10 5.418650931e-10 5.893386537e-10 1.285164015e-10 3.322464004e-10 1.012830188e-10 6.363987462e-10 3.359101326e-10 6.1934166e-10 3.298788827e-10 1.654001727e-10 4.51752955e-10 6.303380463e-10 4.335401397e-10 3.195601477e-10 3.541142943e-10 4.506194376e-10 3.672067882e-10 2.78265051e-10 2.471799667e-10 7.346101496e-10 2.159608645e-10 5.796688208e-10 3.481574705e-10 3.141017779e-10 4.638500471e-10 7.947350232e-10 2.693270354e-10 3.615742213e-10 4.765205163e-10 3.768502535e-10 7.420203947e-10 7.459179228e-10 2.878012429e-10 7.305615439e-10 4.389717989e-10 3.769145215e-10 4.992783173e-10 6.224066268e-10 5.586347973e-10 7.640249854e-10 6.358367021e-10 6.121000378e-10 6.859491935e-10 1.017695861e-09 8.671390735e-10 2.069993939e-10 7.625597093e-10 5.720271965e-10 8.839234628e-10 9.743961458e-10 6.685522113e-10 7.260488979e-10 6.824252703e-10 5.871798619e-10 2.359195441e-10 5.224851382e-10 4.654421046e-10 3.391125011e-10 4.864432298e-10 1.844996723e-10 2.260235006e-10 3.656036872e-10 2.607054526e-10 4.288755504e-10 4.432395373e-10 3.660836714e-10 3.465060758e-10 4.22038766e-10 5.396559108e-10 2.553912633e-10 3.219570086e-10 8.586780669e-11 2.573956726e-10 2.554169838e-10 3.280193328e-10 4.98237173e-10 6.678999931e-10 4.028892679e-10 4.757260216e-10 7.242110769e-10 2.009074737e-10 3.491228688e-10 2.944590269e-10 1.703802153e-10 2.698848162e-10 2.53329793e-10 2.73208932e-10 4.838549221e-10 2.36834158e-10 5.247793855e-10 4.612539299e-10 5.927891507e-10 1.928229107e-10 3.951037778e-10 4.506770445e-10 1.651123761e-10 2.348726843e-10 3.291757866e-10 3.852952544e-10 6.311087521e-10 3.126158552e-10 3.177082498e-10 1.411127499e-10 2.523495439e-10 2.141618048e-10 2.55327282e-10 1.523758688e-10 7.070212118e-10 2.394127079e-10 1.044363855e-10 6.789592675e-11 3.517705445e-10 3.018787074e-10 1.470459739e-10 3.393762537e-10 3.392875791e-10 2.124054774e-10 2.742997378e-10 4.447952429e-10 2.790549946e-10 2.7873444e-10 1.476061931e-10 2.113356538e-10 1.487126179e-10 6.760661191e-10 1.521132084e-10 3.988958734e-10 1.405108325e-10 2.546555425e-10 3.390272677e-10 7.35655946e-10 3.860918924e-10 5.099428868e-10 2.117504156e-10 2.447771429e-10 3.046485831e-10 6.03589144e-10 2.987303737e-10 3.546191273e-10 1.667540726e-10 4.147116349e-10 +2.794340345e-10 8.989258888e-11 3.509745167e-10 4.548221412e-10 3.655058575e-10 4.250164134e-10 3.343078161e-10 2.748893509e-10 3.445198582e-10 2.114119959e-10 2.199437557e-10 3.790530814e-10 1.732050893e-10 2.132842574e-10 7.285851941e-10 2.303766033e-10 4.425468721e-10 3.637818023e-10 3.278657664e-10 1.656507831e-10 1.592367895e-10 4.97606597e-10 4.860189917e-10 2.571223279e-10 4.906009693e-10 2.378372923e-10 1.863812287e-10 3.211734658e-10 3.122563731e-10 4.094507347e-10 4.070010799e-10 5.02107314e-10 3.419046667e-10 1.545237043e-10 1.3469246e-10 2.242832449e-10 6.917919206e-10 4.88935082e-10 1.798593854e-10 1.442431744e-10 2.626264389e-10 3.702991415e-10 5.081468618e-10 4.399371143e-10 2.653434437e-10 3.443088976e-10 6.479417819e-10 5.009787711e-10 4.204944426e-10 1.369281303e-10 6.007155923e-10 3.301415332e-10 2.930591675e-10 6.397441786e-10 5.335640292e-10 7.846968615e-11 2.095030288e-10 8.856452425e-10 2.489494332e-10 8.10485591e-10 3.690348487e-10 3.11783832e-10 3.161517757e-10 7.994332327e-10 3.185724854e-10 1.113181651e-10 4.839616759e-10 5.368282622e-10 6.730118774e-10 4.459949814e-10 2.771210335e-10 2.259399929e-10 4.812127112e-10 1.87556602e-10 2.173609712e-10 1.091974265e-10 5.206104065e-10 1.873999228e-10 3.475759884e-10 3.030589668e-10 3.572132361e-10 4.811970209e-10 1.045202573e-10 2.62099924e-10 6.689499465e-10 8.486629037e-10 2.975393126e-10 6.65960694e-10 5.565993106e-10 3.6810657e-10 6.512751023e-10 6.119985238e-10 7.797787349e-10 1.082732669e-09 7.667236584e-10 7.872177228e-10 4.071362254e-10 7.505781574e-10 5.414429154e-10 4.222236751e-10 4.80608551e-10 2.505352406e-10 6.975178643e-10 8.310385422e-10 5.296000406e-10 3.537414263e-10 4.173062418e-10 4.725093869e-10 3.360234584e-10 8.033767499e-10 5.962337594e-10 8.718090584e-10 9.133146833e-10 6.817952261e-10 4.884124637e-10 4.845434556e-10 5.886879839e-10 4.42212775e-10 4.917038897e-10 8.179840737e-10 6.314726106e-10 5.594828452e-10 4.735386322e-10 2.426141043e-10 5.554517533e-10 6.848605554e-10 6.068312796e-10 2.568014522e-10 3.020103839e-10 6.258231556e-10 7.07748186e-10 2.445164983e-10 4.232918255e-10 2.50339076e-10 7.794535908e-10 3.212183511e-10 4.167504137e-10 6.554706866e-10 4.903871952e-10 4.592025493e-10 4.006262284e-10 4.895273459e-10 3.200989098e-10 2.35978251e-10 2.38460282e-10 5.946846296e-10 1.754852403e-10 3.258792875e-10 2.822815141e-10 1.148350932e-10 2.402278941e-10 4.903318436e-10 2.657333771e-10 2.655157591e-10 5.207042385e-10 9.07627207e-11 3.045051752e-10 5.888842621e-10 5.914463166e-10 4.528899796e-10 3.369278232e-10 4.046280995e-10 3.952467105e-10 5.132005976e-10 2.038932267e-10 5.345116857e-10 9.915593121e-10 5.867790262e-10 4.415120833e-10 1.406117075e-10 6.287695154e-10 3.271994555e-10 5.069373948e-10 6.186051074e-10 5.087571584e-10 6.385762064e-10 6.940592187e-10 6.06846448e-10 2.405803837e-10 3.187598279e-10 4.615236251e-10 8.216645147e-10 2.847466062e-10 1.334832247e-09 5.22507114e-10 6.025707979e-10 4.78977334e-10 5.368909674e-10 2.875293888e-10 3.438016651e-10 4.412090031e-10 8.597578929e-10 3.879533349e-10 2.038487021e-10 5.384005243e-10 6.674113416e-10 4.230125566e-10 7.310253226e-10 3.328955961e-10 7.324671288e-10 6.733369994e-10 4.896262892e-10 6.348780433e-10 3.694931654e-10 9.196114611e-10 4.457721888e-10 7.990079553e-10 5.953194043e-10 5.577219838e-10 6.102640969e-10 7.947892375e-10 5.653774885e-10 5.854121427e-10 4.681679047e-10 6.761244324e-10 3.963324371e-10 3.731816515e-10 6.765239191e-10 1.060182716e-10 2.736196048e-10 2.054395006e-10 1.512346295e-10 2.425025935e-10 6.600595375e-10 4.485484151e-11 2.478420548e-10 3.482536173e-10 7.265497048e-10 5.946771681e-10 3.1659682e-10 1.401542187e-10 4.875673458e-10 2.647919428e-10 5.100849597e-10 5.976059948e-10 2.013153704e-10 3.701146576e-10 3.685764763e-10 8.858572596e-10 1.631992687e-10 6.76715515e-10 7.126803887e-10 4.512178116e-10 5.462702073e-10 1.412259146e-10 5.611015498e-10 3.406561045e-10 4.100542023e-10 3.66943208e-10 6.037692636e-10 2.791140251e-10 6.612317492e-10 4.509523101e-10 4.31226445e-10 4.627974141e-10 2.407512906e-10 4.931524928e-10 2.273587306e-10 5.34698917e-10 5.389479783e-10 4.073862318e-10 5.636667462e-11 1.655947079e-10 1.864415034e-10 5.049198432e-10 7.794712585e-11 1.088577331e-10 1.019063662e-10 3.911665222e-10 3.549576604e-10 3.315287725e-10 1.814141678e-10 4.045236143e-10 1.469831711e-10 3.169743526e-10 5.012899606e-10 3.876980441e-10 2.256913885e-10 3.826940131e-10 4.083723736e-10 6.32320125e-10 2.529649485e-10 3.728559443e-10 3.690007333e-10 1.045787675e-09 4.398970965e-10 4.10901121e-10 1.981568439e-10 3.139918096e-10 1.112870903e-10 1.392526005e-10 2.254110982e-10 5.128383485e-10 7.816541036e-10 7.870328507e-10 1.446867967e-10 3.52864071e-10 3.613593004e-10 3.370806243e-10 3.931388283e-10 +1.243343878e-10 4.265356379e-10 3.452990519e-10 3.901231915e-10 4.3438638e-10 2.402491566e-10 5.251333615e-10 4.766862654e-10 7.112302513e-11 4.062733389e-10 5.011365618e-10 1.257705705e-10 4.680695411e-10 5.814469801e-11 9.485077354e-11 2.148733754e-10 2.932674479e-10 6.021620185e-10 5.279321547e-10 1.792255607e-10 7.105456658e-10 1.604987823e-10 3.905055408e-10 5.21245703e-10 7.831343891e-10 2.440842058e-10 4.495150252e-10 4.716372438e-10 3.628194496e-10 3.843271696e-10 5.031327282e-10 4.557214503e-10 3.778361988e-10 2.263462969e-10 5.76512408e-10 5.091271813e-10 3.971502718e-10 5.574414118e-11 1.382816792e-10 8.572048873e-11 4.305794886e-10 8.628943374e-10 1.254136362e-10 2.999731147e-10 3.737481902e-10 2.758927555e-10 1.648649758e-10 4.130758108e-10 5.029216434e-10 2.095763017e-10 5.317455226e-10 2.856322484e-10 2.72544743e-10 5.113945303e-10 5.15355989e-10 1.636432924e-10 3.319921632e-10 5.975526335e-10 4.873762108e-10 7.891311152e-10 7.027440209e-10 3.274096917e-10 4.509521136e-10 5.10643617e-10 2.828188925e-10 3.877938189e-10 4.380199046e-10 6.140683371e-10 5.526625092e-10 3.76560238e-10 1.733516171e-10 2.316379935e-10 2.720801186e-10 3.512688913e-10 4.019645178e-10 9.203563231e-12 2.536102846e-10 4.140929079e-10 5.44211473e-10 5.195196597e-10 2.131417427e-10 5.555616955e-10 7.802080803e-10 6.51447468e-10 9.882173102e-10 4.159225666e-10 3.498586518e-10 9.252130016e-11 4.927900818e-10 5.385903534e-10 1.036466957e-09 5.51410247e-10 1.206862688e-09 1.144709876e-09 7.579240774e-10 4.176114024e-10 3.991235896e-10 7.212448392e-10 3.920684958e-10 4.416197148e-10 8.259009612e-10 5.539492044e-10 6.916684622e-10 8.489624224e-10 7.092277579e-10 6.301379128e-10 5.518996878e-10 6.705636969e-10 2.397041016e-10 6.220772732e-10 6.005685821e-10 6.837501709e-10 1.602719239e-10 5.135108586e-10 6.077778362e-10 6.766977926e-10 2.588425677e-10 5.116662074e-10 5.079582888e-10 6.293131055e-10 8.060722612e-10 3.887864738e-10 4.788764402e-10 6.896707547e-10 3.193884573e-10 3.812630383e-10 7.074642829e-10 3.749967852e-10 2.801889133e-10 4.812187718e-10 2.036383595e-10 5.089945947e-10 2.000111498e-10 3.438537951e-10 3.893439103e-10 4.595862653e-10 2.180773578e-10 3.587393769e-10 1.750723109e-10 2.91619671e-10 7.052593178e-10 6.911544787e-10 4.025686073e-10 1.963746547e-10 5.872389664e-10 5.285347976e-10 3.454175327e-10 1.329859431e-10 4.334600152e-10 7.089352103e-11 4.111361467e-10 3.081297164e-10 2.821913017e-10 6.15807611e-10 9.217467259e-11 2.08168708e-10 2.188364003e-10 2.183592252e-10 9.541139117e-10 3.613517208e-10 5.262128699e-10 1.824711058e-10 2.879416533e-10 5.015908175e-10 6.106479617e-10 3.60057167e-10 3.798493251e-10 6.058784228e-10 5.816618587e-10 2.603885281e-10 2.724295632e-10 6.112623621e-10 7.621195724e-10 2.850734076e-10 2.201305244e-10 7.038293614e-10 6.481225159e-10 7.721370334e-10 6.694099853e-10 5.695957267e-10 6.652761777e-11 5.984747355e-10 2.341492289e-10 4.751825508e-10 8.695288333e-10 5.57990651e-10 3.534290472e-10 4.412005076e-10 1.054327956e-11 6.148773165e-10 6.185382325e-10 7.131375466e-10 3.674192737e-10 4.745608325e-10 3.380650837e-10 4.943265047e-10 4.179802783e-10 5.914980358e-10 3.88941291e-10 9.616689058e-10 4.787953494e-10 1.821579838e-10 4.691671148e-10 2.533774153e-10 8.242868441e-10 5.763233344e-10 1.177239194e-09 8.787557347e-10 1.223922181e-09 9.50233383e-10 6.946321793e-10 7.230750239e-10 4.792474045e-10 4.199191585e-10 7.47245006e-10 1.073787194e-09 8.267827044e-10 5.829166594e-10 2.695647903e-10 8.293166167e-10 1.933051431e-10 3.175565195e-10 5.006177715e-10 2.888871737e-10 1.414492325e-10 1.894565026e-10 4.641477404e-10 3.949335632e-10 6.190285622e-10 6.410331841e-10 4.373692463e-10 1.794413802e-10 6.314208114e-10 2.927498192e-10 1.143924419e-10 6.245644455e-10 6.127939118e-10 1.932444477e-10 3.488399208e-10 2.532013477e-10 4.006763705e-10 3.644471976e-10 2.540500668e-10 5.030229572e-10 4.214081298e-10 4.99824361e-10 3.188811621e-10 2.731868105e-10 5.521556739e-10 1.7665266e-10 5.33616168e-10 3.082148698e-10 4.159459836e-10 4.67366634e-10 4.116699262e-10 5.115155077e-10 4.039302405e-10 2.013545454e-10 3.174976755e-10 2.370017756e-10 4.620138615e-10 6.190562602e-10 2.257622168e-10 2.399911749e-10 3.330076944e-10 2.853532616e-10 6.677758366e-10 2.480050524e-10 6.555935287e-10 8.736431266e-10 2.162922581e-10 4.616373812e-10 4.123200319e-10 3.802734258e-10 2.326168034e-10 6.421660534e-10 1.635214805e-10 2.913219185e-10 4.248867828e-10 8.70765741e-10 7.926664739e-10 3.690482814e-10 3.486673581e-10 4.579978283e-10 2.488427665e-10 6.021392955e-10 3.869743664e-10 4.858000108e-10 8.976014849e-10 3.498465043e-10 1.765913999e-10 3.865917763e-10 2.025525713e-10 1.257326251e-10 2.852235341e-10 5.814064062e-10 3.50081666e-10 1.156500224e-10 5.575408459e-10 4.704660339e-10 +6.741340019e-11 6.902957479e-10 4.867178883e-10 4.416398525e-10 2.086803439e-10 3.957772929e-10 2.606295415e-10 5.878913579e-10 3.420993477e-10 3.657981046e-10 2.268525182e-10 6.196902874e-10 4.815324509e-10 3.155979958e-10 3.943883268e-10 5.532757137e-10 5.728840077e-10 3.078559434e-10 2.572075634e-10 8.085197061e-10 5.347008853e-10 2.204288457e-10 3.72380524e-10 1.784079103e-10 2.096893386e-10 5.148644584e-10 3.799950494e-10 2.002652645e-10 4.171088162e-10 3.692960798e-10 4.374763246e-10 9.789768578e-10 1.025781732e-10 2.272171218e-10 4.975167847e-10 4.987574906e-10 9.906775434e-10 4.463761256e-10 5.617820742e-10 3.621468263e-10 6.798560275e-10 3.733670414e-10 2.925465731e-10 3.532404759e-10 4.539702977e-10 4.519383416e-10 1.363770882e-10 2.329674107e-10 5.89358499e-10 6.150244487e-10 3.693003733e-10 2.503077105e-10 2.30089287e-10 1.413930255e-10 5.823615283e-10 2.69754188e-10 5.683002642e-10 1.25078799e-10 1.005321145e-10 3.808379933e-10 2.910686966e-10 3.147945861e-10 6.477055459e-10 7.635908879e-10 1.191405452e-10 2.025966208e-10 1.215274474e-10 6.766081781e-10 3.11688778e-10 5.941576057e-10 5.662355179e-10 4.968638746e-10 2.012240204e-10 9.663072105e-10 1.772706112e-10 1.856977863e-10 3.949257711e-10 4.016486757e-10 1.4681e-10 5.491472941e-10 4.425544264e-10 2.051815927e-10 1.471871392e-10 1.178955318e-10 6.777551818e-10 4.952312147e-10 3.498287982e-10 6.320579902e-10 8.98335598e-10 9.869561574e-10 8.823653819e-10 8.561413285e-10 6.762234179e-10 1.138762189e-09 7.342681692e-10 8.296817138e-10 7.622609927e-10 5.005648981e-10 9.243158632e-10 1.401796323e-10 8.166105901e-10 4.887941083e-10 3.068404201e-10 4.193120925e-10 2.423445887e-10 3.259966786e-10 1.016294233e-09 3.150807339e-10 3.582573274e-10 7.612579122e-10 9.03064365e-10 3.690972103e-10 4.102051858e-10 2.630059414e-10 3.233344075e-10 5.114899323e-10 4.908558526e-10 3.911338837e-10 4.496951487e-10 4.592714353e-10 6.869758073e-10 1.506381787e-10 3.3535792e-10 7.940785203e-10 5.29462242e-10 1.042846361e-09 4.40332895e-10 6.306998008e-10 3.065933773e-10 5.398938907e-10 5.487184383e-10 4.875075056e-10 1.0000936e-09 1.979739494e-10 4.554462398e-10 1.851327478e-10 3.020491509e-10 5.93370538e-10 1.682803976e-10 1.860347835e-10 2.186579786e-10 3.723024125e-10 2.677969937e-10 4.24922839e-10 2.17796427e-10 2.60676196e-10 2.600560162e-10 1.580976541e-10 2.200840205e-10 2.209467538e-10 4.317953348e-10 1.034634403e-10 2.258493478e-10 2.173422723e-10 5.26893845e-10 3.96332093e-10 2.78727928e-10 5.110951048e-10 4.661099943e-11 3.390732755e-10 1.477122707e-10 3.322484199e-10 2.788439806e-10 3.048578307e-10 3.953922433e-10 3.665426694e-10 5.032161031e-10 5.037256982e-10 3.288836935e-10 4.681520389e-10 4.471867093e-10 6.485330317e-10 6.472132294e-10 5.358217081e-10 5.798093754e-10 6.291791107e-10 6.422057193e-10 4.65822147e-10 7.533541192e-10 1.955858908e-10 3.755277949e-10 4.503147281e-10 5.84896194e-10 4.773737368e-10 7.059344822e-10 6.280974154e-10 4.811802014e-10 5.421615019e-10 3.074910713e-10 5.599395538e-10 5.143107182e-10 5.738916681e-10 2.694214592e-10 5.441874426e-10 8.746529608e-10 9.88675243e-10 4.105941479e-10 2.572426694e-10 7.128022162e-10 5.687774687e-10 4.754012774e-10 9.897497569e-10 5.847116691e-10 6.551861448e-10 7.934471673e-10 4.664427157e-10 8.271784383e-10 7.173720982e-10 5.077164601e-10 9.780332707e-10 6.626317422e-10 7.373792837e-10 6.566167352e-10 4.930577523e-10 7.205487767e-10 2.52959306e-10 2.888703707e-10 5.16838749e-10 3.669241294e-10 4.357908586e-10 3.335094532e-10 4.328680006e-10 2.218442713e-10 3.155261051e-10 3.609788983e-10 4.865903846e-10 1.868484997e-10 2.291985049e-10 3.367105354e-10 4.982909292e-10 4.621783976e-10 3.747097612e-10 1.473050901e-10 4.168330823e-10 4.144832377e-10 1.925446922e-10 2.945725281e-10 2.70002105e-10 6.296126751e-10 2.439707771e-10 1.985785099e-10 5.244281188e-10 3.231984928e-10 6.876219412e-10 6.869607306e-10 1.633114658e-10 4.70976935e-10 3.535995539e-10 6.563683822e-10 2.615564184e-10 5.351827475e-10 3.577023089e-10 9.128920234e-10 1.630107338e-10 2.530771752e-10 5.86939329e-10 5.070680685e-10 2.342673086e-10 2.04642296e-10 7.853755988e-10 8.861593831e-10 2.997839014e-10 3.285192503e-10 2.636464691e-10 3.124646545e-10 3.484204081e-10 3.293050651e-10 3.976056631e-10 2.727198633e-10 2.404584156e-10 7.125880232e-10 5.924782895e-10 1.355944602e-10 4.688213117e-10 3.884831984e-10 2.845421605e-10 1.836646701e-10 7.109091255e-10 3.545763626e-10 3.431540141e-10 7.007827906e-10 1.857192618e-10 3.113167987e-10 6.674263412e-10 6.596053129e-10 1.544957504e-10 2.000410841e-10 1.301618219e-10 2.480747814e-10 2.573870188e-10 4.539928636e-10 3.278395742e-10 2.97590819e-10 6.367994614e-10 2.248921646e-10 4.614986383e-10 1.910865202e-10 2.411009969e-10 6.535811716e-10 4.787625765e-10 +4.418711802e-10 6.209545677e-10 1.700662176e-10 2.942472271e-10 4.463555263e-10 2.724937393e-10 2.44089176e-10 2.91627039e-10 3.058419603e-10 2.38029063e-10 5.365215701e-10 4.412206754e-10 7.57327569e-10 1.391185705e-10 8.886697935e-11 4.117027241e-10 7.474941207e-10 3.528482668e-10 5.260808052e-10 2.056621785e-10 2.043736459e-10 2.635659437e-10 6.266509121e-10 4.698279025e-10 2.49849767e-10 5.087803762e-10 1.722354433e-10 2.599888584e-10 5.932009091e-10 2.313582489e-10 4.205940824e-10 5.146386881e-10 4.029287422e-11 1.488602118e-10 7.058955439e-10 4.553752153e-10 3.96918957e-10 7.210917223e-10 4.639136451e-10 2.061822524e-10 2.586346302e-10 3.361230124e-10 8.771139034e-11 3.82971823e-10 3.704738805e-10 4.812460411e-10 3.514831613e-10 5.97161881e-10 1.271816661e-09 3.744434316e-10 4.006420469e-10 3.060827634e-10 4.194976617e-10 2.882943923e-10 4.113334442e-10 6.408743344e-10 6.157291691e-10 2.450007678e-10 4.946659146e-10 5.194184499e-10 5.310904176e-10 3.895889379e-10 3.558242008e-10 2.412703818e-10 2.874326358e-10 5.060010289e-10 2.672745677e-10 2.54970062e-10 4.231809867e-10 3.82525503e-10 3.257883646e-10 1.257137939e-10 2.642164574e-10 1.037099167e-09 2.091708499e-10 4.205618948e-10 4.149960925e-10 3.061569655e-10 4.7054702e-10 4.359681419e-10 4.329691695e-10 5.827569728e-10 9.80910934e-10 5.914850664e-10 3.682065159e-10 3.062519819e-10 4.777935944e-10 9.167096091e-10 2.048157273e-10 8.061724799e-10 9.564466994e-10 9.852288053e-10 1.083790972e-09 8.768846832e-10 5.417599238e-10 1.10839288e-09 8.122711404e-10 5.272734682e-10 5.527799536e-10 4.309794895e-10 6.366204066e-10 3.198521553e-10 8.322605997e-10 1.216926022e-09 6.391977782e-10 7.635885957e-10 6.256120983e-10 5.747309945e-10 8.994168184e-10 5.947991577e-10 6.788064848e-10 1.65841401e-10 4.777343416e-10 5.463501334e-10 4.734792495e-10 5.492856278e-10 8.509920434e-10 5.029330867e-10 3.897665218e-10 3.894215546e-10 5.668092702e-10 5.096078694e-10 2.782459693e-10 6.687495882e-10 3.446802308e-10 6.861514632e-10 6.057005544e-10 6.279703846e-10 5.257558297e-10 4.553594966e-10 2.487705305e-10 2.353690325e-10 2.23605803e-10 6.317748684e-10 3.457025292e-10 2.498163667e-10 4.191970015e-10 5.845672267e-10 2.659767037e-10 3.31646355e-10 1.879609776e-10 2.140325465e-10 1.386581742e-10 2.941419656e-10 9.573457782e-11 1.309807526e-10 3.97201575e-10 3.909473107e-10 1.262361425e-10 2.761592563e-10 1.995315731e-10 1.856934275e-10 8.260765073e-11 1.731148027e-10 2.213988552e-10 2.918687705e-10 1.9125801e-10 9.901602157e-11 4.267324696e-10 1.096313916e-10 1.253772625e-10 1.121449632e-10 2.606940155e-10 3.496609154e-10 1.685992231e-10 4.106218577e-10 8.082904866e-10 2.875692977e-10 3.572771991e-10 4.735945613e-10 4.542621253e-10 5.685631825e-10 3.222710685e-10 6.870295768e-10 3.403884847e-10 9.740289741e-10 6.056716531e-10 5.723855584e-10 5.897858962e-10 3.838439468e-10 5.636303722e-10 4.32889487e-10 6.027640196e-10 6.24161463e-10 7.321775246e-10 3.655316492e-10 4.739431767e-10 6.647678531e-10 1.081285509e-09 5.303405387e-10 7.032584701e-10 7.29236393e-10 9.959107891e-10 5.415816758e-10 6.656708096e-10 5.906240186e-10 8.177425161e-10 5.660574522e-10 7.003659993e-10 5.772851492e-10 1.12222443e-09 1.499566329e-10 5.857264601e-10 6.764186106e-10 7.191311222e-10 2.348597335e-10 5.807365604e-10 1.594027954e-09 6.731769958e-10 9.254622452e-10 8.476640295e-10 3.626236292e-10 2.911674023e-10 2.259015363e-10 5.310670973e-10 1.620072812e-10 6.172404145e-10 2.507103251e-10 3.010658514e-10 1.408720548e-10 5.463303952e-10 2.70192508e-10 5.763796207e-10 3.692512942e-10 5.558256709e-10 5.627470016e-10 3.440381693e-10 3.719308379e-10 5.27942715e-10 2.770987013e-10 5.147124783e-10 2.868622102e-10 3.961781901e-10 3.350174719e-10 3.819496871e-10 9.593074322e-10 8.219710813e-10 5.816641225e-10 3.594432466e-10 5.675481827e-10 2.167201166e-10 5.358470998e-10 3.603891318e-10 3.917706705e-10 3.571565017e-10 4.320505072e-10 4.668961371e-10 2.613543872e-10 5.954112552e-10 5.347814403e-10 3.057121086e-10 7.212905766e-10 5.528081655e-10 3.361667733e-10 4.270096964e-10 4.582208256e-10 1.706672068e-10 4.268971097e-10 1.926495558e-10 8.384131827e-10 2.826316945e-10 1.880139499e-10 6.910132506e-10 2.655660864e-10 1.156959446e-10 6.676116556e-10 2.282521426e-10 1.804994339e-10 3.799044272e-10 4.385031694e-10 5.136622312e-10 5.40378808e-10 3.044695411e-10 3.932950882e-10 6.253821156e-10 1.393651442e-10 4.883309453e-10 5.124690529e-10 4.910883897e-10 2.98571473e-10 3.635918557e-10 9.072354714e-10 6.47557075e-10 6.09948903e-10 3.679594365e-10 4.339982867e-10 5.781759058e-10 3.725219087e-10 3.880871945e-10 7.120811015e-10 5.393972367e-10 7.718985742e-10 1.983103458e-10 1.518348905e-10 3.552159092e-10 2.058292751e-10 5.485845942e-10 6.514967297e-10 3.369945661e-10 2.163304756e-10 +2.272048705e-10 3.675410434e-10 2.64293405e-10 9.441430946e-11 4.480003209e-10 3.794770795e-10 5.491168993e-10 3.257276213e-10 4.315103309e-10 2.851463583e-10 7.52192297e-10 1.935742963e-10 5.186050862e-10 4.682983783e-10 6.31282426e-10 1.074985541e-09 2.763857006e-10 7.827098901e-10 4.722393768e-10 2.180767855e-10 2.751304216e-10 4.616900702e-10 5.685736354e-10 5.985705648e-10 4.471986785e-10 2.674999419e-10 3.952940665e-10 3.441733924e-10 3.217221938e-10 3.038492707e-10 8.672886833e-11 4.594431849e-10 5.277801624e-10 2.817078697e-10 2.923543031e-10 1.814512683e-10 2.277369706e-10 4.074079308e-10 6.95687819e-10 4.442190255e-10 2.542967551e-10 8.368027428e-11 5.765749126e-10 5.75423591e-10 3.706584838e-10 4.298387546e-10 4.898122367e-10 2.94236044e-10 5.542374982e-10 3.055295248e-10 7.296335258e-10 2.899685368e-10 4.211450393e-10 5.765137635e-10 4.122636902e-10 3.042976574e-10 2.486882385e-10 3.160245566e-10 5.497058528e-10 3.302915317e-10 2.069228294e-10 3.569684921e-10 5.896934993e-10 5.658179991e-10 6.78741998e-10 6.106868891e-10 1.246173625e-10 2.916761634e-10 3.817783133e-10 6.794063331e-10 4.045582344e-10 1.606879096e-10 3.719650644e-10 2.792419043e-10 4.228058944e-10 1.749584355e-10 2.52367309e-10 2.212596264e-10 2.502646847e-10 2.70820645e-10 4.75895409e-10 8.970283656e-11 5.076015968e-10 4.7029714e-10 8.03980505e-10 4.176458462e-10 1.623350023e-10 7.048775606e-10 6.04966665e-10 6.499132469e-10 8.312832389e-10 8.814943361e-10 1.211229777e-09 4.972825504e-10 6.474624696e-10 1.019610422e-09 8.395324623e-10 6.439832574e-10 8.196431164e-10 1.302056046e-09 9.814344613e-10 2.480384266e-10 8.213032663e-10 3.178858617e-10 3.152617502e-10 2.253450909e-10 9.251709121e-10 7.482892785e-10 2.614753176e-10 7.880504386e-10 7.483674654e-10 8.614422384e-10 9.618244521e-10 4.13453407e-10 3.578655202e-10 1.966090931e-10 5.744327864e-10 4.744432428e-10 6.733545329e-10 2.208964724e-10 3.050271128e-10 4.702586261e-10 5.280104917e-10 2.611645927e-10 5.788638555e-10 3.83645496e-10 3.831470453e-10 1.335496519e-10 6.282668049e-10 1.358377196e-10 2.177430466e-10 3.96123847e-10 1.664576409e-10 4.631254695e-10 1.813175565e-10 3.334891028e-10 1.813439499e-10 1.271413355e-10 1.618547344e-10 2.799082834e-10 3.768937308e-10 2.733112692e-10 3.449944934e-10 3.059496929e-10 4.191127675e-10 5.357515914e-11 2.633614015e-10 6.258996645e-11 4.423059066e-11 2.198680624e-10 1.575104475e-10 9.02395031e-11 1.248734787e-10 2.157158624e-10 1.426822721e-10 1.65200977e-10 2.930311674e-10 2.040368105e-10 3.649352895e-10 1.571897788e-10 2.361236082e-10 4.109426038e-10 1.679926063e-10 1.396450811e-13 3.359793419e-10 2.815240572e-10 2.798115701e-10 2.155656607e-10 4.850039212e-10 1.484746435e-10 1.826454774e-10 5.337812836e-11 5.074710801e-10 5.441531384e-10 3.76782712e-10 3.995486542e-10 2.182347969e-10 8.572620834e-10 4.966059028e-10 5.120059056e-10 6.625726081e-10 6.133458569e-10 7.629231516e-10 6.457139461e-10 3.428946779e-10 5.094606589e-10 4.825134297e-10 1.211575547e-09 6.10384961e-10 4.497785043e-10 4.637032597e-10 6.417674034e-10 5.404292182e-10 8.295988529e-10 4.206409901e-10 5.257725931e-10 7.643336987e-10 9.20881803e-10 7.508916369e-10 8.83510546e-10 7.530440307e-10 7.259961494e-10 7.938710643e-10 1.13736961e-09 3.564622576e-10 4.518122178e-10 6.770784356e-10 4.877963253e-10 6.80208985e-10 9.907419851e-10 1.072814531e-09 2.182177182e-10 5.171693056e-10 4.150051989e-10 7.044478322e-10 5.169635273e-10 3.380949538e-10 3.572118799e-10 5.57576089e-10 3.74518171e-10 2.625366026e-10 4.687991089e-10 3.400244989e-10 2.886815103e-10 3.10864797e-10 6.004746592e-10 3.499136841e-10 5.44280759e-10 1.736167726e-10 5.967311436e-10 2.422896124e-10 5.800475156e-10 2.056097025e-10 6.164352608e-10 6.177245143e-10 5.790753412e-10 4.285885915e-10 9.183967263e-10 4.41812687e-10 4.915203695e-10 4.665830767e-10 6.78294467e-10 7.971349848e-10 3.461945669e-10 6.495403552e-10 6.352414305e-10 6.071124966e-10 2.642104646e-10 4.510398967e-10 3.62041537e-10 2.211498995e-10 6.810604585e-10 5.549051899e-10 2.497811667e-10 2.154399055e-10 5.614867904e-10 4.253835336e-10 5.551950123e-10 4.806137686e-10 1.951640723e-10 4.94155343e-10 3.778862524e-10 5.091044531e-10 5.193404632e-10 2.087979414e-10 2.283323546e-10 6.171043225e-10 1.602094698e-10 3.350703975e-10 7.759139567e-10 1.885472855e-10 2.447168241e-10 2.844637196e-10 2.66099713e-10 4.788711284e-10 4.39233372e-10 2.535200743e-10 5.302417253e-10 2.123826136e-10 2.989951906e-10 3.059877925e-10 6.530632e-10 3.816480573e-10 3.500080675e-10 7.489045923e-10 3.962339006e-10 6.78582933e-10 9.009222993e-10 3.587730808e-10 5.021527546e-10 7.07846793e-10 2.181160187e-10 2.855670079e-10 5.027654648e-10 2.82867107e-10 5.70552435e-10 4.491157707e-10 4.867434655e-10 6.54879024e-10 6.383114523e-10 +3.431234458e-10 7.881928094e-10 4.73540841e-10 2.30550583e-10 4.14827119e-10 3.62088288e-10 3.35455433e-10 5.594141467e-10 2.518859711e-10 3.751767938e-10 5.585475814e-10 8.124775296e-10 1.10517465e-09 5.641337844e-10 2.047903271e-10 5.099209431e-10 4.554065207e-10 6.597997612e-10 3.145412979e-10 4.194674545e-10 9.567365729e-11 4.656187094e-10 3.952693676e-10 5.84968566e-10 5.004718831e-11 7.410873268e-10 3.614962754e-10 5.873126986e-10 3.360087306e-10 1.866383525e-10 6.587757421e-10 2.898022023e-10 4.575952618e-10 1.972023738e-10 5.803784871e-10 4.384105747e-10 2.391228756e-10 1.350615541e-10 3.189000081e-10 2.906342078e-10 4.04218126e-10 4.559867198e-10 3.814943897e-10 2.755000119e-10 9.938889178e-11 1.553890737e-10 6.893794552e-10 4.382908778e-10 3.337996393e-10 6.515554027e-10 6.257914865e-10 6.553206736e-10 4.086878428e-10 5.535255536e-10 1.987943453e-10 7.605362726e-10 5.185259077e-10 5.50276043e-10 5.120794768e-10 5.675700688e-10 4.745146428e-10 3.655784723e-10 1.425252412e-10 5.4781521e-10 6.42859655e-10 3.054648957e-10 6.631513104e-10 3.266592232e-10 3.010463319e-10 5.054196068e-10 2.610288046e-10 3.972328258e-10 4.583895153e-10 2.729546252e-10 2.063737433e-10 3.701720372e-10 3.172354704e-10 1.948975832e-10 4.009785001e-10 1.344156374e-10 2.735534739e-10 8.050472106e-10 4.932105659e-10 2.138154456e-10 8.328540297e-10 7.429549831e-10 6.142283864e-10 5.427213003e-10 3.867006105e-10 3.737725077e-10 7.503653944e-10 9.977271601e-10 6.179688722e-10 7.029144336e-10 1.276539116e-09 5.817904969e-10 9.96104268e-10 4.2422978e-10 1.036560459e-09 8.808788919e-10 9.370582473e-10 6.359852277e-10 8.826946645e-10 7.250210408e-10 4.623890998e-10 8.034916377e-10 3.731729676e-10 4.047362404e-10 5.101437489e-10 2.427271081e-10 5.2872572e-10 5.262277096e-10 5.950133101e-10 6.539108499e-10 3.370757451e-10 9.225507555e-10 8.145890936e-10 3.088439275e-10 8.198095675e-10 8.552718817e-10 5.170478342e-10 3.629277562e-10 5.130810008e-10 1.65814759e-10 4.884875146e-10 6.778883227e-10 3.813029387e-10 3.030247713e-10 4.622537792e-10 2.469749242e-10 3.47726924e-10 2.803361221e-10 2.955169697e-10 1.013117398e-10 1.078241657e-10 2.124226827e-10 2.798916441e-11 1.51428147e-10 3.006657484e-10 2.871306655e-10 3.47844044e-10 3.186508601e-10 2.709767262e-10 3.929011427e-10 1.818014895e-10 2.180260967e-10 5.463063723e-11 5.289807378e-10 9.657071813e-11 1.284292999e-10 1.427323823e-10 6.88812432e-10 8.271370492e-11 1.415262762e-10 2.047383315e-10 9.158587368e-11 2.158415472e-10 1.714381008e-10 1.682535925e-10 2.512313304e-10 1.581456824e-10 3.196205734e-10 3.20186463e-10 2.733842468e-10 4.991882139e-10 3.760936673e-10 2.168613237e-10 2.109515359e-10 4.670987011e-10 1.261414334e-10 4.308189661e-10 2.901820346e-10 9.354208078e-10 3.590068364e-10 5.736215101e-10 8.393555462e-10 7.114185651e-10 5.641278459e-10 3.971198306e-10 2.652151105e-10 4.603320996e-10 3.128050871e-10 5.293150869e-10 3.520748421e-10 3.317482518e-10 7.561713044e-10 4.311068557e-10 5.615489513e-10 5.520321319e-10 4.848994509e-10 8.161853713e-10 3.389307911e-10 8.978837676e-10 3.546856742e-10 9.632530824e-10 9.548478605e-10 3.983432282e-10 5.777634442e-10 8.743039048e-10 8.058310702e-10 1.101988453e-09 1.017284417e-09 6.391040729e-10 1.179228371e-09 4.025100313e-10 5.746048272e-10 8.067657465e-10 7.749945853e-10 6.134662064e-10 7.174163651e-10 8.183534916e-10 5.852141416e-10 1.138672272e-09 1.15497155e-09 3.760772491e-10 3.922355857e-10 2.180697429e-10 2.095330987e-10 4.424812747e-10 4.98478991e-10 1.971674877e-10 5.145767213e-10 3.054869312e-10 2.873203323e-10 4.529363014e-10 5.594715164e-10 9.991822601e-10 4.99803848e-10 7.481148223e-10 9.925276365e-11 3.34675734e-10 6.104174115e-10 2.049842515e-10 5.644706681e-10 6.560249668e-10 5.251571954e-10 5.78255195e-10 2.834483248e-10 1.90132395e-10 5.303456595e-10 1.502785823e-10 1.996280367e-10 4.68381822e-10 1.410132214e-10 2.825227598e-10 7.23481997e-10 7.013911181e-10 8.253496031e-10 4.552102198e-10 3.033458995e-10 8.67525829e-11 4.498760861e-10 3.009817206e-10 7.061669726e-10 4.833840155e-10 3.709719038e-10 1.937323496e-10 2.341157336e-10 2.861188689e-10 9.717698585e-11 4.257968349e-10 6.584068286e-10 4.312405907e-10 4.652755654e-10 3.118329663e-10 6.210695607e-10 2.07498449e-10 1.360620595e-10 4.385682601e-10 5.648410456e-10 7.571019962e-10 7.288519363e-10 2.606788843e-10 4.074740662e-10 3.244281826e-10 4.554271857e-10 5.222451485e-10 8.997417292e-10 3.607264869e-10 2.389585572e-10 3.172778508e-10 8.23574832e-10 3.490981587e-10 5.095382663e-10 2.734028935e-10 3.532174971e-10 1.826382718e-10 2.988873856e-10 6.495361195e-10 5.533008864e-10 1.614807272e-10 3.15709354e-10 3.893724381e-10 3.64171302e-10 5.859087436e-10 4.24024078e-10 4.697308164e-10 1.492402756e-10 2.649603738e-10 5.856771572e-10 +2.875709513e-10 3.820811424e-10 2.170232582e-10 6.149699499e-10 3.868435641e-10 1.331324234e-10 2.58504131e-10 5.583646753e-10 2.948124303e-10 1.133733161e-09 4.616913318e-10 5.018609573e-10 6.948359807e-10 6.728177191e-10 3.118774268e-10 9.726481281e-10 4.193968332e-10 9.932500179e-10 3.969117783e-10 7.346014139e-10 7.175061409e-10 4.385742704e-10 4.405500389e-10 2.960224526e-10 5.507043705e-10 4.660038909e-10 6.150670825e-10 4.1137602e-10 2.819825191e-10 3.910883866e-10 4.370566013e-10 1.629586035e-10 9.482636512e-10 1.264767755e-10 1.680295731e-10 3.533502599e-10 1.273805993e-10 6.22597972e-10 4.264152369e-10 8.249771586e-11 2.998979093e-10 4.846293234e-10 3.740511604e-10 4.882232469e-10 2.200193341e-10 2.677648408e-10 2.82893039e-10 5.246902317e-10 6.29600802e-10 6.104651767e-10 3.770176446e-10 1.235967235e-10 5.52690129e-10 5.644175313e-10 3.773033597e-10 9.240185292e-10 5.316648491e-10 5.293261555e-10 4.755726294e-10 8.302430236e-10 5.574995437e-10 5.030675731e-10 2.930490085e-11 6.685236952e-10 5.026084389e-10 6.239606931e-10 2.957164872e-10 2.372790454e-10 3.283626559e-10 7.163992758e-10 6.995264845e-10 3.488176826e-10 5.797475219e-10 9.50103165e-10 3.159630816e-10 7.31600298e-10 3.952678618e-10 3.505453256e-10 4.343450167e-10 5.393178619e-10 4.418598737e-10 2.480948301e-10 4.914815761e-10 6.688757933e-10 6.529181967e-10 4.375977254e-10 4.861816532e-10 1.109890389e-09 6.253290229e-10 5.772037434e-10 7.358459066e-10 6.116634744e-10 6.154959868e-10 4.804705924e-10 7.286937689e-10 6.512769384e-10 5.873489252e-10 5.761949453e-10 7.461812038e-10 5.534514575e-10 7.427814435e-10 8.28557331e-10 5.015627905e-10 1.070414692e-09 5.642103194e-10 6.498330895e-10 1.05764819e-09 5.857401377e-10 9.267569746e-10 6.041600723e-10 8.268878833e-10 8.486976143e-11 6.703976076e-10 5.257754228e-10 3.772331007e-10 5.948531424e-10 5.820307875e-10 5.914256541e-10 6.832328006e-10 5.140978129e-10 6.820052436e-10 3.512721074e-10 5.496549665e-10 5.49233557e-10 3.478202337e-10 5.506890817e-10 4.849623068e-10 2.097156146e-10 1.513015511e-10 3.53298446e-10 1.375648551e-10 2.460974676e-10 4.300485779e-10 2.005572632e-10 1.409789611e-11 2.444844523e-10 8.325188973e-11 2.279501088e-10 3.036148669e-10 7.03244124e-11 1.815234353e-10 2.267129974e-10 2.965590976e-10 2.394200752e-10 3.281024509e-10 5.137121211e-11 2.743515442e-10 2.926378452e-10 3.592879283e-10 1.692990852e-10 3.656980191e-10 1.154372319e-10 2.849075556e-10 4.232985777e-10 5.21749303e-10 4.043872826e-10 1.488313112e-10 2.409220843e-10 2.955895292e-10 1.182954389e-11 2.086812035e-10 2.381167627e-10 1.942243342e-10 1.431938047e-10 3.951303806e-10 4.247826849e-10 4.875770552e-10 5.458238805e-11 2.760252135e-10 4.914230957e-10 6.711173971e-11 6.295416957e-10 1.98516047e-10 2.561736414e-10 3.425164529e-10 3.996950483e-10 3.43255222e-10 8.213315069e-10 7.979080694e-10 5.113933852e-10 5.543890168e-10 1.048986018e-09 7.060138101e-10 9.869168722e-10 6.801755454e-10 8.444216085e-10 3.852554599e-10 6.506822611e-10 4.337500194e-10 6.774966284e-10 3.823797571e-10 4.513821432e-10 7.027148464e-10 5.831731311e-10 9.403284602e-10 5.580723928e-10 5.764413282e-10 5.767011371e-10 5.904773884e-10 7.11440439e-10 3.555913171e-10 5.376046591e-10 8.190679846e-10 5.355712939e-10 1.035497188e-09 5.306918253e-10 3.236892583e-10 8.462594678e-10 7.361844428e-10 7.18471388e-10 8.310541355e-10 1.17098865e-09 4.797930781e-10 1.195276431e-10 1.033088507e-09 4.26892155e-10 3.928701725e-10 4.258187741e-10 4.28654105e-10 6.262935385e-10 3.069705061e-10 3.563479519e-10 4.098731474e-10 3.043871312e-10 3.526872027e-10 1.503026e-10 2.061589902e-10 3.225952438e-10 5.624091171e-10 5.45886031e-10 5.197702126e-10 4.860019812e-10 4.857634304e-10 4.143815139e-10 8.004606386e-10 7.011859024e-10 6.412852127e-10 4.075932077e-10 1.819778199e-10 4.194175291e-10 7.271044085e-10 5.004234397e-10 3.012583714e-10 4.396861868e-10 3.333656898e-10 7.870580313e-10 3.891948098e-10 7.000102874e-10 2.235786683e-10 2.844435583e-10 3.006072606e-10 2.946136229e-10 6.958158404e-10 5.408211029e-10 5.230512145e-10 3.739909182e-10 5.146832005e-10 1.951777689e-10 1.182593139e-10 6.693571956e-10 3.975234494e-10 1.201046069e-10 4.507759276e-10 2.628545637e-10 3.996823938e-10 5.623289167e-10 4.733148071e-10 4.242476553e-10 7.328692948e-10 3.009509397e-10 4.980082964e-10 3.019210229e-10 4.262570257e-10 1.489278692e-10 1.149307415e-10 4.683692882e-10 4.246046023e-10 3.631478724e-10 2.610048873e-10 1.268871213e-09 1.881172811e-10 8.206367074e-10 3.405431375e-10 2.53020587e-10 1.306317732e-10 2.358732378e-10 7.044133022e-10 4.673166797e-10 5.124782576e-10 3.363519881e-10 7.991428253e-10 2.898620392e-10 2.208980566e-10 3.805941578e-10 3.006492925e-10 7.339199475e-10 3.996859149e-10 3.256585368e-10 1.796568136e-10 1.944070304e-10 +6.595945303e-10 2.819684055e-10 3.774882571e-10 2.805399199e-10 3.714286356e-10 2.532083698e-10 4.507936704e-10 2.48881665e-10 2.864551633e-10 1.50169288e-10 2.441474474e-10 2.488029195e-10 6.270418698e-10 4.473253085e-10 4.258743651e-10 5.464954048e-10 2.694772129e-10 3.987562032e-10 3.935706825e-10 4.579821128e-10 6.016188575e-10 4.923995566e-10 4.488587029e-10 2.72519771e-10 5.264785869e-10 5.327997887e-10 8.00447682e-10 4.775539565e-10 5.852415527e-10 1.007669905e-09 1.563282318e-10 1.797421804e-11 6.271185685e-10 4.374202601e-10 3.55276338e-10 5.706956159e-10 3.940174175e-10 5.205150317e-10 6.622963096e-10 1.404792819e-10 7.293857421e-10 5.15543447e-11 5.865822545e-10 4.232628538e-10 3.275772603e-10 1.961033864e-10 2.555092007e-10 1.872517879e-10 2.629728797e-10 2.831719469e-10 8.367747329e-10 8.826853572e-10 3.688910915e-10 6.188898515e-10 2.266895967e-10 5.958273094e-10 7.530390514e-10 5.141124588e-10 6.210973235e-10 4.878698638e-10 3.111526528e-10 4.375072598e-10 3.472562169e-10 4.935497302e-10 4.034689977e-10 5.248087273e-10 4.311103211e-10 4.267756797e-10 8.247242741e-10 5.21769266e-10 4.765730149e-10 2.151119256e-10 2.104133464e-10 2.900207708e-10 2.570310296e-10 5.557176749e-10 1.176209577e-10 1.208135114e-09 3.600219964e-10 4.387432307e-10 6.721574665e-10 2.613002138e-10 5.295228329e-10 3.047548122e-10 4.210196512e-10 7.777524456e-10 7.69839126e-10 8.413454101e-10 5.683825846e-10 8.085572958e-10 8.833949815e-10 1.049556277e-09 8.224695583e-10 6.925328113e-10 4.284487899e-10 5.405111093e-10 7.393271099e-10 7.949829506e-10 8.43336631e-10 7.9250904e-10 6.126077926e-10 8.664944657e-10 4.510354847e-10 5.111464242e-10 4.046730224e-10 8.090791321e-10 5.213520541e-10 5.712175244e-10 6.735365413e-10 2.174496611e-10 3.065196714e-10 4.621943141e-10 2.257918058e-10 8.000729328e-10 8.998525377e-10 1.964937344e-10 7.143898112e-10 8.951425675e-10 3.962296682e-10 5.476010386e-10 8.425629566e-10 4.35722134e-10 7.047901994e-11 4.246698778e-10 5.004493681e-10 3.88155743e-10 1.991817639e-10 3.50572815e-10 2.442132243e-10 4.842558763e-10 3.623793478e-10 3.74715144e-10 7.332978353e-10 1.157835193e-10 2.281619575e-11 2.193653101e-10 3.979708454e-10 2.852330051e-10 2.933821161e-10 2.095736286e-10 3.908116782e-10 1.412680713e-10 3.214346881e-10 3.078219051e-10 3.067725232e-10 3.066804825e-10 3.555028793e-10 3.97541794e-10 1.597033168e-10 8.267570003e-10 2.814532223e-10 4.85012164e-10 8.128891686e-10 3.466124462e-10 2.885015403e-10 2.320487685e-10 2.111705226e-10 5.39535438e-10 1.655538693e-10 3.454889183e-10 8.876221888e-11 3.351528616e-10 3.087122135e-10 5.848345565e-10 4.408695367e-10 1.412966733e-10 1.847569961e-11 2.130346002e-10 1.172261291e-10 1.32887485e-11 5.918139306e-11 2.607397213e-10 5.455948016e-10 4.270597339e-10 3.596521787e-10 9.737205611e-10 5.026050773e-10 2.917970977e-10 6.016607212e-10 4.802926772e-10 6.997633811e-10 6.347245451e-10 8.047545674e-10 4.18581215e-10 3.029055284e-10 5.089081972e-10 2.093110539e-10 6.794736356e-10 4.131290735e-10 4.902127693e-10 5.577424912e-10 6.713912213e-10 3.478427962e-10 3.752295706e-10 4.454837803e-10 5.98583737e-10 9.11116539e-10 5.337984278e-10 7.152907347e-10 5.103156253e-10 4.071794862e-10 7.949660598e-10 7.573436103e-10 5.417423853e-10 9.653422416e-10 7.55691219e-10 4.652971967e-10 7.853670433e-10 9.319614069e-10 9.752961674e-10 8.144363942e-10 6.670317684e-10 1.069697089e-09 7.423292771e-10 9.406319583e-10 2.889126733e-10 5.447746232e-10 4.446393814e-10 2.321549542e-10 3.618469479e-10 2.949927777e-10 4.254417499e-10 3.561326126e-10 4.49483607e-10 3.776148688e-10 3.762306537e-10 4.267633442e-10 3.992466067e-10 6.331016494e-10 4.233990877e-10 3.891934362e-10 5.668226443e-10 8.046867844e-10 3.163418078e-10 3.130586283e-10 6.103382522e-10 4.659000087e-10 4.210668098e-10 6.696397163e-10 4.71024274e-10 5.03584074e-10 4.755894987e-10 2.034133469e-10 4.55808536e-10 4.340956705e-10 6.524926756e-10 5.409493775e-10 5.046511444e-10 4.65320591e-10 3.912267704e-10 4.438843214e-10 9.622936261e-10 6.05637431e-10 3.797928124e-10 4.000661327e-10 2.364512186e-10 2.165430589e-10 1.965224276e-10 7.706838071e-10 1.550376332e-10 5.038512727e-10 2.410955447e-10 7.046558207e-10 5.959174754e-10 3.232585893e-10 1.610462688e-10 3.104712267e-10 2.515328985e-10 2.440446617e-10 4.981585812e-10 2.59165235e-10 3.097882811e-10 5.141702696e-10 3.54413374e-10 3.668027731e-10 9.198057966e-10 1.628977171e-10 1.304322429e-10 2.134614484e-10 2.840900508e-10 4.573213833e-10 4.303715839e-10 4.874227374e-10 8.990620626e-10 3.59816109e-10 4.558582257e-10 3.525325411e-10 5.605035216e-10 6.34817165e-10 1.973756629e-10 5.34844561e-10 4.315617689e-10 5.003305219e-10 5.031020859e-10 3.564092576e-10 5.362766602e-10 4.244875394e-10 4.231560701e-10 2.68328075e-10 8.656649638e-10 +1.624517072e-10 6.384719546e-10 3.579663198e-10 3.037757665e-10 4.559536127e-10 1.946014736e-10 5.03524167e-10 7.540952101e-10 2.693306012e-10 1.447798151e-10 7.189438241e-10 9.638849665e-11 5.218725398e-10 4.619321521e-10 4.875656337e-10 3.221968327e-10 4.422922929e-10 1.026346272e-09 3.939665001e-10 1.312254901e-10 5.02230263e-10 2.47267765e-10 4.808254634e-10 4.913608964e-10 8.30646249e-10 4.597915185e-10 2.358330717e-10 4.399148965e-10 3.990224117e-10 4.547099609e-10 4.828976689e-10 1.491632318e-10 4.283578726e-10 1.510065638e-10 3.082998719e-10 6.676568194e-11 5.352393257e-10 5.582681785e-10 2.265988484e-10 3.895907824e-10 1.552572491e-10 2.608793828e-10 2.447090489e-10 5.949971625e-10 5.374812727e-10 4.523744295e-10 4.246593837e-10 4.508469137e-10 3.602034637e-10 3.288522636e-10 3.883109476e-10 3.760658993e-10 7.002632007e-10 4.446724019e-10 3.459964062e-10 5.720310273e-10 5.650883551e-10 5.659839747e-10 5.065404689e-10 5.026699538e-10 3.923233547e-10 5.384698281e-10 1.309396563e-10 4.804043203e-10 6.014818936e-10 7.258423303e-10 2.834462096e-10 2.619899322e-10 6.646954204e-10 6.223224051e-10 2.698808351e-10 5.28680209e-10 1.523686433e-10 4.182730444e-10 4.349598197e-10 3.617354477e-10 2.415462847e-10 1.801557885e-10 3.214840527e-10 2.768769305e-10 1.681161601e-10 3.418024043e-10 8.621965348e-10 9.037137699e-10 4.762196722e-10 5.600879673e-10 8.704153328e-10 1.16668902e-09 9.574785259e-10 1.071331377e-09 8.126863632e-10 1.071694889e-09 6.846418854e-10 7.875346306e-10 7.768210658e-10 9.248923789e-10 5.594735967e-10 5.510267239e-10 4.105933543e-10 6.002771938e-10 4.738463546e-10 4.875872605e-10 4.828365796e-10 3.187729934e-10 1.064695365e-09 8.611526875e-10 1.01240582e-09 7.843957952e-10 8.328896481e-10 4.862467708e-10 4.055635576e-10 1.071312942e-09 7.707116017e-10 6.860329377e-10 9.750839404e-10 5.676590335e-10 1.022847206e-09 3.616292894e-10 3.563962361e-10 7.385841559e-10 2.757174483e-10 4.65762797e-10 3.377351849e-10 4.894739151e-10 3.463437425e-10 1.93235674e-10 3.05676933e-10 4.742494606e-10 2.960684402e-10 1.765581067e-10 8.667565911e-11 7.924287716e-11 4.637657295e-10 2.573800037e-10 2.156284979e-10 6.062382965e-11 3.165621364e-10 3.922521645e-10 2.918450418e-10 2.517404556e-10 6.241439024e-10 5.07016284e-10 6.042292051e-10 5.116223161e-10 4.604779149e-10 4.567950411e-10 5.967519978e-10 4.455236041e-10 1.864439015e-10 4.47859763e-10 3.45043713e-10 3.296783388e-10 4.907323236e-10 3.147140568e-10 3.647957274e-10 4.265947466e-10 6.275675273e-10 2.955836097e-10 2.202429486e-10 4.396709429e-10 4.544729241e-10 1.15957566e-10 2.477338058e-10 4.564839128e-10 4.738693917e-10 3.021029668e-11 1.494850504e-10 5.645611443e-11 3.858356963e-10 1.667680718e-10 2.331175655e-10 2.590591787e-10 2.31414984e-10 2.187502395e-10 2.69070535e-10 3.940829818e-10 4.997865196e-10 6.042665978e-10 1.090785155e-10 8.730380798e-10 7.485595008e-10 7.772362582e-10 5.625562793e-10 2.846762108e-10 7.130183162e-10 7.651097071e-10 4.564592339e-10 8.900348547e-10 1.266819955e-09 5.055800888e-10 6.060850452e-10 5.202116138e-10 6.483872779e-10 7.052498372e-10 8.928344824e-10 3.945052343e-10 3.798174978e-10 4.832308044e-10 1.364040769e-09 9.346230728e-10 7.275649288e-10 6.355498912e-10 2.501294893e-10 7.018970991e-10 3.709484271e-10 1.016226105e-09 8.00481152e-10 3.754159755e-10 1.065088755e-09 7.000363856e-10 1.046243215e-09 8.842993924e-10 6.10158991e-10 4.824896111e-10 7.068714428e-10 5.133007627e-10 3.676981823e-10 1.174825013e-09 5.128018234e-10 2.856469811e-10 4.494814202e-10 2.990593301e-10 1.140550429e-10 1.437605394e-10 8.339194175e-10 4.930952155e-10 3.3178035e-10 7.304495092e-10 1.23704789e-09 4.939179662e-10 2.606513433e-10 4.591337988e-10 2.458510868e-10 9.230461218e-10 2.018083055e-10 4.380321539e-10 8.899186078e-10 5.922776297e-10 2.046012291e-10 5.950411697e-10 4.666485716e-10 7.407353975e-10 4.647413084e-10 7.97916824e-10 4.999336109e-10 5.775544145e-10 5.050900893e-10 4.518323994e-10 3.101769434e-10 2.900193469e-10 5.659622356e-10 7.389360562e-10 1.981236508e-10 2.490679362e-10 1.751934998e-10 3.587747713e-10 3.41895441e-10 5.390500656e-10 2.545121557e-10 2.52621424e-10 9.872318737e-11 5.558583124e-10 1.543308836e-10 4.78202416e-10 2.582512526e-10 7.318375115e-10 4.08493784e-10 4.728487879e-10 1.766096642e-10 3.702989022e-10 2.441162708e-10 9.912057076e-10 8.391227531e-10 2.879481686e-10 4.714109864e-10 6.331702119e-10 4.6016766e-10 3.996633246e-10 7.000450198e-10 2.378028968e-10 9.057543541e-10 3.188609284e-10 8.596495253e-10 5.959250264e-10 4.15764717e-10 4.874829768e-10 5.890939946e-10 5.763804077e-10 3.788514364e-10 5.908737029e-10 4.710876192e-10 4.588897302e-10 4.328184155e-10 8.037526914e-10 3.920215267e-10 1.361778403e-10 3.994931649e-10 1.074514685e-10 4.781454037e-10 1.155157146e-09 +1.321446577e-10 4.973595313e-10 4.073193547e-10 8.715728561e-10 5.057461802e-10 5.476654345e-10 5.980996571e-10 3.294008861e-10 8.936980143e-10 2.452904867e-10 5.496126309e-10 1.347767831e-10 3.891348243e-10 4.361663065e-10 6.540237636e-10 4.857520826e-10 4.650036195e-10 2.828059949e-10 5.25386521e-10 2.05271632e-10 5.712381711e-10 4.633348279e-10 4.493020229e-10 3.566112439e-10 6.837254061e-10 3.358080338e-10 3.345945314e-10 7.123316627e-10 5.90699888e-10 1.889427904e-10 3.244386347e-10 5.800092076e-10 4.293077078e-10 8.049924239e-10 8.816509537e-10 5.749557769e-10 8.576773658e-10 2.305855401e-10 2.968476616e-10 4.079676029e-10 3.821834884e-10 1.96852178e-10 4.081692045e-10 5.164131654e-10 4.804259571e-10 5.414821227e-10 6.184128566e-10 1.038128185e-10 3.83337771e-10 8.974552973e-10 2.372401393e-10 5.389771139e-10 1.634531189e-10 3.50194008e-10 6.794371386e-10 2.873338126e-10 3.962332317e-10 1.326658537e-10 4.833574944e-10 8.028356392e-10 5.220746551e-10 3.49790026e-10 5.373132771e-10 4.923650944e-10 7.314041909e-10 7.520791788e-10 4.836910334e-10 4.540640215e-10 3.83647309e-10 2.503379578e-10 9.426246573e-10 3.825855902e-10 4.166987336e-10 6.691983849e-10 3.703762912e-10 7.426739843e-10 4.210412463e-10 4.447548108e-10 4.19667116e-10 5.160908338e-10 3.33341938e-10 2.261903858e-10 7.452764e-11 8.93896152e-10 5.006882191e-10 5.477056178e-10 6.748615904e-10 6.805411979e-10 8.515699463e-10 1.27575451e-09 1.291552062e-09 8.039213344e-10 4.837654476e-10 1.022189868e-09 6.338282032e-10 6.153062183e-10 8.53972783e-10 1.257741918e-09 5.969363377e-10 1.116764073e-09 3.696232976e-10 9.300571399e-10 7.341041522e-10 7.600889065e-10 9.81006639e-10 5.020383031e-10 3.009330302e-10 7.493327201e-10 3.972596067e-10 5.139398003e-10 8.992802876e-10 6.118597609e-10 3.703135234e-10 4.911610519e-10 5.091068182e-10 2.634111947e-10 7.095915068e-10 7.869215285e-10 3.600452655e-10 7.073681799e-10 7.866173096e-10 4.023593161e-10 4.683145193e-10 1.568269937e-10 1.440560432e-10 3.791088844e-10 2.345444718e-10 2.793632944e-10 4.484906806e-10 1.752134543e-10 4.779711069e-10 2.794302317e-10 2.793191014e-10 6.879013717e-11 1.834891308e-10 2.775002556e-10 6.274551922e-10 2.483719389e-10 3.672401418e-10 3.553284254e-10 6.899875434e-10 3.925179659e-10 2.288820492e-10 5.981385804e-10 6.54647102e-10 7.477223086e-10 2.411423733e-10 5.76801199e-10 2.801408966e-10 7.984667701e-10 6.023362816e-10 2.561606257e-10 4.768216217e-10 7.193099859e-10 3.944173865e-10 5.665620145e-10 6.906572784e-10 2.303179702e-10 6.352091971e-10 1.830698173e-10 5.167123141e-10 4.335368304e-10 3.274763772e-10 3.816983301e-10 2.199061594e-10 1.437482088e-10 2.908591048e-10 1.161063383e-10 3.435749442e-10 2.08469743e-10 7.205330506e-11 1.883387209e-11 2.497171027e-10 1.587487288e-10 2.838650318e-10 2.867129011e-10 5.160899997e-10 2.228826305e-10 1.430661253e-10 1.927980457e-10 2.00763966e-10 2.317227303e-10 3.525823668e-10 5.587054314e-10 5.188641111e-10 6.496660458e-10 5.537517578e-10 6.916814883e-10 9.214814408e-10 5.007869301e-10 4.804932536e-10 7.162985301e-10 7.344141557e-10 5.688046117e-10 6.580229878e-10 2.808265246e-10 6.545486583e-10 6.352991379e-10 4.491210885e-10 9.370910529e-10 6.536638546e-10 1.036127413e-09 6.272472784e-10 6.79231235e-10 7.170367259e-10 6.383065987e-10 6.891235908e-10 1.353835835e-09 7.688257667e-10 1.011197581e-09 6.144197162e-10 7.975498116e-10 9.691703615e-10 8.580701609e-10 7.035375309e-10 4.041264685e-10 7.515101515e-10 5.995964611e-10 4.075412936e-10 3.76306282e-10 1.566210661e-10 4.96150369e-10 4.776443942e-10 3.329705596e-10 3.811251738e-10 3.958441915e-10 2.215005118e-10 5.795392939e-10 4.809428023e-10 3.836055874e-10 2.453470549e-10 2.679103357e-10 6.446368231e-10 8.691932849e-10 1.07382093e-09 3.852599094e-10 7.379294583e-10 5.24531247e-10 5.464121275e-10 7.016838904e-10 7.371860561e-10 7.571543931e-10 5.162790462e-10 7.931271952e-10 3.253497129e-10 4.408947875e-10 4.087123658e-10 4.136911429e-10 3.573180949e-10 2.990140415e-10 9.115979982e-10 5.439339203e-10 5.61034064e-10 3.126940149e-10 4.679961772e-10 7.15469068e-10 4.694242137e-10 3.537763868e-10 5.349398638e-10 3.993309087e-10 2.456038417e-10 4.835738559e-10 2.53066328e-10 3.343337554e-10 7.485711054e-11 3.768276928e-10 5.448857047e-10 2.762279593e-10 6.941327275e-10 6.51337832e-10 7.365579468e-10 2.925760986e-10 4.421912919e-10 6.782167354e-10 4.874006437e-10 6.263383832e-10 7.735026529e-10 5.51026184e-10 9.581001495e-10 7.874797022e-10 4.867031085e-10 5.046993757e-10 7.557410776e-10 1.79340399e-10 4.13732465e-10 2.003160883e-10 7.380221882e-10 7.038588889e-10 6.369029219e-10 1.036620637e-09 3.185898276e-10 5.994909363e-10 4.229788022e-10 4.160477514e-10 7.918918163e-10 1.564476219e-10 8.887196666e-10 3.823304838e-10 3.134159898e-10 4.30844906e-10 +6.464081877e-10 6.24723416e-10 3.391335651e-10 3.486017548e-10 6.915130525e-10 8.171232641e-10 3.391514279e-10 4.509359655e-10 4.367029266e-10 3.627904624e-10 6.238109514e-10 1.830728932e-10 2.742638434e-10 5.80507401e-10 2.706169981e-10 4.549477878e-10 1.326662262e-10 5.4883565e-10 6.260366975e-10 7.365902118e-10 3.758278548e-10 2.859048038e-10 7.704022801e-10 2.387917606e-10 2.421927968e-10 4.724966271e-10 3.63063424e-10 4.015420238e-10 7.500850583e-10 3.323602833e-10 4.468038883e-10 4.862224977e-10 6.581802502e-10 2.957301706e-10 1.521943433e-10 1.940060928e-10 2.406182239e-10 2.777965982e-10 5.433926982e-10 4.026658575e-10 6.071194096e-10 3.13381821e-10 4.547136662e-10 6.279412587e-10 2.976683788e-10 4.994368687e-10 1.824424714e-10 5.884073405e-10 3.235183138e-10 2.580409392e-10 1.74064272e-10 3.735098417e-10 1.294380171e-09 2.721292175e-10 1.592842458e-10 2.557978046e-10 2.4057609e-10 2.437498576e-10 6.789523185e-10 4.165474907e-10 4.513940084e-10 6.182784133e-10 7.960741937e-10 8.958416172e-10 6.865672156e-10 5.854532438e-10 2.845457037e-10 5.308734762e-10 3.722863001e-10 4.789448119e-10 5.491248262e-10 2.474818383e-10 3.175873782e-10 4.670017861e-10 4.843927016e-10 2.208424581e-10 3.959465042e-10 3.925197959e-10 2.55077507e-10 3.773316729e-10 6.483839171e-10 4.586299024e-10 7.797545783e-10 5.635479176e-10 5.340702204e-10 5.748741019e-10 5.067654737e-10 1.646137635e-09 1.412189352e-09 7.557212053e-10 9.044417789e-10 1.291228068e-09 1.129582643e-09 6.832379839e-10 1.260383503e-09 8.432388846e-10 7.75183214e-10 5.64174494e-10 4.914863426e-10 1.137093227e-09 5.730964811e-10 1.036156476e-09 4.950412757e-10 6.405024996e-10 5.773270173e-10 5.529404181e-10 8.505140535e-10 1.491680495e-10 6.662756206e-10 6.883210127e-10 6.241900106e-10 4.34893668e-10 9.83778085e-10 7.82681807e-10 3.344280419e-10 1.01062077e-09 3.450667126e-10 6.08036163e-10 5.48074517e-10 2.812687165e-10 3.546094534e-10 5.72852822e-10 3.291712856e-10 2.094193374e-10 7.909769207e-11 2.667260275e-10 1.541078486e-10 1.436912962e-10 5.5399176e-11 4.474805428e-10 5.735933044e-10 2.921309021e-10 3.542292541e-10 2.797194526e-10 5.863038785e-10 5.362750065e-10 3.012901984e-10 2.600468293e-10 4.087332685e-10 3.238062521e-10 6.692480577e-10 3.828886678e-10 2.454733416e-10 4.17188237e-10 7.712958882e-10 7.131825115e-10 2.796334351e-10 5.17430939e-10 6.015360126e-10 4.63351627e-10 8.347260623e-10 1.238331225e-09 5.899701421e-10 3.626825263e-10 8.604836941e-10 4.368381908e-10 5.791110647e-10 5.737814253e-10 4.421328584e-10 6.342006153e-10 6.810244542e-10 4.044352156e-10 5.00915661e-10 3.463522299e-10 3.370687731e-10 1.862191707e-10 4.192193368e-10 2.483932917e-10 1.462526317e-10 2.940145429e-10 1.939455756e-10 2.145251976e-10 3.093315285e-10 4.50472741e-11 2.143288984e-10 2.552197076e-10 2.384691525e-10 2.67050747e-10 8.357996604e-11 5.849172392e-10 4.58860395e-10 2.986349301e-10 4.407289952e-10 2.656664727e-10 6.871004255e-10 8.284212685e-10 7.349610175e-10 1.08655467e-09 6.51025473e-10 5.149675644e-10 5.46264726e-10 4.104792808e-10 1.042181563e-09 7.763916334e-10 6.365751157e-10 8.77506575e-10 7.904311527e-10 2.752723681e-10 4.969438908e-10 1.332139074e-09 7.846402346e-10 8.592883029e-10 8.55835614e-10 5.955528329e-10 9.74425556e-10 5.07034268e-10 7.356352254e-10 7.47112006e-10 6.888961511e-10 1.008927947e-09 1.066476091e-09 9.875618062e-10 1.720626763e-09 1.449655924e-09 8.377590143e-10 9.965509581e-10 6.174915679e-10 6.500505503e-10 9.353110316e-10 2.595528899e-10 9.883425702e-10 1.705942353e-10 2.152554213e-10 6.572588888e-10 2.32263201e-10 4.410524478e-10 4.334877673e-10 6.735666616e-10 8.777851592e-10 3.863740471e-10 5.93010878e-10 5.33502076e-10 5.111829304e-10 8.779631268e-10 7.033378041e-10 4.717551582e-10 2.348785081e-10 9.329405828e-10 2.770039529e-10 4.225069031e-10 8.692622985e-10 7.456926039e-10 5.947037966e-10 6.767522205e-10 1.086782426e-09 3.126786151e-10 7.387136415e-10 7.044053925e-10 3.649370009e-10 1.796230375e-10 6.898051594e-10 4.247742676e-10 3.515911441e-10 3.136521954e-10 2.773114147e-10 3.470593916e-10 1.106424092e-09 6.084887429e-10 4.002291614e-10 3.613343318e-10 1.005327077e-09 4.16417128e-10 3.013987582e-10 8.019600105e-10 2.645840477e-10 3.895204704e-10 3.888373605e-10 6.80240706e-10 3.246184602e-10 4.85647476e-10 3.60651132e-10 6.189125762e-10 4.0433428e-10 2.453662202e-10 6.118253505e-10 7.472562856e-10 4.748082433e-10 5.459900134e-10 6.858166411e-10 5.660148945e-10 4.466808672e-10 4.794588758e-10 2.185647523e-10 3.946609676e-10 4.119986703e-10 3.645045611e-10 2.576427545e-10 2.154761262e-10 2.013366854e-10 5.613592707e-10 4.211247549e-10 3.864588009e-10 1.782039622e-10 2.304800089e-10 2.293138469e-10 4.245278339e-10 7.999791949e-10 3.730036886e-10 6.408041238e-10 5.820850422e-10 +3.755214343e-10 1.553624845e-10 7.386839259e-10 3.103153685e-10 2.864612175e-10 4.796387525e-10 1.906703756e-10 2.625386036e-10 4.699607306e-10 6.423705057e-10 5.43587039e-10 7.10980575e-10 3.029271536e-10 2.174748914e-10 2.93306502e-10 7.65902992e-10 6.058671497e-10 3.767482673e-10 3.621668647e-10 2.865565405e-10 5.728361842e-10 3.550354139e-10 5.477809877e-10 2.847394201e-10 2.821636856e-10 6.789955494e-10 3.571463801e-10 3.693040774e-10 2.116445053e-10 5.314682308e-10 5.84369006e-10 8.712696618e-10 3.279742693e-10 3.235342386e-10 3.364468119e-10 8.466611228e-10 2.096694012e-10 2.04952908e-10 3.22569839e-10 5.188260929e-10 3.700532579e-10 6.861842789e-10 5.752340388e-10 3.173234303e-10 2.932441207e-10 5.648403551e-10 4.591438772e-10 5.487965314e-10 2.872339775e-10 6.423509212e-10 7.86801332e-10 3.696006615e-10 3.707550535e-10 5.237855404e-10 6.408252078e-10 5.558294051e-10 6.961935855e-10 3.827622863e-10 2.696456013e-10 4.668240717e-10 5.577236678e-10 5.213125202e-10 4.321269662e-10 8.456609382e-10 8.932440288e-10 5.003159795e-10 6.650958282e-10 3.508544713e-10 6.058372526e-10 7.639226371e-10 4.672198946e-10 6.347708906e-10 1.781609042e-10 2.862255444e-10 7.195232066e-10 3.110809205e-10 3.841598121e-10 6.058139817e-10 4.352289478e-10 8.052440225e-10 5.052320133e-10 9.074437314e-11 9.354282124e-10 8.663762251e-10 5.652069016e-10 7.860765361e-10 3.573549079e-10 1.6409193e-09 6.707734412e-10 1.225944862e-09 1.001326927e-09 6.825671097e-10 1.743760295e-09 5.056328006e-10 7.116962952e-10 5.899301933e-10 8.786272305e-10 1.179423523e-09 1.173650433e-09 8.52933868e-10 6.835414127e-10 6.241643991e-10 6.511301362e-10 9.525390828e-10 4.768291976e-10 1.163774141e-09 1.090533795e-09 1.105142391e-09 4.245846353e-10 1.075448089e-09 1.127203528e-09 2.022612907e-10 4.010371292e-10 4.144653704e-10 9.334170884e-10 6.216724079e-10 6.657242354e-10 3.623450048e-10 1.528054038e-11 3.625181803e-10 3.968130868e-10 4.27381076e-10 1.875089268e-10 2.960838718e-10 3.497581615e-10 4.047926322e-10 6.255766498e-10 3.612195493e-10 3.784216661e-10 1.854205701e-10 5.449702289e-10 6.766889531e-10 3.359486922e-10 5.848500346e-10 5.056256019e-10 5.237779722e-10 1.52837659e-10 6.745981148e-10 2.648377447e-10 2.798680997e-10 7.520285644e-10 4.898181057e-10 1.296821825e-09 5.220262873e-10 1.130495169e-09 1.357376473e-09 4.371565018e-10 1.429931898e-09 1.523456558e-09 1.643469118e-09 7.243012978e-10 1.469811678e-09 1.227466799e-09 9.580950454e-10 4.248718011e-10 1.49382295e-09 5.921712954e-10 7.186536508e-10 1.111975279e-09 6.348274192e-10 6.621217945e-10 8.858148012e-10 8.277262703e-10 3.871440975e-10 4.75840512e-10 3.189657263e-10 3.061867573e-10 3.407572688e-10 5.33377699e-10 4.26658867e-10 7.024887756e-11 2.716102979e-10 3.445097616e-10 1.715213883e-10 1.628095114e-10 6.441167943e-11 2.987913273e-10 1.272540996e-10 4.734247875e-10 1.551544114e-10 4.463213312e-10 5.082549242e-10 2.98162264e-10 5.60997526e-10 4.378395901e-10 1.857570578e-10 5.461415787e-10 9.902321823e-10 3.460620755e-10 1.698402601e-10 2.790055725e-10 5.463352855e-10 5.800704849e-10 7.806968372e-10 4.602008759e-10 3.804964002e-10 9.931798957e-10 5.85128477e-10 5.443734784e-10 5.914133578e-10 1.994390087e-10 1.254594551e-09 1.082439828e-09 8.516606852e-10 7.102131585e-10 8.140126845e-10 8.712018024e-10 6.431363099e-10 6.17529347e-10 8.406813724e-10 1.24421516e-09 9.289216688e-10 7.701440739e-10 1.254719412e-09 1.016242826e-09 6.620619507e-10 7.45890249e-10 2.888469466e-10 4.234857481e-10 7.87987584e-10 8.606467474e-11 2.667953631e-10 2.664193551e-10 3.321525414e-10 8.59818904e-10 5.327898089e-10 6.012976873e-10 5.407501573e-10 3.820719127e-10 6.950978451e-10 5.70672847e-10 3.179797354e-10 5.901650057e-10 5.557740811e-10 7.983502683e-10 3.359710342e-10 4.350256126e-10 5.414934787e-10 4.907847517e-10 1.010101669e-09 7.146222027e-10 2.256795261e-10 6.681709814e-10 3.712760375e-10 4.696374311e-10 4.06786655e-10 3.958291227e-10 1.924202155e-10 2.852719632e-10 6.280392673e-10 5.055885709e-10 1.676542283e-10 3.316904094e-10 1.711097923e-10 5.054371791e-10 2.528217209e-10 2.151577323e-10 6.145202783e-10 5.465934794e-10 2.780128823e-10 4.087056698e-10 5.173239589e-10 3.278359467e-10 5.394945607e-10 2.329139286e-10 2.754870969e-10 6.279185464e-10 3.895393963e-10 5.691397724e-10 3.200883446e-10 3.296635804e-10 3.409965135e-10 4.751771619e-10 3.577634704e-10 6.321833603e-10 1.420176193e-10 8.687550868e-10 3.354184713e-10 6.584302818e-10 5.791780349e-10 7.026275114e-10 4.598149131e-10 3.990519575e-10 4.200203908e-10 4.361514143e-10 7.478925576e-10 2.007568749e-10 2.418762831e-10 7.49307142e-10 7.676669597e-10 2.896867927e-10 4.905393933e-10 3.734158942e-10 4.204919173e-10 3.91322333e-10 6.923325807e-10 3.45157963e-10 5.307816181e-10 6.695085183e-10 4.257320206e-10 +2.465154582e-10 4.311906443e-10 1.99648947e-10 1.019038648e-09 3.596546004e-10 5.222786162e-10 6.920215981e-10 4.155197336e-10 3.244185807e-10 2.033076528e-10 3.783452556e-10 1.016068191e-09 3.184165329e-10 9.397725321e-10 3.465149671e-10 7.619717524e-10 5.733184616e-10 4.949053386e-10 2.037295505e-10 2.315024947e-10 2.166499403e-10 5.709445288e-10 6.030421668e-10 5.432557855e-10 4.371977955e-10 5.606493423e-10 9.782035393e-10 1.531035179e-10 2.722037162e-10 4.339266389e-10 6.616311546e-10 2.875378634e-10 6.163195668e-10 8.560120966e-10 6.201232237e-10 4.439830115e-10 1.63044871e-10 2.457028821e-10 3.886844058e-10 2.847009175e-10 1.568969298e-10 1.783181037e-10 8.322865262e-10 9.910774327e-10 4.038661077e-10 4.638579368e-10 3.696656749e-10 1.751826227e-10 2.010032133e-10 2.165930462e-10 2.181529396e-10 5.489834981e-10 2.600669281e-10 3.892517609e-10 6.294604399e-10 6.055423217e-10 6.418337066e-10 4.773555484e-10 5.770028765e-10 5.697039332e-10 4.015564745e-10 2.330219454e-10 5.054471748e-10 1.826338509e-10 8.452229318e-10 3.439924863e-10 6.810847377e-10 2.975144515e-10 6.483614869e-10 3.324401537e-10 6.001800164e-10 4.52336487e-10 5.663047927e-10 4.6792471e-10 9.436909791e-10 5.48707444e-10 3.422144529e-10 3.394883751e-10 8.798178007e-11 1.375437149e-10 7.25176713e-10 6.840969539e-10 5.514829654e-10 8.20393738e-10 8.901586154e-10 1.107674485e-09 1.252693064e-09 1.110007002e-09 1.241473372e-09 5.189346764e-10 6.112706269e-10 4.324760597e-10 9.056498385e-10 8.12558424e-10 5.130298577e-10 8.386843609e-10 7.619207619e-10 8.492732407e-10 4.578209665e-10 5.774893778e-10 1.112882479e-09 7.993012389e-10 5.395169305e-10 6.977694146e-10 1.22181769e-09 6.259863498e-10 4.540229628e-10 1.063683696e-09 1.0108098e-09 8.442134246e-10 5.7942748e-10 1.433651978e-10 3.170400367e-10 3.921655904e-10 4.557340553e-10 4.803666939e-10 4.895289511e-10 2.397063172e-10 3.347603934e-10 6.534234896e-10 1.669026524e-10 3.425182894e-10 1.524770945e-10 1.342715141e-10 1.814523952e-10 1.108043141e-10 1.730702641e-10 2.719654489e-10 4.928599798e-10 6.366574102e-10 4.029425924e-10 3.499035239e-10 5.153353594e-10 2.686854743e-10 1.759415635e-10 4.73804361e-10 4.707032478e-10 1.158472575e-09 1.154047737e-09 1.363782385e-09 1.449305805e-09 2.126843794e-09 7.509015527e-10 1.023442755e-09 1.15112938e-09 1.05106174e-09 7.21862604e-10 1.010261242e-09 8.226895748e-10 1.229536421e-09 1.140485956e-09 1.069914876e-09 1.581848707e-09 1.038767778e-09 1.006393884e-09 7.542206826e-10 1.488724832e-09 6.224232284e-10 6.786901835e-10 1.097582247e-09 7.952923192e-10 4.145042146e-10 5.743375567e-10 6.127305348e-10 6.646470942e-10 4.089107637e-10 2.513065207e-10 6.325691356e-10 1.380529793e-10 3.137980349e-10 3.522001396e-10 4.001349029e-10 2.442217007e-10 3.052182973e-10 1.172426453e-10 5.251316121e-10 1.148707784e-10 2.301912509e-10 1.835311341e-10 2.842758114e-10 2.907423523e-10 1.358305528e-10 4.697077689e-10 5.684720091e-10 5.282742332e-10 1.032120881e-09 5.312661778e-10 7.523209826e-10 9.121362506e-10 9.217804436e-10 3.294427454e-10 8.054193517e-10 5.348887165e-10 8.155034145e-10 6.153498932e-10 5.982424956e-10 4.482289245e-10 6.927830357e-10 9.965894098e-10 7.65413514e-10 5.806759838e-10 5.777794395e-10 6.45643627e-10 3.785087165e-10 4.295037172e-10 1.05219846e-09 4.286447113e-10 1.278270229e-09 4.867640197e-10 7.269645458e-10 1.14347425e-09 1.400123202e-09 1.251477881e-09 1.221384891e-09 7.394763913e-10 7.078741394e-10 1.110458679e-09 6.975077335e-10 1.084564823e-09 4.680251785e-10 2.961754552e-10 3.330722573e-10 4.426132434e-10 2.230871132e-10 3.64610405e-10 2.515092638e-10 9.074790147e-11 5.753305525e-10 8.958408496e-10 3.553435409e-10 3.508947646e-10 3.818567636e-10 1.060993565e-09 1.001507434e-09 4.017162436e-10 4.301464334e-10 8.851028219e-10 6.147053425e-10 3.590022312e-10 4.488933558e-10 1.067653332e-09 1.744101144e-10 8.677155755e-10 5.354675293e-10 7.410616674e-10 5.638409448e-10 4.276631287e-10 4.154811829e-10 2.70911403e-10 9.703073342e-10 4.925853499e-10 2.6321813e-10 5.466582166e-10 2.646955206e-10 2.026046886e-10 3.946485643e-10 2.648445038e-10 1.950370594e-10 4.677532893e-10 2.648025347e-10 6.511590254e-10 1.875238706e-10 4.847452932e-10 5.487542866e-10 5.106107722e-10 8.609879786e-10 3.338503907e-10 5.401535691e-10 4.350620498e-10 3.926362692e-10 4.334393819e-10 3.378655807e-10 4.204726015e-10 5.207379012e-10 5.593555891e-10 8.706456969e-10 6.439491426e-10 4.524773704e-10 6.30152525e-10 9.546267295e-10 5.17577562e-10 4.839752363e-10 8.41724682e-10 5.304816813e-10 2.561043297e-10 3.699011917e-10 2.569563713e-10 5.638550467e-10 2.62825664e-10 5.640346316e-10 7.379942284e-10 5.542491067e-10 2.100930491e-10 2.124768174e-10 1.014401242e-10 4.257433805e-10 3.451909143e-10 6.611239344e-10 4.814477915e-10 3.770996606e-10 +3.818705354e-10 4.966873388e-10 4.801995413e-10 4.980313458e-10 2.930631158e-10 2.638070005e-10 3.871953907e-10 2.349133931e-10 6.835310788e-10 7.412687539e-10 5.074958522e-10 1.565002257e-10 4.080196174e-10 1.165170253e-09 4.061606431e-10 1.067575136e-09 7.303615533e-10 3.522636105e-10 4.280843648e-10 5.564038424e-10 4.830381541e-10 8.068031545e-10 8.673373753e-10 6.774721825e-10 4.875278294e-10 3.0553308e-10 4.656625831e-10 4.510611231e-10 5.07875419e-10 5.912126584e-10 3.151322298e-10 4.575661993e-10 6.027856264e-10 8.956338925e-10 3.185768203e-10 5.297432387e-10 2.187064318e-10 3.730169259e-10 1.282359637e-10 3.668837722e-10 8.440981599e-10 1.013873983e-10 1.513607372e-09 1.571200067e-10 2.075794948e-10 7.304050328e-10 5.672543113e-10 9.271972563e-10 5.03601674e-10 8.131565936e-10 7.643417626e-10 5.977730342e-10 1.599472448e-10 1.053714803e-09 3.725937336e-10 9.103500172e-10 7.362459233e-10 1.034706753e-10 2.706748425e-10 8.366261529e-10 7.931981289e-10 2.737204758e-10 3.782505873e-10 6.353416825e-10 7.268670264e-10 3.544131714e-10 3.612248647e-10 7.17221513e-10 4.619424819e-10 4.580531429e-10 1.042137488e-09 5.256648353e-10 3.625868944e-10 4.298753242e-10 4.647809785e-10 5.245885595e-10 4.761948491e-10 3.882053064e-10 3.90928127e-10 8.62191656e-10 6.982497846e-10 2.377375189e-10 1.037499864e-09 1.360153035e-09 6.983567535e-10 6.66116214e-10 8.523707371e-10 8.348283622e-10 1.09860069e-09 1.068216808e-09 1.027685223e-09 6.110883923e-10 5.800923446e-10 1.090366802e-09 7.395530528e-10 1.564859857e-09 8.036909553e-10 5.603287917e-10 8.905645477e-10 6.544669816e-10 9.220671365e-10 5.043028599e-10 6.348864824e-10 7.52892829e-10 4.464574524e-10 7.167915957e-10 4.876981994e-10 4.374199074e-10 3.472226938e-10 6.579171449e-10 8.091330873e-10 8.082855465e-10 7.042640029e-10 5.921903689e-10 9.558045237e-10 5.309325109e-10 7.929569582e-10 5.704014212e-10 3.610986139e-10 4.551228973e-10 2.39759222e-10 2.934816591e-10 1.93432206e-10 3.285274115e-10 3.225822924e-10 5.070366857e-10 4.908296534e-10 2.497092196e-10 3.308511042e-10 8.021655345e-10 7.321873893e-10 4.800861259e-10 6.204005747e-10 5.057897211e-10 3.299828463e-10 1.126242031e-09 7.962764954e-10 9.174316617e-10 1.171801065e-09 7.904925118e-10 1.494157982e-09 1.606930859e-09 1.333433851e-09 1.337606571e-09 4.831551946e-10 7.827655926e-10 1.166554785e-09 1.256837547e-09 1.644784053e-09 1.363052983e-09 2.116659989e-09 9.402483274e-10 5.671056005e-10 1.048227987e-09 1.444442224e-09 1.078514783e-09 1.019549435e-09 2.041936697e-09 8.652235768e-10 8.688177141e-10 1.461063037e-09 1.162602984e-09 8.858351736e-10 1.149998951e-09 7.937344391e-10 8.854126218e-10 5.798669803e-10 1.686319821e-10 3.209855663e-10 1.510465805e-10 5.988173759e-10 5.427935522e-10 5.252525337e-10 3.258897167e-10 5.05232365e-10 2.509520098e-10 4.662846616e-10 5.001715218e-10 3.551312981e-10 3.865929081e-10 3.935884122e-10 2.98283646e-10 1.275702218e-10 3.420557219e-10 3.621942567e-10 4.295527099e-10 6.196988272e-10 6.235418467e-10 4.093156273e-10 4.856903996e-10 1.236489236e-09 5.612984652e-10 8.769363399e-10 9.69432929e-10 1.141209073e-09 6.64497927e-10 1.262466242e-09 7.178204722e-10 1.00676971e-09 1.205515283e-09 7.083659602e-10 4.946033135e-10 5.4597854e-10 1.326664971e-09 3.428047084e-10 1.362060361e-09 1.246706326e-09 1.750523062e-09 1.484317912e-09 1.393958195e-09 1.027617316e-09 8.224282316e-10 7.869934474e-10 6.354350794e-10 8.843815804e-10 4.411185659e-10 9.670146569e-10 1.223008247e-09 7.897664419e-10 4.863870977e-10 3.962656386e-10 4.344567468e-10 7.039246388e-10 3.049201113e-10 5.369379417e-10 7.197994655e-10 5.739796069e-10 5.805938264e-10 3.497737303e-10 3.064095401e-10 3.697863369e-10 3.608049758e-10 5.404849332e-10 9.219322408e-10 5.804297402e-10 5.55106051e-10 4.085496915e-10 2.059334575e-10 6.947614144e-10 5.926198487e-10 4.589035516e-10 1.295597358e-09 5.90309077e-10 5.520613889e-10 4.983270989e-10 4.186626964e-10 2.764597705e-10 4.047053881e-10 6.248139285e-10 5.690887937e-10 3.645812578e-10 3.252795046e-10 5.652304025e-10 9.410101778e-11 4.939785189e-10 3.737804567e-10 2.388767242e-10 1.272398652e-10 4.103311803e-10 4.26973189e-10 2.38983057e-10 6.19320989e-10 2.936617206e-10 4.509469967e-10 3.977497308e-10 1.674039299e-10 3.290436487e-10 1.0753651e-09 6.801714175e-10 2.572324615e-10 9.071441107e-10 4.179306489e-10 5.718638378e-10 7.839150225e-10 4.260184862e-10 6.195892804e-10 5.764607369e-10 6.26114102e-10 3.253880522e-10 5.981188051e-10 5.975741515e-10 8.418052908e-10 5.312438686e-10 4.372723169e-10 7.750496271e-10 6.317333301e-10 3.214289679e-10 6.06626467e-10 8.484699843e-10 3.763758991e-10 5.306497455e-10 4.172116119e-10 5.1580081e-10 1.189900874e-09 2.847428721e-10 3.38223013e-10 4.608470668e-10 7.310431046e-10 3.917939713e-10 1.954060602e-10 +5.887969019e-10 3.433055596e-10 3.860476531e-10 2.718080304e-10 3.23881697e-10 2.039477741e-10 5.772129948e-10 8.849158985e-10 8.636474618e-10 4.797635382e-10 3.678937031e-10 5.943669866e-10 3.381267201e-10 2.475224582e-10 3.963627532e-10 2.205583998e-10 6.535462048e-10 5.143787668e-10 3.342322807e-10 2.656273862e-10 5.975775504e-10 4.757330782e-10 5.41346562e-10 7.6569254e-10 7.047655907e-10 5.068937741e-10 4.733572985e-10 5.473907512e-10 4.321036697e-10 1.529733085e-10 3.406714699e-10 3.828642933e-10 2.737128206e-10 4.726750805e-10 5.321934415e-10 3.469327104e-10 2.20944377e-10 5.603359927e-10 4.171163409e-10 6.950258331e-10 7.373584328e-10 2.027112138e-10 1.911930729e-10 1.101270435e-10 3.265119064e-10 5.662205058e-10 1.361147349e-10 1.655631496e-10 3.332389899e-10 3.681209232e-10 7.971478672e-10 2.700666759e-10 5.968644053e-10 8.821408699e-10 2.399760741e-10 7.787589148e-10 5.415062031e-10 3.222301511e-10 7.185505021e-10 7.350430401e-10 6.924041089e-10 5.082128187e-10 4.271170465e-10 3.466595928e-10 5.215023386e-10 7.838524764e-10 4.323822455e-10 5.91072844e-10 4.977152685e-10 4.627059019e-10 1.943918967e-10 9.619590719e-10 4.796361188e-10 3.87013745e-10 5.052969528e-10 3.830511737e-10 3.61696016e-10 2.06031455e-10 3.981074358e-10 2.67961374e-10 4.07974561e-10 5.448612059e-10 8.317544534e-10 7.803947698e-10 9.073645831e-10 1.01391739e-09 1.655433415e-09 1.689542072e-09 1.222784657e-09 1.145583952e-09 6.912318226e-10 5.255958002e-10 7.68019044e-10 4.59459689e-10 6.181976431e-10 4.57253764e-10 5.397295371e-10 7.822452665e-10 6.738779067e-10 7.611086771e-10 6.776118778e-10 1.059025215e-09 6.914722043e-10 4.009685217e-10 1.409373361e-09 6.239610283e-10 7.842446576e-10 5.995583591e-10 8.477547768e-10 5.698149353e-10 9.219102237e-10 6.933108044e-10 6.808963862e-10 4.70847832e-10 5.227745925e-10 3.163687807e-10 7.094710978e-10 3.997464369e-10 3.351549635e-10 1.491903615e-10 1.372216344e-10 9.019153907e-11 5.333533453e-10 1.063376225e-10 3.582158358e-10 4.22771512e-10 3.026866086e-10 3.005962154e-10 3.550231625e-10 4.724385253e-10 4.18790469e-10 8.024685091e-10 9.749408331e-10 9.412244985e-10 1.198118319e-09 9.370725928e-10 1.794829238e-09 1.896077422e-09 7.628447469e-10 1.403773941e-09 1.511846156e-09 1.24373756e-09 1.291180737e-09 1.612798484e-09 4.821080212e-10 1.451441203e-09 8.029475298e-10 1.39260595e-09 1.292583779e-09 1.328247626e-09 1.587801919e-09 1.215526106e-09 9.082268662e-10 9.188197054e-10 1.715213861e-09 2.474773821e-09 7.659887219e-10 1.343048807e-09 1.460669231e-09 1.962610354e-09 1.416113198e-09 1.685715387e-09 1.507265005e-09 1.203649307e-09 7.678592897e-10 1.153938783e-09 1.325266112e-09 1.576010798e-09 3.452671917e-10 5.733748369e-10 4.360573698e-10 5.021546037e-10 3.78303871e-10 3.281139933e-10 7.272098426e-10 3.750915209e-10 2.565034456e-10 1.644869842e-10 1.306984302e-10 1.293513941e-10 1.750249002e-10 1.675670079e-10 4.507257627e-10 1.997658689e-10 2.982771899e-10 4.989935839e-10 1.014745633e-09 9.162495157e-10 6.142549262e-10 2.81456635e-10 6.403299261e-10 6.495392783e-10 4.995463865e-10 6.240957707e-10 7.012734463e-10 6.908251095e-10 9.787892825e-10 8.988367359e-10 1.087606501e-09 1.015143148e-09 7.710433223e-10 8.800405126e-10 4.816210621e-10 6.742776947e-10 9.024730545e-10 5.152964188e-10 7.616779231e-10 1.479295053e-09 2.485896312e-10 8.341024614e-10 1.009069553e-09 7.205235008e-10 6.728829084e-10 9.398368153e-10 9.981223562e-10 7.705712665e-10 8.097673064e-10 9.542022239e-10 8.731317647e-10 7.793147603e-10 5.109808775e-10 3.070792919e-10 5.27022836e-10 2.90648307e-10 1.084922089e-09 4.987623091e-10 4.792712305e-10 3.549199814e-10 1.427637647e-10 2.565033578e-10 1.812620554e-10 5.89416431e-10 1.622613213e-10 4.25891428e-10 4.853783031e-10 6.542052306e-10 3.487932388e-10 4.886771931e-10 3.265987967e-10 6.108974055e-10 1.223123886e-09 5.071996387e-10 9.767115527e-10 3.654851653e-10 4.00585169e-10 1.156500919e-09 2.86795645e-10 3.841324654e-10 8.737197724e-10 6.489398989e-10 5.219459978e-10 6.530471464e-10 2.48578932e-10 2.524416927e-10 2.58286791e-10 4.146672783e-10 6.689055038e-10 3.657090946e-10 4.31723034e-10 5.50182648e-10 5.737602063e-10 4.664700296e-10 5.533747803e-10 7.990896244e-10 5.76932465e-10 5.254242245e-10 6.106718732e-10 3.836131843e-10 4.327152219e-10 5.641413515e-10 7.706188648e-10 2.114680874e-10 4.474633913e-10 6.53855279e-10 5.977633688e-10 5.077987714e-10 2.263299582e-10 4.199585795e-10 6.806982361e-10 4.869239204e-10 6.289868626e-10 2.875135776e-10 3.722054972e-10 6.105905214e-10 4.171144175e-10 4.124568055e-10 5.048558553e-10 4.033362363e-10 2.71037375e-10 6.513128896e-10 2.875153482e-10 7.287534286e-10 4.581879688e-10 3.444794129e-10 3.328685974e-10 9.617140351e-10 1.227225818e-10 8.962721782e-10 3.080441734e-10 2.041258176e-10 +3.426059404e-10 7.265226644e-10 4.288832785e-10 8.038376661e-10 4.402728419e-10 5.204886217e-10 9.372533716e-10 2.555538175e-10 5.348948355e-10 3.266920337e-10 3.513295916e-10 3.633495657e-10 2.106208652e-10 6.388825888e-10 4.417823897e-10 8.09769549e-10 5.805931062e-10 4.602168663e-10 3.658966039e-10 4.324178554e-10 3.424119115e-10 6.453451413e-10 5.524264758e-10 5.115781097e-10 2.229785329e-10 4.394202021e-10 1.092801916e-09 9.351210054e-10 6.834559002e-10 3.363015684e-10 6.095321293e-10 2.23239819e-10 5.172620579e-10 1.915979611e-10 6.659276556e-10 8.293112706e-10 6.402227291e-10 3.314445372e-10 1.06473033e-09 7.110569428e-10 2.660963203e-10 3.273810916e-10 3.892040893e-10 3.371192922e-10 2.20920099e-10 8.72407115e-10 4.907941101e-10 2.329639104e-10 4.128416551e-10 5.255957914e-10 3.010975811e-10 6.304757063e-10 3.898141933e-10 3.459464462e-10 4.133001902e-10 5.594654513e-10 5.442670673e-10 5.813805083e-10 4.223947203e-10 3.12093385e-10 4.473448864e-10 5.144834842e-10 5.512650142e-10 6.246887044e-10 5.347253518e-10 7.40279375e-10 4.628584508e-10 8.524155163e-10 5.256405372e-10 6.783821362e-10 1.931380542e-10 9.760332256e-10 3.179438578e-10 3.784749045e-10 1.05710474e-09 1.960452739e-10 7.853668818e-10 4.85238967e-10 3.462048968e-10 9.296647159e-10 8.080134032e-10 8.402112576e-10 4.213077085e-10 6.096675373e-10 1.165135569e-09 6.96484213e-10 5.490237114e-10 6.850564987e-10 1.04759514e-09 7.974734624e-10 6.907241399e-11 1.176939853e-09 5.639044121e-10 1.004205943e-09 1.132568752e-09 8.208554829e-10 8.180800926e-10 9.976745121e-10 3.365387135e-10 5.764801855e-10 4.983834869e-10 9.124750442e-10 6.912482071e-10 6.917140947e-10 7.842047507e-10 3.820578487e-10 1.084022016e-09 9.464109925e-10 5.217362349e-10 3.198627916e-10 2.52301798e-10 7.69321534e-10 1.649246026e-10 1.002110375e-09 1.051949655e-09 5.720688331e-10 3.856470106e-10 1.880033249e-10 4.015481384e-10 2.195558301e-10 4.162641285e-11 2.10670766e-10 2.427328201e-10 3.848817611e-10 5.295277263e-10 4.387066254e-10 3.952918163e-10 5.347448596e-10 8.739736629e-10 7.956713943e-10 8.486798345e-10 1.736543588e-09 8.565316608e-10 1.264071915e-09 6.966961695e-10 9.960081903e-10 1.830364659e-09 7.645438939e-10 9.980362575e-10 9.944813222e-10 7.762492384e-10 1.459154139e-09 9.430858539e-10 7.865901713e-10 1.845855205e-09 9.043412269e-10 9.690575817e-10 8.294634194e-10 8.369668588e-10 9.317748562e-10 1.685120552e-09 1.342800075e-09 1.940525131e-09 1.464333827e-09 2.323130664e-09 1.240421409e-09 1.818167576e-09 7.098866922e-10 6.826285455e-10 1.558659423e-09 1.065482694e-09 1.314185682e-09 1.797997306e-09 9.296911655e-10 1.076836477e-09 1.535990963e-09 1.623376422e-09 1.398544363e-09 7.158614206e-10 1.132877468e-09 4.913008318e-10 7.861424931e-10 3.037109988e-10 4.819610485e-10 6.390257348e-10 2.312488425e-10 3.959112855e-10 3.320461682e-10 2.145746795e-10 1.780221809e-10 2.159140685e-10 8.88552016e-11 2.95819822e-10 2.760137644e-10 9.900048854e-11 1.247224993e-10 2.357039674e-10 3.179325884e-10 9.053017436e-10 6.66004851e-10 8.89835866e-10 1.216651269e-09 5.939996401e-10 8.394683424e-10 8.388212381e-10 6.286395934e-10 1.463329089e-10 1.567158919e-09 4.982354306e-10 7.312347165e-10 2.687090249e-10 1.247237073e-09 8.262374926e-10 7.513028515e-10 9.831246991e-10 7.872627461e-10 6.330028659e-10 9.217500744e-10 1.434992838e-09 1.17806776e-09 1.39437679e-09 1.592111925e-09 9.781606277e-10 4.567668674e-10 4.360955586e-10 9.788302649e-10 5.360971236e-10 7.040829913e-10 6.777785997e-10 5.226756517e-10 1.710102339e-10 4.728840768e-10 2.04673658e-10 5.831325906e-10 1.091928496e-09 4.324893772e-10 7.146136561e-10 7.519510178e-10 5.15613258e-10 2.859428601e-10 5.067694898e-10 5.228736993e-10 4.730797579e-10 6.247053982e-10 4.861540749e-10 7.519652377e-10 4.981344455e-10 2.529467381e-10 9.152028481e-10 7.420034359e-10 4.961757484e-10 5.653125654e-10 4.959617043e-10 2.628158205e-10 2.808807741e-10 8.507357674e-10 7.382409707e-10 4.489356414e-10 2.287008109e-10 8.319511882e-10 4.77877668e-10 4.85517942e-10 5.95179806e-10 3.68601995e-10 1.778204939e-10 2.177624466e-10 3.19180706e-10 2.400358895e-10 3.946869268e-10 3.097166445e-10 7.603604753e-10 8.501736779e-10 3.465502367e-10 4.058309297e-10 2.602592818e-10 1.888747949e-10 7.13708353e-10 4.799470698e-10 5.999239057e-10 5.498200034e-10 9.01824117e-10 6.306108172e-10 6.417907945e-10 7.125486605e-10 7.128106484e-10 3.198199341e-10 4.643144651e-10 3.343049882e-10 9.482793318e-10 4.564276945e-10 7.078891824e-10 3.599291537e-10 5.851994214e-10 2.037277575e-10 2.963491412e-10 5.23795306e-10 3.086664685e-10 4.756191305e-10 2.967473708e-10 6.232727648e-10 9.316057912e-10 4.048253337e-10 2.899747745e-10 5.34588919e-10 4.460803958e-10 2.788080958e-10 4.864871404e-10 3.798166172e-10 7.467904534e-10 4.889748525e-10 +4.004726235e-10 3.804145506e-10 7.279219128e-10 4.819154747e-10 5.845629384e-10 5.580925788e-10 6.577580593e-10 3.528757608e-10 2.954726393e-10 6.578450884e-10 5.802022387e-10 4.217062495e-10 2.006499165e-10 2.169549854e-10 1.772766911e-10 5.377447378e-10 8.152842007e-10 6.152290164e-10 1.045250475e-09 5.188737193e-10 6.787669613e-10 2.934219788e-10 3.936641686e-10 2.581589044e-10 5.158282823e-10 1.099876623e-09 5.474724864e-10 2.905178863e-10 4.041886136e-10 2.824513595e-10 7.543730998e-10 7.528550021e-10 3.96472053e-10 4.525212735e-10 4.357765929e-10 4.92300283e-10 5.332067697e-10 3.168143217e-10 4.307277903e-10 3.809785267e-10 4.918582154e-10 3.518463103e-10 4.947036293e-10 1.043203051e-10 2.734818372e-10 3.945963499e-10 8.062728844e-10 5.137028773e-10 4.077101998e-10 6.822551549e-10 5.926503411e-10 2.698587353e-10 3.696112368e-10 4.719804932e-10 9.187383526e-10 7.581810804e-10 7.06618854e-10 3.523891514e-10 6.388640363e-10 4.129160741e-10 2.315238215e-10 3.072527287e-10 6.30020097e-10 3.586476366e-10 5.443375984e-10 4.434344263e-10 5.79106237e-10 5.598707822e-10 7.888085686e-10 5.935701358e-10 8.029052536e-10 2.344402316e-10 5.240791074e-10 3.315348416e-10 2.88472376e-10 2.984043631e-10 1.91444611e-10 7.147394603e-10 4.702043517e-10 2.215385421e-10 3.580916086e-10 4.435471834e-10 5.384607975e-10 9.576902224e-10 9.823018632e-10 1.039339789e-09 9.529094722e-10 1.280158777e-09 9.295369759e-10 6.801902994e-10 9.625766016e-10 8.886153617e-10 4.69969053e-10 9.625612638e-10 1.03949307e-09 9.661250909e-10 7.247347806e-10 1.000209349e-09 5.367104148e-10 2.392636166e-10 5.482470672e-10 1.102487729e-09 8.793794724e-10 1.114190064e-09 7.960907554e-10 3.904788782e-10 5.378268663e-10 5.736942244e-10 5.871798093e-10 6.993087433e-10 5.664916749e-10 1.004715217e-09 5.440595748e-10 8.126994625e-10 4.702478763e-10 3.774836743e-10 3.330779821e-10 2.388515035e-10 1.590891895e-10 3.418564496e-10 9.342783132e-11 3.112407995e-10 3.194203437e-10 5.158119529e-10 3.404263208e-10 1.444275546e-10 6.226977432e-10 3.452803578e-10 6.672612657e-10 1.76804932e-09 1.096681696e-09 7.966143809e-10 9.728591914e-10 1.044384519e-09 1.659973162e-09 1.21935513e-09 1.830557491e-09 1.148716751e-09 1.588016203e-09 1.668784751e-09 9.432043732e-10 8.599474376e-10 9.099156305e-10 1.012890428e-09 1.39373233e-09 1.688184226e-09 9.723285498e-10 1.070418579e-09 1.523226443e-09 1.136486301e-09 8.081400296e-10 9.50466925e-10 5.554112003e-10 1.783563049e-09 2.477802837e-09 1.482037817e-09 1.377760396e-09 1.448128274e-09 1.281520646e-09 6.590218364e-10 2.63195777e-09 1.390663029e-09 1.30491374e-09 1.616309836e-09 1.548060254e-09 1.298978806e-09 1.098667678e-09 7.689243996e-10 1.379806278e-09 1.073006255e-09 9.682306064e-10 9.941610498e-10 4.36261611e-10 4.500402357e-10 3.800221914e-10 4.343348721e-10 6.098642608e-10 5.356509936e-10 3.143280026e-10 2.992383754e-10 7.52970163e-11 4.803633203e-11 1.496897285e-10 3.081862313e-10 3.972310978e-10 4.738251957e-10 5.730305972e-10 5.574574829e-10 5.224019673e-10 4.325096373e-10 1.203296171e-09 7.560465299e-10 7.246192607e-10 1.031127106e-09 5.469928691e-10 7.38291949e-10 7.390641205e-10 1.232346027e-09 5.659218206e-10 7.617663529e-10 6.87687802e-10 9.235439018e-10 8.409138247e-10 6.960022962e-10 1.036198163e-09 7.593409756e-10 9.487998833e-10 6.65606924e-10 7.260351419e-10 6.089524448e-10 6.945414807e-10 1.181046437e-09 1.46164337e-09 1.892783412e-09 9.525535871e-10 9.892274878e-10 1.008387975e-09 7.38135377e-10 7.649839572e-10 2.543169083e-10 2.682200911e-10 2.642911649e-10 6.513227692e-10 5.947799232e-10 1.333383373e-10 3.334518932e-10 6.349092599e-10 3.273113511e-10 5.867855651e-10 6.074998334e-10 2.048205396e-10 4.198532353e-10 5.17949377e-10 9.993344136e-10 7.773452228e-10 6.050737151e-10 1.070342328e-09 3.019030853e-10 5.137193634e-10 5.021852631e-10 5.044554447e-10 3.538971772e-10 6.296268653e-10 6.680987346e-10 4.906702514e-10 4.736075245e-10 5.695302127e-10 7.550113213e-10 2.919683027e-10 4.701964026e-10 5.784200189e-10 4.336755636e-10 2.365462824e-10 2.509780706e-10 4.050711327e-10 3.393205618e-10 3.695733271e-10 3.36646446e-10 4.680792289e-10 2.264869718e-10 2.434319053e-10 4.713369828e-10 3.655835246e-10 4.488914137e-10 6.492507082e-10 4.804898752e-10 6.175497343e-10 5.572366634e-10 3.96989584e-10 4.498423364e-10 8.188905746e-10 6.146591655e-10 5.414968603e-10 6.392246365e-10 2.908689327e-10 5.919222447e-10 9.611612938e-10 6.79885825e-10 7.548943306e-10 1.072954381e-09 4.678528508e-10 7.945031556e-10 5.030451784e-10 7.197216515e-10 2.653847591e-10 4.298690262e-10 7.623384918e-10 1.006447108e-09 2.419662051e-10 7.00787504e-10 2.926516939e-10 2.655859201e-10 3.566960568e-10 8.152883167e-10 5.673236967e-10 2.991335858e-10 7.372815834e-10 1.242619447e-09 2.482027922e-10 3.118965807e-10 +5.607847094e-10 8.289122665e-10 5.750553972e-10 3.674754705e-10 5.544785591e-10 7.530694766e-10 2.558485853e-10 8.202595797e-10 6.51960657e-10 6.650257203e-10 2.768340549e-10 5.494168337e-10 3.955893511e-10 5.29610591e-10 6.463649439e-10 4.388005259e-10 4.469851302e-10 7.123576943e-10 6.276106871e-10 6.896091416e-10 3.460540565e-10 6.288662508e-10 5.702987778e-10 5.478572492e-10 3.739723534e-10 4.876197379e-10 5.353308502e-10 7.665992421e-10 6.435132514e-10 5.653646643e-10 2.352433643e-10 5.936831256e-10 3.225590659e-10 5.866245294e-10 3.066900979e-10 2.506911858e-10 1.77903877e-10 5.671431568e-10 4.709959672e-10 5.51313003e-10 4.556282682e-10 3.929727496e-10 4.176469877e-10 2.188970865e-10 6.100163559e-10 4.959507073e-10 4.506082891e-10 5.584568742e-10 4.562754119e-10 8.477289409e-10 3.449438573e-10 5.515201514e-10 6.475012533e-10 7.41449074e-10 6.589178161e-10 6.550001922e-10 8.515962535e-10 5.279324802e-10 7.925972038e-10 3.49018938e-10 4.532396934e-10 4.529173894e-10 5.481256813e-10 3.544666221e-10 4.624416299e-10 7.649301307e-10 7.111893033e-10 5.323658609e-10 5.702265461e-10 6.310962089e-10 2.724629746e-10 2.151902812e-10 2.454303462e-10 6.589409496e-10 5.120250978e-10 6.8715283e-10 3.984919816e-10 6.879857716e-10 4.604243899e-10 7.792707278e-10 7.009256677e-10 6.904436659e-10 1.11766638e-09 4.638712995e-10 5.813133864e-10 1.179449385e-09 1.844781844e-09 8.807959382e-10 7.529143656e-10 8.500659445e-10 9.414019527e-10 9.341993988e-10 9.085676514e-10 9.321106842e-10 1.166547532e-09 6.130322882e-10 1.036114052e-09 6.105440179e-10 6.100075467e-10 6.382894713e-10 6.428172414e-10 6.548262957e-10 5.534905203e-10 3.773800406e-10 6.439949268e-10 5.641022786e-10 1.058756079e-09 7.856372732e-10 7.307303206e-10 3.163956778e-10 5.636622047e-10 4.54057228e-10 4.691578264e-10 1.9051948e-10 1.607571196e-10 4.384215866e-10 3.055504159e-10 4.51677622e-10 3.454987562e-10 4.414090646e-10 3.334458408e-10 4.196441379e-10 5.515526686e-10 2.735919945e-10 5.701095855e-10 6.546755158e-10 9.753891378e-10 1.440656183e-09 1.091580794e-09 1.525700619e-09 1.081473056e-09 6.851947773e-10 1.593586828e-09 1.796243602e-09 8.85146827e-10 1.094271478e-09 1.293385524e-09 1.337781387e-09 1.210410304e-09 1.693426585e-09 1.52660903e-09 1.307898047e-09 7.373136724e-10 1.395299248e-09 1.271181206e-09 1.507791225e-09 9.19594712e-10 1.421376805e-09 2.514030004e-09 9.984136348e-10 1.632832769e-09 3.722787041e-10 1.364803257e-09 1.483575415e-09 1.360559192e-09 1.312051883e-09 1.124739521e-09 1.832140375e-09 9.147386297e-10 1.084287978e-09 8.236265529e-10 1.126926021e-09 1.268880911e-09 9.672384842e-10 1.741917894e-09 6.401968658e-10 2.468198978e-09 8.430384821e-10 8.492615073e-10 1.45553844e-09 1.702605756e-09 1.36295245e-09 6.652852948e-10 9.239691722e-10 5.31049576e-10 7.386305774e-10 2.730998832e-10 5.357994726e-10 6.534745947e-10 2.199954786e-10 1.748404397e-10 9.158801414e-11 1.016706921e-10 4.74975961e-10 2.487188162e-10 5.21256333e-10 8.110619664e-10 3.764490314e-10 7.311369444e-10 5.484541718e-10 1.141073281e-09 4.334211405e-10 4.891342653e-10 4.420129052e-10 5.744100558e-10 3.044413213e-10 9.175937385e-10 6.194783426e-10 1.019462622e-09 1.120555998e-09 4.684007952e-10 7.152006904e-10 8.708617539e-10 9.212096791e-10 1.28301516e-09 6.91200259e-10 1.106083683e-09 7.794354302e-10 9.733699631e-10 1.1517792e-09 1.080447167e-09 1.531138298e-09 7.783411009e-10 9.805056403e-10 1.132242623e-09 7.042814111e-10 8.786187916e-10 5.436094535e-10 9.010854395e-10 8.54258247e-10 7.119785979e-10 5.021173069e-10 7.851963989e-10 3.730647822e-10 5.935629853e-10 6.594647179e-10 6.185792285e-10 1.261570861e-09 5.416301349e-10 3.895435914e-10 9.063763071e-10 1.429612201e-09 8.844554954e-10 5.598519583e-10 8.548026072e-10 2.277791562e-10 5.220455531e-10 2.421146249e-10 2.273590086e-10 2.841242389e-10 1.046030001e-09 5.997666504e-10 6.727029587e-10 7.311842031e-10 6.153455839e-10 6.57279135e-10 7.285267196e-10 5.435133436e-10 7.766014222e-10 3.130835564e-10 3.768638272e-10 4.316426291e-10 7.301207492e-10 2.819590825e-10 4.548190307e-10 5.443507963e-10 6.133569142e-10 4.208231295e-10 6.633156731e-10 6.170876089e-10 9.737671005e-10 4.269545083e-10 3.39997857e-10 4.334476406e-10 3.938717635e-10 5.832635501e-10 3.210579232e-10 6.211582195e-10 4.939682057e-10 3.626374335e-10 6.783649188e-10 4.744083681e-10 5.739091193e-10 4.217363801e-10 5.210633759e-10 4.46497866e-10 3.720859441e-10 4.423432317e-10 6.29806236e-10 3.817383244e-10 2.960162423e-10 5.235526035e-10 8.459305135e-10 8.655200088e-10 6.235718289e-10 3.521084777e-10 7.005808621e-10 2.419391331e-10 8.307623338e-10 4.322672646e-10 7.159932536e-10 2.718137395e-10 6.710809528e-10 5.483403117e-10 7.793204784e-10 2.990173433e-10 1.115849443e-09 4.214502687e-10 4.948919596e-10 5.681961489e-10 +2.284622869e-10 4.870269152e-10 8.846758832e-10 4.166287422e-10 4.732786623e-10 6.177332741e-10 6.216897277e-10 8.835730401e-10 2.730586566e-10 9.471163579e-10 1.188785518e-09 3.620987382e-10 5.442440733e-10 6.995165773e-10 6.999697345e-10 1.809638454e-10 8.292483547e-10 1.111272615e-09 6.750084929e-10 1.881734153e-10 3.672106028e-10 1.569860893e-10 8.125514495e-10 7.349120888e-10 4.479187795e-10 5.886171168e-10 5.983105042e-10 5.062520363e-10 5.426884104e-10 6.447169477e-10 4.606206646e-10 4.137861849e-10 5.805250598e-10 7.462990746e-10 3.777647958e-10 3.32670617e-10 5.34286542e-10 6.99219732e-10 9.074083156e-10 6.214188485e-10 9.243382079e-10 6.655452819e-10 4.114558078e-10 3.081382101e-10 6.547541617e-10 5.779790374e-10 4.167098793e-10 5.027905699e-10 3.551389269e-10 3.079567387e-10 5.553297396e-10 1.818646623e-10 3.861232434e-10 6.31914737e-10 4.955018517e-10 2.857845378e-10 2.970668971e-10 2.909561175e-10 1.183930995e-09 9.500311321e-10 7.65985728e-10 2.819271108e-10 6.300235081e-10 4.403518002e-10 6.095821511e-10 4.197570014e-10 1.179792664e-09 1.152319191e-09 5.03663419e-10 6.15072445e-10 5.033531274e-10 5.246761331e-10 4.403537166e-10 5.949379312e-10 3.933767294e-10 6.166616192e-10 3.960464501e-10 5.714012744e-10 2.461101361e-10 3.779993992e-10 9.437884834e-10 1.155153025e-09 6.078158694e-10 8.848670547e-10 8.612697964e-10 1.074933962e-09 6.918448992e-10 1.498797628e-09 1.063422954e-09 1.897008947e-09 1.162889128e-09 6.887718032e-10 8.085726806e-10 8.594852679e-10 1.034630028e-09 8.131388569e-10 6.517894197e-10 1.365453826e-09 9.575669774e-10 1.086433056e-09 1.109340793e-09 9.443327947e-10 1.12494355e-09 3.77228202e-10 4.007086996e-10 1.018310893e-09 6.633226207e-10 1.041604055e-09 6.967139187e-10 9.532624344e-10 4.956447234e-10 4.564695644e-10 6.025952599e-10 1.031339668e-09 3.228340785e-10 1.361979226e-10 1.578962174e-10 1.834221031e-10 1.695449017e-10 4.785848828e-10 2.516141028e-10 5.18904829e-10 3.414432844e-10 7.389443221e-10 9.294369311e-10 8.075508058e-10 1.558321976e-09 9.313238884e-10 7.867733674e-10 1.479382123e-09 9.907494205e-10 1.220745886e-09 1.618857395e-09 1.314494774e-09 1.347198407e-09 1.418602331e-09 2.329370954e-09 1.03727324e-09 1.902390882e-09 8.704765379e-10 9.207500542e-10 1.092475842e-09 1.320493668e-09 8.829233088e-10 1.085252933e-09 1.791542679e-09 1.004730175e-09 1.856648423e-09 8.145287912e-10 1.443358394e-09 1.151392282e-09 1.218125182e-09 1.449719375e-09 1.022457031e-09 1.400537457e-09 1.821310083e-09 1.029158798e-09 1.194083136e-09 6.458561263e-10 1.313326648e-09 2.020785018e-09 1.802126083e-09 1.218194011e-09 9.178741954e-10 2.055900787e-09 2.13177733e-09 2.156161232e-09 1.390481713e-09 1.149423576e-09 1.85715212e-09 1.925348408e-09 7.250194895e-10 1.083405666e-09 1.213738358e-09 6.310056486e-10 1.105587325e-09 7.329578402e-10 6.167078247e-10 6.608784939e-10 3.771526761e-10 3.83000634e-10 5.591803387e-12 6.745520076e-11 2.395593211e-10 4.240074563e-10 3.583075323e-10 3.037788008e-10 2.663021983e-10 2.490674442e-10 6.745503906e-10 8.419457123e-10 7.64236942e-10 4.423549164e-10 8.827304274e-10 6.444123765e-10 8.285360465e-10 1.094105097e-09 8.470686751e-10 1.15783253e-09 9.686412126e-10 6.032319425e-10 8.705335845e-10 1.277995714e-09 1.17039243e-09 1.2131007e-09 8.146881172e-10 9.743800961e-10 1.201857706e-09 6.876618393e-10 7.900422734e-10 1.873091447e-09 1.191193598e-09 1.070047204e-09 1.94789651e-09 9.134062273e-10 8.673589419e-10 7.049070002e-10 6.209885335e-10 8.388914593e-10 5.191264147e-10 5.452533502e-10 1.052761501e-09 1.482679628e-10 6.971870734e-10 4.653453206e-10 7.408867867e-10 5.407422986e-10 5.794619481e-10 3.583967112e-10 5.115581455e-10 5.60682471e-10 5.165701385e-10 4.88787338e-10 1.748182787e-10 4.883663454e-10 7.814966709e-10 4.572266617e-10 6.094162948e-10 6.447648062e-10 2.803965168e-10 3.851827717e-10 3.916731723e-10 4.444250721e-10 6.217648075e-10 1.108736798e-09 4.34323648e-10 6.066124768e-10 2.8814052e-10 5.681857626e-10 4.702880575e-10 6.149456943e-10 4.679352233e-10 1.064901948e-09 3.6972754e-10 5.215256765e-10 4.869823304e-10 4.739929942e-10 3.437907741e-10 1.218787972e-09 4.706203839e-10 2.576790788e-10 1.494653597e-10 6.970960974e-10 8.496128201e-10 8.190596371e-10 4.889113583e-10 7.817085246e-10 2.609060616e-10 9.605635134e-10 5.581405299e-10 9.423053486e-10 5.48668497e-10 4.070639521e-10 4.765960137e-10 2.809758259e-10 5.754662602e-10 7.559882287e-10 5.3649273e-10 6.959059421e-10 6.290493501e-10 2.986447358e-10 5.511104622e-10 3.608882012e-10 1.827370796e-10 6.951914608e-10 7.595291987e-10 4.391916884e-10 3.786394738e-10 5.756241876e-10 5.570619622e-10 5.635309872e-10 9.4896854e-10 8.087377444e-10 2.481702416e-10 6.095670087e-10 4.78342105e-10 7.784008321e-10 4.277096354e-10 7.573951118e-10 5.651772846e-10 +5.636274706e-10 3.547627789e-10 4.001596928e-10 8.259177825e-10 4.834807604e-10 5.183068047e-10 1.049045165e-09 2.011626485e-10 6.28808618e-10 9.591767591e-10 2.098422537e-10 4.544940543e-10 8.368995075e-10 5.903608197e-10 3.317641044e-10 6.073809338e-10 8.392835408e-10 7.109108326e-10 6.183811672e-10 1.365334156e-10 7.069478347e-10 1.194878375e-09 5.356140599e-10 3.669890575e-10 5.310764614e-10 3.097939891e-10 4.442426976e-10 7.225700002e-10 4.994264758e-10 5.607619361e-10 4.359669887e-10 7.582001746e-10 3.9523426e-10 5.878463101e-10 5.626461684e-10 6.780936245e-10 8.192258187e-10 5.155717066e-10 5.617508229e-10 5.629685659e-10 8.427192103e-10 3.652182012e-10 4.304664425e-10 3.080798612e-10 7.958200761e-10 4.490612131e-10 2.390881061e-10 7.570061671e-10 6.590719627e-10 4.406339859e-10 2.747751601e-10 2.761497251e-10 4.085993725e-10 8.483919568e-10 5.212951491e-10 6.254296539e-10 5.792155811e-10 6.019793572e-10 6.709308502e-10 4.12452018e-10 7.620142549e-10 7.850777743e-10 4.032430922e-10 6.866370009e-10 2.656891167e-10 2.924927653e-10 6.027926703e-10 3.001815086e-10 2.902567813e-10 7.360288159e-10 5.154640416e-10 6.83930237e-10 6.718119088e-10 3.39694671e-10 5.637412379e-10 6.477579002e-10 2.765696239e-10 2.190055334e-10 5.009367258e-10 7.641374899e-10 9.0087696e-10 2.75015898e-10 2.561410948e-10 1.082879244e-09 6.766469963e-10 1.277418979e-09 1.542049586e-09 1.144634898e-09 7.374110275e-10 1.457241968e-09 1.08093073e-09 5.697975618e-10 1.205609309e-09 8.520616491e-10 1.329117807e-09 1.383879384e-09 6.902505609e-10 1.503234619e-09 7.870702007e-10 8.001361176e-10 9.095057677e-10 1.072076939e-09 7.569006611e-10 9.963129697e-10 6.540050869e-10 8.607732354e-10 7.518637905e-10 7.272032688e-10 1.244482055e-09 2.984589422e-10 5.149881613e-10 3.799732412e-10 2.731185328e-10 2.15325749e-10 2.783703936e-10 2.142763314e-10 1.396635865e-10 9.010293358e-11 5.096778293e-10 3.518156987e-10 4.153080195e-10 5.292617924e-10 6.337617273e-10 8.631885048e-10 1.235168732e-09 1.239818778e-09 7.513125112e-10 1.113929517e-09 1.805529715e-09 1.826409498e-09 1.215622797e-09 1.500573362e-09 1.682814862e-09 2.108197273e-09 1.712578093e-09 1.26816538e-09 2.365205701e-09 1.323367749e-09 1.057874307e-09 6.010809153e-10 1.52252669e-09 1.573760531e-09 1.719197805e-09 1.431764524e-09 6.16871905e-10 1.45644466e-09 1.634557445e-09 2.051270633e-09 1.43232538e-09 1.685181409e-09 1.562607837e-09 1.000416182e-09 1.721545433e-09 6.757539478e-10 1.070086185e-09 2.000852359e-09 7.31310457e-10 1.797462659e-09 1.166436974e-09 1.936032961e-09 2.525282304e-09 1.734860386e-09 1.939935334e-09 1.354371162e-09 8.398746086e-10 1.026078096e-09 4.156015412e-10 1.101633927e-09 1.628664928e-09 1.519989638e-09 9.68493499e-10 1.34894912e-09 1.86247652e-09 6.855475215e-10 9.898610576e-10 5.237670553e-10 5.624534008e-10 3.099664946e-10 9.359684199e-10 3.8109054e-10 4.834949923e-10 2.976378083e-10 4.840342521e-10 6.488877431e-11 5.101823541e-10 1.425843476e-10 5.026850286e-10 6.977908661e-10 2.980383775e-10 5.790384914e-10 6.395654317e-10 6.453541202e-10 5.996969659e-10 4.120492839e-10 4.064376069e-10 3.095884945e-10 6.452717439e-10 7.430816078e-10 7.949496274e-10 6.422027501e-10 7.149581289e-10 6.190429918e-10 1.056332182e-09 1.030813859e-09 9.008208915e-10 1.259424491e-09 4.199630328e-10 8.50679768e-10 6.718161374e-10 8.589825049e-10 8.524466079e-10 5.291488124e-10 1.554210752e-09 1.362832626e-09 8.361201711e-10 8.254908157e-10 3.058076335e-10 1.223970661e-09 8.360563743e-10 3.375999771e-10 6.997372167e-10 2.939897356e-10 1.070278358e-09 4.267037941e-10 3.397288815e-10 5.355408343e-10 6.627796578e-10 8.123997783e-10 1.186981122e-10 6.058597171e-10 9.40849918e-10 4.089376617e-10 6.297834883e-10 7.460440434e-10 5.598790317e-10 3.669548385e-10 6.160320517e-10 7.06858697e-10 8.945918888e-10 5.431955276e-10 9.473221028e-10 6.821458614e-10 7.497640858e-10 1.332903049e-09 8.066987702e-10 5.669746493e-10 3.494755638e-10 7.236024776e-10 6.763104368e-10 1.98615775e-10 6.231359623e-10 3.844428906e-10 5.683920173e-10 9.04942864e-10 3.908099555e-10 4.118604858e-10 7.03524136e-10 3.791110775e-10 5.667027959e-10 3.218313415e-10 5.068968357e-10 8.968392108e-10 8.572908751e-10 7.004770239e-10 4.932461785e-10 3.78178206e-10 1.598219575e-10 9.301258348e-10 1.032178351e-09 5.977574044e-10 9.70926322e-10 7.811736265e-10 3.545991806e-10 3.628767741e-10 8.964392001e-10 3.619312105e-10 4.867277422e-10 6.25545201e-10 4.539533825e-10 5.535564881e-10 4.318597388e-10 6.017926293e-10 4.258922099e-10 1.073048223e-10 3.539334988e-10 2.700521163e-10 4.829944398e-10 7.951882255e-10 4.731634367e-10 5.416771065e-10 7.595809051e-10 4.141355474e-10 4.570482396e-10 5.389585084e-10 5.700987907e-10 1.004426973e-09 2.535227412e-10 7.93500619e-10 4.279953735e-10 4.373666863e-10 +2.001211433e-10 3.85201562e-10 6.600815848e-10 6.184265787e-10 3.790654439e-10 6.539534916e-10 8.728805647e-10 7.347649552e-10 5.481192715e-10 5.585233556e-10 5.132797696e-10 7.860951456e-10 3.499939502e-10 6.657773911e-10 4.363533624e-10 7.488894189e-10 6.556546826e-10 3.053540781e-10 7.14987223e-10 4.610694793e-10 3.020684506e-10 8.616137705e-10 5.491768999e-10 4.861287539e-10 7.978719469e-10 5.081088952e-10 3.543348272e-10 4.717747939e-10 4.546984046e-10 5.891374914e-10 7.910604947e-10 4.215882985e-10 8.923932286e-10 6.037465696e-10 8.044308801e-10 8.035379476e-10 5.162521771e-10 6.955055375e-10 5.613651001e-10 9.690706878e-10 7.165880641e-10 2.715369937e-10 7.532824641e-10 6.904169464e-10 5.752653732e-10 5.624517321e-10 2.187809123e-10 4.676420669e-10 1.455625532e-10 8.625286552e-10 3.079572159e-10 1.458162853e-10 2.025256949e-10 2.652643295e-10 3.297286002e-10 7.26878048e-10 4.813703022e-10 7.404850114e-10 4.947657919e-10 5.711329045e-10 7.263683525e-10 4.560771898e-10 7.19739933e-10 3.7014033e-10 5.578580714e-10 4.4013473e-10 8.954743193e-10 3.984318694e-10 3.87599546e-10 4.26431447e-10 4.692904399e-10 4.362752075e-10 2.711308558e-10 5.129848104e-10 5.792749839e-10 4.136127867e-10 5.066663544e-10 6.22575566e-10 4.681760531e-10 3.558018386e-10 4.224332933e-10 4.844323204e-10 6.555664733e-10 5.32461123e-10 1.006696454e-09 1.218562653e-09 1.350985656e-09 1.576099824e-09 9.641557347e-10 1.253336264e-09 9.303700455e-10 7.29886236e-10 1.304305974e-09 5.547641314e-10 1.053958396e-09 6.989141505e-10 8.00813416e-10 6.2940523e-10 7.554039345e-10 6.819756852e-10 1.046695899e-09 1.142493573e-09 8.829280046e-10 1.892033785e-09 2.567004337e-10 7.201324088e-10 7.520427203e-10 8.843136519e-10 8.595330136e-10 7.433417238e-10 3.630060036e-10 4.923758516e-10 4.122854677e-10 6.860597744e-10 2.524733556e-10 8.132246135e-11 3.091342505e-10 8.200112243e-10 4.367614349e-10 2.593120631e-10 4.428498874e-10 4.092881361e-10 3.732618949e-10 1.245648495e-09 1.044984297e-09 9.027659398e-10 6.302892966e-10 2.578735508e-09 1.1911706e-09 2.187659697e-09 1.016118714e-09 1.00778681e-09 9.842616074e-10 1.528325308e-09 1.581640973e-09 1.78154965e-09 8.098410011e-10 1.299627163e-09 1.501936568e-09 1.056865249e-09 7.140387144e-10 2.941684115e-09 2.486080959e-09 1.164130821e-09 1.393845869e-09 1.834244039e-09 1.565033746e-09 1.553936607e-09 1.600929461e-09 8.117599993e-10 8.731717756e-10 8.430452959e-10 1.211700385e-09 7.77543735e-10 5.922002397e-10 1.662031675e-09 1.26677305e-09 1.888449422e-09 9.517802091e-10 1.520847618e-09 8.744271247e-10 8.974366905e-10 1.475856257e-09 1.668072024e-09 1.719957803e-09 7.266537774e-10 1.094867775e-09 1.672565539e-09 1.658813499e-09 1.52241501e-09 1.180945955e-09 1.293342038e-09 2.037253557e-09 2.233431982e-09 1.373975233e-09 1.883009856e-09 7.524899901e-10 8.9335238e-10 6.496818535e-10 5.842763618e-10 1.852046201e-10 3.37824875e-10 3.383780179e-10 4.69537948e-10 2.6136101e-10 2.54438092e-10 3.765443023e-10 2.936090466e-10 4.96845886e-10 4.650282593e-10 1.057672457e-09 8.357472557e-10 8.74793948e-10 7.737977692e-10 8.869298109e-10 1.017337381e-09 9.939445532e-10 1.099861796e-09 8.711902586e-10 6.881786546e-10 7.112358437e-10 7.782391207e-10 8.279912474e-10 6.593108946e-10 1.030734365e-09 9.255337088e-10 1.072406649e-09 8.285567325e-10 8.877968315e-10 5.996765131e-10 9.1476286e-10 1.060333323e-09 1.413871847e-09 1.029224894e-09 4.75622752e-10 6.667177287e-10 1.167978065e-09 4.921023849e-10 3.427697396e-10 5.118245519e-10 5.159073279e-10 4.942017686e-10 1.174541526e-09 3.843673227e-10 2.880917424e-10 4.366730357e-10 4.285072553e-10 6.663418389e-10 7.172868011e-10 6.112724326e-10 6.247215423e-10 6.306393478e-10 7.880450589e-10 5.800802998e-10 2.87637972e-10 9.414947549e-10 4.419294113e-10 7.480876011e-10 9.76254221e-10 6.341411635e-10 5.750498585e-10 8.685791496e-10 3.896088978e-10 8.170952891e-10 5.218133904e-10 4.592605401e-10 3.574960321e-10 3.850896893e-10 3.868857255e-10 6.036276198e-10 2.708420474e-10 5.966478049e-10 2.669667044e-10 4.814169771e-10 2.802611848e-10 5.919319653e-10 1.631364596e-10 7.623966425e-10 5.757998823e-10 6.353729976e-10 1.069191564e-09 2.006766417e-10 1.129763025e-09 6.711411488e-10 3.061786579e-10 5.79904875e-10 5.015359935e-10 5.195285913e-10 3.446706817e-10 4.114337635e-10 5.46213254e-10 3.246483094e-10 4.965252582e-10 7.193933769e-10 3.550638091e-10 4.820600804e-10 3.958788333e-10 6.427150573e-10 4.317300848e-10 3.667562423e-10 2.474429688e-10 4.131704195e-10 6.703041797e-10 4.839933693e-10 4.483850712e-10 6.542855236e-10 3.240087726e-10 8.629843211e-10 4.253276725e-10 3.120552514e-10 2.739617617e-10 7.607827577e-10 2.449239227e-10 2.42391169e-10 8.981579804e-10 3.706386759e-10 1.115369911e-09 2.643637755e-10 5.411847185e-10 3.276071737e-10 +7.392956795e-10 4.231388714e-10 3.621018369e-10 3.293415999e-10 1.067934032e-09 1.050045431e-09 7.068358187e-10 1.004714017e-09 7.118194673e-10 7.901780383e-10 6.468990584e-10 7.687548231e-10 7.728754426e-10 4.895058143e-10 4.390878885e-10 3.282802304e-10 4.929566845e-10 3.505797843e-10 1.227986749e-09 9.710856109e-10 6.458416137e-10 3.778762961e-10 5.842674971e-10 5.406094471e-10 6.337060195e-10 3.944441477e-10 5.428281279e-10 4.0530918e-10 3.681869919e-10 6.644698857e-10 8.562365548e-10 1.093252434e-09 4.731807475e-10 6.787278191e-10 5.590269929e-10 5.063870112e-10 7.517412249e-10 5.944851145e-10 5.912573871e-10 1.095356452e-09 4.693224337e-10 4.963345666e-10 2.586528987e-10 3.901401308e-10 1.017961646e-09 4.330300422e-10 6.756447266e-10 2.408103876e-10 6.775630419e-10 6.055969565e-10 7.497476002e-10 7.237671198e-10 8.921005582e-10 9.575140244e-10 9.283887968e-10 3.399670138e-10 3.402466685e-10 3.961146813e-10 7.008354613e-10 9.170740649e-10 8.641167163e-10 7.557879458e-10 5.785065085e-10 7.325788292e-10 6.029918487e-10 7.197865548e-10 7.776033228e-10 5.182853883e-10 6.241196882e-10 6.502182572e-10 6.369297828e-10 1.26936026e-09 5.074842195e-10 5.679406958e-10 6.884580731e-10 5.052348517e-10 2.269197833e-10 5.099606383e-10 5.12324065e-10 6.828736097e-10 3.595604889e-10 6.713559905e-10 1.066567475e-09 1.092881844e-09 5.429885593e-10 1.48264697e-09 1.136099976e-09 8.003043937e-10 8.722152078e-10 1.264208449e-09 9.209318708e-10 8.94755235e-10 4.965999119e-10 6.568564746e-10 8.268254075e-10 4.599132837e-10 9.715793686e-10 4.597873601e-10 3.296887136e-10 1.045247476e-09 6.760608797e-10 1.100821819e-09 7.538649292e-10 6.231866119e-10 1.182598873e-09 7.558256519e-10 5.100429245e-10 7.115148491e-10 1.016707417e-09 4.382176677e-10 3.786042177e-10 3.441875102e-10 1.547214678e-10 1.992930084e-10 1.235042805e-10 1.936765335e-10 2.364648586e-10 4.005202507e-10 4.31944128e-10 6.264838689e-10 4.095171908e-10 3.72032726e-10 4.005113453e-10 2.023392889e-09 1.480738457e-09 1.527069606e-09 2.349688602e-09 1.009288793e-09 1.071214527e-09 9.391303277e-10 7.316833339e-10 1.385692006e-09 9.903386129e-10 1.58274373e-09 1.106719874e-09 1.198222321e-09 1.562702739e-09 7.71717136e-10 1.108645762e-09 5.460860544e-10 1.528336405e-09 1.073335035e-09 1.288004741e-09 1.893793293e-09 1.077158838e-09 1.576574247e-09 9.155384991e-10 1.481092361e-09 1.652166e-09 9.684128111e-10 8.546212547e-10 1.060720911e-09 1.429576295e-09 1.066512749e-09 1.296499358e-09 1.781827807e-09 1.887031399e-09 1.48623905e-09 1.856561855e-09 8.231354785e-10 1.554618497e-09 1.395929429e-09 1.817848404e-09 8.884427194e-10 1.536482578e-09 1.027896988e-09 1.550612843e-09 7.207877496e-10 1.39085972e-09 1.736900281e-09 1.862592986e-09 1.354303039e-09 1.891095168e-09 1.601178336e-09 1.514658223e-09 1.349021129e-09 1.617063906e-09 8.877733565e-10 1.202281621e-09 6.24541909e-10 3.761582828e-10 3.125601582e-10 7.003409725e-10 3.577322346e-10 3.324027515e-10 5.88874754e-11 1.70059651e-10 7.050684878e-10 4.468248203e-10 4.763239676e-10 6.897335973e-10 6.907194221e-10 8.075606546e-10 5.66261923e-10 6.629108048e-10 8.914206504e-10 1.035982981e-09 1.069537934e-09 4.120004262e-10 1.217917672e-09 5.748686822e-10 8.973368945e-10 8.068518023e-10 6.115871455e-10 1.557976037e-09 1.151330363e-09 1.31443108e-09 8.993245842e-10 5.091802097e-10 1.072328801e-09 1.067056926e-09 1.1415016e-09 1.596635032e-09 1.349695871e-09 8.167877596e-10 8.958150044e-10 7.055100941e-10 6.746360519e-10 7.107820181e-10 4.592986162e-10 7.061733361e-10 5.421605045e-10 5.16498034e-10 9.182863536e-10 5.816203692e-10 4.53237891e-10 6.421560875e-10 8.124825642e-10 5.01162015e-10 7.713297296e-10 7.952394021e-10 8.683735494e-10 6.599689192e-10 5.873107276e-10 8.199493451e-10 3.497597684e-10 1.174641104e-09 7.788327453e-10 4.334991132e-10 3.810679776e-10 6.793803981e-10 6.587029719e-10 8.972767789e-10 8.17925255e-10 1.070498683e-09 5.955399609e-10 3.859432674e-10 6.270553063e-10 4.512858984e-10 3.624447461e-10 4.874435325e-10 2.50644822e-10 5.329430266e-10 3.911972132e-10 6.058992827e-10 7.209532564e-10 7.128373053e-10 1.561160509e-10 2.041908343e-10 6.497479422e-10 5.781750473e-10 3.740019323e-10 4.681252117e-10 1.974404857e-10 6.483003165e-10 8.873029867e-10 5.440732581e-10 4.211846147e-10 7.560205438e-10 7.371161952e-10 7.718608585e-10 1.176593434e-09 6.531080841e-10 4.745274407e-10 2.836966289e-10 1.133698935e-09 3.627672125e-10 4.615427657e-10 3.961287729e-10 1.216796042e-09 5.872573361e-10 2.365931232e-10 8.429624094e-10 4.762090963e-10 1.121133549e-09 4.384823881e-10 4.032727935e-10 4.078993152e-10 7.276397105e-10 1.048319403e-09 5.645069079e-10 5.690098577e-10 4.813470693e-10 7.176372523e-10 8.737660474e-10 7.59694265e-10 4.296779061e-10 8.041806835e-10 5.555347859e-10 3.535609324e-10 +8.603675922e-10 1.31635596e-09 8.93914007e-10 9.443506438e-10 6.913948801e-10 7.156698262e-10 5.904684024e-10 6.902314897e-10 2.468050382e-10 5.223722732e-10 5.489998174e-10 8.445274702e-10 6.937577018e-10 4.865419116e-10 2.995540405e-10 1.065681205e-09 3.666701459e-10 5.959001523e-10 4.587865263e-10 5.389533557e-10 6.811530396e-10 2.525435721e-10 5.921436633e-10 3.457234964e-10 2.498858718e-10 7.43017502e-10 5.566160365e-10 3.886842073e-10 9.498456634e-10 5.476600491e-10 7.09777354e-10 3.81175998e-10 7.369681228e-10 6.046995975e-10 8.51951467e-10 3.79764028e-10 6.554207722e-10 4.837704154e-10 1.494404254e-09 8.45986894e-10 3.839846164e-10 6.986924207e-10 6.071258696e-10 6.53692155e-10 8.272740033e-10 4.181718326e-10 4.909046374e-10 5.265580185e-10 2.476761487e-10 5.648432714e-10 1.128683978e-09 7.084060624e-10 5.421646462e-10 5.359674938e-10 7.018169368e-10 6.046107884e-10 7.019762903e-10 6.663309622e-10 6.0990824e-10 3.004221491e-10 6.876061464e-10 6.002506852e-10 6.275865322e-10 6.019234283e-10 5.780172681e-10 3.169646628e-10 9.351124836e-10 1.175989022e-09 5.542726193e-10 3.258574871e-10 4.212664201e-10 6.259941045e-10 1.877377532e-10 5.709717105e-10 2.183413703e-10 2.574790626e-10 5.874529305e-10 8.564916052e-10 4.010744551e-10 5.247883865e-10 7.078277873e-10 5.299852621e-10 6.709411628e-10 9.999848967e-10 1.870945014e-09 7.800045183e-10 9.104924489e-10 1.109047564e-09 1.342077481e-09 8.193546227e-10 8.838040841e-10 8.129592216e-10 1.542624676e-09 5.566117002e-10 6.357538714e-10 9.664899659e-10 6.863341552e-10 9.360795549e-10 1.019331014e-09 1.149290079e-09 7.178129445e-10 1.086502781e-09 1.176466915e-09 3.806428656e-10 5.044260014e-10 5.710740121e-10 1.120085983e-09 1.261175516e-09 8.940176275e-10 5.929636702e-10 5.442001674e-10 3.774275503e-10 5.61524497e-10 2.802502475e-10 1.247391568e-10 5.500121145e-10 3.825152234e-10 3.479662742e-10 9.060942432e-10 6.112825385e-10 1.153821184e-09 1.543889353e-09 5.217203891e-10 8.823057874e-10 1.762544807e-09 2.063725721e-09 8.533370818e-10 1.653202907e-09 1.330135521e-09 2.232455674e-09 2.340346785e-09 2.141827823e-09 1.119403116e-09 1.410218909e-09 1.319955859e-09 1.603814924e-09 1.807506079e-09 1.040943063e-09 1.17775744e-09 1.372374426e-09 1.731761463e-09 1.37839314e-09 1.797236e-09 1.213762195e-09 1.018941688e-09 2.637234029e-09 1.394626592e-09 9.72335745e-10 8.236432659e-10 6.070367189e-10 1.237207124e-09 1.812003908e-09 1.077659345e-09 1.756108367e-09 1.202930493e-09 2.367132832e-09 1.073889476e-09 1.103530289e-09 1.416030078e-09 1.302304704e-09 1.861389191e-09 1.355331644e-09 1.792696433e-09 4.776731874e-10 1.664545357e-09 1.667937733e-09 1.241413218e-09 1.44510906e-09 4.691966019e-10 1.602726619e-09 1.72416343e-09 1.513577627e-09 1.099026881e-09 2.23273355e-09 1.874924203e-09 1.162088841e-09 9.340943327e-10 1.179165111e-09 8.38068025e-10 1.077996527e-09 5.758066582e-10 4.224794503e-10 5.595108353e-10 5.701782721e-10 7.560906681e-10 5.162733882e-10 2.968149823e-10 8.045781006e-11 4.520129347e-10 3.414035751e-10 5.037060832e-10 5.480415953e-10 5.533556315e-10 6.446927934e-10 3.550736995e-10 6.978347963e-10 9.833507309e-10 9.514963474e-10 5.877425845e-10 9.236678355e-10 1.401010232e-09 5.872213353e-10 6.285969244e-10 1.267275118e-09 1.302565269e-09 1.193997053e-09 4.204682053e-10 9.987743194e-10 8.321356797e-10 7.616377392e-10 5.966480644e-10 1.629120435e-09 1.15231112e-09 1.386886909e-09 9.576883206e-10 1.497732489e-09 1.324344822e-09 8.206324259e-10 7.047618846e-10 8.237185297e-10 5.831931559e-10 5.669271902e-10 8.420201288e-10 2.476079864e-10 7.73847247e-10 3.789473381e-10 3.74844902e-10 3.873391608e-10 4.373595142e-10 6.791244742e-10 9.696954707e-10 7.460912531e-10 1.111323796e-09 4.661745987e-10 8.577842738e-10 3.716148881e-10 4.888990165e-10 6.4431152e-10 5.364440776e-10 5.883208379e-10 5.114957481e-10 1.132513475e-09 7.039553166e-10 7.254666986e-10 3.486132051e-10 6.427041101e-10 4.503810875e-10 5.148349596e-10 3.126150458e-10 6.760806283e-10 1.061466606e-09 5.058561709e-10 3.740450554e-10 5.229261399e-10 6.641054163e-10 3.839228755e-10 5.65686395e-10 5.616583555e-10 5.957814559e-10 6.495421157e-10 7.161805088e-10 5.354263173e-10 1.072511423e-09 2.432109636e-10 4.024382885e-10 6.909058547e-10 5.390563027e-10 7.279219026e-10 7.856432927e-10 2.975076265e-10 1.915719086e-10 8.226327501e-10 3.710685992e-10 2.088463968e-10 2.834186906e-10 8.311794113e-10 4.953802238e-10 9.181137898e-10 7.342492978e-10 6.92423706e-10 3.346111021e-10 5.809939688e-10 4.677287135e-10 7.210612836e-10 6.177642338e-10 2.690141378e-10 1.033639206e-09 5.216495522e-10 3.551915336e-10 6.955648174e-10 3.058861506e-10 5.911194949e-10 5.689934998e-10 1.936977389e-10 8.210296743e-10 4.453478744e-10 6.374167711e-10 5.713611497e-10 7.044846817e-10 7.025428398e-10 +6.478410427e-10 5.844835766e-10 6.46686856e-10 4.863949304e-10 9.8863368e-10 4.951434471e-10 4.044657173e-10 3.018947719e-10 2.898242441e-10 1.133049996e-09 2.761241466e-10 6.087649785e-10 6.769900871e-10 6.019654609e-10 7.260992048e-10 5.761225528e-10 4.411027041e-10 4.002074722e-10 3.44007448e-10 8.886398701e-10 9.705444814e-10 4.503455043e-10 7.190797985e-10 4.74944112e-10 4.008980431e-10 4.612336004e-10 8.313094541e-10 4.346713128e-10 5.33415828e-10 5.415042522e-10 5.708163592e-10 5.554249317e-10 6.480412962e-10 3.576735421e-10 7.121367767e-10 5.526774611e-10 7.420839047e-10 1.261620983e-09 5.621866042e-10 5.672506237e-10 1.369823346e-09 1.147687016e-09 1.112854296e-09 4.579153873e-10 6.75648044e-10 6.432077536e-10 2.797248417e-10 5.392443101e-10 4.868556483e-10 5.564389233e-10 7.097765724e-10 2.143244548e-10 4.777911769e-10 7.256704544e-10 1.078894354e-09 6.90878143e-10 6.533139285e-10 8.556270933e-10 9.650250513e-10 4.694727735e-10 5.135978909e-10 3.237573365e-10 8.984347468e-10 8.825779566e-10 4.984857146e-10 8.080675891e-10 7.711945641e-10 9.90113691e-10 5.170830726e-10 6.504590209e-10 2.086295527e-10 5.29892948e-10 6.407870191e-10 4.682665067e-10 2.818640986e-10 3.621268325e-10 5.832920175e-10 2.479511334e-10 7.00878777e-10 2.7999322e-10 7.034522484e-10 1.100680273e-09 8.226354034e-10 9.050425932e-10 9.733638653e-10 1.620335902e-09 6.854539123e-10 8.095400899e-10 7.233994612e-10 9.107511065e-10 1.682658506e-09 1.199322371e-09 5.376652965e-10 9.164108037e-10 1.326661277e-09 4.338755027e-10 9.716169132e-10 1.074271369e-09 1.218748528e-09 8.735810231e-10 7.815370895e-10 9.133793672e-10 9.549620569e-10 8.791844527e-10 6.359637202e-10 6.474042344e-10 9.132017606e-10 7.288871373e-10 5.871881912e-10 5.292145976e-10 2.169239284e-10 4.870519708e-10 2.223407424e-10 1.766795362e-10 3.16884683e-10 2.365507233e-10 5.86103381e-10 4.133324373e-10 6.138915411e-10 4.386466575e-10 9.602429235e-10 1.814280688e-09 1.843460865e-09 1.466601724e-09 1.259221347e-09 1.640219682e-09 1.81789461e-09 2.730705053e-09 6.1196716e-10 1.731254195e-09 1.820555132e-09 2.210077267e-09 8.981975185e-10 1.54052803e-09 1.758622351e-09 1.99129245e-09 1.735811453e-09 1.014029995e-09 1.609102403e-09 1.643499104e-09 1.356131404e-09 1.123735665e-09 2.466173744e-09 1.772412441e-09 6.737736177e-10 9.847670505e-10 6.969906585e-10 7.049397869e-10 1.686560289e-09 9.775782738e-10 1.128313797e-09 8.066897087e-10 1.230878764e-09 1.089778541e-09 1.605641563e-09 1.209151888e-09 6.448690855e-10 1.831017208e-09 1.836464039e-09 1.356385138e-09 1.507324967e-09 1.489440852e-09 1.18613515e-09 7.626286212e-10 1.383845954e-09 2.131704068e-09 2.525380887e-09 2.204671946e-09 1.200875934e-09 1.587391164e-09 1.072799182e-09 1.411685064e-09 1.899241926e-09 1.978735737e-09 1.879613434e-09 2.031244431e-09 1.400329108e-09 2.111100492e-09 1.286393509e-09 1.897743162e-09 3.384141002e-10 2.29516059e-10 6.053490286e-10 3.425419249e-10 5.902097192e-10 3.42625037e-10 4.584830974e-10 4.141533929e-10 2.281135305e-10 6.248597582e-10 4.870601983e-10 5.800377561e-10 9.521095419e-10 1.17000569e-09 7.539600346e-10 6.528917774e-10 2.220224338e-10 1.473683406e-09 1.124330322e-09 7.345087038e-10 6.91307735e-10 6.688883767e-10 1.300432108e-09 9.099650174e-10 8.518765704e-10 9.092888666e-10 4.594392278e-10 8.507393273e-10 1.585279934e-09 9.632392441e-10 6.998695339e-10 7.006688851e-10 1.480176976e-09 1.399423835e-09 1.274583401e-09 9.991512264e-10 1.523708584e-09 9.794062408e-10 9.350091781e-10 4.676816415e-10 3.207741654e-10 3.156400898e-10 1.592102259e-10 7.42143748e-10 4.08471027e-10 7.584933369e-10 3.216953085e-10 1.1639534e-09 4.282790375e-10 6.928945955e-10 4.369318981e-10 1.016351055e-09 5.91523131e-10 3.244986977e-10 9.113834461e-10 5.530735523e-10 7.901430219e-10 6.0819185e-10 9.643708354e-10 7.805117358e-10 7.498073483e-10 2.708015576e-10 3.487630239e-10 7.97212074e-10 4.176864313e-10 9.020483599e-10 5.403370429e-10 3.067923802e-10 7.621916189e-10 8.005436315e-10 5.723310897e-10 4.148737125e-10 3.439805014e-10 6.054109142e-10 6.878092961e-10 8.736615717e-10 7.141370986e-10 8.140352533e-10 1.046808046e-09 6.405238099e-10 8.539265578e-10 6.069224344e-10 8.002758028e-10 6.831154857e-10 5.869393618e-10 8.56952941e-10 3.449788431e-10 1.167324924e-09 1.004282522e-09 6.987689497e-10 7.086822241e-10 4.802941475e-10 1.569060638e-10 3.812165105e-10 6.56556131e-10 6.236167198e-10 9.331969445e-10 8.778276455e-10 3.784150755e-10 5.420625576e-10 5.911181793e-10 5.511365759e-10 3.903017503e-10 3.673377238e-10 6.190035031e-10 9.426318924e-10 1.183827946e-09 8.76891433e-10 6.765423418e-10 6.118824258e-10 5.521043858e-10 5.209582838e-10 5.906024754e-10 4.162291771e-10 1.080059223e-09 2.161013287e-10 7.279803192e-10 9.73855875e-10 1.073488691e-09 1.257452099e-09 +4.730013751e-10 5.249760858e-10 2.585828426e-10 5.155509911e-10 6.536715398e-10 5.265334189e-10 3.666581726e-10 6.204094267e-10 8.093069681e-10 7.237433452e-10 2.809300809e-10 1.210901965e-09 6.870851914e-10 7.532636094e-10 3.163294041e-10 9.506050411e-10 5.527453787e-10 6.39239659e-10 6.136692206e-10 3.355565926e-10 4.671252446e-10 3.061065308e-10 8.160077486e-10 6.414345871e-10 7.665013312e-10 4.533867246e-10 4.175405043e-10 6.97723303e-10 6.974806839e-10 7.252428957e-10 8.504264772e-10 9.031342593e-10 6.412309134e-10 4.17062215e-10 6.356960119e-10 5.985647024e-10 4.956156994e-10 8.880074403e-10 4.095853504e-10 3.140576624e-10 6.752325692e-10 6.67842584e-10 5.340654079e-10 4.436898434e-10 6.163906132e-10 9.057749916e-10 7.174442654e-10 6.918796181e-10 5.958696721e-10 2.617011117e-10 1.001700884e-09 4.973856994e-10 2.15030351e-10 6.528607341e-10 4.074574191e-10 5.522938421e-10 2.303407026e-10 7.975972794e-10 1.018231703e-09 7.988006394e-10 6.519497165e-10 8.336661372e-10 4.723605185e-10 7.749089317e-10 1.00410473e-09 1.116323705e-09 9.412436448e-10 9.417603898e-10 5.208345155e-10 1.099408817e-09 9.061290236e-10 9.764990875e-10 7.966539036e-10 7.331940093e-10 4.702849609e-10 3.622421211e-10 5.134408382e-10 4.49173189e-10 2.621691516e-10 2.172532183e-10 7.084357417e-10 9.663009616e-10 8.729318326e-10 1.001486536e-09 1.263241577e-09 1.498573081e-09 1.255590642e-09 6.634567151e-10 1.608823352e-09 9.39737387e-10 1.815545152e-09 1.074982074e-09 8.002577704e-10 1.020782007e-09 1.369974763e-09 8.452980913e-10 8.060456691e-10 1.465223101e-09 5.011204517e-10 7.201244599e-10 6.734875685e-10 7.109179776e-10 9.730708092e-10 8.935155532e-10 9.874520423e-10 1.040949664e-09 2.602933004e-10 6.910532304e-10 7.631498485e-10 5.961815946e-10 4.584334e-10 3.18324574e-10 2.444380684e-10 4.053491845e-10 6.378853224e-10 9.393600422e-10 4.510600433e-10 6.809119974e-10 5.27575637e-10 7.462600948e-10 1.802363847e-09 1.911788483e-09 1.852572173e-09 1.751007562e-09 1.170072392e-09 1.072634735e-09 2.138255832e-09 1.24274662e-09 1.035109609e-09 9.445357263e-10 1.795944227e-09 1.354403823e-09 1.174842757e-09 1.264133537e-09 1.883328023e-09 1.939862542e-09 1.812985575e-09 2.793213754e-09 2.246750572e-09 1.916770641e-09 1.930226505e-09 1.624639674e-09 1.290750312e-09 2.743028557e-09 1.358948125e-09 1.192275753e-09 1.065043716e-09 1.536417667e-09 9.27286674e-10 1.074658016e-09 9.052310528e-10 1.64770841e-09 1.793084996e-09 1.623847829e-09 2.477682998e-09 8.776676617e-10 9.648722258e-10 9.35736986e-10 9.57444157e-10 2.408088264e-09 4.88160478e-10 1.465845161e-09 1.507501069e-09 1.024640576e-09 1.334868643e-09 1.43885276e-09 1.672772731e-09 2.242129402e-09 9.037763541e-10 1.715283621e-09 7.904854288e-10 2.206538041e-09 5.16380582e-10 2.017056152e-09 1.453126449e-09 2.099600102e-09 1.143516424e-09 1.897133202e-09 1.079386151e-09 1.27404765e-09 2.063708665e-09 4.659697901e-10 5.571970852e-10 4.805169118e-10 6.716345282e-10 2.291705862e-10 7.004529429e-10 2.587296441e-10 5.268756385e-11 3.879302761e-10 6.116883015e-10 8.200479523e-10 6.724868868e-10 7.789489108e-10 4.659339163e-10 7.314830498e-10 9.66728736e-10 1.370917534e-09 7.090197508e-10 6.027999293e-10 7.836610551e-10 1.269926082e-09 5.709547894e-10 9.500710689e-10 7.939850084e-10 7.443654432e-10 8.080660371e-10 6.321658402e-10 5.935269985e-10 1.530653624e-09 7.8964012e-10 1.833621838e-09 1.001322311e-09 1.269333732e-09 1.167709364e-09 1.159137584e-09 5.720186907e-10 8.568959716e-10 8.035898209e-10 8.670129636e-10 6.713342821e-10 2.736897381e-10 9.909446766e-10 4.36544219e-10 6.350636999e-10 6.780022802e-10 5.356204895e-10 1.201180836e-09 6.378604158e-10 4.684676015e-10 1.069089865e-09 7.991156209e-10 6.452675846e-10 8.651462956e-10 4.520598956e-10 5.208072439e-10 8.881513724e-10 1.032323079e-09 1.076416003e-09 1.166528893e-09 3.281971294e-10 4.559465584e-10 6.807297226e-10 1.057780152e-09 3.996733697e-10 6.379827243e-10 4.46573351e-10 2.529341222e-10 3.131277557e-10 4.388791319e-10 6.360470414e-10 3.416592862e-10 5.561681152e-10 2.200412172e-10 8.213933801e-10 5.208769513e-10 8.251978753e-10 7.063147388e-10 5.691439495e-10 5.748426485e-10 5.285936234e-10 5.851886529e-10 7.463104139e-10 5.459766494e-10 4.439194445e-10 5.935632449e-10 8.614461788e-10 4.564894071e-10 6.2060509e-10 3.619678828e-10 4.852458917e-10 6.427476121e-10 7.646099516e-10 7.646303052e-10 8.739422681e-10 4.401826962e-10 6.89565458e-10 3.998245715e-10 4.688602311e-10 2.009470477e-10 8.395310371e-10 2.445692569e-10 3.642528152e-10 5.003441695e-10 4.232858991e-10 4.752326423e-10 7.977417937e-10 7.576773913e-10 9.198715124e-10 7.421013939e-10 6.481062902e-10 8.470666407e-10 9.094122707e-10 3.164337803e-10 5.997848362e-10 3.072711136e-10 6.082355467e-10 7.273389106e-10 3.805917974e-10 6.82847941e-10 +5.665978476e-10 1.23944725e-09 3.48917172e-10 6.28404173e-10 4.286908074e-10 4.600390141e-10 7.545219042e-10 8.490338992e-10 6.455840707e-10 4.116350747e-10 5.661601904e-10 8.291603403e-10 3.504962085e-10 7.448705306e-10 7.289104334e-10 4.791156059e-10 6.112583984e-10 3.834115705e-10 8.689930606e-10 1.207281752e-09 4.970234285e-10 8.179282305e-10 6.398512495e-10 8.596066418e-10 9.834204421e-10 4.919240243e-10 1.4670681e-10 2.370035522e-10 4.760068232e-10 5.449367014e-10 6.36926328e-10 1.172070137e-09 1.021131624e-09 9.064653811e-10 3.498073754e-10 7.304391639e-10 3.799743162e-10 1.335558987e-09 7.355543111e-10 6.168152793e-10 2.899160538e-10 4.151358864e-10 7.924660621e-10 3.937208737e-10 3.253356473e-10 2.624925658e-10 4.438902899e-10 2.912060264e-10 3.145725719e-10 2.614959223e-10 3.872856209e-10 4.74964981e-10 8.108676795e-11 7.011333891e-10 5.124292204e-10 5.371160973e-10 1.042781087e-09 4.101388666e-10 7.645372589e-10 1.123284411e-09 3.511734099e-10 1.111483456e-09 5.356309143e-10 3.249432596e-10 4.793868344e-10 5.674158317e-10 9.081727396e-10 5.239974433e-10 6.478276228e-10 7.25176797e-10 5.772428236e-10 7.095056066e-10 8.082681495e-10 6.234478811e-10 1.393240885e-09 1.017009272e-09 4.847521069e-10 4.043407366e-10 7.550973382e-10 1.294403565e-10 7.455351491e-10 9.875436236e-10 1.190378959e-09 5.881599087e-10 9.606573441e-10 9.542294993e-10 1.899233702e-09 1.05278189e-09 7.246669705e-10 1.009583626e-09 9.584070976e-10 1.349917401e-09 9.032511267e-10 4.44020255e-10 1.186932903e-09 5.716570256e-10 1.742689555e-09 9.236651716e-10 6.622008709e-10 5.566382898e-10 8.420545572e-10 9.569374762e-10 8.963891495e-10 4.13279561e-10 7.395826693e-10 6.296698035e-10 6.328426564e-10 4.411486559e-10 4.380039023e-10 7.882642232e-10 4.512631078e-10 1.09212877e-10 2.784236334e-10 5.108821816e-10 5.229722433e-10 8.994848207e-10 6.035987244e-10 5.338972115e-10 1.149916353e-09 1.311972526e-09 1.008971343e-09 1.90646924e-09 2.321240562e-09 1.213399142e-09 1.831623475e-09 1.154137576e-09 1.033490137e-09 1.649638728e-09 1.703000227e-09 1.868219816e-09 9.106599482e-10 1.514197529e-09 1.724436109e-09 1.982874774e-09 1.923103819e-09 1.533439327e-09 2.023905923e-09 1.457915138e-09 1.430779122e-09 1.910288044e-09 1.704817633e-09 2.133442584e-09 1.446009682e-09 1.010168074e-09 9.700710461e-10 1.862727805e-09 1.718817815e-09 2.204289023e-09 2.096560575e-09 1.392159402e-09 1.206054836e-09 7.836649742e-10 9.032942462e-10 1.145461577e-09 1.182738297e-09 1.533411318e-09 8.851868536e-10 1.845112196e-09 1.267984352e-09 2.196130022e-09 7.324016084e-10 1.875951296e-09 9.796491564e-10 8.867311476e-10 1.296959152e-09 1.043971002e-09 2.060758947e-09 1.422040011e-09 1.470174782e-09 1.431300924e-09 1.637013734e-09 1.25423836e-09 1.284019963e-09 1.54443249e-09 1.941767705e-09 1.143606941e-09 1.253568731e-09 1.116130919e-09 1.277710912e-09 2.450849938e-09 1.698568868e-09 1.030574668e-09 4.631218636e-10 4.413062203e-10 4.949266054e-10 5.155620028e-10 2.402188914e-10 3.170703549e-10 4.156901375e-10 2.126756558e-10 4.315081572e-10 2.669979783e-10 7.561792781e-10 4.553365248e-10 5.561077755e-10 6.096106471e-10 4.917974776e-10 1.002178129e-09 1.138033195e-09 1.064272707e-09 1.151377719e-09 1.207198731e-09 6.885492119e-10 1.296404651e-09 1.514956647e-09 9.516161884e-10 5.919814156e-10 6.172135535e-10 9.2828831e-10 6.045617287e-10 8.612565734e-10 9.725029953e-10 1.177222793e-09 1.111733105e-09 1.147126671e-09 1.804151505e-09 9.834397929e-10 9.069429079e-10 1.073024586e-09 3.786705964e-10 5.307639069e-10 7.170652008e-10 4.482688508e-10 8.450610663e-10 3.043725427e-10 1.123935519e-09 2.519879162e-10 5.81009692e-10 1.008226924e-09 4.454409189e-10 7.443862366e-10 6.183282457e-10 1.583383418e-09 8.421310395e-10 5.441479026e-10 5.374985391e-10 5.70072016e-10 1.066683609e-09 8.73294936e-10 6.013036537e-10 6.976549734e-10 9.357734157e-10 6.300466768e-10 2.901101426e-10 9.578578124e-10 3.781544457e-10 4.952579844e-10 4.677640838e-10 4.881665745e-10 3.085051383e-10 8.399470371e-10 7.906270208e-10 4.202649531e-10 4.298633221e-10 9.149900691e-10 4.655610586e-10 8.274819169e-10 6.914886591e-10 5.183944559e-10 3.080312949e-10 4.353033484e-10 9.621038582e-10 5.818144927e-10 6.64383462e-10 1.191600907e-09 9.615229195e-10 1.136433194e-09 8.989879193e-10 1.293948289e-09 6.541467468e-10 5.705678538e-10 3.747087397e-10 5.615136043e-10 7.793860341e-10 7.753207465e-10 3.715121842e-10 7.46951501e-10 1.760861724e-10 7.285118076e-10 7.365776228e-10 7.2876648e-10 5.305674915e-10 5.423765541e-10 5.571463419e-10 7.922475964e-10 7.114034082e-10 4.515342432e-10 3.111096993e-10 7.016727213e-10 1.413851526e-09 7.709251553e-10 5.253258947e-10 7.995223964e-10 2.132814464e-10 7.177088106e-10 6.989170774e-10 5.381803686e-10 9.72938025e-10 9.734196602e-10 7.553805351e-10 +4.720753448e-10 6.683880854e-10 7.97502653e-10 4.818985738e-10 1.43538466e-09 2.73288705e-10 1.063005957e-09 8.988812687e-10 3.074259382e-10 8.95249784e-10 6.485815866e-10 7.50432457e-10 5.973809965e-10 7.224795965e-10 4.936245165e-10 4.028535635e-10 8.61800085e-10 5.80761249e-10 7.643196185e-10 8.3667425e-10 4.175902551e-10 9.401048193e-10 4.774010855e-10 5.99976026e-10 7.416607183e-10 1.330032004e-10 7.714214429e-10 6.136300641e-10 4.418665339e-10 5.397834994e-10 8.381045596e-10 8.292775844e-10 6.450728054e-10 4.075990677e-10 1.092374957e-09 6.044029795e-10 5.785015705e-10 5.090080463e-10 4.741251216e-10 9.99848779e-10 4.248159964e-10 3.596471015e-10 8.634773761e-10 7.594453756e-10 2.560785305e-10 4.900033069e-10 5.977814887e-10 3.16030395e-10 1.037295323e-09 5.510937393e-10 4.618261254e-10 5.618783697e-10 6.909245488e-10 3.958294895e-10 4.931502082e-10 8.527658686e-10 5.935725722e-10 1.36154965e-09 5.176943763e-10 7.688871633e-10 2.834512047e-10 3.423338055e-10 4.703475071e-10 9.404204088e-10 6.06462792e-10 1.211018578e-09 5.743381171e-10 5.639411462e-10 3.981340396e-10 9.53307513e-10 5.165122075e-10 1.092899739e-09 6.571448846e-10 3.607750471e-10 8.750891639e-10 3.35676441e-10 4.641202489e-10 6.104368675e-10 4.0193476e-10 1.025934006e-09 6.32838784e-10 1.23067123e-09 1.116547462e-09 1.869740463e-09 9.543540278e-10 1.09470943e-09 1.036441548e-09 1.327195181e-09 8.992754752e-10 9.853595614e-10 9.293961033e-10 1.551684121e-09 1.268148974e-09 8.095824306e-10 6.289751699e-10 1.25463234e-09 1.232208013e-09 1.016503461e-09 7.969949334e-10 1.151364017e-09 7.173086661e-10 9.705399688e-10 5.144531147e-10 9.7191796e-10 7.666888552e-10 7.675112321e-10 4.957784575e-10 3.372726029e-10 8.056040296e-10 1.147191786e-10 2.67320889e-10 3.76573575e-10 5.736566474e-10 7.504696779e-10 9.399822675e-10 5.457703083e-10 3.684873858e-10 9.895976993e-10 1.621246077e-09 1.282199106e-09 1.819420317e-09 2.235963309e-09 9.699878315e-10 1.11204897e-09 1.64510284e-09 1.562103746e-09 9.180795895e-10 1.928892023e-09 1.571958228e-09 1.003572308e-09 1.067485045e-09 1.812796053e-09 1.709637642e-09 1.804202583e-09 1.506734687e-09 1.260743421e-09 8.217899497e-10 1.823462836e-09 9.604964845e-10 1.783482293e-09 1.317480276e-09 1.235591797e-09 1.268776478e-09 8.983783977e-10 2.009864999e-09 1.446687129e-09 2.138953909e-09 1.551123508e-09 1.00255222e-09 8.274451015e-10 1.15849369e-09 1.07748132e-09 9.456453238e-10 2.14858675e-09 2.022766056e-09 1.671510957e-09 1.275452117e-09 1.138595084e-09 1.76824065e-09 1.981294339e-09 2.547155768e-09 1.025622158e-09 7.653619489e-10 2.157114303e-09 1.183198338e-09 1.273639753e-09 9.936792456e-10 1.360809652e-09 1.181061805e-09 1.014733275e-09 1.70592495e-09 2.330367253e-09 1.152942633e-09 2.004606765e-09 1.220592353e-09 1.423871302e-09 2.183196944e-09 2.047921015e-09 1.754514041e-09 2.015770578e-09 8.960020254e-10 1.339972976e-09 6.621824772e-10 3.37272313e-10 4.550760979e-10 6.383059252e-10 5.225641382e-10 3.135468615e-10 3.063308198e-10 1.318045908e-10 3.003490603e-10 5.336646332e-10 4.547316865e-10 8.852776212e-10 5.714936444e-10 6.724729133e-10 8.603211153e-10 9.039748829e-10 6.820890874e-10 1.129076681e-09 9.024041462e-10 1.409692276e-09 1.290756939e-09 4.270581782e-10 9.124579366e-10 1.226653981e-09 1.397724395e-09 7.934999673e-10 9.320007231e-10 7.448160945e-10 1.040211725e-09 6.518077385e-10 1.175234226e-09 1.013931076e-09 1.445838414e-09 1.076139392e-09 1.042775221e-09 1.211285103e-09 6.029814372e-10 1.158676419e-09 2.58669524e-10 5.31824063e-10 3.668455016e-10 5.198163357e-10 4.870210504e-10 5.104869667e-10 1.105156079e-09 5.345752621e-10 1.315231091e-09 4.211889957e-10 7.203504293e-10 4.787139206e-10 5.921142714e-10 9.952822269e-10 9.437952569e-10 7.69704209e-10 8.507413675e-10 1.089803013e-09 5.421633328e-10 5.713657834e-10 7.653726355e-10 6.967616592e-10 1.099398957e-09 3.878452086e-10 7.362434309e-10 5.833390695e-10 3.618134283e-10 6.212262617e-10 5.944852364e-10 6.090906835e-10 3.367535241e-10 3.50766517e-10 6.314328503e-10 7.771341891e-10 5.376115269e-10 3.465163792e-10 6.016430598e-10 1.216280152e-09 8.750449915e-10 4.140763041e-10 7.945640131e-10 5.616374458e-10 6.477600331e-10 6.226414232e-10 1.240999009e-09 3.417786997e-10 8.569730613e-10 9.680541625e-10 4.256041478e-10 2.23815724e-10 8.17771532e-10 7.423837648e-10 8.948332062e-10 8.214261978e-10 5.83281949e-10 6.952000079e-10 7.893409591e-10 8.202669689e-10 4.902488886e-10 1.093732562e-09 6.907084209e-10 1.616436387e-09 6.57088125e-10 4.622226707e-10 8.087572643e-10 7.657587079e-10 4.025888653e-10 4.339609187e-10 5.97549514e-10 3.826349789e-10 7.763019248e-10 9.490479532e-10 4.877940665e-10 6.976775409e-10 6.668393724e-10 1.144484068e-09 6.630485585e-10 6.776478071e-10 6.063528007e-10 5.739558337e-10 +4.952301178e-10 7.548666195e-10 3.075536113e-10 3.299989476e-10 4.228615573e-10 1.04183939e-09 6.38924497e-10 7.725815593e-10 4.078211119e-10 5.665878612e-10 8.066062541e-10 4.774577391e-10 8.661131588e-10 8.86684425e-10 3.507213166e-10 7.881504247e-10 3.590733145e-10 5.86546413e-10 4.775706023e-10 3.807166219e-10 7.359979359e-10 1.064163288e-09 4.747875288e-10 1.257521386e-09 5.965047108e-10 3.74847735e-10 7.466215114e-10 1.607257705e-10 3.884202452e-10 5.833644162e-10 6.609686937e-10 2.823992993e-10 9.349192338e-10 9.986664934e-10 8.996812946e-10 7.212111044e-10 1.142792689e-09 6.990410443e-10 7.097612637e-10 6.505053006e-10 7.449973667e-10 4.8129708e-10 3.573031915e-10 7.053324493e-10 5.523495917e-10 4.142151131e-10 3.977711204e-10 4.68234216e-10 5.108443794e-10 2.260891617e-10 4.030495754e-10 5.804526151e-10 3.61509263e-10 4.254800134e-10 3.388803918e-10 1.140276898e-09 9.304477962e-10 7.762092968e-10 4.495752355e-10 1.013211251e-09 1.119224043e-09 5.573013251e-10 7.456168639e-10 7.145997041e-10 7.800763968e-10 3.723013415e-10 4.935124503e-10 6.615592859e-10 8.344452299e-10 3.905546599e-10 5.572192959e-10 8.867983758e-10 1.440798285e-10 7.725932993e-10 6.553867596e-10 2.661064326e-10 5.012218551e-10 3.348497268e-10 5.302163655e-10 1.02778073e-09 6.402929571e-10 1.328300668e-09 7.90213366e-10 1.17607502e-09 6.491441929e-10 1.051941639e-09 1.162883346e-09 1.751698625e-09 7.525543119e-10 6.304766849e-10 1.112497895e-09 6.328315781e-10 1.390058839e-09 1.016114065e-09 1.522409301e-09 1.083236641e-09 1.126069579e-09 1.120732503e-09 1.177897507e-09 1.166760524e-09 2.91391232e-10 8.324997985e-10 6.131530649e-10 7.444424488e-10 1.206971357e-09 6.798717473e-10 7.721884299e-10 8.375634312e-10 6.102972993e-10 1.610605848e-10 1.368923512e-10 3.444732318e-10 5.174283831e-10 4.615508866e-10 6.682780629e-10 6.180937842e-10 4.898928952e-10 1.635214467e-09 2.0569145e-09 1.395784806e-09 1.482049874e-09 9.809623933e-10 1.641653261e-09 2.570525308e-09 1.842677698e-09 1.377029701e-09 1.022573616e-09 1.621156029e-09 1.681399959e-09 9.712672404e-10 1.530000565e-09 1.756771056e-09 9.659160329e-10 1.145536966e-09 1.31151016e-09 1.880695289e-09 1.401530787e-09 9.047483788e-10 2.226463952e-09 1.127339524e-09 1.713661461e-09 1.394669968e-09 1.361492039e-09 1.399312834e-09 1.66928979e-09 2.406728619e-09 1.245007852e-09 2.467405405e-09 1.467655301e-09 2.567223644e-09 1.7463622e-09 2.150234679e-09 1.202165039e-09 2.320219483e-09 2.14325389e-09 1.967834231e-09 1.802251796e-09 2.066038065e-09 1.807275522e-09 1.783108783e-09 1.357242928e-09 1.11697665e-09 1.778193342e-09 1.515356172e-09 1.239755066e-09 9.856516495e-10 1.673218455e-09 7.745916347e-10 1.71139393e-09 2.346282981e-09 1.347070979e-09 9.095695086e-10 2.492316957e-09 1.07320156e-09 2.301111325e-09 1.179169776e-09 8.755305835e-10 1.395074976e-09 1.691502177e-09 1.0383372e-09 1.219802826e-09 1.072854332e-09 8.553217741e-10 6.481087686e-10 3.97247647e-10 7.123004815e-10 2.448664208e-10 3.49499193e-10 5.212408856e-10 2.262046186e-10 3.532774189e-10 6.235064322e-10 4.044519259e-10 5.263548483e-10 7.262737751e-10 1.267406388e-09 1.181838436e-09 6.933146395e-10 7.398021664e-10 1.112455233e-09 1.081811745e-09 4.895130223e-10 1.424056168e-09 9.647824213e-10 8.068061119e-10 6.946891484e-10 1.325233409e-09 1.234856445e-09 5.803017231e-10 9.999753371e-10 6.122734481e-10 1.108576855e-09 1.48664392e-09 1.096408387e-09 1.40016436e-09 1.451803351e-09 3.417794362e-10 7.697420274e-10 1.664277772e-09 6.383433597e-10 4.694468561e-10 4.656321685e-10 1.686635753e-10 7.305271023e-10 4.705747923e-10 3.953180906e-10 5.393210537e-10 7.775610082e-10 6.354632317e-10 7.583404122e-10 3.775785637e-10 4.530541441e-10 3.883556957e-10 6.978978907e-10 5.314805805e-10 6.288035614e-10 1.19551819e-09 2.608066522e-10 3.471008587e-10 7.203994817e-10 8.687124155e-10 8.685039055e-10 4.622432149e-10 1.169693675e-09 6.361632261e-10 3.666582432e-10 9.085014926e-10 2.520651992e-10 3.051042224e-10 5.127281856e-10 3.743721643e-10 7.092533109e-10 6.813273613e-10 5.306415108e-10 7.066116118e-10 3.866457488e-10 7.155370873e-10 5.261893463e-10 7.098584414e-10 9.248783637e-10 7.060843684e-10 6.01281937e-10 5.960310415e-10 6.050567166e-10 5.942504361e-10 8.411685157e-10 6.961480987e-10 5.970786381e-10 4.225406755e-10 7.884122667e-10 3.605810486e-10 6.52117472e-10 3.65720531e-10 2.548141787e-10 4.80219714e-10 7.809563662e-10 8.158046422e-10 9.266421307e-10 6.352559531e-10 3.856712389e-10 5.598165076e-10 5.211589311e-10 8.752550889e-10 5.930174682e-10 7.289046143e-10 3.78001853e-10 5.989363269e-10 4.674667879e-10 3.95816417e-10 9.550174884e-10 6.528559513e-10 4.765923776e-10 9.732012688e-10 4.309182365e-10 3.684481336e-10 7.025003881e-10 5.336688492e-10 4.410547658e-10 4.651789887e-10 2.508234677e-10 +3.934943845e-10 4.62673211e-10 7.763140255e-10 3.99849162e-10 5.481779306e-10 5.651280603e-10 3.261065445e-10 9.529575964e-10 1.059556665e-09 3.629006811e-10 4.859186577e-10 7.35166488e-10 6.276896453e-10 8.254360027e-10 9.196014273e-10 7.725194261e-10 5.165109278e-10 9.219809623e-10 1.094742972e-09 3.710089127e-10 5.879940669e-10 9.781820509e-10 7.356269766e-10 1.161398312e-09 6.898873204e-10 1.292393509e-09 1.165323531e-09 4.115532586e-10 4.690729946e-10 5.462013715e-10 4.008115986e-10 3.592479555e-10 6.019734331e-10 7.817741898e-10 1.045042044e-09 1.169818782e-09 8.45248471e-10 4.257737309e-10 7.245079364e-10 5.853469691e-10 4.72914672e-10 7.600923034e-10 8.122379634e-10 5.578837551e-10 6.216157087e-10 5.902259397e-10 6.167106768e-10 1.08675324e-09 2.943113571e-10 1.316471051e-10 2.450378663e-10 7.66754346e-10 8.290607561e-10 9.912546454e-10 4.391815188e-10 5.619843768e-10 5.137727458e-10 7.68745877e-10 8.125281449e-10 9.024309757e-10 4.905071133e-10 8.856983075e-10 6.438045751e-10 4.111936878e-10 1.140767575e-09 1.089805003e-09 1.186565313e-09 6.361053419e-10 8.796452351e-10 4.622918839e-10 4.953295723e-10 4.677785571e-10 3.792689471e-10 3.057485521e-10 1.127524123e-09 4.781403058e-10 1.034521599e-09 2.722763095e-10 4.557594038e-10 6.913447836e-10 2.113583077e-10 3.323528027e-10 7.996988798e-10 4.778294821e-10 1.07587303e-09 1.768755792e-09 1.197647863e-09 1.324696536e-09 7.214343535e-10 1.66225982e-09 6.355789705e-10 1.17384848e-09 6.089025276e-10 1.432021337e-09 1.273444906e-09 8.135242744e-10 9.675535916e-10 9.023174692e-10 1.331717212e-09 1.450234854e-09 1.137483212e-09 7.975974187e-10 9.871006848e-10 6.137049039e-10 7.811442747e-10 3.535969738e-10 8.038967279e-10 5.31040029e-10 2.294585104e-10 2.380056973e-10 3.699207516e-10 6.393958652e-10 3.745773913e-10 6.620426042e-10 8.66397462e-10 4.890225916e-10 1.4240271e-09 2.168794322e-09 1.603777739e-09 1.432828239e-09 2.463486048e-09 1.677654162e-09 2.225777343e-09 1.804422681e-09 1.252443524e-09 1.765009607e-09 1.430476881e-09 1.294795935e-09 1.604552523e-09 1.2431663e-09 2.142591491e-09 1.597231965e-09 2.677199486e-09 1.605785495e-09 1.536879735e-09 1.469883235e-09 1.493725194e-09 2.236650362e-09 1.680511084e-09 1.925312481e-09 2.208678118e-09 1.3348535e-09 1.670882081e-09 1.869079081e-09 1.739635887e-09 2.028608634e-09 2.360998269e-09 2.278820561e-09 1.645468898e-09 2.068417145e-09 2.645655035e-09 2.332832242e-09 1.695634235e-09 2.042398213e-09 2.294704853e-09 1.979619585e-09 1.931105066e-09 1.21798933e-09 2.060869305e-09 1.881765406e-09 2.308690619e-09 1.74203455e-09 2.580103055e-09 1.137120908e-09 1.773774575e-09 1.653519849e-09 1.992097262e-09 1.162458486e-09 1.966522036e-09 1.471329758e-09 2.411996849e-09 1.030816084e-09 8.806918593e-10 1.377538229e-09 1.656420119e-09 1.252394405e-09 2.647758239e-09 2.787698606e-09 1.530806868e-09 2.15701528e-09 2.101409157e-09 1.685262345e-09 1.034477301e-09 1.280744376e-09 6.398881443e-10 7.307086589e-10 5.010204843e-10 4.752232902e-10 2.665552685e-10 1.907657009e-10 4.329407241e-10 9.912253521e-11 5.081655477e-10 7.557015267e-10 5.20318046e-10 3.443277221e-10 8.211402986e-10 9.608909176e-10 1.696545365e-09 9.603843243e-10 1.271012414e-09 1.256356048e-09 1.057606359e-09 6.197114061e-10 1.09000017e-09 5.72405055e-10 9.260454096e-10 1.250460368e-09 7.342032645e-10 1.895039819e-09 1.042435443e-09 1.014728247e-09 1.04933103e-09 1.537970416e-09 1.540242707e-09 1.137452624e-09 1.667650804e-09 1.538746387e-09 9.599180503e-10 7.285033188e-10 3.439070813e-10 5.959778542e-10 3.491066804e-10 6.859327441e-10 5.638537645e-10 3.872452453e-10 1.111782334e-09 7.224351469e-10 8.538114281e-10 5.543101585e-10 2.769922856e-10 8.084967723e-10 1.362804619e-09 7.402864467e-10 6.513086591e-10 8.423811299e-10 9.359528045e-10 1.203245584e-09 4.059295993e-10 9.472074046e-10 6.283065315e-10 1.000315203e-09 1.156142356e-09 7.610661271e-10 2.894080687e-10 2.969504535e-10 6.653804231e-10 8.944065015e-10 1.249451229e-09 7.736723388e-10 4.401053754e-10 8.43903439e-10 6.976507144e-10 7.060702011e-10 4.809101849e-10 8.992485184e-10 7.792840617e-10 1.112498973e-09 5.274970001e-10 5.258448921e-10 9.138638223e-10 8.638054216e-10 6.76187329e-10 4.921496094e-10 4.361951138e-10 8.426360655e-10 5.863277048e-10 1.057366614e-09 6.201160557e-10 6.884939652e-10 6.096874217e-10 4.856084722e-10 1.178978178e-09 9.95720084e-10 1.61430611e-09 6.736628784e-10 4.227137739e-10 1.241624739e-09 8.469080851e-10 4.055808741e-10 7.702171966e-10 1.21635807e-09 7.328338392e-10 4.476463922e-10 7.526356122e-10 6.309123201e-10 5.512606544e-10 7.444138412e-10 6.046029849e-10 6.393331834e-10 3.565370514e-10 1.115474448e-09 4.963193808e-10 5.1529706e-10 3.620321313e-10 1.843718452e-10 3.913895778e-10 4.680194323e-10 4.949538051e-10 3.504896826e-10 +4.663225877e-10 4.359618789e-10 3.946445127e-10 3.911873232e-10 5.158855517e-10 5.909204141e-10 4.694725891e-10 3.803596462e-10 2.034926089e-10 7.791995539e-10 2.872439765e-10 7.31525129e-10 5.752619888e-10 3.856459725e-10 6.193761131e-10 6.239620335e-10 4.809310027e-10 5.936384331e-10 7.795097244e-10 6.009335065e-10 5.918137546e-10 2.980027755e-10 3.88237765e-10 4.735235239e-10 4.628351152e-10 5.21344239e-10 6.872649836e-10 2.960721112e-10 5.1206429e-10 5.520190657e-10 6.280155098e-10 3.178630138e-10 8.242067261e-10 1.014068498e-09 9.026872073e-10 5.109097741e-10 5.473224668e-10 8.533594395e-10 7.358051248e-10 7.155902254e-10 6.814455268e-10 9.813607043e-10 6.691214224e-10 5.434688499e-10 5.818211585e-10 1.875726241e-10 6.964168492e-10 7.557024316e-10 6.373241392e-10 6.159917174e-10 4.876598066e-10 2.825564971e-10 2.65491581e-10 7.437589031e-10 7.609610636e-10 9.453468948e-10 6.863404282e-10 1.264911874e-09 9.757622861e-10 4.357078559e-10 5.103253468e-10 6.218693619e-10 1.337350607e-09 1.030590157e-09 4.940330718e-10 8.045811634e-10 5.726162435e-10 7.128654129e-10 9.060264034e-10 7.910562163e-10 1.154469238e-09 7.454382947e-10 6.44621459e-10 6.684286219e-10 1.008752e-09 9.521850229e-10 3.313274871e-10 1.232428544e-09 4.847168145e-10 4.374598176e-10 1.21528773e-09 1.072673115e-09 8.441788021e-10 1.114746215e-09 1.331427847e-09 1.849434712e-09 9.682527311e-10 4.905467738e-10 9.296583633e-10 9.231753444e-10 9.626609405e-10 5.653008616e-10 1.088069434e-09 1.119129305e-09 8.05460561e-10 7.605234098e-10 1.145559738e-09 8.005697723e-10 1.276380978e-09 6.937460311e-10 8.554462933e-10 1.030688902e-09 1.160146389e-09 1.254336165e-09 8.071347584e-10 7.510410778e-10 3.458123913e-10 5.306313253e-10 3.936931985e-10 1.487857277e-10 1.872965735e-10 4.03672552e-10 6.31007689e-10 8.115742111e-10 5.478602672e-10 8.169997392e-10 1.405941845e-09 1.560099383e-09 1.988486598e-09 1.69255264e-09 1.392508022e-09 1.374403412e-09 1.968320196e-09 1.994081404e-09 1.76540845e-09 9.045105303e-10 1.221517465e-09 1.25702534e-09 1.112553345e-09 1.694502538e-09 1.304923894e-09 1.512643416e-09 9.683973816e-10 1.751331449e-09 1.282453788e-09 1.290981781e-09 2.19598855e-09 2.380563894e-09 1.744102725e-09 2.178369683e-09 2.406469923e-09 7.306353194e-10 2.790237577e-09 1.796087838e-09 2.138311669e-09 8.95145509e-10 1.533122204e-09 1.352167445e-09 2.224425962e-09 2.760906124e-09 2.271783388e-09 1.990690751e-09 2.092911383e-09 1.625650436e-09 1.758978201e-09 1.773872169e-09 1.998051521e-09 2.265353817e-09 1.998424702e-09 1.68743299e-09 1.380938609e-09 2.322173205e-09 1.730357423e-09 1.477818454e-09 2.185360996e-09 1.389736982e-09 2.184797442e-09 1.136552594e-09 1.031703077e-09 1.750924376e-09 1.8222864e-09 1.20585992e-09 1.016074076e-09 2.284669359e-09 1.845091887e-09 1.712358784e-09 1.188824728e-09 2.90818534e-09 7.160094974e-10 1.23059851e-09 1.690819674e-09 1.875451417e-09 8.55590876e-10 1.219659517e-09 1.964368677e-09 6.883792078e-10 3.666776165e-10 4.358938896e-10 2.412241168e-10 4.73255687e-10 1.694969556e-10 4.229917269e-10 3.138434173e-10 2.378487883e-10 6.505454036e-10 9.620869447e-10 5.543994236e-10 1.131658379e-09 7.456487281e-10 5.417372757e-10 8.144530638e-10 1.019580626e-09 1.11440722e-09 1.214165608e-09 6.246109e-10 6.566961532e-10 9.280828163e-10 1.172143229e-09 1.799098041e-09 1.197858065e-09 1.672749498e-09 1.104068367e-09 6.729187762e-10 2.650691272e-09 1.841667898e-09 9.432088174e-10 9.401918657e-10 7.816402618e-10 8.254529232e-10 7.581204946e-10 4.01195352e-10 1.116183669e-09 4.033925725e-10 3.76700401e-10 8.148068572e-10 2.995524573e-10 6.354642234e-10 1.01502306e-09 6.002503448e-10 5.852855553e-10 5.066742414e-10 1.109506575e-09 7.584267808e-10 4.836047905e-10 7.482152275e-10 6.146766459e-10 6.156664142e-10 7.17886518e-10 3.740732751e-10 8.496083686e-10 5.914127091e-10 7.410943088e-10 9.03030853e-10 4.905941917e-10 5.042064245e-10 6.82225164e-10 2.441005015e-10 6.199664234e-10 1.202920945e-09 6.951941234e-10 5.453569598e-10 4.954441262e-10 2.100706692e-10 8.338247636e-10 7.731420557e-10 5.778362254e-10 7.543894032e-10 8.009698503e-10 8.531240854e-10 1.271884627e-09 4.029999574e-10 5.287823959e-10 8.649478099e-10 3.403946097e-10 8.403329942e-10 5.942121573e-10 9.310392123e-10 2.58742974e-10 3.96537922e-10 7.772212228e-10 6.587722943e-10 3.28201557e-10 3.3672029e-10 3.251771898e-10 3.041105293e-10 5.685942368e-10 7.790206704e-10 1.325984617e-09 6.779637918e-10 8.772496969e-10 6.234205759e-10 5.284426281e-10 7.676442196e-10 5.29072674e-10 5.527378213e-10 3.277987312e-10 6.724487488e-10 1.201539303e-09 8.408077413e-10 5.331503176e-10 3.455677599e-10 5.505615892e-10 6.4748043e-10 3.4670725e-10 8.895524849e-10 5.510809207e-10 2.672019017e-10 4.040365083e-10 7.176958982e-10 2.532250559e-10 +3.86649978e-10 2.811171096e-10 1.963220912e-10 3.998606958e-10 4.162692018e-10 4.750614706e-10 1.269494628e-10 3.575533255e-10 5.624920993e-10 5.038433974e-10 4.170316705e-10 2.675102654e-10 4.080601482e-10 2.346784088e-10 4.407683685e-10 5.920613882e-10 3.890162761e-10 1.206745736e-09 5.731528224e-10 4.190944982e-10 6.381371479e-10 3.245116436e-10 3.372118852e-10 5.60261849e-10 1.018559449e-09 3.572731784e-10 4.103499927e-10 2.420107706e-10 7.383851196e-10 5.614694627e-10 6.525208945e-10 6.366624389e-10 7.666887854e-10 6.438602219e-10 8.157427443e-10 5.518264401e-10 7.905475768e-10 7.485646434e-10 4.515593358e-10 4.663455562e-10 1.107220727e-09 6.919592355e-10 9.445220551e-10 5.160340273e-10 6.74961687e-10 5.872207476e-10 7.312148615e-10 8.795688624e-10 7.078649766e-10 4.82527899e-10 5.21414139e-10 8.664851674e-10 4.633227737e-10 3.821085499e-10 4.830618434e-10 1.442239191e-09 6.649197958e-10 3.23846502e-10 3.773521883e-10 8.584289753e-10 6.16707201e-10 6.632183863e-10 8.52161694e-10 7.347234394e-10 7.839136303e-10 2.640613657e-10 8.561808615e-10 8.195989192e-10 8.87917994e-10 1.103574766e-09 8.78779461e-10 9.226668939e-10 6.800594385e-10 7.841872248e-10 2.694715695e-10 8.599815046e-10 7.013627982e-10 4.68810683e-10 2.446659617e-10 1.034215488e-09 8.908737683e-10 1.214767265e-09 7.034933416e-10 2.086705434e-09 1.939630855e-09 1.053978777e-09 1.304631465e-09 1.216630737e-09 1.548448749e-09 8.552580514e-10 1.1976355e-09 1.48457176e-09 1.077679617e-09 1.252954012e-09 1.178717637e-09 8.864981794e-10 8.466978491e-10 3.937487628e-10 1.006987222e-09 8.034091212e-10 7.358228111e-10 7.899891095e-10 5.807966736e-10 7.562174575e-10 1.011064027e-09 9.635033857e-10 6.265752123e-10 4.559876958e-10 1.879806957e-10 1.951982302e-10 3.609441766e-10 6.695699682e-10 7.691806305e-10 5.653279765e-10 1.602257993e-09 1.199354788e-09 1.451052851e-09 1.227526347e-09 2.38501992e-09 1.48442479e-09 2.19541901e-09 1.352977797e-09 1.647135888e-09 2.645679448e-09 1.535478353e-09 2.465116586e-09 2.576883542e-09 6.395574299e-10 1.318850606e-09 1.562179033e-09 1.340790104e-09 1.432711633e-09 1.890486434e-09 1.776360624e-09 1.221635114e-09 1.770413939e-09 1.918837627e-09 1.248278345e-09 1.528196485e-09 1.925954737e-09 2.763357637e-09 2.039340221e-09 1.399113085e-09 1.223741856e-09 2.095993676e-09 2.168438086e-09 2.190867072e-09 1.09968509e-09 1.720047982e-09 1.104439481e-09 2.036621226e-09 1.823946692e-09 1.631529872e-09 2.273244514e-09 1.964891502e-09 1.564469695e-09 2.328545731e-09 2.157393338e-09 2.737848714e-09 2.84239583e-09 1.854961879e-09 1.618494592e-09 2.212728976e-09 1.963374963e-09 2.525136196e-09 7.809121615e-10 1.522782946e-09 1.803638688e-09 1.920695745e-09 1.26205395e-09 2.64840254e-09 1.218756668e-09 1.144198069e-09 1.662803321e-09 1.819758046e-09 1.061691522e-09 1.951369473e-09 2.454230518e-09 1.477544682e-09 2.588039704e-09 1.48279062e-09 1.473658864e-09 2.522809405e-09 1.203838286e-09 1.57767058e-09 1.003096348e-09 1.131051397e-09 6.933519182e-10 5.090482953e-10 2.433170986e-10 3.23258609e-10 2.712042321e-10 2.972058418e-10 2.858580283e-10 6.848566236e-10 9.079261275e-10 7.559794023e-10 1.187447902e-09 1.365236968e-09 1.59222737e-09 8.21594077e-10 1.274717107e-09 1.26112352e-09 1.445053952e-09 1.442840651e-09 9.599510423e-10 1.088823269e-09 7.047411946e-10 1.194293503e-09 7.204009771e-10 1.573151344e-09 1.735621039e-09 1.538181337e-09 1.075756151e-09 1.393385187e-09 9.558556836e-10 1.429584035e-09 1.711217508e-09 1.301061941e-09 7.151340735e-10 6.77705781e-10 8.019032723e-10 5.756405025e-10 1.134231581e-09 3.424175838e-10 1.09601994e-09 3.41856765e-10 9.685282755e-10 5.595674879e-10 3.518233274e-10 1.131905052e-09 5.617401418e-10 6.259415036e-10 5.25048421e-10 3.909187924e-10 3.5184822e-10 3.848341797e-10 7.829817514e-10 1.295912977e-09 5.915745968e-10 7.358596105e-10 8.515279444e-10 8.249281031e-10 5.023121215e-10 3.242287629e-10 4.361219253e-10 7.703172913e-10 6.04306162e-10 7.504173262e-10 5.246554986e-10 7.691818118e-10 5.959676109e-10 2.502166443e-10 9.752451699e-10 8.765454452e-10 5.313777644e-10 4.071776034e-10 8.669737266e-10 6.362201286e-10 5.781769174e-10 6.270038147e-10 8.270644798e-10 6.988704292e-10 1.427723734e-10 1.233784901e-09 4.154561376e-10 3.720928831e-10 4.953604627e-10 4.279984842e-10 5.837981116e-10 5.510737163e-10 7.792358605e-10 1.044987835e-09 7.178378661e-10 4.484778125e-10 8.73924584e-10 2.28392553e-10 1.067044926e-09 4.122103588e-10 7.482869211e-10 4.49906621e-10 1.000760973e-09 6.485060998e-10 5.903804633e-10 7.250307576e-10 5.868057584e-10 5.099970347e-10 3.061048823e-10 6.129478216e-10 3.965929599e-10 3.219001215e-10 2.280693411e-10 4.425818823e-10 3.545114622e-10 8.686141575e-10 5.238611933e-10 1.57202267e-10 5.586382178e-10 3.603070804e-10 6.218478131e-10 +5.909749052e-10 3.815079715e-10 4.122842683e-10 4.045221246e-10 6.776245216e-10 3.606707002e-10 3.063458819e-10 1.229017014e-10 5.142932396e-10 7.021480881e-10 3.106230024e-10 5.675208334e-10 1.327349817e-10 3.384160999e-10 9.026177619e-10 5.586261881e-10 1.320025441e-09 1.008349164e-09 3.175631463e-10 6.207668686e-10 4.452124223e-10 5.53930673e-10 3.897436678e-10 5.850665078e-10 7.892907361e-10 7.200783265e-10 6.857491905e-10 9.774869954e-10 8.054445842e-10 5.214347021e-10 6.570473204e-10 8.137538005e-10 6.058530097e-10 6.679048403e-10 3.807006664e-10 4.690186323e-10 8.921695856e-10 6.041275193e-10 4.469759296e-10 6.056196193e-10 1.03518719e-09 7.886540716e-10 1.482781389e-09 4.493399373e-10 4.076269388e-10 2.310644963e-10 6.768258026e-10 5.229626436e-10 9.679710859e-10 6.103118726e-10 2.573564928e-10 4.342244225e-10 4.938001963e-10 6.366595199e-10 4.420434595e-10 9.510684933e-10 4.765866529e-10 1.280650925e-09 1.070930483e-09 1.234494801e-09 5.186160589e-10 7.380313502e-10 8.95265996e-10 5.618461177e-10 6.584861498e-10 6.419240806e-10 1.002488067e-09 6.405217958e-10 1.002985107e-09 4.446813579e-10 3.86095355e-10 5.767113381e-10 4.47966964e-10 9.623284973e-10 8.023383343e-10 7.354166863e-10 6.425573325e-10 5.476656728e-10 5.112664587e-10 8.217603457e-10 5.188624979e-10 9.380441622e-10 6.510008942e-10 1.106195629e-09 1.46171611e-09 1.365800557e-09 1.238777184e-09 1.124552835e-09 9.761087915e-10 1.006242033e-09 7.8382346e-10 1.597546429e-09 7.382769983e-10 1.396250694e-09 9.311904339e-10 1.14620988e-09 1.423434386e-09 4.60713816e-10 1.557169591e-09 1.025677781e-09 8.344169145e-10 1.38497159e-09 8.442336922e-10 1.222368672e-09 6.887666623e-10 6.917049721e-10 6.230346281e-10 1.842465901e-10 5.752817431e-10 3.728024583e-10 3.199978195e-10 6.200597563e-10 8.063883905e-10 1.487173088e-09 6.675395078e-10 1.027920624e-09 9.030152097e-10 1.717198242e-09 1.954989565e-09 1.46541305e-09 2.342470852e-09 2.332399942e-09 1.488012305e-09 9.544786941e-10 2.351045504e-09 1.234643921e-09 1.594136566e-09 1.52924218e-09 2.502554191e-09 1.633363378e-09 2.58377973e-09 6.620016698e-10 1.125874609e-09 2.742293171e-09 3.240961843e-09 1.139124188e-09 1.882869061e-09 2.191567155e-09 2.55365969e-09 2.904906721e-09 1.95556692e-09 1.881059186e-09 2.216728379e-09 2.062561364e-09 9.939622514e-10 1.272055141e-09 2.177639183e-09 1.268122624e-09 1.117688459e-09 2.809153296e-09 1.626446463e-09 2.201849855e-09 1.258669127e-09 1.481336238e-09 1.372672865e-09 2.172569752e-09 1.167252279e-09 2.246540148e-09 1.865131116e-09 2.427487084e-09 1.919066501e-09 2.31721635e-09 2.485292323e-09 2.751538599e-09 2.289223541e-09 1.144694948e-09 1.184872816e-09 1.211519103e-09 1.221891522e-09 1.706032388e-09 1.178619556e-09 1.860894628e-09 1.707136619e-09 1.275471141e-09 1.451626983e-09 1.624188628e-09 2.370642321e-09 1.15892468e-09 1.703663563e-09 2.040714493e-09 1.945929074e-09 1.170778928e-09 7.166450197e-10 1.284140932e-09 1.34550074e-09 1.17867656e-09 2.722773962e-10 6.996156287e-10 5.603999077e-10 4.549762358e-10 2.730251929e-10 3.848249516e-10 2.525878611e-10 1.53802314e-10 3.3762346e-10 3.985435051e-10 7.953928951e-10 7.074403883e-10 9.637959017e-10 6.067816149e-10 9.058704846e-10 1.07344378e-09 3.057202574e-10 1.358259004e-09 1.234253671e-09 1.237306503e-09 1.255431664e-09 7.250218863e-10 1.150747012e-09 1.222089609e-09 1.287666017e-09 1.63925648e-09 7.390994671e-10 5.953243359e-10 1.915491853e-09 1.727367789e-09 8.356580262e-10 7.812927055e-10 4.082169163e-10 1.018207381e-09 4.796676932e-10 2.531050172e-10 5.617336385e-10 7.601578363e-10 5.930115381e-10 7.390869047e-10 1.011850383e-09 3.216837104e-10 7.5437808e-10 6.65291165e-10 7.24891238e-10 6.369659673e-10 5.209691109e-10 9.350545317e-10 5.522780118e-10 6.22030393e-10 6.859552444e-10 7.091688851e-10 8.101469895e-10 6.276275164e-10 7.514288533e-10 6.675048246e-10 5.619935827e-10 9.12366706e-10 5.017842951e-10 6.747638607e-10 9.056334238e-10 5.302061353e-10 4.728238115e-10 2.9230247e-10 3.274926023e-10 1.001567937e-09 4.413419634e-10 3.621668964e-10 4.820048901e-10 8.530042704e-10 7.827697049e-10 7.782623346e-10 7.130066767e-10 4.2095721e-10 6.428056202e-10 3.4538916e-10 6.45036618e-10 7.275138737e-10 1.060157153e-09 5.688844826e-10 5.458762014e-10 3.291143482e-10 8.33287256e-10 7.24907994e-10 1.051739132e-09 6.107806612e-10 5.534080372e-10 9.446834873e-10 7.008552685e-10 5.412119927e-10 1.398096837e-09 5.772563339e-10 1.325029183e-09 7.527801564e-10 6.079092965e-10 7.719779646e-10 9.512511518e-10 1.203799069e-09 8.61668698e-10 5.873289429e-10 3.452392762e-10 3.698748124e-10 2.931024855e-10 4.772356673e-10 6.756727181e-10 2.078897787e-10 4.178818151e-10 6.114284516e-10 3.601851169e-10 2.187285232e-10 4.062474291e-10 4.337226817e-10 7.344671466e-10 2.641574991e-10 +7.790456143e-10 2.593539094e-10 8.216126313e-10 4.50113702e-10 1.988822086e-10 4.286341863e-10 2.31762395e-10 5.709501504e-10 4.661043413e-10 3.18121316e-10 8.400062677e-10 1.826608187e-10 3.762579339e-10 8.03558113e-10 7.491599629e-10 3.041154953e-10 3.579733262e-10 5.371857964e-10 3.479593675e-10 6.637591848e-10 1.120093462e-09 1.018887071e-09 1.008927563e-09 8.340193534e-10 9.763214091e-10 6.906088831e-10 8.005841857e-10 5.75573045e-10 6.338926535e-10 8.72635295e-10 4.47337266e-10 1.026581756e-09 7.945823878e-10 8.173687249e-10 7.130681297e-10 5.524099882e-10 4.444066036e-10 5.905577302e-10 8.099455073e-10 8.916341904e-10 3.092319664e-10 1.037368449e-09 7.014596757e-10 6.817108255e-10 6.759367656e-10 1.079174871e-09 9.735985712e-10 8.614917328e-10 9.961488317e-10 4.525291599e-10 6.994076501e-10 4.057547522e-10 9.967277673e-10 3.256137854e-10 9.111198055e-10 7.90771875e-10 6.733237795e-10 1.019891671e-09 1.24150952e-09 9.310839597e-10 6.109137963e-10 8.196330862e-10 1.072228995e-09 1.119264471e-09 1.021597781e-09 2.693976882e-10 8.082749681e-10 6.033095496e-10 1.10010215e-09 7.201180933e-10 7.130566744e-10 8.443627543e-10 1.076173331e-09 7.374007102e-10 8.965256144e-10 7.033119898e-10 9.088274762e-10 5.256778396e-10 5.053581315e-10 7.784725731e-10 8.565382126e-10 3.497292245e-10 6.552950158e-10 6.114005671e-10 1.775782313e-09 1.393331053e-09 1.453081345e-09 1.323845465e-09 1.016547597e-09 9.435842288e-10 1.174847528e-09 1.371159718e-09 1.016665672e-09 9.605642676e-10 9.191737974e-10 1.658471725e-09 1.115838952e-09 7.470242716e-10 7.031350834e-10 1.206967601e-09 1.468814529e-09 1.299141431e-09 1.326859471e-10 1.401264486e-09 4.332195542e-10 7.929721002e-10 2.206479011e-10 2.911453548e-10 1.572693005e-10 5.338382351e-10 4.241600832e-10 5.247345103e-10 2.448934736e-10 2.146680942e-09 6.523291851e-10 1.203746809e-09 1.252418194e-09 2.114870207e-09 1.871513179e-09 2.748039005e-09 1.87483975e-09 1.563672958e-09 2.035419827e-09 1.939058845e-09 7.268823598e-10 1.325474156e-09 1.254074296e-09 1.867058828e-09 1.556294203e-09 1.384210999e-09 1.710676567e-09 1.877863005e-09 2.27028998e-09 2.439593111e-09 2.440976248e-09 1.960388527e-09 1.537329899e-09 2.455765248e-09 3.047313046e-09 1.522134392e-09 2.485443114e-09 1.660103356e-09 1.700348945e-09 2.094821216e-09 2.570054664e-09 1.53697993e-09 2.10277346e-09 2.277667686e-09 9.479697207e-10 1.625547187e-09 9.944961842e-10 1.626260123e-09 1.119780807e-09 1.313879079e-09 1.166168938e-09 1.056320499e-09 1.451386516e-09 1.671348456e-09 2.199932755e-09 1.734291268e-09 2.828172172e-09 3.701776164e-09 2.176315879e-09 2.01569256e-09 1.690072319e-09 1.669626269e-09 1.92260633e-09 1.086516648e-09 1.158508994e-09 1.229715857e-09 1.034538407e-09 1.210277465e-09 7.416845369e-10 1.181983804e-09 5.790695792e-10 1.546413922e-09 1.170024108e-09 3.082542372e-09 1.462243491e-09 1.828976234e-09 1.427530757e-09 2.397091676e-09 1.666769083e-09 1.886281961e-09 1.457498257e-09 2.062770659e-09 3.191332733e-10 4.220261287e-10 7.920438841e-10 8.428847315e-10 4.500846907e-10 3.101578701e-10 4.908031131e-10 2.185999642e-10 6.494713192e-10 8.033026828e-10 8.476538094e-10 6.980698118e-10 1.213416291e-09 9.395730633e-10 8.279077447e-10 9.700856268e-10 1.004185318e-09 4.730679528e-10 5.762009585e-10 1.265300227e-09 6.525237931e-10 1.510384738e-09 1.068982874e-09 1.403564533e-09 1.341718826e-09 1.018724528e-09 1.228883621e-09 1.73244494e-09 1.749155216e-09 1.497155644e-09 1.40968099e-09 1.27022019e-09 9.626221207e-10 1.144857589e-09 2.24370601e-10 6.082668128e-10 5.621008952e-10 4.318884055e-10 2.317011777e-10 1.404851855e-09 1.001882917e-09 6.596398875e-10 9.572195996e-10 3.121853863e-10 8.219327359e-10 1.347931157e-09 8.641164476e-10 5.413990837e-10 9.883511524e-10 4.544826394e-10 7.986264787e-10 9.46426911e-10 7.020801127e-10 1.244859423e-09 6.818736871e-10 8.729825176e-10 7.440220758e-10 6.565454009e-10 5.940140784e-10 8.854527383e-10 4.856102657e-10 8.646499325e-10 6.069468445e-10 5.565525017e-10 1.082992847e-09 6.804916598e-10 7.779044888e-10 7.65484786e-10 5.221745017e-10 4.137589869e-10 1.074297823e-09 9.019426534e-10 8.175646852e-10 6.666217422e-10 6.064552435e-10 1.166165903e-09 1.194251794e-09 5.122549816e-10 4.743510774e-10 5.549088094e-10 4.698965962e-10 6.432315074e-10 5.525226696e-10 5.023220392e-10 7.979392667e-10 4.954508596e-10 9.546695141e-10 4.349943967e-10 5.180943186e-10 6.269047625e-10 1.032552764e-09 7.399454936e-10 3.769685582e-10 5.872216821e-10 2.545729566e-10 6.510604468e-10 5.691990203e-10 7.815314835e-10 5.908886658e-10 2.4032251e-10 4.922209737e-10 1.303590037e-09 1.833519936e-10 3.925614534e-10 6.350318051e-10 2.27505906e-10 2.145355709e-10 5.341351803e-10 1.017791341e-10 3.763968097e-10 4.694234173e-10 4.712315571e-10 3.748269124e-10 7.193879196e-10 +2.374834707e-10 2.061076446e-10 2.688710747e-10 1.897682182e-10 5.971707578e-10 2.942352774e-10 1.124339478e-10 4.754905136e-10 4.532412424e-10 3.716445156e-10 4.413257414e-10 3.770531512e-10 3.236735022e-10 9.763859918e-10 4.003784285e-10 5.011396278e-10 3.710293179e-10 4.891639933e-10 4.486605169e-10 7.25831575e-10 5.956118526e-10 8.148928839e-10 9.707322293e-10 8.278690693e-10 6.676255303e-10 6.31315151e-10 4.5529952e-10 4.213580845e-10 4.778573319e-10 2.792775121e-10 9.115269687e-10 9.27433401e-10 7.934527865e-10 9.919081934e-10 8.327076778e-10 8.497808676e-10 8.001105682e-10 8.078384261e-10 5.288604381e-10 7.870353747e-10 7.086170258e-10 8.374199512e-10 5.657287066e-10 8.836596369e-10 6.979550124e-10 5.780628309e-10 6.0761685e-10 8.688418813e-10 6.801923475e-10 3.144321548e-10 1.890119267e-10 5.616066039e-10 5.162847147e-10 2.466152677e-10 3.524078866e-10 3.650906387e-10 3.414024298e-10 7.334563065e-10 9.9175565e-10 9.080973551e-10 1.124715205e-09 8.266126754e-10 8.998307514e-10 6.452055283e-10 6.423939497e-10 7.825693718e-10 9.626566837e-10 7.607700089e-10 1.382043675e-09 5.540939709e-10 6.908945368e-10 6.139101183e-10 8.840011822e-10 1.112534664e-09 3.908069845e-10 4.891727544e-10 5.723840128e-10 6.965719281e-10 1.945498002e-10 9.910509677e-10 8.453843429e-10 5.736842543e-10 1.431179763e-09 1.332382227e-09 2.12603837e-09 1.718197599e-09 1.378006514e-09 1.393729936e-09 1.604986472e-09 8.849828012e-10 1.131092935e-09 1.016849466e-09 6.172209403e-10 1.157097872e-09 7.299739888e-10 1.638068324e-09 1.423460043e-09 7.126623934e-10 9.974832664e-10 1.157258109e-09 8.003205119e-10 1.364416335e-09 1.156826692e-09 5.771511104e-10 4.634302018e-10 5.579162104e-10 2.125657741e-10 2.751246952e-10 2.631116489e-10 2.617258925e-10 4.519583633e-10 3.371696822e-10 6.128340397e-10 1.142192414e-09 2.051353693e-09 1.249237219e-09 1.437503936e-09 1.667316416e-09 2.113442034e-09 1.939263162e-09 1.968980431e-09 1.221177536e-09 1.177238458e-09 1.345773005e-09 9.563067157e-10 1.718338878e-09 3.636974439e-09 2.043654321e-09 1.625468534e-09 1.958398224e-09 2.116882015e-09 1.544959627e-09 2.49216991e-09 1.815319173e-09 3.527496562e-09 2.460291604e-09 2.031957434e-09 3.29712964e-09 2.402534013e-09 1.834976538e-09 2.041781132e-09 1.460857268e-09 1.614452714e-09 9.821809965e-10 8.64885848e-10 1.256695471e-09 1.447854043e-09 1.197045328e-09 1.257172394e-09 1.29886155e-09 1.850335943e-09 9.934314506e-10 1.352490876e-09 8.601789464e-10 5.610943589e-10 6.421710653e-10 1.149770765e-09 2.160574942e-09 2.181626771e-09 2.185843011e-09 2.308151051e-09 2.029238618e-09 1.720784698e-09 2.800638516e-09 2.446920538e-09 2.356042818e-09 3.682393111e-09 1.426488363e-09 1.8234387e-09 1.088005696e-09 1.780324828e-09 2.597974717e-09 1.742615592e-09 1.72725942e-09 1.906863115e-09 1.768211117e-09 2.098133773e-09 1.019527327e-09 9.641786482e-10 2.289053873e-09 1.141894299e-09 1.431990133e-09 1.408066997e-09 1.424586153e-09 1.757862844e-09 2.106355035e-09 1.311522305e-09 7.856150032e-10 4.185199407e-10 8.343848206e-10 6.751815689e-10 4.949595135e-10 8.315527123e-10 3.311993366e-10 9.981731497e-10 4.127541038e-10 8.692025499e-10 1.214767019e-09 6.871623098e-10 6.458375975e-10 7.114387206e-10 1.125773834e-09 1.356125335e-09 5.596848138e-10 1.124523259e-09 6.425171661e-10 9.891053132e-10 9.53446933e-10 9.484139838e-10 1.838355884e-09 8.606973349e-10 8.805656091e-10 1.695617418e-09 1.441449763e-09 1.560106754e-09 1.384185774e-09 1.242181421e-09 1.22785905e-09 8.525808134e-10 1.005462795e-09 6.891366614e-10 4.051556846e-10 4.575313049e-10 5.643707319e-10 9.33467354e-10 6.679225088e-10 7.4755282e-10 7.124828385e-10 9.587292097e-10 9.0401185e-10 1.0591867e-09 1.109305526e-09 1.266978097e-09 7.617413167e-10 3.629960087e-10 7.121287339e-10 6.123767296e-10 8.799123777e-10 7.417277923e-10 7.348487143e-10 9.95393402e-10 6.193086615e-10 6.531358015e-10 1.003685597e-09 7.148655902e-10 2.110826017e-10 8.286260363e-10 4.169594175e-10 3.98552314e-10 8.863778183e-10 1.109759677e-09 1.249613605e-09 3.856952227e-10 8.458777269e-10 4.450034705e-10 1.375549749e-09 5.204189819e-10 5.368315653e-10 6.867496405e-10 4.203042059e-10 8.204464083e-10 5.094083936e-10 6.105146833e-10 3.369447475e-10 6.189045522e-10 3.712056589e-10 6.957144383e-10 7.405980317e-10 1.164701147e-09 6.124519851e-10 1.232000285e-09 8.623059507e-10 7.403981755e-10 4.880948402e-10 1.174179333e-09 6.641615512e-10 1.081911726e-09 9.357276851e-10 4.403512309e-10 6.364886715e-10 3.616581172e-10 3.634938927e-10 6.800315105e-10 1.881433623e-10 5.241943329e-10 4.706843082e-10 4.981199262e-10 1.149904977e-10 4.38968292e-10 2.819896394e-10 7.582988853e-10 6.971300569e-10 4.742005412e-10 4.471566312e-10 3.177977654e-10 5.228255936e-10 2.568024468e-10 1.83340268e-10 6.032454543e-10 1.338755368e-10 +3.667457489e-10 3.419960031e-10 3.738296435e-10 2.778446355e-10 1.700128088e-10 4.677547972e-10 5.459554877e-10 3.018286209e-10 4.695459728e-10 1.721520722e-10 5.584222971e-10 4.500275967e-10 3.471064902e-10 4.192495037e-10 6.268544968e-10 2.833409842e-10 6.191042257e-10 4.947143095e-10 1.376221153e-10 3.562476296e-10 7.528397355e-10 4.129786451e-10 8.038904954e-10 4.816887348e-10 1.07064193e-09 1.417168964e-09 6.382530014e-10 4.716849667e-10 3.802827206e-10 8.155233158e-10 7.00010778e-10 5.27606473e-10 8.88638361e-10 7.666269845e-10 6.970373574e-10 5.232455717e-10 9.147722836e-10 7.131129955e-10 8.265892012e-10 1.175530337e-09 6.252334575e-10 1.596033301e-09 8.69857524e-10 1.060036303e-09 1.211391891e-09 4.274243226e-10 6.763059536e-10 7.691497458e-10 5.091400936e-10 2.649725803e-10 4.953964402e-10 6.532464223e-10 5.697659525e-10 6.975391857e-10 9.744319975e-10 1.01411206e-09 3.148594238e-10 7.804783139e-10 4.061782743e-10 1.439467313e-09 7.92212679e-10 9.380740067e-10 9.068991168e-10 8.233308181e-10 9.70516196e-10 5.52005318e-10 1.077903163e-09 7.364627853e-10 8.308619704e-10 9.87405035e-10 4.402335469e-10 7.330999254e-10 1.004313754e-09 5.433051632e-10 6.50827133e-10 3.248418514e-10 5.410385344e-10 7.815330626e-10 7.636294036e-10 4.454545208e-10 7.198835858e-10 4.160461372e-10 8.537251746e-10 7.275146283e-10 1.58843263e-09 1.199199696e-09 1.823878345e-09 8.907825819e-10 1.310552455e-09 8.697857255e-10 6.947113717e-10 1.048323283e-09 5.163317481e-10 1.115468557e-09 6.916480905e-10 7.889266654e-10 1.645932938e-09 7.857286013e-10 1.233747841e-09 4.22541046e-10 8.359485842e-10 1.027230917e-09 7.986570571e-10 7.475591946e-10 7.63378603e-10 4.452374161e-10 1.645649536e-10 4.542027001e-10 6.441583419e-11 2.088390099e-10 6.271279481e-10 5.62086669e-10 1.052119827e-09 1.856768586e-09 1.478853558e-09 8.672902981e-10 2.334976094e-09 2.115852709e-09 2.290616276e-09 1.577119539e-09 3.393903381e-09 8.673178314e-10 1.672089836e-09 1.237195781e-09 1.63961079e-09 1.726921276e-09 1.739206523e-09 1.667489714e-09 1.273704983e-09 2.368149279e-09 1.5903205e-09 2.988676401e-09 2.684560495e-09 3.192504869e-09 1.805064347e-09 2.343352274e-09 2.394107783e-09 1.773429768e-09 9.748274812e-10 1.76037209e-09 1.561364218e-09 8.08712307e-10 1.131787111e-09 9.795806098e-10 1.130490237e-09 1.857556441e-09 1.076577545e-09 1.597470003e-09 7.13453086e-10 8.039781776e-10 1.606246359e-09 1.587260706e-09 1.595898077e-09 1.700953752e-09 1.573829079e-09 1.520460157e-09 1.66355224e-09 1.133214236e-09 7.502138057e-10 2.147645872e-09 1.407249703e-09 1.368493479e-09 1.751599677e-09 2.523595558e-09 2.259697616e-09 2.558950796e-09 2.38753988e-09 2.923927239e-09 1.51520564e-09 2.940859772e-09 1.620002914e-09 1.597876489e-09 1.15691082e-09 1.323877894e-09 1.390549436e-09 1.850205508e-09 1.230373011e-09 1.247628779e-09 1.802427193e-09 1.818753713e-09 1.733673073e-09 1.832633062e-09 1.928075935e-09 1.290860008e-09 1.853627936e-09 2.093966397e-09 2.626905671e-09 1.025665436e-09 1.003569048e-09 6.035748784e-10 5.621323715e-10 3.964909913e-10 3.42951378e-10 6.174767631e-10 7.272137765e-10 5.260163606e-10 1.025187824e-09 8.912225606e-10 7.36534161e-10 7.613806331e-10 9.584392217e-10 1.450291491e-09 1.43272712e-09 5.479305557e-10 1.458057056e-09 6.896578024e-10 8.296368406e-10 1.364533123e-09 1.242634677e-09 1.114424378e-09 1.258482402e-09 8.604034174e-10 1.142228521e-09 1.138622716e-09 1.545789212e-09 1.674564146e-09 2.244563595e-09 3.884159312e-10 1.119023179e-09 1.244578638e-09 4.234363809e-10 8.018180228e-10 8.739825706e-10 8.15714587e-10 4.137591704e-10 9.248877716e-10 3.971356994e-10 2.601655481e-10 4.137473334e-10 1.291346474e-09 8.533630461e-10 8.467224629e-10 7.794385035e-10 5.696034199e-10 7.526638349e-10 6.490171267e-10 1.434208017e-09 7.444575438e-10 8.45145745e-10 7.529619554e-10 1.09868595e-09 5.829831233e-10 8.609568867e-10 4.022397047e-10 4.215046885e-10 8.701767653e-10 2.424147859e-10 3.213133468e-10 6.651269126e-10 1.468704741e-09 7.344032285e-10 9.434049357e-10 6.484747005e-10 7.436674122e-10 4.505153595e-10 6.386242748e-10 8.186078067e-10 9.486782073e-10 7.580308835e-10 8.096103889e-10 6.147282626e-10 7.584516737e-10 8.13509634e-10 3.452670247e-10 5.142418393e-10 1.17716848e-10 6.778108883e-10 4.783484526e-10 4.734028584e-10 7.632298912e-10 8.337085527e-10 2.499475237e-10 8.009291348e-10 1.053842297e-09 7.460680594e-10 8.844055781e-10 1.548121686e-09 8.383105725e-10 5.860888126e-10 6.779971339e-10 5.686147761e-10 2.637572889e-10 3.496550028e-10 4.697920303e-10 3.858377703e-10 7.599966784e-10 3.944284972e-10 4.13265252e-10 6.418172895e-10 5.805981573e-10 1.483182049e-10 2.772908041e-10 3.041573121e-10 5.199179948e-10 3.774746237e-10 7.378992517e-10 6.173421303e-10 2.455388286e-10 3.233250979e-10 1.506211426e-10 +4.265772593e-10 1.44060189e-10 3.529575304e-10 2.446758923e-10 5.394970663e-10 2.697338684e-10 1.208370574e-10 4.55363303e-10 2.086227468e-10 1.81439949e-10 3.88425297e-10 5.03038295e-10 4.214819107e-10 3.105674148e-10 6.369945543e-10 8.727776746e-10 3.554241583e-10 5.277496742e-10 2.168857554e-10 5.996487838e-10 3.985902598e-10 6.537911273e-10 8.845500239e-10 8.294274242e-10 3.382160147e-10 1.145004462e-09 7.372294833e-10 1.097311287e-09 1.274751789e-09 6.092358523e-10 6.681867153e-10 6.368696134e-10 7.425676166e-10 8.532356456e-10 2.434859356e-10 1.178850975e-09 3.528122173e-10 7.812937582e-10 5.09329245e-10 5.633053624e-10 1.06393178e-09 1.023302358e-09 9.012421152e-10 9.714047114e-10 1.72262282e-09 9.312426573e-10 7.821866156e-10 8.321501212e-10 7.44653178e-10 3.781319452e-10 2.84718301e-10 5.648096971e-10 8.227941009e-10 5.572158025e-10 5.797270871e-10 8.822827554e-10 9.080203061e-10 5.78561162e-10 8.663563353e-10 8.363817559e-10 8.071903193e-10 7.194237361e-10 7.992950287e-10 9.315905073e-10 5.850478209e-10 1.111311096e-09 6.753241157e-10 1.031220538e-09 7.810221851e-10 9.803572969e-10 5.576410445e-10 4.881033315e-10 6.054192056e-10 6.07057177e-10 3.730108687e-10 1.018885856e-09 6.8460243e-10 1.131145363e-09 4.027842262e-10 9.815884533e-10 1.164605808e-09 1.071957325e-09 9.040332487e-10 1.060184901e-09 1.219442427e-09 1.678341827e-09 2.029654276e-09 1.696251865e-09 1.39973275e-09 1.084591409e-09 1.473325311e-09 9.68019972e-10 8.330219817e-10 1.098834563e-09 1.341456879e-09 1.506537484e-09 1.22585676e-09 9.422571352e-10 8.672853071e-10 8.152128352e-10 8.590894919e-10 8.634533596e-10 7.158593192e-10 7.24571435e-10 4.048864233e-10 3.455375977e-10 1.540103536e-10 3.307413642e-10 5.984965566e-10 5.556873995e-10 3.583631356e-10 3.310255032e-10 2.484805145e-09 2.617488241e-09 1.337220721e-09 1.437888487e-09 2.711578654e-09 1.973729402e-09 1.166579385e-09 9.566456776e-10 1.320941162e-09 1.360550031e-09 2.138242304e-09 9.629626088e-10 2.030090588e-09 1.61568412e-09 1.196413969e-09 2.27555597e-09 2.104137185e-09 2.022385031e-09 3.283486725e-09 2.602532105e-09 2.667482717e-09 1.780902204e-09 2.093776821e-09 1.487628967e-09 9.586704193e-10 7.37968833e-10 1.801972681e-09 1.073680745e-09 1.83023472e-09 1.589615511e-09 1.597737423e-09 1.029816047e-09 1.266103775e-09 1.751522333e-09 1.509322934e-09 8.096916581e-10 1.482642619e-09 1.81111587e-09 1.586776533e-09 1.213082068e-09 1.247161066e-09 9.310988368e-10 9.657560579e-10 1.532514118e-09 1.342308275e-09 1.703081871e-09 6.844768252e-10 2.040750555e-09 5.25759688e-10 1.160065914e-09 1.643253774e-09 7.794745408e-10 1.67513673e-09 2.116706216e-09 2.956530802e-09 2.740765754e-09 1.649245001e-09 1.711292248e-09 1.832901939e-09 2.886703393e-09 2.18998615e-09 1.327942965e-09 1.94127568e-09 1.863090929e-09 1.426215044e-09 2.327548479e-09 1.324554651e-09 1.266888364e-09 2.071879007e-09 1.803377117e-09 1.424989381e-09 2.727003578e-09 2.484603157e-09 2.792590765e-09 1.229971354e-09 2.580813875e-09 6.241199111e-10 7.618343597e-10 6.216938858e-10 4.340454815e-10 2.461024758e-10 1.123649499e-10 2.558186674e-10 5.646933491e-10 3.470997349e-10 1.067235211e-09 1.09988228e-09 5.710496081e-10 1.127025834e-09 1.312060868e-09 9.34091903e-10 1.35565785e-09 7.162275976e-10 1.054591561e-09 7.909178662e-10 8.237663185e-10 6.159801031e-10 1.243725209e-09 1.980334806e-09 1.17004847e-09 1.202814651e-09 1.36730742e-09 1.580566409e-09 1.608038678e-09 1.229634034e-09 1.491891384e-09 1.408632452e-09 3.897061034e-10 9.385789365e-10 5.870727517e-10 8.514514068e-10 1.446121933e-09 8.204531262e-10 5.869657343e-10 7.560560725e-10 8.825987141e-10 4.129181274e-10 7.594267943e-10 7.370045605e-10 7.81357209e-10 9.777889523e-10 8.959691142e-10 1.231503002e-09 9.29625374e-10 6.735961084e-10 8.991402388e-10 5.430044023e-10 6.965142788e-10 8.484091916e-10 7.452832386e-10 6.557804538e-10 1.374954376e-10 4.575225706e-10 3.23481554e-10 4.14600292e-10 8.048543834e-10 7.953223409e-10 8.733205074e-10 4.200068521e-10 8.078235095e-10 6.098909867e-10 1.015284198e-09 1.126882741e-09 7.126807675e-10 5.805377126e-10 1.284080198e-09 6.270732483e-10 5.968090374e-10 1.087338029e-09 7.979555559e-10 8.461258351e-10 4.494516636e-10 9.528545874e-10 7.607734893e-10 1.792041403e-10 7.654023843e-10 6.879076319e-10 4.449381418e-10 7.06476356e-10 6.392399628e-10 8.486574044e-10 8.709987291e-10 7.609629627e-10 8.661000931e-10 4.006590136e-10 6.292264769e-10 1.016779391e-09 4.685569304e-10 5.735956427e-10 4.312705143e-10 6.833890043e-10 1.124596768e-10 2.522389571e-10 4.438745142e-10 4.039372331e-10 6.654450852e-10 2.201478216e-10 2.868375646e-10 6.455049671e-10 9.556625953e-11 4.632584141e-10 2.337024654e-10 2.815932452e-10 5.286006851e-10 2.003839196e-10 5.478048422e-10 2.097777619e-10 3.09293953e-10 +4.524601147e-10 2.29595191e-10 4.481892722e-10 3.815762197e-10 2.19760369e-10 3.962273003e-11 3.395835171e-10 2.536861205e-10 2.030055781e-10 3.143513263e-10 8.586095895e-10 4.187126069e-10 5.06333753e-10 3.538207561e-10 4.505759639e-10 5.75438466e-10 4.864548026e-10 4.962191671e-10 3.451800615e-10 5.620052512e-10 5.983946807e-10 2.928882197e-10 4.530095563e-10 1.176267167e-09 2.404982881e-10 1.117830814e-09 8.358580396e-10 5.592452643e-10 7.336356669e-10 7.09939298e-10 4.370011378e-10 8.727004512e-10 1.001730282e-09 6.753920705e-10 6.625541374e-10 5.745341676e-10 1.030732211e-09 5.205295243e-10 7.271621851e-10 9.447300248e-10 8.155761191e-10 6.093655667e-10 8.367406138e-10 5.812985849e-10 8.844287636e-10 5.517110845e-10 6.096556635e-10 1.084421099e-09 1.154374347e-09 1.231350161e-09 8.66124661e-10 7.162046875e-10 5.982317041e-10 4.145731734e-10 8.51179355e-10 2.303354767e-10 3.193091994e-10 1.105302475e-09 6.426178774e-10 4.111198761e-10 9.436008586e-10 5.683830108e-10 9.336336922e-10 1.029279413e-09 5.928761046e-10 8.421960801e-10 9.141328688e-10 7.166439999e-10 6.164166516e-10 7.497452663e-10 4.239348602e-10 8.278257663e-10 8.231755338e-10 5.275025719e-10 8.167257282e-10 2.821844329e-10 1.054080167e-09 8.908938934e-10 7.994028107e-10 6.844197093e-10 5.799277962e-10 1.051108849e-09 1.851106058e-09 1.369155199e-09 1.756940826e-09 1.066216782e-09 1.098106409e-09 2.218729682e-09 1.721234413e-09 1.478726044e-09 1.359444565e-09 6.962039441e-10 6.325581684e-10 1.252627935e-09 7.161002351e-10 1.249780431e-09 4.893356838e-10 1.210466544e-09 8.070000245e-10 9.736595915e-10 1.062971071e-09 1.032419316e-09 1.03572105e-09 7.57526382e-10 2.340889382e-10 4.31340699e-10 8.458670577e-11 9.9869653e-10 5.30999879e-10 6.966439499e-10 6.923408895e-10 2.080136184e-09 1.197842544e-09 3.578401529e-09 1.910780546e-09 2.472787062e-09 1.745933867e-09 1.00570444e-09 1.421668404e-09 1.260916367e-09 9.333559683e-10 3.542011038e-09 1.427814784e-09 2.189831809e-09 1.986351618e-09 1.241155522e-09 2.604064189e-09 3.14274326e-09 1.970025602e-09 7.6130695e-10 3.096664467e-09 2.087369175e-09 1.550194274e-09 2.207661477e-09 1.688664926e-09 1.421419093e-09 1.458420676e-09 1.246819132e-09 2.166064338e-09 1.282439995e-09 1.543356389e-09 1.505370247e-09 7.37162679e-10 1.09096855e-09 1.978909934e-09 1.772897746e-09 1.644282096e-09 1.037818702e-09 1.051392815e-09 9.4259679e-10 1.536064948e-09 1.074562703e-09 9.54123327e-10 1.99740888e-09 1.004951221e-09 8.289755317e-10 1.218235668e-09 9.973020016e-10 1.827941121e-09 1.299878309e-09 1.604607174e-09 1.443141218e-09 1.805487502e-09 1.560399759e-09 9.688760121e-10 1.415939201e-09 1.498812082e-09 3.141929604e-09 1.932109384e-09 2.717924165e-09 2.722162566e-09 2.148694355e-09 1.000292309e-09 2.171824026e-09 1.633539368e-09 1.130305734e-09 1.463786874e-09 1.07857247e-09 1.516915509e-09 2.411569385e-09 1.763872776e-09 1.758677759e-09 1.764599039e-09 2.359833697e-09 1.906693092e-09 1.973400817e-09 1.405374742e-09 2.142478391e-09 3.655937893e-10 5.387348977e-10 3.203668915e-10 9.629290836e-10 3.093593076e-10 6.687203313e-10 1.635099598e-10 6.072343435e-10 5.889159366e-10 8.170348807e-10 8.547209428e-10 8.017777341e-10 1.283833551e-09 5.121437538e-10 8.706897797e-10 1.441848203e-09 6.819562759e-10 1.634557573e-09 1.272835552e-09 1.529045168e-09 8.079394469e-10 9.690031289e-10 4.471100168e-10 1.725837911e-09 1.668187635e-09 8.265987582e-10 1.23446012e-09 8.96528412e-10 1.225303874e-09 7.183015915e-10 1.201305875e-09 1.070907815e-09 9.44762211e-10 6.298196961e-10 1.245012405e-09 6.032527737e-10 8.533899217e-10 7.077466966e-10 6.49225937e-10 7.20933839e-10 1.255978365e-09 9.48914791e-10 7.4476496e-10 9.736409248e-10 1.238919449e-09 9.14082723e-10 7.298545207e-10 6.63644325e-10 8.816920291e-10 5.302351052e-10 1.104872536e-09 5.583408829e-10 6.607549561e-10 7.780035615e-10 8.99036419e-10 2.949672895e-10 7.686773211e-10 6.831960276e-10 4.540396925e-10 2.487926962e-10 6.070172184e-10 9.9829765e-10 6.441438958e-10 7.390908619e-10 6.944954727e-10 7.072741924e-10 8.360512284e-10 6.282434274e-10 6.070792898e-10 7.174724044e-10 6.748760708e-10 1.026879462e-09 9.557486972e-10 1.253754241e-09 4.202196062e-10 7.106527776e-10 7.218633802e-10 6.352736024e-10 9.849198804e-10 1.37758844e-09 8.946775867e-10 1.330959665e-09 1.460201926e-09 1.0420659e-09 6.398598999e-10 9.541956609e-10 5.576068826e-10 3.37698517e-10 9.880094135e-10 6.522560715e-10 3.540966122e-10 4.255514135e-10 9.193609846e-10 3.4402707e-10 4.316639131e-10 6.362901345e-10 2.639552188e-10 6.573048208e-10 4.798610249e-10 2.16888879e-10 3.70473909e-10 1.112328483e-10 4.363530805e-10 6.677617667e-10 1.064171475e-10 1.779234311e-10 6.313638735e-10 2.761024614e-10 4.145689114e-10 2.888626567e-10 7.037644326e-10 1.286809693e-10 +8.501381181e-10 2.621349582e-10 8.173658598e-11 4.966550245e-10 1.477279763e-10 1.587521885e-10 4.765177278e-10 3.624243201e-10 2.942770893e-10 8.536370739e-10 2.47570821e-10 5.649380762e-10 1.716577406e-10 2.009489309e-10 3.301735547e-10 3.782673861e-10 5.386171637e-10 4.544509835e-10 7.174191315e-10 7.148257331e-10 4.323926321e-10 3.484249765e-10 4.06924902e-10 2.920015047e-10 7.437253533e-10 3.830312222e-10 1.209735623e-09 3.406428958e-10 7.319195072e-10 1.057505126e-09 6.60752233e-10 6.946025815e-10 8.816690399e-10 1.089699663e-09 1.208424617e-09 3.548063427e-10 6.628103198e-10 8.992451216e-10 1.170171649e-09 6.075063317e-10 6.146488322e-10 1.304785895e-09 1.144192557e-09 4.981745017e-10 5.631916868e-10 9.471402266e-10 6.06320104e-10 5.92138858e-10 2.409495787e-10 9.19235134e-10 1.089089747e-09 4.694969048e-10 4.048584806e-10 5.304587323e-10 4.519854866e-10 3.49534374e-10 4.228786821e-10 8.441915738e-10 1.363803729e-09 9.301404371e-10 1.030256642e-09 1.141780962e-09 9.568830456e-10 9.841055915e-10 3.190952359e-10 2.927236e-10 5.987392197e-10 1.46507784e-09 7.508274647e-10 1.001272334e-09 1.161003045e-09 8.84717283e-10 4.036049683e-10 1.039751638e-09 8.475536832e-10 1.079121259e-09 3.572470202e-10 7.181343293e-10 9.849143796e-10 4.694359093e-10 9.18258273e-10 1.564552417e-09 6.466777557e-10 1.485547027e-09 9.550114091e-10 1.408641365e-09 8.619532707e-10 8.790616467e-10 9.935576563e-10 8.777159611e-10 1.114863494e-09 1.282372672e-09 9.837769858e-10 1.680771316e-09 7.194594003e-10 1.360948285e-09 1.234551229e-09 1.141766447e-09 8.276993772e-10 1.363396323e-09 1.746110345e-09 1.257042155e-09 8.984302882e-10 9.285472245e-10 3.684388223e-10 4.605837312e-10 2.274416239e-10 5.35109411e-10 2.423042656e-10 6.72854578e-10 8.87698016e-10 1.574904277e-09 2.265086261e-09 1.188813584e-09 1.31744042e-09 2.014371498e-09 1.810129676e-09 2.442769503e-09 1.581025739e-09 1.386666841e-09 1.915674453e-09 2.312290344e-09 1.743267624e-09 1.262056546e-09 2.077790479e-09 1.891885201e-09 2.964608351e-09 3.00902425e-09 2.48657877e-09 2.667724434e-09 3.18162929e-09 2.027419507e-09 2.184719345e-09 2.027268475e-09 1.608942369e-09 1.299764765e-09 6.249377427e-10 8.340492207e-10 1.45947055e-09 1.173855081e-09 1.21882739e-09 1.423744681e-09 9.630397027e-10 1.094554177e-09 9.160282129e-10 5.590540685e-10 1.056166072e-09 8.089362642e-10 1.15029242e-09 7.805338716e-10 7.807266481e-10 1.103954349e-09 1.385510269e-09 1.188259297e-09 1.27312501e-09 1.349900944e-09 1.022620049e-09 1.300454914e-09 1.135987822e-09 1.01481574e-09 1.452504211e-09 1.164196317e-09 1.582757186e-09 1.081066635e-09 1.569846414e-09 1.148438116e-09 1.929602532e-09 1.99364738e-09 2.506002582e-09 1.512137012e-09 1.835266931e-09 2.469930335e-09 2.043971161e-09 2.668974405e-09 2.210372384e-09 1.554011533e-09 1.49534391e-09 2.705386327e-09 1.355061359e-09 1.512797159e-09 1.678883603e-09 3.00835045e-09 2.140941989e-09 1.835768435e-09 1.430529376e-09 1.531676346e-09 1.84644052e-09 1.476505011e-09 1.477572671e-09 4.537970345e-10 7.111347544e-10 5.181167545e-10 2.707398237e-10 2.978948992e-10 3.308225572e-10 3.945628196e-10 7.259559129e-10 5.12133307e-10 7.80685963e-10 1.029129306e-09 9.243759567e-10 1.298691385e-09 7.288999061e-10 6.556718465e-10 8.297395144e-10 1.267966108e-09 8.847201783e-10 1.328070666e-09 8.982863243e-10 1.810100474e-09 1.64778198e-09 1.485211823e-09 8.932924954e-10 1.376008851e-09 7.843272779e-10 1.675266804e-09 2.281687843e-09 1.151025969e-09 1.028913798e-09 1.1324956e-09 8.543020666e-10 7.221294252e-10 5.165385316e-10 1.000777883e-09 8.860891973e-10 7.817406382e-10 6.46552995e-10 5.032458018e-10 8.036334738e-10 8.029805402e-10 7.135468216e-10 8.143140708e-10 6.4537428e-10 9.801055964e-10 6.537644684e-10 4.692090758e-10 9.23582812e-10 8.302985165e-10 9.996801153e-10 1.031644991e-09 6.802130429e-10 9.650116684e-10 8.238422757e-10 7.105464799e-10 6.015623655e-10 3.953274014e-10 4.615453826e-10 6.162227796e-10 3.282726175e-10 9.261546035e-10 5.003491003e-10 4.487928716e-10 5.463233485e-10 7.733404594e-10 9.288927715e-10 1.117658347e-09 5.072857904e-10 9.071614072e-10 8.88794722e-10 1.143742081e-09 7.103694729e-10 5.396667811e-10 9.43882393e-10 1.032558576e-09 6.525175827e-10 6.601064195e-10 6.466367652e-10 6.693653607e-10 7.661678684e-10 5.845640072e-10 4.343123462e-10 9.052370254e-10 5.523705007e-10 8.159450154e-10 7.850359459e-10 9.959525521e-10 7.823863272e-10 5.143277567e-10 3.572812829e-10 5.644904195e-10 3.58011556e-10 6.155358904e-10 3.634637061e-10 6.275324765e-10 1.203461556e-09 5.598923373e-10 4.624772792e-10 2.109059702e-10 1.601445878e-10 7.92457816e-11 3.702753567e-10 4.182687061e-10 1.836833149e-10 3.759833438e-10 5.18651129e-10 3.959448191e-10 4.314436988e-10 4.497874124e-10 4.636884164e-10 3.675057025e-10 +1.877962524e-10 6.046925164e-11 4.132090752e-10 4.46999041e-10 1.800707503e-10 2.823997927e-10 6.04439735e-10 2.655541073e-10 2.409511097e-10 1.757649415e-10 3.890708037e-10 3.887830929e-10 5.341559767e-10 3.707799954e-10 3.380505903e-10 1.589814781e-10 8.347276274e-10 3.466814285e-10 3.904067927e-10 7.283652132e-10 7.758458425e-10 3.612139284e-10 7.16942157e-10 3.098162821e-10 8.20782102e-10 7.115223644e-10 5.66189265e-10 6.94873796e-10 9.58103572e-10 1.064005337e-09 9.269479178e-10 1.235934127e-09 9.268946184e-10 6.224641892e-10 8.777764123e-10 5.319913693e-10 8.656741745e-10 4.950268326e-10 8.586380174e-10 6.02324628e-10 6.676740338e-10 9.242809109e-10 7.470872652e-10 4.801617325e-10 7.22384945e-10 6.736320105e-10 8.389197606e-10 4.558388412e-10 6.83780336e-10 8.341458274e-10 9.882344757e-10 5.850324292e-10 7.963887543e-10 7.467174996e-10 4.745410001e-10 4.376969485e-10 5.361656298e-10 1.127259298e-09 6.973011428e-10 7.601691329e-10 2.735016598e-10 9.248591251e-10 7.236049281e-10 4.650205614e-10 7.290970027e-10 1.114872968e-09 8.671327021e-10 4.140535089e-10 1.131686898e-09 2.73466038e-10 7.18274544e-10 7.602164547e-10 5.381392876e-10 4.818155813e-10 1.09301283e-09 1.049368146e-09 6.308758386e-10 5.297014453e-10 1.865384016e-10 1.028126248e-09 9.814880292e-10 1.351115561e-09 1.380233142e-09 1.378615327e-09 9.805852262e-10 1.275193207e-09 1.459573972e-09 8.896605826e-10 1.028410375e-09 1.215007835e-09 6.711200176e-10 1.309882665e-09 9.255778786e-10 1.605255867e-09 7.674389086e-10 8.695079485e-10 1.36095445e-09 1.086533895e-09 1.113034482e-09 1.656573061e-09 1.187141811e-09 6.907972249e-10 7.678548881e-10 5.32129107e-10 3.354808579e-10 2.448519208e-10 7.058529545e-10 1.132352997e-09 6.546200487e-10 4.700954815e-10 1.567751303e-09 1.872001403e-09 1.011875837e-09 2.471687872e-09 1.610753139e-09 2.04680585e-09 1.860566536e-09 1.810907456e-09 1.012206141e-09 1.879131377e-09 1.065943094e-09 1.382876024e-09 1.293322754e-09 1.276324176e-09 1.613726345e-09 1.983754509e-09 1.086793736e-09 1.888844912e-09 2.31212522e-09 2.532771685e-09 3.225622724e-09 1.748062199e-09 1.11507621e-09 2.440998857e-09 1.190758384e-09 1.385228741e-09 1.388453564e-09 8.03102656e-10 1.022928008e-09 1.760578181e-09 1.394358153e-09 1.715020303e-09 1.055464917e-09 1.783397669e-09 1.412122537e-09 1.318566046e-09 1.739156528e-09 6.642927491e-10 1.129819491e-09 1.210967742e-09 1.166158835e-09 1.169187855e-09 8.53751937e-10 9.32239429e-10 1.582338919e-09 1.321488042e-09 1.312313028e-09 1.78208446e-09 2.333710389e-09 1.277018646e-09 2.257091046e-09 1.272404704e-09 1.591174652e-09 8.72793713e-10 1.123407498e-09 1.386876502e-09 1.879649969e-09 9.895056243e-10 1.728645383e-09 1.55313403e-09 2.60356995e-09 2.683312416e-09 2.539234832e-09 2.620483562e-09 2.186189129e-09 1.013869034e-09 1.96074317e-09 1.439009421e-09 1.611064459e-09 2.439074549e-09 1.335466396e-09 1.968383137e-09 1.379320775e-09 1.921937785e-09 1.138020425e-09 2.420761154e-09 1.967358496e-09 1.799123395e-09 2.280440952e-09 1.130188994e-09 1.008523304e-09 5.435177282e-10 9.238458009e-10 5.016684583e-10 4.056112561e-10 3.969148091e-10 5.487612081e-10 5.852517885e-10 6.262105257e-10 1.186770771e-09 1.156818348e-09 6.92874619e-10 1.065503986e-09 8.835579433e-10 1.133390557e-09 1.206371658e-09 7.625302053e-10 1.365647858e-09 9.791049567e-10 1.068850618e-09 1.028845381e-09 5.195270127e-10 8.471688214e-10 1.091453118e-09 1.420806992e-09 1.381459654e-09 1.636087025e-09 1.232170574e-09 4.638119249e-10 1.085822669e-09 7.459464519e-10 1.170824186e-09 5.148140343e-10 7.309652689e-10 7.987476024e-10 1.167440773e-09 8.246658519e-10 1.34270575e-09 1.155679245e-09 8.574974655e-10 6.184368805e-10 1.08358418e-09 1.06386489e-09 9.219168327e-10 7.743586882e-10 9.088149397e-10 9.543348444e-10 6.21659448e-10 1.243073198e-09 9.782597961e-10 1.004313898e-09 1.157478551e-09 9.166940751e-10 7.554379898e-10 4.151191751e-10 3.804486575e-10 8.588287154e-10 5.457750986e-10 4.695423457e-10 8.153165825e-10 3.812977694e-10 7.682960288e-10 8.166321443e-10 3.005082928e-10 6.33340918e-10 5.904159518e-10 1.317872614e-09 6.728924416e-10 4.23871711e-10 7.729967483e-10 4.189768921e-10 5.033937478e-10 7.645931188e-10 5.387827018e-10 7.420673721e-10 5.758824641e-10 9.56799489e-10 3.068075948e-10 4.998842889e-10 9.161676398e-10 4.626144392e-10 1.000591852e-09 5.8246209e-10 1.338714515e-09 8.724263755e-10 7.683759371e-10 8.506731414e-10 7.436484976e-10 7.374285821e-10 7.359543883e-10 6.4032251e-10 5.508863455e-10 4.261523175e-10 4.611556152e-10 3.794043826e-10 1.977924236e-10 3.163932827e-10 2.425521013e-10 2.848138909e-10 3.131330822e-10 4.954571804e-10 5.703723767e-10 2.561994985e-10 4.841663769e-10 2.546022433e-10 3.810658581e-10 4.01149472e-10 2.504842414e-10 3.010402054e-10 5.812752953e-10 +7.631484526e-10 1.369929241e-10 1.0000299e-10 3.776621573e-10 5.439989543e-10 2.359885788e-10 1.539577134e-10 1.94350511e-10 6.230225387e-10 1.792858777e-10 3.938912159e-10 4.468785333e-10 5.889257159e-10 3.776999438e-10 6.572026608e-10 6.558095599e-10 4.944347037e-10 8.757545597e-10 4.450610161e-10 4.54093033e-10 6.6175333e-10 5.346393474e-10 4.530884355e-10 5.058750123e-10 5.097144803e-10 9.856294777e-10 5.675785283e-10 7.99115499e-10 1.053551068e-09 1.257140864e-09 7.798712451e-10 4.746828181e-10 1.143008337e-09 1.411701951e-09 1.254146178e-09 8.586427521e-10 7.114030848e-10 7.729847746e-10 4.376140709e-10 4.017255363e-10 1.242559246e-09 9.100437093e-10 6.487337369e-10 7.097677908e-10 6.031408101e-10 5.561953786e-10 1.113798959e-09 9.676029372e-10 7.82215534e-10 8.462777668e-10 8.358067678e-10 7.063102665e-10 1.531184144e-10 5.171447958e-10 4.61113438e-10 6.390312591e-10 4.207188142e-10 6.000797963e-10 8.744900099e-10 7.191401815e-10 7.482167835e-10 1.18645765e-09 6.488524989e-10 6.074222633e-10 5.934997041e-10 8.917602698e-10 4.608604189e-10 7.333694382e-10 7.653951613e-10 9.462372147e-10 6.369689282e-10 7.88463288e-10 1.392724711e-09 8.704587524e-10 8.586353304e-10 5.655336544e-10 6.704373501e-10 6.056044013e-10 7.876972425e-10 1.025768112e-09 9.827461241e-10 6.085296992e-10 1.700368906e-09 1.594893596e-09 9.529732217e-10 9.923860018e-10 1.249014069e-09 1.365469905e-09 1.570292293e-09 1.428371144e-09 1.660988629e-09 1.497196861e-09 9.740516574e-10 9.718800868e-10 8.021250237e-10 1.285396352e-09 1.558915418e-09 9.589229172e-10 1.600253585e-09 1.001864657e-09 8.545090715e-10 6.499625814e-10 7.276212415e-10 7.483154241e-10 2.360419034e-10 3.260880364e-10 3.561209299e-10 7.823658149e-10 5.45459604e-10 1.623905439e-09 1.391643908e-09 1.804094433e-09 1.660057946e-09 1.37718321e-09 1.886874895e-09 2.157266379e-09 1.855852903e-09 1.321755804e-09 1.853522784e-09 1.709673398e-09 1.629495935e-09 2.022195519e-09 1.205357104e-09 1.405127383e-09 1.502884558e-09 2.307319064e-09 2.14420281e-09 2.072192986e-09 2.413307992e-09 1.907796682e-09 1.962109362e-09 1.425555421e-09 1.803617372e-09 1.446988641e-09 1.313623514e-09 1.248714051e-09 1.027794491e-09 1.281658098e-09 1.431457807e-09 1.564934829e-09 1.667473791e-09 1.24971133e-09 1.69272473e-09 7.592744536e-10 1.378748767e-09 1.679247126e-09 1.503652778e-09 1.766437646e-09 1.762469387e-09 1.307249378e-09 9.973177839e-10 7.590495553e-10 1.041690484e-09 1.0662627e-09 1.252613714e-09 1.283499738e-09 1.756255288e-09 1.321622525e-09 1.187083073e-09 1.413881446e-09 9.953022775e-10 1.133664365e-09 1.861306651e-09 1.857265492e-09 1.413845571e-09 1.322808374e-09 1.625490924e-09 1.263495992e-09 8.472461254e-10 2.50368961e-09 2.067871627e-09 2.227996068e-09 2.212017413e-09 1.908809089e-09 2.50870133e-09 1.096887586e-09 1.748985054e-09 1.782470193e-09 1.900123468e-09 1.963208973e-09 2.105645711e-09 2.104451556e-09 1.929692564e-09 1.840841887e-09 1.89321681e-09 2.080928748e-09 3.560257763e-09 1.541770489e-09 2.05029349e-09 1.672314562e-09 5.370043559e-10 5.886830558e-10 6.498044908e-10 3.364653268e-10 2.166326486e-10 5.471434325e-10 5.303465149e-10 5.184220517e-10 1.025024272e-09 9.231525168e-10 1.612229386e-09 8.650345937e-10 9.431162817e-10 9.190158579e-10 1.509391605e-09 1.015337557e-09 1.580087699e-09 1.553268573e-09 1.353820017e-09 2.138536307e-09 1.21882336e-09 1.215850307e-09 1.818200142e-09 1.760572799e-09 1.379770808e-09 1.97342512e-09 1.307732039e-09 1.074888234e-09 1.968971603e-09 1.357876973e-09 5.398679777e-10 4.84239063e-10 6.499804226e-10 2.078367208e-10 4.001656854e-10 7.649522086e-10 4.70558158e-10 8.169672342e-10 8.266510878e-10 8.720182418e-10 6.086259357e-10 1.628620204e-09 1.137755769e-09 1.114842925e-09 8.785964897e-10 1.023844986e-09 7.901258771e-10 4.709014429e-10 1.29731938e-09 9.823492811e-10 7.033562502e-10 6.750748923e-10 6.674795106e-10 1.154910861e-09 1.461041087e-10 5.338746685e-10 5.138824908e-10 7.531211807e-10 4.636306382e-10 8.254847278e-10 8.961494154e-10 7.000310483e-10 8.664231514e-10 9.928827579e-10 2.92312849e-10 9.334202678e-10 8.033367556e-10 1.137505151e-09 1.024331676e-09 1.013714543e-09 5.283943536e-10 1.505063471e-09 1.014507725e-09 8.255269515e-10 5.096517919e-10 1.082969842e-09 5.593208471e-10 6.906008281e-10 8.353240196e-10 4.840926196e-10 1.086323596e-09 4.34880023e-10 4.367568847e-10 8.92504064e-10 8.880992428e-10 5.354829503e-10 6.574232534e-10 8.801279442e-10 5.614391427e-10 4.201600451e-10 8.093449518e-10 2.60966448e-10 2.476254714e-10 4.677634459e-10 1.456626549e-10 4.118704203e-10 3.114138365e-10 7.129013777e-10 1.259657993e-10 7.755751117e-10 2.443355183e-10 2.252337663e-10 3.826363671e-10 4.576126757e-10 5.424823992e-10 2.766522646e-10 3.251595634e-10 5.466582573e-10 3.898785786e-10 3.267451484e-10 +5.320896639e-10 4.226561856e-10 5.070257766e-11 1.8480068e-10 4.326115479e-10 7.958710667e-11 3.701209e-10 1.997460106e-10 2.651188231e-10 5.814926945e-10 2.936643285e-10 1.654105246e-10 1.070417727e-09 3.245954508e-10 9.811851183e-11 2.86134857e-10 6.322255596e-10 4.720536833e-10 3.395215096e-10 4.157870201e-10 1.19775139e-09 7.334530246e-10 3.706879413e-10 5.793711398e-10 2.743446784e-10 7.513991591e-10 6.614788566e-10 5.904024507e-10 1.02066481e-09 9.381738269e-10 1.453483106e-09 8.324740604e-10 1.082916733e-09 3.20423119e-10 5.687157385e-10 9.434667979e-10 4.129239545e-10 9.365864894e-10 8.748318732e-10 6.766216608e-10 1.813005115e-09 9.742746174e-10 1.232767754e-09 9.501388344e-10 1.037129295e-09 1.184658769e-09 5.467944397e-10 3.519477666e-10 5.453025386e-10 5.871183825e-10 1.283631845e-09 7.328829349e-10 8.016056978e-10 5.504012048e-10 1.031046338e-09 5.600050414e-10 3.876033112e-10 7.191559059e-10 6.942364392e-10 6.990860822e-10 6.822996385e-10 6.19960101e-10 8.989160318e-10 3.53581773e-10 9.187507655e-10 7.233544415e-10 6.78005159e-10 4.639207263e-10 1.019455389e-09 1.015063945e-09 5.065210158e-10 5.452183082e-10 1.199644354e-09 5.974148528e-10 7.804564786e-10 1.010172225e-09 1.038107589e-09 8.011160376e-10 3.293938249e-10 7.394551417e-10 1.213261716e-09 1.31461847e-09 1.025310553e-09 1.461254763e-09 1.473402525e-09 1.828199638e-09 1.233163264e-09 1.104803262e-09 7.488973716e-10 1.763515037e-09 9.932795326e-10 7.763007155e-10 9.155383516e-10 1.876809103e-09 1.327392697e-09 1.322201015e-09 9.668377896e-10 7.965191994e-10 1.128584037e-09 1.121413249e-09 1.41738342e-09 1.49023411e-09 3.528187017e-10 5.397897021e-10 3.581020738e-10 3.749905959e-10 5.672841939e-10 5.961649041e-10 5.948402704e-10 6.911073031e-10 1.991438729e-09 1.692116344e-09 2.175686474e-09 3.024259651e-09 1.50735196e-09 2.430908266e-09 1.647368607e-09 2.47732222e-09 1.622778823e-09 1.532531037e-09 1.223477027e-09 1.068322007e-09 1.888000462e-09 1.811965831e-09 2.546079501e-09 1.537556937e-09 3.536365191e-09 2.20411974e-09 2.488014152e-09 1.018468535e-09 1.90078843e-09 1.442257072e-09 2.395660321e-09 1.166262175e-09 2.06979014e-09 1.428308027e-09 2.136449363e-09 1.378838742e-09 1.080869239e-09 1.280905311e-09 1.815126056e-09 6.296492558e-10 1.093392182e-09 9.399592404e-10 1.411057362e-09 1.612944784e-09 1.759868034e-09 1.058321966e-09 1.11761356e-09 7.349754878e-10 8.466232871e-10 1.544352676e-09 1.385213321e-09 1.43284058e-09 1.361109164e-09 6.355267033e-10 1.319322849e-09 8.650205377e-10 1.272521537e-09 2.006065601e-09 1.321073442e-09 1.894694729e-09 1.376990455e-09 1.973066072e-09 9.245670247e-10 1.594585279e-09 1.745471e-09 1.30952534e-09 9.302566859e-10 1.263635791e-09 1.845031725e-09 1.468731441e-09 2.415595124e-09 3.175705573e-09 3.170481625e-09 2.264555675e-09 1.97349914e-09 1.715500868e-09 1.807822321e-09 1.632386287e-09 1.701243674e-09 1.184443192e-09 2.68743057e-09 3.265470696e-09 2.520354354e-09 2.145282658e-09 1.757052251e-09 2.261757415e-09 1.714173998e-09 2.760013282e-09 8.171447407e-10 5.920912728e-10 1.022888132e-09 8.071388375e-10 5.585977139e-10 5.00237085e-10 5.168009623e-10 6.840383016e-10 1.006284994e-09 8.685873746e-10 7.94812979e-10 1.170433163e-09 9.442277338e-10 1.012275502e-09 1.226129661e-09 1.263553196e-09 9.4764013e-10 1.044352373e-09 1.566489186e-09 1.275344585e-09 2.36146458e-09 8.388169572e-10 7.010281397e-10 1.056912181e-09 1.543879145e-09 1.175943461e-09 1.57278452e-09 9.782160592e-10 1.022441431e-09 1.25721054e-09 6.357213772e-10 6.266430694e-10 8.322277598e-10 3.570595578e-10 1.097496781e-09 5.106758495e-10 6.567471486e-10 7.209637559e-10 9.014992784e-10 9.187999114e-10 8.28253562e-10 1.406241936e-09 7.524576441e-10 7.329589806e-10 4.59827311e-10 6.340291249e-10 1.138020239e-09 6.354620739e-10 1.223490877e-09 1.186615215e-09 5.122274049e-10 9.655629948e-10 4.668316617e-10 7.419716174e-10 5.142499845e-10 1.056015221e-09 9.691457494e-10 5.712898788e-10 6.3396528e-10 8.172592296e-10 1.12222616e-09 4.420069488e-10 7.905380436e-10 6.195884249e-10 1.097632521e-09 7.201002459e-10 6.351169009e-10 9.951072576e-10 7.287451153e-10 1.160471201e-09 3.623876981e-10 6.057571835e-10 8.508835742e-10 5.753732628e-10 6.368768108e-10 6.99710551e-10 5.263966012e-10 1.296006661e-09 2.940126872e-10 6.917316463e-10 1.099481284e-09 1.110922247e-09 7.301918815e-10 6.777616585e-10 5.686613318e-10 6.781970527e-10 5.126624037e-10 3.099969137e-10 4.444276261e-10 7.309491951e-10 9.491536576e-10 6.215707667e-10 2.401275848e-10 4.311890925e-10 4.413150567e-10 2.633280449e-10 4.448402602e-10 1.875416318e-10 3.75714211e-10 4.671554542e-10 1.993340999e-10 2.075496196e-10 4.583245705e-10 4.403436007e-10 5.83224794e-10 7.690577873e-11 2.295028449e-10 4.578247907e-10 1.720706945e-10 1.985805007e-10 +3.829696375e-10 2.1498097e-10 3.1749009e-10 4.152114506e-10 4.686743344e-10 1.2165119e-10 7.343414863e-10 5.102020928e-10 4.223634624e-10 1.149211611e-10 3.779689434e-10 3.594637279e-10 2.648829636e-10 1.558221745e-10 2.667041128e-10 3.302212627e-10 5.165503987e-10 6.729850199e-10 2.853410192e-10 4.591313457e-10 2.697411347e-10 7.492213774e-10 3.711745194e-10 5.613028925e-10 2.764082746e-10 5.596009451e-10 6.744599281e-10 7.090109515e-10 7.220091159e-10 8.191080397e-10 7.71015931e-10 1.083802032e-09 4.926362007e-10 9.111283861e-10 6.675759471e-10 1.647073032e-09 5.85311243e-10 6.269489731e-10 9.187166841e-10 1.195631872e-09 4.384152138e-10 5.359634917e-10 5.350748878e-10 5.998094312e-10 5.918007186e-10 9.183979874e-10 5.75236378e-10 1.351959093e-09 7.173082344e-10 4.399056664e-10 1.220158073e-09 4.152455681e-10 5.906133133e-10 6.191751611e-10 8.24172772e-10 5.983439847e-10 6.799264843e-10 3.882661246e-10 1.263084149e-09 1.209781362e-09 7.07688671e-10 8.880957748e-10 6.971673933e-10 6.818415337e-10 1.179849161e-09 9.917076827e-10 4.629747077e-10 1.250440678e-09 1.16497884e-09 9.17867368e-10 1.350042355e-09 7.95370388e-10 1.230669006e-09 7.251585006e-10 7.593527944e-10 7.62477916e-10 5.489036169e-10 8.243042056e-10 5.729914756e-10 1.025568687e-09 1.361611693e-09 1.296779112e-09 1.088708238e-09 1.710710264e-09 1.542528736e-09 1.309688359e-09 8.007294091e-10 1.095970286e-09 1.295159251e-09 1.830146008e-09 1.591372511e-09 9.323064149e-10 5.378143321e-10 6.943358349e-10 1.738531782e-09 7.189835987e-10 8.715222977e-10 1.401400171e-09 7.062806317e-10 1.271155566e-09 8.512444573e-10 6.37506751e-10 7.217714992e-10 4.512838295e-10 3.420215824e-10 2.846121223e-10 8.786489118e-10 5.270352443e-10 7.200248216e-10 8.044910874e-10 1.860101328e-09 2.416116134e-09 3.865082198e-09 1.313959438e-09 1.792424926e-09 2.130052943e-09 2.490967193e-09 1.895189624e-09 1.019137061e-09 1.267297007e-09 2.611393964e-09 1.51288012e-09 1.79167036e-09 1.894019659e-09 2.424481199e-09 2.460806118e-09 2.80977634e-09 1.93877797e-09 2.245588514e-09 2.253156769e-09 1.199905244e-09 1.437596206e-09 1.61343124e-09 1.482937914e-09 1.665386299e-09 1.3865281e-09 1.390056336e-09 1.56203134e-09 1.217657822e-09 1.141852468e-09 6.748712548e-10 6.320098395e-10 1.251688993e-09 1.179587095e-09 7.859738079e-10 1.874434065e-09 1.388600393e-09 1.222756325e-09 1.343432886e-09 1.986576911e-09 1.781829388e-09 7.532072861e-10 1.039259011e-09 1.273903456e-09 6.594184015e-10 1.160258106e-09 1.685132298e-09 1.418503173e-09 1.146211166e-09 1.353766203e-09 1.39497238e-09 1.13688027e-09 1.486392501e-09 1.091628942e-09 1.737266041e-09 1.439595023e-09 1.389841001e-09 7.812516213e-10 1.313318016e-09 9.21310142e-10 1.049549357e-09 2.393228902e-09 1.376408593e-09 2.758608469e-09 2.078815568e-09 3.109495023e-09 2.730758876e-09 1.677987183e-09 2.23985243e-09 1.216980492e-09 1.80058914e-09 1.597975553e-09 2.00879695e-09 1.493802376e-09 1.320641555e-09 3.419361623e-09 2.271876244e-09 1.850031371e-09 2.801316823e-09 2.355745106e-09 1.675952562e-09 5.535305198e-10 4.097206072e-10 4.61503998e-10 4.684964608e-10 1.931437121e-10 3.540883768e-10 7.226357913e-10 5.403746392e-10 1.162100945e-09 7.737491017e-10 8.596580997e-10 8.851531392e-10 9.213855358e-10 1.093390865e-09 1.248029668e-09 8.166135445e-10 1.568563603e-09 1.219674306e-09 1.03562793e-09 1.077502451e-09 1.641822912e-09 1.958523129e-09 8.06001604e-10 2.08525563e-09 1.419302719e-09 1.06028311e-09 1.638867451e-09 1.931401327e-09 8.110769899e-10 8.25746563e-10 3.594906192e-10 2.672100958e-10 8.081344737e-10 1.09877877e-09 9.302375515e-10 4.744150751e-10 6.086306362e-10 1.39269125e-09 7.141035768e-10 1.317924273e-09 1.499907045e-09 6.596245735e-10 8.560308873e-10 8.925482968e-10 1.056692966e-09 9.911916498e-10 7.800322462e-10 6.711352709e-10 1.749120947e-09 1.018744021e-09 1.093678548e-09 9.184745066e-10 4.16475921e-10 3.077667376e-10 2.658636581e-10 7.701957706e-10 3.828726272e-10 1.968798415e-10 7.875407898e-10 8.583216261e-10 7.099860607e-10 7.403367658e-10 1.1761308e-09 3.661057554e-10 9.730607024e-10 5.957850167e-10 7.470234026e-10 5.594781351e-10 5.779560127e-10 5.516680606e-10 7.566954361e-10 8.839249429e-10 4.340362308e-10 5.130745343e-10 6.259684946e-10 7.699852724e-10 1.236771935e-09 9.63346158e-10 8.748777855e-10 4.897820023e-10 4.895709783e-10 8.87190942e-10 5.269220802e-10 6.954081634e-10 3.512702103e-10 4.049759606e-10 5.919781693e-10 4.748560265e-10 3.657255467e-10 3.67722069e-10 2.972304929e-10 4.590478006e-10 2.906160327e-10 3.290605047e-10 8.480089874e-11 5.925502749e-10 2.231589506e-10 1.529861793e-10 2.253218439e-10 3.135196722e-10 2.146756543e-10 5.490519433e-10 1.994306585e-10 4.839088835e-10 5.535990521e-11 2.717846107e-10 3.395798151e-10 6.060040369e-10 3.424980359e-10 +4.68276736e-10 9.549319321e-11 2.611191196e-10 4.713809332e-10 2.989782225e-10 2.628909552e-10 2.616257988e-10 4.668829425e-10 7.970952761e-10 3.453741692e-10 2.588512566e-10 4.36294455e-10 2.675394341e-10 6.182359493e-10 5.806283202e-10 5.553955539e-10 2.968387581e-10 7.782723122e-10 2.746984272e-10 3.478346374e-10 2.339613793e-10 7.973829533e-11 3.304630798e-10 6.038608573e-10 5.796372063e-10 3.067493021e-10 6.92962688e-10 7.638077151e-10 6.975208214e-10 7.746534034e-10 7.016795615e-10 8.122238102e-10 1.955876289e-10 6.644756774e-10 8.583209637e-10 9.275757594e-10 6.471652809e-10 1.143208125e-09 1.145551955e-09 5.57458028e-10 5.966841267e-10 1.011221435e-09 8.014789212e-10 1.282088734e-09 1.049712057e-09 4.42975439e-10 7.77837604e-10 6.847804729e-10 8.736489883e-10 1.498294506e-09 7.2129119e-10 9.534878642e-10 2.374820309e-10 5.748075596e-10 4.421830004e-10 4.056711318e-10 7.174130425e-10 4.651668268e-10 9.929492127e-10 7.00123666e-10 1.186507653e-09 9.633139454e-10 6.406898833e-10 6.553212785e-10 7.758856449e-10 6.639614876e-10 1.594851965e-09 3.853252553e-10 1.089027254e-09 5.944377974e-10 8.85341778e-10 1.175179445e-09 7.538730502e-10 9.052793416e-10 6.004784495e-10 7.934927692e-10 6.152201571e-10 3.402288996e-10 8.20672575e-10 6.157072273e-10 1.849162687e-09 1.112905987e-09 1.55717923e-09 2.151616992e-09 1.661716527e-09 1.432204823e-09 1.118997808e-09 1.633619593e-09 1.527311475e-09 2.153527772e-09 1.050843867e-09 6.958781552e-10 1.175502026e-09 7.828619046e-10 1.270274787e-09 1.284212689e-09 1.353691274e-09 1.003214771e-09 1.883820478e-09 5.335499905e-10 9.053636859e-10 7.996408357e-10 6.55079604e-10 3.947898467e-10 9.525477342e-11 7.500182569e-10 9.374261335e-10 6.661218409e-10 8.682024095e-10 1.499923314e-09 1.521442479e-09 1.942501325e-09 1.202185244e-09 1.778584043e-09 2.032103716e-09 2.524812779e-09 1.123753575e-09 1.652790277e-09 6.676503461e-10 7.487588872e-10 1.231561333e-09 9.548800078e-10 2.97251516e-09 1.70711755e-09 3.031880468e-09 2.066656524e-09 2.164285702e-09 1.784417029e-09 1.543340973e-09 1.642944941e-09 1.792275548e-09 2.068809212e-09 1.670539577e-09 9.941094018e-10 1.545912527e-09 1.561487564e-09 1.729387113e-09 1.245268988e-09 1.041679869e-09 1.947213668e-09 1.306173594e-09 1.342709498e-09 2.027613997e-09 1.511687032e-09 6.847354327e-10 1.118216905e-09 1.057062363e-09 1.189396327e-09 8.692396972e-10 8.507819463e-10 7.238771662e-10 9.879754296e-10 9.908070419e-10 1.139364349e-09 6.122439708e-10 1.549517239e-09 1.135884281e-09 1.474107091e-09 1.519467049e-09 1.212888222e-09 1.192016156e-09 1.735313842e-09 1.058009836e-09 1.024018277e-09 2.21090517e-09 1.774973061e-09 2.118641013e-09 1.730106957e-09 1.359209398e-09 1.512054017e-09 1.363050295e-09 1.412619455e-09 1.070669958e-09 1.605662358e-09 1.777236889e-09 1.805317432e-09 1.598483173e-09 1.325153485e-09 2.12512051e-09 3.143961928e-09 2.501877622e-09 1.928980685e-09 2.033901e-09 3.010642575e-09 1.654525954e-09 1.906308768e-09 1.963665081e-09 1.031599216e-09 2.425433543e-09 3.375232298e-09 8.005262266e-10 6.492195659e-10 6.77008833e-10 1.123874082e-09 7.106879269e-10 4.972540561e-10 4.639383246e-10 5.244345399e-10 1.06847994e-09 6.732528726e-10 1.122294898e-09 1.011022024e-09 1.075222803e-09 1.166348415e-09 1.205350489e-09 1.57945586e-09 7.592421564e-10 1.071168386e-09 2.474846432e-09 1.249049347e-09 1.260852202e-09 1.305066726e-09 1.272081067e-09 1.422423375e-09 1.18311935e-09 7.548611532e-10 1.878591153e-09 1.301437277e-09 1.901979193e-09 1.005664348e-09 9.969483608e-10 4.167646899e-10 3.649622658e-10 1.805992534e-10 5.181640444e-10 1.036066889e-09 1.144865235e-09 7.110549022e-10 6.757778365e-10 6.809034465e-10 7.059270306e-10 8.10559715e-10 5.410823048e-10 9.812946505e-10 4.950716997e-10 4.497989845e-10 8.63481144e-10 1.409838647e-09 1.223504945e-09 6.144860984e-10 8.84102317e-10 5.028083032e-10 9.358837129e-10 4.28922647e-10 4.964234821e-10 5.928497625e-10 1.150079461e-10 1.33604019e-09 1.021586173e-09 1.032274305e-09 9.487050351e-10 9.390931073e-10 5.708546506e-10 1.432216055e-09 6.845945874e-10 8.785309378e-10 6.961856842e-10 8.457085328e-10 7.320099551e-10 7.450133548e-10 5.027710279e-10 3.453886094e-10 7.682268789e-10 8.475046738e-10 7.851210669e-10 8.061801828e-10 4.736462343e-10 1.225842459e-09 7.784679335e-10 4.605481441e-10 1.02337803e-09 8.555207072e-10 8.798225488e-10 8.237087247e-10 5.184723116e-10 6.596820961e-10 3.956833086e-10 3.730187096e-10 4.434205636e-10 4.969113402e-10 4.351671611e-10 5.38747459e-10 2.995051996e-10 3.835347057e-10 2.154102393e-10 2.339079038e-10 1.417728237e-10 3.46371685e-10 2.783631859e-10 5.464027698e-10 9.325987054e-10 3.417927557e-10 2.335654672e-10 3.471875441e-10 4.153667074e-10 6.555701023e-10 5.958806953e-10 7.146462861e-11 3.78836425e-10 4.744817931e-10 +2.729693993e-10 6.732990819e-10 2.852685976e-10 4.219447814e-10 7.32161041e-10 3.597833453e-10 2.407324761e-10 2.774192198e-10 4.948799099e-10 1.496474149e-10 8.631651418e-10 2.541359622e-10 2.567649535e-10 3.578784534e-10 1.870410885e-10 3.978692085e-10 5.272357295e-10 2.729857319e-10 6.002605458e-10 5.773493706e-10 3.033793871e-10 3.169155616e-10 4.907055826e-10 5.533765878e-10 4.208526328e-10 7.19879765e-10 8.808634843e-10 3.032636592e-10 5.387016597e-10 7.517991737e-10 1.30038048e-09 7.216387203e-10 7.370999475e-10 7.112934426e-10 6.279516406e-10 8.598450874e-10 1.127304883e-09 7.125036779e-10 6.451185907e-10 7.414860397e-10 5.974018315e-10 1.07345537e-09 6.013756486e-10 8.510494829e-10 7.363904249e-10 6.673771357e-10 8.997628086e-10 6.573514781e-10 5.319385535e-10 1.207653769e-09 5.190506124e-10 6.394048937e-10 1.248082722e-09 9.405976867e-10 5.947567196e-10 8.759420384e-10 4.934122892e-10 6.358899082e-10 6.594353333e-10 7.899525034e-10 8.799405469e-10 5.971142022e-10 6.51711777e-10 1.086246755e-09 6.601325403e-10 9.918206379e-10 1.003737659e-09 1.060476782e-09 5.445183797e-10 8.40726907e-10 3.326738185e-10 1.310002824e-09 4.036268267e-10 5.661620438e-10 9.087666364e-10 7.604284246e-10 1.221111615e-09 7.167295832e-10 6.46933096e-10 6.421191264e-10 1.207560346e-09 1.369546242e-09 1.623737462e-09 1.830556159e-09 1.43901717e-09 1.379825865e-09 9.05825122e-10 1.865994208e-09 1.655558886e-09 5.119428456e-10 1.389708821e-09 9.846907642e-10 2.065589384e-09 9.372559593e-10 1.090044044e-09 1.157178978e-09 1.359715495e-09 1.541880616e-09 1.133867829e-09 1.295329571e-09 1.202327929e-09 6.692475333e-10 2.448431871e-10 2.281014528e-10 3.972242001e-10 4.468002896e-10 6.352966745e-10 7.296253937e-10 9.624758438e-10 2.540640536e-09 2.005768805e-09 2.274618197e-09 2.097734435e-09 1.813680684e-09 1.625761012e-09 2.977003717e-09 1.05008121e-09 1.776970603e-09 2.308424456e-09 1.472211881e-09 1.585847372e-09 1.638869419e-09 1.66668696e-09 1.937032365e-09 2.839356014e-09 2.366657408e-09 2.189614433e-09 1.56494336e-09 9.732121994e-10 1.969912794e-09 1.362343968e-09 1.981107141e-09 1.111087688e-09 1.397528733e-09 9.360256668e-10 1.9932983e-09 2.002608789e-09 1.311616623e-09 9.258243588e-10 9.612638632e-10 1.619614164e-09 1.160962459e-09 1.190597352e-09 8.931681753e-10 1.10749171e-09 6.058737613e-10 6.511733326e-10 6.347332002e-10 6.266644697e-10 6.282228316e-10 2.348036942e-10 6.030537952e-10 1.477528092e-09 7.082399546e-10 9.478509171e-10 1.29790646e-09 9.317963399e-10 1.448305798e-09 1.498070737e-09 1.351998816e-09 9.191581994e-10 1.459761209e-09 1.509594195e-09 1.896387088e-09 9.954159108e-10 8.044069456e-10 1.709670777e-09 1.179566062e-09 7.85889862e-10 1.81676681e-09 1.692763351e-09 1.302620346e-09 1.876077094e-09 2.723213109e-09 2.755602042e-09 2.490719765e-09 1.653029184e-09 3.151345243e-09 2.796562835e-09 1.431714372e-09 1.820093703e-09 7.516475247e-10 2.699441997e-09 2.043102788e-09 1.860895264e-09 2.249643618e-09 1.362618563e-09 1.698988983e-09 1.995299359e-09 3.168947857e-09 2.419576122e-09 1.272874942e-09 5.695257367e-10 6.120992503e-10 4.810699516e-10 4.42243942e-10 2.350608437e-10 6.250347505e-10 8.276423305e-10 8.880802487e-10 1.15350106e-09 6.991878188e-10 1.112294441e-09 1.040766215e-09 1.114668515e-09 1.19936042e-09 9.791007514e-10 1.258680897e-09 1.151214625e-09 1.007650803e-09 1.470319066e-09 1.620793252e-09 7.415038647e-10 6.979838167e-10 1.916271517e-09 2.10707318e-09 1.620060926e-09 1.447571456e-09 1.160863948e-09 1.029514619e-09 6.113955229e-10 4.937500927e-10 3.48553334e-10 4.790647574e-10 5.622593338e-10 5.991865347e-10 9.609124862e-10 1.481220439e-09 1.410167011e-09 4.221467169e-10 1.507607297e-09 1.108408321e-09 8.612281627e-10 5.59502531e-10 7.559844592e-10 4.909991395e-10 1.113461569e-09 9.751823711e-10 6.945377689e-10 1.052423783e-09 7.541692777e-10 8.456389326e-10 4.727758268e-10 3.119386177e-10 6.638887164e-10 5.636815371e-10 4.970429555e-10 6.663528642e-10 1.098971183e-09 6.103814541e-10 8.113798992e-10 7.921447586e-10 6.032015972e-10 6.489154415e-10 7.711007771e-10 8.690132645e-10 1.116971001e-09 8.844023458e-10 1.177174507e-09 4.332175143e-10 8.998860137e-10 1.027417399e-09 5.892126268e-10 1.647594572e-09 1.002051187e-09 9.657092553e-10 9.091184146e-10 4.550661849e-10 6.692194634e-10 1.050153881e-09 9.188981338e-10 6.080918576e-10 5.129756465e-10 5.863277007e-10 7.808150435e-10 3.622309117e-10 4.416394014e-10 9.156057676e-10 5.455501048e-10 2.264687334e-10 2.822432901e-10 2.9051884e-10 8.194469788e-10 4.279418904e-10 6.055294142e-10 4.637778593e-10 3.113715642e-10 2.579064461e-10 2.049734467e-10 3.559000451e-10 4.239474394e-10 4.766015035e-10 5.606165015e-10 1.519831335e-10 7.98284914e-10 4.103821821e-10 4.443542172e-10 1.024263453e-09 8.136574804e-10 4.296663648e-10 +2.969822848e-10 5.279101138e-10 7.587992025e-10 4.429605404e-10 3.675169389e-10 9.492281189e-10 4.159105225e-10 5.182782264e-10 8.610167697e-10 3.219164718e-10 3.20854616e-10 2.114893895e-10 4.918433986e-10 6.179824082e-10 5.071238016e-10 2.139789975e-10 2.273379365e-10 2.502326605e-10 1.700875854e-10 4.52988349e-10 5.838799135e-10 3.331649057e-10 8.327927092e-10 4.234903234e-10 3.600531595e-10 5.670859924e-10 1.018137753e-09 3.580505329e-10 5.299586765e-10 7.052616919e-10 1.081425048e-09 9.790319407e-10 8.648569362e-10 6.499870629e-10 6.883955314e-10 9.984535498e-10 8.563202617e-10 6.802109872e-10 8.049306486e-10 4.445903113e-10 5.396076893e-10 3.015657589e-10 6.052779053e-10 1.061967605e-09 1.000627253e-09 1.632022475e-09 5.929233973e-10 6.716568693e-10 8.671282947e-10 1.017535799e-09 1.022364373e-09 4.615805639e-10 6.377875347e-10 9.367661073e-10 8.12294476e-10 5.776951471e-10 6.608746561e-10 6.11603924e-10 6.156206732e-10 9.118298441e-10 1.189925591e-09 6.145541785e-10 7.014244787e-10 5.564916585e-10 4.811559326e-10 8.109034844e-10 8.960960683e-10 6.02578925e-10 1.122376654e-09 1.150183433e-09 1.187828186e-09 8.18979991e-10 9.602379886e-10 8.356609038e-10 9.986881124e-10 9.876055856e-10 7.708221503e-10 9.701210459e-10 6.292659159e-10 1.187819554e-09 1.616348555e-09 1.016333418e-09 1.291978174e-09 1.84152695e-09 1.806915237e-09 9.377261059e-10 1.205800631e-09 1.502483947e-09 6.110373348e-10 1.29743331e-09 1.58842034e-09 1.150990667e-09 1.518473396e-09 1.53218615e-09 1.712466489e-09 8.136081566e-10 9.317235348e-10 1.224340316e-09 9.860424026e-10 7.228477628e-10 7.340556421e-10 6.503329458e-10 5.533355198e-10 3.08027101e-10 2.784586286e-10 5.86423944e-10 5.339004843e-10 1.309709868e-09 1.195705757e-09 2.063307283e-09 1.177985677e-09 2.238357364e-09 1.98447865e-09 1.649187229e-09 1.827266581e-09 1.824078696e-09 1.641325736e-09 1.961971106e-09 1.491808979e-09 2.772295036e-09 1.715709608e-09 3.357905948e-09 2.606626311e-09 2.182750656e-09 2.763467858e-09 2.248990312e-09 1.990295508e-09 1.861910008e-09 2.205178727e-09 1.598634797e-09 9.401256355e-10 2.460734439e-09 1.257844548e-09 2.398746627e-09 1.441457421e-09 1.115523589e-09 1.649124095e-09 9.835907945e-10 1.592816148e-09 1.218146465e-09 5.740946509e-10 1.404513454e-09 8.565808268e-10 6.856532414e-10 5.720655604e-10 9.416778197e-10 2.31277789e-10 6.596482522e-10 8.386426446e-10 5.614978466e-10 4.298526158e-10 4.226749491e-10 7.437825179e-10 5.682365646e-10 4.601959683e-10 5.235451465e-10 6.752603649e-10 9.216017297e-10 4.99830262e-10 1.274811307e-09 1.072907041e-09 1.712899739e-09 1.506184821e-09 1.26370476e-09 1.987013443e-09 1.45219775e-09 2.296307147e-09 1.306305793e-09 1.146876388e-09 1.016369137e-09 1.378390292e-09 1.715379245e-09 1.543754656e-09 1.471866152e-09 2.352262738e-09 2.267337979e-09 3.204163163e-09 2.023096553e-09 2.05211919e-09 1.754118977e-09 2.152862706e-09 2.150579225e-09 1.624658596e-09 1.615758112e-09 2.003141927e-09 2.220245486e-09 1.31818208e-09 2.10923649e-09 1.392542127e-09 1.784128681e-09 2.753392392e-09 2.652217477e-09 5.589000774e-10 6.51915007e-10 5.25944861e-10 8.903087869e-11 2.962538365e-10 2.808577853e-10 7.605672939e-10 7.217761841e-10 1.099595713e-09 1.133623075e-09 1.216983342e-09 1.374924827e-09 1.104149755e-09 1.288461839e-09 2.004882863e-09 1.566040184e-09 1.5340236e-09 6.552499506e-10 6.111470712e-10 9.873478476e-10 1.269996741e-09 1.767429756e-09 1.231717674e-09 1.730297365e-09 1.93483523e-09 1.830352532e-09 9.887355021e-10 1.557780495e-09 4.334300126e-10 1.269755004e-09 4.386533053e-10 5.938454549e-10 8.173831316e-10 9.992469786e-10 6.956345385e-10 1.083343433e-09 7.930799377e-10 1.236798165e-09 8.083952341e-10 8.504781652e-10 1.108508297e-09 8.831897642e-10 7.564521335e-10 6.143619846e-10 9.415347476e-10 7.054421356e-10 8.918305543e-10 7.244445566e-10 7.794284625e-10 1.263367782e-09 6.954212486e-10 3.736762264e-10 4.112732332e-10 6.187801572e-10 2.883026892e-10 3.191253365e-10 6.463296611e-10 6.336355986e-10 1.254003388e-09 6.236071465e-10 5.479336802e-10 3.570008896e-10 5.231136306e-10 4.809578746e-10 6.085202558e-10 8.786735521e-10 1.199092355e-09 9.25286219e-10 6.02787538e-10 7.879805411e-10 7.304935098e-10 1.110343862e-09 5.798396278e-10 8.843931171e-10 4.344748968e-10 7.808901019e-10 5.894983224e-10 6.053156022e-10 8.148300727e-10 5.630437246e-10 4.124329579e-10 8.071489904e-10 5.131519837e-10 5.506021775e-10 8.182845706e-10 7.332218766e-10 3.950921048e-10 3.385744246e-10 2.784936462e-10 4.56586251e-10 3.535179327e-10 3.974054944e-10 4.416875238e-10 4.461499997e-10 2.230776449e-10 3.765938775e-10 1.392626144e-10 4.697894221e-10 4.935793159e-10 2.961035935e-10 3.083139525e-10 5.197409474e-10 1.395194905e-10 2.665217608e-10 3.009962841e-10 1.278144533e-09 5.892113863e-10 5.949879791e-10 +1.986435363e-10 2.873536888e-10 1.531503638e-10 6.495887671e-10 4.067977378e-10 3.059409238e-10 3.995150851e-10 3.586398459e-10 3.318989735e-10 2.69445737e-10 4.923832777e-10 3.050557462e-10 5.572233255e-10 3.898171694e-10 2.827103288e-10 8.137011386e-10 2.275236875e-10 5.152047675e-10 2.326848197e-10 2.978814497e-10 2.789416096e-10 3.955157625e-10 4.869793084e-10 7.102866709e-10 6.231275189e-10 5.526916329e-10 6.5569238e-10 6.078943469e-10 9.253736936e-10 8.149641676e-10 6.677419588e-10 9.896425061e-10 6.245225559e-10 6.479885845e-10 9.922533461e-10 1.066587232e-09 8.448995697e-10 5.018309847e-10 8.301086107e-10 1.011413204e-09 5.246741226e-10 7.024104815e-10 6.577780021e-10 1.370742546e-09 1.363626127e-09 6.107494669e-10 1.247313388e-09 8.829389947e-10 5.726847997e-10 8.771384863e-10 9.364567584e-10 6.47183269e-10 1.381241243e-09 7.388984486e-10 7.422430625e-10 4.603275855e-10 1.003898166e-09 6.444448324e-10 4.34908525e-10 1.228590128e-09 1.147417873e-09 5.434753258e-10 9.742156393e-10 5.302919814e-10 1.00904852e-09 5.295579949e-10 4.918166973e-10 1.528613199e-09 8.091264427e-10 1.030224154e-09 1.051806776e-09 8.964430582e-10 7.253736566e-10 8.004433027e-10 1.188148714e-09 8.570747251e-10 1.424083685e-09 1.212851265e-09 6.514495806e-10 7.007971414e-10 1.455220976e-09 1.087764094e-09 1.37409285e-09 1.284735746e-09 2.472335944e-09 1.456628508e-09 1.044056286e-09 1.948439951e-09 1.032526276e-09 7.715896411e-10 1.164604658e-09 1.185401724e-09 1.809944541e-09 1.127741491e-09 1.397061894e-09 7.706002715e-10 9.431886459e-10 4.754775933e-10 1.871880581e-09 9.468547096e-10 4.330578937e-10 4.992596134e-10 2.392344366e-10 2.575743879e-10 3.018650882e-10 4.492897971e-10 8.27548671e-10 1.609218499e-09 1.800690546e-09 1.688031296e-09 2.131473011e-09 3.393224793e-09 3.462030717e-09 1.854378601e-09 1.419371487e-09 1.338507011e-09 2.127959029e-09 2.559132218e-09 2.063065652e-09 1.634887579e-09 2.06270744e-09 1.848556127e-09 1.618890328e-09 2.064456207e-09 1.871419687e-09 2.824410879e-09 1.66679493e-09 1.380370974e-09 2.030760811e-09 1.277580405e-09 1.117680922e-09 1.228985539e-09 1.173662643e-09 1.193593197e-09 1.603287192e-09 1.327851316e-09 1.622938326e-09 1.576732113e-09 1.150869477e-09 7.318439761e-10 7.838839047e-10 6.944155573e-10 7.717976877e-10 4.079854823e-10 5.497537563e-10 4.797729374e-10 2.99472462e-10 1.067612214e-10 9.980438259e-11 4.304639523e-10 3.3473483e-10 1.676423993e-10 2.600472896e-10 4.29542812e-10 3.974178095e-10 2.383428305e-10 3.049785512e-10 4.977715323e-10 4.796632971e-10 4.234852501e-10 1.240461894e-09 5.580347846e-10 7.265279008e-10 1.572085218e-09 2.014645213e-09 1.0735036e-09 1.860347389e-09 1.513832006e-09 1.93491299e-09 1.802759647e-09 1.174879898e-09 1.507328184e-09 5.690118559e-10 1.162127228e-09 1.564682722e-09 2.517439147e-09 3.345211933e-09 2.306719606e-09 2.24205582e-09 2.095341814e-09 2.767015031e-09 2.11282493e-09 1.651911981e-09 2.274024944e-09 1.807094761e-09 2.013973802e-09 2.233237242e-09 2.539106031e-09 2.450380878e-09 2.485830044e-09 2.380838287e-09 1.727979217e-09 9.430570192e-10 1.587747621e-09 4.117661256e-10 8.340517146e-10 5.482912019e-10 3.760529481e-10 6.64372514e-10 8.216665794e-10 1.549284303e-09 1.178280283e-09 1.066199414e-09 1.279778343e-09 9.306698221e-10 1.887703805e-09 1.364383171e-09 2.180952661e-09 8.62681372e-10 1.585402542e-09 8.503709639e-10 1.163718112e-09 9.146746454e-10 1.096403789e-09 1.983143507e-09 2.076239611e-09 1.739707514e-09 1.056672204e-09 1.070088953e-09 1.264834811e-09 8.23499447e-10 9.202973394e-10 6.655916901e-10 8.39374766e-10 9.970019364e-10 4.640551125e-10 9.694017015e-10 1.238352702e-09 1.233078215e-09 9.327021244e-10 1.141889936e-09 1.745989448e-09 1.025483612e-09 1.030409746e-09 9.31410376e-10 1.173616532e-09 5.82198288e-10 1.107138968e-09 3.845482781e-10 3.37198979e-10 1.303314104e-09 1.2290607e-09 7.589841979e-10 5.483705075e-10 5.777503915e-10 6.39386324e-10 5.480135242e-10 7.268786356e-10 5.767452725e-10 8.12149642e-10 6.275953042e-10 3.988041731e-10 6.289653193e-10 9.217017655e-10 8.297598167e-10 4.119859172e-10 1.092954328e-09 1.029742056e-09 7.532331948e-10 1.452485648e-09 8.5968276e-10 5.360190464e-10 7.023238682e-10 8.319316144e-10 7.336039752e-10 9.86056417e-10 7.265669459e-10 8.589585614e-10 9.354856818e-10 1.859059148e-09 7.1316195e-10 9.008748409e-10 7.849092045e-10 2.783924813e-10 5.06437882e-10 3.498060551e-10 3.96382825e-10 3.39569909e-10 5.005969687e-10 2.403262801e-10 2.365938715e-10 4.51927534e-10 4.47978449e-10 3.926434202e-10 4.303170812e-10 6.27857685e-10 1.938826084e-10 3.184358673e-10 2.132875049e-10 1.813997621e-10 4.655097732e-10 4.350726937e-10 4.441266479e-10 3.108632029e-10 2.458555604e-10 3.712915609e-10 3.02927014e-10 5.611291761e-10 5.607526028e-10 1.671442392e-10 +1.941042262e-10 4.14676788e-10 3.998902909e-10 3.527655133e-10 5.148347439e-10 1.115235248e-09 3.692816017e-10 3.11028483e-10 7.144623945e-10 8.513072059e-10 2.589265777e-10 1.960955459e-10 4.667688548e-10 2.221706135e-10 2.118203304e-10 1.622476134e-10 3.237529034e-10 6.435880458e-10 8.122996831e-10 3.950157567e-10 3.673059751e-10 2.257517531e-10 3.486348265e-10 7.142427528e-10 1.134990721e-09 8.979289723e-10 6.981467722e-10 4.714625257e-10 8.607981371e-10 6.7963473e-10 3.138940909e-10 6.731675251e-10 9.436072162e-10 7.4156806e-10 1.113332746e-09 9.106217642e-10 6.841103005e-10 2.791702342e-10 9.92937784e-10 5.338928829e-10 8.315643578e-10 7.169081072e-10 5.341415674e-10 8.235278939e-10 1.436845859e-09 4.945339591e-10 8.405398788e-10 6.65256585e-10 5.059489098e-10 8.479984594e-10 9.130852872e-10 6.921125854e-10 3.580759448e-10 4.93506996e-10 4.009372883e-10 4.482463273e-10 4.504064048e-10 8.834356391e-10 8.468773097e-10 6.864945388e-10 1.125376005e-09 8.402852459e-10 1.082532197e-09 7.817151077e-10 1.29755119e-09 1.108115706e-09 1.190376273e-09 8.805428612e-10 9.388910248e-10 1.075123439e-09 1.235710073e-09 7.43105076e-10 7.6531261e-10 7.413954387e-10 9.320799747e-10 2.06216635e-10 9.801931655e-10 7.77375587e-10 4.023753315e-10 7.285288113e-10 2.165760487e-09 1.689294164e-09 2.011194498e-09 1.881338326e-09 1.714295502e-09 1.364464925e-09 1.283020259e-09 9.841200215e-10 1.484351674e-09 2.075878669e-09 2.206915955e-09 1.813106158e-09 1.280687439e-09 9.462945343e-10 1.507155965e-09 1.006172842e-09 1.23480343e-09 1.20646697e-09 1.051274572e-09 6.141700334e-10 1.095950757e-09 5.203422105e-10 3.706798128e-10 3.450533673e-10 4.275306034e-10 5.80475426e-10 8.604552476e-10 1.848448471e-09 1.413653063e-09 3.117712998e-09 2.613438346e-09 9.896551502e-10 1.776644606e-09 3.167748501e-09 2.100155288e-09 1.48346078e-09 1.570404352e-09 1.483343752e-09 1.436250939e-09 1.731925617e-09 1.96634431e-09 1.907061981e-09 3.021078348e-09 1.816013895e-09 2.178361703e-09 1.022584235e-09 9.397539758e-10 1.858142965e-09 1.692398309e-09 1.933007193e-09 1.497670332e-09 1.342027609e-09 1.063218285e-09 1.520443716e-09 1.394239088e-09 8.153701974e-10 9.536306994e-10 9.806660265e-10 8.518704107e-10 1.81238674e-09 6.37241428e-10 2.996220844e-10 2.614049741e-10 2.853557399e-10 4.368815458e-10 3.054178447e-10 1.701166386e-10 1.7127161e-10 1.574041463e-10 1.457491891e-10 2.914745546e-16 1.814972653e-10 2.437805862e-10 1.47225756e-10 1.087031121e-10 1.11630691e-10 5.295126287e-11 2.343032902e-10 4.286203568e-10 6.313650829e-10 4.344191818e-10 7.521169003e-10 5.423168889e-10 9.645003455e-10 1.009146393e-09 8.145372505e-10 1.743010156e-09 1.332608698e-09 1.456130647e-09 1.780947663e-09 1.945860803e-09 1.307340514e-09 1.653983552e-09 1.02651276e-09 1.714046305e-09 2.009883842e-09 2.996285748e-09 3.672401957e-09 3.280145296e-09 3.176688519e-09 2.195487864e-09 1.752984774e-09 2.076192181e-09 1.426130267e-09 1.467329212e-09 1.100858107e-09 2.562220487e-09 1.663274985e-09 2.562244317e-09 2.533669042e-09 2.502104543e-09 2.514844132e-09 1.294341461e-09 5.427505564e-10 8.121078627e-10 8.811639174e-10 3.098440946e-10 4.443170359e-10 5.969977689e-10 7.436751538e-10 1.391935379e-09 1.08175419e-09 1.494109565e-09 1.492154663e-09 7.498854489e-10 1.105721272e-09 1.128812523e-09 8.589608883e-10 6.069252622e-10 1.291611835e-09 1.985018586e-09 1.431182812e-09 1.411314148e-09 9.609001328e-10 1.557096435e-09 1.508902693e-09 1.404713187e-09 9.106252506e-10 9.737989104e-10 1.01352322e-09 6.594089511e-10 9.98439791e-10 3.648487025e-10 7.365228559e-10 6.900317644e-10 9.154730904e-10 6.320726874e-10 7.560503545e-10 5.252832821e-10 4.989964797e-10 1.341309748e-09 1.425189401e-09 7.424401482e-10 7.087849536e-10 6.651074959e-10 8.62024452e-10 9.720987736e-10 9.727021943e-10 8.384165767e-10 8.977003659e-10 1.018615457e-09 5.271738343e-10 6.943838305e-10 5.089458338e-10 5.027393674e-10 7.521705983e-10 5.226189433e-10 1.209574262e-09 1.007170478e-09 7.598529531e-10 6.461945154e-10 4.390241033e-10 1.038339423e-09 1.189139839e-09 7.546098978e-10 9.279604433e-10 7.495638452e-10 7.918487573e-10 5.520562965e-10 9.117818319e-10 4.153944002e-10 9.28988021e-10 6.896996608e-10 1.229739978e-09 6.112486762e-10 1.135885279e-09 4.884273768e-10 8.482696262e-10 5.022905556e-10 7.917768497e-10 5.216176153e-10 6.175035179e-10 4.922901052e-10 3.509416891e-10 6.566819292e-10 6.468998659e-10 4.846979805e-10 4.919162667e-10 1.006358958e-09 4.473931835e-10 9.411610404e-10 8.16211087e-10 2.383852966e-10 9.5428943e-10 3.413366042e-10 4.93757988e-10 3.486469794e-10 5.869750218e-10 3.184855593e-10 4.456252877e-10 2.616250562e-10 1.464878285e-10 5.369656222e-10 8.281942246e-10 2.133670859e-10 3.098502263e-10 9.634302789e-10 4.084752889e-10 2.291844403e-10 2.703540779e-10 +2.502347546e-10 2.06414141e-10 1.371642437e-10 3.220722552e-10 1.551486308e-10 8.667601875e-10 3.710774355e-10 4.099303093e-10 5.082866406e-10 3.866999957e-10 1.555708786e-10 2.783910378e-10 4.136367663e-10 4.205200808e-10 5.936537119e-10 1.325830965e-10 3.866533038e-10 7.125906522e-10 2.341783931e-10 3.486506985e-10 4.570328088e-10 5.236856465e-10 1.784242027e-10 4.841677381e-10 5.260203989e-10 1.497727435e-10 8.096746264e-10 9.3304294e-10 3.881899118e-10 5.097309084e-10 1.217328954e-09 8.978012241e-10 5.163094936e-10 1.080414924e-09 1.213494871e-09 1.016156493e-09 1.359492662e-09 6.534064526e-10 4.701556431e-10 3.60285832e-10 4.580125286e-10 1.08275353e-09 8.595453677e-10 1.028155623e-09 8.503806825e-10 9.232806491e-10 6.375936022e-10 7.187112577e-10 1.064988686e-09 4.093672275e-10 5.06887186e-10 4.48286258e-10 1.023840246e-09 6.916078493e-10 4.917108972e-10 1.149103645e-09 7.43872431e-10 8.428924384e-10 6.753445898e-10 8.908146657e-10 8.562947578e-10 9.711016705e-10 1.055841071e-09 1.248627599e-09 7.233159233e-10 7.65882677e-10 6.160458501e-10 7.307461137e-10 6.49385192e-10 9.504869293e-10 8.142139711e-10 1.14719047e-09 6.779058863e-10 1.108094047e-09 1.12764276e-09 6.625729825e-10 6.349284122e-10 8.65288717e-10 1.40640924e-09 1.828179722e-09 1.338539999e-09 1.070380566e-09 2.108357263e-09 8.863433321e-10 1.07118446e-09 1.86719741e-09 1.349065095e-09 1.207303645e-09 1.353888012e-09 1.367169617e-09 1.025752471e-09 1.736732928e-09 1.278714296e-09 9.406570648e-10 7.323719917e-10 9.030021657e-10 1.224072969e-09 1.435867588e-09 9.969942756e-10 7.263686772e-10 5.230728877e-10 1.034125857e-09 3.031481165e-10 4.861592954e-10 1.190730192e-09 6.318757759e-10 7.962348137e-10 3.894985962e-09 2.365011328e-09 2.433230161e-09 4.106914975e-09 1.629537307e-09 1.012688928e-09 1.344141735e-09 1.42569707e-09 2.130737527e-09 2.150022549e-09 1.563300615e-09 1.357553022e-09 2.179417001e-09 2.568062166e-09 3.376478279e-09 2.337101265e-09 2.656681395e-09 1.670403455e-09 1.000183859e-09 2.450064583e-09 9.820820812e-10 9.841443284e-10 1.406526183e-09 1.921592075e-09 1.891020799e-09 1.756974582e-09 1.29624873e-09 1.563001624e-09 8.142893438e-10 9.13212008e-10 5.46431899e-10 2.948728356e-10 5.149098614e-10 6.03810088e-10 3.899693931e-10 1.13534256e-10 1.068060699e-10 5.887686385e-11 1.723539115e-10 7.413980991e-11 4.334242159e-11 6.297240054e-11 7.131579915e-11 8.984872631e-11 1.578585655e-10 3.912378003e-10 2.717043172e-10 1.427829114e-10 7.156069166e-11 7.159275533e-10 6.877326416e-11 2.517752948e-10 2.872876097e-10 6.505232847e-11 4.369504782e-10 7.149452366e-10 9.427596592e-10 1.325162479e-09 8.964139299e-10 1.257310534e-09 1.005426271e-09 1.253099516e-09 2.010506706e-09 1.779769988e-09 1.992971806e-09 1.436914919e-09 1.940994815e-09 1.660803739e-09 2.090546149e-09 2.038283089e-09 2.887049903e-09 2.230108287e-09 1.277835748e-09 2.930728032e-09 2.186481226e-09 1.778811301e-09 2.063535652e-09 2.766601894e-09 1.152601151e-09 3.162824169e-09 1.282042999e-09 1.105646127e-09 2.117876121e-09 1.85668878e-09 2.438109213e-09 1.751899213e-09 1.119852729e-09 7.552499881e-10 9.702880613e-10 3.630789951e-10 3.943556317e-10 7.121919828e-10 4.339400612e-10 5.835574153e-10 1.072775247e-09 1.958292127e-09 1.443013822e-09 1.849877362e-09 1.902081743e-09 9.778381345e-10 6.028564368e-10 1.016743112e-09 9.068000858e-10 1.671246223e-09 1.697193591e-09 1.820490569e-09 1.502168845e-09 1.37554334e-09 1.860577447e-09 1.037926102e-09 1.604907196e-09 1.674533609e-09 1.444007083e-09 9.135872734e-10 1.487711674e-10 8.359757896e-10 5.17945994e-10 6.669422897e-10 1.05425322e-09 1.484092038e-09 1.093171272e-09 9.140334811e-10 8.681567821e-10 8.423294568e-10 1.235158372e-09 6.684663549e-10 9.045397308e-10 1.053074277e-09 1.073643949e-09 9.30287809e-10 9.169372414e-10 1.198369835e-09 1.054636847e-09 9.401939299e-10 5.310948284e-10 1.075469074e-09 8.486042822e-10 6.146436952e-10 7.363763016e-10 8.530766239e-10 7.558896748e-10 6.414196045e-10 5.834270052e-10 4.552810239e-10 1.238376438e-09 1.286750258e-09 8.374145719e-10 4.978049445e-10 6.660581399e-10 1.466905408e-09 1.036996118e-09 5.474851675e-10 4.127915483e-10 5.496080946e-10 9.969020233e-10 8.152994721e-10 1.171978182e-09 7.652780651e-10 6.956396215e-10 8.217802788e-10 7.408400765e-10 7.751721062e-10 8.352047275e-10 5.724178034e-10 4.609871991e-10 6.22002608e-10 4.730338511e-10 7.795617479e-10 2.938282564e-10 2.450328874e-10 1.551418171e-10 4.154075682e-10 4.755187002e-10 1.962365127e-10 5.165963902e-10 3.812185493e-10 7.072782225e-11 2.532426863e-10 4.573507537e-10 5.801074422e-10 2.302090585e-10 6.477228444e-10 6.45741595e-10 3.405166731e-10 4.609417409e-10 1.0325782e-10 3.997522975e-10 4.899869936e-10 1.089953025e-10 4.110853088e-10 3.950846263e-10 4.209908248e-10 3.456171847e-10 +1.908806822e-10 7.732782481e-10 3.125949877e-10 4.024711164e-10 3.460398477e-10 1.001262877e-09 1.279005204e-10 2.979231738e-10 3.040326065e-10 3.063881904e-10 3.619510028e-10 3.808396523e-10 5.979270594e-10 5.785386536e-10 3.539436685e-10 6.086922094e-10 6.716311147e-10 1.907763804e-10 5.475638689e-10 4.152832866e-10 3.117536991e-10 2.156973626e-10 6.581482738e-10 7.735927484e-10 6.636898367e-10 7.876520995e-10 6.657006572e-10 8.16834748e-10 5.206344183e-10 8.765245298e-10 5.37431041e-10 7.156972437e-10 4.396693644e-10 9.066915444e-10 8.427016601e-10 1.149002165e-09 1.17416794e-09 9.937680585e-10 7.777387371e-10 7.515803927e-10 7.315506449e-10 3.913713372e-10 4.474757322e-10 1.497464684e-09 4.122755155e-10 9.077367175e-10 1.142522039e-09 7.837102207e-10 8.797287704e-10 1.191271234e-09 5.065051025e-10 4.384682158e-10 7.483222646e-10 1.153296713e-09 9.761653351e-10 1.072524442e-09 9.890120105e-10 4.783671316e-10 8.015510144e-10 3.772937505e-10 7.811185639e-10 9.080454345e-10 6.285508029e-10 6.299174609e-10 9.480454719e-10 1.161149991e-09 7.993577529e-10 1.112858843e-09 8.340917211e-10 2.104739664e-09 1.048600854e-09 1.056199861e-09 8.482516096e-10 4.444378004e-10 7.060930918e-10 8.123045367e-10 1.141030681e-09 7.147178992e-10 6.032296598e-10 7.598339696e-10 1.021697835e-09 8.507326604e-10 8.963505179e-10 1.734356952e-09 1.563034266e-09 1.091956606e-09 1.107983119e-09 1.063631481e-09 1.132073018e-09 1.391272644e-09 1.163841456e-09 1.485791735e-09 7.194439391e-10 1.680423651e-09 1.629400594e-09 1.303514207e-09 1.44989623e-09 1.097614659e-09 9.483464365e-10 8.755678867e-10 5.271605345e-10 5.220266744e-10 5.864067173e-10 4.819571278e-10 7.173362562e-10 1.115963835e-09 9.702791714e-10 1.695536369e-09 2.87887487e-09 2.839014641e-09 1.787751103e-09 2.036096292e-09 1.931392058e-09 1.124142319e-09 2.104922806e-09 3.262186754e-09 1.606002977e-09 2.194152303e-09 1.036200187e-09 2.207944232e-09 3.004033808e-09 2.388964195e-09 2.767839714e-09 1.257776437e-09 1.507576816e-09 2.13340792e-09 1.442339972e-09 1.719016718e-09 1.252054473e-09 1.918368994e-09 1.184598815e-09 1.431159329e-09 1.53018583e-09 1.392688259e-09 1.867825608e-09 9.356613073e-10 8.250637674e-10 2.020256876e-10 7.529847695e-10 3.064967172e-10 2.118844838e-10 1.847493751e-10 1.15569052e-10 4.380702876e-10 2.152596682e-10 7.564643539e-11 2.149214814e-10 3.995835034e-10 1.520899541e-10 2.193330424e-10 3.217715998e-10 0 3.131753163e-10 3.111423484e-10 8.272118933e-11 8.896053155e-11 4.598069704e-10 5.68882249e-10 7.605715073e-11 1.479883487e-10 5.668605187e-10 5.61636348e-10 5.210658104e-10 8.662794058e-10 6.207283509e-10 1.185686862e-09 4.27110756e-10 1.285716002e-09 5.283686143e-10 1.562280753e-09 1.18602068e-09 1.37605397e-09 1.559487083e-09 1.551421905e-09 8.83836118e-10 1.637332295e-09 1.847946151e-09 1.758309734e-09 1.95214091e-09 2.811443708e-09 2.201269179e-09 1.657359533e-09 1.866472938e-09 2.667047338e-09 1.331338341e-09 1.412791102e-09 2.218115328e-09 2.707833402e-09 1.500861399e-09 1.94754512e-09 1.723285827e-09 2.073051596e-09 2.84207516e-09 1.293106074e-09 7.161169038e-10 8.201277911e-10 7.373196691e-10 3.396966963e-10 4.78261681e-10 7.599961076e-10 8.022556024e-10 6.707181445e-10 8.963059992e-10 1.080343812e-09 9.287422516e-10 1.014942146e-09 1.244642046e-09 1.488562665e-09 1.030149336e-09 1.456629718e-09 1.857141028e-09 2.377468879e-09 7.726479161e-10 1.453809191e-09 1.773721744e-09 8.840932901e-10 1.143079668e-09 2.456229519e-09 1.052825525e-09 1.264726018e-09 6.566931419e-10 7.87812744e-10 6.110372568e-10 9.996368803e-10 7.129875369e-10 7.185172407e-10 6.41800923e-10 9.388945416e-10 7.731497581e-10 8.282174863e-10 1.927566018e-09 1.432059576e-09 1.295021355e-09 1.146781657e-09 1.039366859e-09 1.507987481e-09 1.294355686e-09 1.01194358e-09 4.920441129e-10 6.584204662e-10 9.242409711e-10 6.27142567e-10 7.791668698e-10 1.19291494e-09 8.13943361e-10 6.703883128e-10 6.527971529e-10 4.236189123e-10 1.181619852e-09 4.559902569e-10 4.70310005e-10 7.577296861e-10 4.078390997e-10 8.478786877e-10 1.067675302e-09 5.902161863e-10 8.590597615e-10 8.334101103e-10 4.827812218e-10 8.725189188e-10 1.12179784e-09 8.693451478e-10 1.553923729e-09 2.282930388e-10 8.259507703e-10 8.394568532e-10 6.947692591e-10 9.792989929e-10 5.456192748e-10 5.655606542e-10 3.292693796e-10 5.97110054e-10 4.574553859e-10 3.006596672e-10 6.092203428e-10 1.266031558e-10 3.728052402e-10 2.823138404e-10 4.244987527e-10 2.889596261e-10 6.991258725e-10 3.19449144e-10 2.279164593e-10 6.009660046e-10 5.986131379e-10 7.069478062e-10 1.077544338e-10 2.332924911e-10 1.03603011e-09 3.532951149e-10 3.486188636e-10 8.55447865e-10 4.528039456e-10 4.85064059e-10 3.466306531e-10 2.467175806e-10 7.934760209e-10 2.794008037e-10 2.657909543e-10 8.125939217e-10 +7.326423498e-10 5.141128206e-10 4.786903876e-10 2.763222983e-10 1.089501259e-09 6.548455753e-10 7.119274354e-10 6.841445729e-10 4.638075945e-10 4.504960522e-10 2.326212704e-10 3.326208555e-10 3.347898521e-10 4.610425739e-10 1.761581193e-10 5.42660898e-10 4.19019534e-10 8.732128115e-10 3.614219542e-10 4.959636201e-10 3.527104924e-10 9.028554141e-10 1.853901568e-10 2.040105965e-10 2.612015224e-10 2.769720805e-10 3.957912167e-10 4.727815511e-10 3.68124012e-10 7.482527538e-10 5.856122942e-10 9.887411099e-10 7.661036552e-10 1.158601527e-09 5.894813934e-10 7.436050314e-10 1.034778094e-09 6.725167424e-10 5.499849048e-10 9.695127241e-10 7.771210275e-10 4.002292029e-10 5.806535487e-10 7.290681712e-10 4.917570255e-10 1.244042715e-09 1.487411307e-09 7.374310364e-10 1.079625026e-09 1.010628907e-09 5.554329402e-10 8.204820105e-10 6.043710137e-10 4.454472722e-10 1.285857773e-09 5.951639907e-10 3.098544553e-10 8.437798018e-10 1.013034195e-09 8.849156875e-10 8.348534974e-10 7.360866826e-10 1.071709629e-09 9.832860917e-10 1.258988396e-09 1.314246716e-09 7.993728289e-10 1.265968881e-09 9.285008461e-10 7.532022276e-10 1.22264693e-09 1.206705038e-09 6.086690839e-10 4.524991813e-10 8.496527222e-10 2.894670112e-10 9.71935688e-10 8.75877245e-10 8.463433128e-10 8.407637939e-10 1.59416811e-09 9.826755245e-10 1.870251583e-09 2.441265927e-09 1.108234201e-09 1.445466798e-09 1.333448512e-09 2.051294372e-09 9.860426181e-10 6.358882688e-10 8.911551164e-10 1.537085596e-09 8.693889406e-10 1.04076501e-09 1.025753673e-09 1.511631224e-09 1.136856214e-09 1.709116727e-09 1.107158177e-09 8.17604205e-10 9.330184435e-10 6.696456956e-10 2.875963161e-10 5.770831855e-10 1.103084628e-09 1.051378092e-09 1.295969258e-09 2.23190749e-09 2.058787954e-09 2.221755921e-09 1.906479615e-09 1.98447605e-09 1.865408613e-09 1.953682756e-09 1.624459507e-09 2.778004306e-09 1.807339585e-09 1.806967559e-09 2.169796502e-09 2.782921241e-09 3.070419428e-09 2.094464637e-09 1.189034132e-09 2.105638665e-09 1.298780992e-09 1.311344326e-09 1.708344318e-09 1.1109532e-09 1.844563161e-09 1.821431459e-09 1.592548341e-09 1.128690939e-09 1.127445659e-09 8.691532076e-10 7.356756456e-10 7.684414593e-10 3.382678275e-10 3.630204506e-10 7.764913394e-11 4.898150289e-10 5.546248769e-10 2.379006322e-10 1.286605442e-10 1.869774006e-11 1.761189548e-10 8.867969557e-11 2.468853644e-10 1.417793125e-10 3.326861854e-10 2.471765367e-19 2.517005612e-10 8.048757213e-11 1.419751533e-10 5.382060427e-11 2.736601191e-10 2.020308768e-15 2.059172581e-10 1.722712394e-10 9.091062529e-11 1.444525104e-10 7.931179574e-19 1.044644134e-10 2.530675625e-10 2.516221486e-10 2.809285374e-10 9.920681443e-10 1.20795828e-09 1.335415778e-09 1.52856201e-09 1.005840922e-09 1.850919713e-09 1.241344933e-09 2.260095742e-09 1.078689728e-09 1.647181877e-09 2.376082551e-09 1.624210836e-09 3.123056795e-09 1.934570404e-09 1.846225352e-09 4.52419377e-09 1.66672628e-09 1.990254626e-09 1.598418551e-09 3.145048112e-09 1.06807158e-09 1.468613673e-09 2.259680236e-09 3.395122999e-09 2.172873796e-09 2.315103578e-09 1.718315415e-09 1.708008399e-09 1.993959622e-09 9.619678431e-10 1.068534933e-09 9.666585955e-10 1.501366765e-10 5.418040479e-10 8.067376664e-10 1.032920452e-09 9.652991317e-10 1.89761168e-09 8.296970999e-10 7.889011148e-10 1.053516293e-09 5.489648112e-10 1.091906303e-09 9.950054788e-10 1.981794074e-09 6.773678589e-10 1.623512535e-09 1.829892906e-09 1.653913536e-09 1.545046797e-09 2.181463002e-09 1.963345778e-09 1.259344915e-09 1.279409231e-09 7.528141305e-10 9.489928754e-10 9.932504723e-10 7.841095474e-10 1.032957411e-09 4.078728729e-10 1.483429542e-09 9.489907417e-10 5.911670682e-10 8.435221061e-10 7.779631799e-10 1.008251916e-09 1.279380725e-09 9.000031784e-10 7.567672303e-10 1.183488569e-09 1.250511504e-09 6.442176129e-10 9.259326648e-10 1.216860001e-09 6.503437642e-10 9.98010534e-10 1.10212433e-09 8.833777869e-10 4.831132872e-10 3.092060554e-10 1.029280451e-09 6.909091553e-10 8.380672125e-10 1.490182632e-09 6.865794377e-10 1.020239888e-09 1.364694731e-09 1.417984289e-09 6.178870207e-10 9.936835014e-10 8.259499845e-10 6.329924562e-10 1.096741455e-09 6.693892168e-10 7.501393908e-10 7.809724328e-10 9.659938591e-10 7.546833729e-10 8.978456573e-10 8.529333495e-10 1.222784635e-09 7.140429934e-10 5.330250038e-10 3.868335265e-10 5.44375161e-10 5.498942398e-10 7.241629645e-10 4.049718588e-10 3.798400732e-10 3.034175603e-10 3.32306354e-10 4.453011281e-10 3.497740434e-10 4.451559041e-10 1.369272207e-10 3.458427561e-10 4.655773766e-10 2.203363766e-10 1.794300401e-10 5.695398557e-10 4.215593408e-10 1.724748286e-10 6.308532285e-10 4.449945579e-10 9.960686977e-10 3.455072837e-10 1.436421334e-10 3.486324901e-10 1.616505841e-10 7.45029027e-10 2.900508118e-10 5.586225585e-10 1.728786302e-10 1.262968681e-10 3.424243415e-10 +1.205953434e-09 3.502734571e-10 5.445467029e-10 1.489522468e-10 2.634676688e-10 4.608079372e-10 4.596156672e-10 7.168451303e-10 2.256609902e-10 7.143763022e-10 4.045039364e-10 8.883283885e-10 6.995552082e-10 1.908272297e-10 4.816261192e-10 4.928343926e-10 3.421619988e-10 5.355626098e-10 6.709445065e-10 4.069638315e-10 4.043514262e-10 5.063545544e-10 3.190890185e-10 4.299247068e-10 1.459256793e-10 7.773359155e-10 7.422111515e-10 8.902848275e-10 7.054650572e-10 4.388932859e-10 5.051414656e-10 6.441285037e-10 7.679899124e-10 8.975428082e-10 5.69219503e-10 6.204838599e-10 4.043470048e-10 8.687983736e-10 8.732917402e-10 1.555789869e-09 6.467485969e-10 4.900252928e-10 6.975232164e-10 6.217727249e-10 1.504905937e-09 5.938382979e-10 3.280175e-10 8.037998309e-10 4.993069035e-10 7.334372581e-10 1.381426116e-09 1.167837103e-09 7.937608597e-10 9.658977116e-10 5.853529856e-10 7.223031252e-10 7.323057189e-10 5.69322268e-10 8.878768985e-10 1.127645022e-09 8.46957657e-10 6.344066122e-10 7.551252514e-10 8.621629755e-10 6.700584996e-10 7.465784508e-10 9.064284359e-10 1.106932028e-09 1.560274502e-09 1.217631537e-09 1.523864653e-09 8.97818699e-10 9.276143327e-10 1.307570259e-09 6.541024163e-10 1.269251348e-09 5.457142572e-10 1.017977287e-09 9.630268256e-10 1.402547291e-09 7.239834035e-10 1.114226328e-09 1.443521383e-09 1.788643349e-09 2.097242481e-09 1.78402995e-09 1.33631621e-09 1.62569529e-09 9.994328727e-10 1.260989426e-09 4.725499217e-10 1.788675418e-09 1.907932737e-09 1.059502613e-09 1.102867582e-09 1.1495615e-09 1.2242108e-09 8.082644957e-10 1.782148318e-09 7.577834078e-10 6.387639383e-10 2.668365643e-10 6.133420653e-10 6.324448679e-10 7.575682424e-10 8.352031873e-10 9.895721794e-10 1.606874376e-09 3.422897055e-09 1.302421365e-09 1.879874742e-09 2.468733086e-09 2.244963277e-09 2.246581222e-09 1.691537896e-09 1.513596349e-09 1.497191304e-09 2.996924113e-09 1.646305568e-09 2.558316138e-09 4.300526978e-09 2.74862434e-09 1.157596713e-09 1.376542951e-09 8.600362046e-10 2.151223735e-09 1.390882414e-09 1.335015749e-09 2.173899901e-09 1.813487494e-09 1.665308789e-09 8.216380413e-10 7.927097016e-10 1.027880033e-09 4.235519208e-10 5.865643073e-10 9.136020899e-11 2.190940137e-10 6.313922247e-10 1.986229098e-21 1.10058596e-10 8.07683794e-12 1.632009804e-10 1.644984037e-10 3.027516905e-10 0 2.526364248e-10 1.402366213e-10 8.155287959e-11 1.043316793e-10 1.36416126e-10 1.563338588e-10 1.985223799e-10 1.453057781e-10 5.696443283e-10 9.421641465e-11 7.495730434e-13 2.473322637e-10 3.045746511e-10 1.523482075e-10 3.102220491e-10 3.250147778e-10 3.664819066e-11 2.531730219e-10 1.550194075e-10 5.441277234e-10 5.203535627e-10 1.140477087e-09 1.31469832e-09 1.844031189e-09 2.080995447e-09 1.430672101e-09 2.017579095e-09 1.207652047e-09 1.180328476e-09 1.919637061e-09 1.131819557e-09 1.166077811e-09 2.514885431e-09 2.264213573e-09 1.940543748e-09 3.8938835e-09 2.914871489e-09 1.496744126e-09 2.452410981e-09 2.205226955e-09 7.634497267e-10 2.036362723e-09 1.992000216e-09 1.11497168e-09 2.512081371e-09 2.394870902e-09 2.686084322e-09 2.943309586e-09 8.958107482e-10 8.134484905e-10 5.946498406e-10 2.900155529e-10 1.910116177e-10 5.147936119e-10 7.672926889e-10 8.485736306e-10 9.562544336e-10 1.334882697e-09 1.628275134e-09 6.535973856e-10 1.451345596e-09 1.713452012e-09 1.155750996e-09 1.503094335e-09 1.34781208e-09 1.264479e-09 1.445215646e-09 1.746744454e-09 1.441820066e-09 1.303567682e-09 1.285227529e-09 1.982346796e-09 1.603203628e-09 6.041410223e-10 9.713484779e-10 8.529788465e-10 8.24224082e-10 6.006881361e-10 7.245740231e-10 8.302925335e-10 1.559949553e-09 1.313903934e-09 7.983431484e-10 7.374343388e-10 9.279996455e-10 1.349865068e-09 1.090768532e-09 1.0905818e-09 5.009300684e-10 7.16923577e-10 9.683576426e-10 4.510011256e-10 6.034095972e-10 8.288961274e-10 1.226585154e-09 7.330103472e-10 4.824048321e-10 9.128206018e-10 3.881730177e-10 9.330280457e-10 7.505007888e-10 8.189699039e-10 7.821086336e-10 7.010836976e-10 1.110614325e-09 1.317897282e-09 7.105298141e-10 6.252477168e-10 9.382692278e-10 7.939582596e-10 1.444519688e-09 8.329391167e-10 4.180728612e-10 1.359305771e-09 9.678867775e-10 6.230744735e-10 1.001037466e-09 4.416513027e-10 5.317413402e-10 9.40124057e-10 8.427461825e-10 9.403829677e-10 6.555340139e-10 4.055162688e-10 3.729345009e-10 6.762848343e-10 4.274239277e-10 1.168148283e-10 4.779949167e-10 3.522027606e-10 4.23178126e-10 6.199462833e-10 3.296642395e-10 1.720118242e-10 4.428697899e-10 4.000625354e-10 7.714625854e-10 1.41162996e-10 6.92803841e-10 3.228252729e-10 2.866184066e-10 5.006588365e-10 1.809034059e-10 4.514312439e-10 2.344063387e-10 2.377784229e-10 6.404818025e-10 9.00193834e-10 2.621238441e-10 4.631317685e-10 3.61366124e-10 3.065670348e-10 3.863362516e-10 6.143161269e-10 +1.940203861e-10 3.918693303e-10 4.715942164e-10 3.037207669e-10 2.69387277e-10 4.006510602e-10 6.615934761e-10 1.214542383e-10 4.009847214e-10 7.164780306e-10 2.725659048e-10 4.238301e-10 7.144720995e-10 3.27090918e-10 8.41178884e-10 2.062027774e-10 6.026365894e-10 2.125251709e-10 7.470052016e-10 8.060279866e-10 5.130200708e-10 4.495821934e-10 6.828771021e-10 3.235687483e-10 3.379383282e-10 4.940706055e-10 5.501575596e-10 5.469814686e-10 1.038670558e-09 8.299996431e-10 9.211105283e-10 4.465592576e-10 1.179551421e-09 7.522429626e-10 8.496284454e-10 1.323155353e-09 1.01299696e-09 5.845403378e-10 9.458356226e-10 6.263785427e-10 5.302818681e-10 7.655434107e-10 6.760639022e-10 5.367279329e-10 9.313934573e-10 8.895187653e-10 8.396540807e-10 5.646535415e-10 6.888328534e-10 1.158682105e-09 1.510491928e-09 3.844020242e-10 1.02735971e-09 9.724430374e-10 7.561763528e-10 5.821870019e-10 6.602159368e-10 1.405169174e-09 8.79480063e-10 7.441097976e-10 1.073589171e-09 7.345914641e-10 7.858571859e-10 8.833308876e-10 9.498207559e-10 9.591476439e-10 1.294216705e-09 5.966877909e-10 7.875979278e-10 2.303366753e-09 4.265005629e-10 1.35489706e-09 2.960646416e-10 1.058786092e-09 6.373227632e-10 6.061700567e-10 3.859743197e-10 1.089577077e-09 7.273624801e-10 9.215070477e-10 1.780713239e-09 1.205118984e-09 1.433243749e-09 2.894271962e-09 2.399790775e-09 1.826210443e-09 1.605510913e-09 1.988451608e-09 1.57317206e-09 1.486526911e-09 1.084427428e-09 1.415219336e-09 1.44651547e-09 1.331024184e-09 1.18999337e-09 1.521036608e-09 8.481498963e-10 9.601904596e-10 7.425683063e-10 9.268713605e-10 3.574799457e-10 3.759823911e-10 3.148705192e-10 9.529568216e-10 1.091013398e-09 7.151888704e-10 1.641390617e-09 2.365638277e-09 3.183920696e-09 3.252659806e-09 2.739336545e-09 2.823129011e-09 1.769329563e-09 1.734540654e-09 2.076699011e-09 1.924077101e-09 2.108238822e-09 2.635976465e-09 2.447011758e-09 2.008113675e-09 1.825815652e-09 2.428520026e-09 1.139018044e-09 1.357131021e-09 1.027733242e-09 1.319255503e-09 1.529839515e-09 1.922708772e-09 1.929751318e-09 2.021598761e-09 6.687279519e-10 1.054887839e-09 6.884973406e-10 2.927795445e-10 1.754620527e-10 1.27253545e-10 2.01126183e-10 1.242573665e-10 1.02046336e-10 8.806624405e-11 1.167518374e-10 1.323846607e-10 2.38635356e-10 3.925221398e-10 1.307294006e-10 9.106549858e-11 1.054347507e-10 2.620388093e-10 3.94164816e-10 2.409473639e-10 1.832371624e-10 1.447436536e-10 3.118648957e-10 6.756049048e-10 6.443134062e-11 1.289474095e-10 2.192348829e-10 2.339643862e-10 2.666934255e-10 1.631419618e-10 1.079022455e-10 8.580499309e-11 2.769755955e-10 1.36305511e-10 2.132225679e-10 4.542837052e-10 2.903678123e-10 1.165991077e-09 1.549686391e-09 1.275726242e-09 1.857880939e-09 1.712046315e-09 1.741350822e-09 1.710337162e-09 1.791797937e-09 8.592573445e-10 1.02868632e-09 1.743820617e-09 1.734989719e-09 2.583305761e-09 3.787054091e-09 2.915807552e-09 1.67656206e-09 2.116544648e-09 2.721277389e-09 2.087950406e-09 1.911194106e-09 1.701582442e-09 3.290573891e-09 1.918767938e-09 1.714671326e-09 1.252229812e-09 2.41919948e-09 1.877196208e-09 8.672651909e-10 1.227742448e-09 7.312163052e-10 6.376666323e-10 2.929849231e-10 3.146046643e-10 3.233416609e-10 8.170466795e-10 1.186810904e-09 1.47574482e-09 1.10905929e-09 1.22871961e-09 7.524811644e-10 7.973211108e-10 1.573120571e-09 1.544493896e-09 8.837319197e-10 1.088442274e-09 1.081707672e-09 1.285654496e-09 1.46309282e-09 2.094260928e-09 1.408746645e-09 1.510987813e-09 1.588409026e-09 1.016843259e-09 8.282213773e-10 3.544390151e-10 2.926405679e-10 9.91140751e-10 1.410460399e-09 9.123479666e-10 1.141103784e-09 1.377298433e-09 1.840152433e-09 1.345163762e-09 1.14721856e-09 1.2880269e-09 5.523865953e-10 8.439897216e-10 9.340297707e-10 7.447897968e-10 7.977763324e-10 6.019885197e-10 1.896567594e-09 7.199313829e-10 3.980588453e-10 1.225967735e-09 8.285178864e-10 3.983970075e-10 1.121501999e-09 3.45357819e-10 9.021550539e-10 7.104799563e-10 9.693340375e-10 5.930083903e-10 1.010914477e-09 1.032185293e-09 1.123347342e-09 1.02075721e-09 8.235083032e-10 8.680774283e-10 3.639027627e-10 9.945759366e-10 1.131839246e-09 6.044202053e-10 1.246287412e-09 9.141505748e-10 8.752262564e-10 6.613370045e-10 1.329308828e-09 1.086927265e-09 6.724005532e-10 1.024476382e-09 5.347347783e-10 6.628432207e-10 4.645784139e-10 4.30853578e-10 5.942178975e-10 3.978751493e-10 2.445801896e-10 4.342954749e-10 1.564043181e-10 5.397948831e-10 4.235083793e-10 1.506579121e-10 4.036603817e-10 3.999095229e-10 3.699889707e-10 6.25522243e-10 1.27879938e-10 5.121047914e-10 8.065844697e-10 7.520000955e-11 5.896574041e-10 7.476002779e-10 8.839677799e-10 6.132017012e-10 3.471879891e-10 3.931510238e-10 2.788453257e-10 2.592965349e-10 6.099842279e-10 2.989034714e-10 4.480983716e-10 9.617325985e-10 +2.912663065e-10 3.778178015e-10 7.677964104e-10 8.029437729e-10 5.455066022e-10 5.069153261e-10 8.797452076e-10 8.431262694e-10 2.844743907e-10 3.412638019e-10 4.736181885e-10 2.139374756e-10 3.897339024e-10 2.976821294e-10 5.682477972e-10 2.432744021e-10 1.864039381e-10 6.904528987e-10 2.871478585e-10 4.238189134e-10 4.611532434e-10 4.37582962e-10 7.431862713e-10 2.662610146e-10 2.378577849e-10 4.962897983e-10 3.707896251e-10 4.081796642e-10 5.146379579e-10 6.448973322e-10 6.267078033e-10 9.048148162e-10 6.616539551e-10 9.136362808e-10 1.366148565e-09 9.317349601e-10 8.72161347e-10 1.172653845e-09 1.471387042e-09 8.76672022e-10 1.219023752e-09 5.595948278e-10 8.025658115e-10 5.846606845e-10 1.059599806e-09 5.336976914e-10 5.103621615e-10 9.631141753e-10 5.571257577e-10 6.454850347e-10 8.266417658e-10 8.762917547e-10 6.121069676e-10 9.725430986e-10 7.084386157e-10 7.06911886e-10 1.162347657e-09 4.07577152e-10 3.646580234e-10 7.453580679e-10 8.241629839e-10 1.418189537e-09 1.065941411e-09 1.216009004e-09 9.265461145e-10 1.233707369e-09 1.230827486e-09 8.397134455e-10 1.518978518e-09 1.079927964e-09 1.53101177e-09 7.700484479e-10 7.834440451e-10 6.037545813e-10 8.592924576e-10 1.199966535e-09 5.453653074e-10 1.056483503e-09 1.156061714e-09 1.373341333e-09 9.508090207e-10 8.525399727e-10 1.582032845e-09 2.409656612e-09 1.200705619e-09 1.605326251e-09 7.87024077e-10 1.811022738e-09 1.208177026e-09 1.084627588e-09 1.195454591e-09 7.668975809e-10 1.442279058e-09 1.732454135e-09 8.863490466e-10 8.320852794e-10 1.058893195e-09 1.622522993e-09 6.695274805e-10 9.776760917e-10 4.286526692e-10 4.53579764e-10 2.872619272e-10 6.763424681e-10 8.683878289e-10 1.535837448e-09 2.185280744e-09 3.861568375e-09 1.530033109e-09 2.71228865e-09 1.950563273e-09 1.192828665e-09 3.519175439e-09 1.815226505e-09 3.494925669e-09 1.896495837e-09 1.29164383e-09 2.371559436e-09 2.463736917e-09 2.291982014e-09 1.59789378e-09 1.720196903e-09 1.482458851e-09 1.241072122e-09 1.385376934e-09 1.186086024e-09 2.001624239e-09 1.538758573e-09 1.680112889e-09 1.155428323e-09 1.016286496e-09 1.687231072e-09 4.639248836e-10 9.75101924e-11 3.327623527e-10 3.014528283e-10 0 1.804946022e-10 0 3.469884285e-10 8.967671059e-11 4.796983851e-10 4.561421352e-10 1.588801521e-10 4.542981899e-10 3.802033916e-10 7.679772506e-10 7.609877076e-10 1.134424982e-09 6.080795241e-10 1.434267316e-09 1.283350076e-09 6.150644522e-10 7.420031512e-10 6.768309409e-10 4.268425969e-10 5.29301765e-10 3.709474529e-10 7.850270448e-11 2.526017215e-10 2.949814979e-10 8.924501117e-11 2.228876916e-10 1.788916166e-10 2.197702737e-10 1.430773889e-10 5.169212334e-10 7.746196313e-10 1.074100127e-09 1.012363293e-09 1.633154325e-09 7.929929831e-10 1.481021651e-09 1.252980874e-09 1.538007582e-09 1.095880471e-09 1.17445278e-09 1.246057288e-09 1.491114385e-09 3.365767476e-09 2.534099263e-09 3.533024489e-09 3.394764071e-09 1.96446593e-09 1.319133145e-09 1.922535753e-09 1.166852815e-09 2.027913868e-09 3.285209309e-09 2.047143869e-09 2.167595698e-09 1.685613234e-09 3.215293256e-09 1.823881619e-09 2.376847683e-09 7.013090419e-10 9.007788473e-10 8.266980912e-10 2.156548105e-10 6.127443237e-10 5.414714553e-10 1.596660456e-09 1.016293339e-09 1.577088108e-09 1.237038872e-09 1.735862204e-09 8.881818195e-10 1.640930395e-09 1.719767387e-09 1.915607452e-09 1.088484946e-09 1.623546035e-09 1.46065547e-09 1.239588553e-09 1.757920752e-09 6.144141583e-10 2.58880519e-09 9.879052268e-10 1.786243451e-09 1.67877448e-09 1.164324468e-09 1.214295879e-09 5.790116167e-10 7.269500601e-10 1.123514033e-09 9.220729641e-10 5.841912327e-10 8.480631678e-10 7.472791676e-10 1.046817521e-09 1.316464173e-09 1.538666129e-09 2.287604397e-10 8.658929567e-10 7.159628544e-10 9.46800171e-10 1.265452064e-09 5.795334259e-10 5.918025106e-10 1.359740765e-09 1.552443773e-09 1.167798313e-09 3.804528026e-10 6.802749311e-10 5.920239155e-10 3.574332198e-10 3.66167746e-10 4.293140792e-10 1.315971651e-09 9.656940104e-10 7.468711136e-10 7.829377212e-10 5.850993657e-10 8.514375091e-10 1.076401633e-09 8.892015012e-10 8.690527795e-10 4.882449693e-10 6.683477743e-10 4.484072754e-10 5.028721065e-10 9.043424663e-10 5.226807665e-10 9.247587685e-10 1.105814394e-09 7.157933272e-10 6.427785254e-10 7.001418905e-10 3.240358486e-10 4.351267465e-10 6.560893421e-10 5.854399069e-10 6.211984405e-10 4.20045109e-10 5.529955758e-10 4.282546023e-10 5.849577895e-10 4.190301958e-10 3.646453437e-10 1.930618634e-10 4.246296871e-10 4.730385863e-10 5.944240392e-10 5.227151183e-10 8.321021366e-10 2.88340665e-10 3.330072275e-10 4.82183415e-10 3.719645674e-10 5.178715885e-10 2.061986939e-10 7.17217096e-10 4.126061771e-10 3.326221232e-10 2.693919269e-10 6.834898515e-10 8.359964653e-10 6.492172473e-10 3.310295862e-10 3.718601643e-10 +8.068336622e-10 3.6283844e-10 4.17489881e-10 3.759080541e-10 5.59677671e-10 3.506790579e-10 5.061808562e-10 2.432080073e-10 2.104069017e-10 8.16878901e-10 2.836038612e-10 4.579119665e-10 3.235931421e-10 7.874089733e-10 7.199873487e-10 7.936626028e-10 3.313542234e-10 5.454737264e-10 2.575997143e-10 3.426094203e-10 5.26698554e-10 4.664033523e-10 2.601208608e-10 6.172609555e-10 3.874191632e-10 9.061741841e-10 2.330877234e-10 3.904014996e-10 3.744913568e-10 6.40250462e-10 4.928657741e-10 4.423275404e-10 4.033354589e-10 5.250313621e-10 1.140275118e-09 1.176036328e-09 1.150197422e-09 3.812060297e-10 8.496842572e-10 5.923843594e-10 9.874835089e-10 7.560969193e-10 4.132021311e-10 7.512527096e-10 5.211691785e-10 2.206934519e-09 1.709324306e-09 9.212764081e-10 7.700659653e-10 8.612369908e-10 1.200200775e-09 1.055688912e-09 8.696043506e-10 8.96814766e-10 4.04797513e-10 1.191513158e-09 4.193727277e-10 9.085871569e-10 5.827490434e-10 8.673314295e-10 7.97719445e-10 7.318890571e-10 6.273481732e-10 9.03290256e-10 8.787447866e-10 7.121963873e-10 1.357470396e-09 8.210902782e-10 1.632585883e-09 1.097092623e-09 9.102161423e-10 4.548800789e-10 1.460254654e-09 1.315914756e-09 8.354659542e-10 8.8490206e-10 1.08334201e-09 2.655636595e-10 7.387645644e-10 9.4537694e-10 9.437026585e-10 1.360529821e-09 1.674130686e-09 1.869535778e-09 1.435908883e-09 9.218456007e-10 1.677872435e-09 1.25640854e-09 2.106016009e-09 1.045637374e-09 1.587374154e-09 1.69303336e-09 8.808117697e-10 1.94554085e-09 1.053404474e-09 9.201974234e-10 1.055638921e-09 7.965605758e-10 1.22071727e-09 5.326169353e-10 4.025660026e-10 9.842311581e-10 4.519808847e-10 8.754522199e-10 1.204122875e-09 1.675417125e-09 2.08998859e-09 2.242466689e-09 1.854557729e-09 1.903665502e-09 3.101302135e-09 2.89218244e-09 2.052315119e-09 7.735683336e-10 2.201488004e-09 2.181772872e-09 2.43345438e-09 3.099352706e-09 1.784847607e-09 2.122033022e-09 2.118270458e-09 2.216670218e-09 1.204022125e-09 1.839585361e-09 1.11843091e-09 2.503819985e-09 1.434236669e-09 1.683001292e-09 1.804396778e-09 1.297624992e-09 8.47610386e-10 4.746388075e-10 2.395043715e-10 1.913044616e-10 7.846398172e-20 1.619476511e-10 8.30391815e-11 2.358659771e-15 1.008605566e-10 1.529123731e-10 2.681975441e-10 5.798434866e-10 7.176515251e-10 9.611548355e-10 9.209200754e-10 8.730639561e-10 7.134805959e-10 1.284745665e-09 1.493511869e-09 2.105494926e-09 9.022434841e-10 1.40738713e-09 1.14721224e-09 1.451816712e-09 1.127154606e-09 5.361389151e-10 9.259905519e-10 5.652474473e-10 5.688466463e-10 1.778318902e-10 7.47465819e-11 1.410779735e-10 1.456539752e-10 4.968183339e-10 2.084610697e-10 3.354406948e-10 3.30777485e-10 2.397118392e-10 6.058345977e-10 7.820130689e-10 1.065362766e-09 1.742212662e-09 9.648860848e-10 1.387516629e-09 1.245167448e-09 1.308282498e-09 1.664201523e-09 1.915174142e-09 1.26904648e-09 2.772500343e-09 3.22887382e-09 2.558637279e-09 2.76009277e-09 2.387808096e-09 1.634873503e-09 1.82402009e-09 1.542621786e-09 1.613465464e-09 2.872261988e-09 1.379602034e-09 2.591347559e-09 2.349070615e-09 2.333036821e-09 2.426264015e-09 1.638373779e-09 7.096036484e-10 8.942818579e-10 1.074881375e-09 1.593798223e-10 4.043323071e-10 8.932134682e-10 9.263440098e-10 8.322104371e-10 7.433120203e-10 9.370329023e-10 2.15924993e-09 1.706660402e-09 1.03970855e-09 1.128374052e-09 8.536081059e-10 1.639370256e-09 1.38236551e-09 1.839598299e-09 1.922479406e-09 1.154224854e-09 1.767029181e-09 2.356960216e-09 1.429438175e-09 1.589536551e-09 1.789146917e-09 1.593502591e-09 4.428712682e-10 7.476910732e-10 2.252000089e-10 6.513513018e-10 8.769119854e-10 6.95889344e-10 3.618829124e-10 6.844649097e-10 1.504728976e-09 1.107239318e-09 1.18906339e-09 1.586577356e-09 6.855743416e-10 6.956906485e-10 5.511585431e-10 1.552174917e-09 1.093586763e-09 1.072371898e-09 1.893628515e-09 1.033691011e-09 6.813984705e-10 9.041936626e-10 3.9508699e-10 3.584733861e-10 5.246136439e-10 1.348519888e-09 8.621519408e-10 1.174537129e-09 6.896077483e-10 7.964942297e-10 9.598106852e-10 6.002248043e-10 6.007545518e-10 8.938875739e-10 9.408026229e-10 1.093945689e-09 5.29931951e-10 6.831520797e-10 1.211591294e-09 1.118828237e-09 1.08350196e-09 9.921983278e-10 1.287915969e-09 8.807793015e-10 1.225478526e-09 6.071012538e-10 7.527881241e-10 5.295877788e-10 7.603778833e-10 4.774544094e-10 8.760681172e-10 2.096596152e-10 1.587277089e-10 2.646590118e-10 3.833091563e-10 5.377786748e-10 3.046514338e-10 1.770542171e-10 5.90296539e-10 3.930713498e-10 6.406178347e-10 2.717484609e-10 5.78365243e-10 3.197899621e-10 4.721908377e-10 8.415797664e-10 4.568567198e-10 1.009830083e-09 2.103608102e-10 3.923253973e-10 3.78084381e-10 3.019996597e-10 3.759811749e-10 6.86406466e-10 1.986303522e-10 2.974497194e-10 1.201633731e-10 7.200007224e-10 6.40234496e-10 +3.590700536e-10 3.273002226e-10 1.431924408e-10 9.230867072e-10 7.923820413e-10 5.580855264e-10 3.070351696e-10 3.480110595e-10 4.650357127e-10 4.963704627e-10 4.05190801e-10 2.678391828e-10 4.843427077e-10 1.690724415e-10 5.403511328e-10 3.395570975e-10 5.4084698e-10 2.468234782e-10 5.975802313e-10 5.578398434e-10 6.686950039e-10 3.529088693e-10 6.366281015e-10 3.451012961e-10 3.463703107e-10 2.285214303e-10 2.015850344e-10 4.680480355e-10 7.690070631e-10 8.429096836e-10 7.234664452e-10 7.741676901e-10 8.921313513e-10 8.739191866e-10 7.418338593e-10 1.205008494e-09 7.856551012e-10 7.084460877e-10 1.078890438e-09 8.810525058e-10 1.319301353e-09 4.092865544e-10 1.019345075e-09 3.742589896e-10 1.320848956e-09 6.422367616e-10 1.367573894e-09 7.749201627e-10 3.069135604e-10 1.207661312e-09 1.748933033e-09 7.259354368e-10 1.464750866e-09 5.009694547e-10 7.595593157e-10 1.243187037e-09 6.414987224e-10 1.035115214e-09 6.680785338e-10 2.983044477e-10 1.076679738e-09 1.170398172e-09 8.42177016e-10 7.952504342e-10 6.767614678e-10 1.027586439e-09 9.678406631e-10 4.768107392e-10 7.633617233e-10 1.016260617e-09 8.723266772e-10 5.398591121e-10 7.846950337e-10 1.199922259e-09 1.106553222e-09 4.823619754e-10 7.466555731e-10 9.50401101e-10 1.344814349e-09 1.421469276e-09 1.302419652e-09 1.907505103e-09 1.821112286e-09 2.229908068e-09 1.886048882e-09 1.428314316e-09 8.143938699e-10 1.084749405e-09 1.188241459e-09 1.284429825e-09 1.726568007e-09 1.895555815e-09 1.312831547e-09 1.558872916e-09 1.798094049e-09 1.143504696e-09 1.290388775e-09 9.240182058e-10 5.905789995e-10 7.172567817e-10 2.800677691e-10 5.472383763e-10 1.012727543e-09 6.916395256e-10 6.272784858e-10 1.96756995e-09 1.694228205e-09 3.065134429e-09 2.090228188e-09 1.030602343e-09 1.510986597e-09 2.184873231e-09 2.117365175e-09 3.063349984e-09 2.314620016e-09 1.558938221e-09 4.307737324e-09 2.963779828e-09 1.805542461e-09 2.433947324e-09 1.185532182e-09 2.435152994e-09 1.805222887e-09 1.728245992e-09 1.857478921e-09 1.157023831e-09 1.438331684e-09 1.168864179e-09 1.191557458e-09 1.11787933e-09 7.786303313e-10 1.479137717e-10 1.262840211e-10 1.417350506e-10 0 2.1118388e-10 1.838745465e-10 1.77896545e-10 4.430108584e-10 2.393782979e-10 4.785812912e-10 1.132785625e-09 1.649837329e-09 1.876054518e-09 1.078866437e-09 2.08532967e-09 1.671540959e-09 1.556129681e-09 1.946050392e-09 2.237393236e-09 1.869958705e-09 1.776974927e-09 2.528902167e-09 1.939037159e-09 1.590106084e-09 1.126530681e-09 1.470793351e-09 1.00114138e-09 8.769539856e-10 4.674630293e-10 7.195421515e-11 1.516708728e-10 1.528622241e-10 2.400229961e-10 2.691898768e-10 2.284948138e-10 1.910011951e-10 7.931847003e-11 4.674560759e-10 4.526954822e-10 1.545929814e-09 1.384742879e-09 1.809567114e-09 1.096330921e-09 2.027067838e-09 1.671682746e-09 1.6833872e-09 1.957593888e-09 1.591192457e-09 1.754710505e-09 2.401974678e-09 2.367338688e-09 5.438808691e-09 2.563006962e-09 2.573302184e-09 2.77344999e-09 1.300035933e-09 1.840662976e-09 1.256623968e-09 8.526159453e-10 2.72839735e-09 3.454161606e-09 2.052875081e-09 1.665238767e-09 2.036890512e-09 9.00522545e-10 1.030585428e-09 4.17444623e-10 7.435835753e-10 1.309258531e-10 7.686105245e-10 7.064793195e-10 4.877942121e-10 8.379714622e-10 8.923391579e-10 1.598721241e-09 1.313581942e-09 1.395677715e-09 1.588193594e-09 9.344438531e-10 1.018711896e-09 1.400849065e-09 1.006971124e-09 1.545550665e-09 2.371116804e-09 1.566807871e-09 1.576905471e-09 1.561029359e-09 1.451102099e-09 1.268474097e-09 1.63704674e-09 9.877051049e-10 2.868675911e-10 8.851803351e-10 8.704036144e-10 9.594239771e-10 6.557717101e-10 9.073963569e-10 1.539816496e-09 9.976208839e-10 1.085723986e-09 3.61202041e-10 1.006865202e-09 9.895471251e-10 6.631902491e-10 1.003187095e-09 8.812238097e-10 1.227503692e-09 1.801415505e-09 8.504089912e-10 4.965279833e-10 8.614310572e-10 7.269557252e-10 1.09317603e-09 1.030258559e-09 1.121290506e-09 8.490600998e-10 1.260061093e-09 1.072722604e-09 5.786654288e-10 1.345693223e-09 1.294186523e-09 4.807991721e-10 9.101511898e-10 7.667803162e-10 1.494694603e-09 1.28596437e-09 1.163843655e-09 5.833945225e-10 6.526841701e-10 6.011433919e-10 1.142214745e-09 6.573782511e-10 1.120987054e-09 1.400151903e-09 1.010887845e-09 1.019163489e-09 8.008352333e-10 7.22785709e-10 2.624592432e-10 1.151504411e-10 5.444058346e-10 5.631318483e-10 1.546584923e-10 8.133300204e-10 4.652300703e-10 5.310975313e-10 1.910927603e-10 4.532764962e-10 4.857458365e-10 2.550965433e-10 1.355776117e-10 2.020835095e-10 3.569033567e-10 4.601373187e-10 7.121106422e-10 3.044618792e-10 6.279382507e-10 8.924554007e-10 1.250160351e-10 1.648326237e-10 3.542654422e-10 2.081205467e-10 5.246454892e-10 4.684948371e-10 3.344223322e-10 4.501968709e-10 5.657962396e-10 4.943658993e-10 2.706320587e-10 +4.113607596e-10 8.109091622e-10 5.656388512e-10 5.23158635e-10 2.224269259e-10 4.56926941e-10 5.90777718e-10 5.928508037e-10 5.887487109e-10 3.002257374e-10 3.168863534e-10 4.70198369e-10 3.907261748e-10 1.092876307e-10 3.375726204e-10 6.291343996e-10 2.76477204e-10 8.441187503e-10 4.877285292e-10 8.182173612e-10 2.783320519e-10 7.573054031e-10 4.162665861e-10 4.90971938e-10 2.339826276e-10 6.417726599e-10 4.081603989e-10 4.443824158e-10 4.288092676e-10 1.153570192e-09 7.001562115e-10 7.556223673e-10 6.643759114e-10 4.988749978e-10 1.124695349e-09 8.159515646e-10 9.858286927e-10 8.691729825e-10 1.016641791e-09 1.234537668e-09 7.988263677e-10 1.127401122e-09 1.098380751e-09 7.189466769e-10 1.1453794e-09 1.251191725e-09 9.389768008e-10 7.182158026e-10 1.288210775e-09 8.775061422e-10 1.35703616e-09 1.29295988e-09 9.798863504e-10 7.334410848e-10 6.351464566e-10 6.265629398e-10 8.105613523e-10 1.285314807e-09 7.478442919e-10 6.701578651e-10 5.048104838e-10 9.058392916e-10 9.036105681e-10 8.473217756e-10 7.216302786e-10 8.178034478e-10 6.863392956e-10 1.268733054e-09 8.582829368e-10 1.084219076e-09 9.640744871e-10 6.25485414e-10 1.337668505e-09 3.655078079e-10 7.247739237e-10 7.809686592e-10 1.058634413e-09 9.581338554e-10 4.507676645e-10 1.002243218e-09 1.599787113e-09 9.573425556e-10 2.481449169e-09 2.082402328e-09 1.760782777e-09 9.539848396e-10 1.33125328e-09 1.3772257e-09 9.537247909e-10 1.072721103e-09 1.447730727e-09 1.075015723e-09 1.337712234e-09 1.099877001e-09 1.231817377e-09 1.070582452e-09 1.696118194e-09 9.745239849e-10 9.715315057e-10 9.821389079e-10 1.835730503e-10 5.079295608e-10 5.057758512e-10 1.170976948e-09 1.191400489e-09 1.588993207e-09 2.744312949e-09 1.965640862e-09 1.707343688e-09 2.962799176e-09 3.008805784e-09 3.447294994e-09 1.83948805e-09 2.446626823e-09 2.310588126e-09 1.86589448e-09 3.485019006e-09 2.252864548e-09 2.745004887e-09 1.47870844e-09 9.649124878e-10 1.014740169e-09 1.257428573e-09 1.571299704e-09 1.375472878e-09 1.025859687e-09 1.228573646e-09 1.320210328e-09 1.131634054e-09 9.179787555e-10 7.869734258e-10 2.741704268e-10 2.163907452e-10 1.15438313e-10 9.858860632e-11 9.609265296e-11 1.203514298e-10 1.651140522e-14 2.653927327e-10 7.525837638e-10 1.130346336e-09 6.67249282e-10 1.082944342e-09 1.639740232e-09 2.002863787e-09 2.293816533e-09 2.353642873e-09 2.328609578e-09 2.351523511e-09 3.386050212e-09 2.386854591e-09 2.283610334e-09 2.019727194e-09 2.926178097e-09 2.440510967e-09 2.097890491e-09 2.34185143e-09 1.978086044e-09 1.806807102e-09 1.268594959e-09 5.841630963e-10 2.62057646e-12 3.207349846e-10 7.528792423e-17 6.571650801e-11 4.281558195e-10 5.394366069e-18 1.03405758e-10 1.868960409e-10 5.675507883e-10 1.153937588e-09 1.220225396e-09 1.343305267e-09 1.636660885e-09 7.481738869e-10 1.738522779e-09 2.055299943e-09 1.719264599e-09 2.810919433e-09 1.18504399e-09 2.065869273e-09 2.597674807e-09 3.059479172e-09 3.287053461e-09 2.652257195e-09 2.406401884e-09 1.809982662e-09 2.056105128e-09 2.646603367e-09 1.373382575e-09 2.81250493e-09 1.780848366e-09 1.869858564e-09 2.806975157e-09 2.008678429e-09 1.034273537e-09 9.856565517e-10 3.286725283e-10 2.720749955e-10 3.565791736e-10 7.948335758e-10 4.733902201e-10 1.13296471e-09 1.137493904e-09 9.021104145e-10 9.757091592e-10 9.436445077e-10 1.974881763e-09 1.111255898e-09 1.357841444e-09 9.618131098e-10 1.352503625e-09 1.127127879e-09 1.572519034e-09 1.644789098e-09 1.698893783e-09 1.925229052e-09 2.700332956e-09 1.851051539e-09 9.106596497e-10 6.295434246e-10 1.186140101e-09 1.103716465e-09 1.199788136e-09 7.733386758e-10 1.358769095e-09 8.186941131e-10 7.285153651e-10 9.091655421e-10 8.782551723e-10 1.433598092e-09 1.254402672e-09 9.390367605e-10 1.368634439e-09 5.68362253e-10 1.207131752e-09 1.203590239e-09 1.805598735e-09 1.112937912e-09 1.116011839e-09 9.443000222e-10 8.760168693e-10 8.018023404e-10 6.511893913e-10 9.190352851e-10 1.175591759e-09 1.469404566e-09 9.857150259e-10 3.381511681e-10 1.020714031e-09 1.015840085e-09 1.080343709e-09 1.351504655e-09 8.707729202e-10 6.96554365e-10 1.164971952e-09 7.730723636e-10 1.461156884e-09 1.211806686e-09 5.271170036e-10 6.979184815e-10 1.073457123e-09 1.205135791e-09 1.259612308e-09 1.464629465e-09 4.422819561e-10 3.700812228e-10 3.519506073e-10 3.602334199e-10 2.076785099e-10 6.496952276e-10 2.327659358e-10 4.08174301e-10 4.675682633e-10 2.374013291e-10 2.332866268e-10 2.065430844e-10 5.370186528e-10 6.086316142e-10 3.090981613e-10 5.205902406e-10 3.397197032e-10 7.872637382e-10 3.76507004e-10 3.246861798e-10 1.332028701e-10 2.559656235e-10 3.932460546e-10 3.739470023e-10 3.689293702e-10 2.668017871e-10 8.458190716e-10 8.357325521e-10 2.365196938e-10 4.4160324e-10 6.549422297e-10 4.663429884e-10 8.917224523e-10 2.782052933e-10 5.615564122e-10 +2.659946724e-10 4.248972397e-10 4.162615169e-10 3.613389191e-10 4.838791617e-10 1.133137294e-09 8.541478516e-10 1.846193374e-10 5.720600462e-10 5.836318527e-10 5.387058056e-10 5.267872403e-10 2.579323386e-10 5.146952182e-10 9.031092796e-10 2.277644219e-10 5.003211419e-10 2.689273277e-10 8.957761101e-11 8.633335306e-10 6.500962131e-10 4.527106068e-10 6.782079205e-10 4.007657736e-10 5.056517199e-10 6.166831507e-10 2.780647018e-10 4.368192026e-10 3.451453199e-10 7.827339732e-10 8.756922079e-10 5.572902928e-10 4.343269684e-10 6.0954464e-10 7.668597986e-10 9.373691309e-10 4.100826923e-10 7.332190334e-10 1.117122439e-09 7.265382925e-10 9.623616835e-10 1.228772344e-09 7.775867849e-10 5.865409542e-10 9.397701758e-10 4.920849463e-10 8.638031987e-10 9.893334959e-10 1.015116874e-09 8.25554654e-10 7.017738897e-10 7.836438845e-10 6.903212375e-10 7.138135748e-10 1.285074591e-09 8.480924295e-10 9.477398436e-10 3.40066706e-10 1.025617882e-09 5.729953327e-10 8.627125512e-10 8.981459637e-10 1.995030026e-09 1.346771899e-09 1.204478043e-09 1.028197708e-09 9.411392691e-10 1.17024959e-09 8.994794563e-10 6.520489811e-10 4.807024271e-10 7.653730607e-10 5.813667676e-10 1.384207394e-09 9.98736118e-10 6.966750766e-10 7.929699202e-10 8.166454532e-10 1.626478077e-09 1.195160297e-09 1.19968222e-09 2.106032119e-09 1.8918442e-09 1.206926677e-09 1.446283076e-09 1.032108951e-09 1.561061544e-09 1.431495786e-09 1.316517838e-09 6.683540799e-10 1.832628012e-09 1.840968337e-09 7.547445267e-10 1.273134682e-09 1.304970008e-09 1.640297476e-09 9.176995959e-10 1.168782593e-09 1.076712281e-09 6.463428944e-10 7.796763134e-10 5.249345782e-10 1.371557827e-09 1.066708677e-09 1.96894728e-09 2.895339431e-09 2.194583879e-09 1.40162613e-09 1.73925027e-09 3.90697981e-09 2.64395965e-09 2.488862926e-09 2.323324516e-09 2.173717284e-09 1.721029683e-09 2.573070573e-09 3.322216443e-09 3.710282593e-09 2.679848166e-09 1.630337026e-09 2.009294661e-09 1.543634027e-09 9.312819616e-10 1.36292643e-09 1.466487602e-09 1.278691624e-09 9.671846226e-10 1.799115721e-09 1.523909616e-09 5.986510493e-10 8.482035904e-11 2.734464661e-10 2.544495252e-10 3.31486505e-10 4.287193477e-18 1.147669187e-10 1.035006509e-10 6.571363264e-10 5.101536752e-10 9.153102696e-10 1.816137909e-09 1.66341254e-09 2.695201085e-09 1.992493662e-09 2.514543982e-09 2.264664569e-09 3.317847368e-09 3.060526417e-09 1.515886151e-09 2.608380202e-09 2.13056612e-09 2.046540841e-09 3.164704248e-09 1.76494083e-09 2.923347622e-09 2.258998949e-09 2.471576129e-09 3.00197471e-09 1.919039596e-09 1.772710764e-09 1.02806651e-09 4.387315288e-10 6.296165355e-10 5.47767541e-10 1.216414351e-10 7.486413038e-12 3.644768875e-11 1.399988424e-10 1.559157484e-10 2.008202119e-10 3.741676207e-10 1.226103846e-09 1.357526573e-09 1.20099151e-09 1.739940115e-09 1.789793468e-09 1.513061513e-09 2.062797823e-09 1.101081279e-09 9.31654232e-10 1.494957061e-09 2.417167154e-09 2.619552524e-09 2.166236017e-09 2.52315215e-09 2.498606226e-09 2.085229185e-09 4.193931978e-09 2.888602432e-09 2.14137124e-09 4.321133067e-09 1.76535038e-09 2.391954174e-09 1.594078347e-09 3.165767237e-09 1.358298385e-09 7.714618665e-10 9.473795298e-10 1.713749207e-10 3.550461755e-10 1.475010253e-09 1.199236564e-09 6.716566164e-10 1.155584511e-09 6.095175281e-10 1.446335898e-09 1.482651728e-09 1.329817041e-09 1.430414485e-09 1.523435146e-09 1.274880011e-09 1.198444568e-09 1.703022502e-09 1.197350758e-09 2.052020438e-09 2.47984067e-09 1.624909182e-09 2.196248303e-09 2.480573863e-09 1.151999913e-09 1.098282681e-09 7.045368909e-10 1.149352852e-09 8.841889004e-10 1.319932668e-09 1.078244037e-09 1.303979778e-09 1.088004063e-09 1.056060072e-09 1.28880404e-09 8.07871716e-10 9.559568165e-10 5.296589497e-10 8.777433386e-10 1.066234854e-09 7.484429849e-10 1.116020545e-09 1.228958358e-09 1.582542905e-09 8.408308892e-10 5.691863805e-10 6.928538176e-10 6.228854471e-10 4.000294559e-10 5.150046918e-10 1.434808352e-09 8.367076308e-10 1.213118788e-09 9.827211896e-10 1.252247322e-09 8.482105997e-10 1.199373014e-09 1.155057083e-09 9.762141514e-10 6.261172659e-10 5.662282348e-10 5.006152875e-10 7.422791065e-10 5.084527133e-10 6.133075673e-10 1.067331352e-09 7.378221976e-10 5.736714517e-10 6.604491334e-10 9.328196075e-10 6.274247389e-10 7.889540649e-10 6.915602711e-10 5.902622549e-10 7.439747679e-10 2.856037437e-10 5.196464821e-10 4.042081206e-10 1.946027003e-10 5.614849286e-10 4.562829868e-10 1.498724853e-10 4.835775815e-10 6.980309089e-10 8.375878588e-10 5.553776216e-10 2.580355055e-10 4.778044741e-10 5.328733162e-10 8.784351209e-10 6.602419135e-10 4.362139687e-10 4.249631328e-10 4.629441633e-10 1.14713914e-10 7.786717096e-10 5.017819963e-10 3.997423117e-10 3.923443141e-10 5.145104364e-10 2.004310426e-10 3.753462932e-10 4.949493986e-10 5.125643188e-10 3.903773023e-10 +2.922787933e-10 5.474747029e-10 5.479236577e-10 2.546979993e-10 4.118002624e-10 5.683062768e-10 2.694639561e-10 2.547515126e-10 1.675116063e-10 9.782652842e-10 4.640443817e-10 2.865848116e-10 3.724445481e-10 5.386458134e-10 3.683328945e-10 5.637414206e-10 4.605272588e-10 5.715046555e-10 3.960559408e-10 5.550059269e-10 2.908741877e-10 6.299851395e-10 3.952126963e-10 3.291933832e-10 5.720790059e-10 5.557161957e-10 4.573539714e-10 3.901852724e-10 4.397468488e-10 5.343941201e-10 4.52356557e-10 5.812775478e-10 8.276640795e-10 4.481512534e-10 1.075774168e-09 1.124131168e-09 5.928767125e-10 1.242000588e-09 1.10527282e-09 6.360337224e-10 7.800377497e-10 3.982413894e-10 8.393100312e-10 1.113596982e-09 7.036910191e-10 1.055635756e-09 1.14243236e-09 1.33771212e-09 1.53797299e-09 1.760295882e-09 1.212451438e-09 9.365446064e-10 1.109695113e-09 7.265919954e-10 6.914026404e-10 5.566932771e-10 8.109831859e-10 1.022781217e-09 8.312911183e-10 5.775750003e-10 7.779900073e-10 7.713977717e-10 1.189182061e-09 1.06722753e-09 9.590099234e-10 8.216417974e-10 8.006857577e-10 1.113441574e-09 1.043291063e-09 1.343587267e-09 1.360993239e-09 6.649633712e-10 8.125011286e-10 6.2682089e-10 3.857022617e-10 9.598134458e-10 6.967942093e-10 6.125414162e-10 4.480725284e-10 7.084250408e-10 1.657876195e-09 2.289084302e-09 1.662915314e-09 1.979175586e-09 1.524639341e-09 1.861305815e-09 1.118154923e-09 1.556252297e-09 1.045945351e-09 2.533092122e-09 1.299813016e-09 1.791422333e-09 8.579628231e-10 9.898506923e-10 1.740868473e-09 9.513795745e-10 1.182737104e-09 1.043199035e-09 5.106508667e-10 7.201296361e-10 1.586241074e-10 5.482641722e-10 1.045122366e-09 1.011982345e-09 1.320564407e-09 2.075940829e-09 2.068968811e-09 1.485856437e-09 2.284743338e-09 3.064478332e-09 1.967425322e-09 2.07128567e-09 1.321973441e-09 2.639683561e-09 3.109980844e-09 2.773775229e-09 2.797507139e-09 3.42118531e-09 1.656446929e-09 1.426886231e-09 1.709559264e-09 1.541337972e-09 9.67967627e-10 1.433346149e-09 1.091488908e-09 2.197384133e-09 1.442984336e-09 4.603071251e-10 3.340206595e-10 6.035876982e-10 1.806436495e-10 2.037592269e-10 1.226779179e-10 1.589264639e-10 9.142652151e-11 1.956314903e-10 5.334570716e-10 7.193316251e-10 1.939023074e-09 1.851037292e-09 2.554394636e-09 2.225817033e-09 2.459354597e-09 2.81526124e-09 2.029951598e-09 2.215998581e-09 3.194788689e-09 3.328698782e-09 2.860998037e-09 2.104055321e-09 3.413313984e-09 2.317342375e-09 3.360111857e-09 2.684711884e-09 2.801469387e-09 2.631233395e-09 2.148857043e-09 2.226346316e-09 3.281160535e-09 1.560380882e-09 2.655743146e-09 1.481655192e-09 9.313864226e-10 8.494958238e-10 3.169859552e-10 5.38356035e-11 1.226155424e-10 1.991595281e-10 9.093563698e-11 7.145435771e-13 4.170554469e-10 3.855149031e-10 1.450881456e-09 1.213563717e-09 1.118602233e-09 1.691628827e-09 1.37992504e-09 1.424658693e-09 2.252649485e-09 2.046657723e-09 1.869128608e-09 2.783376599e-09 3.01442316e-09 2.982388388e-09 3.128749052e-09 2.533599862e-09 3.035022049e-09 2.104668961e-09 3.109177229e-09 2.809747517e-09 1.52676441e-09 1.335812711e-09 2.400738032e-09 3.450219741e-09 2.761653748e-09 1.959500344e-09 1.414825299e-09 1.23738599e-09 6.369752816e-10 3.215328687e-10 4.703515701e-10 6.214334177e-10 5.909816077e-10 8.951211544e-10 1.052973631e-09 9.861196132e-10 1.429059676e-09 1.010794977e-09 1.661877912e-09 1.831381261e-09 7.358186824e-10 1.239317173e-09 1.227508838e-09 1.222747555e-09 2.184740398e-09 1.598526083e-09 1.039398582e-09 1.686527661e-09 1.391273416e-09 9.604364118e-10 1.836691076e-09 8.231400008e-10 7.546277623e-10 6.223508879e-10 1.183749883e-09 7.038154813e-10 6.750974507e-10 1.244932842e-09 1.585397646e-09 8.444431634e-10 8.5605148e-10 8.705061817e-10 9.060451698e-10 8.231672979e-10 1.598638699e-09 1.021509202e-09 8.845052284e-10 9.497401054e-10 1.064400207e-09 1.498834447e-09 8.980711869e-10 4.289280824e-10 5.949881747e-10 8.086495241e-10 7.651624971e-10 6.025991785e-10 6.086710251e-10 4.444171595e-10 1.709286028e-09 1.011884603e-09 1.404514122e-09 1.227152524e-09 6.930303023e-10 8.876058167e-10 9.506498209e-10 7.096414262e-10 1.320205635e-09 8.677138778e-10 5.197516481e-10 6.423525721e-10 1.198183986e-09 7.024875622e-10 8.377474408e-10 8.440311481e-10 6.860951755e-10 5.217016178e-10 5.052641423e-10 4.025057448e-10 5.842645018e-10 4.593120792e-10 3.333039819e-10 3.714707528e-10 5.66354017e-10 3.005151471e-10 5.67550993e-10 7.75254587e-10 3.847482936e-10 4.719810468e-10 5.467914188e-10 3.7185311e-10 6.53223737e-10 5.754167131e-10 6.056465978e-10 6.932767385e-10 3.850306483e-10 3.89418813e-10 3.34896346e-10 3.243549386e-10 4.429275682e-10 4.594894396e-10 7.840614007e-10 3.979004962e-10 5.013848691e-10 4.024817202e-10 5.013888692e-10 7.11706504e-10 5.409121663e-10 4.863114979e-10 2.972002912e-10 5.007159588e-10 +1.854693246e-10 3.404679503e-10 2.928452174e-10 7.553098651e-10 4.459231425e-10 4.388352511e-10 8.681119325e-10 6.224708765e-10 4.923689438e-10 1.712407199e-10 7.180988603e-10 3.686539938e-10 7.573277112e-10 3.697179947e-10 3.120971489e-10 7.218219136e-10 5.499197697e-10 7.256519842e-10 4.578532293e-10 4.533850442e-10 4.065062122e-10 4.644165165e-10 3.977091067e-10 4.276201078e-10 3.40080619e-10 4.051807762e-10 6.122277035e-10 6.206057087e-10 8.859408111e-10 7.660965352e-10 5.502672324e-10 4.679460035e-10 8.289048925e-10 1.098097107e-09 4.178053257e-10 1.529912164e-09 7.570941387e-10 7.364479424e-10 7.907427446e-10 6.00743535e-10 8.388660368e-10 1.267337388e-09 1.237593674e-09 1.015947436e-09 6.223677308e-10 8.471885677e-10 8.892037453e-10 1.436988089e-09 8.403065755e-10 1.130950314e-09 4.824080941e-10 1.563626512e-09 1.265937288e-09 1.22251402e-09 1.225148592e-09 5.825600287e-10 6.956294667e-10 1.289232062e-09 4.909112531e-10 5.343211204e-10 8.91856172e-10 1.065149784e-09 1.02739043e-09 1.277188579e-09 1.526582112e-09 8.812643067e-10 3.206493784e-10 5.605146559e-10 1.346580282e-09 1.277265832e-09 9.19628763e-10 1.340026911e-09 1.391568733e-09 6.96229436e-10 6.292411199e-10 6.126653852e-10 8.96599342e-10 8.909979229e-10 1.028587502e-09 1.275026696e-09 1.454000157e-09 1.461554817e-09 1.513781479e-09 1.637632309e-09 1.790896993e-09 1.558302749e-09 1.8906807e-09 1.732282241e-09 2.188764391e-09 1.596382224e-09 1.643670483e-09 1.704238776e-09 1.429230683e-09 2.045682302e-09 1.536119521e-09 1.397070156e-09 2.437657048e-09 5.413718031e-10 7.016136599e-10 8.612777935e-10 5.058845908e-10 6.158296256e-10 4.402825142e-10 1.606593599e-09 2.246630225e-09 2.395965567e-09 2.714804007e-09 1.587389138e-09 2.43522899e-09 4.531838653e-09 1.646038353e-09 2.113622229e-09 1.612601532e-09 1.646613703e-09 1.915183337e-09 2.446955145e-09 2.993671839e-09 2.252215089e-09 2.052888897e-09 1.339390802e-09 2.127977042e-09 1.816472824e-09 2.353598072e-09 1.450783351e-09 2.154210264e-09 1.316506652e-09 1.41119571e-09 1.698324213e-10 5.120612459e-10 2.312066811e-10 1.82869625e-10 2.830491832e-10 2.218833233e-12 6.913666006e-11 2.133193252e-10 9.066727014e-10 1.274827244e-09 1.914191907e-09 2.649023081e-09 1.756671202e-09 2.877577235e-09 2.560685219e-09 2.435714563e-09 2.589367268e-09 2.744852982e-09 2.772679137e-09 2.351259418e-09 2.06717716e-09 1.986145807e-09 3.20950049e-09 1.937250945e-09 2.615956551e-09 1.620962937e-09 2.316571074e-09 2.415154059e-09 2.052000581e-09 2.744638312e-09 2.465916683e-09 2.898361976e-09 2.542168624e-09 2.882301549e-09 1.873522556e-09 1.398821094e-09 1.169575791e-09 5.172813543e-10 1.828530726e-10 9.058448371e-11 1.837294181e-10 2.791103668e-10 2.916902864e-10 4.022857238e-10 3.529444809e-10 7.348980987e-10 9.930559848e-10 1.119783071e-09 1.253642802e-09 1.898856094e-09 1.860376666e-09 1.126640443e-09 1.104287731e-09 1.373055585e-09 1.56514057e-09 3.067130817e-09 3.470292542e-09 2.171347922e-09 3.341564552e-09 1.512942353e-09 3.17386529e-09 1.949592484e-09 3.086379701e-09 2.438474014e-09 2.432203534e-09 2.774755839e-09 2.940821631e-09 1.985949257e-09 1.938168367e-09 1.049057466e-09 1.269676842e-09 7.62054416e-10 5.738924572e-10 2.427476823e-10 5.061967106e-10 1.114349695e-09 1.921128992e-09 1.1216316e-09 1.165709817e-09 1.626141278e-09 1.018844724e-09 2.371590917e-09 1.388509372e-09 9.164138026e-10 1.392876931e-09 2.065009123e-09 2.3650406e-09 1.270405025e-09 1.102221726e-09 1.452133763e-09 2.147448088e-09 1.134701474e-09 9.112101624e-10 1.335948858e-09 7.175356955e-10 7.01773733e-10 7.318803905e-10 8.44791349e-10 1.091543781e-09 9.028358303e-10 5.739077981e-10 1.24905842e-09 8.413769832e-10 7.469409502e-10 1.807053759e-09 1.458581329e-09 6.454597673e-10 1.085439396e-09 1.548789407e-09 6.612189652e-10 8.451957777e-10 7.852389546e-10 5.498166806e-10 5.332224052e-10 5.21131519e-10 1.156521378e-09 4.885050156e-10 1.132451777e-09 6.451487096e-10 1.03487399e-09 1.356865699e-09 7.726375519e-10 1.220675606e-09 1.08762113e-09 5.272221492e-10 1.589461557e-09 1.027817339e-09 8.56854761e-10 5.347537577e-10 1.3361026e-09 1.139195934e-09 1.094883263e-09 7.599388249e-10 1.109593678e-09 9.985982822e-10 1.438942612e-09 1.153687248e-09 6.085130097e-10 4.271756917e-10 6.340486957e-10 5.631398134e-10 4.781671472e-10 5.341423826e-10 3.087191203e-10 4.089639654e-10 5.387712992e-10 2.678469047e-10 4.087689093e-10 4.289206779e-10 4.338201492e-10 5.759255646e-10 2.09127878e-10 4.802740137e-10 7.579643673e-10 3.638273232e-10 3.836684956e-10 7.507742698e-10 5.138775361e-10 4.068008349e-10 4.989975219e-10 4.496236924e-10 4.632625031e-10 2.084493129e-10 5.413207939e-10 7.189306545e-10 6.18293722e-10 1.851333594e-10 3.766706387e-10 4.61085892e-10 8.673071003e-10 5.412149647e-10 3.898642773e-10 4.804099281e-10 +6.515619845e-10 7.239739609e-10 4.836523296e-10 1.684732579e-10 2.43545679e-10 5.325323574e-10 5.114569451e-10 7.05474159e-10 4.826916443e-10 1.094946005e-09 6.505271632e-10 4.457377981e-10 5.150224832e-10 3.976919546e-10 1.631054806e-10 9.298377715e-10 5.427243633e-10 4.155030513e-10 2.955943359e-10 3.913132905e-10 4.941134e-10 6.814529518e-10 6.564961301e-10 5.378192443e-10 2.62556227e-10 3.285795848e-10 2.744689039e-10 4.820260013e-10 2.566473284e-10 4.063868281e-10 3.345446471e-10 6.085666296e-10 8.034747282e-10 8.286921782e-10 5.284126006e-10 3.870309647e-10 1.177758179e-09 1.035137684e-09 5.09714977e-10 6.248167886e-10 1.151324062e-09 6.433179234e-10 9.046075182e-10 6.351416626e-10 9.911613815e-10 8.788506066e-10 9.007496799e-10 7.619371824e-10 1.270547738e-09 1.253025712e-09 1.198546151e-09 1.699500122e-09 8.613598571e-10 9.428441376e-10 5.214242505e-10 9.093696148e-10 7.788515641e-10 9.130161827e-10 8.905130359e-10 3.592806199e-10 1.192195121e-09 1.542715103e-09 1.417436513e-09 1.130970061e-09 1.107012673e-09 8.639767497e-10 7.45593967e-10 1.209143745e-09 9.431358862e-10 1.827455915e-09 1.328234832e-09 9.140057675e-10 1.677648018e-09 1.031034079e-09 7.918045812e-10 8.338354015e-10 8.628675937e-10 1.047921622e-09 9.73774976e-10 1.587750563e-09 7.311108436e-10 1.937957533e-09 2.117117889e-09 2.238969472e-09 1.254992953e-09 1.572360443e-09 1.133170501e-09 1.528024945e-09 9.767294779e-10 1.059559055e-09 1.142890379e-09 1.37284221e-09 1.485881125e-09 1.68301037e-09 2.276551616e-09 1.450122426e-09 1.10347064e-09 1.628964342e-09 6.854799933e-10 1.939391147e-10 6.256842189e-10 8.805053835e-10 9.016463062e-10 2.333023613e-09 2.173598808e-09 2.315558065e-09 2.842243748e-09 3.654091278e-09 2.277625568e-09 2.232694267e-09 2.120097072e-09 1.784857303e-09 2.881924123e-09 2.730305319e-09 2.86409259e-09 4.706523606e-09 2.368924683e-09 2.038050767e-09 1.757824943e-09 2.14079782e-09 1.742417989e-09 1.233496154e-09 1.632499112e-09 1.751579292e-09 1.595927612e-09 9.485151143e-10 3.560069593e-10 6.868531619e-10 3.676266632e-11 7.273167439e-11 6.002279637e-10 1.145973941e-20 2.369303223e-10 3.527502453e-10 3.543940037e-10 1.177234362e-09 1.901909527e-09 1.555873491e-09 2.807248871e-09 3.294154809e-09 3.013936749e-09 3.022969021e-09 1.820233807e-09 2.167717389e-09 2.393632151e-09 2.020868513e-09 2.907742602e-09 3.415425014e-09 3.343838209e-09 3.503616498e-09 3.202107729e-09 3.133917787e-09 3.408573799e-09 2.755073318e-09 2.417531506e-09 2.980598548e-09 2.306321524e-09 3.33960857e-09 2.310345367e-09 2.623153704e-09 2.634038288e-09 2.183978151e-09 3.232167834e-09 2.338369833e-09 1.35875334e-09 1.599144448e-09 2.974797546e-10 8.386923455e-11 3.28012009e-10 2.661567485e-10 5.6501959e-10 4.743879463e-12 5.252496767e-10 7.600656553e-10 1.327763633e-09 1.415560339e-09 2.568945936e-09 1.586509078e-09 2.003159962e-09 1.792077836e-09 2.243833489e-09 1.841291075e-09 1.746042253e-09 3.447995805e-09 2.889131213e-09 2.552217771e-09 2.655910397e-09 3.307565246e-09 1.429480989e-09 2.732007129e-09 3.080308674e-09 2.965764259e-09 1.323779806e-09 2.265923408e-09 2.635368142e-09 1.322099186e-09 1.541989689e-09 7.627167083e-10 7.153106932e-10 1.775477761e-10 3.111005048e-10 8.137918117e-10 1.128758375e-09 8.208123981e-10 1.97576777e-09 1.666573039e-09 9.886546507e-10 1.957784423e-09 1.198228825e-09 1.424112574e-09 1.662672776e-09 2.077007747e-09 1.958984982e-09 1.055560127e-09 1.876002339e-09 1.769593828e-09 1.390925237e-09 2.402120376e-09 1.87331212e-09 1.422098368e-09 1.244949535e-09 1.163841336e-09 5.404942835e-10 6.249143026e-10 9.44626758e-10 1.188889512e-09 1.296635056e-09 7.725150068e-10 1.033789079e-09 8.801864426e-10 5.414931813e-10 9.244702785e-10 6.888822331e-10 1.176507983e-09 4.234704454e-10 7.559335923e-10 5.984368836e-10 1.059529204e-09 5.643928549e-10 5.912500782e-10 9.656435153e-10 5.697554881e-10 7.646291955e-10 3.741765444e-10 1.093021421e-09 4.402476595e-10 8.016911355e-10 1.300275047e-09 9.451603977e-10 1.20120144e-09 4.637765519e-10 1.084498247e-09 1.019131032e-09 1.354596153e-09 1.031748098e-09 1.051541697e-09 1.351456615e-09 5.328590135e-10 1.031646101e-09 6.537607929e-10 8.046921542e-10 3.820900376e-10 7.366332082e-10 6.432072182e-10 3.153497593e-10 1.068506515e-09 1.002738819e-09 1.085135777e-09 4.58082624e-10 2.282890014e-10 6.386117276e-10 6.630572779e-10 5.843367085e-10 6.815285104e-10 4.733977555e-10 1.321634237e-10 4.076371007e-10 2.499676584e-10 5.671000772e-10 2.974464234e-10 5.895779044e-10 1.006455388e-09 2.160761816e-11 1.462462758e-10 3.632933354e-10 4.484043571e-10 4.362803636e-10 4.572390904e-10 4.544709131e-10 1.910143966e-10 2.705060089e-10 2.640670873e-10 3.941799813e-10 1.046262451e-09 3.718945928e-10 5.977282376e-10 5.292125506e-10 3.979424749e-10 3.580658808e-10 2.539987186e-10 +2.567082415e-10 1.045584859e-09 5.992939151e-10 3.953307478e-10 4.680443448e-10 1.851463094e-10 7.998266044e-10 3.456302273e-10 3.809836015e-10 8.151064943e-10 4.622446366e-10 6.465847234e-10 2.571804788e-10 1.63720723e-10 1.105910969e-09 1.715833664e-10 7.063839942e-10 4.44871226e-10 5.624704527e-10 6.05291225e-10 4.107782767e-10 1.175927355e-10 4.08232333e-10 1.645616849e-10 3.839259641e-10 3.555266842e-10 4.807597463e-10 3.681467536e-10 3.340784926e-10 2.895182495e-10 1.273706238e-09 4.139654226e-10 3.096583787e-10 8.043677252e-10 8.180797014e-10 6.769783686e-10 7.750237212e-10 4.512394023e-10 4.750553986e-10 5.643037559e-10 8.736977861e-10 9.274209149e-10 1.291068974e-09 1.318658716e-09 9.0920783e-10 9.471976011e-10 1.153031947e-09 1.015970569e-09 7.918394243e-10 6.178442466e-10 1.024421131e-09 4.154413318e-10 6.487259042e-10 8.699025369e-10 1.279234666e-09 2.709086378e-10 3.877881125e-10 5.564440911e-10 6.601541618e-10 4.43421168e-10 1.435450781e-09 1.174953472e-09 9.873525622e-10 7.332347485e-10 8.470560875e-10 1.007130591e-09 9.696849078e-10 1.790927205e-09 1.044713448e-09 9.687506398e-10 1.131710069e-09 6.333826226e-10 1.083608235e-09 7.576167865e-10 6.970200991e-10 5.706558623e-10 1.636351099e-09 1.160738699e-09 1.15365082e-09 9.191770783e-10 1.223553878e-09 1.565367108e-09 1.827151381e-09 1.192825176e-09 9.861202455e-10 1.8390058e-09 1.860673681e-09 1.488415103e-09 7.082659178e-10 1.112277e-09 9.549742006e-10 1.942477846e-09 1.538418665e-09 1.558015221e-09 1.766605078e-09 1.242443391e-09 7.228347429e-10 4.970349718e-10 9.026772959e-10 3.388578925e-10 2.125454474e-10 1.150867989e-09 1.290856616e-09 1.413201067e-09 2.323864908e-09 2.862289706e-09 1.62819524e-09 1.937289566e-09 2.23532618e-09 1.740017243e-09 1.254667966e-09 2.139098121e-09 2.329319377e-09 2.628724219e-09 1.488483135e-09 4.986224867e-09 1.903003857e-09 1.893755605e-09 2.223169814e-09 9.052458676e-10 1.786734882e-09 1.164783963e-09 1.163984898e-09 1.629590733e-09 1.908887656e-09 1.604699203e-09 6.291899209e-10 2.231901816e-10 3.644255371e-43 5.882980552e-11 9.941970774e-11 2.504275516e-10 3.696493432e-10 8.229373691e-10 1.252649094e-09 1.654888029e-09 2.00915151e-09 2.752166639e-09 2.147822462e-09 3.580683181e-09 3.351013457e-09 3.219150623e-09 2.757078379e-09 3.405886108e-09 4.11338644e-09 3.521385699e-09 4.666259658e-09 3.213494955e-09 5.059637037e-09 3.397798121e-09 3.933514452e-09 4.245966753e-09 4.929571736e-09 3.450993074e-09 3.834877099e-09 3.18797641e-09 2.632656535e-09 2.774684362e-09 2.326653735e-09 3.193634029e-09 2.499762894e-09 2.251629357e-09 2.645398358e-09 2.14680463e-09 1.894654899e-09 1.284256216e-09 3.572530127e-10 2.843589584e-10 1.36825407e-10 7.539845027e-11 9.0165637e-11 1.214904648e-10 3.76240954e-10 3.612710022e-10 1.268381457e-09 6.068698705e-10 8.816645011e-10 2.346805345e-09 9.258291186e-10 1.521241703e-09 9.489349801e-10 1.464635271e-09 2.267440978e-09 3.432879342e-09 3.012322859e-09 2.755330271e-09 1.888936754e-09 2.346369552e-09 2.070517449e-09 2.890350539e-09 2.383292937e-09 2.793619276e-09 3.178364812e-09 1.754288715e-09 1.960715834e-09 2.049735072e-09 2.396392553e-10 8.591066603e-10 6.551792985e-10 6.254499273e-10 1.663985725e-10 7.098309938e-10 1.045451677e-09 1.45097952e-09 4.931696208e-10 1.464534914e-09 1.919431616e-09 7.180808336e-10 1.509183309e-09 1.266627274e-09 1.790922286e-09 1.690934648e-09 2.240156898e-09 1.43382855e-09 1.633996271e-09 2.538624375e-09 1.515234645e-09 1.948686437e-09 1.486513716e-09 9.483282883e-10 1.484841575e-09 4.898217481e-10 7.251798154e-10 5.226827586e-10 6.284957981e-10 1.058371347e-09 1.233229999e-09 1.3636608e-09 1.424592732e-09 7.159794613e-10 9.648054738e-10 9.44210884e-10 1.700345318e-09 8.101200616e-10 7.132845034e-10 1.403819402e-09 1.495441397e-09 1.057011023e-09 9.730169651e-10 5.302986767e-10 8.288728175e-10 5.47034349e-10 6.165654553e-10 8.54229223e-10 3.987942311e-10 6.411477533e-10 9.62074724e-10 8.25085489e-10 7.642415765e-10 6.468666305e-10 5.225195991e-10 6.354595803e-10 7.307167296e-10 9.367915497e-10 6.713995552e-10 8.613816086e-10 6.239703552e-10 6.258857435e-10 1.132302405e-09 9.283211392e-10 6.429362309e-10 6.888995303e-10 6.519601447e-10 7.830939142e-10 5.391251334e-10 4.171383547e-10 6.345947959e-10 4.910310885e-10 3.254898881e-10 5.359432671e-10 5.415021179e-10 4.836783639e-10 4.749442126e-10 4.906245108e-10 1.818916436e-10 3.210674784e-10 6.976185569e-10 5.696477303e-10 2.731707321e-10 6.566094531e-10 6.11152042e-10 2.127958428e-10 2.452498773e-10 5.748171928e-10 2.755700471e-10 3.093032972e-10 5.349381373e-10 3.212005982e-10 3.473433591e-10 2.862800715e-10 9.411149448e-10 1.510251984e-10 2.531783028e-10 6.470347484e-10 6.77492529e-11 3.166309497e-10 1.884941344e-10 5.5147662e-10 3.12901014e-10 4.954960739e-10 +4.690410679e-10 2.309807889e-10 4.827187141e-10 7.457519018e-10 3.863753735e-10 2.228250598e-10 3.665115891e-10 4.066209312e-10 3.379957008e-10 3.982128471e-10 3.776378583e-10 4.978697948e-10 5.011751901e-10 3.099191993e-10 7.57389921e-10 3.364112542e-10 1.786581231e-10 7.634444038e-10 9.00224237e-10 7.764495576e-10 2.243050027e-10 4.16898042e-10 3.965098135e-10 3.295413316e-10 4.575952887e-10 3.011011083e-10 9.304021554e-10 7.144748763e-10 6.434496662e-10 2.081006485e-10 2.167941576e-10 6.9192052e-10 4.327494933e-10 6.045148338e-10 5.975024577e-10 5.144380732e-10 5.690457695e-10 8.823303738e-10 9.545919314e-10 9.214077832e-10 6.23531712e-10 1.10369359e-09 1.15399216e-09 1.223467351e-09 8.252609687e-10 5.836382114e-10 1.550204671e-09 9.800957289e-10 1.198279366e-09 1.048815395e-09 5.596810489e-10 7.5198775e-10 9.118547222e-10 8.00642111e-10 5.110445976e-10 9.881631155e-10 9.365336845e-10 1.065798023e-09 1.037272752e-09 1.429469556e-09 4.833128425e-10 1.144209512e-09 9.685410421e-10 1.029225469e-09 9.291678682e-10 1.090647695e-09 6.015738183e-10 7.556724252e-10 1.446864105e-09 9.31191382e-10 1.296406664e-09 1.220723582e-09 9.410442746e-10 9.127887392e-10 1.041129201e-09 7.807033567e-10 1.242099826e-09 1.025917899e-09 1.057239543e-09 9.312432777e-10 2.294643907e-09 1.72258556e-09 1.941518604e-09 1.438796049e-09 1.36262347e-09 1.350927236e-09 1.443309143e-09 2.163279285e-09 1.077550798e-09 9.227435121e-10 1.271802136e-09 1.237151256e-09 1.036093952e-09 1.202137027e-09 1.434269129e-09 1.002768469e-09 1.393131544e-09 3.587348554e-10 9.122121719e-10 3.237030655e-10 5.079996923e-10 9.899549323e-10 1.028732778e-09 1.513038457e-09 1.956952993e-09 1.671054358e-09 2.842393986e-09 2.137837658e-09 2.477190814e-09 2.245273876e-09 1.220115779e-09 1.844456427e-09 1.31789811e-09 1.50977147e-09 2.554414499e-09 2.454671188e-09 2.433221741e-09 2.475670807e-09 1.804322356e-09 9.002096571e-10 2.667567245e-09 1.802092831e-09 1.003658142e-09 1.532998183e-09 1.467028545e-09 1.10269279e-09 5.451537426e-10 1.411593038e-10 9.327299876e-11 1.82748561e-10 1.658824104e-10 3.23336624e-10 2.849249636e-10 1.250000836e-09 1.703691829e-09 2.315129756e-09 2.172948412e-09 3.58703249e-09 3.633420853e-09 1.993574029e-09 1.990746496e-09 3.313797814e-09 3.453208911e-09 5.548917028e-09 3.527891356e-09 5.432781561e-09 5.720795642e-09 6.698583991e-09 4.634306043e-09 5.224973142e-09 4.579247954e-09 6.119415803e-09 4.621299511e-09 5.239226835e-09 3.981726991e-09 4.230563535e-09 3.915087477e-09 3.025515258e-09 3.229549266e-09 2.103213488e-09 2.685084946e-09 2.721860336e-09 2.877507236e-09 2.03443066e-09 2.68087996e-09 1.92100587e-09 8.102015872e-10 2.344918553e-10 2.216195524e-10 7.762034948e-11 4.155066417e-10 7.043685551e-18 3.383827702e-10 1.288853908e-10 6.201888331e-10 1.49643208e-09 1.286880415e-09 1.60376169e-09 1.145285105e-09 1.520535892e-09 2.494042588e-09 1.637027405e-09 1.932830779e-09 2.146738045e-09 3.505448139e-09 3.443872778e-09 1.817338627e-09 1.290346048e-09 2.073845139e-09 2.169361634e-09 1.837218071e-09 2.460451208e-09 2.344139023e-09 1.800750217e-09 1.839100227e-09 3.382497667e-09 1.387350793e-09 9.061709697e-10 9.162229789e-10 7.466375231e-10 3.985313913e-10 4.525795847e-10 9.170109027e-10 1.002131999e-09 1.064509175e-09 1.366207571e-09 1.883774526e-09 1.282683434e-09 1.894191513e-09 1.091837119e-09 1.694519784e-09 2.239331403e-09 1.813786951e-09 1.556019952e-09 1.525177025e-09 2.03626767e-09 2.287967245e-09 2.166965792e-09 1.561557853e-09 1.482647304e-09 1.20229462e-09 1.818506567e-09 1.483049237e-09 9.326437917e-10 6.794770702e-10 1.104786701e-09 5.258781647e-10 1.212647667e-09 2.068587697e-09 1.728726323e-09 1.01492005e-09 1.445325331e-09 1.212367288e-09 7.220163048e-10 1.433511747e-09 9.207105155e-10 4.645194812e-10 1.011617517e-09 1.087603189e-09 1.108800054e-09 6.093740021e-10 2.489149447e-10 5.501174721e-10 9.051026534e-10 7.179649655e-10 1.347943561e-09 1.046345342e-09 1.022376542e-09 4.729733542e-10 1.060227135e-09 8.246777453e-10 4.726169339e-10 8.693022203e-10 1.290225162e-09 1.129694036e-09 1.078264662e-09 4.474204805e-10 5.039985745e-10 1.013523969e-09 1.039957159e-09 1.094375985e-09 1.226797089e-09 6.646194858e-10 5.136755041e-10 9.318722949e-10 6.215635517e-10 6.953949118e-10 6.445291007e-10 4.409383869e-10 4.387706359e-10 5.585369813e-10 5.116860371e-10 3.268904762e-10 1.690025972e-10 4.920345049e-10 2.916114286e-10 3.612676902e-10 6.878069928e-10 3.874384401e-10 4.101440527e-10 7.344741198e-10 7.749923142e-10 5.153722862e-10 4.8228001e-10 3.351426995e-10 4.496790686e-10 4.353377666e-11 5.649011531e-10 3.477582333e-10 7.3634437e-10 2.307220088e-10 2.736154692e-10 3.221851692e-10 5.615390353e-10 4.843695943e-10 2.986271691e-10 3.890774265e-10 3.832540905e-10 7.237510424e-10 6.133067057e-10 +3.510737765e-10 2.030202995e-10 7.078369058e-10 6.399111816e-10 3.753082444e-10 7.003034971e-10 4.152039589e-10 9.693033429e-11 6.497278061e-10 3.119940451e-10 3.305403441e-10 4.276727955e-10 4.817140298e-10 7.452572151e-10 3.816358798e-10 2.756805074e-10 1.049960665e-10 6.028908911e-10 2.87547687e-10 5.001511814e-10 5.534384488e-10 2.773716238e-10 8.939990514e-10 7.932958101e-10 3.220274967e-10 5.71856266e-10 9.299236328e-10 6.05954531e-10 1.19728477e-10 3.614420678e-10 2.533079208e-10 8.829739574e-10 8.758273617e-10 4.448112508e-10 4.450737601e-10 6.012948877e-10 8.239814431e-10 1.189547831e-09 1.178606757e-09 1.048611535e-09 4.375237747e-10 6.668160887e-10 8.733264276e-10 9.001163942e-10 8.138083025e-10 6.19062835e-10 1.09139055e-09 8.135425458e-10 9.519705332e-10 1.198385079e-09 1.317748839e-09 1.079733932e-09 9.178321192e-10 1.252730761e-09 7.713368688e-10 6.926615369e-10 7.22908541e-10 4.784204145e-10 8.120553317e-10 8.356232628e-10 5.218957055e-10 1.161189784e-09 6.004808807e-10 1.23191454e-09 1.273913715e-09 1.005316096e-09 9.772338538e-10 1.291326599e-09 8.921386416e-10 9.872930436e-10 1.066772741e-09 1.165247643e-09 1.645308808e-09 4.24361033e-10 8.186056662e-10 5.533201528e-10 1.115223426e-09 9.987688051e-10 1.057422432e-09 1.072342288e-09 1.599618365e-09 1.758697613e-09 2.889444239e-09 1.890418468e-09 1.143659335e-09 1.947530035e-09 1.316173046e-09 1.828681208e-09 1.915695267e-09 1.933538781e-09 1.674643223e-09 1.750068955e-09 7.954664468e-10 1.127169787e-09 9.368517675e-10 1.548520376e-09 8.790268128e-10 7.017477156e-10 7.325549904e-10 4.271714915e-10 1.295273014e-09 9.970889277e-10 9.529148117e-10 2.27744285e-09 1.673585227e-09 4.278677752e-09 2.285115967e-09 2.315229546e-09 2.699129424e-09 2.454751662e-09 1.393020091e-09 2.28876393e-09 2.696866544e-09 2.98994919e-09 3.650503456e-09 4.14959261e-09 2.324410195e-09 1.892773216e-09 1.946721182e-09 1.677226888e-09 2.612395071e-09 1.45371707e-09 1.485687833e-09 2.131938331e-09 1.480518328e-09 6.304810039e-10 1.465835518e-10 9.172944212e-11 2.081737984e-10 2.641471448e-10 7.482699524e-11 1.396499973e-10 1.588866854e-09 2.607811967e-09 2.467559151e-09 2.559741128e-09 2.464663049e-09 2.699819696e-09 2.444321726e-09 2.36012904e-09 3.56873195e-09 2.760674053e-09 3.2314386e-09 4.406381297e-09 5.070773829e-09 7.234551962e-09 6.484767802e-09 4.956055298e-09 5.983293124e-09 6.517584577e-09 6.366802803e-09 7.01922451e-09 6.8007203e-09 7.544916831e-09 5.504003827e-09 5.234776513e-09 5.348202067e-09 5.604912558e-09 3.346020914e-09 2.903562306e-09 2.499984248e-09 3.096039914e-09 2.683745202e-09 3.755076426e-09 2.725800061e-09 3.226845444e-09 1.872892779e-09 8.344964412e-10 9.900596327e-11 4.920881607e-10 4.775038986e-13 2.004912008e-10 1.719784285e-13 1.066907422e-10 6.50006798e-10 1.52536156e-09 2.090112987e-09 2.311592468e-09 1.851558836e-09 1.008333567e-09 1.098727259e-09 2.408696706e-09 1.971669538e-09 2.342286466e-09 2.920512047e-09 2.32642856e-09 4.240051981e-09 2.396797807e-09 2.900207007e-09 2.677022166e-09 1.242258763e-09 9.197255464e-10 2.73924444e-09 2.88090458e-09 2.665806189e-09 2.025351448e-09 2.473391451e-09 7.446938148e-10 8.791017264e-10 4.671287099e-10 4.858894525e-10 6.874919488e-10 1.372457567e-09 1.565833044e-09 1.850700693e-09 1.653969204e-09 1.32030677e-09 1.085890523e-09 1.930659369e-09 8.421540993e-10 1.122657387e-09 1.526475272e-09 1.550273505e-09 1.455588368e-09 1.53307968e-09 2.009881287e-09 2.192530988e-09 1.888093663e-09 1.126202445e-09 1.180550546e-09 6.091811142e-10 1.251007669e-09 9.965334395e-10 9.003246416e-10 1.264146963e-09 5.69058931e-10 1.188439179e-09 7.89601505e-10 7.721064678e-10 8.022948181e-10 1.328459003e-09 1.374268531e-09 7.10813537e-10 1.076353172e-09 5.538775399e-10 9.861474173e-10 9.437646245e-10 9.402762446e-10 1.295295087e-09 1.018136708e-09 7.98653738e-10 9.412360737e-10 6.217239004e-10 1.04547426e-09 1.545745939e-09 7.160153447e-10 5.651518988e-10 1.07787373e-09 1.14953174e-09 1.332398499e-09 9.80904587e-10 7.029611942e-10 6.362106419e-10 1.369212958e-09 1.194767627e-09 7.231972614e-10 5.454635954e-10 1.124391275e-09 1.542013877e-09 1.111189776e-09 6.514301875e-10 1.40924372e-09 1.246931297e-09 7.281554058e-10 7.934902776e-10 4.295045798e-10 9.948444503e-10 3.336673706e-10 7.171318525e-10 2.880609219e-10 4.805478336e-10 9.499037617e-10 2.207055589e-10 4.704538653e-10 6.675658352e-10 2.398793986e-10 3.606675454e-10 6.92082787e-10 6.075609114e-10 4.88023812e-10 6.35270614e-10 2.215836418e-10 4.568142789e-10 7.203848568e-10 7.253421126e-10 3.750139842e-10 3.641298989e-10 3.700858305e-10 2.210386434e-10 7.286520232e-10 2.067369629e-10 3.23280724e-10 8.264616796e-10 1.758275159e-10 3.501353894e-10 3.717045368e-10 6.237355361e-10 5.293648389e-10 9.390424907e-11 2.169585453e-10 +2.807634903e-10 1.671325138e-10 4.551396376e-10 1.494784618e-10 1.098878487e-09 2.506843667e-10 3.634289003e-10 6.103501669e-10 3.455900578e-10 4.590059035e-10 3.407430965e-10 3.628799587e-10 1.163136543e-09 2.543902681e-10 7.297444207e-10 4.114962283e-10 7.300953748e-10 2.791817794e-10 3.727581389e-10 5.475412352e-10 5.09151117e-10 6.837777007e-10 4.421697849e-10 2.038502604e-10 6.561568098e-10 2.190899839e-10 7.288082643e-10 2.363445766e-10 4.07652274e-10 7.246977724e-10 1.485639236e-10 2.81366661e-10 3.516116552e-10 4.922549673e-10 1.006541338e-09 7.775671491e-10 8.863857964e-10 7.719843595e-10 1.186979061e-09 5.85611824e-10 1.275232345e-09 1.42306352e-09 6.676199953e-10 1.382499067e-09 4.818466567e-10 7.378562747e-10 1.268043824e-09 8.68123827e-10 8.815983241e-10 9.798571599e-10 1.302528986e-09 7.952851971e-10 1.636751017e-09 1.31083761e-09 1.519203569e-09 1.288343151e-09 4.468958641e-10 9.885969492e-10 8.216353686e-10 1.287524291e-09 4.247773406e-10 1.536360155e-09 1.173308595e-09 8.880258002e-10 9.047357246e-10 1.142012855e-09 6.286969604e-10 1.851651096e-09 1.478468344e-09 1.719699305e-09 9.529939668e-10 5.267698087e-10 1.25489051e-09 1.267094257e-09 9.749020486e-10 1.142289097e-09 1.004822805e-09 9.707818319e-10 1.331672739e-09 7.547098567e-10 1.47897229e-09 1.758682205e-09 1.305420601e-09 1.234683967e-09 2.137481722e-09 1.041176059e-09 1.319877386e-09 2.465755819e-09 1.482404822e-09 1.886683494e-09 1.182427042e-09 1.309577176e-09 1.377704668e-09 1.673128417e-09 1.446420129e-09 1.376635546e-09 7.446257846e-10 6.121641909e-10 6.583522098e-10 7.068666664e-10 1.043214282e-09 1.139549044e-09 1.148244417e-09 1.917613373e-09 2.613660679e-09 1.971774755e-09 2.629466737e-09 2.017849918e-09 2.127009507e-09 2.027984206e-09 2.199844479e-09 1.526416819e-09 3.278136171e-09 2.330200697e-09 2.687822959e-09 2.638783247e-09 1.114312696e-09 1.186809346e-09 1.756170102e-09 2.537804643e-09 2.01443772e-09 2.339808535e-09 1.52280215e-09 8.533286021e-10 1.07885009e-09 3.037084849e-10 7.288659449e-11 1.938494118e-10 8.525529898e-11 3.462482145e-10 4.67736364e-10 7.277604442e-10 1.203638901e-09 2.276438013e-09 2.536016543e-09 2.560448311e-09 2.770250922e-09 2.426326381e-09 1.850938814e-09 3.007946766e-09 3.519144556e-09 4.093258516e-09 5.725489721e-09 5.774201734e-09 6.260090755e-09 7.460178441e-09 5.828294813e-09 7.077669351e-09 8.638258068e-09 6.317363414e-09 6.068922809e-09 6.916347324e-09 7.291878119e-09 5.442029822e-09 6.543530144e-09 8.000285421e-09 4.839574794e-09 3.924079629e-09 4.935992965e-09 3.029973274e-09 3.513300474e-09 2.894775143e-09 3.674801264e-09 2.830652352e-09 2.702201498e-09 3.287482105e-09 1.389405534e-09 2.055774061e-09 5.839261051e-10 2.296455106e-10 1.857442927e-10 2.926791742e-13 8.347738143e-11 1.09786934e-10 1.215964785e-10 7.064384446e-10 1.186852388e-09 2.325807003e-09 1.629646247e-09 1.057715061e-09 2.013079877e-09 2.373389406e-09 1.58415874e-09 2.26665688e-09 2.352728875e-09 3.557374754e-09 3.327303189e-09 1.524155307e-09 1.040135486e-09 1.774571121e-09 2.911845903e-09 4.269196668e-09 4.18652859e-09 1.146081694e-09 2.722039107e-09 2.787563892e-09 1.614484756e-09 5.169730204e-10 1.208734784e-09 5.026370555e-10 5.393860073e-10 6.179767847e-10 1.120236941e-09 1.187107215e-09 8.547009254e-10 1.765239096e-09 1.395402834e-09 1.433573399e-09 9.258692627e-10 8.218676025e-10 1.409966595e-09 9.265604621e-10 1.458903127e-09 1.312858309e-09 1.658726204e-09 1.737610709e-09 1.564364131e-09 1.931488298e-09 1.858690458e-09 1.132532331e-09 1.011534478e-09 9.385802173e-10 5.942748347e-10 1.161106112e-09 9.852957211e-10 7.521400627e-10 7.503985682e-10 1.686424729e-09 7.329266816e-10 1.278993092e-09 1.288689265e-09 1.658214405e-09 9.926349728e-10 4.877745574e-10 1.368264322e-09 7.557995495e-10 5.861916983e-10 9.84933002e-10 7.614618486e-10 1.070572981e-09 9.162888783e-10 7.11158595e-10 6.563186073e-10 1.209497662e-09 9.429722769e-10 8.15764014e-10 1.14717481e-09 8.488186454e-10 9.80272805e-10 8.756878221e-10 1.294811127e-09 1.002815574e-09 9.186647777e-10 6.685122559e-10 2.897876392e-10 7.75002329e-10 6.267609824e-10 7.764732709e-10 1.420166176e-09 9.777370096e-10 6.208768117e-10 9.349608417e-10 8.958465631e-10 6.629658081e-10 5.599670649e-10 6.875720694e-10 4.345406206e-10 4.714956936e-10 5.038147581e-10 3.773906098e-10 8.511353061e-10 6.380419193e-10 5.749396867e-10 8.872604509e-10 4.139345676e-10 7.887024028e-10 2.942090964e-10 1.910644553e-10 3.68907357e-10 5.320754272e-10 3.201045429e-10 5.197793582e-10 9.749258228e-10 6.959022368e-10 7.203151124e-10 5.930673641e-10 2.849613983e-10 4.682771457e-10 4.577385112e-10 3.849193947e-10 6.664080794e-10 3.36198851e-10 7.379040136e-10 5.655612475e-10 1.697531668e-10 8.240668714e-10 2.396740844e-10 3.169504999e-10 7.511177422e-10 2.933518085e-10 +3.932074448e-10 3.990126229e-10 2.28869968e-10 4.083146681e-10 3.493330969e-10 4.850503932e-10 2.040775482e-10 2.124718441e-10 1.782760948e-10 3.483558876e-10 4.835916108e-10 5.289888574e-10 3.471437158e-10 5.201779212e-10 4.285689677e-10 3.292697826e-10 8.395298977e-10 6.51103437e-10 5.844999874e-10 3.178358498e-10 5.314564728e-10 5.039492041e-10 8.861156964e-10 4.462800334e-10 3.461998179e-10 4.129878885e-10 5.673869676e-10 4.190354471e-10 4.019954445e-10 4.796636826e-10 4.407185365e-10 3.302863412e-10 1.589475845e-09 2.372559996e-10 4.118762439e-10 9.55696631e-10 7.518984912e-10 8.133630502e-10 8.530517952e-10 1.323063363e-09 1.561634782e-09 1.035064411e-09 6.839880893e-10 1.040747846e-09 9.224968621e-10 1.371685096e-09 1.101698753e-09 7.702135416e-10 5.917367057e-10 8.706026303e-10 1.012425544e-09 1.854280504e-09 1.11048445e-09 1.064996712e-09 7.763558298e-10 1.263936733e-09 5.33964831e-10 1.579918798e-09 7.470692524e-10 9.020010263e-10 5.969541144e-10 7.705188397e-10 6.342475427e-10 1.099325255e-09 1.015751171e-09 9.772087204e-10 6.788185182e-10 9.191513292e-10 1.181680379e-09 1.205801362e-09 1.564820567e-09 9.886642813e-10 4.086991806e-10 1.741948636e-09 1.435985124e-09 1.311226153e-09 4.490028394e-10 5.381760137e-10 9.022915523e-10 1.868342241e-09 2.014562115e-09 1.500631537e-09 2.724699183e-09 2.188894752e-09 1.647242484e-09 8.041427907e-10 1.550985428e-09 1.864011617e-09 8.541484104e-10 1.257929816e-09 1.036490439e-09 2.093840705e-09 7.207405093e-10 1.3936059e-09 1.170545588e-09 9.093248122e-10 1.614082587e-09 1.086827746e-09 6.953898712e-10 5.783431319e-10 8.172439655e-10 9.417860208e-10 1.305433015e-09 1.675577551e-09 1.884085373e-09 2.698855371e-09 3.597593903e-09 2.784186708e-09 3.577448527e-09 1.902609505e-09 1.554372414e-09 3.191519777e-09 1.855936152e-09 2.563512031e-09 3.537348027e-09 1.744870376e-09 1.053743864e-09 1.938372123e-09 1.645473321e-09 9.294254148e-10 1.430898666e-09 1.35778583e-09 2.096911646e-09 1.145751586e-09 7.975113784e-10 5.910294076e-11 1.399242523e-10 1.28693482e-10 6.280858967e-11 2.08079851e-10 3.703774023e-10 9.67350122e-10 1.158930526e-09 2.566449705e-09 3.164806516e-09 3.333453233e-09 2.949703232e-09 2.846350605e-09 3.076602768e-09 4.859711516e-09 3.64726449e-09 4.948714715e-09 7.055674423e-09 6.134724928e-09 6.995099243e-09 5.832549703e-09 7.618320657e-09 7.363425806e-09 7.729124115e-09 6.953333721e-09 6.291587239e-09 7.956112605e-09 5.200404791e-09 5.406860546e-09 5.968155033e-09 7.517043643e-09 7.187800944e-09 6.958990529e-09 5.658679231e-09 4.935649691e-09 5.343068922e-09 4.348014802e-09 3.111879193e-09 2.714721808e-09 3.054379081e-09 3.214998389e-09 2.199025931e-09 2.657584992e-09 1.923139237e-09 4.231803768e-10 1.527838457e-10 3.218194052e-10 6.272854123e-11 1.72733353e-10 2.431296076e-10 9.255891717e-10 7.612989513e-10 1.721375262e-09 1.61541248e-09 2.057708805e-09 2.637343353e-09 1.229093724e-09 2.402246148e-09 1.693249809e-09 3.727019675e-09 3.70503518e-09 2.574720686e-09 1.950811143e-09 2.934746068e-09 2.177340999e-09 2.58538237e-09 3.193552359e-09 2.045668479e-09 3.118979613e-09 2.708567442e-09 1.922472854e-09 2.242388742e-09 9.420401347e-10 1.03453304e-09 7.493624824e-10 4.487502008e-10 3.714366296e-10 1.046261861e-09 9.910858427e-10 1.155965909e-09 1.318238583e-09 1.395200934e-09 1.754659375e-09 1.839160225e-09 2.156916166e-09 1.534076554e-09 1.214947623e-09 1.696003922e-09 2.202769723e-09 1.077441372e-09 1.342103767e-09 2.007584167e-09 2.138462575e-09 1.216602278e-09 2.392544371e-09 2.145675254e-09 7.143597831e-10 9.837330291e-10 1.126878142e-09 1.210008161e-09 5.408402414e-10 1.23111302e-09 8.734380795e-10 1.430539205e-09 1.135309397e-09 1.201341469e-09 1.20310365e-09 8.681360699e-10 7.259634178e-10 1.073859497e-09 9.034039685e-10 1.303748946e-09 7.167858114e-10 9.34090937e-10 6.487820038e-10 1.068417887e-09 6.541362566e-10 1.067357074e-09 6.035971917e-10 5.018519175e-10 1.08371512e-09 1.311161412e-09 5.63121705e-10 8.348482667e-10 9.699810351e-10 4.92642377e-10 7.009921192e-10 8.380373078e-10 7.731969078e-10 1.196571565e-09 6.151704684e-10 9.080389362e-10 7.937537262e-10 9.222938417e-10 8.810374658e-10 1.24586125e-09 1.036164717e-09 8.697639208e-10 1.006202365e-09 2.63053239e-10 4.715105432e-10 4.271995394e-10 2.749401046e-10 4.122227123e-10 7.850017841e-10 5.979352845e-11 6.365556529e-10 7.821805931e-10 2.139389413e-10 3.946180966e-10 2.888614866e-10 5.163201525e-10 6.097463048e-10 3.5957987e-10 2.839762698e-10 9.904945156e-10 6.290778396e-10 4.568241722e-10 4.99820744e-10 8.787840532e-10 5.227610283e-10 5.052933963e-10 2.806611313e-10 5.399990596e-10 5.684657287e-10 3.604948191e-10 3.544464424e-10 5.018142031e-10 7.885214654e-10 4.408339264e-10 7.060240252e-10 5.226441561e-10 6.339718898e-10 5.801983489e-10 7.782556362e-10 +3.291283144e-10 4.236069457e-10 5.147428594e-10 5.875710687e-10 9.879745594e-10 5.549371639e-10 2.151845407e-10 5.888145399e-10 3.801671596e-10 3.53956993e-10 9.14185103e-10 3.785690239e-10 2.155583368e-10 1.080728353e-09 3.535262118e-10 6.200244922e-10 3.449129325e-10 7.162936518e-10 3.449047525e-10 7.063080972e-10 7.154986035e-10 2.553472836e-10 6.030155749e-10 1.485593663e-10 5.350284399e-10 3.235497987e-10 5.025517983e-10 6.62985553e-10 3.030231043e-10 8.214593354e-10 4.699527031e-10 5.047031961e-10 5.039828228e-10 4.093821762e-10 7.844101969e-10 7.087802928e-10 1.017069669e-09 3.424907399e-10 1.357270006e-09 9.543041687e-10 5.260035615e-10 1.035716995e-09 1.204049831e-09 1.059982244e-09 1.043018078e-09 1.187360346e-09 1.532483615e-09 1.20337265e-09 1.410741776e-09 9.340232435e-10 1.115661915e-09 8.973965305e-10 1.189203975e-09 1.274346255e-09 1.022718531e-09 1.443667562e-09 9.892164413e-10 9.904725757e-10 1.030971164e-09 9.641839482e-10 7.533434077e-10 9.498013757e-10 1.231572889e-09 9.73723361e-10 1.130160493e-09 6.519100574e-10 9.266924101e-10 1.178556157e-09 4.392019954e-10 1.548597461e-09 1.257317037e-09 1.082627356e-09 7.768609748e-10 8.360068613e-10 7.612420533e-10 1.459610144e-09 9.017339589e-10 8.689265898e-10 1.001656628e-09 2.163056535e-09 1.761968648e-09 1.933796968e-09 2.499228802e-09 1.841141033e-09 1.146201409e-09 2.14780099e-09 1.779053059e-09 2.382525028e-09 1.458216859e-09 1.703972893e-09 1.674943171e-09 1.18982116e-09 1.953082729e-09 1.303382545e-09 1.162699021e-09 1.426276641e-09 1.255808759e-09 9.23305534e-10 3.483679416e-10 1.237145362e-10 7.295826338e-10 5.94008837e-10 1.242715095e-09 2.400360299e-09 2.269025378e-09 1.841998316e-09 2.311765915e-09 2.347494816e-09 2.455393963e-09 3.079699978e-09 2.341327154e-09 2.957583657e-09 2.512970046e-09 3.253535072e-09 2.956663897e-09 3.242621785e-09 1.995055507e-09 1.174929081e-09 1.557388538e-09 1.935041739e-09 1.282920384e-09 1.886659091e-09 8.761644491e-10 1.147237021e-09 3.139665125e-10 1.757985657e-10 9.104113891e-11 1.769068666e-10 2.126665647e-10 2.866379057e-10 7.441552793e-10 1.421004859e-09 1.382650299e-09 2.234926562e-09 3.251722028e-09 2.040405764e-09 2.791337049e-09 4.526518526e-09 4.035405269e-09 6.016835881e-09 6.172718129e-09 8.893548494e-09 6.862603387e-09 5.633635617e-09 7.151933935e-09 7.121260283e-09 6.349831978e-09 7.323819888e-09 7.218396846e-09 4.15908354e-09 7.651680394e-09 7.061910496e-09 7.65524343e-09 6.506190084e-09 4.968446446e-09 5.354942648e-09 6.017500767e-09 7.212259264e-09 7.334781349e-09 6.721560175e-09 5.952204474e-09 3.77986152e-09 3.578994716e-09 2.318987554e-09 3.306569399e-09 2.784093198e-09 3.655441167e-09 2.614507029e-09 1.61924725e-09 9.949533043e-10 1.557496856e-10 1.317498173e-10 1.350942473e-10 3.126995723e-10 1.272442027e-10 2.893755714e-10 6.825070507e-10 7.628277265e-10 1.338900358e-09 2.163886433e-09 1.135113541e-09 1.637775459e-09 2.144997647e-09 2.223254297e-09 1.866764572e-09 3.376346948e-09 2.178479711e-09 2.780002236e-09 2.316155911e-09 1.489113508e-09 2.870546436e-09 1.998023787e-09 2.546079756e-09 3.20330116e-09 3.046820709e-09 2.271382492e-09 2.694282335e-09 1.061772905e-09 1.277003787e-09 7.501594055e-10 3.991403907e-10 5.52476128e-10 7.827800756e-10 1.331851515e-09 1.648990469e-09 1.531477572e-09 1.503801811e-09 1.304745598e-09 1.892084407e-09 1.028569808e-09 1.286206788e-09 8.099496322e-10 2.177269461e-09 1.553679713e-09 2.170762799e-09 1.6925666e-09 2.256396455e-09 2.344747508e-09 1.780710005e-09 1.382387116e-09 1.031865979e-09 1.042650424e-09 1.745065782e-09 1.461663753e-09 5.189575173e-10 1.717984191e-09 9.147701218e-10 8.879709262e-10 4.052224005e-10 1.228519438e-09 1.83444982e-09 1.204776547e-09 5.879662387e-10 8.272949634e-10 1.39280861e-09 1.303061798e-09 1.847258441e-09 1.437227285e-09 1.016299019e-09 9.420385677e-10 8.204740034e-10 3.926266543e-10 3.05336026e-10 5.429918235e-10 1.058111649e-09 6.916626448e-10 9.253421988e-10 9.18971638e-10 1.218219928e-09 5.993118018e-10 1.165565871e-09 1.150910113e-09 1.068432964e-09 1.044270272e-09 1.160969331e-09 8.079016978e-10 1.238832934e-09 1.512009265e-09 1.133966152e-09 1.099164091e-09 1.077834992e-09 7.541898283e-10 1.001643071e-09 1.152596237e-09 4.978134832e-10 6.30050621e-10 3.358954688e-10 7.583933553e-10 1.89532453e-10 3.439463542e-10 6.923315811e-10 5.217432637e-10 7.525657509e-10 7.972462852e-10 8.862029822e-10 5.521425307e-10 2.286168175e-10 2.087326649e-10 4.232255086e-10 3.944179136e-10 3.624149262e-10 4.611152534e-10 3.839673714e-10 4.905160157e-10 4.212820448e-10 7.016841994e-10 3.915313453e-10 7.766699415e-11 2.925984803e-10 4.946604682e-10 2.504059187e-10 2.236246081e-10 1.722007239e-10 3.424371062e-10 5.46908744e-10 5.30195775e-10 1.30289836e-10 5.859825974e-10 3.773334376e-10 3.924560095e-10 +5.561535619e-10 2.416041361e-10 1.784936905e-10 4.489426003e-10 5.679062136e-10 3.5075853e-10 2.930338704e-10 6.946688402e-10 2.647945018e-10 7.026137583e-10 7.869936008e-10 1.168877995e-10 3.23717761e-10 7.657084584e-10 3.59141861e-10 1.288914843e-09 8.824277037e-10 3.920203545e-10 5.387767494e-10 4.563867898e-10 4.814436783e-10 3.077071698e-10 3.864729188e-10 5.920969198e-10 1.953152295e-10 7.037288491e-10 3.926496152e-10 2.271689068e-10 5.546832528e-10 7.874053132e-10 6.203686504e-10 4.764294803e-10 4.515438118e-10 4.734248073e-10 6.03866005e-10 6.986595884e-10 1.270850913e-09 6.309185074e-10 6.731925075e-10 1.226467566e-09 5.978506644e-10 1.743505315e-09 7.676755959e-10 7.537887675e-10 1.141590692e-09 8.746557745e-10 7.446010951e-10 1.370193381e-09 8.745960757e-10 7.979098976e-10 1.241291255e-09 6.872951299e-10 9.917349393e-10 1.203978427e-09 1.14811927e-09 9.28868373e-10 9.869470694e-10 7.503716102e-10 8.524119702e-10 8.578140332e-10 9.110362734e-10 9.045037387e-10 1.52596829e-09 6.678991802e-10 8.436274842e-10 1.103998984e-09 1.680332699e-09 7.608885507e-10 6.675650314e-10 1.154229286e-09 1.24668465e-09 1.30563728e-09 9.91869825e-10 3.427218546e-10 1.038599307e-09 1.020222141e-09 9.450771611e-10 5.889800262e-10 8.458276428e-10 1.444353799e-09 1.647273445e-09 2.092589016e-09 1.621955652e-09 2.222229152e-09 1.75284381e-09 1.705276683e-09 1.032412432e-09 1.540593724e-09 1.64008838e-09 2.011972441e-09 1.540999115e-09 2.192764446e-09 1.47818142e-09 1.423219542e-09 1.477454447e-09 1.555140511e-09 7.80904799e-10 9.636859772e-10 5.033743078e-10 4.800849926e-10 9.427761165e-10 8.613006407e-10 1.703504158e-09 2.863647405e-09 2.418467659e-09 2.062435507e-09 3.282333366e-09 1.759368119e-09 1.904062269e-09 1.790024584e-09 2.794174197e-09 2.412008089e-09 3.891726798e-09 2.911066769e-09 3.711892045e-09 3.226151474e-09 1.260087826e-09 1.745624424e-09 2.10440747e-09 2.104952275e-09 1.353833068e-09 1.102652071e-09 1.210160864e-09 8.418202186e-10 4.174264025e-10 1.241078048e-10 1.505768616e-10 3.14913874e-13 2.963718221e-10 3.589863099e-10 2.05606398e-09 1.913170732e-09 3.257534536e-09 3.594311225e-09 3.170676996e-09 1.976621199e-09 4.206434691e-09 3.931100422e-09 6.884296199e-09 9.350330602e-09 6.290754298e-09 7.01703661e-09 5.297321001e-09 7.646257721e-09 8.115725787e-09 4.922186811e-09 5.101641506e-09 6.032430286e-09 4.583186957e-09 5.547930064e-09 3.867594607e-09 4.380818546e-09 4.8894295e-09 4.559211641e-09 4.863800111e-09 5.751795913e-09 7.518480914e-09 6.441271294e-09 5.928678526e-09 7.1249124e-09 8.069729731e-09 5.42244747e-09 4.028902328e-09 3.155165608e-09 3.091037762e-09 3.110107452e-09 2.955543637e-09 3.246294927e-09 2.182857259e-09 1.541318074e-09 6.073050339e-10 2.170140229e-10 1.235185563e-10 9.188857728e-11 3.232088806e-10 2.901040071e-10 7.357056857e-10 1.620275954e-09 2.288302506e-09 1.500704102e-09 1.77143079e-09 1.988708799e-09 2.350118802e-09 1.465297636e-09 2.249272827e-09 4.430870713e-09 2.434331664e-09 2.31936607e-09 2.336834965e-09 3.36376632e-09 2.823409442e-09 2.51230243e-09 3.77756809e-09 1.770270738e-09 2.634845942e-09 2.874747872e-09 3.009069461e-09 1.748197406e-09 6.345838471e-10 7.760881967e-10 3.857205262e-10 2.978179664e-10 9.780232939e-10 7.017811955e-10 1.849416122e-09 1.750606467e-09 1.641987059e-09 1.5851568e-09 1.489414622e-09 1.870644306e-09 1.756971309e-09 1.221100214e-09 1.410875516e-09 1.166080571e-09 1.594389459e-09 1.733058717e-09 1.892989227e-09 3.351478778e-09 1.575738472e-09 1.42064141e-09 1.899694278e-09 1.399852793e-09 6.829895e-10 1.0418668e-09 7.026230863e-10 1.198435502e-09 8.61509193e-10 8.521008055e-10 1.432618539e-09 9.388720251e-10 1.316391807e-09 1.150238229e-09 1.283938734e-09 1.106570872e-09 7.912817743e-10 8.822036225e-10 1.128269145e-09 1.523149964e-09 6.42811453e-10 1.113135035e-09 6.614405784e-10 1.260492216e-09 1.196287574e-09 4.922396395e-10 9.639106474e-10 1.543437039e-09 1.441848995e-09 7.325364407e-10 1.302149958e-09 1.468970014e-09 9.912404904e-10 1.046192603e-09 7.152252485e-10 7.03615146e-10 5.57558458e-10 9.422264044e-10 1.022114531e-09 1.144534421e-09 5.90673302e-10 6.825436457e-10 8.409778065e-10 9.085036522e-10 1.263639704e-09 6.512476169e-10 7.865819292e-10 4.746486095e-10 6.39483272e-10 5.982600519e-10 1.64827493e-10 7.177503047e-10 7.731733776e-10 4.07788456e-10 6.438042598e-10 7.865512086e-10 4.52285507e-10 4.285005545e-10 2.192337089e-10 3.592764898e-10 4.8831372e-10 8.703975375e-10 8.372801916e-10 4.386430144e-10 2.733698759e-10 5.257198291e-10 3.46974562e-10 7.350976442e-10 6.444067765e-10 8.018698373e-10 3.945069121e-10 6.554510929e-10 3.873433974e-10 3.565560809e-10 3.948073456e-10 5.41348181e-10 5.225679228e-10 2.811807912e-10 7.523675404e-10 1.669442157e-10 4.686779029e-10 1.996860245e-10 +3.53085704e-10 6.995615715e-10 4.523500528e-10 4.684740324e-10 6.045313434e-10 6.671009549e-10 3.027359793e-10 4.361147733e-10 4.271523246e-10 1.426900361e-10 7.741351089e-10 3.204001725e-10 2.061284515e-10 4.477102709e-10 2.760982743e-10 1.081535374e-09 2.567801659e-10 1.077831899e-10 2.693252184e-10 1.160453594e-09 4.710192207e-10 8.622229593e-10 3.49910453e-10 1.102652427e-09 4.539689815e-10 3.001750572e-10 7.005102449e-10 2.013758495e-10 3.202642164e-10 6.359810761e-10 3.629284177e-10 6.516739224e-10 3.127680013e-10 7.713252838e-10 9.794412097e-10 5.278881964e-10 5.925972975e-10 1.404913305e-09 1.084902208e-09 1.23010944e-09 1.218803834e-09 1.223117364e-09 1.139091883e-09 7.244916968e-10 1.163371251e-09 7.798239376e-10 1.17662116e-09 1.342531608e-09 7.853261459e-10 1.05516288e-09 5.666163459e-10 1.007172446e-09 8.466179416e-10 1.176174628e-09 9.27652288e-10 9.573036172e-10 7.661966025e-10 9.441313241e-10 4.087441749e-10 9.669480669e-10 1.047029794e-09 7.371679733e-10 1.879170078e-09 1.10170032e-09 1.661565379e-09 1.07037791e-09 1.15428525e-09 1.179216341e-09 1.125993472e-09 1.357904123e-09 8.456117655e-10 1.352163144e-09 1.140106141e-09 1.56730334e-09 9.507672589e-10 8.418726504e-10 8.116985579e-10 5.630699603e-10 1.247480231e-09 1.20994862e-09 1.593731601e-09 2.484879731e-09 1.840943662e-09 2.180134665e-09 1.933412695e-09 1.729199905e-09 1.722192761e-09 1.753488839e-09 1.34785625e-09 1.141582699e-09 1.143857835e-09 1.401607839e-09 1.496013126e-09 1.921702586e-09 1.497116845e-09 1.286640719e-09 1.143514056e-09 9.090824703e-10 6.109468809e-10 2.697808209e-10 1.032072782e-09 1.25912106e-09 1.97533854e-09 3.365465142e-09 1.665441386e-09 1.758898949e-09 1.776176767e-09 3.334616322e-09 1.261154697e-09 2.46888639e-09 1.503595453e-09 3.284164519e-09 2.404491055e-09 3.440005677e-09 2.575571509e-09 2.225060564e-09 1.980545303e-09 1.291113706e-09 2.182268234e-09 1.168598547e-09 1.080017217e-09 1.634170526e-09 8.275343834e-10 4.274026168e-10 1.840151e-10 8.978528306e-21 1.122263946e-11 8.315548227e-19 4.651205688e-10 7.205929688e-10 2.153624066e-09 2.670661454e-09 3.584038001e-09 2.741151599e-09 2.317549869e-09 2.948482479e-09 4.660491721e-09 6.543772164e-09 6.111228518e-09 7.165123869e-09 7.031270815e-09 6.796679105e-09 7.008696839e-09 4.859857729e-09 5.041257393e-09 5.909888686e-09 6.726597021e-09 5.07464068e-09 4.556818843e-09 6.379537795e-09 4.965540196e-09 4.810653877e-09 5.395680839e-09 6.133120553e-09 4.455916857e-09 6.925467427e-09 5.945792841e-09 5.426809701e-09 5.206093445e-09 8.044157346e-09 6.245493111e-09 8.250526505e-09 7.379405178e-09 4.715938104e-09 2.223175793e-09 2.684378262e-09 3.628642906e-09 3.641636852e-09 3.219913746e-09 1.856020851e-09 8.590101646e-10 4.625807989e-10 5.685070993e-10 2.963173055e-10 2.978140862e-10 7.22845453e-11 8.782079106e-10 1.397622897e-09 1.920420413e-09 2.022580323e-09 1.720695965e-09 1.406853389e-09 2.09788792e-09 1.982220573e-09 1.368709443e-09 2.737160674e-09 2.701758704e-09 2.184555458e-09 2.244150366e-09 2.60057477e-09 1.571134458e-09 2.322902553e-09 1.939180832e-09 2.157447377e-09 1.388078598e-09 4.025942721e-09 1.768010504e-09 8.804810198e-10 6.453632072e-10 1.128524713e-09 4.095490101e-10 3.478150668e-10 4.942876413e-10 7.99651979e-10 9.165987886e-10 1.28492058e-09 1.596587087e-09 9.721474889e-10 1.960651196e-09 9.483216062e-10 1.434219506e-09 1.867426998e-09 1.600592283e-09 2.22416758e-09 1.562397191e-09 1.662341293e-09 2.620052466e-09 2.250911005e-09 1.283492467e-09 2.095260311e-09 9.149454943e-10 6.423793793e-10 1.347557034e-09 7.343073454e-10 6.691883834e-10 1.3162949e-09 1.123761913e-09 8.254030791e-10 8.967033834e-10 9.815108505e-10 1.113232479e-09 5.6360801e-10 1.262831719e-09 1.513641556e-09 1.495020123e-09 9.69454136e-10 6.854163212e-10 9.985141467e-10 8.417191447e-10 6.736347931e-10 6.972413196e-10 9.122569795e-10 1.140062978e-09 8.505445516e-10 9.501812788e-10 1.579097824e-09 9.846930538e-10 6.951586756e-10 7.744344539e-10 1.044457702e-09 9.757975735e-10 8.958790412e-10 8.727301758e-10 9.80643252e-10 1.070448019e-09 1.157381842e-09 1.051617049e-09 9.823603265e-10 1.454554873e-09 8.00365535e-10 1.033315734e-09 9.656560731e-10 1.305531432e-09 6.314242707e-10 2.28593001e-10 4.889799762e-10 5.391098228e-10 4.630185635e-10 6.853339302e-10 6.388308207e-10 3.379965387e-10 3.547427212e-10 7.360352424e-10 3.283987407e-10 1.530679299e-10 7.501191732e-10 9.518427575e-10 1.053309442e-09 5.066970818e-10 3.613071341e-10 3.17631896e-10 3.819711191e-10 3.395974891e-10 3.185326593e-10 7.233989062e-10 5.553639736e-10 6.272845464e-10 1.600778905e-10 2.254583454e-10 4.677000539e-10 2.427193602e-10 3.167512731e-10 6.039310084e-10 1.505161123e-10 6.144744729e-10 2.741696837e-10 2.59709941e-10 7.791997953e-10 4.058570381e-10 1.754480088e-10 +6.790599133e-11 3.662073538e-10 7.815126082e-10 3.45705708e-10 1.619223213e-10 6.630284328e-10 4.792109854e-10 4.930808052e-10 5.104582884e-10 1.559068526e-10 2.751006484e-10 6.62622254e-10 1.237160152e-10 4.015384339e-10 3.755055385e-10 4.834631334e-10 3.363715502e-10 3.871227011e-10 5.360185715e-10 2.969994874e-10 4.389471072e-10 4.804513608e-10 7.367696486e-10 8.511254198e-10 4.522450378e-10 6.401900338e-10 5.71340714e-10 8.486314955e-10 1.562167285e-10 3.306860062e-10 3.612228165e-10 5.478598285e-10 6.00723903e-10 3.575685702e-10 9.072583038e-10 8.018896784e-10 6.217274169e-10 3.396563696e-10 9.101971444e-10 2.986440793e-10 6.664451519e-10 1.14112723e-09 9.45987738e-10 1.139019802e-09 7.965431004e-10 1.225775966e-09 8.649249294e-10 8.047091815e-10 1.166415877e-09 8.146134035e-10 1.48074667e-09 1.044694178e-09 9.816674408e-10 1.140722498e-09 1.322943918e-09 1.192295054e-09 1.100243043e-09 5.743171944e-10 5.927174489e-10 4.233369747e-10 1.327103509e-09 8.668696987e-10 1.082661969e-09 9.349526934e-10 1.435258887e-09 8.795970799e-10 1.111931072e-09 9.152841627e-10 1.568956026e-09 1.316188676e-09 1.234300173e-09 9.906234759e-10 1.156718198e-09 4.919765744e-10 1.481990227e-09 8.204058321e-10 6.299396134e-10 1.101375285e-09 1.110635426e-09 1.576865708e-09 1.011964443e-09 2.323229138e-09 2.32846641e-09 1.721448546e-09 2.080082858e-09 2.430627888e-09 1.443064376e-09 1.51350859e-09 2.169435859e-09 1.610562691e-09 1.835184039e-09 1.483122232e-09 1.098495793e-09 1.002588994e-09 1.654904269e-09 1.314628052e-09 6.888026853e-10 4.368713608e-10 1.031349147e-09 7.117182389e-10 7.8464943e-10 7.886393259e-10 2.640193909e-09 2.948260384e-09 4.17812727e-09 4.024414997e-09 2.472225377e-09 3.305471931e-09 1.962351055e-09 1.735963518e-09 3.595635777e-09 2.379761928e-09 2.955056978e-09 3.063417608e-09 1.570596417e-09 2.422930178e-09 2.480236809e-09 1.643437155e-09 1.749546386e-09 1.866119809e-09 1.682563549e-09 1.535088089e-09 6.786879238e-10 2.629280504e-10 3.554342081e-11 8.93945593e-11 2.583679332e-10 1.789705803e-10 5.864198381e-10 1.642140763e-09 2.783048816e-09 3.194615651e-09 2.291560271e-09 2.758706476e-09 2.703475163e-09 4.797795051e-09 4.510657691e-09 8.700019728e-09 6.368318191e-09 7.269491754e-09 5.614127643e-09 7.350458135e-09 5.745600367e-09 5.146753665e-09 5.26030639e-09 6.752100358e-09 4.564484958e-09 5.000863184e-09 4.254516628e-09 5.312017245e-09 4.094343362e-09 6.218161712e-09 5.139248563e-09 5.121719028e-09 5.010609513e-09 5.372217858e-09 7.24120203e-09 7.244997097e-09 6.351731835e-09 7.511421341e-09 4.54054558e-09 6.253892774e-09 7.021958413e-09 5.469730279e-09 3.227197765e-09 2.259997637e-09 2.617782392e-09 3.218372589e-09 1.573836434e-09 3.338648871e-09 1.211561139e-09 6.991717168e-10 2.251228148e-10 5.805756841e-11 9.169943505e-11 3.014349038e-10 9.357171338e-11 9.346049963e-10 1.565576204e-09 1.559459425e-09 1.556396858e-09 1.369493672e-09 1.851329946e-09 1.598154711e-09 1.76462067e-09 2.674213555e-09 3.548342881e-09 2.974654063e-09 3.632100691e-09 2.49347185e-09 3.711898986e-09 2.634412606e-09 3.38918384e-09 3.042202666e-09 4.032977032e-09 2.308798417e-09 2.750197009e-09 8.935783369e-10 7.935519997e-10 8.283317499e-10 7.085782356e-10 3.187099296e-10 7.650049498e-10 6.84982267e-10 1.225297013e-09 1.423356512e-09 9.6163252e-10 1.471154067e-09 1.914348584e-09 1.76322888e-09 2.503542678e-09 1.440840431e-09 1.279888229e-09 1.907465622e-09 1.589265424e-09 1.288812597e-09 2.452997304e-09 1.436723064e-09 2.147663673e-09 8.2381253e-10 1.616374952e-09 7.069394314e-10 1.009702304e-09 6.318069667e-10 9.843372485e-10 1.438727391e-09 1.394120291e-09 7.375388282e-10 8.199029179e-10 9.678555062e-10 1.182250028e-09 8.934774933e-10 1.077393366e-09 7.728514625e-10 8.908317527e-10 7.689565914e-10 1.385822122e-09 1.084165857e-09 1.014892661e-09 3.946885978e-10 3.027843985e-10 4.491477264e-10 5.928031738e-10 1.235539004e-09 6.106500046e-10 6.205384289e-10 8.922840482e-10 5.945124417e-10 1.559587e-09 1.529506113e-09 1.22360633e-09 1.387448464e-09 1.109383915e-09 1.410997893e-09 1.024187072e-09 1.035840241e-09 9.487898709e-10 1.333846958e-09 7.375340444e-10 1.205901781e-09 7.618611579e-10 8.240975624e-10 9.064949674e-10 6.474361228e-10 8.986818715e-10 6.452549835e-10 2.874448503e-10 3.00581407e-10 5.992777711e-10 2.744130075e-10 6.298856282e-10 5.958939461e-10 3.49623299e-10 8.854634972e-10 3.205784423e-10 4.132158873e-10 8.466817468e-10 7.190553996e-10 3.794570783e-10 3.140189266e-10 3.651539925e-10 3.420736096e-10 7.61957481e-10 4.469696854e-10 6.486107029e-10 4.199905684e-10 2.00258676e-10 4.103193933e-10 3.85257098e-10 5.043951078e-10 6.469548974e-10 1.326921317e-10 4.170114727e-10 5.550265981e-10 2.59238162e-10 1.503337782e-10 4.38453005e-10 4.887987484e-10 6.545955607e-10 7.219218652e-10 +1.418058552e-10 6.66468445e-10 5.332106283e-10 1.226723129e-10 7.23498796e-10 1.554769493e-10 4.032251781e-10 2.834988732e-10 3.458006629e-10 4.251186918e-10 2.376986861e-10 1.024207826e-09 4.211971601e-10 2.240353787e-10 3.579212079e-10 1.3276735e-09 6.119766201e-10 6.216308539e-10 1.853170716e-10 5.245677226e-10 2.848823907e-10 5.835377684e-10 5.685030278e-10 8.029546528e-10 8.079428532e-10 4.356180624e-10 4.497814127e-10 4.596330735e-10 5.746372443e-10 1.957450397e-10 6.119755968e-10 1.087297317e-09 8.70152182e-10 2.888208958e-10 3.597208589e-10 1.033475941e-09 9.580391156e-10 3.709477961e-10 9.004046406e-10 9.28275554e-10 1.026587802e-09 1.62686528e-09 1.054902739e-09 1.056393256e-09 1.731538242e-09 7.534353182e-10 8.212533056e-10 1.002003457e-09 8.993372188e-10 1.562139165e-09 9.054570107e-10 8.551547559e-10 2.106113755e-09 8.739859795e-10 1.120078127e-09 8.746923156e-10 6.313942331e-10 5.105178531e-10 1.090589682e-09 9.719063026e-10 1.208356769e-09 1.088533387e-09 1.402354067e-09 1.766608015e-09 1.298056739e-09 2.211394535e-09 1.36506375e-09 1.652829102e-09 1.318760845e-09 1.470583161e-09 1.609032113e-09 8.419305041e-10 1.907613543e-09 8.473244949e-10 1.404468879e-09 5.492942487e-10 9.539751336e-10 6.848269745e-10 7.04962069e-10 8.1874344e-10 2.08283431e-09 2.345073718e-09 2.509226669e-09 1.460225917e-09 1.286383615e-09 1.599177681e-09 2.627980965e-09 1.150522237e-09 1.520605995e-09 1.663380337e-09 1.706410563e-09 1.489378825e-09 2.013678797e-09 2.292865391e-09 1.474682463e-09 1.736070085e-09 1.446668574e-09 9.084334952e-10 2.985287895e-10 2.977810055e-10 1.503015088e-09 1.028878582e-09 2.616642802e-09 2.028809035e-09 3.036227652e-09 1.738421976e-09 2.724841745e-09 1.223838452e-09 2.70085611e-09 8.169038668e-10 2.592315319e-09 2.795696594e-09 3.626382808e-09 2.832122028e-09 1.652490962e-09 1.294738545e-09 1.036574567e-09 2.309976945e-09 1.160688699e-09 1.746236538e-09 1.790275101e-09 1.55385954e-09 5.99327769e-10 4.27917079e-10 1.444647661e-10 2.726489666e-10 2.67049843e-10 3.618171079e-10 1.100275226e-09 2.740293939e-09 1.534068509e-09 2.429061517e-09 3.503601805e-09 2.186733555e-09 2.80299578e-09 3.484020206e-09 5.732270069e-09 7.580593083e-09 7.129084729e-09 5.601720603e-09 5.201722405e-09 7.699841367e-09 6.23660547e-09 5.922341024e-09 4.561558763e-09 5.345786748e-09 4.635901469e-09 2.918735594e-09 5.367911335e-09 2.943472763e-09 5.055195944e-09 4.635977498e-09 3.923555531e-09 5.334006674e-09 5.191577473e-09 4.957761006e-09 5.905262093e-09 3.878395586e-09 4.290405123e-09 7.572677253e-09 5.025593669e-09 6.883589898e-09 8.392304236e-09 6.473766066e-09 4.942972858e-09 4.314052944e-09 3.437765479e-09 2.954741445e-09 2.63418115e-09 3.523281335e-09 2.145612803e-09 1.3522793e-09 9.81185404e-10 6.164795023e-11 2.294190814e-10 2.14796052e-10 2.929599072e-10 8.377385209e-10 1.714604834e-09 1.35693157e-09 1.165017993e-09 1.448496007e-09 1.534957616e-09 1.215254271e-09 1.499849287e-09 1.778676475e-09 3.554836724e-09 3.611127702e-09 2.298808423e-09 2.334957941e-09 1.630259262e-09 3.212291823e-09 2.821097617e-09 2.472388259e-09 1.742147628e-09 3.23710898e-09 1.051786146e-09 3.070917022e-09 1.132146807e-09 6.583780307e-10 6.748416702e-10 5.659586111e-10 5.304836854e-10 1.068579707e-09 9.644378011e-10 1.373026634e-09 1.741561566e-09 1.952027847e-09 1.927885051e-09 2.104494426e-09 1.835576299e-09 1.193626384e-09 1.32574876e-09 2.521237517e-09 1.432089238e-09 1.791221475e-09 1.676916968e-09 2.242133999e-09 1.623266702e-09 1.039651921e-09 1.376312115e-09 8.28680576e-10 9.112186198e-10 1.329867689e-09 8.430367878e-10 1.832892094e-09 1.216521729e-09 1.243825537e-09 1.544554326e-09 1.293405906e-09 1.290879744e-09 1.489693619e-09 9.651835643e-10 9.274723729e-10 8.662491098e-10 1.172611289e-09 7.873299638e-10 1.501771525e-09 3.869017825e-10 6.881884469e-10 7.954752021e-10 6.215077604e-10 8.795098153e-10 5.835304902e-10 7.829599475e-10 5.608234573e-10 1.103786833e-09 9.31754214e-10 1.576239825e-09 1.059646313e-09 1.783528847e-09 1.123611136e-09 6.64291513e-10 8.970592323e-10 1.327329973e-09 3.144429322e-10 1.042730214e-09 1.081215075e-09 1.052394857e-09 1.128835093e-09 6.118385653e-10 1.02536557e-09 8.830549258e-10 5.896198506e-10 5.848218018e-10 2.514682486e-10 4.628694922e-10 3.926920336e-10 6.887170088e-10 2.437213843e-10 4.517156185e-10 2.881878707e-10 3.842209831e-10 6.159321826e-10 9.162591798e-10 5.800931491e-10 6.616382697e-10 7.248242146e-10 6.327353377e-10 3.619736208e-10 7.096585161e-10 5.007849673e-10 1.061505278e-10 6.936607374e-10 7.319683719e-10 1.924514494e-10 5.6620421e-10 1.253805216e-10 3.978884154e-10 4.855172524e-10 4.682726609e-10 2.758213433e-10 1.939661379e-10 4.527897593e-10 3.889308559e-10 4.483110205e-10 3.44769957e-10 4.30738765e-10 4.998789842e-10 3.537566745e-10 +5.571418632e-10 6.984056815e-10 5.504121454e-10 4.437997397e-10 2.207230696e-10 1.623938557e-10 6.305413847e-10 2.20027855e-10 8.274168974e-10 5.021326408e-10 4.11060086e-10 6.077661167e-10 2.639391629e-10 7.322410879e-10 2.733618513e-10 7.812661551e-10 2.084899849e-10 7.21016214e-10 7.3087124e-10 1.025143185e-10 4.106069204e-10 4.844980696e-10 2.31379967e-10 3.494481878e-10 5.368911865e-10 4.439293162e-10 2.886792234e-10 8.708686723e-10 3.39295686e-10 2.163041384e-10 3.40133558e-10 3.828407971e-10 3.589990957e-10 2.986984849e-10 5.879378095e-10 6.849685181e-10 6.935043727e-10 5.105196011e-10 1.136375744e-09 7.480883694e-10 1.134965927e-09 1.453598778e-09 1.023127429e-09 5.355544517e-10 9.842443017e-10 1.084026274e-09 1.652078233e-09 1.087036967e-09 8.66154583e-10 1.060321803e-09 1.418405607e-09 9.413534349e-10 1.496549547e-09 1.056933448e-09 8.759712577e-10 1.850738655e-09 8.762770425e-10 1.005063003e-09 7.241609493e-10 7.25413555e-10 1.044605515e-09 8.0551387e-10 8.423300367e-10 1.259082336e-09 1.386726665e-09 1.126145296e-09 1.277077285e-09 1.913980778e-09 6.703287466e-10 1.032630817e-09 5.825743148e-10 5.567703564e-10 1.236918791e-09 1.033466454e-09 9.592044272e-10 1.212031846e-09 1.208854639e-09 1.087367146e-09 7.405867964e-10 1.669365117e-09 1.463529526e-09 2.319411229e-09 8.907076881e-10 2.150415821e-09 1.568741115e-09 2.048003027e-09 1.655608912e-09 1.081502504e-09 1.711683506e-09 1.762833675e-09 1.384112196e-09 2.187986634e-09 1.164116353e-09 9.041645531e-10 9.992242337e-10 1.393378443e-09 7.023895829e-10 5.391093971e-10 2.211122243e-10 8.635611271e-10 4.726886667e-10 1.282533632e-09 1.444305169e-09 3.310135619e-09 2.257159302e-09 2.050725472e-09 2.38438844e-09 2.47573488e-09 2.169229305e-09 1.93111131e-09 9.700982693e-10 1.693963999e-09 4.013244237e-09 3.387428473e-09 2.595917826e-09 2.380269581e-09 1.788126825e-09 1.467493141e-09 1.739002892e-09 1.948340971e-09 1.341854159e-09 4.731458625e-10 4.094425414e-10 5.352802277e-11 2.248532864e-10 1.917707897e-15 1.817854648e-10 3.267701298e-10 2.111028915e-09 1.478373131e-09 2.817373948e-09 2.336122779e-09 2.172250635e-09 3.618268344e-09 4.074403883e-09 5.993080017e-09 7.201182373e-09 7.188198513e-09 6.875246172e-09 6.004881762e-09 5.255931747e-09 5.700997613e-09 5.93863046e-09 5.41588616e-09 4.840255441e-09 2.898810601e-09 4.190051958e-09 3.056533964e-09 2.821649243e-09 2.811627783e-09 2.816998619e-09 3.842843667e-09 3.202772663e-09 2.608270505e-09 5.343785745e-09 4.88680398e-09 5.649130848e-09 5.379474339e-09 5.315889724e-09 5.925444189e-09 4.877449343e-09 7.019669097e-09 1.094192192e-08 8.001562245e-09 7.259869551e-09 4.466596774e-09 3.227681504e-09 2.644798165e-09 3.720099762e-09 2.669052762e-09 3.606982826e-09 1.531955092e-09 4.199214895e-10 1.880727637e-10 2.043300732e-10 3.16307868e-10 1.389602416e-10 3.834039998e-10 1.075357821e-09 1.484222019e-09 2.040463684e-09 1.103887933e-09 2.626249487e-09 1.59414183e-09 1.75690659e-09 2.329540593e-09 3.613769841e-09 3.134589308e-09 1.706759646e-09 3.821995474e-09 2.303895929e-09 2.400987664e-09 2.356144989e-09 3.067631423e-09 3.666760643e-09 3.114704576e-09 2.925245724e-09 1.904180947e-09 1.222012828e-09 7.833215823e-10 7.648237012e-10 3.365555717e-10 8.166354512e-10 4.18627483e-10 1.365421661e-09 2.276887523e-09 1.488798366e-09 1.421462419e-09 1.74412083e-09 1.347824945e-09 7.587290921e-10 1.504338365e-09 1.724222749e-09 1.936895576e-09 2.352552112e-09 2.175392947e-09 2.091838717e-09 1.455757203e-09 1.845050551e-09 8.707320939e-10 1.245733985e-09 1.025687826e-09 8.267109656e-10 7.542186816e-10 6.029733682e-10 1.000059113e-09 1.298632389e-09 1.488061891e-09 7.968236129e-10 1.217947059e-09 1.287246999e-09 5.048612236e-10 1.181319235e-09 1.083998902e-09 8.590409528e-10 1.309948774e-09 1.013206173e-09 1.011554518e-09 7.216831574e-10 4.885578385e-10 1.153338292e-09 7.591623303e-10 5.130725273e-10 1.178125543e-09 1.005684222e-09 8.082784871e-10 1.068473352e-09 1.726137282e-09 1.234074968e-09 6.977992893e-10 1.039502562e-09 1.355043494e-09 8.449154827e-10 6.86436624e-10 6.394599388e-10 1.024085728e-09 1.265920634e-09 1.377716331e-09 8.275208526e-10 4.937765315e-10 1.04358641e-09 5.917153638e-10 9.175781781e-10 1.093349392e-09 1.229205571e-09 4.079508953e-10 5.630445115e-10 4.386849301e-10 6.186581252e-10 4.899439296e-10 3.80667506e-10 4.071861934e-10 2.211526384e-10 5.671483468e-10 4.112984731e-10 5.840404384e-10 6.412653569e-10 3.817816761e-10 6.660343819e-10 9.775519082e-10 8.002267093e-10 3.803368797e-10 4.025051888e-10 4.002753517e-10 3.074175224e-10 3.793006945e-10 5.146468769e-10 4.963841782e-10 1.28995248e-10 4.848871434e-10 7.450614724e-10 1.725661179e-10 4.842894794e-10 2.980652658e-10 3.396610193e-10 5.678946902e-10 3.457045498e-10 3.228671582e-10 8.86527042e-11 5.37166432e-10 +2.095128839e-10 2.454754253e-10 2.259854398e-10 1.87457332e-10 5.446314856e-10 2.929600794e-10 5.526121874e-10 6.179448258e-10 5.709588239e-10 9.392258031e-10 2.822285386e-10 3.31754479e-10 5.813390472e-10 4.434186732e-10 7.831584554e-10 1.771179624e-10 3.914058723e-10 3.881176232e-10 4.483209595e-10 5.535723842e-10 5.792333846e-10 2.282153692e-10 3.002982138e-10 3.750784759e-10 9.004157343e-10 5.073575534e-10 5.60708858e-10 8.932844664e-10 4.799292714e-10 8.118429778e-10 1.973833901e-10 5.462570757e-10 6.708056081e-10 2.754615588e-10 1.633673221e-10 6.791857708e-10 3.162764635e-10 9.309697128e-10 7.464720574e-10 7.0264129e-10 7.548846264e-10 1.032397241e-09 1.043799369e-09 1.34232615e-09 8.037043337e-10 8.9831276e-10 1.1258208e-09 8.761902292e-10 1.766221101e-09 1.29720698e-09 8.82301315e-10 1.221520151e-09 1.673878908e-09 1.039406854e-09 3.275877662e-10 6.10357665e-10 6.99505766e-10 7.366914574e-10 1.143453395e-09 6.41312988e-10 8.475128466e-10 8.017920062e-10 1.215083931e-09 1.217105685e-09 9.887383551e-10 7.745735842e-10 1.078928225e-09 1.008423587e-09 1.400688377e-09 1.054204873e-09 1.535760222e-09 6.802765189e-10 1.147062572e-09 8.827395712e-10 7.75155293e-10 8.162625075e-10 8.873511603e-10 1.331615471e-09 1.277937012e-09 1.673650006e-09 1.797265337e-09 1.633478049e-09 1.469246247e-09 2.195052753e-09 1.728318365e-09 1.687081094e-09 2.05900419e-09 2.73789256e-09 1.982304897e-09 1.104867459e-09 1.624792831e-09 1.164574633e-09 1.737970923e-09 1.157462781e-09 1.586795062e-09 1.529778931e-09 5.881965875e-10 4.124072817e-10 2.376528266e-10 8.094182774e-10 1.268052516e-09 1.358391568e-09 3.716488794e-09 2.788258604e-09 2.145977974e-09 2.24100617e-09 2.240418034e-09 2.572536062e-09 2.649030001e-09 3.530649338e-09 2.602525406e-09 2.51696423e-09 3.440609956e-09 1.576578733e-09 1.725471237e-09 2.031590496e-09 2.307512251e-09 2.619411361e-09 2.01121438e-09 1.926281565e-09 1.506007686e-09 7.107266814e-10 4.726798118e-15 1.941222775e-10 2.803256883e-10 2.970363e-10 1.244016581e-10 1.532068464e-09 2.350819391e-09 3.683547001e-09 2.457041903e-09 1.97113874e-09 2.878350129e-09 4.17339074e-09 5.544814881e-09 6.947924637e-09 7.291238699e-09 6.814507248e-09 3.884317731e-09 4.683691144e-09 4.847389443e-09 4.864065941e-09 6.163543408e-09 3.827140619e-09 3.472745483e-09 2.704303616e-09 2.766103051e-09 2.401712607e-09 3.127917851e-09 2.501243676e-09 2.075961281e-09 2.476048572e-09 1.989817688e-09 3.480722489e-09 4.949498578e-09 2.893681324e-09 3.10046618e-09 5.050429284e-09 4.619903603e-09 5.700652995e-09 5.411704352e-09 5.553289853e-09 7.871829076e-09 8.639535928e-09 9.406826431e-09 5.351578317e-09 4.275579357e-09 2.624195568e-09 2.256530879e-09 3.260181212e-09 2.997325791e-09 1.820836756e-09 1.672599814e-09 6.396743774e-10 2.695092275e-10 3.830393076e-10 1.512634471e-10 5.372629553e-10 1.314988505e-09 2.080639088e-09 1.383500978e-09 2.011198229e-09 1.9574535e-09 1.743054926e-09 1.893866807e-09 2.891781038e-09 2.768335586e-09 3.292397762e-09 3.026518727e-09 1.675961403e-09 1.850726768e-09 2.518734228e-09 2.885361801e-09 2.455995056e-09 2.346515623e-09 2.401779569e-09 3.333897335e-09 1.987150559e-09 1.060388294e-09 1.202852065e-09 1.093208751e-09 7.993847504e-10 2.904426861e-10 7.403564555e-10 1.064153776e-09 1.228388936e-09 9.219194044e-10 1.259557519e-09 1.997987429e-09 1.388822241e-09 1.474175792e-09 1.935363533e-09 9.20182469e-10 1.390479719e-09 1.713617764e-09 1.106383227e-09 2.078441579e-09 2.146604064e-09 1.706407899e-09 1.407599559e-09 1.917256343e-09 1.157073096e-09 5.589374632e-10 9.538181055e-10 7.749448959e-10 7.910690827e-10 1.122344571e-09 9.979933969e-10 6.351519175e-10 1.474545576e-09 1.358728817e-09 1.360438256e-09 9.393491006e-10 9.118593738e-10 1.096372465e-09 6.160341452e-10 1.073503837e-09 1.118892854e-09 1.050918484e-09 7.918292696e-10 1.224062542e-09 8.442882251e-10 1.324470897e-09 9.781708414e-10 1.148632063e-09 1.146613715e-09 1.013881025e-09 7.637317932e-10 1.203648881e-09 1.062156597e-09 9.590189135e-10 8.002483947e-10 7.216767423e-10 7.161126988e-10 5.815186614e-10 9.07499489e-10 1.38339672e-09 1.628069208e-09 1.301743087e-09 1.459792328e-09 9.460186999e-10 8.640964483e-10 1.288727646e-09 5.133529821e-10 1.072280261e-09 4.767308457e-10 2.629531697e-10 8.925058155e-10 2.864286879e-10 1.044743468e-09 5.972238346e-10 3.168714932e-10 5.315662612e-10 4.226659154e-10 2.663301718e-10 6.942854175e-10 3.087414504e-10 4.810904392e-10 3.367666628e-10 5.108814643e-10 8.601868113e-10 5.372124331e-10 4.627399982e-10 3.702327169e-10 4.143390922e-10 3.695491599e-10 3.879053669e-10 1.004954684e-09 5.919068419e-10 3.778001338e-10 5.337406499e-10 3.46404017e-10 3.389871122e-10 1.596476994e-10 5.033778878e-10 4.923754001e-10 3.622835945e-10 1.849721263e-10 2.338154605e-10 7.252683946e-10 +7.562307809e-10 6.525686331e-10 8.430908078e-10 5.435065841e-10 8.992793582e-10 1.110715235e-10 1.962406721e-10 8.221850045e-10 3.852955082e-10 2.429016293e-10 8.583977539e-10 2.237920398e-10 2.821825646e-10 2.260700538e-10 3.80305191e-10 2.337659419e-10 3.536582093e-10 5.972510313e-10 3.669907469e-10 1.970248067e-10 5.377853743e-10 1.958027726e-10 6.802110871e-10 2.687376856e-10 6.173834862e-10 3.873402026e-10 8.032676727e-10 6.820336818e-10 6.934401699e-10 6.22996709e-10 3.466668438e-10 5.113200569e-10 3.30245907e-10 7.626511827e-10 3.386796218e-10 2.218074258e-10 5.144476381e-10 5.560387145e-10 5.403083143e-10 1.07856145e-09 5.748912257e-10 1.626154386e-09 6.991308319e-10 6.325188502e-10 7.514918385e-10 6.99417139e-10 1.133075554e-09 1.170977724e-09 8.728133862e-10 1.121334151e-09 1.062154823e-09 1.733461966e-09 7.462264894e-10 1.041357432e-09 9.163633024e-10 1.119576661e-09 6.737077037e-10 1.397285447e-09 1.317546825e-09 6.586719555e-10 4.250681967e-10 1.263859264e-09 5.236402469e-10 1.074730113e-09 1.534449088e-09 1.14731394e-09 1.397800555e-09 8.66111429e-10 1.343529545e-09 1.290279943e-09 1.26854077e-09 1.185521269e-09 1.071029014e-09 5.021850619e-10 1.588621415e-09 1.213617723e-09 5.678687776e-10 1.251860287e-09 9.295786393e-10 1.60663612e-09 1.174122198e-09 2.463990125e-09 2.256441979e-09 1.580528853e-09 1.901922468e-09 1.719842615e-09 1.059186493e-09 1.491823408e-09 1.063207126e-09 1.031327722e-09 1.631181668e-09 1.957253837e-09 2.179649653e-09 1.07784913e-09 1.474518302e-09 7.542528145e-10 8.450703634e-10 5.114656981e-10 4.322636328e-10 7.221652202e-10 1.050922225e-09 1.374530876e-09 2.221109826e-09 3.869032345e-09 3.02718085e-09 1.539027043e-09 2.783092942e-09 1.780904169e-09 2.161625594e-09 2.826494229e-09 3.289081489e-09 4.052374427e-09 3.796079286e-09 2.577617303e-09 2.310916651e-09 1.864334542e-09 2.637176098e-09 2.0929086e-09 1.2453908e-09 1.204587018e-09 1.080024631e-09 1.17035004e-09 1.845518715e-10 8.787222518e-11 9.213829607e-11 1.119921276e-10 6.880249765e-10 1.733527543e-09 4.026357865e-09 3.042207704e-09 3.466797041e-09 3.376360284e-09 4.485096465e-09 3.966959659e-09 6.697062973e-09 7.242506594e-09 7.886773791e-09 7.192948119e-09 5.713596015e-09 5.67988443e-09 7.035736451e-09 4.857503274e-09 3.975243085e-09 3.060147496e-09 2.63391114e-09 1.580778893e-09 8.558318751e-10 1.518799519e-09 9.417833803e-10 6.170968571e-10 3.992067242e-10 1.09211445e-09 1.081174287e-09 1.641782746e-09 2.41832034e-09 2.515188458e-09 2.551880957e-09 4.65696674e-09 4.095726461e-09 4.850488113e-09 5.533053662e-09 5.385950449e-09 7.771108207e-09 6.604986971e-09 6.996474252e-09 8.4832631e-09 6.467825052e-09 3.155862114e-09 2.244854468e-09 2.283148281e-09 3.083525926e-09 1.745740359e-09 2.071147757e-09 1.034396092e-09 1.057828847e-10 2.491297536e-10 3.570620266e-10 2.260268555e-10 5.988069954e-10 1.166739954e-09 9.166056217e-10 2.430949697e-09 1.640383818e-09 1.096900157e-09 1.945805924e-09 2.404250047e-09 2.495386881e-09 3.316694047e-09 2.118334014e-09 2.79258172e-09 2.940444076e-09 3.2145703e-09 2.907108604e-09 1.019575987e-09 3.291347806e-09 3.355272451e-09 1.790954202e-09 3.515265825e-09 9.340431014e-10 6.239396161e-10 7.269644565e-10 1.978955251e-10 5.874935516e-10 1.523420728e-09 8.291329105e-10 8.244975955e-10 1.503345945e-09 2.077155196e-09 1.331111833e-09 1.345053541e-09 2.161042679e-09 1.966856133e-09 2.804202063e-09 2.199491127e-09 1.908302719e-09 1.647410924e-09 1.923907915e-09 1.846096389e-09 2.025665e-09 1.679824692e-09 1.212709166e-09 9.289112594e-10 1.648533093e-09 1.12179446e-09 1.055403744e-09 1.194561666e-09 1.062080378e-09 4.403735721e-10 1.575699411e-09 1.750257605e-09 1.322929208e-09 1.071259329e-09 1.190560331e-09 1.124392254e-09 6.203042502e-10 1.402759599e-09 1.088629917e-09 1.159627543e-09 8.533460005e-10 3.240733002e-10 1.04463433e-09 4.216365902e-10 1.226325276e-09 1.330672394e-09 5.535279477e-10 9.382763132e-10 1.115996646e-09 1.171878888e-09 1.12879969e-09 9.861938306e-10 1.23305402e-09 1.111035688e-09 1.423650764e-09 1.054735834e-09 1.108166649e-09 1.435058094e-09 1.456196333e-09 8.873044785e-10 1.116297543e-09 1.244791523e-09 7.489749391e-10 6.107609059e-10 8.143687745e-10 4.302557192e-10 5.795395176e-10 2.309647043e-10 4.069774041e-10 2.951140194e-10 6.469533801e-10 6.16230852e-10 4.666703254e-10 2.723282909e-10 3.477094988e-10 5.9895925e-10 3.592281508e-10 5.606226722e-10 5.217816709e-10 7.049809636e-10 5.617700778e-10 1.060650421e-09 5.270605662e-10 6.749495381e-10 7.139159632e-10 5.877397109e-10 3.345082559e-10 8.568244701e-11 1.910803781e-10 3.317704445e-10 4.099193808e-10 4.787135956e-10 9.213996917e-10 3.787290862e-10 4.168033049e-10 4.261431634e-10 4.55548844e-10 7.3904706e-10 3.171211136e-10 3.612564155e-10 2.033035238e-10 6.07146137e-10 +3.803862732e-10 4.608001547e-10 7.805867839e-10 3.961677773e-10 3.209428455e-10 2.535473876e-10 1.845217102e-10 8.632505121e-10 4.910507157e-10 1.988996741e-10 8.802112201e-10 5.383783917e-10 5.093532808e-10 2.754497908e-10 5.382532917e-10 5.26885155e-10 7.932883677e-10 2.346295848e-10 3.783056078e-10 5.04502407e-10 4.294756302e-10 1.001989993e-09 1.918258542e-10 9.708430367e-10 4.07912617e-10 6.741701041e-10 2.037803753e-10 6.403069143e-10 2.287956948e-10 5.632954432e-10 3.80921854e-10 5.792848861e-10 4.717462431e-10 9.229582021e-10 3.503122648e-10 6.56211424e-10 2.939136583e-10 7.682466054e-10 6.569680191e-10 8.175110816e-10 7.018010111e-10 9.854495368e-10 1.107519483e-09 6.794606174e-10 1.643045328e-09 1.615408781e-09 1.504073506e-09 7.756874647e-10 1.487214259e-09 5.177060671e-10 1.587115847e-09 8.772668807e-10 1.091791686e-09 5.388253927e-10 5.316823117e-10 1.07246858e-09 1.101111122e-09 6.636511872e-10 4.074977262e-10 7.685954042e-10 1.330519729e-09 5.407707331e-10 1.522958069e-09 8.75517568e-10 1.319674731e-09 1.310029757e-09 1.337202181e-09 7.201277065e-10 1.307850814e-09 2.070603819e-09 1.084940817e-09 1.415981542e-09 1.414152278e-09 8.416497468e-10 1.904049564e-09 8.45054021e-10 1.164553942e-09 1.078762499e-09 8.678932946e-10 6.71022892e-10 1.730939291e-09 1.223209005e-09 1.638242915e-09 1.642305909e-09 1.755406355e-09 2.279079267e-09 1.488023549e-09 1.23713454e-09 1.678079458e-09 1.734654347e-09 1.980139168e-09 1.588991102e-09 1.524578318e-09 1.723698952e-09 1.619529849e-09 9.94744999e-10 8.784851535e-10 3.598285846e-10 2.347852645e-10 8.722148531e-10 1.201129779e-09 2.513094354e-09 3.334385203e-09 2.096002009e-09 2.075184163e-09 1.798322105e-09 1.309998513e-09 1.820954267e-09 2.407535898e-09 3.005344071e-09 2.468978733e-09 2.926510804e-09 4.102393171e-09 2.616622582e-09 1.258627471e-09 1.1800005e-09 2.944720821e-09 2.200408369e-09 1.79717927e-09 1.447433057e-09 8.910589849e-10 3.336332326e-10 2.056283945e-10 1.402168643e-10 2.745203735e-10 2.54906881e-10 7.334791846e-10 1.504534269e-09 2.958375442e-09 2.836306757e-09 2.865032855e-09 3.479777745e-09 4.014105614e-09 7.079803101e-09 6.778709456e-09 6.69954556e-09 7.074669052e-09 4.630323334e-09 4.778414421e-09 4.378671584e-09 3.895339197e-09 2.372174041e-09 3.168033936e-09 8.780818577e-10 1.317366912e-09 8.628261906e-10 7.78070036e-10 1.593966125e-10 3.149917777e-10 4.39422401e-10 6.007698122e-10 4.268426338e-10 3.480888539e-10 1.042790532e-09 9.803693672e-10 1.234967064e-09 1.577335984e-09 2.673753899e-09 4.124592154e-09 4.387216816e-09 4.635797092e-09 6.057995638e-09 5.581759028e-09 6.54279129e-09 7.208185108e-09 6.957429881e-09 5.592235893e-09 4.169531407e-09 2.375411207e-09 2.285153563e-09 3.280180583e-09 2.202645936e-09 2.147510243e-09 9.86195532e-10 5.667119872e-10 2.830023383e-10 4.901058552e-10 2.707937593e-10 4.392329233e-10 1.245949758e-09 2.093440322e-09 2.335078529e-09 1.164466909e-09 2.904517418e-09 2.903355775e-09 2.548317962e-09 2.043684716e-09 3.221911643e-09 3.762373603e-09 2.439787089e-09 2.217735325e-09 3.411917882e-09 2.26779026e-09 2.381948826e-09 2.39251406e-09 3.154181875e-09 3.778157381e-09 2.802090328e-09 2.13508895e-09 9.325158766e-10 1.137261899e-09 2.888509046e-10 8.115880674e-10 8.158677382e-10 8.021814455e-10 1.526968272e-09 1.865641512e-09 1.287193769e-09 1.527122421e-09 2.001283759e-09 1.279985615e-09 1.809753554e-09 2.147124354e-09 1.992760158e-09 2.124218898e-09 2.217494047e-09 1.879893046e-09 1.471732087e-09 2.381107267e-09 1.075474696e-09 1.185351359e-09 1.722172548e-09 8.207225751e-10 1.394103999e-09 1.32393669e-09 4.712139295e-10 4.032998207e-10 1.087095551e-09 5.294474824e-10 6.130174589e-10 1.070592856e-09 1.273401602e-09 8.3678142e-10 1.216133484e-09 1.217264661e-09 1.001655956e-09 1.499072161e-09 1.819286784e-09 1.315962355e-09 5.736375339e-10 1.152967294e-09 8.600759224e-10 1.359992934e-09 7.639306482e-10 1.017841566e-09 8.023518198e-10 1.506082782e-09 1.828711954e-09 1.116396129e-09 7.032329344e-10 1.100859937e-09 1.220755624e-09 1.290736289e-09 9.384580693e-10 1.211115151e-09 1.436211224e-09 8.161637192e-10 8.47123082e-10 1.073641881e-09 1.129448674e-09 7.971747463e-10 8.567083045e-10 7.447077885e-10 6.998719706e-10 3.981265171e-10 4.357054648e-10 4.67151575e-10 6.239375567e-10 6.904305894e-10 4.096799336e-10 6.166312626e-10 7.990587654e-10 5.009307912e-10 5.078171004e-10 7.876610869e-10 6.306496758e-10 5.910974937e-10 5.800304062e-10 4.644866387e-10 7.517187398e-10 1.049985242e-09 1.171120808e-09 7.79324389e-10 1.639830275e-10 3.782943958e-10 4.518476356e-10 5.710217384e-10 8.042156852e-10 4.123770325e-10 2.704878037e-10 2.596044646e-10 1.950738688e-10 8.334429587e-10 7.455582849e-10 9.622681327e-10 1.215280347e-10 1.919799118e-10 1.704782639e-10 4.233449033e-10 3.843064765e-10 +5.378407044e-10 4.001468818e-10 2.871956101e-10 2.907718623e-10 3.085180633e-10 5.080855234e-10 7.227880852e-10 2.060678647e-10 3.54773323e-10 4.519517943e-10 3.355640215e-10 6.509756248e-10 3.988846616e-10 5.778632407e-10 3.808766676e-10 6.790692978e-10 3.700045125e-10 3.500476091e-10 7.707303927e-10 3.837510263e-10 5.965785627e-10 3.314603785e-10 1.071657118e-09 7.805437741e-10 4.019747164e-10 9.055030197e-10 3.936965258e-10 4.887200612e-10 6.544742196e-10 7.380971856e-10 3.337689605e-10 5.581782163e-10 5.707998404e-10 6.891549994e-10 2.881343748e-10 7.538979817e-10 4.867979202e-10 4.04190116e-10 4.981984133e-10 8.296347567e-10 1.219343924e-09 1.10723746e-09 1.28990131e-09 1.117926554e-09 9.132493523e-10 9.99490835e-10 1.248176035e-09 7.652375914e-10 1.379078095e-09 1.524215079e-09 1.041248871e-09 7.729803328e-10 8.506039172e-10 1.209710061e-09 5.704633867e-10 1.205881071e-09 4.779406655e-10 8.041669834e-10 1.063755622e-09 7.679692363e-10 7.776310031e-10 7.800841469e-10 9.114992183e-10 1.082848644e-09 7.776719845e-10 1.272972847e-09 1.140297503e-09 7.387289811e-10 1.614512257e-09 1.580060309e-09 6.561580286e-10 1.330918473e-09 5.685425489e-10 1.515221216e-09 1.064188562e-09 8.904249847e-10 8.504389285e-10 4.08675817e-10 4.8564136e-10 1.084718085e-09 1.933195348e-09 1.192272681e-09 1.708196404e-09 2.021121852e-09 2.208927896e-09 1.555451047e-09 1.803269174e-09 1.998322459e-09 1.72739343e-09 1.255217302e-09 1.182629968e-09 1.415361129e-09 1.128110408e-09 2.194362818e-09 8.937066809e-10 5.816542395e-10 5.297910595e-10 4.472812289e-10 5.987304385e-10 9.928495166e-10 8.286408381e-10 1.380117861e-09 2.741918524e-09 1.64439328e-09 4.500344671e-09 2.969892742e-09 3.592522673e-09 1.837564957e-09 2.206707909e-09 2.330239704e-09 2.945942549e-09 3.28915379e-09 3.428877896e-09 2.460866946e-09 9.637215786e-10 2.038338789e-09 2.026114542e-09 2.091856496e-09 2.186783823e-09 1.13430551e-09 7.64569658e-10 3.210616363e-10 4.210366936e-10 0 1.764003804e-10 2.660184309e-10 2.146446146e-09 2.868599663e-09 3.538128708e-09 3.333329605e-09 2.474581989e-09 5.288056823e-09 5.983841991e-09 7.801866022e-09 6.568299785e-09 5.639930137e-09 4.824049459e-09 6.742709523e-09 5.281359547e-09 4.424067619e-09 4.381998618e-09 2.216278126e-09 1.937390883e-09 6.714517914e-10 7.00537546e-10 4.193874652e-10 1.927628366e-10 2.500002792e-10 2.056028667e-10 5.583738206e-11 1.818370508e-10 5.809813182e-10 2.724391907e-10 2.218571591e-10 3.089881862e-10 6.259200318e-10 9.93384323e-10 1.780593464e-09 2.113100427e-09 2.883760305e-09 3.957531447e-09 4.904952683e-09 7.507757386e-09 7.011187023e-09 5.37724185e-09 6.67493611e-09 9.289644356e-09 6.78444815e-09 3.937324299e-09 1.980772931e-09 3.252791544e-09 2.56357923e-09 2.637396633e-09 2.112835127e-09 2.003472542e-10 6.300276355e-11 2.772671715e-10 4.830807441e-10 1.83629867e-10 4.383400986e-10 1.963843437e-09 1.989849027e-09 9.677416799e-10 1.391566281e-09 1.750339792e-09 2.082552756e-09 1.771871059e-09 3.372294439e-09 4.531880464e-09 2.746709107e-09 3.022479086e-09 2.874847946e-09 2.0612579e-09 2.757221726e-09 1.842529146e-09 2.830700686e-09 4.344449879e-09 2.8038826e-09 2.3169411e-09 9.124011854e-10 6.066503008e-10 7.80471e-10 5.178689387e-10 7.879019133e-10 1.100831311e-09 1.415116969e-09 1.361259338e-09 9.525788227e-10 1.220935325e-09 9.259192086e-10 1.48211774e-09 1.818508573e-09 2.716544786e-09 1.707322383e-09 1.066047856e-09 1.936298218e-09 1.153327199e-09 2.106387064e-09 1.660412743e-09 1.781139465e-09 1.955493566e-09 1.418452952e-09 7.150364426e-10 1.041190834e-09 1.280605199e-09 1.114020017e-09 7.942357449e-10 1.12349927e-09 1.10981405e-09 8.688959882e-10 1.951504847e-09 1.029020077e-09 1.104875901e-09 1.245588943e-09 7.471639712e-10 1.377100764e-09 1.542330865e-09 1.186287567e-09 1.001292442e-09 5.877747398e-10 1.041403318e-09 8.993463404e-10 1.31943545e-09 9.619951711e-10 1.111474469e-09 1.04004834e-09 1.113298718e-09 4.835117103e-10 1.432331889e-09 1.371157997e-09 7.622809064e-10 1.001846896e-09 1.040291143e-09 9.450708256e-10 1.394232355e-09 3.759072332e-10 1.04193856e-09 4.701460666e-10 7.303859158e-10 9.575651314e-10 7.013290919e-10 7.018778237e-10 7.907998239e-10 5.746824573e-10 8.057153346e-10 5.699737859e-10 4.602526832e-10 4.697959508e-10 2.607927848e-10 2.886354592e-10 3.76793784e-10 4.758580456e-10 4.7445804e-10 2.540881613e-10 3.884371282e-10 5.774418099e-10 2.777908649e-10 4.90841283e-10 7.322112093e-10 4.456803412e-10 3.540866128e-10 2.784588026e-10 5.440286938e-10 4.362678062e-10 2.928576195e-10 2.762357578e-10 4.432941454e-10 3.557037485e-11 8.156226687e-10 3.565537715e-10 2.821930904e-10 4.262229127e-10 3.876770377e-10 2.86121638e-10 6.957654153e-10 1.724157571e-10 2.010054737e-10 3.615216842e-10 7.690470263e-10 5.179343372e-10 +8.661882692e-10 2.36414084e-10 1.948340053e-10 6.59926138e-10 3.384646922e-10 7.352072394e-10 5.591667226e-10 3.293711363e-10 4.582665272e-10 3.451981633e-10 2.607879201e-10 3.272895625e-10 4.763698463e-10 3.560754868e-10 1.975576311e-10 5.542761889e-10 4.380274251e-10 2.800939732e-10 6.730382444e-10 1.056906373e-09 4.222033581e-10 2.627592634e-10 5.762921335e-10 5.526941379e-10 4.543807917e-10 1.187378587e-09 7.988180506e-10 8.647809721e-10 2.641764432e-10 4.407038567e-10 2.014707915e-10 7.891239739e-10 6.381188062e-10 2.790801351e-10 3.770432796e-10 4.580888564e-10 5.794048349e-10 4.626103861e-10 8.05717824e-10 8.686006385e-10 1.96207724e-09 8.32208636e-10 1.427290566e-09 8.142959528e-10 1.521164052e-09 1.847359862e-09 7.127021334e-10 9.717574166e-10 1.107524662e-09 8.926661238e-10 1.307123773e-09 9.138371565e-10 1.32270587e-09 1.584166341e-09 1.063167698e-09 6.551516871e-10 7.995694004e-10 9.006273414e-10 1.305618362e-09 8.903693264e-10 6.470750738e-10 8.828419719e-10 1.093088329e-09 9.645072404e-10 1.102650318e-09 1.671053914e-09 7.803536038e-10 1.319329935e-09 1.267357765e-09 1.350836699e-09 1.45725508e-09 7.695505434e-10 1.006214907e-09 1.248936545e-09 8.624802971e-10 9.01270495e-10 6.813422419e-10 1.281975776e-09 1.483535864e-09 1.44280472e-09 1.819667331e-09 1.606652637e-09 2.787746454e-09 1.977037583e-09 1.16135167e-09 2.274292489e-09 2.890864856e-09 1.550169387e-09 2.273354412e-09 9.479214133e-10 1.418218123e-09 8.61099744e-10 1.428230549e-09 1.585690754e-09 1.341014737e-09 1.240198586e-09 1.362017842e-09 8.206343633e-10 6.197503797e-10 5.63995015e-10 1.035070134e-09 9.47353022e-10 1.699289018e-09 4.260537646e-09 1.972486712e-09 2.37810307e-09 2.043432946e-09 2.925237913e-09 2.19703163e-09 1.981447231e-09 1.973895541e-09 3.797281913e-09 3.216511994e-09 1.732044697e-09 8.350970487e-10 1.923915786e-09 1.06885766e-09 2.033417117e-09 1.482598039e-09 2.003173831e-09 8.527221773e-10 3.016889549e-10 7.226371131e-11 3.849079688e-27 2.645669402e-10 7.056111253e-10 2.125207353e-09 2.308192176e-09 2.191583879e-09 3.220615799e-09 3.668728731e-09 5.859304584e-09 7.041892072e-09 7.558068496e-09 8.243961056e-09 6.155035294e-09 4.844372759e-09 6.238515227e-09 4.595940483e-09 3.610718254e-09 2.907446788e-09 1.989235986e-09 3.0658043e-10 3.926909716e-10 3.464128554e-10 3.459319222e-10 1.232372315e-10 2.03964239e-10 2.039392951e-10 3.045100379e-10 6.96419428e-11 2.018989756e-10 2.27079754e-10 1.699923157e-10 1.918464296e-10 2.282048466e-10 9.713124713e-11 5.964154948e-10 1.420101463e-09 2.818561537e-09 3.996918929e-09 4.898951842e-09 5.773122063e-09 5.382548545e-09 4.699868377e-09 9.105648974e-09 7.53591057e-09 6.921033622e-09 5.991631317e-09 2.807895891e-09 3.484962502e-09 3.244591406e-09 3.103943926e-09 2.378754072e-09 6.412649597e-10 2.992976954e-10 7.707286843e-13 1.972386645e-10 3.008583782e-10 6.7522716e-10 1.524162292e-09 5.715689707e-10 1.634601065e-09 1.922525896e-09 2.097281038e-09 1.480622584e-09 1.653359791e-09 2.940459092e-09 3.972571034e-09 3.594895836e-09 3.109231809e-09 2.085261827e-09 1.894676468e-09 3.540002706e-09 2.945923536e-09 2.732206688e-09 2.928555109e-09 2.377701166e-09 1.05088985e-09 8.380808979e-10 5.377157984e-10 5.482769966e-10 4.545332e-10 5.210786708e-10 8.173069564e-10 1.838639655e-09 1.660842881e-09 1.580959252e-09 2.123615008e-09 1.471620191e-09 1.552479954e-09 1.320790673e-09 1.962415096e-09 1.977916144e-09 1.032176057e-09 1.916133811e-09 1.999129589e-09 2.098033654e-09 2.445205074e-09 1.748269833e-09 1.204970298e-09 9.577847638e-10 8.613986949e-10 1.424046774e-09 1.215583362e-09 9.385283433e-10 4.63129924e-10 1.063382253e-09 1.149834127e-09 1.365976284e-09 1.401586172e-09 1.122454439e-09 9.325991948e-10 8.293619977e-10 1.277695228e-09 9.830616139e-10 8.31791286e-10 1.215087516e-09 1.031749012e-09 7.007402558e-10 7.733274038e-10 9.624687595e-10 5.542667383e-10 8.677414102e-10 9.374438012e-10 1.12814952e-09 7.752764439e-10 1.250225042e-09 1.293737557e-09 1.70763692e-09 1.182910109e-09 7.317787943e-10 1.200081597e-09 8.887353323e-10 1.042455739e-09 7.577106858e-10 1.142507959e-09 1.498379397e-09 9.173372368e-10 9.373342416e-10 7.333146702e-10 3.451214888e-10 5.084896086e-10 2.496950926e-10 5.281791343e-10 6.152056637e-10 1.600513686e-10 7.623400298e-10 3.15186484e-10 8.267062939e-10 2.881153135e-10 7.531360108e-10 4.300559336e-10 2.410275831e-10 4.189557682e-10 8.718024686e-10 3.218442828e-10 4.180136194e-10 2.8740507e-10 5.519172162e-10 6.221640565e-10 8.794139629e-11 5.574121576e-10 6.088293838e-10 5.893968041e-10 1.251141078e-10 2.4921512e-10 9.335196795e-10 1.228628891e-10 3.811970864e-10 3.390195648e-10 6.706689492e-10 9.620549487e-10 3.267531632e-10 6.961921833e-10 4.812124202e-10 4.204942761e-10 3.271362995e-10 5.841571636e-10 5.100825134e-10 +3.161406346e-10 4.746990995e-10 2.378907259e-10 6.732752355e-11 4.180570417e-10 5.459879885e-10 2.080553588e-10 2.276591432e-10 3.777354299e-10 2.543192418e-10 7.547218272e-10 1.925214309e-10 6.322102371e-10 3.053885372e-10 3.626143025e-10 2.608870522e-10 4.296535223e-10 3.348248038e-10 2.543304882e-10 5.712955421e-10 9.754638049e-10 4.284333125e-10 4.850773045e-10 3.430794159e-10 5.178243228e-10 8.579329982e-10 1.091451636e-09 6.832866512e-10 4.465804048e-10 3.407766901e-10 7.479521581e-10 3.187333755e-10 6.649550364e-10 5.002818424e-10 4.641274281e-10 3.041214449e-10 4.589406786e-10 7.136861495e-10 7.364454205e-10 5.209290774e-10 5.9619404e-10 1.270576728e-09 7.079935366e-10 8.447187685e-10 9.515788481e-10 6.708146643e-10 1.081332303e-09 1.771738645e-09 9.480086702e-10 9.267932859e-10 1.226875829e-09 2.006778014e-09 1.269300001e-09 9.2637458e-10 9.299211078e-10 1.150328924e-09 6.093680985e-10 1.477396323e-09 8.675219509e-10 6.882613916e-10 6.137829954e-10 1.08805727e-09 1.472877141e-09 1.228518413e-09 1.766179411e-09 1.212358978e-09 1.059776828e-09 1.25489318e-09 1.014236757e-09 9.749786363e-10 1.128585926e-09 1.291621323e-09 7.645935121e-10 1.234541077e-09 9.479285722e-10 1.024392586e-09 1.221944183e-09 8.136619513e-10 1.043354786e-09 1.407087424e-09 1.758047589e-09 2.333126316e-09 1.670469156e-09 1.574950211e-09 1.003774416e-09 1.647447197e-09 1.66952564e-09 9.921352468e-10 1.557805666e-09 1.861308603e-09 1.218044949e-09 1.903650556e-09 1.918697178e-09 9.129725122e-10 1.321103307e-09 1.289646299e-09 4.8492008e-10 1.927223389e-10 7.680565574e-10 7.650372415e-10 1.230798195e-09 2.450330119e-09 1.959639059e-09 2.824390612e-09 2.338001865e-09 2.652376693e-09 2.449253266e-09 2.500491701e-09 1.703811404e-09 3.463744713e-09 4.540929603e-09 3.296800273e-09 2.749604596e-09 1.55839298e-09 1.690648398e-09 2.17876895e-09 1.829059329e-09 2.111582121e-09 2.778801782e-09 1.362800509e-09 6.739945763e-10 1.010218407e-11 2.483156994e-10 1.089289589e-10 1.927120012e-10 1.411548541e-09 2.427464563e-09 2.565237855e-09 3.584933895e-09 3.062972263e-09 4.031213894e-09 3.660201708e-09 7.26873694e-09 6.197510207e-09 6.703389488e-09 5.367640317e-09 5.025255869e-09 5.65332333e-09 3.974104188e-09 2.512463466e-09 1.542203317e-09 7.582458684e-10 3.165374413e-10 2.57981776e-10 9.266868606e-11 2.231438075e-10 1.906802727e-10 2.624627446e-10 2.827368085e-16 2.553160056e-10 6.634251558e-13 3.1613207e-10 1.439292308e-10 2.383160856e-10 1.321044687e-13 2.02195168e-10 3.414296492e-10 4.152708227e-10 3.872838441e-10 1.174014564e-09 2.435327953e-09 4.022907043e-09 4.506762736e-09 5.310165618e-09 6.90292483e-09 5.036424484e-09 9.431775126e-09 7.314082314e-09 5.501923156e-09 3.608170161e-09 2.905485862e-09 2.603245259e-09 3.285907754e-09 2.884469072e-09 1.498613466e-09 2.050033426e-10 1.269492646e-11 2.451777816e-11 2.900100672e-10 4.291618439e-10 1.721192735e-09 2.336306635e-09 1.224021714e-09 1.617339447e-09 2.133672184e-09 1.029477319e-09 1.736196025e-09 2.364111854e-09 3.027401001e-09 2.595778624e-09 2.722223475e-09 2.641669146e-09 4.16992196e-09 2.732252228e-09 2.240477621e-09 2.638913722e-09 2.011110938e-09 3.168979693e-09 2.399795083e-09 1.272904698e-09 9.755681178e-10 2.450791881e-10 2.554073522e-10 1.081504192e-09 1.241109156e-09 1.155528226e-09 1.483907734e-09 1.868966511e-09 2.485171401e-09 1.984330758e-09 1.976107072e-09 1.379274954e-09 1.951775755e-09 1.268969041e-09 1.928688475e-09 1.468376538e-09 2.644448221e-09 1.316271824e-09 1.674210868e-09 7.134009129e-10 1.69268553e-09 1.462979769e-09 6.498360744e-10 8.143618972e-10 1.055291197e-09 9.830115241e-10 8.520567067e-10 1.239526998e-09 9.568345836e-10 1.68238277e-09 1.317606483e-09 1.135266457e-09 6.571454096e-10 1.648395391e-09 1.351896084e-09 4.999879061e-10 7.20686319e-10 7.550868415e-10 8.926886653e-10 9.504489756e-10 8.583628477e-10 9.004157711e-10 1.293923762e-09 9.36859538e-10 9.036385585e-10 8.615437858e-10 1.078492644e-09 8.855425944e-10 1.001414493e-09 1.379153755e-09 1.324749447e-09 8.425160443e-10 9.569242024e-10 1.477165489e-09 1.146719182e-09 1.503117235e-09 6.462977929e-10 7.268363844e-10 1.376599658e-09 1.301253822e-09 5.557876727e-10 7.783506362e-10 6.349723151e-10 6.758253606e-10 5.429649131e-10 4.562112229e-10 3.52764098e-10 4.04246245e-10 2.112403286e-10 9.553175551e-10 5.348061021e-10 9.107724671e-10 9.298821209e-10 7.328319368e-10 4.654450744e-10 9.489859571e-10 1.053459973e-09 9.260693244e-10 3.922896899e-10 1.073096202e-09 4.238360469e-10 4.68832898e-10 5.239903934e-10 4.208258351e-10 2.84626931e-10 4.026128314e-10 5.698326149e-10 4.293914849e-10 3.535799499e-10 2.99004464e-10 6.673927729e-10 4.783107313e-10 1.755087815e-10 6.351399216e-10 6.8514459e-10 9.684683658e-11 4.627056116e-10 5.360669757e-10 9.675765736e-10 3.394468877e-10 +1.154407632e-09 3.093086021e-10 4.208743765e-10 6.094903478e-10 4.503081958e-10 5.626810604e-10 2.169293264e-10 1.550914497e-10 3.837277845e-10 6.871689997e-10 2.84503305e-10 1.716972385e-10 3.296276588e-10 5.313936403e-10 3.656421818e-10 3.927363649e-10 1.208135022e-10 3.588286241e-10 8.23420051e-10 3.183534022e-10 3.152907394e-10 3.620105883e-10 5.074108871e-10 4.128233016e-10 4.030502318e-10 6.842298674e-10 2.328793415e-10 4.706002631e-10 6.613215111e-10 5.231027955e-10 4.427819839e-10 9.103150423e-10 7.582543671e-10 3.177775296e-10 3.803527687e-10 6.206999157e-10 1.589660849e-10 6.50490372e-10 3.31675408e-10 6.764573853e-10 1.052037727e-09 1.068700067e-09 1.168818925e-09 9.938756793e-10 8.544592191e-10 9.068202664e-10 1.149347352e-09 1.213018621e-09 2.022714233e-09 1.196527398e-09 9.215334208e-10 7.860649677e-10 9.78279197e-10 7.875565321e-10 1.051593073e-09 6.198396329e-10 4.683928188e-10 5.97731136e-10 1.13956452e-09 7.173044663e-10 1.026701278e-09 7.907850037e-10 5.931864746e-10 9.945578454e-10 1.15469917e-09 9.017864357e-10 1.373278891e-09 7.467358415e-10 1.782701403e-09 1.444468086e-09 1.555242339e-09 1.415288298e-09 1.521004929e-09 1.267577466e-09 9.172487697e-10 8.33816777e-10 1.572921656e-09 6.758180719e-10 1.254256288e-09 1.427710268e-09 1.284884158e-09 3.042615218e-09 2.04944256e-09 1.882389185e-09 2.139707697e-09 3.027347761e-09 1.092466394e-09 1.541041571e-09 1.754342477e-09 1.451646482e-09 2.331720339e-09 1.454241849e-09 1.608948475e-09 1.608114651e-09 1.479528793e-09 5.322425777e-10 5.876483102e-10 3.627935063e-10 1.193651208e-09 8.703781096e-10 1.204137919e-09 2.440423869e-09 2.486972456e-09 2.091260119e-09 2.58782674e-09 4.155928481e-09 2.165108972e-09 4.132393617e-09 2.602253238e-09 3.084650349e-09 2.331720726e-09 3.381318634e-09 2.629741651e-09 1.827824614e-09 2.334782841e-09 1.808678677e-09 2.028704753e-09 1.738163075e-09 1.362184542e-09 1.285866756e-09 2.513101359e-10 1.017747059e-10 4.932753543e-11 2.34956365e-10 2.664934031e-10 2.059359745e-09 2.816005782e-09 2.924437682e-09 2.389147038e-09 3.930122013e-09 5.504787159e-09 5.634933254e-09 5.694449074e-09 7.035110424e-09 5.057334769e-09 4.897192417e-09 5.982290255e-09 3.833778815e-09 2.609962429e-09 1.616799229e-09 5.447589179e-10 3.240390216e-10 1.041380293e-10 3.422920136e-10 3.810044432e-10 1.818870008e-12 1.672346285e-10 4.260150819e-10 3.734388873e-11 3.303082265e-10 3.734575142e-10 3.567738936e-10 1.576426214e-10 6.131411531e-10 1.050262584e-10 1.672751786e-10 2.379298948e-10 1.425685142e-10 3.259405978e-10 8.306659587e-10 1.900272076e-09 2.770900935e-09 3.322269537e-09 5.471189483e-09 6.276260941e-09 5.725002388e-09 6.151534645e-09 7.912961059e-09 6.479951461e-09 4.965098855e-09 3.349640279e-09 3.296400904e-09 3.43356512e-09 3.802414738e-09 1.750954454e-09 6.669540914e-10 7.017964807e-11 3.569049657e-14 2.178871604e-10 1.346912725e-10 7.848732285e-10 1.639281165e-09 2.012588892e-09 2.375131359e-09 1.7010113e-09 1.723783733e-09 2.359767532e-09 2.776909834e-09 4.654372225e-09 4.56948343e-09 2.66611524e-09 1.811780796e-09 2.519843166e-09 2.323310422e-09 1.881294286e-09 2.44631163e-09 2.907597226e-09 2.601140433e-09 1.442434672e-09 1.274769054e-09 8.217013883e-10 1.141040658e-09 6.624591023e-10 6.253227271e-10 1.236282169e-09 1.335178884e-09 5.949429964e-10 2.02589781e-09 1.388676671e-09 1.53272467e-09 1.190327538e-09 4.919803277e-10 1.657783371e-09 1.382085355e-09 2.258068914e-09 2.363512221e-09 1.590113281e-09 2.192618643e-09 2.521867846e-09 2.220966848e-09 8.73112853e-10 1.114935291e-09 9.027231734e-10 1.356228284e-09 9.91384517e-10 1.826747715e-09 1.445608051e-09 8.541566969e-10 7.024391172e-10 1.541800921e-09 9.958334682e-10 9.437290699e-10 1.166551064e-09 1.654195496e-09 1.101009955e-09 9.69699255e-10 1.442659812e-09 1.465262143e-09 1.163230037e-09 9.796597688e-10 1.540129445e-09 6.142980663e-10 8.477900809e-10 6.02029996e-10 1.195318713e-09 1.498628831e-09 9.337682666e-10 1.149150393e-09 8.531919628e-10 7.515596603e-10 1.455472522e-09 1.10392661e-09 1.212890713e-09 8.659756895e-10 6.334935964e-10 6.884716662e-10 1.541878047e-09 1.658699117e-09 9.046451953e-10 7.134434042e-10 1.322195895e-09 7.394158899e-10 6.753694621e-10 4.131814052e-10 6.840841502e-10 5.051957003e-10 5.744952674e-10 6.13518752e-10 4.392844741e-10 3.834621788e-10 7.750862278e-10 2.436729275e-10 3.950546024e-10 4.69323743e-10 8.916547798e-10 7.326283747e-10 5.979609506e-10 9.205772938e-10 4.356095139e-10 8.087182538e-10 4.298346912e-10 2.189165613e-10 4.789781036e-10 5.040236579e-10 5.405668322e-10 7.26397032e-10 4.885132126e-10 4.018998083e-10 3.735625143e-10 1.545122815e-10 3.011405296e-10 4.054687388e-10 4.956347643e-10 1.33765981e-10 4.966374611e-10 4.703187097e-10 2.014379593e-10 3.59379634e-10 3.762804811e-10 8.150094614e-10 +4.372092401e-10 2.985254058e-10 5.570537897e-10 9.322519902e-10 2.483175835e-10 8.606051166e-10 1.167716953e-10 2.621762789e-10 1.675165842e-10 6.961094741e-10 2.538807241e-10 6.456639913e-10 8.917233716e-10 2.645000354e-10 4.486097317e-10 5.566053267e-10 3.118090406e-10 4.709989285e-10 3.83212781e-10 2.343682188e-10 7.010954631e-10 1.042654281e-10 5.134148693e-10 3.840973475e-10 6.578098173e-10 2.510220432e-10 6.963054263e-10 3.63399622e-10 5.556864558e-10 3.906468613e-10 3.796884233e-10 1.078029098e-09 6.093953785e-10 7.775959657e-10 4.471461696e-10 3.178100959e-10 2.865181863e-10 4.925593708e-10 5.134978995e-10 1.045349673e-09 1.001326713e-09 8.276501042e-10 1.73258063e-09 8.676108578e-10 8.987268114e-10 9.679636263e-10 9.754933545e-10 1.270738186e-09 7.443862248e-10 6.788046481e-10 1.27371184e-09 1.051147942e-09 1.123131646e-09 1.270702105e-09 1.14066114e-09 1.230296153e-09 9.558711481e-10 9.265638373e-10 8.492802276e-10 9.027066368e-10 1.543689757e-09 5.185988684e-10 8.770356191e-10 1.012452572e-09 8.211481442e-10 1.030711053e-09 1.688909844e-09 1.018194704e-09 8.220512428e-10 8.135756574e-10 1.824677801e-09 6.376275912e-10 7.137890631e-10 9.534520231e-10 1.392339096e-09 1.27106809e-09 1.099261796e-09 1.693605728e-09 1.249621018e-09 1.533991178e-09 1.257079677e-09 1.387293361e-09 2.379432268e-09 1.12041066e-09 1.589829399e-09 1.54608478e-09 2.252521129e-09 1.168337485e-09 1.734659019e-09 1.209534747e-09 1.816764679e-09 1.401732541e-09 1.232055377e-09 1.737287248e-09 1.44382642e-09 1.156251071e-09 8.15929034e-10 1.959897433e-10 3.996910002e-10 7.007029277e-10 7.288805651e-10 2.458763964e-09 2.468594557e-09 1.541935981e-09 2.41930474e-09 2.723003601e-09 2.991052024e-09 2.878534647e-09 2.855978857e-09 3.389100885e-09 2.74426276e-09 3.742245108e-09 2.893106374e-09 1.986197982e-09 1.530852967e-09 2.331644607e-09 1.4532494e-09 1.790065396e-09 1.511926031e-09 1.010047952e-09 2.432847233e-10 1.713328945e-10 6.984439243e-11 2.380066546e-10 4.684031234e-10 1.706806632e-09 3.184503928e-09 3.371934816e-09 3.049543961e-09 4.11144567e-09 5.780745292e-09 7.362445762e-09 5.729567571e-09 6.747597594e-09 4.400596363e-09 5.628540506e-09 3.742264414e-09 2.721021167e-09 1.93063233e-09 5.429929638e-10 4.86644558e-11 2.770369408e-10 0 6.295548329e-11 2.843918027e-10 1.340977438e-10 5.06782189e-10 6.245982703e-11 1.153780319e-10 6.191569125e-15 1.615900535e-10 1.476114156e-10 5.053538623e-11 5.545089562e-15 6.573828614e-10 1.854824574e-10 1.294276724e-10 3.880299491e-11 9.280456304e-15 2.140898348e-10 3.834553379e-10 1.718054498e-09 3.429083434e-09 5.816872183e-09 6.450218906e-09 4.725978569e-09 5.089092674e-09 6.523181922e-09 6.417220399e-09 5.740521814e-09 3.94706548e-09 2.425159311e-09 2.243469712e-09 4.066360387e-09 2.042770966e-09 1.026175336e-09 1.45058527e-21 3.10347661e-10 1.110934329e-10 2.168814174e-10 8.901231692e-10 1.550735257e-09 1.402141687e-09 8.744366807e-10 1.978068371e-09 1.955382024e-09 2.414911184e-09 2.223525321e-09 3.118392322e-09 3.490245558e-09 3.222666445e-09 2.332941426e-09 3.148093831e-09 1.924309207e-09 2.382046221e-09 2.317410804e-09 3.051965367e-09 3.440851102e-09 3.552891665e-09 9.572121128e-10 1.321606117e-09 8.923066302e-10 5.583967781e-10 7.556698408e-10 1.103436274e-09 1.425153332e-09 1.569851049e-09 2.223684814e-09 1.504662001e-09 1.191015008e-09 1.416037473e-09 7.031224423e-10 1.278759982e-09 2.343005607e-09 1.258806452e-09 1.43995006e-09 1.858472569e-09 1.438192686e-09 1.981471232e-09 1.984600242e-09 1.845859486e-09 1.153668254e-09 8.981793868e-10 7.664945382e-10 8.013513715e-10 6.846158296e-10 9.868666997e-10 1.208464435e-09 7.815703484e-10 2.238923377e-09 1.698299333e-09 8.845984915e-10 9.013160243e-10 9.044795759e-10 1.664458947e-09 1.096415751e-09 1.069716964e-09 1.017882376e-09 5.254553674e-10 9.036430712e-10 5.124450351e-10 1.240886861e-09 6.694603016e-10 1.063799218e-09 7.781877244e-10 7.60532295e-10 6.704543148e-10 1.046231366e-09 1.629293413e-09 1.125530928e-09 6.046479045e-10 5.749644889e-10 8.996073448e-10 1.000351772e-09 7.858124665e-10 1.064717454e-09 9.628462378e-10 1.212324744e-09 1.268840643e-09 8.770317422e-10 8.282908017e-10 6.305938071e-10 6.350595131e-10 4.000480282e-10 1.456015097e-10 7.154682729e-10 6.674390818e-10 2.063803166e-10 4.495358246e-10 1.651194821e-10 3.714620588e-10 7.094840235e-10 6.752921873e-10 9.72718408e-10 7.734640776e-10 6.764189088e-10 5.751218919e-10 4.879975107e-10 9.080779571e-10 8.010066374e-10 3.571879892e-10 3.527138107e-10 3.117988253e-10 3.070185751e-10 7.233739484e-10 4.694807115e-10 5.912541319e-10 3.17029514e-10 7.019566473e-10 3.573809628e-10 9.458518231e-11 3.57271078e-10 8.256004919e-10 1.649431016e-10 4.70735239e-10 4.016519202e-10 9.894952869e-10 1.108465115e-09 1.099409182e-10 5.721104648e-10 +2.883748248e-10 8.386653465e-10 7.136591712e-10 5.081911743e-10 1.811039107e-10 4.394662897e-10 4.672810327e-10 4.135752603e-10 2.542863671e-10 7.845749178e-10 1.769345839e-10 1.233232566e-10 5.863891982e-10 6.591330459e-10 4.203467652e-10 5.294208075e-10 6.67503181e-10 4.055781753e-10 1.403992063e-10 1.936752584e-10 3.750710422e-10 4.330468507e-10 3.538382725e-10 5.043368664e-10 9.002289987e-10 5.916323753e-10 8.683969572e-10 4.042138422e-10 7.161676568e-10 4.890099734e-10 7.698615082e-10 4.675731438e-10 1.045765205e-09 3.395892525e-10 7.781268263e-10 5.043011911e-10 2.071219335e-10 5.518240998e-10 1.056483136e-09 4.404883954e-10 7.714916841e-10 1.248549881e-09 9.142672207e-10 8.500614227e-10 1.082503636e-09 9.666432632e-10 6.962606947e-10 1.114125934e-09 6.946782221e-10 1.020317064e-09 9.387974986e-10 7.061145903e-10 7.199377103e-10 8.62071871e-10 8.129990907e-10 7.686964217e-10 1.108725038e-09 3.728771234e-10 7.172559512e-10 1.092515159e-09 1.172992554e-09 9.553547961e-10 1.430251974e-09 1.035780741e-09 9.713186284e-10 1.153394556e-09 1.349652752e-09 1.400047265e-09 1.02392748e-09 9.112357254e-10 1.141053204e-09 1.31035946e-09 1.124171027e-09 1.103269191e-09 7.940085044e-10 7.288128077e-10 1.160232562e-09 1.072202649e-09 1.518999155e-09 1.59331607e-09 1.843763435e-09 1.844052858e-09 2.153608248e-09 1.742462797e-09 1.839010178e-09 1.832012969e-09 1.538688449e-09 1.988312167e-09 1.020711856e-09 1.205669937e-09 9.973617969e-10 1.442200666e-09 8.645025738e-10 1.451958157e-09 1.702116107e-09 5.756185488e-10 9.914948694e-10 6.79372022e-10 1.013473233e-09 1.333569318e-09 2.37068922e-09 3.251272125e-09 2.510974905e-09 2.185337301e-09 3.016633341e-09 3.050246233e-09 3.619504578e-09 2.309341055e-09 2.785777908e-09 3.055889985e-09 2.437008269e-09 3.862858967e-09 2.01851488e-09 2.276099502e-09 1.984993882e-09 2.117847224e-09 2.227579566e-09 2.272642277e-09 1.88964099e-09 5.768729074e-10 2.308179243e-10 1.612776546e-10 3.158123428e-10 8.661497675e-12 8.802069063e-10 2.990867581e-09 2.950662831e-09 2.64556343e-09 1.651977898e-09 4.030818252e-09 7.598079621e-09 8.240914932e-09 6.231115634e-09 5.983780636e-09 4.942073187e-09 5.855399112e-09 3.258566364e-09 1.816014999e-09 6.493993327e-10 5.318519813e-10 3.46211708e-10 8.896773671e-11 1.028645484e-10 2.412090179e-10 1.375602153e-10 3.425565024e-10 2.213948392e-10 1.171824612e-10 8.321334174e-11 0 3.582658435e-10 0 8.863385951e-11 2.008084221e-10 3.376147802e-10 5.794456134e-11 4.867883585e-11 1.151018239e-10 6.489311259e-11 1.821210612e-10 1.459963267e-10 6.742558083e-10 2.692710759e-09 3.183307599e-09 6.040801873e-09 5.559587629e-09 5.828808146e-09 7.148727839e-09 7.143976132e-09 6.423645201e-09 3.329110994e-09 3.755106483e-09 2.216891934e-09 2.95007304e-09 2.401239092e-09 2.139471007e-09 2.587441575e-10 2.028674923e-15 4.128817896e-14 7.532583387e-14 7.597391832e-10 1.547366468e-09 1.446078795e-09 1.492818881e-09 2.672086472e-09 1.684636884e-09 2.037543924e-09 2.019857812e-09 3.312378274e-09 2.924068386e-09 2.054095756e-09 2.511464018e-09 2.295216755e-09 1.791776918e-09 2.377400881e-09 2.811980444e-09 2.09523886e-09 2.669462734e-09 3.436963182e-09 2.135528564e-09 1.081953214e-09 7.490968549e-10 5.745190831e-10 4.47451417e-10 7.437252178e-10 1.372884117e-09 2.198930544e-09 7.40176348e-10 1.327415686e-09 9.434008828e-10 1.774395258e-09 2.185075224e-09 2.419775295e-09 1.612874793e-09 2.070208563e-09 2.581851756e-09 2.657685021e-09 3.020188684e-09 2.32725389e-09 9.719518921e-10 1.834818309e-09 1.400830844e-09 1.152560385e-09 4.342695901e-10 1.190272975e-09 1.28506737e-09 1.486381577e-09 9.134584259e-10 1.130882704e-09 7.780181183e-10 1.361593275e-09 1.443817659e-09 1.17559971e-09 1.21420295e-09 1.256540505e-09 1.237110412e-09 1.282589484e-09 1.136712626e-09 5.258319637e-10 4.598058551e-10 6.895265313e-10 1.421827269e-09 9.260093988e-10 1.472270606e-09 4.649863274e-10 8.171415082e-10 8.491732405e-10 6.438792123e-10 1.116164945e-09 1.317140194e-09 1.114934476e-09 6.451809993e-10 7.910701777e-10 1.079402686e-09 1.267948222e-09 8.403466612e-10 9.573774344e-10 7.391824567e-10 7.472356222e-10 8.74274312e-10 6.687128472e-10 5.07947714e-10 9.467325835e-10 5.963368107e-10 4.39141262e-10 4.816785381e-10 1.583732253e-09 5.42379188e-10 5.456647849e-10 5.050041357e-10 3.478621658e-10 3.090762668e-10 7.737176495e-10 8.072881074e-10 3.172873622e-10 2.069573489e-10 5.25417854e-10 7.570270215e-10 6.96427387e-10 4.282409042e-10 4.745310593e-10 4.022617742e-10 3.211052428e-10 8.738320962e-10 8.098595431e-10 7.939330431e-10 1.601869227e-10 5.569318035e-10 3.884976506e-10 3.977880746e-10 5.775496623e-10 9.115594427e-10 6.118914996e-10 2.457824133e-10 7.159436847e-10 4.524231553e-10 3.063276027e-10 3.124069685e-10 6.775194713e-10 1.647318955e-10 +4.866257574e-10 5.601917363e-10 4.166932169e-10 7.872856784e-11 2.65356059e-10 3.340292294e-10 3.856532989e-10 2.784241378e-10 3.196817675e-10 8.278501562e-10 2.492249609e-10 3.750037103e-10 6.844374717e-10 6.292815567e-10 4.651634566e-10 5.242978283e-10 2.243019822e-10 2.668861158e-10 6.260461233e-10 1.673694452e-10 5.967216977e-10 3.406904561e-10 3.322047162e-10 6.962576926e-10 4.778132398e-10 4.532473708e-10 1.910791436e-10 9.681365208e-10 4.787283847e-10 4.680455725e-10 3.813642407e-10 8.184286834e-10 3.093778986e-10 3.282231312e-10 6.836833438e-10 4.982137828e-10 3.164438597e-10 9.967288825e-10 8.448351373e-10 5.459735353e-10 1.204207815e-09 1.30184341e-09 8.356501017e-10 1.395790686e-09 1.688848126e-09 1.171453933e-09 1.406198664e-09 1.014348929e-09 1.704205389e-09 1.189956281e-09 1.193784707e-09 1.009784527e-09 4.36237656e-10 8.620892989e-10 8.039664316e-10 7.365247262e-10 1.000285246e-09 9.951394947e-10 6.6839611e-10 7.39711095e-10 8.220212924e-10 1.086176241e-09 1.16524312e-09 6.489165775e-10 1.175383965e-09 8.718833836e-10 1.047927163e-09 1.447120895e-09 9.747398851e-10 1.256214012e-09 9.794425338e-10 1.20823018e-09 1.344606688e-09 7.780804982e-10 9.337678149e-10 1.758889497e-09 1.533719207e-09 9.617438335e-10 1.307940792e-09 1.855972853e-09 1.492461528e-09 2.11033393e-09 2.830551206e-09 1.925298935e-09 2.666872461e-09 9.519696839e-10 1.492753283e-09 1.193898256e-09 2.229797943e-09 1.761722152e-09 2.164048546e-09 1.468576973e-09 1.517389563e-09 1.358750085e-09 1.314716926e-09 1.692522689e-09 6.691442017e-10 4.051740059e-10 9.14811423e-10 1.019691538e-09 1.731544281e-09 3.372098994e-09 2.943409488e-09 3.886554722e-09 3.123955432e-09 2.414680784e-09 4.292632292e-09 1.850961053e-09 2.79032142e-09 2.205656338e-09 5.049756812e-09 3.96781318e-09 2.810827882e-09 1.931955135e-09 2.243057879e-09 2.682897879e-09 1.711292666e-09 2.111947719e-09 2.081135118e-09 2.388471301e-10 2.820718785e-10 4.892880721e-11 1.259106984e-10 4.746032691e-10 1.19501827e-09 2.28551577e-09 3.077275916e-09 3.477178778e-09 3.65765087e-09 4.837449896e-09 7.799272478e-09 7.901226162e-09 7.792111452e-09 6.668796177e-09 5.441408366e-09 4.934292064e-09 3.271421293e-09 1.54805732e-09 1.920542986e-10 2.170539094e-10 2.058880414e-10 1.854764084e-10 9.000494172e-11 2.818329405e-16 3.103249962e-10 3.456787491e-10 1.00288957e-10 4.444805389e-10 1.468839401e-10 9.466765817e-11 2.730961852e-10 2.191175683e-10 2.07237342e-10 5.956019976e-11 3.178807555e-10 2.005769473e-10 1.145746329e-10 2.138131305e-10 2.863410746e-10 2.950661364e-10 9.436160015e-11 2.153713289e-10 1.464287842e-09 2.000639575e-09 4.086789356e-09 5.253776063e-09 6.404322526e-09 6.3820504e-09 9.025066968e-09 8.66128957e-09 5.24645718e-09 3.891179143e-09 2.955946862e-09 2.625508553e-09 3.33480347e-09 2.12718345e-09 2.149536022e-10 5.882360242e-10 5.772408615e-10 1.611323251e-10 5.490618865e-10 1.368391569e-09 1.592927491e-09 1.457905002e-09 1.721900063e-09 1.819044108e-09 2.692351002e-09 2.171981789e-09 3.793185964e-09 3.989451925e-09 2.950938043e-09 2.945981728e-09 3.814601816e-09 2.18715359e-09 3.587630726e-09 2.77818678e-09 1.919694107e-09 4.169279992e-09 2.510468271e-09 8.699749978e-10 9.671427323e-10 9.194210746e-10 5.098015706e-10 6.185888098e-10 1.004072559e-09 1.368691499e-09 1.162022369e-09 1.100690292e-09 1.583907593e-09 2.169113751e-09 1.78114415e-09 1.387462479e-09 1.367361499e-09 1.766046011e-09 2.522052311e-09 2.25569132e-09 3.131094146e-09 1.469458916e-09 1.631972066e-09 1.090042864e-09 1.616658346e-09 1.489968142e-09 1.845076489e-09 9.681847105e-10 5.200589367e-10 5.186854798e-10 7.127175925e-10 1.438521558e-09 6.473265792e-10 1.448595336e-09 8.589136004e-10 8.508497054e-10 1.355756444e-09 7.03825457e-10 1.144458227e-09 1.310489826e-09 1.560510166e-09 9.088589138e-10 1.077918726e-09 1.197351952e-09 1.590503487e-09 5.440062755e-10 8.440592949e-10 1.075922593e-09 9.289324398e-10 9.505254364e-10 1.082746893e-09 1.368582776e-09 6.546729657e-10 9.089372512e-10 9.572677734e-10 7.381968532e-10 1.635663679e-09 9.118213447e-10 1.870922315e-09 5.017725791e-10 1.089220287e-09 1.038303864e-09 1.397521577e-09 1.517797802e-09 7.831916282e-10 6.354382607e-10 6.694851538e-10 4.161874219e-10 2.635039472e-10 4.917899859e-10 5.43452067e-10 6.389800522e-10 5.619687951e-10 1.021948403e-09 6.610668797e-10 7.10545142e-10 6.537137236e-10 5.652295654e-10 9.972816349e-10 9.225182192e-10 7.196544453e-10 1.269391847e-09 4.238823661e-10 3.073916797e-10 6.529212552e-10 2.654414244e-10 6.338451075e-10 1.464200438e-10 2.254996609e-10 4.252606486e-10 6.498058053e-10 2.62101825e-10 4.895520686e-10 1.196547012e-10 4.971381698e-10 6.453382652e-10 3.216962931e-10 2.988280427e-10 6.940746152e-10 4.368309328e-10 2.754781233e-10 1.760060251e-10 4.113353407e-10 3.519864942e-10 +3.712605251e-10 1.041957662e-10 2.760122118e-10 6.55658207e-10 4.574050457e-10 8.531963069e-10 6.382194186e-10 5.079060182e-10 3.990164068e-10 4.977453129e-10 1.14323254e-09 3.133476955e-10 1.019385049e-09 3.001829421e-10 2.687851067e-10 8.668461169e-10 2.102694337e-10 2.509021776e-10 6.085622568e-10 3.513722139e-10 2.281780425e-10 6.201385468e-10 7.890409405e-10 4.135224477e-10 3.100442111e-10 6.440106999e-10 6.856000363e-10 7.170228308e-10 5.613566993e-10 3.376181577e-10 6.023489337e-10 1.050251283e-09 5.575343563e-10 2.104337728e-10 5.28681603e-10 5.346480444e-10 1.846663123e-10 5.804971231e-10 6.373689508e-10 8.187144833e-10 3.537176556e-10 1.155062755e-09 1.412824096e-09 1.305141063e-09 9.657050949e-10 8.565867272e-10 5.758542008e-10 1.092160827e-09 5.314689551e-10 5.671626722e-10 9.121477829e-10 8.562158888e-10 1.241706664e-09 1.166876866e-09 1.27101712e-09 1.465450747e-09 1.238758662e-09 9.353724665e-10 8.13392211e-10 1.056705057e-09 1.021854167e-09 1.076208184e-09 1.080404022e-09 1.327934806e-09 1.130075831e-09 1.880319888e-09 1.468894605e-09 1.514264651e-09 5.50093922e-10 1.506902214e-09 1.284418205e-09 1.149078264e-09 1.55591176e-09 1.5790725e-09 8.866100758e-10 8.595503461e-10 7.880609787e-10 8.225569248e-10 1.61205144e-09 1.821560934e-09 1.465285783e-09 1.489285572e-09 2.953545598e-09 1.90928911e-09 2.407069955e-09 1.349761669e-09 1.297397411e-09 1.54484332e-09 1.616438747e-09 1.58004405e-09 2.10163908e-09 1.744964085e-09 2.108230093e-09 1.474250377e-09 1.04545608e-09 7.49831446e-10 1.348396067e-10 3.607291725e-10 7.402873675e-10 1.016782845e-09 1.601421147e-09 2.713260985e-09 3.712470183e-09 2.890784359e-09 2.660717787e-09 1.767525897e-09 3.332357101e-09 3.295166782e-09 1.737605543e-09 3.516703444e-09 4.936705803e-09 2.41319063e-09 2.092308797e-09 1.744531033e-09 2.290937015e-09 1.709277059e-09 1.639067029e-09 1.368823304e-09 7.628017214e-10 3.994909782e-13 2.254235799e-10 2.896559642e-10 1.975037946e-10 6.835476871e-10 2.280889377e-09 2.591084496e-09 2.499264337e-09 2.104816997e-09 2.881722957e-09 5.525786644e-09 1.010439624e-08 9.827036306e-09 7.071717566e-09 5.179412078e-09 5.143629846e-09 4.346718097e-09 1.109804689e-09 1.136296817e-09 1.049670135e-10 9.39320185e-13 6.88933589e-10 4.19627476e-13 3.201490601e-10 1.106723305e-10 2.343010871e-10 2.884472778e-10 2.28575461e-10 1.754080759e-10 5.290329497e-11 2.73927593e-10 2.353362701e-10 8.333798976e-11 2.645734242e-10 1.674705893e-10 5.860597912e-16 6.024892228e-11 2.282009116e-10 3.439824249e-10 1.199868151e-12 2.165030757e-10 0 2.691464073e-10 5.987259609e-10 1.30119361e-09 3.958669599e-09 5.27305559e-09 6.628825301e-09 6.202183912e-09 6.439761211e-09 6.883708815e-09 7.193582391e-09 3.668682442e-09 3.133910021e-09 2.838974201e-09 2.471581e-09 1.814221684e-09 5.586862339e-10 3.014380098e-10 8.15552584e-11 8.532824457e-11 1.47085991e-10 1.013267952e-09 1.885056709e-09 1.567777924e-09 1.015248187e-09 1.31148068e-09 1.019839304e-09 2.132823884e-09 3.071985546e-09 3.103525682e-09 3.562910492e-09 2.466171153e-09 2.37140953e-09 2.350498168e-09 2.232079615e-09 1.421242989e-09 3.688554446e-09 2.070489623e-09 3.087560775e-09 1.327829656e-09 4.020788843e-10 9.990449186e-10 6.862212309e-10 5.793932274e-10 8.89407262e-10 1.250652175e-09 1.72118462e-09 7.832254011e-10 1.74429451e-09 1.166982218e-09 1.971772331e-09 2.306571016e-09 8.669937248e-10 1.451546381e-09 1.970992704e-09 1.460720968e-09 2.314790732e-09 1.834851127e-09 2.774881836e-09 1.923948493e-09 6.8802826e-10 1.874174162e-09 1.460568326e-09 1.170756923e-09 1.323341253e-09 7.213766077e-10 1.653930969e-09 1.639319659e-09 1.319151923e-09 1.681510582e-09 1.607743e-09 1.255074895e-09 7.758799779e-10 8.17165542e-10 1.199448086e-09 1.323557367e-09 1.353141816e-09 1.178035694e-09 1.030910649e-09 9.36283823e-10 1.461865849e-09 6.38792969e-10 8.007807651e-10 8.58761457e-10 1.063712753e-09 1.485070025e-09 6.036723052e-10 1.615727118e-09 1.002984767e-09 1.378618028e-09 9.062916798e-10 8.470711659e-10 6.865262096e-10 9.139630632e-10 1.079745797e-09 1.067176077e-09 1.494722896e-09 1.156392691e-09 1.522364468e-09 1.161748075e-09 8.234574715e-10 8.583912681e-10 9.522812392e-10 8.152319504e-10 7.421782384e-10 2.823001583e-10 2.384263647e-10 7.836093466e-10 4.398132052e-10 1.913638196e-10 8.607018239e-10 4.565778749e-10 5.979077332e-10 6.402782567e-10 8.353929142e-10 2.773837961e-10 8.249011487e-10 4.881912485e-10 2.33020878e-10 6.007019382e-10 1.452523999e-10 3.331292724e-10 2.83625081e-10 2.912833349e-10 2.507785365e-10 6.986057142e-10 3.120353289e-10 4.220003339e-10 2.648044691e-10 9.240117418e-10 3.322966616e-10 3.420436784e-10 4.130360014e-10 5.284984562e-10 3.932418004e-10 4.952134318e-10 4.433943766e-10 5.152241061e-10 2.085455335e-10 4.422582309e-10 +3.373739622e-10 2.780184952e-10 3.719075718e-10 2.320189711e-10 6.73439017e-10 2.729558209e-10 3.831229042e-10 6.16856416e-10 3.343224672e-10 4.148372689e-10 2.356305866e-10 5.284000902e-10 4.999765167e-10 3.654492471e-10 3.20340538e-10 4.247928965e-10 7.587608943e-10 4.616538863e-10 2.472709633e-10 3.195092238e-10 1.797219263e-10 6.559573775e-10 5.76104485e-10 7.025817352e-10 3.203628101e-10 8.449782567e-10 6.174260117e-10 8.630290342e-10 4.718400969e-10 5.869767999e-10 5.029802311e-10 6.01683714e-10 4.434726292e-10 7.469864149e-10 4.83800355e-10 4.713664967e-10 2.400940786e-10 6.298559231e-10 5.04592406e-10 3.775312499e-10 1.091381037e-09 9.342743361e-10 1.285388853e-09 1.205087088e-09 8.533177669e-10 9.037117608e-10 1.538845788e-09 5.501417143e-10 9.837399632e-10 1.116847283e-09 1.332562339e-09 1.884969341e-09 8.014264925e-10 7.746102159e-10 7.146122044e-10 1.449504512e-09 1.346148958e-09 3.386527227e-10 1.015551085e-09 5.686450452e-10 5.629027113e-10 8.942424231e-10 1.34819169e-09 1.322886344e-09 1.080587356e-09 1.41040349e-09 1.0041984e-09 9.749353079e-10 1.490859466e-09 1.595249738e-09 8.489462173e-10 8.015252524e-10 1.650111232e-09 1.712121396e-09 1.545507857e-09 9.488135208e-10 1.403317586e-09 6.059447505e-10 1.069953979e-09 1.560948286e-09 9.949188121e-10 3.135853163e-09 1.33637973e-09 1.295944604e-09 2.185251689e-09 2.832377155e-09 1.534261004e-09 1.818150376e-09 1.994963684e-09 2.346289128e-09 1.782494236e-09 1.585978096e-09 6.446410941e-10 1.51370945e-09 1.182483667e-09 8.517610295e-10 7.257218465e-10 9.103374719e-10 1.156375848e-09 8.817922586e-10 2.117438747e-09 2.690434292e-09 3.998906301e-09 2.833442516e-09 3.012861796e-09 3.939752612e-09 2.067716635e-09 2.850735605e-09 2.269751517e-09 3.383046735e-09 3.888809046e-09 2.643904795e-09 3.002279222e-09 1.623358065e-09 1.508668188e-09 1.988723119e-09 1.693230748e-09 1.688298127e-09 1.033584639e-09 7.912276963e-11 1.930239853e-10 3.930696452e-10 3.273177675e-10 3.704425551e-10 1.78896248e-09 2.601516112e-09 3.504540763e-09 3.025994095e-09 4.294730861e-09 5.97016743e-09 7.236891937e-09 6.389207216e-09 6.35572072e-09 6.863180906e-09 4.833013439e-09 3.315410506e-09 1.167426994e-09 2.587587416e-10 4.577273837e-15 7.383456907e-12 1.193201484e-10 1.227049013e-10 3.085877426e-10 1.888679719e-10 2.641871888e-10 1.37533801e-10 3.133748549e-10 1.3409205e-10 4.354959003e-10 3.933938745e-10 2.430096485e-10 1.959386926e-10 1.505125017e-10 3.165352855e-10 1.572308887e-10 5.492986304e-11 6.679168116e-11 0 2.412611338e-10 4.188837476e-10 2.298129337e-10 8.538444343e-11 2.378691959e-10 1.326153483e-09 1.302156307e-09 4.853721155e-09 7.244575602e-09 7.203606963e-09 6.60769692e-09 8.880349714e-09 9.088647499e-09 6.197419734e-09 3.202413311e-09 3.261306385e-09 2.548925403e-09 2.448786515e-09 9.847543476e-10 1.265417646e-10 5.858360624e-27 1.988390126e-10 1.658448194e-10 6.254639794e-10 1.723051685e-09 1.201609321e-09 2.653916874e-09 1.890818408e-09 2.646629857e-09 1.947749347e-09 2.765037011e-09 3.271449251e-09 3.925407277e-09 1.631527385e-09 2.626063794e-09 2.544556848e-09 3.273682008e-09 2.368051392e-09 3.818610272e-09 3.836675356e-09 2.723919801e-09 2.024068986e-09 1.056126845e-09 9.225511668e-10 5.112255012e-10 8.921640324e-10 8.509855583e-10 1.537815605e-09 1.216576509e-09 1.602653971e-09 1.340019919e-09 1.341110226e-09 1.494076086e-09 1.143796324e-09 1.981456679e-09 1.819253279e-09 2.41693791e-09 3.268300144e-09 1.04432235e-09 1.810162945e-09 1.964423791e-09 2.393025321e-09 1.96310456e-09 1.21027013e-09 1.16073582e-09 1.431412634e-09 8.333104301e-10 1.063720015e-09 1.37732205e-09 1.529957304e-09 1.364673431e-09 1.434287063e-09 1.650249674e-09 1.222944591e-09 1.707381227e-09 1.457283208e-09 1.047137828e-09 1.546414836e-09 8.021334214e-10 9.915743259e-10 9.303868154e-10 1.152751192e-09 5.873046268e-10 9.992992017e-10 8.33499219e-10 6.594310307e-10 4.701354182e-10 1.095396507e-09 7.237099053e-10 9.441958563e-10 1.23545411e-09 4.891767062e-10 1.438592698e-09 9.690822802e-10 8.618174821e-10 1.077531132e-09 4.949298507e-10 1.169018882e-09 5.910212246e-10 1.060939515e-09 1.047268499e-09 7.024887933e-10 4.912095628e-10 3.88872276e-10 7.986914893e-10 1.493496842e-10 8.216775701e-10 2.211225364e-10 4.250157082e-10 2.807953178e-10 4.399546423e-10 5.298168833e-10 5.320653248e-10 4.975339412e-10 3.326937213e-10 6.367139507e-10 5.859144432e-10 4.754219723e-10 4.070622217e-10 7.165154524e-10 4.888069936e-10 2.058807705e-10 3.308371407e-10 9.164575617e-11 8.03568465e-10 5.605706169e-10 3.120933623e-10 1.484320145e-10 7.584728558e-10 3.423229925e-10 7.20214306e-10 5.753300128e-10 2.713439952e-10 6.991564644e-10 3.164570942e-10 3.967277771e-10 2.702747e-10 5.620343463e-10 4.182153907e-10 1.664514324e-10 2.257135231e-10 8.755355486e-10 +3.141074178e-10 5.195918807e-10 1.78485827e-10 5.656115393e-10 4.316220404e-10 9.484383936e-11 3.561939901e-10 4.222694473e-10 3.09914773e-10 6.271973119e-10 9.034960068e-10 3.349767711e-10 5.215958148e-10 1.396564168e-09 6.601956163e-10 8.692458427e-10 2.944326398e-10 2.227936142e-10 3.082155994e-10 3.300901916e-10 5.028605363e-10 1.118387856e-09 4.058131821e-10 8.18169448e-10 8.02475739e-10 4.75160701e-10 6.337813545e-10 4.41181937e-10 3.163208077e-10 6.78854874e-10 1.943483544e-10 9.709032859e-10 2.638302133e-10 9.865227189e-10 3.654512219e-10 4.854747559e-10 5.323779903e-10 7.10996506e-10 3.899190344e-10 3.890379668e-10 9.807818173e-10 1.017882858e-09 1.209187327e-09 1.364948876e-09 1.397588202e-09 5.69414709e-10 8.228449353e-10 1.792272341e-09 1.1955809e-09 1.124642686e-09 1.745467945e-09 8.327450532e-10 1.328362582e-09 6.636736448e-10 1.071848655e-09 1.268520169e-09 6.235490901e-10 1.043718386e-09 7.47962185e-10 1.0565541e-09 7.592833919e-10 9.559162528e-10 1.09643888e-09 7.32376717e-10 1.127505963e-09 1.241559051e-09 1.681171029e-09 1.338405632e-09 9.947027911e-10 1.502957236e-09 1.338728174e-09 1.140634814e-09 1.874343935e-09 1.344793806e-09 1.084717974e-09 9.02355288e-10 1.117126736e-09 1.498618424e-09 1.124184347e-09 1.809841524e-09 1.709160011e-09 2.273983613e-09 2.94178114e-09 2.383895939e-09 2.034829906e-09 1.342958395e-09 3.092539396e-09 1.891013591e-09 1.881527805e-09 1.154654959e-09 1.617782079e-09 9.019804547e-10 1.298112568e-09 9.371568038e-10 1.106374987e-09 8.520466166e-10 2.497594416e-10 2.256551263e-10 7.058245105e-10 1.050334178e-09 2.709610491e-09 2.516010757e-09 2.02739182e-09 4.500914464e-09 3.601875452e-09 2.614415149e-09 4.05389941e-09 1.762338398e-09 2.505055728e-09 2.124741701e-09 3.914955918e-09 3.036045505e-09 2.958047054e-09 2.404817702e-09 2.558845562e-09 2.107435643e-09 2.240941605e-09 1.345681964e-09 7.125164112e-10 1.605342125e-10 9.144528337e-11 3.169833902e-10 1.51664477e-10 1.401113653e-09 2.742630923e-09 2.771043997e-09 2.84068986e-09 3.947634943e-09 6.851324164e-09 8.826428004e-09 7.149203262e-09 6.506226281e-09 4.623694997e-09 4.845498231e-09 3.684098428e-09 6.82246425e-10 3.93570221e-10 2.974091913e-10 4.575909424e-10 3.652109893e-10 1.392775381e-10 4.834319319e-10 1.667124968e-10 3.666872013e-10 6.961568173e-11 1.678844679e-10 3.164582753e-10 2.431256857e-10 2.456711838e-10 1.839808369e-10 1.837311317e-10 4.497355722e-10 2.318424392e-10 1.35293951e-10 3.944566959e-10 1.163375203e-10 1.044719369e-10 2.139984782e-10 2.663272798e-10 3.070008036e-10 3.232936683e-10 4.349495844e-10 2.095071363e-10 5.069116675e-10 1.50625304e-09 4.481305911e-09 6.178934809e-09 6.509390226e-09 7.583046213e-09 7.887284447e-09 6.693582323e-09 4.851419598e-09 2.419059286e-09 3.214340439e-09 3.4322579e-09 2.139577906e-09 9.382906599e-10 1.216001127e-10 1.846189594e-10 2.485184693e-10 1.55572807e-10 1.16757331e-09 1.648269743e-09 1.644779628e-09 1.940514357e-09 1.228019988e-09 1.713701318e-09 2.595991941e-09 3.23640195e-09 3.15378925e-09 3.764899623e-09 2.585355315e-09 3.034119019e-09 2.982593037e-09 3.504149673e-09 5.111249608e-09 3.210314432e-09 2.923462048e-09 3.212264173e-09 1.498743406e-09 1.170833378e-09 1.059662672e-09 5.031272642e-10 7.92085771e-10 5.809753081e-10 1.711977444e-09 1.43521483e-09 2.158925799e-09 1.106469245e-09 1.409408512e-09 7.164932711e-10 1.209531656e-09 1.822183328e-09 1.8171946e-09 2.126197003e-09 1.16979147e-09 1.335468233e-09 3.033159212e-09 1.763392614e-09 1.660914073e-09 1.548893529e-09 1.402966443e-09 7.551203637e-10 8.433396929e-10 1.043800326e-09 1.252798759e-09 9.458564965e-10 6.954172736e-10 1.062409714e-09 1.491280002e-09 1.35157178e-09 1.418421463e-09 1.374738128e-09 1.170092617e-09 1.851399998e-09 9.862982942e-10 1.424039383e-09 1.89805628e-09 9.979037503e-10 4.997638692e-10 8.785222317e-10 7.402157036e-10 6.801768322e-10 9.191094602e-10 1.116214034e-09 6.674177766e-10 1.003469008e-09 1.333178199e-09 1.246168753e-09 1.331942804e-09 8.01185375e-10 6.910314756e-10 9.269409466e-10 1.525401915e-09 1.599506772e-09 1.288729824e-09 1.461036525e-09 6.602656884e-10 1.052361914e-09 1.063831265e-09 2.936993518e-10 1.341265887e-09 8.736997537e-10 5.738100372e-10 6.973076929e-10 6.98889572e-10 5.026378122e-10 2.851464131e-10 4.132573272e-10 3.557197087e-10 3.35075379e-10 7.925379852e-10 4.096209669e-10 8.230838543e-10 6.431935533e-10 4.730002683e-10 4.630510239e-10 4.539685058e-10 3.221263822e-10 7.118903023e-10 3.592983987e-10 3.880220143e-10 2.916021888e-10 1.964439762e-10 3.805071663e-10 4.980853369e-10 6.598499713e-10 3.116515282e-10 3.593561366e-10 1.007542954e-09 6.909589444e-10 3.630774439e-10 3.995349471e-10 6.490089839e-10 3.427233758e-10 2.200729598e-10 8.450948623e-10 4.127978907e-10 4.641029582e-10 5.184538852e-10 +2.435562893e-10 2.56639247e-10 7.627004563e-10 4.724907169e-10 1.745174827e-10 3.660374171e-10 3.872202955e-10 2.896059745e-10 4.654318089e-10 5.446243364e-10 3.769819736e-10 7.635899255e-10 1.257864567e-10 6.756247747e-10 2.662112003e-10 2.873646981e-10 5.414048443e-10 3.58421064e-10 5.341929596e-10 3.050939807e-10 4.178860826e-10 3.031778595e-10 5.164257277e-10 5.7132119e-10 1.490692367e-09 9.560290985e-10 4.374308447e-10 7.210044084e-10 6.644207017e-10 1.844938614e-10 5.932205521e-10 1.008533338e-09 7.681449688e-10 3.611677927e-10 3.472222252e-10 6.419145344e-10 6.161105191e-10 8.535551345e-10 1.05396098e-09 1.012686283e-09 6.664738059e-10 5.723177481e-10 1.081219183e-09 1.044898402e-09 2.245714228e-09 1.194609208e-09 7.788373368e-10 1.144815618e-09 1.236053525e-09 6.767096841e-10 9.15544828e-10 1.458886322e-09 1.340040708e-09 1.765002858e-09 1.129955352e-09 1.177633227e-09 1.06470261e-09 1.500553014e-09 4.311011018e-10 3.954686472e-10 9.249263243e-10 8.553733135e-10 8.243922876e-10 9.346864063e-10 1.033862927e-09 1.059261832e-09 9.898610885e-10 1.16788226e-09 1.840643249e-09 1.364802867e-09 1.284991353e-09 1.037971316e-09 8.912434412e-10 4.874180365e-10 1.350163747e-09 1.366916367e-09 6.518292684e-10 1.259106916e-09 1.323904359e-09 1.834058202e-09 2.037996167e-09 2.403978654e-09 3.058521008e-09 1.952525803e-09 2.365094576e-09 1.827590741e-09 1.829971935e-09 1.185097372e-09 2.528089467e-09 2.347234128e-09 1.328558099e-09 1.599072875e-09 1.003542961e-09 1.515035471e-09 1.471377659e-09 7.427889411e-10 4.78125257e-10 4.480261315e-10 9.165530525e-10 8.250009302e-10 2.234325962e-09 3.377850278e-09 3.87216228e-09 2.548070366e-09 1.329460058e-09 3.386241645e-09 3.134433913e-09 1.231812467e-09 3.285714736e-09 3.512775097e-09 3.524593542e-09 2.791202904e-09 2.516298444e-09 2.437839091e-09 1.750461611e-09 1.591563589e-09 1.652748027e-09 1.375159697e-09 7.232737483e-10 9.221814895e-11 3.399902728e-11 1.149601214e-10 0 1.525488071e-09 2.187273528e-09 3.005050402e-09 2.922354141e-09 4.093360539e-09 5.587906706e-09 9.488494916e-09 7.234498594e-09 6.095682816e-09 6.316168533e-09 5.527729617e-09 3.488597788e-09 1.219015639e-09 1.826892624e-35 0 3.875619693e-11 0 3.222672348e-10 2.571137456e-12 2.961417622e-10 3.103171225e-10 1.51182245e-10 1.160766571e-10 3.78781006e-27 2.101463773e-10 1.862455196e-10 1.058249236e-10 9.428718595e-11 3.321471137e-11 4.017493159e-10 9.813711655e-11 2.200293817e-10 1.696863179e-10 1.784094836e-10 9.632286602e-13 1.624891538e-10 2.921998646e-10 4.511643597e-10 2.834054965e-10 3.632423159e-10 1.189600523e-10 4.673484591e-10 2.247823576e-09 4.986227257e-09 7.335679035e-09 4.941353298e-09 6.53452656e-09 6.734308105e-09 6.278479878e-09 2.963332385e-09 3.614529502e-09 1.46996819e-09 2.587043576e-09 2.719410127e-09 5.934898038e-10 2.006972458e-10 3.732068908e-10 2.771096836e-10 5.91640004e-10 1.089115616e-09 1.135298881e-09 1.753782845e-09 2.140444527e-09 1.345197473e-09 1.493928492e-09 2.527861259e-09 3.221121032e-09 3.789071899e-09 2.600077825e-09 2.526768482e-09 3.037920839e-09 3.04123438e-09 3.075924584e-09 1.976380664e-09 2.666422659e-09 3.388855987e-09 1.861708159e-09 6.601209748e-10 1.233688098e-09 7.520967606e-10 5.025147875e-10 7.843504014e-10 1.610192338e-09 1.668328934e-09 1.248586072e-09 1.231747309e-09 1.582992554e-09 2.046991167e-09 1.038166962e-09 1.619257431e-09 1.452238839e-09 1.783811893e-09 1.993691383e-09 1.317852425e-09 2.36731912e-09 2.435597793e-09 1.768868167e-09 1.487572682e-09 1.74365246e-09 6.739111691e-10 9.233351768e-10 8.35669375e-10 9.234958385e-10 1.425440221e-09 7.297036199e-10 1.221719314e-09 1.234875948e-09 1.100757075e-09 9.846855926e-10 1.200437315e-09 1.161770178e-09 1.415365591e-09 1.830015584e-09 1.031509618e-09 7.039529801e-10 6.296267954e-10 6.619224238e-10 8.604984516e-10 1.100160868e-09 1.822549967e-09 1.372353024e-09 1.385857421e-09 7.439354473e-10 8.876253449e-10 1.342342764e-09 4.441269931e-10 9.939619031e-10 1.483551066e-09 5.985238386e-10 9.228600703e-10 1.105501721e-09 1.243605648e-09 1.465082366e-09 8.402869805e-10 1.722116845e-09 9.280669415e-10 5.408698436e-10 1.200860365e-09 6.567298281e-10 5.043969754e-10 5.9325807e-10 4.400508177e-10 5.428391581e-10 3.128873019e-10 6.03214681e-10 8.767347543e-10 5.928844896e-10 5.883155572e-10 6.145546459e-10 5.330289406e-10 4.924893258e-10 6.217866762e-10 2.411393172e-10 6.983035681e-10 4.648244394e-10 4.578631783e-10 2.579179278e-10 9.514613405e-10 2.572865281e-10 6.332288685e-10 6.876431955e-10 1.005425817e-09 4.464343368e-10 4.240981648e-10 4.273406173e-10 6.586458919e-10 4.058278776e-10 4.020646897e-10 1.533585963e-10 1.506844567e-10 4.050815533e-10 9.351141982e-10 3.155742569e-10 2.445342214e-10 4.743605837e-10 5.186464195e-10 2.461934601e-10 +2.079550581e-10 1.865206276e-10 5.466592016e-10 5.479582706e-10 4.391555487e-10 3.041742273e-10 4.82978297e-10 2.872830054e-10 8.682535876e-10 5.169759981e-10 2.493962191e-10 5.348906571e-10 3.444399348e-10 3.683264284e-10 4.974585014e-10 2.892942835e-10 4.536903297e-10 2.271090579e-10 8.403086502e-10 2.031238879e-10 2.629510763e-10 1.942274564e-10 2.51569477e-10 5.997056188e-10 3.693498398e-10 6.744550532e-10 3.050977593e-10 3.796083784e-10 4.354300856e-10 8.854474528e-10 4.96984148e-10 4.214688335e-10 3.402165246e-10 2.127120817e-10 4.204627385e-10 4.625166359e-10 7.066127341e-10 2.470666883e-10 6.815203753e-10 5.682290028e-10 3.366803377e-10 1.272684288e-09 8.926438293e-10 6.628166669e-10 1.39039314e-09 5.41402586e-10 9.219336476e-10 1.317842896e-09 1.396164416e-09 9.432842557e-10 8.692662066e-10 2.031385587e-09 1.228739943e-09 1.03961299e-09 1.37553659e-09 1.197486533e-09 8.015476491e-10 5.527339721e-10 5.338235436e-10 9.704404626e-10 8.240868782e-10 1.084336152e-09 8.281834863e-10 1.601157751e-09 1.026572936e-09 1.396246065e-09 1.437267273e-09 1.037184508e-09 1.298695434e-09 2.112452683e-09 1.119527768e-09 6.043959684e-10 1.157077463e-09 9.316527827e-10 1.793861494e-09 1.289231207e-09 7.880159193e-10 9.735699995e-10 1.38530575e-09 1.548971331e-09 1.566243453e-09 2.43796386e-09 2.411011603e-09 2.785510314e-09 1.128783448e-09 1.521128836e-09 1.888106982e-09 2.342253859e-09 1.433551092e-09 1.270367468e-09 2.171883256e-09 1.564722212e-09 1.678172855e-09 2.188235427e-09 1.252437195e-09 1.062748828e-09 4.512048295e-10 5.085666857e-10 1.284495731e-09 1.160693126e-09 2.729496605e-09 3.175859985e-09 2.390311188e-09 1.600980954e-09 2.865513216e-09 3.067426438e-09 2.103162756e-09 2.743510841e-09 2.488001089e-09 3.756985312e-09 2.661484511e-09 2.252717268e-09 2.110313679e-09 1.659284732e-09 1.964326697e-09 2.309905896e-09 1.557539911e-09 1.473846924e-09 3.829359099e-10 2.18119545e-11 1.388540488e-10 4.069417228e-11 8.535395191e-10 2.654483703e-09 3.785098857e-09 3.974639621e-09 2.686199144e-09 5.730967613e-09 7.530425269e-09 7.882872841e-09 8.488901597e-09 5.809437396e-09 6.348386637e-09 3.400427078e-09 1.686997491e-09 4.684185197e-11 4.310429228e-10 1.694834311e-10 4.875190158e-10 1.19116528e-11 2.514181635e-10 2.358533941e-10 2.955034992e-10 2.703668406e-10 3.669740981e-10 1.064382583e-10 7.513993089e-11 2.153231513e-10 8.19184855e-11 2.847067252e-10 3.364585769e-10 9.262234955e-11 1.303458654e-10 1.581734834e-10 1.447934786e-11 1.315440775e-16 1.039814276e-11 3.523813771e-10 3.327410925e-10 6.465392412e-10 1.593367643e-10 2.293134665e-10 3.574325302e-10 1.033076584e-10 5.794699547e-11 1.212454962e-09 2.709109357e-09 3.628426003e-09 6.620636364e-09 5.951617008e-09 7.112288894e-09 6.930195047e-09 3.991544695e-09 3.48699757e-09 2.847120231e-09 3.479274034e-09 1.944117139e-09 5.088290033e-10 1.941433285e-10 3.624496364e-10 4.448749501e-10 3.835848252e-10 1.39835044e-09 1.79298565e-09 1.749258828e-09 2.895409106e-09 1.412234057e-09 1.991182817e-09 2.65160571e-09 3.25031022e-09 4.654942571e-09 3.204685769e-09 2.396060707e-09 2.304352273e-09 3.234586753e-09 3.251315617e-09 3.145571376e-09 3.286672949e-09 2.521116788e-09 2.072078731e-09 1.947559317e-09 1.196618913e-09 3.999648127e-10 2.583498292e-10 8.919571516e-10 1.010131329e-09 1.39399087e-09 1.093631017e-09 1.280148315e-09 1.225421531e-09 1.387804151e-09 2.247291e-09 2.137142669e-09 1.712111837e-09 2.94603659e-09 1.61116764e-09 1.938493432e-09 2.75116316e-09 2.32873749e-09 2.072539462e-09 1.628068436e-09 5.29591376e-10 7.694591386e-10 7.348670393e-10 8.950886548e-10 8.591324148e-10 1.208551142e-09 9.105530896e-10 1.068588732e-09 1.309515446e-09 1.495583616e-09 1.287642438e-09 1.141642228e-09 9.283399194e-10 1.550521982e-09 1.06664446e-09 1.121113297e-09 1.277090269e-09 1.212581387e-09 7.940590901e-10 9.645179133e-10 1.523788227e-09 8.02267132e-10 5.544574189e-10 1.112172428e-09 7.484397135e-10 1.211557091e-09 1.044231468e-09 1.032527328e-09 9.239875684e-10 4.459975806e-10 6.402808017e-10 8.763428682e-10 7.81857665e-10 1.576045267e-09 1.242130435e-09 8.893964785e-10 6.973410841e-10 1.469096599e-09 1.20764629e-09 7.062257478e-10 1.214271441e-09 4.246876099e-10 2.730830329e-10 6.699872696e-10 9.913454104e-10 6.636548996e-10 1.021495495e-09 3.222581263e-10 4.005821519e-10 8.051743436e-10 4.504473351e-10 5.038993748e-10 3.629145019e-10 7.021691753e-10 8.224160152e-10 6.921332837e-10 3.694252684e-10 3.251505924e-10 4.108506667e-10 1.982588337e-10 6.060658014e-10 4.518269199e-10 5.214767111e-10 1.940058507e-10 5.660498241e-10 4.23775649e-10 5.230409421e-10 2.233514295e-10 5.568842014e-10 6.989105019e-10 4.891960041e-11 6.072693021e-10 5.039988168e-10 3.013764563e-10 4.789093512e-10 3.662842989e-10 3.247503877e-10 3.778337933e-10 6.39126058e-10 +6.707577765e-10 2.28593121e-10 5.171878143e-10 7.380887734e-10 7.407825229e-10 4.045697265e-10 6.7802762e-10 5.323356687e-10 1.795200526e-10 4.206954605e-10 2.175841921e-10 2.130847571e-10 7.793776058e-10 4.395990497e-10 4.700452082e-10 4.625837892e-10 1.689334754e-10 2.620789796e-10 9.09978043e-10 3.195460099e-10 3.466204602e-10 5.231131769e-10 7.306001868e-10 1.493520685e-09 4.000156849e-10 5.186527378e-10 4.243221505e-10 7.312763343e-10 6.647014726e-10 7.807914886e-10 2.976231079e-10 7.258657204e-10 4.290260118e-10 2.396047018e-10 5.505037164e-10 7.353960268e-10 5.054205154e-10 4.005589444e-10 4.970911896e-10 5.521934597e-10 6.129780401e-10 1.273304744e-09 9.852913491e-10 9.476033292e-10 1.0504324e-09 9.931658464e-10 6.862186414e-10 5.901890285e-10 5.798167112e-10 9.668343952e-10 5.691026232e-10 1.28289376e-09 1.096172013e-09 1.010047373e-09 9.293333758e-10 1.97867899e-09 1.626071833e-09 1.117502894e-09 1.143787317e-09 7.256226179e-10 1.049801241e-09 1.375624308e-09 1.533437265e-09 8.647415743e-10 1.589762698e-09 1.47165646e-09 1.053080321e-09 9.316187644e-10 1.323622526e-09 1.656026884e-09 1.077507976e-09 5.03090365e-10 1.426387063e-09 1.067514543e-09 6.996480476e-10 1.084308218e-09 9.616013361e-10 8.355715096e-10 1.110717192e-09 1.219174258e-09 1.22421669e-09 3.097806413e-09 3.042942834e-09 1.287434267e-09 1.596270901e-09 2.233048946e-09 2.318969679e-09 1.551739196e-09 2.24899661e-09 1.3768435e-09 2.098884918e-09 1.192675194e-09 1.181525115e-09 1.862878008e-09 1.198644686e-09 1.244213979e-09 4.323290284e-10 1.336650891e-10 5.244528157e-10 1.053622758e-09 2.042948882e-09 2.211587942e-09 3.329615104e-09 3.658318011e-09 2.121942117e-09 3.153283671e-09 2.391782103e-09 2.581220158e-09 3.566354098e-09 3.9623793e-09 4.353043873e-09 2.500710302e-09 2.118446303e-09 1.33691969e-09 2.230218743e-09 1.716597758e-09 7.525141007e-10 1.681628212e-09 1.325095787e-10 2.979110915e-10 1.517706016e-10 5.275035283e-11 6.813643418e-10 1.650731843e-09 3.609881322e-09 2.940534207e-09 2.815114005e-09 5.111044631e-09 9.020152707e-09 6.258152195e-09 7.038706911e-09 5.926040423e-09 3.676162118e-09 3.287208813e-09 9.922800623e-10 2.886947841e-10 1.836374802e-10 7.663297532e-11 3.779026287e-10 1.216101881e-10 2.031011726e-10 2.744001297e-10 1.430631069e-10 2.002790879e-10 8.987672887e-11 9.216509693e-11 2.71460351e-10 4.69206429e-13 8.693341604e-11 2.68220159e-10 1.849526946e-10 3.269809912e-10 1.596698676e-10 8.888884867e-11 6.125578581e-10 6.928179799e-11 1.827891558e-10 1.773896738e-10 1.064987798e-10 1.027934849e-10 2.962816326e-10 4.274066346e-10 1.387258286e-10 7.48260346e-11 3.144072568e-10 6.570906409e-10 3.877241502e-09 4.506276112e-09 4.607402088e-09 6.287484502e-09 7.591861902e-09 6.356008265e-09 4.820080848e-09 3.081525139e-09 2.973145524e-09 3.314718621e-09 2.821921577e-09 1.088598248e-09 2.02288586e-10 2.528634717e-10 3.423292182e-10 3.430293546e-10 1.083508982e-09 2.775636549e-09 1.482476006e-09 2.431111164e-09 2.092713611e-09 1.920057654e-09 2.096341695e-09 2.833869369e-09 3.812885992e-09 2.98930352e-09 2.819091911e-09 2.587068629e-09 2.373240412e-09 3.090046895e-09 2.877321686e-09 2.564150479e-09 4.293617618e-09 1.846181334e-09 1.03071193e-09 5.477284592e-10 4.707017464e-10 7.385263126e-10 1.169698709e-09 1.314644344e-09 1.497592087e-09 1.80768056e-09 1.3237879e-09 1.836000653e-09 2.011350186e-09 1.622635245e-09 2.019607161e-09 1.411425014e-09 1.931085667e-09 2.440088534e-09 1.55955975e-09 2.185060486e-09 2.360802946e-09 1.236270953e-09 1.638540084e-09 1.596754037e-09 1.228965037e-09 8.903880622e-10 1.021950754e-09 6.222055939e-10 1.327745356e-09 7.228581349e-10 1.267585525e-09 1.448909644e-09 1.03700199e-09 1.26446034e-09 5.620148955e-10 8.178118015e-10 8.051008498e-10 1.015357582e-09 1.092357825e-09 1.478120918e-09 1.092053999e-09 1.312923991e-09 1.289063735e-09 1.037231093e-09 9.639129721e-10 1.042461324e-09 9.949243357e-10 1.40393393e-09 9.854568723e-10 1.228085949e-09 1.245345864e-09 1.280636792e-09 9.835613578e-10 1.228354589e-09 6.271407439e-10 8.020421817e-10 8.343652816e-10 1.376222942e-09 1.128422866e-09 1.103717665e-09 6.990067526e-10 5.807625628e-10 9.338312357e-10 3.04536932e-10 4.920007024e-10 3.261040257e-10 5.684804761e-10 6.235418772e-10 9.128069728e-10 5.599644546e-10 6.07727524e-10 8.043476825e-10 7.021328983e-10 4.106417839e-10 5.129036741e-10 7.039622225e-10 3.857186984e-10 5.008098333e-10 2.897193362e-10 4.570045163e-10 1.923452453e-10 4.943738515e-10 1.15405522e-10 2.554619596e-10 4.247708202e-10 2.707901846e-10 1.12328444e-10 4.260036813e-10 4.333410824e-10 3.067469388e-10 1.172155058e-09 2.483868857e-10 4.222210562e-10 6.314911156e-10 2.762680623e-10 5.530741617e-10 1.702117271e-10 2.578467958e-10 5.658988616e-10 4.216772485e-10 1.918197776e-10 3.543328806e-10 +5.840163288e-10 1.689905236e-10 7.694866768e-10 8.706643444e-10 6.419886301e-10 7.814819015e-10 6.609447705e-10 4.447939535e-10 2.090138322e-10 3.457013258e-10 8.729573767e-10 5.901358909e-10 7.067362178e-10 2.102733779e-10 5.757259928e-10 4.780398907e-10 5.13579286e-10 2.432655275e-10 2.311896399e-10 4.237513375e-10 2.324564705e-10 6.072438502e-10 4.29828675e-10 7.208650774e-10 3.701352672e-10 7.449595466e-10 1.01680713e-09 8.861669908e-10 5.409351933e-10 4.292738979e-10 6.874957422e-10 3.331925775e-10 8.001811572e-10 3.850793136e-10 4.044627328e-10 1.396405651e-09 3.509195601e-10 5.001037719e-10 5.680129341e-10 5.461158785e-10 1.121342053e-09 8.539535502e-10 1.028787118e-09 1.451471381e-09 1.667985751e-09 1.30078506e-09 1.517891952e-09 9.861919895e-10 5.021607553e-10 1.101295025e-09 1.160198531e-09 7.330261795e-10 1.763926365e-09 8.250012455e-10 1.555582735e-09 1.167751805e-09 7.821842744e-10 9.353893768e-10 3.983892252e-10 9.713418005e-10 1.008288638e-09 5.486080785e-10 1.269755759e-09 8.344312131e-10 2.013285897e-09 9.817812949e-10 7.33789458e-10 8.200962786e-10 8.720473043e-10 1.638472288e-09 1.478418588e-09 1.230423381e-09 8.76290546e-10 1.376310383e-09 1.328627566e-09 9.918623822e-10 1.128906626e-09 1.376770654e-09 1.466160529e-09 1.140016928e-09 1.082162917e-09 2.568790529e-09 1.732414295e-09 2.747385663e-09 2.693395346e-09 2.480437552e-09 1.230015571e-09 1.968493626e-09 1.875774004e-09 1.738575007e-09 1.435124008e-09 1.056141373e-09 1.49555445e-09 1.320284099e-09 1.421985471e-09 8.680309935e-10 5.359756548e-10 8.179007679e-10 1.054079884e-09 1.039381343e-09 1.711926226e-09 2.844879374e-09 3.877317472e-09 3.356567268e-09 2.228601289e-09 2.154158745e-09 2.071544723e-09 1.848507971e-09 2.372143867e-09 3.556852002e-09 2.612721757e-09 3.564871577e-09 2.37125091e-09 2.424343124e-09 2.24830325e-09 1.399647989e-09 1.807887036e-09 9.196415854e-10 4.885176591e-10 1.854673278e-10 1.436602652e-10 5.283427961e-10 9.417466063e-10 2.678458976e-09 4.135380421e-09 4.296576403e-09 3.426642786e-09 7.598238712e-09 9.355901363e-09 5.827599089e-09 6.487368416e-09 5.99334132e-09 4.946731107e-09 2.08949461e-09 9.368967942e-10 2.629690579e-10 1.362412771e-10 2.36873704e-10 2.406428234e-10 2.892785836e-10 8.527393743e-11 2.141825469e-10 2.909119423e-10 8.769872388e-11 3.407567655e-10 3.729076782e-10 2.443414024e-10 2.544123408e-10 8.490838373e-11 7.310647304e-11 1.841221658e-10 1.568896887e-10 1.994948129e-10 2.7965498e-10 1.553116936e-10 3.218403024e-10 1.797861175e-10 1.724824741e-10 3.257523022e-11 4.182583554e-10 0 1.732652467e-10 2.895421242e-10 1.929799895e-10 1.702161773e-10 6.588080222e-11 2.676071745e-09 3.000545504e-09 5.351298749e-09 5.794711807e-09 7.499344472e-09 8.649975646e-09 7.671013918e-09 3.422477407e-09 2.447113588e-09 2.90916114e-09 3.001347811e-09 1.182210879e-09 3.563366692e-10 3.658371617e-10 2.543274251e-10 3.750393352e-10 7.29512816e-10 2.141158248e-09 1.598692022e-09 2.057354916e-09 2.017387864e-09 2.079834112e-09 2.359092729e-09 3.562383909e-09 3.30484834e-09 1.498336594e-09 3.980280875e-09 2.208016562e-09 3.01169762e-09 3.45278837e-09 2.966247307e-09 3.364486708e-09 2.730967215e-09 2.333631256e-09 9.681792251e-10 5.133366118e-10 6.732394268e-10 5.678493343e-10 9.577516588e-10 1.1163596e-09 1.761174942e-09 2.081985458e-09 1.982500809e-09 1.628789432e-09 1.31491173e-09 1.058572342e-09 1.527341017e-09 2.006233979e-09 2.421875916e-09 1.82595119e-09 1.533127149e-09 2.361491136e-09 2.721359836e-09 9.666087099e-10 1.432807192e-09 7.741313995e-10 9.499032433e-10 9.619703811e-10 8.111308627e-10 1.781547905e-09 9.441667781e-10 8.531966561e-10 1.476161889e-09 1.610543356e-09 1.315596633e-09 1.24058385e-09 1.253053072e-09 9.567788214e-10 9.743619042e-10 1.434159061e-09 1.224441968e-09 1.260309712e-09 1.057881506e-09 8.241319054e-10 5.731531915e-10 5.990139953e-10 1.042810596e-09 3.327663691e-10 1.190162517e-09 1.016948388e-09 1.220697074e-09 6.476587664e-10 1.046255464e-09 1.213970171e-09 1.229288064e-09 9.264721743e-10 1.470201145e-09 1.013950511e-09 8.893424633e-10 8.948649471e-10 5.192017804e-10 8.380066152e-10 7.47467028e-10 1.254953793e-09 1.087058769e-09 6.160943244e-10 4.545297848e-10 1.050433997e-09 3.28521028e-10 6.867039168e-10 4.424415729e-10 5.661554739e-10 2.475984314e-10 6.423322599e-10 2.867742413e-10 3.247764427e-10 4.484062716e-10 5.418969895e-10 5.021280478e-10 5.247904855e-10 9.780402615e-10 3.602536564e-10 3.417292061e-10 6.990429639e-10 3.384199308e-10 2.133483418e-10 2.149973058e-10 3.751615999e-10 3.218872564e-10 7.481310228e-10 4.374128443e-10 2.002834608e-10 7.93143609e-10 5.912070322e-10 4.740752443e-10 3.382198112e-10 2.933772515e-10 2.986879508e-10 5.677602784e-10 4.767898849e-10 4.315382766e-10 1.116102355e-10 8.534537257e-10 3.467826279e-10 +4.955787194e-10 4.830462383e-10 4.028323078e-10 3.116664876e-10 8.574720514e-10 2.27227135e-10 4.794783364e-10 5.201733245e-10 3.719507915e-10 6.984001715e-10 6.192319484e-10 1.035949574e-10 3.961219874e-10 4.670980038e-10 6.524638885e-10 1.236032058e-10 6.734368727e-10 1.80346691e-10 3.161125273e-10 9.281264616e-10 3.178480367e-10 5.555081081e-10 7.400861791e-10 6.457448044e-10 8.592567719e-10 4.648135405e-10 6.48728857e-10 1.143394227e-09 6.739159092e-10 8.531915559e-10 4.961515943e-10 7.885135804e-10 4.834544206e-10 6.154231216e-10 4.261746354e-10 5.417612332e-10 8.413117762e-10 4.242237553e-10 2.559341489e-10 8.651896559e-10 1.006755391e-09 1.304709629e-09 1.464929188e-09 1.298354292e-09 7.832631522e-10 8.807610027e-10 1.310936639e-09 8.364227427e-10 6.429879954e-10 9.906721493e-10 1.64681664e-09 8.103748653e-10 1.344660723e-09 1.14363881e-09 1.05470944e-09 9.757616846e-10 1.596259238e-09 1.047112628e-09 7.854045396e-10 3.137794497e-10 1.011888038e-09 9.603338052e-10 1.740472922e-09 5.81261259e-10 1.292197855e-09 1.425558548e-09 1.334566008e-09 1.159359121e-09 1.148868869e-09 1.136548788e-09 9.354126775e-10 1.576363547e-09 9.6255705e-10 8.770096491e-10 1.372640666e-09 8.164533815e-10 4.172519481e-10 9.197626548e-10 1.173027276e-09 1.922089286e-09 1.780555412e-09 1.750313911e-09 1.779674532e-09 2.322429187e-09 2.596407523e-09 1.607766178e-09 2.207488062e-09 1.466437594e-09 1.486615901e-09 1.580753946e-09 1.773502757e-09 1.84959059e-09 2.184105906e-09 1.633767331e-09 1.057047027e-09 7.334218598e-10 4.656364611e-10 5.908618725e-10 1.523620573e-09 7.509434887e-10 1.15545226e-09 3.40703675e-09 3.274955619e-09 3.790703033e-09 3.234215161e-09 2.127040436e-09 2.160957711e-09 1.399634318e-09 3.341650446e-09 4.262257277e-09 2.047565491e-09 2.1030152e-09 1.614103575e-09 1.460460479e-09 1.66547099e-09 9.572558593e-10 2.026681887e-09 7.718058857e-10 2.513339289e-10 1.560252636e-10 1.230796675e-10 2.886935687e-10 2.090582934e-09 2.643664486e-09 3.387042304e-09 2.565892631e-09 3.623186039e-09 5.639371106e-09 6.711139682e-09 7.011213063e-09 6.410359263e-09 5.726232215e-09 2.302979764e-09 1.332143708e-09 2.682837662e-10 7.605791526e-11 1.714379166e-10 2.071571588e-10 9.724875501e-11 2.32772412e-10 3.827014901e-10 1.664435812e-10 2.295688021e-10 1.180974622e-12 1.851756697e-10 2.057150342e-10 1.400272519e-10 1.543124807e-10 2.675836806e-10 1.081886318e-10 7.286435781e-11 9.869762908e-11 3.952906977e-10 1.534986529e-10 2.918415368e-10 1.015570229e-10 1.620580719e-10 4.375746182e-10 2.358745304e-10 2.750066803e-10 1.618123669e-10 2.184990526e-10 2.868167463e-10 0 9.114694604e-11 7.946261008e-11 1.379450182e-09 4.530374899e-09 5.077580091e-09 4.564239545e-09 8.340837967e-09 8.625529197e-09 6.545674702e-09 3.969236147e-09 3.372464848e-09 3.443608913e-09 3.048305489e-09 1.17536481e-09 4.044449429e-10 2.830285492e-10 1.439338901e-11 1.374018266e-10 1.06948533e-09 1.528107697e-09 1.823586029e-09 1.725056164e-09 1.435089172e-09 2.076733954e-09 2.202034816e-09 4.240987568e-09 2.941223439e-09 2.907667194e-09 2.357607102e-09 3.254998074e-09 3.475933489e-09 3.648168555e-09 2.37613381e-09 2.761387143e-09 3.053665339e-09 3.637461979e-09 1.747315763e-09 3.201604277e-10 6.186198918e-10 4.537701075e-10 1.084824946e-09 1.138705576e-09 1.436622906e-09 1.809090954e-09 1.837972611e-09 1.722349418e-09 2.085168127e-09 1.358231452e-09 1.911093037e-09 9.349457734e-10 1.117624222e-09 1.860068545e-09 1.346224552e-09 1.972459922e-09 3.028297229e-09 1.971619551e-09 1.806589633e-09 2.291708423e-09 1.098671662e-09 1.041031594e-09 1.441930425e-09 1.088010599e-09 2.073197789e-09 5.797478867e-10 1.820933797e-09 1.085195273e-09 7.150757022e-10 8.22095166e-10 9.501670336e-10 7.723287097e-10 9.750981884e-10 1.126725521e-09 1.486750788e-09 5.262997125e-10 3.663224744e-10 6.97271217e-10 1.192155694e-09 1.220758549e-09 1.056027432e-09 7.302434362e-10 1.067827968e-09 9.75346128e-10 9.404634815e-10 1.20802794e-09 9.488054434e-10 1.51621598e-09 1.191312869e-09 9.07197263e-10 1.332068837e-09 5.920563016e-10 8.71712806e-10 1.213788191e-09 1.743634059e-09 1.122737688e-09 1.685224364e-09 7.472858203e-10 7.844783149e-10 5.916392679e-10 4.78581509e-10 7.881152696e-10 2.388180684e-10 8.384492848e-10 5.695395651e-10 2.461076938e-10 6.871709874e-10 3.327381178e-10 5.353400849e-10 2.890521111e-10 2.333701994e-10 3.687093069e-10 5.739603658e-10 3.612896915e-10 6.440312326e-10 3.036500182e-10 4.225511752e-10 1.759748381e-10 2.153004234e-10 6.597011417e-10 2.143763661e-10 3.781437917e-10 7.558020142e-10 5.100996431e-10 5.279471128e-10 3.251362321e-10 3.742903942e-10 7.417729039e-10 4.763935004e-10 2.444968924e-10 3.806679919e-10 7.194089233e-10 1.606797856e-10 2.976664978e-10 5.196472508e-10 3.889421381e-10 2.077863825e-10 2.953192481e-10 +3.554708233e-10 4.419899731e-10 1.605823199e-10 9.472326542e-10 2.301363452e-10 3.077938412e-10 5.165492776e-10 3.635577448e-10 3.34225723e-10 4.631970759e-10 7.084554751e-10 1.136345748e-09 4.76017183e-10 4.358260408e-10 3.478857772e-10 4.530797012e-10 1.144309533e-09 2.366428614e-10 1.813638961e-10 4.321128684e-10 1.900642971e-10 4.791390521e-10 3.522864255e-10 5.441808054e-10 1.189134485e-09 4.062964258e-10 4.923406532e-10 3.873833164e-10 5.971246504e-10 2.916863983e-10 9.372881544e-10 3.666486523e-10 2.651903108e-10 9.145459271e-10 6.514222552e-10 5.989221151e-10 9.066020133e-10 1.288572314e-09 7.23461607e-10 5.060108965e-10 7.862233594e-10 8.135754776e-10 1.120900417e-09 1.503680034e-09 1.208407778e-09 1.459855558e-09 1.131031204e-09 8.673048959e-10 2.093704036e-09 6.968901135e-10 1.355040751e-09 5.964468516e-10 1.53077986e-09 8.654862899e-10 1.326496839e-09 1.19165859e-09 7.728003688e-10 1.002693742e-09 8.658061489e-10 4.005733739e-10 8.750963169e-10 7.69620958e-10 1.21815269e-09 7.641111455e-10 8.575163291e-10 2.111836387e-09 7.595065294e-10 9.145350427e-10 1.15322598e-09 1.525093635e-09 5.720387614e-10 1.567035915e-09 1.214724597e-09 1.337001876e-09 1.527381308e-09 1.044088527e-09 1.862975202e-09 1.520384339e-09 1.322731935e-09 1.316225031e-09 1.413070238e-09 3.084583468e-09 1.852320145e-09 2.204556052e-09 2.209126557e-09 1.634342295e-09 1.674772294e-09 2.050773635e-09 1.653582968e-09 1.38067288e-09 1.507917498e-09 1.896921229e-09 1.388001337e-09 2.052861342e-09 1.2849147e-09 8.696832442e-10 5.632712861e-10 7.926041217e-10 7.974277331e-10 1.46490384e-09 3.059513352e-09 1.162756982e-09 2.972456204e-09 1.117756931e-09 3.541380821e-09 3.33514227e-09 1.652569268e-09 2.356182538e-09 3.806732911e-09 2.762625673e-09 4.401527672e-09 1.24481797e-09 1.449489035e-09 2.970260186e-09 1.993050239e-09 1.748233569e-09 1.591122069e-09 2.873241076e-10 1.61429334e-10 2.748697315e-10 5.023583322e-10 8.808984421e-11 2.548458884e-09 3.129788429e-09 3.828668294e-09 2.553487922e-09 4.884363733e-09 8.470586648e-09 6.258165935e-09 6.936994833e-09 7.624501546e-09 5.729475127e-09 2.137328336e-09 1.078842028e-09 2.190957327e-10 1.663781934e-10 8.851215708e-11 2.60433259e-10 1.148180541e-16 0 2.521682283e-10 1.846915238e-10 2.232573704e-12 9.481161537e-13 2.759053231e-10 7.412786119e-11 3.46296213e-10 9.373457037e-11 3.01637782e-10 2.201452816e-10 3.064093806e-10 1.657454071e-10 1.432030586e-10 3.75400459e-13 9.536057721e-11 9.355088959e-11 4.385259254e-10 0 2.064884591e-10 1.832188046e-10 3.48551595e-10 2.422440128e-10 8.644406489e-11 4.06960825e-10 1.646457602e-10 2.88824448e-10 5.884658766e-10 1.972811581e-09 4.944339354e-09 5.456123439e-09 6.277105418e-09 9.282591261e-09 7.551307956e-09 5.352731748e-09 3.956298286e-09 2.470609158e-09 2.58199039e-09 2.613379998e-09 1.196518717e-10 1.30192491e-18 4.515342218e-10 1.413655032e-10 4.133700424e-10 1.768541832e-09 2.080091411e-09 2.054775875e-09 1.480910766e-09 1.627082024e-09 2.075088081e-09 2.630314468e-09 3.120114539e-09 2.87746797e-09 3.608536892e-09 2.459380624e-09 2.579402157e-09 1.892074594e-09 2.631736523e-09 3.591932115e-09 2.446698593e-09 2.994180236e-09 2.079574785e-09 6.709747425e-10 8.454331717e-10 7.012803347e-10 1.05772795e-09 1.028970769e-09 2.002557073e-09 1.229164049e-09 1.251580263e-09 1.776365808e-09 2.353996634e-09 1.25975067e-09 1.519685194e-09 1.819879082e-09 1.892475799e-09 2.114949505e-09 1.275022358e-09 1.690819299e-09 1.920987737e-09 1.373007776e-09 1.637280308e-09 1.293082663e-09 1.675459249e-09 1.35008975e-09 5.589870316e-10 1.201362321e-09 7.357488344e-10 1.028585714e-09 1.388419717e-09 1.261575375e-09 1.981606876e-09 1.056170808e-09 1.597753763e-09 1.022248991e-09 1.233552464e-09 1.503456473e-09 1.127340917e-09 1.416836483e-09 9.798280797e-10 1.075051615e-09 7.532397106e-10 1.079885257e-09 1.240180084e-09 1.045164978e-09 1.118475198e-09 9.091084101e-10 1.038182941e-09 9.019281676e-10 1.134073271e-09 1.369541251e-09 8.319975586e-10 1.169872392e-09 1.435714672e-09 9.227440286e-10 1.844527422e-09 1.367451162e-09 1.142578768e-09 1.111043754e-09 1.544834997e-09 7.011937528e-10 5.383073198e-10 5.289980999e-10 1.774479344e-10 5.54726851e-10 5.246841412e-10 3.079364457e-10 3.256414162e-10 4.162224251e-10 3.86354792e-10 3.611463565e-10 2.943766043e-10 4.061096536e-10 7.815964948e-10 1.098193849e-09 7.89976626e-10 8.8021066e-10 4.310914986e-10 2.984159893e-10 4.093851639e-10 5.217134059e-10 5.84202559e-10 3.854896214e-10 4.244515415e-10 2.22134033e-10 7.087997664e-10 7.343437018e-10 4.142776349e-10 2.563109995e-10 6.108988179e-10 2.156854873e-10 4.173602127e-10 4.467971868e-10 6.178051853e-10 1.127972637e-09 5.183872867e-10 8.377645579e-10 4.528701993e-10 1.384844133e-09 5.887742134e-10 4.162119081e-10 +3.500389361e-10 3.374422489e-10 1.568923086e-10 5.025648271e-10 3.715254621e-10 4.802444703e-10 3.517111835e-10 2.507047315e-10 1.30433831e-10 3.133525541e-10 4.719036865e-10 2.772698351e-10 3.332834542e-10 3.923243463e-10 5.652049178e-10 1.269378747e-09 6.112787046e-10 7.815664983e-10 3.911382414e-10 3.86187914e-10 5.526769053e-10 1.328333713e-10 5.881469419e-10 2.865354205e-10 4.485990622e-10 5.887783219e-10 5.533157666e-10 5.515606333e-10 4.260525066e-10 6.584819718e-10 5.879966251e-10 5.087317543e-10 4.641191968e-10 8.248281578e-10 2.517141598e-10 3.675214004e-10 1.736903296e-10 4.038238804e-10 4.34950386e-10 9.801646529e-10 6.448231525e-10 1.099002346e-09 1.635573585e-09 1.218980731e-09 1.069616487e-09 9.59109102e-10 9.004610225e-10 1.082744077e-09 3.682092962e-10 1.045669533e-09 2.249562269e-09 1.443427981e-09 1.214409135e-09 1.032123763e-09 1.332416373e-09 1.227384091e-09 1.507472287e-09 1.143830966e-09 1.022089415e-09 1.156359213e-09 1.064443665e-09 6.026202303e-10 7.532376873e-10 9.425271861e-10 1.272586224e-09 1.278597099e-09 1.208908293e-09 1.366366349e-09 1.412421662e-09 1.062844473e-09 9.556024573e-10 1.385400576e-09 1.053131914e-09 1.088878502e-09 1.454792305e-09 6.652080008e-10 6.503824635e-10 1.562428059e-09 1.807799869e-09 1.768110706e-09 2.063068181e-09 3.726735625e-09 2.655783719e-09 2.731346785e-09 1.506129407e-09 1.717203668e-09 1.283299648e-09 1.45252669e-09 1.103589387e-09 1.835779052e-09 1.510556467e-09 1.48778776e-09 1.651658713e-09 1.203641759e-09 7.940415e-10 7.496227165e-10 2.442666101e-10 1.077505608e-09 1.169615283e-09 1.434819899e-09 2.095836038e-09 2.372494624e-09 2.374987425e-09 2.896432696e-09 2.985559658e-09 2.607782505e-09 2.899636109e-09 2.680037749e-09 4.156668256e-09 3.963567686e-09 2.715775573e-09 2.692929132e-09 2.400393174e-09 1.860347521e-09 2.840895213e-09 2.407611922e-09 1.18288638e-09 5.866275156e-10 2.008069916e-10 2.817961937e-10 9.762681428e-12 4.529795487e-10 1.339675769e-09 2.406318638e-09 3.134522966e-09 2.900596916e-09 6.567826727e-09 7.236693605e-09 8.827577916e-09 5.82826333e-09 5.566374757e-09 4.612000167e-09 1.650015745e-09 5.640548257e-10 1.104859794e-10 2.363360891e-10 3.585440921e-10 2.332695399e-10 3.298609802e-10 8.978585834e-11 3.28195607e-10 1.632008936e-10 4.147526105e-10 1.174751236e-10 7.904230037e-11 8.187582422e-11 2.804374064e-10 2.046812551e-10 4.277113609e-10 3.545508473e-10 8.079254326e-11 9.544503933e-11 1.761695305e-10 7.768065592e-11 5.288523627e-11 2.645125698e-10 1.596940469e-10 1.645921737e-10 3.430686552e-10 1.488399537e-10 1.248072545e-10 2.279162101e-10 4.458514383e-10 9.45979292e-11 3.770718274e-10 5.528884651e-11 3.549420148e-10 2.469625084e-09 5.395562853e-09 5.764393762e-09 6.76114298e-09 6.384946484e-09 7.507873504e-09 6.56475532e-09 2.778178302e-09 2.993879769e-09 2.607916494e-09 2.529780471e-09 4.563412766e-10 4.198353347e-11 2.28359755e-10 1.817718063e-10 3.159470534e-10 1.113421404e-09 1.824678187e-09 2.272593765e-09 2.05694461e-09 1.904803435e-09 2.79286584e-09 2.787053977e-09 4.185138635e-09 2.636146449e-09 2.388294752e-09 1.717689843e-09 1.934207889e-09 1.899857327e-09 3.662602722e-09 3.07335938e-09 1.608187463e-09 3.188091446e-09 1.036804024e-09 1.194759203e-09 2.024470723e-10 4.069217565e-10 6.616482605e-10 8.770994568e-10 2.473755772e-09 1.88377489e-09 1.074472197e-09 1.854546835e-09 1.906998094e-09 1.777818063e-09 1.85728671e-09 1.973611296e-09 2.479241485e-09 1.514984565e-09 2.500031373e-09 2.544436658e-09 1.682138904e-09 1.972800161e-09 1.504605413e-09 1.265002971e-09 1.125400534e-09 3.639803886e-10 8.256562689e-10 2.195652539e-09 7.152501012e-10 1.147811068e-09 1.988438294e-09 1.111174078e-09 1.22013332e-09 1.517583386e-09 8.905095584e-10 1.055113859e-09 9.067039878e-10 7.996328013e-10 7.18574367e-10 9.193832849e-10 1.105696422e-09 6.620188555e-10 4.802400335e-10 1.224976639e-09 8.964419221e-10 1.405461299e-09 8.516217719e-10 1.036119908e-09 1.266454715e-09 1.401554856e-09 7.686739541e-10 1.736040337e-09 8.484793962e-10 1.22814955e-09 7.912183051e-10 8.112678215e-10 5.819542677e-10 8.663875189e-10 1.121426448e-09 7.625105013e-10 6.027809933e-10 1.009092354e-09 9.230806303e-10 6.063524546e-10 6.27021649e-10 3.187766561e-10 3.898640055e-10 9.399402135e-10 6.66147432e-10 4.905605345e-10 5.782105434e-10 4.339137043e-10 4.742812416e-10 2.468036157e-10 8.780667661e-10 8.950355316e-10 2.321833802e-10 2.125897981e-10 4.302621526e-10 4.772057637e-10 3.784247141e-10 2.802983199e-10 4.221533663e-10 2.858696802e-10 5.674890353e-10 6.253438812e-10 4.994091919e-10 7.908079265e-10 5.049798829e-10 7.552249236e-10 4.474390058e-10 9.732676759e-10 5.593482908e-10 5.662435763e-10 8.747227773e-11 8.627669092e-10 5.034968747e-10 3.143766452e-10 1.004753026e-09 5.213390283e-10 3.545613561e-10 8.273827399e-10 +3.636065939e-10 2.237606006e-10 6.937368546e-10 4.1217972e-10 6.353573441e-10 3.605005081e-10 3.290675893e-10 4.529556619e-10 4.880236052e-10 1.054323225e-10 8.585603815e-10 2.260311093e-10 4.192106599e-10 7.984997606e-10 6.176678313e-10 5.661262446e-10 6.587925855e-10 9.270218343e-10 3.488359659e-10 5.803347864e-10 4.57104995e-10 7.674339678e-10 1.870157887e-10 2.700822266e-10 8.003297423e-10 5.855561208e-10 4.981117156e-10 6.142044744e-10 6.805641827e-10 6.229792586e-10 5.779725168e-10 6.246415669e-10 5.969739338e-10 6.133505648e-10 4.795160764e-10 4.21367729e-10 2.747445447e-10 4.639314799e-10 2.948238868e-10 5.292567361e-10 5.675877916e-10 7.945225247e-10 1.401299686e-09 1.212757384e-09 6.207997413e-10 1.139507744e-09 8.423705242e-10 9.655188343e-10 1.20630319e-09 1.207721453e-09 2.129422112e-09 9.321873277e-10 1.107342902e-09 8.417403963e-10 1.27878178e-09 6.792989056e-10 4.499782577e-10 1.369307205e-09 8.504508982e-10 8.849704632e-10 1.135336319e-09 1.248409817e-09 1.300036502e-09 1.316583924e-09 8.386332011e-10 1.60003546e-09 6.799696982e-10 1.284403482e-09 9.957884113e-10 1.609037654e-09 1.150636471e-09 1.677018515e-09 1.337042774e-09 1.244675196e-09 1.323639196e-09 1.288094864e-09 8.815771187e-10 1.360547682e-09 8.614854722e-10 1.270660965e-09 2.1469468e-09 2.145512177e-09 1.829438455e-09 1.695375608e-09 2.271651304e-09 1.835626624e-09 1.700311853e-09 2.075527752e-09 1.90591215e-09 2.208968707e-09 1.840392721e-09 2.058814639e-09 1.935492201e-09 1.383737284e-09 8.877629614e-10 6.923817243e-10 6.167636931e-10 9.12182801e-10 1.031076342e-09 1.254571915e-09 2.50821633e-09 2.82027469e-09 3.400041105e-09 3.018533708e-09 3.211913953e-09 2.689184491e-09 2.161500644e-09 1.411008963e-09 3.069081784e-09 3.479107164e-09 2.07992761e-09 1.558063117e-09 2.629833287e-09 2.421392479e-09 2.45013065e-09 1.586421499e-09 1.389443623e-09 4.580340672e-10 1.772412751e-10 1.89229971e-10 5.024272196e-10 1.045086773e-09 3.234093493e-09 3.681933127e-09 3.098333915e-09 3.476725906e-09 4.924822854e-09 7.107371538e-09 6.336025545e-09 6.426148204e-09 5.194241055e-09 5.114505565e-09 1.277825332e-09 2.269850222e-10 3.386968119e-10 4.44536893e-10 6.625985529e-11 3.883256355e-10 2.183584822e-10 1.477724992e-10 3.677523075e-10 5.721487696e-10 1.052008711e-10 1.958168396e-10 1.003780276e-10 5.244049037e-11 0 2.249180841e-10 5.575083973e-10 2.232126661e-10 1.960640162e-10 8.481551033e-11 1.978741693e-10 1.735782044e-10 5.278891751e-10 2.735613812e-10 2.048429217e-10 2.852216985e-10 2.247576051e-10 1.167012694e-10 3.80050416e-10 1.818583947e-10 2.64243722e-10 5.63724467e-10 2.355153515e-10 4.189323649e-10 2.30882905e-10 1.02758044e-09 3.524833446e-09 5.311259977e-09 6.344337626e-09 7.181610986e-09 1.064860151e-08 7.972241538e-09 3.241732748e-09 3.510642699e-09 3.070487404e-09 2.647428883e-09 7.765100024e-10 2.067253756e-10 3.418669006e-10 9.359696319e-11 7.506442438e-10 1.711156564e-09 1.168647663e-09 2.237896108e-09 2.373913941e-09 2.963608518e-09 1.711814188e-09 1.957113861e-09 3.818092815e-09 2.584006816e-09 3.3601255e-09 2.626846503e-09 2.593922143e-09 3.323888583e-09 4.31786384e-09 2.386970765e-09 2.35901436e-09 1.857577254e-09 1.929584828e-09 1.768139355e-09 7.546986563e-10 1.766824718e-10 8.406776656e-10 1.250480847e-09 1.500025788e-09 2.090321671e-09 1.4650443e-09 2.0170233e-09 1.673395553e-09 1.634038937e-09 2.370226075e-09 1.838822011e-09 1.092532868e-09 2.148476564e-09 1.710058593e-09 1.979619861e-09 1.91156113e-09 1.447993784e-09 1.379570494e-09 1.005283028e-09 7.898998665e-10 9.131672028e-10 1.320114287e-09 3.196582317e-10 9.431688355e-10 1.058276334e-09 7.048539035e-10 1.425255638e-09 1.325364206e-09 1.375228694e-09 1.369305145e-09 6.578476518e-10 1.419195839e-09 9.657252005e-10 1.018309005e-09 1.079160545e-09 7.971269993e-10 1.105164326e-09 6.013751678e-10 4.725993558e-10 1.489028804e-09 1.210922434e-09 1.520262719e-09 1.219830661e-09 1.133184998e-09 1.319232497e-09 9.673043642e-10 6.230690325e-10 9.671617405e-10 1.044339048e-09 9.147053701e-10 7.59926992e-10 1.057704347e-09 1.263707358e-09 1.5838921e-09 1.031603144e-09 6.541473172e-10 7.59959955e-10 7.216491333e-10 1.846679096e-10 3.936978599e-10 6.279816926e-10 6.092125045e-10 7.334098921e-10 4.528227125e-10 7.955155251e-10 5.690905364e-10 2.681330749e-10 8.985648604e-10 7.018399318e-10 4.748936888e-10 5.63881159e-10 1.021623454e-09 1.813010307e-10 5.700521143e-10 4.26549721e-10 1.945923105e-10 5.757063507e-10 4.138650438e-10 3.3751971e-10 2.717674283e-10 1.039015678e-09 4.395316675e-10 1.652050575e-10 3.014106787e-10 3.856175838e-10 6.460986056e-10 9.372426236e-10 3.862050352e-10 3.732988969e-10 1.998605889e-10 4.464797329e-10 7.555394876e-10 4.269892086e-10 5.817062425e-10 3.543766688e-10 6.804795417e-10 7.846614334e-10 +4.968023284e-10 5.898290174e-10 6.573421451e-10 1.68823668e-10 5.451750407e-10 2.547078583e-10 3.75346559e-10 8.190275473e-11 3.444769086e-10 5.817651786e-10 6.822864865e-10 1.670618881e-10 1.95925119e-10 4.715754825e-10 4.047333908e-10 4.365586693e-10 3.762838693e-10 1.262501678e-09 5.663103143e-10 4.658916601e-10 4.864096076e-10 3.64928294e-10 1.476512748e-10 2.618551296e-10 2.652064943e-10 1.228522723e-09 6.463237389e-10 5.067292087e-10 2.861738172e-10 5.217801682e-10 5.658484426e-10 3.626649594e-10 9.460922986e-10 3.981300404e-10 5.479643548e-10 6.67320492e-10 8.768401821e-10 1.327235091e-10 4.161588582e-10 6.812388885e-10 6.920608677e-10 1.072241078e-09 1.337967325e-09 1.090307859e-09 1.404541476e-09 1.15698352e-09 1.253478704e-09 4.68126459e-10 5.368940565e-10 8.099901542e-10 1.034390718e-09 1.044475177e-09 1.092942262e-09 1.28941515e-09 1.096186014e-09 1.813271512e-09 9.902648201e-10 1.097724635e-09 1.25810115e-09 1.031245311e-09 7.977315255e-10 9.585146556e-10 1.025492515e-09 1.41674061e-09 1.772016236e-09 8.783453637e-10 1.210351077e-09 9.141313001e-10 1.16558293e-09 8.071984674e-10 9.373861458e-10 8.461110209e-10 1.217445616e-09 1.276792866e-09 7.909347952e-10 1.848931605e-09 1.364860269e-09 9.521466369e-10 1.254477782e-09 1.529781757e-09 1.598233032e-09 3.174737047e-09 2.585247629e-09 1.489087975e-09 1.774957774e-09 1.868356778e-09 1.860306932e-09 2.775264052e-09 1.915399734e-09 1.677922308e-09 1.479712137e-09 1.429081041e-09 1.605825672e-09 1.207062854e-09 1.109699655e-09 9.258411467e-10 1.593701077e-10 9.126700485e-10 7.208041069e-10 6.449746568e-10 2.648034386e-09 2.045721018e-09 3.123446694e-09 1.644749799e-09 2.5182536e-09 2.278286336e-09 2.896663252e-09 2.584927221e-09 4.210269591e-09 3.991811834e-09 2.188492875e-09 1.93107854e-09 1.81283063e-09 2.851655569e-09 1.560801884e-09 9.21556474e-10 1.048779543e-09 3.063137894e-10 1.452123187e-10 1.341711431e-10 5.314373899e-13 9.215763227e-10 3.553648382e-09 3.784856482e-09 3.675940063e-09 4.348414347e-09 5.886904919e-09 1.022833855e-08 6.916763143e-09 6.21033757e-09 4.750798247e-09 3.421918171e-09 8.762237786e-10 8.901138041e-11 2.814542589e-10 5.560236188e-13 3.897649094e-10 3.932282576e-10 3.664091547e-10 4.277619075e-14 3.287717139e-10 5.961177086e-10 1.549603962e-10 2.032308467e-10 4.098032061e-10 1.121499355e-10 3.602364776e-10 1.302849299e-10 1.907159241e-10 2.709829968e-10 2.635697049e-10 3.654427913e-10 9.655163963e-20 1.007877061e-10 5.610797971e-10 9.737226419e-11 2.647934122e-10 1.50536591e-10 5.584055838e-11 9.745063538e-11 1.02411416e-10 9.382041943e-11 5.512781808e-10 2.37929e-10 2.397718895e-10 1.564270885e-10 2.120983416e-10 1.160893366e-09 2.932939115e-09 6.087670592e-09 6.765920943e-09 7.459441904e-09 7.021415954e-09 5.97733447e-09 3.405983453e-09 3.019182561e-09 2.780850735e-09 2.15006058e-09 6.341388899e-10 1.281981995e-10 2.409875832e-10 2.959525241e-10 2.601967709e-10 8.047960218e-10 2.130579038e-09 1.547753263e-09 1.942241352e-09 2.424796221e-09 3.246815757e-09 2.715703503e-09 4.088464457e-09 2.776770883e-09 1.702277856e-09 2.841738231e-09 3.755556297e-09 2.176627468e-09 2.703871342e-09 2.772995348e-09 3.522594389e-09 2.382193274e-09 2.235484079e-09 9.296886249e-10 8.492312563e-10 5.089206687e-10 5.694460385e-10 5.116810143e-10 6.351134529e-10 1.306186482e-09 9.877401816e-10 1.095335236e-09 1.604904921e-09 2.242852088e-09 1.618631426e-09 1.566391623e-09 1.800795906e-09 1.90462229e-09 1.606748918e-09 1.560022347e-09 1.733351346e-09 1.617318607e-09 9.175134493e-10 1.437532159e-09 8.652862849e-10 1.713236366e-09 9.516174495e-10 1.477226156e-09 1.427977298e-09 1.011946741e-09 1.104830397e-09 1.834439891e-09 8.595451611e-10 1.180457031e-09 1.09070704e-09 1.542400598e-09 2.034211149e-09 1.365079051e-09 1.278913355e-09 1.161589588e-09 1.195497798e-09 1.002048843e-09 9.363976416e-10 1.301638364e-09 8.466534545e-10 8.192136578e-10 8.740027268e-10 1.151957511e-09 1.336560732e-09 1.297884596e-09 1.795106959e-09 1.34556526e-09 8.8501037e-10 1.816935873e-09 7.200194328e-10 1.093970471e-09 1.078898078e-09 1.193672087e-09 4.747249105e-10 1.16657363e-09 1.045523468e-09 7.821970457e-10 9.654977472e-10 5.968751193e-10 1.238988022e-09 7.81129422e-10 4.473389616e-10 1.07624795e-09 4.801735222e-10 2.818115554e-10 4.8047211e-10 4.944783226e-10 1.012348125e-09 4.515613076e-10 5.271751069e-10 7.984336396e-10 7.022002681e-10 4.172143807e-10 2.952921361e-10 3.577765093e-10 6.006770903e-10 1.419954162e-09 2.778913072e-10 3.999463896e-10 4.82221188e-10 2.021722326e-10 6.072985616e-10 2.059902387e-10 4.110877613e-10 2.238354399e-10 4.239522574e-10 3.573781119e-10 7.789413797e-10 7.166225721e-10 5.916995418e-10 3.569644794e-10 4.355859324e-10 2.274663632e-10 2.937263904e-10 5.259550242e-10 5.960545343e-10 4.803889024e-10 +2.869231027e-10 3.823004276e-10 4.292801009e-10 3.177502699e-10 2.966592573e-10 5.175481676e-10 1.404991911e-10 3.833376389e-10 7.841465394e-10 7.40791096e-10 6.800844964e-10 3.257348061e-10 4.079415808e-10 8.001326948e-10 2.519892833e-10 2.489051811e-10 7.250900307e-10 2.712777461e-10 7.747013042e-10 3.257490847e-10 4.457234588e-10 4.856884353e-10 3.83317625e-10 4.227677895e-10 4.480420593e-10 7.73275531e-10 1.098923696e-09 5.648004165e-10 4.988425626e-10 7.223688791e-10 4.058903091e-10 5.351834984e-10 5.584654638e-10 3.67769371e-10 5.410294099e-10 4.723330927e-10 3.347338384e-10 5.196687958e-10 5.872125844e-10 7.553169618e-10 5.193482569e-10 8.739856682e-10 7.65345147e-10 1.077719194e-09 1.531014758e-09 1.154303372e-09 9.625176843e-10 8.329796074e-10 7.289475054e-10 8.505883134e-10 1.252989768e-09 1.332016197e-09 1.005192671e-09 9.364613291e-10 1.181010017e-09 7.410174502e-10 8.437695234e-10 1.133575179e-09 1.276216266e-09 1.409613691e-09 7.788709305e-10 1.387475356e-09 9.002557788e-10 9.009392972e-10 7.225510542e-10 9.681116143e-10 1.234476121e-09 9.780478775e-10 1.384307669e-09 8.525007227e-10 1.610724915e-09 1.183008105e-09 1.475966556e-09 1.130647508e-09 1.20201388e-09 4.444522824e-10 6.533226462e-10 1.289465184e-09 1.310522567e-09 2.031518846e-09 2.60453282e-09 1.784058797e-09 1.17601386e-09 2.370866821e-09 1.892296782e-09 1.744058197e-09 1.840535089e-09 1.631974404e-09 1.327251834e-09 1.741466714e-09 1.041373453e-09 1.784886458e-09 1.7091709e-09 1.175380503e-09 9.69804776e-10 7.98996494e-10 2.385293175e-10 8.955380941e-10 5.705843675e-10 7.657234498e-10 2.860231539e-09 2.014629535e-09 3.362390867e-09 1.608056951e-09 2.831508343e-09 2.461638645e-09 2.493798356e-09 2.254986696e-09 5.384002034e-09 3.306417584e-09 3.502288604e-09 2.226261042e-09 2.127292788e-09 1.806066434e-09 1.418959393e-09 2.693249827e-09 1.075080464e-09 8.737506131e-11 3.4345277e-10 4.37234089e-10 1.29665095e-10 1.446150572e-09 1.913100888e-09 4.99459393e-09 2.948557141e-09 4.79812413e-09 7.875599813e-09 6.836078512e-09 6.522254892e-09 7.248632319e-09 4.962128739e-09 2.657788119e-09 7.675514494e-10 1.363458139e-10 2.884202216e-10 1.614596531e-10 8.210112337e-11 2.168103493e-10 7.068839513e-10 3.375228149e-10 2.314260057e-10 0 1.586140299e-10 2.529406072e-10 1.476192603e-10 1.843642574e-10 2.546155392e-10 0 2.405360201e-10 7.464493546e-11 1.862779214e-10 9.205887096e-11 2.804993458e-10 5.807638384e-10 1.907646045e-10 5.903895903e-10 2.946809891e-10 1.721226234e-10 7.766834055e-11 4.521839458e-10 2.229186098e-11 8.290091589e-11 4.266566827e-10 2.99666404e-10 1.112979537e-10 2.592106997e-10 7.499214578e-11 4.15037014e-10 2.9664568e-09 4.744439977e-09 7.7376945e-09 6.009444501e-09 8.424177976e-09 6.809796066e-09 5.03624121e-09 2.792548991e-09 3.47114177e-09 3.203743537e-09 1.639263958e-09 3.364193385e-10 3.698569995e-10 7.30610776e-11 4.223010907e-10 1.306767095e-09 1.413134929e-09 1.865559944e-09 2.023334319e-09 1.947438193e-09 1.773918487e-09 2.572290972e-09 3.863863347e-09 3.915301972e-09 2.015158089e-09 2.454660027e-09 2.454634991e-09 3.659001804e-09 2.56300453e-09 2.384992674e-09 2.589062686e-09 3.277491992e-09 1.839568009e-09 2.731633081e-10 6.609060749e-10 2.894905565e-10 7.31562723e-10 8.103080184e-10 1.444241786e-09 1.64487206e-09 1.151793431e-09 1.416460424e-09 1.893152444e-09 2.307294721e-09 1.927479748e-09 1.397233041e-09 2.020952693e-09 2.005043344e-09 2.201740201e-09 1.520431321e-09 1.686148197e-09 8.27817766e-10 1.622564078e-09 1.252503206e-09 1.188487317e-09 1.582226279e-09 1.0065346e-09 5.302671582e-10 8.630575863e-10 8.427942482e-10 5.438490387e-10 1.207529953e-09 1.064372105e-09 1.349872496e-09 1.561043691e-09 1.146826987e-09 1.265344883e-09 9.252651849e-10 1.638383548e-09 1.044109635e-09 3.886675029e-10 5.591050375e-10 7.356110357e-10 1.003899622e-09 9.513182185e-10 1.028294123e-09 8.510682194e-10 1.334186468e-09 1.356754802e-09 1.120663311e-09 6.98262103e-10 8.558968435e-10 7.918867459e-10 1.112339905e-09 8.510000755e-10 1.605069125e-09 1.546160852e-09 8.234415749e-10 6.723163942e-10 8.481276201e-10 3.433522082e-10 1.025252221e-09 8.757854798e-10 6.217411953e-10 8.512747651e-10 5.154181827e-10 4.217704609e-10 9.357119612e-10 3.390411825e-10 9.97169447e-10 3.235124324e-10 4.117428209e-10 4.915029919e-10 6.144005328e-10 5.016446523e-10 8.293048407e-10 7.67626765e-10 3.406382729e-10 8.357778847e-10 6.377901001e-10 4.545844155e-10 4.193677002e-10 9.745436425e-10 4.357635111e-10 6.736730127e-10 5.428960666e-10 3.051822486e-10 7.306487519e-10 2.096313402e-10 6.442365574e-10 5.227521376e-10 3.520100871e-10 6.027098443e-10 1.431971056e-10 3.92468896e-10 5.731004553e-10 1.048770379e-09 3.065356475e-10 4.530509475e-10 2.480270874e-10 4.514829501e-10 5.145915639e-10 +2.386707555e-10 5.65808073e-10 9.837148982e-10 5.519315679e-10 5.66185077e-10 2.608073761e-10 3.876945033e-10 2.590845711e-10 2.059095343e-10 1.535610644e-10 3.811351403e-10 4.638394793e-10 5.009535746e-10 4.908209302e-10 4.28859318e-10 3.325743993e-10 7.689132357e-10 3.755981993e-10 6.120092942e-10 3.534916581e-10 3.646214508e-10 3.934131967e-10 3.992329455e-10 2.937943728e-10 6.644911638e-10 1.13218042e-09 3.30605567e-10 4.739237537e-10 5.24673853e-10 7.839413004e-10 7.539710447e-10 7.731284655e-10 6.25809568e-10 6.725991381e-10 4.696559017e-10 2.88472383e-10 7.310238069e-10 5.158082925e-10 5.13919523e-10 9.008009208e-10 8.483182422e-10 8.621947923e-10 3.841213069e-10 1.387318608e-09 2.079483986e-09 1.143496415e-09 7.887889523e-10 9.888050188e-10 1.075045296e-09 1.037809987e-09 1.539009845e-09 1.399303955e-09 1.155463797e-09 1.243770067e-09 1.10114987e-09 1.355772876e-09 1.008798022e-09 1.397728349e-09 1.112336363e-09 8.314788439e-10 4.452271548e-10 6.758898676e-10 1.574140674e-09 1.420838802e-09 1.017412362e-09 2.123393586e-09 8.41370469e-10 1.38725587e-09 1.291308636e-09 1.251410416e-09 1.579813123e-09 8.014895753e-10 1.384565864e-09 9.494120612e-10 1.18928233e-09 4.464753463e-10 6.132273572e-10 1.101766156e-09 8.746898898e-10 1.077489623e-09 1.993325728e-09 2.253619647e-09 1.612954538e-09 1.166241766e-09 1.26700015e-09 1.097362132e-09 1.9296149e-09 1.876893618e-09 1.726807195e-09 2.132401478e-09 1.253070906e-09 1.32264038e-09 2.041177977e-09 1.331053434e-09 1.071461145e-09 1.096304036e-09 3.599103576e-10 5.451373481e-10 9.930818272e-10 1.068612083e-09 2.213547791e-09 2.807546791e-09 1.640862488e-09 3.12315106e-09 1.99333891e-09 2.319202035e-09 2.932340439e-09 2.961132352e-09 3.64109802e-09 3.133757215e-09 2.386752486e-09 1.895354925e-09 2.01111972e-09 2.184585229e-09 2.653733277e-09 1.576012665e-09 7.923010546e-10 1.177437835e-10 6.887162807e-11 0 1.42293901e-10 1.916462374e-09 4.099552333e-09 2.884155903e-09 4.167225651e-09 3.993528211e-09 7.90442518e-09 8.216736223e-09 7.062988056e-09 5.33276923e-09 5.660950535e-09 2.142672079e-09 1.727455271e-10 7.580254935e-11 1.706826158e-10 3.268300654e-10 3.122555084e-11 1.555637603e-11 2.323854816e-10 2.850141681e-10 3.181159064e-10 3.399112239e-10 1.957284297e-10 1.632354341e-10 1.719191389e-10 2.255895625e-10 9.468908303e-14 1.893368708e-10 2.302490335e-10 2.636065986e-10 2.055518977e-10 0 2.204367445e-10 2.651515718e-10 2.211108321e-10 1.709217675e-10 1.587778258e-10 2.901627583e-10 5.880824838e-11 2.716298803e-11 7.704079518e-11 1.862663999e-10 0 2.394863988e-10 2.140340417e-10 1.692074689e-10 4.096278554e-10 1.368562873e-10 1.056918005e-09 4.355474109e-09 6.247814137e-09 6.452202412e-09 9.498241988e-09 1.166337831e-08 5.30631423e-09 3.46094476e-09 4.069226111e-09 2.838545613e-09 1.511204408e-09 1.303952657e-10 6.876898156e-10 2.737860919e-10 1.190479687e-10 5.423659421e-10 1.384767738e-09 2.460331181e-09 2.742059219e-09 2.073880646e-09 1.261270479e-09 2.60081003e-09 4.20738425e-09 3.205053221e-09 2.518695147e-09 2.399364684e-09 2.533165738e-09 1.948268566e-09 2.220828345e-09 2.526834809e-09 2.669196354e-09 2.995168047e-09 2.851307416e-09 7.5111435e-10 4.305180728e-10 3.287432389e-10 7.160871044e-10 3.936646896e-10 1.218646562e-09 1.137734232e-09 1.670975823e-09 1.652117276e-09 2.315763713e-09 1.69767637e-09 1.501038889e-09 2.443165506e-09 1.839490043e-09 1.798272784e-09 1.381317388e-09 2.406814889e-09 3.128886669e-09 3.155423139e-09 1.652048955e-09 2.123435835e-09 1.085951795e-09 1.19560597e-09 6.106356284e-10 1.388600642e-09 9.370843241e-10 1.20792581e-09 1.541163816e-09 1.447157821e-09 1.574778739e-09 1.096835825e-09 9.216736884e-10 1.62847341e-09 2.026311145e-09 4.578234884e-10 1.724609648e-09 8.586981122e-10 4.866629884e-10 1.00437287e-09 6.685523133e-10 8.889176371e-10 9.407931906e-10 8.940815703e-10 1.235752039e-09 2.214685007e-09 1.346589886e-09 1.023006406e-09 1.027897291e-09 1.269555359e-09 9.086290476e-10 9.056087428e-10 1.465258964e-09 1.702766926e-09 1.136965897e-09 1.26327966e-09 1.289566437e-09 6.577840642e-10 9.367195023e-10 1.35500525e-09 3.074569533e-10 4.329633505e-10 2.699617568e-10 6.980211156e-10 8.00383498e-10 4.738419025e-10 5.680615158e-10 4.01570995e-10 6.614167788e-10 2.916054467e-10 3.696008688e-10 3.835569746e-10 7.007289613e-10 5.972037892e-10 5.510295424e-10 2.750957143e-10 5.958106084e-10 5.634011213e-10 4.746083861e-10 6.625529763e-10 4.800432085e-10 1.884577876e-10 1.924738495e-10 3.033214547e-10 4.887880046e-10 4.854859971e-10 3.001224726e-10 5.077975151e-10 1.147490634e-09 4.530579967e-10 2.430690431e-10 4.531697063e-10 7.560188488e-10 2.556736225e-10 3.291989867e-10 2.339229022e-10 3.241573162e-10 4.636709786e-10 7.565152305e-10 3.172284765e-10 +5.322141616e-10 3.754305571e-10 3.282044167e-10 4.932577664e-10 2.144211935e-10 2.676005267e-10 7.117563437e-10 7.32287438e-10 2.147801312e-10 4.763492985e-10 5.304250458e-10 5.130525279e-10 4.072549185e-10 6.25997756e-10 7.087788543e-10 4.452195942e-10 2.619305629e-10 5.163893005e-10 6.248474419e-10 7.461863542e-10 6.112674555e-10 5.454308033e-10 4.549803334e-10 2.359773643e-10 5.781350424e-10 3.224654303e-10 1.034001357e-09 5.391673253e-10 4.519148001e-10 3.779009342e-10 3.482884046e-10 4.629292689e-10 8.407457355e-10 1.529925015e-09 7.698144438e-10 4.066584736e-10 7.378101056e-10 2.971358778e-10 2.76855162e-10 7.69317585e-10 5.988504028e-10 5.421138944e-10 9.256594453e-10 6.053912901e-10 8.481524339e-10 1.450114996e-09 1.768712009e-09 1.105092103e-09 1.043298347e-09 1.116106232e-09 1.021511571e-09 9.960472907e-10 1.252296073e-09 1.466387299e-09 8.937753923e-10 1.198887006e-09 8.028828869e-10 1.215286753e-09 1.261559553e-09 1.04008654e-09 6.729420065e-10 7.06389883e-10 1.61689874e-09 1.266286663e-09 9.489642006e-10 1.294391959e-09 1.147042772e-09 1.370205868e-09 1.042696998e-09 1.369523335e-09 1.463172936e-09 1.304023417e-09 1.154870725e-09 1.201166055e-09 1.030976989e-09 1.026775095e-09 1.011718635e-09 6.907489171e-10 7.941812446e-10 1.749220236e-09 1.626156491e-09 2.311336209e-09 2.188742717e-09 2.454712175e-09 2.531676954e-09 1.574211253e-09 2.061207891e-09 2.757030133e-09 2.246377451e-09 1.925690473e-09 1.698776312e-09 1.435320718e-09 2.440242551e-09 1.126094822e-09 1.502761626e-09 4.157390751e-10 2.561478276e-10 1.139437249e-09 1.192641851e-09 2.066030113e-09 2.72199003e-09 4.299240756e-09 2.673442338e-09 3.137615821e-09 3.18710928e-09 3.907606274e-09 3.222909275e-09 2.844278378e-09 3.383010728e-09 3.14313148e-09 3.770437497e-09 2.262172907e-09 2.296802001e-09 1.842419284e-09 2.513958664e-09 1.950834245e-09 1.064039085e-09 3.381944007e-10 2.284056407e-10 1.466616751e-10 3.352408846e-10 1.824181172e-09 3.918583636e-09 2.511407199e-09 3.128433948e-09 4.905385428e-09 7.215034335e-09 6.714638629e-09 5.294344328e-09 8.269182017e-09 4.184760959e-09 1.832557194e-09 2.224373582e-10 2.6739838e-10 1.181787985e-18 5.532218988e-10 6.540458593e-11 1.94520234e-10 3.146392485e-10 2.908544479e-10 3.061266032e-10 1.964953564e-10 2.031900501e-10 1.388292359e-10 1.007324854e-10 2.386578537e-10 2.559059196e-10 2.82181066e-10 2.35656823e-11 2.704532863e-10 1.075299924e-10 3.341416939e-10 3.047608546e-10 8.217217261e-11 8.701082577e-11 9.641520594e-11 2.969046152e-10 4.711501592e-10 9.640330603e-11 1.667017784e-10 6.944400197e-11 1.524227403e-10 2.106443519e-10 4.664393075e-10 8.010167478e-11 3.50855836e-10 4.050130932e-12 1.144544339e-10 7.496870857e-10 5.504099271e-09 4.913215616e-09 5.94494071e-09 7.814566559e-09 8.769801296e-09 5.077668e-09 4.001233346e-09 3.431646434e-09 3.504483022e-09 1.755655464e-09 3.571290121e-10 1.655987643e-10 1.616897234e-10 6.469774571e-11 4.41906027e-10 2.593975479e-09 2.454651157e-09 2.532355201e-09 2.123413457e-09 1.839240158e-09 2.587371111e-09 2.195201282e-09 3.491208175e-09 2.708987321e-09 3.765590369e-09 2.805364649e-09 2.93208668e-09 3.07335065e-09 4.443165718e-09 3.511609245e-09 2.546429082e-09 2.368218246e-09 1.045803613e-09 7.242521903e-10 2.899947328e-10 1.027308839e-09 1.085184837e-09 1.361855386e-09 9.828079223e-10 1.741357377e-09 1.534178573e-09 1.672932992e-09 1.338074452e-09 1.620077875e-09 1.664808019e-09 2.573860338e-09 1.646133449e-09 1.886875596e-09 2.439840176e-09 2.373995954e-09 2.171036877e-09 1.675249635e-09 1.76994899e-09 5.56019928e-10 4.600289921e-10 1.191819368e-09 1.123535824e-09 1.155973882e-09 1.110975564e-09 1.835974648e-09 9.715873447e-10 7.353201338e-10 1.481666959e-09 8.2225319e-10 8.520520189e-10 8.383372456e-10 1.184063266e-09 1.579694564e-09 1.304175459e-09 1.090252096e-09 7.036136819e-10 8.658920191e-10 7.505231422e-10 7.53677999e-10 1.699296501e-09 6.916879514e-10 6.647850991e-10 6.306513656e-10 9.061072254e-10 1.165009208e-09 6.052537994e-10 1.662163561e-09 1.312439095e-09 9.770971684e-10 1.26352773e-09 1.113951727e-09 1.086589503e-09 1.073394857e-09 1.273688695e-09 5.358333066e-10 7.256923056e-10 8.425281444e-10 9.069792733e-10 4.620219942e-10 5.061335828e-10 3.634597265e-10 7.5812969e-10 2.86199489e-10 8.560851307e-10 2.588808612e-10 2.992426952e-10 2.824303963e-10 4.777823337e-10 5.832635956e-10 8.802752894e-10 5.040428071e-10 4.359037827e-10 6.634849333e-10 4.181382279e-10 6.413506773e-10 2.773569603e-10 3.880922031e-10 3.763023648e-10 7.030032474e-10 2.982090971e-10 7.984924415e-10 7.042845682e-10 8.290629482e-10 6.198029493e-10 1.786695484e-10 4.561511844e-10 5.845150433e-10 7.036655578e-10 5.634975442e-10 3.404734196e-10 7.699021154e-10 3.467479664e-10 3.225588875e-10 1.526184312e-10 5.23821649e-10 2.372475583e-10 +7.577204976e-11 4.605634756e-10 5.712059752e-10 3.526776442e-10 3.139702737e-10 7.466225808e-10 8.406766845e-10 5.604491674e-10 1.07452558e-09 1.063080604e-09 3.858296967e-10 9.90574346e-11 2.920945763e-10 2.249062573e-10 3.170298647e-10 5.947725004e-10 3.602314649e-10 2.664259337e-10 4.478535092e-10 6.041367598e-10 6.660495696e-10 5.561944639e-10 5.959515174e-10 2.499575132e-10 7.370798891e-10 3.159329987e-10 8.675627624e-10 8.479982228e-10 1.108983101e-10 6.284801152e-10 4.143552942e-10 6.612275359e-10 2.714279405e-10 3.666081427e-10 2.474684449e-10 7.358988993e-10 4.583451434e-10 6.733056909e-10 7.017028823e-10 8.375576203e-10 3.518735368e-10 1.00977658e-09 7.324437383e-10 7.00077047e-10 1.567345055e-09 4.53405995e-10 7.634566193e-10 1.191889276e-09 1.43274449e-09 6.199574266e-10 1.196624137e-09 9.581788348e-10 7.179173879e-10 1.079640899e-09 1.22211885e-09 1.177916981e-09 9.704637538e-10 1.250482509e-09 6.841162791e-10 9.527235847e-10 1.150001195e-09 5.201149463e-10 1.224499118e-09 9.649225664e-10 1.201369158e-09 1.072953536e-09 8.262705209e-10 1.633631634e-09 1.507701124e-09 1.150086168e-09 1.417614751e-09 1.807441647e-09 8.742304791e-10 1.46170376e-09 9.181966989e-10 8.747473839e-10 1.207184585e-09 7.899625677e-10 1.228813444e-09 1.101383085e-09 2.000816305e-09 2.566680091e-09 2.349994542e-09 2.154326433e-09 1.098185837e-09 2.541208741e-09 2.185396308e-09 2.007298396e-09 2.003347866e-09 2.047443485e-09 1.213147328e-09 2.598476146e-09 1.193480253e-09 1.59797026e-09 9.585284965e-10 5.05672349e-10 6.546878891e-10 1.167774779e-09 6.125224685e-10 1.560834475e-09 2.227968561e-09 2.859155368e-09 1.768125819e-09 2.902025884e-09 1.521112603e-09 2.352346441e-09 2.678284693e-09 2.308072249e-09 3.359298654e-09 3.252510607e-09 1.495605915e-09 2.191320427e-09 2.739930554e-09 2.519210874e-09 1.860746178e-09 2.891240578e-09 6.246207988e-10 1.623611662e-10 3.688057364e-10 2.429528832e-11 5.293881298e-10 2.415886073e-09 3.522633815e-09 3.373316471e-09 3.250231064e-09 7.029746042e-09 8.324048671e-09 6.136603959e-09 6.252382649e-09 7.314641795e-09 2.366806004e-09 6.500217052e-10 1.713302877e-10 8.367970001e-11 1.038599047e-10 3.729836472e-10 3.750593456e-10 1.490681457e-10 7.840386807e-12 3.046319993e-10 1.35326743e-10 4.491187265e-10 2.512027621e-10 2.359023447e-10 7.151379579e-12 1.535641241e-15 1.1410211e-10 1.80256272e-10 4.762335329e-10 2.662433929e-10 3.909416869e-10 7.056793335e-11 6.506487981e-10 3.716363002e-10 2.534442873e-10 3.08050202e-10 2.802943121e-10 2.00520923e-10 7.163150219e-11 9.9942022e-13 2.317555395e-10 1.79353024e-10 8.11696067e-11 2.80816751e-10 1.657415134e-10 2.597727266e-10 0 2.050603003e-10 5.392579542e-10 3.000263319e-09 5.974831508e-09 5.403889346e-09 7.104221768e-09 7.134391405e-09 7.121451804e-09 3.539391229e-09 3.858781123e-09 3.552848279e-09 2.525589534e-09 5.449805852e-10 3.131972482e-10 1.439082463e-10 2.222348882e-10 1.209199714e-09 1.230103984e-09 2.388447438e-09 2.48021041e-09 1.702322438e-09 2.250130383e-09 2.919262872e-09 2.551923447e-09 2.44124199e-09 1.749598097e-09 3.481205456e-09 2.77131813e-09 1.894586981e-09 2.390484236e-09 3.330296733e-09 3.20953359e-09 2.451587497e-09 6.995175016e-10 1.138832106e-09 7.302818917e-10 2.490613918e-10 6.690936316e-10 1.573211328e-09 1.273340752e-09 1.081133006e-09 1.484416874e-09 1.421844177e-09 1.403388187e-09 1.054344728e-09 1.732955437e-09 1.32462803e-09 1.39847702e-09 6.365049902e-10 1.264876269e-09 1.539986453e-09 1.998433729e-09 2.591823051e-09 1.151389299e-09 1.390229221e-09 8.712121961e-10 1.058320973e-09 1.103893054e-09 1.493563699e-09 8.212764174e-10 1.07510925e-09 6.313622675e-10 8.913769492e-10 1.292806773e-09 1.265342691e-09 7.736768139e-10 1.498921512e-09 1.115670209e-09 1.558640101e-09 8.683910523e-10 9.066317118e-10 7.538444617e-10 1.55038517e-09 8.56335583e-10 3.443930634e-10 9.425955568e-10 1.561256616e-09 1.019155459e-09 1.710434267e-09 1.038186989e-09 1.12519824e-09 1.6795471e-09 1.26935579e-09 1.363999458e-09 1.290011033e-09 1.476322687e-09 1.546481906e-09 1.131268037e-09 7.018409688e-10 1.065858821e-09 1.202817431e-09 1.086402807e-09 6.988804247e-10 5.451717891e-10 7.137818875e-10 2.609831024e-10 5.385890396e-10 4.992210946e-10 5.31282522e-10 5.380431889e-10 6.898836794e-10 1.055275291e-09 6.00108838e-10 7.789152464e-10 5.151935225e-10 2.768472818e-10 7.862095298e-10 6.56509013e-10 2.426361285e-10 3.047533926e-10 6.683474947e-10 3.052002775e-10 6.342265402e-10 1.06544935e-10 3.472770229e-10 3.009276661e-10 5.837904276e-10 3.077174639e-10 1.917958403e-10 2.133621004e-10 2.512859596e-10 5.844274239e-10 3.582102084e-10 3.489466234e-10 4.954074304e-10 4.037667598e-10 5.440961589e-10 4.434246856e-10 5.37716997e-10 3.538372441e-10 1.231746342e-10 7.332355649e-10 4.364693614e-10 +2.397681521e-10 2.942736573e-10 5.770472088e-10 1.438976927e-10 4.735462413e-10 2.250032696e-10 5.259587099e-10 5.399084393e-10 7.166837283e-10 3.296208064e-10 2.293002428e-10 6.375478806e-10 3.839098138e-10 7.137501558e-10 1.491396238e-10 6.746493622e-10 3.726717491e-10 3.949507261e-10 6.291953617e-10 3.21984464e-10 3.592241389e-10 3.07676628e-10 4.340444963e-10 7.333540968e-10 3.514280133e-10 5.271975098e-10 6.96439398e-10 4.94183702e-10 4.111926367e-10 1.312964088e-09 5.823177061e-10 5.571251486e-10 6.456247171e-10 2.945992413e-10 4.98086112e-10 7.119582447e-10 4.629964551e-10 6.145151798e-10 8.27195345e-10 9.032319566e-10 6.716498855e-10 7.661730549e-10 7.98676132e-10 7.278449707e-10 9.826011991e-10 1.143237373e-09 6.428075128e-10 1.441063906e-09 1.190772435e-09 8.355981979e-10 8.492452561e-10 9.957883662e-10 1.538526616e-09 1.381338847e-09 1.056632418e-09 1.125854489e-09 6.685971472e-10 7.733698458e-10 6.200931949e-10 9.924880847e-10 9.73698312e-10 8.962611712e-10 1.181613577e-09 1.619130451e-09 1.112585693e-09 1.413455924e-09 1.637992071e-09 9.022972975e-10 8.557848626e-10 1.255958571e-09 1.010641212e-09 8.497890412e-10 1.236485263e-09 1.142974849e-09 8.226441138e-10 1.18732418e-09 8.966322345e-10 5.807314853e-10 9.484416228e-10 1.678728262e-09 1.95346927e-09 2.90902541e-09 2.794376782e-09 1.664733546e-09 1.528471989e-09 3.256758905e-09 2.615934726e-09 1.323037644e-09 2.144227911e-09 1.849244156e-09 1.867519753e-09 1.899768199e-09 1.640377872e-09 5.6935021e-10 1.602660483e-09 1.0656396e-09 3.837206743e-10 1.075060866e-09 9.993672004e-10 1.97094023e-09 2.877671881e-09 3.226416608e-09 3.482351467e-09 1.873930277e-09 2.527812809e-09 1.880860644e-09 3.29185949e-09 3.335692273e-09 3.332515845e-09 4.503969345e-09 2.059577971e-09 2.023864643e-09 2.064213826e-09 1.435708519e-09 2.2648241e-09 1.568549476e-09 5.610121334e-10 4.068026277e-10 4.560646049e-11 3.150491957e-10 1.043089706e-09 2.350236308e-09 4.068504811e-09 2.734744464e-09 3.192592785e-09 6.990781786e-09 8.920664226e-09 7.040002118e-09 6.494385626e-09 4.346784252e-09 2.738050539e-09 5.217212567e-10 1.058613004e-11 1.276132533e-10 1.792409784e-10 2.293597318e-10 1.672345614e-10 1.556884423e-10 3.575471631e-10 2.121571884e-10 2.313793267e-10 1.478369075e-10 4.68750639e-11 7.354962572e-11 1.871017788e-10 2.22712888e-10 1.47756855e-10 1.190589528e-10 2.2970741e-16 1.132544145e-10 3.494246257e-10 1.290446364e-10 2.583278316e-10 5.83186914e-10 9.463461629e-11 1.924983899e-10 1.075940107e-10 3.477070009e-10 2.567779628e-10 1.067058595e-10 4.445473582e-10 4.303413823e-10 1.912204209e-10 3.074950687e-10 5.024231907e-10 2.506082962e-20 5.782335344e-11 1.032958319e-10 3.196465178e-10 4.084187199e-09 6.435222415e-09 6.441482273e-09 5.723207176e-09 9.129470843e-09 6.072542204e-09 3.938049011e-09 3.422801605e-09 3.29764277e-09 2.478014277e-09 6.781415974e-10 2.26363987e-10 5.690288966e-11 2.881996524e-10 3.930533721e-10 1.974620047e-09 1.333262051e-09 2.018783488e-09 1.936463469e-09 2.026648876e-09 2.313852782e-09 4.96880272e-09 2.780853195e-09 2.240532281e-09 1.730036336e-09 3.558504292e-09 3.475056822e-09 3.002848497e-09 2.807277943e-09 2.406283632e-09 2.321064128e-09 9.580772489e-10 7.251663399e-10 8.34837303e-10 3.474175577e-10 1.072000079e-09 8.715813936e-10 1.266004577e-09 1.253375687e-09 2.127124593e-09 1.325739425e-09 1.383734814e-09 2.059320802e-09 2.081429909e-09 1.412735197e-09 1.14200261e-09 1.607758604e-09 1.654059418e-09 2.048698801e-09 3.050571184e-09 2.521919188e-09 1.377375074e-09 1.604239046e-09 1.287091512e-09 6.708008283e-10 1.235844482e-09 1.266181638e-09 4.053196135e-10 1.515342648e-09 1.29232294e-09 1.200936956e-09 8.167126979e-10 1.264431064e-09 1.011304807e-09 1.474338755e-09 5.898609956e-10 8.205504723e-10 1.459823103e-09 1.228427493e-09 1.221147707e-09 5.824578615e-10 1.138752348e-09 8.993678642e-10 1.008690784e-09 1.830151542e-09 1.172925466e-09 4.262375024e-10 1.337793806e-09 2.201066461e-09 1.670023532e-09 1.173423279e-09 1.338829562e-09 1.415179774e-09 1.085803103e-09 8.732920288e-10 1.032050107e-09 7.180420455e-10 6.766799785e-10 1.247525786e-09 5.726242341e-10 6.84543556e-10 8.968723893e-10 5.669380018e-10 5.901002758e-10 1.277094864e-09 7.374903639e-10 5.478086039e-10 9.499174971e-10 3.451731641e-10 4.967408989e-10 5.482134562e-10 5.491462131e-10 2.118855626e-10 5.142456034e-10 3.764249459e-10 6.943367132e-10 6.413229022e-10 2.223119074e-10 5.67909164e-10 9.82165473e-10 4.977877478e-10 7.077568016e-10 6.968903696e-10 7.479094504e-10 5.484242312e-10 2.039239794e-10 2.322597571e-10 3.706484579e-10 5.689377291e-10 5.305658014e-10 3.32922686e-10 3.783313694e-10 1.443098879e-10 4.218079353e-10 2.915917409e-10 1.673136885e-10 3.857640474e-10 4.410867923e-10 7.571250701e-10 2.838427005e-10 6.277488351e-10 +5.795195104e-10 5.453254766e-10 1.420327766e-10 6.386134552e-10 5.074785044e-10 3.221465761e-10 6.769411298e-10 5.351733775e-10 5.198752024e-10 6.906684526e-10 1.247974154e-10 5.219442837e-10 5.108614551e-10 4.289478099e-10 4.079392908e-10 1.964420999e-10 2.897137962e-10 9.668737651e-10 1.045668073e-10 2.121608051e-10 5.832512221e-10 5.209335362e-10 1.646494757e-10 4.275215008e-10 1.89358413e-10 8.590879152e-10 8.044784923e-10 7.814373584e-10 5.73839732e-10 6.23396085e-10 6.33557633e-10 3.78099656e-10 4.283574664e-10 2.941207492e-10 1.518987379e-10 9.072818761e-10 7.694756882e-10 3.342373702e-10 5.700125235e-10 1.311735697e-09 7.920647189e-10 7.696702717e-10 1.042519306e-09 1.106437851e-09 1.182357628e-09 8.860835858e-10 1.809320371e-09 1.494353662e-09 1.230898712e-09 1.829574544e-09 1.291332147e-09 9.990915607e-10 1.095028508e-09 1.336106772e-09 1.082524534e-09 1.572178794e-09 1.077726485e-09 9.16335823e-10 1.008625359e-09 1.037232162e-09 9.50117445e-10 1.331342513e-09 1.057421747e-09 1.705084533e-09 1.104151558e-09 1.528700622e-09 1.342661332e-09 1.098838367e-09 1.933906719e-09 1.371084124e-09 1.683173701e-09 1.817983194e-09 8.369113093e-10 1.251259539e-09 1.740231258e-09 9.542121221e-10 7.265278177e-10 6.548389134e-10 9.210168684e-10 1.994615747e-09 2.283813702e-09 1.127241713e-09 1.825891235e-09 2.013189433e-09 2.243256121e-09 1.658472198e-09 1.604304784e-09 2.886746742e-09 1.948523241e-09 2.052977187e-09 1.492227911e-09 1.457971843e-09 1.757926481e-09 1.701597273e-09 7.304283351e-10 6.150836632e-10 6.716784894e-10 1.236850191e-09 9.077815133e-10 2.414076951e-09 3.051234021e-09 4.52709355e-09 2.632005852e-09 3.107427434e-09 2.994763493e-09 3.70114422e-09 3.054940633e-09 2.43715239e-09 3.455633244e-09 3.377387198e-09 2.14296122e-09 1.514934575e-09 2.451831353e-09 1.795649996e-09 1.786801295e-09 1.759225079e-09 3.788619058e-10 2.288791841e-10 0 1.378033083e-10 8.435964921e-10 2.945833803e-09 2.69166341e-09 3.138376174e-09 3.694937145e-09 7.251545278e-09 1.002434872e-08 7.674963696e-09 5.599836526e-09 5.451912009e-09 2.146076297e-09 2.647249142e-10 4.168626618e-10 3.570108154e-10 2.648650534e-10 2.831738345e-10 4.261538338e-11 8.757791723e-11 3.261223183e-10 1.399574464e-10 8.839653054e-11 6.411766202e-11 1.661372634e-10 3.427824685e-10 4.431682583e-10 9.309325436e-11 1.891911902e-10 8.471875137e-11 1.008095048e-10 3.068833678e-10 2.90760337e-10 1.88803783e-10 1.605345057e-10 1.88965949e-10 1.850517986e-10 3.493990347e-10 1.497547699e-10 2.630397096e-10 2.916003115e-10 4.972387007e-10 4.319363886e-10 1.708009016e-10 8.28991774e-11 1.700395103e-11 2.397548629e-10 1.293378501e-10 2.765647382e-10 9.815813632e-11 2.332787563e-10 2.745712108e-09 6.858429111e-09 6.406712786e-09 5.657720945e-09 7.993043146e-09 7.474445816e-09 3.317844351e-09 2.155340368e-09 3.645542909e-09 3.054310198e-09 8.367031751e-10 3.476196333e-10 5.31593135e-10 8.721957755e-11 5.555622653e-10 1.143159646e-09 3.159431289e-09 1.920639362e-09 1.545488925e-09 1.79194744e-09 2.090154508e-09 3.829646738e-09 3.340466671e-09 3.043346962e-09 2.533852122e-09 2.729862086e-09 2.55731209e-09 2.145043172e-09 2.994147421e-09 2.988246192e-09 2.241620572e-09 1.597605595e-09 9.749627631e-10 4.786082168e-10 8.05252773e-10 6.018073318e-10 1.206188888e-09 1.500391164e-09 9.737113515e-10 2.338629165e-09 1.032554884e-09 1.238521745e-09 2.212317119e-09 2.035341925e-09 2.024551027e-09 2.349045862e-09 1.220989656e-09 1.612164344e-09 2.683704464e-09 1.773991275e-09 1.622873333e-09 1.228941083e-09 1.201161136e-09 1.24403198e-09 1.024710465e-09 1.005796933e-09 7.325176475e-10 1.322897605e-09 1.032073907e-09 1.674403801e-09 1.265818886e-09 1.002707527e-09 8.686566814e-10 1.436610944e-09 1.372676124e-09 9.069368942e-10 1.254650989e-09 1.095608062e-09 1.753175195e-09 7.9958543e-10 1.480532629e-09 7.77126766e-10 1.068875248e-09 9.189109827e-10 9.616939511e-10 1.326378049e-09 1.446096552e-09 1.103659285e-09 1.590714882e-09 1.245902283e-09 9.096394897e-10 7.756272828e-10 1.314264528e-09 8.883686149e-10 1.021886307e-09 7.510203746e-10 1.391095073e-09 1.566140376e-09 7.96291822e-10 5.395885887e-10 8.254443643e-10 2.228323273e-10 4.653318669e-10 6.820805678e-10 3.503680613e-10 5.595765912e-10 3.728988352e-10 5.307874002e-10 3.755272944e-10 4.636082955e-10 4.109926997e-10 8.538327094e-10 5.074462497e-10 8.013916331e-10 1.014743029e-09 9.785274306e-11 8.978492684e-11 4.562879375e-10 5.748982135e-10 6.306206486e-10 7.978369789e-10 6.227591983e-10 4.117496031e-10 7.289670853e-10 4.112694917e-10 6.916378381e-10 4.124535411e-10 2.996940382e-10 2.138169798e-10 1.168287102e-09 9.883972207e-10 8.035562925e-10 3.430952756e-10 5.993064573e-10 5.182282414e-10 5.1793026e-10 2.396198213e-10 4.664397805e-10 5.76169974e-10 5.521470722e-10 2.916656183e-10 +5.082372335e-10 3.885782634e-10 2.728929778e-10 4.165914823e-10 5.634094604e-10 6.19491662e-10 4.688187631e-10 2.864831983e-10 8.939475526e-11 2.781581816e-10 3.317301694e-10 6.844932568e-10 7.466492994e-10 3.189618027e-10 3.085629376e-10 5.859589734e-10 2.160263895e-10 2.937569872e-10 1.708225385e-10 5.457719227e-10 5.518503544e-10 8.106394439e-10 6.044512241e-10 3.883919572e-10 2.794963985e-10 3.672986285e-10 1.839242102e-10 6.32835349e-10 4.946131057e-10 5.124905734e-10 3.642607157e-10 8.480554419e-10 2.554235508e-10 1.006787916e-09 6.527767568e-10 4.2387737e-10 8.826446974e-10 5.461681045e-10 5.357242968e-10 1.050344074e-09 6.629643485e-10 5.822798504e-10 6.857335684e-10 9.59506339e-10 1.200465267e-09 8.574353073e-10 1.007973308e-09 9.221521459e-10 1.477217871e-09 1.375953388e-09 6.153479076e-10 1.244124233e-09 9.467088518e-10 1.114981184e-09 1.248046745e-09 1.045596917e-09 9.264859645e-10 9.756463749e-10 1.311069898e-09 4.877616018e-10 7.197993193e-10 1.101830823e-09 4.6607073e-10 1.555796157e-09 9.272998232e-10 1.286719347e-09 1.01775245e-09 6.098756509e-10 8.05922634e-10 1.001732648e-09 1.757831716e-09 8.195560595e-10 1.111387547e-09 1.42773161e-09 7.374499136e-10 1.330392828e-09 8.492086059e-10 4.757253063e-10 1.877559962e-09 1.841035792e-09 1.525283961e-09 2.642088686e-09 2.385345794e-09 2.717625253e-09 2.01106336e-09 1.839602814e-09 1.866845121e-09 1.736744853e-09 1.622781768e-09 2.452312089e-09 1.005693532e-09 1.294247822e-09 1.58651338e-09 1.114052161e-09 3.608375163e-10 7.116807869e-10 4.765979983e-10 7.447154239e-10 1.294188949e-09 1.552915771e-09 4.001102288e-09 1.591391157e-09 3.941094989e-09 3.180881049e-09 3.080434597e-09 3.226982384e-09 2.197170116e-09 3.699887129e-09 3.878473061e-09 4.00070024e-09 2.121940139e-09 2.146346984e-09 2.679676806e-09 1.946171833e-09 1.398277175e-09 1.406809997e-09 1.180283698e-09 2.841821769e-10 1.434041843e-10 1.819250644e-12 1.058445368e-09 3.253113618e-09 2.419008967e-09 3.593066785e-09 4.338763186e-09 7.203031243e-09 8.577353866e-09 7.468096933e-09 5.098440668e-09 4.570812271e-09 1.188491278e-09 1.894229483e-10 1.521132847e-10 2.26168691e-10 1.634205831e-10 2.000924488e-10 2.252829491e-10 4.021688697e-10 2.131714121e-10 9.628020542e-11 1.232149876e-10 3.7565986e-10 5.558625256e-10 0 3.729962908e-10 2.568248327e-10 8.628629734e-11 1.651774687e-10 2.806390955e-10 2.207594538e-10 9.947259277e-11 2.641019097e-10 2.827681111e-10 1.557534819e-10 1.252481616e-10 2.444673247e-10 3.3835562e-11 1.032340039e-10 4.142209691e-11 7.026469644e-10 1.880054951e-10 2.058697763e-10 1.981285779e-10 2.874953545e-10 2.897381746e-10 1.464926441e-10 2.657045925e-10 9.87350871e-11 2.719405174e-10 2.950341619e-09 4.936365624e-09 6.826228103e-09 8.236222733e-09 8.776525994e-09 7.198852176e-09 3.102788395e-09 2.47270205e-09 3.936263418e-09 2.466033559e-09 4.943615918e-10 2.780640025e-10 3.653148458e-12 2.269152291e-10 1.538352714e-10 1.090181638e-09 1.905373618e-09 1.717278462e-09 2.285136344e-09 1.506862534e-09 2.164323981e-09 3.666571283e-09 3.706593878e-09 3.324368963e-09 1.363044189e-09 2.092317256e-09 2.852131455e-09 2.538822113e-09 2.842807367e-09 2.738350064e-09 2.992648675e-09 1.908618156e-09 1.113030777e-09 8.25659916e-10 4.746339204e-10 7.88165105e-10 1.786490014e-09 1.374297356e-09 1.088259222e-09 1.709972727e-09 1.348460552e-09 1.471655744e-09 1.882453108e-09 1.618084606e-09 3.137505646e-09 1.784915982e-09 1.832966497e-09 1.216688076e-09 1.833777068e-09 2.187551632e-09 1.226041982e-09 1.672141168e-09 1.69795064e-09 1.062443191e-09 7.794327788e-10 9.048897387e-10 1.022040392e-09 1.416452482e-09 1.421570011e-09 6.694828766e-10 1.70637609e-09 1.114093727e-09 1.374313634e-09 9.459010836e-10 1.378192866e-09 1.229958647e-09 1.225508655e-09 1.255239963e-09 7.465995454e-10 8.874086988e-10 1.041758736e-09 1.343548588e-09 8.270606355e-10 9.120809426e-10 8.864372503e-10 1.254729397e-09 1.585388024e-09 8.417261338e-10 1.339817109e-09 1.476046597e-09 2.338333927e-09 7.031760982e-10 9.907304859e-10 5.318389628e-10 1.091335295e-09 1.213218624e-09 4.507003571e-10 1.139216161e-09 6.977298451e-10 7.503901434e-10 3.95857012e-10 6.033148233e-10 5.017677584e-10 7.943809926e-10 2.969385737e-10 6.122404582e-10 1.132874513e-09 1.80279216e-10 4.796182244e-10 4.534208431e-10 6.026378241e-10 3.940877727e-10 2.898764651e-10 8.375438132e-10 5.037591898e-10 3.310122935e-10 5.00807443e-10 9.74590575e-10 6.30949558e-10 8.38990013e-10 1.953188046e-10 7.815403765e-10 6.015692042e-10 3.234423466e-10 3.752513708e-10 8.274036618e-10 2.776449396e-10 6.305994834e-10 3.546063388e-10 3.264721268e-10 3.210552211e-10 6.048170324e-10 7.826749418e-10 5.051411592e-10 6.315586998e-10 3.08373026e-10 5.653785724e-10 2.655275688e-10 2.465755318e-10 4.904422156e-10 5.977463698e-11 +7.515189569e-10 8.943164295e-10 4.562084599e-10 1.796477992e-10 5.451637502e-10 3.586075937e-10 6.329697576e-10 4.507232891e-10 2.924998866e-10 3.935654639e-10 7.079426187e-10 5.979805042e-10 3.738278396e-10 6.395169537e-10 3.864416126e-10 4.001123668e-10 3.314044588e-10 3.840821617e-11 2.211126152e-10 4.844444538e-10 3.90802307e-10 2.587190079e-10 1.742152865e-10 8.558419685e-10 3.258573935e-10 1.610037027e-10 4.045993172e-10 9.898289479e-10 5.220710192e-10 5.45051976e-10 5.469618463e-10 4.969266279e-10 7.037269824e-10 6.053330777e-10 4.205258718e-10 4.347555511e-10 6.514682942e-10 5.91614199e-10 5.340631985e-10 5.85738592e-10 5.649706561e-10 1.252739968e-09 8.068431806e-10 1.064505399e-09 9.718071001e-10 1.157883516e-09 1.167701876e-09 8.906736266e-10 8.869763504e-10 8.902636471e-10 6.545291433e-10 8.231702776e-10 1.482418766e-09 1.619521325e-09 1.405363746e-09 1.098863011e-09 1.660810291e-09 1.44381526e-09 1.225271329e-09 9.441633427e-10 5.117266947e-10 1.077607423e-09 1.01136288e-09 1.333622585e-09 1.03783263e-09 1.067776097e-09 8.083454177e-10 1.58338133e-09 1.077636084e-09 8.661839401e-10 1.502069223e-09 9.786107922e-10 1.319409973e-09 1.22730661e-09 1.009312605e-09 1.10257408e-09 1.403718382e-09 8.582443613e-10 1.382093957e-09 1.735044598e-09 1.933981703e-09 3.418336635e-09 2.214736515e-09 2.056683893e-09 1.589354267e-09 2.13113692e-09 1.100144147e-09 1.975427805e-09 2.330135493e-09 1.855726479e-09 1.488943916e-09 1.289567771e-09 1.364694067e-09 1.384144055e-09 1.019184863e-09 7.251102006e-10 6.243166868e-10 9.270269421e-10 8.370828785e-10 3.047964985e-09 3.412349576e-09 3.092057691e-09 2.16353586e-09 2.758004989e-09 2.295096299e-09 2.492441112e-09 2.548267011e-09 3.371426737e-09 3.979152785e-09 2.404588371e-09 3.936314686e-09 1.083745875e-09 1.348481639e-09 1.648951127e-09 9.872842495e-10 1.546450261e-09 2.396606779e-10 2.669395255e-10 2.679263264e-10 1.5705042e-10 1.587468664e-09 3.153568523e-09 3.222909047e-09 2.863068843e-09 4.237008423e-09 7.068049182e-09 7.610291539e-09 7.431322254e-09 6.037582291e-09 2.821417299e-09 1.320971098e-09 6.405983411e-11 2.3457911e-10 2.962213017e-10 1.853987946e-10 4.578147913e-10 3.06561375e-10 2.623213412e-11 1.828078197e-10 1.3998591e-10 3.602101762e-10 3.021810433e-10 3.714629034e-10 2.051210192e-10 1.12846429e-23 9.665776789e-11 2.734006731e-10 2.266649957e-10 1.084738823e-10 1.463805209e-10 0 3.362841899e-10 0 6.38637277e-11 8.906680056e-11 3.84452562e-10 2.599738687e-10 2.714341133e-10 5.996022461e-11 1.931929592e-10 1.978528853e-10 2.147549709e-10 8.285275224e-11 1.821238913e-10 2.754673502e-10 1.822453795e-11 4.052183223e-10 2.923010427e-10 1.50373418e-11 1.396181197e-09 4.170516482e-09 6.742046342e-09 7.068404256e-09 7.802034168e-09 9.980996634e-09 4.284571557e-09 2.907238463e-09 3.455215909e-09 2.682022382e-09 8.490597583e-10 2.291675993e-16 3.202317998e-10 1.01798769e-10 9.174868663e-10 1.4548168e-09 1.851271285e-09 2.059380548e-09 2.520335144e-09 1.611399559e-09 2.230582818e-09 3.298172872e-09 4.679381693e-09 2.432838044e-09 1.923512276e-09 2.532420138e-09 2.693553423e-09 3.378051248e-09 1.74843657e-09 2.836657015e-09 2.619947468e-09 1.796975159e-09 1.016105878e-09 1.030429127e-09 4.567808243e-10 6.831870574e-10 1.579254439e-09 1.685120642e-09 1.843572381e-09 1.841719569e-09 1.708316643e-09 1.861592348e-09 1.136199252e-09 1.451239006e-09 1.589789449e-09 1.118983786e-09 3.108993417e-09 2.494766755e-09 2.068862691e-09 3.09445202e-09 1.937991203e-09 1.350294649e-09 9.292796524e-10 1.199148448e-09 7.252917471e-10 1.240818765e-09 1.116193881e-09 1.82483098e-09 8.428437864e-10 9.801480223e-10 9.366370078e-10 1.223084742e-09 1.069556268e-09 1.637185211e-09 1.284174712e-09 1.274272892e-09 1.034013042e-09 1.286425962e-09 8.165829769e-10 9.62205735e-10 1.581537893e-09 1.133748621e-09 1.022868855e-09 7.689481136e-10 9.557216385e-10 6.548074635e-10 9.807013937e-10 9.898365869e-10 6.530475808e-10 1.581689562e-09 1.33361037e-09 1.503696458e-09 9.349792197e-10 6.608078902e-10 1.237942659e-09 1.343743229e-09 1.549090807e-09 1.382881459e-09 4.849269689e-10 6.085903278e-10 9.136007539e-10 6.782900656e-10 6.862017405e-10 4.234700606e-10 7.349922745e-10 2.918239685e-10 4.819749118e-10 1.045145258e-09 7.046011864e-10 6.6965751e-10 5.586197438e-10 7.233998552e-10 2.333743414e-10 6.684222367e-10 4.750655137e-10 3.274046764e-10 2.005768984e-10 8.183927046e-10 4.127433432e-10 2.534149264e-10 6.437794357e-10 2.613940533e-10 4.956045673e-10 4.148359608e-10 7.261505677e-10 2.841389788e-10 3.414376721e-10 2.706899332e-10 3.763732995e-10 1.950357865e-10 4.644783037e-10 1.262701603e-09 7.233871908e-10 3.0031913e-10 1.143607185e-09 1.021295404e-09 5.212002472e-10 4.657272217e-10 7.149259751e-10 1.385252049e-10 3.539082344e-10 +3.693284173e-10 2.486886658e-10 3.107740774e-10 2.036685519e-10 2.149481086e-10 7.931248333e-10 1.929501692e-10 5.399046152e-10 6.066129758e-10 3.247998611e-10 6.694196886e-10 4.865571509e-10 6.869388118e-10 2.962911032e-10 3.419789006e-10 2.96971014e-10 3.087462573e-10 3.881678268e-10 1.630743841e-10 2.61163761e-10 3.267346227e-10 2.918071006e-10 9.4828493e-10 5.068212811e-10 6.370108348e-10 7.273632633e-10 4.323875875e-10 7.667301762e-10 5.494432513e-10 1.210065292e-09 4.029929127e-10 2.883995429e-10 4.367691006e-10 8.295389648e-10 4.455816213e-10 5.950496479e-10 6.209123364e-10 6.919796394e-10 5.969008469e-10 5.795893839e-10 5.596148482e-10 3.614363063e-10 8.150299478e-10 9.217689492e-10 7.277929468e-10 4.577774094e-10 8.462454733e-10 1.005280962e-09 7.955302433e-10 1.410948438e-09 1.207365222e-09 1.226069452e-09 1.31179246e-09 1.166524827e-09 1.87509836e-09 1.072380754e-09 1.071699119e-09 1.103945385e-09 5.417369176e-10 8.665778921e-10 1.38354656e-09 1.228835409e-09 7.880444578e-10 1.076582128e-09 1.119110499e-09 1.720500037e-09 1.067970525e-09 1.388602842e-09 1.328612243e-09 8.962809131e-10 1.33757958e-09 9.818787525e-10 1.385321827e-09 7.434282203e-10 4.337661953e-10 9.292691156e-10 8.991687567e-10 9.578234585e-10 7.763023863e-10 9.922781471e-10 1.361744575e-09 1.117477513e-09 2.611028027e-09 1.854531811e-09 1.905940277e-09 2.123092091e-09 1.58936216e-09 2.022355319e-09 1.848415394e-09 1.957973128e-09 1.750883805e-09 2.242938247e-09 1.594852163e-09 1.625148636e-09 9.994079741e-10 9.68292334e-10 4.128026403e-10 6.936715181e-10 1.047030934e-09 1.628033644e-09 2.777184199e-09 2.16460808e-09 3.442947808e-09 4.478368786e-09 3.298743667e-09 2.425678731e-09 1.977306543e-09 3.317445937e-09 3.97764461e-09 2.474614321e-09 2.37600391e-09 1.537249211e-09 1.819512651e-09 1.878695823e-09 1.781427186e-09 1.301875777e-09 4.987128852e-10 3.86927908e-10 1.809426046e-10 1.620661514e-10 7.044852995e-10 3.223802394e-09 3.424279878e-09 3.483625145e-09 3.177896843e-09 7.39027497e-09 7.49458404e-09 7.544397603e-09 6.156997833e-09 3.786942237e-09 1.124861096e-09 0 2.859286323e-10 4.115566548e-10 4.127475644e-10 1.071944354e-10 4.022053718e-10 2.751210781e-10 2.654144531e-10 2.882905661e-10 7.307861564e-11 9.948848089e-11 1.241312492e-10 1.108092855e-10 1.626480136e-10 1.723392433e-10 2.676877203e-10 1.631700611e-10 8.445592878e-11 3.138633761e-10 5.1514763e-10 4.296455199e-10 1.190411823e-10 1.605525285e-10 2.432190188e-10 7.839726404e-11 1.647659678e-10 5.688335308e-11 0 3.704578967e-10 7.480454216e-11 2.081633895e-10 3.288903754e-10 2.472547022e-10 1.125189896e-10 2.184579103e-10 4.914884158e-11 9.211549307e-11 2.091442571e-11 8.435874286e-10 4.01547299e-09 5.012992824e-09 6.928494181e-09 7.914633048e-09 8.036273017e-09 5.377743279e-09 2.356376422e-09 3.250175471e-09 2.983535296e-09 1.313585717e-09 1.39891527e-10 1.870257648e-13 1.652828018e-11 1.926988276e-10 1.326646683e-09 1.436023144e-09 1.71635925e-09 2.497599277e-09 2.18164077e-09 1.310467035e-09 2.42005113e-09 4.527324625e-09 3.258531668e-09 2.626271871e-09 3.209935703e-09 2.48779862e-09 3.294923622e-09 4.305996251e-09 2.17620883e-09 2.601173339e-09 1.627718852e-09 1.334050583e-09 1.023998162e-09 4.850158209e-10 7.799118367e-10 9.729826475e-10 1.318183253e-09 1.446747922e-09 1.904381486e-09 1.719214281e-09 2.039113741e-09 1.339649952e-09 2.621093231e-09 2.824427842e-09 2.529044073e-09 2.302465015e-09 2.460953609e-09 2.613667049e-09 1.694696101e-09 1.58624044e-09 1.439442879e-09 2.193902911e-09 1.088454966e-09 1.281854412e-09 1.172249838e-09 1.372305419e-09 1.072719595e-09 1.25357087e-09 1.490008297e-09 8.816984054e-10 1.837382872e-09 1.813406223e-09 1.111889372e-09 1.543767102e-09 1.622082467e-09 1.093254693e-09 1.156558131e-09 8.491634965e-10 8.320291161e-10 1.026556991e-09 5.82811637e-10 1.140721388e-09 1.390752622e-09 8.932424052e-10 1.231733794e-09 6.636287395e-10 1.578568684e-09 1.049600382e-09 8.259503267e-10 8.705018522e-10 1.201502144e-09 7.672430517e-10 1.076996539e-09 8.318026158e-10 2.211833354e-09 1.118234939e-09 7.09098646e-10 9.200633708e-10 1.148760503e-09 6.774285689e-10 5.916403175e-10 2.784382113e-10 2.547493741e-10 4.504600843e-10 3.196447612e-10 2.957598604e-10 3.607239681e-10 2.314717302e-10 7.094488613e-10 2.668832083e-10 5.134352273e-10 4.505186814e-10 7.615024578e-10 7.494735292e-10 4.863926831e-10 8.548662059e-10 5.989624905e-10 3.71932257e-10 2.290966049e-10 2.370580339e-10 5.974164167e-10 7.782872779e-10 2.352456274e-10 5.256090072e-10 7.27866708e-10 5.514346921e-10 5.336991397e-10 4.66048247e-10 8.168029092e-10 6.289382164e-10 9.425264521e-10 6.420593346e-10 3.85917765e-10 3.027245687e-10 3.17206612e-10 4.015928684e-10 7.209964314e-10 6.512207508e-10 2.085741334e-10 5.408575126e-10 +3.901859346e-10 3.350529154e-10 3.539285522e-10 1.729865048e-10 7.269107515e-10 7.469612049e-10 2.314332072e-10 2.80457869e-10 6.83247087e-10 4.226598443e-10 4.920175649e-10 4.675057715e-10 2.027348593e-10 8.842222608e-10 5.312570307e-10 7.234226864e-10 3.656441622e-10 3.832092524e-10 8.764167026e-10 5.245532284e-10 5.352728883e-10 4.459346415e-10 3.382278942e-10 4.803568896e-10 1.004320176e-09 6.091150164e-10 3.493293449e-10 4.883598728e-10 2.621609135e-10 3.53763417e-10 4.129986943e-10 4.751387467e-10 7.06318583e-10 6.636782419e-10 6.812942611e-10 4.565542476e-10 6.056738767e-10 8.262314646e-10 5.60874403e-10 4.333400219e-10 7.618948888e-10 6.434815185e-10 9.131891143e-10 9.964303148e-10 1.433905814e-09 1.055713144e-09 1.39548474e-09 1.013747744e-09 1.079942554e-09 5.867700721e-10 1.142872158e-09 1.177985425e-09 3.400184933e-10 8.553169683e-10 7.496034392e-10 1.599440838e-09 1.09996951e-09 1.048445617e-09 1.572473567e-09 7.506055009e-10 9.091190574e-10 8.294530114e-10 1.174012271e-09 1.559536836e-09 6.585608096e-10 9.297950084e-10 1.534801252e-09 9.813919581e-10 8.740356225e-10 1.779483838e-09 1.340518734e-09 1.477529573e-09 8.219269042e-10 8.568837399e-10 1.014747165e-09 8.056890989e-10 1.517454053e-09 1.089116959e-09 1.672783361e-09 1.130728045e-09 1.960976507e-09 3.101033668e-09 2.301957939e-09 1.945047462e-09 2.404712268e-09 1.877028095e-09 1.633041329e-09 1.527826336e-09 2.616542929e-09 1.618052442e-09 1.822059341e-09 1.527919028e-09 1.654828002e-09 1.79848721e-09 1.464481036e-09 8.02568382e-10 1.074167974e-09 1.244916366e-09 1.102331053e-09 1.831645725e-09 2.169599898e-09 3.407168176e-09 2.527251211e-09 3.52517852e-09 2.453472501e-09 3.102739228e-09 2.081737892e-09 2.934705569e-09 4.919928608e-09 2.646473816e-09 1.890380339e-09 1.486303527e-09 2.147627008e-09 1.890351024e-09 2.427014781e-09 1.319113784e-09 3.86742108e-10 5.754536544e-10 2.814443599e-10 7.54033923e-11 1.54415592e-09 2.833378917e-09 3.182476423e-09 3.593686549e-09 4.422504872e-09 8.086308631e-09 8.388961784e-09 6.678823372e-09 7.061762712e-09 4.014543604e-09 3.307432925e-10 4.250976581e-10 4.505051512e-10 2.348750387e-10 2.874526342e-10 1.510420058e-10 3.878862722e-10 2.940923562e-10 1.792647995e-10 4.0871011e-10 1.173346971e-10 3.240959977e-10 1.267464923e-10 1.725189397e-10 2.083999543e-10 2.718336472e-10 2.464985679e-10 1.622626718e-10 9.413700798e-11 0 1.488211626e-10 3.049523465e-12 2.046293683e-10 4.123601752e-10 2.314942036e-10 3.790329142e-10 3.39734432e-10 1.614130441e-10 2.26185135e-10 1.303956675e-26 1.050247424e-10 1.477329195e-10 3.400047464e-10 3.9556801e-10 8.448092265e-11 1.763987668e-10 1.601951426e-10 2.920906471e-10 7.559487145e-11 6.2493797e-10 4.360398032e-09 5.334995649e-09 4.900205012e-09 7.670800748e-09 8.951764581e-09 4.988554424e-09 2.557557161e-09 2.737904789e-09 2.350738752e-09 5.402423794e-10 7.863033881e-11 2.204400188e-14 2.773065251e-10 5.714844551e-10 1.895606415e-09 1.249688525e-09 1.873068478e-09 1.837370774e-09 1.923322358e-09 3.228628806e-09 3.290744358e-09 4.24937024e-09 4.825639578e-09 1.893322932e-09 3.09287743e-09 3.526146439e-09 3.050197223e-09 3.848910195e-09 2.566741929e-09 4.581256523e-09 1.745729908e-09 8.396667997e-10 1.137020911e-09 5.976934772e-10 3.671778936e-10 1.564242303e-09 1.259377566e-09 2.152479495e-09 2.162755969e-09 1.886581242e-09 1.74152718e-09 8.644530995e-10 1.355033854e-09 9.374025695e-10 3.116198174e-09 2.033324637e-09 2.622469228e-09 2.788427871e-09 3.005724554e-09 2.152713131e-09 1.434325469e-09 1.495194737e-09 6.759065891e-10 1.608967428e-09 1.09185973e-09 1.053374099e-09 1.345103894e-09 9.748732912e-10 1.845498618e-09 1.006086514e-09 1.496741865e-09 1.127130192e-09 1.386429501e-09 1.110323466e-09 7.71457705e-10 7.607002717e-10 1.169768154e-09 9.790289895e-10 9.377953104e-10 9.272645546e-10 9.360959964e-10 5.364915976e-10 1.509835288e-09 1.316291787e-09 1.277674353e-09 1.747174705e-09 1.128905297e-09 9.838108897e-10 1.156199799e-09 1.634469188e-09 1.405340731e-09 1.323850822e-09 9.34621839e-10 1.221845857e-09 9.575416003e-10 1.156821607e-09 1.197864658e-09 8.13415674e-10 1.311325412e-09 6.437884647e-10 3.159715436e-10 4.211907684e-10 1.075359228e-09 6.255216253e-10 9.492954349e-10 3.365977975e-10 9.345796276e-10 6.567229031e-10 4.243744926e-10 4.533005166e-10 4.003292327e-10 8.35533122e-10 5.449583201e-10 6.161875285e-10 5.886987315e-10 3.796033723e-10 5.520019535e-10 3.590606751e-10 4.017042997e-10 1.012094744e-09 7.80666112e-10 3.311120917e-10 9.671853822e-10 1.28939327e-10 7.491571368e-10 4.69513102e-10 5.439591383e-10 8.820971842e-10 2.033096954e-10 4.822900067e-10 2.816552265e-10 3.676051336e-10 3.145036909e-10 5.370119074e-10 2.118863667e-10 3.505803428e-10 5.028738511e-10 1.434638268e-10 3.657847741e-10 3.682885129e-10 +1.356685237e-10 3.109724566e-10 1.167288906e-10 4.46969559e-10 6.648545489e-10 6.279133447e-11 2.435103304e-10 5.378258679e-10 7.664258703e-10 9.816193668e-10 4.957201755e-10 2.038583134e-10 2.291376991e-10 2.95024892e-10 1.696444295e-10 1.912509612e-10 5.574338638e-10 3.297195127e-10 2.711536839e-10 2.094579082e-10 2.939893627e-10 4.886580129e-10 6.385322432e-10 5.196095029e-10 1.89403024e-10 4.78594391e-10 8.507237309e-10 5.269151985e-10 4.024301639e-10 6.12718146e-10 4.425797169e-10 6.959158911e-10 6.375413814e-10 6.216421711e-10 3.336270008e-10 3.391514325e-10 2.451405922e-10 6.285350105e-10 3.63096682e-10 2.789793407e-10 5.679788831e-10 6.103177893e-10 5.889027456e-10 2.084180061e-09 7.735953692e-10 1.745977696e-09 1.518866101e-09 7.359320537e-10 1.048314437e-09 1.193965337e-09 1.357964118e-09 1.833399947e-09 1.131792737e-09 1.09704506e-09 1.47273366e-09 6.857544177e-10 1.148651428e-09 6.959446523e-10 8.845688585e-10 1.101372243e-09 1.516359446e-09 1.078666544e-09 1.360108484e-09 1.4196488e-09 1.425878905e-09 8.322420131e-10 1.766228183e-09 1.034392318e-09 1.056872475e-09 6.303809266e-10 1.211396831e-09 1.152216755e-09 1.171827338e-09 9.09126261e-10 1.169162911e-09 9.352833073e-10 1.252601168e-09 1.665660198e-09 1.666287948e-09 1.751605823e-09 1.481857543e-09 2.364451948e-09 1.935234266e-09 2.211107397e-09 2.893663528e-09 1.866630399e-09 2.382328433e-09 1.940266877e-09 1.769632764e-09 1.30210177e-09 1.304398191e-09 1.295893326e-09 1.53567936e-09 1.395029669e-09 6.515494647e-10 6.099663123e-10 6.041790061e-10 1.059356235e-09 1.920746287e-09 2.769235646e-09 3.108246294e-09 2.65635124e-09 2.496297605e-09 2.692053095e-09 3.615546949e-09 2.085334024e-09 2.47389267e-09 3.73122718e-09 4.313539822e-09 2.816235711e-09 3.554566663e-09 2.203972029e-09 2.257605729e-09 1.513120445e-09 1.863983435e-09 1.524078037e-09 1.982592174e-10 7.5732954e-12 2.721405799e-10 2.531097535e-10 1.390709257e-09 3.23495508e-09 2.570219408e-09 2.58043578e-09 5.045240024e-09 9.271125187e-09 7.076020874e-09 8.247589032e-09 5.49669762e-09 3.205715949e-09 9.077384449e-10 4.764892559e-10 2.890112916e-10 5.80330695e-11 2.274637988e-10 2.384264978e-10 9.35518539e-11 2.404642227e-10 4.420070444e-10 2.560544595e-10 1.181077952e-10 1.708026063e-10 4.49138493e-10 2.124197465e-10 7.226267546e-11 2.850666941e-10 3.506514652e-10 2.877868254e-10 1.708103184e-10 1.592797055e-10 6.960603893e-11 1.51231015e-10 2.699635104e-10 1.163401697e-10 1.16723084e-10 9.699991094e-13 9.48241433e-11 4.718451321e-10 1.345497574e-10 1.939104157e-10 2.363909245e-10 1.73455775e-10 2.199334209e-10 9.787667543e-11 7.254843722e-10 1.325972475e-10 3.01188253e-10 5.014475756e-11 2.284621868e-10 2.154102798e-10 4.173238584e-09 7.648707246e-09 5.925681644e-09 7.621980693e-09 7.36263442e-09 5.779813238e-09 3.191088334e-09 2.830760823e-09 4.363024164e-09 1.446876752e-09 3.700855693e-10 4.133127933e-10 1.241932659e-10 3.487934479e-10 1.433114735e-09 2.221811409e-09 2.078245558e-09 1.985925136e-09 2.715324249e-09 1.897517671e-09 2.712054832e-09 4.933288682e-09 1.868341465e-09 2.798201584e-09 1.760104422e-09 3.2746453e-09 3.218435927e-09 2.721765839e-09 3.095959007e-09 2.942926409e-09 1.977388234e-09 1.724025984e-09 1.165734358e-09 6.188176536e-10 3.85397739e-10 1.273790954e-09 1.669632438e-09 1.381755433e-09 2.166571267e-09 1.651050042e-09 1.37614919e-09 1.684781734e-09 2.057445611e-09 1.819760913e-09 1.586180536e-09 2.420613073e-09 1.865763149e-09 1.653063545e-09 2.125508311e-09 2.143662624e-09 1.493763243e-09 1.447223155e-09 1.693647183e-09 1.363458275e-09 1.920849401e-09 1.747069769e-09 6.749659943e-10 1.029642304e-09 1.226824494e-09 1.61231566e-09 6.413924917e-10 7.090174436e-10 1.307874618e-09 1.354419284e-09 1.29742901e-09 1.174869488e-09 9.354148773e-10 1.322228855e-09 1.238929472e-09 1.266702483e-09 9.135822909e-10 1.104945146e-09 7.92659735e-10 1.094705045e-09 1.130154561e-09 1.542894842e-09 8.262674338e-10 7.462023114e-10 1.339834667e-09 8.864209941e-10 5.257332908e-10 1.491265851e-09 9.557573014e-10 1.170642788e-09 8.483979326e-10 7.009253811e-10 9.794182211e-10 8.858337965e-10 9.686128247e-10 8.491237533e-10 3.135679426e-10 5.831077653e-10 4.400647576e-10 6.105574162e-10 7.229912138e-10 2.413311672e-10 7.568607393e-10 4.995520433e-10 8.970603089e-10 1.034132132e-09 3.981154877e-10 9.050706686e-10 6.148697912e-10 7.59129332e-10 4.410185563e-10 7.288028477e-10 5.524822533e-10 1.675798536e-10 6.037601115e-10 3.63328226e-10 6.912554425e-10 7.000144994e-10 4.519532193e-10 3.269341271e-10 8.347805335e-10 5.583809523e-10 1.25416433e-10 3.977536476e-10 6.571456325e-10 1.587462077e-10 8.930585642e-10 3.569686749e-10 4.950206082e-10 2.825055812e-10 1.061371219e-09 1.93139984e-10 2.383833575e-10 1.832276576e-10 2.701441423e-10 3.618988483e-10 +1.469472736e-10 7.320263631e-10 3.661117639e-10 2.448734402e-10 3.848571291e-11 5.553169334e-10 2.903368726e-10 3.004613655e-10 4.519055902e-10 3.568914884e-10 6.312725631e-10 3.040913866e-10 5.573435268e-10 3.501770536e-10 5.529027107e-10 3.093703938e-10 4.480754333e-10 5.805140934e-10 3.603768377e-10 5.337120424e-10 4.019623873e-10 7.363728514e-10 2.139189438e-10 1.525521873e-10 7.857030384e-10 7.278093073e-10 3.875301295e-10 3.638366482e-10 9.531462826e-10 5.116574964e-10 3.006553824e-10 8.119203609e-10 3.28942958e-10 4.420377175e-10 6.151725078e-10 3.569113819e-10 6.085503921e-10 4.741367781e-10 5.479860598e-10 5.149272688e-10 8.601743972e-10 3.621590754e-10 1.245154563e-09 9.633882752e-10 5.374754043e-10 1.251860134e-09 9.479241483e-10 1.583567364e-09 1.144155754e-09 1.768885141e-09 1.994558165e-09 8.578497264e-10 1.430286878e-09 1.133228528e-09 1.363879994e-09 6.007915646e-10 8.403616666e-10 1.009042216e-09 7.004937285e-10 1.164778301e-09 3.975114011e-10 9.627790523e-10 2.179408581e-09 1.239383427e-09 1.59748194e-09 1.129778163e-09 1.209831694e-09 8.852603311e-10 1.003693543e-09 8.419977058e-10 1.592576067e-09 1.346247343e-09 1.216119769e-09 1.501611303e-09 1.53630641e-09 1.813325449e-09 1.056842751e-09 6.759693518e-10 1.66514356e-09 1.060465758e-09 1.765881518e-09 2.450513598e-09 2.210972385e-09 1.934085688e-09 2.018929369e-09 2.553096707e-09 2.363630941e-09 1.985206842e-09 1.551598158e-09 1.357050505e-09 1.916432086e-09 1.964574041e-09 1.806469562e-09 1.174407993e-09 9.591550037e-10 5.486348518e-10 3.709960333e-10 6.018060053e-10 1.107175775e-09 3.330108216e-09 2.7616745e-09 3.581939876e-09 1.514431431e-09 1.787799367e-09 3.383267199e-09 1.57298575e-09 2.654167888e-09 2.299073222e-09 3.27668437e-09 3.832919389e-09 1.692744712e-09 1.582458032e-09 2.131956655e-09 1.361136646e-09 1.601304157e-09 1.172824571e-09 5.155412905e-10 8.7000334e-11 2.857072262e-10 1.737948409e-10 9.902460075e-10 3.264276836e-09 3.735569289e-09 4.024011402e-09 5.539023677e-09 8.267313858e-09 7.6270173e-09 5.632708543e-09 6.280934616e-09 3.547759264e-09 4.926746337e-10 2.409797379e-10 3.180862836e-10 3.405437131e-10 2.884359395e-10 3.851994757e-10 1.835891835e-10 6.452945933e-11 8.768403323e-11 4.707689461e-11 2.136530807e-10 8.533222821e-11 1.282750069e-10 3.436956039e-10 1.049703666e-10 1.013897307e-10 2.323754308e-10 2.760914099e-10 6.841288957e-12 1.914278896e-10 5.759279101e-10 2.745618813e-10 5.044581241e-10 1.281151225e-12 2.197619733e-10 2.811154499e-10 3.177164709e-10 4.129048687e-10 1.14560824e-10 2.108988492e-10 1.629734991e-10 2.61124924e-10 2.059572436e-10 7.771382286e-11 1.103087872e-10 1.089728831e-10 7.349975488e-11 1.956143153e-10 1.250403865e-10 1.381402423e-10 2.749385714e-09 5.079859199e-09 5.880495702e-09 8.261668353e-09 7.890624845e-09 5.144947075e-09 3.27356994e-09 4.636378556e-09 3.33166948e-09 1.386813049e-09 1.062890165e-10 9.404864401e-13 2.619101889e-10 2.713041494e-10 1.232233275e-09 2.975466182e-09 1.798959093e-09 2.275494114e-09 1.367863423e-09 2.372524553e-09 3.443322733e-09 3.593263809e-09 4.567389513e-09 2.239659597e-09 2.356295438e-09 2.44131851e-09 2.599731584e-09 2.450328011e-09 3.983292125e-09 3.735008115e-09 2.352166746e-09 9.209154005e-10 1.019220721e-09 5.599550836e-10 3.211870602e-10 3.404967677e-10 1.22351233e-09 2.038316222e-09 2.467098754e-09 1.539821154e-09 2.123117076e-09 2.582355151e-09 2.55556736e-09 2.111509216e-09 1.723960018e-09 1.860843137e-09 2.097555536e-09 2.458823182e-09 3.095012828e-09 3.003875985e-09 1.795180344e-09 2.146689432e-09 1.859470029e-09 1.102290683e-09 8.144662073e-10 9.827201403e-10 1.143189327e-09 9.195552427e-10 1.835985847e-09 1.505818617e-09 1.160775749e-09 1.679109626e-09 1.043608933e-09 1.144825734e-09 1.447077507e-09 8.400648152e-10 1.205015098e-09 6.798327847e-10 7.280502891e-10 7.89068476e-10 8.384306593e-10 8.371939975e-10 1.433867221e-09 1.273776278e-09 1.248180797e-09 1.05141791e-09 2.267844438e-09 1.283841717e-09 9.273800839e-10 5.158829709e-10 1.613370972e-09 1.134574403e-09 1.244782815e-09 1.249078722e-09 8.87244485e-10 9.390797049e-10 8.079309663e-10 1.071700218e-09 1.014169548e-09 6.130953846e-10 9.51207854e-10 6.747411371e-10 4.080853355e-10 5.997625541e-10 4.681724113e-10 5.613797746e-10 5.354637333e-10 6.788020462e-10 7.06403369e-10 8.862914825e-10 7.130883834e-10 7.237330812e-10 9.274431414e-10 6.462573767e-10 1.355371908e-10 3.466386826e-10 7.269456009e-10 4.788462455e-10 3.739641794e-10 2.280112716e-10 2.973894446e-10 4.883254196e-10 4.182286554e-10 4.222737595e-10 3.863362736e-10 2.980488479e-10 5.884416905e-10 1.646198093e-10 4.529272445e-10 2.327200905e-10 5.605234308e-10 1.865748609e-10 8.764557284e-10 2.832401576e-10 1.167379263e-09 2.479742301e-10 5.325903714e-11 6.605213692e-10 4.288851028e-10 1.397368936e-10 +1.161781492e-10 3.178331542e-10 7.665053944e-10 1.86300285e-10 3.228301447e-10 4.906267744e-10 4.72788221e-10 7.749227333e-10 1.748933027e-10 5.627105937e-10 8.795471153e-10 3.111262169e-10 5.603082712e-10 4.734914209e-10 4.589537277e-10 7.885548589e-10 4.521501983e-10 8.90857002e-10 2.483092673e-10 6.308196612e-10 4.100876562e-10 7.314078098e-10 6.027260168e-10 4.956275545e-10 7.016587147e-10 8.91990567e-10 4.301855249e-10 7.963605477e-10 3.760490568e-10 1.039931197e-09 4.636481351e-10 5.156281004e-10 8.414295097e-10 6.896869332e-10 3.865513722e-10 1.036062815e-09 7.923832007e-10 1.875777679e-10 6.767697826e-10 3.996822567e-10 7.653997166e-10 6.688122279e-10 1.65002587e-09 1.005373976e-09 1.32931788e-09 1.092482152e-09 1.884010532e-09 1.142271669e-09 1.070193316e-09 9.422796333e-10 1.26509726e-09 9.460288693e-10 9.196771822e-10 8.995055071e-10 8.165086623e-10 1.196621141e-09 1.024397482e-09 4.502141964e-10 6.038357105e-10 6.58210154e-10 1.435296428e-09 9.737453752e-10 7.410913455e-10 1.145197795e-09 9.839808986e-10 7.35934065e-10 9.685994849e-10 1.335076876e-09 1.35016839e-09 2.204315105e-09 1.916058105e-09 1.286576448e-09 1.585549488e-09 6.764979179e-10 1.5409282e-09 1.597919055e-09 1.328225834e-09 1.248177558e-09 1.983916869e-09 1.928425116e-09 2.850202575e-09 2.265692803e-09 1.609226109e-09 2.027239473e-09 2.625763469e-09 1.594535478e-09 2.147593024e-09 1.758096813e-09 1.506972327e-09 1.226586323e-09 1.263199205e-09 1.241247454e-09 1.178439164e-09 1.169357443e-09 6.384644208e-10 2.917917713e-10 5.142530751e-10 7.890529311e-10 1.152194555e-09 2.834954244e-09 3.747913701e-09 2.465076756e-09 2.612842647e-09 3.592107202e-09 2.68950578e-09 1.834347714e-09 2.559669243e-09 2.839413235e-09 3.335422351e-09 3.294970335e-09 2.555637085e-09 2.25633278e-09 2.710903533e-09 1.816511053e-09 1.841853402e-09 1.633983544e-09 3.044582069e-10 9.104013979e-11 3.543968944e-10 5.943890098e-10 2.181965824e-09 2.763459919e-09 3.420211214e-09 2.849430383e-09 5.132445028e-09 8.445953064e-09 6.688679313e-09 6.276881188e-09 5.519599564e-09 2.78828454e-09 6.841075356e-11 4.088582682e-10 1.98591654e-10 2.969794731e-12 3.87509211e-10 1.446017314e-10 3.066060372e-19 1.76039576e-10 7.941304193e-11 1.511068039e-10 3.682053219e-10 9.740299724e-11 3.975603432e-10 1.563131421e-10 1.950265667e-10 7.977468373e-11 8.236158286e-11 1.534636898e-10 4.078417269e-10 2.89663814e-10 9.550272949e-11 2.118541942e-10 1.109101845e-13 2.333705574e-10 2.179099918e-10 1.680048828e-10 1.542151529e-10 2.067040659e-10 6.531769728e-11 7.936881963e-11 2.907645297e-10 9.992215656e-11 2.376812731e-10 1.159658612e-10 2.094566489e-10 3.69145108e-10 3.148526489e-10 7.161597995e-11 2.59694484e-10 3.822375146e-10 3.011065856e-09 6.787339809e-09 4.923631354e-09 6.236560598e-09 8.696488773e-09 4.201410265e-09 3.070130337e-09 3.573103691e-09 3.308142864e-09 1.153936451e-09 1.091419212e-10 2.947695486e-10 1.16749182e-10 4.937862354e-10 1.604337795e-09 1.617271157e-09 2.348940091e-09 1.740027546e-09 2.214306143e-09 2.227729421e-09 3.23717921e-09 4.642706155e-09 4.553683545e-09 3.170824642e-09 3.290077221e-09 2.193644195e-09 3.65029969e-09 2.03203418e-09 1.932064356e-09 4.449605083e-09 1.88262816e-09 9.337474718e-10 1.369646767e-09 5.152116692e-10 7.999618112e-10 1.050401188e-09 9.971189832e-10 1.748273844e-09 1.874591911e-09 2.190263735e-09 1.767982923e-09 9.035221984e-10 1.844064246e-09 1.669604807e-09 1.742743056e-09 1.473793586e-09 1.381357239e-09 2.160285821e-09 1.878990512e-09 1.774385083e-09 1.355575659e-09 8.925199537e-10 1.076264114e-09 5.511848901e-10 1.242140865e-09 7.180142654e-10 8.657713467e-10 9.590272499e-10 1.188286181e-09 1.887764562e-09 1.189420361e-09 8.855843523e-10 1.188446031e-09 9.290229144e-10 1.466678526e-09 1.34703468e-09 1.122921986e-09 1.350406981e-09 8.222744935e-10 1.404771957e-09 6.89416288e-10 9.20672844e-10 8.625057815e-10 1.161522747e-09 6.514921388e-10 1.157569092e-09 1.220317677e-09 8.409123573e-10 1.896819303e-09 1.102646765e-09 1.26618459e-09 7.644937082e-10 9.5212832e-10 1.355961918e-09 1.732666246e-09 8.13051901e-10 1.052507336e-09 5.441310095e-10 1.136830253e-09 5.07164095e-10 2.385420091e-10 8.570988516e-10 6.21323894e-10 7.589946075e-10 3.534909877e-10 6.96440646e-10 7.583547346e-10 2.05378752e-10 7.537092172e-10 2.452803822e-10 4.35079067e-10 3.501887178e-10 1.207671262e-09 5.830192695e-10 4.774293666e-10 5.338504875e-10 3.059573204e-10 3.912831135e-10 1.439844231e-10 4.887434246e-10 1.952733676e-10 4.405188877e-10 4.757386794e-10 8.073391423e-10 7.418701042e-10 4.224162806e-10 4.519106785e-10 4.588626472e-10 6.878675131e-10 3.901517793e-10 3.797148118e-10 4.571374089e-10 4.641852906e-10 6.318118178e-10 8.283184385e-10 2.296416484e-10 1.126281788e-10 4.701189627e-10 2.307474132e-10 2.706789709e-10 +3.973165548e-10 9.296935372e-11 1.033082469e-10 1.856022253e-10 4.930044427e-10 4.127158479e-10 2.074899186e-10 6.300142317e-11 4.868237473e-10 5.338593807e-10 2.622580157e-10 2.455350552e-10 3.966903812e-10 6.557257739e-10 3.824285738e-10 2.609971394e-10 4.240220266e-10 3.370592415e-10 4.787652545e-10 4.280090954e-10 1.193369215e-10 3.286879256e-10 3.861681656e-10 6.457624937e-10 1.723178685e-10 8.997152042e-10 9.513277948e-10 4.430473151e-10 8.051068708e-10 5.917836967e-10 3.005836125e-10 4.329151968e-10 4.099583372e-10 3.790768024e-10 4.935515433e-10 4.773632637e-10 5.078248793e-10 3.970744488e-10 2.819981515e-10 6.163688354e-10 5.723089607e-10 7.906662935e-10 1.22201571e-09 7.115074219e-10 1.16144877e-09 1.103464911e-09 8.343411975e-10 1.343985875e-09 1.306555693e-09 1.156206249e-09 9.899350842e-10 7.156326983e-10 1.524099437e-09 1.034417756e-09 1.345270598e-09 7.277504917e-10 1.566924505e-09 1.131945418e-09 6.626397929e-10 1.25116368e-09 1.048712531e-09 1.425728501e-09 1.343596973e-09 1.682687807e-09 1.107627638e-09 1.255974471e-09 8.388803996e-10 1.254184765e-09 1.280759472e-09 1.098185832e-09 1.558219333e-09 1.655085451e-09 1.633538805e-09 1.349835226e-09 1.379869739e-09 8.284306301e-10 9.112299336e-10 1.016113112e-09 2.305915903e-09 2.10068103e-09 1.519481242e-09 1.648601318e-09 2.411055053e-09 1.602107468e-09 1.795577603e-09 1.632729773e-09 1.934073626e-09 2.152777402e-09 1.921840269e-09 1.219639624e-09 1.492118228e-09 1.732955138e-09 1.709096743e-09 1.045771923e-09 8.806303897e-10 4.434874296e-10 5.435951217e-10 4.862329135e-10 1.440247664e-09 2.758302809e-09 3.032937418e-09 2.346947665e-09 3.818808618e-09 2.721582085e-09 3.303652628e-09 3.238042549e-09 4.031974398e-09 3.832098716e-09 3.79422921e-09 2.685686429e-09 9.889286103e-10 2.186331751e-09 1.60956759e-09 1.928173117e-09 2.451902815e-09 1.552298777e-09 2.036996998e-10 3.550216444e-10 4.513728597e-10 2.30147783e-10 1.393403512e-09 4.089106046e-09 2.232552206e-09 3.353443967e-09 6.728302576e-09 9.658794006e-09 5.382233904e-09 7.669878258e-09 5.445165491e-09 1.888330844e-09 2.142333948e-10 1.454407534e-10 2.002288771e-10 4.868121152e-10 1.871832505e-10 4.325871943e-10 2.428502965e-10 1.490149151e-10 3.740324305e-10 1.659781137e-10 1.129286092e-13 2.650601736e-10 1.37958855e-10 7.565722825e-11 2.433127219e-10 2.32276515e-10 1.429510089e-10 1.29194964e-10 4.508345515e-10 5.044866255e-11 7.099586971e-11 2.327903179e-10 1.821263204e-10 3.605716729e-10 7.426423357e-11 2.164767107e-10 1.633146785e-10 5.316322082e-10 3.986270851e-10 1.738648389e-10 1.032595258e-10 1.293605172e-10 3.295249303e-10 1.317311785e-10 1.776115406e-10 6.325664556e-11 9.727746041e-11 1.972504632e-10 5.376318903e-10 1.44600493e-10 2.580847326e-09 5.770850277e-09 8.855312892e-09 8.838163157e-09 7.228581285e-09 5.309011824e-09 2.428437961e-09 3.113643544e-09 3.374412751e-09 2.233712069e-09 1.972545029e-10 2.336498254e-10 1.558597839e-10 3.80143121e-10 1.496070402e-09 1.359318925e-09 1.076822222e-09 2.125054275e-09 1.683093419e-09 1.53019052e-09 2.607429256e-09 3.401924253e-09 3.612985182e-09 1.783715356e-09 2.747915132e-09 2.013679883e-09 2.895661988e-09 3.132739362e-09 3.10516475e-09 2.333869736e-09 3.412774262e-09 1.26034409e-09 1.26344843e-09 4.481446853e-10 3.667952685e-10 9.481067157e-10 1.249974411e-09 1.182825204e-09 1.42583922e-09 2.520040523e-09 1.216880233e-09 9.747636584e-10 1.966959338e-09 1.26848233e-09 2.179441206e-09 2.838890017e-09 1.800574604e-09 2.9553597e-09 2.038977376e-09 1.253203252e-09 1.211493816e-09 1.857691886e-09 7.798155843e-10 7.489751383e-10 1.168280126e-09 9.960158452e-10 9.486524335e-10 9.737281036e-10 7.729496096e-10 1.593310018e-09 1.565901159e-09 1.996267436e-09 1.505286646e-09 1.010222596e-09 1.350457215e-09 1.483698476e-09 1.301408156e-09 8.070701228e-10 1.143583788e-09 1.115444819e-09 9.823697978e-10 1.45803568e-09 7.822910204e-10 1.576917174e-09 1.244326196e-09 1.809754071e-09 1.072661151e-09 1.343381092e-09 7.091379675e-10 8.164160931e-10 1.043519079e-09 1.089984018e-09 1.144379304e-09 1.118440003e-09 1.300242178e-09 1.043852186e-09 8.597176516e-10 7.957539391e-10 8.697554894e-10 4.412567759e-10 8.330364336e-10 6.812834857e-10 4.308215761e-10 3.316518155e-10 8.546582707e-10 4.880534697e-10 7.463006417e-10 6.430547026e-10 7.33129908e-10 3.933541274e-10 6.505509209e-10 8.950977175e-10 5.36156595e-10 2.852679936e-10 3.491562607e-10 2.242460103e-10 4.585582482e-10 5.114737221e-10 3.608052542e-10 2.611596278e-10 8.168603224e-10 4.159387297e-10 3.191949968e-10 4.23721489e-10 3.976104825e-10 4.630904621e-10 3.2444499e-10 3.022737503e-10 3.205616386e-10 3.849761794e-10 4.725681416e-10 5.970068838e-10 6.798453932e-10 2.337503758e-10 4.933324512e-10 1.882764632e-10 3.818608557e-10 9.074065366e-11 3.152369711e-10 2.046365711e-10 +2.664617896e-10 3.431010533e-10 2.111045926e-10 6.29725578e-10 2.759425054e-11 2.038002284e-10 5.650822478e-10 4.174588602e-10 2.366329808e-10 3.995182857e-10 3.548833148e-10 3.194165349e-10 5.454788442e-10 5.426260647e-10 4.275595204e-10 3.827286042e-10 2.721313938e-10 2.619316158e-10 4.520887295e-10 4.800031217e-10 2.467779415e-10 3.06838429e-10 2.361704652e-10 4.741458881e-10 2.191424704e-10 8.398887782e-10 6.411876977e-10 8.019104467e-10 4.483427436e-10 1.115327573e-09 6.188028037e-10 5.69266476e-10 1.111803121e-09 7.207743967e-10 7.310083271e-10 4.833028902e-10 5.315485578e-10 6.057050868e-10 4.707375759e-10 7.20099142e-10 4.427194338e-10 8.741576296e-10 7.307686537e-10 9.047705485e-10 1.61670103e-09 9.5817402e-10 7.519512149e-10 1.257536046e-09 9.825338956e-10 1.159957928e-09 9.743823255e-10 1.530478596e-09 1.24559731e-09 1.036522771e-09 1.22917522e-09 1.646814782e-09 7.311819888e-10 1.670925095e-09 1.24748864e-09 1.085362891e-09 1.191154504e-09 6.277995554e-10 8.712580324e-10 1.381927786e-09 1.20235901e-09 1.48566278e-09 1.578586825e-09 1.073924528e-09 1.12650502e-09 1.120143593e-09 1.400286344e-09 7.448688588e-10 1.362720022e-09 1.301989853e-09 1.327220772e-09 6.497620049e-10 1.34330778e-09 1.366184213e-09 1.10853578e-09 1.894820198e-09 1.356045694e-09 2.055109151e-09 1.942943237e-09 2.03397449e-09 1.957740553e-09 1.942991171e-09 1.201023864e-09 1.237186231e-09 1.894793646e-09 1.482660724e-09 1.740994365e-09 1.384666493e-09 1.119399249e-09 1.879493256e-09 5.933582837e-10 6.313870164e-10 1.872563353e-10 1.483092424e-09 7.653345982e-10 2.053023917e-09 2.113984282e-09 3.068312774e-09 2.325027953e-09 4.185203392e-09 2.247839137e-09 2.455878593e-09 2.511091356e-09 2.595512929e-09 3.829903101e-09 2.478060483e-09 2.504424898e-09 1.560470363e-09 1.224701936e-09 2.377863086e-09 2.053554311e-09 1.451106727e-09 1.472613208e-10 9.278184059e-11 1.870180409e-10 9.191790191e-11 1.862888665e-09 3.091942774e-09 3.678958056e-09 2.333375985e-09 6.299104129e-09 9.817117083e-09 6.132324977e-09 7.232763152e-09 7.075883866e-09 2.089850789e-09 1.464766453e-10 1.066119708e-10 1.844264448e-10 3.853621666e-10 3.660649222e-10 2.938123871e-10 6.85339335e-10 4.142483207e-10 0 1.716731539e-10 5.047450797e-10 1.177283321e-10 2.190854387e-10 3.118586183e-10 3.205108401e-10 1.594156684e-10 1.406461954e-10 1.940933862e-10 2.5581831e-10 1.982462149e-10 1.818419135e-10 8.081620795e-11 4.355378133e-10 2.310502573e-10 1.746312652e-10 2.380250229e-10 4.344048426e-11 8.825866404e-11 1.713030696e-10 1.999299272e-10 9.104495176e-11 5.035697053e-10 2.039386617e-10 2.703702403e-10 9.909743294e-11 9.281533799e-11 4.205986506e-10 2.27567605e-10 1.644309684e-10 3.961468848e-10 2.728932535e-09 6.462697932e-09 8.110496478e-09 5.665249133e-09 8.854931157e-09 7.114358887e-09 2.516228263e-09 2.539945376e-09 3.026651038e-09 1.19354202e-09 3.383695191e-10 1.379018942e-15 2.026075388e-10 2.629657447e-10 8.47095875e-10 2.055893507e-09 1.426407974e-09 2.154460933e-09 1.4910512e-09 2.188213873e-09 2.135337382e-09 4.774406788e-09 2.58621042e-09 3.184872426e-09 3.312080097e-09 3.83663785e-09 2.253857185e-09 2.626507097e-09 3.327634213e-09 5.519318428e-09 2.516302843e-09 1.709510193e-09 6.11701797e-10 9.409569967e-10 5.618527831e-10 9.85017454e-10 1.465880191e-09 1.935467873e-09 1.77935246e-09 1.356007186e-09 1.356571031e-09 1.130260614e-09 1.527357609e-09 1.801602776e-09 2.560656793e-09 1.280871114e-09 1.371632525e-09 2.227525196e-09 2.318314444e-09 1.815194145e-09 1.796730451e-09 1.206239077e-09 8.37157178e-10 1.362371938e-09 1.269781129e-09 9.005484306e-10 1.022977133e-09 1.223131463e-09 1.288135137e-09 1.695263921e-09 1.033838722e-09 1.174865781e-09 1.221289976e-09 7.403522726e-10 1.142708995e-09 1.076620426e-09 1.321692684e-09 1.394596083e-09 7.3097184e-10 6.694706007e-10 5.511471254e-10 1.644064185e-09 9.734218551e-10 1.871077756e-09 1.357221936e-09 1.057248583e-09 9.138658289e-10 7.877060904e-10 1.530845306e-09 1.124359913e-09 1.281527787e-09 1.124111417e-09 1.274450552e-09 1.202816253e-09 7.96886512e-10 3.306182653e-10 9.697004123e-10 7.323607195e-10 9.28865727e-10 9.473242554e-10 3.58650154e-10 2.980063733e-10 5.521760667e-10 3.833717032e-10 4.792922488e-10 4.970000144e-10 1.122739183e-09 5.413759584e-10 6.424074607e-10 8.758565558e-10 6.011174811e-10 3.430000219e-10 5.375323553e-10 5.064254847e-10 5.368788664e-10 5.491222398e-10 5.430442017e-10 7.283570003e-10 3.340515385e-10 4.951898237e-10 4.055202925e-10 5.327642635e-10 2.200943491e-10 5.578824282e-10 1.896023648e-10 2.959419485e-10 8.498386026e-10 7.117957615e-10 3.020692812e-10 3.636222249e-10 1.539135423e-10 8.112477913e-10 7.563460902e-10 4.423690651e-10 6.142880685e-10 5.490698606e-10 8.361640653e-10 5.371809044e-10 4.464117687e-10 3.334430673e-10 +1.931310532e-10 1.797187105e-10 4.786506323e-10 1.805447882e-10 5.363660398e-10 6.622034625e-10 6.838829202e-10 8.193571027e-10 8.222152162e-10 5.949104921e-10 5.354578268e-10 5.626629274e-10 2.42268274e-10 4.686100555e-10 7.338247675e-10 5.947905388e-10 9.126643425e-10 3.167279945e-10 1.799952009e-10 3.054170855e-10 8.335186677e-10 3.049723629e-10 4.197936475e-10 3.857560389e-10 2.779752263e-10 2.502634631e-10 6.583734026e-10 5.12676863e-10 6.358519118e-10 5.503267323e-10 6.906180427e-10 7.594169054e-10 6.174345674e-10 2.783399213e-10 6.537335147e-10 6.146188074e-10 7.509231689e-10 6.3643191e-10 4.719677082e-10 4.024063573e-10 1.16948839e-09 8.973986561e-10 5.45634331e-10 1.180050773e-09 7.710575448e-10 9.018288343e-10 1.528589627e-09 1.383411479e-09 1.173374206e-09 1.264513886e-09 9.635539556e-10 1.258412371e-09 1.68576853e-09 8.636619629e-10 1.302886629e-09 1.224037966e-09 1.020456969e-09 8.60843885e-10 8.330452027e-10 4.674063259e-10 5.575531307e-10 9.539187888e-10 1.259948935e-09 1.083102464e-09 1.532401139e-09 1.187845825e-09 1.399839619e-09 1.301389904e-09 9.325517968e-10 1.280461804e-09 1.202357719e-09 1.388923436e-09 1.309340873e-09 1.462198921e-09 1.160061369e-09 7.462765868e-10 1.314636094e-09 1.697035048e-09 7.395157825e-10 1.347125103e-09 1.869460166e-09 2.523327869e-09 1.537707848e-09 2.258082461e-09 1.942517376e-09 2.234744379e-09 2.169982032e-09 2.13580053e-09 1.825238574e-09 1.794839511e-09 1.214166973e-09 1.131493763e-09 1.373627591e-09 1.131133776e-09 1.090740663e-09 8.345096833e-10 9.657543316e-10 1.438549438e-09 1.808922883e-09 2.523730189e-09 2.338007732e-09 3.678124128e-09 2.476668505e-09 2.227023931e-09 2.968874167e-09 3.866613969e-09 3.149807906e-09 3.813374705e-09 4.157262836e-09 1.747673544e-09 1.621195025e-09 1.24183443e-09 2.640681965e-09 2.595394132e-09 1.545506472e-09 9.596139548e-10 1.940869737e-10 1.523429976e-10 2.143631633e-10 4.596863697e-10 1.747807075e-09 3.934147011e-09 3.208640446e-09 4.179793525e-09 5.227611061e-09 7.729982209e-09 7.270079072e-09 6.580205395e-09 5.740198253e-09 2.020169233e-09 4.247306147e-10 1.089485811e-10 1.132499968e-10 5.904104201e-10 4.518117235e-10 5.492049696e-10 4.028121642e-10 3.298025359e-10 2.7063654e-10 9.363373805e-11 3.209331168e-10 1.065744731e-10 3.45785473e-10 2.221930749e-10 3.665879425e-10 2.283674401e-10 3.788383822e-10 2.827546023e-10 9.09341848e-11 2.883170673e-10 2.771429377e-10 1.798765893e-10 2.060263886e-10 2.252284143e-10 3.325786514e-10 1.816489685e-10 1.612483156e-10 1.444792187e-10 2.77194796e-10 2.987650161e-10 7.451265201e-11 2.782822056e-10 2.620925686e-10 2.253367544e-10 2.258317337e-10 2.419203908e-10 7.223590096e-15 9.552654095e-11 1.765216114e-10 2.536337595e-10 2.057637251e-09 5.584668576e-09 5.275940214e-09 8.254886679e-09 7.530747708e-09 6.881783684e-09 2.025051371e-09 3.090253946e-09 3.602914515e-09 1.926488877e-09 1.060011986e-11 3.394241823e-10 5.197670041e-11 2.963039112e-10 9.336419968e-10 1.99068875e-09 1.752829907e-09 2.135693366e-09 2.114462474e-09 1.435042153e-09 3.163221892e-09 3.571686486e-09 2.906085954e-09 3.560006097e-09 2.064862778e-09 3.061378361e-09 1.794510021e-09 2.955447785e-09 2.675971929e-09 3.275309039e-09 1.537357815e-09 1.509250546e-09 1.200333182e-09 8.731266207e-10 5.886353796e-10 8.503893669e-10 1.109705937e-09 1.906490915e-09 1.578706364e-09 2.880208319e-09 1.473244055e-09 1.669217269e-09 1.944909559e-09 2.369102381e-09 1.524195347e-09 1.798365302e-09 1.386443467e-09 2.470009162e-09 1.986593672e-09 2.052092573e-09 1.570576993e-09 9.820695731e-10 9.905147706e-10 7.467768707e-10 1.405521746e-09 1.319987991e-09 6.88019626e-10 7.735872585e-10 1.383587226e-09 1.56629231e-09 1.399506962e-09 1.464543922e-09 8.972837003e-10 1.156209425e-09 1.123933686e-09 9.374267831e-10 1.41149946e-09 9.574735981e-10 1.080759103e-09 1.257243319e-09 1.12732734e-09 8.28612437e-10 1.04897721e-09 1.022995514e-09 1.008151561e-09 5.828541404e-10 1.046430087e-09 1.127415608e-09 1.362375676e-09 1.049712158e-09 1.379921735e-09 6.269477656e-10 1.141949245e-09 9.217012372e-10 1.3279913e-09 1.081007434e-09 1.525123676e-09 8.400932755e-10 7.316982058e-10 5.182430826e-10 7.851141058e-10 6.301997503e-10 5.029651295e-10 1.153353262e-09 3.513692889e-10 5.614012879e-10 7.395655091e-10 6.001616525e-10 7.558925295e-10 3.364559285e-10 4.971564018e-10 8.720764851e-10 4.609492955e-10 7.943876142e-10 2.667252749e-10 3.6225038e-10 4.128591609e-10 6.783092073e-10 6.401661271e-10 7.818955126e-10 2.354246802e-10 3.953700292e-10 3.541839612e-10 2.340388411e-10 3.992184458e-10 3.434507099e-10 1.532298601e-10 4.801815537e-10 5.75157972e-10 5.317009585e-10 5.066748278e-10 8.073783849e-10 5.464353561e-10 1.852779847e-10 1.758405721e-10 2.397868881e-10 3.762243231e-10 2.007561901e-10 1.961477264e-10 4.306171311e-10 +2.909384055e-10 5.499947177e-10 5.710207522e-10 1.670065513e-10 4.96470602e-10 2.604984398e-10 7.668611122e-10 2.44427982e-10 5.685752657e-10 5.99549343e-10 7.621491443e-10 3.766676351e-10 7.308622456e-10 3.718113802e-10 5.838701527e-10 6.868377216e-10 3.654741695e-10 3.350036435e-10 2.735126061e-10 2.790752129e-10 4.471755724e-10 4.229484922e-10 5.969057093e-10 6.76549973e-10 3.90920932e-10 2.429279529e-10 3.709829718e-10 4.433971131e-10 6.364233978e-10 5.781277231e-10 4.928988908e-10 6.913180341e-10 5.706428464e-10 5.57050019e-10 3.764837151e-10 4.803789539e-10 3.255361815e-10 4.353419528e-10 2.625788899e-10 4.637430732e-10 8.951716716e-10 8.109038631e-10 1.057818594e-09 8.925747514e-10 8.798996879e-10 1.556365967e-09 1.396733714e-09 7.385588223e-10 1.005954853e-09 1.607786033e-09 1.628013189e-09 6.377748749e-10 1.063960743e-09 1.33962526e-09 1.143180387e-09 9.864582513e-10 1.057429171e-09 1.067458702e-09 2.786800299e-10 7.302406628e-10 1.083157381e-09 5.712658131e-10 1.405818349e-09 1.547533147e-09 9.588981789e-10 1.393444279e-09 1.462723825e-09 1.126304003e-09 1.048427442e-09 1.588177318e-09 1.197967186e-09 1.653853707e-09 1.378305323e-09 8.995162155e-10 1.206195423e-09 1.082755264e-09 1.061154092e-09 9.796401652e-10 1.784286523e-09 1.661783341e-09 1.653625159e-09 2.196330704e-09 1.903975727e-09 1.990937993e-09 1.660974454e-09 2.523357356e-09 2.040263859e-09 2.158551337e-09 1.975664852e-09 2.389575413e-09 1.494415239e-09 1.312188463e-09 1.670335024e-09 1.405149556e-09 1.137933941e-09 8.553500738e-10 4.881560616e-10 1.088999542e-09 9.057110216e-10 2.686813912e-09 3.560413873e-09 2.420068076e-09 3.644391177e-09 3.44085847e-09 2.687251357e-09 2.604754067e-09 2.984512718e-09 3.199675844e-09 4.067062895e-09 2.278685353e-09 2.155544973e-09 2.458899877e-09 2.764990001e-09 2.339727219e-09 2.680827872e-09 7.669720948e-10 1.833923739e-10 3.034080839e-10 3.844856391e-10 5.34973043e-10 2.530508178e-09 2.929629089e-09 3.920077442e-09 3.246010435e-09 5.792498481e-09 7.412703441e-09 8.182059342e-09 5.63743684e-09 5.158228835e-09 1.495796768e-09 4.422517427e-10 9.812363338e-11 6.180880772e-10 4.198210201e-10 2.952510247e-19 2.926265406e-10 9.356893183e-14 2.773342537e-10 1.421999414e-10 1.903133318e-10 3.393442972e-10 2.406747106e-10 2.977718879e-10 5.236196939e-10 3.43971505e-10 1.507522303e-10 9.665292387e-11 1.040500072e-10 1.96843226e-09 1.299416872e-06 1.343564394e-06 1.081344112e-10 9.725258324e-13 4.449159007e-10 1.083415163e-10 8.805727937e-11 7.965161481e-11 8.984926779e-11 1.126994075e-10 2.963399074e-11 1.430011412e-10 7.387536792e-11 4.008102219e-10 9.999592092e-13 1.223675619e-10 1.197290283e-10 2.174541279e-10 3.019298875e-13 2.894369407e-10 1.934672836e-10 2.082621092e-09 4.832233265e-09 6.026762933e-09 5.873088385e-09 9.453403197e-09 6.129730342e-09 3.68486101e-09 4.194485169e-09 2.550644508e-09 2.351629998e-09 7.366237675e-11 2.657938572e-10 4.680425935e-10 4.855853941e-10 8.203791752e-10 2.214136822e-09 2.009737556e-09 2.447343831e-09 2.521576264e-09 2.624186105e-09 2.590881834e-09 5.120002879e-09 2.9930363e-09 2.887481145e-09 2.672689304e-09 3.201932868e-09 4.124863355e-09 2.12537233e-09 2.25463545e-09 2.992616061e-09 1.35935487e-09 1.500650378e-09 1.108952525e-09 4.577816639e-10 5.249203304e-10 1.265665028e-09 1.600685505e-09 1.733723079e-09 1.451009975e-09 1.344455578e-09 1.514042607e-09 1.621735945e-09 1.065875312e-09 2.65827747e-09 2.419337836e-09 1.498823653e-09 2.371590313e-09 1.977884167e-09 1.716480243e-09 1.497402738e-09 1.537742562e-09 1.381576202e-09 1.381969847e-09 4.506695947e-10 1.37882905e-09 8.798316966e-10 1.318725272e-09 1.441251758e-09 1.292644455e-09 1.113686668e-09 1.234936426e-09 9.646577515e-10 1.108361536e-09 1.719117896e-09 1.045584632e-09 1.255381289e-09 1.333621759e-09 7.466256531e-10 1.104372166e-09 7.482396215e-10 1.001913876e-09 8.892506893e-10 9.286897345e-10 1.792871332e-09 1.374622724e-09 1.288293267e-09 1.351889066e-09 9.937257298e-10 1.168884825e-09 1.131664946e-09 1.192641948e-09 1.030881875e-09 6.159587545e-10 1.423346832e-09 9.730591329e-10 1.143945609e-09 1.050004921e-09 6.911834e-10 8.78875683e-10 7.2463192e-10 3.235655145e-10 5.041868369e-10 5.486583119e-10 3.54698477e-10 2.791240198e-10 3.754912812e-10 2.945293872e-10 7.061311794e-10 6.220063143e-10 6.155454517e-10 5.741946114e-10 7.859659312e-10 8.104056003e-10 1.050192191e-09 7.747439794e-10 2.593300184e-10 2.155358277e-10 4.903165117e-10 4.284490302e-10 4.47938093e-10 2.881305273e-10 4.989071103e-10 3.456136156e-10 6.616021446e-10 3.263693703e-10 3.951587967e-10 1.869603377e-10 5.129118954e-11 3.727213614e-10 2.674901707e-10 6.151354652e-10 5.000369583e-10 6.22129626e-10 3.449347517e-10 1.635787592e-10 5.561182002e-10 1.267055832e-10 2.912172956e-10 6.850836439e-10 3.014331914e-10 +1.993454622e-05 9.346360916e-06 3.365046725e-10 3.913860823e-10 3.063155638e-10 8.76638382e-11 1.945134774e-10 3.048559972e-10 4.854341656e-10 3.284688311e-10 4.332342452e-10 6.954250131e-10 2.842352897e-10 7.667753805e-10 3.820882691e-10 4.136649928e-10 5.822485329e-10 2.385367569e-10 3.914473111e-10 2.71218538e-10 4.84372909e-10 5.725946199e-10 4.578046483e-10 1.55428189e-10 5.564133865e-10 3.456846884e-10 4.20946444e-10 6.833719922e-10 5.180020032e-10 6.559793615e-10 8.775406603e-10 5.66022725e-10 3.508356444e-10 1.098210703e-09 4.92268068e-10 6.644945642e-10 5.645943257e-10 6.453413882e-10 2.903143683e-10 7.242157069e-10 8.017540353e-10 7.143844882e-10 9.29344051e-10 1.1804805e-09 9.712784659e-10 1.024974158e-09 1.034652605e-09 8.542622117e-10 6.886750806e-10 1.110645493e-09 1.01215462e-09 2.195388626e-09 1.196818633e-09 6.183608535e-10 1.299649368e-09 9.152330239e-10 1.368766007e-09 9.905367867e-10 9.415435653e-10 1.567538819e-09 1.256025377e-09 7.261459702e-10 1.370242382e-09 1.569719362e-09 1.678080634e-09 9.132925253e-10 1.375911644e-09 1.087666353e-09 1.013911586e-09 9.585519144e-10 1.200274759e-09 1.835673899e-09 1.617355489e-09 1.802613781e-09 1.597212727e-09 1.099239916e-09 1.481685603e-09 5.492935208e-10 1.39666913e-09 1.683854837e-09 2.190102191e-09 2.043654257e-09 2.040034824e-09 1.499682665e-09 1.222059765e-09 2.663729982e-09 2.209604131e-09 1.567689131e-09 1.210863766e-09 1.355619446e-09 2.254718018e-09 2.116917316e-09 1.918449775e-09 1.42253089e-09 9.84006555e-10 7.110062892e-10 4.117043097e-10 1.377085984e-09 7.209796403e-10 2.137410885e-09 2.470562455e-09 4.295149676e-09 3.517279778e-09 2.669250633e-09 1.789194882e-09 2.302971039e-09 3.099709521e-09 3.615393799e-09 4.386461388e-09 3.94468124e-09 1.930616193e-09 2.543150146e-09 1.621989401e-09 1.675514734e-09 2.167300514e-09 1.131138746e-09 5.528507028e-10 3.580675512e-12 2.964440825e-10 1.763280135e-10 2.564594291e-09 3.861271525e-09 3.896161169e-09 2.214552671e-09 7.240570118e-09 8.352531622e-09 6.737528065e-09 5.675459966e-09 4.551175719e-09 1.648548836e-09 1.460779879e-10 3.183187558e-10 7.330810277e-11 1.626232041e-10 7.225830038e-11 3.021467184e-10 1.394559138e-10 3.135639239e-10 1.091691427e-10 2.600357653e-10 2.136688183e-10 2.531876697e-10 1.702557198e-10 2.484988055e-10 3.45073498e-14 3.028516065e-10 9.833708916e-11 1.699912329e-10 8.613507934e-09 9.069778771e-06 9.295472227e-06 7.842336609e-09 3.706916129e-10 9.48655171e-11 3.453809501e-10 0 2.66411561e-10 1.753147645e-10 1.634114833e-10 1.08356689e-10 1.028674254e-10 8.80903935e-11 1.618396031e-10 3.045570022e-10 3.717097089e-10 2.414339821e-10 2.153816079e-10 1.882214565e-12 4.13495809e-14 2.126655238e-10 1.632828645e-09 3.911619299e-09 7.548504383e-09 6.894054944e-09 8.669769258e-09 5.088757754e-09 4.600725091e-09 3.23988889e-09 3.794236271e-09 2.132897491e-09 6.121314721e-10 1.860516435e-10 3.243994032e-10 1.550968652e-10 1.006057139e-09 1.737278782e-09 2.20194446e-09 1.487093109e-09 2.254902189e-09 2.61335517e-09 2.24906143e-09 3.681382582e-09 3.589564936e-09 2.232012656e-09 2.008012594e-09 3.270173571e-09 3.408420397e-09 2.615076172e-09 1.770042884e-09 3.560533837e-09 3.305255658e-09 1.047712067e-09 1.402834162e-09 6.65820329e-10 7.006009783e-10 9.876770909e-10 1.45726691e-09 1.702914406e-09 9.974189286e-10 1.406683978e-09 1.301116169e-09 1.574031418e-09 1.267352248e-09 2.383870844e-09 2.651767959e-09 2.529579601e-09 1.694260416e-09 2.938897344e-09 2.215257318e-09 2.48249325e-09 1.215964795e-09 1.211204181e-09 9.545742635e-10 9.64877894e-10 8.401548979e-10 1.215825525e-09 8.856573688e-10 1.113546717e-09 9.743378116e-10 1.17648567e-09 1.403198699e-09 1.119498477e-09 1.630344e-09 2.093510711e-09 7.638248415e-10 9.981792209e-10 1.143464408e-09 1.002412713e-09 6.184194268e-10 1.316447203e-09 5.824668637e-10 9.137090104e-10 1.167653371e-09 1.314602527e-09 8.860740814e-10 1.33754085e-09 7.478543605e-10 9.538098009e-10 9.207886195e-10 8.239953561e-10 1.471491667e-09 1.405292482e-09 1.210536249e-09 7.620685566e-10 1.133961691e-09 6.946218738e-10 5.732564463e-10 6.848721025e-10 1.063093594e-09 9.57555157e-10 5.280978662e-10 3.622126579e-10 4.099804212e-10 2.273820587e-10 5.67727738e-10 2.707654189e-10 5.739707099e-10 9.373122667e-10 1.196541652e-09 6.053078605e-10 4.554929462e-10 4.259089636e-10 4.763037832e-10 4.531769922e-10 4.327945073e-10 6.053458974e-10 4.716849901e-10 3.176578129e-10 7.315832027e-10 3.820424198e-10 3.547528082e-10 2.36688069e-10 5.34028581e-10 5.003754868e-10 4.931495641e-10 6.003145159e-10 4.918383061e-10 2.885118612e-10 2.027276787e-10 6.244795923e-10 5.44621051e-10 8.491295086e-10 6.860031157e-10 4.039721475e-10 3.718348552e-10 2.766857257e-10 2.550836692e-10 2.162161218e-10 9.243560204e-06 1.980829137e-05 +1.519488378e-05 1.03135701e-05 3.913306179e-10 1.478341909e-10 2.498588887e-10 2.163905848e-10 7.696793763e-10 4.987046681e-10 3.699309683e-10 5.813240614e-10 2.392322843e-10 4.712418712e-10 2.876702892e-10 4.078884586e-10 7.44113189e-10 6.428460735e-10 7.368649871e-11 7.375907932e-10 5.779418874e-10 1.07963664e-09 2.187964242e-10 4.825123135e-10 6.127750412e-10 6.434463261e-10 1.972652197e-10 2.882397472e-10 6.748283197e-10 4.436336062e-10 2.123393398e-10 6.521796567e-10 8.01166835e-10 7.502148756e-10 4.898388724e-10 8.26494537e-10 5.009429357e-10 8.171999877e-10 5.293547978e-10 7.270410556e-10 3.866226442e-10 7.441946714e-10 7.435950699e-10 5.160430521e-10 7.288838276e-10 8.424413467e-10 7.468762151e-10 1.078963235e-09 1.010247059e-09 1.394924176e-09 1.36654265e-09 1.110089676e-09 8.731383271e-10 8.675850899e-10 1.304528087e-09 1.220906832e-09 1.278739594e-09 8.884682589e-10 1.239612646e-09 3.739050886e-10 1.020003966e-09 1.074867788e-09 1.061683797e-09 3.950279698e-10 8.858717672e-10 1.839702282e-09 9.422250108e-10 1.11090041e-09 1.687745986e-09 1.469399003e-09 1.092579675e-09 1.403221918e-09 1.131809845e-09 1.115263778e-09 1.256040318e-09 1.226112953e-09 8.442741548e-10 1.52218697e-09 9.255070493e-10 8.504494303e-10 1.244265853e-09 1.589179438e-09 2.111388324e-09 2.160507335e-09 2.328496564e-09 1.856010582e-09 1.713826938e-09 1.894803502e-09 1.71377392e-09 1.66254473e-09 1.252134994e-09 1.61966423e-09 1.772458888e-09 2.008233014e-09 1.901879286e-09 1.134979317e-09 1.201194297e-09 3.827730021e-10 9.002745821e-10 8.139543609e-10 1.022600304e-09 2.939035748e-09 2.948876062e-09 3.577153053e-09 2.888202595e-09 3.234343371e-09 2.99635618e-09 3.605347478e-09 2.296410725e-09 2.747875792e-09 3.916900768e-09 2.407166569e-09 1.934413283e-09 2.12173697e-09 1.446216916e-09 2.219589112e-09 1.464768978e-09 1.29681627e-09 3.23771057e-10 4.521389603e-11 1.175694659e-11 9.216203161e-11 3.1016573e-09 2.974388879e-09 3.107254596e-09 2.861124557e-09 6.058854658e-09 8.435700295e-09 8.857635483e-09 8.054597183e-09 6.177930749e-09 2.425902893e-09 2.632054767e-10 9.060070004e-11 2.359109234e-10 0 7.342343764e-15 1.415509043e-10 2.444152386e-10 6.033403497e-16 1.814917988e-10 2.053227753e-10 1.930298507e-10 1.918066895e-10 1.080451672e-10 3.871848737e-10 4.366523376e-11 2.084880321e-10 7.325282602e-13 3.561352888e-10 1.269744711e-08 1.279936251e-05 1.283871493e-05 1.242565155e-08 2.301776854e-10 2.154603808e-10 3.488332258e-10 2.102287232e-10 1.029844302e-10 1.164853904e-10 1.653673352e-10 1.133756117e-10 2.820549965e-10 1.135572376e-10 3.951436149e-10 1.86666786e-10 3.360396478e-10 1.344361823e-10 2.330916035e-10 2.368138931e-14 3.634678228e-10 5.119344065e-10 1.768901764e-09 4.038109627e-09 4.773261173e-09 5.725398687e-09 1.057508846e-08 6.06827243e-09 3.821160375e-09 3.744163722e-09 2.995728723e-09 1.508703973e-09 2.575024334e-10 2.677286567e-10 3.675395834e-10 6.718799993e-11 9.498970552e-10 2.297299646e-09 1.084344625e-09 2.19846333e-09 1.945531847e-09 2.260268045e-09 1.918609714e-09 2.46235173e-09 2.017396454e-09 3.094431362e-09 2.702711539e-09 2.396382072e-09 2.206851441e-09 1.822245669e-09 3.533319678e-09 2.2273434e-09 2.104592161e-09 1.269409206e-09 8.811530998e-10 2.791413202e-10 4.555931622e-10 1.146987018e-09 1.299404178e-09 1.835584498e-09 1.902988751e-09 1.452250217e-09 1.483582326e-09 1.293190661e-09 1.67638762e-09 1.523764038e-09 1.035319507e-09 1.975672546e-09 2.159456118e-09 2.298219136e-09 2.45465627e-09 2.921804656e-09 2.979661806e-09 2.025222977e-09 1.367378531e-09 9.727061388e-10 1.73935478e-09 9.984161712e-10 9.648494736e-10 1.393579915e-09 1.087521426e-09 1.35800844e-09 1.595288668e-09 1.465230468e-09 1.045379648e-09 9.665221006e-10 1.78267872e-09 1.657137858e-09 1.629372758e-09 9.106082718e-10 7.45319557e-10 3.693287176e-10 7.505740391e-10 6.403638074e-10 6.992209126e-10 8.883281014e-10 1.0802636e-09 1.471346363e-09 1.206483087e-09 7.671233851e-10 9.354381974e-10 7.633009074e-10 6.489667234e-10 1.386006809e-09 9.680930499e-10 1.150996313e-09 1.020063523e-09 1.173694586e-09 6.098722694e-10 1.580280602e-09 1.5258144e-09 4.286285744e-10 3.367119045e-10 9.253365843e-10 2.60913623e-10 6.154430189e-10 2.997857953e-10 8.012941836e-10 6.539485235e-10 5.251928399e-10 3.528604396e-10 8.396158695e-10 5.905146849e-10 1.364473026e-10 1.001840602e-09 1.066443821e-09 4.764579843e-10 5.038810738e-10 3.727369529e-10 4.067105819e-10 7.909221943e-10 5.397477393e-10 3.264489476e-10 7.325917777e-10 3.697847034e-10 4.560198554e-10 9.004334649e-10 5.602416871e-10 6.636603024e-10 1.032664445e-10 5.373267762e-10 7.526994787e-10 3.051920236e-10 1.990408854e-10 1.060284256e-09 4.993262698e-10 8.809046306e-10 2.904870832e-10 6.866868422e-10 4.260817206e-10 1.029797534e-05 1.513105403e-05 +1.511190728e-05 1.010965255e-05 1.615023886e-10 2.162820975e-10 4.352083801e-10 5.348343989e-10 3.465570219e-10 6.421902589e-10 5.322146999e-10 4.239864477e-10 5.094972328e-10 1.328078516e-10 3.542633568e-10 4.13914468e-10 2.734027295e-10 3.582561912e-10 4.826944328e-10 3.893455552e-10 4.628272621e-10 6.257406474e-10 6.238606441e-10 3.498831317e-10 5.594560497e-10 5.188618427e-10 7.847506129e-10 2.666189571e-10 5.015433028e-10 5.967271897e-10 4.215253547e-10 8.871881397e-10 6.134835663e-10 6.047445617e-10 5.910455356e-10 7.631695576e-10 5.136657199e-10 1.115726404e-09 6.369331528e-10 5.18750833e-10 6.639351915e-10 6.162490979e-10 8.64864416e-10 6.291638669e-10 9.563377776e-10 8.270691245e-10 1.433372475e-09 1.345781445e-09 1.576584061e-09 1.203077333e-09 1.709455781e-09 9.852544101e-10 5.079100767e-10 1.457422221e-09 1.393844303e-09 1.367755929e-09 1.250408653e-09 1.111232446e-09 9.057286981e-10 9.447841342e-10 1.508946133e-09 8.797481702e-10 9.803333711e-10 1.138497828e-09 1.343203266e-09 1.309739916e-09 1.337046829e-09 1.328021603e-09 1.697873046e-09 1.436092104e-09 1.289291548e-09 7.093525936e-10 9.206157867e-10 2.066288823e-09 1.266142407e-09 1.412049717e-09 1.717300201e-09 8.574272274e-10 9.224903509e-10 1.038160115e-09 1.18643764e-09 2.109238644e-09 1.927654954e-09 3.204364666e-09 2.789835347e-09 1.622128247e-09 1.684771172e-09 2.491327362e-09 1.734726439e-09 6.552578541e-10 1.336011795e-09 1.303722333e-09 1.288252131e-09 1.125401678e-09 1.462286774e-09 1.16123277e-09 7.364138394e-10 8.099150576e-10 1.100630908e-09 1.056048706e-09 1.155070252e-09 2.988734526e-09 3.225050056e-09 3.28197883e-09 3.431106308e-09 3.231134948e-09 3.276706872e-09 2.365606582e-09 1.843587881e-09 4.072198039e-09 3.72301246e-09 2.62180218e-09 2.742189717e-09 1.679298317e-09 2.017961598e-09 1.462559653e-09 2.617711868e-09 1.406833079e-09 5.516692269e-11 2.732660037e-10 1.550481751e-10 1.650124926e-10 2.289138201e-09 3.479118974e-09 4.44167109e-09 2.994132585e-09 6.850380097e-09 1.017861007e-08 5.206728525e-09 8.46975946e-09 3.742871591e-09 1.290078757e-09 1.621540034e-10 1.852508447e-10 4.73347473e-10 2.647281803e-10 1.850967414e-10 2.449065017e-10 2.921734742e-10 2.918194337e-10 4.389762236e-10 1.098897992e-10 2.134849172e-10 2.907273774e-10 4.428968873e-10 2.597053717e-10 1.681439132e-10 0 7.712668793e-11 2.699215771e-10 9.030747234e-09 1.298436624e-05 1.310460447e-05 1.136387339e-08 1.481302265e-20 1.162971853e-10 1.267757508e-10 7.193188727e-11 3.025831585e-15 2.346591385e-10 2.949568919e-13 1.360994849e-10 2.95702231e-12 1.8311557e-10 5.485687733e-10 2.049274344e-10 1.409917781e-10 5.184487216e-10 2.06737398e-10 6.528612138e-11 9.948899923e-11 1.814401414e-10 1.502260966e-09 4.086569869e-09 5.534272992e-09 8.495686573e-09 8.835263253e-09 7.088872557e-09 4.148294825e-09 2.980953144e-09 4.560505751e-09 2.365661833e-09 3.351328495e-13 2.432905811e-10 8.512591394e-11 2.379841795e-10 8.377502608e-10 1.131393821e-09 1.369719048e-09 2.169766694e-09 2.497497936e-09 1.73756787e-09 3.044093961e-09 3.34605236e-09 3.047515231e-09 2.539393389e-09 1.583602717e-09 3.54100551e-09 2.904313713e-09 2.886542974e-09 2.715779366e-09 2.277888108e-09 3.362908138e-09 1.007497864e-09 8.854416489e-10 5.346011666e-10 3.052320511e-10 8.057338549e-10 1.813341338e-09 1.144706286e-09 1.674595601e-09 1.109534037e-09 8.861529511e-10 2.044961113e-09 1.54253346e-09 1.690255646e-09 2.389986363e-09 9.974689337e-10 2.090551884e-09 2.201781038e-09 1.343711262e-09 1.54788097e-09 1.890660862e-09 1.442522687e-09 1.022036793e-09 8.251532838e-10 8.694276275e-10 1.047232512e-09 1.347112757e-09 1.299683973e-09 1.032205496e-09 1.400102369e-09 1.224988384e-09 1.312687083e-09 1.292401386e-09 7.919062262e-10 1.570585084e-09 1.835526067e-09 1.523117356e-09 9.195183665e-10 8.302168828e-10 9.202233435e-10 7.606861432e-10 8.79020781e-10 7.463918542e-10 7.497229178e-10 1.142827958e-09 1.00235049e-09 1.374357674e-09 1.659782625e-09 1.825409827e-09 9.780502035e-10 1.655696519e-09 8.762464682e-10 8.303469415e-10 7.636809954e-10 1.177844792e-09 9.137124816e-10 6.542935984e-10 5.369748514e-10 1.125182574e-09 8.466450041e-10 8.215259915e-10 6.307277394e-10 3.147292813e-10 7.475866961e-10 5.517459439e-10 3.751100972e-10 1.325480139e-09 3.928112943e-10 5.453789786e-10 8.539890676e-10 6.258611236e-10 4.990494295e-10 3.044223459e-10 4.44442242e-10 2.486436353e-10 4.636525016e-10 1.946952473e-10 7.274212117e-10 8.654562945e-10 3.010831465e-10 5.77282338e-10 4.850305921e-10 3.734891762e-10 5.709254203e-10 5.951595944e-10 5.319011119e-10 3.833324858e-10 1.092784452e-09 5.356057614e-10 3.945010516e-10 5.085573757e-10 3.101260794e-10 2.656122374e-10 6.941114682e-10 8.415230098e-10 1.897770778e-10 5.042155864e-10 6.14729508e-10 1.015850035e-05 1.499929213e-05 +1.524107943e-05 1.025153075e-05 3.214181345e-10 4.80551567e-10 4.048462266e-10 3.334554069e-10 2.635953867e-10 7.008453936e-10 4.422817465e-10 9.593205841e-10 2.176349418e-10 3.922933969e-10 7.745695911e-10 2.55955405e-10 7.353572498e-10 4.538928832e-10 2.000101625e-10 6.88505549e-10 7.468588994e-10 2.63159195e-10 1.042019988e-09 4.246541508e-10 5.878792726e-10 8.665271735e-10 3.760486301e-10 3.56767521e-10 5.733077774e-10 4.237019713e-10 6.252247607e-10 5.868539539e-10 4.912253731e-10 2.999912748e-10 2.944394551e-10 4.477608421e-10 4.070197276e-10 9.612364218e-10 5.35507553e-10 5.803929769e-10 2.60081436e-10 7.546239385e-10 1.276940577e-09 8.023725623e-10 6.083645986e-10 1.273254661e-09 2.08557893e-09 1.013855675e-09 1.194306074e-09 1.434396232e-09 6.213919668e-10 9.470712314e-10 8.272373097e-10 1.35342352e-09 9.227590722e-10 1.30921131e-09 1.439853049e-09 6.947206379e-10 8.629269537e-10 1.198562886e-09 1.610727903e-09 1.204325117e-09 6.37946975e-10 1.481098454e-09 3.567762937e-10 8.063841465e-10 1.127629633e-09 1.423913748e-09 1.59430584e-09 1.044326795e-09 9.554602579e-10 1.470958289e-09 1.147493779e-09 1.253742592e-09 1.097889011e-09 5.510034452e-10 1.325383461e-09 1.249860503e-09 1.366815084e-09 7.694049693e-10 1.454109163e-09 1.225373578e-09 2.777725977e-09 2.892671214e-09 2.330191975e-09 1.776816565e-09 1.870366475e-09 2.446903729e-09 1.964783499e-09 1.994287083e-09 1.722327475e-09 1.655794321e-09 1.684616831e-09 1.424471018e-09 1.679208424e-09 1.36938697e-09 5.803266473e-10 7.945662807e-10 8.510655766e-10 7.424610954e-10 1.296880394e-09 3.170457719e-09 3.152496278e-09 2.669282761e-09 2.398357156e-09 2.713739898e-09 2.67413249e-09 4.384070582e-09 2.61961307e-09 4.075724769e-09 3.704246631e-09 2.779500909e-09 2.164110844e-09 1.776521837e-09 1.970210103e-09 1.249218295e-09 2.535869724e-09 9.954893564e-10 3.153594789e-10 5.062073e-10 8.585314098e-11 5.637530488e-10 2.250774685e-09 3.540256819e-09 2.875915427e-09 3.003000078e-09 6.488439649e-09 1.019876139e-08 6.910212782e-09 6.287171018e-09 3.901229967e-09 1.563101703e-09 4.081285554e-10 1.489984571e-19 3.000399591e-10 1.996312817e-10 1.302100154e-10 3.402316354e-10 3.554497214e-10 1.451280203e-10 3.300795902e-10 2.787314716e-10 2.701382886e-10 2.551423467e-10 3.176767045e-10 6.223715089e-11 1.844598806e-10 1.70516243e-10 1.73071535e-10 4.002389307e-12 9.156792177e-09 1.286947162e-05 1.281821534e-05 6.598443942e-09 3.073006854e-10 1.067812768e-10 1.954211975e-10 1.975963664e-10 2.32232482e-10 1.706702855e-10 4.922632192e-10 2.364528595e-10 2.118470953e-10 3.822408022e-10 2.610668052e-10 2.153930745e-10 1.536572217e-10 2.137586227e-10 1.28992451e-10 1.683939201e-10 1.728346327e-10 1.85561847e-10 1.860056611e-09 5.169777349e-09 4.772395114e-09 5.493638736e-09 9.25282536e-09 5.889302694e-09 3.116634731e-09 3.497161885e-09 3.746634624e-09 2.948392398e-09 8.033545961e-10 3.227649045e-10 1.967667951e-10 1.059750963e-10 1.022099929e-09 2.18222442e-09 1.538917003e-09 1.407764119e-09 2.173131619e-09 2.297873228e-09 2.129181259e-09 5.038321128e-09 2.211239893e-09 2.524366772e-09 2.940825338e-09 4.480375095e-09 2.366950883e-09 5.22261125e-09 2.514238291e-09 2.068292099e-09 2.269834462e-09 1.065995698e-09 7.84860563e-10 5.155871445e-10 4.124693207e-10 8.510399683e-10 1.466106429e-09 1.176037107e-09 1.542259614e-09 1.647987782e-09 1.831097222e-09 1.444321486e-09 1.498544082e-09 2.512682883e-09 2.735633645e-09 9.945489844e-10 2.094549723e-09 1.897302898e-09 2.099828408e-09 2.514758616e-09 1.087040707e-09 1.034674662e-09 1.488122014e-09 1.182089912e-09 1.512391044e-09 1.297762282e-09 9.656394767e-10 1.497660739e-09 1.289095869e-09 1.469816316e-09 1.327463747e-09 1.191163879e-09 1.296810013e-09 1.097840085e-09 1.359245224e-09 9.925930135e-10 9.784976101e-10 9.97386806e-10 1.024352986e-09 9.894412502e-10 3.584682723e-10 1.141731576e-09 1.150127073e-09 8.531852907e-10 1.213009127e-09 9.471211085e-10 1.508566507e-09 1.393342354e-09 1.032806894e-09 7.010604478e-10 1.087718982e-09 1.360906125e-09 1.315004824e-09 1.298206288e-09 2.025829876e-09 8.087609125e-10 7.318544434e-10 1.356188651e-09 8.357166746e-10 9.016697953e-10 7.37600113e-10 5.941946396e-10 1.037896464e-09 6.679397753e-10 2.24029238e-10 4.558102982e-10 7.462720242e-10 8.053676102e-10 5.606364384e-10 7.877839881e-10 4.839200682e-10 6.815085057e-10 9.408367166e-10 4.632797853e-10 2.721916149e-10 3.6545897e-10 3.2033503e-10 5.355204171e-10 3.728729675e-10 1.953004863e-10 2.678373792e-10 1.069768955e-09 1.855175919e-10 1.515232538e-10 8.426636594e-11 7.512935264e-10 3.540280784e-10 4.042755841e-10 3.396230112e-10 6.748555241e-10 9.739511169e-10 8.860982406e-10 2.906323294e-10 1.352104052e-10 2.28427976e-10 7.49013101e-11 2.054402637e-10 4.966393636e-10 1.021798492e-05 1.515834356e-05 +1.973854531e-05 9.272650814e-06 3.071666326e-10 2.622176407e-10 4.407227171e-10 8.250763812e-10 2.376666123e-10 4.012058667e-10 3.488248612e-10 4.743054243e-10 5.321636722e-10 4.34522867e-10 4.72223955e-10 5.631576688e-10 7.177964064e-10 9.661537111e-10 5.460866485e-10 4.88624146e-10 5.891804738e-10 1.033794526e-09 5.312781202e-10 8.819589232e-10 4.463945538e-10 5.285069732e-10 5.065470341e-10 5.188400985e-10 3.146235739e-10 4.432032138e-10 6.183228124e-10 3.940609102e-10 4.17505412e-10 5.841630464e-10 5.522549834e-10 7.800714684e-10 3.294811533e-10 5.489038775e-10 5.626379156e-10 4.157143215e-10 3.930849001e-10 1.17601802e-09 7.383501999e-10 8.430241628e-10 6.838048507e-10 5.126511596e-10 5.998643797e-10 1.08178853e-09 1.320794844e-09 1.535042262e-09 1.068404164e-09 1.816418847e-09 7.864719057e-10 1.268531151e-09 1.113418536e-09 1.181719348e-09 1.32034517e-09 9.357700807e-10 9.053984853e-10 3.646364547e-10 9.006708311e-10 7.179914485e-10 8.346958331e-10 1.138515993e-09 1.041913008e-09 1.932051483e-09 1.175560253e-09 1.246827423e-09 1.346704507e-09 1.345881477e-09 1.208067946e-09 1.615314106e-09 1.176421709e-09 7.724002746e-10 1.158739501e-09 8.212021454e-10 9.406583624e-10 9.284710352e-10 7.367203972e-10 1.318071193e-09 1.396916752e-09 2.145092831e-09 1.617234262e-09 2.491266581e-09 1.830898632e-09 2.487920593e-09 1.897099917e-09 1.798528367e-09 1.769478204e-09 1.354208462e-09 1.950743406e-09 1.316290288e-09 1.491148042e-09 1.234495774e-09 1.644250407e-09 1.162689621e-09 9.769184606e-10 1.047652803e-09 5.584674614e-10 5.944266486e-10 1.859833219e-09 2.586381953e-09 2.67932757e-09 3.241855533e-09 2.455799096e-09 1.835831126e-09 2.533556597e-09 1.497489921e-09 2.579358131e-09 3.800298544e-09 3.93849718e-09 3.174491136e-09 9.401343156e-10 1.891952714e-09 1.75676205e-09 1.431157851e-09 1.766101571e-09 2.168724318e-09 2.10753712e-10 1.072253361e-10 7.461241648e-11 3.701925119e-10 2.514484791e-09 2.96184315e-09 3.567457309e-09 2.873702509e-09 6.804167935e-09 7.070012592e-09 8.231261244e-09 6.23117491e-09 5.3944368e-09 2.065202812e-09 4.241282374e-10 2.564058574e-10 2.550709822e-10 0 4.052065974e-11 3.616106198e-10 3.945940869e-10 1.622741875e-10 1.74091934e-10 1.697571862e-10 2.404383718e-10 1.327691489e-10 1.077952726e-10 1.747159129e-10 6.840413368e-11 2.942041445e-10 4.748314908e-10 1.80514792e-10 1.489552441e-08 8.905652814e-06 9.063123311e-06 1.086110164e-08 2.238390738e-10 6.556329706e-11 2.839770487e-10 9.423326312e-11 3.10521761e-10 1.033271602e-10 4.025312647e-10 2.822592196e-10 3.272708037e-10 3.715489371e-10 2.222908426e-10 7.384920421e-11 2.521726374e-10 3.283340849e-10 1.559935248e-10 2.546283568e-10 8.308100508e-11 2.724170996e-10 2.417036719e-09 4.776330855e-09 7.057565875e-09 6.9585459e-09 1.010516811e-08 4.773243244e-09 2.157216403e-09 2.363486997e-09 3.326333458e-09 1.370795208e-09 2.025282135e-10 1.65319852e-10 1.200347585e-10 9.945297651e-11 1.014947724e-09 2.294240929e-09 1.444315837e-09 2.855426796e-09 1.524702783e-09 2.771721016e-09 2.02309512e-09 3.295148231e-09 4.504244975e-09 2.977814628e-09 2.556890045e-09 2.649192312e-09 2.474962615e-09 3.03690947e-09 2.711666855e-09 3.961115045e-09 3.242116166e-09 8.891729776e-10 1.539464448e-09 5.32787093e-10 9.64484114e-10 8.591045866e-10 1.84443753e-09 1.009826962e-09 1.417207375e-09 1.721379787e-09 2.269669971e-09 1.211457636e-09 1.493451713e-09 2.69371796e-09 2.502388355e-09 2.05554771e-09 1.405706525e-09 1.73088521e-09 2.526682515e-09 1.457074251e-09 1.273998403e-09 1.048614488e-09 5.958767445e-10 9.378917855e-10 1.396287777e-09 8.957672379e-10 1.031158097e-09 9.952892009e-10 1.590752379e-09 8.746480987e-10 9.308071778e-10 4.357418129e-10 1.862364675e-09 1.53098277e-09 8.104782761e-10 1.388100756e-09 8.017592288e-10 7.249976525e-10 7.303362317e-10 1.40273859e-09 1.047001166e-09 9.062087247e-10 1.433104129e-09 1.283897597e-09 1.076834712e-09 1.373398018e-09 7.320205292e-10 8.816596594e-10 1.053633593e-09 1.113824504e-09 1.512180535e-09 1.204461233e-09 1.600954239e-09 1.32371649e-09 8.105684638e-10 1.366236112e-09 1.201449975e-09 4.640613696e-10 5.024886232e-10 7.89425047e-10 2.801241292e-10 1.652131761e-10 5.293691675e-10 9.494181879e-10 4.541896559e-10 3.35574125e-10 3.977482718e-10 5.759404961e-10 3.664863905e-10 4.329806683e-10 7.173165393e-10 4.332011664e-10 4.922463435e-10 5.313464439e-10 9.538698022e-10 3.924236678e-10 6.618322222e-10 1.260862959e-10 5.284842305e-10 3.264544741e-10 4.27840858e-10 4.572758849e-10 5.298002511e-10 7.817264487e-10 5.167832776e-10 1.660525971e-10 6.076787077e-10 4.278400097e-10 6.319086366e-10 7.974323552e-10 5.771583823e-10 3.535757888e-10 5.793739408e-10 1.988644221e-10 2.026073712e-10 3.164683388e-10 1.886069002e-10 1.802801695e-10 9.291828289e-06 1.984762269e-05 +3.347512024e-10 9.961722983e-10 6.714604834e-10 2.394633317e-10 5.007059444e-10 2.681935162e-10 2.279556423e-10 2.794428752e-10 4.619512688e-10 9.98202568e-11 2.886801999e-10 3.160070506e-10 3.857108042e-10 5.202733862e-10 8.001536358e-10 4.291316255e-10 1.622982846e-10 6.874003802e-10 2.082206376e-10 2.716583127e-10 6.11810677e-10 5.094567662e-10 5.922657208e-10 1.811094668e-10 6.09045216e-10 2.238287345e-10 4.587794469e-10 3.322913406e-10 5.558107489e-10 5.266884712e-10 2.362709929e-10 4.064827857e-10 6.073780595e-10 8.667360329e-10 7.134834147e-10 9.698876377e-10 9.204341085e-10 4.022427658e-10 5.461533728e-10 3.431216658e-10 1.380625768e-09 8.67488279e-10 7.435563e-10 1.115037068e-09 5.928133274e-10 1.225210043e-09 6.653096847e-10 1.002010137e-09 1.198018336e-09 5.810762558e-10 1.132213812e-09 1.298222793e-09 1.207523306e-09 1.273972297e-09 1.701410974e-09 1.387602944e-09 1.242485684e-09 5.560974595e-10 8.717112203e-10 7.396878487e-10 9.486533808e-10 8.32682335e-10 6.595276983e-10 1.070294305e-09 1.559169717e-09 7.203709243e-10 1.390163624e-09 6.982831866e-10 7.669544413e-10 1.661437705e-09 1.433025077e-09 1.214966405e-09 1.046745026e-09 9.121790396e-10 8.665222143e-10 1.289185835e-09 8.202381534e-10 8.095817788e-10 1.165958557e-09 2.140410744e-09 1.789382103e-09 2.431440052e-09 1.751883538e-09 1.26415531e-09 1.420754684e-09 2.140187387e-09 1.099634446e-09 1.771867905e-09 2.40433062e-09 1.16946596e-09 1.253455134e-09 1.858068637e-09 9.677604844e-10 1.426932623e-09 1.061922397e-09 7.469049055e-10 6.85606875e-10 9.591959405e-10 1.072126745e-09 2.380377627e-09 3.0668578e-09 2.657510433e-09 3.532345398e-09 3.100799642e-09 3.280097039e-09 3.868767186e-09 1.083089183e-09 2.285514396e-09 4.488065616e-09 2.648376298e-09 1.221316532e-09 3.227653644e-09 1.746184611e-09 2.00024176e-09 1.956921498e-09 1.486295283e-09 3.10226137e-10 1.714992819e-10 8.342366003e-11 8.66201449e-11 2.297349732e-09 3.622339628e-09 3.553237127e-09 3.509016563e-09 8.204080679e-09 9.250984869e-09 6.625281764e-09 5.425878264e-09 6.435881003e-09 1.844579787e-09 2.191409031e-10 3.61058322e-10 3.574093643e-10 1.620570451e-10 2.24539972e-10 1.684295522e-10 3.278750418e-10 6.175199753e-11 3.157684368e-10 1.53304247e-10 9.777579465e-11 5.388403884e-10 5.000444921e-10 4.889578876e-10 5.748606122e-11 3.212195388e-10 1.573474733e-10 2.162335437e-10 1.539173134e-09 1.388937582e-06 1.324128595e-06 6.689824721e-10 1.856201276e-10 1.670414894e-10 2.990260505e-10 2.539976143e-10 5.030063916e-10 2.187459784e-10 3.773556639e-10 3.046293613e-10 2.19884226e-10 1.21764144e-10 2.639276471e-10 0 1.0123081e-10 3.075305931e-10 4.461082939e-10 1.514561583e-10 4.256567233e-10 1.471668894e-11 1.74551053e-09 5.590324507e-09 6.233417675e-09 5.955391801e-09 9.31576288e-09 8.20774929e-09 3.723905195e-09 3.795342984e-09 2.308204382e-09 1.85628219e-09 3.862151083e-10 2.442288257e-10 3.464750276e-10 3.599592026e-10 1.835672165e-09 2.47679663e-09 2.35663552e-09 2.229200516e-09 1.725121658e-09 1.447957227e-09 2.250826112e-09 4.059643673e-09 2.679621428e-09 2.132672704e-09 2.640378121e-09 2.061212717e-09 2.240316296e-09 3.827910328e-09 2.478653415e-09 3.422256412e-09 1.622333175e-09 1.249198487e-09 1.547494079e-09 5.984414335e-10 6.999033376e-10 1.469719516e-09 1.990227347e-09 1.78313777e-09 1.619852907e-09 1.517718382e-09 1.130049139e-09 1.972484048e-09 1.612589144e-09 8.960118322e-10 2.232282195e-09 1.858313436e-09 1.818256878e-09 2.174837805e-09 2.140197367e-09 1.768841298e-09 1.290685541e-09 1.343912153e-09 1.403372159e-09 8.868440898e-10 1.493469873e-09 1.221808661e-09 1.000846631e-09 1.332744704e-09 8.986293946e-10 1.762706174e-09 1.278394727e-09 1.146538506e-09 9.107277195e-10 9.769848281e-10 1.193562397e-09 9.649001371e-10 1.272136782e-09 5.661275703e-10 7.328059553e-10 8.753267258e-10 9.133983129e-10 5.126966163e-10 1.209215564e-09 9.871993343e-10 8.604509312e-10 1.0418475e-09 6.772559205e-10 9.271413207e-10 1.907033748e-09 1.178307945e-09 8.43262771e-10 1.027279937e-09 6.437018943e-10 1.380946283e-09 9.141526038e-10 7.924122172e-10 9.679618388e-10 8.44238592e-10 9.118870696e-10 8.948379814e-10 2.96011824e-10 7.535719397e-10 7.048998175e-10 5.824556941e-10 5.465488377e-10 1.774156017e-10 2.072239496e-10 7.202600366e-10 6.772311091e-10 6.299613302e-10 4.854469293e-10 8.126417201e-10 8.24770462e-10 4.504222553e-10 4.675413669e-10 3.970146434e-10 2.138470751e-10 1.79884974e-10 4.536616275e-10 2.439069306e-10 1.729371886e-10 2.898392358e-10 5.167459552e-10 2.604966212e-10 5.306290916e-10 9.581120401e-10 5.401385541e-10 4.502058533e-10 3.478131985e-10 6.317042321e-10 6.08641163e-10 5.061316115e-10 4.23426496e-10 2.413313728e-10 3.124182424e-10 3.70461775e-10 4.248073177e-10 6.396612421e-10 3.807607991e-10 1.434421272e-10 +2.332080164e-10 1.314265381e-10 5.175813309e-10 3.675314362e-10 4.917259293e-10 2.794747364e-10 6.84321698e-10 6.097083305e-10 1.958030058e-10 4.4136023e-10 3.260247478e-10 3.409512369e-10 3.586569498e-10 1.367560454e-10 4.852384958e-10 2.264100111e-10 6.129602309e-10 2.306936664e-10 4.462720893e-10 3.837223079e-10 6.15334329e-10 4.941285717e-10 4.0566897e-10 2.668713581e-10 4.223649068e-10 5.190189592e-10 5.702923807e-10 5.634520423e-10 1.148699201e-09 8.182394645e-10 5.990440337e-10 5.99436602e-10 8.00122385e-10 1.460049232e-09 4.973422324e-10 6.545277567e-10 6.545310454e-10 5.1988254e-10 1.817611629e-10 5.415254524e-10 7.957435975e-10 7.523379067e-10 9.538483262e-10 7.238894494e-10 1.046985362e-09 1.302819608e-09 1.778008995e-09 1.17709134e-09 7.020491151e-10 1.955332572e-09 7.995367946e-10 1.052348555e-09 5.666910864e-10 1.073933824e-09 1.069714457e-09 1.535277889e-09 8.945924898e-10 1.416903028e-09 8.656128052e-10 1.094642298e-09 8.819053123e-10 1.190617868e-09 1.153474721e-09 9.020034106e-10 9.594850979e-10 1.575514362e-09 7.393271647e-10 1.176647936e-09 9.925039059e-10 8.884634648e-10 1.30062908e-09 1.182645085e-09 1.021677793e-09 6.175258932e-10 7.049856458e-10 1.185431065e-09 8.067193656e-10 1.519694114e-09 9.212264022e-10 1.020720598e-09 1.337327112e-09 3.304281859e-09 2.659395659e-09 2.042706374e-09 1.955130435e-09 1.726727673e-09 2.661072309e-09 2.571399356e-09 1.627559207e-09 1.733409308e-09 1.844471023e-09 1.189021973e-09 1.657725721e-09 1.091545751e-09 8.318930063e-10 4.252249915e-10 4.362593709e-10 1.175362021e-09 1.367896678e-09 2.479040703e-09 3.011659149e-09 3.57956964e-09 4.049021655e-09 2.99163272e-09 3.159362102e-09 2.940120762e-09 2.060105286e-09 2.409612572e-09 3.655113717e-09 2.291921528e-09 2.313260716e-09 1.887584606e-09 2.288566601e-09 2.377519758e-09 8.627093916e-10 9.827045768e-10 3.926864733e-10 6.930964043e-10 2.250025914e-10 2.604960694e-10 1.551087571e-09 3.303468555e-09 3.097142602e-09 2.669461723e-09 5.914983055e-09 9.253328554e-09 6.979784812e-09 7.040574107e-09 4.541577105e-09 2.336844722e-09 3.850571067e-10 5.33199952e-11 7.012031162e-11 1.576118542e-10 5.429171333e-16 4.64562947e-11 5.929455371e-11 2.015384952e-10 1.02377515e-10 5.81851952e-26 3.75310412e-10 4.004130364e-10 3.092636033e-10 1.87350718e-10 1.605847166e-10 5.777876148e-10 3.10604928e-10 1.213594209e-10 0 6.358739446e-11 1.911046297e-10 5.221296022e-10 1.076021668e-10 1.737574558e-11 1.977906851e-10 1.152417126e-10 3.847279998e-10 5.657695438e-10 8.340154986e-11 2.954211095e-10 2.596486425e-10 4.096138858e-10 1.672475524e-10 1.161854143e-10 0 2.609629873e-10 2.374141723e-10 2.101722491e-10 2.468649833e-10 9.126876018e-11 2.42644008e-09 5.831430587e-09 6.56986821e-09 7.063248539e-09 7.18411997e-09 7.657145394e-09 3.88902318e-09 2.642096119e-09 4.838668866e-09 1.87806023e-09 8.672350569e-11 2.194760978e-10 0 6.788524835e-10 3.407420591e-10 1.614702493e-09 2.760636554e-09 1.272241588e-09 1.802577214e-09 3.235235661e-09 2.827873269e-09 3.146588505e-09 4.009240157e-09 3.205654382e-09 3.709435256e-09 2.084921322e-09 3.630267541e-09 2.704564061e-09 3.010432744e-09 2.377208425e-09 3.254828947e-09 1.77608935e-09 1.531387162e-09 6.957420897e-10 5.855812108e-10 1.034962261e-09 1.372041764e-09 1.759316898e-09 1.081992401e-09 1.72239082e-09 1.875597629e-09 1.910505496e-09 1.627505623e-09 1.851064744e-09 1.666912283e-09 1.892765617e-09 2.168806105e-09 2.114249241e-09 1.674596448e-09 1.311996504e-09 1.95108764e-09 1.735967234e-09 8.516012107e-10 9.371602696e-10 1.030425647e-09 1.318671916e-09 8.876513829e-10 1.219862961e-09 1.420899728e-09 1.684767804e-09 8.331306679e-10 1.111325761e-09 1.41727438e-09 1.45556225e-09 1.512186994e-09 1.334201141e-09 1.295542074e-09 1.354920402e-09 1.062008366e-09 1.054441847e-09 7.40397866e-10 9.655685816e-10 8.434145629e-10 1.157807234e-09 6.135374535e-10 9.631408525e-10 1.357197802e-09 1.136067979e-09 1.084822747e-09 8.190804953e-10 1.395285517e-09 9.08657236e-10 1.09321954e-09 9.019871386e-10 1.302300838e-09 1.050956729e-09 1.243770312e-09 6.858889646e-10 5.902960112e-10 7.533233928e-10 8.489999389e-10 9.509466602e-10 1.106490089e-10 6.479386855e-10 4.623454561e-10 5.441946262e-10 6.600674338e-10 1.164180937e-09 8.949270471e-10 7.059204503e-10 3.553612269e-10 8.747263911e-10 4.163372312e-10 5.720356441e-10 5.473600786e-10 1.181527847e-09 7.963037308e-10 3.137061366e-10 7.001848103e-10 2.421820519e-10 6.379491394e-10 5.33161765e-10 3.535205195e-10 5.189850594e-10 4.512009984e-10 7.873552869e-10 3.883260876e-10 8.788911335e-10 6.281990529e-10 4.891506503e-10 8.684416287e-10 4.955292563e-10 4.459243176e-10 6.450225089e-10 7.455376796e-10 6.971467744e-10 4.165607471e-10 3.462917152e-10 4.652238703e-10 4.221330627e-11 +2.491567637e-10 8.910818138e-10 2.996656128e-10 6.795595775e-10 5.146583249e-10 5.004447236e-10 3.113246265e-10 2.911598269e-10 5.737849564e-10 4.811791019e-10 4.042531571e-10 5.440663892e-10 2.855452882e-10 3.596071023e-10 5.070935702e-10 4.317893407e-10 6.285211922e-10 5.119313351e-10 6.684899399e-10 5.409352171e-10 5.061958034e-10 6.809231591e-10 6.692549503e-10 6.845996658e-10 5.451494936e-10 4.207757843e-10 5.209192812e-10 6.602114834e-10 5.141105677e-10 5.347226631e-10 6.399265431e-10 4.767876001e-10 5.065154538e-10 3.616623229e-10 6.904351693e-10 4.271652017e-10 3.143457009e-10 8.080635369e-10 4.060897362e-10 5.092361852e-10 9.52500629e-10 3.633661272e-10 9.881299756e-10 1.126463711e-09 6.718339649e-10 1.398958846e-09 1.231433573e-09 1.095345675e-09 1.31107204e-09 6.996178803e-10 1.111099022e-09 1.509619693e-09 9.204607021e-10 1.056126757e-09 1.322199066e-09 8.976213764e-10 1.155880404e-09 8.12718479e-10 8.869178323e-10 8.748233091e-10 1.04327775e-09 9.24976801e-10 1.64291758e-09 1.054698457e-09 1.146790418e-09 1.239130115e-09 1.035669571e-09 1.102029394e-09 1.082218906e-09 1.677445083e-09 1.589954506e-09 1.167009793e-09 7.360009329e-10 1.880404743e-09 1.11711285e-09 6.248015042e-10 9.950130382e-10 1.230708499e-09 1.558047928e-09 2.096496921e-09 1.482154031e-09 2.524235212e-09 1.833456883e-09 1.244189237e-09 2.246217481e-09 1.451966475e-09 2.891613067e-09 2.135305303e-09 2.510428941e-09 1.97370075e-09 2.057677908e-09 1.238076678e-09 2.557055875e-09 1.098268263e-09 7.998127582e-10 6.722738878e-10 5.888756086e-10 7.811061388e-10 8.811114468e-10 1.295551342e-09 3.16884935e-09 2.565542247e-09 2.453453197e-09 4.790694284e-09 3.465802573e-09 2.989720578e-09 3.533424905e-09 2.731642643e-09 5.004611292e-09 2.123819237e-09 2.768740168e-09 1.568953233e-09 2.10432832e-09 2.649398705e-09 1.802238593e-09 8.284333042e-10 3.292768702e-10 1.007415791e-10 2.103136328e-10 2.624843734e-10 1.818106377e-09 3.01681044e-09 3.596502082e-09 2.343526878e-09 7.352235077e-09 8.922530761e-09 7.312498383e-09 4.975658401e-09 4.622859777e-09 2.962775672e-09 2.334249972e-10 1.720792995e-10 0 2.336480597e-10 1.584591262e-10 1.315562119e-10 2.339112781e-10 5.246235725e-10 1.880059307e-10 4.478827901e-12 1.800217442e-10 1.236744102e-10 2.579282531e-10 4.805969025e-10 3.245187977e-10 2.126084982e-10 3.955088441e-10 2.261732424e-10 9.986208979e-11 2.861538087e-10 9.792288465e-11 3.637236712e-12 3.422961819e-10 0 3.717626317e-10 2.931049737e-10 2.497686984e-10 8.888415562e-11 9.92705776e-11 1.804144763e-10 3.535476656e-10 4.108741469e-10 3.119819619e-10 2.326372032e-10 1.061094457e-10 9.526984031e-11 3.21648893e-10 0 3.30154948e-10 2.436213754e-10 2.490421979e-09 5.93620028e-09 5.186474434e-09 8.875836958e-09 1.003494375e-08 5.747256148e-09 4.032651781e-09 2.719824844e-09 4.328454305e-09 1.434104701e-09 2.515258319e-10 4.745891345e-11 6.49603177e-10 2.100893458e-10 1.325021459e-09 2.501096431e-09 1.619281111e-09 1.50063732e-09 1.326241364e-09 2.408073531e-09 3.027714434e-09 4.054658834e-09 3.518661651e-09 2.799918339e-09 2.942352688e-09 2.044943705e-09 2.889315458e-09 3.219928499e-09 3.750612456e-09 3.754357451e-09 3.133382246e-09 6.748262583e-10 1.20211501e-09 2.25757093e-10 5.329081506e-10 7.248675181e-10 1.836175111e-09 1.196020898e-09 8.7599647e-10 1.808004848e-09 1.08988934e-09 3.107435301e-09 1.495481741e-09 2.451667139e-09 2.009041975e-09 1.298280649e-09 1.919476624e-09 2.781441116e-09 2.745919649e-09 2.014803062e-09 1.621266886e-09 1.931083437e-09 1.346790786e-09 7.312540269e-10 9.843009354e-10 9.052819347e-10 1.626023325e-09 1.347731418e-09 1.395655361e-09 9.306953419e-10 1.30692697e-09 9.685334899e-10 7.897893285e-10 9.18765988e-10 1.481868041e-09 7.861263509e-10 1.439505006e-09 6.877979581e-10 7.4566339e-10 7.921576872e-10 6.493631299e-10 1.539246607e-09 1.139703898e-09 1.095118141e-09 7.012831316e-10 1.645328538e-09 1.171380865e-09 1.669319134e-09 1.257553262e-09 1.606071191e-09 1.189646399e-09 1.196614866e-09 1.429212165e-09 5.66685771e-10 1.146858911e-09 9.926202392e-10 1.317237057e-09 5.187912109e-10 8.270548316e-10 3.460854979e-10 4.250024534e-10 5.31185512e-10 3.25881699e-10 5.854247065e-10 8.164196843e-10 4.001903927e-10 6.046291191e-10 3.601502551e-10 7.394343109e-10 4.455702187e-10 6.706198609e-10 3.610758279e-10 1.257410315e-09 5.173364428e-10 2.493730745e-10 2.843442538e-10 1.832168313e-10 4.121901414e-10 8.981907343e-10 4.937596128e-10 3.569770331e-10 1.141769977e-09 5.804527075e-10 6.736386503e-10 6.123749143e-10 4.619617154e-10 6.008232364e-10 4.010029232e-10 3.514276885e-10 6.921264682e-10 2.647335254e-10 5.170953854e-10 4.685184427e-10 6.759082802e-10 2.99484858e-10 1.272755317e-10 6.741721251e-10 4.872018227e-10 6.339780228e-10 6.481482489e-10 +8.149854555e-10 1.140811719e-10 6.260283117e-10 3.0951023e-10 3.114613469e-10 6.970965095e-10 7.112424768e-10 6.441609947e-10 3.271228602e-10 1.092145789e-09 4.294177565e-10 4.093905614e-10 6.851568304e-11 4.715231249e-10 5.281005002e-10 8.174990569e-10 2.303887584e-10 4.419860239e-10 4.344084506e-10 1.207040268e-10 7.769791309e-10 3.165262668e-10 5.24327556e-10 3.301600097e-10 2.480902241e-10 3.574698107e-10 4.312666222e-10 2.989006769e-10 5.367895101e-10 7.580255892e-10 6.309714236e-10 6.727484625e-10 5.19801107e-10 6.078047612e-10 5.216903608e-10 7.403354694e-10 9.687319062e-10 2.607376281e-10 5.125363708e-10 9.858597423e-10 5.258760244e-10 6.644077658e-10 6.584549687e-10 5.435174248e-10 1.565731312e-09 1.137437452e-09 1.715217007e-09 7.621960293e-10 1.231698098e-09 1.210034345e-09 1.300634417e-09 7.651853957e-10 1.3526087e-09 7.995297364e-10 1.285347602e-09 1.33821575e-09 1.383014056e-09 6.286828421e-10 1.026656286e-09 9.678104476e-10 1.43802033e-09 8.25831334e-10 1.867897206e-09 1.350212699e-09 1.536810059e-09 9.227678068e-10 9.674580163e-10 1.416335896e-09 1.839849338e-09 1.121451239e-09 1.191809075e-09 1.558301005e-09 1.145615022e-09 7.64968515e-10 1.085830624e-09 1.101177773e-09 1.215295334e-09 6.844123375e-10 8.138533346e-10 1.696267833e-09 2.535491093e-09 2.398098761e-09 1.906203696e-09 2.430060468e-09 1.916091461e-09 2.292655763e-09 1.223722941e-09 1.219130902e-09 2.704668822e-09 1.601936374e-09 1.747590949e-09 2.660529119e-09 1.525770778e-09 1.480290904e-09 1.385276881e-09 5.18700746e-10 6.024435673e-10 1.081237275e-09 1.184880632e-09 2.151015741e-09 2.865337996e-09 3.161337411e-09 3.220085641e-09 2.667211088e-09 3.372504691e-09 3.670635369e-09 1.522164092e-09 3.222002651e-09 4.103280314e-09 3.32093372e-09 2.100429569e-09 2.186184853e-09 1.772043791e-09 1.602678065e-09 2.306354757e-09 1.009035476e-09 2.491137274e-10 2.238556992e-10 3.637537723e-15 2.696358564e-10 1.345947106e-09 2.821197825e-09 3.354145611e-09 3.09506669e-09 7.840501372e-09 8.889400886e-09 9.558097685e-09 5.438117284e-09 6.205405201e-09 2.545008526e-09 3.841364384e-10 4.601253752e-10 1.649899604e-18 1.783814031e-10 2.402136248e-10 7.594660405e-11 9.571451289e-11 9.359237553e-11 1.778257697e-10 1.661050567e-10 1.224715234e-10 2.397467526e-10 1.898969693e-10 1.991833133e-10 0 1.236397769e-10 6.791670294e-11 8.467065112e-11 1.55751592e-10 1.204335889e-10 1.229276962e-10 2.559013051e-10 2.843248498e-16 1.213342417e-10 3.521680657e-10 2.99550514e-10 6.916081728e-11 1.558113477e-10 2.687059096e-10 2.298313487e-10 0 1.589708168e-10 2.41170484e-10 1.279909545e-10 2.978119313e-10 3.425922331e-10 1.149235342e-10 4.721190359e-10 2.08742886e-11 2.006119778e-10 1.994858241e-09 4.149975229e-09 5.615223729e-09 5.923429191e-09 8.791067524e-09 6.637456995e-09 2.299976028e-09 2.982591153e-09 2.273618436e-09 1.81226262e-09 1.562273253e-10 4.60259553e-10 8.892797585e-11 7.13864978e-11 1.476240361e-09 2.069216381e-09 1.490526366e-09 2.35322536e-09 2.103771251e-09 2.21795723e-09 2.293995828e-09 4.277179082e-09 4.026935036e-09 2.134423358e-09 1.83377541e-09 3.409682264e-09 2.07569556e-09 2.352568781e-09 3.111274782e-09 2.527055647e-09 2.357211532e-09 1.195369583e-09 9.926188107e-10 5.124423757e-10 9.454507314e-10 1.233837742e-09 9.389000171e-10 1.55384878e-09 1.800110155e-09 1.681950467e-09 1.778971604e-09 2.283323013e-09 1.959660966e-09 1.547292563e-09 2.553027694e-09 2.441662813e-09 2.056927309e-09 2.031810846e-09 2.872773287e-09 2.105360979e-09 1.185337313e-09 1.22438225e-09 1.467449139e-09 1.02202138e-09 1.111486228e-09 9.699957041e-10 4.906690501e-10 1.193552062e-09 9.894359077e-10 1.081756475e-09 1.277256719e-09 1.088510598e-09 1.600695829e-09 1.462466462e-09 1.189729007e-09 1.526175905e-09 1.316958976e-09 8.932490271e-10 9.003861469e-10 1.287423706e-09 7.796445784e-10 1.214331929e-09 1.449884108e-09 1.045180828e-09 1.128561042e-09 1.075071893e-09 1.575525326e-09 9.409989547e-10 1.078073008e-09 7.15496019e-10 1.05337908e-09 1.498351404e-09 1.41652182e-09 1.151620835e-09 1.105377243e-09 7.858304283e-10 2.082153103e-09 9.110281374e-10 5.048489771e-10 1.211264821e-09 3.202773192e-10 5.317771e-10 6.247146891e-10 2.514146168e-10 8.257314746e-10 6.033649131e-10 3.103481947e-10 5.888108177e-10 4.942289783e-10 3.784431148e-10 3.516558892e-10 6.162650762e-10 8.447862895e-10 6.975276286e-10 2.350931169e-10 6.737879146e-10 5.461024987e-10 3.839219476e-10 7.992566142e-10 1.732344802e-10 3.726169845e-10 7.375196577e-10 7.766916687e-10 2.107038408e-10 3.863821679e-10 4.989407106e-10 5.667074853e-10 4.619259968e-10 2.182957372e-10 8.839049094e-10 2.514569169e-10 5.642883842e-10 6.656554244e-10 6.283032981e-10 2.076390148e-10 4.256412496e-10 6.823101831e-11 3.901572884e-10 7.128020242e-10 6.137287744e-10 +5.493676554e-10 1.191155192e-10 2.215912109e-10 5.579960764e-10 8.729546663e-10 1.392654186e-10 2.52607233e-10 5.010998202e-10 4.830794159e-10 4.569457552e-10 4.882010739e-10 8.804968766e-10 5.949575107e-10 2.718794922e-10 3.02581851e-10 4.507944811e-10 7.510004517e-10 3.5717746e-10 3.502394251e-10 5.300606782e-10 6.319131537e-10 5.455094451e-10 1.657958836e-10 1.679269974e-10 9.199907226e-10 9.609118686e-10 3.769022442e-10 4.378619287e-10 7.711172364e-10 7.008637715e-10 3.159306034e-10 5.177171156e-10 6.564907318e-10 9.347522447e-10 6.660213178e-10 5.414319847e-10 6.86865527e-10 4.422658903e-10 5.514345186e-10 8.573045212e-10 6.875032753e-10 3.614203673e-10 1.415901714e-09 1.262371178e-09 8.548421411e-10 8.081847876e-10 7.012056874e-10 1.015341352e-09 8.12593014e-10 7.811940428e-10 1.528077779e-09 1.084854788e-09 1.436249905e-09 1.128375728e-09 8.558405204e-10 1.250274789e-09 1.220346236e-09 6.187496623e-10 6.000175036e-10 5.195783126e-10 7.300468484e-10 1.064759744e-09 9.844923311e-10 1.19403059e-09 2.114291278e-09 1.287652232e-09 7.198273151e-10 1.126694789e-09 7.965787047e-10 1.299045876e-09 1.429569828e-09 5.642323499e-10 1.01765891e-09 1.617069847e-09 8.999728503e-10 4.768149903e-10 1.17469917e-09 1.235484503e-09 1.357590305e-09 1.661145758e-09 1.728331496e-09 2.772836424e-09 2.371731448e-09 1.173504531e-09 1.718842667e-09 1.545294232e-09 2.10245165e-09 1.574087266e-09 2.171573856e-09 2.049577689e-09 1.656230388e-09 8.969469029e-10 1.14195219e-09 1.188105232e-09 5.176689592e-10 2.468995373e-10 6.739449392e-10 1.204338007e-09 4.685067701e-10 2.095016093e-09 1.910840679e-09 2.836352164e-09 3.564235875e-09 2.693151784e-09 2.575986393e-09 1.688294892e-09 2.401848266e-09 4.203581224e-09 4.34528703e-09 3.428479401e-09 2.03282697e-09 2.230523473e-09 1.611398041e-09 2.164257762e-09 2.52459877e-09 8.392999215e-10 3.626968191e-10 1.895155819e-10 4.461251733e-10 2.78767904e-10 2.438831855e-09 2.540547897e-09 4.0918811e-09 2.301925792e-09 6.964671202e-09 8.07317933e-09 7.37565296e-09 6.841050839e-09 5.319222424e-09 3.468404315e-09 1.013246212e-10 2.335281951e-10 1.42720545e-10 2.059342182e-10 2.505323277e-16 2.672917595e-10 9.562227314e-11 2.771842987e-10 2.637627417e-10 8.155051769e-11 1.310890184e-10 3.825507176e-10 2.418861638e-10 3.557120337e-13 2.007348942e-10 8.467458246e-11 1.997979839e-10 2.547811476e-10 6.330676492e-11 8.577411026e-12 4.54929365e-10 6.507338883e-11 3.101289295e-10 3.545607766e-10 3.800707636e-11 4.171663261e-18 7.154204426e-11 2.591686529e-10 7.400998616e-11 1.654611703e-10 1.525914564e-10 3.977999678e-10 2.221772642e-10 2.652401503e-10 3.671640888e-15 1.750984119e-10 4.047649258e-12 4.591698399e-12 2.579023971e-10 3.612598108e-10 2.810537828e-09 5.917633626e-09 8.284263116e-09 6.054493811e-09 7.379738606e-09 6.628790113e-09 3.425242929e-09 3.548084067e-09 3.769934507e-09 1.89699217e-09 2.707127677e-10 7.564193417e-11 6.599422152e-11 5.949499609e-10 9.315152252e-10 2.423185195e-09 2.263343341e-09 2.544157203e-09 2.639882813e-09 2.418423261e-09 3.286281455e-09 3.036085412e-09 3.577992478e-09 1.641921098e-09 3.011396022e-09 2.509657407e-09 5.090041878e-09 3.526738772e-09 3.324559522e-09 2.604878341e-09 2.405421655e-09 7.962935033e-10 7.058065934e-10 7.016136468e-10 3.990946862e-10 1.101222398e-09 1.02043131e-09 1.433250097e-09 9.928445433e-10 1.999685762e-09 1.272380486e-09 1.529071295e-09 2.319645612e-09 1.977760901e-09 2.22881856e-09 2.006220474e-09 2.034405386e-09 1.753360527e-09 1.811445427e-09 2.245802316e-09 1.255501126e-09 1.290192311e-09 8.267693564e-10 1.158513012e-09 1.715003805e-09 1.780495111e-09 1.010999376e-09 1.067340481e-09 1.278844365e-09 1.714323771e-09 7.109500696e-10 1.588236811e-09 1.052187143e-09 1.080973057e-09 1.509479684e-09 7.791956324e-10 1.113049804e-09 7.596266594e-10 7.043741166e-10 1.080679209e-09 1.223871522e-09 7.688899205e-10 1.14792066e-09 1.718517322e-09 1.055414531e-09 9.519322164e-10 1.443327684e-09 1.096332547e-09 1.231419299e-09 1.658108985e-09 8.743795627e-10 1.199236019e-09 9.606215955e-10 1.137756646e-09 1.285104171e-09 8.421904592e-10 5.794153658e-10 9.738237348e-10 7.492791627e-10 4.788100194e-10 1.010612174e-09 9.019392548e-10 6.355166931e-10 5.557063447e-10 4.677018659e-10 4.562477572e-10 4.626877764e-10 3.312552384e-10 7.629631972e-10 7.029886507e-10 6.75302516e-10 4.150194266e-10 1.582063651e-09 6.348390087e-10 4.057341749e-10 4.744291033e-10 5.880915924e-10 3.502256961e-11 5.56939941e-10 7.02801344e-10 4.967020021e-10 3.708828916e-10 1.011122441e-09 4.36271688e-10 1.620108052e-10 3.711849349e-10 1.178376135e-09 5.834190143e-10 5.020240557e-10 1.332563555e-09 5.813438686e-10 2.031316186e-10 2.9000257e-10 8.682486138e-10 5.445948099e-10 3.14618549e-10 1.200676472e-10 3.809508082e-10 4.858501412e-10 1.565055552e-11 +8.244654605e-10 3.462660637e-10 1.894373343e-10 4.055741028e-10 2.187507005e-10 6.664963133e-10 5.36542837e-10 1.252609289e-09 4.701932829e-10 5.899580478e-10 7.416387309e-10 1.627101942e-10 7.625132298e-10 2.567821901e-10 2.9824701e-10 5.131565788e-10 6.811917998e-10 1.820811934e-10 7.097930667e-10 3.038464546e-10 1.041718769e-10 5.38610144e-10 5.588052671e-10 3.538446749e-10 4.029277857e-10 5.076760152e-10 5.513609696e-10 5.031025618e-10 2.789035166e-10 5.158899355e-10 8.748881894e-10 2.643471086e-10 2.819650991e-10 7.520813146e-10 8.006449559e-10 2.993409533e-10 2.220127335e-10 4.93521463e-10 6.393195825e-10 4.517381246e-10 1.235356704e-09 5.232268664e-10 8.468323731e-10 9.225659724e-10 1.066277804e-09 1.012473308e-09 1.074993077e-09 7.761508906e-10 1.013407805e-09 9.021830916e-10 8.826030728e-10 7.318179499e-10 7.333884286e-10 9.845854332e-10 1.615510366e-09 1.2216815e-09 1.069163813e-09 1.528748953e-09 1.069436983e-09 1.732168679e-09 3.938276057e-10 7.995755447e-10 8.722338899e-10 1.113131625e-09 9.328562133e-10 1.335287688e-09 1.189984744e-09 7.44705192e-10 7.727141367e-10 1.073588774e-09 1.794772e-09 1.087669941e-09 6.80385735e-10 7.667578545e-10 1.148364761e-09 6.399034597e-10 1.294802539e-09 6.557723974e-10 1.773287137e-09 2.026659823e-09 2.488422764e-09 2.314813615e-09 2.914075305e-09 2.811150303e-09 2.028464121e-09 2.054398069e-09 1.980072618e-09 2.115185872e-09 1.699327643e-09 2.291788777e-09 1.210589148e-09 1.64770908e-09 1.929520725e-09 2.07250257e-09 1.127549611e-09 6.930062265e-10 4.132766151e-10 1.162022782e-09 1.213313373e-09 2.4713333e-09 3.945709481e-09 3.995846923e-09 2.190769945e-09 3.697628068e-09 2.555142229e-09 2.681383204e-09 3.114205933e-09 4.11378061e-09 5.367757806e-09 3.172861928e-09 1.459272607e-09 2.526464848e-09 1.877435909e-09 1.051245566e-09 2.289208739e-09 1.472135337e-09 3.548511194e-10 1.731025002e-10 1.589783535e-10 4.458590525e-10 1.370638147e-09 2.972730752e-09 2.77321906e-09 2.67980136e-09 4.541456089e-09 7.556360634e-09 8.582149751e-09 6.523307109e-09 5.851942777e-09 3.988247385e-09 5.062428287e-10 4.177011678e-10 3.958593349e-10 4.377953284e-10 9.668300016e-11 1.766608667e-10 1.024446694e-10 1.822987015e-10 1.484151266e-10 9.236886757e-11 1.550774285e-10 1.218437562e-10 1.80696987e-10 7.865803131e-11 5.293606477e-10 2.750872027e-10 4.358292748e-10 1.003947739e-14 4.344199568e-10 1.220515309e-10 2.936288318e-10 1.433062543e-12 9.423740177e-11 2.412946792e-10 4.548017307e-10 3.541956146e-10 8.714506212e-11 3.136593691e-10 2.68191342e-10 1.51146796e-10 2.62551295e-10 1.562059665e-10 2.501599214e-10 2.305159834e-11 1.854421469e-10 5.665817675e-11 5.396701685e-11 2.154670622e-10 1.003457338e-10 7.889944138e-10 3.013651374e-09 4.386101938e-09 6.365940783e-09 6.518094047e-09 7.392871218e-09 5.768828414e-09 2.78847775e-09 3.148493184e-09 4.04109314e-09 1.400843578e-09 3.43277177e-10 3.230176698e-10 3.588285529e-11 3.725509183e-10 1.870273735e-09 2.664707401e-09 1.559749371e-09 2.387779408e-09 1.755210387e-09 2.54143311e-09 2.145931672e-09 3.106125622e-09 3.715676797e-09 1.909049667e-09 1.573391181e-09 3.889478382e-09 2.41479372e-09 2.268640614e-09 4.024472992e-09 3.401284782e-09 2.366968116e-09 1.01530817e-09 1.158179442e-09 4.508978738e-10 2.926890169e-10 9.326991435e-10 1.353333105e-09 1.656280635e-09 2.032887043e-09 2.288360151e-09 3.058849275e-09 1.237627976e-09 1.760188232e-09 1.830191078e-09 1.975283864e-09 2.369738e-09 2.19101217e-09 2.132937132e-09 1.601758385e-09 1.927793634e-09 1.326671689e-09 2.323598821e-09 1.319620031e-09 1.465593784e-09 1.2555163e-09 9.879134852e-10 1.117147613e-09 1.551726622e-09 1.217153437e-09 1.649341241e-09 1.312221126e-09 8.817878521e-10 1.096458122e-09 1.386771971e-09 8.899860126e-10 1.012214802e-09 4.989756669e-10 9.282845009e-10 9.817695615e-10 7.104152752e-10 9.838789086e-10 1.53958169e-09 7.744978181e-10 7.014274775e-10 1.178302847e-09 1.389924877e-09 1.797753172e-09 1.075962034e-09 1.186806835e-09 8.942522649e-10 5.634759622e-10 1.156114334e-09 8.385281992e-10 9.689219469e-10 7.559415288e-10 1.07093715e-09 8.565324063e-10 7.491188498e-10 7.552374665e-10 8.278342067e-10 4.981804193e-10 7.967537177e-10 2.593582018e-10 6.479262693e-10 5.620150784e-10 3.048720129e-10 3.899642674e-10 5.518935891e-10 4.74416507e-10 7.993155822e-10 7.714522389e-10 6.99044343e-10 2.811155666e-10 9.358438233e-10 4.746027747e-10 3.542378147e-10 4.852689425e-10 3.304031332e-10 1.112313632e-09 6.144042218e-10 8.123354233e-10 1.041459529e-10 3.422923859e-10 6.577126308e-10 1.849502847e-10 2.956973547e-10 4.273563373e-10 4.858665222e-10 5.724793272e-10 3.454551912e-10 4.958533457e-10 4.422125523e-10 4.505581947e-10 2.75340616e-10 1.96433317e-10 4.383575528e-10 8.213888846e-10 2.431430976e-10 3.43210231e-10 7.886405836e-11 +5.992658582e-10 6.157124432e-10 2.857435236e-10 6.437184088e-10 6.272381671e-10 2.07045026e-10 2.799087165e-10 6.489723328e-10 4.358369256e-10 6.7983018e-10 1.053465985e-10 3.813843331e-10 2.963462827e-10 4.257713245e-10 7.829186326e-10 1.758216891e-10 7.790620824e-10 7.93400057e-10 4.407178963e-10 6.633765846e-10 2.544662979e-10 9.776827284e-10 7.719669158e-10 1.474200673e-10 6.047546035e-10 3.945677166e-10 5.762130198e-10 5.011003738e-10 7.047799304e-10 5.929399342e-10 6.382640719e-10 8.800853451e-10 8.095271536e-10 6.006777098e-10 4.538072546e-10 5.845551041e-10 8.013384872e-10 4.944389574e-10 5.224854426e-10 8.856205527e-10 7.765445104e-10 1.370740606e-09 7.886951416e-10 1.099089134e-09 1.194213592e-09 1.098247716e-09 1.184026345e-09 1.534444919e-09 9.837685104e-10 1.335544899e-09 1.167916691e-09 1.506334001e-09 7.533441839e-10 1.383029048e-09 9.312066326e-10 1.358653293e-09 6.396279382e-10 6.756040203e-10 8.569843993e-10 6.852661599e-10 7.48265575e-10 1.101279632e-09 8.863539403e-10 1.736609432e-09 1.190297175e-09 1.229050473e-09 1.362468358e-09 7.67362891e-10 8.231489549e-10 1.206785644e-09 1.34202038e-09 1.556468298e-09 9.453728752e-10 1.119182651e-09 9.669007436e-10 1.56797739e-09 5.59551786e-10 9.759868778e-10 1.859464068e-09 1.724829315e-09 1.45911621e-09 3.395342657e-09 2.422848312e-09 2.140249764e-09 1.9390162e-09 1.623805648e-09 1.28491228e-09 1.206181603e-09 1.873249848e-09 1.82025981e-09 2.820283049e-09 1.902297203e-09 1.502827068e-09 1.300594664e-09 6.598733154e-10 3.98302308e-10 9.819055396e-10 9.351365736e-10 1.764928787e-09 2.411379321e-09 1.804253613e-09 4.301253305e-09 4.020361386e-09 1.824945421e-09 3.206303647e-09 2.059295229e-09 2.255572943e-09 4.112942544e-09 4.094633432e-09 3.283249156e-09 2.516495657e-09 1.111572105e-09 2.447503387e-09 2.447813181e-09 2.07819444e-09 1.298407664e-09 6.483717793e-10 7.448856645e-11 1.97442436e-33 3.411028644e-13 1.707992518e-09 3.029268997e-09 4.705240635e-09 2.304260642e-09 3.08379986e-09 8.547977775e-09 6.550803858e-09 5.295943024e-09 4.206702341e-09 4.132042569e-09 9.510957707e-10 5.367439766e-10 2.078180665e-10 8.729691375e-15 4.202878698e-10 2.728686695e-10 2.324967607e-10 1.800690995e-10 2.382221424e-17 3.277867567e-10 2.105664268e-10 4.628417591e-10 2.693106044e-10 3.626057253e-10 3.27929944e-10 4.896624364e-10 7.537622798e-11 2.995390526e-10 2.038133816e-10 1.417515292e-10 1.591914166e-11 4.068071492e-10 1.581458338e-10 1.706078953e-10 4.493838203e-10 8.722506467e-11 1.439631081e-11 3.453687352e-10 1.799895344e-10 1.900175925e-10 8.993629641e-11 1.497808751e-10 2.717746173e-10 0 1.655952903e-10 2.761289879e-10 2.00852706e-10 1.308613848e-10 1.585410367e-10 1.108621388e-09 3.198275455e-09 5.919298435e-09 6.599278363e-09 7.137473876e-09 8.142406557e-09 5.080312709e-09 3.887538104e-09 3.724062293e-09 3.270661673e-09 1.124732743e-09 2.151107957e-10 4.737847205e-10 1.021608101e-10 3.624522684e-10 1.451188808e-09 1.176200383e-09 2.242672233e-09 2.607552049e-09 9.219525212e-10 1.916002367e-09 2.965477115e-09 2.914228156e-09 4.993462598e-09 3.511259699e-09 1.982671608e-09 2.506748527e-09 2.896315225e-09 3.093936666e-09 3.140401567e-09 2.598970601e-09 1.668953275e-09 1.343270509e-09 1.439273135e-09 5.918900391e-10 3.33858716e-10 1.163574918e-09 1.761409584e-09 1.756385027e-09 1.56002393e-09 9.415838976e-10 2.673633288e-09 2.129212379e-09 2.064454485e-09 1.703017957e-09 1.739147856e-09 2.412660386e-09 1.981377876e-09 2.043606196e-09 2.13566679e-09 2.346845832e-09 2.70350684e-09 1.146857124e-09 7.422837597e-10 9.663978932e-10 6.804339975e-10 1.528813478e-09 8.292452616e-10 1.539006428e-09 1.444893943e-09 1.484229294e-09 1.373051888e-09 1.403203333e-09 1.455120012e-09 1.943395841e-09 1.128074011e-09 8.077307918e-10 1.345094246e-09 6.436381217e-10 7.841370408e-10 1.012599268e-09 8.813609047e-10 1.270177462e-09 1.158294698e-09 1.026661753e-09 8.732649743e-10 1.183002871e-09 1.211452193e-09 8.805081939e-10 1.518557255e-09 1.238527111e-09 8.662588345e-10 1.364553922e-09 8.290496639e-10 7.616361414e-10 1.443235574e-09 1.599521261e-09 6.037561891e-10 8.310835437e-10 7.998297728e-10 4.625372421e-10 6.189096316e-10 1.492946614e-10 6.457602154e-10 6.518326689e-10 3.895104009e-10 4.86561607e-10 5.684516757e-10 8.304001892e-10 5.947642353e-10 3.540952128e-10 5.570456953e-10 3.207736935e-10 4.121238213e-10 7.805614247e-10 7.334605431e-10 3.979905887e-10 6.968157228e-10 7.774879488e-10 4.840043117e-10 4.315864452e-10 8.783909737e-11 3.567927104e-10 4.274770051e-10 6.00076504e-10 5.974216755e-10 7.386346085e-10 7.016960996e-10 4.483185201e-10 7.5245667e-10 8.5662649e-10 5.98348891e-10 4.902440618e-10 7.612643565e-10 1.651894192e-10 5.878457247e-10 1.575953738e-10 9.147973774e-11 4.898206388e-11 6.212237459e-10 2.162696684e-10 +3.583959743e-10 2.591975692e-10 7.251357138e-10 5.431383867e-10 2.393235104e-10 4.788322101e-10 6.680706266e-10 1.531201074e-10 9.617780555e-10 1.115754773e-09 2.966772327e-10 3.820768969e-10 5.650080872e-10 5.030459253e-10 9.730659924e-10 8.895487667e-10 2.493365134e-10 3.051988015e-10 4.233657694e-10 2.722625874e-10 2.283709542e-10 1.073505408e-09 9.88432038e-11 3.564552218e-10 8.379294231e-10 4.022131936e-10 4.621178268e-10 5.245420833e-10 3.38964226e-10 3.143282952e-10 1.979645567e-10 6.403267788e-10 6.045481718e-10 3.915239213e-10 5.943813719e-10 4.014403588e-10 4.561777482e-10 6.223478411e-10 3.191264321e-10 3.357402143e-10 4.66994628e-10 7.041359795e-10 3.496190784e-10 1.751210442e-09 1.947595893e-09 8.575275811e-10 7.97682905e-10 9.433683227e-10 1.289402978e-09 8.085125372e-10 1.242319822e-09 6.660736479e-10 9.528182346e-10 1.648662642e-09 1.040378095e-09 7.885674081e-10 6.267847666e-10 1.187453144e-09 7.538505355e-10 1.243169627e-09 1.149709673e-09 7.574055453e-10 1.09518311e-09 1.505177406e-09 1.174792334e-09 1.456573653e-09 1.296309879e-09 1.385206879e-09 9.536703704e-10 1.292447421e-09 1.007565891e-09 1.666668902e-09 1.275644744e-09 6.938117938e-10 9.342624971e-10 1.693313314e-09 1.351220895e-09 2.608575904e-10 9.662932129e-10 2.492186806e-09 1.08697382e-09 2.406376587e-09 1.100448446e-09 2.050703617e-09 2.138759564e-09 2.889849164e-09 2.248859997e-09 2.011075984e-09 2.016133625e-09 1.800628777e-09 1.725006766e-09 1.725044559e-09 2.696758061e-09 1.038093853e-09 1.126110599e-09 6.097839835e-10 5.064070418e-10 1.097390737e-09 1.62451335e-09 2.307267088e-09 3.288416611e-09 3.159639623e-09 3.538453417e-09 2.973035322e-09 3.078991886e-09 1.900993184e-09 2.633557532e-09 3.312286344e-09 4.271455349e-09 2.901574308e-09 1.869699415e-09 1.949369464e-09 1.901348278e-09 2.565937607e-09 2.317090457e-09 1.453902264e-09 5.325759751e-10 2.148117229e-10 2.803105517e-10 3.647848946e-10 8.418252057e-10 3.074965014e-09 3.865935262e-09 3.044454242e-09 5.357936977e-09 8.43970482e-09 9.86025053e-09 4.888836082e-09 5.39732533e-09 3.76535234e-09 4.885455357e-10 6.913629631e-11 1.942022185e-10 1.860600306e-10 3.17043092e-10 2.127184838e-10 2.325196643e-10 1.30443179e-10 1.64689861e-10 1.072068664e-10 3.351492481e-10 1.897796241e-10 1.026440355e-10 1.457718584e-10 2.768253599e-10 3.447051752e-15 9.12487132e-11 2.05274969e-10 5.097239904e-10 2.293262655e-15 2.692751752e-10 2.548751917e-10 5.391186075e-10 3.606695921e-19 3.856783018e-10 1.254998134e-10 6.55088599e-17 2.758841327e-10 2.253502167e-10 2.168037699e-10 1.66003603e-10 1.41020486e-10 3.151406013e-10 0 1.632914111e-10 2.017496586e-12 1.04650652e-10 3.497162154e-10 1.032349233e-10 4.269190008e-10 3.856969463e-09 7.14128339e-09 7.87516424e-09 7.013231168e-09 7.18979281e-09 4.675156591e-09 2.744545296e-09 2.487872802e-09 2.295978053e-09 1.667584538e-09 3.247483871e-10 5.781463337e-11 1.774626558e-10 3.844721684e-10 1.288008443e-09 2.324077758e-09 2.249437782e-09 2.476954206e-09 1.560691827e-09 2.400363345e-09 3.365144899e-09 4.74482725e-09 3.270128341e-09 3.144011571e-09 2.453949875e-09 3.715443562e-09 2.698042929e-09 2.223146204e-09 3.118490572e-09 3.09726349e-09 3.147686442e-09 1.278343074e-09 1.040740307e-09 8.904062805e-10 3.262695591e-10 9.290905657e-10 1.207506103e-09 1.594115041e-09 1.15891511e-09 1.49573395e-09 1.906289385e-09 1.508066877e-09 1.408844044e-09 2.506838972e-09 1.388842674e-09 1.492871406e-09 1.292490871e-09 1.865653974e-09 2.233725432e-09 1.535534823e-09 1.964497037e-09 1.543585309e-09 7.790592195e-10 1.495572246e-09 1.013520504e-09 6.530305566e-10 1.751161328e-09 6.692665658e-10 4.674381952e-10 4.875355542e-10 1.237369699e-09 1.146014276e-09 1.163952175e-09 1.706137908e-09 1.223643136e-09 7.90678238e-10 9.612277905e-10 1.270744862e-09 3.385038229e-10 3.928894456e-10 9.738754449e-10 1.272097842e-09 9.088620068e-10 8.252064088e-10 1.045996602e-09 1.279201673e-09 9.43884217e-10 1.834771647e-09 1.33857565e-09 9.290807575e-10 1.245454018e-09 1.734495691e-09 1.025626761e-09 7.143374997e-10 1.100496003e-09 1.037402538e-09 1.031428194e-09 7.952215728e-10 5.245490886e-10 5.372996433e-10 5.537124592e-10 4.748137501e-10 3.200380277e-10 6.438988238e-10 5.48019935e-10 4.828463011e-10 6.377864197e-10 6.65093398e-10 8.312499509e-10 6.287424119e-10 3.525426612e-10 2.837704793e-10 8.561182881e-10 4.065132707e-10 1.606425325e-10 4.409314421e-10 1.560710871e-10 4.029416415e-10 3.038820433e-10 6.072707057e-10 1.710099466e-10 4.494810622e-10 6.782073952e-10 3.844928716e-10 3.543644166e-10 2.794659928e-10 4.190500888e-10 1.799527811e-10 4.483987654e-10 4.548167114e-10 3.767963723e-10 4.323277179e-10 5.003122567e-10 5.354615381e-10 4.721942713e-10 4.004039693e-10 5.532902195e-10 5.806766816e-10 2.345391783e-10 1.347557338e-10 +2.504644336e-10 2.782472613e-10 7.213218404e-10 4.335092149e-10 9.79650058e-10 4.235164366e-10 3.797622583e-10 3.363516092e-10 5.251145349e-10 2.836867751e-10 5.602623902e-10 4.080795e-10 2.646749724e-10 3.020838848e-10 2.121804549e-10 2.51362833e-10 3.430593612e-10 2.497252354e-10 3.145549591e-10 2.085111845e-10 4.806654548e-10 4.484008088e-10 5.353265924e-10 2.89171483e-10 9.209602879e-10 1.258098869e-10 6.794561234e-10 3.572114561e-10 4.436755563e-10 6.509229171e-10 3.59426005e-10 2.680298222e-10 6.619023213e-10 7.757633607e-10 5.232291938e-10 4.556243237e-10 9.090188326e-10 3.879219883e-10 2.387361817e-10 6.019965085e-10 6.299615115e-10 6.875224325e-10 1.040116583e-09 8.82092699e-10 1.278938459e-09 1.302854562e-09 6.877933189e-10 9.299805327e-10 8.126213301e-10 1.033903421e-09 8.262182614e-10 1.085274051e-09 1.327455966e-09 1.278332402e-09 1.322129194e-09 1.101801357e-09 6.515684693e-10 1.314076212e-09 1.133693874e-09 1.222163999e-09 5.240848102e-10 5.440335437e-10 5.540775047e-10 1.505991471e-09 1.312035851e-09 1.230458878e-09 1.074642857e-09 1.16254342e-09 1.386282108e-09 1.900972234e-09 1.118007336e-09 1.908832241e-09 1.261972976e-09 1.913488629e-09 9.156651703e-10 1.120460897e-09 1.784688507e-09 1.142512518e-09 1.34574535e-09 2.495612198e-09 1.956967037e-09 1.890429756e-09 2.315401606e-09 1.86269487e-09 2.194430028e-09 1.113847488e-09 1.677834118e-09 2.5285729e-09 1.721799425e-09 1.921017387e-09 1.711831353e-09 1.999664402e-09 1.49437657e-09 1.169285077e-09 8.916124517e-10 2.916801232e-10 2.671367055e-10 7.588933414e-10 6.304345454e-10 2.353995256e-09 2.475713834e-09 2.293335218e-09 3.624300534e-09 4.018689752e-09 3.931782955e-09 2.19817219e-09 1.541857787e-09 4.163155442e-09 3.156601077e-09 3.894982194e-09 3.061717446e-09 1.726471085e-09 2.024376393e-09 1.948676496e-09 1.389510331e-09 1.39843428e-09 3.447725169e-10 2.492040197e-10 3.58748911e-10 1.612425427e-10 1.590941332e-09 3.431306339e-09 4.011484918e-09 3.649078557e-09 4.584817115e-09 7.377769714e-09 7.815130348e-09 5.826535914e-09 5.383745096e-09 2.778581676e-09 9.416317488e-10 3.00715085e-10 2.24090405e-10 7.614373581e-11 1.152463968e-10 7.784231489e-11 1.388094614e-10 2.901675479e-10 2.970400451e-10 1.764482144e-10 1.377272573e-10 2.27811788e-10 4.287089405e-10 2.035817703e-10 1.766379342e-12 2.108780912e-10 1.655018442e-10 2.753434609e-10 1.781635992e-10 1.753636551e-15 1.484561552e-10 5.67843155e-10 2.72157293e-10 1.100932123e-10 3.177361592e-10 1.579453516e-10 3.118292363e-10 2.600292049e-10 2.784719529e-10 1.121581675e-28 2.951946301e-10 3.840898844e-10 3.415588239e-10 2.226515069e-10 1.873350817e-10 8.579413918e-11 2.986782991e-14 2.776108879e-10 2.86738212e-10 1.120190948e-09 5.531404653e-09 4.752982648e-09 5.494285576e-09 6.621942079e-09 8.079599168e-09 3.267596477e-09 2.470469549e-09 2.997880343e-09 3.121916704e-09 9.431283897e-10 2.127211715e-10 7.087496055e-11 7.100684293e-10 6.696558418e-10 2.08592517e-09 2.261706371e-09 1.972252406e-09 1.994632541e-09 2.972967657e-09 2.614545348e-09 2.405298857e-09 4.861912392e-09 3.693848174e-09 2.592294975e-09 2.906128947e-09 1.852861895e-09 2.905695673e-09 3.208307012e-09 2.930355909e-09 2.666388496e-09 2.45546978e-09 6.157991965e-10 1.054614933e-09 6.1871351e-10 6.152699592e-10 7.078676012e-10 9.231369069e-10 1.105010711e-09 1.341464275e-09 1.097869192e-09 2.371429275e-09 1.8750094e-09 1.966704684e-09 2.236951721e-09 1.772148599e-09 1.458992083e-09 1.42026139e-09 2.06486159e-09 2.65892278e-09 1.610428861e-09 1.08002996e-09 1.256667496e-09 1.216356928e-09 1.599920802e-09 8.054817318e-10 1.07435922e-09 1.566404121e-09 1.362787809e-09 1.156763779e-09 1.129273093e-09 8.137287625e-10 1.460525468e-09 9.084497582e-10 9.197846426e-10 1.13784608e-09 1.134141419e-09 8.778776542e-10 9.811594432e-10 5.859787563e-10 1.178357188e-09 2.739722479e-10 1.006524411e-09 1.498134494e-09 8.433089726e-10 1.385257218e-09 9.503194047e-10 1.428468778e-09 1.012080273e-09 1.161244763e-09 1.736795518e-09 8.11450107e-10 1.013281839e-09 1.941661373e-09 9.489326578e-10 1.082666429e-09 1.277858683e-09 1.847626084e-09 6.024660399e-10 7.893350402e-10 8.307221104e-10 6.888668553e-10 5.911478809e-10 4.939530429e-10 2.455925299e-10 5.597395347e-10 7.625359316e-10 5.857501692e-10 3.834981586e-10 5.998619966e-10 5.3592072e-10 3.483349923e-10 4.530993822e-10 4.95076268e-10 3.249219743e-10 1.643552377e-10 6.333072701e-10 6.951309192e-10 2.67523992e-10 1.033673495e-09 3.387800265e-10 1.533095058e-10 5.283090908e-10 7.65507795e-10 1.218862601e-09 7.061320825e-10 3.413081896e-10 4.295399349e-10 3.541121483e-10 4.53759953e-10 3.812187381e-10 5.92096316e-10 4.319671279e-10 5.64251544e-10 3.012027164e-10 4.067919422e-10 2.424539022e-10 5.890927136e-10 5.363116546e-10 3.777936661e-10 5.575657103e-10 +2.347121362e-10 2.444978108e-10 7.701757585e-10 3.787363002e-10 4.735078027e-10 2.791515063e-10 4.354781009e-10 2.639139156e-10 5.248152517e-10 5.728030857e-10 5.119966702e-10 5.296892731e-10 6.467234698e-10 6.047043186e-10 2.968350128e-10 2.296309001e-10 3.117701762e-10 8.106563442e-10 9.863947202e-10 5.212168848e-10 5.432224445e-10 8.825610505e-10 8.585356459e-10 7.48627826e-10 1.647021131e-10 6.134319601e-10 3.507736724e-10 5.665246087e-10 4.415573628e-10 3.640568878e-10 3.006771848e-10 2.373966926e-10 4.169783299e-10 5.586578355e-10 3.848457299e-10 4.530438082e-10 5.117836917e-10 1.076973045e-09 3.566851462e-10 5.018466909e-10 1.0524916e-09 4.576656165e-10 8.173859301e-10 1.076732609e-09 1.62232048e-09 1.060283084e-09 9.965385939e-10 9.369390859e-10 9.045376068e-10 1.120799617e-09 1.490781978e-09 9.017121905e-10 1.551390839e-09 1.171382968e-09 1.271215523e-09 1.49537756e-09 1.554434454e-09 1.033255802e-09 1.19906499e-09 1.175659856e-09 1.210299182e-09 1.521441426e-09 8.191470669e-10 6.042352384e-10 1.44057652e-09 1.369496095e-09 1.120110362e-09 1.240246401e-09 9.677692479e-10 1.231940756e-09 1.826896386e-09 1.418751293e-09 1.109945438e-09 1.333150071e-09 1.509620708e-09 1.300031119e-09 8.557287025e-10 1.070183132e-09 1.374556926e-09 1.305950763e-09 2.538995141e-09 2.45298881e-09 2.458669801e-09 1.68827645e-09 1.71997655e-09 2.910967619e-09 2.315035431e-09 1.676600976e-09 1.9693915e-09 1.657433984e-09 1.059745764e-09 2.334877462e-09 1.082910583e-09 6.264896837e-10 1.325343776e-09 6.5953424e-10 8.903639033e-10 1.185484801e-09 1.165553647e-09 2.398203612e-09 2.65345776e-09 3.253370273e-09 3.436332e-09 3.224512382e-09 3.965061983e-09 2.65806137e-09 2.848525133e-09 3.019676103e-09 4.026162102e-09 2.291158391e-09 2.446504864e-09 2.510497265e-09 1.399950945e-09 2.409005058e-09 2.730592244e-09 2.331447292e-09 5.387043805e-10 1.690858045e-10 3.131315141e-10 5.459073763e-10 1.024881662e-09 2.84079845e-09 3.638684665e-09 3.340465821e-09 2.901748305e-09 7.610498793e-09 8.226242338e-09 7.380601525e-09 6.888798516e-09 4.416547573e-09 1.495941647e-09 5.060437556e-10 4.707257578e-10 1.708712338e-10 3.518956617e-10 1.997686633e-10 1.757630116e-10 2.952124878e-10 2.110616052e-10 2.000415659e-10 1.689670575e-10 1.061520083e-10 2.126485723e-10 2.640586292e-10 5.567591636e-19 3.521293638e-10 3.273872853e-10 2.181429377e-10 1.927889497e-10 2.596315328e-10 4.208054035e-10 1.961957327e-10 8.910646319e-11 2.570278698e-10 1.582044766e-10 2.732390142e-10 5.054850849e-10 1.553876682e-10 4.262253436e-10 1.347216019e-10 3.481685505e-11 2.472262435e-10 1.207486476e-10 1.701418586e-10 3.019225552e-10 1.503097491e-10 3.927597469e-10 1.731233563e-10 4.09954635e-10 1.445979037e-09 3.58884151e-09 6.892995765e-09 5.354540064e-09 9.031705674e-09 6.154684447e-09 4.490259074e-09 3.348801585e-09 2.518344001e-09 2.532317522e-09 1.204122909e-09 1.590068026e-10 1.971164028e-10 1.168269085e-10 4.265372349e-10 2.587056887e-09 1.616623181e-09 1.800432271e-09 2.11359058e-09 2.077074753e-09 2.437863851e-09 3.582845656e-09 4.33159463e-09 2.707899818e-09 2.263090532e-09 2.953873649e-09 2.980702117e-09 4.404703927e-09 2.855144431e-09 2.679377825e-09 1.70854722e-09 2.798091217e-09 7.660974102e-10 1.17505386e-09 3.612236542e-10 6.197710512e-10 8.788208086e-10 8.763462828e-10 1.985614071e-09 1.314337856e-09 1.798504519e-09 1.510893043e-09 1.508310282e-09 1.508465769e-09 1.281988951e-09 2.019929244e-09 1.071841782e-09 1.246543673e-09 2.593313581e-09 2.478189642e-09 2.175338442e-09 1.499217013e-09 1.562947496e-09 1.35202827e-09 1.923090076e-09 1.11779928e-09 5.455800751e-10 1.049006493e-09 5.638336719e-10 1.4108706e-09 1.435190221e-09 1.401643866e-09 1.660976227e-09 1.204674391e-09 1.370786198e-09 1.063653122e-09 1.109296762e-09 1.098766273e-09 1.017235105e-09 5.444591534e-10 1.357757478e-09 8.609969598e-10 1.342486136e-09 8.058202442e-10 6.746029432e-10 1.579462365e-09 1.059044216e-09 1.000442594e-09 1.010101296e-09 7.931432744e-10 8.005632113e-10 1.482524114e-09 9.775413038e-10 1.396961409e-09 1.065968824e-09 1.824895637e-09 9.653533232e-10 6.790437985e-10 9.878073862e-10 8.009982217e-10 4.975433002e-10 4.439993954e-10 1.027320093e-09 3.732555455e-10 4.712084166e-10 7.530815901e-10 3.202547147e-10 4.804971565e-10 4.261888997e-10 8.486587004e-10 4.6372651e-10 6.679139748e-10 3.827316599e-10 3.232055954e-10 9.14865831e-10 3.005943494e-10 2.697325764e-10 5.247955588e-10 4.590398681e-10 5.587211985e-10 3.121075616e-10 1.622164868e-10 7.026846161e-10 2.244171996e-10 4.732521639e-10 4.635221833e-10 2.893734814e-10 6.731054998e-10 7.014190646e-10 3.383342721e-10 2.192649439e-10 3.449296544e-10 3.799208964e-10 7.251197789e-10 1.772520116e-10 5.209751129e-10 9.472392672e-10 3.70862487e-10 1.475774278e-10 3.880358497e-10 3.147115461e-10 +2.44838634e-10 5.767917503e-10 3.796802505e-10 4.595652981e-10 3.42586318e-10 2.097010945e-10 1.239801753e-09 3.443046978e-10 5.733983121e-10 2.872650294e-10 4.496646039e-10 6.460265772e-10 1.909527496e-10 3.142915318e-10 3.326755624e-10 8.335693853e-10 2.101543098e-10 3.937969247e-10 3.220823331e-10 9.81544536e-10 7.595470139e-10 6.87179285e-10 4.773768135e-10 1.037423783e-09 2.507571678e-10 3.30966071e-10 5.384725113e-10 8.141460882e-10 5.428225504e-10 3.717492254e-10 3.658969013e-10 6.558962982e-10 5.605021184e-10 4.702902911e-10 2.419584127e-10 4.935030973e-10 7.485069935e-10 2.844315824e-10 1.638659522e-10 1.058478936e-09 8.986078571e-10 6.99481002e-10 1.573389668e-09 1.230806911e-09 2.049128799e-09 9.782990362e-10 1.418439675e-09 1.191750897e-09 1.150118079e-09 7.716563355e-10 1.090702628e-09 1.368299234e-09 1.190960564e-09 5.446702756e-10 1.402530151e-09 1.256152355e-09 7.442141994e-10 1.053402181e-09 9.118468067e-10 1.637866902e-09 2.733943954e-10 4.769191646e-10 6.843819619e-10 1.622311643e-09 1.057302915e-09 1.91450953e-09 1.500387011e-09 7.815240335e-10 1.042970811e-09 1.08466179e-09 1.25411833e-09 9.47429068e-10 7.11604633e-10 1.224258078e-09 1.20379717e-09 5.354370077e-10 1.220965324e-09 6.871487519e-10 1.684172015e-09 1.18463455e-09 2.836582343e-09 2.574302367e-09 3.080683206e-09 1.687548504e-09 2.363808929e-09 1.706419119e-09 1.508312371e-09 1.831203992e-09 1.198910274e-09 8.49850045e-10 8.803898923e-10 1.585798016e-09 1.745070714e-09 1.340529423e-09 1.436842953e-09 6.270759161e-10 6.565651e-10 1.250832483e-09 1.076885277e-09 2.250240677e-09 2.09723985e-09 3.372820799e-09 3.053262145e-09 2.941362067e-09 2.802008966e-09 2.60575479e-09 2.059098011e-09 2.295611649e-09 3.640904707e-09 2.872787884e-09 2.739008705e-09 2.070937294e-09 2.251199065e-09 1.709632704e-09 2.441483749e-09 7.229005802e-10 9.734660408e-10 7.643555659e-11 9.801306567e-14 1.837641472e-10 4.093988064e-10 2.423356621e-09 2.735792923e-09 3.526036845e-09 3.375482134e-09 7.399696434e-09 8.303985321e-09 7.595745154e-09 6.072243002e-09 4.882942751e-09 2.407980887e-09 2.027812638e-13 3.133542097e-10 9.402720986e-11 1.593224604e-10 1.049831973e-10 1.500227769e-10 1.676046168e-10 2.864837467e-10 1.747068221e-10 8.721726372e-11 8.613229946e-11 2.373942496e-10 1.793072848e-10 5.462730472e-19 2.963019484e-10 1.466502485e-10 2.021962507e-10 2.817511558e-10 2.879194848e-10 3.451792475e-10 8.388372349e-11 1.430086906e-10 1.651757941e-10 1.681153973e-10 3.084028155e-10 1.602961033e-10 4.528209463e-11 5.982502858e-11 9.908594145e-11 3.141270456e-10 1.042961285e-10 3.046343356e-10 3.619165603e-10 1.018652409e-10 8.947042529e-11 2.343094477e-10 2.21338872e-10 2.176800054e-10 2.296867617e-09 3.417845037e-09 7.420097607e-09 6.473572228e-09 7.265440301e-09 7.207066343e-09 3.740465695e-09 3.291669933e-09 3.304737113e-09 3.24156446e-09 1.072167769e-09 1.611318806e-10 2.216180043e-10 3.72366388e-10 3.270083845e-10 8.224741455e-10 2.061752013e-09 2.493055006e-09 2.190766832e-09 2.788957506e-09 2.475935258e-09 2.228677622e-09 3.0508946e-09 3.788803677e-09 2.080887184e-09 3.174181064e-09 2.136518047e-09 2.10595165e-09 1.997660168e-09 3.509157548e-09 2.045691019e-09 1.845053209e-09 1.153220245e-09 1.005960595e-09 4.721424226e-10 7.41720587e-10 1.453361399e-09 1.525886732e-09 1.604221729e-09 1.753648198e-09 1.750127269e-09 1.293800801e-09 1.268667778e-09 2.205104451e-09 1.390114465e-09 1.486349029e-09 2.281022334e-09 2.262366252e-09 3.29097979e-09 1.988771779e-09 1.953868309e-09 1.282042361e-09 1.596750193e-09 1.289487226e-09 4.858112879e-10 1.15531066e-09 8.576394641e-10 1.227756109e-09 6.881793904e-10 1.489089399e-09 2.265514932e-09 1.380558707e-09 1.58921099e-09 1.17515322e-09 8.289153751e-10 1.041848844e-09 1.622278832e-09 1.303792353e-09 1.026626785e-09 8.103570021e-10 7.842683654e-10 6.598320451e-10 1.161015375e-09 1.211357044e-09 8.064570357e-10 1.51861521e-09 1.037658819e-09 1.128618505e-09 1.715661083e-09 7.7372566e-10 7.001850372e-10 1.670531948e-09 1.123485586e-09 1.582782815e-09 8.444742594e-10 1.333593773e-09 1.232554153e-09 1.209026543e-09 7.886009207e-10 3.588429809e-10 6.588408826e-10 5.051978852e-10 3.194208721e-10 6.265064208e-10 8.225018109e-10 5.41068611e-10 4.145123294e-10 5.627855096e-10 7.818279403e-10 3.576715991e-10 7.364468926e-10 7.427186287e-10 4.381173207e-10 6.671894141e-10 5.270799608e-10 2.949442312e-10 3.354547016e-10 2.630548737e-10 4.238425527e-10 6.435658363e-10 4.732872848e-10 4.179112613e-10 7.844165e-11 4.737658971e-10 6.968060703e-10 9.574355531e-10 1.009993206e-09 5.881185013e-10 4.306220094e-10 2.255977451e-10 7.004787551e-10 8.821807143e-10 7.150178728e-10 3.378418419e-10 4.420860189e-10 4.266546676e-10 3.373392743e-10 3.641180963e-10 4.636053004e-10 6.106602913e-10 5.532705911e-10 +6.659013362e-10 3.208252175e-10 6.914272812e-10 4.080396947e-10 5.329495309e-10 9.662939567e-10 3.288922884e-10 2.166124176e-10 4.764600096e-10 2.907304235e-10 9.351664915e-10 2.486589972e-10 3.378691125e-10 7.63382129e-10 8.094542621e-10 1.157916132e-09 3.554957745e-10 5.332855652e-10 3.140904271e-10 5.916886675e-10 5.77782825e-10 3.228167806e-10 8.220678186e-10 5.780200873e-10 5.257997579e-10 4.064793686e-10 9.425155403e-10 7.144037683e-10 2.448765924e-10 5.483849379e-10 7.77110411e-10 3.091014487e-10 3.749156471e-10 5.175624174e-10 7.060969819e-10 4.973763618e-10 7.160131201e-10 2.31796451e-10 6.774967037e-10 7.31010664e-10 5.39196122e-10 7.450859035e-10 1.341841084e-09 1.664467127e-09 8.956029324e-10 8.228890105e-10 1.583178688e-09 7.762620035e-10 8.432303376e-10 6.969237012e-10 1.633519867e-09 1.074124596e-09 1.134861535e-09 1.768515567e-09 8.051862392e-10 1.031846586e-09 1.903719851e-09 9.120479255e-10 1.264601288e-09 9.778436272e-10 1.060921045e-09 4.839303057e-10 1.367544399e-09 9.021589726e-10 7.985574963e-10 1.118429281e-09 1.016406799e-09 2.027493924e-09 1.270868388e-09 1.74590712e-09 1.027021989e-09 1.21256807e-09 1.300732962e-09 1.390030792e-09 1.175464967e-09 9.304050101e-10 1.049909954e-09 8.093159942e-10 1.197514875e-09 3.260879249e-09 1.795546498e-09 2.954519198e-09 2.789392347e-09 1.757439399e-09 2.562898841e-09 1.501912662e-09 2.393181911e-09 1.9200987e-09 1.811218821e-09 1.701692101e-09 2.100445071e-09 1.091941823e-09 1.080187441e-09 1.20014076e-09 8.544821621e-10 1.064876656e-09 3.327346545e-10 8.077136887e-10 1.34999066e-09 1.170116779e-09 2.883514874e-09 2.583993965e-09 3.050851285e-09 3.001148213e-09 3.221470346e-09 3.153079671e-09 2.309300506e-09 2.373344133e-09 3.670054663e-09 2.745819454e-09 1.736688641e-09 1.710394198e-09 2.618691572e-09 2.139868097e-09 1.234412525e-09 2.032936043e-09 5.909085875e-10 1.762413021e-10 9.673628337e-11 3.610923994e-11 7.838507825e-10 1.381693069e-09 3.02502988e-09 3.36505563e-09 3.531222478e-09 6.665991988e-09 8.515395862e-09 5.65598914e-09 6.389909746e-09 6.571131978e-09 1.735592217e-09 2.785744219e-10 8.597403592e-11 2.11773912e-10 2.843880013e-10 0 3.106145124e-10 8.295259064e-12 2.543043234e-10 2.135058764e-10 6.566139439e-27 0 2.509362476e-10 2.4128665e-10 1.195066837e-10 4.220228422e-10 2.495599491e-10 4.24800786e-11 4.679465945e-11 1.249987395e-10 0 1.520539638e-10 2.863089471e-10 7.782877311e-11 2.90231652e-16 1.516482448e-10 2.514133297e-10 1.815030775e-10 8.351703536e-12 3.06326775e-10 2.641938719e-10 1.389160638e-10 8.154527141e-11 2.681507372e-10 2.863519526e-10 7.139504878e-11 1.358605445e-10 1.325987522e-10 2.612674091e-10 2.014762241e-09 7.030307872e-09 5.547555073e-09 7.404188097e-09 9.190780987e-09 5.840785904e-09 3.118251086e-09 4.080785451e-09 3.917980679e-09 2.963802632e-09 2.938521428e-10 2.208728384e-10 1.405885583e-10 2.856072507e-10 6.499332534e-10 2.432102544e-09 1.633229112e-09 1.547166117e-09 1.553522664e-09 2.538108788e-09 2.237327411e-09 2.863993489e-09 4.039672506e-09 3.219318448e-09 2.595029284e-09 2.204314304e-09 2.814153585e-09 2.922745106e-09 3.133354761e-09 3.420502432e-09 2.784439941e-09 1.923931303e-09 1.052678351e-09 7.843356943e-10 4.056792314e-10 3.144584665e-10 1.03107128e-09 1.414404942e-09 1.936760614e-09 1.238301786e-09 1.61889691e-09 1.252261752e-09 1.954100252e-09 1.73506166e-09 2.379043034e-09 1.814772827e-09 1.542262105e-09 1.885465392e-09 3.27116398e-09 2.545717728e-09 1.705279172e-09 1.3777061e-09 1.69304231e-09 1.450450045e-09 8.027483426e-10 1.605146171e-09 7.16702692e-10 1.227909519e-09 7.947030459e-10 7.853768747e-10 7.772585204e-10 1.05321597e-09 1.213039363e-09 1.220409061e-09 1.132207361e-09 9.747842058e-10 1.255957662e-09 1.522363031e-09 1.459819384e-09 7.898294161e-10 9.572111045e-10 1.333619254e-09 8.438567635e-10 7.489598651e-10 1.319954544e-09 5.828138453e-10 1.240685387e-09 1.186991295e-09 1.779602388e-09 1.356228433e-09 8.185916147e-10 1.034003367e-09 9.650171271e-10 9.0879664e-10 1.438809134e-09 9.535148461e-10 1.486789255e-09 9.578434875e-10 9.776229172e-10 1.144915302e-09 5.858425523e-10 8.983277396e-10 5.994674847e-10 3.652265238e-10 1.198032664e-09 7.609998302e-10 4.588538721e-10 3.467767879e-10 9.875406791e-10 4.025225508e-10 1.513289944e-09 3.375780829e-10 7.352049643e-10 4.949709585e-10 2.054664963e-10 3.725258961e-10 6.98817792e-10 6.07582363e-10 2.978931206e-10 2.388714752e-10 3.345960321e-10 6.396403065e-10 3.775434916e-10 3.52212048e-10 4.813949058e-10 4.817600842e-10 3.460375665e-10 3.452695624e-10 3.675443592e-10 4.862434858e-10 3.654160946e-10 3.285855465e-10 4.910550466e-10 1.789723343e-10 4.278793819e-10 2.564318033e-10 1.899967215e-10 4.036502295e-10 2.505047142e-10 5.318669957e-10 5.58844584e-10 +5.379917896e-10 1.052505925e-09 2.627051946e-10 3.952617616e-10 6.562992657e-10 6.067952965e-10 5.934751387e-10 5.082837063e-10 3.45518674e-10 5.449602822e-10 5.185513677e-10 6.594782788e-10 4.07522943e-10 1.711035883e-10 2.459701227e-10 2.932049455e-10 7.712216379e-10 5.631417001e-10 4.972405072e-10 2.366116719e-10 3.342377553e-10 6.355782293e-10 6.888306647e-10 3.156556801e-10 3.415224006e-10 3.645468712e-10 3.841942413e-10 3.549017145e-10 4.832803898e-10 2.771616489e-10 8.282841369e-10 4.162603146e-10 5.397871939e-10 5.068117277e-10 4.535885028e-10 6.672271672e-10 4.711780273e-10 3.342547689e-10 2.299292464e-10 6.285730796e-10 5.399140456e-10 5.590226353e-10 4.38837079e-10 1.036400277e-09 7.53250326e-10 1.20398826e-09 1.052781632e-09 1.21110796e-09 9.978332121e-10 1.299645865e-09 6.576467386e-10 9.203342816e-10 8.261488016e-10 1.238486852e-09 9.148581843e-10 6.902847845e-10 1.022742955e-09 1.594340574e-09 1.155107939e-09 1.041458068e-09 9.302840127e-10 1.050998042e-09 9.304009187e-10 1.799087289e-09 9.796879562e-10 1.477957904e-09 1.601680915e-09 8.354650561e-10 1.307826321e-09 8.354633985e-10 1.59337968e-09 1.106025423e-09 9.293737128e-10 1.325545655e-09 1.580633197e-09 1.173026869e-09 9.395923405e-10 9.265066043e-10 9.259748043e-10 1.384924735e-09 2.272312527e-09 2.287462836e-09 2.428350304e-09 3.078003445e-09 2.266296069e-09 1.437874619e-09 1.826768372e-09 2.880392297e-09 1.51521523e-09 1.164718562e-09 1.513560517e-09 1.727246243e-09 1.732925593e-09 1.478517629e-09 8.209769772e-10 4.260412404e-10 3.265949503e-10 1.268803916e-09 1.113791522e-09 1.958533562e-09 2.951872032e-09 2.640382374e-09 2.937849684e-09 2.663155875e-09 3.594146945e-09 2.59956474e-09 2.749565768e-09 2.773637965e-09 3.794179481e-09 3.966080602e-09 2.970923006e-09 2.293707528e-09 1.804505252e-09 2.259703191e-09 1.05236523e-09 5.039175841e-10 5.072331692e-10 2.936131355e-10 1.061933677e-10 6.416984916e-10 1.438224519e-10 1.775978881e-09 3.699859012e-09 3.73994676e-09 3.950031637e-09 6.947893752e-09 7.555439796e-09 8.347384885e-09 5.034625628e-09 6.477262686e-09 1.866290282e-09 2.592710458e-10 7.664478537e-11 2.876638946e-10 1.633594573e-10 2.295738764e-10 1.618246601e-10 2.940186307e-10 2.0976502e-10 3.561654278e-11 3.157289877e-10 8.642841488e-12 5.621268553e-10 1.246478351e-10 2.490077408e-10 1.631948586e-10 6.009054044e-11 7.464225382e-11 1.953415945e-10 3.482258905e-10 1.600454617e-10 2.146680933e-10 1.492503399e-10 1.912910906e-10 1.622047207e-10 2.936131321e-10 1.924700781e-10 2.830294561e-10 2.545229328e-10 2.379319099e-10 5.478150383e-13 2.10440079e-10 1.093541346e-10 1.02249216e-10 2.626716171e-10 2.103462323e-10 2.753304451e-10 2.733898434e-10 1.698197535e-10 3.87152415e-09 6.116052387e-09 5.759635927e-09 5.126208179e-09 6.809706502e-09 7.347831702e-09 4.260599011e-09 2.932686962e-09 2.914847753e-09 2.561589688e-09 4.543569156e-10 4.40295364e-10 3.280780199e-10 4.523137195e-11 1.109301547e-09 1.949391858e-09 1.697793607e-09 1.57578131e-09 2.098536163e-09 1.20747066e-09 2.890863787e-09 3.341122383e-09 4.437642219e-09 2.20566477e-09 3.908479421e-09 2.117740327e-09 2.560062123e-09 1.804575358e-09 2.212467662e-09 2.448166217e-09 2.787767171e-09 2.263274931e-09 5.537585311e-10 1.541098609e-09 7.235502019e-10 5.210980865e-10 7.257237038e-10 1.609425106e-09 6.567345891e-10 1.256743057e-09 1.765935419e-09 1.753013283e-09 1.730291381e-09 1.298076673e-09 2.559643635e-09 1.785640048e-09 1.245736556e-09 2.242259878e-09 2.23807296e-09 1.831866166e-09 1.373347696e-09 2.173460894e-09 2.144230574e-09 1.400722523e-09 8.965290744e-10 1.440015218e-09 9.734679788e-10 9.841258954e-10 8.054710806e-10 7.692723116e-10 1.181584426e-09 1.603433628e-09 1.008566745e-09 9.572508289e-10 3.743551453e-10 2.045709551e-09 7.016921318e-10 1.149512825e-09 9.952741138e-10 7.757208037e-10 6.356734818e-10 1.023773472e-09 7.152848743e-10 1.417733327e-09 9.149305305e-10 1.674998017e-09 1.164991311e-09 1.349496072e-09 8.251246903e-10 1.238981705e-09 6.926913758e-10 1.118353939e-09 9.915486562e-10 1.091290729e-09 9.596049542e-10 8.375527508e-10 8.595494355e-10 7.689025915e-10 1.588382264e-09 5.553297209e-10 6.916660284e-10 7.034747492e-10 7.93284306e-10 7.492841002e-10 2.637948406e-10 8.853112298e-10 2.482022509e-10 2.849475426e-10 3.381423732e-10 3.605382283e-10 9.269733308e-10 2.835885027e-10 6.052003762e-10 1.069131994e-09 5.313952786e-10 2.326160421e-10 1.173595729e-10 9.569542151e-10 4.635214957e-10 1.880331881e-10 1.034056457e-09 4.349245811e-10 4.044233264e-10 3.24861115e-10 2.053162337e-10 7.123289431e-10 6.682060872e-10 3.739036578e-10 4.766060796e-10 5.358686754e-10 3.840393278e-10 3.989636011e-10 9.290299572e-10 5.896753247e-10 7.208343835e-10 5.196654713e-10 4.42594609e-10 4.548959714e-10 4.587508203e-10 6.043910995e-10 4.000956187e-10 +1.152044611e-10 9.482588302e-10 3.219982615e-10 2.92527567e-10 5.605999007e-10 4.58772658e-10 2.648765616e-10 5.705563214e-10 8.725159619e-10 7.920013689e-10 4.623886111e-10 1.437626354e-09 1.410782339e-10 3.795803953e-10 3.059989369e-10 2.465612907e-10 6.331219013e-10 5.127250828e-10 4.62754248e-10 8.290396311e-10 7.728347732e-10 6.995084043e-10 4.58167813e-10 8.326060212e-10 2.05161253e-10 2.909406821e-10 7.630332875e-10 8.610830211e-10 1.120516252e-09 4.236896895e-10 4.359575058e-10 9.221315278e-10 3.110765502e-10 5.378166927e-10 3.73798138e-10 8.506153655e-10 2.853369023e-10 1.374665181e-10 6.567541373e-10 4.804190671e-10 5.098893471e-10 8.585202244e-10 7.298831359e-10 1.469334995e-09 6.478011383e-10 1.293855557e-09 1.458944979e-09 6.632073284e-10 9.40984758e-10 9.649070545e-10 1.270936018e-09 1.34670934e-09 1.428312589e-09 9.55028062e-10 1.1015797e-09 9.427359177e-10 1.146864505e-09 7.028775761e-10 8.377596497e-10 9.166607567e-10 5.319671728e-10 9.23938028e-10 9.706746921e-10 1.200023922e-09 1.557719464e-09 9.039472552e-10 7.142786893e-10 9.933768326e-10 9.042456523e-10 8.618864248e-10 1.507369894e-09 9.893101219e-10 1.177590059e-09 1.257340248e-09 1.209589881e-09 1.412736122e-09 9.957645303e-10 1.103893566e-09 1.345214678e-09 1.842777805e-09 2.143725816e-09 2.373198403e-09 2.264760244e-09 1.24061733e-09 1.384735745e-09 1.185270747e-09 1.671019249e-09 1.757886376e-09 2.15603766e-09 2.312144989e-09 1.467549809e-09 8.853799951e-10 2.31473738e-09 1.217852507e-09 8.006172058e-10 5.452065458e-10 7.195188184e-10 1.257511193e-09 8.924812253e-10 1.810617935e-09 3.538454564e-09 3.402389633e-09 1.71781308e-09 4.473339609e-09 3.297439376e-09 1.055385987e-09 2.167000591e-09 1.687603322e-09 4.400653546e-09 3.494843875e-09 3.015304645e-09 2.649176984e-09 1.277741075e-09 1.884749405e-09 2.555415597e-09 1.366294948e-09 8.510092831e-10 2.56227518e-10 7.329513052e-11 3.392782771e-10 3.20730478e-10 2.184653141e-09 4.275945162e-09 2.710167317e-09 2.383545476e-09 5.652067327e-09 1.0016558e-08 7.825578329e-09 7.196197184e-09 4.958367273e-09 2.923320023e-09 7.868011437e-10 2.865016081e-10 3.641386117e-10 1.874592889e-10 4.703919623e-10 2.396516658e-10 1.949777921e-10 3.215491771e-10 4.780059429e-10 3.168894693e-10 7.400765186e-11 2.901672763e-10 9.559685719e-11 2.719754341e-10 1.68371004e-10 1.147700645e-10 3.616912771e-10 2.649022928e-10 1.902139123e-10 1.049562509e-10 4.23195011e-10 1.493195781e-10 9.474779601e-11 1.342104836e-10 2.469212524e-10 1.797975349e-10 6.574715967e-10 2.728963293e-10 1.053110912e-10 3.076524933e-10 1.072664202e-10 2.158478152e-10 8.773282571e-23 1.565475303e-10 1.266983158e-10 1.430633188e-10 1.50690951e-10 8.159424836e-10 4.285556562e-09 6.097416919e-09 4.391040277e-09 7.050682907e-09 9.806993464e-09 7.061426507e-09 3.629788352e-09 2.947345589e-09 1.604425601e-09 2.877764316e-09 8.147200715e-10 5.715812473e-10 1.802808102e-10 7.89783313e-11 7.053339226e-10 2.495507625e-09 2.066563953e-09 2.202646661e-09 2.300659075e-09 2.350169414e-09 2.698006867e-09 3.679290961e-09 4.65978869e-09 2.16933672e-09 1.992650234e-09 2.523520033e-09 2.786989002e-09 2.797782147e-09 4.13846602e-09 3.043509961e-09 2.435377732e-09 1.879993622e-09 1.101791177e-09 9.298931389e-10 8.833681199e-10 8.781246331e-10 1.28748051e-09 1.255242384e-09 8.567636392e-10 1.227110927e-09 1.710334404e-09 1.019753746e-09 2.050303446e-09 2.485027453e-09 2.376738112e-09 1.165957474e-09 2.236632754e-09 1.409437444e-09 2.980306181e-09 1.412820267e-09 2.02224954e-09 8.717659728e-10 1.18720072e-09 9.12579517e-10 6.101071714e-10 1.974929059e-09 1.006856574e-09 1.317776561e-09 1.039877063e-09 1.775330833e-09 1.401024696e-09 1.135613093e-09 1.507529433e-09 7.397990342e-10 1.18566113e-09 1.572875393e-09 1.627774644e-09 2.312161458e-09 1.111010553e-09 1.161766487e-09 4.396820507e-10 1.079579633e-09 1.201712891e-09 1.463281544e-09 5.478317752e-10 6.660823486e-10 7.85923523e-10 1.426352109e-09 1.795841993e-09 9.736761524e-10 1.808205332e-09 1.082499366e-09 1.664174894e-09 9.703729979e-10 1.987335743e-09 1.746751688e-09 6.977357428e-10 9.761413716e-10 3.832615989e-10 8.33263055e-10 5.419620559e-10 1.048444768e-09 4.574584974e-10 5.507736268e-10 4.210399682e-10 8.489430733e-10 6.807767644e-10 5.664189594e-10 6.841451965e-10 3.060652785e-10 6.401168323e-10 6.297369247e-10 3.552530104e-10 4.170507245e-10 7.540207995e-10 7.088192694e-10 5.29647827e-10 2.02303729e-10 4.803564071e-10 3.093524213e-10 5.716285521e-10 5.832764226e-10 5.001190695e-10 5.992603494e-10 6.471409632e-10 4.056375926e-10 6.321916107e-10 2.810746642e-10 5.997898271e-10 2.464452238e-10 7.722327053e-10 2.952881617e-10 6.30691532e-10 3.827746921e-10 5.5093378e-10 5.724466523e-10 4.670955529e-10 1.853451858e-10 3.90851154e-10 3.070185019e-10 4.895883676e-10 +4.874683646e-10 3.792647436e-10 3.917556629e-10 4.499071496e-10 1.951681182e-10 3.263387062e-10 1.670012142e-10 6.132942447e-10 4.4656037e-10 9.727886791e-10 3.963740913e-10 9.000557315e-10 4.155849896e-10 7.679226399e-10 3.139861771e-10 6.711867644e-10 2.287525468e-10 3.758331599e-10 8.354235238e-10 1.275892196e-10 5.310599007e-10 6.274365163e-10 6.704896545e-10 6.979748633e-10 3.268386824e-10 7.481136927e-10 4.981597555e-10 6.308521137e-10 4.597324845e-10 7.72391354e-10 3.536024825e-10 5.634896035e-10 7.804758757e-10 9.370469726e-10 6.412737652e-10 5.886625552e-10 6.726959158e-10 8.438833089e-10 4.403377171e-10 4.294086381e-10 7.320803793e-10 6.077900901e-10 1.014390913e-09 7.383398255e-10 1.058964707e-09 6.690724512e-10 1.359930699e-09 7.349850973e-10 1.134361562e-09 8.766278117e-10 1.099566713e-09 7.915313278e-10 1.135914662e-09 1.082856089e-09 1.261220689e-09 1.103459916e-09 1.255346126e-09 1.11980939e-09 9.043597727e-10 9.826537652e-10 1.469779683e-09 4.617688194e-10 1.074425757e-09 7.907049135e-10 1.748212612e-09 1.65856617e-09 8.874282765e-10 1.186411228e-09 6.97496809e-10 9.657694755e-10 1.313421507e-09 9.094592974e-10 1.253709336e-09 1.738777453e-09 1.718708528e-09 1.218523674e-09 7.976228123e-10 1.253561437e-09 7.249102672e-10 1.927997655e-09 2.34879941e-09 2.323086177e-09 2.338772844e-09 3.113518766e-09 1.904256273e-09 1.54323159e-09 3.527855571e-09 1.340029348e-09 7.705701572e-10 1.621917618e-09 1.255908835e-09 1.231560693e-09 1.458936252e-09 1.718538799e-09 1.662017283e-09 1.022921669e-09 5.933715811e-10 9.244209742e-10 1.639345646e-09 2.03398141e-09 3.574469766e-09 1.858641906e-09 4.896136908e-09 2.359870378e-09 2.430243747e-09 1.827436567e-09 4.091143691e-09 2.631723625e-09 4.054293824e-09 2.381236766e-09 1.474815932e-09 1.960127246e-09 1.619297663e-09 2.175406062e-09 1.643503083e-09 1.347650315e-09 4.649668411e-10 8.719780011e-11 1.219392575e-10 1.653382954e-10 1.083267023e-10 1.241950813e-09 2.848571963e-09 2.989684552e-09 2.715489768e-09 6.360614665e-09 8.52752951e-09 6.870964489e-09 4.971899689e-09 5.954773624e-09 4.883903987e-09 1.016110475e-09 3.73662242e-10 0 7.088064877e-13 3.391138281e-10 4.019182203e-16 1.323416586e-10 1.836895433e-10 1.744090749e-10 1.659063462e-10 2.367768305e-10 2.796098895e-10 1.331926011e-10 2.703831241e-12 4.621191642e-13 3.269913563e-10 2.296216669e-10 3.085002987e-10 1.217073689e-10 3.244199443e-10 2.219237649e-10 2.942429608e-10 2.143126701e-10 1.164553163e-10 3.341002288e-10 1.248638197e-10 1.038351161e-10 2.391352925e-10 0 7.279854505e-11 7.424933409e-11 1.574942751e-10 2.33262142e-10 2.047227478e-10 4.524694584e-10 3.278872185e-10 9.722355049e-11 1.064724864e-09 4.195929579e-09 5.51624901e-09 6.193884229e-09 5.671644362e-09 9.006323776e-09 5.369679529e-09 3.57243982e-09 2.969416061e-09 3.258635218e-09 2.54686979e-09 3.228639498e-10 9.111797941e-34 3.503629419e-10 7.348629577e-11 3.274369109e-10 1.850598319e-09 1.843399504e-09 1.718874932e-09 2.00746938e-09 1.882845263e-09 2.945523792e-09 2.613307891e-09 3.468878487e-09 2.567965944e-09 2.687497298e-09 2.298713081e-09 3.06831207e-09 2.397122813e-09 2.711716234e-09 2.664165939e-09 4.688447853e-09 1.521842352e-09 7.953214694e-10 8.338895232e-10 2.042064189e-10 7.094208846e-10 8.601849626e-10 8.680157513e-10 1.215292895e-09 1.828798561e-09 1.691758267e-09 1.298393104e-09 1.205800112e-09 1.383940964e-09 1.662693184e-09 1.101415426e-09 1.339151123e-09 1.738167358e-09 1.691147358e-09 2.402212897e-09 1.44762871e-09 1.880616076e-09 1.795065645e-09 1.049846348e-09 1.493654095e-09 1.164928121e-09 5.971631853e-10 1.073790639e-09 8.847664405e-10 1.85786419e-09 9.730868399e-10 1.214818358e-09 1.888621769e-09 1.272891164e-09 1.157230201e-09 1.234441652e-09 1.349667588e-09 1.361516083e-09 4.667398463e-10 1.088975777e-09 6.036823286e-10 1.376861519e-09 4.732727563e-10 1.174262556e-09 7.427572422e-10 7.061191255e-10 1.193392647e-09 9.960187513e-10 9.474698837e-10 1.388285564e-09 7.978294429e-10 8.771117104e-10 8.894394153e-10 1.185949934e-09 1.96840614e-09 1.067165589e-09 9.337708042e-10 1.102230828e-09 7.461002553e-10 1.819841383e-09 6.214208549e-10 6.579427105e-10 6.314098665e-10 2.958121528e-10 6.921324381e-10 7.072223574e-10 6.804418709e-10 4.847631927e-10 8.698444713e-10 8.891432071e-10 4.703685479e-10 9.805437459e-10 2.689673652e-10 6.497155361e-10 3.868451304e-10 2.743987571e-10 2.170966526e-10 1.544154368e-10 3.803219248e-10 4.076690209e-10 4.590403085e-10 6.563656142e-10 6.070171338e-10 1.832848512e-10 3.712473444e-10 8.273438472e-10 3.7189472e-10 4.274900632e-10 2.030816492e-10 3.20376647e-10 3.671701739e-10 4.648677611e-10 2.207343793e-10 1.948833796e-10 3.872893497e-10 4.976303692e-10 5.295919315e-10 8.13220559e-10 3.867304132e-10 5.523707347e-10 8.894853065e-10 +8.836538277e-10 2.455064815e-10 1.043725732e-09 9.607239018e-10 7.533792728e-10 6.713147735e-10 7.114811244e-10 5.382054236e-10 9.62760771e-11 2.245852037e-10 3.887544485e-10 8.084061795e-10 5.072693945e-10 8.269464859e-10 1.08685701e-09 3.336827041e-10 4.144456417e-10 3.643068063e-10 1.254541862e-10 5.846331945e-10 2.39766399e-10 5.289686256e-10 4.733719771e-10 3.053311302e-10 5.330922773e-10 2.83782733e-10 6.342676146e-10 8.270331176e-10 5.149998586e-10 2.317605175e-10 3.353721035e-10 3.334377243e-10 6.746824202e-10 6.379071722e-10 6.788133614e-10 4.614933272e-10 4.858677255e-10 6.795414031e-10 4.239564901e-10 6.961036707e-10 8.159905289e-10 4.344704387e-10 1.059967105e-09 1.348734563e-09 1.445387743e-09 1.365789512e-09 9.898525496e-10 7.82263916e-10 9.891015944e-10 7.289643516e-10 1.033063464e-09 9.816325292e-10 1.347834213e-09 1.301164741e-09 1.173503489e-09 1.106915345e-09 7.332216133e-10 9.189477821e-10 4.761242289e-10 7.867413521e-10 4.492745921e-10 1.153229727e-09 1.126029728e-09 1.175605293e-09 1.125996379e-09 1.407615025e-09 1.597809097e-09 9.847415763e-10 1.880571306e-09 1.155746996e-09 1.818863371e-09 1.489390572e-09 8.21006889e-10 1.144732138e-09 1.089253118e-09 1.012521015e-09 8.170423655e-10 1.804245189e-09 1.445330479e-09 1.512455429e-09 1.867407667e-09 1.656727615e-09 1.689923354e-09 1.532250809e-09 2.13419213e-09 2.035656073e-09 2.327917739e-09 1.861601554e-09 1.536917949e-09 1.838852153e-09 1.633342275e-09 1.115171886e-09 1.926698132e-09 9.133383084e-10 1.486979987e-09 5.765693848e-10 6.261643663e-10 8.305157694e-10 1.084852632e-09 1.894745749e-09 2.990564378e-09 2.742306049e-09 3.372062978e-09 2.59208705e-09 2.482122204e-09 1.212415633e-09 2.968913101e-09 2.653445365e-09 3.271668988e-09 4.411104493e-09 2.969093339e-09 1.916799376e-09 1.799670951e-09 1.684240789e-09 2.414930336e-09 1.55012822e-09 4.283833228e-10 8.885003589e-11 3.630294355e-14 1.552782075e-10 9.070626231e-11 1.462754388e-09 3.431708851e-09 3.672183417e-09 2.547456746e-09 6.050735243e-09 8.570690548e-09 8.796871068e-09 5.960813655e-09 6.708410198e-09 5.285748163e-09 1.960794952e-09 1.855691014e-10 9.496207344e-11 6.651007648e-11 2.11835637e-10 6.473961746e-11 1.747997567e-10 2.943005511e-10 1.83536313e-10 0 1.760823607e-12 2.595820943e-11 1.964047328e-10 1.706293935e-10 1.775540499e-10 5.645220309e-10 1.001945245e-10 1.991340302e-10 1.98196966e-10 1.752035869e-10 1.153347312e-10 3.215746567e-10 8.112323885e-11 3.185112253e-10 2.571637341e-10 7.791120782e-11 1.42800706e-10 1.202445225e-10 4.389333552e-28 5.64026235e-10 3.232518858e-10 1.545672395e-10 2.069132326e-10 1.246696389e-16 2.400989714e-10 2.635454032e-10 4.495892807e-10 1.511636501e-09 4.37054813e-09 8.44405647e-09 4.715485215e-09 6.802825483e-09 6.922210461e-09 6.059792515e-09 3.817261932e-09 3.573351977e-09 3.242147265e-09 1.228428719e-09 1.262728161e-10 1.700665424e-10 7.110352448e-11 2.469692054e-10 6.206284739e-10 1.361847447e-09 1.991783969e-09 1.412850214e-09 2.357773638e-09 1.91938933e-09 3.454873346e-09 3.364370779e-09 4.272171628e-09 2.147941925e-09 3.636344078e-09 2.536475863e-09 3.614043149e-09 2.909483315e-09 2.169284536e-09 2.877653081e-09 2.084645633e-09 1.394494362e-09 9.314807808e-10 1.317959422e-09 6.001447924e-10 9.235072726e-10 1.146214106e-09 1.237732114e-09 1.88128513e-09 1.379256794e-09 1.309298712e-09 1.324492138e-09 2.107227956e-09 1.503458503e-09 2.387262429e-09 2.660433674e-09 1.259669455e-09 1.388187277e-09 2.324737893e-09 3.126806678e-09 1.488663735e-09 1.670590225e-09 9.165796663e-10 9.850116163e-10 9.486274317e-10 1.339447995e-09 1.074423123e-09 1.445305679e-09 1.267928492e-09 3.542479329e-10 1.434543834e-09 1.655171011e-09 1.406305233e-09 1.674249105e-09 1.032013713e-09 1.515198467e-09 1.224560625e-09 2.285399388e-09 9.464144528e-10 1.034082052e-09 1.162711145e-09 1.056331841e-09 5.995149639e-10 1.359980062e-09 9.801488875e-10 1.483674622e-09 1.57323894e-09 1.252546794e-09 9.366563883e-10 1.274681217e-09 6.192275912e-10 5.267030912e-10 9.260541372e-10 7.314916934e-10 1.204042975e-09 3.730758581e-10 8.433931726e-10 1.004077849e-09 1.906015394e-09 4.639633395e-10 8.322581818e-10 9.531761296e-10 5.202284127e-10 8.405771097e-10 3.246289626e-10 3.966674993e-10 8.746570235e-10 8.947726831e-10 1.076603167e-09 6.703495203e-10 2.61257973e-10 1.051527214e-09 6.895477446e-10 5.279068235e-10 2.103000135e-10 5.0533949e-10 8.770914885e-10 1.839962878e-10 5.765601969e-10 8.449021399e-11 4.296636046e-10 7.476189964e-10 3.774232548e-10 2.999600065e-10 1.197116421e-09 5.138056167e-10 4.764698834e-10 1.230371857e-10 8.171939261e-10 2.281805621e-10 2.833051104e-10 3.519213946e-10 3.682170855e-10 5.20411646e-10 8.530334405e-10 2.553830262e-10 3.601006312e-10 4.099512058e-10 6.465237583e-10 2.008518433e-10 8.773526018e-10 +8.032753584e-10 8.412563644e-10 2.480723536e-10 6.971427302e-10 6.431730162e-10 8.822327803e-10 2.283006592e-10 3.712271773e-10 6.479480025e-10 3.840760526e-10 4.494290058e-10 2.394212922e-10 5.502436544e-10 4.765766252e-10 3.266127122e-10 3.886727924e-10 6.370273455e-10 6.737272838e-11 4.262152047e-10 5.481200906e-10 7.795671862e-10 4.3869103e-10 9.192021224e-11 4.257139028e-10 5.793983183e-10 4.358440411e-10 7.03060978e-10 4.358117534e-10 6.554312641e-10 7.246998024e-10 8.358646964e-10 5.506144454e-10 4.100333076e-10 6.988060906e-10 3.924962569e-10 2.108186234e-10 6.841597404e-10 2.851315412e-10 3.674347022e-10 4.792539461e-10 7.56483114e-10 1.03769453e-09 1.721711045e-09 9.407900753e-10 1.708843653e-09 1.1259065e-09 9.292894891e-10 8.717195546e-10 1.55280643e-09 1.086268623e-09 1.060666142e-09 1.333942479e-09 2.372278486e-09 1.040956901e-09 1.356304577e-09 1.103118517e-09 1.143591813e-09 1.047836062e-09 1.037513681e-09 9.288368711e-10 5.441787633e-10 1.283643898e-09 8.678834467e-10 1.539612984e-09 1.041968655e-09 7.607976064e-10 1.28643318e-09 1.412514957e-09 1.24726277e-09 1.773887701e-09 1.068889434e-09 1.800671937e-09 1.112259083e-09 9.57992821e-10 6.288282486e-10 4.58044947e-10 1.030523768e-09 1.401642767e-09 1.716673588e-09 1.589398012e-09 1.324428233e-09 2.178892613e-09 1.684218819e-09 1.889057625e-09 1.787172901e-09 1.602203475e-09 1.37557684e-09 1.636280141e-09 1.794153758e-09 2.133563837e-09 2.132022723e-09 1.411102307e-09 1.004547714e-09 2.244293038e-09 1.865128711e-09 9.912891097e-10 4.989232639e-10 8.102020411e-10 9.979848244e-10 9.655932134e-10 4.559101802e-09 3.563737611e-09 2.987569119e-09 4.227059186e-09 3.232631359e-09 3.357264936e-09 3.14283475e-09 1.520804655e-09 2.908978928e-09 3.31850177e-09 2.703932369e-09 2.085432535e-09 1.780186001e-09 1.40457818e-09 1.61510295e-09 1.866230043e-09 9.558864908e-10 5.37737335e-10 3.175907926e-10 3.80924095e-10 1.689489246e-10 8.881945015e-10 2.713404307e-09 2.136988922e-09 3.444303654e-09 3.739523641e-09 7.026552141e-09 6.758644355e-09 5.806741471e-09 5.57889029e-09 5.951600922e-09 2.115515067e-09 5.602043768e-10 5.834764777e-17 2.001440061e-10 1.799580331e-10 7.655281099e-12 1.140829612e-10 1.395930088e-13 1.01199795e-10 1.837034059e-10 3.716264014e-10 2.00415689e-10 3.597203774e-10 1.8226301e-10 7.041400367e-15 8.410947216e-11 8.055361584e-12 3.074465087e-10 2.841392179e-10 2.304873373e-10 1.050125871e-10 4.704709984e-10 0 2.012289772e-10 4.188227538e-10 2.645405477e-10 2.00601592e-10 1.206990039e-10 9.113798304e-11 3.689443866e-10 0 2.283566266e-10 2.39690787e-10 1.066559223e-10 6.990567378e-10 2.441158632e-10 9.435156071e-10 2.306577948e-09 3.346472874e-09 6.861059213e-09 5.514847413e-09 9.405797139e-09 8.444866106e-09 2.785936717e-09 3.526464068e-09 2.609643971e-09 3.501763564e-09 1.89063341e-09 3.170780421e-10 1.057881482e-10 1.938443923e-10 1.61430237e-10 9.740359458e-10 8.457333713e-10 2.129506956e-09 1.777960456e-09 9.776419621e-10 1.340435095e-09 2.944811355e-09 3.021982602e-09 2.205107735e-09 2.36602581e-09 2.043287797e-09 2.236149294e-09 3.621365199e-09 3.497377278e-09 2.624222298e-09 2.782990537e-09 2.538248232e-09 2.071104287e-09 6.420180198e-10 1.61709026e-09 5.374101214e-10 8.486916361e-10 4.852604316e-10 1.479082172e-09 1.517728211e-09 1.113459671e-09 2.004483951e-09 8.607725226e-10 1.699016039e-09 1.350741347e-09 1.742383875e-09 1.728236434e-09 2.471283756e-09 1.841937763e-09 2.819955663e-09 1.424152918e-09 1.684572121e-09 2.094010993e-09 1.849164704e-09 1.838584858e-09 9.747468986e-10 1.060470208e-09 1.14107882e-09 1.160620463e-09 1.113467977e-09 8.16409271e-10 9.971670666e-10 1.613108013e-09 9.433074575e-10 1.312149041e-09 1.138579499e-09 1.124346169e-09 1.071575413e-09 8.238136006e-10 9.53950117e-10 9.21223798e-10 4.06437334e-10 8.718131991e-10 1.190338222e-09 1.090731543e-09 1.107022149e-09 1.814668265e-09 1.602548085e-09 1.297421042e-09 9.139534097e-10 9.863407841e-10 1.165341165e-09 6.587999969e-10 1.008021586e-09 1.236298785e-09 9.146570157e-10 1.270597029e-09 1.361290833e-09 1.48565154e-09 1.369683789e-09 1.010810306e-09 6.662130356e-10 5.653573766e-10 2.810805711e-10 4.547036177e-10 4.554022233e-10 1.044654508e-09 1.079815579e-09 3.862137579e-10 5.684167107e-10 5.49058736e-10 8.549572249e-10 7.12158615e-10 6.951564098e-10 2.889806495e-10 6.028880268e-10 6.917353725e-10 3.927070457e-10 3.462489161e-10 1.325332667e-10 8.351692358e-10 6.792808359e-10 8.507412798e-10 3.847799474e-10 3.588128259e-10 4.379761459e-10 7.503771847e-10 4.219262207e-10 3.151542486e-10 9.199495441e-10 7.574629756e-10 6.899314068e-10 7.854514261e-10 4.220512861e-10 9.09854143e-11 1.542484436e-10 7.588965589e-10 4.505218419e-10 3.143407053e-10 5.467859456e-10 1.599706222e-10 2.115728684e-10 +5.578931219e-10 1.982735912e-10 3.224272918e-10 4.445332005e-10 4.22249265e-10 5.647345754e-10 9.715452749e-10 5.363131414e-10 4.751819086e-10 3.818638299e-10 6.786003352e-10 3.4040448e-10 4.568804204e-10 6.591530913e-10 3.491949535e-10 1.707494869e-10 5.397645061e-10 5.597390684e-10 3.802023636e-10 5.24192852e-10 1.148694726e-09 2.510428428e-10 7.245695189e-10 2.547120493e-10 5.106958971e-10 1.412093977e-09 5.511162051e-10 6.118703145e-10 2.601179482e-10 3.586195554e-10 5.722169011e-10 3.681131888e-10 1.255342126e-09 5.834063745e-10 1.639943142e-10 6.016797496e-10 3.66800676e-10 4.312596482e-10 5.700079865e-10 6.471307754e-10 8.726124258e-10 8.487502786e-10 1.107658811e-09 5.727814136e-10 9.904308397e-10 1.193971989e-09 1.027451908e-09 1.088529464e-09 5.789564217e-10 7.669859965e-10 1.190212784e-09 9.220886871e-10 7.242198898e-10 7.691705888e-10 6.228791485e-10 1.384838798e-09 1.01082624e-09 1.685951379e-09 1.130648299e-09 8.350965366e-10 9.193037095e-10 6.78174079e-10 1.437554156e-09 2.385230635e-09 1.337306876e-09 1.319721356e-09 9.822482655e-10 1.278454058e-09 1.101714273e-09 1.534154573e-09 1.714367146e-09 9.700201511e-10 1.036126761e-09 6.127003339e-10 1.529077601e-09 6.277435561e-10 6.247374791e-10 9.14663322e-10 1.516100708e-09 1.654396127e-09 1.667381925e-09 1.907830517e-09 2.462474093e-09 1.664761119e-09 2.031957681e-09 1.208134127e-09 1.051833272e-09 1.492755964e-09 9.52746335e-10 1.391625795e-09 1.315296055e-09 1.159852364e-09 1.914226123e-09 2.009129316e-09 8.814444758e-10 1.339955965e-09 9.04925515e-10 6.365964396e-10 1.111169968e-09 1.394343592e-09 2.365428506e-09 4.538475159e-09 3.807152742e-09 3.10713463e-09 3.264550803e-09 2.704859988e-09 1.997661433e-09 4.212481029e-09 2.997075059e-09 3.582975723e-09 2.500601184e-09 1.843629263e-09 2.171920428e-09 2.012013585e-09 2.604851778e-09 1.446988508e-09 1.526820175e-09 3.450563234e-10 4.696140057e-10 2.950966203e-10 2.288696124e-10 6.409091371e-10 2.798541792e-09 3.32582289e-09 3.630326164e-09 3.901136816e-09 6.000667936e-09 9.788010169e-09 6.931003144e-09 7.933210935e-09 6.858493719e-09 4.081887089e-09 1.40462317e-09 3.014134195e-10 1.516567603e-10 2.249671483e-10 2.725209977e-10 1.436719265e-10 2.085929352e-10 3.884727066e-10 5.816143345e-11 1.617519393e-10 2.142345751e-10 1.756075997e-10 1.613332678e-10 2.627415188e-10 2.558586343e-10 1.067681216e-10 3.070228902e-10 1.634478993e-10 9.264747028e-11 1.595877466e-10 3.332416574e-10 1.449853699e-10 7.534484248e-11 1.549750434e-10 1.154010808e-10 8.770147551e-11 5.587865554e-10 1.72808656e-10 7.762709924e-11 2.008334557e-10 2.166937879e-10 6.450500684e-18 3.59933184e-10 1.710665283e-10 1.635304635e-15 7.82775437e-10 3.777977251e-09 4.737307049e-09 6.303308173e-09 6.600849721e-09 9.024619265e-09 8.014778015e-09 3.512742816e-09 3.706877303e-09 3.115973035e-09 2.027353563e-09 1.065280269e-09 1.67976038e-10 3.31953908e-10 1.564386079e-10 5.482365947e-10 1.540378961e-09 1.392304283e-09 2.611629245e-09 2.204383855e-09 1.279552348e-09 1.227968987e-09 3.04443546e-09 2.589140877e-09 3.184199019e-09 2.663986469e-09 1.982702426e-09 2.46989233e-09 2.936868814e-09 3.677400612e-09 3.208930533e-09 2.258053081e-09 2.228309548e-09 2.035545112e-09 8.925892962e-10 6.985149597e-10 3.452083928e-10 6.660194694e-10 9.906619459e-10 1.429776526e-09 1.949585534e-09 1.434508479e-09 1.499334323e-09 2.113390748e-09 1.587151806e-09 1.141183394e-09 1.794451128e-09 1.88422102e-09 2.473571398e-09 1.806225939e-09 2.638856501e-09 2.050269352e-09 1.682127507e-09 1.742671147e-09 1.023476773e-09 5.227777268e-10 1.523514108e-09 1.27279991e-09 1.092774365e-09 1.751052901e-09 1.650737629e-09 8.113971835e-10 1.180604032e-09 1.144780561e-09 1.76713237e-09 1.189214616e-09 1.872819805e-09 7.0532119e-10 1.134219144e-09 1.18947092e-09 1.087497797e-09 7.386738439e-10 5.087243666e-10 1.251307719e-09 6.28193247e-10 9.534902104e-10 7.683942968e-10 1.489097415e-09 1.375632591e-09 8.095075971e-10 6.953372455e-10 1.129268129e-09 1.194410586e-09 8.95981589e-10 7.088146019e-10 1.068131027e-09 1.164252641e-09 1.751562444e-09 7.920832001e-10 1.271400073e-09 1.21279189e-09 1.406241346e-09 7.729428555e-10 4.690082219e-10 4.961459771e-10 6.553396386e-10 2.732962391e-10 4.426178927e-10 3.942114935e-10 9.933031427e-10 2.401955961e-10 4.730068602e-10 9.325931552e-10 6.340199926e-10 2.70510445e-10 7.725638511e-10 3.103552921e-10 5.638918437e-10 4.162859146e-10 2.246778135e-10 6.791108534e-10 1.005330191e-09 3.717193395e-10 4.757841592e-10 4.924448856e-10 7.364480088e-10 4.310211579e-10 3.728319762e-10 7.186690231e-10 6.589063146e-10 4.826578063e-10 5.455040296e-10 8.264962291e-10 4.211741996e-10 6.836174138e-10 4.091984497e-10 2.900186074e-10 4.331550855e-10 1.60451167e-10 1.029669817e-10 4.907763652e-10 5.769872642e-10 2.656381495e-10 +2.225056289e-10 4.993008869e-10 4.556202574e-10 5.460104827e-10 1.879074687e-10 2.925744031e-10 4.064432828e-10 6.735837894e-10 2.415753718e-10 4.367943377e-10 2.906704116e-10 5.747241558e-11 5.337230823e-10 2.888805616e-10 5.184266301e-10 2.969154852e-10 6.894613658e-10 2.249791312e-10 4.735001804e-10 4.140172079e-10 2.923382479e-10 3.527091594e-10 2.170215212e-10 1.475129823e-10 4.005441024e-10 9.108231395e-10 3.38950724e-10 1.00469479e-09 4.138238006e-10 3.764341484e-10 5.450910253e-10 7.76715128e-10 1.903765888e-10 3.813508404e-10 2.523925203e-10 5.715362562e-10 2.496058033e-10 2.870198343e-10 3.922657627e-10 6.973715254e-10 7.888187178e-10 1.203051407e-09 1.14399388e-09 1.391229157e-09 1.025709049e-09 1.485059389e-09 8.8454322e-10 1.209143852e-09 7.6038008e-10 1.492011669e-09 1.313178774e-09 1.100033325e-09 1.203920664e-09 1.072895808e-09 9.58718684e-10 1.463013465e-09 6.56004603e-10 1.024727952e-09 4.726299257e-10 1.129279983e-09 1.119409804e-09 6.059785615e-10 1.05022635e-09 1.771696319e-09 1.372912931e-09 1.498984098e-09 8.390477648e-10 9.950365927e-10 1.454179631e-09 1.527132312e-09 1.488955707e-09 1.570337714e-09 1.391101714e-09 1.357068826e-09 1.237926044e-09 1.666271726e-09 5.470122956e-10 6.271789108e-10 1.440742273e-09 1.823322513e-09 2.952032689e-09 3.031898478e-09 1.661672264e-09 1.837272887e-09 1.622544027e-09 1.246329558e-09 2.383771757e-09 1.976245765e-09 1.775729759e-09 1.472228819e-09 1.485514546e-09 1.677440405e-09 1.533772157e-09 1.54113652e-09 1.661250943e-09 1.180696443e-09 3.38245039e-10 9.704626637e-10 8.142301239e-10 2.264671211e-09 2.223517376e-09 4.387815558e-09 3.461296051e-09 3.237873024e-09 2.826098094e-09 1.984864942e-09 2.40259324e-09 2.319410673e-09 3.532732502e-09 4.618634822e-09 2.305174117e-09 3.029511106e-09 1.602224725e-09 1.951793079e-09 2.352356222e-09 2.103808332e-09 9.359414597e-10 4.253325054e-10 4.358034165e-10 3.872895112e-10 1.777823652e-10 6.070746225e-10 3.156169387e-09 3.260559229e-09 2.457179498e-09 2.971612225e-09 6.652950426e-09 1.118993498e-08 7.250608518e-09 8.66289277e-09 5.063361663e-09 4.157589921e-09 9.508153393e-10 1.951409193e-10 2.51680753e-10 7.066001749e-11 8.11127964e-11 1.475333002e-10 6.46367614e-11 3.414663096e-10 4.902781651e-10 1.625375302e-10 2.409841947e-10 3.254423268e-10 3.325280203e-10 2.413935252e-10 4.48392218e-10 8.21654008e-11 1.0952422e-10 4.094672373e-10 8.779935269e-11 1.51824057e-10 1.988311918e-10 0 7.521482474e-11 1.49169786e-10 7.002678074e-11 6.784072899e-11 4.966647721e-10 3.63965669e-10 2.454869178e-10 1.147439758e-10 1.907178267e-10 6.510568436e-11 3.360280153e-11 4.085005181e-10 0 1.491942341e-09 4.518277525e-09 5.074154476e-09 6.328564192e-09 6.306594016e-09 1.00062392e-08 5.263533715e-09 3.049198129e-09 3.759982912e-09 3.248520914e-09 2.010279605e-09 5.265701799e-10 4.561062723e-10 2.689260985e-10 1.190315058e-10 7.5021465e-10 1.821506563e-09 1.68302603e-09 1.282117097e-09 2.197468003e-09 2.126905081e-09 1.9876518e-09 3.860147163e-09 4.033899131e-09 3.750830436e-09 2.690752451e-09 2.07962368e-09 3.201175627e-09 2.921464459e-09 2.239483187e-09 3.357848939e-09 2.073192569e-09 2.407209562e-09 1.276991846e-09 1.326799005e-09 6.451201747e-10 2.896076464e-10 9.081898841e-10 1.080410029e-09 1.514898935e-09 1.161633171e-09 2.016368482e-09 1.540284935e-09 9.797091382e-10 1.830177979e-09 1.847528266e-09 1.028548778e-09 2.529523354e-09 1.786001924e-09 3.25469345e-09 2.426537576e-09 1.866459793e-09 1.766359757e-09 1.666049354e-09 9.720873525e-10 8.882526985e-10 1.326184503e-09 1.194872304e-09 1.263573173e-09 1.067419631e-09 9.170971028e-10 5.149804864e-10 7.19324098e-10 1.319496892e-09 7.356230001e-10 7.238969175e-10 7.167250722e-10 7.48754328e-10 1.184906906e-09 1.325826759e-09 8.966909839e-10 1.325753563e-09 9.15121789e-10 1.042598502e-09 2.845125629e-10 1.34105325e-09 1.082452002e-09 1.366541992e-09 9.043387199e-10 9.259347151e-10 1.13554138e-09 1.032472281e-09 8.405781704e-10 1.316272653e-09 8.499123936e-10 8.176313098e-10 1.038922176e-09 8.676338566e-10 7.802667433e-10 1.029449831e-09 7.231884555e-10 1.248147303e-09 6.397926015e-10 5.715740204e-10 7.562538283e-10 5.981969414e-10 6.031545832e-10 4.745577236e-10 3.795481846e-10 6.570966618e-10 4.442106553e-10 5.109344835e-10 4.890234674e-10 1.169374057e-09 6.483539702e-10 2.915838446e-10 9.4288714e-10 1.587733908e-10 6.716363177e-10 3.950409054e-10 2.912198313e-10 6.993287586e-11 4.998021492e-10 3.142392833e-10 5.833843165e-10 4.082674895e-10 7.391390644e-10 5.512829812e-10 1.710703642e-10 2.429340853e-10 5.766539236e-10 3.580809773e-10 4.001998072e-10 4.148918333e-10 5.908052483e-10 6.149657978e-10 5.76519977e-10 4.832593009e-10 5.449430363e-10 3.381716952e-10 5.141917077e-10 7.433934071e-10 5.947638989e-10 +3.104302389e-10 2.844941221e-10 7.961049697e-10 2.819881067e-10 3.959178208e-10 3.51241851e-10 7.80203923e-10 8.285650141e-10 2.725180362e-10 9.382934126e-10 2.989999281e-10 2.955069632e-10 5.648662523e-10 7.625028761e-10 6.351577091e-10 6.373947229e-10 7.756460519e-10 3.497268721e-10 1.754046241e-10 1.88278673e-10 4.811069511e-10 2.510383319e-10 4.387947981e-10 6.662104941e-10 5.225581553e-10 4.217462956e-10 6.324222533e-10 3.37578539e-10 7.490411979e-10 5.631726227e-10 6.813400068e-10 6.157157091e-10 4.595740357e-10 4.438209718e-10 6.25155608e-10 3.136929521e-10 4.665578833e-10 5.65749429e-10 3.320120031e-10 5.219539566e-10 6.468081037e-10 9.024557814e-10 2.004086138e-09 8.087217616e-10 7.720557851e-10 1.413068805e-09 1.461964013e-09 1.117262733e-09 1.179220256e-09 1.407195278e-09 1.314159519e-09 2.262886371e-09 7.112613953e-10 7.407441831e-10 1.684511725e-09 1.202411866e-09 1.301176001e-09 8.865211033e-10 1.079340903e-09 7.692500925e-10 7.3258436e-10 1.356267926e-09 1.100723881e-09 1.662624264e-09 7.487904649e-10 5.556350071e-10 1.345938812e-09 1.21701586e-09 1.048947142e-09 9.059242741e-10 1.378107775e-09 7.863656936e-10 8.98011301e-10 7.682482123e-10 9.000791549e-10 9.152565573e-10 1.335601522e-09 4.985555389e-10 1.789307991e-09 1.045250241e-09 2.048879352e-09 2.775274108e-09 2.959012717e-09 1.678461763e-09 1.883581715e-09 1.625693878e-09 2.481962878e-09 1.508008242e-09 2.377746457e-09 8.917132321e-10 1.555268789e-09 1.577321227e-09 1.156649112e-09 1.281218439e-09 1.471916585e-09 8.207562546e-10 5.700392274e-10 1.059306577e-09 7.638881967e-10 8.337314181e-10 2.3574409e-09 2.724081877e-09 2.398753779e-09 2.521403734e-09 4.161327711e-09 2.950430315e-09 2.647739493e-09 2.129993191e-09 2.752844446e-09 3.107146565e-09 3.229632381e-09 1.207705285e-09 2.598792031e-09 1.839505746e-09 1.657473464e-09 1.704497508e-09 1.063927488e-09 8.025301037e-10 2.11608321e-10 1.368273047e-10 3.736048595e-11 1.976940648e-10 2.026123627e-09 3.658934858e-09 3.000635979e-09 3.189719069e-09 4.738088538e-09 8.378206457e-09 6.925222799e-09 6.948238611e-09 6.326654206e-09 5.840564504e-09 2.292982741e-09 3.086053218e-10 1.495489456e-10 2.578596127e-10 1.043076778e-10 1.853446267e-10 3.360647609e-16 1.031036378e-10 6.514606602e-11 1.414769429e-10 1.697863955e-10 3.007401496e-10 2.057013014e-10 2.991146555e-10 2.589268831e-10 2.73131984e-10 7.1163615e-11 2.118226288e-10 3.728737805e-10 1.568477571e-10 1.927591849e-10 5.931186304e-11 2.533839319e-10 2.40736525e-10 2.918053439e-10 3.402362343e-10 1.32091468e-10 7.639026387e-11 3.898705123e-10 2.91016411e-10 2.603444015e-10 1.263598972e-10 1.74356437e-15 1.464613842e-10 1.813408174e-10 1.82522475e-09 3.74222584e-09 5.526910728e-09 7.775522334e-09 6.314583968e-09 6.942924765e-09 5.48433552e-09 3.293204838e-09 3.829599113e-09 2.490387193e-09 2.008146561e-09 3.553265077e-10 1.035768918e-10 1.613838476e-10 1.449114657e-14 4.225611315e-10 1.170407693e-09 1.94671438e-09 1.32238051e-09 2.425593771e-09 2.461195664e-09 1.553220943e-09 3.031278442e-09 5.123857901e-09 2.309911991e-09 1.990489319e-09 2.336045905e-09 2.285288535e-09 2.182997929e-09 3.055777639e-09 3.808708841e-09 3.246558257e-09 2.307064931e-09 1.099033042e-09 1.347867575e-09 6.446342121e-10 2.451910567e-10 1.277018264e-09 1.173875406e-09 1.180475403e-09 1.346464525e-09 1.776362306e-09 1.277640674e-09 1.3894065e-09 1.915543249e-09 1.883873171e-09 1.839598309e-09 1.54721543e-09 1.282824562e-09 1.477932464e-09 2.72171464e-09 2.335096393e-09 3.397656988e-09 2.200234382e-09 1.805943948e-09 7.134389705e-10 1.59539249e-09 6.210740907e-10 1.140081475e-09 1.046457051e-09 1.172668817e-09 1.385542681e-09 1.470655316e-09 9.833196395e-10 6.810951165e-10 6.592024155e-10 1.676101624e-09 1.024133369e-09 1.228756228e-09 9.566525785e-10 1.08479037e-09 8.550506478e-10 9.895235349e-10 1.034103595e-09 7.557644374e-10 9.094191822e-10 4.92142968e-10 7.992824034e-10 1.573348237e-09 1.511498591e-09 1.364558192e-09 9.157340426e-10 9.643574697e-10 9.280146492e-10 1.934664514e-09 1.32134706e-09 1.42753904e-09 1.425623042e-09 9.859643011e-10 7.051883642e-10 2.114976851e-09 7.660441702e-10 9.864068728e-10 1.160849065e-09 4.133610373e-10 2.353881967e-10 5.671997214e-10 4.634942202e-10 2.924973328e-10 4.385120772e-10 4.775942711e-10 1.73132112e-10 4.36647217e-10 3.399299757e-10 4.513401945e-10 8.399398501e-10 2.70312727e-10 5.561658623e-10 5.525277565e-10 2.513223776e-10 8.4398462e-10 3.152153655e-10 3.619058552e-10 3.441135216e-10 2.350421262e-10 4.532103414e-10 9.913306132e-10 3.525286812e-10 1.987885164e-10 2.284072637e-10 4.726985787e-10 7.170791182e-10 6.057040855e-10 6.688918936e-10 1.148067795e-10 3.531836705e-10 3.638973131e-10 3.974539386e-10 2.495400327e-10 2.16082854e-10 2.813740447e-10 4.360384681e-10 7.879652606e-10 +4.353713559e-10 2.877813942e-10 4.54366996e-10 9.932157449e-10 2.732147859e-10 4.621626212e-10 2.52181077e-10 2.499019204e-10 2.464402641e-10 4.754729076e-10 6.097746036e-10 3.399292534e-10 1.115184459e-09 2.654348265e-10 9.845441641e-10 8.484671511e-10 4.128453542e-10 2.665444032e-10 3.754380418e-10 5.684172626e-10 2.552494564e-10 7.102253627e-10 3.232048618e-10 4.941588084e-10 8.008390313e-10 3.112809448e-10 5.718765395e-10 4.405959525e-10 4.159164582e-10 7.164666148e-10 1.588837841e-10 1.120395197e-09 4.910662203e-10 6.366298053e-10 4.313370414e-10 2.184245567e-10 7.208641385e-10 2.853701318e-10 5.731871068e-10 7.722641495e-10 5.803208755e-10 6.629067171e-10 1.125722946e-09 1.133390629e-09 1.485976718e-09 8.686962479e-10 9.164416167e-10 7.569917707e-10 6.759724225e-10 1.568725445e-09 1.350188382e-09 8.372853097e-10 7.56306684e-10 1.020593218e-09 7.493775501e-10 1.065884009e-09 1.149313879e-09 8.647730756e-10 9.300517734e-10 9.861329097e-10 1.654591528e-09 1.154832893e-09 1.044428223e-09 9.214521092e-10 1.249323958e-09 1.583099705e-09 9.593508825e-10 1.147902219e-09 1.492167346e-09 1.853158043e-09 1.529741335e-09 9.599551002e-10 1.0013167e-09 1.207871637e-09 1.078369857e-09 1.698202726e-09 9.096252518e-10 8.241979175e-10 1.153886017e-09 6.417227302e-10 1.630489791e-09 2.170763539e-09 1.897711336e-09 1.611416806e-09 1.826966348e-09 2.7116315e-09 9.707500226e-10 2.007456885e-09 1.672288011e-09 1.810144158e-09 1.509981694e-09 1.949739914e-09 2.250704008e-09 1.463214577e-09 1.215185829e-09 4.608746978e-10 5.999095394e-10 6.663896245e-10 8.355103257e-10 1.735650921e-09 2.767893553e-09 2.819651882e-09 2.992424478e-09 1.887194679e-09 3.592941741e-09 2.460560392e-09 1.621915589e-09 1.025728674e-09 3.971283311e-09 3.039610309e-09 2.904621725e-09 3.240175915e-09 1.92346363e-09 2.992663064e-09 1.930413312e-09 2.213974344e-09 2.020806791e-09 9.706742807e-10 2.187125131e-10 7.445024699e-11 3.415123014e-10 3.771330753e-10 2.105450031e-09 2.599652526e-09 3.885653841e-09 2.620509619e-09 4.395545209e-09 8.17736246e-09 7.67908651e-09 7.187239281e-09 7.65583317e-09 5.075070691e-09 2.786384909e-09 3.180991164e-10 2.407464659e-10 3.340921517e-10 2.461400832e-10 4.322658917e-10 7.292598772e-14 2.12363969e-10 8.932048305e-11 4.068912002e-16 2.559020799e-13 1.354576798e-10 9.989663422e-11 1.832801566e-14 9.334179204e-11 1.851480628e-10 3.68671716e-10 5.024820017e-10 3.327245712e-10 1.922638252e-10 7.245555302e-11 3.256170833e-10 4.02560999e-10 2.440813592e-10 1.948421959e-10 1.79447544e-10 1.663867748e-10 3.556142675e-14 2.348979952e-10 2.858012379e-10 2.581153456e-10 2.362273359e-10 6.151604829e-18 8.323625475e-11 1.009981142e-09 3.444570669e-09 5.321859733e-09 6.568731805e-09 6.651429948e-09 7.938754756e-09 8.702538534e-09 4.588628268e-09 2.772671003e-09 3.660174576e-09 4.119481333e-09 2.004181011e-09 3.847907658e-10 1.976123947e-10 4.187319557e-10 1.34730318e-11 6.124115866e-10 1.33770469e-09 1.888928705e-09 2.239719812e-09 2.484747086e-09 1.577291904e-09 1.434245767e-09 3.353320605e-09 4.426021645e-09 3.23753034e-09 3.192602795e-09 2.395304285e-09 2.763488688e-09 2.228670201e-09 2.185974616e-09 3.766268683e-09 4.247319549e-09 2.384187419e-09 1.374948669e-09 5.189228454e-10 8.626195173e-10 4.867474677e-10 5.441304684e-10 1.043817603e-09 1.261234608e-09 1.460647006e-09 1.577301222e-09 1.358785053e-09 1.515371202e-09 1.425078828e-09 2.000566442e-09 1.335760832e-09 1.272110552e-09 1.838150337e-09 1.134757366e-09 2.492896512e-09 1.830792995e-09 2.066170465e-09 1.774673387e-09 1.189405265e-09 1.217640143e-09 9.567092502e-10 1.398364319e-09 1.729203981e-09 1.407060349e-09 4.364602214e-10 9.47960157e-10 2.178737394e-09 1.086836574e-09 1.220375414e-09 1.253759387e-09 9.635788655e-10 1.155139916e-09 1.090414782e-09 1.194756879e-09 8.258074706e-10 8.788281095e-10 7.093296599e-10 1.427418242e-09 6.76177676e-10 8.123874383e-10 9.194977241e-10 5.719356492e-10 1.406187125e-09 8.433821435e-10 1.472039562e-09 9.082092212e-10 1.032498768e-09 7.607158825e-10 7.850707676e-10 1.485039056e-09 7.62657114e-10 1.721387399e-09 7.974816339e-10 1.711417154e-09 9.207600613e-10 1.373168069e-09 8.913541218e-10 9.118003505e-10 6.576031403e-10 3.441053812e-10 5.450608292e-10 4.087605853e-10 3.912838189e-10 1.011335237e-09 9.577931109e-10 4.257914925e-10 2.584341352e-10 7.155674441e-10 7.641242087e-10 5.396971199e-10 4.5524853e-10 7.293987744e-10 4.562985546e-10 3.487115383e-10 6.031658545e-10 1.405461231e-10 4.224808413e-10 7.202346707e-10 9.658801271e-10 4.18912973e-10 6.73574526e-10 2.7734762e-10 7.826696841e-10 4.394035613e-10 4.907294551e-10 2.975005474e-10 5.110079325e-10 5.026221529e-10 4.421129469e-10 6.102411989e-10 4.765804724e-10 4.043246169e-10 4.66934823e-10 3.187082895e-10 8.34488498e-10 8.047627319e-10 5.050256374e-10 +1.291402221e-09 2.057631759e-10 2.426041904e-10 5.47992016e-10 2.364174857e-10 3.388054925e-10 4.295920043e-10 4.371346412e-10 4.51342033e-10 3.442106553e-10 2.836657579e-10 3.274089373e-10 6.038581698e-10 4.985838984e-10 1.514908086e-10 6.329443176e-10 5.187140071e-10 8.222387279e-11 6.280192291e-10 6.131444948e-10 6.190947789e-10 5.298428262e-10 7.656195155e-10 5.248841968e-10 2.206167166e-10 6.17431361e-10 3.600170902e-10 3.314014287e-10 1.703098452e-10 9.754923028e-10 4.176370927e-10 1.093521176e-09 1.231426141e-09 2.712251949e-10 4.893186751e-10 5.605989635e-10 5.614811801e-10 1.166294412e-10 9.638147486e-10 3.275391705e-10 1.285190079e-09 9.245354852e-10 1.074852333e-09 1.141273579e-09 9.07234002e-10 1.384279164e-09 1.222011342e-09 1.16513742e-09 1.395599193e-09 6.428382661e-10 8.646625991e-10 1.399338768e-09 1.127058139e-09 1.197564879e-09 1.146392832e-09 6.926321078e-10 1.347393275e-09 1.323368201e-09 5.549295284e-10 1.172183885e-09 9.842701772e-10 1.285912331e-09 1.223108171e-09 9.645196025e-10 1.179063763e-09 1.262091925e-09 1.493465059e-09 9.931422322e-10 1.313876711e-09 1.708618656e-09 1.736096396e-09 1.513171985e-09 8.534907868e-10 9.205784792e-10 1.161818421e-09 1.053965334e-09 1.549807755e-09 9.521261228e-10 9.898044815e-10 1.192702276e-09 1.48627202e-09 2.237515058e-09 2.848934481e-09 2.318387997e-09 1.72593151e-09 2.753081749e-09 1.390622804e-09 1.722185639e-09 1.561796797e-09 1.949697929e-09 1.202837169e-09 1.38918118e-09 2.061963084e-09 1.485106392e-09 1.154538949e-09 4.905188672e-10 8.901847839e-10 6.629109224e-10 1.1934899e-09 1.032680794e-09 2.887498341e-09 4.165852871e-09 3.99878388e-09 2.495267846e-09 2.090511669e-09 2.116842913e-09 2.980621223e-09 2.500522875e-09 4.326992014e-09 4.793832283e-09 2.851462518e-09 2.650527584e-09 1.453477348e-09 2.09521756e-09 2.493229652e-09 2.226131273e-09 2.263977845e-09 7.45423656e-10 2.557074397e-10 2.196672382e-10 5.630079504e-11 3.921921352e-10 2.337747635e-09 3.191270726e-09 4.214064317e-09 3.647007126e-09 3.456531436e-09 8.827534791e-09 8.563289378e-09 6.764699376e-09 5.842543203e-09 5.418124912e-09 3.952971263e-09 1.039427041e-09 1.19004152e-10 1.089774196e-15 4.783353204e-13 3.670324873e-10 1.720419531e-10 0 2.163045862e-10 1.48038694e-10 1.934888013e-10 0 1.695536011e-10 9.319914341e-11 1.108558979e-10 1.906558636e-10 5.011293278e-10 1.306156738e-10 1.051067361e-10 3.181608144e-10 1.893770925e-10 1.797635245e-10 1.641723598e-10 2.236787127e-10 1.671595374e-10 2.91858766e-10 1.572962499e-10 9.875045128e-11 2.138145548e-10 2.951399581e-10 1.820182106e-10 2.38374654e-10 4.013925318e-10 5.912219504e-10 1.135283555e-09 3.982173864e-09 4.150950336e-09 5.784906315e-09 6.619250825e-09 7.507591132e-09 6.770632144e-09 4.290742304e-09 4.720445163e-09 3.414493594e-09 3.22231092e-09 1.741592199e-09 2.295294422e-10 3.408550598e-10 2.290039875e-10 1.602165058e-10 8.305306463e-10 1.701012643e-09 1.084748983e-09 1.837805564e-09 2.295042515e-09 1.317412952e-09 1.772482172e-09 4.069572598e-09 4.065844425e-09 3.803719728e-09 1.907028005e-09 2.418019996e-09 3.284048592e-09 2.293653585e-09 2.955584067e-09 1.242347224e-09 4.144027486e-09 2.371888769e-09 1.030985592e-09 8.776135738e-10 9.255006369e-10 3.812477977e-10 6.057538854e-10 1.667343601e-09 1.576314488e-09 1.897543114e-09 1.590622155e-09 1.955935632e-09 2.053240441e-09 1.831163927e-09 1.78277187e-09 1.955619132e-09 2.128504109e-09 2.257819639e-09 1.935398958e-09 2.400028359e-09 3.149392596e-09 1.717345345e-09 1.671218047e-09 1.321535993e-09 6.83732418e-10 1.005190307e-09 1.164280455e-09 8.150080816e-10 1.239716994e-09 1.216690066e-09 1.269827121e-09 7.83688847e-10 1.36402168e-09 5.964956548e-10 9.00437612e-10 1.245479614e-09 6.848767143e-10 1.372147215e-09 1.127110004e-09 1.578539575e-09 1.050756263e-09 4.359164976e-10 9.048415451e-10 6.619680324e-10 1.090332256e-09 1.162066676e-09 6.007038858e-10 1.124783016e-09 1.172566857e-09 8.253332591e-10 1.726836639e-09 1.16025224e-09 9.106445854e-10 1.084693596e-09 7.064234734e-10 8.278585479e-10 7.280064192e-10 9.553764507e-10 1.184458982e-09 9.218383999e-10 7.607729394e-10 1.351816217e-09 8.969519003e-10 3.636077018e-10 9.939267302e-10 9.976403563e-10 5.408570195e-10 5.914827287e-10 3.890648025e-10 2.798597246e-10 5.58416848e-10 5.405093161e-10 2.495595953e-10 1.336825933e-09 5.684748105e-10 6.529239233e-10 4.294606409e-10 8.167016452e-10 4.095238441e-10 4.498427922e-10 6.952010524e-10 6.826749299e-10 4.784551682e-10 2.043139273e-10 5.928503009e-10 5.992101814e-10 7.637617075e-10 5.162306413e-10 5.173420035e-10 3.76953787e-10 5.947978513e-10 3.927461957e-10 4.072866218e-10 2.870466949e-10 4.990636923e-10 1.851724537e-10 2.222411382e-10 8.143312849e-10 2.174830513e-10 5.007405322e-10 3.156180354e-10 3.216806854e-10 +4.126625908e-10 5.683831253e-10 4.113044105e-10 3.151690151e-10 8.628206157e-10 6.991326734e-10 3.713306515e-10 7.559955933e-10 5.13605847e-10 3.10901969e-10 6.046864798e-10 6.238215748e-10 5.108295653e-10 2.68538018e-10 1.955261305e-10 6.897247466e-10 9.345120377e-10 4.48278159e-10 3.519602595e-10 5.288581142e-10 1.813800855e-10 6.331621301e-10 6.373194666e-10 5.735870353e-10 4.995377613e-10 1.316461633e-09 7.052576897e-10 7.874446107e-10 1.365410437e-09 2.715682584e-10 5.607139275e-10 8.436459454e-10 4.732219572e-10 5.51260034e-10 3.230529865e-10 3.918518423e-10 3.146283156e-10 9.758004087e-10 3.797456499e-10 1.020332792e-09 7.161762662e-10 5.980908876e-10 1.02370109e-09 9.250235385e-10 1.004281185e-09 7.547597064e-10 1.051937195e-09 9.786963484e-10 1.044848447e-09 7.161009771e-10 1.186413282e-09 1.128495043e-09 9.149614109e-10 1.546331417e-09 1.21809966e-09 1.081282662e-09 6.283408639e-10 5.370767924e-10 1.038686042e-09 1.310216752e-09 6.320053513e-10 1.042699594e-09 1.363004169e-09 1.575880821e-09 6.663414287e-10 1.099336581e-09 1.310164379e-09 8.802785245e-10 9.52876509e-10 7.462798417e-10 1.04103489e-09 1.524713009e-09 1.446266877e-09 1.526498124e-09 1.06086063e-09 1.264824481e-09 7.788775703e-10 1.202007453e-09 1.883663664e-09 1.52562259e-09 2.317999103e-09 1.74794933e-09 1.800476689e-09 1.422592536e-09 2.30136598e-09 2.094004444e-09 1.23074222e-09 1.650048941e-09 1.396296207e-09 1.831179964e-09 9.599877293e-10 2.022625538e-09 1.305678115e-09 2.252284172e-09 1.16490987e-09 8.613257493e-10 2.957598723e-10 9.613763192e-10 1.138674005e-09 1.370507924e-09 2.475220711e-09 2.445027235e-09 2.453387296e-09 2.998669223e-09 3.08974016e-09 2.858720893e-09 2.946866942e-09 2.137868383e-09 3.183181858e-09 3.940287133e-09 3.429029478e-09 2.160632739e-09 1.725962976e-09 2.450957707e-09 1.375962949e-09 2.055082899e-09 1.603447635e-09 1.658630717e-09 1.289156366e-10 1.051576318e-10 6.78895395e-11 3.561591638e-10 9.704268389e-10 1.77375534e-09 2.390376781e-09 3.348104721e-09 2.792757396e-09 6.990960669e-09 8.811951267e-09 6.836746662e-09 5.915184297e-09 5.060168297e-09 5.181482414e-09 1.690915895e-09 4.543040472e-10 1.950766052e-10 2.246191826e-10 2.29487768e-10 2.238162581e-10 0 2.046121858e-10 5.286671056e-11 4.835959558e-10 7.434057573e-11 1.4282352e-10 3.318050075e-10 2.84337114e-10 8.095757508e-11 3.204936248e-10 1.650669657e-10 2.872876533e-10 2.589737199e-10 2.234936401e-14 8.307417904e-11 2.191061257e-10 3.251328892e-10 1.649101732e-10 4.152349756e-12 2.667547991e-10 8.986848637e-11 2.667559408e-10 9.13846866e-11 7.237531559e-11 7.652228331e-11 2.58258224e-10 1.840507977e-10 1.455281814e-09 5.224687716e-09 6.084886976e-09 3.851769993e-09 6.504997601e-09 9.672849743e-09 8.274562817e-09 2.064356043e-09 3.301875e-09 3.040615091e-09 3.186441968e-09 9.063124987e-10 1.743032819e-11 3.670635511e-10 2.96457838e-10 3.120163853e-10 1.293846692e-09 1.37663387e-09 1.126768402e-09 2.527262079e-09 2.129705507e-09 2.241712486e-09 1.845575817e-09 3.168111245e-09 3.931686001e-09 3.577573558e-09 3.721754575e-09 2.514684986e-09 3.653200753e-09 2.421947441e-09 2.558328986e-09 2.639948768e-09 3.349890909e-09 1.308274954e-09 1.154040533e-09 8.601338186e-10 9.462716572e-10 2.984122748e-10 6.655795417e-10 1.333247108e-09 1.294267145e-09 1.820110414e-09 1.41259655e-09 2.075513994e-09 1.261170352e-09 2.240988436e-09 1.38625406e-09 1.167339598e-09 2.171113783e-09 1.779032718e-09 2.767598312e-09 1.717296412e-09 1.577592829e-09 1.952388067e-09 1.158776536e-09 1.256059908e-09 7.907551975e-10 9.068912665e-10 8.864633634e-10 9.569692934e-10 1.206624759e-09 9.983438227e-10 1.841344935e-09 1.548572673e-09 9.512700979e-10 7.368563407e-10 1.046458359e-09 1.177168866e-09 9.329543853e-10 1.495489148e-09 1.110390041e-09 7.275443412e-10 1.05185821e-09 8.352911508e-10 1.339540441e-09 1.637480378e-09 6.305992485e-10 1.111888465e-09 1.206766879e-09 1.365010309e-09 1.19868231e-09 1.012045985e-09 1.323419657e-09 1.335771188e-09 1.220828237e-09 7.485664154e-10 1.884321981e-09 1.265530399e-09 7.17431666e-10 1.272187987e-09 6.469104916e-10 1.238496325e-09 9.509072375e-10 5.47053146e-10 5.436638228e-10 6.089168945e-10 6.634431924e-10 5.169572216e-10 4.565616123e-10 5.332152136e-10 6.541752372e-10 3.418790911e-10 3.739782859e-10 7.630599792e-10 3.647512736e-10 5.241453006e-10 1.012705221e-09 4.173067568e-10 3.652274944e-10 3.309697555e-10 7.451134772e-10 4.288204254e-10 2.995487106e-10 6.051524019e-10 5.927412432e-10 4.812481156e-10 6.713118432e-10 5.26326606e-10 1.844911539e-10 6.597550627e-10 3.014693135e-10 5.084302606e-10 3.358671558e-10 7.31699497e-10 6.620262412e-10 1.186840283e-09 5.210606531e-10 3.77198147e-10 5.563808189e-10 2.451136492e-10 1.367980732e-10 4.570841413e-10 3.945976368e-10 4.392686114e-10 +3.13962731e-10 8.815162218e-10 4.522238183e-10 2.74499927e-10 5.014296631e-10 4.510886971e-10 5.675751262e-10 2.410334217e-10 3.666542543e-10 2.503867694e-10 3.29791466e-10 1.01954098e-09 3.066210974e-10 9.287800738e-10 4.627726783e-10 7.635880652e-10 8.20642688e-10 5.506384217e-10 5.240255215e-10 4.724081035e-10 2.26551928e-10 2.273457759e-10 5.373377272e-10 6.649689712e-10 4.567746751e-10 6.6109834e-10 4.794356899e-10 1.905819664e-10 5.689029917e-10 7.342670727e-10 8.012986769e-10 2.311398733e-10 8.321269971e-10 8.236320114e-10 5.511119096e-10 3.793651382e-10 7.460330397e-10 6.240364802e-10 5.066544807e-10 4.24671839e-10 6.723508788e-10 9.428761081e-10 7.28485223e-10 1.370062671e-09 5.164330936e-10 1.01795434e-09 1.615754258e-09 1.182717596e-09 1.119282278e-09 1.070013822e-09 7.867393083e-10 1.557126633e-09 1.057288275e-09 8.942965196e-10 9.856468901e-10 7.363889164e-10 9.193332615e-10 1.5109406e-09 1.083873175e-09 1.148883996e-09 6.767196949e-10 6.919340596e-10 1.626829877e-09 1.184079554e-09 1.460500391e-09 1.400958302e-09 7.79775667e-10 7.135914332e-10 6.485121078e-10 9.939933629e-10 5.370563932e-10 1.856111333e-09 1.132401999e-09 1.497327688e-09 9.619559888e-10 1.283309235e-09 6.305410151e-10 1.246400292e-09 1.096485195e-09 9.542514445e-10 1.937482087e-09 2.182934668e-09 1.747052771e-09 2.168332502e-09 1.914768273e-09 1.580738348e-09 1.212875854e-09 1.35370853e-09 1.871349168e-09 2.162718909e-09 2.017267866e-09 1.368195801e-09 2.00337218e-09 1.53011464e-09 9.396061872e-10 5.470421004e-10 3.206571342e-10 1.03623008e-09 8.34191454e-10 9.59369753e-10 1.955523178e-09 3.612554507e-09 2.987398898e-09 3.484123697e-09 2.508491727e-09 3.531300239e-09 2.484041813e-09 1.504510477e-09 2.21720918e-09 3.586665277e-09 2.969960348e-09 1.887351485e-09 1.96390413e-09 1.888956068e-09 1.181849578e-09 1.683494938e-09 1.849524319e-09 1.161459686e-09 3.262630123e-10 2.033602577e-10 1.746414421e-10 4.456504872e-10 5.57648406e-10 2.474223657e-09 3.9828474e-09 3.390249697e-09 2.70414489e-09 4.532999257e-09 8.740032797e-09 6.471616486e-09 5.804515942e-09 5.228343311e-09 5.844644715e-09 2.686296107e-09 7.121496127e-10 2.018850405e-10 1.409146854e-10 7.827698336e-11 2.891269358e-10 1.985768964e-10 2.461051684e-10 8.319371935e-11 1.597096949e-10 2.347933814e-10 8.110523801e-11 1.802245694e-10 9.309780117e-11 2.251381463e-10 2.518299702e-10 3.238020565e-10 1.319724191e-10 3.841872856e-10 1.414975838e-13 1.450339273e-10 1.237947664e-10 4.444163817e-23 2.080328313e-10 2.24703295e-10 1.239289898e-10 3.38710994e-10 9.120857711e-11 4.231988089e-10 4.485003016e-10 2.036123649e-10 1.555628757e-10 5.725352811e-10 3.559001487e-09 3.596593856e-09 5.61982077e-09 8.66569106e-09 7.568094228e-09 1.023650805e-08 4.788865009e-09 3.56783321e-09 2.713080642e-09 3.348359078e-09 3.195343697e-09 5.637723061e-10 9.935840959e-11 1.850103789e-10 5.186855644e-10 4.900902207e-10 1.51944072e-09 1.852849269e-09 2.342451043e-09 2.258193214e-09 1.736192192e-09 1.934414303e-09 2.68712693e-09 3.331739679e-09 4.556133775e-09 3.248643274e-09 2.597624103e-09 3.427735282e-09 2.127506373e-09 3.547823255e-09 3.439723811e-09 3.203536455e-09 3.65896995e-09 1.575955889e-09 1.786829121e-09 9.632989168e-10 5.975198185e-10 6.760710647e-10 8.675587452e-10 9.775432019e-10 1.637492378e-09 1.673711557e-09 1.375404299e-09 2.300414076e-09 1.263762982e-09 1.873587579e-09 1.552452105e-09 1.487609108e-09 2.364241031e-09 1.608592586e-09 1.672249489e-09 2.184383921e-09 2.271385972e-09 1.855666761e-09 1.533970743e-09 1.448100603e-09 1.097263086e-09 9.956487802e-10 7.599642888e-10 9.258840495e-10 9.703818493e-10 1.169424402e-09 1.703514881e-09 1.282819169e-09 1.844811127e-09 6.921214498e-10 1.290756884e-09 1.108546259e-09 1.446221739e-09 6.200320166e-10 1.297582481e-09 1.07341641e-09 1.027216188e-09 1.333498916e-09 6.793374091e-10 9.619920329e-10 8.387993048e-10 7.192449898e-10 1.205980139e-09 1.278305364e-09 9.154942073e-10 1.902816057e-09 1.243355612e-09 1.610895929e-09 7.08793805e-10 1.041117783e-09 5.839781804e-10 1.307896956e-09 7.072158568e-10 1.775043014e-09 1.403327121e-09 1.277108579e-09 9.428826229e-10 8.501401661e-10 8.16611447e-10 5.811623369e-10 5.595127439e-10 3.371334295e-10 3.648099611e-10 6.932739449e-10 8.768671191e-10 1.056212354e-09 4.086171695e-10 3.794250824e-10 6.105956642e-10 8.344444965e-10 2.045179107e-10 2.856509296e-10 8.799990656e-10 5.939846526e-10 7.714084012e-10 7.262077238e-10 9.568259329e-11 5.963023509e-10 3.267894046e-10 4.534026153e-10 5.138652858e-10 7.869415532e-10 5.548669847e-10 5.789491878e-10 4.667091084e-10 2.208555888e-10 6.9405043e-10 4.720799596e-10 3.699620461e-10 2.439003204e-10 2.765196464e-10 1.094565244e-10 4.45854531e-10 1.342228191e-10 7.554011675e-10 7.693595498e-10 2.441543139e-10 1.764793262e-10 +4.070028681e-10 3.524972154e-10 3.537134479e-10 7.575238894e-10 3.955617037e-10 3.807711831e-10 7.241605792e-10 7.746602597e-10 4.61434878e-10 1.99608303e-10 3.527156531e-10 1.269755701e-10 6.86997455e-10 7.965158446e-10 4.047514989e-10 2.900731986e-10 2.91676928e-10 3.915214296e-10 6.903788791e-10 3.511926514e-10 3.483799282e-10 5.081446436e-10 4.149681713e-10 3.256434175e-10 2.33611924e-10 4.408569818e-10 5.808025254e-10 8.694788569e-10 4.728956325e-10 4.33613851e-10 1.115369632e-09 2.600573467e-10 6.84363692e-10 3.571304918e-10 5.235463169e-10 2.626660225e-10 1.094398767e-09 2.902329295e-10 8.055767858e-10 7.693539727e-10 9.117879114e-10 1.125188631e-09 9.616473013e-10 7.081935137e-10 7.294307486e-10 6.186454599e-10 1.339554951e-09 1.767162566e-09 1.520052639e-09 1.620379669e-09 9.195738562e-10 8.927392677e-10 1.434179594e-09 1.149540304e-09 1.453544996e-09 1.212472979e-09 1.296432223e-09 1.36908442e-09 7.885898169e-10 5.187344641e-10 1.134543174e-09 7.271516433e-10 1.386735979e-09 9.607379296e-10 1.048047363e-09 1.255053381e-09 8.500202343e-10 1.128595974e-09 1.231545329e-09 1.379420246e-09 1.179739661e-09 3.691773988e-10 9.090679858e-10 1.162893227e-09 1.67496319e-09 5.693531276e-10 8.601267135e-10 1.66130297e-09 7.798515551e-10 1.410303181e-09 1.972407991e-09 2.584467514e-09 3.011684167e-09 1.207011178e-09 1.056127969e-09 1.79670089e-09 2.091045193e-09 2.048137511e-09 1.948855355e-09 1.345547479e-09 1.760036794e-09 8.759075042e-10 1.182845058e-09 2.050864083e-09 1.074508384e-09 1.033661171e-09 4.174240028e-10 5.319261818e-10 6.132851114e-10 1.007497077e-09 1.336642644e-09 2.676524614e-09 2.303412852e-09 1.683794995e-09 2.607950192e-09 2.526208814e-09 1.670793183e-09 2.493060856e-09 4.637461625e-09 2.762018197e-09 3.456689229e-09 4.145305847e-09 1.48217207e-09 2.071846349e-09 2.853373643e-09 1.877599985e-09 2.055511477e-09 1.596640863e-09 6.058302289e-10 2.744688509e-10 2.178802277e-11 9.089025892e-12 3.952973628e-10 2.593023807e-09 2.340557163e-09 3.267544894e-09 2.940351056e-09 4.445514721e-09 7.85111252e-09 8.840120805e-09 7.817322399e-09 6.084436362e-09 5.346902649e-09 4.01607834e-09 2.404137472e-09 7.657485903e-10 8.416395966e-11 6.052925924e-11 1.268125291e-10 3.455927232e-11 9.29741784e-11 2.288642178e-10 5.538251933e-11 2.351140317e-10 1.814372596e-10 7.821392852e-11 2.414095339e-10 2.498642674e-10 7.53625698e-11 1.923369111e-10 1.193820945e-10 2.218473175e-10 8.587628746e-11 1.255302097e-10 1.435375141e-10 8.527137401e-11 2.72057082e-10 1.726710706e-10 1.558677102e-10 3.659553936e-13 4.229146751e-10 3.574374735e-10 2.129316931e-10 1.228005489e-12 2.695593383e-10 2.011063115e-09 3.938413302e-09 5.178351809e-09 6.161906846e-09 5.531630351e-09 8.483107839e-09 7.452719458e-09 5.030364464e-09 3.347861008e-09 3.375579283e-09 3.520426724e-09 2.036413373e-09 1.859055672e-10 2.06416455e-10 1.873400213e-22 1.163195564e-26 5.862373826e-10 1.500436188e-09 1.615735998e-09 1.642331791e-09 1.716023181e-09 1.863325472e-09 1.772501198e-09 2.3516375e-09 4.486379273e-09 3.759786244e-09 2.824632405e-09 3.869327714e-09 2.486672962e-09 2.309244453e-09 1.848662673e-09 3.26900905e-09 2.463325521e-09 1.89463352e-09 2.458514158e-09 7.221685011e-10 5.57531102e-10 4.697803857e-10 3.823923041e-10 7.808050056e-10 9.2552185e-10 1.794677828e-09 1.655018775e-09 1.669839161e-09 1.537242937e-09 2.019744789e-09 1.157917367e-09 1.651599958e-09 1.684944718e-09 1.855737892e-09 1.054657821e-09 1.287646207e-09 2.037700973e-09 2.386883001e-09 1.322795058e-09 1.464324889e-09 1.002981621e-09 6.43491698e-10 1.13414005e-09 2.725274972e-10 4.729370555e-10 1.29002483e-09 1.721707169e-09 1.301180402e-09 1.313821858e-09 1.28391854e-09 9.604066548e-10 8.458526045e-10 1.571634909e-09 1.216139444e-09 1.628912456e-09 1.959613427e-09 1.511625461e-09 1.083352885e-09 9.285514173e-10 9.527598749e-10 8.747016197e-10 5.738554218e-10 1.033124432e-09 7.096453123e-10 1.404035169e-09 4.699033465e-10 1.184481451e-09 1.012171381e-09 9.1901535e-10 2.118846933e-09 1.313353826e-09 6.931932247e-10 1.205854042e-09 1.195190578e-09 1.622596488e-09 2.104954371e-09 4.176733456e-10 9.478755815e-10 6.495063726e-10 4.984593295e-10 9.684321905e-10 6.064209208e-10 2.872443868e-10 7.130205484e-10 3.857811792e-10 8.593828277e-10 3.753870818e-10 3.446653147e-10 3.535699904e-10 8.336449829e-10 5.63745043e-10 5.503917818e-10 6.60490446e-10 3.636852789e-10 6.282053947e-10 1.957156292e-10 2.041682168e-10 1.256801948e-10 2.115436852e-10 9.171868331e-10 3.285760058e-10 5.586543177e-10 4.820119517e-10 2.164477079e-10 1.207814385e-10 4.486781813e-10 7.164155264e-10 2.981247942e-10 5.76652058e-10 2.508925539e-10 8.872185146e-11 1.027061297e-09 1.413070855e-10 3.717815906e-10 6.880752652e-10 1.074375979e-09 4.1198605e-10 7.688895242e-10 8.0662192e-10 +5.603919759e-10 1.136430321e-10 2.951399208e-10 2.383895347e-10 7.680850575e-10 3.16752959e-10 8.573686933e-10 3.454240816e-10 4.445237741e-10 9.028105005e-10 5.682370968e-10 3.563199794e-10 5.63093451e-10 6.735354922e-10 1.513674153e-10 8.293916073e-10 6.178585155e-10 4.154105853e-10 6.248047178e-10 3.077836537e-10 1.605134746e-10 7.165108828e-10 4.501495115e-10 3.654306477e-10 7.152929186e-10 4.62289655e-10 3.846858879e-10 4.38160545e-10 2.515482424e-10 5.569744968e-10 9.195459428e-10 3.509582293e-10 6.327481385e-10 5.372990696e-10 2.063294816e-10 7.832976319e-10 4.297329774e-10 7.009872551e-10 1.006443173e-09 6.529510501e-10 6.81756143e-10 1.97362379e-09 7.823405352e-10 1.246148057e-09 1.372800007e-09 6.003453457e-10 1.602318591e-09 4.468002815e-10 9.761646051e-10 1.353448896e-09 1.446290267e-09 1.131969501e-09 5.477556693e-10 9.758929979e-10 7.131562223e-10 1.30899888e-09 1.907604543e-09 6.884377349e-10 8.531083055e-10 5.315781831e-10 5.278687251e-10 1.107511058e-09 1.187795641e-09 1.371151294e-09 1.259662769e-09 1.434411661e-09 1.770020185e-09 1.076512201e-09 6.227070946e-10 1.660893947e-09 2.772791317e-09 9.569684992e-10 7.272111903e-10 1.53733612e-09 1.738900334e-09 8.675697683e-10 9.160185044e-10 7.707829859e-10 1.865698199e-09 1.553045795e-09 1.356756024e-09 2.126933224e-09 2.287603523e-09 1.487424126e-09 1.53195585e-09 2.135860046e-09 2.368470228e-09 1.773508946e-09 1.778648599e-09 1.439731646e-09 1.800540262e-09 1.302926061e-09 1.399475591e-09 1.258587446e-09 1.327153338e-09 1.077932397e-09 3.765328605e-10 3.917151273e-10 1.094700598e-09 7.684262633e-10 1.16072575e-09 1.951917031e-09 2.933527612e-09 1.955938394e-09 2.226316884e-09 3.289593657e-09 3.085782135e-09 1.788035603e-09 1.935598763e-09 4.361059643e-09 4.225723131e-09 1.18370144e-09 1.957998462e-09 2.0106944e-09 1.87010053e-09 2.042182573e-09 1.728810079e-09 1.163090731e-09 3.148358333e-10 0 2.405499936e-10 1.594016052e-10 1.810707449e-10 1.824824417e-09 1.161189651e-09 3.553394106e-09 3.110041898e-09 3.083346833e-09 5.773401331e-09 5.725315232e-09 8.67820985e-09 6.462137066e-09 6.541054072e-09 4.524885906e-09 2.139683633e-09 1.077356321e-09 2.932981454e-10 8.706451083e-11 9.229877651e-11 2.228403151e-10 9.592213043e-11 1.889691053e-10 8.855987825e-11 1.624446344e-10 1.460127785e-10 0 1.986192073e-10 3.715724151e-10 9.951770177e-11 1.292307238e-10 6.87770374e-11 2.057431804e-10 2.197842952e-10 8.278265207e-11 4.313527203e-10 1.778059096e-10 1.308675461e-10 2.737046052e-10 8.135807732e-11 4.782782065e-11 5.794732205e-31 2.700667222e-10 1.53295995e-10 1.010558879e-10 9.62603423e-10 2.675430604e-09 5.285463284e-09 3.18023913e-09 6.954046569e-09 6.666854843e-09 7.179040699e-09 7.194538876e-09 3.519545608e-09 2.982129301e-09 3.792150658e-09 3.69458701e-09 2.048596276e-09 4.058979162e-10 1.531932812e-10 2.243811155e-10 1.479206273e-10 3.746293993e-10 1.863788748e-09 2.211522829e-09 9.342357307e-10 1.172684897e-09 1.913467801e-09 1.551254399e-09 2.718011894e-09 4.79401432e-09 3.341380434e-09 1.457891793e-09 2.409053312e-09 3.015365018e-09 3.759580364e-09 2.92096643e-09 2.462422083e-09 2.893391475e-09 3.293519018e-09 1.73518515e-09 1.30645044e-09 1.054230796e-09 5.24270206e-10 5.360417424e-10 1.083588692e-09 1.308725896e-09 1.776264768e-09 2.518471078e-09 1.300538579e-09 1.569134704e-09 1.799137998e-09 1.572241331e-09 1.566631849e-09 1.704901622e-09 1.489825168e-09 2.453444345e-09 1.871246489e-09 1.654665181e-09 2.58255636e-09 1.199998312e-09 7.951811737e-10 5.31024197e-10 4.09309662e-10 6.902406649e-10 6.976834636e-10 9.451561455e-10 1.359901263e-09 1.83630041e-09 7.280249754e-10 1.151687959e-09 9.563961061e-10 1.461243304e-09 8.687628161e-10 9.174202736e-10 9.051412373e-10 1.89404135e-09 1.190538072e-09 1.234809337e-09 7.080406296e-10 1.013141361e-09 4.62632892e-10 6.227168694e-10 1.103572986e-09 1.206719105e-09 7.068237439e-10 7.514320885e-10 7.848049112e-10 1.168553634e-09 9.118107149e-10 1.501153231e-09 7.224649994e-10 1.215396837e-09 8.196450391e-10 7.837609214e-10 7.685588096e-10 8.155131246e-10 1.160077624e-09 1.383051742e-09 7.512502903e-10 7.662201769e-10 5.455554337e-10 7.105572778e-10 8.232775587e-10 4.228261607e-10 6.066735027e-10 9.006085362e-10 9.412845894e-10 5.633591948e-10 2.751867098e-10 8.96654349e-10 6.844146277e-10 3.790386886e-10 8.5079917e-10 1.038791082e-09 1.658967001e-10 9.511913884e-10 6.031604336e-10 7.467648071e-10 6.635149942e-10 4.137764494e-10 2.7806857e-10 2.022903669e-10 3.22017382e-10 2.374908306e-10 3.249713754e-10 2.177663563e-10 1.191816905e-10 4.633567597e-10 2.339785227e-10 2.936632767e-10 3.864977056e-10 1.615905484e-10 7.955657522e-10 7.39331757e-10 5.850514118e-10 4.284770929e-10 2.961344604e-10 2.830531254e-10 2.621860381e-10 5.09344354e-10 +5.747308273e-11 1.340619384e-10 3.251031948e-10 5.943525544e-10 2.008413397e-10 3.439532193e-10 7.569881437e-10 6.307882702e-10 2.392086869e-10 9.040935798e-10 2.529229525e-10 5.887624693e-10 1.091487307e-09 3.799867901e-10 4.167925344e-10 2.375705882e-10 2.938968052e-10 2.289969727e-10 2.795283164e-10 4.747738294e-10 3.058124818e-10 4.85848963e-10 3.477165124e-10 1.259491722e-09 6.61025033e-10 2.557518262e-10 3.797136713e-10 3.127703105e-10 4.10563401e-10 8.951993525e-10 4.000508436e-10 2.845140267e-10 3.695768464e-10 6.811496892e-10 2.580560306e-10 2.369979351e-10 4.062138174e-10 3.766355861e-10 3.711265796e-10 6.249538527e-10 5.569180661e-10 1.044508106e-09 1.194727397e-09 7.779467537e-10 1.45615659e-09 1.855472472e-09 8.514911257e-10 7.746572241e-10 1.084307386e-09 1.309588053e-09 6.196899689e-10 9.541291597e-10 6.20747242e-10 5.736933181e-10 1.293927824e-09 8.795306044e-10 9.109702758e-10 1.070640783e-09 5.482239622e-10 4.987150382e-10 1.22739613e-09 7.82194178e-10 1.352279835e-09 1.018106556e-09 5.953635022e-10 9.561631186e-10 1.185302343e-09 9.96732897e-10 8.641163401e-10 1.584585486e-09 1.239358333e-09 7.80292843e-10 1.069268242e-09 1.256880165e-09 1.059048836e-09 1.423953137e-09 9.081888375e-10 7.024696597e-10 1.769095405e-09 2.082412705e-09 1.947528176e-09 1.473191598e-09 1.254990029e-09 2.241160254e-09 1.290408861e-09 2.468839407e-09 1.407411559e-09 1.928867343e-09 1.230783491e-09 1.318826865e-09 1.639585283e-09 1.889343191e-09 1.72419272e-09 1.850038051e-09 6.064024728e-10 6.214539639e-10 2.833338244e-10 4.215815746e-10 1.032949993e-09 1.195401502e-09 2.677872269e-09 3.360114317e-09 3.145026213e-09 2.760655315e-09 2.307674791e-09 2.376070027e-09 1.985788929e-09 2.723315591e-09 1.787095668e-09 3.548027315e-09 3.380673767e-09 2.549713664e-09 1.943738732e-09 1.293707547e-09 2.238426684e-09 1.554730943e-09 1.866513684e-09 1.214526639e-09 5.639067121e-10 6.001392958e-28 1.021318697e-10 1.340528879e-11 1.120601696e-10 1.928976873e-09 2.755651177e-09 3.741516253e-09 1.815401631e-09 2.924148136e-09 5.204649018e-09 7.882178597e-09 8.349133253e-09 6.066149244e-09 6.059798305e-09 4.234005613e-09 3.779457286e-09 2.232047989e-09 6.576241388e-10 1.681214019e-10 2.907040622e-10 2.465843841e-10 2.481162334e-10 2.73058462e-10 2.909160093e-10 1.236491957e-10 3.081253283e-10 3.257742207e-10 1.881916576e-10 8.82490244e-11 6.700049455e-11 1.832183237e-10 1.109714152e-10 2.18808167e-10 9.456156552e-11 4.736870125e-10 5.752777027e-11 4.90579093e-10 3.124281757e-10 2.908516023e-10 1.706094188e-10 3.449274881e-10 1.677773347e-10 1.064537552e-10 1.649530935e-10 6.883166249e-10 1.463463402e-09 3.971926114e-09 4.148551108e-09 6.109581092e-09 5.365246448e-09 5.91302064e-09 8.617119036e-09 6.963278216e-09 2.876697157e-09 3.689235332e-09 2.956292017e-09 3.470547353e-09 1.427355387e-09 3.026045475e-10 8.013562913e-11 1.16424655e-10 3.807468289e-10 1.12355267e-09 1.575170224e-09 1.512215056e-09 7.877011722e-10 1.346448471e-09 1.889248501e-09 2.897149124e-09 1.75075363e-09 3.360292528e-09 3.05175791e-09 2.021073019e-09 1.929417313e-09 1.116804551e-09 2.253544674e-09 1.995247032e-09 2.858173899e-09 1.974102027e-09 3.315863288e-09 1.419499006e-09 8.698342972e-10 1.456275698e-09 9.046234021e-10 1.790392153e-10 1.468666576e-09 8.911122834e-10 1.518927118e-09 2.038852185e-09 1.460511692e-09 1.590672872e-09 1.341462428e-09 1.998439833e-09 2.055074876e-09 1.328139869e-09 2.145719574e-09 2.310804855e-09 1.079924418e-09 2.032686928e-09 3.039667417e-09 1.481463224e-09 1.716382526e-09 1.325880538e-09 9.184561873e-10 1.417812401e-09 4.713500927e-10 9.682829336e-10 1.188748408e-09 1.186284287e-09 1.402641848e-09 1.383796681e-09 1.299522298e-09 1.095220253e-09 6.734451674e-10 1.13518594e-09 9.881921436e-10 1.593824812e-09 1.298370245e-09 9.097123688e-10 9.284912406e-10 1.134668791e-09 1.134985339e-09 6.386750846e-10 9.021461176e-10 1.104078581e-09 1.602084236e-09 1.086017303e-09 5.673805306e-10 9.706529361e-10 1.039901016e-09 1.249655054e-09 1.081636521e-09 1.629162787e-09 1.269567808e-09 9.259065792e-10 7.946987339e-10 1.557094893e-09 9.82762074e-10 1.35859759e-09 1.144201962e-09 7.825672129e-10 7.792590867e-10 6.264246816e-10 7.747776328e-10 4.437584954e-10 4.352654427e-10 2.489561756e-10 7.238244662e-10 1.077253448e-09 4.413567206e-10 4.24561311e-10 2.996838761e-10 3.357155369e-10 4.634755385e-10 8.805750127e-10 5.263375012e-10 7.697685599e-10 4.162184937e-10 2.563083677e-10 4.385827422e-10 2.816856709e-10 3.106865277e-10 5.894711735e-10 4.850653848e-10 6.665457868e-10 8.84525907e-10 2.99394508e-10 2.104381145e-10 4.910629745e-10 6.379666633e-10 5.97085251e-10 3.266291036e-10 3.853417497e-10 2.676799467e-10 4.9352163e-10 8.684111262e-11 3.088551815e-10 7.529097276e-10 1.783694814e-10 4.523160271e-10 4.136430975e-10 +7.385755421e-10 3.548532797e-10 7.073353e-10 4.869481224e-10 9.128473448e-11 4.008692778e-10 3.032996032e-10 3.142356588e-10 2.514079015e-10 3.795315911e-10 3.838472279e-10 5.623099947e-10 4.762879743e-10 3.757597603e-10 4.371984683e-10 3.629799994e-10 5.951708958e-10 2.009722852e-10 2.397012507e-10 5.711061828e-10 3.142004663e-10 7.437102437e-10 4.10738136e-10 6.433217866e-10 5.497440255e-10 6.457609891e-10 8.579771026e-10 3.608041149e-10 6.61365617e-10 3.893125141e-10 4.753633777e-10 6.33645385e-10 5.749126533e-10 7.627863548e-10 5.743424559e-10 3.92721554e-10 2.215358031e-10 3.409311551e-10 6.841753119e-10 7.050936464e-10 3.096897477e-10 1.052047679e-09 1.108991147e-09 1.941983896e-09 8.968537561e-10 8.533233532e-10 7.087075353e-10 9.9941868e-10 1.419985212e-09 8.425336929e-10 1.043996016e-09 1.077671205e-09 1.908746762e-09 6.912860467e-10 1.24972673e-09 1.17357239e-09 1.144600749e-09 5.401438211e-10 9.137253292e-10 1.56282835e-09 5.329887637e-10 1.034907369e-09 8.939316914e-10 1.444823958e-09 1.441250922e-09 1.514950553e-09 1.231847554e-09 8.993770141e-10 9.922236543e-10 1.721381648e-09 1.407694019e-09 9.805425339e-10 1.699941258e-09 7.658956461e-10 7.115816332e-10 1.205916754e-09 6.214573446e-10 8.615675841e-10 1.049746956e-09 8.43310541e-10 2.048146007e-09 1.660434004e-09 1.45103956e-09 1.630886259e-09 1.595090457e-09 1.773699945e-09 1.341095081e-09 1.738216634e-09 2.015960423e-09 6.880442552e-10 1.737760707e-09 1.902796375e-09 8.856156802e-10 1.552137576e-09 9.889043916e-10 1.242483062e-09 1.020600007e-09 2.460771872e-10 1.100007383e-09 1.289104247e-09 2.645543438e-09 1.912655894e-09 3.02300142e-09 3.564411696e-09 2.830737999e-09 2.108085577e-09 2.783565605e-09 1.785934528e-09 2.139237158e-09 2.517308791e-09 4.397290048e-09 2.744850859e-09 1.656563835e-09 1.708270179e-09 1.79380918e-09 1.675877217e-09 2.724074008e-09 1.650347591e-09 1.073499004e-09 4.055884528e-10 1.953851684e-10 4.573173136e-11 2.909572392e-10 4.827563896e-10 2.177619149e-09 2.34101941e-09 3.453968517e-09 3.531434369e-09 3.556998026e-09 6.142699511e-09 8.732415614e-09 7.919682465e-09 6.574990363e-09 5.437836934e-09 5.027398568e-09 2.064599486e-09 9.158202643e-10 1.031355715e-10 7.542781261e-29 2.788427339e-10 4.732443089e-18 2.563230442e-10 1.420478858e-10 1.671838656e-10 1.836952235e-10 7.818057937e-11 3.050669138e-10 3.537597953e-10 3.411863583e-10 2.719638969e-10 1.522652856e-10 4.575900461e-10 1.673642097e-10 1.289440873e-11 1.627369639e-10 7.982460577e-11 1.007952372e-13 2.776083171e-10 0 2.44832078e-11 3.537333001e-10 1.388022155e-10 1.1843969e-10 8.428982161e-10 1.443866052e-09 5.481771451e-09 7.046351639e-09 4.863093139e-09 6.096151401e-09 7.013201818e-09 7.813318023e-09 3.733787567e-09 3.54634376e-09 2.9637424e-09 2.747416931e-09 2.766067008e-09 5.656176647e-10 1.743588685e-10 4.593143761e-10 1.595426821e-10 1.395888924e-10 7.318178275e-10 1.514580057e-09 1.436038148e-09 2.453874282e-09 1.93567413e-09 2.377173281e-09 2.222379039e-09 3.278077589e-09 1.98696239e-09 3.016870603e-09 2.007788155e-09 3.206987602e-09 3.736581348e-09 3.257629029e-09 2.666442916e-09 2.710578054e-09 4.208618859e-09 2.678676083e-09 1.409134701e-09 1.024163209e-09 7.395337209e-10 5.069991337e-10 3.787016177e-10 7.46266531e-10 9.624712326e-10 1.569682368e-09 1.072884525e-09 2.249001288e-09 1.224490471e-09 1.22325467e-09 1.663063184e-09 1.454537294e-09 2.132219642e-09 1.632424529e-09 2.154454086e-09 1.957629332e-09 2.940851773e-09 1.518059822e-09 2.797140543e-09 1.95026626e-09 1.07900671e-09 1.017539726e-09 1.383045333e-09 7.198127916e-10 6.848223647e-10 1.345850321e-09 8.356469944e-10 1.106326146e-09 1.513701217e-09 1.066247694e-09 1.618943511e-09 6.273668496e-10 1.268851884e-09 7.03748534e-10 2.101463816e-09 8.366117058e-10 9.099914514e-10 9.937957662e-10 9.06906759e-10 8.139845706e-10 1.237169885e-09 5.515792533e-10 1.195566687e-09 1.364185917e-09 1.244519309e-09 7.416415381e-10 8.797665807e-10 2.319118137e-09 9.313277122e-10 1.544551044e-09 1.776799272e-09 1.246039073e-09 9.92222614e-10 9.45397547e-10 8.239941054e-10 8.788169737e-10 1.032730929e-09 9.480786552e-10 8.446304997e-10 8.377033633e-10 6.887819287e-10 3.90128565e-10 6.70104884e-10 3.576989932e-10 4.815780815e-10 5.739664572e-10 5.4956025e-10 5.752970025e-10 6.897791866e-10 2.207399708e-10 5.081579433e-10 7.390956433e-10 3.046517431e-10 3.585957472e-10 2.861197175e-10 3.284079804e-10 8.146266274e-10 4.90441612e-10 7.399278995e-10 6.172491738e-10 4.82615941e-10 7.275826868e-10 6.672770104e-10 3.958212533e-10 4.926309011e-10 4.935372167e-10 5.189210948e-10 5.783489549e-10 2.347094393e-10 3.816635982e-10 4.831299513e-10 4.261117128e-10 2.794276415e-10 5.572663648e-10 9.199939154e-10 1.079477831e-09 2.207180292e-10 2.205746779e-10 2.178094847e-10 +4.555973733e-10 2.055552672e-10 2.852328281e-10 9.049565359e-10 3.156424772e-10 2.643169787e-10 5.642518253e-10 2.904895152e-10 1.188703024e-10 4.716637156e-10 6.74565817e-10 3.740834037e-10 5.023771242e-10 1.367607122e-10 4.039556902e-10 8.412611041e-10 6.224341989e-10 3.694379778e-10 4.928024914e-10 2.737881043e-10 7.879846191e-10 1.08599329e-09 4.430718924e-10 7.577141294e-10 4.827713595e-10 5.378887927e-10 5.885150282e-10 5.804939771e-10 3.793719393e-10 7.411413321e-10 6.33065631e-10 8.691764378e-10 3.303013136e-10 6.203147981e-10 7.285528347e-10 7.479888513e-10 4.003390392e-10 3.785339243e-10 7.605019188e-10 1.002506891e-09 8.950426454e-10 9.773979505e-10 1.662789026e-09 9.97709961e-10 1.383886839e-09 1.008104065e-09 1.11625731e-09 6.16696566e-10 1.478545455e-09 8.955326728e-10 1.083542996e-09 1.271805711e-09 1.136226659e-09 5.286796526e-10 1.097922036e-09 8.526849462e-10 1.186738527e-09 4.693602358e-10 7.01835623e-10 1.220881256e-09 3.801159244e-10 1.328319576e-09 1.169512217e-09 7.051396037e-10 1.3637192e-09 9.929371194e-10 7.135737354e-10 7.210667534e-10 1.144986165e-09 1.105927562e-09 1.442848474e-09 1.556675335e-09 1.825341314e-09 1.265882719e-09 1.53699705e-09 9.913948892e-10 6.908204644e-10 5.993790116e-10 1.322553201e-09 1.579299362e-09 1.472102127e-09 1.885876712e-09 2.561987213e-09 2.399022022e-09 1.587533501e-09 9.489809812e-10 1.854130743e-09 1.776979437e-09 1.478876564e-09 1.721699805e-09 1.6913364e-09 1.373688396e-09 1.521337899e-09 6.9386523e-10 8.52879183e-10 7.454358724e-10 6.624314668e-10 3.544439307e-10 6.400090303e-10 1.117199976e-09 1.952991725e-09 2.635967741e-09 2.954532867e-09 1.927114363e-09 2.624664441e-09 3.430071992e-09 1.724203672e-09 2.468530481e-09 2.334095172e-09 3.467624928e-09 3.682251474e-09 3.577481986e-09 2.160672932e-09 1.830553381e-09 1.602123218e-09 3.419840349e-09 1.547252172e-09 1.534939623e-09 8.602438441e-10 3.217843426e-10 1.444121577e-10 0 4.781294074e-11 8.039344014e-10 1.984186381e-09 2.479162946e-09 2.604349275e-09 2.313665244e-09 3.769886879e-09 6.672206234e-09 8.545738101e-09 5.976500256e-09 5.571510109e-09 5.90821227e-09 5.540014464e-09 2.592567531e-09 1.919442695e-09 1.594396593e-10 1.397783251e-18 6.462114892e-11 1.433408632e-10 2.166684481e-10 3.265139957e-10 4.781815899e-11 4.04122639e-10 3.124267806e-10 1.853332692e-10 7.873878416e-11 1.804115816e-10 1.639395262e-10 1.909565335e-10 4.550964996e-10 1.558741848e-10 4.388481347e-10 1.956979884e-10 1.935366557e-10 0 1.283218843e-10 1.733130499e-10 1.687209776e-10 4.107910337e-10 0 2.584162833e-10 1.094584572e-09 3.770349314e-09 4.33289543e-09 5.574752005e-09 4.02794415e-09 6.321271081e-09 6.212131213e-09 5.534384135e-09 3.735015715e-09 4.069094888e-09 1.969432131e-09 2.926359492e-09 1.964527663e-09 7.826753586e-10 1.408328973e-10 3.124579524e-10 1.082842049e-10 4.057838958e-10 1.076289726e-09 1.861321338e-09 1.86327896e-09 1.962403092e-09 2.391973528e-09 1.574215723e-09 2.40409508e-09 2.631352528e-09 3.477624919e-09 1.878495583e-09 1.553801217e-09 2.56318854e-09 2.016512684e-09 2.308903921e-09 3.366202267e-09 2.426582221e-09 2.898498927e-09 2.827366425e-09 2.829498031e-09 9.188376577e-10 7.944080522e-10 5.315511724e-10 1.864211149e-10 1.209827314e-09 1.977417583e-09 1.264746968e-09 9.903812634e-10 1.790441355e-09 1.818835096e-09 1.751862932e-09 1.993987608e-09 9.767510852e-10 1.764095732e-09 1.200670124e-09 2.301811502e-09 1.713929691e-09 1.866831031e-09 1.75228578e-09 1.178980837e-09 1.483458028e-09 1.593896085e-09 6.725617593e-10 1.104561418e-09 1.460530539e-09 1.319025641e-09 9.269250283e-10 7.093519518e-10 8.556765589e-10 1.67766216e-09 1.391157901e-09 1.144263687e-09 1.492446318e-09 1.555485187e-09 1.293884246e-09 1.346533952e-09 1.30957568e-09 1.717190914e-09 5.855069135e-10 6.258524437e-10 7.031369009e-10 6.369245874e-10 5.973574706e-10 1.149424887e-09 8.433521317e-10 9.746900589e-10 5.502324767e-10 1.117623815e-09 8.914081378e-10 1.131255624e-09 3.927492158e-10 1.019302726e-09 1.063906963e-09 1.307885819e-09 9.546908002e-10 9.657467819e-10 9.461076399e-10 1.080484846e-09 1.204049147e-09 6.795744038e-10 4.973286612e-10 7.185258571e-10 6.14438245e-10 4.606006219e-10 5.529772414e-10 2.600089399e-10 1.035910091e-09 7.40517631e-10 5.592029447e-10 4.870402276e-10 6.8125505e-10 6.168795909e-10 8.217272113e-10 6.399838109e-10 7.22520466e-10 4.307676442e-10 2.410062803e-10 4.241839165e-10 7.761681272e-10 5.237475605e-10 1.017782772e-09 6.992156674e-10 2.152341446e-10 7.239473866e-10 6.225556894e-10 2.161709213e-10 3.195342577e-10 2.766887239e-10 3.957140445e-10 3.700018754e-10 5.584074999e-10 8.385830214e-10 4.747335865e-10 3.229441795e-10 7.580608656e-10 2.903576683e-10 2.812784433e-10 3.351306231e-10 5.550429743e-10 6.091225413e-10 +9.00439924e-10 1.427132468e-10 5.751082362e-10 4.816878433e-10 3.000652646e-10 5.937657838e-10 6.52654663e-10 4.00765994e-10 4.503328434e-10 1.960561367e-10 4.541335369e-10 4.04594835e-10 7.71963542e-10 4.665736219e-10 5.639410525e-10 4.649102894e-10 5.536932997e-10 4.970336609e-10 8.809642988e-10 5.83287117e-10 5.044189235e-10 2.220311547e-10 6.968304142e-10 3.626287193e-10 5.119691018e-10 6.157340838e-10 1.1702128e-09 3.554457323e-10 2.204965366e-10 4.157877566e-10 7.797926764e-10 6.221691545e-10 2.657008257e-10 1.032742118e-09 4.976165684e-10 5.249669466e-10 2.492333025e-10 6.311285421e-10 1.100677141e-09 4.368891275e-10 6.921721558e-10 1.189565484e-09 9.80951025e-10 1.452668328e-09 8.281092392e-10 6.53216659e-10 8.626560896e-10 1.843043097e-09 5.672950578e-10 1.066092206e-09 7.966515417e-10 4.514137624e-10 9.163966413e-10 9.552527965e-10 9.965415516e-10 1.494590609e-09 8.7888772e-10 9.351897648e-10 1.259187094e-09 1.44280926e-09 4.923305472e-10 4.74519843e-10 1.300666371e-09 1.050642812e-09 9.714375091e-10 9.396460988e-10 1.157908892e-09 8.921875044e-10 1.075684878e-09 9.536785875e-10 1.079725199e-09 9.391095311e-10 1.109188245e-09 8.712295292e-10 9.890367272e-10 1.469136433e-09 9.480862597e-10 1.328868765e-09 7.674790873e-10 1.093961492e-09 1.077775727e-09 2.512262552e-09 1.760600915e-09 1.958851525e-09 1.850349954e-09 1.754156605e-09 2.48971256e-09 1.640947938e-09 1.927784878e-09 1.64319549e-09 2.492766554e-09 9.335315964e-10 1.746896655e-09 1.970840293e-09 1.428517968e-09 8.564152622e-10 7.382504426e-10 5.349256594e-10 9.850170626e-10 1.164551631e-09 1.244859389e-09 3.148629621e-09 2.148793102e-09 1.680209774e-09 2.532814341e-09 2.642854747e-09 1.504723509e-09 2.461042777e-09 3.262291629e-09 3.405633485e-09 4.433672957e-09 3.325376563e-09 1.730082731e-09 1.386673159e-09 1.897172229e-09 1.49867974e-09 2.104281436e-09 1.372253667e-09 1.417705227e-09 2.383880546e-10 1.681192795e-10 7.616056108e-11 1.928098702e-10 2.606671174e-10 2.103114771e-09 2.171724053e-09 3.778865244e-09 3.11748023e-09 2.871433752e-09 5.228690878e-09 6.47360436e-09 8.005405108e-09 6.635420529e-09 6.408685989e-09 6.339692925e-09 4.390976384e-09 3.637347815e-09 9.999843028e-10 1.56628558e-10 4.210526142e-10 2.832665273e-10 3.625779519e-10 2.226144873e-10 2.978709129e-10 1.748133853e-10 2.30413997e-10 8.045982357e-11 7.9003869e-13 1.711671716e-10 1.421722898e-10 1.593668637e-10 0 2.681879646e-10 2.950780735e-10 3.809182078e-11 1.590754818e-10 3.944195954e-10 1.90351262e-20 3.226555265e-10 2.199829886e-10 1.322785642e-10 5.713685783e-10 2.045055979e-09 3.791655117e-09 5.47445681e-09 5.883956638e-09 4.980047178e-09 7.278635089e-09 7.932431001e-09 8.679536884e-09 5.745262651e-09 2.929849013e-09 2.490216327e-09 3.023196572e-09 2.565199719e-09 1.726885423e-09 5.873333178e-10 1.841120786e-10 4.50921362e-10 5.70649561e-10 3.97164345e-10 1.354017054e-09 2.201008209e-09 1.852660378e-09 1.792783874e-09 1.753099372e-09 1.259712219e-09 2.743354733e-09 3.302861171e-09 2.064541871e-09 2.435868026e-09 2.854600129e-09 1.532680893e-09 3.136917191e-09 2.782092908e-09 3.279493835e-09 2.681621052e-09 1.325406438e-09 3.169823435e-09 1.110025545e-09 1.44399046e-09 9.123383035e-10 4.653131257e-10 5.524689898e-10 1.09977956e-09 1.256718011e-09 1.250912432e-09 1.984117798e-09 1.630968445e-09 1.634824761e-09 8.70346814e-10 1.786848349e-09 1.25295012e-09 1.589810822e-09 1.445221335e-09 1.506520796e-09 1.557767502e-09 2.015968044e-09 1.532020732e-09 2.498921022e-09 1.063831324e-09 1.012823493e-09 1.148504154e-09 4.971920328e-10 9.387782654e-10 8.259953779e-10 1.107531091e-09 1.084102468e-09 1.092931212e-09 1.610564555e-09 1.296640843e-09 1.169758708e-09 1.050418477e-09 1.13607874e-09 9.71107321e-10 1.494870775e-09 1.107982585e-09 1.478268521e-09 6.65807864e-10 8.392519769e-10 7.588982163e-10 8.089594129e-10 3.793861217e-10 1.380497402e-09 9.816975766e-10 9.224036366e-10 1.181391738e-09 8.103301705e-10 1.067924117e-09 1.44576758e-09 8.660430534e-10 5.64920108e-10 6.356367075e-10 8.887289022e-10 4.083170522e-10 7.637745882e-10 1.251057131e-09 1.048041922e-09 1.348966803e-09 7.32271246e-10 3.405272589e-10 6.245428152e-10 4.570182496e-10 7.788051196e-10 4.262644851e-10 7.051268007e-10 3.466398383e-10 7.425905409e-10 5.0607565e-10 5.145055777e-10 5.983260313e-10 4.639058119e-10 1.083982178e-09 5.53185265e-10 9.465922346e-10 2.477313538e-10 1.03549328e-09 7.150264354e-10 7.911915897e-10 4.300228743e-10 3.445537263e-10 3.473882634e-10 2.13832615e-10 3.252400204e-10 6.269542614e-10 2.110686893e-10 3.586305554e-10 1.023993083e-09 5.800713816e-10 5.002387849e-10 1.517183614e-10 6.019852956e-10 4.356139835e-10 4.212380764e-10 2.135428708e-10 4.2586614e-10 4.31728541e-10 9.696450396e-10 2.684892051e-10 3.096756493e-10 +1.786579459e-10 4.069071282e-10 5.561459344e-10 6.604108574e-10 3.810861202e-10 6.010866972e-10 8.998438524e-10 2.2585015e-10 2.002290271e-10 2.598830726e-10 1.925080368e-10 4.138584714e-10 4.653215751e-10 4.215799294e-10 5.82165306e-10 4.082883509e-10 2.417088673e-10 3.327943679e-10 5.345094652e-10 3.163112196e-10 2.401151031e-10 4.559118023e-10 4.274350812e-10 9.14278812e-10 8.646609524e-10 6.668588281e-10 7.611628237e-10 2.766437682e-10 8.906422333e-10 2.61305513e-10 9.252733327e-10 3.347481298e-10 4.017465118e-10 2.704709135e-10 3.998874427e-10 4.225208802e-10 6.957212275e-10 4.812706029e-10 1.051713529e-09 5.481983675e-10 9.185840419e-10 6.282427766e-10 4.920771509e-10 1.076452724e-09 1.375442567e-09 1.494924254e-09 1.470657762e-09 1.236213693e-09 1.03234238e-09 1.424697469e-09 1.186108187e-09 1.129437313e-09 1.375158977e-09 1.046734157e-09 1.42622401e-09 9.171205319e-10 1.100507471e-09 9.135778749e-10 4.786302442e-10 1.021594032e-09 1.186369093e-09 4.805258949e-10 9.02747642e-10 8.135102206e-10 1.407985146e-09 8.616419914e-10 1.358839806e-09 8.20004294e-10 1.119017283e-09 1.302313695e-09 1.730288038e-09 9.313026939e-10 1.281387668e-09 8.839955782e-10 1.106897683e-09 1.208888169e-09 7.165709028e-10 4.354474167e-10 1.162402755e-09 1.705942116e-09 1.471445733e-09 1.719601293e-09 1.767979052e-09 2.277544314e-09 1.204265985e-09 2.050610729e-09 2.123861269e-09 1.865513987e-09 1.444400293e-09 1.526505238e-09 1.563058181e-09 2.042432881e-09 2.402720361e-09 2.054654583e-09 1.385112098e-09 9.21356293e-10 6.90460191e-10 6.881115525e-10 5.107762424e-10 1.076741927e-09 1.301182769e-09 2.444346956e-09 3.827511729e-09 1.932332942e-09 2.761675157e-09 1.49469012e-09 4.095862418e-09 2.231762435e-09 3.262939637e-09 2.227032086e-09 2.64675139e-09 3.45153133e-09 2.429703121e-09 1.526233359e-09 1.754041958e-09 1.849797537e-09 1.56078639e-09 1.710203525e-09 8.374403596e-10 7.265669067e-10 7.57694891e-11 2.632713731e-15 1.824238384e-13 4.127083546e-10 1.364939022e-09 2.527526707e-09 2.734142193e-09 3.182553753e-09 4.050656152e-09 4.647100192e-09 6.909774707e-09 8.380211146e-09 5.092285691e-09 6.699244301e-09 7.001952187e-09 6.235819389e-09 2.994105552e-09 2.032489073e-09 6.190208596e-10 1.702701949e-10 4.630688074e-11 9.628440996e-14 3.049909564e-10 3.195739395e-10 3.671563613e-10 1.594746924e-10 2.07027808e-33 1.539378e-10 1.652180015e-10 2.022897887e-10 2.901120721e-10 2.131288223e-10 1.493779534e-18 8.167906035e-11 1.628343333e-10 4.025531621e-10 2.160559692e-10 3.278184902e-10 8.686673373e-11 3.800605738e-10 6.13286714e-10 8.577074902e-10 2.049141257e-09 2.54646568e-09 6.023703247e-09 4.80704531e-09 5.454075686e-09 7.852413705e-09 6.961658808e-09 5.927402431e-09 2.912160389e-09 2.892427503e-09 2.409579801e-09 2.656515771e-09 2.232731192e-09 1.139578876e-09 4.419967292e-13 3.971120556e-10 2.987327932e-10 8.459307833e-11 1.160169805e-09 1.554849587e-09 1.490383193e-09 2.789988913e-09 2.315912845e-09 2.428582302e-09 1.23305278e-09 2.152764358e-09 2.072752178e-09 4.004090834e-09 4.544203548e-09 2.151257865e-09 1.487238778e-09 2.858287373e-09 2.04981302e-09 5.11374503e-09 2.253525361e-09 2.653539216e-09 2.427268854e-09 1.295915314e-09 7.654057417e-10 1.402526436e-09 7.929019846e-10 6.661169469e-10 1.648690986e-09 1.270511814e-09 1.438465604e-09 1.23758526e-09 1.166859584e-09 1.012011783e-09 2.456644804e-09 1.472687973e-09 1.133802766e-09 1.268367153e-09 1.852641118e-09 2.27939834e-09 1.90986029e-09 1.858748605e-09 1.893322824e-09 1.517396327e-09 2.0645411e-09 9.588900883e-10 6.742902083e-10 1.439575626e-09 1.172700304e-09 1.014804424e-09 1.269550121e-09 1.254498252e-09 1.142333353e-09 6.007348254e-10 1.550192438e-09 8.346176845e-10 1.099776844e-09 9.161915701e-10 1.333009572e-09 8.618075737e-10 1.079663552e-09 9.501579853e-10 1.562843363e-09 6.951831937e-10 7.868060594e-10 9.254506233e-10 7.669501054e-10 1.018023203e-09 7.34465361e-10 1.163997729e-09 9.784680547e-10 1.37202181e-09 1.006613223e-09 6.865892648e-10 1.32721521e-09 7.560536341e-10 9.885428998e-10 9.090985055e-10 1.304177946e-09 5.167485547e-10 1.244820696e-09 8.185858197e-10 1.275424505e-09 1.034575088e-09 1.028607579e-09 6.105951218e-10 6.345250014e-10 4.943434323e-10 5.459788541e-10 5.269421326e-10 2.902799966e-10 6.371846996e-10 1.481434451e-10 5.564291779e-10 6.619981369e-10 9.000235402e-10 7.356602353e-10 5.115354446e-10 9.868752793e-10 3.115546669e-10 7.64404071e-10 8.013377543e-10 5.10130285e-10 3.161123092e-10 4.900195241e-10 6.54474687e-10 2.275750559e-10 2.93484385e-10 9.439464807e-10 7.176886128e-10 5.892370834e-10 6.418975269e-10 5.264792271e-10 1.971061601e-10 2.231584681e-10 3.422443553e-10 4.973195894e-10 4.234383164e-10 8.10013835e-10 1.75526576e-10 5.085757332e-10 2.816484173e-10 7.772328882e-10 3.276211808e-10 +4.161477849e-10 6.592255752e-10 1.631845875e-10 1.677223184e-10 2.396192949e-10 5.513697699e-10 3.605793173e-10 4.846420139e-10 3.897641995e-10 3.061227006e-10 3.219805392e-10 4.74156996e-10 3.523725256e-10 2.333458619e-10 1.465787402e-09 1.411259876e-10 1.146672292e-10 6.570988217e-10 1.538150368e-10 8.304754866e-10 4.69763986e-10 8.677811938e-10 3.30774791e-10 2.853291607e-10 3.951786898e-10 8.131300199e-10 6.91397749e-10 3.71892653e-10 3.733084076e-10 3.96684112e-10 5.659103502e-10 5.43573315e-10 1.026951187e-09 6.6156431e-10 2.188435202e-10 4.568430778e-10 8.821650429e-10 3.184952554e-10 7.543790905e-10 6.1348836e-10 9.703958223e-10 7.952723704e-10 1.237773013e-09 7.949094272e-10 8.989736743e-10 8.250644331e-10 8.867348925e-10 9.062150293e-10 1.207944362e-09 1.156983021e-09 1.041836235e-09 1.969864186e-09 7.173297155e-10 1.324974625e-09 1.512828442e-09 1.080679624e-09 8.397515097e-10 5.281106792e-10 8.283342836e-10 8.961985223e-10 8.858572437e-10 7.269670417e-10 1.321511566e-09 9.747177126e-10 1.230153604e-09 8.85261043e-10 8.429886436e-10 1.13775375e-09 1.045108778e-09 1.676489535e-09 1.298193412e-09 1.21362188e-09 7.612461576e-10 1.305146606e-09 1.052313676e-09 1.427982592e-09 1.119992616e-09 8.921144497e-10 1.025263748e-09 1.403321272e-09 1.422745866e-09 2.190286765e-09 2.090494401e-09 2.263833267e-09 1.194923655e-09 1.681920118e-09 1.51073934e-09 1.960793683e-09 2.62147879e-09 1.920759124e-09 1.897266645e-09 1.446166317e-09 1.190284021e-09 1.559371268e-09 1.472877797e-09 4.835607878e-10 1.185286208e-09 4.198074516e-10 7.585619459e-10 1.036385729e-09 1.002082986e-09 1.737657036e-09 2.416768119e-09 3.310686864e-09 3.18520798e-09 2.705032232e-09 3.140962421e-09 2.602964844e-09 2.429789338e-09 3.878517044e-09 4.709214853e-09 4.821915108e-09 2.321842042e-09 2.244766933e-09 3.07605244e-09 1.933242601e-09 1.168938881e-09 1.818247422e-09 1.692532351e-09 5.065585775e-10 2.431488752e-10 4.03255243e-10 0 1.379822967e-10 6.844177973e-10 1.711038356e-09 1.976536133e-09 3.215332696e-09 3.325467104e-09 2.574627504e-09 5.626398008e-09 6.468091793e-09 8.41259843e-09 7.160697932e-09 4.790306667e-09 5.75380275e-09 3.944478287e-09 1.689813369e-09 1.511856327e-09 9.264308616e-10 3.728408017e-10 2.54165041e-10 3.507027703e-10 4.491449375e-10 3.939774552e-11 2.364582975e-10 8.433191344e-11 2.711348838e-10 1.711564985e-10 2.248562039e-10 3.741966871e-10 2.323390254e-10 1.503411709e-10 6.208668841e-11 4.696017136e-10 3.338650066e-10 2.433230848e-10 2.558562132e-12 2.512027036e-10 3.786287015e-10 8.524617423e-10 2.453476741e-09 3.238397558e-09 3.954335352e-09 4.724940466e-09 5.537489394e-09 5.285264503e-09 6.284719918e-09 9.132149089e-09 5.762789878e-09 3.680894985e-09 2.90474384e-09 3.250148709e-09 2.906704497e-09 1.292427988e-09 3.23441097e-10 7.624328025e-11 2.915434496e-10 8.727449811e-11 1.833851011e-10 1.093712053e-09 1.473860872e-09 2.262399594e-09 2.065472108e-09 1.408512187e-09 1.960845783e-09 2.802269016e-09 1.602915711e-09 1.910138623e-09 4.573374345e-09 3.988629387e-09 3.396233727e-09 2.415505494e-09 3.010693482e-09 2.435098209e-09 1.640308156e-09 2.266630476e-09 2.688016059e-09 2.197870112e-09 1.036979006e-09 5.644716617e-10 1.331414993e-09 5.505194507e-10 8.801968454e-10 1.103594062e-09 1.349504143e-09 1.026262346e-09 1.508747729e-09 2.275154275e-09 1.755352083e-09 1.782295094e-09 9.574018484e-10 1.416008149e-09 1.930243624e-09 1.158432066e-09 1.560391886e-09 1.5606922e-09 2.581417918e-09 1.990548042e-09 1.281552165e-09 8.333225082e-10 9.210975092e-10 8.914157478e-10 1.084732375e-09 1.64722665e-09 4.517777589e-10 7.468181611e-10 7.578924355e-10 8.595583156e-10 1.709323852e-09 1.171854793e-09 1.003933747e-09 1.340003125e-09 1.155485343e-09 6.803092378e-10 7.500078256e-10 1.35524687e-09 1.609068478e-09 1.121329808e-09 6.222463257e-10 1.142687478e-09 8.039696348e-10 1.086121382e-09 6.762195508e-10 1.024576436e-09 9.739909148e-10 7.380170575e-10 1.619851563e-09 1.19770913e-09 5.483488212e-10 9.714102911e-10 8.73397191e-10 7.267513325e-10 1.215493658e-09 1.136661088e-09 1.138931682e-09 9.097597388e-10 1.071083683e-09 1.132280213e-09 5.433158992e-10 9.646300329e-10 1.0356287e-09 4.145219556e-10 5.013528407e-10 4.146338102e-10 5.282278723e-10 4.764323049e-10 8.185033433e-10 4.904029595e-10 2.388435562e-10 2.953068918e-10 1.033500162e-09 5.533399516e-10 4.817138413e-10 6.548162403e-10 6.380899531e-10 1.143584246e-09 5.078798618e-10 1.537153512e-10 1.968681738e-10 3.803584681e-10 1.852015189e-10 3.293126917e-10 4.699021398e-10 3.321962977e-10 3.90097431e-10 2.232225949e-10 2.532379654e-10 3.799368269e-10 6.990571351e-10 6.172248829e-10 4.773097144e-10 1.848286939e-10 4.344537533e-10 4.328822153e-10 7.523927668e-10 8.309866413e-10 3.521569834e-10 4.942594743e-10 4.425210576e-10 +2.931692164e-10 2.974127756e-10 3.578600699e-10 2.888027489e-10 5.611615306e-10 3.851322702e-10 4.648104382e-10 2.572961644e-10 2.208948718e-10 8.50534444e-11 1.203515493e-10 4.950645362e-10 3.512702529e-10 2.175563241e-10 6.113111358e-10 5.975911503e-10 2.719818194e-10 6.52192137e-10 4.476645877e-10 1.387401922e-10 3.034692944e-10 9.776045901e-10 5.474607246e-10 7.803806948e-10 4.954939244e-10 8.015025061e-10 8.232389487e-10 5.766067897e-10 8.302902946e-10 7.557545592e-10 6.570251983e-10 3.467381216e-10 7.831112778e-10 6.052447021e-10 4.762971121e-10 3.02065824e-10 6.312844766e-10 5.999338663e-10 5.010984037e-10 2.424181535e-10 6.835261916e-10 5.756691287e-10 1.655556607e-09 8.908614727e-10 1.062423512e-09 1.374322804e-09 1.249253275e-09 1.022528357e-09 1.30495205e-09 1.335645548e-09 1.64101566e-09 1.813268898e-09 9.909962052e-10 6.970387226e-10 9.9686538e-10 1.253611211e-09 1.58488756e-09 1.569780883e-09 8.496722729e-10 1.2565273e-09 5.220197787e-10 8.620435543e-10 1.104352686e-09 1.184893547e-09 7.187179271e-10 8.40966191e-10 1.087180357e-09 7.179420103e-10 1.035851378e-09 1.197919827e-09 1.171262832e-09 1.684276783e-09 1.127569519e-09 1.659236128e-09 5.694125908e-10 1.125862347e-09 7.188306501e-10 1.013772389e-09 1.281675976e-09 1.563253684e-09 1.824526053e-09 2.285013482e-09 1.817823595e-09 1.301753618e-09 2.602608916e-09 1.756394902e-09 1.147051456e-09 1.588104016e-09 1.946601283e-09 1.041036923e-09 1.225829483e-09 9.359634331e-10 1.698432431e-09 2.212607589e-09 1.067347266e-09 4.562165515e-10 8.079198027e-10 3.042927534e-10 4.196767932e-10 1.362382066e-09 8.209777089e-10 3.683616177e-09 2.938161679e-09 2.09447348e-09 2.620104611e-09 2.05972956e-09 2.129649147e-09 2.589675167e-09 2.801237456e-09 2.439061299e-09 3.594499918e-09 2.176529805e-09 3.482621737e-09 1.380404537e-09 2.903259395e-09 1.846374962e-09 1.705345859e-09 1.200860944e-09 1.518932088e-09 8.420080991e-10 1.325464925e-10 1.718004518e-10 1.600434149e-10 1.602100974e-10 3.97335819e-10 2.283023502e-09 2.878471869e-09 2.061353392e-09 2.90459601e-09 2.653664663e-09 4.106929783e-09 6.747908548e-09 7.305022308e-09 8.341117268e-09 5.615354506e-09 5.233881228e-09 5.527356221e-09 3.291275002e-09 3.058573327e-09 1.249913195e-09 3.557191971e-10 9.377241197e-11 8.109203865e-11 6.826999222e-11 1.925013218e-10 9.078117387e-11 1.613992173e-10 3.124952773e-10 2.040456173e-10 1.790115898e-10 2.192756137e-10 3.671970386e-10 1.472929826e-10 3.451588439e-12 2.221654055e-10 0 1.947100153e-10 3.852780924e-10 2.566306477e-10 4.189291773e-10 1.7029969e-09 3.57574598e-09 4.716094999e-09 5.232901032e-09 5.278778579e-09 6.165750237e-09 7.156536804e-09 7.293198591e-09 7.123562709e-09 5.218469064e-09 3.121890669e-09 1.929557914e-09 2.994809807e-09 2.484355389e-09 1.263766502e-09 2.868745971e-10 1.438962936e-10 2.153812164e-10 4.316719116e-10 2.518435248e-10 5.588859086e-10 1.518096987e-09 2.402382148e-09 8.710143245e-10 1.821671932e-09 2.342984274e-09 1.839313845e-09 3.341267047e-09 2.854102661e-09 5.398219202e-09 3.09623281e-09 3.222603917e-09 2.421142089e-09 2.045904932e-09 1.463353896e-09 3.214453752e-09 2.804098708e-09 2.971357681e-09 1.337923711e-09 1.356361944e-09 1.057745725e-09 8.467128858e-10 6.733155506e-10 7.589117424e-10 1.087836511e-09 1.66969991e-09 1.998428037e-09 1.283125976e-09 1.925210203e-09 6.884626536e-10 1.443767889e-09 2.780064893e-09 1.992817211e-09 1.588543604e-09 2.219077499e-09 2.875587887e-09 1.87266212e-09 2.244977612e-09 2.77902148e-09 1.389937991e-09 1.61295449e-09 8.239515636e-10 1.769602135e-09 6.405898425e-10 1.247546906e-09 9.589732896e-10 8.967779088e-10 1.04335558e-09 6.926833851e-10 1.532644431e-09 9.303525034e-10 1.318141092e-09 1.340101079e-09 7.947495085e-10 8.37372441e-10 9.009368489e-10 1.778383627e-09 1.506425126e-09 1.767245019e-09 1.319222873e-09 8.654793116e-10 8.083169655e-10 6.707904803e-10 1.028730804e-09 1.017588839e-09 1.409843534e-09 1.020392912e-09 1.598826243e-09 1.062470029e-09 1.016171419e-09 9.115644277e-10 7.202579936e-10 1.272118965e-09 1.205221152e-09 1.15744798e-09 9.440726279e-10 1.37280456e-09 3.515810904e-10 5.935509112e-10 4.477350325e-10 6.456448166e-10 4.692559068e-10 5.943807062e-10 3.993784519e-10 4.301251065e-10 4.361560167e-10 5.641490198e-10 1.349026208e-10 5.353041992e-10 9.477633939e-10 4.203586294e-10 4.743831386e-10 5.075577449e-10 7.705972228e-10 6.697784407e-10 3.425121492e-10 7.646936504e-10 3.755640069e-10 5.417472423e-10 4.455870853e-10 3.871687979e-10 2.371908149e-10 5.343900515e-10 3.724737613e-10 1.109953179e-10 7.008598694e-10 4.030723114e-10 4.164425369e-10 2.822847563e-10 8.056040591e-11 8.021298987e-10 1.798952489e-10 4.458204752e-10 2.685556096e-10 3.427530679e-10 2.454989619e-10 2.085116351e-10 7.843751854e-10 9.249511516e-10 3.494283611e-10 +2.442886923e-10 4.622665437e-10 1.948161013e-10 5.582679092e-10 8.64150494e-10 3.962870403e-10 4.893317249e-10 5.536019824e-10 4.922240561e-10 3.813245838e-10 7.687909529e-10 5.228674535e-10 3.368613397e-10 2.826402085e-10 5.861177043e-10 3.378597943e-10 6.189587928e-10 4.467991461e-10 5.789139157e-10 4.275867856e-10 7.399092239e-10 6.737331074e-10 5.411805821e-10 2.454338931e-10 5.775209034e-10 3.171888097e-10 4.881567399e-10 5.965435457e-10 5.07044252e-10 6.119194426e-10 5.284106882e-10 5.454716109e-10 8.951045097e-10 4.825167008e-10 3.001781177e-10 3.119179272e-10 3.565085186e-10 7.527063325e-10 9.776864379e-10 1.533669693e-09 6.601671206e-10 1.037054461e-09 1.227238545e-09 8.51584814e-10 1.631858968e-09 1.205467004e-09 8.346962491e-10 9.459431084e-10 1.230759325e-09 6.784667662e-10 1.013251542e-09 2.087051425e-09 7.58167021e-10 8.526800919e-10 1.7337378e-09 1.124648072e-09 6.38775186e-10 3.111902206e-10 5.346457079e-10 8.929595764e-10 4.958532759e-10 8.228503174e-10 1.054900373e-09 1.401189038e-09 1.41837532e-09 7.560223443e-10 1.234674672e-09 1.621183284e-09 6.106438738e-10 1.488766885e-09 2.15119314e-09 6.50184284e-10 9.928469652e-10 8.080037388e-10 9.22261417e-10 1.224366931e-09 9.124224304e-10 7.0902596e-10 1.388776615e-09 1.117043466e-09 2.192507279e-09 1.487265924e-09 1.571791866e-09 1.425174593e-09 2.262631206e-09 1.221079668e-09 1.517992517e-09 1.886866171e-09 1.674303866e-09 1.18763638e-09 9.527702732e-10 1.441791807e-09 1.453560399e-09 1.566896846e-09 1.284928224e-09 1.082900142e-09 9.59050466e-10 2.912827905e-10 8.465732518e-10 1.27736812e-09 1.154224976e-09 1.911657265e-09 2.912349508e-09 3.550276537e-09 2.787241829e-09 2.792465529e-09 1.191039169e-09 2.058875655e-09 3.268517035e-09 3.485891424e-09 4.386538143e-09 3.872891692e-09 2.701598046e-09 2.734013497e-09 2.656600022e-09 1.126403103e-09 2.005977281e-09 2.509772693e-09 1.934240976e-09 1.01254932e-09 5.798706876e-10 1.846779226e-12 7.011573329e-11 2.56922854e-10 2.733300085e-10 1.201741894e-09 2.867302155e-09 2.576886739e-09 1.864961077e-09 3.006259039e-09 2.709510354e-09 5.975083243e-09 4.883083743e-09 7.096244091e-09 6.737644871e-09 5.356304754e-09 7.339097805e-09 6.192333355e-09 3.692091658e-09 3.078953453e-09 1.014419981e-09 1.830156219e-10 3.324859823e-10 6.683696538e-11 2.456237349e-10 5.772679346e-10 2.662509113e-10 4.349506014e-10 1.20472672e-10 8.226541432e-11 2.324649487e-10 5.264612183e-10 2.071431553e-10 9.245771607e-11 2.4662659e-10 1.948949228e-10 4.8476554e-10 2.897156627e-10 3.713909861e-10 8.102203181e-10 2.5979806e-09 3.781740294e-09 3.855841209e-09 5.978248401e-09 5.966668166e-09 5.263992324e-09 7.691358864e-09 7.898609366e-09 5.522444571e-09 4.336224764e-09 2.963307593e-09 3.814407054e-09 3.064903672e-09 3.052603786e-09 1.294916002e-09 6.655434341e-10 1.614739703e-10 2.022144033e-10 5.577173196e-11 6.035303205e-10 1.261932678e-09 1.73634621e-09 1.092157439e-09 1.677569212e-09 1.894767901e-09 1.387251779e-09 2.537604648e-09 2.250431812e-09 2.925652326e-09 2.863870535e-09 2.104873606e-09 4.065681372e-09 3.41181764e-09 3.163726334e-09 2.240546257e-09 2.309353895e-09 1.797120264e-09 2.909177017e-09 1.879085336e-09 2.049342195e-09 1.107423553e-09 4.267402594e-10 5.969980154e-10 5.486571851e-10 5.839186761e-10 1.705750191e-09 1.527160817e-09 1.582162079e-09 2.168026239e-09 1.147584174e-09 1.394129359e-09 1.76930001e-09 2.15230357e-09 1.938947366e-09 1.518456014e-09 1.799437723e-09 1.287103545e-09 1.596817467e-09 2.05727954e-09 1.699699572e-09 1.698365208e-09 5.75516691e-10 9.491786223e-10 1.510385864e-09 1.314028659e-09 1.23138849e-09 1.458483281e-09 1.351050138e-09 1.259010062e-09 1.102373617e-09 1.200277604e-09 1.425547992e-09 1.218571281e-09 9.074714558e-10 1.337739974e-09 1.204408968e-09 1.102568255e-09 1.767423885e-09 8.211913517e-10 5.575586825e-10 5.07631796e-10 7.634224806e-10 9.674039583e-10 5.901231404e-10 6.370118661e-10 1.238111637e-09 8.915103289e-10 1.500532859e-09 1.122605346e-09 8.466127759e-10 8.430241634e-10 9.295192648e-10 1.013035656e-09 5.092130188e-10 1.041554961e-09 1.547427813e-09 1.406120848e-09 1.015790849e-09 5.789802355e-10 1.363037281e-09 9.065716249e-10 8.460031919e-10 8.326830157e-10 9.840076327e-10 5.669291142e-10 2.581159786e-10 4.669163807e-10 3.309886996e-10 3.070586519e-10 7.116991222e-10 4.717485057e-10 7.66580166e-10 4.323523307e-10 4.732133537e-10 8.068078916e-10 4.894925668e-10 7.101831201e-10 7.343917228e-10 5.161699258e-10 3.720321687e-10 2.124074826e-10 2.117120824e-10 2.752158239e-10 1.461928581e-09 4.12591996e-10 3.302522147e-10 4.851650918e-10 4.482750834e-10 3.854509625e-10 2.706061205e-10 3.205789802e-10 2.27170739e-10 5.060364862e-10 6.423219362e-10 4.658373793e-10 5.254215391e-10 7.704359053e-10 3.181188561e-10 6.112636368e-10 4.623690625e-10 +4.646165744e-10 7.220931098e-10 4.840479633e-10 2.270387191e-10 4.545890715e-10 5.338106899e-10 1.747932637e-10 5.205918119e-10 5.917130285e-10 2.322852117e-10 7.684365804e-10 5.536119083e-10 4.025760879e-10 4.430238632e-10 3.847742422e-10 4.817013745e-10 9.471444824e-10 2.567154369e-10 4.456715684e-10 4.319889618e-10 4.398761422e-10 2.366947444e-10 4.955609536e-10 5.981392321e-10 5.560148251e-10 4.420662552e-10 3.171494859e-10 5.937977368e-10 2.572076829e-10 2.19717558e-10 8.711100761e-10 7.12511549e-10 3.549597185e-10 3.79526775e-10 1.122010927e-09 8.370420019e-10 5.053946555e-10 6.05439191e-10 5.865320048e-10 8.149138129e-10 1.174083001e-09 8.342059702e-10 1.270812606e-09 5.664320327e-10 9.44141041e-10 1.063098758e-09 7.826839339e-10 7.929744602e-10 8.155300941e-10 9.739014129e-10 9.454612919e-10 7.477537558e-10 1.365910744e-09 1.033126838e-09 7.985110797e-10 1.290097206e-09 1.132995981e-09 1.338831749e-09 1.317008038e-09 7.965051967e-10 1.090109991e-09 6.372691482e-10 1.148248417e-09 6.513059907e-10 1.178024451e-09 9.532727152e-10 9.539495872e-10 1.12476836e-09 1.480186071e-09 1.403825117e-09 8.591898816e-10 9.335416054e-10 1.058519387e-09 9.053724742e-10 7.035336806e-10 1.014619374e-09 7.717146888e-10 7.895967148e-10 1.468117867e-09 1.335312924e-09 1.489373309e-09 1.527833539e-09 1.840794943e-09 1.425136668e-09 1.494508197e-09 1.583226055e-09 1.59945021e-09 2.753602466e-09 1.11214177e-09 1.783037392e-09 1.433386386e-09 9.653219911e-10 1.160181878e-09 1.311298377e-09 1.544004323e-09 1.042556939e-09 5.481470697e-10 3.737375262e-10 4.186072655e-10 8.824211888e-10 1.566666116e-09 2.489291516e-09 2.420550436e-09 2.005467559e-09 2.631304949e-09 3.987105205e-09 2.477322321e-09 1.785511337e-09 2.636112413e-09 1.649527796e-09 3.854489667e-09 3.263591172e-09 2.637014991e-09 1.573312296e-09 1.417768124e-09 1.596920027e-09 1.326798437e-09 1.686765268e-09 2.030409602e-09 1.238990635e-09 3.892234626e-10 6.383493259e-10 8.813029039e-11 7.277388738e-11 1.156249314e-10 4.463610302e-10 1.627935859e-09 2.779455691e-09 2.970764112e-09 3.495983359e-09 1.870264122e-09 5.867249972e-09 5.795319633e-09 8.079241965e-09 6.968695384e-09 5.551951871e-09 7.044250483e-09 5.950450123e-09 5.584271131e-09 3.282149989e-09 2.116658939e-09 1.051364993e-09 4.483623994e-10 1.201917401e-10 7.080606663e-11 3.532999641e-10 2.516971365e-10 1.16931105e-10 2.125734454e-10 6.941472461e-14 4.909277765e-10 2.033057766e-10 1.655454774e-26 0 2.681331399e-10 5.021290166e-10 5.630006338e-10 3.632949642e-10 8.07781116e-10 1.127919911e-09 3.081282195e-09 4.273184426e-09 5.356095651e-09 2.778020815e-09 6.553745369e-09 6.922461154e-09 7.195708797e-09 6.95415527e-09 3.99252903e-09 4.542327769e-09 2.729584409e-09 4.141831867e-09 2.140070156e-09 2.190933377e-09 4.95568652e-10 3.262925374e-10 8.539146522e-11 1.862076517e-10 2.98362349e-10 7.49904314e-10 1.94227553e-09 2.019330413e-09 1.787862689e-09 1.657555859e-09 1.671879471e-09 1.316351947e-09 2.438855017e-09 3.795636284e-09 2.275030943e-09 3.744672174e-09 2.634697903e-09 1.952569974e-09 3.083545733e-09 1.315560836e-09 2.604201448e-09 3.04207737e-09 2.160980355e-09 2.220033617e-09 1.448223271e-09 1.131230385e-09 8.192722907e-10 1.058031365e-09 7.676283132e-10 7.761565982e-10 7.29894239e-10 1.899226438e-09 1.067908742e-09 2.005524225e-09 1.117565923e-09 1.522742839e-09 1.368834296e-09 1.976491323e-09 2.322754509e-09 1.605487952e-09 2.099915748e-09 1.539913649e-09 1.591080738e-09 1.622239354e-09 1.351868276e-09 2.068539815e-09 1.011356873e-09 1.200280205e-09 1.020053414e-09 1.013002207e-09 4.860940805e-10 1.038805109e-09 1.191967184e-09 1.461808273e-09 1.191842877e-09 9.056925587e-10 1.509966312e-09 7.57251338e-10 9.787106236e-10 1.446554539e-09 1.041549e-09 1.073454029e-09 1.656540609e-09 1.657832497e-09 1.058356242e-09 9.007521752e-10 5.200116018e-10 1.606274278e-09 8.913740939e-10 6.682750501e-10 1.247486364e-09 9.536158937e-10 7.960102971e-10 5.49884783e-10 7.087864086e-10 9.871451199e-10 1.568661806e-09 1.47121563e-09 9.075586735e-10 1.064022647e-09 1.21806819e-09 6.809605938e-10 7.539546511e-10 1.489706023e-09 1.566851257e-09 4.372230305e-10 7.247486896e-10 7.05840532e-10 7.013093634e-10 6.545527248e-10 6.678575521e-10 7.371915351e-10 6.817503676e-10 1.941370946e-10 3.308311374e-10 3.9344597e-10 3.917464159e-10 5.565913759e-10 6.306096182e-10 9.826420583e-10 5.116875864e-10 3.912486103e-10 9.056977731e-10 9.305457858e-10 7.02523977e-10 5.228931746e-10 1.513520044e-10 4.965938769e-10 4.35871887e-10 4.864300205e-10 4.531009653e-10 4.763834697e-10 3.845966255e-10 5.230910518e-10 2.655607065e-10 2.139801971e-10 1.908974511e-10 2.739085577e-10 8.291733255e-10 4.700067339e-10 5.657105906e-10 3.716918854e-10 3.043500941e-10 4.684967756e-10 3.542014884e-10 4.236549339e-10 +5.057013224e-10 9.119583838e-10 2.261229114e-10 4.122097417e-10 5.310211184e-10 3.41940691e-10 3.721307908e-10 1.971783577e-10 1.872938329e-10 2.512368291e-10 3.2370584e-10 7.109539732e-10 3.251804239e-10 2.195628121e-10 3.599619895e-10 1.156692465e-09 6.256154334e-10 7.53402884e-10 6.078589331e-10 6.672311484e-10 5.205207179e-10 6.47785248e-10 6.830573094e-10 1.615561556e-10 5.3958028e-10 4.581159927e-10 5.282922329e-10 7.77797254e-10 4.109398121e-10 6.029364656e-10 3.373887386e-10 6.593790398e-10 8.474398407e-10 5.351930226e-10 4.548317283e-10 4.042399585e-10 5.664584623e-10 1.132049441e-09 1.33817346e-09 1.214558343e-09 1.063898202e-09 1.009470082e-09 1.231116063e-09 9.421588347e-10 9.141743967e-10 1.017618814e-09 1.183880551e-09 9.181374128e-10 7.245943765e-10 1.075027078e-09 9.661030979e-10 1.023330191e-09 6.594794662e-10 6.021092322e-10 1.019126931e-09 1.168434021e-09 9.780933131e-10 9.153644786e-10 7.404172027e-10 5.517013601e-10 5.376275559e-10 1.392838149e-09 1.369210884e-09 1.35133055e-09 1.705599116e-09 1.337652201e-09 1.173177781e-09 1.164032548e-09 1.046559866e-09 1.052232454e-09 9.207572727e-10 6.955008615e-10 1.555218479e-09 1.819243802e-09 7.670239466e-10 1.05131424e-09 7.122596252e-10 6.493628579e-10 8.038688824e-10 1.319500591e-09 1.428179789e-09 2.023451099e-09 2.395083369e-09 2.070238306e-09 1.775023931e-09 1.219215058e-09 1.717684594e-09 2.137742354e-09 1.368882803e-09 2.041986406e-09 1.276401006e-09 1.275605332e-09 1.517490175e-09 1.509117964e-09 1.380245906e-09 1.376905266e-09 1.263819057e-09 4.952614371e-10 6.02312306e-10 1.06356106e-09 1.003348473e-09 1.974897351e-09 2.330914227e-09 3.078554324e-09 1.93561593e-09 2.107824647e-09 3.648837213e-09 2.339646446e-09 2.552368126e-09 2.305964076e-09 3.070918514e-09 2.155444987e-09 3.200526674e-09 1.515736734e-09 2.332611464e-09 2.671645664e-09 1.610381085e-09 1.456680272e-09 1.368745097e-09 1.352582039e-09 8.365584438e-10 2.164871474e-10 8.267215825e-11 1.020003905e-10 7.338245204e-11 5.836088583e-10 1.545082482e-09 3.295600716e-09 3.049688026e-09 3.444727962e-09 2.453975741e-09 4.119951164e-09 5.41818313e-09 8.470340974e-09 6.547756913e-09 7.483243542e-09 5.473053901e-09 5.566250664e-09 4.798464316e-09 5.341692293e-09 3.200337735e-09 2.488148839e-09 1.586927892e-09 4.420197674e-10 5.260230137e-10 1.507319848e-10 1.626646438e-25 9.709151075e-11 1.470127129e-10 2.645875659e-10 0 1.765027969e-10 7.814361734e-11 4.711180018e-12 3.229688669e-10 1.178747315e-09 5.940991054e-10 1.559301503e-09 2.074155807e-09 4.486366181e-09 5.029998173e-09 5.49811674e-09 6.784640527e-09 5.715624647e-09 6.545433456e-09 6.700903747e-09 6.540932911e-09 5.226691051e-09 3.221152949e-09 3.444053788e-09 3.722965049e-09 2.547529662e-09 2.977144996e-09 2.39471136e-09 4.560185562e-10 3.828192484e-10 4.235756484e-10 3.798475302e-20 4.086667437e-10 4.977140991e-10 1.146677389e-09 1.15661666e-09 1.988288e-09 1.432974644e-09 1.565225344e-09 2.855772508e-09 2.339779038e-09 2.452648803e-09 2.606490006e-09 2.947589141e-09 2.119361868e-09 2.982860361e-09 2.383755267e-09 3.338149164e-09 2.28628467e-09 2.907550662e-09 2.170732226e-09 4.670224799e-09 2.200873916e-09 6.766629515e-10 6.158317652e-10 4.968271559e-10 7.367956784e-10 8.057336431e-10 8.454713916e-10 1.202435032e-09 1.737091575e-09 1.547144269e-09 1.223603209e-09 2.431254417e-09 1.6873259e-09 2.146278187e-09 1.235974798e-09 1.136544156e-09 1.567554139e-09 1.840119004e-09 1.458726313e-09 1.369658519e-09 1.775441368e-09 1.747110582e-09 1.40697009e-09 7.796164592e-10 1.081420156e-09 1.268408482e-09 1.528947081e-09 7.533238103e-10 9.565431478e-10 1.164066044e-09 5.757215624e-10 1.584968118e-09 1.331510223e-09 1.319925532e-09 1.122537349e-09 1.376455979e-09 1.044257291e-09 1.072280846e-09 9.976985178e-10 1.191606919e-09 8.710106533e-10 8.387982198e-10 1.000913817e-09 8.191139685e-10 1.103142669e-09 7.478647759e-10 1.053849724e-09 1.515897517e-09 1.406939489e-09 1.529962557e-09 1.186959236e-09 2.780913946e-10 9.490759741e-10 1.145082798e-09 1.199100899e-09 1.587888941e-09 6.401550091e-10 6.809637925e-10 9.383344393e-10 1.423196358e-09 1.074972789e-09 7.165051476e-10 5.467628496e-10 1.02141308e-09 5.526717741e-10 7.300168529e-10 7.027698306e-10 6.176788511e-10 5.464510098e-10 6.088543243e-10 3.590368703e-10 3.658053754e-10 4.964799202e-10 3.601900799e-10 2.289887847e-10 4.850209014e-10 5.088487247e-10 6.769217479e-10 6.64850591e-10 5.4642916e-10 3.990628828e-10 7.176168044e-10 5.09525099e-10 3.314129173e-10 2.388723509e-10 5.68309803e-10 6.314129309e-10 2.764307088e-10 5.035413639e-10 7.043428165e-10 2.38642133e-10 4.167617057e-10 3.064061408e-10 4.898317829e-10 1.604071177e-10 7.705069318e-10 1.865415021e-10 3.169453923e-10 1.175870951e-10 2.270792977e-10 5.273024206e-10 6.918596117e-10 +4.046084916e-10 2.132134985e-10 3.238460069e-10 2.253800918e-10 2.238359412e-10 6.113269159e-10 5.630189066e-10 5.62159278e-10 4.017308909e-10 5.544532996e-10 2.988107625e-10 3.904697533e-10 2.207739293e-10 1.907064825e-10 3.968652567e-10 3.302389277e-10 4.253170074e-10 3.78627402e-10 4.128186792e-10 1.047654207e-09 2.284811609e-10 5.762935058e-10 3.337485521e-10 3.854751176e-10 7.377446792e-10 3.639139871e-10 5.592566958e-10 5.43929073e-10 4.380694982e-10 2.206389497e-10 4.670827671e-10 8.326323484e-10 8.597919859e-10 4.914320675e-10 3.251375394e-10 4.773615562e-10 1.134163954e-09 8.027966176e-10 6.758867588e-10 1.66765223e-09 1.264460959e-09 9.908576423e-10 1.229202931e-09 1.208599671e-09 1.059806964e-09 6.98247389e-10 1.478139209e-09 7.2253278e-10 8.010823352e-10 7.065843809e-10 1.087638615e-09 9.873950612e-10 4.335930191e-10 7.087514009e-10 9.663757202e-10 8.395724485e-10 4.901146403e-10 6.761679095e-10 8.051411481e-10 7.317501281e-10 7.437911622e-10 1.012594727e-09 8.287887851e-10 4.134471705e-10 1.296010596e-09 9.238749945e-10 9.57202641e-10 8.740320463e-10 8.24234559e-10 1.060676374e-09 1.721002874e-09 9.203327396e-10 1.796870386e-09 1.319144943e-09 1.096474112e-09 9.04042648e-10 7.32224541e-10 5.763588836e-10 1.541090727e-09 1.682215751e-09 1.884736989e-09 1.933558739e-09 1.600899162e-09 1.935078042e-09 1.853240633e-09 2.209738644e-09 1.937828542e-09 2.456411063e-09 1.508549288e-09 1.367578949e-09 1.423407994e-09 1.926000258e-09 9.207671789e-10 6.360533688e-10 1.12994795e-09 9.766861431e-10 1.628793424e-09 5.095274682e-10 4.160149889e-10 1.119571783e-09 1.049575227e-09 1.351308193e-09 3.151746672e-09 1.804319399e-09 2.900390544e-09 1.830805544e-09 1.688033745e-09 2.152157076e-09 2.804819611e-09 2.042771193e-09 2.996709073e-09 4.313853681e-09 2.864810711e-09 2.329508221e-09 2.179994059e-09 1.944098401e-09 1.758812724e-09 2.157857857e-09 2.186851016e-09 2.544568806e-09 4.416804715e-10 2.705472655e-10 1.591603367e-10 3.12091175e-10 2.300457171e-10 1.288451599e-18 7.142694662e-10 2.295330564e-09 3.380340259e-09 2.912521732e-09 3.42676972e-09 3.59224086e-09 6.577872232e-09 8.320410589e-09 6.190708154e-09 5.689085481e-09 5.582833368e-09 4.075519355e-09 4.837071088e-09 4.254967991e-09 5.045133486e-09 4.01994341e-09 3.120133752e-09 2.977080988e-09 1.116771468e-09 8.154497553e-10 4.38021483e-10 3.233064958e-10 1.454390032e-12 9.105283103e-11 2.829264798e-10 7.700854069e-11 5.03144301e-10 5.276115379e-10 9.499879792e-10 1.271306014e-09 2.262986504e-09 2.952284633e-09 2.589717216e-09 4.404411886e-09 3.368019668e-09 5.729435635e-09 6.363673447e-09 6.889736444e-09 7.411895377e-09 6.956954181e-09 8.062940404e-09 4.762448957e-09 2.710374753e-09 2.58550834e-09 3.132121338e-09 2.33419909e-09 1.478068879e-09 1.694723859e-10 2.982392357e-10 1.506618636e-10 4.660916569e-11 1.774623118e-14 1.411407546e-10 1.482790859e-09 1.928752203e-09 2.366137286e-09 1.545413492e-09 2.525250338e-09 2.734470394e-09 1.824900855e-09 2.603132926e-09 4.470783161e-09 3.288182739e-09 3.02207777e-09 2.083832508e-09 2.604694819e-09 1.928802299e-09 2.192497319e-09 1.227881633e-09 3.299278309e-09 1.614510623e-09 1.827088619e-09 1.102230465e-09 6.238542627e-10 7.047014581e-10 7.893904339e-10 4.160456264e-10 5.871004321e-10 8.072461127e-10 1.442112279e-09 2.418301531e-09 1.939926134e-09 9.236138482e-10 1.689189844e-09 2.007541574e-09 1.787706013e-09 2.021528926e-09 2.113059732e-09 1.502943064e-09 1.919038585e-09 2.045454448e-09 1.87864596e-09 2.454676098e-09 1.629812677e-09 1.041568126e-09 6.568533582e-10 7.277415069e-10 6.45681482e-10 1.02263054e-09 8.741093118e-10 7.604939469e-10 8.756790835e-10 1.175208598e-09 7.616327496e-10 1.139437968e-09 1.164657883e-09 1.018655206e-09 1.041259314e-09 1.484441743e-09 1.366111003e-09 7.600845314e-10 1.342664752e-09 1.133092995e-09 6.618404665e-10 4.357185341e-10 9.711880715e-10 8.231577541e-10 6.917920725e-10 6.040851514e-10 3.298134791e-10 9.210113413e-10 1.557879162e-09 8.704558214e-10 1.492827063e-09 1.01876569e-09 8.259048885e-10 2.042241439e-09 8.316090675e-10 1.383703886e-09 1.065922776e-09 7.180467074e-10 1.030463316e-09 7.839246739e-10 8.134741355e-10 7.459914407e-10 8.644715106e-10 9.102282079e-10 8.537653044e-10 1.187581633e-09 7.428831313e-10 5.282504717e-10 3.051436368e-10 4.915176824e-10 5.560031293e-10 6.09760537e-10 9.050181187e-10 7.095731785e-10 7.001654039e-10 4.651295571e-10 3.388122703e-10 1.076592034e-09 3.605744739e-10 6.20105328e-10 1.408552481e-10 5.911836447e-10 1.255973769e-09 9.311922395e-10 5.782084977e-10 4.328579189e-10 5.787842185e-10 2.675770092e-10 1.964009924e-10 4.499243368e-10 2.238347943e-10 3.202520221e-10 6.554202036e-10 3.143032433e-10 5.872806098e-10 2.619909687e-10 5.845128098e-10 2.155129974e-10 4.898393396e-10 3.440508587e-10 3.205748982e-10 +9.757619216e-10 3.747607989e-10 1.092616979e-09 1.245936918e-10 2.52190926e-10 8.335588704e-10 5.838620769e-10 2.614564795e-10 2.047231534e-10 1.819324997e-10 7.115290516e-10 6.158327183e-10 1.723719619e-10 2.561902491e-10 2.065992908e-10 3.229037529e-10 2.571767338e-10 2.322719637e-10 3.740181268e-10 5.461258772e-10 7.102122946e-10 2.179701435e-10 4.088594527e-10 4.886943232e-10 4.45558743e-10 5.49698214e-10 5.680923246e-10 3.886185092e-10 4.932451452e-10 3.305577012e-10 3.210472326e-10 4.719715103e-10 2.994796038e-10 2.249039559e-10 7.917736351e-10 3.126795671e-10 6.227577224e-10 1.177236355e-09 6.441043926e-10 8.24597831e-10 8.294771189e-10 1.521594454e-09 1.328723944e-09 8.269800376e-10 5.646982413e-10 1.250755774e-09 9.31736084e-10 1.484609997e-09 1.355375194e-09 9.16042196e-10 1.0437422e-09 1.301842082e-09 9.784448629e-10 8.903497742e-10 6.995130605e-10 1.094723905e-09 9.301240408e-10 1.0398236e-09 7.218529552e-10 8.959110682e-10 9.901646415e-10 8.650682315e-10 7.271845617e-10 1.481956985e-09 8.055313041e-10 6.144086823e-10 1.205945878e-09 8.753369566e-10 7.248933862e-10 9.928276918e-10 2.239237236e-09 1.497189244e-09 8.056740635e-10 1.421584251e-09 1.89522348e-09 9.275201015e-10 3.832879828e-10 5.501596279e-10 1.774403334e-09 9.826312472e-10 1.056643031e-09 1.894857893e-09 2.371285201e-09 2.186767696e-09 2.348550179e-09 1.29271822e-09 1.775305539e-09 1.756115683e-09 1.213904808e-09 1.617234996e-09 1.372754367e-09 1.582224351e-09 1.161993475e-09 2.709172372e-09 1.831211471e-09 1.867194582e-09 1.465656598e-09 6.303488584e-10 7.303461046e-10 1.134688077e-09 5.144813607e-10 1.766281278e-09 2.474980721e-09 2.809450275e-09 1.455321299e-09 1.466178666e-09 4.023020697e-09 2.218606281e-09 1.356397302e-09 1.565762857e-09 2.85740096e-09 3.226506662e-09 3.071574237e-09 2.318969084e-09 1.990851294e-09 2.128473005e-09 2.103719784e-09 1.504499761e-09 1.481356346e-09 1.934457657e-09 1.264093129e-09 7.061748974e-10 2.838749969e-17 1.019056324e-10 2.341747247e-10 1.290525953e-10 7.315116708e-10 1.531118497e-09 2.768828315e-09 3.467720676e-09 3.25844896e-09 3.417013086e-09 5.656134223e-09 4.424847585e-09 6.395555185e-09 6.804703084e-09 8.10454688e-09 7.409908183e-09 4.560862022e-09 5.440975904e-09 4.107815488e-09 3.956087928e-09 3.497249986e-09 3.04050929e-09 2.882061542e-09 1.945260655e-09 1.715333655e-09 1.05481333e-09 6.740471603e-10 1.661183137e-09 8.160797496e-10 1.162117685e-09 1.274114636e-09 1.378560886e-09 1.678540627e-09 2.619763204e-09 2.787421144e-09 3.0282811e-09 5.243526074e-09 5.922449304e-09 5.669547384e-09 5.128621963e-09 7.090181519e-09 6.644553878e-09 8.0439239e-09 7.191657784e-09 5.573225058e-09 3.711170448e-09 2.325346657e-09 3.239885014e-09 2.597120868e-09 2.713447559e-09 1.37289182e-09 7.394768357e-10 7.987871434e-11 1.460740185e-10 2.240076422e-10 1.203785569e-10 4.04484306e-10 6.296315833e-10 1.274911341e-09 2.277356729e-09 1.3695007e-09 2.256733032e-09 2.303112056e-09 2.590533628e-09 2.639400205e-09 2.72712274e-09 2.679446093e-09 2.543831678e-09 1.480614609e-09 2.9662025e-09 3.341725514e-09 1.921328855e-09 2.353387422e-09 2.695238604e-09 3.317421515e-09 1.644275331e-09 1.215051951e-09 8.701536559e-10 9.158421401e-10 6.844229349e-10 3.049343662e-10 3.856281549e-10 1.020679805e-09 1.402338279e-09 1.699935889e-09 1.304671554e-09 1.589632577e-09 2.043242699e-09 1.575397321e-09 1.183734376e-09 1.577039089e-09 1.55277073e-09 1.089272933e-09 1.818243627e-09 1.736983427e-09 2.347731217e-09 2.499887027e-09 1.739264347e-09 1.558251217e-09 1.172138487e-09 1.092880263e-09 1.173788449e-09 7.749014362e-10 7.834281705e-10 9.42857799e-10 1.459534096e-09 7.190313196e-10 1.647141286e-09 1.622978406e-09 1.35414723e-09 1.060633875e-09 9.150930087e-10 1.130418955e-09 1.009792545e-09 1.009935722e-09 1.096634696e-09 1.248263534e-09 1.03532898e-09 1.298049774e-09 1.30402503e-09 4.723630226e-10 8.640007141e-10 8.902653468e-10 5.83421801e-10 1.717310029e-09 1.035401031e-09 1.023634637e-09 8.042356427e-10 8.364194387e-10 1.040102833e-09 1.672900196e-09 9.807180521e-10 9.128588173e-10 1.238565194e-09 7.758770428e-10 1.214245415e-09 5.624044857e-10 1.026709531e-09 1.621069161e-09 1.070161912e-09 4.996013361e-10 6.951977328e-10 3.722445925e-10 9.484364722e-10 7.265214947e-10 8.172657998e-10 4.401468162e-10 4.981400003e-10 2.430880696e-10 3.307882637e-10 2.670927698e-10 5.737606271e-10 4.970011026e-10 5.652663361e-10 4.466096902e-10 9.50927337e-10 7.163051869e-10 4.977293079e-10 5.027336025e-10 5.994294613e-10 6.142592214e-10 5.358573319e-10 3.0028984e-10 4.546743506e-10 5.050526948e-10 3.46370814e-10 4.1919994e-10 3.419699822e-10 3.823667953e-10 6.554361807e-10 6.479899322e-10 3.801424105e-10 3.047670183e-10 2.631891179e-10 6.757317147e-10 9.882182947e-11 4.084867095e-10 2.415417925e-10 +4.303676883e-10 2.042765871e-10 1.89331903e-10 1.136853784e-10 7.62811554e-10 1.432044803e-10 6.978456431e-10 3.447888781e-10 5.776910423e-10 8.225098807e-10 5.797047988e-10 3.654791088e-10 3.027902084e-10 3.360454283e-10 3.277481716e-10 5.771080031e-10 5.416463429e-10 5.438856423e-10 3.71713568e-10 9.806027699e-10 3.604756197e-10 4.927739921e-10 6.153673666e-10 7.600622162e-10 5.043360166e-10 7.231795582e-10 8.596062337e-10 5.409510462e-10 3.394034427e-10 1.739594236e-10 3.271108826e-10 4.884033579e-10 8.543783015e-10 8.181190721e-10 8.484182009e-10 7.280561121e-10 4.492829108e-10 1.05710217e-09 1.108938416e-09 7.358438593e-10 6.738197913e-10 6.053373082e-10 1.508306408e-09 7.388197207e-10 4.642796048e-10 1.606203559e-09 1.222126433e-09 1.0496357e-09 1.225533143e-09 9.618864728e-10 5.713368532e-10 1.577671463e-09 8.010867563e-10 6.592193376e-10 8.911051129e-10 1.20318551e-09 1.085974285e-09 1.309932101e-09 1.21955485e-09 7.741494669e-10 1.104637656e-09 1.078036336e-09 1.18152374e-09 8.464992515e-10 1.149811935e-09 1.063882704e-09 5.9894437e-10 1.100230967e-09 1.181069095e-09 1.265612233e-09 9.124088615e-10 1.07999484e-09 1.234912e-09 5.74360145e-10 6.801425588e-10 8.081697002e-10 1.238774555e-09 7.854877039e-10 8.035500034e-10 1.087666632e-09 1.501235128e-09 2.081593955e-09 1.872974774e-09 2.853488541e-09 9.37390976e-10 1.76193385e-09 1.772397228e-09 1.605931323e-09 1.946859401e-09 1.664102015e-09 1.764385347e-09 1.397443532e-09 1.08010807e-09 1.183596954e-09 1.107920355e-09 1.284032265e-09 7.808024424e-10 4.891241733e-10 5.752932819e-10 4.766242228e-10 9.641616599e-10 1.314582562e-09 2.441171636e-09 3.151665124e-09 2.813403685e-09 3.193113533e-09 3.543510085e-09 2.484175581e-09 1.668785782e-09 2.160661375e-09 2.590899661e-09 3.948295785e-09 3.560999616e-09 2.71723362e-09 1.651694443e-09 8.510627286e-10 5.855322713e-10 2.285534362e-09 1.391759602e-09 1.718867328e-09 1.685394682e-09 1.169780038e-09 3.018938947e-10 2.761253061e-10 2.408652522e-10 2.321746333e-10 1.914231215e-10 1.879283291e-09 2.740596292e-09 2.921399159e-09 3.645735834e-09 3.516086625e-09 2.106949937e-09 5.861743525e-09 6.224742228e-09 7.284200978e-09 6.945650448e-09 7.031134485e-09 5.234697454e-09 7.462077396e-09 6.22018807e-09 5.360773635e-09 4.1048223e-09 5.660873561e-09 3.257171108e-09 2.520799424e-09 1.929843785e-09 2.571571841e-09 2.056242064e-09 1.936030892e-09 1.839445249e-09 2.261640976e-09 2.462934342e-09 2.287379959e-09 2.639498577e-09 4.767928046e-09 3.272574762e-09 3.776798731e-09 5.818615103e-09 5.359019905e-09 4.175318515e-09 4.975054659e-09 7.56950067e-09 6.238776712e-09 8.538766401e-09 6.869407479e-09 3.172298194e-09 2.927833628e-09 4.383794233e-09 4.177909696e-09 2.492439625e-09 2.643934963e-09 1.842546551e-09 2.260583123e-10 3.177683023e-10 4.762960317e-10 1.272752832e-10 3.693252386e-10 5.677951436e-11 1.949694627e-09 1.181271068e-09 1.487356788e-09 1.874271815e-09 1.826389248e-09 1.828346653e-09 1.818917517e-09 2.561586406e-09 2.995328953e-09 2.476687123e-09 2.603681161e-09 2.947749462e-09 2.215371371e-09 2.314175725e-09 2.580243598e-09 2.369274245e-09 3.498414781e-09 3.672974945e-09 2.956361945e-09 1.232610499e-09 1.06705009e-09 5.727074895e-10 7.616085556e-10 5.907037946e-10 1.563904841e-09 1.381843953e-09 1.666047589e-09 1.227168364e-09 1.398927979e-09 1.425747301e-09 1.419486716e-09 1.83244834e-09 1.467511833e-09 1.243019763e-09 8.984368895e-10 1.753243593e-09 1.664311586e-09 1.839725498e-09 2.120263969e-09 2.447140642e-09 1.574030304e-09 1.549827899e-09 1.661348853e-09 1.630195076e-09 4.264677001e-10 9.767500859e-10 6.887394886e-10 9.528133176e-10 1.46259845e-09 1.547614251e-09 1.169038596e-09 9.299983965e-10 8.637246616e-10 3.912615988e-10 8.772469392e-10 1.234850802e-09 1.981691559e-09 1.291592748e-09 2.007514518e-09 1.002577778e-09 1.026748857e-09 9.88938383e-10 8.057468588e-10 6.80327506e-10 6.486826403e-10 8.008215332e-10 1.186878799e-09 8.505498095e-10 1.027260734e-09 2.094116066e-09 1.09536491e-09 1.326001501e-09 1.135990103e-09 5.781329944e-10 1.289990062e-09 1.139131691e-09 8.011526126e-10 1.132216502e-09 1.22273171e-09 7.164141409e-10 9.676787295e-10 1.06220484e-09 8.084155515e-10 6.106236965e-10 1.087127064e-09 3.45302132e-10 3.54755009e-10 5.454956407e-10 1.474176415e-10 4.118336412e-10 5.208927609e-10 5.570886641e-10 2.537945771e-10 5.983766056e-10 4.309258665e-10 5.113050353e-10 1.430546311e-09 3.76870405e-10 4.999662125e-10 1.121406575e-09 3.157167815e-10 9.047632783e-10 2.835119931e-10 2.131856521e-10 6.614626135e-10 7.070776695e-10 1.005211069e-09 6.075983879e-10 5.203322284e-10 1.732965966e-10 7.445376781e-10 2.990721926e-10 3.373796136e-10 4.422286499e-10 2.827409296e-10 2.639721407e-10 6.62272647e-10 3.453042552e-10 4.377413363e-10 5.151659348e-10 2.913334332e-10 +3.724879392e-10 2.803979436e-10 2.626935183e-10 1.125207679e-09 6.645106095e-10 4.160151829e-10 4.871381458e-10 9.357050893e-10 4.888858959e-10 2.289749864e-10 4.322002677e-10 7.964154018e-10 2.146588095e-10 5.291226731e-10 4.985229288e-10 5.519838866e-10 5.279348297e-10 7.064602314e-10 4.870109458e-10 1.0778917e-09 2.594380918e-10 6.875620836e-10 6.939220969e-10 2.598398389e-10 4.999671744e-10 5.218264451e-10 3.035638064e-10 3.663520999e-10 5.392952147e-10 5.989222776e-10 5.643752636e-10 4.964854304e-10 5.589021634e-10 8.265297423e-10 6.125403516e-10 6.183314846e-10 5.139942075e-10 1.02079558e-09 6.885621786e-10 6.463593104e-10 1.458251618e-09 1.159287053e-09 1.363615605e-09 1.699921332e-09 1.346502116e-09 8.21540438e-10 7.392256385e-10 5.327708063e-10 1.208967843e-09 1.177927608e-09 9.198877829e-10 1.074297483e-09 8.229617071e-10 9.632343656e-10 1.295674131e-09 6.602215452e-10 5.097945697e-10 5.368814771e-10 1.004203849e-09 8.020934386e-10 1.032234124e-09 1.102793168e-09 9.681984315e-10 1.715248843e-09 1.716504509e-09 1.254891865e-09 7.034273907e-10 1.200000248e-09 1.207721254e-09 9.541919106e-10 5.6411503e-10 1.166654602e-09 1.044020808e-09 7.02344504e-10 1.279930421e-09 1.438240753e-09 8.596909661e-10 1.224404164e-09 4.516267204e-10 1.353214298e-09 1.671785101e-09 1.23786732e-09 2.204498024e-09 1.876928091e-09 1.343568137e-09 1.782156165e-09 1.871153187e-09 1.579614108e-09 1.648515095e-09 1.360725998e-09 1.726770815e-09 1.275865313e-09 1.263359323e-09 1.389139955e-09 1.811754059e-09 1.454404042e-09 8.861274664e-10 8.041095617e-10 1.900368117e-10 6.18835272e-10 1.252933643e-09 1.208240731e-09 2.03194285e-09 2.021903078e-09 2.148763197e-09 2.326634652e-09 3.023908241e-09 2.333962705e-09 2.010403938e-09 2.0787839e-09 2.06762695e-09 3.348647216e-09 2.884177424e-09 3.153105125e-09 2.825876168e-09 1.784107243e-09 1.558150348e-09 2.040444852e-09 9.414846229e-10 1.501664626e-09 1.345258552e-09 1.341386357e-09 4.702638612e-10 5.48669875e-10 2.285027799e-10 2.898308026e-10 2.996759837e-10 4.122938795e-10 2.760039987e-09 3.468641671e-09 2.864230968e-09 3.708398698e-09 2.460182009e-09 3.831388946e-09 4.8165377e-09 6.275611183e-09 8.159193074e-09 5.641474873e-09 4.084479791e-09 4.712922304e-09 6.453590848e-09 5.680220239e-09 4.232753844e-09 6.051322721e-09 5.491006908e-09 3.502007501e-09 4.21258301e-09 3.701677296e-09 3.243104303e-09 4.933976674e-09 2.746338493e-09 3.220892806e-09 3.805031934e-09 3.634903008e-09 4.746740616e-09 3.666186134e-09 5.415848008e-09 5.238709173e-09 5.033138345e-09 5.617275755e-09 5.908384407e-09 8.576076245e-09 8.69741518e-09 6.100818897e-09 6.725882143e-09 4.476892885e-09 3.676996901e-09 3.125929587e-09 2.990549783e-09 2.733504007e-09 2.133494296e-09 2.44909626e-09 9.383249995e-10 1.744336012e-10 5.109825871e-10 7.788197273e-11 3.135539023e-10 1.573078974e-10 1.037870727e-09 2.714747868e-09 9.953906196e-10 1.823104402e-09 1.742574696e-09 2.859660719e-09 2.028317052e-09 1.589382137e-09 3.87932396e-09 3.289669288e-09 3.005268359e-09 1.889676294e-09 1.853175346e-09 1.752395589e-09 3.586926103e-09 3.117456539e-09 2.445418476e-09 1.918730026e-09 2.941749938e-09 3.315696986e-09 1.080714211e-09 1.46407237e-09 7.266705744e-10 4.597411036e-10 6.702022989e-10 6.931993881e-10 1.207812945e-09 8.238747321e-10 1.201538891e-09 2.170412635e-09 2.546799208e-09 1.384547593e-09 1.724376401e-09 1.725779481e-09 1.74104117e-09 1.673597385e-09 1.518319829e-09 1.915735831e-09 1.970095249e-09 1.48917724e-09 1.839067953e-09 1.407681215e-09 1.077362233e-09 9.665375476e-10 1.02789777e-09 1.112696181e-09 1.107366217e-09 9.310979898e-10 9.669815687e-10 7.526357032e-10 8.372917433e-10 1.447654253e-09 1.118160149e-09 9.09908265e-10 1.461024985e-09 8.905808614e-10 1.053557153e-09 9.817452283e-10 9.380933115e-10 1.256188726e-09 9.195566375e-10 1.223752065e-09 1.070101291e-09 7.441493652e-10 6.676283241e-10 1.422835372e-09 1.042019077e-09 7.748729508e-10 8.259343425e-10 9.610891004e-10 5.896744596e-10 1.273505301e-09 1.121720219e-09 9.572148419e-10 5.657032329e-10 7.059354243e-10 5.369133027e-10 9.259845767e-10 5.345657837e-10 1.009044635e-09 6.333728197e-10 6.196187579e-10 9.117462334e-10 1.128078576e-09 3.645894945e-10 5.361205592e-10 5.753462334e-10 7.549468715e-10 6.064763929e-10 2.492304192e-10 2.528247139e-10 3.199391574e-10 5.23495471e-10 9.431228234e-10 5.965483335e-10 7.047190788e-10 2.761049708e-10 6.080935022e-10 6.227151716e-10 7.722924851e-10 8.608341193e-10 7.548171845e-10 4.11484919e-10 5.363019661e-10 3.50801184e-10 5.050777132e-10 8.595719856e-10 4.413581726e-10 4.413729944e-10 3.143140839e-10 6.222922177e-10 3.522538949e-10 2.369704144e-10 2.941430989e-10 5.903003906e-10 5.905010108e-10 2.489293104e-10 3.134430601e-10 2.32121721e-10 4.609778971e-10 4.035849569e-10 3.294487989e-10 +3.362096353e-10 3.484781397e-10 5.683855342e-10 3.309633851e-10 3.660998938e-10 9.339004968e-11 4.505979524e-10 1.846868788e-10 3.888172693e-10 9.191824851e-10 3.78142899e-10 2.874494524e-10 8.056413724e-10 8.518144204e-10 3.575795077e-10 2.704610921e-10 3.919419951e-10 8.142465761e-10 2.957507965e-10 3.27087631e-10 5.698364369e-10 5.148800242e-10 6.268426279e-10 3.777455183e-10 1.837736055e-10 5.753463297e-10 2.074766972e-10 3.469914982e-10 1.872681143e-10 3.668666501e-10 1.874332912e-10 7.543861751e-10 5.089792345e-10 2.471111796e-10 2.806747056e-10 9.804125561e-10 9.457633709e-10 8.222787262e-10 8.348292179e-10 5.563346016e-10 6.968670769e-10 1.073106196e-09 1.486426663e-09 1.284145266e-09 1.138358773e-09 1.252485346e-09 1.184297388e-09 9.780540627e-10 5.290930689e-10 1.789345407e-09 7.18511838e-10 9.169545079e-10 7.017867394e-10 8.817069634e-10 1.091009162e-09 1.069354981e-09 7.494972667e-10 5.260296781e-10 9.293723099e-10 7.374155596e-10 8.494596992e-10 1.17381484e-09 1.167927394e-09 1.56916616e-09 7.918195391e-10 6.884549791e-10 1.604057122e-09 1.058269727e-09 8.697419021e-10 9.787510579e-10 5.133590224e-10 1.426467496e-09 7.275783205e-10 1.167749709e-09 8.237530113e-10 1.017890636e-09 7.69936176e-10 1.780507109e-09 1.010549488e-09 1.003429808e-09 2.429974915e-09 2.056428553e-09 1.517235783e-09 1.46539784e-09 8.330714255e-10 1.224762755e-09 2.042538615e-09 1.589033308e-09 1.095991544e-09 1.596069693e-09 1.673518249e-09 2.065105855e-09 7.909652265e-10 1.38912017e-09 9.706700354e-10 8.39057094e-10 1.166421979e-09 5.753459749e-10 6.416355789e-10 9.490241714e-10 1.231873984e-09 1.387467239e-09 2.291076131e-09 2.841558706e-09 2.619929422e-09 1.396953256e-09 2.676081697e-09 2.480172365e-09 2.825141176e-09 2.261097228e-09 1.401014458e-09 4.223874357e-09 4.166504844e-09 3.233706418e-09 2.995266151e-09 1.755308532e-09 1.116261484e-09 1.359237405e-09 2.095147615e-09 2.15966303e-09 2.040353004e-09 1.098757303e-09 8.471989819e-10 1.652800198e-10 2.522141156e-10 2.232795395e-10 2.586924911e-10 3.188961927e-10 1.00754313e-09 2.302064456e-09 2.695785399e-09 2.91537114e-09 3.380488038e-09 3.025611104e-09 4.199611466e-09 4.62090202e-09 6.200743341e-09 5.062301854e-09 6.009356055e-09 5.73385959e-09 7.578130491e-09 6.847578467e-09 5.233826719e-09 5.179659426e-09 4.688784614e-09 4.160298348e-09 5.276801184e-09 5.030267705e-09 4.434408673e-09 3.60170126e-09 4.742013852e-09 4.935391156e-09 4.650798495e-09 4.527131371e-09 6.111135858e-09 5.053808177e-09 4.029989554e-09 6.390293763e-09 6.708954118e-09 6.800956394e-09 5.892036814e-09 7.368868843e-09 7.397435669e-09 7.167204775e-09 6.160886214e-09 3.387693777e-09 2.503079104e-09 1.923808244e-09 3.126098703e-09 3.207606576e-09 2.543669396e-09 7.334777328e-10 8.182915174e-11 3.848866625e-10 1.68412926e-10 6.457272881e-11 1.112360537e-10 7.19263165e-10 1.07040177e-09 1.152105372e-09 2.477919162e-09 1.465055383e-09 2.063823848e-09 2.453614097e-09 2.51376456e-09 2.854589453e-09 2.650823819e-09 2.573033157e-09 2.094666309e-09 3.109364332e-09 2.814314359e-09 2.25653368e-09 2.604538975e-09 3.446767531e-09 1.980959372e-09 2.566672692e-09 3.048014973e-09 3.267292915e-09 1.280248629e-09 7.419773302e-10 7.418353926e-10 4.822955371e-10 5.975672674e-10 5.081878982e-10 1.569544402e-09 1.723415882e-09 1.532758986e-09 1.919751617e-09 1.522950853e-09 1.69429442e-09 1.291291584e-09 1.482666429e-09 1.331491147e-09 1.080829608e-09 2.75566504e-09 1.90984182e-09 2.080608567e-09 2.055115845e-09 1.664799482e-09 1.299311134e-09 1.564421433e-09 1.053735692e-09 6.980370741e-10 9.795469626e-10 1.455654914e-09 8.159502005e-10 8.644800304e-10 1.776863324e-09 1.017098733e-09 1.11888967e-09 9.703526818e-10 1.525256101e-09 1.328958079e-09 1.070650364e-09 1.197161016e-09 1.133419366e-09 1.34614415e-09 7.353729901e-10 1.254080121e-09 6.669883471e-10 9.23634461e-10 6.294046199e-10 6.827217261e-10 1.192404786e-09 1.409594638e-09 7.299361065e-10 1.193626339e-09 1.312288757e-09 7.152177436e-10 1.31820298e-09 9.63870552e-10 9.936085794e-10 8.639391081e-10 7.116016645e-10 1.079730626e-09 1.141163067e-09 1.320813784e-09 1.147852563e-09 8.595871204e-10 5.923473231e-10 5.461953811e-10 7.965829013e-10 4.075004085e-10 8.377380612e-10 5.203753944e-10 8.38502676e-10 4.023833003e-10 1.384132035e-10 1.031448181e-09 3.919627245e-10 3.912275278e-10 3.36834167e-10 2.832866198e-10 4.39576135e-10 9.670921424e-10 3.530017191e-10 4.318141085e-10 6.315822017e-10 7.490778808e-10 3.386960365e-10 3.232223011e-10 1.29189114e-09 5.848256249e-10 2.511619204e-10 2.783711558e-10 4.355412054e-10 2.619299174e-10 3.542089691e-10 4.962923453e-10 2.533932355e-10 2.958628355e-10 6.759393078e-10 4.451845671e-10 2.248196437e-10 3.106265682e-10 4.752386634e-10 2.765458548e-10 4.459040487e-10 2.94612702e-10 4.75913872e-10 +5.090454609e-10 2.870240607e-10 2.070645884e-10 3.554471105e-10 7.578818308e-10 3.52213442e-10 5.892280219e-10 2.604699355e-10 2.680626443e-10 3.711053973e-10 4.085619146e-10 3.890157352e-10 1.072647007e-10 6.58389085e-10 4.093309865e-10 2.788753794e-10 9.162681345e-10 5.577019711e-10 1.193010522e-09 8.113528317e-10 5.210236403e-10 2.559671112e-10 4.769348393e-10 3.261154554e-10 5.321195437e-10 5.622727785e-10 6.299215039e-10 4.816532387e-10 9.416861426e-10 3.345926883e-10 8.647014211e-10 3.98278087e-10 5.882964002e-10 6.155131884e-10 3.50717129e-10 4.937059842e-10 6.171298528e-10 7.970941932e-10 5.649347476e-10 6.41235533e-10 1.056402584e-09 8.604268725e-10 1.234435104e-09 7.325364507e-10 1.331919835e-09 7.554859192e-10 8.148277243e-10 3.870493674e-10 1.250578442e-09 1.990349026e-09 8.929854258e-10 6.971872638e-10 1.287322771e-09 7.140414578e-10 7.828967723e-10 8.797418868e-10 7.705647489e-10 9.283299947e-10 8.428131187e-10 1.209349513e-09 7.535057271e-10 8.152096266e-10 1.141675397e-09 1.460526768e-09 8.143260381e-10 6.895866813e-10 1.178469491e-09 5.913631766e-10 9.629555681e-10 6.707539237e-10 5.897192252e-10 1.593976437e-09 1.15590631e-09 9.149380625e-10 1.137011975e-09 1.188152204e-09 6.421050919e-10 4.894914566e-10 1.306250927e-09 1.854579054e-09 1.773059528e-09 1.982689561e-09 2.931450999e-09 2.399154521e-09 2.314201915e-09 1.136635031e-09 2.28369078e-09 1.039637534e-09 1.758808127e-09 1.361441376e-09 1.584060591e-09 1.103099014e-09 7.106899215e-10 1.992643208e-09 1.055978869e-09 1.600843495e-09 1.287075252e-09 8.280835733e-10 4.435369978e-10 4.286697733e-10 7.848115236e-10 1.264664771e-09 2.253118707e-09 2.366733123e-09 2.026765845e-09 2.919485574e-09 2.313752423e-09 2.115594308e-09 1.034114356e-09 2.270221915e-09 2.11451341e-09 2.823531021e-09 4.388822316e-09 4.027907211e-09 2.072358959e-09 1.86560958e-09 1.138963752e-09 1.371236359e-09 2.757518647e-09 1.95027379e-09 2.20078346e-09 1.048338206e-09 9.993514486e-10 2.984955638e-10 1.37894536e-10 1.94181068e-10 1.044292562e-10 1.236006993e-10 1.161185332e-09 1.571919631e-09 2.627401042e-09 3.467827345e-09 2.718850012e-09 2.518240484e-09 2.454511125e-09 4.212232545e-09 5.264289536e-09 7.984585532e-09 7.637432093e-09 7.75801114e-09 7.348375773e-09 6.937981081e-09 5.055203229e-09 5.038017281e-09 4.54311289e-09 5.503782303e-09 6.424665373e-09 6.565557093e-09 4.388371938e-09 4.833096878e-09 3.342212044e-09 3.966193745e-09 4.344471477e-09 4.845260368e-09 5.990427179e-09 6.576121109e-09 5.218736674e-09 5.560589159e-09 7.24426277e-09 8.322351558e-09 8.895812588e-09 8.396769954e-09 6.489356884e-09 5.693678579e-09 3.027616637e-09 2.817629008e-09 2.696900817e-09 3.073036494e-09 2.411010291e-09 2.087594934e-09 1.911499296e-09 1.34301634e-10 3.103183741e-10 6.406133376e-21 6.059128917e-11 0 4.607765251e-10 7.659382394e-10 1.697404386e-09 1.37810964e-09 2.097704822e-09 1.437423233e-09 2.263391021e-09 1.792082447e-09 2.393013947e-09 2.509675908e-09 3.58016399e-09 2.687457335e-09 2.265937935e-09 1.779994358e-09 1.984202867e-09 2.857780276e-09 3.361060729e-09 2.049600917e-09 3.109315904e-09 2.823942658e-09 2.936188304e-09 1.479179141e-09 7.878174019e-10 7.801195029e-10 8.850274745e-10 1.852560267e-10 6.238568371e-10 7.943508077e-10 1.676505552e-09 1.104885061e-09 1.556340867e-09 1.563003854e-09 1.234891242e-09 1.129690579e-09 1.97733187e-09 1.81036788e-09 1.355265301e-09 1.461690179e-09 2.586617293e-09 1.374842256e-09 2.171314421e-09 1.246574991e-09 1.697028474e-09 2.412142448e-09 8.043845774e-10 1.009818192e-09 1.173389712e-09 7.611619928e-10 3.741147508e-10 1.216050021e-09 1.118699903e-09 7.913222808e-10 6.107848032e-10 8.882847387e-10 1.134814412e-09 7.111044116e-10 1.056823154e-09 1.596061188e-09 6.498360534e-10 1.495723509e-09 1.360796165e-09 1.046975466e-09 1.115404867e-09 9.500888706e-10 5.005768622e-10 7.701570666e-10 7.372646387e-10 1.010611578e-09 1.007369994e-09 6.529270694e-10 9.289703691e-10 1.359461964e-09 1.391415354e-09 1.464217176e-09 1.425239783e-09 5.812102879e-10 1.630232796e-09 1.132405604e-09 7.0645521e-10 1.211938846e-09 1.147805558e-09 4.970114557e-10 8.036329439e-10 1.433223605e-09 9.955582518e-10 1.042325672e-09 9.235419993e-10 5.878907974e-10 8.35284253e-10 9.096041437e-10 3.956816454e-10 2.146660901e-10 5.732240739e-10 5.781092544e-10 5.751829194e-10 4.018970814e-10 5.694187662e-10 1.105361741e-09 1.680324598e-09 1.007707637e-09 2.765267948e-10 2.811193857e-10 2.807559263e-10 4.481945011e-10 7.906745675e-10 5.996568689e-10 5.481184993e-10 2.616954556e-10 2.339542241e-10 3.326930417e-10 2.485244349e-10 1.587719014e-10 3.108706643e-10 4.23546944e-10 3.125305306e-10 1.168781331e-10 6.426502769e-10 1.000202552e-09 4.688690801e-10 2.727393687e-10 7.682025879e-10 2.586396183e-10 1.937319733e-10 1.84801384e-10 +1.757109485e-10 3.515888811e-10 3.302242814e-10 4.506645039e-10 1.681005695e-10 5.668346899e-10 7.830743338e-10 2.43283898e-10 3.964465396e-10 3.356568483e-10 4.437714504e-10 3.535305336e-10 1.323795289e-10 7.011991537e-10 2.704321066e-10 3.704924325e-10 6.966288622e-11 5.814490743e-10 2.134768863e-10 4.072070696e-10 1.079294603e-09 2.397232817e-10 6.697948953e-10 7.0645067e-10 5.431909136e-10 4.510898184e-10 5.121707445e-10 1.901006408e-10 5.825343074e-10 2.880182563e-10 3.821201577e-10 5.059740712e-10 6.919335145e-10 4.157502545e-10 8.636590061e-10 4.02399685e-10 1.108631892e-09 5.286008061e-10 1.567529688e-09 1.012420338e-09 1.293241223e-09 2.135150568e-10 7.92747638e-10 1.129765014e-09 4.678765703e-10 8.2070779e-10 6.969012936e-10 1.187807533e-09 1.135496812e-09 1.317673248e-09 1.261850132e-09 1.375295969e-09 1.048207652e-09 8.13524317e-10 5.182294548e-10 4.821082497e-10 5.224982987e-10 7.4231239e-10 8.658522906e-10 8.227521817e-10 8.023229882e-10 1.103952248e-09 1.207005573e-09 9.102309687e-10 7.829803559e-10 1.149978326e-09 1.3352806e-09 1.003342159e-09 9.129642709e-10 1.303888234e-09 1.302896731e-09 1.181813095e-09 9.799234908e-10 6.247195747e-10 3.860317337e-10 9.366050965e-10 9.893693755e-10 1.121372921e-09 8.718275076e-10 2.789033362e-09 1.564989103e-09 2.282689446e-09 2.382481743e-09 2.273153527e-09 2.358355764e-09 1.665988865e-09 2.398889006e-09 1.207689365e-09 1.612090086e-09 1.691121232e-09 2.018900786e-09 1.08923185e-09 2.131063442e-09 1.784700108e-09 1.439338202e-09 1.901791333e-09 7.441898561e-10 4.280324985e-10 5.837888781e-10 9.354199792e-10 1.223468272e-09 7.192227619e-10 1.505569493e-09 3.392399866e-09 3.624397204e-09 3.020240903e-09 2.872883753e-09 2.805803951e-09 3.519755146e-09 3.193644577e-09 2.823557498e-09 1.944499783e-09 2.0648487e-09 4.210127446e-09 3.442712272e-09 2.555273455e-09 2.220061328e-09 1.628082969e-09 2.337546245e-09 9.742328726e-10 1.515245171e-09 1.664069455e-09 1.034008236e-09 3.096488703e-10 1.353824656e-13 1.429022606e-10 1.021959036e-10 4.018167422e-11 1.936179056e-15 1.024386719e-09 2.45462783e-09 3.256291222e-09 2.102075972e-09 2.900247858e-09 2.393994097e-09 3.402264558e-09 3.343688508e-09 4.506982169e-09 6.845999716e-09 7.321544343e-09 6.569594486e-09 8.140258597e-09 5.183991924e-09 5.865647711e-09 3.874738266e-09 5.087930532e-09 5.027757094e-09 5.074130721e-09 4.058053877e-09 5.562684054e-09 5.061804627e-09 6.20170662e-09 4.807145015e-09 6.583793163e-09 4.274343649e-09 6.726527896e-09 4.936002689e-09 6.171434197e-09 6.756868292e-09 7.906424513e-09 7.752145704e-09 6.493554068e-09 8.144778356e-09 4.397034123e-09 3.349450577e-09 2.747944513e-09 3.192254166e-09 2.589303942e-09 2.313096565e-09 2.298777672e-09 9.331380113e-10 4.795654221e-10 5.739189559e-11 1.569312222e-10 8.159800851e-11 1.265162982e-10 2.692953196e-10 8.862521649e-10 7.762999645e-10 1.070047331e-09 1.256195747e-09 1.327616032e-09 1.682541345e-09 2.904631032e-09 2.064229701e-09 2.372695727e-09 3.759580521e-09 3.132451812e-09 2.170138075e-09 2.938795217e-09 1.693486563e-09 2.749599009e-09 4.107757518e-09 1.901342422e-09 2.457550294e-09 2.394429421e-09 2.578135118e-09 1.360361159e-09 1.061214261e-09 1.094519723e-09 9.32192718e-10 7.139130106e-10 8.990957609e-10 7.906805394e-10 1.602511608e-09 1.040869686e-09 1.657516746e-09 1.575518083e-09 1.496036446e-09 1.20762181e-09 1.052748459e-09 1.228234405e-09 1.662571936e-09 1.042915485e-09 9.805105294e-10 2.246044882e-09 1.953009792e-09 1.887187913e-09 1.692435195e-09 1.553207908e-09 1.887935871e-09 1.534041818e-09 1.544573028e-09 5.409465331e-10 1.167671267e-09 1.056334251e-09 1.17803337e-09 7.530581527e-10 1.157427409e-09 1.058474118e-09 1.802297169e-09 1.578236257e-09 1.357553119e-09 1.024194486e-09 1.152333116e-09 1.701789673e-09 1.280753481e-09 3.996336164e-10 1.020439215e-09 1.112743909e-09 9.195446026e-10 1.439342398e-09 5.687073065e-10 9.095607905e-10 8.668687199e-10 1.273549717e-09 1.399112054e-09 1.382074306e-09 5.749748952e-10 1.051800942e-09 7.225513796e-10 6.487645479e-10 1.365243806e-09 1.195527066e-09 6.079905307e-10 8.991351956e-10 1.034735051e-09 1.002061833e-09 9.091371989e-10 1.209975867e-09 7.933941599e-10 1.27704777e-09 5.313597899e-10 3.885290491e-10 6.709216349e-10 5.627311187e-10 1.298207233e-09 3.487451875e-10 4.192340445e-10 5.531436816e-10 1.189154144e-09 4.785665445e-10 4.754459891e-10 2.370410736e-10 1.126167498e-09 3.042862118e-10 5.777994256e-10 8.69486756e-10 6.709065179e-10 6.942935615e-10 7.905450348e-10 2.240920003e-10 3.476399528e-10 3.113836525e-10 3.363022339e-10 7.145601231e-10 6.447804904e-10 6.799550357e-10 4.708075504e-10 3.373403225e-10 1.393297825e-10 8.606839063e-10 1.061395219e-09 5.371214299e-10 5.525897399e-10 5.048000994e-10 1.045124427e-10 3.71438523e-10 8.566445336e-10 5.120079888e-10 +2.711087819e-10 4.221145912e-10 2.101033398e-10 2.005841569e-10 7.021246507e-10 4.156966246e-10 3.660628567e-10 5.337034578e-10 5.014548025e-10 4.434631643e-10 2.941911658e-10 1.510001887e-10 3.402899803e-10 5.363420861e-10 7.381858096e-10 2.5594674e-10 8.141574297e-10 8.441240979e-10 4.664278204e-10 4.447685091e-10 7.033951883e-10 5.199124703e-10 5.810403751e-10 3.844621708e-10 2.617252423e-10 3.396454723e-10 2.248529956e-10 3.368790718e-10 2.378863277e-10 1.536056725e-10 2.181633819e-10 4.71287692e-10 7.128576001e-10 1.129085038e-09 4.859037726e-10 4.191780289e-10 4.941723446e-10 8.460258353e-10 6.5582284e-10 1.618867636e-09 7.684071651e-10 1.11386518e-09 1.055924948e-09 1.004525684e-09 7.66377426e-10 8.993765593e-10 7.859651963e-10 8.804614439e-10 1.304174836e-09 9.342292779e-10 7.103104932e-10 9.560968698e-10 1.035658496e-09 1.115500658e-09 9.573442869e-10 1.227659886e-09 1.025963039e-09 6.552828154e-10 8.421709081e-10 7.593710849e-10 8.656742355e-10 1.211979808e-09 6.212227662e-10 7.01567892e-10 7.105867939e-10 1.706876431e-09 7.090228398e-10 9.165818242e-10 1.141565634e-09 9.939770257e-10 6.521994127e-10 1.036985769e-09 1.132200148e-09 1.420418331e-09 9.341792627e-10 1.177417704e-09 1.0648001e-09 1.055316108e-09 1.033382017e-09 1.412736163e-09 8.869777741e-10 1.759305686e-09 2.204413475e-09 1.99458365e-09 1.915658865e-09 1.990021953e-09 1.947120808e-09 2.360745632e-09 1.473161014e-09 2.072206092e-09 1.22190165e-09 1.135454107e-09 1.154545581e-09 1.404855319e-09 1.607396439e-09 1.212442351e-09 6.923180486e-10 1.068439927e-09 2.13998261e-10 9.550802159e-10 1.026396244e-09 1.302732056e-09 1.378186699e-09 2.640942076e-09 2.59072289e-09 3.018737815e-09 2.463990939e-09 1.717138978e-09 4.011940738e-09 2.80358772e-09 1.779005075e-09 2.372563092e-09 2.268178262e-09 2.361485798e-09 2.28566243e-09 2.124003678e-09 2.344858778e-09 1.280935423e-09 1.197700987e-09 1.727255686e-09 1.114037776e-09 1.583212535e-09 1.07684768e-09 3.942060676e-10 2.618095291e-10 6.208146802e-11 1.111608307e-10 8.911048755e-15 2.222457829e-10 3.831300078e-10 9.783290261e-10 2.31673949e-09 2.737488183e-09 2.699382763e-09 3.035480414e-09 3.268250546e-09 2.571180548e-09 4.614193954e-09 5.02907704e-09 7.127344039e-09 7.279648165e-09 7.453039333e-09 7.009104328e-09 7.388173037e-09 7.556782506e-09 7.161268574e-09 5.960936818e-09 3.917530523e-09 6.701749878e-09 5.561725694e-09 5.291163023e-09 4.947939326e-09 4.758552392e-09 5.848603417e-09 5.346187432e-09 4.069133699e-09 6.457069558e-09 6.489777536e-09 6.808078592e-09 7.300765149e-09 6.819923164e-09 5.629452872e-09 3.829747587e-09 2.584208697e-09 3.415423326e-09 2.84096298e-09 2.932756244e-09 2.728105457e-09 2.368682271e-09 1.944284708e-09 7.820810412e-10 2.568196905e-14 6.94817869e-11 6.844669772e-10 6.897222073e-11 4.991099645e-10 4.357527284e-10 1.324501229e-09 1.253065881e-09 2.176102232e-09 1.716425563e-09 2.489455997e-09 2.56026029e-09 1.732679565e-09 2.02317058e-09 2.035587218e-09 3.205319868e-09 4.827788118e-09 1.812068822e-09 2.447997097e-09 2.462415038e-09 1.919644421e-09 2.151946403e-09 3.884692556e-09 3.313427363e-09 2.462352164e-09 2.333118634e-09 2.102893594e-09 1.127889881e-09 6.785055892e-10 4.949782078e-10 3.96845027e-10 6.258565948e-10 1.001603179e-09 1.085478974e-09 9.67078811e-10 1.459541652e-09 6.176598434e-10 1.501144875e-09 1.330515159e-09 1.538054118e-09 2.080734883e-09 1.249177058e-09 1.401664601e-09 1.660562865e-09 1.879092671e-09 2.140708813e-09 1.985312956e-09 2.563932136e-09 1.995161219e-09 1.136222549e-09 1.188723498e-09 5.383341037e-10 4.936011519e-10 1.086824786e-09 8.509906892e-10 8.289371648e-10 5.890453015e-10 1.111857128e-09 1.583214009e-09 7.797599136e-10 1.592209612e-09 7.45103607e-10 1.373384935e-09 5.844062699e-10 1.102171306e-09 1.433118638e-09 9.328020107e-10 1.29310728e-09 7.249324604e-10 1.05619295e-09 1.107244633e-09 1.409998836e-09 8.226084975e-10 7.658997322e-10 8.848557642e-10 8.840176402e-10 1.495790971e-09 9.029127008e-10 1.280057357e-09 7.744278693e-10 1.411652035e-09 6.781506002e-10 6.542993951e-10 1.151387177e-09 6.69369722e-10 8.000934127e-10 3.761124211e-10 1.257497547e-09 1.109331779e-09 6.527249672e-10 1.247221411e-09 1.109305005e-09 1.152234606e-09 5.566207863e-10 3.959193403e-10 3.022607424e-10 6.914709589e-10 5.42363583e-10 6.120649412e-10 6.691020171e-10 7.550696003e-10 4.662831406e-10 7.09863652e-10 6.638134235e-10 4.855854794e-10 4.197967886e-10 4.503998796e-10 5.614170515e-10 3.815558099e-10 1.723793178e-10 3.765495133e-10 9.510146878e-10 6.439274703e-10 4.111479367e-10 7.681611243e-10 4.501952263e-10 4.522069367e-10 6.807899122e-10 1.002842658e-09 1.873760329e-10 4.717847921e-10 4.405546588e-10 1.768439084e-10 3.518292211e-10 2.790611069e-10 4.637902738e-10 2.862164573e-10 3.370847216e-10 6.926720892e-10 +7.517640532e-10 2.183895259e-10 3.674871009e-10 6.11397448e-10 5.872646247e-10 6.914935405e-10 1.356387106e-10 6.751942104e-10 3.101317479e-10 4.151402913e-10 2.36430243e-10 2.834845815e-10 2.566008359e-10 3.574058736e-10 7.113668495e-10 4.451216419e-10 2.902442324e-10 2.726789957e-10 9.496600497e-10 5.515934996e-10 6.580162176e-10 6.019701447e-10 4.552207799e-10 4.087759898e-10 3.449978298e-10 6.544465197e-10 4.750011343e-10 8.08973302e-10 2.635848273e-10 3.640046051e-10 3.03893397e-10 3.793001985e-10 6.346323037e-10 5.059307853e-10 4.048855879e-10 1.138087236e-09 1.147951539e-09 1.182921145e-09 6.973130073e-10 9.29977397e-10 5.400713531e-10 6.890795314e-10 1.357613372e-09 8.835060637e-10 1.530412579e-09 9.619950997e-10 1.159325026e-09 1.518373526e-09 8.797431317e-10 1.219247422e-09 1.102341429e-09 8.410145503e-10 4.713646007e-10 9.855546174e-10 8.339403422e-10 8.143085854e-10 1.157718888e-09 7.7789912e-10 6.728101645e-10 6.983378562e-10 4.79202027e-10 1.259251501e-09 1.181428015e-09 8.337561488e-10 1.25875695e-09 2.053955467e-09 8.309888009e-10 1.142605636e-09 5.841735234e-10 1.261101327e-09 1.265861055e-09 1.493831185e-09 1.252539527e-09 1.032132402e-09 1.236886883e-09 9.462719306e-10 1.048203971e-09 9.073790652e-10 9.05125063e-10 1.87232168e-09 1.057853066e-09 7.314741134e-10 2.66705886e-09 2.344006713e-09 1.973373166e-09 1.88412499e-09 2.439059921e-09 2.144509378e-09 1.321350614e-09 1.710049644e-09 1.522677451e-09 1.1528909e-09 1.796667511e-09 1.831367815e-09 1.240715163e-09 1.180989348e-09 1.694054152e-09 7.763097832e-10 5.06717084e-10 7.579564147e-10 6.521375441e-10 5.252297197e-10 1.443243411e-09 2.094230539e-09 2.346592006e-09 2.882959275e-09 2.215895447e-09 2.224120299e-09 3.662227471e-09 2.632977516e-09 2.706919288e-09 3.027149672e-09 3.038993018e-09 4.89313662e-09 3.233992837e-09 2.349389683e-09 2.073485458e-09 2.043844111e-09 1.826324165e-09 1.564930763e-09 1.087141477e-09 1.48212731e-09 1.145623247e-09 9.661810118e-10 5.051469445e-10 4.453340107e-10 1.216614648e-10 1.765084123e-10 4.552083509e-10 7.397593653e-10 9.362703242e-10 1.777241957e-09 2.760322914e-09 2.556665023e-09 2.947819861e-09 2.862253114e-09 2.562338569e-09 3.035488233e-09 4.545932324e-09 3.84327561e-09 6.918140778e-09 6.910040167e-09 6.997768661e-09 7.019133668e-09 6.856657892e-09 5.099127609e-09 7.701601206e-09 7.392786365e-09 5.306124765e-09 5.580564258e-09 5.685146718e-09 5.154994686e-09 7.640085029e-09 4.560940016e-09 6.407468406e-09 7.424922109e-09 9.275531767e-09 6.274055609e-09 6.938993181e-09 5.475128962e-09 6.724539996e-09 4.972480481e-09 3.515292131e-09 3.234383543e-09 2.61173209e-09 3.72022015e-09 2.484099825e-09 2.736687492e-09 2.082162307e-09 1.092747084e-09 3.632030499e-10 1.48280964e-10 1.51787749e-10 4.088006897e-10 4.393710513e-10 3.455670895e-10 6.786779902e-10 1.198194947e-09 1.141620408e-09 1.817085499e-09 1.435323857e-09 1.292781793e-09 1.701977418e-09 2.768537921e-09 2.479873992e-09 2.884518427e-09 2.70991625e-09 1.909864028e-09 2.566342508e-09 2.115550457e-09 1.558725697e-09 2.218190837e-09 2.01097787e-09 1.580015497e-09 2.232186061e-09 2.301971794e-09 2.491876367e-09 1.490327067e-09 7.129258324e-10 9.134380947e-10 4.181736752e-10 6.368916208e-10 7.428876766e-10 7.588616995e-10 1.234790026e-09 1.435236441e-09 1.172162466e-09 1.630162297e-09 1.054116081e-09 1.267346829e-09 1.409388998e-09 2.003230308e-09 1.949369893e-09 2.321391863e-09 2.058525567e-09 1.453460646e-09 1.433642463e-09 1.428139589e-09 2.08145003e-09 2.178546317e-09 1.112597966e-09 6.776358319e-10 7.168677373e-10 8.226151508e-10 8.388444408e-10 9.55385058e-10 1.266842238e-09 7.936385689e-10 8.641985765e-10 1.272238378e-09 1.417169497e-09 6.973212121e-10 9.521762149e-10 1.103788422e-09 1.365251864e-09 1.39427671e-09 8.868371673e-10 9.632263885e-10 1.249041547e-09 9.419622516e-10 6.239604695e-10 4.499100064e-10 1.074065415e-09 1.240963281e-09 1.24910958e-09 9.132278669e-10 8.928421181e-10 9.039786395e-10 8.451248146e-10 1.08989276e-09 1.129177969e-09 1.096693964e-09 1.034419967e-09 9.356632093e-10 8.02322507e-10 7.818643594e-10 1.179069875e-09 9.462513585e-10 1.223581359e-09 1.239096408e-09 1.443867443e-09 9.45099812e-10 6.039151263e-10 4.239943705e-10 4.78013997e-10 5.859394902e-10 5.941702921e-10 5.757151077e-10 3.953979861e-10 5.951127615e-10 4.762839805e-10 1.377391333e-10 2.630564743e-10 6.115377254e-10 3.389653083e-10 4.896083952e-10 5.9635313e-10 3.417958102e-10 3.534858976e-10 4.186472309e-10 3.772217373e-10 4.994923973e-10 3.807517931e-10 4.687922856e-10 3.880719997e-10 9.13823101e-10 3.223686852e-10 6.798060045e-10 4.184370705e-10 2.341172776e-10 2.758153338e-10 2.310129965e-10 2.137983874e-10 4.056479381e-10 2.121351902e-10 1.05344092e-09 4.176770051e-10 2.118166063e-10 4.96969936e-10 4.414716562e-10 +4.944862451e-10 3.940679129e-10 5.10533225e-10 4.84672112e-10 5.01681466e-10 1.759929926e-10 6.267658965e-10 2.729401158e-10 4.312115893e-10 3.203121846e-10 3.438661985e-10 2.418489701e-10 5.140773088e-10 1.035736625e-10 8.88820292e-10 8.419699687e-10 6.330870416e-10 7.610163678e-10 6.853368709e-10 6.25565512e-10 4.430600693e-10 4.207883185e-10 6.685466106e-10 1.737196901e-10 5.171708798e-10 5.451905484e-10 3.073099699e-10 1.966058052e-10 4.210387035e-10 9.858187656e-10 2.885136169e-10 6.599720973e-10 3.951833599e-10 3.153613761e-10 6.809266081e-10 7.310304341e-10 7.249127725e-10 6.864752736e-10 1.347377855e-09 9.092845116e-10 9.513668797e-10 6.790432492e-10 1.493901109e-09 1.023262774e-09 7.369218205e-10 1.11342637e-09 1.053407124e-09 1.040196487e-09 1.239509185e-09 7.671088202e-10 7.430041378e-10 9.51264229e-10 9.343927264e-10 6.866220835e-10 5.945689764e-10 1.049832671e-09 3.97445691e-10 3.691605569e-10 1.176534599e-09 6.545663755e-10 7.390042541e-10 1.220883113e-09 2.13405561e-09 8.81315985e-10 1.416406687e-09 1.316443095e-09 1.521294016e-09 4.671091075e-10 1.526536996e-09 1.029538604e-09 1.0983175e-09 8.148732087e-10 6.896828564e-10 1.361166116e-09 4.07815588e-10 1.182838084e-09 1.082765728e-09 4.693043878e-10 9.398047735e-10 1.335018244e-09 1.964747279e-09 2.283218936e-09 1.61192679e-09 2.203288569e-09 8.889678807e-10 1.9076934e-09 1.87747971e-09 1.247491579e-09 1.467139255e-09 1.728987088e-09 1.516606639e-09 1.811498234e-09 1.539197412e-09 1.272707465e-09 2.301538139e-09 1.280256596e-09 9.771596044e-10 1.08304404e-09 3.781272449e-10 3.553155774e-10 9.466574e-10 1.166110366e-09 6.001408261e-10 2.454040302e-09 2.785475841e-09 2.646946674e-09 2.867639536e-09 2.788204623e-09 1.635958212e-09 2.861141482e-09 2.080252856e-09 2.704121547e-09 2.455923956e-09 3.240595554e-09 2.519052654e-09 2.04041303e-09 1.461224379e-09 2.419764294e-09 1.808919923e-09 1.691465118e-09 2.424519001e-09 1.579371216e-09 1.158090358e-09 1.93477433e-09 5.186231883e-10 3.264848798e-10 3.208722233e-10 1.875027086e-10 0 1.127802934e-11 8.235567247e-10 1.852044195e-09 1.31750184e-09 2.17370897e-09 3.203185126e-09 3.812799929e-09 2.885323049e-09 2.250519024e-09 2.94567214e-09 3.936271551e-09 5.43698111e-09 4.68726923e-09 4.8833463e-09 5.986457643e-09 7.83348227e-09 6.669482151e-09 6.122166827e-09 5.837457617e-09 6.513651267e-09 5.940494922e-09 7.401343248e-09 6.493979783e-09 6.984906375e-09 5.826718393e-09 7.518681089e-09 5.661105197e-09 8.199622119e-09 6.316932996e-09 5.495041666e-09 5.914848387e-09 6.108375097e-09 3.678611173e-09 3.01026422e-09 2.733039714e-09 3.726968349e-09 3.311012195e-09 3.239274788e-09 2.409585867e-09 1.547308739e-09 3.591488605e-10 1.598168355e-10 3.457079151e-10 2.549037103e-10 7.917872544e-11 1.987953918e-10 4.809727723e-10 9.985323058e-10 2.02296288e-09 2.099429509e-09 1.179576151e-09 1.944780176e-09 2.315664299e-09 1.080297636e-09 3.143831706e-09 2.499785196e-09 3.955336935e-09 3.776535645e-09 3.063264683e-09 3.129094085e-09 2.815008821e-09 2.117030885e-09 1.976634991e-09 2.532046188e-09 1.670907505e-09 3.125089026e-09 3.560510241e-09 2.589466201e-09 8.052004894e-10 7.713759449e-10 9.720209105e-10 3.731956153e-10 5.5539967e-10 5.761536706e-10 8.172731036e-10 1.660881245e-09 1.163004394e-09 1.488532074e-09 2.603447223e-09 2.148782933e-09 1.332356153e-09 8.162011115e-10 8.20573873e-10 1.990783507e-09 1.911970135e-09 1.654311856e-09 1.544338831e-09 1.372206978e-09 1.392586981e-09 2.164666226e-09 1.673611824e-09 1.360824494e-09 7.015479287e-10 1.031968553e-09 1.240766578e-09 1.825961523e-09 1.302612305e-09 1.105911281e-09 1.055828649e-09 1.017755424e-09 1.907124582e-09 8.836688279e-10 7.391354926e-10 1.268038864e-09 1.093600374e-09 1.376700973e-09 1.036184541e-09 1.531854388e-09 1.523893897e-09 7.432266804e-10 9.881472436e-10 6.636698404e-10 7.650196325e-10 3.984977581e-10 3.582094099e-10 8.665678363e-10 7.228918492e-10 1.197399378e-09 8.64186544e-10 1.057595113e-09 1.267389965e-09 8.740668124e-10 7.020625555e-10 1.148511649e-09 8.950440427e-10 6.045934211e-10 4.412396652e-10 1.273900747e-09 1.099385684e-09 9.629954332e-10 8.903804927e-10 8.736696594e-10 9.928959193e-10 5.341034554e-10 3.636376343e-10 7.983374047e-10 2.900300464e-10 7.679797831e-10 6.958513959e-10 5.971253416e-11 2.426601274e-10 2.781152186e-10 4.897368004e-10 3.62102179e-10 7.578188866e-10 4.68972663e-10 8.373204676e-10 5.428927539e-10 4.501305731e-10 6.970498767e-10 3.701442014e-10 7.71166081e-10 2.874888962e-10 5.963275931e-10 6.017237133e-10 2.476680371e-10 5.009823224e-10 6.967338194e-10 2.397751445e-10 4.013147357e-10 6.146942393e-10 4.182650744e-10 4.135788946e-10 3.371216121e-10 2.841332291e-10 2.772952972e-10 3.332643989e-10 2.161348552e-10 3.858663082e-10 3.457429728e-10 5.018921053e-10 +4.824514098e-10 4.201062391e-10 3.64638934e-10 2.099631537e-10 2.709385491e-10 1.836963212e-10 5.528651707e-10 3.343307687e-10 6.54528078e-10 3.815308756e-10 1.876091734e-10 4.038288145e-10 6.470088068e-10 5.595896535e-10 5.381845285e-10 5.248423883e-10 4.410054194e-10 5.792480071e-10 4.476244593e-10 1.918918665e-10 7.097054195e-10 3.508906246e-10 4.319079122e-10 5.694163892e-10 4.119594818e-10 6.070256488e-10 4.896686855e-10 4.151202878e-10 6.556321668e-10 3.466246521e-10 4.977156522e-10 3.9836858e-10 8.594287597e-10 4.734189587e-10 3.646206107e-10 8.762171053e-10 5.354495888e-10 5.506891985e-10 8.694368989e-10 6.42863574e-10 1.074361168e-09 5.866882746e-10 9.319663104e-10 7.08778958e-10 9.70957185e-10 8.079619306e-10 4.370142104e-10 9.968925788e-10 8.813994792e-10 1.066612587e-09 1.287038831e-09 6.886919833e-10 1.326898798e-09 9.089875201e-10 1.190721048e-09 6.530753696e-10 9.822738096e-10 7.832608728e-10 1.534014463e-09 8.502692327e-10 7.892579829e-10 1.558183188e-09 9.296699379e-10 1.371978017e-09 9.619656904e-10 1.164278012e-09 6.227568292e-10 1.209122468e-09 6.183596097e-10 9.785423044e-10 9.086188732e-10 1.164787794e-09 1.054336333e-09 6.522217286e-10 7.619861533e-10 9.96274286e-10 7.696572941e-10 8.813406119e-10 1.194290351e-09 1.21574647e-09 2.340415848e-09 1.936617381e-09 1.925219542e-09 1.600784923e-09 2.098139525e-09 1.118737011e-09 1.49102459e-09 1.540381445e-09 1.599627093e-09 1.744918897e-09 1.334749147e-09 1.569579507e-09 1.398477395e-09 2.046992627e-09 1.175009714e-09 1.013573609e-09 1.057340069e-09 7.274630318e-10 7.860423047e-10 5.85679031e-10 1.062733214e-09 1.167091592e-09 9.829762637e-10 1.674445753e-09 2.777559837e-09 2.898663807e-09 2.621392427e-09 1.531610543e-09 3.017302679e-09 9.590061923e-10 2.023563476e-09 2.222365666e-09 2.901574942e-09 2.555682779e-09 3.496253608e-09 2.362337628e-09 2.287352588e-09 1.709292503e-09 2.006232322e-09 7.764452465e-10 1.689618518e-09 1.655355894e-09 1.420622428e-09 1.508521539e-09 6.556784627e-10 2.207905552e-10 1.261592093e-10 1.17247745e-10 9.623389662e-11 7.650335584e-11 2.843190688e-10 5.46107184e-10 1.45628739e-09 1.941462062e-09 1.623455171e-09 2.584891292e-09 2.652089461e-09 2.663771869e-09 3.689442676e-09 2.328763694e-09 3.304631491e-09 3.668227687e-09 4.736049151e-09 5.457809921e-09 4.270365261e-09 7.080172325e-09 6.434959235e-09 6.807769023e-09 5.833174346e-09 6.762247235e-09 6.632851914e-09 6.857478072e-09 5.705446548e-09 6.813724338e-09 7.476145079e-09 5.757059779e-09 7.549269135e-09 5.970664174e-09 3.832895904e-09 3.360161671e-09 4.52449543e-09 3.049139389e-09 3.066914853e-09 2.792322004e-09 3.364650794e-09 3.002935489e-09 2.095694682e-09 5.969097842e-10 6.775923465e-10 1.358464384e-10 2.239772401e-10 1.938505182e-10 1.426032793e-10 3.468829155e-10 1.324517635e-10 7.266577995e-10 1.254747652e-09 1.820181384e-09 2.639126287e-09 1.740662882e-09 1.336865683e-09 2.349742246e-09 1.378463103e-09 1.808449238e-09 3.018168895e-09 3.384686627e-09 4.053708077e-09 1.518250662e-09 2.449590634e-09 2.404464655e-09 1.726725908e-09 2.728952596e-09 2.646742956e-09 1.597692879e-09 2.935558406e-09 2.346144511e-09 2.355996857e-09 8.4992587e-10 8.91031999e-10 9.587187044e-10 1.736576683e-10 3.276234522e-10 3.718787916e-10 7.817927381e-10 1.081272203e-09 1.895582839e-09 1.395202283e-09 1.174290668e-09 1.638248885e-09 1.861634963e-09 2.123784179e-09 1.24510748e-09 2.325000765e-09 9.156955422e-10 1.381565291e-09 1.774728984e-09 2.231297275e-09 2.170936507e-09 1.593643786e-09 1.089034998e-09 1.479236919e-09 7.854919466e-10 1.121291582e-09 6.973060833e-10 5.9526602e-10 9.641549292e-10 7.003401904e-10 1.284518597e-09 9.041266724e-10 1.40643953e-09 1.138466674e-09 1.48101096e-09 5.925149683e-10 1.164530536e-09 9.853465986e-10 8.38071727e-10 1.197567209e-09 1.009542832e-09 7.2101821e-10 7.53690037e-10 7.827188849e-10 1.076888947e-09 1.099818216e-09 5.90828164e-10 9.598236267e-10 7.672273711e-10 6.685935515e-10 1.034401063e-09 9.395399546e-10 1.069231299e-09 1.117670789e-09 8.080673937e-10 1.22515926e-09 1.292009688e-09 7.741394176e-10 7.617778657e-10 6.562781851e-10 5.87326201e-10 1.369165394e-09 8.830494393e-10 7.287189058e-10 1.419851579e-09 8.619156945e-10 5.052951613e-10 4.543221733e-10 8.343319244e-10 5.532057649e-10 5.45705009e-10 2.563851105e-10 8.094662804e-10 9.674756162e-10 3.565147112e-10 2.409288068e-10 6.445542948e-10 8.150153691e-10 9.213676143e-10 5.784969734e-10 5.332451418e-10 7.588592466e-10 3.414813417e-10 3.551913499e-10 1.871993664e-10 3.410766896e-10 5.033158158e-10 2.314770567e-10 4.446624552e-10 3.900341962e-10 3.419677763e-10 3.359588279e-10 6.943953665e-10 7.390470251e-10 4.115073117e-10 3.503954314e-10 6.518794204e-10 1.479879843e-10 6.763831553e-10 5.237923695e-10 2.451398954e-10 1.323658798e-10 2.841187964e-10 +1.524192911e-10 3.290247174e-10 7.892286066e-10 1.188071603e-09 3.394690631e-10 1.174955905e-10 4.185299706e-10 3.532796903e-10 1.600245569e-10 3.8139873e-10 5.887076449e-10 6.142084802e-10 6.961199671e-10 5.819344345e-10 6.738858199e-10 5.287433046e-10 4.138991037e-10 6.213842738e-10 8.019603058e-10 3.186700703e-10 4.273404759e-10 5.109268799e-10 2.411132223e-10 4.427012606e-10 4.641122409e-10 4.169286787e-10 6.524009483e-10 4.465902609e-10 8.405167916e-10 8.321675168e-10 6.939620136e-10 7.54866811e-10 5.315343478e-10 1.016726251e-09 3.082945089e-10 1.045114291e-09 1.026268879e-09 5.43589849e-10 5.65603744e-10 1.040828078e-09 8.930982663e-10 7.756794058e-10 1.072214127e-09 1.498538837e-09 1.080336933e-09 6.15777982e-10 7.271092162e-10 8.25917147e-10 8.893169272e-10 1.019355949e-09 5.4294755e-10 8.861439784e-10 9.039893512e-10 4.762167648e-10 8.179193491e-10 7.14218864e-10 6.23684745e-10 6.372367611e-10 8.777701455e-10 1.054713983e-09 8.575385502e-10 5.937809371e-10 1.155600327e-09 1.131160681e-09 8.335924951e-10 1.338484484e-09 8.263825962e-10 8.483005719e-10 1.080605591e-09 1.227701396e-09 6.539524082e-10 7.653257907e-10 8.018050008e-10 9.750491945e-10 1.072468176e-09 1.391450882e-09 1.177032356e-09 9.496913668e-10 7.80867573e-10 1.662364203e-09 9.876126317e-10 1.748306691e-09 2.485993689e-09 2.020718409e-09 1.648465657e-09 2.017353862e-09 1.153949407e-09 1.965430988e-09 1.524627611e-09 1.196130044e-09 1.064186745e-09 1.02919935e-09 1.45869879e-09 1.789959294e-09 1.24538066e-09 6.34118306e-10 1.395231818e-09 8.272022464e-10 6.047637515e-10 7.643929141e-10 8.407281233e-10 1.080670837e-09 5.517760968e-10 2.344854607e-09 2.905080813e-09 2.661797989e-09 1.951709786e-09 3.943951577e-09 1.779967672e-09 2.442404721e-09 1.232694838e-09 2.627176754e-09 2.259093506e-09 2.185993714e-09 3.937586678e-09 2.178406604e-09 2.497239912e-09 2.113373383e-09 2.259405816e-09 1.373859632e-09 1.321397969e-09 1.7797988e-09 1.866835275e-09 1.110764144e-09 1.533486654e-09 6.799298301e-10 1.205667662e-10 1.810481545e-10 1.485470646e-10 5.6458082e-11 9.867671086e-11 2.038240551e-10 8.762097396e-10 2.287637451e-09 2.430931683e-09 2.386728867e-09 2.495457938e-09 2.647547686e-09 2.178275336e-09 2.110318531e-09 2.488254387e-09 4.054271856e-09 5.821471014e-09 5.388150363e-09 4.412972999e-09 7.25836e-09 6.691583507e-09 5.527460512e-09 7.449108785e-09 5.937334415e-09 4.356732525e-09 6.086776441e-09 6.601734311e-09 5.43516211e-09 5.496736891e-09 5.385654807e-09 4.128709377e-09 4.880612321e-09 3.475237218e-09 3.286749837e-09 2.465713165e-09 1.57626967e-09 2.951352697e-09 2.483018715e-09 3.003673067e-09 2.545368542e-09 9.54509026e-10 1.793256571e-10 9.883337639e-10 1.666592846e-17 5.723542104e-11 1.067379125e-10 5.698577162e-11 4.697657216e-10 7.573639568e-10 1.250015679e-09 7.767450786e-10 1.657637859e-09 1.333034648e-09 2.173919199e-09 9.394738393e-10 1.668412459e-09 2.171844229e-09 1.881321749e-09 2.71928092e-09 3.515402742e-09 2.659057942e-09 2.57950944e-09 2.431391125e-09 1.787958002e-09 1.53683284e-09 2.955909756e-09 3.414197713e-09 3.016354965e-09 2.002326851e-09 3.601088846e-09 3.030002575e-09 1.275009311e-09 3.300430419e-10 4.644958147e-10 5.642517137e-10 6.93124239e-10 5.955316318e-10 1.582972399e-09 1.102948726e-09 1.468192467e-09 1.54381036e-09 1.55553422e-09 1.887990358e-09 1.668163516e-09 1.428166159e-09 1.238521077e-09 1.382733632e-09 1.403985039e-09 2.62718332e-09 1.08963585e-09 1.898755324e-09 1.565306402e-09 1.81646e-09 1.247858264e-09 1.316882598e-09 5.891672588e-10 7.860117556e-10 6.39893083e-10 1.318615121e-09 6.186963776e-10 1.157238577e-09 1.117673923e-09 1.136645741e-09 6.255893423e-10 1.174029591e-09 8.979749475e-10 7.071477923e-10 1.261908112e-09 1.267940676e-09 1.263217834e-09 7.237252256e-10 6.10918841e-10 1.136045064e-09 1.270203085e-09 1.491737902e-09 4.966847967e-10 9.387853401e-10 8.832852843e-10 9.750524453e-10 1.060013807e-09 1.516569951e-09 8.927571077e-10 8.728134617e-10 8.514468996e-10 9.707769277e-10 9.01655572e-10 9.624431521e-10 1.534134764e-09 1.278566563e-09 9.24644943e-10 4.693725408e-10 8.195868762e-10 7.188700465e-10 4.586012044e-10 1.768816059e-09 1.296488926e-09 6.144354718e-10 1.461838451e-09 5.561910364e-10 6.177640477e-10 7.66753723e-10 6.411595036e-10 9.371072044e-10 4.106340754e-10 4.006910396e-10 1.930874949e-10 4.65141809e-10 2.321290547e-10 3.166085075e-10 3.690244787e-10 5.961122489e-10 2.571567523e-10 3.175177611e-10 6.557949747e-10 4.470152888e-10 4.995021129e-10 4.21317784e-10 3.370758621e-10 7.484186088e-10 9.627866881e-10 4.411358912e-10 4.737510515e-10 3.266868365e-10 2.672192068e-10 2.984904212e-10 1.817405081e-10 4.791330995e-10 2.420981567e-10 2.275273452e-10 4.140100625e-10 4.275787682e-10 6.245982936e-10 4.290229984e-10 1.669870523e-10 +2.912968123e-10 4.054604637e-10 5.602464921e-10 3.960496777e-10 4.036265921e-10 7.232444958e-10 3.322799216e-10 9.346427367e-10 4.331515641e-10 3.828686694e-10 3.073058833e-10 4.618222981e-10 1.855151069e-10 7.566479061e-10 8.231330185e-10 8.232974266e-10 8.013719734e-10 2.884175696e-10 4.088865342e-10 3.529815329e-10 6.558040584e-10 8.001441399e-10 2.238106531e-10 3.324440642e-10 5.208076086e-10 1.631145529e-10 2.303522469e-10 1.216387164e-09 2.107040915e-10 2.677223259e-10 3.572153352e-10 2.766484764e-10 1.819728972e-10 9.44669507e-10 6.099802195e-10 1.079849719e-09 9.039889022e-10 1.815529261e-09 7.905586993e-10 9.093545258e-10 1.253956801e-09 1.045149837e-09 8.158937794e-10 5.967580385e-10 5.558749028e-10 8.308559322e-10 8.297051764e-10 1.038549405e-09 1.256462461e-09 1.011891611e-09 9.760360578e-10 8.313434926e-10 6.974445506e-10 3.971150709e-10 8.376753139e-10 6.051032468e-10 9.902392966e-10 1.034440894e-09 1.053983025e-09 4.605318126e-10 8.098211623e-10 1.02231791e-09 6.569108702e-10 1.118626022e-09 1.541957946e-09 3.518176664e-10 9.132512713e-10 9.357684805e-10 1.290250128e-09 1.267175856e-09 1.323229334e-09 6.066734544e-10 8.694655758e-10 1.177057706e-09 4.453828433e-10 1.536116581e-09 8.958123361e-10 1.099719453e-09 9.258592613e-10 8.163396905e-10 1.329654821e-09 1.296761387e-09 1.832430438e-09 1.692091688e-09 1.885428207e-09 1.634153637e-09 8.558251075e-10 1.935870625e-09 1.330371154e-09 1.264650157e-09 1.590957427e-09 1.124561679e-09 1.493648079e-09 1.060504899e-09 6.388328887e-10 1.295940169e-09 1.210783552e-09 8.313156052e-10 9.325807625e-10 4.3614939e-10 3.445810467e-10 1.007041583e-09 5.044012405e-10 1.702432116e-09 1.750615063e-09 2.583606162e-09 2.743095633e-09 2.771227826e-09 3.005138684e-09 2.181566147e-09 2.496964868e-09 3.026382941e-09 2.465112553e-09 2.168864713e-09 3.005948363e-09 3.801052798e-09 1.891093917e-09 1.808125344e-09 2.407719212e-09 1.565612684e-09 1.822448402e-09 1.078529654e-09 1.118645555e-09 1.388130505e-09 1.583611184e-09 9.160541821e-10 2.357355354e-10 2.987953614e-10 1.938984313e-10 1.624917468e-10 3.383138704e-14 1.684058223e-10 6.123151591e-10 1.300783693e-09 1.737864014e-09 3.638483606e-09 2.596666183e-09 2.440845421e-09 2.620995202e-09 3.595599653e-09 2.738295278e-09 1.697331388e-09 2.704814789e-09 2.888071916e-09 3.785486866e-09 5.37315549e-09 4.914187862e-09 4.819103352e-09 5.758804785e-09 4.847136809e-09 5.002222566e-09 5.918981253e-09 5.796300593e-09 4.293618418e-09 4.904114276e-09 5.639314335e-09 3.747388644e-09 3.747453294e-09 2.080145551e-09 2.150216589e-09 3.563245478e-09 2.863506864e-09 2.570908391e-09 2.788796649e-09 1.814466113e-09 1.969508829e-09 1.234839679e-09 7.449284544e-10 2.806314426e-10 3.327064554e-10 1.450224383e-10 7.488052302e-11 8.164232116e-11 2.265923284e-10 9.765067285e-10 1.061115039e-09 6.367111533e-10 2.155741431e-09 1.795843826e-09 1.450698631e-09 2.458133744e-09 1.873877786e-09 2.624441059e-09 1.831175906e-09 4.509990024e-09 4.305463178e-09 2.921974491e-09 1.246611475e-09 2.568426005e-09 2.313827252e-09 2.174037058e-09 2.296354215e-09 1.38384318e-09 1.643379511e-09 3.841577586e-09 2.650741022e-09 1.665283315e-09 1.122109742e-09 5.403491092e-10 6.820178195e-10 2.018472328e-10 7.427927915e-10 1.307117225e-09 1.377950156e-09 1.656344854e-09 5.82487505e-10 1.716860275e-09 1.330451315e-09 1.416340006e-09 1.847482293e-09 1.038156664e-09 1.13906905e-09 1.864017911e-09 1.505261933e-09 1.687639542e-09 1.594796007e-09 1.718336131e-09 1.585642303e-09 1.320840027e-09 8.596652538e-10 1.214950846e-09 8.151884051e-10 8.389774243e-10 7.731880032e-10 8.982750956e-10 1.371424184e-09 6.951909423e-10 8.702746127e-10 1.036093121e-09 5.71519462e-10 1.282302687e-09 1.188806151e-09 9.842121802e-10 7.297305378e-10 1.076028549e-09 9.44545843e-10 9.737610737e-10 1.614559099e-09 1.041554089e-09 1.0231341e-09 8.953040297e-10 3.68202539e-10 5.243017548e-10 8.087914064e-10 1.303572741e-09 3.187218475e-10 7.67387876e-10 8.686633795e-10 4.711678134e-10 1.031590966e-09 5.815999911e-10 1.008571522e-09 7.425018901e-10 1.285808205e-09 1.341363351e-09 8.094652624e-10 8.186275005e-10 4.226489372e-10 5.515114718e-10 7.597066204e-10 9.113309557e-10 1.22799522e-09 7.854105864e-10 8.761073973e-10 4.379472304e-10 8.242682786e-10 4.836866134e-10 2.917692031e-10 3.834107753e-10 8.713070849e-10 4.572032365e-10 4.700491592e-10 2.827451988e-10 3.096360694e-10 4.205833148e-10 3.763519894e-10 5.758835367e-10 5.749341747e-10 2.699919316e-10 7.904803539e-10 4.05511523e-10 3.503575972e-10 7.410547129e-10 6.507361921e-10 7.158468101e-10 8.067172227e-10 3.228303578e-10 5.415437298e-10 9.691725783e-10 8.211402057e-10 7.266839327e-10 3.280807599e-10 5.291591234e-10 1.856744207e-10 6.731692424e-10 4.034305061e-10 2.93467113e-10 6.867637516e-10 4.647075976e-12 6.658150351e-10 +1.8866813e-10 4.306993194e-10 3.515041672e-10 6.467630878e-10 4.744122882e-10 3.824732221e-10 3.074451391e-10 7.989382014e-10 2.914269616e-10 3.136793054e-10 3.582424879e-10 3.063543936e-10 8.142211037e-10 5.96030698e-10 4.018594114e-10 2.335384319e-10 5.13255809e-10 2.6263263e-10 5.866148185e-10 4.753459617e-10 6.222853219e-10 3.378119552e-10 1.476131163e-10 5.643664086e-10 6.593082567e-10 4.992356326e-10 2.143431309e-10 2.420080966e-10 5.56179383e-10 4.416373304e-10 8.476189577e-10 2.155423949e-10 9.039809445e-10 6.988909226e-10 6.040391934e-10 6.399538951e-10 1.222842216e-09 5.855261683e-10 1.137467689e-09 7.572614793e-10 7.747587309e-10 1.075441819e-09 1.017734961e-09 5.430179288e-10 6.628021054e-10 5.792446946e-10 7.072495969e-10 9.518375124e-10 8.151338344e-10 1.091744079e-09 1.765165502e-09 4.272353247e-10 1.149219067e-09 1.236978651e-09 1.134585836e-09 5.637623813e-10 7.312708928e-10 5.712040585e-10 8.671414377e-10 5.49449525e-10 9.967290481e-10 9.589314883e-10 1.015893412e-09 7.352388453e-10 9.847025387e-10 1.033604308e-09 8.991385443e-10 8.339426453e-10 1.262876551e-09 7.400026023e-10 6.73054842e-10 1.013724889e-09 1.253855032e-09 8.629491057e-10 9.536950228e-10 9.871501355e-10 1.27590444e-09 5.753284986e-10 8.508920747e-10 1.333977831e-09 1.217946397e-09 1.404495522e-09 2.810006706e-09 1.583909559e-09 1.205397484e-09 3.046519372e-09 2.139327145e-09 1.478140253e-09 1.952988858e-09 1.614062632e-09 9.066756011e-10 1.653292579e-09 1.612938369e-09 8.423382467e-10 1.270188269e-09 1.836793317e-09 1.108057523e-09 7.291311878e-10 6.440486444e-10 7.853447593e-10 4.236141678e-10 9.725079481e-10 7.966843332e-10 1.165893063e-09 2.382095545e-09 2.155441098e-09 2.593088085e-09 3.768706984e-09 2.944269915e-09 1.751734897e-09 2.481916221e-09 2.406445871e-09 2.106200682e-09 2.305271855e-09 2.871390605e-09 2.345432445e-09 3.783624686e-09 1.320275438e-09 2.674203349e-09 1.571554931e-09 1.531187386e-09 1.002713433e-09 2.306041491e-09 1.272708417e-09 1.234201146e-09 1.105281104e-09 3.139858945e-10 1.176576014e-10 4.711258009e-10 2.694904941e-17 9.722915436e-11 0 3.062234634e-10 9.712977649e-10 7.295658188e-10 1.97518895e-09 2.67951008e-09 2.878846404e-09 3.332069412e-09 3.245667592e-09 3.348178636e-09 2.061150366e-09 2.475146583e-09 2.80522808e-09 3.029677625e-09 4.332529371e-09 2.966468908e-09 4.1508277e-09 3.933643116e-09 2.599346049e-09 3.685886564e-09 3.913314225e-09 3.551712037e-09 3.153885234e-09 2.255903746e-09 3.686359326e-09 2.043183795e-09 2.699780457e-09 1.915414811e-09 2.079952352e-09 2.097227729e-09 2.159593851e-09 2.666195915e-09 1.330540313e-09 1.158823887e-09 1.0932504e-09 4.237526545e-10 4.732330066e-14 6.456925202e-15 2.419436229e-10 7.784834995e-11 1.725682385e-10 1.886110071e-10 7.058429948e-10 1.314478992e-09 6.646452602e-10 1.365826425e-09 1.577832024e-09 1.180759242e-09 1.551798625e-09 1.763556187e-09 2.285616705e-09 2.138782048e-09 3.209643098e-09 3.291224487e-09 3.800478129e-09 1.22060794e-09 2.397619572e-09 1.994367623e-09 2.740835979e-09 1.259070686e-09 1.972661499e-09 9.111274046e-10 1.359617915e-09 1.815842391e-09 2.04058416e-09 1.236209565e-09 6.090374362e-10 9.060229102e-10 4.567893788e-10 6.573543067e-10 6.562532195e-10 1.550291628e-09 1.291930236e-09 1.491898012e-09 1.426900214e-09 1.244770861e-09 1.288360755e-09 1.206013398e-09 1.531650992e-09 1.938185596e-09 2.158799629e-09 1.69750811e-09 1.409841699e-09 2.367677985e-09 1.254348063e-09 1.75841618e-09 1.144731614e-09 1.475197955e-09 1.062139506e-09 1.183853741e-09 7.560695851e-10 6.78310671e-10 5.990823272e-10 6.641171615e-10 1.381169406e-09 1.413690717e-09 1.028354836e-09 8.487010159e-10 1.103288223e-09 1.274177528e-09 5.271548111e-10 1.343197122e-09 1.020756508e-09 5.848215652e-10 6.658698111e-10 1.888560433e-09 9.276805603e-10 1.529401064e-09 1.529266444e-09 3.38086365e-10 9.935987568e-10 5.874518677e-10 9.212452387e-10 5.857277819e-10 1.069574502e-09 1.059879603e-09 1.339684112e-09 7.974437343e-10 9.563253737e-10 8.081405837e-10 1.115438495e-09 5.98590643e-10 7.574570347e-10 8.800482515e-10 1.311816857e-09 1.078201236e-09 5.79066227e-10 9.64298903e-10 8.36423324e-10 7.958711022e-10 1.270706873e-09 9.568981413e-10 1.224642285e-09 3.964599826e-10 8.278495658e-10 7.431998093e-10 7.86010824e-10 4.53186398e-10 4.291039967e-10 3.339457939e-10 2.328723195e-10 5.947789605e-10 3.104339623e-10 4.670584196e-10 3.723608905e-10 3.568421739e-10 9.821816549e-10 3.944131192e-10 4.245098386e-10 4.498986336e-10 1.519397195e-10 6.070117384e-10 4.404984448e-10 4.896851366e-10 1.963477385e-10 3.797719582e-10 4.386359856e-10 6.577854251e-10 7.198094701e-10 2.082854431e-10 4.618838595e-10 1.44541286e-10 9.142708471e-10 5.637254679e-10 3.457061857e-10 6.249130688e-10 3.558381597e-10 2.793557859e-10 1.127493677e-10 +3.40416151e-10 3.690015463e-10 6.451742316e-10 4.690673267e-10 3.97872104e-10 5.98664076e-10 5.504442842e-10 4.555005054e-10 6.349046688e-10 8.020227997e-10 7.672027897e-10 5.208531599e-10 3.722362173e-10 5.680324076e-10 6.038898474e-10 6.535980377e-10 4.345768295e-10 7.584509635e-10 9.399889569e-10 3.598737244e-10 8.218752782e-10 7.122438553e-10 6.024146209e-10 9.272042542e-10 2.832749699e-10 9.685712292e-10 3.939110163e-10 1.765852401e-10 4.323625087e-10 4.626647024e-10 5.810399799e-10 3.317500313e-10 4.012881929e-10 7.970602749e-10 3.888539065e-10 1.200508634e-09 1.159043871e-09 6.57013584e-10 6.163683827e-10 8.871947349e-10 6.801313899e-10 3.321020931e-10 9.030194276e-10 1.52673662e-09 6.129660941e-10 1.015547759e-09 1.249528725e-09 1.682039655e-09 9.361369098e-10 1.775404485e-09 1.080910972e-09 1.044486638e-09 6.898041367e-10 1.126576529e-09 7.524443736e-10 7.959031523e-10 5.68683849e-10 6.479837583e-10 2.046911246e-10 7.805078476e-10 1.429531923e-09 1.29288238e-09 1.159140114e-09 1.844303252e-09 1.056871657e-09 5.270421868e-10 8.157200146e-10 5.792936275e-10 4.842606397e-10 1.244905298e-09 7.552852023e-10 4.762821189e-10 1.140359251e-09 1.523247786e-09 9.627938622e-10 3.666488792e-10 1.15405988e-09 6.099474978e-10 1.047189566e-09 1.045789407e-09 2.199978679e-09 1.158546868e-09 1.47749071e-09 1.399647287e-09 2.015443099e-09 1.755733325e-09 2.026123969e-09 2.049309829e-09 1.296252513e-09 1.404758693e-09 1.209716204e-09 1.516243315e-09 1.300960565e-09 1.773193261e-09 1.513273572e-09 1.163496555e-09 1.572381764e-09 9.771149779e-10 6.657817637e-10 7.766677453e-10 4.403462042e-10 6.677052786e-10 1.014177959e-09 1.211263038e-09 1.545683405e-09 3.160553681e-09 2.502687687e-09 3.132000979e-09 2.643062042e-09 2.55705384e-09 2.873911184e-09 1.675916756e-09 2.795147016e-09 2.226239347e-09 3.002150039e-09 3.401833064e-09 2.414511438e-09 2.593079304e-09 1.702996625e-09 2.320090439e-09 1.530288911e-09 2.046951498e-09 1.121301628e-09 1.319433165e-09 1.103608644e-09 1.286150997e-09 1.178157157e-09 3.978060737e-10 2.053673467e-10 1.546500378e-10 1.18626461e-10 3.267644695e-11 4.716582233e-10 1.509455271e-10 5.967952222e-10 1.679381714e-09 1.329559212e-09 2.460741995e-09 1.868058237e-09 3.152700205e-09 3.189797145e-09 2.753022542e-09 2.457268003e-09 2.646438516e-09 2.168967945e-09 2.791879579e-09 2.082002056e-09 3.39233917e-09 3.010678874e-09 2.859126654e-09 3.535262203e-09 3.417726773e-09 2.637373656e-09 3.29113468e-09 3.131527478e-09 2.883065263e-09 2.250477469e-09 2.110338378e-09 2.508287411e-09 2.752664125e-09 3.035866731e-09 1.951435236e-09 2.243742226e-09 1.305475076e-09 7.857298703e-10 4.338786275e-10 1.307672142e-10 2.208412509e-10 1.194354202e-10 1.018438339e-10 8.463859867e-13 1.877554979e-11 4.161884643e-10 3.755168703e-10 1.985794568e-09 1.362938504e-09 2.76980801e-09 1.919695502e-09 1.42295219e-09 1.383115606e-09 1.317806477e-09 1.766304002e-09 2.24401359e-09 2.889030894e-09 3.291542776e-09 2.600208392e-09 2.116624121e-09 1.417455973e-09 2.359502812e-09 2.496425086e-09 2.856059669e-09 1.800839332e-09 2.292780617e-09 3.020984298e-09 3.924555611e-09 2.433017092e-09 6.906070601e-10 9.854230039e-10 1.047229889e-09 5.717862765e-10 3.111435156e-10 1.037871024e-09 1.178237032e-09 8.348088608e-10 1.735692987e-09 1.21210715e-09 7.672412914e-10 1.06233179e-09 1.485545783e-09 1.348661381e-09 9.568396027e-10 1.813823125e-09 2.254273039e-09 1.971841138e-09 1.147108011e-09 1.571303317e-09 1.88962904e-09 1.464081896e-09 1.984188024e-09 1.248166869e-09 1.161630541e-09 1.413356306e-09 6.448715069e-10 8.025476118e-10 6.373031119e-10 7.097686039e-10 9.780163007e-10 1.097875707e-09 9.197295774e-10 1.537643882e-09 1.559951009e-09 6.415930353e-10 9.446396152e-10 7.834887822e-10 5.777813677e-10 6.723769e-10 1.186687577e-09 7.231656814e-10 1.011469174e-09 8.379262851e-10 5.650133398e-10 2.733329498e-10 6.825397164e-10 7.943578179e-10 1.082172026e-09 4.606487213e-10 5.359037431e-10 1.099562251e-09 1.040866088e-09 5.761319525e-10 1.18211522e-09 1.139259961e-09 4.614365873e-10 8.141479505e-10 8.19023832e-10 1.035963861e-09 1.366534621e-09 9.930218166e-10 1.035510711e-09 7.682283334e-10 6.604469123e-10 1.235416989e-09 6.985990518e-10 9.90533155e-10 3.384705183e-10 6.642513738e-10 4.983886266e-10 4.524699846e-10 4.633303846e-10 2.270966491e-10 4.610881117e-10 7.757060463e-10 9.399690272e-10 4.611631465e-10 5.850466478e-10 4.425304121e-10 3.051478459e-10 3.47118118e-10 6.168277107e-10 2.519573279e-10 4.894302243e-10 8.532646203e-10 3.802572141e-10 5.994975122e-10 6.235109039e-10 2.826093643e-10 5.113915337e-10 3.818501978e-10 7.093676909e-10 2.075093858e-10 4.606960525e-10 6.345807695e-10 4.99181905e-10 4.788508604e-11 3.130897853e-10 4.139507732e-10 3.796723401e-10 4.237169105e-10 6.283857401e-10 2.888536819e-10 +7.094526093e-10 5.533981558e-10 5.133415735e-10 4.398541952e-10 5.07645172e-10 6.859773328e-10 6.720767366e-10 8.325981751e-10 5.409603129e-10 3.031047163e-10 1.534361797e-10 2.36964635e-10 6.496802921e-10 9.776400542e-10 1.79334854e-10 5.156775416e-10 4.697191416e-10 6.504070727e-10 5.08438898e-10 1.99474648e-10 4.30153678e-10 5.610746193e-10 3.415098215e-10 3.396026998e-10 4.594507813e-10 3.522628571e-10 3.701410329e-10 2.508290151e-10 6.432048588e-10 4.611948045e-10 7.17893842e-10 8.430030265e-10 6.808481485e-10 4.769576851e-10 3.856448006e-10 1.004636681e-09 1.02094448e-09 1.126058871e-09 9.794289056e-10 6.414037994e-10 1.092940496e-09 1.021297727e-09 1.265044062e-09 9.807244075e-10 8.525730334e-10 9.46889642e-10 6.521399399e-10 7.791708674e-10 6.645194321e-10 6.439781351e-10 1.181536437e-09 9.414201003e-10 8.618120417e-10 6.595662157e-10 6.404839385e-10 7.220556872e-10 4.963154273e-10 1.029082897e-09 7.883567772e-10 1.179810504e-09 6.095825933e-10 8.993214489e-10 8.804520059e-10 1.204955134e-09 1.251459721e-09 9.869748749e-10 8.848672604e-10 9.868692491e-10 9.118893489e-10 1.790121953e-09 1.082905942e-09 1.098919342e-09 1.181276964e-09 8.819815517e-10 5.959418936e-10 8.583578144e-10 8.657883748e-10 8.381245474e-10 1.210126384e-09 1.431097003e-09 1.081672793e-09 1.975769153e-09 1.872264484e-09 1.780216759e-09 1.09349744e-09 8.735536997e-10 7.804902817e-10 2.682333133e-09 8.686773454e-10 1.132807602e-09 9.864271242e-10 8.049890795e-10 1.76214493e-09 1.768195455e-09 1.058797576e-09 1.095052265e-09 8.488414158e-10 8.130658226e-10 1.118160115e-09 1.064104814e-09 3.264641117e-10 9.586046595e-10 7.758634207e-10 7.557094184e-10 1.347432553e-09 2.023010373e-09 1.849628283e-09 2.299994653e-09 2.366663563e-09 2.682650347e-09 2.926388169e-09 1.540225893e-09 3.0264338e-09 1.618574209e-09 1.720059236e-09 2.835625669e-09 2.259686744e-09 1.961604155e-09 2.561301422e-09 2.278350163e-09 2.205080486e-09 1.877196961e-09 1.961761364e-09 1.024552906e-09 1.267082552e-09 1.295393816e-09 1.541780686e-09 7.566613216e-10 6.519448846e-10 2.039113678e-10 3.39085935e-18 1.043016476e-10 3.348097878e-10 8.702677298e-11 5.155759568e-10 2.875716306e-10 1.252730659e-09 2.363390929e-09 2.834757477e-09 2.369942052e-09 1.891518999e-09 2.271209835e-09 2.939408252e-09 1.759549607e-09 3.337737568e-09 3.260512172e-09 2.630436232e-09 3.109333141e-09 2.937405449e-09 2.950144544e-09 2.427325424e-09 3.220054344e-09 1.947640959e-09 2.409835842e-09 2.505818269e-09 2.496302989e-09 2.182719934e-09 2.913477435e-09 3.452234329e-09 2.601993542e-09 2.350316615e-09 2.6115786e-09 1.941998222e-09 1.553239228e-09 7.569310978e-10 5.508302004e-10 3.023784071e-10 5.446882833e-11 2.257738734e-10 1.242577194e-10 1.192709046e-10 5.643030307e-10 8.037991939e-10 1.370616774e-09 1.309013436e-09 1.095522786e-09 9.256936434e-10 1.323665256e-09 1.723220355e-09 1.642040244e-09 1.195029669e-09 1.529401045e-09 3.408412797e-09 1.816676695e-09 2.644721998e-09 1.914372006e-09 3.559535698e-09 2.434713982e-09 1.523299558e-09 2.953742571e-09 2.826546425e-09 2.994888826e-09 2.031206087e-09 3.025107279e-09 3.743979166e-09 2.445338892e-09 1.023795331e-09 9.621841012e-10 6.279982624e-10 5.085143804e-10 4.696162995e-10 1.390670905e-09 9.553866918e-10 9.662668228e-10 2.128205446e-09 1.461945769e-09 1.371202798e-09 2.142182108e-09 1.29099703e-09 1.740543309e-09 1.683492033e-09 1.016915367e-09 1.693708162e-09 1.872650255e-09 1.121479337e-09 1.293096004e-09 2.656394912e-09 1.832782927e-09 1.513581541e-09 1.726354443e-09 1.510549037e-09 8.969485653e-10 1.626148501e-09 4.710270892e-10 6.837413273e-10 9.187972838e-10 1.318015153e-09 8.870944636e-10 1.053082569e-09 1.324479734e-09 1.615938653e-09 1.159195439e-09 7.35247949e-10 7.283176176e-10 5.183756779e-10 7.832156661e-10 1.351961356e-09 9.320532187e-10 1.383175665e-09 6.081954674e-10 9.803226314e-10 1.008476996e-09 9.417645136e-10 1.058082801e-09 4.485104746e-10 1.272865036e-09 1.032468689e-09 9.987958504e-10 4.66520444e-10 1.830071331e-09 1.07890295e-09 7.327237502e-10 1.028554899e-09 7.451323583e-10 1.178576779e-09 1.126464537e-09 6.256713066e-10 5.384963519e-10 5.692839737e-10 9.136405097e-10 7.060169087e-10 1.507628764e-09 8.97107448e-10 1.006407605e-09 5.509265443e-10 1.004011277e-09 8.783884512e-10 4.350491932e-10 2.825189618e-10 3.29083593e-10 5.201768654e-10 5.665499765e-10 4.917797601e-10 2.769336343e-10 3.267089376e-10 3.512305707e-10 3.348990881e-10 2.880958386e-10 5.784873735e-10 2.814855501e-10 1.573667365e-10 6.97004969e-10 2.953234858e-10 2.230380268e-10 2.403853149e-10 6.586589303e-10 7.250605692e-10 2.883309254e-10 6.519612173e-10 1.122112854e-10 5.780600274e-10 5.01312623e-10 6.376663542e-10 9.73380134e-10 7.359565552e-10 5.941471537e-10 2.804606782e-10 6.501429612e-10 6.264318858e-10 3.192657335e-10 +7.025299756e-10 3.711032854e-10 2.8143647e-10 2.126063898e-10 6.858507896e-10 3.582578712e-10 8.537192507e-10 7.637582158e-10 4.015541909e-10 1.22538986e-09 5.495566332e-10 5.220990012e-10 2.314198812e-10 1.327638947e-10 3.37626012e-10 3.957067907e-10 1.739530692e-10 2.912863888e-10 1.035473822e-09 2.57566607e-10 4.802080654e-10 4.748278532e-10 6.752522535e-10 9.938496337e-10 6.894077045e-10 3.684533562e-10 3.154649988e-10 5.095120531e-10 3.541399585e-10 6.464092454e-10 4.912657768e-10 5.925925824e-10 1.091048554e-09 6.946541992e-10 5.4999565e-10 9.654877549e-10 1.122670806e-09 1.25970083e-09 1.524644236e-09 1.43896278e-09 1.909376217e-09 1.21513149e-09 1.124654292e-09 8.880212512e-10 1.556021543e-09 7.941825522e-10 9.282690644e-10 9.181341468e-10 8.526793495e-10 9.365070095e-10 6.85671597e-10 1.064352939e-09 5.985197957e-10 5.743772182e-10 6.057422803e-10 9.752863242e-10 3.321161442e-10 9.733814512e-10 9.42757695e-10 4.93189285e-10 5.197282897e-10 1.557637672e-09 1.024694736e-09 9.528729609e-10 8.519627908e-10 8.437053443e-10 1.471285348e-09 5.854113414e-10 9.71143305e-10 6.375324937e-10 5.893596724e-10 7.373538489e-10 1.031359879e-09 1.032955231e-09 1.071688739e-09 9.291471433e-10 1.21652212e-09 8.894661147e-10 1.512008798e-09 1.047911867e-09 1.068973839e-09 1.680992832e-09 1.745191144e-09 1.162133987e-09 2.840731994e-09 1.652591745e-09 1.575680131e-09 2.100840324e-09 1.190115684e-09 1.624827064e-09 1.748324642e-09 1.392038998e-09 7.946533178e-10 1.056903332e-09 9.921526985e-10 8.091981893e-10 1.087938326e-09 8.2294858e-10 7.821526134e-10 3.424810787e-10 4.436915368e-10 6.146985003e-10 1.132646359e-09 9.546700806e-10 1.603905472e-09 2.220719072e-09 2.158388079e-09 2.020560539e-09 1.579136049e-09 2.298118232e-09 2.432987371e-09 2.380061143e-09 4.277890586e-09 1.981155245e-09 2.1896064e-09 1.923682455e-09 3.672131718e-09 3.199175101e-09 2.860360824e-09 2.725370081e-09 1.623755078e-09 1.051872115e-09 8.688799077e-10 1.475752954e-09 1.019008699e-09 1.731289442e-09 8.968432908e-10 1.095653562e-09 5.340672074e-10 3.129498122e-10 0 3.13221445e-10 1.624040636e-10 8.999879217e-19 7.360064128e-11 4.412258722e-10 6.116886991e-10 1.59926965e-09 1.493385101e-09 2.184211859e-09 2.585902685e-09 2.715654549e-09 2.41869182e-09 2.853177157e-09 2.392730531e-09 2.525600629e-09 3.290052582e-09 3.543211846e-09 2.429665418e-09 2.267456425e-09 3.115048577e-09 2.185546051e-09 3.012159711e-09 2.959889683e-09 2.494683186e-09 2.706793572e-09 2.655739084e-09 2.832266676e-09 3.248039678e-09 2.197933267e-09 2.379504711e-09 2.033709305e-09 1.472504437e-09 7.185177165e-10 1.062845383e-10 1.106675514e-10 3.300426791e-10 2.438433678e-10 2.26912074e-15 1.780395678e-10 9.884809148e-11 9.446625249e-10 9.684228159e-10 1.417527845e-09 1.604607307e-09 9.722489908e-10 1.88190571e-09 1.844944686e-09 1.606386166e-09 1.50666817e-09 1.731662975e-09 1.482165837e-09 1.696566484e-09 2.934664897e-09 2.858380801e-09 2.3143898e-09 1.48235619e-09 2.292278806e-09 2.751791076e-09 1.242362207e-09 4.421783488e-09 1.303505634e-09 1.791080418e-09 2.565602273e-09 3.092674068e-09 2.083330248e-09 5.498571002e-10 6.851141053e-10 5.851290354e-10 5.477810372e-10 6.611593167e-10 5.198459733e-10 8.860935045e-10 1.246223677e-09 1.17446771e-09 8.869185403e-10 1.103201094e-09 1.599843169e-09 1.54217995e-09 1.111396878e-09 1.070364046e-09 2.111922954e-09 1.88506513e-09 1.398988934e-09 8.04704996e-10 1.859377568e-09 2.031580164e-09 2.081987014e-09 1.37247803e-09 1.297300122e-09 1.046571118e-09 7.622347012e-10 4.425409635e-10 8.656974498e-10 1.417516194e-09 9.967649405e-10 1.183574958e-09 9.775508497e-10 1.188145365e-09 7.287022113e-10 6.742396449e-10 9.454695573e-10 1.108713987e-09 9.911319789e-10 1.065362483e-09 1.117422594e-09 9.392856862e-10 1.054329282e-09 1.472655608e-09 9.126312545e-10 1.041782091e-09 8.597769788e-10 9.002434356e-10 4.182281612e-10 9.806772169e-10 1.10380111e-09 7.402948835e-10 1.369995283e-09 9.38417777e-10 1.125905163e-09 1.218070154e-09 1.174646657e-09 1.596255926e-09 8.911814452e-10 6.868257761e-10 1.134721682e-09 1.106161651e-09 6.828351929e-10 8.686486207e-10 1.103283955e-09 3.722515122e-10 1.123173717e-09 1.218389392e-09 9.234822029e-10 7.172931301e-10 6.746006966e-10 4.318914679e-10 3.266633342e-10 2.597937397e-10 2.715523782e-10 3.664703425e-10 5.485593046e-10 8.006647352e-10 4.229901666e-10 6.616787747e-10 2.726286317e-10 3.208394069e-10 4.104235688e-10 3.355384728e-10 6.533372513e-10 7.627664691e-10 4.700485574e-10 2.013765411e-10 2.655420923e-10 1.018096262e-09 8.248694548e-10 6.405712433e-10 8.049927612e-10 5.039749115e-10 5.293585765e-10 6.526991187e-10 5.673156984e-10 8.690689301e-10 4.268072192e-10 6.238289989e-10 2.30188828e-10 3.967648823e-10 5.315018594e-10 2.464948839e-10 3.430709537e-10 +2.240671711e-10 4.050535347e-10 4.580154503e-10 4.52201204e-10 2.481634745e-10 3.603988493e-10 7.130686472e-10 5.402280055e-10 9.581350446e-10 2.573472698e-10 2.859447992e-10 3.105147329e-10 2.878542588e-10 1.358503629e-10 3.329688102e-10 4.033517331e-10 4.681334569e-10 5.670076034e-10 2.510006257e-10 4.458815172e-10 4.297623598e-10 8.386939269e-10 8.452811828e-10 5.616026032e-10 6.08456641e-10 3.051465419e-10 2.562475614e-10 2.846000282e-10 3.849632384e-10 3.575121066e-10 2.034788213e-10 6.08884704e-10 4.405601391e-10 1.035958333e-09 6.321276561e-10 9.758814873e-10 6.188523448e-10 1.337464921e-09 9.117510438e-10 9.795687184e-10 1.437441289e-09 7.601609236e-10 7.92964982e-10 7.013038639e-10 1.194498653e-09 1.082352796e-09 6.913500603e-10 8.932924915e-10 6.906394193e-10 5.704347735e-10 9.975041484e-10 1.121207003e-09 9.09557884e-10 7.199411589e-10 7.099466592e-10 8.86520639e-10 5.945465188e-10 5.836277512e-10 4.656523536e-10 1.145018652e-09 1.114772136e-09 8.72520403e-10 6.764543829e-10 1.711296782e-09 6.021792575e-10 1.117497735e-09 8.93951138e-10 1.120323722e-09 1.001187826e-09 1.134607995e-09 1.022870407e-09 7.84571268e-10 1.706349886e-09 6.666752986e-10 7.808393313e-10 7.946240388e-10 7.072891077e-10 7.450751044e-10 1.440811511e-09 8.121793407e-10 5.831356232e-10 1.847028418e-09 2.037988284e-09 1.541863109e-09 1.007491031e-09 1.692510591e-09 1.208660809e-09 1.988354126e-09 1.527624042e-09 2.414244175e-09 9.652569518e-10 1.221822868e-09 1.337674479e-09 1.708539227e-09 1.449000557e-09 1.40059973e-09 1.586727556e-09 1.11760504e-09 6.09997582e-10 9.664130638e-10 6.519328422e-10 4.817986537e-10 8.16672772e-10 1.249912872e-09 1.723626785e-09 1.577388155e-09 1.924214307e-09 2.382392546e-09 1.483963377e-09 1.708256172e-09 2.133754763e-09 2.657309834e-09 2.323103421e-09 2.623815869e-09 2.240128798e-09 3.880317921e-09 2.969055338e-09 2.931503438e-09 2.008729671e-09 1.38784725e-09 1.328653462e-09 1.417677482e-09 1.776212297e-09 1.213864137e-09 1.301731537e-09 1.854274429e-09 1.928584753e-09 1.456338722e-09 9.431557529e-10 3.534477854e-10 1.94633419e-10 5.114495139e-10 0 2.125920814e-10 3.792698723e-10 2.626270807e-10 1.130777675e-10 3.703223968e-10 6.672608276e-10 8.393566626e-10 1.149398845e-09 2.110087831e-09 2.991747447e-09 3.021012042e-09 2.260068871e-09 1.780280779e-09 2.101969128e-09 2.545047292e-09 2.274802153e-09 2.947928203e-09 2.649470256e-09 2.049978478e-09 2.150055626e-09 1.529921164e-09 1.73872282e-09 2.929429367e-09 2.485803339e-09 2.223351268e-09 2.18183928e-09 2.02660414e-09 1.334330732e-09 5.604056961e-10 4.541367913e-10 4.112778949e-10 1.977928167e-10 8.09838509e-11 1.147022017e-10 2.875793975e-10 1.173457438e-10 2.029838007e-10 3.617855926e-10 6.79202824e-10 1.381942442e-09 8.347341606e-10 1.684014264e-09 1.607363628e-09 1.438132623e-09 2.047155925e-09 1.768838449e-09 1.837729908e-09 2.82063005e-09 3.208611688e-09 4.429210493e-09 3.920587315e-09 2.16052134e-09 2.393355025e-09 3.038814242e-09 2.23217975e-09 2.224861778e-09 2.692212576e-09 2.40212609e-09 3.407924322e-09 2.711781094e-09 1.847477843e-09 2.831764934e-09 1.747770087e-09 8.248350773e-10 8.582400364e-10 5.355209368e-10 4.381276073e-10 7.750149741e-10 9.922699176e-10 1.251589502e-09 1.357797104e-09 1.031241439e-09 1.0021618e-09 1.863112031e-09 1.704680992e-09 8.199114688e-10 1.012155967e-09 2.020889905e-09 1.834724322e-09 1.491768296e-09 1.217720949e-09 1.972528391e-09 1.522913523e-09 2.206302921e-09 1.209559611e-09 8.364354581e-10 1.845000946e-09 1.010874483e-09 1.624396722e-09 8.017146231e-10 1.301102415e-09 5.801310346e-10 8.758864793e-10 1.013820813e-09 9.978541383e-10 1.744791611e-09 7.648871331e-10 8.493871221e-10 1.231937688e-09 5.891641994e-10 1.201882804e-09 8.099464693e-10 9.655470134e-10 7.1812717e-10 1.030258993e-09 1.507423932e-09 9.757520388e-10 1.22380946e-09 7.442113344e-10 7.660711342e-10 1.40003612e-09 6.9561289e-10 8.375397842e-10 6.169661752e-10 9.098439386e-10 1.030735462e-09 9.741605641e-10 1.384302375e-09 6.238116595e-10 1.107336973e-09 1.593205433e-09 9.239845042e-10 8.826413144e-10 5.649249919e-10 7.721811908e-10 7.210202215e-10 5.751545372e-10 8.282609557e-10 1.228799052e-09 1.026425201e-09 7.473727467e-10 1.101191586e-09 4.016720459e-10 4.491085869e-10 3.882718606e-10 1.484498533e-09 4.967466468e-10 5.296783503e-10 4.180359515e-10 2.825384707e-10 2.28802351e-10 2.687248584e-10 4.268537565e-10 2.376129006e-10 2.230040955e-10 4.189755452e-10 7.358040248e-10 4.674183693e-10 2.049957224e-10 4.383468599e-10 2.299033024e-10 5.687611348e-10 4.483769376e-10 3.933166673e-10 2.854610775e-10 3.61919275e-10 3.746926929e-10 6.036909913e-10 2.924796526e-10 2.746970863e-10 5.75363203e-10 6.498067979e-10 4.085689704e-10 4.920367868e-10 1.079220639e-09 5.420363215e-10 5.033905499e-10 +5.532159245e-11 3.984323607e-10 2.158524133e-10 4.193388091e-10 4.23551114e-10 9.491793558e-10 6.33802882e-10 3.781050185e-10 5.278087314e-10 4.609054695e-10 6.465272872e-10 4.419063526e-10 5.986461244e-10 4.406234767e-10 7.127500018e-10 6.766733732e-10 5.228926861e-10 2.676842548e-10 2.675490229e-10 3.581416918e-10 2.913286563e-10 2.617169802e-10 3.695674252e-10 3.833555222e-10 5.968947082e-11 1.057659285e-09 1.238734747e-09 5.021941122e-10 1.61971187e-10 3.866694353e-10 6.710320749e-10 4.270019881e-10 3.926119019e-10 2.906035295e-10 8.527415939e-10 4.904603837e-10 6.487906759e-10 1.27843799e-09 1.25044775e-09 9.341039029e-10 7.325669324e-10 1.117917332e-09 5.781933373e-10 1.040536183e-09 8.623974374e-10 8.80878157e-10 8.384813975e-10 9.259140353e-10 1.146683592e-09 8.880083192e-10 5.909392507e-10 1.079417647e-09 6.390090373e-10 1.027001691e-09 7.676242505e-10 4.068146765e-10 7.986833648e-10 8.914127196e-10 5.854777691e-10 6.793748832e-10 1.005078709e-09 1.177106259e-09 8.709187551e-10 7.159843776e-10 1.69660078e-09 3.71027809e-10 1.549065716e-09 9.916992427e-10 1.95829833e-09 9.125310026e-10 5.219830165e-10 1.062495288e-09 1.071694621e-09 6.876374467e-10 6.748686881e-10 1.261999237e-09 1.221828866e-09 7.738125209e-10 6.044169268e-10 1.209258285e-09 1.366521926e-09 1.240695047e-09 1.739261868e-09 1.422314307e-09 1.074984804e-09 8.809537907e-10 1.769937699e-09 7.947202938e-10 1.837651237e-09 9.697765256e-10 2.317217891e-09 1.524206815e-09 1.377096139e-09 1.299556344e-09 1.774092744e-09 1.962714861e-09 1.151785884e-09 8.918997008e-10 6.613145805e-10 6.412751817e-10 4.365895128e-10 6.009150325e-10 7.288530516e-10 1.028472727e-09 1.853625843e-09 2.191071083e-09 2.804674267e-09 1.960106757e-09 2.25653622e-09 1.774041818e-09 2.481496522e-09 2.412104905e-09 2.583494009e-09 2.261196418e-09 2.471896041e-09 3.652784363e-09 2.4501812e-09 3.66135232e-09 1.98213966e-09 1.186664288e-09 1.02016341e-09 2.670539475e-09 9.297082844e-10 1.850373044e-09 1.779796849e-09 7.698783962e-10 1.428285883e-09 1.289816152e-09 1.519485888e-09 7.716010902e-10 4.132754506e-10 4.072796107e-10 1.991321132e-10 3.924157805e-10 2.06042027e-10 3.598568714e-10 1.87284098e-10 2.681618936e-10 9.372888399e-10 8.259507857e-10 9.320195454e-10 7.382414371e-10 1.492132264e-09 1.81873839e-09 1.94287313e-09 2.269644643e-09 2.128820425e-09 1.870216398e-09 2.425238364e-09 3.703670172e-09 3.078850309e-09 2.861348288e-09 2.46334107e-09 1.909923964e-09 1.693389395e-09 1.869985778e-09 2.008140131e-09 1.716915953e-09 1.36404967e-09 1.473316711e-09 6.182068988e-10 3.856026327e-10 4.432376156e-10 2.832897788e-10 5.220601622e-10 4.463714591e-10 5.162852448e-11 3.590165168e-10 1.480032339e-10 4.030986238e-10 4.410442612e-10 1.610107729e-09 1.335885111e-09 1.45566415e-09 1.270088611e-09 1.064956879e-09 1.241860268e-09 1.419928843e-09 2.02744051e-09 2.731191242e-09 1.281932864e-09 3.699629384e-09 2.54879388e-09 1.94781337e-09 3.33794498e-09 1.616821057e-09 2.092162486e-09 2.724809813e-09 1.981274089e-09 3.337128001e-09 2.572850749e-09 1.639226925e-09 2.323375163e-09 2.061749965e-09 2.719643841e-09 8.896231323e-10 8.522062351e-10 8.208186083e-10 7.77542907e-10 4.274472573e-10 9.765094579e-10 9.615707119e-10 1.39140744e-09 1.099384355e-09 1.244686716e-09 1.199911138e-09 1.020321896e-09 1.925240852e-09 1.167290757e-09 1.146592212e-09 1.333187557e-09 1.107110394e-09 1.379951699e-09 1.87974336e-09 1.686408901e-09 1.383886804e-09 2.348757389e-09 8.897417121e-10 1.221360684e-09 1.64679099e-09 1.1634329e-09 5.854024956e-10 9.338749023e-10 1.134814726e-09 6.933029604e-10 3.854000851e-10 4.24984777e-10 6.945918505e-10 8.401236158e-10 7.173059787e-10 1.027343647e-09 8.183296545e-10 1.042855319e-09 4.659898855e-10 9.035539022e-10 1.199402147e-09 7.228348003e-10 1.045696273e-09 1.145371721e-09 9.73068032e-10 5.341312901e-10 5.413391395e-10 5.634921673e-10 2.920501163e-10 6.19275462e-10 8.2202411e-10 8.533703109e-10 1.102621829e-09 5.002334854e-10 1.010994567e-09 1.822809898e-09 6.180011903e-10 8.546812e-10 5.74539783e-10 4.978984406e-10 6.923447409e-10 4.897592512e-10 4.693965246e-10 1.145325343e-09 1.56289327e-09 1.155895222e-09 5.375846902e-10 5.869482634e-10 6.159556262e-10 8.176512756e-10 8.936832715e-10 7.815662589e-10 6.364643066e-10 1.15929008e-09 7.858469493e-10 2.07575321e-10 3.063385838e-10 2.109984162e-10 1.60416257e-10 1.380977516e-10 3.904200132e-10 9.415715846e-10 5.195241312e-10 4.321312525e-10 4.655543605e-10 3.306534622e-10 5.395259779e-10 8.822933219e-11 2.408477298e-10 2.143808251e-10 5.346302822e-10 3.467076956e-10 2.065182674e-10 4.501307982e-10 4.52601791e-10 6.559046383e-10 5.215951715e-10 1.049097207e-10 3.457342506e-10 7.173485154e-10 2.867463249e-10 7.793697691e-10 2.618127406e-10 4.155996697e-10 7.429185873e-10 +9.79348728e-10 1.295521693e-10 5.076703897e-10 4.168438628e-10 5.598783306e-10 2.608265587e-10 6.227208089e-10 1.071275906e-09 5.684410673e-10 4.5513287e-10 7.364486264e-10 4.005603529e-10 5.562851554e-10 7.424594364e-10 9.40982129e-11 6.506685446e-10 1.161187216e-10 6.970438364e-10 3.66571983e-10 6.796566197e-10 1.656075375e-10 6.084128327e-10 4.815558221e-10 5.581717044e-10 4.345550261e-10 4.200671592e-10 4.399754095e-10 1.948433257e-10 4.581634147e-10 2.931514734e-10 5.992261133e-10 5.447794208e-10 3.471618045e-10 6.415577107e-10 6.783201493e-10 1.239055452e-09 7.813906337e-10 8.497518646e-10 1.323223812e-09 6.468750542e-10 1.523396906e-09 6.47863055e-10 6.152512027e-10 5.58369643e-10 2.658669351e-10 8.935239039e-10 6.7425745e-10 3.594210853e-10 1.055237313e-09 4.394736016e-10 1.092326712e-09 4.87835091e-10 5.737756932e-10 1.011567874e-09 9.459207401e-10 7.113783822e-10 5.541858396e-10 6.988840865e-10 9.481831846e-10 6.309274761e-10 6.724592777e-10 1.292888077e-09 3.730055782e-10 7.656533074e-10 7.69582002e-10 9.635537959e-10 7.997802584e-10 1.121548754e-09 1.14372016e-09 1.047717434e-09 1.361022372e-09 1.940415494e-09 5.988969701e-10 5.600835751e-10 7.801872592e-10 9.015165154e-10 1.012722166e-09 4.73288982e-10 5.948498622e-10 1.501091179e-09 1.208159545e-09 1.775084185e-09 5.990948224e-10 1.374872997e-09 1.299613823e-09 1.1841895e-09 2.141286997e-09 2.202652774e-09 1.116415681e-09 1.732898058e-09 1.86492471e-09 1.733858042e-09 6.452212328e-10 1.572616233e-09 1.564472173e-09 1.070303979e-09 7.123090492e-10 6.656309075e-10 1.044385159e-09 6.318625329e-10 4.201014303e-10 3.075215125e-10 7.333743655e-10 9.042031897e-10 1.690436909e-09 1.983984599e-09 2.118628207e-09 2.29623564e-09 1.765593398e-09 2.227665625e-09 3.187936043e-09 2.07496048e-09 1.251866271e-09 2.33278565e-09 2.272762775e-09 2.264586274e-09 1.804694431e-09 3.218162383e-09 2.360778887e-09 2.41835038e-09 1.480798103e-09 1.489953213e-09 2.207935375e-09 1.619251549e-09 2.426758377e-09 7.447748453e-10 1.033666649e-09 1.5273863e-09 1.397936574e-09 1.14978989e-09 1.073538777e-09 2.280812124e-10 1.085793532e-10 7.390581823e-11 1.144144273e-10 1.368048387e-10 1.305465372e-10 2.380306054e-10 1.129819967e-15 1.210576327e-09 6.244159865e-10 1.81307574e-09 8.776120415e-10 1.486272741e-09 1.410735238e-09 2.909450214e-09 2.268327286e-09 2.881662008e-09 2.399496496e-09 2.123208576e-09 2.857650981e-09 2.339893998e-09 1.78690561e-09 1.502368038e-09 1.342741746e-09 1.678786209e-09 1.95333473e-09 1.092882719e-09 9.746800517e-10 7.699956131e-10 5.523881055e-10 4.453839585e-19 3.046036229e-10 1.251109412e-10 2.812187015e-10 2.025864709e-12 0 7.777693437e-11 2.741629766e-10 6.9631207e-10 8.022825135e-10 1.589061002e-09 1.102294803e-09 1.142341141e-09 1.920660251e-09 1.419098507e-09 1.172682493e-09 1.469198182e-09 1.741456956e-09 1.902736805e-09 2.122942386e-09 2.885783489e-09 1.961439444e-09 2.265360678e-09 2.656602271e-09 2.895992604e-09 3.002279747e-09 2.425303572e-09 1.974383024e-09 1.759467563e-09 3.145135465e-09 3.376996488e-09 1.315966627e-09 3.443524827e-09 2.040641351e-09 1.139611322e-09 6.364473265e-10 6.846351377e-10 4.218241046e-10 5.48287185e-10 1.168262422e-09 1.105804744e-09 9.828578008e-10 1.059271701e-09 1.383178885e-09 1.278846982e-09 5.841826451e-10 1.30156528e-09 1.575306454e-09 1.489655483e-09 1.281345248e-09 1.43013652e-09 1.879836649e-09 1.52238174e-09 1.706917064e-09 1.505463222e-09 1.838712446e-09 1.660506282e-09 1.502030455e-09 1.534036317e-09 1.115497192e-09 1.874755523e-09 5.745082519e-10 7.114738006e-10 1.090129414e-09 8.795963968e-10 6.909298534e-10 8.392520713e-10 1.397623901e-09 1.019610443e-09 9.652732785e-10 1.449620822e-09 1.112813365e-09 1.327083611e-09 1.481356839e-09 8.698568195e-10 9.726649021e-10 8.811314824e-10 1.116616272e-09 7.079810588e-10 8.664380578e-10 8.419848972e-10 1.828234442e-09 6.321530368e-10 6.01620894e-10 1.05982477e-09 6.743634902e-10 7.601834358e-10 5.099683299e-10 7.485551442e-10 1.167683043e-09 1.453336303e-09 6.810361009e-10 9.026196174e-10 9.311235057e-10 8.773734878e-10 1.069615906e-09 1.20407858e-09 6.379836036e-10 8.620310147e-10 1.332655775e-09 4.146888424e-10 9.929650571e-10 6.245407992e-10 7.230228329e-10 6.625993614e-10 8.5245118e-10 6.295935686e-10 6.725328813e-10 4.946552139e-10 9.709716995e-10 4.906479963e-10 9.324927555e-10 2.335961752e-10 6.882255428e-10 4.865482609e-10 6.094823158e-10 3.903693948e-10 3.925332443e-10 3.583476121e-10 4.783406408e-10 9.639417685e-10 2.502388261e-10 3.595555113e-10 6.956796995e-10 3.767487136e-10 4.257452169e-10 5.34792063e-10 8.125319072e-10 3.747833922e-10 5.084601234e-10 2.602921765e-10 3.094729362e-10 9.4666835e-10 5.258920856e-10 3.340218463e-10 2.653675956e-10 4.884105061e-10 2.344631458e-10 1.410488769e-10 +5.541555752e-10 2.08356208e-10 3.250456989e-10 3.891432704e-10 6.891438147e-10 7.898787838e-10 2.452376042e-10 7.257981543e-10 3.585459287e-10 5.173237654e-10 8.100478306e-10 8.618090858e-10 4.145430488e-10 1.395023526e-09 6.875290312e-10 4.998581417e-10 5.144660032e-10 4.556571512e-10 8.063461164e-10 4.314149164e-10 3.228006981e-10 5.4608303e-10 1.73379877e-10 2.376028569e-10 3.063833675e-10 4.057489586e-10 2.482441077e-10 5.531140344e-10 5.392750928e-10 4.014701574e-10 6.827570397e-10 8.766540935e-10 1.066691342e-09 5.995488454e-10 4.481477001e-10 6.34456055e-10 1.659649286e-09 4.958939747e-10 1.026785225e-09 5.834096034e-10 1.339251972e-09 4.142305789e-10 6.528098372e-10 6.594163654e-10 1.128983852e-09 9.791679309e-10 9.33569455e-10 9.299453305e-10 7.463991438e-10 1.009753094e-09 1.432437069e-09 7.876896365e-10 7.612835819e-10 7.096032694e-10 1.259424503e-09 5.780719704e-10 8.353689433e-10 1.036358754e-09 4.712942297e-10 9.496811884e-10 6.202720432e-10 1.349715175e-09 1.367814251e-09 7.612867362e-10 9.382649281e-10 5.537895777e-10 9.547804525e-10 4.98566811e-10 1.794303166e-09 1.023673913e-09 6.471930732e-10 3.812987279e-10 1.087606118e-09 9.994931856e-10 7.303178493e-10 6.17196018e-10 6.504784196e-10 9.705015519e-10 1.048493695e-09 1.592020937e-09 1.342172458e-09 2.007667571e-09 2.874597016e-09 2.594822774e-09 1.657023771e-09 8.797103952e-10 1.87832133e-09 1.386838302e-09 1.218538348e-09 2.118806787e-09 1.357006276e-09 9.82420263e-10 1.028163052e-09 1.658524557e-09 9.713772907e-10 2.071798131e-09 1.073635495e-09 8.492902541e-10 9.425683884e-10 6.373587547e-10 4.696443181e-10 6.149563509e-10 5.599145063e-10 5.659488773e-10 9.363355206e-10 1.692978568e-09 2.092340952e-09 2.373439732e-09 2.047426287e-09 2.133953769e-09 1.488763844e-09 2.65928892e-09 1.757758691e-09 3.15378326e-09 2.055535402e-09 1.753121881e-09 2.034073155e-09 3.720052961e-09 2.996736596e-09 2.006898675e-09 2.094682375e-09 1.073371756e-09 1.31610539e-09 1.412474503e-09 1.382789295e-09 9.430066961e-10 1.037685117e-09 1.184842778e-09 1.228914658e-09 1.782534014e-09 6.518073447e-10 5.425272451e-10 3.479200102e-10 1.619559745e-10 1.321920645e-10 1.888262989e-10 5.471591426e-11 6.411456919e-11 8.593753478e-11 3.343568781e-10 6.074447924e-10 4.083179088e-10 4.25013151e-10 1.049640651e-09 9.460889138e-10 1.139999209e-09 1.300256517e-09 1.363159385e-09 1.339905729e-09 2.064995373e-09 1.510037342e-09 1.733898296e-09 1.533990509e-09 7.982734167e-10 7.93737625e-10 9.519440407e-10 1.09901946e-09 7.918482402e-10 3.924668063e-10 1.992734867e-10 2.10944503e-10 7.97623841e-11 5.512463007e-10 1.733642767e-10 1.922802506e-13 8.931336801e-11 9.986827666e-12 5.567451142e-10 3.447048292e-10 1.248121782e-09 1.295171608e-09 1.372421131e-09 1.718504967e-09 9.63505772e-10 2.518192714e-09 1.301508774e-09 1.376399531e-09 1.735582403e-09 1.85979093e-09 1.430624881e-09 2.671655669e-09 4.165159703e-09 2.756806063e-09 2.688721226e-09 1.667016094e-09 1.679436078e-09 2.754020856e-09 1.437934841e-09 2.357913887e-09 2.916238453e-09 1.956601469e-09 1.790542003e-09 2.782778477e-09 2.976398026e-09 1.70735322e-09 8.679525119e-10 8.038583864e-10 1.177276979e-09 2.411337361e-10 3.260718343e-10 9.632235391e-10 7.597332201e-10 5.58656594e-10 1.248887468e-09 1.759533883e-09 8.460178163e-10 1.405951308e-09 1.083926525e-09 1.863067175e-09 1.536075215e-09 2.067643802e-09 2.157256032e-09 1.314025464e-09 1.033907027e-09 1.326268683e-09 1.519203281e-09 2.126165059e-09 1.522738914e-09 9.35459288e-10 1.187277153e-09 1.156826178e-09 9.717177618e-10 4.750063423e-10 7.706443857e-10 6.266750916e-10 6.397077244e-10 8.830833278e-10 8.512718866e-10 1.035832196e-09 6.714125196e-10 7.311771365e-10 9.591538688e-10 6.752430176e-10 1.000273967e-09 1.289715533e-09 8.609319893e-10 5.582907618e-10 7.80452501e-10 6.907034282e-10 8.343791414e-10 4.622264059e-10 6.852377547e-10 5.1718912e-10 6.008061343e-10 8.512337082e-10 7.049304862e-10 1.111459734e-09 1.226523859e-09 1.190167144e-09 1.295126612e-09 9.505714054e-10 4.802765722e-10 7.019757802e-10 9.727762492e-10 6.844653863e-10 7.304673741e-10 4.005168193e-10 7.900784265e-10 1.675094002e-09 4.700947841e-10 8.813739033e-10 4.067178582e-10 5.330064121e-10 5.680533746e-10 5.803880694e-10 1.055553561e-09 9.96355757e-10 1.340099565e-09 9.518161054e-10 7.647778376e-10 7.434050565e-10 6.673139909e-10 2.589566774e-10 7.373439972e-10 4.100777549e-10 9.117487076e-10 1.716185023e-10 2.15006081e-10 9.368623015e-10 6.485736244e-10 4.642477761e-10 3.571805442e-10 1.880846032e-10 7.12257782e-10 2.746708225e-10 1.858185362e-10 4.391097355e-10 3.693357797e-10 3.19798662e-10 6.813928254e-10 5.974642426e-10 6.476390497e-10 5.791750512e-10 8.42505947e-10 3.970618867e-10 2.225079631e-10 4.836605648e-10 6.654497417e-10 6.762850375e-10 3.943455692e-10 +7.399326601e-10 5.662960248e-10 2.544505169e-10 4.178280959e-10 2.740930011e-10 3.380124037e-10 5.01203645e-10 3.199763901e-10 5.744667555e-10 6.498032759e-10 1.273097798e-10 4.733516283e-10 2.003602968e-10 2.413554878e-10 6.684678627e-10 4.999690033e-10 2.155025404e-10 1.454738899e-10 3.620070863e-10 4.470756287e-10 4.52217091e-10 5.452255903e-10 8.985424726e-10 5.549519771e-10 5.230643786e-10 6.800814949e-10 8.616195454e-10 2.306743306e-10 5.292487185e-10 3.409906031e-10 7.079212046e-10 5.595617328e-10 7.942962117e-10 3.454383685e-10 8.286312386e-10 9.771659648e-10 9.549896402e-10 9.758821402e-10 9.743359834e-10 7.768005757e-10 1.29816051e-09 5.711161571e-10 6.897501918e-10 9.127697208e-10 6.433382025e-10 1.132415775e-09 7.783514723e-10 9.501719219e-10 7.092847394e-10 7.021541228e-10 1.027061425e-09 1.242584648e-09 5.478860303e-10 8.445090343e-10 5.462503906e-10 7.004158506e-10 6.391342857e-10 7.855304822e-10 4.594355188e-10 5.415055472e-10 7.015202997e-10 9.590314935e-10 9.035617036e-10 1.576747037e-09 7.471711626e-10 1.216476067e-09 1.036690532e-09 8.913804332e-10 1.467799895e-09 1.257450768e-09 4.776759355e-10 1.395163434e-09 6.059090295e-10 1.240311032e-09 8.371868305e-10 1.362690347e-09 8.890346283e-10 7.426989638e-10 1.420728108e-09 1.610499851e-09 1.402478107e-09 2.046504117e-09 1.960546299e-09 2.292800062e-09 1.988654718e-09 2.092930683e-09 1.842027448e-09 1.670906406e-09 8.976504576e-10 1.926988659e-09 9.768536649e-10 1.76635914e-09 1.27929609e-09 1.921812136e-09 9.354732628e-10 7.314852542e-10 1.116651907e-09 5.596701477e-10 6.417058208e-10 5.171207588e-10 4.371649664e-10 3.913337004e-10 6.749986927e-10 4.931206687e-10 8.956757418e-10 1.042549549e-09 2.480218247e-09 2.409898932e-09 2.225679184e-09 2.287518107e-09 2.935837451e-09 1.868011526e-09 2.431240103e-09 2.668528158e-09 2.624138876e-09 1.550643615e-09 2.569959343e-09 1.809313351e-09 2.747516127e-09 2.618899121e-09 2.66515727e-09 1.50954857e-09 1.232069809e-09 1.315404355e-09 1.322508562e-09 1.472718334e-09 1.140611263e-09 1.068300906e-09 6.320974142e-10 1.228219283e-09 1.486080125e-09 1.01904692e-09 4.169820618e-10 4.026675525e-10 5.337367375e-10 6.224581205e-11 1.128444357e-10 5.699464124e-11 8.889545976e-11 2.481877315e-10 1.503451627e-10 1.805312273e-10 2.719211994e-10 2.891831745e-12 5.01738722e-10 5.492848123e-10 1.026473453e-09 8.886980844e-10 7.587457746e-10 1.440275062e-09 9.251176263e-10 7.898211713e-10 1.657407827e-10 6.009105817e-10 8.98498838e-10 7.15309429e-10 6.945439036e-10 3.062416866e-10 3.062317742e-10 7.728243128e-11 9.78033837e-11 9.174494692e-11 2.442040538e-10 2.050510159e-10 8.105405615e-11 2.541595606e-10 2.318648671e-13 4.027613773e-10 1.353099076e-09 8.762083635e-10 9.403957504e-10 1.122895224e-09 1.037802811e-09 1.273398933e-09 1.012631124e-09 1.508328226e-09 1.566546809e-09 1.509511104e-09 2.38728743e-09 1.469928343e-09 2.055078737e-09 2.743782177e-09 1.926484706e-09 1.746120516e-09 2.05694334e-09 1.627449487e-09 1.230057963e-09 1.838891388e-09 2.069001912e-09 1.115445529e-09 2.23202947e-09 1.38706897e-09 2.236609259e-09 1.436351814e-09 5.327254013e-10 6.639451486e-10 7.428823935e-10 3.631583115e-10 5.428509215e-10 9.875126397e-10 6.087209555e-10 9.358687315e-10 5.624235554e-10 1.609314345e-09 1.217965077e-09 1.320851822e-09 1.43452116e-09 1.481545046e-09 1.521565303e-09 2.124607896e-09 1.314245959e-09 1.212906131e-09 5.300997246e-10 1.140504182e-09 1.553169184e-09 2.14514396e-09 1.269081465e-09 2.195569922e-09 2.092303929e-09 1.476069467e-09 8.494819272e-10 7.252260392e-10 1.572352249e-10 9.052587682e-10 7.267830736e-10 7.635691887e-10 1.021997332e-09 9.316325644e-10 1.106036697e-09 1.045094243e-09 1.071963173e-09 1.103313143e-09 7.168536544e-10 1.054706558e-09 1.222118013e-09 1.043048972e-09 9.317980453e-10 8.1263236e-10 7.652766384e-10 9.568638249e-10 1.077521908e-09 7.308518302e-10 1.550347643e-09 9.514429314e-10 7.712142235e-10 6.504390497e-10 1.226719094e-09 1.168952192e-09 1.307720632e-09 9.438693567e-10 4.557984281e-10 1.36372955e-09 6.209377712e-10 1.012989045e-09 1.016198728e-09 1.660284153e-09 9.411099377e-10 9.688802619e-10 9.614679802e-10 1.05202691e-09 8.154653979e-10 1.250151565e-09 5.514790859e-10 1.424332311e-09 1.331445959e-09 9.326248645e-10 8.620741044e-10 3.815717089e-10 1.199380348e-09 7.716915528e-10 1.018556564e-09 7.760211491e-10 2.295490638e-10 3.135499281e-10 2.172649134e-10 5.876797764e-10 4.584432804e-10 2.00980163e-10 5.52085226e-10 1.974045096e-10 2.570311459e-10 2.668748417e-10 8.107162683e-10 1.012770156e-09 4.236506999e-10 7.137161948e-10 6.898231755e-10 3.140048788e-10 3.274163947e-10 3.064809002e-10 4.497849352e-10 3.499960911e-10 4.604763182e-10 3.247783016e-10 3.142908709e-10 3.862487992e-10 5.029904805e-10 6.907661535e-10 4.36391016e-10 8.222294425e-10 +4.80042318e-10 3.149276559e-10 5.932836159e-10 3.871043638e-10 9.070371386e-10 3.573471192e-10 1.147073395e-10 5.308319673e-10 5.488649655e-10 6.370845709e-10 5.035878303e-10 4.40444213e-10 3.543891306e-10 6.161549196e-10 3.813246648e-10 6.113079886e-10 5.714322816e-10 3.233352113e-10 2.831574974e-10 3.385421947e-10 1.046871159e-09 3.309282354e-10 7.071318094e-10 5.139206763e-10 4.150563827e-10 2.894896455e-10 7.456573501e-10 1.041937202e-09 4.986675701e-10 6.50108399e-10 6.412411682e-10 8.676693227e-10 8.96557519e-10 2.700423014e-10 6.543770117e-10 5.541410363e-10 4.528456139e-10 1.483704505e-09 8.148870484e-10 7.528494916e-10 4.608892224e-10 6.704712812e-10 8.66408827e-10 7.670803607e-10 9.570226414e-10 7.535276699e-10 1.022256596e-09 8.152629575e-10 9.29046076e-10 4.155553041e-10 9.965314069e-10 1.188846192e-09 1.036916521e-09 8.047203783e-10 9.726269737e-10 6.025965957e-10 4.869710199e-10 1.125153967e-09 1.231190638e-09 6.841712016e-10 1.473432188e-09 6.417405741e-10 1.015164171e-09 5.213147547e-10 1.064316526e-09 1.191827034e-09 1.142742065e-09 1.069130972e-09 7.907642195e-10 9.62700415e-10 1.109440446e-09 9.616833423e-10 1.113993623e-09 6.723781805e-10 1.275905888e-09 6.946353041e-10 4.434292104e-10 6.225470777e-10 1.33769767e-09 1.132200739e-09 1.661292672e-09 9.934409955e-10 1.267154104e-09 2.277904232e-09 1.149171231e-09 1.789470164e-09 1.556919953e-09 1.588667711e-09 6.488839625e-10 1.254535969e-09 1.497111284e-09 1.088799849e-09 1.008881842e-09 1.075186557e-09 1.502112036e-09 2.218395637e-09 1.24286574e-09 1.080647118e-09 7.380726332e-10 6.307144564e-10 2.175081024e-10 5.369725785e-10 6.154131613e-10 6.257377767e-10 8.657591033e-10 8.632408035e-10 1.861781566e-09 1.102885188e-09 1.881040807e-09 2.187580343e-09 2.255750825e-09 2.600341166e-09 2.012709163e-09 3.416462768e-09 1.279288876e-09 1.648101151e-09 2.288356985e-09 2.583188061e-09 2.109780484e-09 1.961260943e-09 2.494127829e-09 2.40783243e-09 1.120966261e-09 1.407326737e-09 2.891324252e-09 1.705560121e-09 1.790790147e-09 1.491915197e-09 1.03816672e-09 1.767517254e-09 8.566567653e-10 1.478557027e-09 1.353450619e-09 3.336572573e-10 1.762571076e-10 1.100898997e-10 6.323991862e-11 1.935297803e-10 2.007795477e-10 1.282594793e-10 1.887002263e-10 1.361005885e-10 2.739920712e-10 1.474222537e-10 1.694921423e-10 6.126576228e-10 2.385843691e-10 3.510373526e-10 4.304587915e-10 2.456132978e-10 4.734541374e-10 3.102844774e-10 6.354347519e-10 3.687869745e-10 3.981598852e-10 0 7.038778805e-11 5.336320499e-11 1.538527348e-12 1.230420753e-10 1.702190562e-10 0 2.397436192e-10 8.037566655e-11 1.027898534e-10 2.375075647e-10 7.243846994e-10 1.105456666e-09 6.842556216e-10 1.674345037e-09 1.998530912e-09 2.072722235e-09 5.362627204e-10 1.696269751e-09 1.304418636e-09 1.596717744e-09 1.57292008e-09 1.872815874e-09 2.535001488e-09 2.344322272e-09 4.177753062e-09 3.575157941e-09 2.116110363e-09 3.141922767e-09 1.116243078e-09 1.79965252e-09 2.61218117e-09 1.69104368e-09 1.977131284e-09 2.193214863e-09 2.261648721e-09 2.38617699e-09 2.36636929e-09 2.419369889e-09 6.895161069e-10 7.989896707e-10 6.251768362e-10 3.102660643e-10 4.651168219e-10 4.281495263e-10 4.427703578e-10 9.639414732e-10 1.164851144e-09 1.400865591e-09 1.430011535e-09 2.213460755e-09 8.725666841e-10 1.294820689e-09 1.390777071e-09 1.701281318e-09 1.025976848e-09 1.641824991e-09 5.855886522e-10 2.44113268e-09 2.030232865e-09 1.695398716e-09 1.71833516e-09 2.904209874e-09 1.726678978e-09 1.062140118e-09 1.004321766e-09 9.031223846e-10 9.812504251e-10 9.403902879e-10 9.743836395e-10 1.004816113e-09 1.129695165e-09 1.367801877e-09 7.438557853e-10 9.916097196e-10 1.338027148e-09 7.876776204e-10 4.948865483e-10 7.630770462e-10 9.881912007e-10 8.540971104e-10 1.770924513e-09 1.147481484e-09 7.72257645e-10 1.333911704e-09 9.328413394e-10 1.012703129e-09 6.777924782e-10 6.565526794e-10 8.370689108e-10 5.65208683e-10 1.021938773e-09 1.014980731e-09 1.041075337e-09 6.041130494e-10 4.816470279e-10 1.156314439e-09 1.196356802e-09 8.811537481e-10 1.325816921e-09 5.294778704e-10 5.133022838e-10 7.087832848e-10 3.42657465e-10 9.069810981e-10 7.237606315e-10 9.150959566e-10 1.177728105e-09 1.188910543e-09 6.442458918e-10 9.393547946e-10 8.028854994e-10 6.340837524e-10 5.586734439e-10 6.132121617e-10 6.633746501e-10 7.379924944e-10 3.344616437e-10 2.428465797e-10 3.795476299e-10 2.720980311e-10 4.60574736e-10 2.497126544e-10 2.699628284e-10 9.890571165e-10 4.087015218e-10 6.072365554e-10 2.437117611e-10 5.467210138e-10 3.206517824e-10 7.692632443e-10 4.220113648e-10 4.653090018e-10 4.478768793e-10 4.348644296e-10 3.087970424e-10 2.670092604e-10 4.652670252e-10 2.228182867e-10 1.383725215e-10 3.727535923e-10 8.046379806e-10 5.940260524e-10 2.146942491e-10 5.262015944e-10 +3.598109018e-10 1.027608081e-10 6.157597158e-10 3.461208228e-10 7.544648768e-10 5.954791405e-10 7.130066043e-10 3.485249207e-10 4.931124996e-10 7.73658359e-10 8.072919444e-10 4.557997759e-10 1.096089032e-10 1.953686936e-10 6.133424334e-10 3.659663952e-10 2.87708277e-10 3.240327043e-10 4.626125423e-10 1.320605053e-10 6.660359081e-10 4.080079899e-10 5.132868965e-10 9.29598045e-10 5.687840759e-10 3.377900034e-10 1.506289652e-10 5.04251939e-10 7.020727742e-10 7.079970238e-10 6.93861931e-10 6.535893045e-10 9.451188857e-10 1.10171786e-09 9.411165798e-10 1.073842444e-09 9.06788795e-10 8.905161811e-10 6.286095776e-10 8.284692253e-10 7.363643459e-10 9.379492626e-10 1.286408123e-09 3.859020788e-10 1.401224535e-09 8.718929708e-10 9.625138666e-10 2.143896656e-09 4.240732712e-10 1.113632389e-09 7.589178287e-10 5.424734985e-10 4.878795982e-10 9.408135873e-10 1.160161504e-09 4.345732659e-10 7.233052413e-10 7.534517373e-10 7.650155542e-10 9.992245047e-10 9.744485672e-10 1.085032824e-09 6.372112006e-10 9.3945553e-10 9.912201895e-10 8.839879456e-10 7.340834998e-10 8.337332788e-10 1.096469191e-09 1.582806087e-09 8.9075773e-10 7.879392048e-10 1.119331355e-09 5.349583067e-10 1.440917402e-09 6.336606548e-10 7.002491295e-10 2.5550615e-10 9.017641662e-10 1.202607817e-09 1.306625719e-09 1.625983341e-09 1.613195308e-09 1.728260803e-09 2.302486178e-09 1.678434528e-09 9.961847487e-10 1.408405478e-09 1.221032809e-09 1.699497452e-09 1.153955358e-09 9.046583365e-10 1.099469884e-09 7.192715108e-10 1.365715886e-09 1.647640815e-09 1.275164351e-09 1.134450602e-09 7.808532689e-10 7.733637869e-10 3.736221607e-10 3.24921312e-10 3.770979028e-10 6.422748161e-10 5.353958974e-10 8.147242134e-10 6.872146418e-10 1.959995368e-09 1.773381881e-09 2.78070496e-09 2.312429362e-09 2.454188809e-09 1.339608838e-09 2.459437878e-09 1.854385961e-09 8.901555808e-10 2.526696462e-09 1.528835522e-09 2.073288812e-09 2.958103406e-09 2.517503876e-09 2.109664044e-09 1.818664743e-09 2.011809307e-09 1.775222621e-09 2.644315353e-10 1.761177849e-09 1.445463095e-09 1.126847238e-09 1.272786651e-09 2.199051383e-09 1.768737214e-09 1.217365493e-09 8.865093347e-10 4.635288541e-10 5.217739037e-10 1.540813211e-10 0 8.310838625e-28 1.338042105e-15 2.518223336e-10 3.503507075e-10 4.109142661e-11 2.527937015e-10 0 3.074663915e-10 1.428468167e-10 7.482277542e-16 2.385560709e-10 3.010597798e-10 2.621691441e-10 8.551949762e-11 3.094581431e-10 4.344711318e-13 1.768346132e-10 2.86758136e-10 5.029769981e-12 1.13984665e-10 1.563703464e-10 3.658036034e-10 1.045068697e-10 2.310485434e-10 2.406298447e-10 1.243484575e-10 3.642000439e-10 6.490180608e-10 7.397955742e-10 7.276652431e-10 1.51310457e-09 1.241517131e-09 9.315021719e-10 7.159543473e-10 2.041054676e-09 1.523817705e-09 2.090575092e-09 1.673816461e-09 1.467480039e-09 2.45493211e-09 2.26018687e-09 2.178693703e-09 3.167209498e-09 2.163010058e-09 1.962788096e-09 2.836616432e-09 2.243391662e-09 2.028628316e-09 1.272224231e-09 1.720351763e-09 1.300521707e-09 2.178028242e-09 1.84304028e-09 1.873166014e-09 1.856447002e-09 2.228940749e-09 6.022231262e-10 6.321867502e-10 1.171539798e-09 8.499319992e-10 1.788154016e-10 8.901410605e-10 5.296116568e-10 9.323129422e-10 1.181162451e-09 1.070087915e-09 1.196163791e-09 1.06171741e-09 1.101778067e-09 6.921705544e-10 2.03023371e-09 1.465821953e-09 1.963534248e-09 1.804045061e-09 9.523062236e-10 1.397756993e-09 1.522864203e-09 1.942527435e-09 2.321269037e-09 9.598957757e-10 1.787150069e-09 1.060634404e-09 1.374639937e-09 1.300465647e-09 1.478944287e-09 1.239145852e-09 7.128839085e-10 6.268669587e-10 4.004785849e-10 9.50401582e-10 1.086975218e-09 5.172601794e-10 5.744386801e-10 1.54818766e-09 1.045021375e-09 8.521920779e-10 1.004901862e-09 8.216239683e-10 9.307052993e-10 6.847940804e-10 8.788323802e-10 8.551228336e-10 6.019127122e-10 9.931346413e-10 3.908001304e-10 4.723626548e-10 8.092431243e-10 5.917747368e-10 1.037204294e-09 8.43944831e-10 5.962849313e-10 9.040853603e-10 7.234381311e-10 3.929953063e-10 1.106444996e-09 4.602013278e-10 6.362566918e-10 1.254803544e-09 1.009605132e-09 1.044198399e-09 5.081200257e-10 1.137004734e-09 1.007266938e-09 1.011657862e-09 1.173059104e-09 3.929386768e-10 1.224825533e-09 1.318926484e-09 7.629226079e-10 2.386621926e-10 4.739258683e-10 7.12006848e-10 5.361060988e-10 4.454189534e-10 5.825240934e-10 6.485845415e-10 6.772884766e-10 1.582657082e-10 6.589129138e-10 4.249060323e-10 1.139621479e-10 4.038591627e-10 3.119832534e-10 4.643847445e-10 2.485025006e-10 4.147125966e-10 9.528180566e-10 3.800930952e-10 3.574112224e-10 7.170014859e-10 4.039894943e-10 1.015667564e-09 4.839907231e-10 3.920078924e-10 3.467764194e-10 1.217766866e-10 7.020017661e-10 6.715289868e-10 1.124742938e-09 2.427841791e-10 3.151124091e-10 3.910872278e-10 +1.644873639e-10 3.011452143e-10 5.331702794e-10 3.559793249e-10 1.906460834e-10 2.634835855e-10 4.193138177e-10 1.752567205e-10 2.631651135e-10 5.081696626e-10 4.103473437e-10 2.030942525e-10 8.627369627e-10 1.015924803e-09 5.287961019e-10 6.931128694e-10 6.857789254e-10 3.676349047e-10 2.159942579e-10 3.920482303e-10 3.919613509e-10 3.454568817e-10 2.701229161e-10 4.245877502e-10 7.304423887e-10 5.122914789e-10 3.922868837e-10 4.856447953e-10 8.704767022e-10 1.173287239e-09 7.170826587e-10 4.829615699e-10 3.529608328e-10 1.453070443e-09 8.928644275e-10 3.738848183e-10 6.125632585e-10 1.13970486e-09 7.134898846e-10 5.998564266e-10 9.681819379e-10 5.614935082e-10 1.166457465e-09 5.098536311e-10 8.701500773e-10 1.048304892e-09 1.106946254e-09 8.648112653e-10 3.978394348e-10 6.816523555e-10 6.493789107e-10 7.224039589e-10 6.585337109e-10 1.226830536e-09 7.583633404e-10 2.145400252e-10 1.058735867e-09 5.616339971e-10 9.884614042e-10 5.6234165e-10 6.885124766e-10 1.733413544e-09 1.126830184e-09 6.89477757e-10 1.452134715e-09 9.274131105e-10 7.321974721e-10 7.894433467e-10 1.537513787e-09 7.925372739e-10 9.03081928e-10 5.522906675e-10 7.119098622e-10 5.071012963e-10 3.862597866e-10 3.635733218e-10 7.370320935e-10 6.319348884e-10 6.279584227e-10 1.207260593e-09 8.587056559e-10 1.124295684e-09 2.563716945e-09 2.465468496e-09 3.191516656e-09 1.063221917e-09 6.726150859e-10 1.694166187e-09 1.962018543e-09 1.514665702e-09 1.571446137e-09 1.050337942e-09 9.985769796e-10 1.281097788e-09 1.557662826e-09 1.032938901e-09 1.006277916e-09 8.499036036e-10 1.248812545e-09 8.123496021e-10 4.696069613e-10 3.931863e-10 3.4031391e-10 6.079954479e-10 9.426048471e-10 7.981330238e-10 1.535335877e-09 2.468985068e-09 1.729831316e-09 1.268721516e-09 2.554642858e-09 2.267956644e-09 3.109546083e-09 2.754813275e-09 1.757860777e-09 1.944165903e-09 1.904585894e-09 2.474507437e-09 2.294892708e-09 2.497663741e-09 4.326522491e-09 2.031710271e-09 2.426746878e-09 1.27174762e-09 1.439536322e-09 1.775335312e-09 2.046839999e-09 1.924632733e-09 1.462785979e-09 1.303865377e-09 9.02425535e-10 1.009682379e-09 1.556390578e-09 1.451525852e-09 9.904746743e-10 2.308887867e-10 1.44271611e-10 1.106561418e-10 0 3.552371666e-10 2.790757287e-10 9.087251021e-11 1.985204416e-10 1.692598523e-15 4.028717085e-10 1.476253487e-10 2.578987573e-10 2.98387141e-10 1.391203984e-10 8.159776724e-11 2.583430393e-10 5.236555362e-11 2.609471257e-10 2.494110269e-12 3.243247712e-10 1.132590363e-29 4.88914719e-10 2.889328552e-10 3.831811223e-10 1.824915301e-10 7.568318604e-11 7.096946132e-11 1.126766709e-10 4.081125412e-10 5.228465038e-10 1.098644702e-09 6.367858049e-10 8.394527394e-10 4.2605239e-10 1.909819908e-09 1.964557147e-09 1.982657684e-09 1.874800242e-09 1.153454905e-09 1.773825456e-09 1.656854578e-09 1.63668932e-09 1.37686608e-09 2.824287067e-09 2.470229455e-09 3.641077289e-09 2.222833745e-09 1.734552824e-09 2.315981406e-09 2.048000245e-09 2.115729537e-09 2.031578239e-09 2.170067598e-09 3.141111876e-09 2.108087947e-09 2.134987514e-09 2.580501633e-09 2.443598247e-09 1.782350384e-09 1.192800485e-09 6.581455049e-10 5.48702062e-10 3.114535739e-10 4.43795889e-10 8.396045114e-10 1.259494124e-09 1.223118019e-09 9.395884957e-10 1.904399526e-09 1.249341334e-09 1.453053982e-09 1.291554191e-09 1.675536901e-09 2.176342463e-09 6.834301431e-10 9.503350567e-10 4.172898472e-10 2.137450202e-09 1.283224352e-09 1.131460651e-09 1.267264014e-09 1.737948344e-09 1.425167005e-09 7.368412142e-10 1.056100219e-09 5.731385825e-10 4.39581761e-10 1.003003695e-09 5.889675116e-10 5.912587222e-10 1.049486878e-09 1.030538127e-09 1.458638834e-09 8.596663692e-10 9.660601274e-10 1.171909888e-09 1.113804963e-09 7.360493455e-10 7.862051248e-10 9.553038479e-10 1.186449832e-09 9.601821874e-10 1.050772348e-09 1.052274464e-09 9.092098232e-10 1.234957039e-09 7.115567783e-10 6.233808237e-10 9.830745903e-10 5.255689554e-10 1.247817869e-09 8.444409916e-10 5.445108683e-10 7.890256566e-10 9.472197505e-10 7.927649057e-10 1.539520627e-09 1.002472051e-09 7.281941583e-10 1.009508562e-09 1.023954596e-09 1.289753299e-09 5.966824607e-10 5.953321037e-10 1.210884141e-09 6.457962629e-10 6.908276748e-10 7.973668401e-10 7.146700956e-10 4.173520559e-10 8.89876666e-10 8.336240513e-10 8.071440042e-10 8.101494273e-10 2.593937241e-10 4.502197293e-10 7.106065668e-10 3.743648347e-10 4.573582059e-10 3.183785649e-10 6.302761976e-10 6.335515928e-10 3.797315709e-10 4.447038464e-10 2.891595945e-10 3.337540334e-10 4.216155216e-10 2.895832499e-10 2.86489812e-10 2.632076581e-10 5.678563918e-10 4.278561285e-10 2.027865326e-10 4.104979356e-10 4.919790557e-10 3.300944834e-10 5.615977524e-10 4.361738905e-10 2.634771618e-10 4.216596276e-10 7.436739879e-10 5.915467952e-10 3.734217891e-10 4.564702587e-10 6.046438569e-10 +2.143852121e-10 3.583300865e-10 4.176743059e-10 2.045772046e-10 7.436847747e-10 4.213667257e-10 6.592012177e-10 5.298507129e-10 1.548898088e-10 4.27685507e-10 5.961886225e-10 2.973513e-10 3.472580913e-10 7.120441492e-10 2.983556719e-10 4.332277317e-10 4.205537109e-10 5.937824634e-10 3.076565701e-10 5.355918112e-10 3.488441395e-10 5.018853166e-10 3.344658264e-10 3.287962048e-10 2.870997111e-10 6.287262546e-10 2.138880575e-10 4.097321085e-10 3.152209572e-10 9.264523343e-10 6.086513438e-10 1.025575171e-09 7.975286772e-10 1.231682541e-09 7.518869492e-10 1.168046021e-09 9.847748427e-10 6.221453491e-10 8.420407131e-10 7.158604654e-10 7.375519989e-10 8.645070894e-10 8.660131053e-10 7.970554438e-10 1.108310609e-09 9.068055221e-10 1.047523451e-09 6.2984141e-10 9.793620802e-10 7.446973705e-10 9.508083416e-10 7.640485144e-10 1.007926507e-09 8.407830816e-10 5.140150959e-10 3.993833151e-10 6.079523575e-10 6.791407887e-10 7.139064955e-10 1.170552554e-09 1.568760034e-09 1.347350618e-09 6.816452676e-10 7.806763605e-10 8.778586032e-10 6.034834808e-10 1.201015105e-09 4.844319927e-10 1.017157003e-09 1.580637093e-09 9.07525747e-10 8.431161298e-10 1.354264363e-09 6.956915648e-10 1.161231163e-09 6.760759418e-10 6.051695766e-10 5.290098991e-10 7.706974273e-10 7.095662135e-10 1.39408453e-09 6.806879959e-10 1.089236843e-09 1.472899491e-09 1.564601407e-09 1.189570514e-09 1.436232805e-09 1.332346594e-09 1.770091245e-09 1.273637299e-09 1.907374157e-09 1.414760174e-09 9.668732853e-10 1.381398748e-09 6.961368914e-10 1.004515753e-09 1.205598505e-09 9.229907087e-10 1.211689622e-09 1.052520221e-09 6.115631251e-10 3.765838701e-10 9.822164786e-11 6.3035724e-10 5.317346248e-10 5.028385559e-10 1.293512799e-09 1.639105262e-09 2.10665773e-09 2.032345726e-09 1.287981864e-09 1.474912916e-09 1.540441817e-09 2.332053232e-09 2.216591293e-09 1.894643003e-09 1.059457047e-09 2.848177965e-09 1.717930062e-09 3.765811781e-09 2.745130272e-09 3.695892285e-09 1.650497144e-09 1.546383176e-09 2.302695761e-09 1.955988771e-09 1.582258103e-09 1.809405379e-09 1.731308648e-09 1.802952797e-09 1.832983667e-09 1.409250915e-09 1.18218488e-09 1.481202898e-09 1.502531246e-09 9.481164517e-10 6.849181293e-10 8.734615548e-10 4.668035995e-10 3.582960214e-10 2.064466847e-10 8.123784763e-11 2.965870038e-10 4.590319242e-11 1.484489109e-12 2.182669586e-10 3.126391201e-28 8.798165907e-11 2.360761916e-10 1.793133235e-10 1.001647126e-10 1.276140714e-10 2.755001932e-10 2.933558035e-10 1.366798619e-25 2.048311958e-10 3.707795298e-11 3.928170026e-17 9.486483177e-11 1.704949689e-10 2.760902689e-10 5.570221651e-10 3.362679883e-10 1.049435565e-09 1.044170402e-09 8.670776089e-10 1.084922079e-09 1.133588658e-09 1.15878318e-09 1.329789366e-09 5.692538005e-10 1.430476856e-09 1.00773218e-09 1.670853443e-09 1.854466753e-09 1.687336077e-09 1.547246929e-09 2.466016785e-09 3.160344626e-09 1.654643825e-09 2.214963216e-09 1.534207883e-09 1.452662882e-09 2.685100459e-09 2.137303707e-09 2.208569886e-09 2.465122421e-09 2.04447679e-09 2.23826653e-09 2.487936451e-09 3.392369082e-09 1.404104893e-09 2.038592505e-09 1.020834072e-09 8.9576493e-10 1.054337705e-09 5.261750958e-10 2.147591787e-10 7.11445342e-10 4.465037297e-10 9.591202786e-10 1.312635318e-09 1.021629136e-09 1.150496382e-09 1.586299627e-09 1.154360124e-09 2.142301034e-09 1.223259651e-09 1.122880194e-09 1.437005617e-09 1.499104906e-09 1.496373271e-09 1.855055418e-09 1.120769712e-09 1.375578513e-09 8.121534857e-10 2.146891921e-09 1.207171439e-09 1.63350455e-09 1.406167073e-09 9.398626637e-10 9.008225005e-10 3.417551061e-10 1.062854024e-09 1.331936542e-09 9.536299625e-10 5.90234406e-10 9.788429249e-10 1.065450046e-09 9.770988031e-10 1.169958118e-09 7.415385538e-10 1.158750672e-09 7.795496061e-10 7.066943124e-10 5.464488155e-10 8.248610498e-10 6.67983403e-10 1.073013311e-09 8.718457194e-10 1.308243632e-09 5.52466353e-10 8.358891705e-10 5.511650893e-10 8.515882765e-10 5.448427524e-10 4.542693724e-10 7.612356518e-10 6.471049653e-10 1.208421864e-09 1.477033385e-09 1.091486215e-09 1.343696788e-09 9.51141205e-10 8.404565379e-10 6.515288797e-10 1.028581658e-09 6.066274442e-10 1.098853987e-09 5.491909911e-10 5.715684448e-10 1.359549792e-09 6.520758619e-10 1.155483061e-09 1.339894676e-09 4.644476318e-10 1.212260363e-09 4.815247084e-10 6.021074541e-10 8.628561351e-10 4.923465387e-10 8.996246271e-10 5.655124191e-10 5.960371108e-10 6.120152932e-10 2.406713688e-10 6.207233794e-10 8.629544225e-10 2.433763392e-10 3.700363076e-10 5.555481072e-10 3.480064987e-10 2.758306301e-10 4.185794038e-10 2.020518423e-10 5.021378939e-11 2.385271285e-10 3.569078166e-10 9.814049911e-10 4.158035414e-10 6.857397258e-10 6.904745444e-10 8.171057855e-10 5.122879421e-10 6.716006927e-10 3.982886786e-10 2.486778598e-10 2.392159538e-10 5.210291797e-10 4.468441574e-10 +6.40164359e-10 5.540034061e-10 5.930820358e-10 7.560599118e-10 3.627558324e-10 3.848290907e-10 4.349261277e-10 4.103785079e-10 3.725409875e-10 2.257052654e-10 2.062085983e-10 5.032464135e-10 2.760910179e-10 4.047112179e-10 1.245639481e-10 2.26887182e-10 5.839747007e-10 5.822510335e-10 1.768397578e-10 3.773503571e-10 2.342242187e-10 4.348416639e-10 6.815506478e-10 3.397776487e-10 2.44238595e-10 5.067793344e-10 4.637149598e-10 4.102823568e-10 5.976523782e-10 7.28134626e-10 5.75435347e-10 6.979771223e-10 7.652580552e-10 5.522904903e-10 7.607845762e-10 9.241235458e-10 1.527133046e-09 7.518371357e-10 7.040416525e-10 9.544806132e-10 1.411461695e-09 7.098028549e-10 7.417279732e-10 7.732261162e-10 1.016773683e-09 1.03490172e-09 5.353176162e-10 1.27633172e-09 5.304968624e-10 9.254328147e-10 1.39326211e-09 8.041356079e-10 9.000039684e-10 1.063542757e-09 5.470377001e-10 1.424967583e-09 6.367159857e-10 1.259489132e-09 4.44491521e-10 6.622869367e-10 5.483266558e-10 1.061221449e-09 8.309713912e-10 8.833558285e-10 6.180212293e-10 8.36120886e-10 5.687658217e-10 6.035239928e-10 9.241365358e-10 4.772394619e-10 1.459047781e-09 1.103159724e-09 9.406140649e-10 1.227942365e-09 1.412674676e-09 4.864323501e-10 6.584894995e-10 4.458573801e-10 9.767336685e-10 1.089007025e-09 1.49323467e-09 1.265472926e-09 9.753408755e-10 1.635183358e-09 1.754196652e-09 1.572294141e-09 1.106456923e-09 1.829882381e-09 1.496910383e-09 1.664676603e-09 1.147989962e-09 9.130513451e-10 8.176075184e-10 1.522767038e-09 2.07813044e-09 1.15936999e-09 1.635129397e-09 1.238520727e-09 1.279118044e-09 7.937573689e-10 6.658955167e-10 7.8252729e-10 4.397091434e-10 4.48352591e-10 1.032286992e-09 6.45885013e-10 7.676645776e-10 1.253947659e-09 1.551751937e-09 1.811687595e-09 1.224559468e-09 2.213473935e-09 2.048007646e-09 3.027455359e-09 1.563614905e-09 1.180945651e-09 1.985980332e-09 1.467474887e-09 1.93696462e-09 2.352738247e-09 2.759266261e-09 2.071941111e-09 2.722047853e-09 1.861219178e-09 1.17544175e-09 1.836168069e-09 1.317378179e-09 1.383253548e-09 2.279484381e-09 2.319273263e-09 1.852027604e-09 2.320098255e-09 2.236301029e-09 1.146108758e-09 1.398460162e-09 1.228220204e-09 1.374278882e-09 1.39836582e-09 3.490382695e-10 4.405933667e-10 3.98471841e-10 1.509366523e-11 0 8.345719102e-16 1.655155649e-10 2.519617024e-10 1.721267922e-19 1.782948355e-10 0 2.693812815e-11 8.680187911e-11 2.421090084e-10 3.827567396e-25 4.923635265e-11 9.095461183e-11 3.372848555e-12 4.480759294e-10 1.607872867e-10 1.621288424e-10 2.547001198e-10 5.008825587e-10 3.544975502e-10 8.968938999e-10 1.174367668e-09 7.539609124e-10 8.248456678e-10 1.268747343e-09 1.143600153e-09 1.496808998e-09 1.781407767e-09 8.380198417e-10 1.449411778e-09 1.821213657e-09 1.197578803e-09 1.230712791e-09 2.249097387e-09 1.789033788e-09 2.28534345e-09 2.418822638e-09 3.650754275e-09 3.403821752e-09 1.797915843e-09 3.488140414e-09 1.855444383e-09 1.529035266e-09 8.896345687e-10 1.564603033e-09 4.096579763e-09 2.422993815e-09 1.126627948e-09 2.924199813e-09 2.31406496e-09 1.300855617e-09 4.484220088e-10 7.286222248e-10 2.61888522e-10 6.085549e-10 3.162378501e-10 5.632669305e-10 3.275685592e-10 1.01673945e-09 1.525151754e-09 1.308900247e-09 1.296033584e-09 1.112742888e-09 7.537339037e-10 2.072608236e-09 1.153759485e-09 1.189920745e-09 1.727655715e-09 2.302413098e-09 1.533560111e-09 2.075844006e-09 1.466395354e-09 1.663372859e-09 8.243720888e-10 1.627915588e-09 1.646034428e-09 1.294929659e-09 1.13643024e-09 1.25609384e-09 8.927177204e-10 8.349012168e-10 6.463270439e-10 4.526768309e-10 4.644261566e-10 1.324560721e-09 1.17012123e-09 9.824434146e-10 1.268574437e-09 1.08154677e-09 4.879970721e-10 1.15948632e-09 1.045658704e-09 8.602393658e-10 7.997021387e-10 1.269221139e-09 1.302041371e-09 1.230288695e-09 1.283707398e-09 4.848777692e-10 9.236357888e-10 3.873300977e-10 1.46667781e-09 9.225272581e-10 4.843426016e-10 1.394852429e-09 1.192936132e-09 7.143379542e-10 6.513510519e-10 8.010803403e-10 8.8618369e-10 7.184791829e-10 4.876614921e-10 9.366362974e-10 1.145151163e-09 9.236006879e-10 6.91584668e-10 2.812648438e-10 9.202934389e-10 3.070395953e-10 5.204266519e-10 1.252408637e-09 5.897597547e-10 3.260085323e-10 8.364621761e-10 8.181029659e-10 1.055021358e-09 3.867859663e-10 5.510559555e-10 9.412785695e-10 1.038794525e-09 1.021350076e-09 7.675169184e-10 4.925603114e-10 5.574976224e-10 2.992796559e-10 4.73768028e-10 5.232824533e-10 2.967266905e-10 5.359573892e-10 2.768067049e-10 5.458958132e-10 2.090593638e-10 5.837555727e-10 4.806881146e-10 2.564459732e-10 5.413234708e-10 1.730969865e-10 4.000180109e-10 3.516130347e-10 7.324281823e-10 3.413195673e-10 9.618469063e-10 2.582106878e-10 4.574077819e-10 3.49965178e-10 3.421776327e-10 3.729844073e-10 3.546606539e-10 +5.628695446e-10 3.399530396e-10 3.170346404e-10 2.25548413e-10 4.352147216e-10 2.819545119e-10 4.000466376e-10 4.952398325e-10 4.243164969e-10 1.609935e-10 4.583054088e-10 5.530568908e-10 2.880482008e-10 7.705609666e-10 2.789034938e-10 1.024938919e-09 2.722969882e-10 3.38521267e-10 4.727806613e-10 1.120034265e-09 2.510259019e-10 2.726069585e-10 1.652045575e-10 8.600005774e-10 2.055777825e-10 4.405205018e-10 6.081636917e-10 6.283392651e-10 2.870298731e-10 5.015123394e-10 3.645625689e-10 7.42924517e-10 6.287818613e-10 1.183784145e-09 1.008284322e-09 8.003321968e-10 6.339128971e-10 5.193523461e-10 8.313172712e-10 1.045127903e-09 8.610611508e-10 9.332225861e-10 7.195773596e-10 6.62242571e-10 9.603563611e-10 1.011673685e-09 9.532922082e-10 5.879188768e-10 9.275444881e-10 8.54673044e-10 9.123379339e-10 1.152722865e-09 7.248906256e-10 8.252020173e-10 9.591325974e-10 4.979640197e-10 9.145148764e-10 4.884517297e-10 7.65304049e-10 7.29822482e-10 4.906753985e-10 6.020125485e-10 1.059180031e-09 1.715968108e-09 9.027611515e-10 6.932738758e-10 7.142218845e-10 7.919425586e-10 1.061697575e-09 6.720166925e-10 9.028759575e-10 5.394180254e-10 6.901268131e-10 4.863863394e-10 4.444137142e-10 4.577969279e-10 7.408579038e-10 9.658541804e-10 5.11175115e-10 9.947490729e-10 1.802981695e-09 1.01419195e-09 6.701239927e-10 1.922596062e-09 1.499977227e-09 1.52054631e-09 1.085937779e-09 1.145636437e-09 1.352391999e-09 1.540698392e-09 2.181723448e-09 1.174841556e-09 2.043186885e-09 1.149279181e-09 1.057297547e-09 1.235372219e-09 1.115786846e-09 1.42577479e-09 1.69634003e-09 1.225157006e-09 9.839446721e-10 4.612343768e-10 3.17427027e-10 1.596503357e-10 7.945886329e-10 8.66349256e-10 6.22639036e-10 2.385430064e-09 1.364424697e-09 2.948704398e-09 2.654070667e-09 2.367605397e-09 2.138055721e-09 1.735655991e-09 1.429873163e-09 1.291632941e-09 1.810889342e-09 1.807232976e-09 1.305538214e-09 2.257249296e-09 2.287671541e-09 2.335705872e-09 2.2256528e-09 3.09916982e-09 2.15610511e-09 1.480773028e-09 2.097117656e-09 2.16780697e-09 7.454583971e-10 1.723241606e-09 1.764572812e-09 9.858899339e-10 1.237880411e-09 1.61836003e-09 1.105330672e-09 2.051509637e-09 1.22894777e-09 9.517612708e-10 6.869417162e-10 6.336219382e-10 3.855135895e-10 7.575646627e-11 7.858581157e-10 9.573866108e-11 8.367975076e-11 1.43952923e-10 2.439895936e-10 3.383515176e-19 9.288514729e-11 6.033770417e-11 1.740837278e-10 7.528043381e-11 9.930937284e-11 8.909944554e-15 2.693952429e-10 4.111009088e-10 2.693323775e-28 3.474622597e-10 3.981468776e-10 3.206836752e-10 7.91248724e-10 9.495138354e-10 5.826543084e-10 9.954832607e-10 1.804330954e-09 1.143156016e-09 1.461308466e-09 1.972890042e-09 1.363990161e-09 9.146466865e-10 8.892447935e-10 1.721079711e-09 1.422928566e-09 1.439724044e-09 8.290896048e-10 1.773147191e-09 3.712873198e-09 3.683362766e-09 2.122203383e-09 2.04926452e-09 2.927490588e-09 8.089370092e-10 1.119865637e-09 1.238870813e-09 1.843002726e-09 1.240981475e-09 1.784434176e-09 2.239773247e-09 1.843200397e-09 2.577665879e-09 2.258596851e-09 3.100185341e-09 1.354255955e-09 7.431969315e-10 9.264244003e-10 3.126516724e-10 3.163439421e-10 6.982279796e-10 4.941414009e-10 7.895508545e-10 1.063823027e-09 6.427842287e-10 1.003296772e-09 1.467234255e-09 1.180111554e-09 1.943571456e-09 1.184292862e-09 6.532440604e-10 1.868686291e-09 6.481633696e-10 1.739433859e-09 1.462948835e-09 2.012418302e-09 2.150652109e-09 1.159589941e-09 2.006059899e-09 1.767221793e-09 1.484034662e-09 9.384313046e-10 1.200159924e-09 6.978073789e-10 6.945238505e-10 1.186465682e-09 3.013227287e-10 8.821538139e-10 7.864425741e-10 7.900450072e-10 8.200686306e-10 1.000180705e-09 1.187584198e-09 7.181756957e-10 1.087581628e-09 9.194060061e-10 5.22279933e-10 8.968963028e-10 1.135248877e-09 8.575581672e-10 8.487987136e-10 7.076340545e-10 1.185576273e-09 1.028772494e-09 8.032435614e-10 6.402398167e-10 4.15354407e-10 6.548054173e-10 3.945897677e-10 1.37021423e-09 8.943095381e-10 7.870493222e-10 7.538841551e-10 4.839039013e-10 8.133863628e-10 6.585364925e-10 1.110368513e-09 1.397219894e-09 6.611098094e-10 3.479974767e-10 4.600619053e-10 6.70958768e-10 7.940633733e-10 3.911784462e-10 1.019281986e-09 8.071430839e-10 1.202528777e-09 6.457897366e-10 1.023897278e-09 8.939023755e-10 8.086837486e-10 8.54655443e-10 1.075095679e-09 7.572147892e-10 4.344360023e-10 6.71470405e-10 8.691387079e-10 4.977207443e-10 4.926112601e-10 5.25398593e-10 6.191234789e-10 4.415168244e-10 2.085791557e-10 7.529266011e-10 5.107278431e-10 1.598178787e-10 3.840012344e-10 4.490196004e-10 3.264828703e-10 5.484683547e-10 5.650181604e-10 2.442298371e-10 2.263263323e-10 4.72178131e-10 4.002999461e-10 3.216352824e-10 4.58518223e-10 5.430336302e-10 3.423309116e-10 4.581391944e-10 6.17636168e-10 6.536839231e-10 1.892079882e-10 +1.65165571e-10 3.594496973e-10 4.159557485e-10 2.707322342e-10 2.824439177e-10 8.83662048e-10 4.404540567e-10 3.083980254e-10 2.201008387e-10 3.064846091e-10 4.68054983e-10 5.461264679e-10 6.49327369e-10 6.244403135e-10 7.566133829e-10 5.35831075e-10 2.061450865e-10 3.714811681e-10 3.841218671e-10 6.004509243e-10 3.730628152e-10 1.436919167e-10 4.587886197e-10 3.544191787e-10 6.064934806e-10 6.613744361e-10 4.799883418e-10 4.476122155e-10 6.056070158e-10 6.80868038e-10 8.303721283e-10 8.007475991e-10 8.936534305e-10 8.018787695e-10 1.013888359e-09 8.232446849e-10 1.030689121e-09 7.22995711e-10 8.488253025e-10 9.320582133e-10 9.66879802e-10 6.126597925e-10 1.482285636e-09 9.839414048e-10 4.047599755e-10 1.131784344e-09 1.149955191e-09 7.757333112e-10 4.016376761e-10 7.21382268e-10 8.072493748e-10 1.306305677e-09 5.088402057e-10 3.928361349e-10 5.630445473e-10 7.896779947e-10 4.100803436e-10 5.301736867e-10 1.086818425e-09 8.625026348e-10 9.816608645e-10 6.938788847e-10 5.385555697e-10 7.653606582e-10 6.77821198e-10 1.035659232e-09 8.001274159e-10 8.137811059e-10 9.629582337e-10 1.270845748e-09 9.815693923e-10 6.037006764e-10 9.381216895e-10 2.079865527e-10 9.00574149e-10 6.228241738e-10 6.739969716e-10 5.8204591e-10 1.022154513e-09 1.377477261e-09 9.024999385e-10 1.4662363e-09 1.437439919e-09 9.080289873e-10 1.862455986e-09 1.095873207e-09 1.031499828e-09 1.490958064e-09 2.061755646e-09 1.342162994e-09 1.232276538e-09 1.339589817e-09 8.680481475e-10 1.119593324e-09 1.178455024e-09 6.200059843e-10 9.376627606e-10 1.250748467e-09 1.229226391e-09 4.673115971e-10 6.040459536e-10 6.850205129e-10 3.406049819e-10 3.970669652e-10 5.751864217e-10 3.167810979e-10 1.24239432e-09 1.784790107e-09 2.523167004e-09 1.251356309e-09 2.147855566e-09 2.466563581e-09 1.125191057e-09 1.000025121e-09 2.847340445e-09 1.484752627e-09 9.502000852e-10 2.718722783e-09 1.997896366e-09 1.185314085e-09 2.357167607e-09 3.214775772e-09 3.517155193e-09 1.993582608e-09 3.44834913e-09 2.06021831e-09 1.41498114e-09 2.157766385e-09 1.511426994e-09 1.142494132e-09 1.3953423e-09 9.061171894e-10 1.458640276e-09 9.986868702e-10 1.564233469e-09 1.063114111e-09 7.089189032e-10 1.801571422e-09 1.738794632e-09 9.933363826e-10 1.02846688e-09 6.177030567e-10 4.565562926e-10 7.136758811e-10 8.542513853e-11 7.565493785e-10 3.726039854e-10 1.263504894e-10 4.694883379e-10 2.493815581e-10 1.728646727e-10 5.284371075e-10 3.134896677e-10 3.027649367e-10 3.805502036e-10 7.006497232e-10 3.453825375e-10 6.831971691e-10 9.976362758e-10 8.946661507e-10 3.7896532e-10 1.395510203e-09 9.599750192e-10 1.593337668e-09 1.841583151e-09 1.110311109e-09 1.82154642e-09 1.292825967e-09 1.248147507e-09 1.565055032e-09 1.739335701e-09 1.813469783e-09 1.987953011e-09 1.752082677e-09 1.65079619e-09 2.158042606e-09 2.217388845e-09 2.660252023e-09 2.335373057e-09 2.723457689e-09 2.135014637e-09 1.885017486e-09 8.829990392e-10 2.324704008e-09 2.169175422e-09 2.086938428e-09 2.791265897e-09 1.438134672e-09 1.318850769e-09 2.878415058e-09 9.180480739e-10 2.57016249e-09 1.017045835e-09 8.294604229e-10 6.977141914e-10 4.440983568e-10 2.538655741e-10 5.549649387e-10 7.266512933e-10 5.60518426e-10 9.120095167e-10 1.034724094e-09 8.892830828e-10 8.258820923e-10 1.409448787e-09 8.802302636e-10 1.06328473e-09 1.860552165e-09 9.335380393e-10 1.434923353e-09 2.144625577e-09 1.15346366e-09 1.723771449e-09 1.166527399e-09 1.215601334e-09 1.648073409e-09 1.683287403e-09 2.125368275e-09 9.324843849e-10 1.574004948e-09 6.649192396e-10 6.186036353e-10 9.700239819e-10 6.976755111e-10 4.612020844e-10 5.781271844e-10 4.695547987e-10 1.030017676e-09 3.297099333e-10 8.045335263e-10 1.036099975e-09 7.430421531e-10 9.454196885e-10 4.844310406e-10 1.034458284e-09 6.857576454e-10 7.165978241e-10 8.624706134e-10 4.992064154e-10 1.057345647e-09 8.137884748e-10 5.207453813e-10 8.548970534e-10 9.071710875e-10 9.049343998e-10 6.803717589e-10 4.411602582e-10 4.744013579e-10 7.959634389e-10 5.016241886e-10 9.638967917e-10 1.17051974e-09 1.047326272e-09 8.078905711e-10 5.241198913e-10 8.145751454e-10 9.255386707e-10 9.201388973e-10 8.321924829e-10 1.180364105e-09 5.865063128e-10 9.677213603e-10 7.750380192e-10 6.954084503e-10 9.910978425e-10 4.944237256e-10 5.940636573e-10 9.69353874e-10 1.01247933e-09 6.71640787e-10 9.757331201e-10 6.546527241e-10 3.601637256e-10 5.494407759e-10 6.886581512e-10 4.904338709e-10 3.840122019e-10 4.206015846e-10 1.560716161e-10 5.009677617e-10 4.527274457e-10 3.562885248e-10 6.446487151e-10 4.277100384e-10 1.967295436e-10 2.893929038e-10 3.670471362e-10 4.8045015e-10 4.508051794e-10 3.895984716e-10 1.264207258e-10 4.163657631e-10 3.07812009e-10 3.043232698e-10 4.682306735e-10 3.222978412e-10 4.876479728e-10 4.456615114e-10 5.619182556e-10 6.502191975e-10 +6.885498807e-10 1.981735039e-10 3.786587922e-10 3.685863894e-10 8.181362858e-10 5.942934413e-10 3.44370026e-10 2.446467076e-10 1.980747673e-10 3.107154629e-10 4.251122216e-10 7.458689062e-10 5.862506155e-10 4.837376754e-10 9.534801517e-10 1.014810429e-10 4.456075029e-10 3.954602734e-10 6.110459303e-10 4.018732769e-10 3.220589028e-10 5.281021569e-10 3.288255692e-10 9.214868593e-10 1.689223101e-10 3.903531412e-10 5.350310715e-10 3.582168514e-10 3.457227436e-10 1.007621219e-09 5.947820619e-10 5.256857784e-10 9.147960092e-10 3.971850168e-10 1.288747701e-09 7.95115702e-10 4.966566156e-10 8.289506096e-10 6.097204736e-10 5.625185498e-10 8.121984669e-10 1.176302064e-09 1.576426394e-09 6.708681827e-10 9.880291862e-10 7.564418639e-10 5.122516003e-10 6.56039802e-10 9.405050499e-10 1.273369882e-09 8.428963398e-10 1.054198278e-09 1.092681847e-09 1.068858367e-09 5.46590266e-10 7.616386537e-10 5.147083793e-10 8.691526885e-10 1.235694723e-09 1.244408387e-09 1.5012636e-09 1.055015038e-09 1.092587602e-09 7.669421365e-10 6.923668793e-10 8.682955166e-10 5.849363976e-10 7.58628717e-10 5.838195903e-10 9.40713777e-10 8.326868745e-10 6.102329491e-10 7.627611497e-10 9.172924319e-10 9.981506176e-10 1.006812135e-09 8.163349178e-10 6.272339352e-10 7.967059978e-10 1.637542254e-09 1.083359446e-09 1.175324799e-09 1.996143855e-09 1.336433919e-09 1.041860028e-09 1.059575351e-09 1.170084893e-09 1.384817064e-09 8.599511166e-10 1.299472649e-09 1.314669103e-09 6.238138399e-10 1.747113177e-09 7.099224946e-10 1.483103821e-09 8.598918476e-10 1.237842384e-09 1.430133353e-09 1.365775935e-09 3.794469247e-10 1.513636657e-09 1.002836949e-09 3.106401419e-10 2.907041838e-10 6.126458983e-10 8.110802316e-10 8.953764807e-10 9.06156825e-10 1.783912611e-09 1.670859177e-09 1.921953862e-09 2.02358249e-09 1.329746578e-09 2.594645441e-09 2.356491158e-09 2.691918982e-09 1.714649759e-09 1.31235251e-09 1.826742909e-09 1.085401326e-09 1.758337805e-09 1.545434247e-09 2.287123525e-09 1.899836201e-09 2.219920865e-09 2.096285919e-09 1.601000275e-09 1.89781667e-09 1.567745551e-09 1.719968753e-09 1.481564439e-09 1.450113147e-09 1.495219614e-09 1.692174782e-09 7.248379778e-10 1.115802216e-09 2.226987224e-09 1.406993031e-09 1.763584422e-09 1.051543215e-09 1.434377603e-09 8.167505588e-10 1.117844644e-09 7.783881721e-10 3.960378329e-10 5.882901989e-10 6.397281388e-10 4.242030778e-10 2.842414083e-10 6.5979427e-10 3.519915598e-10 4.191970451e-10 6.698021212e-10 8.885241794e-10 8.15291408e-10 1.129986885e-09 6.687178694e-10 7.818568609e-10 1.024062051e-09 9.688905985e-10 1.678760024e-09 1.233866975e-09 1.349155975e-09 2.207885963e-09 1.574187193e-09 8.450147899e-10 1.90826568e-09 6.592449537e-10 7.527203681e-10 2.025885174e-09 1.156842203e-09 1.313129562e-09 1.507578701e-09 4.998072792e-10 2.168746799e-09 2.044965016e-09 2.496485853e-09 3.016220394e-09 2.957271787e-09 1.886323885e-09 2.551151172e-09 1.653965902e-09 2.201079057e-09 2.224595178e-09 1.785197154e-09 2.395515738e-09 2.09147612e-09 2.797605858e-09 2.057164887e-09 2.200589237e-09 1.29159317e-09 1.773619137e-09 8.370388213e-10 1.27418057e-09 8.401570922e-10 2.410104204e-10 3.525299264e-10 5.686025274e-10 9.746380056e-10 4.518014828e-10 6.144763154e-10 9.672691025e-10 1.124773124e-09 9.332633965e-10 1.235150228e-09 1.395434027e-09 1.201215892e-09 1.263443602e-09 1.599694429e-09 1.084565652e-09 9.596070007e-10 1.11208087e-09 1.579246621e-09 2.00391264e-09 1.784526638e-09 1.153186588e-09 1.338077599e-09 1.563409208e-09 9.939016521e-10 1.737161243e-09 1.355405384e-09 1.054092363e-09 8.292419772e-10 6.842050053e-10 7.408850687e-10 1.182543889e-09 7.898107317e-10 1.543746016e-09 9.505292971e-10 7.564959888e-10 9.441229268e-10 1.056426539e-09 1.001668827e-09 7.487394331e-10 8.706252306e-10 7.945884806e-10 1.145769181e-09 6.077423046e-10 1.04013783e-09 8.901797381e-10 8.216850844e-10 5.198597799e-10 1.977786661e-10 6.947587908e-10 1.238116778e-09 6.900619363e-10 1.19870748e-09 8.081362348e-10 7.383149984e-10 5.279576753e-10 9.839782332e-10 9.610174432e-10 6.487785758e-10 7.188356635e-10 6.926876994e-10 5.610402783e-10 3.979210833e-10 6.489219273e-10 6.020842713e-10 4.473494654e-10 9.249590934e-10 5.416212646e-10 6.696650838e-10 8.824857658e-10 7.567592236e-10 5.666078123e-10 6.290171162e-10 1.08380728e-09 7.37916597e-10 7.099351746e-10 7.524388653e-10 6.823857628e-10 4.594459313e-10 8.504518134e-10 6.44077358e-10 4.290487548e-10 2.95822695e-10 2.657950324e-10 3.841914694e-10 6.438891309e-10 3.928379537e-10 4.892129075e-10 4.055027093e-10 6.314845042e-10 5.890542902e-10 2.344653781e-10 3.497148551e-10 3.936879032e-10 3.890003396e-10 2.423474263e-10 1.918567988e-10 6.366652918e-10 4.182200193e-10 2.306865602e-10 4.535303896e-10 5.310895475e-10 2.977517391e-10 5.700858754e-10 4.857948786e-10 4.175535665e-10 +2.376502154e-10 4.581984508e-10 4.442853667e-10 4.352114129e-10 5.243370635e-10 2.236930888e-10 4.410183287e-10 5.7360119e-10 2.783802098e-10 5.011189947e-10 3.527163525e-10 7.183491292e-10 2.155523333e-10 3.789097003e-10 3.876693566e-10 4.124362145e-10 8.65248001e-11 3.144283047e-10 2.878567909e-10 4.309773844e-10 3.55254643e-10 4.011613562e-10 5.536150954e-10 6.747062894e-10 4.65296688e-10 4.77369406e-10 6.210252803e-10 8.826004666e-10 6.005312957e-10 1.157464277e-09 8.672137746e-10 5.204176225e-10 5.277098566e-10 5.207560738e-10 8.884653587e-10 1.203736454e-09 7.5412771e-10 9.172372658e-10 1.566380551e-09 8.151112026e-10 1.097517638e-09 7.50645404e-10 1.34784178e-09 5.613181074e-10 1.570818534e-09 6.916021269e-10 7.339262699e-10 5.59717011e-10 4.748994824e-10 4.66644761e-10 7.416232533e-10 1.379602748e-09 5.592435784e-10 5.203115789e-10 7.333271804e-10 7.892231814e-10 7.61983401e-10 7.814156395e-10 6.056953103e-10 1.070297875e-09 6.757669333e-10 1.062288933e-09 1.008586108e-09 7.607394244e-10 4.244219375e-10 6.873527963e-10 8.793877803e-10 9.575402011e-10 8.054096483e-10 4.059739693e-10 5.937592108e-10 1.113497931e-09 7.279919513e-10 6.049153358e-10 1.19801172e-09 1.040226306e-09 7.004720975e-10 4.733211296e-10 1.093155074e-09 6.954978996e-10 8.129271317e-10 5.584960856e-10 1.99103576e-09 1.29640004e-09 1.574259568e-09 1.514682415e-09 1.212610656e-09 7.084849507e-10 1.83474025e-09 1.317838302e-09 1.23688377e-09 1.075758368e-09 1.042784742e-09 1.12094196e-09 1.179352462e-09 1.002667399e-09 1.140698275e-09 4.094251047e-10 1.167421698e-09 8.358589374e-10 1.075990448e-09 6.949655678e-10 3.40211211e-10 1.82482156e-10 4.682030983e-10 2.584643105e-10 7.177029983e-10 8.480815521e-10 1.750826126e-09 1.265389794e-09 2.078335172e-09 2.256239231e-09 1.814688208e-09 1.620883703e-09 1.621435321e-09 1.236446139e-09 2.107646901e-09 2.056860489e-09 1.761382663e-09 2.19737068e-09 1.020825332e-09 1.53390535e-09 3.131257861e-09 1.81542922e-09 1.987857223e-09 1.930116375e-09 2.108312935e-09 7.530553053e-10 9.873253897e-10 2.026020962e-09 1.511260411e-09 1.648363707e-09 6.316848407e-10 1.460703911e-09 1.416547805e-09 1.326649104e-09 1.445378548e-09 1.182768867e-09 1.218866932e-09 1.454498979e-09 1.062860411e-09 1.481973343e-09 6.052625956e-10 1.07035578e-09 9.780401072e-10 7.919569199e-10 3.70228211e-10 5.808110375e-10 5.019659962e-10 9.237259305e-10 5.716535538e-10 4.767707639e-10 7.990901618e-10 8.765517786e-10 8.035233317e-10 7.911186637e-10 1.271896374e-09 3.395217459e-10 8.364926297e-10 1.050686665e-09 1.463152149e-09 1.306544105e-09 1.844537388e-09 1.322944088e-09 1.39459299e-09 1.011796473e-09 1.265786119e-09 1.486142825e-09 1.27821406e-09 1.18842925e-09 1.917355075e-09 2.395531107e-09 9.827236699e-10 1.557127798e-09 2.41153258e-09 2.446588716e-09 2.61938136e-09 2.442055971e-09 2.113723475e-09 1.229007996e-09 1.492819559e-09 1.397724228e-09 1.51754141e-09 2.673187789e-09 2.124146838e-09 3.233186261e-09 1.950817958e-09 2.565071932e-09 2.455157933e-09 2.292203026e-09 2.205388289e-09 1.280428452e-09 3.995595529e-10 8.235566886e-10 7.801158265e-10 3.448023778e-10 1.998202162e-10 2.704582048e-10 1.402629076e-09 8.130541481e-10 1.256688099e-09 1.27471846e-09 1.820613357e-09 1.131792247e-09 1.067744798e-09 1.007220371e-09 6.522928524e-10 1.242380949e-09 9.438077798e-10 1.034718498e-09 1.982077831e-09 1.172528965e-09 1.222435147e-09 1.797757854e-09 2.265693225e-09 1.165827028e-09 1.322669963e-09 1.65079052e-09 1.536424867e-09 9.717297188e-10 2.859896918e-10 2.929737138e-10 4.442154005e-10 1.099100792e-09 6.005639152e-10 9.184904624e-10 6.818345781e-10 8.652945489e-10 1.123470535e-09 5.43881901e-10 1.538279342e-09 6.726510987e-10 8.029909913e-10 3.869572764e-10 1.307830028e-09 8.17032631e-10 8.698833126e-10 7.90814147e-10 9.59230557e-10 9.815712469e-10 5.11372799e-10 7.960294748e-10 1.06858462e-09 9.02842455e-10 5.356470012e-10 3.71251299e-10 9.642152898e-10 7.893836427e-10 9.268615214e-10 1.155416378e-09 7.770388718e-10 7.598924233e-10 3.90041937e-10 9.261928648e-10 6.366993578e-10 8.745642256e-10 4.771766072e-10 1.1943943e-09 3.857002483e-10 9.088760711e-10 5.027215267e-10 9.192741272e-10 8.91675566e-10 7.166292966e-10 6.363316603e-10 6.210218044e-10 8.154104101e-10 8.108010563e-10 7.614387692e-10 1.547644844e-09 1.163527341e-09 6.473440066e-10 1.039245156e-09 3.897218207e-10 8.719540504e-10 5.640411261e-10 4.048267716e-10 1.08871335e-09 3.32832007e-10 6.449921383e-10 2.440048694e-10 1.214584308e-10 3.220651077e-10 5.521327995e-10 3.595896184e-10 5.076007867e-10 2.756602682e-10 4.123092766e-10 6.630954797e-10 3.373819153e-10 4.685010334e-10 1.963430686e-10 2.144800104e-10 2.89206395e-10 6.162016068e-10 3.38167935e-10 2.945939222e-10 6.952617403e-10 3.571864623e-10 6.457186978e-10 +2.764752361e-10 3.101375707e-10 5.837141899e-10 3.875173458e-10 8.776578021e-10 4.349892816e-10 2.887929634e-10 1.806913352e-10 5.575595497e-10 3.008360099e-10 2.113788404e-10 5.555952556e-10 7.975652669e-11 2.109739763e-10 2.148652032e-10 2.531390261e-10 5.992563771e-10 2.795487031e-10 2.124110114e-10 3.305361049e-10 6.790745356e-10 4.69112894e-10 4.117625708e-10 1.081702299e-09 4.266700141e-10 7.247314347e-10 5.552382832e-10 5.402897623e-10 1.39483224e-09 6.432789988e-10 6.999840982e-10 8.109358436e-10 4.816225935e-10 8.297808263e-10 1.022658344e-09 9.480561842e-10 3.004260418e-10 5.492334637e-10 1.00296498e-09 4.878364458e-10 7.598854555e-10 6.286411765e-10 7.459402749e-10 4.083972948e-10 9.091735983e-10 1.112553871e-09 1.053185635e-09 4.273577609e-10 5.415892851e-10 9.371685477e-10 7.357677765e-10 8.38075852e-10 7.114656439e-10 4.89360194e-10 6.738341043e-10 5.073231233e-10 1.344836447e-09 5.911422027e-10 8.215624344e-10 9.539311008e-10 1.125747444e-09 9.36567243e-10 7.023538525e-10 3.444776955e-10 8.155494289e-10 7.46437059e-10 7.559751205e-10 7.771999055e-10 9.91766085e-10 5.265631714e-10 7.094094146e-10 1.309461368e-09 7.982268173e-10 8.08437333e-10 7.725847844e-10 8.357956914e-10 1.142774588e-09 6.59066253e-10 4.560982854e-10 4.294301794e-10 1.293584894e-09 1.293949267e-09 1.488526287e-09 1.768314261e-09 2.15167953e-09 1.491442673e-09 1.431223115e-09 1.477464142e-09 1.468515338e-09 1.629399124e-09 7.697887869e-10 1.581105308e-09 1.116086819e-09 5.674337151e-10 9.488499964e-10 1.582854877e-09 1.15619784e-09 1.03070871e-09 1.29051233e-09 1.170442167e-09 1.271670419e-09 7.701576498e-10 3.620843894e-10 2.268108163e-10 3.955964423e-10 3.631907206e-10 1.112069297e-09 8.854092855e-10 3.514054398e-10 2.364380797e-09 3.266156066e-09 2.183960212e-09 2.036798088e-09 2.470604656e-09 1.765090051e-09 1.769234364e-09 2.509109773e-09 1.703737565e-09 9.889813128e-10 1.616758251e-09 2.316091482e-09 1.520784544e-09 2.807259043e-09 2.089358277e-09 2.812994307e-09 4.200011675e-09 2.516321927e-09 2.035515249e-09 1.581097441e-09 1.087603196e-09 1.470667536e-09 2.101373131e-09 1.442114619e-09 1.409835896e-09 9.653640043e-10 1.267656581e-09 1.122511129e-09 1.526030409e-09 1.063380067e-09 8.8814518e-10 1.672453072e-09 5.574708576e-10 9.843897909e-10 1.268479636e-09 1.145289214e-09 2.095701256e-09 1.12229759e-09 1.293542783e-09 8.283198218e-10 1.788072795e-09 6.987964977e-10 1.085702719e-09 6.760624721e-10 1.302033819e-09 8.705714149e-10 1.069363191e-09 7.662009685e-10 1.454068057e-09 1.189825995e-09 1.606131276e-09 1.037949068e-09 2.088573307e-09 1.104563167e-09 2.079892805e-09 2.220111026e-09 1.654553915e-09 8.590608884e-10 1.367285665e-09 1.944261699e-09 1.477011936e-09 8.579014467e-10 8.565135249e-10 2.042233343e-09 2.323106555e-09 2.283034285e-09 2.9786797e-09 1.411227925e-09 1.567341501e-09 2.052614792e-09 1.385151064e-09 2.207490015e-09 1.525469929e-09 1.743862372e-09 1.954120048e-09 1.897996809e-09 1.723059504e-09 2.564620761e-09 2.093695315e-09 1.716651082e-09 1.463297215e-09 2.026594042e-09 9.082249529e-10 5.385191892e-10 3.749681436e-10 2.641774862e-10 1.182418928e-10 3.042970072e-10 5.590374049e-10 4.051064863e-10 1.179743516e-09 6.269604052e-10 7.183984304e-10 1.366238626e-09 1.111077933e-09 1.357548936e-09 6.244901381e-10 1.192921727e-09 1.123944942e-09 1.720306623e-09 1.071769597e-09 1.413836912e-09 9.564931646e-10 8.27568645e-10 1.299423336e-09 1.872340141e-09 1.964351521e-09 1.156360516e-09 1.210059385e-09 9.925199068e-10 1.007841744e-09 7.413452018e-10 7.188295089e-10 1.044718655e-09 2.747914668e-10 6.841086456e-10 8.611531767e-10 9.873731252e-10 7.040994716e-10 2.759194304e-10 6.893667437e-10 8.439540963e-10 1.194902142e-09 7.095231115e-10 4.529762283e-10 1.110251479e-09 1.209650591e-09 7.092343183e-10 8.673085251e-10 1.06838204e-09 6.788552985e-10 1.063829489e-09 1.462115645e-09 5.281290115e-10 4.109021244e-10 3.116487452e-10 5.362794382e-10 1.134106279e-09 5.634168035e-10 4.575653836e-10 1.153634979e-09 4.716499586e-10 1.065823459e-09 5.510445582e-10 8.870404349e-10 7.658753817e-10 8.209185144e-10 1.226645262e-09 5.471557245e-10 7.808510073e-10 5.082952651e-10 7.908509397e-10 8.83923894e-10 1.596995218e-10 9.913812085e-10 5.880368486e-10 9.387302722e-10 1.080785721e-09 7.112646102e-10 7.187464747e-10 8.056901588e-10 1.191313869e-09 7.672556249e-10 5.345760696e-10 4.524737665e-10 9.895295141e-10 2.298615521e-10 4.389066862e-10 6.962302789e-10 8.110467948e-10 1.61489309e-10 2.419291333e-10 1.849863433e-10 6.545206802e-10 7.423334204e-11 3.447418151e-10 6.727169922e-10 4.093946295e-10 2.328833201e-10 2.615984132e-10 2.607692135e-10 5.056267263e-10 1.749897069e-10 3.753111237e-10 2.982819192e-10 2.942418276e-10 3.862584035e-10 4.325711749e-10 2.133637629e-10 4.567137985e-10 3.438963943e-10 +2.40157168e-10 4.042858117e-10 4.570818389e-10 3.304956919e-10 3.036238402e-10 4.267676982e-10 4.853107471e-10 3.655007077e-10 3.638770638e-10 3.153010338e-10 6.137611496e-10 3.561572692e-10 4.416568931e-10 3.3414825e-10 1.989535073e-10 1.971254522e-10 1.511958391e-10 7.534572928e-10 5.254860071e-10 2.943872369e-10 6.065362301e-10 3.748269209e-10 9.891448503e-10 5.628206107e-10 6.697000533e-10 5.599643046e-10 1.081464629e-09 6.047953548e-10 1.159213674e-09 1.059824882e-09 7.449114361e-10 9.189087657e-10 7.1845626e-10 1.011454139e-09 7.136600463e-10 2.406627957e-10 8.500060239e-10 3.839231663e-10 7.638775766e-10 7.564701268e-10 1.191085639e-09 1.11461523e-09 8.286654441e-10 8.835253673e-10 1.048778648e-09 1.098114635e-09 1.259112102e-09 1.106144451e-09 6.721072821e-10 8.294540643e-10 6.500052456e-10 3.344316757e-10 6.526428825e-10 3.853155513e-10 7.22676437e-10 7.541063599e-10 4.70720121e-10 8.931937225e-10 1.026994894e-09 4.789622532e-10 7.518098171e-10 7.494561949e-10 1.324709587e-09 5.62286962e-10 1.297408037e-09 1.606699148e-09 5.643045274e-10 1.391808361e-09 9.240483265e-10 1.062769554e-09 1.196193011e-09 7.856483337e-10 7.290544357e-10 8.50394975e-10 1.187415929e-09 7.582298913e-10 1.013874251e-09 8.861875777e-10 2.977936724e-10 3.217980082e-10 7.223819672e-10 8.735059379e-10 1.770971376e-09 2.100729222e-09 1.756526886e-09 1.807970746e-09 1.662016488e-09 2.053308361e-09 1.159261877e-09 1.149612297e-09 1.610148873e-09 1.062510948e-09 2.158261235e-09 9.669951385e-10 9.42301571e-10 1.204048957e-09 9.837483784e-10 7.342073785e-10 1.686068966e-09 1.040805394e-09 9.509523364e-10 3.082239071e-10 7.66594286e-10 5.198277255e-10 1.490183295e-10 3.537525322e-10 7.413816468e-10 9.199663762e-10 4.969548831e-10 2.129660521e-09 2.493968366e-09 1.964957251e-09 1.640458556e-09 1.452761257e-09 2.574741776e-09 2.016339081e-09 2.003946834e-09 2.008523125e-09 1.480113872e-09 2.20484743e-09 1.792294838e-09 1.193952535e-09 1.974725663e-09 1.686584738e-09 1.899631327e-09 2.661933676e-09 1.990078304e-09 2.617234862e-09 2.376707017e-09 2.142116002e-09 1.407383963e-09 2.253049867e-09 1.311216278e-09 8.607057462e-10 1.347546261e-09 1.085021951e-09 1.703803351e-09 1.386706864e-09 1.337800419e-09 1.05355249e-09 1.091352348e-09 1.47814648e-09 7.528142108e-10 1.097067122e-09 1.263488152e-09 1.049635897e-09 1.373043823e-09 1.142183984e-09 1.169247531e-09 1.412143639e-09 9.43021627e-10 1.583100205e-09 8.778726739e-10 1.528004913e-09 1.667842552e-09 1.656375078e-09 1.007267185e-09 6.072076653e-10 1.970531104e-09 1.652037757e-09 1.305698318e-09 1.987648713e-09 1.326799721e-09 1.329954788e-09 1.994495806e-09 1.18655469e-09 1.623039689e-09 1.175583289e-09 8.368034685e-10 2.411823551e-09 1.631030317e-09 1.195707837e-09 1.882481351e-09 2.668019185e-09 2.651399421e-09 3.161374475e-09 2.419696247e-09 2.112818427e-09 1.5200359e-09 1.949306482e-09 2.036257888e-09 2.16278592e-09 1.447859668e-09 2.078887696e-09 2.071982593e-09 2.25556833e-09 2.586041638e-09 1.659801148e-09 2.718778668e-09 3.146855308e-09 1.577185334e-09 9.507731678e-10 1.035079234e-09 1.109385239e-09 5.843874436e-10 2.602914773e-10 2.520130409e-10 1.209950767e-09 1.290870486e-09 5.67390018e-10 1.228910444e-09 6.85370039e-10 1.378202105e-09 9.84216368e-10 9.148414773e-10 1.010834427e-09 1.665954369e-09 1.266704733e-09 1.589985864e-09 1.407051431e-09 1.514915094e-09 1.565832597e-09 1.379482271e-09 1.523602524e-09 1.523034803e-09 1.405588646e-09 1.567981088e-09 1.079239515e-09 3.186372161e-10 1.145771897e-09 1.360735712e-09 1.248640692e-09 9.97932401e-10 5.542482433e-10 1.098828446e-09 6.74543772e-10 8.798676426e-10 6.869801381e-10 8.194407532e-10 5.240360547e-10 9.436902219e-10 6.064542595e-10 7.979035749e-10 9.463542648e-10 1.078975533e-09 1.109612173e-09 9.314431102e-10 7.790208067e-10 7.804441743e-10 5.546798136e-10 5.569882794e-10 9.199730602e-10 8.450831146e-10 2.856652894e-10 7.096968126e-10 5.479563361e-10 5.52605605e-10 1.159630437e-09 3.458048632e-10 8.682011666e-10 8.526991404e-10 5.373668907e-10 5.519233214e-10 9.804722803e-10 3.673250724e-10 9.128329166e-10 8.515551674e-10 1.503352935e-09 3.92098444e-10 1.285018433e-09 7.582657945e-10 1.056338257e-09 1.06279331e-09 1.083091436e-09 2.137842271e-10 1.138583265e-09 8.984862271e-10 1.146680838e-09 1.064285655e-09 4.798020283e-10 1.014525707e-09 5.29482888e-10 6.744994127e-10 4.125932855e-10 5.1724319e-10 3.826149965e-10 4.588998197e-10 7.272505416e-10 4.530975783e-10 2.891541686e-10 4.125966107e-10 7.221676231e-10 1.897484891e-10 5.122297086e-10 5.951133042e-10 3.56222857e-10 3.019514322e-10 2.991448779e-10 7.145752314e-10 4.017371006e-10 3.187469426e-10 2.38815045e-10 4.029889668e-10 4.137963227e-10 6.35668096e-10 2.606494625e-10 3.142643786e-10 6.881222135e-10 3.633143508e-10 4.119202661e-10 +3.344863684e-10 4.966762016e-10 2.90375715e-10 3.723177371e-10 3.525615478e-10 3.835082442e-10 3.619986965e-10 7.680561897e-10 1.597831454e-10 5.873513471e-10 3.919721099e-10 5.607894472e-10 1.259628212e-10 3.462669213e-10 4.550989633e-10 3.489744672e-10 4.807296433e-10 5.210146355e-10 6.375551821e-10 4.291253622e-10 4.635403795e-10 6.927655168e-10 4.314260579e-10 9.048143491e-10 1.307636216e-09 6.759915366e-10 6.283263191e-10 6.921384055e-10 7.815334187e-10 3.808011037e-10 7.5298942e-10 7.247583499e-10 8.446339943e-10 9.354162367e-10 7.131835797e-10 1.067100302e-09 7.04175824e-10 8.640489027e-10 1.230035489e-09 4.640228637e-10 8.273722548e-10 7.545494904e-10 7.862195733e-10 8.274109446e-10 8.040114837e-10 1.145570824e-09 6.18083583e-10 1.336575105e-09 7.204055454e-10 5.48993209e-10 3.713212437e-10 6.430585022e-10 2.436401469e-10 7.528751287e-10 1.037261239e-09 5.385828114e-10 6.836245628e-10 9.255742291e-10 7.881143547e-10 1.033390823e-09 8.992051246e-10 5.658238717e-10 1.273071685e-09 1.203622982e-09 3.42029907e-10 8.984010141e-10 8.94215998e-10 1.097587177e-09 1.491433842e-09 7.925065981e-10 8.497471626e-10 9.074189868e-10 9.583444132e-10 8.285007948e-10 1.196275734e-09 5.43531607e-10 5.700942255e-10 5.634532493e-10 3.525256038e-10 7.735923709e-10 1.546225745e-09 1.23926127e-09 1.530292753e-09 9.460111298e-10 2.172045149e-09 1.20471426e-09 1.675290325e-09 9.268408923e-10 1.46214085e-09 1.384763151e-09 1.700844997e-09 9.931256656e-10 6.685992837e-10 1.092964769e-09 1.032439656e-09 1.01376754e-09 1.199454814e-09 1.303215521e-09 1.667447662e-09 1.527281749e-09 9.249029388e-10 7.026615576e-10 4.853843442e-10 4.142795383e-10 4.135025796e-10 2.471904626e-10 6.650859431e-10 9.576577574e-10 4.260293221e-10 1.805392143e-09 1.655095149e-09 1.781213941e-09 1.90357839e-09 1.444529322e-09 2.339491234e-09 1.343736747e-09 1.224408131e-09 2.23619773e-09 2.195232114e-09 1.48220471e-09 1.7243078e-09 2.368998375e-09 8.894731697e-10 3.548180682e-09 1.768812601e-09 2.710163787e-09 2.941926803e-09 2.514390435e-09 1.158888631e-09 1.947699855e-09 1.176960008e-09 1.479430038e-09 8.135030148e-10 9.475612924e-10 1.513198047e-09 1.532264877e-09 1.134544678e-09 1.436748682e-09 1.217018687e-09 1.093820423e-09 1.504535138e-09 1.090124907e-09 8.293180762e-10 1.43315929e-09 5.156719382e-10 1.349282213e-09 5.69923512e-10 1.430144568e-09 1.742550784e-09 1.694125769e-09 1.484698552e-09 1.629650849e-09 1.58469996e-09 1.686214801e-09 8.630457482e-10 1.221884477e-09 7.973619782e-10 9.898915104e-10 1.922311778e-09 6.544846209e-10 2.036651614e-09 1.185833712e-09 9.244600901e-10 1.482805758e-09 1.415637053e-09 2.128970421e-09 1.798901055e-09 1.248271289e-09 1.279907788e-09 2.72362113e-09 2.303937302e-09 2.03216762e-09 2.775004119e-09 2.252202221e-09 3.056465172e-09 2.619115016e-09 1.978071336e-09 1.737404153e-09 1.74954143e-09 1.523188472e-09 1.494645638e-09 2.736130891e-09 1.381600257e-09 9.713203047e-10 3.285036023e-09 2.135067543e-09 1.461421808e-09 2.363140193e-09 1.988548007e-09 1.278855792e-09 9.886921149e-10 7.659400627e-10 4.815695258e-10 5.60628422e-10 1.533777652e-10 5.482266674e-11 7.346388651e-10 3.220226878e-10 8.260280031e-10 8.395313115e-10 1.272385939e-09 1.603965131e-09 9.158942707e-10 1.469181337e-09 1.574917955e-09 8.900092642e-10 1.550128218e-09 8.75557488e-10 1.117142387e-09 1.51019224e-09 1.217936458e-09 1.800365236e-09 7.836648409e-10 1.009108364e-09 1.646327957e-09 2.544889638e-09 9.286998486e-10 1.664219173e-09 1.526326446e-09 9.861783712e-10 8.055751009e-10 9.391947941e-10 9.98285407e-10 8.418536416e-10 3.337164714e-10 7.809599773e-10 6.021064436e-10 1.135316445e-09 6.856600239e-10 1.057193713e-09 1.077552598e-09 9.498751235e-10 8.728219467e-10 1.097106214e-09 7.778491936e-10 1.158006779e-09 8.323291721e-10 6.750279074e-10 5.978217634e-10 4.454173745e-10 7.338490277e-10 9.348568658e-10 7.831212173e-10 3.863912142e-10 1.459679871e-09 1.114042107e-09 7.464591095e-10 1.085161965e-09 4.659786231e-10 9.16200332e-10 4.210650367e-10 1.001342747e-09 7.004191417e-10 6.422026552e-10 1.028877073e-09 7.979003722e-10 3.881224669e-10 6.268035709e-10 8.343671972e-10 5.131128334e-10 8.927484956e-10 6.114158326e-10 8.316419826e-10 1.209022813e-09 7.769958001e-10 1.365613576e-09 4.945538013e-10 8.757327543e-10 1.092226875e-09 1.11847346e-09 7.304100381e-10 1.319096485e-09 9.882250293e-10 7.249027816e-10 2.161689631e-10 3.7702785e-10 5.178609084e-10 6.848673394e-10 3.675170149e-10 1.607962877e-10 4.158367626e-10 2.253610892e-10 4.758941566e-10 3.641574911e-10 5.91169703e-10 5.102296629e-10 2.175102727e-10 4.683751636e-10 1.724260979e-10 5.476293007e-10 2.197288895e-10 5.244391523e-10 8.174415529e-11 3.423103812e-10 6.016248281e-10 4.306310528e-10 5.712319103e-10 4.510261908e-10 3.424422942e-10 2.367109656e-10 +2.059451805e-10 2.471525349e-10 2.266860303e-10 5.491597111e-11 5.394608797e-10 5.74587814e-10 4.495744225e-10 5.835182282e-10 3.394837305e-10 5.525840339e-10 5.400006644e-10 2.579653717e-10 4.027921161e-10 2.841262695e-10 1.984107376e-10 3.637726628e-10 3.060943357e-10 2.458768236e-10 2.095002876e-10 2.802001493e-10 1.810001843e-10 4.364362088e-10 2.580738198e-10 6.908584882e-10 4.710028825e-10 5.64689393e-10 1.901735008e-09 8.100660195e-10 8.318776879e-10 4.114717481e-10 5.229819244e-10 8.133453563e-10 8.606533181e-10 7.812381357e-10 7.02134151e-10 1.358320827e-09 4.64764611e-10 4.41624338e-10 5.348872061e-10 7.928459385e-10 1.179832562e-09 8.921956134e-10 6.931796121e-10 1.355163165e-09 5.876220566e-10 1.052893886e-09 2.495875993e-10 7.482088463e-10 7.958629898e-10 4.74287915e-10 9.565349858e-10 3.020908158e-10 7.178318713e-10 6.892990336e-10 7.271218429e-10 6.567676111e-10 5.089911572e-10 5.897486675e-10 6.964476409e-10 9.116449453e-10 5.200057177e-10 3.598561968e-10 9.132119071e-10 7.493579182e-10 8.061431609e-10 6.868081341e-10 6.024695435e-10 1.374684289e-09 1.027951066e-09 8.632780263e-10 6.053949255e-10 6.181522084e-10 5.597231554e-10 5.532323563e-10 5.317883946e-10 7.384226664e-10 7.240046669e-10 8.504057519e-10 1.083337204e-09 5.592333663e-10 1.01163541e-09 1.069862509e-09 1.094782268e-09 2.226042181e-09 1.30444131e-09 1.686550861e-09 1.313333483e-09 1.058876887e-09 1.958132279e-09 1.226942183e-09 1.455455161e-09 1.427468796e-09 1.023632224e-09 9.089509867e-10 1.93059487e-09 8.632677258e-10 1.472263402e-09 7.852932601e-10 7.112357433e-10 1.069207484e-09 8.895521834e-10 7.467919014e-10 8.520922092e-10 5.865531424e-10 3.010346458e-10 5.400740041e-10 2.261577894e-10 5.589560833e-10 6.512306107e-10 1.125761727e-09 1.402804937e-09 1.262531065e-09 1.439891676e-09 5.417064243e-10 2.541472787e-09 1.568319732e-09 1.164857935e-09 2.451521843e-09 1.457373085e-09 1.820393007e-09 2.084631781e-09 1.626845219e-09 1.392578137e-09 1.310295157e-09 1.787914832e-09 2.118410411e-09 2.240725277e-09 2.8922574e-09 2.278935548e-09 2.051707548e-09 2.370386212e-09 1.060482683e-09 1.25809051e-09 1.507174907e-09 2.443879778e-09 1.406291112e-09 1.703533355e-09 1.371942839e-09 2.054573811e-09 8.943232935e-10 1.133670208e-09 1.569168789e-09 1.124014356e-09 1.530280881e-09 7.176396211e-10 1.000740009e-09 1.303643561e-09 8.749357502e-10 1.422678417e-09 1.539218098e-09 2.165587133e-09 1.335208936e-09 1.495433483e-09 1.199421094e-09 1.186486381e-09 1.685540461e-09 1.648042424e-09 7.546607755e-10 7.679455502e-10 1.401766007e-09 1.642049162e-09 1.518681622e-09 1.271867003e-09 1.30212892e-09 1.032343632e-09 2.022078062e-09 1.000849412e-09 1.56401239e-09 1.182241741e-09 1.750419634e-09 1.579249575e-09 2.428839395e-09 2.865813759e-09 2.755931978e-09 2.842124033e-09 2.930636812e-09 2.086049768e-09 1.216882074e-09 1.814807252e-09 1.656876258e-09 2.319286415e-09 2.421256781e-09 1.944399978e-09 5.317960081e-10 2.397160271e-09 2.895554665e-09 1.557456412e-09 1.713909949e-09 1.986690507e-09 1.452321228e-09 4.969573713e-10 5.348614861e-10 7.360206564e-10 4.288310269e-10 3.578568196e-10 2.717159323e-10 5.048359089e-10 5.257110805e-10 5.711913409e-10 1.214588685e-09 1.112802337e-09 9.043614577e-10 5.058711127e-10 9.439846972e-10 9.923671629e-10 1.399182294e-09 9.789901432e-10 1.115682464e-09 7.143843587e-10 1.054386265e-09 1.584971665e-09 1.399143594e-09 1.163760151e-09 9.939862748e-10 1.318282343e-09 1.209494553e-09 1.28250708e-09 8.623514115e-10 1.214679759e-09 1.058683446e-09 1.430473302e-09 4.635463369e-10 3.812868625e-10 5.130193559e-10 9.558788184e-10 6.014951776e-10 9.24067924e-10 7.603757101e-10 1.313906913e-09 5.664174158e-10 3.25689617e-10 1.034817559e-09 8.151506802e-10 5.784983232e-10 4.195827143e-10 4.009320713e-10 1.103754567e-09 7.106954025e-10 8.564464372e-10 1.16829559e-09 1.090661559e-09 9.591004412e-10 6.65541394e-10 5.582320172e-10 4.251628968e-10 9.374276752e-10 6.437120101e-10 6.688358379e-10 7.738506251e-10 7.117907518e-10 7.102072134e-10 8.205013139e-10 8.137740491e-10 8.698844406e-10 1.014226243e-09 8.083687889e-10 6.155986326e-10 9.257197359e-10 9.726289326e-10 8.191209626e-10 1.188465984e-09 9.885335812e-10 6.183438328e-10 6.295438836e-10 5.328894254e-10 6.443603947e-10 5.573529581e-10 1.01102503e-09 7.280040565e-10 4.976416637e-10 4.816395055e-10 7.328743894e-10 4.99596797e-10 5.501238666e-10 8.780548545e-10 1.248376711e-09 4.538491108e-10 2.641895133e-10 2.813305812e-10 5.572898409e-10 2.963391555e-10 1.18275756e-10 5.362540047e-10 4.821848927e-10 5.173183044e-10 1.392066062e-10 5.345229576e-10 1.101689934e-10 6.077253263e-10 2.378571859e-10 4.767656577e-10 7.737839644e-11 2.207050227e-10 4.337734578e-10 4.799291471e-10 4.914493702e-10 7.405469083e-10 8.296023171e-10 6.37817502e-10 5.328155752e-10 +2.921048435e-10 2.892014533e-10 4.770690965e-10 2.79727839e-10 3.963718083e-11 3.220378927e-10 2.025732278e-10 6.822793681e-11 4.427554825e-10 8.296583809e-10 3.166954433e-10 4.698145185e-10 2.617681895e-10 4.151811703e-10 4.536813273e-10 4.981245742e-10 9.529329404e-10 4.738300196e-10 3.041706229e-10 7.147238103e-10 7.855262069e-10 1.61755348e-10 9.029150527e-10 3.371118074e-10 3.039338214e-10 7.018386288e-10 4.233758553e-10 6.385291198e-10 6.671421901e-10 1.25556014e-09 7.485861151e-10 7.348647687e-10 1.16708504e-09 5.126393088e-10 7.656516635e-10 6.934314425e-10 4.921512242e-10 6.72990072e-10 8.333911812e-10 4.739357859e-10 7.077506277e-10 4.017300366e-10 7.491628241e-10 4.069257026e-10 8.028540235e-10 1.424304784e-09 5.869740767e-10 8.371977069e-10 1.214465448e-09 9.194812491e-10 6.330239099e-10 2.01454087e-10 6.832630479e-10 6.125891271e-10 8.039611048e-10 4.818629945e-10 5.742883872e-10 7.513867721e-10 9.161749406e-10 8.511739714e-10 9.067493618e-10 8.708475339e-10 1.218106142e-09 7.139120145e-10 3.251611878e-10 8.953939847e-10 4.620135982e-10 1.304248163e-09 1.093844462e-09 8.965795434e-10 8.78171928e-10 1.072257101e-09 1.332997711e-09 6.192775762e-10 4.417253139e-10 7.76036187e-10 5.517049359e-10 3.580013882e-10 4.283896845e-10 6.852922388e-10 1.014376815e-09 1.018455479e-09 1.110574055e-09 1.522795966e-09 1.411528303e-09 1.379857842e-09 9.109959247e-10 1.366884996e-09 1.640874719e-09 9.707959337e-10 1.466413367e-09 5.544718947e-10 1.562144026e-09 1.225135923e-09 5.930718922e-10 1.427519358e-09 9.696351271e-10 8.320488278e-10 7.287152958e-10 7.456072522e-10 6.685345352e-10 9.407076554e-10 9.572573971e-10 9.545775073e-10 5.732788488e-10 4.49482307e-10 5.354048945e-10 3.631782011e-10 7.229595326e-10 1.01912705e-09 1.195284816e-09 2.07027013e-09 1.864530433e-09 2.600735771e-09 1.577646871e-09 1.47856211e-09 1.359356312e-09 1.691950086e-09 1.323706581e-09 1.829291225e-09 1.78679735e-09 2.069722847e-09 1.776993552e-09 1.202436738e-09 2.749932229e-09 2.129900702e-09 1.611107571e-09 3.774480729e-09 3.391017622e-09 3.83888516e-09 1.060459455e-09 2.604006675e-09 9.63648486e-10 1.552118024e-09 1.744524494e-09 1.160355345e-09 1.691960429e-09 1.609849177e-09 1.196380105e-09 1.116860442e-09 1.187638097e-09 1.488011893e-09 1.223388692e-09 1.366246039e-09 1.023525198e-09 1.615977017e-09 1.37964502e-09 1.593686849e-09 1.33767356e-09 8.196536721e-10 9.568185989e-10 1.048923462e-09 8.471514854e-10 1.70883292e-09 1.82568537e-09 1.447456191e-09 1.424944276e-09 1.05896292e-09 1.494279765e-09 1.025856681e-09 1.027055191e-09 2.148067058e-09 1.770584147e-09 1.082781456e-09 1.180606826e-09 1.321035734e-09 1.35312825e-09 1.801444875e-09 1.993077346e-09 2.012160569e-09 2.897771226e-09 1.925116561e-09 1.594402481e-09 2.266030179e-09 1.903286311e-09 1.062593644e-09 1.276714119e-09 1.728651315e-09 1.108581657e-09 1.460290201e-09 2.235189778e-09 1.44984031e-09 1.929454006e-09 2.194711437e-09 2.325988077e-09 2.069717303e-09 1.715849573e-09 2.026462345e-09 1.015300068e-09 4.392105764e-10 5.616032422e-10 7.89687007e-10 5.499860105e-10 3.821727668e-10 2.256002631e-10 2.767048597e-10 5.246689827e-10 7.330277356e-10 4.942633608e-10 1.148420532e-09 1.134315368e-09 7.410789019e-10 8.227535944e-10 1.739849251e-09 1.402317018e-09 1.147878973e-09 1.0316835e-09 9.971282508e-10 1.222506012e-09 1.37238472e-09 1.913436843e-09 7.215358461e-10 9.01003596e-10 1.747521223e-09 1.642691991e-09 1.852050338e-09 1.565216428e-09 9.808740656e-10 1.525905938e-09 1.482934148e-09 8.467562407e-10 1.04127031e-09 8.451532336e-10 4.916767586e-10 9.447452339e-10 5.69405705e-10 3.676504881e-10 1.599559348e-09 7.548524308e-10 5.891264337e-10 6.893602637e-10 2.956976559e-10 1.382221933e-09 2.093426894e-10 6.01955741e-10 1.043651797e-09 1.386979116e-09 8.396383053e-10 8.731342015e-10 8.558613957e-10 4.348704403e-10 4.851320116e-10 5.870454703e-10 5.843963439e-10 3.918976466e-10 6.108316214e-10 6.753157585e-10 5.473431387e-10 1.02504655e-09 4.205927132e-10 6.63930625e-10 4.466289186e-10 4.77586745e-10 1.2638187e-09 9.887151565e-10 4.054088944e-10 1.272757039e-09 7.158455812e-10 6.931398836e-10 5.12613408e-10 4.547179287e-10 6.091931567e-10 4.759004067e-10 5.734608509e-10 9.306223136e-10 9.276973439e-10 5.445140311e-10 1.157168945e-09 5.808285838e-10 1.166937472e-09 1.468024912e-09 1.079040589e-09 6.846468107e-10 1.312359769e-09 1.058458519e-09 3.080013378e-10 2.723433581e-10 8.76667799e-10 5.420954931e-10 6.631239546e-10 1.89794982e-10 5.69147918e-10 3.300189433e-10 3.276734969e-10 6.257738536e-10 5.50867695e-10 3.593146698e-10 4.516264004e-10 8.526834414e-10 2.583149953e-10 1.01683801e-09 3.589635694e-10 9.418411849e-10 2.240332526e-10 9.383402993e-11 3.543607049e-10 2.561686052e-10 5.097739469e-10 3.537560563e-10 7.323784021e-10 +1.766498531e-10 3.720578742e-10 3.377276077e-10 3.017547481e-10 2.260016134e-10 4.220467405e-10 4.306304095e-10 4.752715751e-10 6.793686825e-10 2.60525931e-10 5.544589332e-10 2.292200945e-10 3.516507407e-10 3.184070139e-10 5.629459057e-10 5.002334326e-10 3.311770155e-10 4.73647793e-10 4.837337124e-10 6.081750378e-10 7.937084605e-10 3.198139468e-10 6.399749514e-10 5.34352201e-10 6.590645087e-10 5.103364534e-10 7.444898634e-10 1.320975894e-09 9.334603735e-10 7.237433064e-10 6.924524231e-10 6.088016804e-10 5.540519074e-10 7.737099473e-10 6.721133935e-10 7.582309023e-10 9.052669233e-10 5.879128238e-10 5.583544016e-10 1.141225443e-09 8.262125349e-10 4.644112011e-10 8.094870975e-10 3.95705763e-10 6.830685078e-10 5.067446987e-10 5.884504711e-10 4.441004126e-10 5.784931658e-10 7.13674486e-10 8.256255451e-10 6.398889112e-10 5.591000902e-10 6.924336538e-10 8.95723192e-10 1.258968037e-10 7.132850163e-10 8.058246609e-10 8.846007561e-10 4.885777286e-10 8.428273868e-10 7.789362281e-10 8.791522877e-10 8.051946015e-10 5.343079599e-10 5.271215926e-10 9.480939544e-10 8.205662056e-10 1.119523452e-09 1.427104505e-09 9.605362952e-10 6.000161927e-10 4.831990761e-10 6.303473869e-10 6.319684898e-10 6.510682766e-10 7.164471061e-10 7.977332585e-10 3.306701629e-10 5.578911724e-10 1.445809238e-09 4.987863625e-10 1.972310066e-09 1.582716267e-09 2.284312405e-09 1.901594478e-09 1.15159939e-09 1.011701334e-09 1.527416236e-09 1.379242203e-09 1.319851473e-09 5.631324037e-10 1.056627985e-09 1.202139059e-09 1.26027618e-09 6.051227766e-10 1.488769093e-09 7.55186554e-10 9.949614857e-10 9.332909798e-10 4.082396759e-10 5.370321517e-10 8.740637242e-10 5.84718846e-10 3.49398449e-10 1.884392467e-10 3.441341707e-10 6.510656349e-10 5.755529638e-10 7.32748952e-10 8.456992602e-10 1.745873075e-09 2.065064537e-09 1.817258274e-09 2.060672962e-09 1.44418007e-09 1.277310426e-09 1.475996977e-09 1.615076634e-09 1.767955531e-09 1.146047768e-09 2.358265802e-09 1.763705273e-09 1.840176989e-09 9.340006177e-10 2.002976688e-09 1.982584416e-09 1.598668322e-09 2.29131883e-09 1.812331571e-09 2.228809489e-09 1.656043124e-09 1.156231752e-09 1.654290573e-09 9.9462334e-10 1.353113716e-09 1.283529657e-09 1.468042699e-09 1.569779367e-09 9.741952225e-10 7.539273001e-10 7.60395039e-10 1.181215258e-09 1.176492213e-09 8.095389847e-10 1.749238756e-09 1.230823798e-09 1.296682083e-09 1.531066368e-09 1.923973277e-09 1.008294386e-09 8.804041922e-10 1.784303106e-09 6.900587036e-10 1.674529593e-09 1.205708396e-09 1.022758622e-09 1.255713729e-09 1.721203548e-09 1.13838101e-09 1.282270558e-09 1.358594354e-09 6.872730766e-10 1.018672841e-09 1.042727374e-09 1.413538403e-09 2.051135887e-09 2.002496647e-09 3.090436024e-09 1.877649927e-09 2.079848193e-09 2.209250636e-09 2.965112594e-09 3.396970255e-09 1.218929489e-09 1.218057711e-09 1.709337649e-09 3.049477215e-09 1.226743512e-09 1.898519547e-09 1.884347106e-09 2.027303796e-09 2.022478172e-09 1.321550616e-09 1.867410905e-09 2.46619478e-09 3.394924247e-09 1.727835786e-09 1.670934625e-09 1.036686174e-09 7.211118197e-10 6.539630182e-10 4.861499565e-10 2.642851468e-10 4.99380299e-10 7.603588328e-10 9.863312269e-10 1.084661934e-09 7.900254113e-10 1.30272865e-09 9.970801302e-10 8.073841671e-10 1.162474629e-09 1.060512022e-09 5.528493839e-10 1.310651397e-09 7.181019042e-10 1.145600734e-09 1.966305342e-09 8.557325577e-10 1.238302508e-09 5.423039753e-10 1.132460118e-09 1.184196606e-09 1.037441485e-09 1.330508682e-09 1.156757745e-09 1.142461913e-09 1.517840281e-09 5.047968287e-10 8.124421834e-10 7.485033069e-10 7.318327213e-10 6.997266372e-10 3.602543572e-10 1.383223803e-09 6.733382036e-10 9.709818731e-10 9.966332139e-10 8.005790197e-10 8.936216571e-10 1.200413124e-09 1.253208164e-09 4.936770245e-10 7.646802253e-10 7.781542187e-10 7.014020209e-10 9.437577704e-10 2.429511082e-10 1.123540369e-09 7.20983593e-10 1.010392031e-09 7.320426786e-10 6.035223723e-10 4.923837657e-10 7.404238768e-10 6.694341348e-10 6.101566469e-10 4.611252225e-10 6.918270479e-10 3.878912335e-10 6.067062695e-10 7.032318968e-10 5.2569299e-10 7.738264312e-10 1.081712829e-09 7.538016174e-10 8.327285566e-10 7.074842531e-10 1.66165905e-09 1.140365223e-09 4.389172911e-10 9.184927261e-10 4.71950757e-10 3.509881824e-10 4.522621963e-10 8.340146973e-10 8.810500547e-10 5.613653435e-10 6.239093866e-10 4.549453316e-10 7.606396734e-10 1.349051893e-09 7.980780145e-10 4.312522268e-10 8.42803026e-10 8.750850159e-10 1.059809055e-09 3.693000857e-10 9.395231811e-10 4.669218128e-10 7.870507172e-10 4.753910225e-10 6.991236224e-10 3.780260105e-10 2.85931813e-10 6.486845455e-10 8.442691575e-10 4.252431735e-10 8.682081706e-10 2.313233141e-10 4.465992596e-10 5.032828201e-10 3.481305895e-10 2.721317733e-10 6.906368872e-10 3.3222395e-10 3.659597877e-10 4.021162893e-10 2.643370168e-10 +2.453319992e-10 3.905966212e-10 3.373063324e-10 5.779620247e-10 1.374614251e-10 1.987105979e-10 1.898068702e-10 3.354802619e-10 2.300216599e-10 4.835299507e-10 1.641274066e-10 6.831093287e-10 4.294061686e-10 3.912616241e-10 4.768895866e-10 6.719752717e-10 3.697712325e-10 2.800626492e-10 8.019064049e-10 5.736323747e-10 4.898236225e-10 6.9623812e-10 9.153788148e-10 5.910923421e-10 7.12508731e-10 5.497122599e-10 1.174547839e-09 9.990466803e-10 6.983186066e-10 6.277037211e-10 5.276987648e-10 1.032375775e-09 6.740546105e-10 1.369519504e-09 7.797093747e-10 6.51620007e-10 9.866196617e-10 7.858723707e-10 8.694514209e-10 7.544837838e-10 1.064172442e-09 1.201656719e-09 8.236636906e-10 5.222324062e-10 6.658011058e-10 6.850191038e-10 6.396127814e-10 8.624997504e-10 6.374859479e-10 1.113502474e-09 5.064828439e-10 3.203462505e-10 4.597240666e-10 5.260150925e-10 5.500325226e-10 9.409807258e-10 7.384991471e-10 7.121416881e-10 8.540956978e-10 8.075444372e-10 8.439740638e-10 1.183446031e-09 6.983827565e-10 6.475281484e-10 6.655770531e-10 7.182056972e-10 9.906397784e-10 8.594237314e-10 5.502238163e-10 6.595511404e-10 5.664142591e-10 1.040533487e-09 1.425488161e-09 8.195713788e-10 1.777121714e-10 1.54923984e-09 9.48635205e-10 1.39438265e-09 4.825334928e-10 9.769747542e-10 8.29669866e-10 6.393398802e-10 1.327312826e-09 2.015760862e-09 1.135848074e-09 1.96847347e-09 1.39861188e-09 1.163279168e-09 1.337610015e-09 1.30614291e-09 1.504514541e-09 1.007953393e-09 1.233972481e-09 6.453434132e-10 6.333008077e-10 1.080841586e-09 6.000768072e-10 1.680069303e-09 1.236071298e-09 9.221181724e-10 8.702127851e-10 7.824478061e-10 7.976195006e-10 8.034951104e-10 3.950147198e-10 1.2202156e-10 3.25750693e-10 3.495670691e-10 4.383229341e-10 7.909166126e-10 6.044603316e-10 2.567258117e-09 1.072679791e-09 1.493114949e-09 2.013804941e-09 2.044531211e-09 1.67984264e-09 2.412559779e-09 1.629764925e-09 1.143180255e-09 3.00471418e-09 2.021232484e-09 1.476725019e-09 2.027679909e-09 1.665071195e-09 1.80273736e-09 1.693917785e-09 2.213145386e-09 2.549397147e-09 2.677912904e-09 2.324135225e-09 2.588611485e-09 2.21218482e-09 1.743012823e-09 1.786067639e-09 1.043337693e-09 1.03822831e-09 1.328365967e-09 1.881102303e-09 1.513350936e-09 1.141373368e-09 2.278172992e-09 1.95559323e-09 1.028471687e-09 8.444247777e-10 1.556912379e-09 1.588167437e-09 1.303603761e-09 1.124292395e-09 1.884948672e-09 1.367777412e-09 1.506591032e-09 1.855870086e-09 1.303273967e-09 1.133455175e-09 1.303266544e-09 1.123925263e-09 1.612700306e-09 1.040696211e-09 1.706315431e-09 1.683344584e-09 1.096440453e-09 1.600574563e-09 2.054783114e-09 1.430919922e-09 2.626597373e-09 1.687946922e-09 2.384542348e-09 3.478383118e-09 1.512619655e-09 1.78915482e-09 1.29305989e-09 1.603796237e-09 1.78273196e-09 1.787309373e-09 1.668703574e-09 1.04119332e-09 2.544571098e-09 2.026567346e-09 1.575934266e-09 2.000165404e-09 1.732461154e-09 1.659541399e-09 1.107704785e-09 1.50764956e-09 1.132350336e-09 1.719228701e-09 1.993311176e-09 8.733220447e-10 7.151115092e-10 7.593442628e-10 4.949642461e-10 9.447970787e-10 7.086439549e-10 2.033300281e-10 7.131903839e-10 7.822131302e-10 7.991531107e-10 9.859979192e-10 9.704365692e-10 1.291885896e-09 9.725673593e-10 5.502008993e-10 1.438660382e-09 6.881895933e-10 7.356437005e-10 1.011580902e-09 6.506862601e-10 4.577794783e-10 1.492817486e-09 1.784048126e-09 1.560430394e-09 1.295244837e-09 1.460344381e-09 1.628837457e-09 9.46652372e-10 1.260600087e-09 2.585310534e-09 8.470407709e-10 1.309318707e-09 1.345007652e-09 9.913198491e-10 5.059892269e-10 7.278757602e-10 6.833957239e-10 7.113684552e-10 8.992542533e-10 1.034315684e-09 6.516056537e-10 9.324809944e-10 1.543482276e-09 1.377644194e-09 1.177724617e-09 8.183652165e-10 7.921757874e-10 7.558791006e-10 5.666624373e-10 6.0881857e-10 5.498973326e-10 8.453801708e-10 7.505210773e-10 6.608345933e-10 5.883958005e-10 2.761799223e-10 8.084175085e-10 1.144565634e-09 9.319008329e-10 6.008039148e-10 5.30662546e-10 6.922273048e-10 7.524228483e-10 8.700048262e-10 5.740916334e-10 6.069409061e-10 9.517286083e-10 8.747237827e-10 7.506105658e-10 5.600882873e-10 1.131869975e-09 5.934657323e-10 5.847223246e-10 5.049044596e-10 7.711658855e-10 7.421860453e-10 1.021517244e-09 1.055862837e-09 7.220586493e-10 5.235935229e-10 7.533794573e-10 5.45221431e-10 5.576611427e-10 6.818205783e-10 4.941933976e-10 3.948423807e-10 7.17011419e-10 4.902625024e-10 4.15335021e-10 3.352496518e-10 5.440888063e-10 4.582780191e-10 4.359673692e-10 1.089621831e-09 7.840872274e-10 6.847304984e-10 1.01872688e-09 4.330349697e-10 8.483428871e-10 1.910396774e-10 1.424327407e-10 3.657685829e-10 1.553619305e-10 2.597487874e-10 1.397933876e-10 3.688037392e-10 1.463540253e-10 1.006733562e-10 4.626889288e-10 5.633184265e-10 7.75923392e-10 4.897159214e-10 +6.701377104e-10 4.065585827e-10 1.380425532e-10 4.146974082e-10 1.516061714e-10 1.496018889e-10 5.047365315e-10 2.896123656e-10 2.866050279e-10 5.008262241e-10 3.782750105e-10 4.129967436e-10 5.530113325e-10 3.352538569e-10 5.612823026e-10 6.926490884e-10 4.55671836e-10 6.77747616e-10 5.435510885e-10 4.783637168e-10 3.07274658e-10 7.339889581e-10 5.357339428e-10 4.094155018e-10 1.259540279e-09 8.903990899e-10 1.020697972e-09 3.756663412e-10 5.204890547e-10 1.142384194e-09 8.351722584e-10 9.319365405e-10 4.551372673e-10 1.183709126e-09 9.594128616e-10 6.530016883e-10 6.025119808e-10 2.908321977e-10 4.112759295e-10 7.81564622e-10 7.685837106e-10 1.113715907e-09 7.909340073e-10 5.561465958e-10 1.043222477e-09 9.574136069e-10 6.06660955e-10 7.083394882e-10 9.814256289e-10 8.159681416e-10 9.087807845e-10 1.02271032e-09 2.428592628e-10 4.711481523e-10 5.427110948e-10 7.528834556e-10 7.185407008e-10 1.005306442e-09 6.858249842e-10 5.721088181e-10 3.673336077e-10 7.320408223e-10 7.426916635e-10 8.853689354e-10 6.473363653e-10 4.687923684e-10 6.385415784e-10 1.535760919e-09 1.257761063e-09 8.041180701e-10 9.181636184e-10 1.732627682e-09 3.320980919e-10 9.272374147e-10 5.167696597e-10 9.851923992e-10 9.658553255e-10 9.636688192e-10 5.420789596e-10 1.154720091e-09 8.254005801e-10 1.712807977e-09 8.237799283e-10 1.308076854e-09 1.766492257e-09 8.454503133e-10 2.024873568e-09 9.482753127e-10 1.020183512e-09 6.80694719e-10 9.130418487e-10 1.029289735e-09 1.248525198e-09 8.996668526e-10 9.299737836e-10 1.165695013e-09 1.104740801e-09 8.455665634e-10 1.058712438e-09 3.275894706e-10 1.04640413e-09 1.230691504e-09 3.435038568e-10 6.660090396e-10 2.219391189e-10 5.175039175e-10 3.157227994e-10 4.316390152e-10 7.674923496e-10 6.103696524e-10 3.904369583e-10 1.187699712e-09 1.673072848e-09 1.470357853e-09 2.192056333e-09 2.396622887e-09 8.146402547e-10 1.303225656e-09 1.577759152e-09 2.849429341e-09 1.709972714e-09 2.356292892e-09 2.29076162e-09 1.278976607e-09 2.548533016e-09 1.239718109e-09 1.73057338e-09 1.934208377e-09 1.71455639e-09 1.518099605e-09 2.320510473e-09 2.217741792e-09 2.775835961e-09 2.99584731e-09 1.676093947e-09 1.336735746e-09 1.910662229e-09 1.109896594e-09 1.153761279e-09 1.503812961e-09 1.109812822e-09 6.698554214e-10 1.341295155e-09 8.700267084e-10 1.202116683e-09 1.126173876e-09 1.127239361e-09 1.525501765e-09 1.324343964e-09 1.722924165e-09 3.220848268e-10 1.315677055e-09 9.422026323e-10 2.184535509e-09 1.464882039e-09 5.968869229e-10 1.526090401e-09 1.32685486e-09 1.258556573e-09 1.288441156e-09 1.34436567e-09 1.055696967e-09 1.809573546e-09 1.904210722e-09 1.216683943e-09 2.029312503e-09 1.999433292e-09 1.993606304e-09 3.710489143e-09 2.733546741e-09 1.78273323e-09 2.05200757e-09 2.032193922e-09 1.085182377e-09 2.547180504e-09 1.212692471e-09 2.134746959e-09 1.486046982e-09 2.377686711e-09 1.576377973e-09 1.278955158e-09 1.751714292e-09 1.295018742e-09 1.139521023e-09 2.539562048e-09 1.652425129e-09 1.656373098e-09 8.438426518e-10 1.534601696e-09 5.433693571e-10 3.409895485e-10 5.059629746e-10 1.506862434e-10 1.742054674e-10 3.262696694e-10 5.097373501e-10 5.297957764e-10 4.874470908e-10 8.530990138e-10 1.345935384e-09 1.410663844e-09 8.12851264e-10 1.29450961e-09 5.979116745e-10 7.628742742e-10 1.174840304e-09 8.350813785e-10 1.192298421e-09 6.644251657e-10 1.046565855e-09 1.435175484e-09 1.348933723e-09 1.117954992e-09 1.480735854e-09 1.765814145e-09 1.917024346e-09 1.694716027e-09 5.041380557e-10 7.613937165e-10 1.583256944e-09 6.666262694e-10 4.111797679e-10 1.13930302e-09 8.476925571e-10 8.326528962e-10 1.057058571e-09 4.001074321e-10 9.931888022e-10 6.249907961e-10 3.560467772e-10 1.023421674e-09 1.133759595e-09 9.144108346e-10 4.586214667e-10 6.095632202e-10 6.646897102e-10 5.288645091e-10 6.569612375e-10 4.613889602e-10 8.63395437e-10 7.191929775e-10 1.083240467e-09 9.265877157e-10 8.561865569e-10 7.268529936e-10 7.634121863e-10 7.160082771e-10 8.787057491e-10 1.132959484e-09 3.977472378e-10 1.029708574e-09 1.04390851e-09 3.592828505e-10 5.095937633e-10 1.003493793e-09 6.184244032e-10 7.323880462e-10 7.204364192e-10 1.208952753e-09 6.08573074e-10 4.979549307e-10 1.024928083e-09 2.89220246e-10 8.542069715e-10 1.110914825e-09 8.00328648e-10 8.641696898e-10 4.283451503e-10 9.27771409e-10 6.302451755e-10 5.500404956e-10 1.165394494e-09 4.026423455e-10 9.162596234e-10 1.200242781e-09 6.248683693e-10 8.579455412e-10 6.757873587e-10 4.155587655e-10 2.756226356e-10 3.616137258e-10 3.189309498e-10 7.332364097e-10 3.604834306e-10 3.482830282e-10 6.104980571e-10 3.741891164e-10 7.930201503e-10 1.690045368e-10 3.925161157e-10 5.455826603e-10 3.438124638e-10 9.460875592e-11 2.814843059e-11 1.04494337e-10 2.216442262e-10 1.250791525e-10 4.086526641e-10 3.563163878e-10 7.385129071e-10 +3.209952977e-10 6.73610509e-10 3.178895058e-10 2.612512071e-10 6.376178503e-10 2.751747621e-10 3.045384706e-10 6.32537071e-10 2.089122295e-10 4.285900179e-10 4.177946804e-10 1.670117256e-10 3.544164652e-10 6.54568137e-10 2.42321392e-10 2.272396323e-10 4.593955427e-10 3.310135334e-10 4.417868798e-10 5.253140338e-10 6.949099662e-10 1.162248243e-09 1.240975514e-09 6.60525351e-10 9.606244176e-10 8.063112357e-10 7.44099202e-10 6.572734036e-10 6.820782424e-10 8.552874251e-10 5.529831649e-10 1.031045073e-09 6.125246175e-10 6.792242415e-10 2.927826755e-10 8.487781341e-10 4.847687286e-10 6.759146347e-10 9.755520916e-10 9.015217493e-10 1.194558624e-09 8.691417965e-10 2.532613857e-10 4.813278125e-10 1.279111025e-09 1.804492985e-09 9.514216763e-10 8.048704217e-10 5.433595826e-10 8.968413518e-10 7.024733567e-10 3.08574969e-10 3.616422186e-10 6.150919892e-10 7.478455212e-10 7.113192705e-10 4.999781568e-10 9.383962192e-10 9.412750113e-10 7.237717548e-10 7.609443132e-10 9.751184227e-10 4.187308142e-10 1.173482125e-09 1.025281346e-09 5.778255526e-10 7.410239517e-10 7.101574145e-10 1.333470132e-09 4.03875384e-10 7.688449112e-10 7.319666524e-10 8.340036138e-10 8.652202119e-10 3.809428366e-10 9.917672537e-10 7.737238767e-10 6.676168816e-10 1.149505296e-09 8.195346666e-10 6.318194399e-10 4.128204772e-10 8.824745753e-10 1.094463715e-09 2.321926957e-09 1.469616448e-09 1.653004463e-09 1.35199014e-09 6.727306923e-10 1.079120516e-09 8.260636543e-10 8.944258957e-10 1.677296247e-09 6.473007141e-10 7.435540742e-10 1.316287459e-09 4.187654719e-10 7.196152036e-10 1.412726786e-09 1.377247656e-09 1.364033734e-09 9.049878438e-10 5.38598446e-10 6.458999581e-10 8.961554913e-10 3.479161355e-10 4.815229022e-10 1.599872524e-10 4.564995009e-10 5.059442637e-10 7.322488836e-10 8.07103476e-10 2.071232953e-09 1.66062524e-09 1.17507862e-09 1.680243364e-09 1.952288064e-09 1.686966235e-09 2.767518612e-09 1.191465438e-09 1.568574398e-09 1.451392816e-09 2.379224119e-09 1.546184563e-09 1.454778698e-09 2.058423636e-09 1.584222882e-09 1.580495148e-09 1.967495634e-09 1.551239771e-09 1.905479336e-09 1.717063759e-09 2.293930721e-09 1.990202747e-09 1.432575428e-09 2.63415945e-09 1.585446066e-09 2.814058397e-09 1.08320704e-09 1.56351107e-09 1.04234178e-09 1.405428774e-09 8.842461673e-10 1.674867954e-09 9.382649202e-10 1.170565147e-09 1.493887271e-09 1.451066188e-09 1.869535255e-09 1.698417607e-09 1.495747777e-09 1.351018806e-09 1.595122339e-09 8.342137081e-10 1.224117881e-09 7.796519701e-10 1.585731887e-09 8.868761255e-10 1.628794525e-09 1.19222277e-09 1.510912547e-09 1.415435059e-09 2.012694261e-09 2.054941894e-09 1.924775646e-09 2.757027421e-09 1.769440888e-09 2.178791744e-09 2.540725674e-09 1.566798406e-09 1.785305812e-09 1.610866514e-09 1.231923029e-09 1.337445686e-09 2.044041935e-09 1.909235702e-09 1.898780738e-09 1.138698932e-09 1.88252018e-09 3.266725146e-09 1.467477305e-09 2.01408795e-09 1.708040487e-09 1.847317632e-09 1.574711925e-09 1.936994267e-09 1.159638322e-09 1.182979732e-09 8.063367609e-10 3.645862744e-10 6.401244032e-10 3.883416668e-10 1.793307345e-10 4.941158453e-10 3.602463697e-10 9.806565195e-10 6.049001393e-10 9.145161287e-10 8.195402198e-10 1.162775071e-09 9.32789319e-10 7.531232142e-10 1.174149081e-09 1.334306441e-09 1.276989206e-09 1.219447404e-09 5.313049863e-10 7.477023814e-10 7.25421153e-10 9.837975091e-10 1.130941829e-09 8.310292058e-10 9.085088586e-10 7.383135868e-10 1.246637367e-09 7.717416636e-10 1.092170969e-09 7.845433384e-10 7.715916872e-10 7.563487559e-10 4.36890432e-10 5.292516547e-10 6.063818713e-10 6.978147886e-10 3.041858946e-10 9.075422785e-10 5.103951095e-10 6.650588294e-10 6.628096189e-10 7.110356177e-10 6.605653791e-10 6.455850188e-10 9.634979631e-10 1.254002377e-09 6.755668402e-10 5.266762832e-10 8.417629501e-10 7.179052566e-10 6.319445276e-10 1.096057812e-09 1.200639719e-09 1.162942715e-09 1.198410643e-09 5.312101807e-10 3.895758729e-10 1.239958861e-09 4.467807704e-10 5.004318804e-10 5.917780534e-10 3.294110873e-10 7.976469006e-10 9.123623512e-10 6.718473347e-10 9.601350807e-10 5.500298024e-10 6.920552129e-10 6.480789396e-10 4.147405855e-10 5.425765847e-10 6.390139709e-10 8.899833809e-10 6.696017528e-10 5.024939983e-10 1.013971388e-09 1.236647838e-09 3.49721851e-10 7.246583164e-10 6.72206602e-10 9.781111454e-10 9.111301639e-10 6.418534726e-10 2.759232817e-10 8.516781128e-10 3.87334071e-10 3.631376524e-10 4.625354637e-10 3.937249412e-10 3.865072696e-10 1.028761763e-09 3.308632407e-10 8.127675313e-10 5.584141812e-10 5.949105249e-10 1.708092908e-10 6.577235902e-10 5.991743415e-10 9.581853226e-10 8.979442257e-10 2.312062233e-10 3.866760626e-10 3.746481575e-10 3.048139656e-10 7.5587519e-10 3.931551895e-10 3.277365208e-10 7.366182835e-11 1.368784434e-10 6.579372661e-10 5.318467929e-10 3.538333222e-10 +2.145864365e-10 3.213332588e-10 2.914474967e-10 6.359031334e-10 2.457793982e-10 2.102091713e-10 4.397317639e-10 3.44194765e-10 4.437423844e-10 2.716397748e-10 2.440242397e-10 3.013498138e-10 5.826166936e-10 6.837783383e-10 4.72080441e-10 4.789913932e-10 3.47110382e-10 3.131501647e-10 4.689047116e-10 2.575723323e-10 7.29218744e-10 9.449639153e-10 8.367984652e-10 7.785362845e-10 4.3327181e-10 7.662054052e-10 1.087652246e-09 3.951756362e-10 6.963554603e-10 8.196302279e-10 7.2376786e-10 7.617014278e-10 7.033738907e-10 5.526666792e-10 1.257846164e-09 9.996957041e-10 9.286142672e-10 1.279982534e-09 7.201464758e-10 4.500191418e-10 8.495211666e-10 3.86891647e-10 9.964715246e-10 6.631616337e-10 5.304907843e-10 9.207078526e-10 8.165053878e-10 5.591864099e-10 6.072738698e-10 9.063214639e-10 5.092769204e-10 5.68439533e-10 4.202813847e-10 2.755701573e-10 3.314505587e-10 9.813906761e-10 3.601389314e-10 6.510884324e-10 7.977763483e-10 8.201608459e-10 3.47578977e-10 1.107499767e-09 9.237143358e-10 4.170113709e-10 3.508375812e-10 7.790690222e-10 3.774817102e-10 9.458552038e-10 7.627555455e-10 6.616736791e-10 9.14938671e-10 7.509791308e-10 9.989547721e-10 9.209625868e-10 4.44428752e-10 5.40011306e-10 3.595450283e-10 7.135750085e-10 8.424381424e-10 1.134500364e-09 9.921699706e-10 8.175531195e-10 1.101714822e-09 1.423470903e-09 1.711876626e-09 1.728834316e-09 4.93047881e-10 5.284590476e-10 1.638025815e-09 8.828702538e-10 1.122718619e-09 1.715884555e-09 1.071523303e-09 8.003787932e-10 9.822973371e-10 1.162303663e-09 5.817078555e-10 9.087599547e-10 1.144125376e-09 1.016743837e-09 1.536186374e-09 8.008247403e-10 1.29307509e-09 8.232651665e-10 6.800496107e-10 4.69224008e-10 1.453483345e-10 6.725527413e-10 2.764521476e-10 6.198504762e-10 3.471221973e-10 6.358886249e-10 1.301788682e-09 1.436389062e-09 1.681802039e-09 1.960420839e-09 1.184635321e-09 1.611817102e-09 2.105521996e-09 1.5887494e-09 1.288811114e-09 1.250853984e-09 1.122897734e-09 1.608433484e-09 1.669017121e-09 1.77646024e-09 2.530644517e-09 1.41374413e-09 1.161248316e-09 1.702366824e-09 1.238506076e-09 1.972851584e-09 2.375455926e-09 2.212702569e-09 2.284403225e-09 2.150608749e-09 2.20168746e-09 2.032220384e-09 2.05162841e-09 1.763559463e-09 1.424254042e-09 1.6153173e-09 1.870492877e-09 1.32292129e-09 7.528410466e-10 1.451084538e-09 1.552690855e-09 1.888029531e-09 1.825975806e-09 1.41711774e-09 1.633572186e-09 1.078852168e-09 1.25337362e-09 1.625400176e-09 1.569227138e-09 1.344145986e-09 1.489542319e-09 1.808942911e-09 9.79154608e-10 1.491784525e-09 1.289289928e-09 9.575263467e-10 2.672441044e-09 2.071390391e-09 3.014878566e-09 3.022723201e-09 2.561773058e-09 2.326097534e-09 1.547519088e-09 1.669959384e-09 1.788793963e-09 1.951206972e-09 1.095911991e-09 1.864821595e-09 2.29912836e-09 2.20524404e-09 1.009255678e-09 9.055414445e-10 1.854445502e-09 1.517254323e-09 1.906825997e-09 1.490718322e-09 1.557369901e-09 1.823950321e-09 1.935549916e-09 1.56038832e-09 1.274857799e-09 7.353029142e-10 9.127083218e-10 3.267522655e-10 6.41632739e-10 2.451396567e-10 3.828136165e-10 2.242504908e-10 1.197077394e-10 9.434305094e-10 7.4460278e-10 9.449995387e-10 7.762057151e-10 9.104401028e-10 1.008144495e-09 1.07708901e-09 1.473029522e-09 9.12590198e-10 5.06151633e-10 1.104111882e-09 9.199981602e-10 1.120794133e-09 1.312563315e-09 1.072065826e-09 1.576619618e-09 1.173727576e-09 9.715202497e-10 8.696674081e-10 9.576707038e-10 2.201030632e-09 1.233402301e-09 1.123493266e-09 1.393115507e-09 7.382446866e-10 4.631659663e-10 8.749666969e-10 2.175741561e-10 8.977702073e-10 7.761727512e-10 3.616781381e-10 8.583023925e-10 8.826976688e-10 5.848637303e-10 4.054576832e-10 1.253084282e-09 8.455085678e-10 5.995386294e-10 1.133676873e-09 6.52378888e-10 5.462228686e-10 7.191082699e-10 1.108067762e-09 1.146654454e-09 5.252833197e-10 6.845131397e-10 6.569281204e-10 2.939817205e-10 6.859128875e-10 2.992641329e-10 8.129768272e-10 5.04325619e-10 4.97330085e-10 4.306642435e-10 4.963407115e-10 6.712306967e-10 2.976968561e-10 9.375851724e-10 4.738447099e-10 1.108955499e-09 8.278838937e-10 9.422756966e-10 7.155662096e-10 6.557660104e-10 1.401085066e-09 5.942957176e-10 1.359387013e-09 1.156039456e-09 1.230793217e-09 4.538726916e-10 8.842285564e-10 3.859891764e-10 5.297265153e-10 4.391128085e-10 6.74636575e-10 1.361188412e-09 5.422441406e-10 7.056283957e-10 8.182939687e-10 5.147492913e-10 5.961697758e-10 5.563814779e-10 8.275169864e-10 7.336279865e-10 4.420451167e-10 6.089999545e-10 5.355065166e-10 5.932824961e-10 6.449435635e-10 1.562125823e-10 2.391054359e-10 8.485555515e-10 2.367433818e-10 2.803754248e-10 6.154422499e-10 2.947518079e-10 2.614400462e-10 5.190473907e-10 7.82124647e-11 1.583915447e-10 1.423145909e-10 9.425971725e-11 4.018721733e-10 4.318350685e-10 3.884810204e-10 +1.649972041e-10 4.638219235e-10 2.306318732e-10 6.9331226e-10 3.795732558e-10 1.973215805e-10 4.750105316e-10 7.721997283e-10 4.420456616e-10 2.67211216e-10 4.225683631e-10 3.225853387e-10 5.668184311e-10 5.170209076e-10 2.719435902e-10 6.112824874e-10 4.89489017e-10 5.033685549e-10 5.001924448e-10 4.344016522e-10 9.187141479e-10 1.040720678e-09 5.262724748e-10 4.997011511e-10 5.100468467e-10 5.999641028e-10 8.384301149e-10 3.527090233e-10 1.24144208e-09 6.65589064e-10 5.766173537e-10 3.136127867e-10 5.88680021e-10 1.139252949e-09 5.501902864e-10 5.101068401e-10 6.752741401e-10 9.17725607e-10 8.833115109e-10 4.743044004e-10 8.543051078e-10 1.209033448e-09 4.491736415e-10 8.664823812e-10 6.262259584e-10 9.157537181e-10 5.045787581e-10 3.542361898e-10 1.186505874e-09 5.184177917e-10 7.559241787e-10 3.722803454e-10 3.141245953e-10 4.449698319e-10 5.473172882e-10 5.504304653e-10 8.985715431e-10 1.348412441e-09 5.894981711e-10 9.407111427e-10 4.737676415e-10 1.074874871e-09 8.801083358e-10 6.175900987e-10 7.267530553e-10 9.755800867e-10 5.438282603e-10 7.094939674e-10 1.036360646e-09 1.136270916e-09 1.281783734e-09 8.902939166e-10 6.526029057e-10 8.121531968e-10 5.528093698e-10 5.977322526e-10 8.0341435e-10 7.84449977e-10 8.130637362e-10 5.895247192e-10 1.23362857e-09 1.027889738e-09 1.3991203e-09 6.734397603e-10 1.219827743e-09 1.616542203e-09 5.465192122e-10 1.359314306e-09 1.269951137e-09 1.326014871e-09 1.103823948e-09 1.826427548e-09 4.011549408e-10 8.062438502e-10 1.061395375e-09 8.598052095e-10 1.354268779e-09 1.088426745e-09 1.066609719e-09 5.574442405e-10 9.505169384e-10 9.423531739e-10 8.62558263e-10 4.070485004e-10 5.245562353e-10 5.217925702e-10 5.327497773e-10 2.452597875e-10 7.125915951e-10 5.293728225e-10 4.503148325e-10 8.981892333e-10 5.305423123e-10 2.252879828e-09 2.041732008e-09 2.924408095e-09 1.921905207e-09 1.318515665e-09 1.068349384e-09 2.836156569e-09 1.978885929e-09 1.8077116e-09 1.797712918e-09 1.636016816e-09 1.734257152e-09 1.42361497e-09 1.521297047e-09 1.37279511e-09 1.376496759e-09 2.31250434e-09 2.390410898e-09 1.333909336e-09 2.321705644e-09 2.644949742e-09 1.270906944e-09 3.015879416e-09 2.706285399e-09 2.015205024e-09 2.460125641e-09 2.390814277e-09 1.542087457e-09 2.040607859e-09 1.074105167e-09 1.749765767e-09 1.296446783e-09 1.763209958e-09 1.132810558e-09 1.204388972e-09 2.118671655e-09 1.48047845e-09 1.464033962e-09 1.752504099e-09 1.447828597e-09 8.585528732e-10 1.72169582e-09 1.321616732e-09 1.804793602e-09 1.812410103e-09 1.403150308e-09 3.01969899e-09 1.744062655e-09 1.66559735e-09 1.758844139e-09 2.702331278e-09 1.499817229e-09 2.228286636e-09 8.744738662e-10 1.803413302e-09 1.795203011e-09 1.324403063e-09 1.783332969e-09 1.141188772e-09 9.675598337e-10 1.487646124e-09 1.244267552e-09 1.561368072e-09 2.234640395e-09 1.314955516e-09 1.99526768e-09 2.009830005e-09 2.260808764e-09 2.708706066e-09 1.726204901e-09 1.521611835e-09 2.068245983e-09 2.109421524e-09 6.348447504e-10 1.013932192e-09 6.630538111e-10 2.80099888e-10 2.498661653e-10 3.15874645e-10 3.030868204e-10 4.698432627e-10 9.998771709e-10 9.142711466e-10 8.209724327e-10 4.084546781e-10 6.610246825e-10 9.110819081e-10 1.095011402e-09 9.829442748e-10 8.308387637e-10 9.868987744e-10 1.42368719e-09 9.745211513e-10 1.035987471e-09 1.350219667e-09 1.317903222e-09 1.917336843e-09 1.558504767e-09 1.273569359e-09 1.029095715e-09 1.428958123e-09 1.137714058e-09 1.572224647e-09 8.092763369e-10 9.439560965e-10 1.0092528e-09 6.38716939e-10 3.741557568e-10 1.035758831e-09 2.975787384e-10 3.860551272e-10 3.977247517e-10 5.184425433e-10 6.805842941e-10 1.062727382e-09 8.500193971e-10 1.349252197e-09 7.197783404e-10 1.077522685e-09 9.700507637e-10 8.270070808e-10 5.044838749e-10 1.254706406e-09 1.225609296e-09 4.964526016e-10 1.072648446e-09 9.063753345e-10 1.361907822e-09 9.365369805e-10 9.431991894e-10 8.335453192e-10 3.425918025e-10 5.517625735e-10 5.61945333e-10 4.626683282e-10 5.016488826e-10 4.875133173e-10 3.667153774e-10 5.363767035e-10 8.78629368e-10 1.034001519e-09 5.99628846e-10 7.094161178e-10 4.0920492e-10 3.436740384e-10 1.121875548e-09 3.318193704e-10 5.011516003e-10 1.226886163e-09 1.032478196e-09 1.171943247e-09 1.164771307e-09 7.616806146e-10 5.742299468e-10 7.732854748e-10 1.152733909e-09 8.88289847e-10 3.518143444e-10 6.148824517e-10 4.000250814e-10 1.192860225e-09 1.336266212e-10 6.576567631e-10 8.086543062e-10 5.876664391e-10 5.910724401e-10 4.370050381e-10 2.281761e-10 4.99831439e-10 6.534672356e-10 6.186952126e-10 6.576715991e-10 7.420336137e-10 5.231328041e-10 5.843011125e-10 5.213097077e-10 3.415839397e-10 3.267582886e-10 5.568321187e-10 1.025490465e-09 3.187645587e-10 7.109967518e-10 1.748467568e-10 3.096854349e-10 8.210868422e-10 3.756124927e-10 5.118193317e-10 +7.281107493e-10 3.818592937e-10 5.405266197e-10 5.744718984e-10 8.700242681e-10 7.715912805e-10 4.58464319e-10 2.159373682e-10 4.732877781e-10 3.351783381e-10 1.943438956e-10 3.703141608e-10 5.245491981e-10 3.448975584e-10 1.377031663e-10 3.518950641e-10 9.489991504e-10 3.39666303e-10 3.762787649e-10 1.137758784e-09 1.037765799e-09 1.208176753e-09 3.329117707e-10 9.693444087e-10 6.671794659e-10 3.486389865e-10 3.622976866e-10 1.307382868e-10 4.308711516e-10 1.135677548e-09 5.377856921e-10 3.522479095e-10 6.639644462e-10 4.859942433e-10 9.834448576e-10 5.863789546e-10 1.260471981e-09 8.539480056e-10 7.035733801e-10 4.209506596e-10 5.826840476e-10 6.947068076e-10 3.75113474e-10 1.081145833e-09 2.7853322e-10 1.106920923e-09 6.549286753e-10 8.725468748e-10 5.172794341e-10 3.385457621e-10 5.380343913e-10 4.236878728e-10 2.635256556e-10 7.708597411e-10 4.782031414e-10 5.155263251e-10 1.135389433e-09 8.03247548e-10 1.102441395e-09 1.301911346e-09 4.293079555e-10 5.355069007e-10 7.485985189e-10 4.174862186e-10 9.582071311e-10 2.241251809e-10 6.953144722e-10 1.23840995e-09 1.09417889e-09 1.493724464e-09 7.660969895e-10 7.058358865e-10 8.774283811e-10 5.386699576e-10 4.455773269e-10 4.695597157e-10 6.276399125e-10 2.711767529e-10 3.136204045e-10 6.539798874e-10 8.238693655e-10 1.082433508e-09 1.399768869e-09 1.530450923e-09 2.641389393e-09 8.525162547e-10 1.099026462e-09 1.197419466e-09 1.184696049e-09 1.179726218e-09 1.489751888e-09 1.305418428e-09 1.735634894e-09 1.11633906e-09 9.299320912e-10 1.141792238e-09 8.824773979e-10 8.778806255e-10 5.812891235e-10 8.879798624e-10 1.336444817e-09 4.997842631e-10 6.206072933e-10 8.747808762e-10 8.489446399e-10 7.826481786e-10 4.841371272e-10 2.318774018e-10 1.709285032e-10 4.397756687e-10 4.104291411e-10 1.133570092e-09 1.004641091e-09 6.416312086e-10 1.041201552e-09 1.975093317e-09 2.008648115e-09 2.14479369e-09 2.194035297e-09 2.447571271e-09 2.408748239e-09 1.526965857e-09 2.537159202e-09 1.386090342e-09 1.711959708e-09 1.92130723e-09 1.599648003e-09 1.52287073e-09 1.232856116e-09 1.31039825e-09 9.696338474e-10 1.95196625e-09 1.249261999e-09 1.771780046e-09 2.555618055e-09 1.837033999e-09 2.131374463e-09 1.073904033e-09 3.308680777e-09 1.803233944e-09 1.339343992e-09 2.177203551e-09 2.102193029e-09 2.523897555e-09 1.615229454e-09 1.712530299e-09 1.644850291e-09 1.594418696e-09 1.477721759e-09 1.526230674e-09 1.835169705e-09 1.284282533e-09 1.467280124e-09 1.11019999e-09 1.656279161e-09 1.860100249e-09 2.702943543e-09 1.9238567e-09 2.307718953e-09 1.872762451e-09 2.290789652e-09 2.307353538e-09 1.327637702e-09 1.601159606e-09 2.275413237e-09 1.680437151e-09 1.654361781e-09 1.80579811e-09 9.211594199e-10 9.40388254e-10 2.069658801e-09 2.016194091e-09 1.077463595e-09 1.678272082e-09 1.329367662e-09 2.341563637e-09 1.786903041e-09 2.310644814e-09 2.297700301e-09 1.267199198e-09 2.41835012e-09 2.01384146e-09 1.008539193e-09 2.005218602e-09 1.647890068e-09 2.49943833e-09 4.042560921e-10 8.049666244e-10 7.711917037e-10 3.168044271e-10 3.372296244e-10 2.13967721e-10 5.557142745e-11 4.137016783e-10 4.354824115e-10 7.73718329e-10 6.7573217e-10 1.000062246e-09 1.357853896e-09 1.006103979e-09 6.593508074e-10 7.8398625e-10 1.186775109e-09 7.326510701e-10 9.406236822e-10 1.103784811e-09 1.109583069e-09 8.660754286e-10 1.18304146e-09 1.225945065e-09 5.765995258e-10 1.180841046e-09 2.058599948e-09 1.081468073e-09 1.389084044e-09 1.385256409e-09 1.22016774e-09 9.664275043e-10 8.738988768e-10 1.115725081e-09 3.475997734e-10 1.018340609e-09 5.750107702e-10 4.211869946e-10 9.205838758e-10 6.017217071e-10 6.958510449e-10 5.473470403e-10 5.522683097e-10 9.564906242e-10 5.853890129e-10 8.826267269e-10 7.35138489e-10 1.062706747e-09 5.859317242e-10 7.746470343e-10 3.974718274e-10 6.336758847e-10 7.357678475e-10 5.019116599e-10 7.117200244e-10 1.008879995e-09 8.111262021e-10 7.047656542e-10 4.899726911e-10 6.163072803e-10 1.22244102e-09 9.312466216e-10 8.022813562e-10 7.979536487e-10 8.006760731e-10 9.981064478e-10 7.2497036e-10 7.478961392e-10 1.105405866e-09 5.665323533e-10 2.166759189e-10 3.729056864e-10 1.058084314e-09 7.469952662e-10 6.074188706e-10 1.05970081e-09 4.347225729e-10 6.766131388e-10 6.741773022e-10 7.176917383e-10 6.036600024e-10 5.878512413e-10 5.744867153e-10 6.169010344e-10 8.95847765e-10 4.428001812e-10 4.598660801e-10 7.415488978e-10 4.898109518e-10 8.076853688e-10 7.046061973e-10 1.392482793e-09 9.072280306e-10 4.664062561e-10 2.324801258e-10 7.244685874e-10 3.217584786e-10 2.969992602e-10 5.564858737e-10 6.158291313e-10 3.882641586e-10 3.860275863e-10 3.964644333e-10 4.471392757e-10 5.246274192e-10 5.067577212e-10 4.320159114e-10 4.875768193e-10 3.136466324e-10 1.99298973e-10 2.892905274e-10 3.944657609e-10 1.009798985e-09 4.333466955e-10 +3.418866372e-10 2.970103614e-10 3.373573337e-10 4.520227531e-10 4.389068957e-10 3.500543582e-10 3.984160958e-10 4.501359871e-10 2.49246113e-10 3.559596559e-10 3.13176592e-10 3.515138051e-10 3.036066814e-10 5.383722374e-10 5.556117217e-10 3.874140186e-10 5.674863364e-10 5.622056678e-10 5.156981766e-10 1.008244197e-09 7.507599708e-10 7.647351597e-10 7.619546323e-10 8.877614227e-10 4.567128234e-10 8.121306802e-10 8.312181438e-10 6.93051288e-10 6.711448148e-10 7.362733151e-10 3.257619142e-10 4.300818527e-10 5.252000655e-10 8.952672985e-10 5.906412215e-10 8.616462487e-10 5.604828058e-10 1.461671682e-09 7.426665835e-10 8.539642427e-10 8.299120581e-10 7.793758225e-10 6.472888779e-10 6.236453034e-10 4.013053556e-10 1.296003693e-09 9.438092018e-10 8.156548548e-10 8.597790989e-10 4.044702351e-10 7.176598707e-10 7.890798268e-10 8.328240981e-10 5.033499754e-10 8.733506178e-10 3.723510332e-10 1.015379394e-09 6.514974079e-10 8.118639575e-10 1.041702931e-09 8.240450396e-10 4.638094834e-10 3.856658852e-10 1.350864555e-09 7.108819777e-10 9.193914717e-10 7.769892674e-10 6.815081357e-10 7.30939425e-10 7.248358193e-10 1.506862328e-10 1.115307368e-09 7.936423317e-10 6.554240208e-10 5.528536497e-10 1.952314445e-10 4.831380662e-10 1.225228019e-09 5.312990604e-10 7.606610155e-10 1.115705202e-09 1.0704322e-09 1.456715884e-09 1.764533292e-09 9.526016123e-10 1.740974817e-09 1.433673832e-09 8.037127208e-10 1.247583716e-09 1.339722637e-09 1.358227445e-09 5.990396146e-10 7.757973143e-10 1.152344767e-09 1.222364347e-09 9.125322213e-10 1.307035268e-09 1.148546543e-09 9.903530305e-10 1.001028967e-09 4.177854686e-10 6.839139891e-10 9.866945576e-10 7.329672773e-10 6.289224282e-10 4.396307117e-10 9.537604475e-10 3.225678374e-10 2.81913065e-10 2.014872574e-10 4.684288976e-10 7.249396933e-10 6.943262409e-10 7.563310026e-10 1.072712814e-09 9.974294491e-10 1.569415855e-09 2.400276514e-09 1.631338737e-09 1.67733373e-09 1.208633207e-09 2.55206263e-09 2.171766585e-09 9.117959461e-10 2.319011317e-09 2.650959591e-09 1.884794644e-09 2.700072065e-09 1.840391271e-09 1.176359881e-09 1.692754752e-09 1.713965446e-09 1.57028464e-09 8.062028861e-10 1.700731107e-09 1.896586963e-09 2.810851678e-09 2.324467842e-09 2.852659642e-09 1.400265995e-09 1.985016855e-09 1.460373763e-09 1.211210671e-09 2.308950061e-09 1.810777111e-09 2.459744857e-09 2.404651942e-09 1.233142788e-09 2.313492421e-09 1.953104696e-09 2.632518154e-09 1.247788847e-09 2.005558834e-09 1.764811114e-09 1.372166322e-09 1.414585544e-09 3.148591265e-09 1.705967149e-09 1.788173333e-09 2.185955649e-09 3.107649215e-09 2.517604154e-09 1.542741493e-09 1.958491806e-09 1.948817586e-09 1.609506449e-09 9.564882575e-10 1.864710633e-09 1.599303894e-09 9.063254557e-10 1.316684704e-09 1.349004016e-09 5.981134997e-10 1.672984839e-09 6.199387059e-10 2.095136183e-09 1.604438487e-09 2.075207324e-09 1.679490565e-09 2.159965831e-09 2.022573332e-09 1.543977107e-09 1.846908306e-09 1.402010713e-09 1.052011151e-09 1.182703775e-09 7.231663317e-10 1.211538665e-09 8.964817446e-10 5.038615688e-10 2.732343904e-10 8.786828464e-11 1.540070138e-10 4.673773572e-10 8.951992886e-10 5.080320094e-10 4.399328047e-10 1.170804036e-09 9.732491857e-10 1.421577083e-09 8.937629257e-10 8.559407719e-10 1.077282742e-09 9.765802407e-10 1.479505142e-09 1.204762231e-09 6.498679228e-10 7.189162458e-10 9.594271052e-10 9.392092282e-10 9.346365805e-10 9.055759776e-10 6.773986673e-10 2.452188678e-09 8.435847511e-10 9.981531415e-10 1.052191997e-09 9.790074651e-10 7.463582821e-10 6.359619256e-10 2.874616249e-10 7.093048707e-10 3.804254814e-10 5.158425285e-10 9.400707313e-10 4.291956959e-10 4.604478887e-10 5.887299005e-10 6.962521402e-10 9.263668504e-10 6.436043088e-10 8.646361861e-10 1.141366711e-09 5.63056683e-10 1.110514074e-09 4.392201922e-10 7.006240915e-10 7.844061997e-10 5.359636626e-10 9.109352186e-10 9.488580774e-10 7.128979786e-10 3.27916202e-10 8.447283036e-10 8.280646574e-10 8.135783886e-10 3.612480949e-10 9.167613978e-10 7.267966471e-10 7.461713713e-10 8.171035591e-10 7.293692524e-10 5.99423189e-10 2.038953777e-10 2.880241092e-10 2.748360209e-10 6.556922053e-10 2.683732622e-10 9.593030665e-10 9.390506912e-10 5.085129654e-10 9.403570935e-10 1.018767711e-09 7.251143887e-10 8.268982877e-10 6.125278408e-10 6.107321036e-10 8.703029771e-10 8.237613525e-10 7.054260299e-10 7.924946666e-10 6.837151349e-10 1.061697582e-09 5.810466302e-10 9.786019525e-10 1.300121006e-09 1.515540423e-10 5.548607628e-10 9.352684602e-10 8.583972597e-10 6.80130509e-10 6.292248599e-10 1.034448845e-09 4.309369792e-10 7.559289047e-10 6.772188702e-10 2.110508011e-10 4.333586739e-10 1.031165134e-09 5.780410882e-10 5.859755547e-10 5.889040659e-10 4.739636491e-10 3.679057591e-10 3.712454602e-10 9.220739631e-10 4.854101521e-10 4.439712908e-10 7.137196649e-10 7.104187911e-10 +4.604835028e-10 4.038741967e-10 5.209469585e-10 5.89188268e-10 1.986150304e-10 6.390439775e-10 1.857702264e-10 5.791590343e-10 2.346491898e-10 3.534076941e-10 9.173999085e-10 4.596326997e-10 9.648821058e-10 4.944826533e-10 1.025813097e-09 7.779373478e-10 9.936053651e-10 6.850929883e-10 2.203806105e-10 6.114776807e-10 9.468680004e-10 5.19354275e-10 7.642736581e-10 5.529857654e-10 6.041696581e-10 4.471616321e-10 7.33223214e-10 7.558314157e-10 7.454486701e-10 7.450975269e-10 4.496856737e-10 6.373607514e-10 9.94465556e-10 5.173940232e-10 3.121744542e-10 6.169164132e-10 5.994591306e-10 8.858967387e-10 5.106522589e-10 6.855807715e-10 7.408619725e-10 5.2968679e-10 5.747678346e-10 5.975342736e-10 1.133262018e-09 5.82861996e-10 9.003320672e-10 4.827641763e-10 7.714556148e-10 9.605425749e-10 6.362134934e-10 7.748914353e-10 1.847029277e-10 3.153510281e-10 7.698187648e-10 7.608703718e-10 9.97926101e-10 1.3135544e-09 8.959023305e-10 5.994076955e-10 1.001204132e-09 7.370531031e-10 5.350582799e-10 7.63009815e-10 9.338545348e-10 5.460989693e-10 6.490288544e-10 1.226812851e-09 2.772542368e-10 3.936835848e-10 6.741930745e-10 5.905473972e-10 9.051891749e-10 6.698723358e-10 3.967047589e-10 6.582344356e-10 7.882943171e-10 5.120488181e-10 9.329915608e-10 4.245656181e-10 5.212570971e-10 9.450227545e-10 1.122249559e-09 1.398255879e-09 1.24356758e-09 1.785918931e-09 1.150385784e-09 1.268324667e-09 7.172321256e-10 6.64418285e-10 1.380769227e-09 7.968570974e-10 7.827668004e-10 1.147354628e-09 9.018132672e-10 7.093465558e-10 1.156339773e-09 1.364302952e-09 1.208497924e-09 1.508311622e-09 1.617920139e-09 1.213723671e-09 9.797360466e-10 1.193672449e-09 7.202556319e-10 8.252652858e-10 3.67966941e-10 2.998367763e-10 2.432291556e-10 2.716007885e-10 4.599801341e-10 4.009429529e-10 6.541350923e-10 6.153546776e-10 6.130878554e-10 7.305468206e-10 1.096935077e-09 2.199295308e-09 2.206014136e-09 2.222409994e-09 1.555820031e-09 1.13534863e-09 1.674767676e-09 1.305560062e-09 2.122929757e-09 1.554329977e-09 1.977148503e-09 1.453334291e-09 1.793046087e-09 1.864057728e-09 1.45901011e-09 1.920442105e-09 1.521042423e-09 1.67740962e-09 1.555017747e-09 1.125333939e-09 1.515635818e-09 1.922957646e-09 2.576761354e-09 1.854625434e-09 2.51224119e-09 3.834523276e-09 3.434579912e-09 2.034846804e-09 1.872801354e-09 1.931828353e-09 1.305247852e-09 1.174069371e-09 1.924810312e-09 1.735113107e-09 2.065447355e-09 1.51678903e-09 1.641051969e-09 2.371252136e-09 1.804498504e-09 1.99171121e-09 1.42177962e-09 1.834056118e-09 2.73589036e-09 1.946722492e-09 2.355278007e-09 2.347850878e-09 1.463288471e-09 2.504976458e-09 3.597198748e-10 1.65680452e-09 2.213100402e-09 2.026421185e-09 1.714324416e-09 2.320248268e-09 1.231109912e-09 1.318015986e-09 1.278528474e-09 1.163487613e-09 2.56541591e-09 1.172686591e-09 1.012778141e-09 1.484650755e-09 1.518822144e-09 8.10881874e-10 1.131182777e-09 2.031844378e-09 1.771328773e-09 1.605807555e-09 1.274525894e-09 6.891021819e-10 6.573253781e-10 6.57605966e-10 5.397456329e-10 4.604834477e-10 1.567781564e-10 7.497683897e-10 2.956122073e-10 7.641205774e-10 6.066938971e-10 5.569948475e-10 6.319587773e-10 9.315782126e-10 8.09428301e-10 1.329572051e-09 6.085176798e-10 4.374155604e-10 6.875125341e-10 1.083017749e-09 1.627076755e-09 1.106962816e-09 8.31874236e-10 1.160161414e-09 1.380849802e-09 1.179569837e-09 1.382998737e-09 1.333785751e-09 8.834598852e-10 8.835938819e-10 1.69163234e-09 9.944005132e-10 1.023631463e-09 1.260129158e-09 1.123188627e-09 4.241344643e-10 4.568337213e-10 2.842165092e-10 8.443684338e-10 8.001530057e-10 4.066415846e-10 2.735355614e-10 3.216783799e-10 4.514790717e-10 7.061023934e-10 8.855482177e-10 7.218426347e-10 9.164891144e-10 1.05270778e-09 1.019338118e-09 5.634306648e-10 3.045093031e-10 5.422684026e-10 4.898014941e-10 1.034362774e-09 9.236292613e-10 6.864509466e-10 5.105734658e-10 7.962252431e-10 9.443272237e-10 5.759129632e-10 7.231553964e-10 3.775757906e-10 6.704413472e-10 9.753697046e-10 8.095498698e-10 7.406787956e-10 8.232787434e-10 8.043279388e-10 6.156254077e-10 7.490087191e-10 9.167342323e-10 7.175075397e-10 5.302817156e-10 5.215028219e-10 6.025041611e-10 2.756095621e-10 6.971103291e-10 3.093243647e-10 2.495091686e-10 5.872835107e-10 5.672262538e-10 3.499581761e-10 7.121857984e-10 7.001400911e-10 1.208394614e-09 5.120042165e-10 8.051908572e-10 6.002421846e-10 1.121206994e-09 5.283261854e-10 7.255582948e-10 6.559676349e-10 5.189550594e-10 6.435413718e-10 7.59911579e-10 9.013125076e-10 6.360696498e-10 7.823928495e-10 8.18650412e-10 6.787086252e-10 7.835922585e-10 3.41534089e-10 3.711657064e-10 2.080746897e-10 4.121358068e-10 2.588851054e-10 3.241408051e-10 3.399026981e-10 5.544391068e-10 5.242128164e-10 4.658414598e-10 7.996963954e-10 3.063918556e-10 5.31018665e-10 2.791378672e-10 +5.447177414e-10 7.009502265e-10 3.419558427e-10 1.406500413e-10 1.077327879e-09 3.4712628e-10 6.065060699e-10 6.060792439e-10 1.048109841e-09 3.348158167e-10 4.878214697e-10 8.160925957e-10 6.335767407e-10 6.966476609e-10 7.884031047e-10 6.224767241e-10 8.906791584e-10 8.002467634e-10 4.022734436e-10 5.454123209e-10 7.902036244e-10 7.348732004e-10 4.667686504e-10 4.996211062e-10 3.595236988e-10 6.846643213e-10 4.379147185e-10 1.107918307e-09 9.962023034e-10 7.580409245e-10 7.8621451e-10 1.317708226e-09 5.880634748e-10 1.387048779e-09 6.022834386e-10 3.419356691e-10 5.000301778e-10 5.468185878e-10 1.068364659e-09 1.156289146e-09 5.579883332e-10 8.712879236e-10 7.254066418e-10 1.009792555e-09 2.711747281e-10 5.108276941e-10 4.610823251e-10 7.956719513e-10 2.596436903e-10 7.486688774e-10 3.727047857e-10 6.292124429e-10 5.822226847e-10 4.681191096e-10 6.346025928e-10 8.798799521e-10 4.973900156e-10 9.519568103e-10 4.544201658e-10 6.666478463e-10 9.720749429e-10 8.527106816e-10 1.083646728e-09 1.832296278e-09 8.727244362e-10 1.182332039e-09 9.29550757e-10 9.960660366e-10 9.661734006e-10 4.972349342e-10 5.406443879e-10 1.104788907e-09 3.31768898e-10 8.140313709e-10 8.554836396e-10 5.680777046e-10 2.363678416e-10 6.90916375e-10 4.805383185e-10 6.474938964e-10 1.082610829e-09 8.241360355e-10 8.549533116e-10 1.255552161e-09 1.668926019e-09 9.688215533e-10 1.20207009e-09 1.295688299e-09 9.351577741e-10 1.149812183e-09 7.273781443e-10 9.373630773e-10 1.149734418e-09 1.488966864e-09 1.109544271e-09 9.65579565e-10 5.675997808e-10 7.935585658e-10 6.293301522e-10 9.787680035e-10 9.444614373e-10 7.662892652e-10 1.024047471e-09 1.521751992e-09 1.025435578e-09 6.772807758e-10 3.946708333e-10 2.653734285e-10 4.320849825e-10 2.528971077e-10 3.057747692e-10 3.245567761e-10 5.681224762e-10 7.767540419e-10 5.682451341e-10 3.822146112e-10 1.685899403e-09 1.628912949e-09 2.125165919e-09 1.674249601e-09 1.909031766e-09 1.55043298e-09 1.897967545e-09 1.862570506e-09 1.142291412e-09 2.545232348e-09 1.464939353e-09 1.498658156e-09 1.705291745e-09 1.623761448e-09 1.190545259e-09 1.093470195e-09 1.784021748e-09 1.21139048e-09 2.150717265e-09 1.554825595e-09 1.317576511e-09 2.295219693e-09 1.289244287e-09 2.314907878e-09 2.295010428e-09 1.578970769e-09 1.118454867e-09 1.447518279e-09 1.944748184e-09 1.749517097e-09 8.082433247e-10 3.434624013e-09 2.024451804e-09 2.564132669e-09 2.789991623e-09 1.817698016e-09 1.904904496e-09 1.192447526e-09 1.686886921e-09 2.776097258e-09 2.224459337e-09 1.715856093e-09 1.300184065e-09 1.767421715e-09 2.606262861e-09 2.591081618e-09 1.781769168e-09 1.711452294e-09 1.050595398e-09 8.838277627e-10 1.480195162e-09 1.470967038e-09 1.845305996e-09 1.354247585e-09 1.330547397e-09 8.88902894e-10 1.072892622e-09 2.23890676e-09 1.780357332e-09 1.716817167e-09 1.566387612e-09 2.504987099e-09 3.612096526e-09 1.887856189e-09 1.11352407e-09 1.580279283e-09 1.519410382e-09 9.876593167e-10 1.23438943e-09 7.114788405e-10 6.927547153e-10 9.909619023e-10 4.923119772e-10 5.301973621e-11 1.058010559e-10 5.92825062e-10 5.670197383e-10 8.293268573e-10 7.250475722e-10 1.25997886e-09 1.055150712e-09 6.736767221e-10 1.034992827e-09 1.02909797e-09 1.394381154e-09 9.156322692e-10 1.086714871e-09 8.413483135e-10 1.121178836e-09 9.485297165e-10 1.539776481e-09 1.457201874e-09 7.319358025e-10 9.712627689e-10 1.081806155e-09 1.224683098e-09 1.641318605e-09 1.070628742e-09 1.548360587e-09 1.39451106e-09 1.09639635e-09 6.914849197e-10 1.339275756e-09 9.271869391e-10 5.244174001e-10 4.219043645e-10 5.874032983e-10 8.851882714e-10 6.159412387e-10 8.104884214e-10 3.779236963e-10 6.580236726e-10 7.490485803e-10 4.497791431e-10 1.316884584e-09 7.943050851e-10 7.559481765e-10 8.918648308e-10 6.477383835e-10 7.687395219e-10 4.518875188e-10 4.488473206e-10 4.05017943e-10 8.614738082e-10 1.45791241e-09 1.25392417e-09 8.848473073e-10 4.40869798e-10 5.625197625e-10 9.048988931e-10 6.894442535e-10 4.067846738e-10 6.898640526e-10 2.866989826e-10 6.841630117e-10 1.162794001e-09 5.912548335e-10 9.312797413e-10 4.062769066e-10 9.452557139e-10 5.248276929e-10 8.826921451e-10 5.086249238e-10 8.66733347e-10 5.192031377e-10 9.968883003e-10 5.39307595e-10 7.223698125e-10 1.218842213e-09 1.072146954e-09 6.611588563e-10 8.328928858e-10 1.187641322e-09 7.982740164e-10 9.394894932e-10 8.635334049e-10 7.488138137e-10 8.642149837e-10 6.987764818e-10 7.398485531e-10 1.046990176e-09 6.103616909e-10 9.859945208e-10 1.074046084e-09 7.734546405e-10 5.849220551e-10 4.530456962e-10 5.743124595e-10 3.746138684e-10 2.551215601e-10 6.837013674e-10 6.908514315e-10 7.177537253e-10 9.828764573e-10 6.983182651e-10 5.881730039e-10 6.468582887e-10 5.22679788e-10 5.96342422e-10 2.137713164e-10 3.704362937e-10 6.777542779e-10 6.615671457e-10 6.78984297e-10 +2.601734349e-10 4.332866841e-10 6.804195685e-10 7.240829846e-10 9.355220432e-10 4.841555801e-10 4.110875539e-10 2.68320487e-10 8.528051288e-10 6.363638467e-10 5.449995547e-10 9.96011507e-10 5.988871459e-10 5.630972061e-10 3.674533804e-10 3.740411468e-10 3.39166694e-10 4.388421732e-10 4.094927309e-10 1.066016406e-09 7.683418395e-10 5.934302647e-10 1.113434161e-09 1.112419563e-09 2.938596041e-10 7.719570589e-10 3.971099991e-10 7.084954893e-10 7.630546507e-10 1.206908201e-09 7.031484657e-10 8.031405395e-10 5.841106877e-10 6.135018094e-10 7.317881498e-10 9.377834952e-10 1.087153146e-09 5.421787185e-10 5.312161952e-10 1.096661181e-09 7.165672714e-10 6.772299068e-10 6.415008823e-10 7.514273456e-10 5.036158467e-10 2.825476337e-10 3.85147972e-10 2.253178637e-10 4.638086631e-10 5.982073055e-10 3.677321241e-10 7.068105419e-10 5.403850768e-10 9.686494911e-10 4.274480501e-10 5.480295337e-10 3.500570487e-10 8.205081446e-10 5.534413799e-10 5.674137379e-10 1.12468598e-09 6.152847495e-10 4.577837417e-10 6.148525706e-10 7.826471271e-10 9.279787984e-10 1.439757209e-09 5.705943918e-10 9.887021267e-10 1.071371594e-09 4.553654509e-10 8.12908678e-10 4.571804015e-10 7.373591708e-10 4.70931744e-10 7.783464971e-10 4.897421413e-10 2.904775964e-10 8.924772842e-10 4.76743969e-10 7.437750608e-10 3.50597879e-10 7.007271945e-10 6.932967745e-10 8.857605294e-10 1.066104962e-09 1.352184065e-09 1.729458736e-09 1.171741477e-09 1.088413817e-09 1.833505582e-09 1.466149087e-09 1.660650885e-09 1.652574721e-09 1.245494336e-09 6.609961236e-10 1.270090122e-09 1.169169352e-09 1.298990431e-09 7.044006663e-10 7.483312647e-10 7.24924165e-10 1.080604315e-09 1.404470098e-09 6.800118804e-10 1.020019731e-09 1.483180841e-10 4.781776958e-10 4.028076892e-10 1.194918226e-10 9.530472672e-11 5.132955562e-10 4.94012649e-10 7.492451475e-10 5.488263894e-10 1.163357771e-09 7.670835823e-10 1.826756137e-09 1.149281488e-09 1.044621025e-09 1.360616368e-09 1.774681796e-09 1.555810227e-09 1.686964939e-09 2.515847098e-09 1.40394926e-09 1.535587442e-09 2.229364772e-09 1.26444214e-09 1.365857223e-09 1.508388568e-09 1.358834656e-09 1.301830367e-09 2.412878765e-09 9.425169413e-10 1.205629149e-09 1.480167694e-09 1.810985792e-09 1.221299734e-09 2.079170246e-09 1.6373216e-09 1.469118694e-09 1.508794063e-09 2.106575014e-09 1.515542645e-09 2.450127742e-09 2.118004857e-09 1.92071491e-09 3.035552449e-09 1.636842135e-09 1.50125186e-09 2.015411534e-09 1.364445619e-09 1.73468468e-09 1.620742098e-09 1.956753076e-09 1.494384899e-09 1.658326029e-09 1.372689605e-09 1.119604684e-09 2.15886547e-09 1.078932838e-09 1.271142121e-09 1.323078962e-09 9.581198408e-10 1.053858984e-09 2.745833877e-09 2.146913773e-09 1.046205125e-09 1.703019733e-09 1.478114793e-09 1.2450859e-09 1.183910991e-09 2.07030146e-09 1.879180444e-09 2.248392425e-09 1.561769054e-09 2.229126263e-09 2.121091088e-09 2.556662913e-09 1.622224045e-09 1.655017389e-09 8.544324947e-10 1.989644664e-09 6.46419146e-10 6.122617728e-10 1.040117721e-09 7.494503777e-10 3.330042025e-10 2.608883852e-10 5.888873768e-10 8.229345047e-10 9.43197187e-10 7.636105245e-10 4.616464684e-10 1.370349987e-09 8.077207504e-10 8.490194556e-10 5.096468282e-10 9.85468799e-10 9.284416988e-10 9.475431151e-10 9.572434641e-10 9.257206714e-10 1.27779541e-09 1.189477037e-09 1.028810102e-09 1.161238863e-09 9.999506915e-10 9.676038821e-10 8.706270176e-10 1.107755413e-09 8.688113797e-10 9.279137652e-10 1.054058587e-09 8.220076685e-10 6.109315829e-10 1.590080725e-09 1.153006236e-09 3.585044333e-10 3.071516583e-10 4.67455912e-10 3.981088564e-10 4.865664512e-10 6.403612851e-10 2.648310391e-10 4.788925875e-10 3.245028996e-10 3.527583036e-10 7.493041362e-10 8.407867193e-10 1.295853543e-09 1.330371874e-09 9.776660435e-10 7.778661558e-10 9.469354675e-10 4.136256571e-10 6.381017943e-10 7.432637504e-10 5.156798101e-10 6.753679994e-10 5.80707815e-10 7.63713022e-10 1.969225569e-10 4.17503457e-10 4.640456655e-10 1.189248386e-09 5.427594716e-10 4.186340755e-10 7.842819729e-10 2.799513591e-10 6.095082963e-10 5.399945703e-10 5.028222375e-10 9.316470371e-10 1.19065341e-09 5.068353282e-10 7.911091708e-10 4.660924051e-10 3.742846075e-10 4.641447806e-10 5.314222101e-10 7.684243565e-10 1.076182358e-09 7.091975173e-10 9.353374446e-10 7.357904551e-10 7.321137924e-10 6.21499006e-10 6.971424706e-10 8.136972629e-10 5.225143333e-10 2.596190733e-10 3.762356864e-10 5.967849411e-10 3.583249054e-10 1.150322663e-09 5.359247217e-10 8.966536863e-10 7.228144479e-10 3.399083602e-10 7.807015955e-10 1.180417425e-09 8.104369925e-10 8.768408013e-10 5.32721597e-10 5.43433217e-10 3.159485278e-10 4.135120995e-10 1.824807597e-10 8.55206205e-10 9.121883783e-10 5.708991771e-10 7.701073096e-10 3.928402832e-10 4.384226608e-10 4.984744284e-10 4.514105113e-10 8.062112044e-10 1.310563195e-10 +6.063191585e-10 8.023200042e-10 3.715223266e-10 1.196253974e-09 4.473033063e-10 8.608656748e-10 5.416908512e-10 7.467470477e-10 6.050997176e-10 7.412164989e-10 7.177837483e-10 3.664151123e-10 6.749511214e-10 9.456554721e-10 8.243538773e-10 5.224227801e-10 6.984722275e-10 9.401355399e-10 9.869963026e-10 6.447846806e-10 3.95129422e-10 5.088058978e-10 6.728029211e-10 1.134317921e-09 1.015629333e-09 8.711723936e-10 5.68303541e-10 3.611591337e-10 6.463700657e-10 5.391365379e-10 4.788721857e-10 1.007458124e-09 2.604448778e-10 4.932603657e-10 1.087123415e-09 9.365761152e-10 2.914390448e-10 4.521406022e-10 1.164895342e-09 9.20814923e-10 7.991837818e-10 7.439311187e-10 5.763341907e-10 3.294994017e-10 3.273869707e-10 2.04408259e-10 3.880740805e-10 5.544229047e-10 5.220669324e-10 2.660495748e-10 7.000096263e-10 6.066887543e-10 6.851551642e-10 3.322587013e-10 4.415382346e-10 2.608864159e-10 6.192718599e-10 3.699264748e-10 7.88731416e-10 1.014272048e-09 1.060346398e-09 7.643821625e-10 6.924617372e-10 6.724993019e-10 4.803844913e-10 2.620811818e-10 1.158726973e-09 9.142459226e-10 1.271488318e-09 3.920152925e-10 6.655176387e-10 9.356220002e-10 1.198592745e-09 6.84020451e-10 4.179586947e-10 4.267228472e-10 4.101145275e-10 5.357935565e-10 7.897014861e-10 5.828215009e-10 7.061591387e-10 4.934490441e-10 2.014168902e-09 1.297968385e-09 1.762621435e-09 2.01578136e-09 1.463108936e-09 1.475651805e-09 1.011006649e-09 1.177290121e-09 8.739498367e-10 1.314120638e-09 1.007271821e-09 8.901223882e-10 1.000144106e-09 8.99370491e-10 1.111485011e-09 6.917044642e-10 9.41081187e-10 7.615023126e-10 1.047569814e-09 7.482295766e-10 1.225783008e-09 8.166275414e-10 6.125525796e-10 8.627846895e-10 8.104765474e-10 4.472136595e-10 4.762653252e-10 6.276142573e-10 4.861846341e-10 4.86215987e-10 6.180034636e-10 4.231391112e-10 5.64400022e-10 3.623229875e-10 1.305246119e-09 3.817286519e-10 1.410558563e-09 1.170144867e-09 1.460332453e-09 1.086684812e-09 1.827631405e-09 1.915745451e-09 1.299899891e-09 1.267023236e-09 8.416066012e-10 9.767853734e-10 1.769909583e-09 1.561127168e-09 1.33721621e-09 1.802828969e-09 7.926031561e-10 1.499581589e-09 1.586492885e-09 2.08581053e-09 1.576886212e-09 1.911372535e-09 8.602428355e-10 1.864719095e-09 3.025050921e-09 2.135921545e-09 1.810291831e-09 1.449040487e-09 1.99373502e-09 8.527666942e-10 1.033819644e-09 1.067302391e-09 1.009496096e-09 1.054626603e-09 1.461290511e-09 6.298453449e-10 2.228650331e-09 2.665410075e-09 1.56032822e-09 1.843310238e-09 1.471119952e-09 1.195601356e-09 1.511298177e-09 1.401653866e-09 9.286286671e-10 1.243080184e-09 9.435891081e-10 1.414212108e-09 1.92860732e-09 9.931371111e-10 2.545190491e-09 1.221078075e-09 1.626644345e-09 1.19443084e-09 1.728983431e-09 1.26872608e-09 1.6165714e-09 1.01280196e-09 1.658271355e-09 1.271015091e-09 1.569340697e-09 1.073662641e-09 2.047584079e-09 2.118661523e-09 1.894963594e-09 9.722285154e-10 4.418117733e-10 5.891548053e-10 1.068511874e-09 4.691681693e-10 3.138808978e-10 2.840446429e-10 2.189258269e-10 2.624635463e-10 4.590593196e-10 6.000535048e-10 4.826170223e-10 1.22853979e-09 5.929914248e-10 6.907228719e-10 8.920517974e-10 5.366276035e-10 1.25161582e-09 6.957696073e-10 1.109640254e-09 1.093078967e-09 3.68566797e-10 1.361874587e-09 9.179917501e-10 7.495375629e-10 1.08187597e-09 4.213795204e-10 1.060501003e-09 8.127496266e-10 1.489724216e-09 1.167857547e-09 1.024063744e-09 1.656093886e-09 1.199968094e-09 1.116015247e-09 9.720474412e-10 8.923916638e-10 1.175895499e-09 3.707442033e-10 2.76014547e-10 6.723925953e-10 6.251360819e-10 6.014729205e-10 9.535640787e-10 7.06891482e-10 4.350960208e-10 1.450392128e-09 6.262932173e-10 4.032920271e-10 8.479458068e-10 6.206586145e-10 1.057518081e-09 6.09933996e-10 4.559446539e-10 7.942638267e-10 6.358035708e-10 5.883648916e-10 6.497243121e-10 5.326415616e-10 1.02236721e-09 8.667522986e-10 4.596361939e-10 6.77425844e-10 6.617191196e-10 4.838675567e-10 8.523936767e-10 4.569130056e-10 1.236764999e-10 3.760618238e-10 7.04206274e-10 8.158977765e-10 4.401823785e-10 4.03486207e-10 4.716894148e-10 4.529013429e-10 4.63015048e-10 4.556196446e-10 5.67357851e-10 3.870264396e-10 4.406806797e-10 6.214066021e-10 4.386630452e-10 6.457016346e-10 3.834489765e-10 8.296117994e-10 6.21322322e-10 3.880515796e-10 1.114100574e-10 4.018229374e-10 6.201362744e-10 3.926848163e-10 3.589173763e-10 3.836242561e-10 7.065465587e-10 3.984533775e-10 8.222741811e-10 5.511510579e-10 2.892436529e-10 3.449525966e-10 4.916108996e-10 5.575201658e-10 4.248821587e-10 4.362787224e-10 6.358788489e-10 6.286572017e-10 5.637713717e-10 8.566838092e-10 4.497468456e-10 3.619546896e-10 4.992983983e-10 6.683158223e-10 1.419867829e-09 1.04680629e-09 8.51154882e-10 4.073258388e-10 4.978101209e-10 7.090969877e-10 6.753704289e-10 9.344606785e-10 +5.955619872e-10 3.192487654e-10 5.3436652e-10 2.812672919e-10 2.878329606e-10 9.597084695e-10 2.624327869e-10 4.879219024e-10 6.238959927e-10 4.961366058e-10 9.779762372e-10 4.634423464e-10 3.608243647e-10 6.52600544e-10 7.368731808e-10 6.606281694e-10 7.622266713e-10 4.262811951e-10 1.43969043e-09 2.647643238e-10 8.192458758e-10 6.889813296e-10 6.082890346e-10 3.750234732e-10 1.174814045e-09 5.277275606e-10 1.206414147e-09 1.878526253e-10 4.823266278e-10 3.593762608e-10 1.254503212e-09 3.233168138e-10 8.706253159e-10 6.116645515e-10 3.634832726e-10 5.940930233e-10 7.313173513e-10 4.756532941e-10 3.337907499e-10 7.453050211e-10 4.257290618e-10 5.512034433e-10 5.385283219e-10 6.922043701e-10 6.739899832e-10 7.63942733e-10 3.836732397e-10 6.198733843e-10 1.009999107e-09 4.970110999e-10 8.385428044e-10 1.789144494e-10 9.585673825e-10 5.043160105e-10 4.482061779e-10 5.14279437e-10 5.910860259e-10 6.925714742e-10 4.997663571e-10 8.113591103e-10 9.0552675e-10 1.143372535e-09 1.476827941e-09 1.05052239e-09 4.824479057e-10 6.600404357e-10 5.337159766e-10 7.006910287e-10 4.441338772e-10 1.090842539e-09 3.773249002e-10 4.939540234e-10 5.850617417e-10 7.407342122e-10 2.676085401e-10 2.79127835e-10 7.073868084e-10 1.185681514e-09 5.343940565e-10 8.598328352e-10 5.513798483e-10 3.322425657e-10 8.023619141e-10 5.149155783e-10 1.268807865e-09 1.216980882e-09 1.042747297e-09 1.814504277e-09 1.41856643e-09 9.68061272e-10 7.940002726e-10 7.823298816e-10 8.848648787e-10 9.788357144e-10 8.197042686e-10 5.93772812e-10 8.109851616e-10 7.981824381e-10 1.224009721e-09 5.213984152e-10 7.316931591e-10 5.04013567e-10 9.814575813e-10 4.169678411e-10 7.222883044e-10 3.918375732e-10 5.565748212e-10 7.472010591e-10 5.729913826e-10 1.277555762e-10 3.732190039e-10 4.958841876e-10 3.920975054e-10 3.636359767e-10 4.583863861e-10 4.269984739e-10 4.84975007e-10 7.714789444e-10 5.528123198e-10 2.611794212e-09 1.315579783e-09 1.970601855e-09 1.246568502e-09 1.661390092e-09 1.473744459e-09 1.530463344e-09 7.200992667e-10 1.472139264e-09 2.016014914e-09 9.939341432e-10 5.354554304e-10 1.294829288e-09 9.907762239e-10 2.280843355e-09 8.524822193e-10 1.187116242e-09 1.11353911e-09 1.059624253e-09 1.171515989e-09 1.50231512e-09 1.328223176e-09 1.317898213e-09 1.467586542e-09 1.255811663e-09 2.027976565e-09 8.987321656e-10 1.624625831e-09 2.061949831e-09 1.304391602e-09 1.352020359e-09 1.411910337e-09 2.021457581e-09 1.560870134e-09 1.045446296e-09 2.059220152e-09 9.863858834e-10 1.478960891e-09 1.310112118e-09 1.401100773e-09 1.219777924e-09 1.648990818e-09 1.046328047e-09 1.212805666e-09 1.362003407e-09 1.029171339e-09 1.327023394e-09 1.67605047e-09 1.745248603e-09 2.040982658e-09 1.788626808e-09 1.690102376e-09 1.280872109e-09 2.226945051e-09 1.954222341e-09 1.858574713e-09 1.374792921e-09 1.394371748e-09 1.594412352e-09 1.669741553e-09 1.493851636e-09 2.160314172e-09 4.843342542e-10 5.76868287e-10 6.214043548e-10 3.380964627e-10 3.288692351e-10 4.975463793e-10 1.611819436e-10 2.934844227e-10 4.5777701e-10 2.250911622e-10 4.943503243e-10 3.124746799e-10 3.10249069e-10 8.604823004e-10 7.503957446e-10 8.114850096e-10 6.721650768e-10 6.08117091e-10 1.245358678e-09 5.204669624e-10 6.1363642e-10 9.401636682e-10 6.106814384e-10 1.34463142e-09 9.577474317e-10 8.654238042e-10 2.124706951e-09 1.17870437e-09 8.235596509e-10 1.15780328e-09 1.246653587e-09 1.200988579e-09 6.059744553e-10 1.198360658e-09 1.00152567e-09 5.102797636e-10 1.134610982e-09 1.089509218e-09 9.521964981e-10 1.006368188e-09 4.481150954e-10 3.549871729e-10 5.273027858e-10 7.870039075e-10 7.444416133e-10 6.299349441e-10 2.643409326e-10 8.510312051e-10 5.764699211e-10 7.261760504e-10 3.648214882e-10 9.514315609e-10 8.692910878e-10 6.374982536e-10 5.121945202e-10 1.10755793e-09 5.294037203e-10 5.529077883e-10 7.385145966e-10 2.688151489e-10 2.435282959e-10 4.904874647e-10 6.535015642e-10 9.927264354e-10 1.026180094e-09 5.176218515e-10 2.545054044e-10 6.437201409e-10 4.324659854e-10 5.84729645e-10 2.626697396e-10 5.237531188e-10 3.478681926e-10 5.724109495e-10 4.129467511e-10 1.150764842e-09 3.948726084e-10 1.305868533e-09 3.89982919e-10 3.593989572e-10 2.709017474e-10 5.755129637e-10 2.315543563e-10 1.059465756e-09 6.349596267e-10 5.903998152e-10 8.445254859e-10 6.668523135e-10 7.676339928e-10 7.672308831e-10 5.820692127e-10 7.229135595e-10 4.284950115e-10 2.789563734e-10 6.003874972e-10 5.204677828e-10 2.503350913e-10 1.018885645e-09 3.723328569e-10 7.948625717e-10 5.234918769e-10 5.611222343e-10 6.232833713e-10 7.384797298e-10 1.165401389e-09 7.178173183e-10 5.767813315e-10 3.847355254e-10 7.263390856e-10 8.176275173e-10 4.774412891e-10 3.3155594e-10 7.889902399e-10 3.29403626e-10 5.537565221e-10 6.459366979e-10 5.200294071e-10 5.036867752e-10 1.11335115e-09 +4.71125353e-10 7.191693882e-10 1.451282676e-09 9.60988564e-10 9.91938676e-10 1.19589575e-10 2.394320028e-10 5.512415508e-10 5.164862366e-10 5.849178036e-10 1.064342287e-09 6.939978327e-10 9.604226736e-10 8.295811726e-10 7.406742262e-10 3.185192869e-10 5.587831589e-10 6.050089907e-10 6.978038894e-10 1.087984582e-09 4.490686539e-10 5.860225697e-10 5.559212457e-10 1.362307649e-09 6.888536503e-10 1.108290436e-09 7.520673456e-10 1.098141325e-09 5.61100324e-10 3.486473379e-10 1.005977234e-09 5.70504131e-10 1.500414245e-09 6.366233561e-10 3.121499484e-10 6.020547016e-10 2.67562663e-10 7.099669079e-10 7.46866172e-10 7.20739601e-10 5.572423464e-10 8.124280835e-10 7.759658924e-10 9.671608702e-10 4.52622361e-10 1.56726866e-10 5.251071735e-10 2.892624344e-10 5.761640248e-10 3.026232216e-10 6.225316433e-10 4.127938715e-10 3.551117916e-10 7.288752805e-10 5.097536386e-10 7.408090376e-10 7.53335523e-10 8.679300554e-10 6.800003862e-10 7.540708243e-10 7.742713522e-10 7.148670276e-10 6.836377567e-10 6.207593458e-10 3.783180352e-10 6.865093382e-10 8.603072588e-10 2.581203435e-10 7.841123576e-10 5.744091921e-10 5.989027053e-10 4.568203944e-10 5.901438094e-10 4.045946426e-10 1.053790021e-09 5.682460039e-10 4.64978572e-10 1.984106272e-10 6.219064761e-10 4.624033151e-10 4.542985638e-10 8.493250651e-10 6.265821497e-10 9.63500754e-10 1.101545704e-09 8.52283225e-10 9.918035865e-10 1.351190357e-09 1.770655868e-09 7.77904731e-10 8.225308567e-10 1.421921363e-09 1.043890064e-09 1.069656012e-09 7.951916149e-10 7.809602353e-10 1.017807275e-09 7.359545697e-10 8.725518629e-10 9.746120232e-10 9.747924604e-10 1.109691676e-09 1.145751542e-09 7.460923629e-10 9.668859238e-10 1.087587555e-09 8.212988729e-10 5.469603153e-10 6.809932793e-10 6.669999329e-10 3.039018728e-10 2.218333886e-10 5.095047036e-10 2.292473732e-10 5.263866968e-10 7.410055267e-10 5.095714788e-10 2.854976578e-10 7.663988784e-10 9.664253614e-10 1.251523765e-09 7.913980718e-10 1.505218227e-09 1.026926819e-09 2.316046824e-09 1.991988912e-09 1.648659827e-09 1.083482029e-09 6.881472345e-10 2.004443427e-09 1.468008946e-09 9.63018856e-10 7.732169867e-10 1.116294583e-09 1.555501164e-09 8.802270759e-10 1.942770523e-09 1.601978967e-09 1.269017312e-09 8.575452775e-10 1.169074859e-09 1.283779721e-09 1.483036624e-09 1.122364446e-09 1.638351701e-09 8.431477291e-10 1.477873195e-09 1.601465559e-09 8.359137986e-10 1.906935631e-09 2.56101829e-09 1.910544082e-09 1.640754534e-09 1.219463769e-09 9.717624108e-10 2.009514718e-09 1.776504796e-09 7.866552803e-10 1.246885584e-09 1.004439617e-09 1.224346656e-09 1.401622033e-09 1.708269578e-09 1.990605063e-09 1.541607468e-09 1.271275793e-09 1.49422234e-09 1.839571594e-09 1.876719209e-09 1.74888084e-09 1.852174487e-09 1.932492402e-09 1.159095449e-09 2.009528888e-09 1.733940379e-09 2.014527035e-09 1.446246762e-09 1.038676471e-09 1.190151681e-09 1.618961836e-09 6.582184203e-10 9.714612888e-10 8.341625186e-10 7.295012507e-10 5.863514618e-10 4.337978611e-10 2.69834137e-10 3.957042858e-10 4.152393953e-10 4.171292674e-10 6.366198255e-10 6.475398144e-10 7.569225263e-10 6.797280938e-10 4.611251173e-10 8.389283885e-10 9.553734803e-10 7.84580278e-10 1.027530169e-09 7.310965947e-10 9.030721707e-10 1.329175896e-09 1.023738054e-09 9.122723733e-10 8.415161308e-10 6.965426223e-10 8.823607767e-10 6.773368367e-10 8.599269797e-10 9.326671293e-10 1.059269325e-09 5.753814149e-10 1.02649827e-09 1.195285017e-09 1.235739569e-09 8.807929178e-10 5.500778968e-10 8.762355886e-10 8.543458457e-10 7.48094305e-10 4.564865582e-10 5.813867591e-10 7.145075962e-10 3.856710142e-10 2.850659223e-10 7.933426435e-10 8.653345893e-10 3.691907262e-10 4.158938063e-10 7.780226079e-10 3.537909769e-10 3.861678257e-10 9.840276383e-10 4.902824311e-10 3.948309221e-10 8.122642023e-10 2.386434018e-10 7.527956783e-10 4.553821412e-10 8.791064711e-10 5.34243242e-10 4.604658593e-10 9.429099393e-10 1.155244946e-09 9.93348819e-10 4.62068711e-10 6.704115726e-10 8.191211477e-10 1.152553252e-10 1.027206897e-09 6.553358854e-10 1.044606431e-09 4.744632388e-10 6.704337433e-10 4.971648298e-10 5.069877896e-10 7.924387685e-10 7.159386766e-10 3.651724564e-10 4.770998206e-10 4.050103668e-10 3.327063057e-10 5.007749931e-10 4.468498837e-10 8.809371162e-10 5.86281845e-10 4.239189134e-10 6.472807092e-10 9.482228477e-10 8.285814974e-10 3.463642064e-10 4.152145761e-10 6.260110431e-10 5.48761665e-10 5.512792615e-10 2.98525859e-10 4.950969089e-10 5.072826892e-10 9.197104325e-10 6.4301759e-10 5.575263898e-10 4.023242026e-10 5.251593371e-10 7.383648582e-10 4.149100288e-10 8.311862573e-10 1.023473467e-09 3.511400541e-10 5.084171881e-10 9.697598409e-10 5.284629636e-10 3.462987759e-10 8.105137109e-10 6.424821634e-10 4.909931675e-10 2.164574003e-10 5.618662143e-10 8.070520152e-10 5.042297144e-10 3.487530793e-10 +3.525024423e-10 1.086553097e-09 8.611829202e-10 7.208962578e-10 3.713181054e-10 6.961245884e-10 8.921386195e-10 4.222501734e-10 5.121155773e-10 7.426630881e-10 7.386465386e-10 7.162456853e-10 6.230531665e-10 4.954108643e-10 4.741225567e-10 4.602734523e-10 2.68713357e-10 8.671690331e-10 2.544615578e-10 8.409739532e-10 1.886774771e-10 9.360823401e-10 4.750121297e-10 2.896094841e-10 4.447899137e-10 7.216523967e-10 3.683882945e-10 6.424337192e-10 3.751988131e-10 4.29118677e-10 4.081067554e-10 4.713757703e-10 4.969763446e-10 9.977565049e-10 8.87150088e-10 6.855688494e-10 9.473702752e-10 5.325914392e-10 4.812000379e-10 7.283167504e-10 6.67637312e-10 9.784446847e-10 4.09518297e-10 7.825619041e-10 1.041847436e-09 9.360946291e-10 5.664264221e-10 8.403801181e-10 7.432934393e-10 4.342964271e-10 1.09889798e-09 8.558927446e-10 5.090363605e-10 5.425596294e-10 8.035247368e-10 9.33669153e-10 8.176332004e-10 7.148385134e-10 1.150016039e-09 6.878760225e-10 5.489398874e-10 6.185615672e-10 5.119971975e-10 4.260783015e-10 7.316877223e-10 6.572013914e-10 6.354529466e-10 6.752605643e-10 6.404721527e-10 4.767190066e-10 3.596208738e-10 9.539606803e-10 9.531139127e-10 9.394012732e-10 1.046490243e-09 4.94428842e-10 2.08011179e-10 9.071786953e-10 3.675540131e-10 5.106578481e-10 1.830958615e-10 1.034790895e-09 5.873563547e-10 8.223042706e-10 1.137338471e-09 1.820920451e-09 1.626489532e-09 7.181037302e-10 1.116648184e-09 5.53746673e-10 1.464573989e-09 8.598565478e-10 1.077023587e-09 8.023607867e-10 9.077573179e-10 6.490313412e-10 3.703532624e-10 1.246624621e-09 1.318996187e-09 1.07816867e-09 6.946696629e-10 1.125067708e-09 7.840798382e-10 1.025598391e-09 9.131088719e-10 1.067452849e-09 9.459082532e-10 9.541324185e-10 5.404496025e-10 5.959218454e-10 4.244171636e-10 1.343306335e-10 1.032194213e-10 1.731442501e-10 2.252433464e-10 6.530965909e-10 5.945790982e-10 7.966320212e-10 5.205683483e-10 5.905905963e-10 1.31050737e-09 1.229345518e-09 1.732187469e-09 1.458417055e-09 1.358126675e-09 1.927117329e-09 7.264730394e-10 1.012364687e-09 2.060595718e-09 1.873650401e-09 1.035346133e-09 1.089483544e-09 1.846304082e-09 1.618489688e-09 8.016710964e-10 1.729756381e-09 1.624694512e-09 8.467249791e-10 1.590033321e-09 1.473157227e-09 1.891194868e-09 1.824334688e-09 1.54659935e-09 9.058103957e-10 9.986047842e-10 1.255347165e-09 1.115187974e-09 1.302451298e-09 2.34076953e-09 5.396499077e-10 1.428368855e-09 1.378889277e-09 1.764783383e-09 1.12157634e-09 1.605944695e-09 2.138217264e-09 1.807294426e-09 1.702541014e-09 1.799683196e-09 1.540010478e-09 1.865712812e-09 1.794567249e-09 2.310626183e-09 9.614259049e-10 2.599414899e-09 1.620520236e-09 9.29083307e-10 1.464663814e-09 1.317809258e-09 1.187558104e-09 1.931319254e-09 1.202104742e-09 2.175104735e-09 1.771105129e-09 1.226877026e-09 1.172106384e-09 1.549163031e-09 1.818863575e-09 1.367378095e-09 1.156998944e-09 1.43511326e-09 2.856204532e-10 5.948912228e-10 5.439449404e-10 1.139202673e-10 3.180824918e-10 3.463794008e-10 5.027260542e-10 4.030184962e-10 2.886215779e-10 9.906988013e-10 4.116285021e-10 6.922969292e-10 3.828476691e-10 5.028350464e-10 6.525872512e-10 8.075870611e-10 8.933871379e-10 4.095863697e-10 1.125323914e-09 1.002737161e-09 9.976941314e-10 7.107900603e-10 1.085302321e-09 1.306213681e-09 6.939470945e-10 3.866936294e-10 6.191075324e-10 9.969329628e-10 9.679568763e-10 9.965103477e-10 8.686397616e-10 1.463856006e-09 7.823427234e-10 9.838254338e-10 6.347726155e-10 6.547665608e-10 9.134335554e-10 6.829124904e-10 3.552456338e-10 8.448811518e-10 1.958395393e-10 5.899358873e-10 3.213804866e-10 7.022623534e-10 3.942359732e-10 3.734761336e-10 2.200824906e-10 8.947439438e-10 1.120441834e-09 9.033827302e-10 7.765662343e-10 9.656872242e-10 2.985125925e-10 5.58498085e-10 2.325707399e-10 5.823378253e-10 8.368390929e-10 8.016944791e-10 4.12926488e-10 6.875233473e-10 5.071787297e-10 9.61105423e-10 3.138438781e-10 1.004709451e-09 6.46891231e-10 6.802773617e-10 5.113746732e-10 1.222714005e-09 5.443732678e-10 6.722314116e-10 5.146071345e-10 2.497592084e-10 7.31879526e-10 2.927502231e-10 2.607210118e-10 3.999497285e-10 5.898172102e-10 5.802840096e-10 4.953508851e-10 1.013483949e-09 4.363816232e-10 7.194954293e-10 5.405325287e-10 5.308233152e-10 4.243107779e-10 7.626149623e-10 5.466073728e-10 8.791027881e-10 4.747138712e-10 4.406717677e-10 8.342419551e-10 4.348611395e-10 2.753510073e-10 5.488004087e-10 2.528100487e-10 3.030172588e-10 3.984341265e-10 6.68419541e-10 7.755880033e-10 2.762048044e-10 1.363328897e-09 1.136329271e-09 7.576322593e-10 2.677322081e-10 1.78973979e-10 3.076258887e-10 6.712899629e-10 2.182354208e-10 6.969974021e-10 5.455019505e-10 4.795074016e-10 7.44632869e-10 6.696787355e-10 4.444505183e-10 6.59272122e-10 1.155018514e-09 1.080329991e-09 4.509346454e-10 7.81283291e-10 +5.793092595e-10 7.524001996e-10 4.03690344e-10 4.985389368e-10 4.649525632e-10 1.070859202e-09 5.74159301e-10 7.882720786e-10 8.546181247e-10 5.192770951e-10 8.891411012e-10 2.522339329e-10 3.159797245e-10 5.208257313e-10 5.13572749e-10 4.10886508e-10 2.670755417e-10 6.917707377e-10 3.108591412e-10 3.043809002e-10 6.002309124e-10 9.643256398e-10 6.050341352e-10 8.919666844e-10 1.866507666e-10 2.948523968e-10 6.213403311e-10 3.943691287e-10 3.546540042e-10 1.039268755e-09 5.088624256e-10 5.603500962e-10 1.64768158e-10 4.658397731e-10 4.100898937e-10 9.333985084e-10 7.584662178e-10 5.664432254e-10 3.973404517e-10 5.120905702e-10 5.781515614e-10 4.969812507e-10 9.525854478e-10 3.454431733e-10 5.397819432e-10 4.179886262e-10 6.924462817e-10 3.158168531e-10 5.849920046e-10 3.297219922e-10 6.318057845e-10 4.307016199e-10 6.300552852e-10 9.274696242e-10 5.443369492e-10 2.907598082e-10 7.902874801e-10 4.441861262e-10 4.466732981e-10 3.612807906e-10 8.755852895e-10 4.557615565e-10 6.390074733e-10 5.764967082e-10 4.853797395e-10 6.127508166e-10 8.581028792e-10 6.958861738e-10 1.005254626e-09 9.206152259e-10 7.772409167e-10 2.820528423e-10 8.136108052e-10 6.216267677e-10 6.951309812e-10 6.073563076e-10 6.290361807e-10 3.976358468e-10 8.081620001e-10 3.734053264e-10 4.495392924e-10 5.491240116e-10 1.314421255e-09 9.386197653e-10 6.534933911e-10 1.696017371e-09 1.368875737e-09 1.396999716e-09 6.96182051e-10 5.858828023e-10 1.537686459e-09 4.011189627e-10 9.187434468e-10 1.332826288e-09 5.582749941e-10 5.672674207e-10 7.209407669e-10 8.793798352e-10 1.223300432e-09 1.174568206e-09 6.255524632e-10 8.621653531e-10 6.630550093e-10 6.49158298e-10 4.42630153e-10 8.283025486e-10 7.167649908e-10 5.491759318e-10 1.045216691e-09 6.031814877e-10 4.784097891e-10 2.201202973e-10 3.175583271e-10 3.38455441e-10 3.200984378e-10 4.104346633e-10 2.277842919e-10 6.31983603e-10 5.653626156e-10 4.893773478e-10 1.028360168e-09 1.710649422e-09 1.199337328e-09 1.443686225e-09 1.33341264e-09 2.093842804e-09 2.266144698e-09 1.159101876e-09 1.329366892e-09 1.673401619e-09 1.883292911e-09 1.05629982e-09 1.363244702e-09 1.438519733e-09 1.454062082e-09 7.147249138e-10 1.390616971e-09 1.426320737e-09 1.079676378e-09 7.737059198e-10 1.961670542e-09 7.616432877e-10 7.724034155e-10 1.064801275e-09 9.129090734e-10 7.822646014e-10 8.716995647e-10 1.089498643e-09 1.681422449e-09 2.037929588e-09 1.088173577e-09 1.574665047e-09 1.285472845e-09 1.581015758e-09 6.850508618e-10 1.348578601e-09 8.127569955e-10 9.170164585e-10 6.978324899e-10 9.93879046e-10 9.055020716e-10 1.801658321e-09 1.577727768e-09 9.009789182e-10 1.450422303e-09 1.285889448e-09 1.162771155e-09 1.751092168e-09 9.546354484e-10 1.310312691e-09 2.037603151e-09 2.316803716e-09 9.743836028e-10 1.513298256e-09 1.016262235e-09 2.160189513e-09 9.035281433e-10 1.61168567e-09 1.103242397e-09 5.074635739e-10 4.765532364e-10 2.9092149e-10 6.286518178e-10 3.439451045e-10 3.523465896e-10 2.317336142e-10 5.275055613e-10 2.713576107e-10 2.379247233e-10 4.311981793e-10 1.152401126e-10 3.798617025e-10 1.201466084e-09 7.478795941e-10 6.747962433e-10 9.751680782e-10 7.915663463e-10 7.980867161e-10 4.756333443e-10 1.149665483e-09 1.087213689e-09 8.724665858e-10 7.371364669e-10 1.041030293e-09 8.119465011e-10 3.058846562e-10 1.213642933e-09 8.842701594e-10 5.884858704e-10 1.391109089e-09 1.737329514e-09 9.419346338e-10 1.134795766e-09 1.136916284e-09 1.291431171e-09 8.384300513e-10 2.837576438e-10 4.001343241e-10 6.84662749e-10 3.86948997e-10 5.190129088e-10 4.382226259e-10 7.256779636e-10 5.577738404e-10 6.497035492e-10 4.723896712e-10 6.453436364e-10 2.822764389e-10 9.011981521e-10 4.933155424e-10 6.07720064e-10 4.912418614e-10 7.253808284e-10 7.455926474e-10 4.43279638e-10 3.496837965e-10 6.800106097e-10 4.486533218e-10 2.920370669e-10 4.518278062e-10 1.135346183e-09 8.258756985e-10 7.063894035e-10 5.268076448e-10 9.524533166e-10 4.029456272e-10 7.002460741e-10 4.445587631e-10 5.99778928e-10 2.650759663e-10 5.099569629e-10 2.544783892e-10 4.325676812e-10 1.254007515e-09 3.9960122e-10 5.231115948e-10 4.713248468e-10 6.188724124e-10 4.256686524e-10 5.680629845e-10 7.904476098e-10 3.18611481e-10 5.099437922e-10 5.427455645e-10 5.256486873e-10 4.464517172e-10 1.067032332e-09 2.926846825e-10 8.030448415e-10 4.701719138e-10 9.400607492e-10 2.99093518e-10 4.359000148e-10 3.022179038e-10 4.961494246e-10 4.913807816e-10 3.659851571e-10 9.271371281e-10 7.535681068e-10 6.936452537e-10 6.754575214e-10 5.552392164e-10 6.716078473e-10 3.881796625e-10 9.475750972e-10 7.732861488e-10 4.403973278e-10 4.561816752e-10 1.049504955e-09 8.35860427e-10 8.350181369e-10 3.078608316e-10 7.716974637e-10 5.050064464e-10 7.017438425e-10 3.623380489e-10 7.433390783e-10 7.62392327e-10 6.4721307e-10 3.181762256e-10 +3.079948437e-10 6.23787815e-10 7.221779351e-10 8.320098529e-10 1.062459132e-09 3.468034678e-10 4.469528919e-10 3.84857248e-10 5.44313248e-10 6.367910486e-10 3.742628823e-10 7.244305915e-10 4.925974758e-10 4.892500523e-10 5.548480813e-10 3.143582975e-10 4.87761281e-10 2.486608919e-10 2.847263522e-10 4.748373996e-10 3.919673753e-10 4.801464482e-10 3.764862416e-10 4.484249325e-10 1.088699382e-09 3.865427612e-10 3.114921003e-10 7.709046666e-10 1.018858684e-09 1.002918115e-09 7.786445501e-10 5.670905777e-10 8.347537707e-10 5.689185076e-10 1.262652634e-10 8.339408427e-10 8.918238807e-10 8.555644307e-10 5.769626829e-10 6.382885679e-10 7.164495047e-10 4.598480982e-10 4.292987202e-10 7.017287571e-10 4.285119044e-10 3.006974729e-10 8.117319782e-10 4.125559495e-10 7.875330804e-10 4.184172356e-10 4.011888208e-10 5.978347551e-10 6.704683376e-10 6.694477938e-10 8.26542278e-10 6.661812083e-10 7.577738032e-10 6.764962592e-10 3.099807403e-10 7.448870987e-10 5.338179097e-10 6.663586068e-10 1.119525488e-09 2.160788778e-10 3.22534989e-10 2.131604978e-10 6.429050912e-10 8.811769351e-10 6.680803554e-10 4.840061501e-10 4.813121557e-10 6.692272905e-10 4.562422774e-10 4.576140615e-10 6.25652725e-11 1.839256829e-10 3.743467107e-10 4.870945502e-10 7.685662906e-10 1.487885976e-10 9.020407161e-10 6.81494597e-10 1.062353626e-09 1.122106767e-09 1.05336103e-10 9.733750922e-10 1.171627462e-09 7.154825661e-10 8.289636105e-10 1.083114167e-09 1.072894406e-09 9.157866025e-10 9.676601645e-10 8.39024593e-10 6.668702037e-10 1.117881939e-09 7.581347813e-10 9.06547834e-10 7.332552129e-10 1.170949948e-09 4.28743714e-10 9.700351577e-10 6.251185652e-10 6.234557236e-10 9.173171971e-10 6.144380573e-10 1.153989604e-09 1.097863559e-09 5.847463545e-10 3.775674944e-10 3.997640884e-10 6.532624838e-10 2.523744328e-10 2.884430129e-10 6.597349854e-10 1.921891555e-10 5.946446621e-10 3.817744466e-10 2.211765339e-10 7.308683064e-10 7.594011057e-10 2.913186869e-10 1.287463081e-09 1.048352195e-09 1.388904111e-09 1.951544247e-09 1.146259758e-09 2.080576835e-09 2.012641542e-09 1.59628202e-09 2.027149311e-09 1.136331463e-09 1.013726323e-09 1.387977382e-09 1.897985847e-09 1.195389983e-09 2.208129538e-09 1.519529488e-09 7.514628063e-10 1.193999883e-09 1.100589957e-09 1.255110741e-09 1.068658893e-09 1.162751278e-09 9.991451719e-10 1.519781435e-09 8.633069411e-10 1.481494792e-09 1.135850445e-09 1.504648011e-09 1.18710956e-09 1.43644571e-09 6.414509487e-10 7.975019834e-10 1.749408154e-09 1.4319216e-09 1.62019861e-09 1.106809608e-09 9.347152258e-10 1.403436376e-09 1.726878334e-09 1.451520888e-09 1.294424049e-09 5.812343707e-10 1.6277678e-09 2.077180597e-09 1.886858542e-09 2.127698693e-09 6.206262297e-10 1.186282401e-09 2.122872466e-09 1.062651603e-09 1.642776267e-09 1.067758996e-09 1.599851719e-09 9.397326567e-10 1.338706924e-09 8.172269603e-10 8.263723961e-10 5.158760096e-10 6.320782341e-10 5.234418705e-10 6.123890199e-10 4.095846197e-10 5.319748232e-10 1.5788581e-10 2.354090958e-10 2.422846044e-10 6.379454132e-10 1.97805618e-10 4.701505271e-10 8.332317048e-10 7.749309997e-10 3.043088562e-10 1.041020747e-09 7.111021628e-10 1.165060101e-09 7.621623694e-10 3.437320329e-10 9.269715881e-10 1.044071805e-09 9.356157783e-10 1.181571415e-09 1.110522075e-09 7.803234905e-10 1.510970573e-09 8.687152135e-10 1.380308341e-09 1.122635665e-09 1.04893893e-09 7.830685015e-10 9.864202772e-10 1.360315368e-09 1.30095649e-09 1.063315823e-09 1.712669777e-09 5.724048036e-10 8.51221781e-10 4.917627524e-10 1.051356538e-09 8.265916982e-10 5.303789246e-10 2.862571978e-10 7.262007399e-10 2.738199925e-10 6.063207307e-10 9.73237147e-10 5.513503194e-10 7.852079856e-10 7.509012079e-10 5.724863266e-10 9.988016468e-10 6.452812261e-10 7.176809795e-10 8.466455783e-10 5.643090966e-10 9.285245345e-10 7.987683182e-10 7.457379121e-10 6.059404958e-10 8.019162e-10 9.342672277e-10 7.318678704e-10 8.351206267e-10 6.595896118e-10 1.013446814e-09 4.256144927e-10 4.107388909e-10 3.478679871e-10 5.632028312e-10 4.803861565e-10 5.589200922e-10 3.212017911e-10 3.262738484e-10 4.833117623e-10 2.712408814e-10 8.38773836e-10 7.634198869e-10 3.101956881e-10 3.22878902e-10 1.035315458e-09 5.642267006e-10 3.704739262e-10 2.867465841e-10 6.58200614e-10 5.353457191e-10 3.315453603e-10 6.542822364e-10 6.535747969e-10 9.321095046e-10 7.813916134e-10 5.937185199e-10 4.56212365e-10 4.076427961e-10 9.993995306e-10 3.094422105e-10 4.388518722e-10 8.396251119e-10 1.723094831e-09 4.254079811e-10 3.530035583e-10 5.4825023e-10 5.08597131e-10 7.016915008e-10 5.648180214e-10 2.380969477e-10 3.193444722e-10 8.263902445e-10 1.096403855e-09 6.835441575e-10 7.557818612e-10 6.514780256e-10 6.157643536e-10 2.581992936e-10 6.345451789e-10 1.011786058e-09 8.618610213e-10 1.117043213e-10 4.571829943e-10 7.760119865e-10 +9.657781977e-10 7.228301399e-10 5.347626688e-10 7.558499168e-10 3.807172227e-10 3.422152402e-10 6.325916728e-10 9.532700677e-10 6.962190904e-10 8.004295503e-10 4.916112143e-10 5.255185203e-10 4.327089832e-10 9.169713358e-10 8.024195862e-10 3.39682501e-10 4.098587843e-10 3.833591099e-10 6.871098081e-10 6.331159602e-10 1.161364372e-09 6.825989467e-10 4.377944144e-10 5.393973966e-10 2.488847744e-10 5.856290894e-10 4.395576815e-10 4.707532771e-10 4.245878619e-10 9.864136736e-10 5.726621109e-10 4.49342526e-10 4.858532847e-10 6.094491046e-10 7.130981292e-10 1.265832327e-10 6.576735846e-10 6.127177932e-10 5.496605846e-10 2.724420582e-10 9.568667301e-10 3.85148861e-10 5.729260889e-10 4.423469715e-10 5.399059165e-10 2.953593585e-10 5.679722641e-10 6.667540451e-10 6.447673947e-10 2.246292864e-10 2.939189418e-10 4.445945635e-10 6.091436756e-10 3.201157507e-10 7.366422165e-10 5.928325272e-10 6.145198116e-10 6.805421268e-10 5.00684972e-10 5.704089657e-10 6.394987072e-10 3.463058417e-10 1.190562358e-09 6.195631175e-10 3.168951452e-10 6.937366971e-10 9.056597781e-10 8.043868347e-10 6.53437749e-10 9.058681292e-10 1.070713768e-09 4.129535773e-10 5.506235638e-10 1.165292865e-09 3.4291291e-10 6.741360937e-10 3.740913e-10 3.968318944e-10 4.555243835e-10 3.303515868e-10 3.977741082e-10 6.277922e-10 9.79400641e-10 1.050908173e-09 6.848674964e-10 1.203046121e-09 9.61976369e-10 1.561669952e-09 8.378401513e-10 1.427210471e-09 7.56063398e-10 9.222586799e-10 1.755575305e-09 1.072848967e-09 5.576469306e-10 7.050711028e-10 1.275826996e-09 8.714085673e-10 1.249606468e-09 6.669008464e-10 7.638362729e-10 8.855682e-10 6.849917381e-10 5.624707872e-10 8.328178153e-10 9.128955991e-10 9.354338312e-10 6.972820518e-10 5.167683823e-10 2.811951852e-10 2.517303857e-10 2.750489864e-10 4.442868976e-10 7.272812033e-11 2.076456604e-10 4.020936674e-10 5.801190955e-10 5.238799492e-10 6.747302258e-10 5.193777017e-10 7.330900943e-10 9.720291701e-10 6.090415123e-10 6.381043026e-10 1.995377296e-09 1.330968487e-09 1.479746988e-09 2.771152003e-09 1.424507722e-09 1.319678568e-09 9.395174638e-10 1.026512597e-09 1.333669774e-09 1.295508081e-09 6.990402809e-10 1.321934133e-09 1.347445096e-09 1.39601455e-09 1.589387773e-09 1.182412191e-09 1.247373469e-09 7.691345722e-10 1.317538773e-09 1.761445198e-09 1.065538938e-09 1.400304562e-09 1.574099895e-09 7.518854348e-10 2.771190414e-09 1.522585463e-09 1.801903377e-09 1.352391562e-09 1.455738015e-09 1.033556872e-09 1.827843568e-09 1.188959939e-09 7.993377293e-10 2.441513109e-09 1.549765145e-09 1.435369161e-09 9.215363311e-10 1.178650519e-09 1.806413177e-09 8.837576458e-10 1.665015302e-09 1.710564881e-09 2.176114868e-09 1.556542883e-09 2.030530809e-09 7.517139719e-10 1.157856628e-09 1.248157287e-09 2.198844754e-09 9.796890117e-10 1.908439543e-09 1.261982851e-09 5.984619038e-10 9.100317181e-10 4.7005309e-10 4.623074997e-10 4.394004217e-10 3.006938614e-10 6.330355248e-10 6.230737097e-10 2.358885023e-10 1.324788492e-10 8.303196922e-10 3.383932912e-10 2.117157931e-10 6.270440765e-10 5.153138964e-10 1.110976806e-09 3.69939191e-10 9.829710552e-10 1.10856512e-09 6.484029115e-10 8.224083537e-10 1.095541074e-09 3.778300055e-10 7.700649769e-10 7.943100544e-10 1.166856177e-09 8.525087863e-10 7.202950759e-10 8.473456214e-10 9.783024795e-10 1.906442054e-09 1.275631269e-09 1.470279146e-09 4.458280321e-10 1.004656151e-09 1.301361095e-09 1.296379958e-09 1.194613826e-09 1.262842031e-09 9.165623785e-10 9.870811351e-10 8.755709039e-10 4.336437685e-10 2.393449707e-10 6.72294535e-10 7.770386586e-10 4.217678268e-10 6.24566596e-10 3.998083715e-10 3.060502688e-10 1.087562383e-09 2.868273908e-10 4.479831176e-10 7.534302158e-10 4.032667128e-10 4.766851501e-10 7.532852806e-10 7.006107101e-10 7.375729092e-10 4.591320364e-10 1.15912191e-09 7.788107345e-10 4.391707139e-10 8.422616684e-10 3.160610227e-10 4.858716763e-10 4.935663367e-10 8.414010081e-10 5.270413926e-10 2.306592102e-10 7.530279447e-10 5.214190352e-10 5.363530748e-10 3.19770316e-10 6.148792927e-10 5.865675563e-10 1.63794482e-10 7.428093248e-10 1.865389293e-10 5.04369799e-10 3.401982867e-10 5.498317167e-10 7.312541072e-10 1.286338099e-09 5.197640772e-10 4.019060321e-10 5.460465714e-10 5.966483711e-10 5.197145032e-10 1.048823666e-09 6.047077631e-10 4.366458635e-10 4.170685997e-10 7.049724374e-10 6.459410964e-10 7.425733928e-10 1.09149223e-09 4.968114428e-10 1.01774994e-09 4.096165406e-10 6.282333223e-10 3.325547517e-10 4.692197533e-10 1.277235914e-09 9.834925839e-10 7.345348391e-10 6.917927303e-10 2.158652602e-10 6.144066297e-10 5.789272741e-10 3.793020898e-10 4.620278755e-10 6.404809979e-10 4.522785173e-10 3.613055261e-10 6.287505619e-10 5.401552767e-10 5.277448392e-10 7.446377041e-10 7.295621067e-10 4.834913214e-10 2.567998463e-10 8.960656734e-10 6.202871022e-10 +3.542990728e-10 1.252422529e-09 7.58217886e-10 4.364852043e-10 5.874888567e-10 3.253576544e-10 4.30873227e-10 5.540197228e-10 8.14969382e-10 3.265468296e-10 6.757651705e-10 4.722545003e-10 1.076004011e-09 6.242221185e-10 8.024978246e-10 4.481182756e-10 7.653551597e-10 7.786067533e-10 5.39769518e-10 5.744244424e-10 6.556443237e-10 7.492943582e-10 5.862690008e-10 6.045292502e-10 2.709722254e-10 2.930249571e-10 6.761895787e-10 7.509194966e-10 3.404705468e-10 3.291555223e-10 2.675178469e-10 9.450239739e-10 4.503837318e-10 4.685312664e-10 3.381557011e-10 4.305392705e-10 7.382322419e-10 3.138438593e-10 6.861692721e-10 2.660209235e-10 5.809886986e-10 5.441934634e-10 4.483759788e-10 4.069504492e-10 6.104007736e-10 6.378084809e-10 4.750590251e-10 4.450889705e-10 6.827329286e-10 2.564291707e-10 3.753936555e-10 6.506216775e-10 5.770314827e-10 4.871028918e-10 4.913114395e-10 5.381144651e-10 2.464670013e-10 5.570927401e-10 4.920273563e-10 5.848335242e-10 7.668691133e-10 5.848074902e-10 8.420683864e-10 3.756407887e-10 4.276429542e-10 7.559424878e-10 8.940084319e-10 6.704903388e-10 5.890864558e-10 1.249574032e-09 5.617710093e-10 3.228512613e-10 6.894253903e-10 3.268636919e-10 7.581516013e-10 5.075016116e-10 8.074509241e-10 4.346091754e-10 7.655808366e-10 4.643620675e-10 9.25214793e-10 6.561995679e-10 8.006646687e-10 7.333600188e-10 3.872394972e-10 1.006189095e-09 7.093637891e-10 6.200238939e-10 1.027979422e-09 1.336612664e-09 1.983219879e-09 7.881705324e-10 5.515101112e-10 1.453194773e-09 1.116125379e-09 1.648139067e-09 9.680607737e-10 1.465972012e-09 6.273682005e-10 6.354766362e-10 9.402102884e-10 8.261723605e-10 8.883108664e-10 5.992607594e-10 8.824987485e-10 3.562356357e-10 1.601364325e-09 8.161593652e-10 9.04782211e-10 5.234147021e-10 4.079978584e-10 3.757784565e-10 6.733325204e-11 6.588322306e-10 2.932520301e-10 3.920509069e-10 2.960118079e-10 6.736595731e-10 4.28513414e-10 6.439786177e-10 4.770063491e-10 6.049752509e-10 5.569560439e-10 7.121865254e-10 6.340897877e-10 1.408781606e-09 5.60601633e-10 9.720947245e-10 1.81411271e-09 2.185703906e-09 1.568624083e-09 1.847365522e-09 8.951829444e-10 1.151963529e-09 1.738412832e-09 7.676772634e-10 1.244356102e-09 6.04926738e-10 1.176898346e-09 1.01960572e-09 7.859188725e-10 9.900799272e-10 1.579876376e-09 9.274107856e-10 1.163258084e-09 1.713217816e-09 1.31519174e-09 9.979992865e-10 9.5272611e-10 1.384204589e-09 1.377159792e-09 2.833802326e-10 1.025604973e-09 1.188875651e-09 1.938833571e-09 1.369090747e-09 1.72181142e-09 8.523210471e-10 1.474198728e-09 1.003489951e-09 7.809559707e-10 1.381226091e-09 2.377410505e-10 1.140236782e-09 1.840426185e-09 2.38729296e-09 1.51033452e-09 1.391167005e-09 1.183349908e-09 1.654820545e-09 1.07470539e-09 1.080555009e-09 1.298260671e-09 7.787884198e-10 8.069378766e-10 5.072374599e-10 7.613022839e-10 4.394764829e-10 8.505242333e-10 3.668560834e-10 6.090555792e-10 1.683306256e-10 3.535770331e-10 2.023533798e-10 2.695264082e-10 2.227670996e-10 2.23446056e-10 4.953984923e-10 3.942688508e-10 2.112503815e-10 5.994936886e-10 6.969386811e-10 5.907862993e-10 1.104431642e-09 3.361147034e-10 7.735808623e-10 5.390392194e-10 7.687147797e-10 9.376155029e-10 9.226795727e-10 8.557922125e-10 4.654476338e-10 6.705815465e-10 5.280822198e-10 1.203313354e-09 1.277462951e-09 6.490312504e-10 1.21351804e-09 1.112097675e-09 8.46118436e-10 1.654500447e-09 1.111075873e-09 1.097308764e-09 1.383673081e-09 1.286628485e-09 8.475326454e-10 1.100249828e-09 1.220793007e-09 5.958625502e-10 4.18755164e-10 7.507696736e-10 4.2921236e-10 8.005082442e-10 9.252710758e-10 4.686377498e-10 6.560699771e-10 4.151640737e-10 5.648767433e-10 6.03389552e-10 8.221790202e-10 1.020851769e-09 4.008307966e-10 4.968554625e-10 4.045912769e-10 4.806300048e-10 5.963821218e-10 5.071254673e-10 6.606997992e-10 1.002981644e-09 8.625800976e-10 3.282532189e-10 4.545810747e-10 3.656821303e-10 5.25756278e-10 4.970566935e-10 6.743230115e-10 4.033815449e-10 2.717964368e-10 3.437403081e-10 2.952038074e-10 8.906578274e-10 4.351090569e-10 4.835485692e-10 8.819503641e-10 3.987625789e-10 4.167294293e-10 2.0014707e-10 9.32300305e-10 4.804202666e-10 5.959294798e-10 7.470426986e-10 4.144562133e-10 6.734810439e-10 2.341284249e-10 1.066239747e-09 8.533589558e-10 4.689716988e-10 7.5789538e-10 5.697943933e-10 5.446921118e-10 5.16872397e-10 4.202569662e-10 7.259655036e-10 9.330862478e-10 5.847013563e-10 7.099144681e-10 3.809163505e-10 1.287248549e-09 4.971788401e-10 8.15339887e-10 4.265907173e-10 6.07077345e-10 5.699922418e-10 6.141259016e-10 3.294494741e-10 6.165546791e-10 8.355453499e-10 1.711896317e-10 5.900949042e-10 4.424008991e-10 6.121687189e-10 4.531654799e-10 4.231128168e-10 1.110654898e-09 3.151744132e-10 3.145278813e-10 3.513476535e-10 3.424587952e-10 4.163545174e-10 1.096369275e-09 +5.363963741e-10 9.808746983e-10 4.485110876e-10 6.180812129e-10 7.118657001e-10 2.235381851e-10 3.332452146e-10 5.251809264e-10 6.68303929e-10 7.186082842e-10 5.546758236e-10 4.606152409e-10 3.431778688e-10 5.727056529e-10 5.212478575e-10 4.411130595e-10 3.848615887e-10 7.973781101e-10 7.332877946e-10 4.58299181e-10 5.571429163e-10 3.045950896e-10 8.228899988e-10 3.761275131e-10 1.319780771e-10 3.94526973e-10 7.375590194e-10 5.481163545e-10 4.326978938e-10 2.350779198e-10 6.941028099e-10 9.429042129e-10 6.704903186e-10 6.96204651e-10 7.773126335e-10 6.132024892e-10 7.064283329e-10 6.570088059e-10 5.477848123e-10 3.06846322e-10 5.183113361e-10 2.641343343e-10 4.837228951e-10 9.911820165e-10 4.025737499e-10 4.454241168e-10 4.423145566e-10 5.138952674e-10 3.46006365e-10 3.043400183e-10 5.869692589e-10 7.492710059e-10 4.966985529e-10 6.013123976e-10 4.880599977e-10 3.546209557e-10 8.009146758e-10 4.148353641e-10 1.017428771e-09 9.922295966e-10 7.093264348e-10 2.669836857e-10 4.591156324e-10 2.698582975e-10 6.142941442e-10 9.376432262e-10 6.998811948e-10 4.287402708e-10 3.537865285e-10 7.716742696e-10 5.236012718e-10 7.115973541e-10 6.254343833e-10 4.438488246e-10 4.255103253e-10 2.200743247e-10 4.021505044e-10 4.485909663e-10 6.328658367e-10 6.473334405e-10 8.92025938e-10 7.710679314e-10 1.072501908e-09 1.048701371e-09 7.9541992e-10 1.185678765e-09 1.244434342e-09 9.065397483e-10 7.555968068e-10 6.203010214e-10 7.963589546e-10 1.050916554e-09 1.457655503e-09 1.040633503e-09 1.311068943e-09 5.224211511e-10 5.961732461e-10 6.406910051e-10 9.354324672e-10 9.218147032e-10 7.506586319e-10 1.411582463e-09 6.051117063e-10 9.593754123e-10 6.16046032e-10 6.723636292e-10 8.786779438e-10 4.709846948e-10 1.549867924e-10 8.86072065e-10 5.854772747e-10 6.304753421e-10 4.673888465e-10 4.735040869e-10 3.421423881e-10 5.191628019e-10 1.414156348e-10 2.403859472e-10 2.208417169e-10 5.066312083e-10 5.317880948e-10 5.734452943e-10 6.211555467e-10 4.897444396e-10 4.525624619e-10 1.321674879e-09 9.60778739e-10 1.132773166e-09 1.542218371e-09 1.326904663e-09 1.159474455e-09 1.837417225e-09 1.269788708e-09 1.217716187e-09 1.165489392e-09 8.967658895e-10 1.34784908e-09 9.105769498e-10 1.069747542e-09 6.832944787e-10 1.115249814e-09 1.843726265e-09 1.097417188e-09 8.769613811e-10 1.170047881e-09 1.039972196e-09 4.940253368e-10 1.858346596e-09 2.016859165e-09 8.630977885e-10 1.466546687e-09 1.016887891e-09 4.073108385e-10 2.179764177e-09 1.617764697e-09 1.805687344e-09 1.126672871e-09 1.018972949e-09 1.632919914e-09 1.563482864e-09 9.035571703e-10 2.460109334e-09 1.023613367e-09 9.737756345e-10 1.572548033e-09 1.718525309e-09 1.274711587e-09 1.61775274e-09 1.516478486e-09 1.558319246e-09 1.230585637e-09 1.475891731e-09 1.139954608e-09 1.264238288e-09 9.713487354e-10 6.28562723e-10 2.803089426e-10 4.202797249e-10 3.919521708e-10 5.077676012e-10 2.900663264e-10 9.428398548e-11 3.074611186e-10 1.928800266e-10 3.665943857e-10 3.790932275e-10 5.748244022e-10 3.375411508e-10 7.29450502e-10 6.189144031e-10 6.012572358e-10 9.112182795e-10 7.080426559e-10 5.88123738e-10 1.01762721e-09 9.751208852e-10 5.443973048e-10 6.918106805e-10 7.086007828e-10 7.197317784e-10 1.457123531e-09 9.937969921e-10 7.552262537e-10 1.001617807e-09 9.404208194e-10 7.466799097e-10 7.752069294e-10 7.307259273e-10 8.284876602e-10 9.540992612e-10 1.25128564e-09 1.067396636e-09 7.689364414e-10 1.418828989e-09 7.299172892e-10 7.743543556e-10 1.329950135e-09 1.083789861e-09 4.513071723e-10 4.263726126e-10 3.563778886e-10 5.600596631e-10 2.246007576e-10 7.073869139e-10 4.201405057e-10 4.520476055e-10 3.292465565e-10 7.497890999e-10 4.109725219e-10 9.387756796e-10 9.114772888e-10 3.294672236e-10 4.114149493e-10 2.623848386e-10 7.397473761e-10 9.438413369e-10 8.428683994e-10 2.729672543e-10 9.653296456e-10 7.002417349e-10 2.802508317e-10 5.556608253e-10 7.101380644e-10 6.334631095e-10 4.26005267e-10 5.855394017e-10 7.617368148e-10 6.631079702e-10 3.495621993e-10 4.35415555e-10 4.107393616e-10 1.076978838e-10 9.682968952e-10 7.802322382e-10 7.895903415e-10 6.52216778e-10 3.751861052e-10 8.75845235e-11 6.89510626e-10 5.945779977e-10 3.59766756e-10 9.152186549e-10 7.879260003e-10 2.465490923e-10 4.757203682e-10 3.596908716e-10 4.289850422e-10 2.402336269e-10 4.285138868e-10 7.314161558e-10 1.323881449e-09 3.929175606e-10 7.776592667e-10 5.463766845e-10 5.888668999e-10 1.510654044e-10 9.76026959e-10 6.310623739e-10 4.87277431e-10 9.056182218e-10 6.707332859e-10 5.414780297e-10 4.761101004e-10 4.947902252e-10 6.107846667e-10 4.552620582e-10 1.760497377e-10 8.99670383e-10 3.562704625e-10 8.759002728e-10 9.198850914e-10 3.3459524e-10 3.8848317e-10 9.695794736e-10 6.175137756e-10 8.089422997e-10 1.080532284e-09 7.714617601e-10 8.051739741e-10 4.935189878e-10 +7.173979425e-10 4.912373912e-10 4.717872635e-10 6.095880916e-10 6.888859771e-10 5.165509637e-10 4.296390659e-10 5.962440414e-10 7.663128153e-10 1.975770547e-10 1.524096788e-10 6.313581301e-10 3.19030004e-10 1.449996764e-09 4.812622341e-10 4.133517134e-10 6.784202538e-10 2.974324692e-10 2.776207637e-10 5.604866532e-10 5.008151971e-10 4.264377598e-10 3.476520422e-10 4.307384342e-10 6.769426351e-10 5.248899355e-10 6.832676855e-10 1.72357573e-10 6.031000533e-10 3.526284901e-10 8.565961314e-10 6.195174608e-10 1.330623895e-09 3.878687831e-10 5.747448248e-10 5.166215085e-10 4.386747045e-10 5.512004143e-10 4.271878276e-10 7.310212967e-10 3.64014021e-10 4.065429778e-10 2.383682232e-10 5.214856594e-10 8.37836097e-10 3.631057304e-10 3.58656256e-10 4.532407421e-10 2.526488213e-10 1.493915391e-10 7.512752031e-10 7.043605637e-10 6.045478414e-10 9.371798027e-10 4.576700334e-10 6.9248184e-10 2.683028563e-10 6.421872454e-10 3.606779981e-10 8.25357318e-10 9.295590742e-10 8.845100021e-10 4.343996237e-10 7.691758631e-10 5.623971512e-10 1.091738385e-09 7.783512082e-10 7.207833404e-10 8.370539107e-10 1.023964427e-09 7.466439931e-10 3.581008998e-10 9.128388758e-10 4.123847125e-10 5.354083082e-10 3.547455903e-10 7.214609887e-10 7.929243614e-10 5.975455976e-10 3.385711711e-10 8.045540669e-10 1.916564305e-10 6.944220622e-10 1.063795814e-09 7.720083385e-10 9.379272491e-10 8.016666728e-10 1.368519325e-09 1.312072938e-09 1.277099021e-09 5.374776886e-10 6.99759129e-10 6.702683008e-10 1.012435474e-09 5.134131145e-10 7.821344146e-10 6.541480625e-10 8.382377878e-10 4.465233824e-10 4.938761091e-10 7.589806064e-10 1.249953525e-09 1.156736524e-09 4.75063674e-10 1.225822055e-09 5.463956796e-10 1.013322018e-09 7.672922742e-10 1.048642357e-09 6.003852857e-10 1.152255193e-09 7.10118537e-10 6.424682336e-10 4.646706825e-10 5.277106641e-10 2.402310804e-10 2.584595069e-10 2.967710723e-10 3.404707589e-10 2.33049289e-10 2.292652805e-10 5.717153715e-10 2.712502032e-10 3.64956111e-10 5.042331121e-10 7.196957779e-10 6.29516024e-10 5.69982766e-10 1.698243921e-09 1.724218272e-09 1.391513352e-09 1.274166667e-09 1.121484197e-09 9.306083073e-10 1.514714012e-09 1.240563605e-09 1.990614162e-09 1.232402635e-09 1.008700731e-09 1.50438338e-09 1.834992169e-09 1.288469384e-09 6.517343868e-10 1.906542646e-09 1.622631525e-09 2.040217351e-09 1.183770748e-09 1.268152039e-09 1.175209388e-09 9.27866968e-10 8.553702041e-10 9.578783664e-10 1.00457278e-09 9.723872046e-10 1.646114938e-09 1.179589595e-09 1.148666636e-09 1.35815099e-09 1.024176701e-09 1.680091504e-09 1.203291169e-09 1.410767171e-09 8.351011252e-10 1.259276892e-09 1.283231332e-09 8.929735822e-10 2.541299469e-09 1.240333891e-09 6.306690943e-10 7.096258668e-10 1.61566622e-09 1.420589758e-09 4.929389612e-10 2.406096273e-10 3.164001528e-10 8.623484804e-10 2.611942584e-10 5.064116438e-10 3.491383944e-10 4.286125909e-10 2.9272281e-10 2.969045965e-10 3.975503373e-11 4.187596734e-10 3.181251159e-10 3.335229318e-10 7.503626683e-10 3.791332255e-10 7.44267559e-10 9.467336614e-10 5.611133742e-10 4.556005194e-10 7.205985379e-10 1.261321192e-09 9.211849715e-10 9.047504855e-10 5.43054705e-10 9.104001106e-10 1.284045028e-09 8.367693892e-10 7.103125379e-10 8.024711002e-10 7.982880375e-10 9.237527877e-10 5.402267474e-10 8.529248185e-10 3.92587764e-10 1.004844388e-09 3.70934216e-10 5.255410143e-10 5.112050712e-10 1.145001664e-09 7.737589655e-10 8.367111988e-10 8.518191972e-10 5.383387907e-10 5.078945525e-10 5.226552712e-10 2.925624141e-10 5.949848055e-10 2.842032362e-10 5.793907196e-10 2.820406572e-10 3.769219645e-10 6.861472821e-10 1.024353102e-09 5.433211055e-10 7.075429384e-10 2.299182277e-10 2.067524097e-10 3.969800801e-10 8.712755508e-10 4.972608214e-10 8.111870244e-10 5.739633154e-10 7.293289922e-10 6.055106991e-10 6.404590521e-10 5.777385193e-10 5.949825745e-10 6.421589795e-10 1.041876667e-09 5.943316119e-10 3.619192016e-10 6.128858951e-10 5.252851316e-10 7.29398031e-10 7.372582344e-10 6.689898071e-10 2.307513063e-10 7.09370948e-10 1.42818125e-10 5.324072369e-10 3.057242499e-10 2.664944266e-10 4.437980854e-10 4.637674584e-10 3.600764611e-10 6.980364043e-10 3.946584914e-10 6.465395326e-10 7.532687074e-10 5.346895329e-10 6.11778028e-10 7.160941907e-10 1.025995518e-09 3.070051324e-10 4.441595069e-10 6.269293754e-10 4.198222317e-10 3.097768919e-10 5.284078611e-10 5.644613848e-10 4.904607101e-10 8.71822193e-10 6.056558315e-10 4.311267134e-10 3.104475342e-10 9.510290419e-10 1.626728076e-10 6.516405883e-10 5.53761853e-10 3.826745288e-10 4.363489442e-10 4.072729995e-10 5.18157536e-10 6.593991914e-10 8.178179785e-10 1.089514077e-09 5.375038184e-10 3.084184955e-10 6.437464507e-10 5.644752315e-10 7.61186632e-10 6.31894694e-10 8.056667896e-10 7.141259605e-10 8.176697657e-10 4.733225679e-10 6.891288193e-10 +4.579074435e-10 2.561521517e-10 4.585584443e-10 5.864349937e-10 1.936442213e-10 4.755981742e-10 8.826017983e-10 3.251620743e-10 4.980746047e-11 5.599368504e-10 4.001811483e-10 5.864518755e-10 4.793446732e-10 5.659216241e-10 3.988958787e-10 6.392205491e-10 6.837669556e-10 7.450215751e-10 1.245578806e-10 2.632938964e-10 4.749091993e-10 6.263890388e-10 5.558279407e-10 2.981032132e-10 3.214047358e-10 6.462894367e-10 3.495021129e-10 2.416446688e-10 7.605102808e-10 5.134466311e-10 3.043150294e-10 7.549055229e-10 7.393943143e-10 3.407304751e-10 3.922133021e-10 2.404076795e-10 4.721133215e-10 4.990595316e-10 4.877191997e-10 2.980324302e-10 5.888396479e-10 4.048946011e-10 9.153500943e-11 1.380992657e-10 3.843079292e-10 6.183500046e-10 8.787022704e-10 3.191292204e-10 2.786386677e-10 1.526791211e-10 4.377210538e-10 5.412306678e-10 7.741202516e-10 1.011538654e-09 7.762560278e-10 9.041635651e-10 3.539697792e-10 7.786280526e-10 5.889408538e-10 5.653828539e-10 7.909732297e-10 5.317485622e-10 2.332731959e-10 7.338270253e-10 3.735255597e-10 3.149659401e-10 5.383927182e-10 4.768730367e-10 6.64630271e-10 7.95113564e-10 1.967612694e-10 6.963365429e-10 4.549786126e-10 2.880900185e-10 8.029584412e-10 6.047126476e-10 4.53453815e-10 6.541502784e-10 5.042653737e-10 3.027471257e-10 7.368418982e-10 6.565536623e-10 6.907629539e-10 4.498247755e-10 6.91130023e-10 8.195012089e-10 1.42973704e-09 1.664856418e-09 9.091707683e-10 1.370511893e-09 9.960327933e-10 6.057456587e-10 7.053819214e-10 9.101491622e-10 6.435660514e-10 7.023766395e-10 7.318942988e-10 1.032839076e-09 9.973100959e-10 7.309360896e-10 2.436121452e-10 2.053000651e-10 4.596065264e-10 3.902081043e-10 8.07619023e-10 8.54165902e-10 5.442369283e-10 5.682840134e-10 6.114857775e-10 5.02770836e-10 3.529202927e-10 6.28867645e-10 6.534421299e-10 9.045422475e-10 4.347080866e-10 6.039747905e-10 1.782180339e-10 2.283381033e-10 2.201872563e-10 2.578402156e-10 6.45033097e-10 3.561890039e-10 3.359746597e-10 7.483748341e-10 2.349563172e-10 3.724872152e-10 5.040291598e-10 4.77912001e-10 1.050297045e-09 7.77022351e-10 6.200848813e-10 8.760463959e-10 1.145182068e-09 1.420267836e-09 2.025709949e-09 1.666875559e-09 1.199979031e-09 6.883420095e-10 4.785943481e-10 8.342741968e-10 6.379541311e-10 1.367609328e-09 1.426147984e-09 1.985428287e-09 1.023339323e-09 1.68495332e-09 1.034838596e-09 9.482053965e-10 1.309018446e-09 9.587890005e-10 1.268600348e-09 1.330250254e-09 1.146829893e-09 1.214325561e-09 1.010869353e-09 1.455942156e-09 1.549489552e-09 8.546267284e-10 1.267659616e-09 1.388714021e-09 1.370707052e-09 1.359866443e-09 1.030906857e-09 2.258604794e-09 7.333182713e-10 1.466041269e-09 2.536715096e-09 1.610519033e-09 9.964312364e-10 1.230521074e-09 1.703590661e-09 7.656568694e-10 9.095770862e-10 6.060400774e-10 7.197919333e-10 4.859608854e-10 5.536784776e-10 3.061739412e-10 4.44000989e-10 2.940272234e-10 2.069957111e-10 1.710450741e-10 1.6113716e-10 2.381690653e-10 4.083414165e-10 3.814591192e-10 5.682305943e-10 4.431008282e-10 5.689806305e-10 4.003756955e-10 5.222902278e-10 2.585413695e-10 4.161689869e-10 9.349844217e-10 7.852928793e-10 8.599508713e-10 8.307659743e-10 1.020634962e-09 5.171155128e-10 3.405651551e-10 1.01098576e-09 8.095777087e-10 1.657950656e-09 9.331056153e-10 6.854391711e-10 4.823040033e-10 6.918916491e-10 1.399057642e-09 8.398485765e-10 1.082821874e-09 7.692691164e-10 9.38301559e-10 9.289399318e-10 1.176723556e-09 9.987617829e-10 9.461315387e-10 6.436524741e-10 7.299081222e-10 6.887997265e-10 4.45929561e-10 6.317438847e-10 2.897326211e-10 8.54672757e-10 5.136773215e-10 3.750599419e-10 4.970074311e-10 5.085831819e-10 1.005925405e-09 4.318454193e-10 3.586238643e-10 4.544474142e-10 4.575763176e-10 5.662697368e-10 6.633545756e-10 7.406145517e-10 6.035747597e-10 1.378456706e-09 2.745404293e-10 5.819564248e-10 7.061227007e-10 7.290362189e-10 1.098891263e-09 5.804864689e-10 4.17563243e-10 2.882186009e-10 7.473768345e-10 4.479652368e-10 2.197945317e-10 5.121989235e-10 4.756058417e-10 4.586987786e-10 5.459705199e-10 6.498187527e-10 5.757329553e-10 3.461935062e-10 4.520109917e-10 4.698074137e-10 2.183917041e-10 5.884130366e-10 7.416684459e-10 2.618316896e-10 5.715822335e-10 9.68699366e-10 3.209276916e-10 5.620167953e-10 4.610917539e-10 2.967520266e-10 3.023931187e-10 5.30691284e-10 6.15901279e-10 7.596986728e-10 9.579554229e-10 5.03704089e-10 2.637043346e-10 5.695327162e-10 3.045370379e-10 5.966865269e-10 9.88052659e-10 4.723475594e-10 8.290466444e-10 8.27300868e-10 5.485415565e-10 4.740121744e-10 1.669735533e-10 1.124582327e-09 2.594600706e-10 4.814576566e-10 5.013397213e-10 8.851081763e-10 9.406062002e-10 8.242410564e-10 4.113767784e-10 5.390194497e-10 3.074927283e-10 2.109696344e-10 9.530987836e-10 5.606333644e-10 5.092013298e-10 3.421718635e-10 6.661292556e-10 +9.297952541e-10 8.437297355e-10 4.940948181e-10 4.746641431e-10 4.396011847e-10 5.183152296e-10 3.806902635e-10 4.046926308e-10 4.29499353e-10 2.233709524e-10 6.58682358e-10 4.552157898e-10 3.381753469e-10 4.714638379e-10 5.909421488e-10 6.228503688e-10 1.063752836e-09 6.302571896e-10 3.680163681e-10 1.035564809e-09 4.10661051e-10 7.891607465e-10 2.215499884e-10 2.551287549e-10 6.964790475e-10 2.139595928e-10 4.731667434e-10 6.322347696e-10 3.245080047e-10 5.682240433e-10 3.683975219e-10 1.068814984e-09 6.309351239e-10 9.166443853e-10 9.112888642e-10 3.78250881e-10 4.419085099e-10 4.314396786e-10 3.349034741e-10 4.250092816e-10 6.679922179e-10 1.941712379e-10 2.362096681e-10 2.759261972e-10 5.765323122e-10 3.65134676e-10 4.376379825e-10 4.373149856e-10 3.509085401e-10 4.399664136e-10 5.889561145e-10 3.998521144e-10 6.148219478e-10 4.171008829e-10 3.041385783e-10 8.855054323e-10 6.781570739e-10 4.149128496e-10 4.492106995e-10 3.399264568e-10 4.265206783e-10 6.868613718e-10 3.055014192e-10 7.412552969e-10 6.638374829e-10 4.239927349e-10 4.803739625e-10 3.275094698e-10 4.232283795e-10 5.126835696e-10 2.601378012e-10 6.783326083e-10 4.060388174e-10 3.755530698e-10 2.688412847e-10 7.293701151e-10 5.545486463e-10 3.940681331e-10 5.804995626e-10 3.69044106e-10 5.780530252e-10 1.26694532e-09 6.25609975e-10 5.78289482e-10 6.398571205e-10 5.729068147e-10 1.318194137e-09 1.314280779e-09 7.646020432e-10 8.41200176e-10 6.44377169e-10 1.260591038e-09 7.709805943e-10 7.197131758e-10 9.503809013e-10 1.345463135e-09 1.209945635e-09 7.336816541e-10 5.579401131e-10 1.031386802e-09 6.355867343e-10 5.497537226e-10 7.105047455e-10 7.718877585e-10 6.826798459e-10 3.922095923e-10 6.523733482e-10 3.364096755e-10 6.113041965e-10 8.599800865e-10 5.24668989e-10 6.903210279e-10 5.069975559e-10 7.015670824e-10 6.985671861e-10 6.459197685e-10 3.270757946e-10 3.910110356e-10 2.91536866e-10 6.803484497e-11 4.547958677e-10 2.489998636e-10 3.630569249e-10 5.204311722e-10 3.778796731e-10 4.772243213e-10 4.349325264e-10 3.574857494e-10 7.244640602e-10 8.31955497e-10 1.293244887e-09 4.973826768e-10 9.13631192e-10 5.461156719e-10 1.461131434e-09 1.507079576e-09 1.016456486e-09 7.02780777e-10 1.1107159e-09 1.068405847e-09 8.580336309e-10 1.476809937e-09 1.322431061e-09 1.25831811e-09 1.448701038e-09 2.146633136e-09 1.221336252e-09 1.424842422e-09 7.307607517e-10 8.177597482e-10 1.715609555e-09 7.176394026e-10 4.03605013e-10 1.869807293e-09 9.457120983e-10 8.091477449e-10 1.064729162e-09 7.188701465e-10 1.169177301e-09 1.655648728e-09 9.43410725e-10 8.394003519e-10 7.290250451e-10 1.382078331e-09 1.535277346e-09 1.386727312e-09 1.320684939e-09 9.939239396e-10 4.350901199e-10 6.845982007e-10 1.6180409e-10 9.306812478e-10 7.155735658e-10 4.607015766e-10 6.543229095e-10 4.854568384e-10 2.288572469e-10 2.347831339e-10 2.779317681e-10 8.931022108e-11 6.839824276e-11 2.843163661e-10 1.952428626e-10 5.147923508e-10 1.573672869e-10 2.684258107e-10 4.845091182e-10 4.551312251e-10 4.826116049e-10 9.698215119e-10 1.12864139e-09 9.600187747e-10 5.637980412e-10 1.188906263e-09 1.178637054e-09 8.680952646e-10 1.118613865e-09 7.497414134e-10 5.675505021e-10 1.099003061e-09 2.898078301e-10 9.502896542e-10 7.198101873e-10 1.215798855e-09 9.302394414e-10 1.79359879e-09 1.008796309e-09 4.548201359e-10 1.263916454e-09 4.154136203e-10 3.568302397e-10 5.729914498e-10 9.944120552e-10 1.092206132e-09 5.199323411e-10 6.934103693e-10 9.13535576e-10 5.849720915e-10 3.536648603e-10 4.866766681e-10 7.628753485e-10 5.274130055e-10 3.422393461e-10 4.596965054e-10 2.7135792e-10 3.840870018e-10 7.832082172e-10 1.565149524e-10 9.325499769e-10 1.472549036e-09 9.872292886e-10 9.365638752e-10 5.53052876e-10 8.093327674e-10 5.826320483e-10 5.805169657e-10 4.57662282e-10 3.942302779e-10 2.382199195e-10 5.518902941e-10 5.142308163e-10 3.979504186e-10 5.235017199e-10 6.199141475e-10 5.808221641e-10 7.22461097e-10 4.028778902e-10 2.610547383e-10 4.212878969e-10 6.929677554e-10 6.492756207e-10 4.9682905e-10 4.203235808e-10 5.011221458e-10 5.256387993e-10 4.819272524e-10 5.246861965e-10 5.962298589e-10 3.627065652e-10 6.208090634e-10 4.076192483e-10 4.762207651e-10 4.323050454e-10 4.884091448e-10 8.229416173e-10 4.873301649e-10 5.006166514e-10 5.49530728e-10 3.04939453e-10 8.421432815e-10 1.7429731e-10 3.744821282e-10 8.976629231e-10 6.881005396e-10 5.212831069e-10 4.3360722e-10 5.632811196e-10 3.717087107e-10 2.757273241e-10 9.316305958e-10 9.553964694e-10 8.122601627e-10 6.565938492e-10 3.581639129e-10 3.93378599e-10 9.152682357e-10 7.386398898e-10 6.408219358e-10 7.94014052e-10 4.229999612e-10 3.004340398e-10 8.490198271e-10 2.684298381e-10 5.72047903e-10 7.669502423e-10 5.346747579e-10 4.044651313e-10 5.236900618e-10 5.719672935e-10 5.54547953e-10 +5.268527924e-10 7.382241238e-10 7.274786693e-10 8.465702143e-10 3.901506113e-10 2.241142341e-10 3.419868608e-10 9.564997867e-10 6.192416833e-10 3.57673353e-10 4.096733398e-10 8.802168157e-10 4.324167932e-10 3.082157871e-10 6.235893711e-10 3.101460912e-10 3.767370136e-10 3.281482302e-10 2.781865499e-10 5.069736884e-10 3.045829136e-10 2.615874546e-10 6.019767322e-10 6.126503893e-10 4.865898356e-10 5.940817834e-10 3.071136881e-10 7.130393744e-10 2.51198069e-10 5.30784087e-10 2.870641917e-10 1.684619106e-10 4.844450736e-10 2.528052171e-10 2.260531403e-10 5.201451389e-10 4.839957831e-10 7.230533041e-10 3.991243291e-10 4.556805265e-10 3.292202704e-10 3.072701351e-10 7.182660106e-10 3.498230063e-10 7.352402725e-10 2.420846301e-10 3.05370014e-10 2.136126031e-10 3.092059593e-10 5.54388664e-10 5.783848277e-10 2.184963002e-10 6.566960458e-10 5.178519255e-10 5.611683466e-10 5.089572908e-10 4.32051821e-10 5.727722647e-10 4.703520621e-10 3.211301142e-10 4.814586653e-10 7.540962906e-10 7.302137417e-10 9.342295245e-10 1.491970348e-10 5.608579029e-10 7.203108066e-10 5.960442555e-10 1.940897422e-10 3.984662867e-10 5.578259714e-10 5.464717687e-10 7.590097044e-10 1.104945074e-09 7.243825084e-10 1.338341142e-10 8.650210081e-10 5.130106657e-10 3.719140066e-10 6.903984387e-10 8.328109291e-10 8.717316389e-10 4.897002086e-10 4.454169433e-10 7.753627766e-10 1.058427926e-09 1.214918055e-09 1.277501912e-09 1.197939436e-09 1.393465175e-09 6.851879831e-10 1.029707376e-09 1.288249256e-09 6.805541518e-10 1.031134248e-09 1.25762935e-09 2.614221528e-10 6.327743449e-10 5.382648416e-10 9.535216173e-10 9.178919119e-10 4.630910672e-10 6.702943148e-10 5.458153355e-10 6.880597322e-10 1.152573058e-09 1.000225712e-09 3.575266056e-10 4.607099223e-10 2.515224595e-10 4.466542476e-10 9.510324986e-10 6.888722338e-10 7.613715408e-10 9.296946207e-10 3.817811581e-10 3.208410333e-10 1.796658356e-10 2.296320717e-10 3.292972395e-10 2.970420581e-10 4.265720644e-10 5.183040112e-10 1.366732351e-10 2.556459994e-10 2.318159375e-10 5.597299927e-10 4.504205178e-10 8.925392978e-10 4.552652773e-10 1.571005255e-09 5.525090385e-10 1.070351808e-09 8.710842269e-10 1.043146306e-09 3.845926428e-10 1.284249766e-09 8.926563545e-10 9.774244296e-10 9.178429016e-10 1.864325385e-09 9.078098357e-10 2.051395083e-09 1.694215212e-09 1.55325738e-09 1.016135811e-09 1.984666752e-09 1.573948168e-09 1.194262804e-09 1.208424268e-09 1.77657653e-09 1.987563853e-09 2.056208164e-09 8.722062857e-10 1.045433725e-09 9.743551902e-10 1.330805443e-09 1.996035449e-09 1.477330935e-09 1.043543365e-09 8.73482477e-10 1.958581201e-09 1.333565448e-09 1.144555396e-09 1.219277335e-09 1.366444997e-09 7.512638777e-10 6.750936647e-10 5.092244698e-10 6.710275699e-10 6.697847326e-10 6.450422076e-10 4.541707381e-10 5.115495656e-10 4.919586828e-10 5.648952414e-10 3.741814011e-10 1.225001417e-10 2.730548653e-10 2.508506382e-10 5.172901738e-11 4.470920024e-10 8.942858017e-10 2.566521722e-10 6.858996091e-10 3.153707096e-10 4.605005729e-10 3.35088509e-10 3.242475807e-10 4.339962014e-10 8.012704649e-10 7.111644772e-10 9.384336161e-10 5.866472399e-10 7.22162558e-10 7.403539007e-10 8.805247977e-10 1.143949474e-09 7.470982633e-10 7.874375032e-10 4.475847581e-10 7.626407654e-10 4.335927494e-10 6.607916763e-10 1.098559016e-09 6.459904494e-10 9.567916352e-10 9.266674739e-10 9.823817109e-10 1.286924668e-09 4.740808667e-10 1.015206889e-09 1.71397959e-09 1.041084526e-09 1.57020337e-09 6.278664127e-10 8.448833392e-10 1.098367212e-09 1.270762042e-09 1.455986545e-10 6.068965904e-10 5.113354613e-10 4.852027668e-10 4.334633767e-10 4.988715432e-10 9.125592509e-10 2.443712881e-10 6.262967408e-10 2.722142435e-10 8.208880957e-10 7.393410788e-10 5.354126277e-10 7.216185026e-10 6.15891918e-10 7.741075798e-10 7.874384283e-10 5.857707913e-10 3.225375434e-10 7.015973199e-10 3.98824758e-10 7.638025276e-10 7.916020407e-10 1.720877748e-10 4.034283221e-10 7.29036124e-10 4.628380952e-10 4.621925471e-10 4.439505438e-10 3.073825947e-10 2.551642145e-10 5.689198586e-10 2.103624179e-10 7.320843505e-10 3.920396103e-10 3.645329028e-10 1.661302204e-10 2.31996796e-10 1.228724307e-10 4.343143768e-10 5.842244036e-10 6.564096798e-10 3.299629984e-10 3.153759924e-10 8.87431893e-10 6.431367335e-10 6.731955014e-10 8.665179782e-10 6.858233326e-10 3.712419266e-10 4.149762028e-10 4.015091464e-10 5.592211252e-10 1.036878127e-09 5.979901479e-10 7.512063104e-10 3.600574298e-10 3.70908416e-10 6.853866922e-10 7.174554477e-10 5.206416711e-10 2.607442513e-10 4.686741819e-10 2.90430426e-10 6.32026415e-10 4.710233414e-10 3.076346313e-10 1.347534542e-10 6.561448e-10 4.842614543e-10 3.387778364e-10 1.130683867e-09 4.018530623e-10 1.048224917e-09 7.562184521e-10 4.345291488e-10 3.15493857e-10 4.301784693e-10 5.320410373e-10 3.860092538e-10 6.320916708e-10 +8.468280678e-10 1.732977334e-10 4.560475188e-10 7.133614403e-10 2.790947176e-10 4.548702023e-10 8.00614035e-10 4.936486343e-10 2.173734953e-10 9.867245727e-10 4.716146978e-10 2.924445458e-10 1.572742225e-10 4.63878887e-10 4.915572289e-10 6.298139639e-10 4.987568601e-10 4.587248609e-10 3.883751332e-10 3.724898925e-10 3.564475074e-10 5.93853768e-10 4.726196925e-10 5.381063726e-10 2.44593377e-10 5.716619727e-10 1.516886515e-10 3.643651048e-10 5.921467e-10 9.51494599e-10 4.445428267e-10 4.444859483e-10 6.212072423e-10 7.984567779e-10 1.78908284e-10 8.525047757e-10 5.054509507e-10 5.276696789e-10 2.090036832e-10 2.97217262e-10 6.761862226e-10 2.507020424e-10 2.625703687e-10 3.19531144e-10 4.986625579e-10 3.954424237e-10 1.878844776e-10 7.128320829e-10 2.333220302e-10 5.958497265e-10 8.114288942e-10 5.396927717e-10 7.554354627e-10 4.514171888e-10 4.369480209e-10 7.022352522e-10 4.590498545e-10 3.835140058e-10 5.19225112e-10 4.497346138e-10 1.01392949e-09 1.582943972e-10 3.695791579e-10 6.637648832e-10 7.152689057e-10 6.295591694e-10 2.937653728e-10 4.331736812e-10 7.063134953e-10 4.598229129e-10 5.67065904e-10 6.852584618e-10 3.263055937e-10 5.75642213e-10 1.684276196e-10 7.991232056e-10 4.028057739e-10 6.694055096e-10 3.769384747e-10 4.482655674e-10 3.550462222e-10 9.105361671e-10 7.944816706e-10 4.973857259e-10 6.627446794e-10 1.408681414e-09 1.050713009e-09 8.245124339e-10 6.804031169e-10 1.19915129e-09 5.652178965e-10 1.027203081e-09 7.444170321e-10 1.181065312e-09 8.332015913e-10 8.126466013e-10 5.70788916e-10 1.107062244e-09 5.679427527e-10 7.551899969e-10 8.171492086e-10 6.665013906e-10 7.323972531e-10 6.689978333e-10 9.541054309e-10 1.0152764e-09 6.020794159e-10 8.243385961e-10 1.295166538e-09 4.739506765e-10 4.41546234e-10 5.234142736e-10 5.207300518e-10 5.344922542e-10 4.869188183e-10 5.873976819e-10 6.718553834e-10 5.854919846e-10 2.140743872e-10 3.455396067e-10 6.589068921e-10 3.09461862e-10 1.818632503e-10 1.243292173e-10 3.99356251e-10 2.082888679e-10 2.703476328e-10 3.788534302e-10 6.820371921e-10 3.429191303e-10 5.434685982e-10 6.336662413e-10 5.709499574e-10 2.62222088e-10 4.109869101e-10 1.200069498e-09 9.578724362e-10 5.796268682e-10 9.169064866e-10 1.283965616e-09 1.072281363e-09 1.369680621e-09 8.327644143e-10 1.13606703e-09 8.526053924e-10 6.132220512e-10 9.706848215e-10 1.676427609e-09 1.283243432e-09 7.087490081e-10 5.504141671e-10 8.023529723e-10 1.998154643e-09 1.505314979e-09 1.844041735e-09 6.199572562e-10 9.910054684e-10 1.297444158e-09 1.154152412e-09 7.166361613e-10 1.306811889e-09 2.403190348e-09 1.204450281e-09 1.042705425e-09 1.075350306e-09 4.080455462e-10 8.240265574e-10 7.864685986e-10 9.473818642e-10 3.609656921e-10 6.017851651e-10 1.095563698e-09 5.858248871e-10 3.537583625e-10 3.488249043e-10 1.35247163e-10 1.004478547e-10 1.373524146e-10 1.244585747e-10 2.159064255e-10 3.213457883e-10 1.866786784e-10 3.308247029e-10 8.088254293e-10 3.435596087e-10 4.968162351e-10 6.533598692e-10 6.424671029e-10 2.495375134e-10 3.699070433e-10 1.075244532e-09 3.656385832e-10 1.106480778e-09 4.513906624e-10 1.049960764e-10 1.0332172e-09 9.683175869e-10 5.533876259e-10 1.122205092e-09 1.139361013e-09 6.962756208e-10 8.738029613e-10 3.253854025e-10 8.175814304e-10 7.03270268e-10 5.304449611e-10 8.761468344e-10 8.423980376e-10 8.836460345e-10 1.407861951e-09 9.912311903e-10 1.435192435e-09 7.885339669e-10 7.634199507e-10 7.675595464e-10 4.833654038e-10 7.870749756e-10 1.382477546e-09 3.834449657e-10 4.934951283e-10 5.148888232e-10 2.366660085e-10 8.126108213e-10 2.460638401e-10 1.014076549e-09 3.542921778e-10 3.657811181e-10 7.493524615e-10 5.204588121e-10 6.681192016e-10 1.128858077e-09 8.24687086e-10 3.262043321e-10 6.334257453e-10 5.025807968e-10 1.006838691e-09 2.646621216e-10 5.942858292e-10 5.90671163e-10 5.343386653e-10 2.587240913e-10 3.160466905e-10 2.675229512e-10 2.416424745e-10 5.078435865e-11 8.095520378e-10 5.227886811e-10 4.836459563e-10 2.404021587e-10 3.983522864e-10 4.561695388e-10 3.212118963e-10 6.440837703e-10 2.929530177e-10 2.08855428e-10 4.083822467e-10 4.907939944e-10 4.588261959e-10 3.459246153e-10 4.955982006e-10 9.233139459e-10 4.211865095e-10 5.056932173e-10 3.850030654e-10 6.174253505e-10 4.186251088e-10 3.963510389e-10 7.339046499e-10 7.288309176e-10 3.06594858e-10 1.088791182e-09 4.988276587e-10 5.237503513e-10 1.378234534e-10 6.688254304e-10 5.243408083e-10 9.687936747e-10 4.258816611e-10 3.816933976e-10 4.004466476e-10 3.754563794e-10 9.441063403e-10 4.228137898e-10 3.920503439e-10 4.067341108e-10 5.161179523e-10 5.102308993e-10 4.117993711e-10 2.560932011e-10 8.179576176e-10 5.765920106e-10 3.957852809e-10 9.873514034e-10 4.465329098e-10 1.004774096e-09 3.192203695e-10 2.692886575e-10 5.326068998e-10 1.103499671e-09 6.389258788e-10 +5.234683666e-10 4.228880667e-10 3.784542463e-10 3.273587279e-10 2.459135198e-10 3.175026761e-10 7.210708916e-10 2.740072655e-10 9.624150248e-10 4.420639952e-10 4.077800019e-10 7.666695275e-10 6.016201935e-10 4.325466996e-10 8.379119284e-10 3.316705545e-10 2.917000317e-10 8.718158651e-10 5.300386307e-10 4.197988051e-10 4.446602407e-10 7.185891947e-10 3.855961043e-10 3.246027445e-10 5.351689382e-10 4.741190688e-10 1.406907308e-09 9.467497917e-10 3.618668887e-10 4.084486271e-10 6.455602691e-10 3.843641017e-10 5.217317976e-10 5.283848978e-10 5.640834568e-10 2.31922966e-10 4.807018434e-10 3.561298657e-10 5.5550641e-10 2.422065601e-10 3.222559262e-10 6.781503466e-10 5.385973236e-10 4.35324803e-10 6.178902946e-10 2.153533702e-10 4.790331583e-10 4.399729278e-10 3.859146055e-10 6.686727232e-10 6.797435358e-10 5.244441377e-10 1.803416072e-10 1.046701863e-09 7.854404636e-10 8.562446147e-10 3.102931924e-10 2.772053774e-10 2.093273505e-10 4.27467539e-10 6.344639262e-10 4.24111675e-10 9.015569359e-10 2.755927536e-10 4.310448503e-10 4.947331216e-10 5.607597461e-10 6.563137942e-10 3.218114102e-10 5.239154866e-10 5.672564093e-10 2.393305715e-10 8.19277761e-10 4.246673922e-10 7.778892625e-10 5.092570387e-10 4.450844941e-10 4.438834141e-10 1.836269156e-10 5.345096217e-10 6.001560215e-10 2.095773622e-10 7.090341682e-10 6.079046872e-10 3.792304428e-10 8.474943621e-10 1.152719031e-09 8.853783548e-10 1.364250526e-09 5.249939257e-10 9.206701991e-10 6.455843177e-10 6.654240529e-10 6.856863806e-10 9.255109287e-10 9.896560927e-10 8.272853811e-10 8.525373128e-10 4.229366246e-10 4.923273157e-10 9.35165751e-10 9.472324144e-10 7.26259904e-10 1.173792251e-09 7.190458388e-10 4.299048578e-10 9.098991389e-10 6.430362878e-10 9.61320727e-10 6.662346257e-10 8.74687852e-10 6.916800853e-10 7.296521108e-10 5.005159212e-10 7.457183565e-10 1.033927057e-09 4.018469947e-10 3.984320342e-10 3.463308692e-10 5.099994244e-10 2.566592083e-10 4.240252517e-10 2.293972354e-10 1.318537463e-10 4.324066287e-10 2.322403936e-10 3.595041459e-10 6.367686552e-10 4.91247702e-10 5.765239562e-10 5.481465235e-10 3.36463702e-10 2.052817778e-10 3.925946374e-10 3.817006555e-10 1.983427318e-10 1.207389383e-09 1.098276306e-09 5.980209825e-10 4.149852536e-10 3.69159624e-10 1.337756155e-09 8.587251117e-10 3.455346741e-10 8.165994002e-10 1.094371858e-09 1.675312267e-09 1.404253071e-09 1.070793051e-09 5.940570513e-10 1.62408837e-09 1.842847127e-09 2.075835991e-09 1.018712777e-09 8.564732999e-10 1.53346728e-09 6.602013075e-10 3.263403691e-10 1.402480401e-09 3.948201262e-10 3.926008715e-10 7.189482643e-10 4.028008924e-10 7.322179319e-10 6.514034894e-10 6.815088725e-10 4.581308859e-10 3.098833363e-10 3.922331689e-10 2.715192656e-10 3.359751138e-10 5.306682177e-10 5.215961963e-10 2.1855379e-10 3.175919482e-10 1.662188002e-10 2.256236176e-10 2.811569875e-10 2.915060994e-10 4.188035476e-10 3.506913835e-10 2.827213426e-10 1.036612467e-09 8.53911246e-10 6.051772843e-10 6.237865522e-10 6.516407458e-10 8.790068947e-10 6.732298375e-10 5.832740724e-10 5.139606482e-10 9.921555368e-10 6.226104208e-10 6.533831089e-10 8.351023419e-10 1.009158448e-09 1.115762974e-09 1.164553758e-09 5.129738262e-10 5.277983147e-10 9.295666441e-10 1.16650769e-09 3.209912142e-10 1.203902267e-09 5.915903957e-10 9.193557688e-10 5.900815597e-10 7.969769892e-10 1.307887102e-09 1.289202885e-09 9.018805174e-10 6.30163982e-10 8.89457871e-10 7.355065222e-10 6.021681511e-10 1.218322143e-09 1.189007479e-09 5.713354645e-10 8.190397321e-10 2.028442514e-10 4.423949434e-10 4.259876599e-10 5.305665e-10 1.965901742e-10 5.505317038e-10 8.790238368e-10 4.489248413e-10 6.570964899e-10 3.551923049e-10 2.55610212e-10 7.70700935e-10 4.285788918e-10 5.314434479e-10 3.259913951e-10 7.736339928e-10 8.69688593e-10 6.337338016e-10 5.676615933e-10 5.016217667e-10 3.968636428e-10 4.278888225e-10 6.021172875e-10 4.00709291e-10 3.124129542e-10 4.031440052e-10 3.808392969e-10 4.746658159e-10 3.473258125e-10 7.099854085e-10 3.163311658e-10 4.048310543e-10 4.224848241e-10 4.711386929e-10 7.22093897e-10 7.330336656e-10 7.721913991e-10 2.742792466e-10 2.305849594e-10 2.197415075e-10 2.731472487e-10 4.165374223e-10 3.176817943e-10 3.294961605e-10 1.015148925e-09 4.384423858e-10 6.691758953e-10 2.61271592e-10 8.458069214e-10 6.000216899e-10 4.218013033e-10 2.357546274e-10 1.044671251e-09 1.984044578e-10 5.57606851e-10 4.656372293e-10 4.308414713e-10 8.308376307e-10 5.081933933e-10 3.18264852e-10 5.728806036e-10 6.609749577e-10 6.336255031e-10 2.367201526e-10 5.195984926e-10 1.711561437e-10 2.379985881e-10 3.99113458e-10 2.929221378e-10 7.091231515e-10 3.223623321e-10 2.616095043e-10 1.913728958e-10 6.209151888e-10 8.483135806e-10 2.010641016e-10 3.624757142e-10 6.380194808e-10 5.059449052e-10 9.592996812e-10 4.185254888e-10 +9.410357716e-10 8.797115851e-10 7.605052206e-10 3.907675873e-10 5.744719928e-10 7.011739333e-10 7.327681482e-10 2.033257801e-10 5.462503992e-10 5.980849221e-10 4.322283245e-10 4.168576791e-10 5.27056775e-10 4.594813874e-10 9.512873998e-10 6.391016153e-10 2.340077348e-10 4.761238744e-10 4.031218195e-10 2.95681448e-10 8.639535326e-10 5.102323939e-10 4.479173729e-10 4.392652508e-10 3.723714756e-10 3.488182176e-10 5.112776475e-10 4.531186013e-10 1.956240031e-10 4.454561625e-10 3.85052181e-10 9.022576596e-10 4.394970428e-10 2.23830021e-10 6.804997493e-10 2.014528631e-10 2.501320159e-10 3.228540848e-10 3.04811309e-10 1.157792897e-09 7.239040739e-10 2.783014048e-10 2.686545266e-10 4.265025027e-10 5.31142016e-10 6.521503556e-10 6.282979046e-10 5.562428139e-10 1.952541531e-10 6.187282363e-10 5.561034795e-10 7.167642868e-10 7.001420041e-10 7.020751598e-10 3.207773202e-10 4.670919304e-10 1.653664903e-10 1.09403528e-09 2.662611662e-10 4.162232606e-10 5.139774635e-10 5.125949866e-10 3.621249886e-10 3.959509181e-10 4.351007512e-10 7.457997761e-10 3.309284955e-10 5.564666595e-10 3.917407709e-10 4.92997691e-10 4.575647339e-10 4.10023785e-10 3.338412349e-10 4.581476148e-10 2.727194806e-10 4.218446665e-10 3.53900962e-10 2.90426375e-10 3.807248888e-10 6.83578386e-10 3.705164517e-10 2.568093428e-10 9.104135151e-10 7.855664421e-10 4.393667394e-10 7.899337546e-10 4.603283827e-10 1.188517256e-09 1.155965673e-09 6.501102208e-10 9.792248801e-10 8.890193652e-10 8.248850347e-10 5.837610163e-10 6.732258588e-10 4.993203029e-10 2.826285458e-10 7.968509915e-10 4.098045652e-10 3.651075564e-10 7.045370733e-10 8.599504393e-10 1.275107194e-09 4.565880719e-10 1.050960585e-09 9.823452287e-10 2.632967366e-10 3.066284314e-10 1.179343265e-09 8.249549829e-10 5.94326842e-10 4.796278035e-10 6.85076326e-10 7.53681195e-10 5.527869434e-10 8.879958666e-10 1.004801709e-09 3.340172268e-10 4.493531801e-10 3.748285112e-10 3.016316587e-10 2.907359227e-10 1.564815108e-10 2.502794289e-10 1.012998167e-10 1.649326505e-10 1.029042977e-10 2.411991325e-10 2.131488639e-10 3.733144645e-10 5.735345906e-10 5.537334156e-10 3.663653092e-10 2.760512847e-10 9.951444205e-10 2.960430148e-10 1.8146786e-10 6.086455004e-10 3.286405293e-10 6.861366694e-10 6.789541743e-10 1.093507931e-09 5.293839619e-10 1.058932375e-09 1.208414318e-09 3.735150781e-10 1.620550915e-09 8.722626461e-10 7.434982837e-10 1.371592198e-09 1.40267237e-09 9.041362298e-10 1.442150801e-09 1.912579178e-09 8.647949463e-10 4.811875693e-10 2.99494647e-10 8.732879273e-10 8.93278694e-10 4.550560592e-10 2.625819348e-10 2.590315733e-10 4.670385064e-10 2.447519298e-10 5.060166867e-10 5.911763736e-10 2.952234414e-10 3.137475797e-10 5.683737675e-10 2.93202604e-10 2.235878691e-10 3.063074473e-10 3.605705095e-10 1.459900719e-10 7.739996759e-11 2.303489505e-10 1.325087546e-10 2.137138056e-10 4.515041424e-10 2.475098012e-10 4.279379754e-10 1.01566629e-09 7.017500714e-10 4.67203497e-10 8.508333426e-10 6.660308957e-10 6.927447098e-10 7.641456092e-10 5.599256149e-10 5.101076076e-10 5.96796319e-10 5.228322925e-10 5.505196165e-10 1.008176303e-09 8.330507985e-10 8.52563926e-10 7.924268619e-10 5.402375067e-10 6.583859087e-10 8.43174452e-10 8.289127683e-10 1.291579969e-09 8.443707833e-10 7.073609049e-10 1.156685406e-09 7.073878502e-10 1.903407439e-10 1.149332619e-09 7.08554062e-10 7.1567185e-10 4.463691511e-10 1.466414414e-09 5.166730581e-10 7.963225705e-10 6.471131321e-10 4.209803651e-10 7.814132596e-10 5.455329494e-10 1.106158663e-09 3.379595751e-10 4.155341036e-10 5.275909261e-10 9.218451611e-10 2.299595205e-10 4.68312707e-10 1.208108624e-09 1.766386585e-10 5.485527617e-10 6.195732653e-10 6.119148392e-10 4.639759577e-10 8.040416757e-10 7.396951394e-10 1.978949264e-10 2.906875954e-10 4.980142758e-10 8.468430455e-10 4.878723767e-10 7.985397492e-10 4.410487205e-10 4.746172238e-10 3.107858926e-10 6.113177096e-10 2.397857956e-10 5.190898043e-10 5.70482876e-10 2.964997928e-10 4.908096826e-10 6.676741559e-10 4.128330335e-10 4.150629994e-10 2.086220102e-10 4.894629209e-10 8.636436926e-10 8.393423467e-11 6.899892907e-10 4.291521395e-10 4.793692539e-10 2.620063778e-10 3.451549688e-10 4.457820278e-10 5.432847343e-10 2.683634753e-10 1.188146543e-10 2.546367247e-10 5.491666055e-10 2.483780028e-10 8.877044575e-10 3.704661e-10 3.552496263e-10 3.196883366e-10 4.52603121e-10 3.313245758e-10 4.897146611e-10 5.189647543e-10 4.079723591e-10 6.650713551e-10 4.248103065e-10 1.774135197e-10 1.978904833e-10 7.133443054e-10 6.96427304e-10 3.938304605e-10 1.924305815e-10 2.291952719e-10 4.066794452e-10 2.805848759e-10 3.913107753e-10 4.88943317e-10 4.004136325e-10 5.604008893e-10 1.067263212e-09 1.335651454e-10 3.412685406e-10 4.455480351e-10 3.59312255e-10 2.574752874e-10 2.691218752e-10 6.855215026e-10 8.844283282e-10 +3.54055601e-10 3.319890778e-10 7.531539273e-10 6.03746395e-10 9.733779816e-10 2.902187178e-10 6.141400945e-10 4.224665681e-10 3.19095147e-10 3.5876566e-10 4.789126087e-10 3.633147381e-10 2.593826424e-10 3.421271714e-10 5.37354789e-10 1.339467803e-10 7.620396392e-10 6.244005653e-10 6.319038018e-10 8.388344456e-10 7.655446919e-10 5.599773774e-10 7.349814048e-10 3.922152923e-10 4.90616534e-10 4.979019447e-10 4.915748082e-10 3.487121086e-10 8.70056398e-10 5.965400086e-10 2.878683816e-10 1.067963787e-10 3.986989048e-10 4.097109161e-10 1.504015413e-10 2.561807189e-10 2.611626004e-10 3.831434753e-10 1.729664633e-10 2.305554604e-10 2.892401543e-10 3.347619053e-10 7.480114575e-10 3.708629355e-10 4.801148612e-10 1.893530527e-10 3.614476498e-10 3.042000578e-10 5.046098064e-10 4.449003605e-10 5.971962992e-10 5.031718459e-10 5.80036028e-10 5.353330851e-10 8.216353985e-10 2.506766079e-10 2.780215754e-10 1.022228825e-09 8.456978169e-10 6.139468567e-10 6.568721145e-10 5.542099849e-10 3.581813622e-10 2.577487284e-10 7.646554768e-10 6.916641274e-10 6.916347936e-10 7.665096328e-10 5.886954991e-10 4.901829387e-10 2.284013928e-10 3.850967475e-10 6.714292291e-10 5.214239936e-10 7.017750889e-10 4.672778268e-10 8.742186891e-10 3.805168477e-10 2.229008743e-10 4.509202798e-10 4.220007844e-10 4.986196534e-10 3.201382778e-10 3.08197483e-10 5.941795254e-10 8.959588661e-10 6.034925075e-10 1.139656998e-09 1.10468515e-09 6.073457857e-10 8.272297887e-10 1.077519845e-09 6.735719862e-10 6.830614327e-10 9.805513696e-10 2.052578149e-10 1.504993895e-09 5.54152418e-10 9.155954228e-10 6.932022123e-10 3.777022875e-10 4.409447335e-10 5.775948309e-10 7.807820478e-10 1.058302275e-09 7.573267408e-10 9.113161545e-10 5.391097928e-10 5.219556883e-10 8.712764457e-10 1.073702098e-09 6.426268096e-10 7.09271585e-10 5.05516449e-10 8.269336316e-10 4.754695109e-10 9.735436266e-10 5.265796769e-10 2.294733501e-10 6.258672873e-10 2.696846326e-10 4.004315548e-10 6.282435728e-10 4.271896697e-10 3.625049775e-10 2.731160819e-10 2.674558367e-10 9.220256517e-11 3.772395043e-10 3.516446854e-10 2.399254436e-10 3.999568742e-10 1.369001635e-10 4.959894691e-10 6.706453852e-10 8.561654188e-11 3.325484555e-10 3.208905918e-10 2.311154277e-10 5.387511868e-10 1.93640136e-10 5.868232213e-10 1.025455192e-09 4.897148083e-10 1.924828936e-10 3.95023586e-10 3.100574183e-10 1.026719568e-09 3.848846629e-10 8.918577091e-10 9.953677909e-10 3.752677986e-10 6.438439145e-10 7.5525625e-10 6.658587295e-10 8.415603864e-10 8.501746797e-10 3.904926262e-10 4.149367633e-10 2.050586169e-10 3.075827771e-10 3.639424587e-10 1.737596994e-10 2.540052621e-10 3.394778064e-10 2.537545283e-10 5.371843388e-10 5.6156959e-10 4.26689018e-10 3.883044853e-10 1.658922699e-10 2.05458353e-10 1.872082192e-10 2.192290351e-10 2.116119191e-10 2.669740724e-10 1.433132983e-10 2.093405674e-10 1.293758753e-10 4.778398755e-10 3.886108854e-10 3.629505658e-10 5.183919283e-10 2.575646953e-10 6.216882955e-10 7.028961415e-10 6.512305725e-10 7.911204891e-10 7.12986688e-10 4.187344352e-10 8.077739234e-10 9.465197254e-10 7.505719742e-10 6.11583657e-10 5.151903177e-10 8.285908187e-10 1.323380611e-09 2.404262802e-10 9.791981318e-10 8.909222138e-10 7.111941251e-10 6.289276268e-10 7.741967515e-10 7.854609454e-10 5.298669479e-10 7.168008814e-10 8.882547582e-10 7.996810051e-10 1.134712554e-09 1.232029416e-09 1.043943626e-09 6.506007676e-10 7.596210918e-10 8.744513162e-10 6.083055587e-10 6.717153415e-10 6.298449005e-10 5.770504613e-10 6.596315251e-10 3.695791843e-10 6.81361494e-10 2.222382607e-10 5.475845371e-10 8.210501511e-10 5.334650375e-10 5.651623503e-10 3.569403064e-10 1.992812951e-10 2.516453269e-10 3.679567287e-10 4.877501247e-10 4.581933988e-10 2.545219468e-10 4.26857911e-10 5.681601753e-10 2.791739415e-10 5.755745512e-10 4.630193948e-10 6.247302335e-10 5.593973892e-10 9.060505746e-10 8.27881556e-11 1.20044638e-09 1.753819888e-10 5.737659561e-10 4.660544673e-10 4.551673434e-10 6.909004643e-10 8.839174079e-11 4.043319347e-10 5.136734769e-10 4.952463086e-10 4.152131127e-10 2.387140239e-10 3.476474851e-10 3.184043204e-10 3.237978738e-10 5.114646118e-10 4.283168639e-10 5.415037436e-10 3.905363422e-10 3.929138455e-10 3.71886543e-10 5.008421383e-10 4.670934553e-10 4.25297422e-10 3.045826412e-10 4.120179983e-10 3.616668258e-10 3.900989131e-10 5.908234736e-10 3.207980317e-10 4.130106104e-10 4.391399108e-10 5.823844008e-10 3.352561326e-10 8.22349383e-10 4.654212579e-10 6.01501649e-10 3.413939239e-10 7.602803844e-10 4.468915197e-10 5.235004659e-10 3.038712603e-10 5.971792181e-10 5.58344886e-10 3.329687316e-10 5.35707887e-10 2.092957884e-10 7.017922342e-10 6.7916216e-10 5.416540003e-10 7.514063588e-10 4.458719096e-10 4.685889677e-10 5.882685483e-10 3.259849129e-10 5.134342576e-10 4.016191573e-10 2.821917566e-10 +2.548513483e-10 2.593101921e-10 7.178619898e-10 1.334944947e-10 7.748985073e-10 4.107032871e-10 5.968425762e-10 4.19792975e-10 6.878353555e-10 7.536051387e-10 5.074810991e-10 1.569988816e-10 4.079514962e-10 4.136758067e-10 6.415268001e-10 4.671824373e-10 6.117749393e-10 4.381542654e-10 5.019956937e-10 2.609374205e-10 8.597483498e-10 4.532410936e-10 3.559387101e-10 3.615625618e-10 2.216187822e-10 4.084201841e-10 3.422560749e-10 3.319956723e-10 5.874971323e-10 3.556309451e-10 1.224458614e-09 2.246031781e-10 6.804659423e-10 8.194304106e-10 6.293212325e-10 8.211656597e-10 4.546948805e-10 4.799335619e-10 1.841071976e-10 2.597938466e-10 3.085203024e-10 5.375644893e-10 4.048329734e-10 6.456100939e-10 5.445585492e-10 9.148741474e-10 4.330347666e-10 9.790453205e-10 5.113742587e-10 7.35428761e-10 7.989476102e-10 6.296196085e-10 5.213186912e-10 5.893242008e-10 4.730391054e-10 7.09877676e-10 8.666255855e-10 4.555588677e-10 2.475885303e-10 8.235199191e-10 5.359844402e-10 4.798078417e-10 3.2642868e-10 5.530675367e-10 5.206629029e-10 1.092757811e-09 2.770480562e-10 6.099042229e-10 7.396780593e-10 4.214397264e-10 4.416151634e-10 3.406307072e-10 2.239942538e-10 5.542155984e-10 5.731079716e-10 8.11758976e-10 2.938762755e-10 2.492833996e-10 3.180247198e-10 3.951866736e-10 5.116826338e-10 4.62405868e-10 7.662991463e-10 6.004185087e-10 6.150107562e-10 1.056586815e-09 1.983432782e-10 9.478103618e-10 9.083921218e-10 9.295924597e-10 8.370123207e-10 7.525490049e-10 7.480026219e-10 1.226890881e-09 7.999768919e-10 3.88667613e-10 6.5623102e-10 7.828031149e-10 3.461982944e-10 8.445489441e-10 1.118312215e-09 1.150645462e-09 8.260101294e-10 9.566998245e-10 1.271216171e-09 5.427440986e-10 5.088652665e-10 7.628573799e-10 6.516463214e-10 2.789700721e-11 7.050384112e-10 5.137867584e-10 7.07859091e-10 8.471065993e-10 5.377059201e-10 9.384586538e-10 3.381352127e-10 6.166104414e-10 5.045454321e-10 5.393894341e-10 3.444386578e-10 4.019115592e-10 4.660380999e-10 3.36139219e-10 2.089485186e-10 1.694233311e-10 1.17488267e-10 3.059145649e-10 3.684880665e-10 2.038337316e-10 1.441666134e-10 8.938112168e-11 1.819648213e-10 2.618811195e-10 5.075277853e-10 3.504135908e-10 4.426229748e-10 4.1600402e-10 6.111223122e-10 5.697253246e-10 5.665728275e-10 4.34970853e-10 4.472894565e-10 4.063738775e-10 3.029049173e-10 4.715886302e-10 5.775728724e-10 4.356591406e-10 8.465429833e-10 2.89820479e-10 4.157865868e-10 3.175625186e-10 2.620723406e-10 6.546752594e-10 5.69806059e-10 6.134764143e-10 5.714555369e-10 4.613343279e-10 4.382220012e-10 5.808590557e-10 4.221605306e-10 4.335408243e-10 2.540318877e-10 6.539800401e-10 6.934402198e-10 2.465022362e-10 3.171767805e-10 4.923782039e-11 9.243146691e-11 2.857596853e-10 1.242721168e-10 3.275491199e-10 1.48926737e-10 2.361779351e-10 2.997941759e-10 1.29466052e-10 3.107821442e-10 5.931831024e-10 3.267194488e-10 5.076005907e-10 3.761782025e-10 4.545160709e-10 6.422452135e-10 3.908209478e-10 2.607420628e-10 2.979365707e-10 3.732077819e-10 6.010903073e-10 7.146553247e-10 3.86487869e-10 3.64633312e-10 3.762373488e-10 5.564353516e-10 6.93461721e-10 6.097118622e-10 6.846551065e-10 6.387093072e-10 6.626980759e-10 8.364574038e-10 6.445696457e-10 6.8277977e-10 2.804413753e-10 1.017928998e-09 4.200081493e-10 1.118898977e-09 1.102961931e-09 1.107036844e-09 1.074467861e-09 6.77914931e-10 1.025140925e-09 8.857636337e-10 6.699585999e-10 8.359876146e-10 7.789724239e-10 1.153320831e-09 6.788673935e-10 2.905253832e-10 9.620526631e-10 4.144673352e-10 5.677535629e-10 5.694153696e-10 9.07657672e-10 5.901452567e-10 1.1896732e-10 9.764588865e-10 5.887677571e-10 5.049210604e-10 4.856918266e-10 8.110120944e-10 6.4586444e-10 1.035109113e-10 4.071901679e-10 3.222112705e-10 7.234100391e-10 9.460680382e-10 5.124303384e-10 7.462793732e-10 5.126183124e-10 3.161195417e-10 2.588380373e-10 2.2337564e-10 3.994178973e-10 5.328076795e-10 3.953095527e-10 5.64479795e-10 2.998294762e-10 9.720756246e-11 4.225403022e-10 4.405158252e-10 2.529696334e-10 4.390580076e-10 6.598263231e-10 2.538037757e-10 5.514432875e-10 5.298385664e-10 3.676947803e-10 3.570053917e-10 5.1440909e-10 2.25201854e-10 2.33340914e-10 2.603040678e-10 3.870537389e-10 3.548576491e-10 7.089536753e-10 4.365347103e-10 5.738821221e-10 1.949372894e-10 1.770193165e-10 3.677645591e-10 4.787647019e-10 2.311632822e-10 3.198279149e-10 3.170808729e-10 3.928804326e-10 3.205446333e-10 3.807121105e-10 5.279504636e-10 5.690333578e-10 8.220133602e-10 6.011549906e-10 5.060397976e-10 2.357120962e-10 2.975617425e-10 3.42656987e-10 3.987423578e-10 2.071692044e-10 3.534797699e-10 6.120440642e-10 3.438621146e-10 3.280895451e-10 3.522290162e-10 4.659231021e-10 1.182163674e-10 1.476304919e-10 2.514926341e-10 2.518145949e-10 2.237711372e-10 1.977654175e-10 3.553302921e-10 5.14050463e-10 +3.038193993e-10 5.066401643e-10 4.8260375e-10 5.008673024e-10 4.649142167e-10 7.724398661e-10 2.200856389e-10 4.948333057e-10 6.740843065e-10 3.927816074e-10 1.624458719e-10 5.0083368e-10 7.052495617e-10 3.380819644e-10 3.510648556e-10 2.690671761e-10 4.66515793e-10 4.4892025e-10 4.35600255e-10 2.166259368e-10 4.828035419e-10 8.631445826e-10 1.014089704e-09 3.496872566e-10 7.613772498e-10 3.710934689e-10 7.267821365e-10 5.053274748e-10 4.171254251e-10 1.341301834e-10 4.313581332e-10 4.344184121e-10 2.45378336e-10 6.575959802e-10 2.06109148e-10 1.804372059e-10 5.923461359e-10 3.881019145e-10 5.8107735e-10 4.974425154e-10 2.189055175e-10 5.54255381e-10 4.99962457e-10 2.779153817e-10 4.471647928e-10 6.69323754e-10 6.115261518e-10 2.816459251e-10 3.364695094e-10 3.734800143e-10 5.773938841e-10 2.984892313e-10 6.99678811e-10 7.193511161e-10 7.697711645e-10 3.606893692e-10 4.265545726e-10 6.195366626e-10 4.59559788e-10 5.121097405e-10 3.918236177e-10 3.214709201e-10 9.486223387e-10 6.309561699e-10 6.393973857e-10 5.214351522e-10 3.437388183e-10 4.892522742e-10 8.331073271e-10 3.273113862e-10 4.109269467e-10 7.851225055e-10 3.007865206e-10 4.637101499e-10 2.60732894e-10 6.135591328e-10 6.409322724e-10 4.109939608e-10 4.557433368e-10 9.15395114e-11 3.561842117e-10 5.275628148e-10 3.722505798e-10 9.453811729e-10 1.026023638e-09 3.719534268e-10 6.938493901e-10 5.791835286e-10 1.135253279e-09 4.716165414e-10 1.159819331e-09 9.05093407e-10 1.213253371e-09 7.096755266e-10 4.286868138e-10 2.455059829e-10 4.97346246e-10 5.274355767e-10 4.443749472e-10 7.865958517e-10 4.2367079e-10 1.290694187e-09 6.957752403e-10 7.653545127e-10 4.478759084e-10 7.964268708e-10 9.573459288e-10 7.795305485e-10 6.54491158e-10 2.796573456e-10 6.431792232e-10 7.040193691e-10 1.048110614e-09 9.009106864e-10 2.390776826e-10 5.429484746e-10 5.604270731e-10 6.336739478e-10 8.336327953e-10 4.593579112e-10 4.337439724e-10 3.186132066e-10 1.033520937e-10 6.870468605e-10 2.809694031e-10 4.20867311e-10 3.991479516e-10 1.539033938e-10 3.566643516e-10 2.578109669e-10 7.286306012e-11 2.403037085e-10 4.324611724e-11 2.11921772e-10 4.317115661e-10 9.064381806e-11 1.356474876e-10 3.968687118e-10 1.688712473e-10 5.015602477e-10 2.721835953e-10 9.194184886e-11 2.65809839e-10 4.7529243e-10 2.752256542e-10 2.186869544e-10 4.876625806e-10 2.305616904e-10 3.292278017e-10 2.013742605e-10 3.530788118e-10 4.955324044e-10 3.416642108e-10 4.559265585e-10 4.643269989e-10 3.642705236e-10 2.037326962e-10 3.190369513e-10 5.500217429e-10 2.903315487e-10 3.164368358e-10 3.278409839e-10 6.298919303e-10 4.063167842e-10 1.84837018e-10 1.975142205e-10 1.908721146e-10 4.073730117e-10 9.558323146e-11 2.562160558e-10 2.351630936e-10 2.604254594e-10 1.739093101e-10 7.042629098e-11 3.871236852e-10 2.518726773e-10 3.712440072e-10 1.757422472e-10 4.108512043e-10 3.025735928e-10 2.464928919e-10 9.613518691e-10 6.486841576e-10 7.709242706e-10 3.430832934e-10 2.435877601e-10 7.892670096e-10 8.464855781e-10 7.444632285e-10 6.585820277e-10 6.584272663e-10 1.062659363e-09 8.405873198e-10 2.253199267e-10 4.512283438e-10 9.153029098e-10 5.911962507e-10 2.415290921e-10 6.036564514e-10 4.089686602e-10 1.78367016e-10 8.996924774e-10 3.586718536e-10 5.869500943e-10 9.748177085e-10 6.981293023e-10 8.947815327e-10 7.381798871e-10 1.373759893e-09 9.712789603e-10 1.64824611e-09 1.037969571e-09 1.430355827e-09 6.05317035e-10 3.656034712e-10 7.980370251e-10 4.587018913e-10 8.86272708e-10 5.838145063e-10 6.604070983e-10 4.717303593e-10 2.60757262e-10 5.262760293e-10 5.122120744e-10 6.91965809e-10 5.244674964e-10 1.57409589e-10 9.386495031e-10 3.798751787e-10 4.195690737e-10 2.963666491e-10 3.944823698e-10 6.995314307e-10 8.68232214e-10 5.049556514e-10 5.050181544e-10 4.787204501e-10 6.175291035e-10 2.556228621e-10 5.184215805e-10 3.32481026e-10 2.746497133e-10 7.04250302e-10 8.553669925e-10 4.522911902e-10 5.298851205e-10 7.747777034e-10 2.749517376e-10 2.586486993e-10 4.439566785e-10 2.396422725e-10 4.419157535e-10 3.770873758e-10 3.003016909e-10 2.103995661e-10 4.14721922e-10 2.362528018e-10 4.825478519e-10 1.635396768e-10 6.040515173e-10 3.721025246e-10 1.508058551e-10 3.765929248e-10 2.385195406e-10 3.636989241e-10 3.555928423e-10 2.552234809e-10 3.522358845e-10 6.365946859e-10 3.904390853e-10 4.559085421e-10 6.011296765e-10 2.112508872e-10 3.393229535e-10 1.845232212e-10 3.811624364e-10 6.097380566e-10 6.660672518e-10 6.736050039e-10 5.384675543e-10 3.80743378e-10 7.792294175e-10 5.941765854e-10 8.524964634e-10 6.665715971e-10 8.627412648e-10 4.344555288e-10 1.468689996e-10 6.480096863e-10 7.306493053e-10 3.008084181e-10 3.538239666e-10 4.981290717e-10 7.773241971e-10 6.33262018e-10 9.725741097e-11 3.437969489e-10 1.742185044e-10 4.117815878e-10 2.825223642e-10 +4.805705332e-10 4.103594102e-10 3.65429702e-10 3.346680623e-10 3.932938024e-10 3.115895071e-10 2.397151068e-10 6.094815588e-10 1.878574707e-10 8.195024695e-10 1.173111423e-09 3.153224005e-10 3.347854313e-10 4.271333041e-10 4.851468699e-10 3.713606853e-10 1.267354241e-09 3.310998265e-10 2.966648355e-10 4.298451439e-10 1.598022707e-10 4.921115025e-10 3.543886313e-10 6.017808685e-10 5.470762665e-10 3.642142464e-10 2.829859155e-10 3.385348047e-10 3.141337437e-10 1.67903907e-10 2.996852158e-10 3.71122524e-10 2.297872705e-10 3.291325651e-10 7.445726606e-10 2.472937608e-10 2.082780484e-10 1.859400569e-10 2.956386604e-10 2.3316334e-10 2.518415863e-10 4.044465929e-10 5.109661158e-10 2.233702494e-10 6.539411706e-10 6.417789282e-10 4.251295871e-10 6.584466511e-10 2.49497804e-10 3.74951171e-10 5.149662585e-10 6.905244267e-10 6.771032783e-10 7.042446841e-10 2.83779442e-10 4.206623008e-10 5.471542634e-10 5.864801431e-10 5.669862491e-10 4.231245503e-10 3.956009348e-10 5.246919586e-10 4.628036645e-10 7.024682836e-10 5.868109702e-10 6.292226938e-10 7.544559802e-10 5.044137632e-10 3.189294876e-10 4.484004071e-10 2.025489758e-10 2.81352583e-10 6.504923553e-10 3.376582777e-10 5.659129607e-10 2.007416804e-10 2.551203472e-10 3.169342038e-10 2.366217434e-10 5.920882668e-10 4.06071091e-10 5.993468599e-10 5.036230792e-10 1.975709447e-10 6.488424611e-10 7.011812158e-10 1.1305019e-09 2.223881269e-10 1.215537309e-09 1.135587242e-09 6.785841417e-10 1.015554087e-09 6.104707623e-10 9.77463821e-10 3.288928815e-10 3.711788795e-10 8.385877256e-10 8.402968111e-10 8.048614799e-10 5.809384824e-10 4.424649498e-10 4.49078852e-10 8.204127954e-10 4.605635323e-10 3.937311597e-10 5.390521733e-10 8.585801105e-10 3.929319494e-10 5.115627232e-10 7.445105682e-10 5.949545664e-10 7.28317477e-10 1.148522675e-09 4.07320218e-10 4.835424516e-10 4.340640853e-10 6.413339468e-10 5.21460858e-10 8.814181121e-10 4.888314064e-10 5.282992328e-10 8.362955277e-10 3.321217069e-10 3.597661544e-10 5.066023628e-10 2.715660697e-10 4.961884005e-10 2.906796736e-10 4.709257403e-10 3.674001403e-10 1.671269976e-10 1.738629529e-10 2.637876047e-10 1.527588956e-10 1.355773776e-10 5.778997723e-10 1.576181996e-10 2.369895092e-10 3.746711221e-10 4.125986478e-10 2.953628593e-10 2.482110117e-10 7.159087675e-10 1.894926111e-10 3.924401589e-10 8.559948359e-10 4.557918615e-10 3.44604658e-10 3.179061885e-10 4.072999366e-10 2.383718219e-10 2.717215815e-10 7.889538726e-10 5.935869185e-10 7.875668599e-10 6.069374501e-10 2.848157728e-10 3.982104639e-10 7.784146896e-10 4.701604141e-10 5.146643847e-10 3.069695489e-10 2.56469084e-10 3.850813337e-10 1.334275541e-10 2.768780866e-10 3.490485037e-10 1.625518807e-10 1.311849092e-10 2.187130521e-10 8.504753055e-11 2.027962393e-10 2.19198132e-10 3.16464643e-10 3.209862258e-10 1.549168672e-10 5.308018877e-10 4.228909574e-10 4.368112244e-10 5.94190085e-10 3.567208777e-10 9.764788311e-10 6.341651916e-10 1.405362476e-10 4.920705553e-10 7.540347003e-10 1.958077791e-10 4.768011891e-10 7.86414475e-10 2.542883151e-10 8.036455625e-10 3.796047095e-10 5.269974018e-10 4.677602483e-10 7.509395531e-10 4.906799756e-10 9.775068261e-10 5.167538228e-10 9.379544916e-10 5.700606204e-10 7.243676552e-10 7.058824009e-10 3.189288264e-10 1.26067292e-09 1.601881959e-09 8.791380328e-10 4.961354457e-10 7.221095066e-10 7.09360214e-10 8.004918193e-10 7.876098205e-10 1.288994842e-09 9.768916067e-10 6.742523762e-10 6.881501709e-10 8.438216577e-10 7.873011963e-10 5.600441055e-10 6.048750601e-10 5.873157854e-10 5.47747393e-10 3.507794564e-10 4.98760067e-10 3.912252968e-10 3.519613122e-10 3.550154214e-10 4.920483306e-10 4.382047094e-10 3.790117596e-10 3.892504422e-10 6.471290886e-10 1.775143369e-10 2.252224532e-10 9.563263992e-10 4.087892227e-10 5.902800365e-10 2.112732005e-10 6.427128983e-10 4.981197331e-10 2.057250321e-10 9.057279923e-10 5.367744944e-10 4.584564074e-10 3.835902896e-10 5.77431736e-10 4.095423435e-10 8.068597865e-10 3.822639952e-10 6.510349894e-10 2.403203207e-10 6.298623941e-10 4.1993763e-10 3.652238393e-10 7.277292071e-10 2.898519603e-10 2.255700378e-10 4.284952001e-10 2.11668797e-10 3.312187767e-10 7.136506888e-10 6.833235791e-11 2.870376216e-10 6.734589793e-10 2.093715769e-10 2.496100974e-10 5.144386908e-10 2.087969445e-10 6.300208651e-10 1.251148607e-10 1.709424248e-10 5.099526222e-10 3.854333917e-10 3.65632309e-10 4.654073961e-10 2.199119242e-10 1.933246304e-10 2.902086196e-10 1.026837968e-09 3.206242402e-10 1.948774295e-10 7.101605598e-10 3.943006167e-10 5.923626604e-10 6.713988268e-10 7.423166629e-10 2.50524944e-10 2.790154114e-10 1.213451657e-10 2.858285948e-10 2.447502405e-10 4.205811237e-10 2.885621587e-10 1.969625347e-10 4.35823421e-10 4.006943053e-10 3.542346268e-10 5.813116879e-10 5.397445919e-10 7.500772029e-10 3.549204256e-10 +4.346872164e-10 2.506915529e-10 1.694738934e-10 5.603403517e-10 5.943980687e-10 2.982384234e-10 2.341318249e-10 3.025532699e-10 3.793220084e-10 1.762986416e-10 8.788174217e-10 4.162570318e-10 3.915462924e-10 4.326506804e-10 4.258425036e-10 4.541610657e-10 6.185681173e-10 2.059723731e-10 2.710723982e-10 2.227447826e-10 3.494025374e-10 5.189631035e-10 7.116300885e-10 2.583563317e-10 6.849487353e-10 4.003754001e-10 2.396004793e-10 3.532381682e-10 3.501865076e-10 4.259586029e-10 2.811174971e-10 1.637702191e-10 2.475831097e-10 5.072275388e-10 2.756922312e-10 4.65242928e-10 8.076493231e-10 4.522084691e-10 2.338899469e-10 8.732877077e-11 2.555676683e-10 3.746895836e-10 6.260410261e-11 3.757756772e-10 3.654944276e-10 2.792502837e-10 2.678833285e-10 4.555104132e-10 5.780186673e-10 2.565567466e-10 6.134933227e-10 6.339588428e-10 2.92643675e-10 5.619916561e-10 3.673057131e-10 2.334462486e-10 5.018468478e-10 1.689425238e-10 4.130843324e-10 1.803427953e-10 1.252580208e-10 5.196924287e-10 8.309437784e-10 5.833929694e-10 3.15096949e-10 4.654894767e-10 3.850517697e-10 3.500603903e-11 5.442961689e-10 3.000026099e-10 4.23077408e-10 7.162250079e-10 4.661541897e-10 5.1254919e-10 1.010862771e-09 2.8696824e-10 3.287289206e-10 3.025264555e-10 3.357500849e-10 1.922292023e-10 2.247765677e-10 7.561187041e-10 5.659521643e-10 6.898068734e-10 4.598218378e-10 3.744073786e-10 6.022289812e-10 7.220921732e-10 9.172506302e-10 1.113607615e-09 9.271022598e-10 6.235513212e-10 5.222256623e-10 3.970780473e-10 1.315627879e-09 1.241604743e-09 1.153576217e-09 1.008876464e-09 7.521609048e-10 1.000751548e-09 7.120103806e-10 1.022763227e-09 6.656029305e-10 4.518809615e-10 8.127268351e-10 4.319988997e-10 4.894443084e-10 6.577512038e-10 4.304184231e-10 8.128138529e-10 5.331481215e-10 6.202597387e-10 5.131767386e-10 8.315239915e-10 4.744075866e-10 4.996944973e-11 1.074363965e-09 9.187940221e-10 6.813694646e-10 4.447097143e-10 9.011427467e-10 5.860875801e-10 3.241679508e-10 6.783804705e-10 5.748112393e-10 2.292007073e-10 3.435690326e-10 1.093642817e-10 4.846038528e-10 1.793257677e-10 2.97056284e-10 1.36164008e-10 2.453949321e-10 3.944878812e-10 2.664998709e-10 2.541979421e-10 2.751641966e-10 3.954600441e-11 5.613136052e-10 2.770369283e-10 2.501345796e-10 5.491990253e-10 3.053640239e-10 2.593141663e-10 1.675532031e-10 2.577261401e-10 4.483328188e-10 4.256448452e-10 3.359827243e-10 3.560713152e-10 3.962720469e-10 3.767391057e-10 7.856586572e-11 3.981122997e-10 3.896156999e-10 3.250346651e-10 2.398719948e-10 2.932321951e-10 5.003359248e-10 2.782699049e-10 1.910532378e-10 3.165159982e-10 1.241182211e-10 2.716693511e-10 2.352168203e-10 7.994817397e-11 2.192186471e-10 1.106536129e-10 2.135412727e-10 1.843790355e-10 4.752969122e-10 1.170743854e-10 3.402044708e-10 2.844485398e-10 2.974294859e-10 3.029131976e-10 2.65361329e-10 4.6890551e-10 3.619974712e-10 7.95896633e-10 1.016155406e-09 5.544223483e-10 4.46005044e-10 2.691852526e-10 4.786590602e-10 7.865925765e-10 8.751395433e-10 3.160072006e-10 4.161477231e-10 5.195821796e-10 8.178981838e-10 3.249004313e-10 6.163571216e-10 4.726325348e-10 6.063959404e-10 1.337092966e-09 6.236799624e-10 9.24412125e-10 8.58222615e-10 6.697101291e-10 4.36184723e-10 7.768289994e-10 2.874497251e-10 3.705687432e-10 1.164574857e-09 8.854666896e-10 3.284435959e-10 3.543681464e-10 1.014168485e-09 7.897493808e-10 3.84623906e-10 6.532202176e-10 3.334314791e-10 7.794768005e-10 9.823904837e-10 1.152048608e-09 4.505564635e-10 2.44253221e-10 2.449668557e-10 1.771009335e-10 3.127411773e-10 4.576745949e-10 4.234760958e-10 4.991092293e-10 5.195565377e-10 3.18162484e-10 7.34571729e-10 7.191486782e-10 5.855226532e-10 6.34208104e-11 4.978846946e-10 4.157940791e-10 2.656673544e-10 1.707447987e-10 8.040636607e-10 2.37006012e-10 2.975494924e-10 5.463863425e-10 3.961674827e-10 3.141747392e-10 4.6406663e-10 7.038349831e-10 2.435045552e-10 6.7977581e-10 2.741251956e-10 5.961236985e-10 4.573814086e-10 2.462060922e-10 3.185322185e-10 8.080663176e-10 1.794865064e-10 2.350617897e-10 5.853235134e-10 9.52457129e-10 3.694017794e-10 4.606971087e-10 5.906976718e-10 8.325275e-11 1.791651059e-10 2.62090959e-10 1.99387415e-10 3.549936116e-10 2.809485569e-10 5.056817913e-10 7.304244728e-10 1.609152682e-10 5.225622956e-10 5.291848026e-10 4.071458613e-10 8.858649048e-10 8.63432102e-10 3.300164231e-10 3.826184686e-10 4.677205659e-10 2.828120092e-10 2.147742757e-10 5.174342484e-10 3.365623901e-10 3.824845564e-10 3.390700444e-10 6.582599233e-10 3.839534168e-10 8.673767173e-11 5.7140856e-10 2.329318898e-10 5.139149573e-10 2.100344611e-10 1.977215591e-10 5.403062369e-10 3.230071004e-10 6.30822505e-10 2.57116577e-10 2.402744952e-10 3.473439581e-10 1.543578306e-10 4.519600678e-10 2.459265426e-10 3.702343795e-10 3.132050729e-10 6.020717435e-10 +2.286903306e-10 3.501632451e-10 6.156363707e-10 6.985772602e-10 4.260170848e-10 2.493216757e-10 5.329574253e-10 2.756986629e-10 1.317349805e-10 1.783635359e-10 6.264495192e-10 8.777661128e-10 7.406334144e-11 4.962458792e-10 8.120363885e-10 1.948508728e-10 7.608822921e-10 5.951087584e-10 5.416950525e-10 1.095159802e-10 1.94938291e-10 2.868460162e-10 4.244871941e-10 2.205449599e-10 3.005386886e-10 5.699315247e-10 2.219721281e-10 1.355796488e-10 5.800247306e-10 3.943461967e-10 2.183281814e-10 2.869435523e-10 3.482434237e-10 4.323494025e-10 1.259098837e-10 4.796862011e-10 4.770605318e-10 3.201770857e-10 1.558648641e-10 2.523040498e-10 1.567266735e-10 7.414150586e-10 3.145532515e-10 1.661292125e-10 2.963649475e-10 2.132220006e-10 4.184969687e-10 5.526405774e-10 3.342820988e-10 2.121552822e-10 4.89095249e-10 5.532354004e-10 5.658555022e-10 5.854208809e-10 2.72718533e-10 5.341600235e-10 2.74334789e-10 4.687254137e-10 4.131152711e-10 4.919422254e-10 6.304596763e-10 4.581536975e-10 6.116199294e-10 1.537734689e-10 6.825597567e-10 6.352139984e-10 8.612595754e-10 6.177310026e-10 4.813663007e-10 5.301874727e-10 6.233812117e-10 6.201655024e-10 5.254172368e-10 1.237015455e-10 4.678244611e-10 2.264900365e-10 5.193213881e-10 4.128359937e-10 2.438768694e-10 1.772181603e-10 5.064471298e-10 1.840592475e-10 1.247498469e-10 6.742424759e-10 3.680874843e-10 6.553147869e-10 8.545997745e-10 9.900057175e-10 5.27608701e-10 3.545651709e-10 7.608041691e-10 8.121468778e-10 7.992043776e-10 7.877556702e-10 4.377563718e-10 5.982514501e-10 3.532786917e-10 6.662916418e-10 1.113171888e-09 8.260856478e-10 6.907106148e-10 9.392997998e-10 1.106168339e-09 8.691501399e-10 7.487800945e-10 7.065510464e-10 5.800874266e-10 7.830630757e-10 5.539133945e-10 6.226242031e-10 6.973778557e-10 7.09298173e-10 5.824440992e-10 2.068766387e-10 5.590563447e-10 6.861739679e-10 2.713271084e-10 2.81690745e-10 8.507774963e-10 6.700626768e-10 5.785534561e-10 6.016811927e-10 5.518898135e-10 6.789639178e-10 4.326034836e-10 3.745811665e-10 2.045946382e-10 2.906743296e-10 3.116222422e-10 2.01521627e-10 1.297886057e-10 7.275872924e-10 2.297231798e-10 5.068692474e-11 1.10592241e-10 2.747770526e-10 8.00034563e-11 2.823005049e-10 2.491004122e-10 2.867293699e-10 2.393479051e-10 1.219825037e-10 4.905570103e-10 2.653368439e-10 4.048350415e-11 4.55369139e-10 2.848008941e-10 1.354166826e-10 2.315565227e-10 1.511757569e-10 8.070188181e-11 1.58355969e-10 1.655406065e-10 1.557516272e-11 1.81659241e-10 3.527010207e-10 1.001014186e-10 2.190212279e-10 5.325691662e-11 2.355770799e-10 1.600077467e-10 8.43703541e-11 7.666022858e-11 2.280565353e-10 2.466078433e-10 1.942536241e-10 3.136730222e-10 3.816900912e-10 3.098832574e-10 3.835856795e-10 3.170290175e-10 3.210767046e-10 2.936225978e-10 3.04085428e-10 1.805444916e-10 5.710211753e-10 3.156485317e-10 4.073508281e-10 6.106390068e-10 6.956189204e-10 8.843148045e-10 6.817681196e-10 3.496359355e-10 3.845525081e-10 5.14733239e-10 6.207303679e-10 6.309576778e-10 9.883242164e-10 4.179102046e-10 7.353031308e-10 5.932391416e-10 1.162752147e-09 5.99651796e-10 4.212914973e-10 9.263242249e-10 4.062230564e-10 8.911771237e-10 1.377780972e-09 7.675630288e-10 3.222506269e-10 4.667163666e-10 5.497338918e-10 1.151207159e-09 5.777203109e-10 5.299658412e-10 3.270021012e-10 8.892992006e-10 6.311017313e-10 1.213934745e-09 6.968501706e-10 1.13146541e-09 2.206175254e-10 5.247841225e-10 9.613154893e-10 3.9233389e-10 5.660686945e-10 4.553721032e-10 1.678108507e-10 3.356296162e-10 6.299802252e-10 3.720704391e-10 4.359238074e-10 3.579678958e-10 8.901656042e-10 4.567103987e-10 2.948317783e-10 5.212654907e-10 1.890228363e-10 2.274012505e-10 7.669299861e-10 2.989842437e-10 4.485445502e-10 4.183612039e-10 3.160266815e-10 1.953808651e-10 2.717768569e-10 6.276722756e-10 6.407438582e-10 7.195021132e-10 4.220020272e-10 8.118792924e-10 2.828808769e-10 3.466809709e-10 5.100344867e-10 4.646306139e-10 4.813999715e-10 4.916977545e-10 4.459633356e-10 4.27862867e-10 4.781627843e-10 3.21751947e-10 4.393446837e-10 4.790220426e-10 2.55214017e-10 7.261689585e-10 4.219163688e-10 1.748937969e-10 5.059646129e-10 1.30683117e-10 4.927426594e-10 4.221704703e-10 2.643444492e-10 2.988619921e-10 6.86177125e-10 5.002633189e-11 4.069193268e-10 5.185470191e-10 2.510845204e-10 3.918013968e-10 1.222482404e-10 3.615569137e-10 4.096643172e-10 5.401835232e-10 6.779368276e-10 1.937867212e-10 2.577731541e-10 4.937618969e-10 1.905671188e-10 3.553706491e-10 4.803379204e-10 4.114154449e-10 6.497000175e-10 6.503087746e-10 3.976441543e-10 2.385129658e-10 2.778960492e-10 2.585610344e-10 5.328913894e-10 4.043065395e-10 2.759250463e-10 5.798545609e-10 8.220284042e-10 4.569807587e-10 3.181939753e-10 3.490205609e-10 2.230429647e-10 4.843411757e-10 2.234371007e-10 1.415563655e-10 7.854432918e-10 +5.293433433e-10 9.084587674e-10 5.143454626e-10 2.762368969e-10 3.311786167e-10 4.563358548e-10 6.153001687e-10 8.600541761e-10 2.154326564e-10 5.26306324e-10 1.877616325e-10 5.574318453e-10 1.883492351e-10 8.599873705e-10 3.282641071e-10 2.669123125e-10 7.241905816e-10 1.65958289e-10 5.355879871e-10 2.508426307e-10 4.834782307e-10 2.3568149e-10 2.508828608e-10 2.650491672e-10 1.133849315e-10 2.853079711e-10 1.69938489e-10 3.975393517e-10 8.932060961e-11 4.662594309e-10 4.422208023e-10 4.110167857e-10 4.820013467e-10 2.915712011e-10 3.070412828e-10 3.576040487e-10 3.431958817e-10 3.194301948e-10 2.447013566e-10 2.533773193e-10 7.509330693e-10 3.89475464e-10 5.554119696e-10 1.314932527e-10 3.524949883e-10 2.44199254e-10 3.179611874e-10 2.140012564e-10 4.098977477e-10 4.76756136e-10 5.853127351e-10 4.499898953e-10 3.244838896e-10 8.362493065e-10 4.125233569e-10 8.407878342e-11 3.034124251e-10 2.6699556e-10 3.383951365e-10 3.308031544e-10 3.247361499e-10 5.862283169e-10 5.331810096e-10 5.924835873e-10 9.760301707e-10 4.553567431e-10 3.80103026e-10 6.82768825e-10 3.918543175e-11 5.083320149e-10 1.889700724e-10 2.53556793e-10 3.212722686e-10 4.469436695e-10 2.864695996e-10 2.639775348e-10 2.123430957e-10 4.47194027e-10 3.975737591e-10 2.159097221e-10 4.3435523e-10 5.063457843e-10 1.030919877e-09 2.966364505e-10 7.969149027e-10 5.498401368e-10 6.651680143e-10 5.246428247e-10 1.405854832e-10 7.294801407e-10 8.802531673e-10 6.135341949e-10 5.848021251e-10 8.256288115e-10 4.966681231e-10 3.640363974e-10 2.984912076e-10 6.614074235e-10 1.20007962e-09 8.418261881e-10 5.91623441e-10 7.626961124e-10 5.870285412e-10 9.812366838e-10 4.063248166e-10 3.564622803e-10 3.211422258e-10 9.295445141e-10 7.621544937e-10 1.096669055e-09 4.044920626e-10 6.161198716e-10 6.429855989e-10 5.704622079e-10 4.856294904e-10 4.862740805e-10 6.20561576e-10 3.812857827e-10 5.10881128e-10 7.579974161e-10 3.078194031e-10 9.132025856e-10 5.855918285e-10 2.632439179e-10 5.596640962e-10 6.848538436e-10 5.711842474e-10 3.369006421e-10 3.044502274e-10 4.986386087e-10 6.073672966e-10 3.809023169e-10 3.195757021e-10 3.766990745e-10 1.850491614e-10 1.137026509e-10 3.079230956e-10 3.734520673e-10 1.902955954e-11 2.798489756e-10 6.514065616e-11 1.016179717e-10 5.570419582e-10 7.589851679e-11 9.873654101e-11 8.148636569e-11 1.667580808e-10 6.20678986e-11 1.420623652e-10 3.101545505e-10 4.125378302e-10 1.166331626e-10 2.121384147e-10 1.254822736e-10 1.582354158e-10 1.397080675e-10 4.492142993e-11 9.348160298e-11 1.473136349e-10 1.730514395e-10 4.69768966e-10 2.951229207e-10 1.19338671e-10 3.3365252e-10 3.883028749e-10 3.474007784e-10 2.659802373e-10 2.746818165e-10 1.786057129e-10 2.017374202e-10 4.396207424e-10 2.204987283e-10 6.115919689e-10 5.561021278e-10 1.994668155e-10 5.15513151e-10 3.009952505e-10 8.936661276e-10 5.485522753e-10 9.764958658e-10 5.00783922e-10 5.741915559e-10 3.246045556e-10 6.773611384e-10 7.193317962e-10 6.229738198e-10 6.076561147e-10 5.0022254e-10 5.656838356e-10 1.169787554e-09 6.049208291e-10 5.167673004e-10 5.419786919e-10 4.861985581e-10 1.923106239e-10 5.668867219e-10 7.866242982e-10 8.416720149e-10 2.771591139e-10 3.77663756e-10 6.999785584e-10 1.028316304e-09 7.795488882e-10 6.899625395e-10 3.071699314e-10 5.221035785e-10 4.20756771e-10 1.052361383e-09 1.258835826e-09 6.895400266e-10 7.385627138e-10 5.308102683e-10 8.879020003e-10 2.876289035e-10 3.639466139e-10 5.247824652e-10 1.859836066e-10 4.028857377e-10 4.657487739e-10 6.554181032e-10 3.329204755e-10 4.122396988e-10 3.288705298e-10 2.141950369e-10 3.222121787e-10 4.230212014e-10 4.608872721e-10 3.296559253e-10 1.77750693e-10 3.754579315e-10 4.114646935e-10 3.316200932e-10 7.201051833e-10 3.503369961e-10 3.200505522e-10 5.736172647e-10 6.106500374e-10 5.054342109e-10 6.11289427e-10 5.549730742e-10 2.690954157e-10 2.695887469e-10 6.027854079e-10 2.450896786e-10 2.095997068e-10 4.3527541e-10 4.461402223e-10 3.698538133e-10 5.917297376e-10 9.892941489e-10 1.576340693e-10 2.13548341e-10 4.688895577e-10 5.57399922e-10 2.697099988e-10 6.581084964e-10 1.710151869e-10 5.636028117e-10 3.410163038e-10 3.115046335e-10 6.982089545e-10 3.789857163e-10 6.968858458e-10 6.508657435e-10 3.467588846e-10 4.698763214e-10 4.589881404e-10 2.548875837e-10 2.589125907e-10 1.215614307e-10 6.003089839e-10 5.031870972e-10 7.19874439e-10 1.47667915e-10 4.539386518e-10 4.019686659e-10 7.285891897e-10 3.980811456e-10 3.159232912e-10 4.544982559e-10 1.354465047e-10 4.306569253e-10 4.293164763e-10 4.385834848e-10 4.909838463e-10 2.214067828e-10 2.570687525e-10 8.485987201e-10 4.13079258e-10 2.703579617e-10 2.750450363e-10 1.813120859e-10 9.131817456e-10 7.486646123e-10 5.196220745e-10 6.431878075e-10 3.914927895e-10 1.624437535e-10 5.641231263e-10 4.643909873e-10 +2.998427764e-10 5.145529601e-10 7.208340808e-10 7.848959808e-10 4.637940431e-10 3.913727631e-10 3.252469681e-10 7.66147776e-10 5.591687047e-10 8.232578544e-10 3.456957539e-10 2.200569874e-10 4.735132844e-10 3.642949801e-10 6.958737328e-10 7.654150502e-10 3.500908933e-10 2.192635087e-10 5.768896896e-10 5.537974068e-10 4.644505655e-10 4.581590673e-10 2.292141289e-10 1.268319237e-10 2.40101091e-10 3.400559324e-10 1.816580416e-10 5.455973233e-10 2.557259425e-10 5.176161233e-10 3.167017453e-10 4.872691588e-10 1.942828534e-10 2.540408819e-10 7.073679775e-10 4.783415155e-10 4.80279761e-10 3.276219684e-10 2.87455921e-10 4.852247466e-10 1.861193368e-10 1.44270476e-10 4.633716284e-10 3.952692367e-10 2.591209123e-10 4.266697094e-10 2.660655881e-10 4.255518964e-10 5.307688165e-10 8.646894913e-11 2.044676423e-10 2.377305125e-10 4.158334708e-10 6.008912066e-10 3.129696024e-10 2.332553694e-10 3.517481128e-10 6.677352119e-10 2.788795452e-10 1.686181441e-10 3.33901863e-10 3.33275369e-10 5.275076867e-10 3.563106039e-10 3.516122846e-10 2.489620913e-10 1.661528338e-10 4.38033679e-10 1.06541247e-10 5.074787735e-10 4.52206807e-10 3.810721718e-10 5.523939411e-10 5.88741963e-10 5.498590634e-10 3.675299295e-10 2.268942538e-10 3.763856948e-10 6.499949546e-10 5.999983941e-10 3.512094574e-10 2.895072166e-10 8.413627473e-10 5.391812696e-10 5.599328157e-10 5.206736707e-10 2.870385457e-10 3.19190819e-10 5.546629753e-10 4.612604028e-10 1.036069256e-09 7.750709519e-10 5.696213999e-10 5.957353535e-10 8.119862195e-10 6.968369291e-10 4.321736854e-10 3.119230227e-10 7.922717334e-10 5.469209674e-10 2.408823197e-10 3.216349664e-10 7.747720986e-10 2.909757808e-10 5.227791637e-10 5.39401958e-10 3.92831416e-10 5.121909269e-10 2.980642809e-10 6.596021057e-10 4.399184358e-10 6.763429427e-10 5.709575055e-10 4.213891741e-10 4.889061755e-10 5.292413798e-10 2.753385981e-10 3.581778807e-10 6.593503375e-10 2.782442767e-10 4.748904274e-10 3.879599366e-10 3.3797043e-10 4.026064506e-10 5.215091824e-10 6.529435768e-10 6.714296437e-10 4.084051761e-10 1.717339233e-10 5.305354148e-10 1.835176263e-10 6.337416422e-10 3.796237501e-10 6.259595871e-10 3.714541968e-10 6.39679625e-10 4.975999566e-10 2.388173421e-10 2.265140403e-10 5.159357932e-11 2.020084264e-10 4.113808239e-10 4.024598537e-10 3.401126487e-10 1.97181478e-10 1.417368259e-10 2.009242491e-11 2.115398095e-10 2.495379298e-10 2.950164716e-10 8.662426036e-11 2.848451323e-10 3.53470676e-10 7.868162024e-11 1.138274822e-10 1.386127257e-10 2.831994773e-10 1.187566517e-10 1.856409614e-10 8.62267463e-11 3.650903247e-10 1.891191746e-10 2.960792961e-10 5.005634765e-11 1.856947122e-10 3.699285272e-10 5.375619199e-10 2.329284153e-10 7.147622876e-10 2.08033204e-10 4.230491008e-10 2.058488127e-10 5.870812189e-10 9.784939982e-10 2.418963953e-10 3.87858347e-10 6.090764776e-10 5.032124825e-10 3.563991858e-10 2.358166425e-10 5.01000645e-10 5.587552011e-10 2.906296825e-10 2.031896762e-10 4.446024644e-10 7.267948833e-10 4.594669361e-10 4.692874827e-10 3.360154296e-10 2.775699136e-10 5.522781442e-10 9.469552476e-10 1.065931152e-09 7.16460421e-10 7.385457701e-10 6.229967039e-10 4.47928124e-10 2.286541587e-10 4.625022421e-10 4.494335403e-10 7.160614931e-10 5.495795553e-10 6.404293605e-10 9.765464441e-10 8.126111014e-10 6.263516396e-10 8.792774094e-10 8.317010466e-10 1.040108297e-09 5.396259434e-10 2.97213225e-10 5.259036384e-10 4.034484947e-10 6.408106774e-10 7.058918874e-10 3.02761102e-10 6.074541587e-10 2.389867961e-10 8.366156142e-11 4.764849222e-10 1.155432132e-10 4.246532882e-10 3.10340854e-10 4.546632706e-10 5.248660245e-10 3.880157469e-10 3.032631354e-10 1.564654688e-10 8.234904214e-10 1.605385239e-10 6.706481669e-10 3.833397075e-10 5.111289344e-10 5.240926779e-10 7.027980343e-10 3.055505839e-10 6.073851532e-10 8.770383794e-10 3.853019401e-10 5.160353954e-10 3.467896024e-10 5.379966112e-10 3.561527625e-10 4.908880214e-10 8.060630322e-11 2.18638064e-10 4.853202998e-10 2.087544583e-10 1.385354454e-10 4.225909062e-10 2.046980827e-10 8.063651326e-10 1.11197747e-10 2.812970204e-10 2.565520789e-10 4.646483811e-10 4.256047689e-10 2.028590589e-10 1.270869202e-10 3.958753182e-10 4.020092895e-10 2.733063678e-10 2.089773897e-10 3.498730671e-10 5.572549237e-10 5.386304505e-10 1.914724419e-10 3.262174345e-10 5.308628717e-10 1.241551461e-10 6.632278045e-10 4.352084087e-10 3.205446032e-10 3.395490724e-10 4.651297767e-10 9.112324979e-10 5.396674108e-10 3.309404797e-10 2.254561064e-10 4.626978731e-10 3.080354869e-10 2.96119438e-10 5.94066629e-10 4.466304087e-10 3.59910097e-10 3.195061659e-10 2.611354881e-10 4.781244462e-10 3.629616271e-10 6.420286037e-10 3.836905033e-10 3.596171342e-10 3.742637237e-10 5.516439413e-10 3.661069284e-10 5.993974586e-10 2.823594977e-10 2.066255974e-10 2.340353214e-10 5.508408877e-10 +4.382563082e-10 4.372428265e-10 3.578691199e-10 6.58727225e-10 6.130381448e-10 8.62809037e-10 6.766970622e-10 3.136353664e-10 3.414962879e-10 2.679409306e-10 4.397497388e-10 2.876704104e-10 1.26416988e-10 6.137505519e-10 5.691298486e-10 4.896720663e-10 5.003424638e-10 5.472861188e-10 5.512747674e-10 2.516968876e-10 6.872984433e-10 1.188611657e-10 1.551356224e-10 2.329001541e-10 2.145045967e-10 4.367405517e-10 1.715216037e-10 1.8441075e-10 3.031800268e-10 6.063294425e-10 4.006948306e-10 5.152782515e-10 2.471599674e-10 1.525680019e-10 1.745873774e-10 1.27394375e-10 2.896517947e-10 1.860790013e-10 2.98471127e-10 6.169854412e-10 4.027334934e-10 4.109645691e-10 2.659165065e-10 2.772099139e-10 3.547508859e-10 5.120333911e-10 7.019098015e-10 5.744866821e-10 7.301369353e-10 2.825715469e-10 3.31280143e-10 5.062845524e-10 5.358694632e-10 3.213206351e-10 4.376578553e-10 1.675738851e-10 4.858666626e-10 5.074632266e-10 9.866381338e-10 4.004432395e-10 2.360305359e-10 5.139514327e-10 2.372132568e-10 3.797287737e-10 3.602926405e-10 2.371944533e-10 4.955614687e-10 3.890875337e-10 3.393639829e-10 4.562789088e-10 2.017400097e-10 3.914338559e-10 2.231207868e-10 5.075398903e-10 3.482394073e-10 4.994813393e-10 2.868068636e-10 1.545490994e-10 3.526164986e-10 2.344269244e-10 9.506460417e-11 3.247725407e-10 9.323674017e-10 1.203411951e-10 4.468284525e-10 4.211400105e-10 4.160936387e-10 6.459671574e-10 8.52275119e-10 9.61544631e-10 7.739916331e-10 6.991657015e-10 5.345047499e-10 8.8836378e-10 1.133033395e-09 5.43624532e-10 9.689432725e-10 1.12497065e-09 8.712641406e-10 2.254722594e-10 9.15380474e-10 4.657762528e-10 3.58923449e-10 7.384137623e-10 7.699931029e-10 5.351320643e-10 7.867246479e-10 1.211440843e-10 6.033788156e-10 3.406759301e-10 6.31989383e-10 3.771500794e-10 3.031374665e-10 8.182318838e-10 1.059176939e-09 2.730214051e-10 3.52031638e-10 7.561434443e-10 9.040370688e-10 6.666698095e-10 3.813914152e-10 4.053447058e-10 6.996181285e-10 3.199968598e-10 4.265148222e-10 4.85411281e-10 6.400876601e-10 4.981034877e-10 6.115029804e-10 6.112816904e-10 3.980758573e-10 6.60391264e-10 5.583221802e-10 1.81070242e-10 1.83055018e-10 1.059930343e-10 5.176733865e-10 5.397659805e-10 3.051637782e-10 2.714852446e-10 2.104287239e-10 4.350946475e-10 1.120727854e-10 4.364429614e-10 2.07924837e-10 2.572625428e-10 3.071624743e-10 4.144984185e-10 3.019688428e-10 2.799131305e-10 1.767726444e-10 1.416936969e-10 2.573345528e-10 2.064842777e-10 1.189733732e-10 1.050436727e-10 3.471379324e-10 1.880220139e-10 3.224664853e-10 4.158046953e-10 3.642391371e-10 4.862763501e-10 2.651227548e-10 2.447370551e-10 3.32755036e-10 1.996082317e-10 3.945198277e-10 6.168259083e-10 3.036234332e-10 2.349354895e-10 7.971455803e-10 5.766565914e-10 5.266718735e-10 4.257641755e-10 5.83289818e-10 5.592979369e-10 2.218419598e-10 1.258637632e-09 5.138359121e-10 3.469299248e-10 6.782659234e-10 7.312051326e-10 7.306223336e-10 4.744101529e-10 5.981067828e-10 8.190339666e-10 2.749637213e-10 4.801996027e-10 5.758266856e-10 4.224294072e-10 2.316215268e-10 2.653092737e-10 5.279264013e-10 9.709484207e-10 3.404405517e-10 4.596801331e-10 7.227934769e-10 7.573134951e-10 4.033650567e-10 5.430621989e-10 6.959170185e-10 7.537650671e-10 3.566854035e-10 5.594219673e-10 4.655167472e-10 7.536261952e-10 1.304481115e-09 6.552876974e-10 8.759180736e-10 4.165348105e-10 6.389154859e-10 5.408704574e-10 4.208272436e-10 6.142221551e-10 3.338207693e-10 6.251793069e-10 5.839996739e-10 2.927918866e-10 5.605919142e-10 1.817885835e-10 1.288379224e-10 2.875130841e-10 3.491224466e-10 3.004085662e-10 1.604264746e-10 2.160400039e-10 3.750373009e-10 2.719063626e-10 2.399314676e-10 4.311981979e-10 4.446807694e-10 7.104039154e-10 6.185475882e-10 3.448417667e-10 6.992060405e-10 5.993550532e-10 7.134056047e-10 2.178006158e-10 6.283215106e-10 6.421902002e-10 4.647532452e-10 7.69098287e-10 4.494965011e-10 2.84321979e-10 4.185237725e-10 2.214747604e-10 6.599889769e-10 1.830833787e-10 5.308363315e-10 9.119933613e-10 3.640611508e-10 7.384022553e-10 8.859278235e-10 2.407026413e-10 6.03310185e-10 4.499046554e-10 3.664823499e-10 1.472666929e-10 1.231485656e-10 1.938727691e-10 1.576386188e-10 1.572294854e-10 2.143773697e-10 2.573182453e-10 2.235007106e-10 1.76933118e-10 6.667552454e-10 1.911668517e-10 3.596022088e-10 6.561372273e-10 5.45972296e-10 3.871416182e-10 4.442504824e-10 5.183686536e-10 3.23953863e-10 3.505313385e-10 4.522539635e-10 2.871100232e-10 1.883828498e-10 1.900568072e-10 2.384558897e-10 5.766713769e-10 8.087125306e-10 4.879467109e-10 4.093188843e-10 1.728172947e-10 5.569242034e-10 1.678878853e-10 4.173227748e-10 1.455509018e-10 5.171400953e-10 2.6889753e-10 4.598349564e-10 5.093890148e-10 5.192000721e-10 2.096883682e-10 1.188999763e-10 3.325205865e-10 4.098962119e-10 3.293878256e-10 +2.597970565e-10 2.859316622e-10 2.961949592e-10 3.619954944e-10 2.069511286e-10 1.69795572e-10 1.924305117e-10 1.986460995e-10 3.474620845e-10 4.046495974e-10 2.902156757e-10 3.808638245e-10 3.143723417e-10 4.847602935e-10 5.080391273e-10 3.444714959e-10 4.381511744e-10 3.281871541e-10 2.584660348e-10 1.406743457e-10 4.72713415e-10 5.491379286e-10 3.738688805e-10 3.507432687e-10 2.101764819e-10 1.388060853e-10 1.511452963e-10 3.500038983e-10 1.924407149e-10 1.226931493e-10 4.33887909e-10 6.992479336e-10 5.815408085e-10 3.885287767e-10 2.55860818e-10 2.620550695e-10 2.943299185e-10 6.673631153e-10 6.096444116e-10 2.451583574e-10 5.690431131e-11 2.760006293e-10 5.262015107e-10 3.333747893e-10 1.730022073e-10 7.669002499e-10 3.399011712e-10 6.904130948e-10 4.371335011e-10 3.490958739e-10 5.047659501e-10 3.084588198e-10 6.547159262e-10 3.64824708e-10 7.764723766e-10 5.998563388e-10 4.101329712e-10 1.538533857e-10 3.040981064e-10 2.548967373e-10 2.303978435e-10 9.285102095e-10 2.372461316e-10 2.083070118e-10 4.714485798e-10 5.16459192e-10 2.385845439e-10 4.84163883e-10 4.396196968e-10 1.155701158e-10 2.278561949e-10 2.515624735e-10 3.358992562e-10 3.359193074e-10 6.411211169e-10 4.396467152e-10 6.089379508e-11 4.129186681e-10 2.255091512e-10 5.467021504e-10 1.217592443e-10 2.409690965e-10 3.930771249e-10 2.098054062e-10 6.920358295e-10 4.588904939e-10 4.017766662e-10 8.816582842e-10 5.003418779e-10 8.555270266e-10 1.327364396e-10 9.585393515e-10 1.022939935e-09 9.650328875e-10 6.898868432e-10 7.570967216e-10 6.872142222e-10 1.035426571e-09 6.969468945e-10 6.342948329e-10 1.027449822e-09 6.72991293e-10 3.140630231e-10 4.458823672e-10 1.094696566e-09 4.57801783e-10 5.134167649e-10 6.949281631e-10 7.655908446e-10 7.467000792e-10 7.10529238e-10 3.51673865e-10 3.064457789e-10 4.875217762e-10 3.424335282e-10 8.016047399e-10 5.252939153e-10 4.420551927e-10 3.614528235e-10 4.646191548e-10 4.835929396e-10 3.75984152e-10 4.12512782e-10 3.973478706e-10 6.277652325e-10 6.06879774e-10 4.698889508e-10 9.015581152e-10 2.597218344e-10 4.022521136e-10 7.899328171e-10 4.856006437e-10 5.683715117e-10 5.124206558e-10 4.398277909e-10 4.122414539e-10 4.97549702e-10 2.610958169e-10 3.702655604e-10 5.320151075e-10 4.463726501e-10 6.737901149e-10 2.15642537e-10 1.461925079e-10 3.378719332e-10 3.750633314e-10 1.337974659e-10 3.9660413e-10 4.045638881e-10 1.678582562e-10 1.826416123e-10 2.974811249e-10 5.366503591e-10 1.676079108e-10 3.000880336e-10 2.792265861e-10 3.574099788e-10 4.364666247e-10 2.229278379e-10 1.508061757e-10 3.710024374e-10 1.952864121e-10 3.86384482e-10 4.480422093e-10 2.360561403e-10 1.200667102e-10 5.128543505e-10 1.418622658e-10 4.854276638e-10 4.90874734e-10 6.056754826e-10 3.397091656e-10 3.635030934e-10 3.640684349e-10 5.85407945e-10 3.409112914e-10 2.732166294e-10 7.664933849e-10 6.597519566e-10 6.006997054e-10 5.398406032e-10 4.399580424e-10 5.540414687e-10 4.094498017e-10 4.948084177e-10 8.472970468e-10 8.873200464e-10 4.466110207e-10 7.316461832e-10 3.108326254e-10 6.66654236e-10 7.865852884e-10 5.059107764e-10 4.761094071e-10 3.841992291e-10 8.740527166e-10 5.816371902e-10 2.61065418e-10 9.042536193e-10 9.791203898e-10 6.539452373e-10 3.481097905e-10 6.055175547e-10 5.246706181e-10 1.271424698e-09 6.282803149e-10 7.766205072e-10 7.193212432e-10 1.071926765e-09 5.993731909e-10 9.54534358e-10 3.672032983e-10 3.953247912e-10 6.343354586e-10 6.500979474e-10 3.929019474e-10 4.600569465e-10 5.22588943e-10 4.568422796e-10 2.767954323e-10 7.047033306e-10 2.127827076e-10 3.9403853e-10 3.619839382e-10 3.94688929e-10 4.447867294e-10 3.32748147e-10 2.283308964e-11 3.206605944e-10 2.265102488e-10 1.824300766e-10 2.200380028e-10 4.463004786e-10 3.977897445e-10 7.383633506e-10 5.302320051e-10 4.552106138e-10 3.041550961e-10 3.244676235e-10 4.087922259e-10 1.097826791e-10 2.00575743e-10 3.440973078e-10 3.985990149e-10 2.717358718e-10 4.000914207e-10 2.980885806e-10 3.58066229e-10 6.655931639e-10 1.208080761e-10 6.361725965e-10 2.519394904e-10 4.83421901e-10 5.688481864e-10 2.13049828e-10 2.408653983e-10 3.600183283e-10 5.424078605e-10 3.965400112e-10 1.889004997e-10 3.171213533e-10 4.955972922e-10 3.602475632e-10 2.450222464e-10 4.00592771e-10 2.607241424e-10 4.062088748e-10 4.219106181e-10 7.51645908e-10 3.007624942e-10 3.461779193e-10 3.547927021e-10 2.324419487e-10 8.198878122e-10 1.362579643e-10 4.214165515e-10 3.380064746e-10 2.261319376e-10 4.005977927e-10 9.812465594e-11 2.638264916e-10 1.733483415e-10 4.316981457e-10 5.177276357e-10 5.766195249e-10 2.528902246e-10 2.291000885e-10 5.96746737e-10 1.923817898e-10 7.719998211e-10 3.947825448e-10 3.708750156e-10 4.819918323e-10 3.757466597e-10 1.918233926e-10 2.278190602e-10 2.222089117e-10 6.009389549e-10 3.620065461e-10 3.779774372e-10 +2.611394225e-10 2.172664102e-10 3.784316357e-10 3.551829061e-10 4.958592645e-10 9.173092521e-10 2.170398664e-10 2.715303357e-10 4.740191681e-10 1.96007322e-10 6.862800923e-10 3.288257667e-10 2.813709365e-10 3.350995472e-10 5.992807519e-10 4.466198311e-10 5.394200817e-10 2.464010365e-10 1.014966771e-10 1.874677563e-10 2.349856668e-10 3.08704985e-10 3.506268184e-10 6.402110249e-10 3.09023043e-10 7.896011796e-11 3.241759615e-10 2.936128634e-10 3.142681962e-10 3.6961529e-10 2.470737362e-10 2.222414755e-10 3.882326081e-10 1.935636876e-10 5.690364419e-10 2.140113538e-10 3.747021478e-10 1.692719875e-10 4.050381393e-10 3.071655335e-10 6.537353056e-10 2.009457026e-10 4.637128899e-10 2.406853815e-10 3.361822998e-10 2.53507465e-10 6.961795906e-10 6.078026828e-10 2.67220067e-10 2.113672449e-10 3.249366065e-10 1.84605834e-10 3.799711462e-10 1.935616906e-10 2.350140029e-10 2.928355681e-10 6.850682511e-10 1.983991211e-10 5.303859835e-10 3.129144831e-10 2.191300832e-10 6.662981711e-10 5.327999877e-10 2.619803248e-10 1.943898454e-10 2.443960459e-10 2.395420972e-10 4.054027465e-10 2.356950007e-10 2.875855204e-10 2.950718505e-10 5.118440792e-10 5.241252368e-10 6.273070183e-10 1.449698844e-10 4.314040467e-10 3.22555586e-10 6.58394308e-11 3.508823e-10 3.0314552e-10 3.039995095e-10 1.163551664e-10 3.872466478e-10 6.632401374e-10 1.529776581e-10 6.539625462e-10 7.351536317e-10 3.930229376e-10 5.040496313e-10 4.071401792e-10 1.264074313e-09 9.295111109e-10 5.039853729e-10 1.14954605e-09 5.057095873e-10 5.275084751e-10 7.103195698e-10 3.685199831e-10 6.251214603e-10 8.87450616e-10 5.229629839e-10 9.355706067e-10 1.192982561e-10 2.338943609e-10 4.216921383e-10 4.665159863e-10 5.972985405e-10 5.380940099e-10 6.468168678e-10 6.141297226e-10 4.5277702e-10 7.464363682e-10 7.888544492e-10 7.082576365e-10 5.665705309e-10 3.516417551e-10 4.548934756e-10 9.832875465e-10 3.319300085e-10 5.568229048e-10 6.592048317e-10 7.970444635e-10 4.175351307e-10 1.962263687e-11 7.229927983e-10 4.359696681e-10 4.640358385e-10 3.118258206e-10 1.72548834e-10 2.30966345e-10 3.694586338e-10 5.270933548e-10 1.093534237e-09 4.201458371e-10 3.186822968e-10 3.287807934e-10 3.549173053e-10 2.954900756e-10 4.137858513e-10 4.385369694e-10 3.414115343e-10 1.916609271e-10 2.063021631e-10 2.569390517e-10 1.603849611e-10 3.923524774e-10 3.916353706e-10 5.573196074e-10 3.686281551e-10 1.529209428e-10 6.040005041e-10 5.793454163e-10 3.50998935e-10 8.750619311e-10 3.452650715e-10 4.738444317e-10 3.269548943e-10 6.694013262e-10 3.333101266e-10 3.086001195e-10 3.112960257e-10 6.140272302e-10 6.75863945e-10 2.694138969e-10 4.980804235e-10 2.639336653e-10 5.714458196e-10 4.886656291e-10 5.572443759e-10 4.395578128e-10 3.251576675e-10 5.52773511e-10 2.329846513e-10 9.214067896e-10 4.24738857e-10 1.162545266e-09 3.957802413e-10 7.424978979e-10 9.067759287e-11 4.220490634e-10 7.787440958e-10 2.211749128e-10 5.669860001e-10 3.255459737e-10 6.780788482e-10 6.560957005e-10 8.188642279e-10 2.022076407e-10 5.635701363e-10 5.000718235e-10 4.895766274e-10 2.424251648e-10 2.704884805e-10 5.806581796e-10 2.634990542e-10 5.007660876e-10 4.29932509e-10 3.652474475e-10 1.022900916e-09 3.731561421e-10 4.455924651e-10 6.965443082e-10 8.879632232e-10 1.231429564e-09 5.023590211e-10 7.747607606e-10 4.864840947e-10 6.018590577e-10 5.091489305e-10 7.427849123e-10 6.153263154e-10 9.974725125e-10 5.120571046e-10 9.186699593e-10 4.295173118e-10 2.307768037e-10 4.601561051e-10 2.801682899e-10 3.816600264e-10 2.633111535e-10 2.702795713e-10 1.995477564e-10 5.813687009e-10 5.197542244e-10 3.316763823e-10 3.514067882e-10 1.498871749e-10 3.312898442e-10 6.249392872e-10 6.548663258e-10 2.528483758e-10 6.121969489e-10 2.333952845e-10 1.350873794e-10 5.020287565e-10 2.787099032e-10 3.868958917e-10 7.93648491e-10 2.943717247e-10 2.693998345e-10 4.986590999e-10 3.191263726e-10 6.020940843e-10 3.99934441e-10 4.407649647e-10 7.036205461e-10 4.539583464e-10 3.890489099e-10 4.068748753e-10 4.07698169e-10 5.30895132e-10 5.534488865e-10 4.96776003e-10 7.228385367e-10 1.790701443e-10 5.273021616e-10 5.536533788e-10 2.588408277e-10 4.599312046e-10 8.13735006e-10 4.784487808e-10 5.950086982e-10 6.244492866e-10 1.389996259e-10 3.664593115e-10 2.057000939e-10 6.57840646e-10 3.628251128e-10 3.793247986e-10 3.464618208e-10 1.215858e-10 1.39925199e-10 4.281950432e-10 3.179055116e-10 3.306276699e-10 2.401228811e-10 4.201315501e-10 3.003036509e-10 2.525090133e-10 6.851340038e-10 2.258277782e-10 1.837805702e-10 2.407462118e-10 3.594130204e-10 2.8975899e-10 3.190987433e-10 3.170140719e-10 2.596578348e-10 2.189346626e-10 2.069218791e-10 8.638935793e-11 2.395771921e-10 2.882259861e-10 3.902044583e-10 1.697475919e-10 2.9350339e-10 1.4619947e-10 3.310230581e-10 3.343131526e-10 1.88472797e-10 +3.602651956e-10 2.090904021e-10 4.846381204e-10 3.187129103e-10 4.445556964e-10 2.025874409e-10 5.157255097e-10 2.765693575e-10 3.830323457e-10 2.536658118e-10 5.655322847e-10 2.999494536e-10 1.555133631e-10 5.913025255e-10 4.027280768e-10 2.232334339e-10 4.596270501e-10 1.831150086e-10 3.078945973e-10 1.393291827e-10 3.974776593e-10 4.487447536e-10 2.339422926e-10 2.400649802e-10 2.312259879e-10 4.027408771e-10 9.466219468e-11 8.556351832e-11 3.330929874e-10 1.243373949e-10 2.195616908e-10 2.319198974e-10 1.990927592e-10 2.427078608e-10 1.911556095e-10 4.976642391e-10 5.171069076e-10 6.154247313e-10 4.972151985e-10 2.173663671e-10 2.707002542e-10 1.644367749e-10 8.080567053e-10 3.734358044e-10 1.349107752e-10 5.361182412e-10 5.659555639e-10 3.974893092e-10 6.079423461e-10 5.695620992e-10 2.744512258e-10 2.96028447e-10 8.496655167e-10 3.268223788e-10 8.335509294e-10 6.200470695e-10 4.812472355e-10 3.192539894e-10 1.234037677e-10 2.220111809e-10 1.271212215e-10 9.425189814e-11 4.772646069e-10 5.474062187e-10 3.063432682e-10 6.943153489e-11 2.1482704e-10 6.526695391e-10 4.298285053e-10 2.161943104e-10 2.190717462e-10 5.006882157e-10 3.564840928e-10 2.899859904e-10 3.372103758e-10 3.329508604e-10 4.566335231e-10 7.737866426e-10 4.498459391e-10 2.306921096e-10 9.472204867e-11 3.268046986e-11 1.410898222e-10 3.985538024e-10 7.640280508e-10 5.570994218e-10 3.978506081e-10 4.583708148e-10 3.391413435e-10 6.356926478e-10 3.763737246e-10 5.656909472e-10 5.80919224e-10 7.955846181e-10 1.086452899e-09 6.775188697e-10 6.704663517e-10 1.057636529e-09 5.57498452e-10 7.634897435e-10 5.593052423e-10 3.697417698e-10 3.865416976e-10 2.941690435e-10 7.504461994e-10 4.973296029e-10 4.887618493e-10 4.606775046e-10 6.489239168e-11 5.088244214e-10 3.436144658e-10 5.245168092e-10 4.418280916e-10 3.250029175e-10 5.110573905e-10 2.071016584e-10 9.941390826e-10 2.758296425e-10 8.333276985e-10 3.501039507e-10 5.376162834e-10 7.016587652e-10 5.603127107e-10 7.538431644e-10 4.007737727e-10 1.098330955e-10 1.009527871e-09 5.217527453e-10 7.64162857e-10 4.316348062e-10 5.356199275e-10 3.62375039e-10 4.280163857e-10 8.491251783e-10 5.214956369e-10 5.717967033e-10 2.865809531e-10 2.73030782e-10 2.238522141e-10 4.363307046e-10 5.750760905e-10 3.470302764e-10 5.375339646e-10 6.698181537e-10 8.879838754e-10 3.810753062e-10 1.287068479e-10 3.482771571e-10 3.335231585e-10 1.082627444e-09 5.466158421e-10 1.914260337e-10 5.731028341e-10 1.164632413e-10 4.038281109e-10 1.394096271e-10 1.734794702e-10 1.999871781e-10 3.639536984e-10 5.433013669e-10 2.210433524e-10 1.461172256e-10 5.386544823e-10 6.488207683e-10 2.640749123e-10 5.732855879e-10 4.48599847e-10 5.423715003e-10 6.594714194e-10 5.896839589e-10 4.313222462e-10 3.296220454e-10 6.310398705e-10 1.587134021e-10 4.707503287e-10 5.535562976e-10 4.713148506e-10 1.505268917e-10 6.418032309e-10 5.805170435e-10 4.355207077e-10 9.59013334e-10 7.234665279e-10 5.371708489e-10 4.467311069e-10 5.473847374e-10 5.37652367e-10 5.609228001e-10 7.651859445e-10 5.564454381e-10 2.426794435e-10 6.114055546e-10 1.739063622e-10 5.506753258e-10 6.710592469e-10 4.811186128e-10 6.118621947e-10 4.243179326e-10 4.739098496e-10 3.505667283e-10 5.359975696e-10 1.048886931e-09 7.209544214e-10 7.443257172e-10 1.061922271e-09 4.733727042e-10 1.214413209e-09 8.949684638e-10 6.739273427e-10 2.535290226e-10 3.643572811e-10 1.865667173e-10 7.710118506e-10 2.827076656e-10 2.481345797e-10 4.483789123e-10 2.302762837e-10 6.1782485e-11 1.915220788e-10 1.588024978e-10 4.602967099e-10 3.657062974e-10 3.469593175e-10 3.922902261e-10 2.340684948e-10 4.461017012e-10 3.897796832e-10 3.661192102e-10 4.388054144e-10 2.822887286e-10 4.896298993e-10 2.393315016e-10 4.206688953e-10 2.839950034e-10 3.011912595e-10 3.3859733e-10 1.425266569e-10 6.826960262e-10 3.371784144e-10 2.587954641e-10 3.197900209e-10 2.013333581e-10 4.702226497e-10 4.114401913e-10 3.532822268e-10 5.5268139e-10 1.984691864e-10 3.764407717e-10 5.464062339e-10 2.380397485e-10 2.038114558e-10 4.018054041e-10 6.991017268e-10 4.681197831e-10 3.554878041e-10 4.286541804e-10 5.243337625e-10 2.362257919e-10 2.129846423e-10 1.349097436e-10 1.564024936e-10 1.128169884e-10 1.346579541e-10 1.991308314e-10 2.938730552e-10 1.764596955e-10 1.992773098e-10 1.105809204e-10 1.520233395e-10 4.800260237e-10 4.155664909e-10 3.141633569e-10 2.334317076e-10 4.93843287e-10 2.679931525e-10 4.906770212e-11 3.726610158e-10 2.164917749e-10 7.363579887e-10 1.244515365e-10 6.524367436e-10 2.712153083e-10 3.191999188e-10 4.120586361e-10 2.125343264e-10 3.245476169e-10 5.040951463e-10 7.65019463e-10 2.998059427e-10 1.399978977e-10 2.222009214e-10 2.854135405e-10 7.082985287e-10 3.16167123e-10 4.076359607e-10 2.201188637e-10 2.60713654e-10 4.553657821e-10 3.912832373e-10 3.407608731e-10 +3.664418818e-10 3.224628534e-10 2.736841847e-10 3.456370623e-10 5.006788905e-10 1.348224338e-10 2.15364581e-10 1.574642089e-10 1.665972731e-10 1.832372012e-10 3.414474632e-10 7.161284581e-10 3.846898962e-10 2.881941737e-10 1.366416975e-10 2.729214304e-10 2.560755075e-10 9.667383253e-10 7.432939966e-10 1.833634595e-10 2.524280777e-10 3.853058232e-10 4.482167743e-10 8.172440348e-10 9.44931119e-11 2.926573879e-10 1.752825184e-10 3.593584948e-10 2.69410885e-10 6.007917321e-10 7.511120026e-11 1.935322781e-10 4.564792894e-10 1.92949035e-10 2.583191309e-10 3.260087719e-10 1.228276268e-10 4.146693416e-10 4.004721049e-10 4.728141966e-10 2.947366076e-10 5.522182121e-10 4.75837427e-10 7.196118476e-10 3.491233407e-10 2.619809741e-10 2.780237735e-10 2.960103878e-10 5.213463787e-10 2.785644455e-10 6.069540903e-10 1.478703289e-10 3.107554043e-10 5.758417955e-10 2.566090945e-10 5.665412327e-10 1.762664415e-10 4.555011884e-10 4.306601412e-10 3.259577894e-10 3.354853228e-10 2.808183704e-10 6.397153391e-10 3.967572785e-10 3.392849931e-10 5.49850782e-10 2.10021789e-10 1.59176342e-10 4.623807603e-10 3.637938705e-11 2.166805609e-10 2.528964444e-10 1.825292186e-10 4.40652116e-10 5.066792559e-10 3.681890571e-10 3.21346058e-10 3.274191234e-10 4.409903424e-10 2.583314808e-10 2.315966107e-10 4.953932935e-10 2.854862484e-10 5.493483652e-10 2.424056099e-10 6.879938096e-10 8.391834773e-10 1.777485339e-10 3.516168553e-10 4.890298344e-10 4.124444612e-10 4.46991331e-10 5.85686267e-10 4.862259434e-10 4.60513134e-10 3.009327743e-10 8.805464045e-10 7.241377241e-10 5.476624587e-10 4.253815194e-10 3.066351354e-10 7.172774948e-10 4.227748591e-10 6.623797945e-10 6.069303596e-10 6.954732065e-10 4.173588849e-10 2.213408843e-10 7.402682963e-10 4.876738563e-10 9.543371977e-10 4.362930166e-10 6.656204423e-10 4.006449515e-10 3.890349678e-10 3.715989715e-10 6.066725007e-10 5.031743716e-10 4.68290304e-10 7.439589007e-10 4.517230665e-10 3.620897406e-10 4.389845466e-10 1.134621344e-09 7.241304764e-10 4.32106891e-10 2.717721574e-10 2.756723527e-10 3.67535661e-10 3.583597155e-10 4.130706747e-10 4.253411429e-10 4.315623177e-10 5.188755608e-10 8.030609426e-10 4.86423602e-10 2.932317962e-10 3.212708932e-10 5.141851155e-10 5.940337011e-10 4.638378558e-10 1.780461335e-10 3.854483995e-10 3.327977048e-10 6.090948472e-10 6.832173212e-10 7.930852916e-10 3.169773529e-10 2.942372931e-10 4.499730567e-10 8.854998592e-10 2.432977351e-10 4.844240491e-10 2.429511078e-10 4.620671696e-10 2.910561296e-10 2.431162786e-10 4.373660419e-10 2.228114182e-10 5.81474486e-10 4.024071743e-10 4.736737455e-10 5.248962289e-10 6.538369836e-10 5.507296989e-10 4.809718239e-10 4.58080568e-10 6.810616515e-10 3.154011696e-10 6.642437697e-10 3.856883316e-10 6.224402607e-10 9.891209745e-10 3.711908593e-10 2.396708938e-10 3.302532686e-10 2.752326802e-10 5.394151533e-10 3.877335121e-10 5.357289322e-10 7.195072513e-10 3.314803225e-10 1.740611766e-10 3.985015413e-10 5.20464798e-10 6.461751238e-10 3.086519489e-10 4.259436687e-10 2.317192113e-10 7.263460477e-10 6.596768304e-10 1.754527122e-10 3.706949181e-10 7.533901088e-10 3.415379629e-10 4.362190478e-10 4.809757629e-10 5.553957389e-10 3.781420969e-10 5.462975826e-10 6.504259396e-10 4.638472234e-10 7.366093902e-10 8.271545901e-10 7.586696194e-10 5.84215537e-10 7.91240604e-10 3.1380031e-10 1.394089458e-10 3.900953939e-10 5.033237414e-10 3.519019539e-10 3.142286525e-10 6.399256384e-10 6.19509181e-10 6.766488798e-10 5.642168837e-10 3.695232487e-10 2.097090862e-10 3.926043502e-10 1.408327876e-10 2.334755927e-10 4.836093469e-10 5.389910779e-10 2.871219065e-10 3.337061854e-10 2.691982484e-10 1.47734233e-10 4.56541156e-10 5.296734217e-10 4.888745144e-10 2.806828357e-10 3.954908159e-10 1.69000637e-10 1.561174583e-10 3.979793877e-10 3.811096591e-10 2.701806759e-10 5.155974876e-10 8.560551778e-10 2.314127297e-10 4.971418058e-10 7.358495799e-10 6.163034748e-10 2.363643369e-10 2.8100514e-10 2.786417161e-10 4.90871498e-10 8.967255059e-10 2.740251898e-10 2.241850518e-10 6.029732265e-10 3.086900017e-10 2.420174348e-11 5.204022492e-10 3.605455293e-10 1.124308668e-09 3.126805952e-10 4.126292487e-10 6.661109041e-10 8.320933965e-11 2.494947041e-10 2.393137235e-10 4.843335874e-10 4.158174344e-10 3.434754795e-10 4.185727188e-10 3.064654003e-10 3.133075092e-10 1.89287578e-10 3.531009366e-10 8.88636382e-11 1.844021947e-10 2.14760011e-10 2.466790172e-10 3.368864722e-10 1.163897482e-10 2.788866832e-10 1.74113372e-10 1.867533544e-10 3.110382907e-10 1.926992043e-10 4.073295334e-10 1.571776638e-10 4.70177679e-10 2.096008242e-10 2.254724223e-10 1.54119552e-10 2.161281381e-10 2.535900565e-10 3.122826221e-10 1.298144918e-10 1.19231359e-10 6.100176363e-10 1.724958131e-10 3.944403852e-10 1.139736598e-10 1.958486233e-10 6.684144926e-10 5.127623693e-10 +1.273110199e-10 6.271549445e-10 4.478558703e-10 1.448741781e-10 3.869616667e-10 2.972013912e-10 1.130730726e-10 1.688419635e-10 1.67475294e-10 9.19699127e-10 6.496973134e-10 8.497767183e-10 5.045405899e-10 2.318746493e-10 2.925315388e-10 3.81367169e-10 2.989666599e-10 2.904614222e-10 2.853834101e-10 3.143438628e-10 5.046655777e-10 3.665649844e-10 3.567603202e-10 9.983258096e-11 2.790865672e-10 8.955542687e-11 4.669223544e-10 2.112883948e-10 1.004785624e-10 2.18911472e-10 3.939462164e-10 2.195178615e-10 2.047460313e-10 2.598796645e-10 3.934296364e-10 1.461033236e-10 3.63487947e-10 2.438336227e-10 3.941259028e-10 2.70234825e-10 3.655250683e-10 6.101378279e-10 6.943794385e-10 2.125387736e-10 4.254313751e-10 3.611709729e-10 2.916625849e-10 2.306587172e-10 5.144007302e-10 5.177229186e-10 4.407929088e-10 3.278534347e-10 2.872753643e-10 4.249965519e-10 2.64636234e-10 2.72247095e-10 2.732747797e-10 4.451624286e-10 1.267969373e-10 1.847418065e-10 2.575695382e-10 1.000402841e-10 3.175795925e-10 3.437665999e-10 5.99297716e-10 4.360150204e-10 7.246260788e-11 1.208065653e-10 1.798379239e-10 1.373534605e-10 3.4862194e-10 1.914190023e-10 5.342527245e-10 4.38452343e-10 9.195305164e-11 2.864053084e-10 3.414380526e-10 4.639621425e-10 1.965546707e-10 2.38331973e-10 6.470843088e-10 1.614582027e-10 4.903559254e-10 4.543274858e-10 4.027093599e-10 2.336991806e-10 7.118291459e-10 6.370483613e-10 2.232070877e-10 6.136831278e-10 6.847160451e-10 6.137328064e-10 6.313908842e-10 6.969643934e-10 8.950511592e-10 6.015291614e-10 1.019856006e-09 4.845449192e-10 5.698331931e-10 6.824649416e-10 2.005610771e-10 4.88666282e-10 1.56130751e-10 5.201610608e-10 3.547197236e-10 9.88514799e-10 7.701940799e-10 3.431657076e-10 7.370489636e-10 6.988600473e-10 1.083034323e-09 3.00558928e-10 3.640875078e-10 7.328983521e-10 5.283438376e-10 4.774325548e-10 2.533218739e-10 3.790180651e-10 2.26406881e-10 6.511331686e-10 6.741898024e-10 2.941849459e-10 3.512771189e-10 2.963808897e-10 5.597548545e-10 4.442512934e-10 4.064669871e-10 4.072399381e-10 2.122390704e-10 4.598807523e-10 6.58751764e-10 2.67320499e-10 3.352770293e-10 6.297842045e-10 4.221643565e-10 1.753082809e-10 1.808603656e-10 4.91904325e-10 3.591484015e-10 6.107617783e-10 4.175072239e-10 2.762100054e-10 5.325839208e-10 2.367701447e-10 1.370361879e-10 3.777766945e-10 5.240302409e-10 4.839030848e-10 4.431164134e-10 2.822257591e-10 4.481797504e-10 6.729335792e-10 2.778313334e-10 1.722977458e-10 2.308080602e-10 3.28442412e-10 8.438664477e-10 3.303580129e-10 2.879642457e-10 4.609497132e-10 4.584834114e-10 4.4190947e-10 4.051223164e-10 2.668799361e-10 3.271283871e-10 3.970559709e-10 3.954122867e-10 3.054688626e-10 5.654813455e-10 5.640384815e-10 4.202117752e-10 5.493337375e-10 2.033703402e-10 3.189517573e-10 7.241257788e-10 5.627933136e-10 5.628388856e-10 5.556977321e-10 2.878982482e-10 3.299996543e-10 4.736760137e-10 4.017911398e-10 4.205611148e-10 3.047613866e-10 2.959007055e-10 7.557981272e-10 5.235680194e-10 7.455478839e-10 7.547636088e-10 6.74943856e-10 8.144825028e-10 3.773368275e-10 1.517345255e-10 6.362805622e-10 4.116904306e-10 6.625082972e-10 5.260089723e-10 1.358688457e-10 4.553706488e-10 5.792208153e-10 6.537506504e-11 3.056623166e-10 5.429733456e-10 5.418748641e-10 5.602136417e-10 5.634878527e-10 7.439805571e-10 5.537868666e-10 5.367081843e-10 3.360611423e-10 4.373277326e-10 1.000050431e-12 4.068715114e-10 4.292028477e-10 5.580460194e-10 7.494865891e-11 5.809025165e-10 1.614556301e-10 3.890102007e-10 3.712674407e-10 5.321082313e-10 6.388100844e-10 3.860962392e-10 8.505285556e-11 1.912987964e-10 2.747294252e-10 3.561851403e-10 7.434484949e-11 5.387282349e-10 6.82663655e-10 2.130389079e-10 3.842590748e-10 2.490088461e-10 5.209039254e-10 9.150313582e-11 4.659454443e-10 6.301028234e-10 4.881110494e-10 5.047010943e-10 4.020092768e-10 2.623006103e-10 5.673189775e-10 4.073832836e-10 2.069207926e-10 2.188883743e-10 1.68259249e-10 2.181175884e-10 3.384137195e-10 1.673556814e-10 3.994567066e-10 2.998638487e-10 3.958385673e-10 4.948908994e-10 2.103254301e-10 3.015339083e-10 6.810624157e-11 3.267117728e-10 3.706435102e-10 1.800885502e-10 3.820603044e-10 4.021079791e-10 1.931525125e-10 1.495244929e-10 5.652709251e-10 1.297028588e-10 8.796025286e-11 4.132324338e-10 3.457281352e-10 2.732411796e-10 6.066993876e-10 1.247229719e-10 3.492878528e-10 4.136693872e-10 1.17728382e-10 7.59718462e-10 2.604911142e-10 2.563134554e-10 4.556767736e-10 2.468083342e-10 2.929938682e-10 2.831051174e-10 2.440605271e-10 4.23911409e-10 1.824848521e-10 7.242928911e-10 1.688297617e-10 2.408148414e-10 2.769710867e-10 3.190690828e-10 2.910603164e-10 2.125028539e-10 2.306208311e-10 6.988699309e-10 2.492761056e-10 5.386263306e-10 3.818896104e-10 2.09776333e-10 2.026957558e-10 2.332076097e-10 1.839653438e-10 +5.217841164e-10 3.873572424e-10 1.945640093e-10 4.619314804e-10 2.040979987e-10 1.68566084e-10 3.907082419e-10 1.994791995e-10 4.889038667e-10 3.940594829e-10 1.283462736e-10 3.39963446e-10 2.946895003e-10 4.277503782e-10 1.517235889e-10 9.808114108e-11 2.831921485e-10 2.169764665e-10 2.404800351e-10 4.996551839e-11 2.382252239e-10 9.692536753e-11 2.944836405e-10 3.950651004e-10 3.234637609e-10 2.974786987e-10 2.832985241e-10 4.733056116e-11 2.190761921e-10 2.826995996e-10 2.407449773e-10 4.913203655e-10 8.922119415e-11 2.009317466e-10 2.592708234e-10 1.726175146e-10 1.79248749e-10 4.961553739e-10 2.173809949e-10 2.083999701e-10 4.293574284e-11 3.168418255e-10 3.714221954e-10 4.550507824e-10 4.958535241e-10 6.31743086e-11 3.221364076e-10 3.338374438e-10 3.192056581e-10 5.720721149e-10 3.068415852e-10 1.966902447e-10 3.002253899e-10 3.453325604e-10 4.87541109e-11 1.611124867e-10 3.367462963e-10 4.904348162e-10 6.905614093e-10 5.948616814e-10 3.654241778e-10 1.504525961e-10 1.440682004e-10 1.520602051e-10 2.475047148e-10 5.257567823e-10 2.862988219e-10 3.987718534e-10 2.721746254e-10 3.497113602e-10 2.189550225e-10 4.029022587e-10 2.513976447e-10 3.326305532e-10 1.205722983e-10 1.227888286e-10 4.551343276e-10 2.056858397e-10 5.525626089e-10 1.696304245e-10 7.639871524e-12 7.701235975e-10 1.447322215e-10 1.275062748e-10 1.79852205e-10 3.508001531e-10 5.847287192e-10 1.039292082e-09 4.781829216e-10 5.248512889e-10 7.260331962e-10 3.296232631e-10 1.963903262e-10 6.269289986e-10 7.940507778e-10 6.328533938e-10 8.086951712e-10 5.135307523e-10 4.948843015e-10 6.967862532e-10 6.632760895e-10 6.971566627e-10 1.109764294e-09 7.31362477e-10 5.327372315e-10 2.078496551e-10 2.931124862e-10 4.97297531e-10 5.53790383e-10 4.355674909e-10 3.881005641e-10 5.106668536e-10 3.184434914e-10 3.493717335e-10 7.328018039e-10 3.789733171e-10 2.831393543e-10 5.542684294e-10 4.893765199e-10 5.466674323e-10 2.821545592e-10 3.942540264e-10 7.280599578e-10 2.800475331e-10 2.7599612e-10 1.125745734e-10 4.453338339e-10 8.020070471e-10 9.247628516e-10 1.186261254e-10 1.701432267e-10 7.484010683e-10 2.367553712e-10 4.848201298e-10 4.71708096e-10 4.38110532e-10 3.891604883e-10 1.537325943e-10 3.273377503e-10 3.446117203e-10 7.164135342e-10 2.344015915e-10 3.646928113e-10 2.322238038e-10 2.845793345e-10 3.577200829e-10 3.813965566e-10 3.171132643e-10 4.134091214e-10 5.684007097e-10 3.773049696e-10 2.15648565e-10 7.446600022e-10 3.670940562e-10 2.932338317e-10 4.324739239e-10 2.698081475e-10 4.633247907e-10 4.374936246e-10 3.469691536e-10 3.062366262e-10 5.75134161e-10 2.622871363e-10 2.939610049e-10 2.566782586e-10 3.187167428e-10 5.072303041e-10 5.055360877e-10 4.276362186e-10 5.21374874e-10 5.962490094e-10 4.031906409e-10 4.711657821e-10 7.039018456e-10 4.818393359e-10 2.911319679e-10 5.841446392e-10 5.014342563e-10 7.227522277e-10 6.039799405e-10 4.897068871e-10 3.290675691e-10 5.734409844e-10 4.428287967e-10 2.634017455e-10 5.069649709e-10 5.447123847e-10 4.047625462e-10 3.829352697e-10 5.440925615e-10 1.864166466e-10 3.248557296e-10 6.042092382e-10 7.254906815e-10 4.618163267e-10 4.16143245e-10 6.597648028e-10 4.30046281e-10 3.647640773e-10 6.130682102e-10 5.612350319e-10 1.079426959e-09 6.780827795e-10 3.29249786e-10 7.774913941e-10 7.323340207e-10 5.807597952e-10 5.693879569e-10 7.292768127e-10 6.018441085e-10 6.003646694e-10 2.206740976e-10 4.206176446e-10 3.599152611e-10 4.727414158e-10 4.030349531e-10 3.910132523e-10 2.688242163e-10 6.292140979e-11 3.850307076e-10 4.019544771e-11 4.946090899e-10 2.715392484e-10 8.863495843e-11 3.781208077e-10 5.738160941e-10 2.722148166e-10 5.084055813e-10 3.518344059e-10 3.324249811e-10 2.043744749e-10 1.727835386e-10 2.963850378e-10 3.623879654e-10 3.531819025e-10 2.825350899e-10 1.245823312e-10 2.735195034e-10 4.43636927e-10 1.315164139e-10 4.821877657e-10 4.467254141e-10 1.684026283e-10 2.532818866e-10 2.25497128e-10 3.429827833e-10 3.333791111e-10 1.607399532e-10 5.121114821e-10 1.984957181e-10 3.031024277e-10 3.580135495e-10 2.70912291e-10 3.204105836e-10 2.437995275e-10 2.19900873e-10 2.691670771e-10 1.568136023e-10 4.711991457e-10 4.933006095e-10 6.446161169e-10 2.323301326e-10 2.298837471e-10 1.436117419e-10 4.954337922e-10 7.890176037e-10 1.982644739e-10 7.228411351e-10 6.904879775e-10 1.972552385e-10 1.247664559e-10 1.697181578e-10 1.890503878e-10 3.0934727e-10 1.794564371e-10 4.018179657e-10 1.471531951e-10 3.062561532e-10 5.252223536e-10 1.049614731e-10 1.960977443e-10 1.896423015e-10 1.161942579e-10 2.19091547e-10 7.483014293e-11 4.160615219e-10 1.852169671e-10 2.877030648e-10 3.174719244e-10 2.744363844e-10 3.726277618e-10 2.468531877e-10 1.877390712e-10 3.260067648e-10 2.735720036e-10 6.172484692e-10 2.416712156e-10 4.067723165e-11 1.377766505e-10 2.743948652e-10 +1.751823084e-10 1.838284585e-10 5.450474201e-10 3.49713558e-10 3.608427491e-10 1.863952415e-10 9.9889322e-11 6.432110628e-11 3.768794896e-10 5.473537837e-11 1.238322991e-10 1.873466761e-10 8.876989852e-11 3.67902395e-10 3.008915637e-10 3.74089287e-10 8.169149255e-11 3.392216124e-10 3.478947688e-10 5.064122636e-10 2.222194864e-10 4.088569901e-10 2.504435021e-10 2.009334515e-10 3.566867789e-10 2.627041639e-10 4.72727342e-10 3.270852577e-11 2.527915499e-10 1.149576519e-11 4.447517157e-11 4.064972477e-10 1.550820741e-10 2.437134176e-10 3.036941432e-10 4.313600853e-10 4.835268619e-10 1.91233484e-10 6.375041593e-10 4.574695078e-10 2.181066296e-10 1.506396003e-10 2.701548734e-10 1.411200543e-10 5.694136746e-10 2.314245354e-10 3.251944367e-10 4.12273482e-10 2.127687088e-10 2.812711752e-10 4.634472159e-10 2.145304067e-10 2.939418463e-10 3.204267701e-10 6.011115551e-10 2.452992779e-10 2.031196171e-10 3.115911615e-10 5.41092353e-10 4.181112046e-10 2.510225975e-10 5.671549365e-10 1.244613373e-10 1.992143819e-10 5.602102747e-10 1.659576469e-10 1.860990922e-10 1.304622405e-10 2.80193435e-10 4.850909842e-10 3.097398838e-10 3.465945192e-10 3.073650544e-10 4.6631307e-10 4.932996719e-10 1.554406649e-10 2.408354516e-10 1.244816415e-10 7.961040123e-11 2.247691024e-10 2.530350599e-10 1.439020313e-10 2.164184003e-11 6.873617276e-11 1.287716017e-10 5.220916197e-10 5.226203913e-10 5.53002976e-10 5.885997657e-10 3.490405616e-10 4.135713254e-10 5.645429498e-10 5.901957628e-10 5.887455291e-10 3.66430203e-10 7.521697892e-10 5.945898625e-10 9.119335626e-10 3.41122323e-10 8.871983224e-10 2.573566433e-10 1.772940962e-10 4.928422195e-10 3.133088021e-10 2.532051634e-10 3.940887223e-10 2.237286878e-10 5.553429234e-10 5.784701938e-10 1.602516284e-10 7.60217671e-10 1.918317848e-10 4.936916565e-10 5.581180187e-10 4.247069627e-10 7.610466117e-10 2.837870673e-10 6.651108697e-11 5.355659912e-10 6.015667576e-10 7.579589342e-10 9.190038122e-10 5.104010878e-10 6.610954673e-10 2.684908379e-10 8.492445371e-10 1.84297918e-10 6.190752879e-10 5.99611929e-10 2.479916572e-10 2.841952279e-10 4.945380052e-10 4.388603071e-10 3.759813648e-10 3.381123577e-10 7.55476636e-10 3.995545283e-10 4.595475178e-10 4.233905305e-10 2.18077069e-10 3.009920018e-10 3.976552877e-10 3.05004987e-10 8.083077352e-10 6.571085823e-10 4.574168563e-10 1.234463436e-10 4.54049633e-10 1.266796503e-10 6.272763054e-10 5.32726725e-10 2.018632919e-10 1.716801662e-10 2.710008765e-10 4.455244414e-10 4.180736922e-10 2.619844421e-10 6.445435015e-10 4.911167698e-10 2.880458126e-10 4.604794734e-10 1.879182916e-10 2.646774033e-10 5.096990439e-10 4.755853113e-10 2.123486247e-10 6.852480915e-10 5.579173913e-10 2.817408716e-10 1.238455747e-09 3.49108615e-10 3.741883173e-10 6.795106046e-10 6.792272501e-10 4.535405255e-10 2.762819807e-10 4.549073015e-10 5.758504541e-10 2.587343911e-10 4.474488805e-10 2.057302362e-10 3.478556767e-10 2.623461236e-10 3.080346684e-10 4.600238443e-10 3.518965197e-10 2.832383565e-10 5.040523991e-10 4.860010846e-10 3.032204304e-10 2.671210009e-10 8.99183013e-10 3.232608541e-10 4.578000772e-10 6.087189821e-10 4.956911156e-10 3.877337871e-10 7.495432604e-10 5.9488604e-10 7.366002445e-10 3.592824632e-10 1.020856796e-09 5.930116798e-10 5.661305412e-10 3.341691799e-10 5.085296639e-10 7.733038567e-10 3.689639881e-10 1.557626254e-10 2.291676169e-10 5.030960069e-10 1.519235949e-10 4.535108005e-10 3.166451544e-10 3.700920691e-10 4.235888115e-10 1.203254681e-10 2.951412412e-10 4.63285199e-10 1.770322753e-10 3.540002846e-10 8.800955112e-11 1.303039396e-10 3.38786173e-10 4.206992315e-10 2.812911548e-10 2.635919112e-10 1.71014877e-10 5.540246418e-10 4.058294142e-10 3.222149138e-10 4.056127639e-10 2.197539987e-10 5.828803603e-10 1.093022806e-10 1.854547333e-10 4.705823324e-10 3.397910376e-10 6.480454237e-10 7.574242784e-10 1.809894509e-10 3.75850207e-10 2.873043753e-10 3.598579748e-10 2.317870496e-10 6.297847868e-10 7.1217125e-10 3.908531387e-10 2.935407621e-10 3.356334189e-10 7.338916234e-10 3.325873614e-10 4.622719684e-10 4.669776479e-10 5.005592996e-10 1.885699679e-10 3.774418048e-10 1.736590295e-10 4.676262714e-10 4.541744373e-10 2.637085233e-10 2.934524613e-10 2.246001801e-10 2.259542115e-10 2.100575184e-10 2.373685071e-10 3.099182981e-10 3.249694565e-10 2.102343249e-10 2.162164298e-10 8.887097179e-11 1.10792848e-10 4.013951566e-10 5.619635784e-10 9.144771441e-11 9.101362988e-11 9.653177757e-11 1.88203938e-10 2.96987107e-10 1.163714407e-10 1.728805249e-10 1.703205947e-10 8.501479664e-11 1.206613949e-10 2.725954787e-10 5.508620534e-10 3.093365833e-10 3.291008388e-10 3.377848764e-10 3.288513101e-10 1.019619685e-10 2.344869245e-10 2.563288871e-10 9.605112135e-12 2.56768399e-10 3.78883674e-10 2.234304484e-10 5.451322594e-10 2.618796216e-10 1.071471659e-10 +3.721656246e-10 1.673074795e-10 9.535422129e-11 2.405956892e-10 3.859068999e-10 1.73210151e-10 3.769387909e-10 3.62677514e-10 3.965712362e-10 4.812937619e-11 2.944285369e-10 2.851847278e-10 4.082549405e-11 4.8882539e-11 2.62961963e-10 2.57175252e-10 3.914768897e-10 3.391907759e-10 9.087153702e-11 6.172486759e-11 6.953019367e-10 1.879201585e-10 1.699766436e-10 2.795493963e-10 1.706423193e-10 1.520284162e-10 5.701260277e-10 2.416032364e-10 7.611630246e-11 9.449436807e-10 4.409296785e-10 1.045057126e-10 2.756305237e-10 6.357276798e-10 1.651534677e-10 2.964015977e-10 3.922777844e-10 3.170700293e-10 4.541117582e-10 4.097694094e-10 1.669749969e-10 2.063747031e-10 1.429460407e-10 2.030417487e-10 3.557393202e-10 2.039672904e-10 1.612203268e-10 5.430525782e-10 1.205538701e-10 2.257558619e-10 1.674446757e-10 8.422277911e-11 5.351083722e-10 4.680623201e-10 4.900009053e-10 3.422091705e-10 6.019121292e-10 4.51504738e-10 4.730624671e-10 4.859943021e-10 3.085182356e-10 3.047881152e-10 1.552503196e-10 4.979196754e-10 1.466724894e-10 1.643795014e-10 1.866852915e-10 5.064466852e-10 3.575201471e-10 6.274120662e-10 1.225967401e-10 2.020346628e-10 2.93917897e-10 3.823919878e-10 1.036147773e-10 2.786369612e-10 2.32724133e-10 2.446679252e-10 3.723588169e-10 1.706061547e-10 6.301631421e-11 2.786071373e-10 4.081317366e-10 2.370120659e-10 5.947997909e-10 5.251245557e-10 2.091517782e-10 6.169723104e-10 4.423746905e-10 7.47817724e-10 4.366434078e-10 3.342698734e-10 1.106792305e-09 4.123282168e-10 7.265272114e-10 3.357384762e-10 4.312627472e-10 4.405115563e-10 2.207009181e-10 4.7492794e-10 5.639076472e-10 6.50283039e-10 1.426532959e-10 7.456773887e-10 6.171208456e-10 5.63649742e-10 4.377533742e-10 5.091441628e-10 1.616914054e-10 1.444866544e-10 3.172778257e-10 7.262289888e-10 1.991656246e-10 5.252717246e-10 4.105860328e-10 5.423516425e-10 4.138690247e-10 7.121801881e-10 7.224640056e-10 4.473686758e-10 4.790355428e-10 3.440515341e-10 3.571055611e-10 3.106087147e-10 3.080903614e-10 2.497464374e-10 5.214681357e-10 8.355923984e-10 5.682619734e-10 3.793018333e-10 3.359028964e-10 3.136501067e-10 3.931694166e-10 5.294077696e-10 6.012208266e-10 2.539122249e-10 5.696522061e-10 1.481986855e-10 6.536650967e-11 5.942354686e-10 3.571387198e-10 2.357149885e-10 3.086665055e-10 7.166904879e-10 1.615065023e-10 2.565464049e-10 2.066440804e-10 5.560844911e-10 3.933223928e-10 1.319217309e-10 4.168495515e-10 4.440567313e-10 4.466815961e-10 6.086366365e-10 3.194500039e-10 4.598618933e-10 5.413569701e-10 3.557823651e-10 1.843871012e-10 7.078785584e-10 3.836209812e-10 5.985799569e-10 6.697724314e-10 2.193745533e-10 1.633312867e-10 3.794376635e-10 6.1823522e-10 4.308144018e-10 4.793918739e-10 2.465575561e-10 2.982607947e-10 1.624871076e-10 2.889538693e-10 3.298434055e-10 5.436482867e-10 3.805806349e-10 3.118641816e-10 5.484503133e-10 5.681959893e-10 5.034535744e-10 5.042296218e-10 2.570462073e-10 5.302702418e-10 1.58611369e-10 5.674189406e-10 3.675177948e-10 4.939943241e-10 1.775634687e-10 2.806372359e-10 1.399243657e-10 4.809775657e-10 4.341387755e-10 7.652452733e-10 1.650965795e-10 4.291662835e-10 8.7740848e-10 4.818965979e-10 6.323922376e-10 3.618584066e-10 5.999032644e-10 5.130076788e-10 4.325521887e-10 8.211083987e-10 7.827606229e-10 5.285288608e-10 4.186103707e-10 5.845317503e-10 6.18788108e-10 4.241740869e-10 4.367620509e-10 7.31918585e-10 4.144643257e-10 3.780774849e-10 1.953478164e-10 3.567480782e-10 8.23201021e-11 1.799060209e-10 5.650582741e-11 1.816328488e-10 2.61228156e-10 2.644393708e-10 3.23122935e-10 2.972909114e-10 1.970406183e-10 2.835195987e-10 3.535222216e-10 3.621737139e-10 2.453164014e-10 9.825137439e-12 5.795173039e-10 4.547533301e-10 6.394544715e-10 3.14507156e-10 2.529440707e-10 2.400117732e-10 3.895235541e-10 2.390307134e-10 2.248054818e-10 4.850268004e-10 4.610913701e-10 3.610690175e-10 5.005769913e-10 3.421777314e-10 1.676831661e-10 1.73453177e-10 2.429828853e-10 2.094510886e-10 4.957582457e-10 2.231026196e-10 5.163322589e-10 4.720975913e-10 4.391415642e-10 1.162666334e-10 1.029005168e-10 6.635557598e-10 6.277860495e-10 2.033804611e-10 4.44217457e-10 4.212885915e-10 3.91324163e-10 4.20079873e-10 4.726097669e-10 2.185025205e-10 2.900316148e-10 3.667301224e-10 4.752904234e-11 3.535408425e-10 2.983066963e-10 3.377061151e-10 4.554951096e-10 7.134136414e-10 2.288618963e-10 3.12657531e-10 4.780685147e-11 3.166076112e-10 2.259221432e-10 1.717840088e-10 2.610537322e-10 2.75714979e-10 4.762018277e-10 1.847565522e-10 2.396640337e-10 2.95950836e-10 2.439099763e-10 4.643879992e-11 1.462114643e-10 4.756595215e-10 6.010893119e-10 1.189884763e-10 2.946625837e-10 1.134384077e-10 2.358552243e-10 3.755856409e-10 5.670718171e-10 1.766889919e-10 1.416794747e-10 1.717714487e-10 2.249136272e-10 3.1081267e-10 6.579425411e-10 +3.42517349e-10 1.661195434e-10 8.785813952e-10 3.234956272e-10 3.321948271e-10 6.275344958e-11 6.072097839e-10 3.905290031e-10 8.618785852e-11 3.55068911e-10 2.881234738e-10 1.144019177e-10 4.192603898e-11 1.255247465e-10 1.676961983e-10 1.943327953e-10 2.359546716e-10 1.007416772e-10 3.093672212e-10 6.022507695e-11 1.593059895e-10 9.267973904e-11 1.192185543e-10 4.115701613e-10 3.450001541e-10 7.2334361e-11 2.898471214e-10 5.969979149e-10 1.391681447e-10 2.222488808e-10 7.011606474e-10 9.173244301e-11 3.395291325e-10 2.336261729e-10 9.786565577e-10 3.120106329e-10 6.444326118e-10 3.042024223e-10 2.499018275e-10 2.873398072e-10 1.294731867e-10 2.970673622e-10 4.018673846e-10 3.171858011e-10 3.476184871e-10 2.504721164e-10 2.239623218e-10 4.109735279e-10 3.910931727e-10 5.186416339e-10 2.503618363e-10 2.676672283e-10 3.29924826e-10 8.073039403e-11 3.026040281e-10 3.889482325e-10 1.723275688e-10 2.030422479e-10 2.460841033e-10 2.714212026e-10 5.029605524e-10 6.505271343e-10 2.901663262e-10 5.450743427e-10 1.802458061e-10 2.018428064e-10 1.968946156e-10 4.996846238e-10 4.707332838e-10 3.809252977e-10 3.101544275e-10 3.21158005e-10 2.055442479e-10 4.456322115e-10 2.092178899e-10 1.76981729e-10 2.755520129e-10 2.049233908e-10 3.00721146e-10 3.124439539e-10 1.566119328e-10 1.405343106e-10 3.419401203e-10 5.8208873e-11 3.946100435e-10 2.62188365e-10 1.571198303e-10 5.360510973e-10 5.201068241e-10 3.294081444e-10 5.503851528e-10 3.493673224e-10 3.978111413e-10 5.442993139e-10 1.179778252e-09 1.039324833e-09 4.839937915e-10 2.472861772e-10 1.658436152e-10 1.28476827e-10 3.336555153e-10 4.587838097e-10 9.420093133e-10 3.032571784e-10 5.979492808e-10 6.705528314e-10 4.770228245e-10 6.005968366e-10 3.639762153e-10 4.309339397e-10 2.780027205e-10 2.132379616e-11 6.244514207e-10 5.477295278e-10 7.196049425e-10 6.298345153e-10 1.966109954e-10 4.782853672e-10 6.181041248e-10 5.654553784e-10 4.369251563e-10 2.67946216e-10 4.917512181e-10 4.343856263e-10 5.305806048e-10 2.962991903e-10 5.141091001e-10 4.696984106e-10 2.385963795e-10 2.264427863e-10 7.396373388e-10 4.267989892e-10 5.204426961e-10 4.06376464e-10 4.598451203e-10 3.847419355e-10 2.148297566e-10 4.944939868e-10 1.401907558e-10 3.782970628e-10 2.962944649e-10 3.642408718e-10 2.500901171e-10 1.135249234e-10 2.30862342e-10 3.154178984e-10 4.256494542e-10 2.041275929e-10 7.527007306e-10 5.506533153e-10 4.405720959e-10 2.048089725e-10 3.040693459e-10 4.063869332e-10 9.177441989e-10 2.310935407e-10 7.090399811e-10 2.912773073e-10 2.316123612e-10 3.387779568e-10 2.520108521e-10 5.734435134e-10 4.89669803e-10 3.422506763e-10 4.474963992e-10 3.763715264e-10 4.494402455e-10 4.026729488e-10 4.724088107e-10 6.888233829e-10 1.505050436e-10 4.566323995e-10 5.971760629e-10 5.175986451e-10 3.872496591e-10 6.445128837e-10 2.072533743e-10 4.005643003e-10 7.889057065e-10 6.604490936e-10 6.398536233e-10 6.631880856e-10 6.073274933e-10 3.691579225e-10 3.371976384e-10 2.913189001e-10 2.229183035e-10 3.129881815e-10 2.594251697e-10 1.254454857e-10 1.378398933e-10 5.011475367e-11 5.549039592e-10 9.53126925e-10 6.263643505e-10 2.234165935e-10 4.348489795e-10 3.709378974e-10 6.420927768e-10 8.514106315e-10 5.53361549e-10 4.387038835e-10 3.459973757e-10 4.813917004e-10 4.449428098e-10 3.249640177e-10 6.887919222e-10 3.667513037e-10 2.547897076e-10 7.133247832e-10 4.517178846e-10 9.662802722e-11 1.996931355e-10 3.357661893e-10 7.469587013e-10 1.950268855e-10 1.256437664e-10 1.135892176e-10 4.303337478e-10 3.222466457e-10 3.949165986e-10 3.180757087e-10 2.108226639e-10 4.667879609e-10 5.550553901e-11 2.999686023e-10 4.162978539e-10 3.003879783e-10 2.737768332e-10 6.755702406e-10 8.913518328e-11 4.146735349e-10 2.817076861e-10 4.079907912e-10 1.432090996e-10 3.806259034e-10 1.169696845e-10 1.597137743e-10 1.725147791e-10 9.652631769e-11 4.190550823e-10 5.531612293e-10 3.926243369e-10 1.106968714e-10 2.980190161e-10 4.308268676e-10 4.704260272e-10 1.445024862e-10 3.640945666e-10 7.71892163e-10 3.631974265e-10 2.734381166e-10 1.099109234e-10 1.244606292e-10 2.724110539e-10 4.318520042e-10 4.925985267e-10 2.034980907e-10 4.892231226e-10 4.783009648e-10 2.443206224e-10 3.123616833e-10 2.485523116e-10 4.1192061e-10 7.798989604e-10 4.173666412e-10 1.537192745e-10 1.187379353e-10 1.387486146e-10 3.78881881e-10 2.400496443e-10 2.491383677e-10 3.667634214e-10 1.629794603e-10 1.529529531e-10 1.385229846e-10 3.117401303e-10 1.053421786e-10 1.230335215e-10 1.647749813e-10 2.72369906e-10 2.73719015e-10 3.311136078e-10 2.110911334e-10 1.436850874e-10 3.776961937e-11 3.872258343e-10 2.902463231e-10 3.128015874e-10 3.235009228e-10 1.696130121e-10 4.959343298e-11 5.222868417e-10 1.295202596e-10 1.790452222e-10 1.80347149e-10 3.638580664e-10 1.089177349e-10 9.176350042e-11 8.855274582e-11 +1.652980905e-10 1.229507373e-10 3.039672641e-10 3.751363592e-10 5.067059281e-11 1.220409449e-10 1.634536961e-10 2.675798127e-10 2.089565458e-10 4.847613703e-10 1.494609029e-10 1.13888701e-10 2.284811567e-10 1.325167416e-10 8.811227482e-11 2.893026699e-10 3.653772787e-10 3.434664044e-10 2.288886573e-10 1.305313218e-10 3.887573819e-10 3.900638162e-10 5.131984104e-10 7.267586124e-11 1.656441433e-11 7.875644009e-10 4.682696349e-10 4.200851703e-10 2.702928146e-10 2.790209257e-10 3.462720031e-10 1.190425866e-10 2.17483263e-10 3.921988244e-10 3.134742748e-10 3.791838877e-10 1.704897249e-10 4.606604605e-10 3.599262811e-10 2.67993859e-10 2.579965482e-10 2.185597665e-10 1.685217631e-10 4.535476306e-10 2.787032714e-10 2.110419e-10 3.644861173e-10 2.436717318e-10 6.953781947e-11 2.574819493e-10 5.614562839e-10 7.012046413e-10 2.488642677e-10 1.82172807e-10 7.099351708e-11 1.745699818e-10 2.449980229e-10 4.199040029e-10 3.56324449e-10 4.553540912e-10 2.827428077e-10 1.185388398e-10 5.287782348e-10 4.336044977e-11 2.783972886e-10 9.846083397e-11 2.19692792e-10 1.43623979e-10 3.74706421e-10 3.46173428e-10 8.275036347e-11 5.560749801e-10 1.179651089e-10 5.690607367e-10 6.412916295e-11 1.526594555e-10 3.721017128e-10 3.151396689e-10 1.18663416e-10 2.245756137e-10 1.113349617e-10 6.291440424e-11 4.635027282e-10 2.974250932e-10 3.299361794e-10 3.629481311e-10 6.303246076e-10 7.309833289e-10 6.189567818e-10 2.303157266e-10 3.552531455e-10 3.160654363e-10 3.880824109e-10 2.168334118e-10 4.412807269e-10 6.812710042e-10 9.586358737e-10 7.600983644e-10 4.941343865e-10 1.7299574e-10 4.162683446e-10 4.813591205e-10 7.989398615e-10 2.972156047e-10 7.723340572e-10 1.972592492e-10 4.254509662e-10 4.097504166e-10 5.722115708e-10 3.555702341e-10 6.143007741e-10 3.062183824e-10 9.396618204e-10 5.376882315e-10 4.429245207e-10 4.992151787e-10 4.71623376e-10 2.422479049e-10 1.758467708e-11 2.108349339e-10 1.794358859e-10 4.118099521e-10 2.996096447e-10 6.297151613e-11 5.305462904e-10 2.65132818e-10 3.94494375e-10 2.507329624e-10 2.682246237e-10 8.044116281e-10 2.538876904e-10 7.530516337e-10 2.532577344e-10 2.643582656e-10 2.985192512e-10 3.506004099e-10 3.497021269e-10 4.041793093e-10 2.280928365e-10 4.188507262e-10 4.319464347e-10 4.607843158e-10 4.455562106e-10 2.911060343e-10 2.488924804e-10 5.73750778e-10 3.695735785e-10 5.423684985e-10 5.864170175e-10 5.549440856e-10 5.383802728e-10 3.539437803e-10 5.038174847e-10 2.835481796e-10 1.528001247e-10 2.236269019e-10 6.363644921e-10 4.652091167e-10 1.553380006e-10 6.201868414e-10 7.022085836e-10 3.253101123e-10 4.873739228e-10 5.39793017e-10 1.012702702e-10 4.68811992e-10 7.806374328e-10 2.769338362e-10 3.156929695e-10 6.262863871e-11 6.204734892e-10 4.46051917e-10 3.983042245e-10 2.553065028e-10 3.682169055e-10 3.400866008e-10 4.487024998e-10 4.51602585e-10 3.925578572e-10 2.560487337e-10 4.994009065e-10 5.004203847e-10 5.264738807e-10 5.048390606e-10 3.69449554e-10 2.395251248e-10 5.086501362e-10 5.347839027e-10 1.984412953e-10 5.405050766e-10 6.112850661e-10 1.912825078e-10 6.069167615e-10 4.382134941e-10 4.17963132e-10 3.896950386e-10 5.060050532e-10 8.163404303e-10 4.52032813e-10 6.196533333e-10 1.117440749e-09 3.042958438e-10 8.307504565e-10 8.378106607e-10 6.657646306e-10 5.12194938e-10 3.209638618e-10 4.127989155e-10 3.478939291e-10 5.983753974e-10 6.378890096e-10 3.461428756e-10 4.78497238e-10 2.62453829e-10 2.425234681e-10 1.951149543e-10 2.976987436e-10 5.252832156e-10 2.119464632e-10 2.070659283e-10 5.080794761e-11 3.975896184e-10 1.462723097e-10 2.399836577e-11 4.994137714e-10 6.513432724e-10 1.833889119e-10 1.197863014e-10 7.765318503e-11 3.882445681e-11 2.288126112e-10 8.311351265e-11 5.068437788e-10 4.359717486e-10 3.015998269e-10 1.572034793e-10 2.892648325e-10 7.28665213e-10 3.901696142e-10 3.459965608e-10 1.743601184e-10 2.338738912e-10 6.323842383e-10 1.603480768e-10 3.05910354e-10 9.324011667e-11 1.241228937e-10 2.704462072e-10 5.717326537e-10 2.164285739e-10 3.125065033e-10 3.017272888e-10 6.777849221e-10 1.949794834e-10 2.719041097e-11 2.769875376e-10 2.607916638e-10 3.522752735e-10 4.660683912e-10 2.634069343e-10 4.755221833e-10 1.640218998e-10 1.442242495e-10 6.020387252e-10 7.54373666e-11 7.936440778e-10 6.844105191e-11 3.084671813e-10 2.712089388e-10 3.197888561e-10 2.237406911e-10 4.452942002e-10 2.744404552e-10 3.080385325e-10 2.472488294e-10 4.872511542e-10 1.031793813e-10 2.174342977e-10 1.870851642e-10 1.080363261e-10 2.132057914e-10 5.776403002e-10 4.813497682e-11 2.893542992e-10 3.737535917e-10 2.660344371e-10 6.106623184e-11 3.906244253e-10 3.378212811e-10 6.251157156e-10 3.338990287e-10 3.82319644e-10 3.249972621e-10 4.870522764e-11 1.409772556e-10 2.567723793e-10 9.414855277e-11 1.62053636e-10 1.837211367e-10 2.324814546e-10 +3.777976179e-10 2.406723251e-10 5.41586075e-10 1.759969466e-10 7.882063066e-11 4.378425829e-10 4.503808119e-10 8.009314937e-11 8.145550367e-11 2.522410772e-10 1.344104093e-10 2.103804092e-10 1.579532461e-10 1.826378813e-10 1.082463621e-11 3.293268107e-10 3.411421001e-11 5.636155943e-11 2.63178028e-10 1.78541082e-10 9.640148721e-11 4.715896422e-10 3.38116971e-10 1.161094345e-10 2.500171201e-10 3.3043189e-10 5.1511797e-10 2.042070209e-10 1.951479337e-10 3.961043929e-11 1.140880551e-10 3.473599945e-10 1.283224411e-10 6.966612775e-10 2.420621255e-10 4.130711752e-11 5.963433093e-10 1.52475596e-10 1.552131222e-10 1.47658004e-10 5.158897982e-10 2.060909006e-10 1.353252239e-10 2.019244391e-10 3.773245758e-10 2.700642128e-10 1.638300572e-10 4.157398505e-10 5.086404035e-10 4.742983031e-10 1.607024415e-10 2.904224375e-10 1.476853477e-10 4.975892571e-10 3.420556128e-10 5.545273436e-10 4.6052514e-10 6.099288998e-10 1.901831284e-10 2.560263875e-10 3.508852003e-10 2.124580135e-10 4.737107065e-10 3.093511851e-10 1.897500816e-10 2.29963795e-10 2.010114155e-10 4.39777642e-10 4.709224122e-10 6.006494193e-10 1.372503682e-10 1.885218347e-10 3.518837936e-11 1.561243868e-10 8.563209564e-11 1.023138464e-10 4.105577794e-10 2.273985472e-10 1.364949166e-10 4.883836504e-10 3.289752403e-10 9.606356737e-11 2.714045033e-10 2.035957077e-10 7.74293071e-11 2.598108267e-10 4.392440877e-10 1.66262934e-10 3.977290891e-10 2.053291966e-10 4.371759671e-10 6.401079862e-10 2.533510847e-10 5.911875662e-10 7.234566837e-10 5.36030914e-10 2.762130235e-10 5.6376178e-10 3.670154305e-10 4.432440924e-10 3.354206306e-10 6.61881215e-10 5.364011483e-10 3.781456711e-10 7.441274205e-10 3.822836796e-10 2.060234206e-10 5.362622017e-10 5.050124594e-10 4.631329475e-10 6.38239258e-10 4.643433331e-10 5.172895558e-10 4.03721685e-10 7.491840744e-10 4.812255592e-10 3.081032921e-10 1.387521623e-10 3.653981167e-10 1.852717536e-10 5.083810819e-10 3.820734703e-10 5.692007219e-10 3.658457589e-10 1.570079309e-10 7.319812052e-10 1.067937475e-10 1.655100546e-10 6.770957843e-10 2.723917402e-10 4.146233988e-10 3.654710688e-10 1.222747925e-10 5.118740762e-10 3.12881867e-10 2.588652962e-10 6.993524604e-10 3.671982282e-10 4.504382527e-10 2.153609595e-10 2.345376032e-10 1.816471754e-10 1.64300066e-10 1.835748277e-10 2.596710603e-10 1.702375118e-10 8.199845735e-10 2.101564947e-10 4.774661098e-10 1.881040634e-10 2.61761866e-10 3.604324744e-10 7.238555614e-10 3.7827172e-10 4.038293919e-10 3.612600613e-10 2.212600672e-10 2.813180266e-10 2.83175941e-10 7.370812652e-10 6.299638014e-10 4.484426217e-10 3.358582338e-10 3.728697065e-10 1.421766033e-10 3.308082614e-10 6.134029458e-10 7.169284809e-10 4.018397581e-10 9.937355695e-11 3.493546822e-10 4.93734614e-10 4.286320188e-10 6.226175458e-10 1.649308993e-10 3.108446965e-10 1.725454119e-10 1.997209522e-10 6.239363484e-10 5.197465192e-10 6.916135736e-10 2.694893138e-10 2.640263113e-10 4.143208442e-10 6.514418693e-10 5.142933828e-10 5.280633665e-10 4.214704534e-10 2.582148462e-10 3.554168296e-10 1.362435643e-10 1.529392117e-10 1.479767938e-10 1.392889856e-10 5.673477033e-10 2.538955244e-10 4.107341357e-10 4.064278787e-10 4.643284033e-10 5.563360847e-10 7.58215017e-10 5.381690236e-10 7.325392588e-10 4.028730852e-10 7.70333755e-10 5.788656802e-10 5.180294122e-10 5.948933862e-10 7.979501058e-10 5.072845172e-13 4.147673942e-10 2.66702006e-10 4.221882836e-10 5.476920483e-10 2.513741227e-11 2.288689535e-10 3.21715534e-10 4.389651883e-10 5.586021157e-11 5.777366665e-11 2.165969179e-10 1.511355867e-10 3.900445823e-10 2.981569023e-11 1.873813751e-10 3.962693678e-10 2.527708638e-10 6.451260999e-11 2.614465559e-10 1.368186353e-10 2.41597505e-10 4.552808477e-11 1.876104229e-10 7.851478471e-10 2.176888363e-10 3.045732983e-10 2.61646411e-10 4.571115266e-10 6.294026119e-10 6.393923158e-10 4.198293133e-10 4.105650582e-10 1.358214199e-10 3.292931408e-10 8.113476659e-11 2.703693182e-10 3.021302596e-10 3.210588649e-10 1.104292767e-10 3.816873301e-10 1.895086737e-10 1.629193014e-10 2.771812089e-10 3.152229873e-10 2.63467335e-10 3.430595203e-10 4.010348536e-10 1.215279393e-10 1.986301723e-10 3.153131068e-10 2.214827148e-10 3.072655463e-10 3.218549686e-11 1.776349265e-10 3.62171264e-10 2.228826047e-10 2.269430527e-10 1.142321909e-10 3.465234099e-10 2.310265296e-10 7.031477334e-11 4.481999653e-10 1.906974927e-10 1.972104566e-11 2.304963239e-10 3.533463867e-10 2.379863519e-10 8.220208135e-11 6.330364043e-11 9.754723469e-11 2.590581945e-10 1.785378038e-10 3.184884657e-10 1.765830046e-10 5.934048954e-11 1.755009881e-10 7.182974489e-11 4.612936033e-10 9.503336924e-11 2.297369485e-10 3.449633927e-10 1.120924221e-10 8.681698909e-11 1.587223357e-10 2.174309378e-10 7.282787021e-11 2.841264963e-10 5.411394314e-11 9.944567191e-11 1.636661469e-10 +3.002117459e-10 2.189129346e-10 1.349250468e-10 4.006478087e-10 1.536492135e-10 3.15268139e-10 3.326704932e-10 4.20826596e-10 1.159820928e-10 9.47438104e-11 1.96788969e-10 1.323538692e-10 1.952455707e-10 1.580218155e-10 1.005901373e-11 1.409636631e-10 5.091937809e-10 2.278973319e-10 2.803625584e-10 9.797826733e-11 1.644918821e-10 4.350500967e-10 1.93785018e-10 9.328227962e-11 1.754711678e-10 8.917483597e-11 3.395309878e-10 2.219803667e-10 1.992169073e-10 3.172667126e-10 4.310871433e-10 4.901018419e-10 6.99029693e-10 4.060237025e-10 2.103802053e-10 1.328141928e-10 3.689790003e-10 1.148898429e-10 4.469648205e-10 4.320113021e-10 2.095039358e-10 1.444138232e-10 3.16280996e-10 4.291328181e-10 1.687105189e-10 3.502938382e-10 4.08874387e-10 3.844203095e-10 5.93794654e-10 2.048208989e-10 2.321264406e-10 2.257343921e-10 6.409589906e-10 2.599645751e-10 7.221225711e-10 3.234745884e-10 5.304098542e-11 2.040969091e-10 3.192068067e-10 3.152881404e-10 3.186842848e-10 3.144438106e-10 5.35855552e-10 2.967675438e-10 4.537658534e-10 1.411640313e-10 2.505499767e-10 4.866458128e-11 8.80836354e-11 1.698898722e-10 2.695201944e-10 2.061769526e-10 3.426909213e-10 1.441324258e-10 1.34745417e-10 1.613974011e-10 2.729041866e-10 2.531731036e-10 2.870494629e-10 1.813296956e-10 7.532218287e-10 3.704077182e-10 3.083235384e-10 2.641130942e-10 2.012958395e-11 1.305056257e-10 1.446210865e-10 2.113005956e-10 4.956525268e-10 2.457135756e-10 2.62834214e-10 7.924210341e-10 3.916652284e-10 3.147858915e-10 1.590231234e-10 6.560803849e-10 3.246768613e-10 9.770677939e-10 8.967771065e-10 4.47266871e-10 4.971969868e-10 4.033854576e-10 5.199034562e-10 4.565921248e-10 5.261588754e-10 3.728338476e-10 3.591634801e-10 4.50784237e-10 3.356775537e-10 3.099784648e-10 5.231818719e-11 9.984811132e-11 3.883258991e-10 3.464501226e-10 2.337505514e-10 3.29505754e-10 6.649935911e-10 5.743663338e-10 4.621657932e-10 2.787307196e-10 2.399266084e-10 4.590983851e-10 3.02266039e-10 8.925517837e-11 2.023081739e-10 3.103985891e-10 1.100024166e-10 5.566128816e-10 5.509007584e-10 3.071278032e-10 3.76077556e-10 7.823847523e-11 2.623952939e-10 1.912842083e-10 3.104055937e-10 3.38324066e-10 3.159280532e-10 2.484957208e-10 4.21530745e-10 3.864169418e-10 4.49746683e-10 2.083802063e-10 6.405595674e-10 2.203351185e-10 2.308578946e-10 1.439724566e-10 4.167448072e-10 6.008938459e-10 6.832463754e-10 3.660033613e-10 3.377438394e-10 8.225317362e-11 5.346206914e-10 3.890844013e-10 2.523363867e-10 3.696327062e-10 8.36029537e-11 5.665529978e-10 3.345103773e-10 3.860707743e-10 5.70078427e-10 3.326993181e-10 6.11757967e-10 6.719354669e-10 2.731572606e-10 4.259010639e-10 3.64965104e-10 3.946936587e-10 5.343676317e-10 4.02457347e-10 4.549083139e-10 5.199101045e-10 2.053912187e-10 2.545525544e-10 2.810784835e-10 3.291977628e-10 8.531399495e-10 2.53590688e-10 3.445840635e-10 1.953753249e-10 4.864812089e-10 2.766976497e-10 4.825067336e-10 3.47972341e-10 2.853182119e-10 3.792565972e-10 3.901445451e-10 1.189253353e-09 4.238282501e-10 3.339167126e-10 4.439223939e-10 2.007251069e-10 2.977736318e-10 8.405478981e-10 5.568411586e-10 6.403609858e-10 3.235228709e-10 3.672401702e-10 3.884976057e-10 4.007224083e-10 6.006905661e-10 7.829235153e-10 4.141601865e-10 5.249625827e-10 6.274712226e-10 3.083838172e-10 5.25551631e-10 4.935242693e-10 6.72059247e-10 9.993653013e-11 6.171277249e-10 5.701129725e-10 7.813856742e-10 2.775195769e-10 6.988616071e-10 1.51393456e-10 4.379752855e-10 1.133562371e-10 2.618457946e-10 1.632888193e-10 3.929008951e-10 2.816413299e-10 4.270184045e-10 2.53959859e-10 8.246649656e-11 1.814889721e-10 1.827220313e-10 6.3019266e-11 3.770168973e-10 2.52905995e-10 4.02982145e-10 1.360375527e-10 1.665627152e-10 8.073563728e-10 1.202150368e-10 3.44127793e-10 1.549267534e-10 1.747762881e-10 3.986158596e-10 3.606050153e-10 3.222402213e-10 6.735789856e-11 1.529987584e-10 5.744827787e-10 5.116759671e-10 3.497381776e-10 1.310183591e-10 2.850344816e-10 1.015072916e-10 2.820931175e-10 3.159698601e-10 1.844941362e-10 8.309770534e-11 2.35539339e-10 2.151880714e-10 2.455089757e-10 3.879498231e-10 5.245311728e-10 6.064418489e-10 1.715706574e-10 2.466512758e-10 3.791393439e-10 1.957907242e-10 3.430899228e-10 2.609194253e-10 1.866606817e-10 3.38949006e-10 1.659106854e-10 2.856686358e-10 2.133461992e-10 2.110964729e-10 5.040429246e-10 3.203155331e-10 3.769367011e-10 1.927872001e-10 4.583153543e-10 1.027007261e-10 1.634679541e-10 1.949215963e-10 2.822021571e-10 4.048786712e-11 2.507441471e-10 2.879796618e-10 3.066263457e-10 2.253201782e-10 1.428468655e-10 6.59961829e-11 3.179404578e-10 2.872236503e-11 7.466809333e-11 1.716645144e-10 4.142528625e-10 2.494300059e-10 2.253256359e-10 2.413887831e-10 9.57657581e-10 2.344846212e-10 5.155960047e-10 2.676962978e-10 3.76718414e-11 +4.234476982e-10 6.141314911e-11 1.86464456e-10 3.350082678e-10 8.192080729e-10 6.318261348e-10 1.212757929e-10 4.948835506e-10 2.727898493e-10 1.021002646e-10 1.417506496e-10 1.998135452e-10 1.297638789e-10 1.43159485e-10 1.272078026e-10 2.637990997e-10 1.631551678e-11 2.095744878e-10 1.380578915e-10 3.134516007e-10 1.509187977e-10 4.23394392e-10 1.252417736e-10 2.454443127e-10 2.546952162e-10 2.13125514e-10 2.312815783e-10 3.459807551e-11 6.56769222e-10 2.112707252e-10 3.240961598e-10 2.335272521e-10 2.439742475e-10 3.579385434e-10 2.828081904e-10 2.48501471e-10 1.352394819e-10 4.622863369e-10 2.069900995e-10 3.979088786e-10 1.603020265e-10 2.398478426e-10 2.044454003e-10 1.322777663e-10 5.097955275e-10 3.435509444e-10 3.423133324e-10 1.719060326e-10 1.558058313e-10 3.204049005e-10 2.767514934e-10 1.043404475e-10 3.114633244e-10 4.841301752e-10 7.570917425e-10 1.934940828e-10 2.529621364e-10 2.017558672e-10 1.012314547e-10 2.411071785e-10 3.941289233e-10 2.552207753e-10 3.696078978e-10 4.048076398e-10 4.564498335e-10 5.86407693e-10 6.053169006e-10 6.720283828e-11 4.180255835e-10 2.255787635e-10 2.18038287e-10 3.445546477e-10 4.000066975e-10 4.074205807e-10 1.131071297e-10 1.419069304e-10 3.256566469e-10 1.190504777e-10 2.959515497e-10 3.30614899e-10 3.727037388e-10 2.052721628e-10 1.386384048e-10 9.116991978e-11 5.415393715e-11 2.21001952e-10 2.518580383e-10 5.38531628e-10 6.258552653e-10 7.421543546e-11 3.93883484e-10 1.644979775e-10 4.730538917e-11 4.327720614e-10 1.472880703e-10 5.557864251e-10 5.019621946e-10 4.60378639e-10 6.491572465e-10 1.256551708e-10 4.377120809e-10 3.94182456e-10 4.640812024e-10 4.840364794e-11 2.021875014e-10 3.29711747e-10 7.427890614e-10 2.617501793e-10 2.562135474e-10 3.727089516e-10 4.174614009e-10 2.913917741e-10 3.981167223e-10 2.162837321e-10 5.438895328e-10 2.250852778e-10 4.652196722e-11 1.456843522e-10 4.572752527e-10 3.392410318e-10 1.593553646e-10 1.831203607e-10 5.795064052e-10 9.67201367e-11 7.029086607e-10 2.434506328e-10 3.579738697e-10 3.633632142e-10 2.937207374e-10 3.046076006e-10 5.321394584e-10 4.725779605e-10 4.853490042e-10 1.467543646e-10 1.766696917e-10 5.207109071e-10 2.981081689e-10 2.141981931e-10 3.044250345e-10 4.32748275e-10 1.272120247e-10 2.489000951e-10 2.414545534e-10 4.6416553e-10 1.974212707e-10 3.240801147e-10 6.83433379e-10 4.221746865e-10 3.167202577e-10 2.862285707e-10 2.332890861e-10 1.452014102e-10 2.432711129e-10 1.028156049e-09 9.536552077e-11 1.059304408e-10 4.706660129e-10 2.951741041e-10 2.570581676e-10 1.141963774e-10 1.538875362e-10 3.992169426e-10 2.032496948e-10 1.730802164e-10 3.419666399e-10 3.326296421e-10 5.306772109e-10 1.193611207e-10 6.643303251e-10 2.193414816e-10 3.436017316e-10 5.197509875e-10 6.824194389e-10 3.482282247e-10 7.089683276e-10 3.139470426e-10 2.964548369e-10 2.597258512e-10 5.388220971e-10 2.917227323e-10 9.03527135e-11 3.627129161e-10 2.634765055e-10 1.977241725e-10 3.754389898e-10 2.139986058e-10 1.207091508e-10 8.834624261e-10 3.414498821e-10 3.731561279e-10 4.586671143e-10 5.43332131e-10 1.52084411e-10 6.761804873e-10 2.647412491e-10 4.536236184e-10 3.207324111e-10 7.363231491e-10 5.525417631e-10 4.785848295e-10 6.935326744e-10 7.089593403e-10 4.998936437e-10 5.696269906e-10 3.028080669e-10 1.968610576e-10 3.545412857e-10 3.181624811e-10 7.15549564e-10 6.140029832e-10 3.480866292e-10 1.166641113e-10 1.53240659e-10 3.019866672e-10 3.57312252e-10 1.057138742e-10 7.753914613e-11 7.673673676e-11 1.683870304e-10 3.048503302e-10 2.34335796e-10 1.266644568e-10 1.330462245e-11 1.148469703e-10 4.372084797e-10 2.936780298e-10 1.489002105e-10 1.895275486e-10 2.670223254e-10 1.425157204e-10 1.976941317e-10 3.249929643e-10 1.295833199e-10 1.392634565e-10 3.858807284e-10 8.739074706e-10 4.22208517e-10 3.477309667e-10 5.776390142e-11 3.707205588e-11 9.886728996e-11 1.909687662e-10 3.48966695e-10 3.468130851e-10 3.869412395e-10 3.381571313e-10 2.451353076e-10 2.162972794e-10 2.170077202e-10 2.634346055e-10 8.553894842e-10 3.194934026e-10 3.424150352e-10 2.413349283e-10 1.795778777e-10 4.702696021e-10 2.651408239e-10 3.380133146e-10 2.650367361e-10 1.428627153e-10 7.890193655e-11 7.352105982e-10 2.621606315e-10 1.395205253e-10 3.238997511e-10 2.391105151e-10 1.134885313e-10 4.845578106e-10 4.453703455e-10 4.937792169e-11 2.557078741e-10 3.156090327e-10 3.216215879e-10 7.470944373e-11 1.030142649e-10 3.130708902e-10 2.264133044e-10 1.229934411e-10 7.439555417e-11 9.348532788e-11 4.235832417e-10 3.079472602e-10 6.603724267e-11 4.214892423e-10 3.415480902e-10 2.045001881e-10 2.923871463e-10 7.931613871e-11 1.531615052e-10 2.934018939e-10 1.277234879e-10 2.762940235e-10 5.29863871e-10 1.653579362e-10 3.094147876e-10 2.047486911e-10 2.417242196e-10 3.857683686e-10 1.872438586e-10 3.388531357e-10 +3.292346167e-11 1.417361282e-10 2.325306548e-11 1.474475391e-10 9.408600688e-11 4.836576575e-10 2.556307206e-10 2.54000903e-11 2.991892781e-10 3.712849024e-10 4.137190815e-10 7.209103308e-11 1.702602983e-10 2.706256259e-10 3.17782345e-10 1.67365085e-10 5.540778372e-10 4.585655242e-10 2.316918823e-10 8.40508539e-11 2.524718283e-10 2.580170472e-10 1.559330923e-10 2.382339277e-10 2.003353101e-10 1.882321784e-10 1.809004001e-10 3.050424413e-10 1.985343429e-10 1.104412846e-10 1.043550481e-10 4.317819896e-10 1.451948179e-10 2.171856425e-10 2.061899326e-10 4.993638289e-10 1.83275132e-10 3.355878824e-10 1.865656888e-10 9.089335207e-11 3.436871533e-10 2.754957478e-10 1.844119402e-10 2.592920681e-10 1.181272185e-10 1.321416482e-10 2.296364356e-10 7.13306861e-10 2.421678124e-10 8.576446259e-11 2.619290006e-10 3.405763105e-10 1.969015876e-10 3.170135275e-10 2.666910439e-10 2.851097858e-10 1.133911589e-10 2.278013363e-10 2.296809502e-10 2.517359775e-10 5.769397574e-10 3.990264043e-10 3.039712711e-10 3.050237108e-10 7.350474745e-11 2.680621954e-10 3.320853209e-10 2.134846612e-10 2.332594581e-10 1.27320576e-10 2.884167107e-10 2.677381153e-10 1.950527876e-10 1.91284328e-10 3.280778085e-10 7.900668097e-11 1.113169355e-10 1.436036786e-10 2.156989217e-10 4.385393849e-10 1.005567099e-10 1.603640002e-10 1.473317301e-10 3.939893053e-10 8.657050536e-11 2.761086622e-10 4.988347887e-10 1.580682816e-10 1.981840318e-10 2.01807006e-10 4.986139527e-10 7.169995915e-11 5.066698462e-10 4.418644224e-10 5.156950997e-10 5.766148562e-10 5.499757685e-10 3.093360013e-10 3.114252451e-10 1.296953669e-10 3.799564908e-10 7.738425075e-10 4.678786463e-10 5.848802248e-10 3.10867326e-10 6.391457876e-10 2.682380592e-10 4.733670887e-10 1.047564088e-09 7.528246774e-10 3.352258856e-10 1.625842329e-10 7.765327415e-10 3.956512991e-10 7.240011039e-11 3.080811424e-10 8.75245531e-11 5.047042339e-10 2.031161349e-10 4.57980448e-10 8.60040656e-10 2.707380508e-10 5.147207854e-10 2.573578045e-10 6.098645626e-10 2.552641839e-10 2.92192811e-10 2.465089167e-10 3.877493743e-10 3.19173966e-10 3.779529903e-10 1.837423274e-10 3.840314132e-10 4.162021115e-10 3.362886092e-10 3.401936044e-10 4.927269762e-10 3.715795661e-10 6.316685536e-10 1.238653122e-10 3.500787447e-10 3.595443809e-10 2.501353934e-10 3.086926629e-10 2.560563523e-10 2.523775279e-10 4.353346789e-10 2.409315345e-10 3.811203367e-10 1.772158304e-10 2.414447801e-10 5.083841469e-10 3.913674673e-10 7.550256057e-10 1.912996065e-10 5.54736052e-10 2.340765185e-10 4.270182206e-10 1.881566428e-10 1.38775604e-10 3.861780524e-10 6.295915907e-10 6.833429286e-10 7.276018956e-10 3.671835895e-10 2.680216741e-10 6.17130864e-10 2.79333104e-10 4.213054029e-10 4.667871716e-10 5.632668762e-10 3.478588361e-10 1.447249517e-10 4.812969642e-10 2.846725674e-10 6.500713163e-10 1.91643255e-10 2.476692855e-10 6.905531079e-10 2.914487113e-10 8.937865882e-10 3.995355567e-10 3.608969682e-10 4.434909386e-10 5.847385661e-10 1.864356663e-10 2.400853857e-10 4.900104878e-10 8.693313053e-10 2.578123527e-10 5.496215543e-10 1.200714854e-10 6.384236825e-10 6.660173862e-10 7.835964385e-10 7.109159963e-10 7.140950861e-10 4.494319412e-10 2.682555246e-10 5.021336124e-10 1.824053509e-10 4.049307181e-10 4.866303032e-10 2.890961545e-10 4.195233956e-10 2.623286881e-10 3.515885594e-10 4.264965502e-10 2.194994075e-10 4.362714957e-10 2.577345893e-10 1.746517969e-10 5.343616364e-10 1.859753595e-10 3.156572742e-10 1.066255031e-10 6.722877765e-11 1.990111388e-10 2.347717484e-10 1.764546832e-10 2.723170185e-10 8.680681984e-11 1.600275645e-10 1.106158533e-10 2.104735894e-10 1.447775202e-10 4.119491837e-11 1.837367477e-10 2.856475162e-10 1.165566682e-10 2.921551845e-10 6.134856979e-11 5.047817566e-10 2.72049925e-10 5.011699478e-10 1.002169196e-10 6.299328949e-11 5.403076775e-10 6.27125585e-10 2.408102157e-10 3.140253683e-10 2.017829526e-10 1.210661894e-10 3.397668608e-10 4.774935048e-10 3.091120615e-10 4.602224969e-10 5.86632042e-10 3.882186354e-10 1.779877456e-10 2.041676598e-10 3.380256304e-10 3.129138393e-10 3.157390079e-10 8.687379876e-11 2.191478918e-10 1.664825863e-10 3.154431411e-10 2.776630417e-10 1.250733108e-10 2.797093918e-10 1.003425537e-10 5.211883276e-10 7.55412091e-10 2.959188933e-10 3.059182571e-10 4.037903419e-10 4.296724664e-10 4.973299736e-10 3.037096409e-10 2.439893773e-10 1.649762488e-10 4.379018971e-10 2.434439725e-10 2.626413771e-10 2.070421608e-10 2.386988141e-10 9.241924827e-11 1.226790906e-10 1.038467696e-10 2.731646548e-10 1.225359579e-10 2.040535667e-10 2.697480039e-10 5.194407865e-11 7.930467336e-11 2.505998888e-10 2.783463437e-10 1.882168728e-10 1.136915005e-10 1.07331959e-09 8.187201985e-11 5.120295653e-11 3.187931135e-10 2.650146945e-10 2.828505647e-10 8.785062909e-11 3.377494224e-10 2.43840565e-10 1.791719817e-10 +1.961708027e-10 1.232488121e-10 3.083475933e-10 3.152553771e-10 2.89430682e-10 2.682603853e-10 7.201593953e-11 6.029074119e-11 3.467380925e-10 2.163272251e-10 2.68478064e-11 2.135028527e-10 2.899861304e-10 4.492667043e-10 1.859967033e-10 2.065315343e-10 7.196123545e-10 1.784776382e-10 3.42279397e-10 4.760491009e-10 2.559447914e-10 1.322524946e-10 2.507119229e-10 2.02251372e-10 7.107220143e-11 2.661665548e-11 2.876942634e-10 4.062595278e-10 8.151857156e-11 6.374667477e-11 5.18657765e-10 1.526242158e-10 1.840737768e-10 7.543739686e-11 3.619849315e-10 2.703427866e-10 3.102278489e-10 3.086315306e-10 2.625493316e-10 2.085565588e-10 2.668563201e-11 1.144074954e-10 3.868872499e-10 1.945544796e-10 2.260672318e-10 3.371136733e-10 1.692804642e-10 1.385804023e-10 1.861379595e-10 3.279433601e-10 1.172267418e-10 1.467004087e-10 2.47935546e-10 3.173993566e-10 2.290650578e-10 1.449409095e-10 1.370838133e-10 1.695212477e-10 4.587634878e-10 4.658791928e-10 2.903968868e-10 2.35077292e-10 1.485728202e-10 4.994781046e-10 4.111340787e-10 1.780001356e-10 2.704709895e-10 2.033382068e-10 3.586321604e-10 1.246277153e-10 4.016637819e-10 2.808994384e-10 1.938072071e-11 3.0081814e-10 6.432609626e-10 2.473083083e-10 4.057198104e-10 7.035947565e-11 1.495937229e-10 4.3573025e-10 1.106309299e-10 1.930468092e-10 2.386143031e-10 1.164882004e-10 4.603578806e-11 5.603264262e-10 1.972253903e-10 3.806778933e-10 2.229533986e-10 1.952440424e-10 1.100659607e-10 5.546993257e-10 2.062104662e-10 4.151843303e-10 6.117437758e-10 4.819574545e-11 5.500980054e-10 7.909550065e-10 2.421463504e-10 2.812028512e-10 5.007043083e-10 7.506357456e-10 5.247627247e-10 6.076629057e-10 2.671704951e-10 2.844690276e-10 1.162141595e-10 5.841604953e-10 3.815086205e-10 1.295580493e-10 3.635685452e-10 2.813595893e-10 3.205484023e-10 3.191613902e-10 3.23804558e-10 7.488967214e-10 4.19046705e-11 4.239612427e-10 4.177275071e-10 3.690217135e-10 3.384441729e-10 3.326178357e-10 2.370066729e-10 4.584195861e-10 1.135776923e-10 3.810107588e-10 6.296580812e-10 3.557915188e-10 2.834129364e-10 7.899251296e-10 1.909965195e-10 4.198173298e-10 5.804681811e-10 1.588507701e-10 5.108358878e-10 2.462610249e-10 3.892916415e-10 3.026571618e-10 3.277184193e-10 1.676439255e-10 4.970494422e-10 2.829975047e-10 2.018650652e-10 2.330177637e-10 1.303661647e-10 5.066870447e-10 2.341454772e-10 2.476567479e-10 6.022665936e-10 5.177975858e-10 1.631407822e-10 1.233547616e-10 4.331205577e-10 2.811856939e-10 1.99237839e-10 1.310684076e-10 5.424403284e-10 7.186335213e-11 4.950942011e-10 3.245270899e-10 2.021495184e-10 2.139250386e-10 4.374812254e-10 3.190236068e-10 3.594064915e-10 2.965936617e-10 4.841731409e-10 4.126715294e-10 3.597159059e-10 3.190471531e-10 1.951401786e-10 2.403397609e-10 2.072908767e-10 2.644649889e-10 3.25059307e-11 3.646669213e-10 3.491241668e-10 8.878482085e-10 2.537937469e-10 7.143377202e-10 4.260735698e-10 3.053413423e-10 3.87935581e-10 3.197250873e-10 2.967970793e-10 4.657801694e-10 4.783719033e-10 1.271743994e-10 5.181121991e-10 5.232780385e-10 2.641911172e-10 4.881461072e-10 3.183176718e-10 1.604262618e-10 3.031921036e-10 6.282794512e-10 6.930613739e-10 1.043198718e-10 7.791099734e-10 5.434129608e-10 3.779322195e-10 4.245126229e-10 2.993639981e-10 3.760128399e-10 1.817409705e-10 2.843810081e-10 3.987231548e-10 3.166475132e-10 3.125586566e-10 3.747237582e-10 2.698364377e-10 2.591218507e-10 3.048289186e-10 1.399965697e-10 1.813919459e-10 3.541837773e-10 3.559951506e-10 5.648240459e-11 4.049954648e-10 1.767265436e-10 6.336332167e-11 1.883964619e-10 1.473699722e-10 1.47088472e-10 4.868433308e-11 3.253855472e-10 2.297017214e-10 2.67234121e-10 1.322391468e-10 1.545272116e-10 6.383266396e-11 2.309387834e-10 5.019813426e-11 2.732126374e-10 2.115557309e-10 3.995944792e-10 1.492943147e-10 1.769558819e-10 1.964356259e-10 3.417932179e-10 1.485669159e-11 1.459721024e-10 7.062199495e-11 1.026295101e-10 4.840247511e-10 2.321560229e-10 1.315022001e-10 1.842086447e-10 4.867378402e-10 5.085911146e-12 1.204630305e-10 3.387061821e-10 1.896450025e-10 1.97571176e-10 3.246978206e-10 1.588917325e-10 6.717446587e-10 3.329126283e-11 1.690103435e-10 3.33486933e-10 1.29528759e-10 6.086716323e-10 4.315230893e-10 7.187303544e-11 7.811648943e-11 4.113125306e-10 1.065036073e-10 3.170103553e-10 2.134464003e-10 2.105962916e-10 5.313472148e-10 2.237197475e-10 3.731351445e-10 2.314554144e-10 2.548070426e-10 2.912309254e-10 2.571485029e-10 4.680006096e-11 5.044079217e-10 2.734240984e-10 3.452507897e-10 1.302423126e-10 3.473627066e-10 4.006170624e-10 1.666694245e-10 2.328609794e-10 1.832413781e-10 1.997297534e-10 1.896289081e-10 3.05333358e-10 5.276756155e-10 6.576927623e-10 2.219006904e-10 2.200435121e-10 4.449643598e-10 1.443063369e-11 3.585211894e-10 2.247774932e-10 4.292179582e-10 6.105400157e-10 +1.807084365e-10 3.085963878e-11 1.028207517e-10 4.718017284e-10 5.136407733e-10 2.280745742e-10 9.172678695e-12 1.156336844e-10 3.104568925e-10 2.788444166e-10 3.394309214e-10 2.152707118e-10 1.735334455e-10 2.259099794e-10 2.39655909e-10 1.094177945e-10 4.567846277e-10 1.390136891e-10 4.261906179e-10 6.206324723e-11 5.400156029e-10 1.64594344e-10 1.384252368e-10 8.421607099e-11 4.079106005e-10 3.814544839e-10 4.249834649e-10 3.279851217e-10 1.740695099e-10 2.454562795e-10 4.695889773e-10 1.818414552e-10 1.535524841e-10 3.059590384e-10 1.672671699e-10 4.098212629e-10 3.140301772e-10 5.580959594e-10 3.25756799e-10 3.376888198e-11 2.067049584e-11 1.443847301e-10 1.569463817e-10 3.727436184e-10 5.091987935e-11 3.40408828e-11 1.342074359e-10 3.146963966e-10 1.674482723e-10 4.355206584e-10 5.219130903e-11 5.952507196e-10 3.638612087e-10 5.073829953e-10 2.251279251e-10 4.049430494e-10 3.338527977e-10 2.987258764e-10 1.68304955e-10 1.910566329e-10 1.453528187e-10 2.762347849e-10 1.556943542e-10 3.221560815e-10 4.515591632e-10 8.319642572e-11 2.374952503e-10 1.385499005e-11 3.695182983e-10 1.242359914e-10 1.374416767e-10 4.900933593e-10 1.897613104e-10 6.314509018e-11 9.075774104e-11 2.160044411e-11 3.197371492e-10 7.508425416e-11 1.480150041e-10 3.934619512e-10 4.905845812e-10 1.54096515e-10 1.542258306e-10 1.8775686e-10 4.077175396e-14 1.881096309e-10 2.947236747e-10 1.709050638e-10 5.940065608e-10 1.582798834e-10 2.601792702e-10 1.395399813e-10 3.261699819e-10 3.559732726e-10 6.880867045e-10 1.375705841e-10 6.093643394e-10 4.485638243e-10 5.029024367e-10 4.277207496e-10 1.542988946e-10 1.04778594e-10 1.098444956e-10 6.700110635e-10 5.225900833e-10 1.278905401e-10 3.210030531e-10 4.281768373e-10 3.726222871e-10 7.265754336e-10 2.05612284e-10 3.646319372e-10 8.131490151e-11 1.462260825e-10 4.162060315e-10 5.648833956e-10 4.048144376e-10 6.934057042e-10 2.7369467e-10 3.795348096e-10 4.96638408e-10 3.077023783e-10 2.483353528e-10 3.975864454e-10 1.936396795e-10 7.084002718e-11 3.714241908e-10 4.403523779e-10 2.117703954e-10 3.774827743e-10 1.906814692e-10 2.088281786e-10 2.710550974e-10 1.700150021e-10 5.939521877e-10 2.334147959e-10 2.959886086e-10 4.187184278e-10 7.171248925e-10 4.49037647e-10 2.252462245e-10 6.362472476e-10 2.233815602e-10 4.809649941e-10 1.046859062e-10 9.356144905e-11 3.245229252e-10 2.063016206e-10 2.756519938e-10 3.140365951e-10 1.046257446e-11 4.319231741e-10 6.175316118e-11 4.238150069e-10 4.901100618e-10 1.976935438e-10 4.223318436e-10 3.660730493e-10 6.406112769e-11 8.05460438e-11 1.979017727e-10 4.517962312e-10 3.045806681e-10 1.260296521e-10 4.38361154e-10 4.784917794e-10 3.587833531e-10 2.625568656e-10 4.521832898e-10 3.479054099e-10 1.555639395e-10 3.021957671e-10 5.762566416e-10 4.390236812e-10 3.037324002e-10 4.804320719e-10 2.255276828e-10 1.553232981e-10 2.053283227e-10 5.219087207e-10 1.103561377e-10 5.004718142e-10 5.487856292e-10 3.303902693e-10 4.242949255e-10 5.279383299e-10 1.576381783e-10 2.406560654e-10 6.872762185e-10 3.869340722e-10 4.462513274e-10 3.837536417e-10 2.357474706e-10 9.448892457e-10 3.712305172e-10 6.03835706e-10 4.604094898e-10 2.498458284e-10 2.328902187e-10 3.135610356e-10 2.064072468e-10 5.640441609e-12 4.712822103e-10 2.203849884e-10 2.131656247e-10 6.92098464e-11 2.588296419e-10 2.957629908e-10 1.153479701e-10 1.599778299e-10 3.156574559e-10 3.519019378e-10 1.711905118e-10 1.623190282e-10 5.987121945e-11 2.46164538e-10 1.686315299e-10 1.709236653e-10 2.851588617e-10 3.743649531e-10 1.085138241e-10 1.40527776e-10 4.624984869e-11 3.804166573e-10 1.587167483e-10 5.087781777e-11 1.82095352e-10 5.879435791e-10 1.275250238e-10 9.001416065e-11 7.127407125e-11 1.707155033e-10 1.8735743e-11 1.240509611e-10 2.993121692e-10 4.78372859e-10 9.18728847e-11 2.697844342e-10 2.292351277e-10 2.775476905e-10 2.202588885e-10 2.456854525e-10 2.229042233e-10 7.023403781e-11 3.10200608e-10 1.84678415e-10 4.376965438e-10 2.101988483e-10 4.030617729e-10 2.415072233e-10 2.399338504e-10 3.899478352e-10 2.368385001e-10 1.585535412e-10 2.638758476e-10 2.567472302e-10 2.34636262e-10 1.82197348e-10 3.291285637e-10 2.503116794e-10 4.530080271e-10 1.800375901e-10 3.387881087e-10 4.945039895e-10 4.513367545e-10 2.281241032e-10 3.398217743e-10 1.120415586e-10 1.876537502e-10 2.086681597e-10 2.328837696e-10 3.378919535e-10 4.762747913e-10 3.415302718e-10 8.7081548e-11 4.787894403e-10 2.911990243e-10 5.772393329e-10 3.73726363e-10 4.994679096e-11 8.514384772e-11 3.920662946e-10 3.2527615e-10 1.577824066e-10 1.165339286e-10 3.933166591e-10 3.503739809e-10 3.473688559e-10 3.862858771e-10 2.165220914e-10 3.78554922e-11 3.455285868e-10 3.154215589e-10 1.424263311e-10 3.955366288e-10 1.49155494e-10 1.203663602e-10 1.867895256e-10 1.496049121e-10 4.446454161e-10 +2.79975814e-10 2.519504786e-10 1.960394853e-10 7.871888313e-11 2.314932624e-10 1.888019197e-11 2.406110704e-10 4.570198836e-11 3.67427532e-10 1.196579362e-10 3.836584086e-10 3.895359455e-10 1.373214632e-10 2.256319324e-10 2.58909074e-10 3.142221481e-10 1.855979359e-10 2.427152086e-10 9.106451552e-11 1.935520814e-10 1.988154188e-10 6.485193995e-11 2.408796615e-10 2.537376565e-10 9.674100527e-11 7.635562392e-11 1.69684767e-10 1.952024197e-10 2.128350891e-10 1.339422565e-10 3.185159812e-10 2.955049011e-10 5.417056324e-11 6.971781011e-11 1.770020321e-10 3.248190865e-11 2.294182242e-10 4.788309022e-10 6.240938584e-10 5.559836123e-11 2.962464974e-10 2.36051562e-10 2.116810333e-10 1.679254457e-10 1.128513201e-10 1.34529605e-10 7.525475391e-10 2.323481352e-10 1.60115703e-10 2.56465576e-10 5.245037846e-10 3.16570847e-10 1.21476945e-10 3.637442034e-10 6.41657387e-10 1.70331223e-10 4.913630397e-10 1.477062744e-10 7.321288894e-11 1.445140164e-10 1.615771897e-10 5.871489726e-11 1.167403559e-10 2.468791712e-10 1.714295754e-10 1.129663033e-10 2.223691373e-10 1.612820496e-10 1.522429798e-10 2.230753635e-10 3.283595629e-10 3.122320958e-10 4.377389899e-11 1.55112473e-10 2.454431075e-10 2.620423402e-10 5.871377784e-11 5.167494442e-11 7.244817164e-11 4.421356732e-10 1.951328442e-10 1.414612628e-10 1.336418898e-10 2.083944218e-10 2.276749869e-10 1.755068716e-10 8.762525965e-11 8.92792597e-11 3.288983514e-10 3.372072478e-10 4.316165617e-10 2.111019798e-10 1.506851989e-10 6.398363477e-10 2.504633854e-10 1.010499651e-10 6.679206128e-10 2.299135789e-10 4.32428643e-10 2.460458724e-10 1.747994418e-10 4.634630822e-10 2.738489082e-10 2.396104585e-10 3.371166431e-10 2.042853106e-10 7.425392545e-10 3.206078664e-10 3.289846437e-10 2.947707072e-10 3.253120652e-10 3.937693362e-10 4.00397606e-10 9.224031824e-11 1.995436461e-10 2.16692714e-10 2.561731948e-10 5.165082466e-10 3.315449277e-10 3.846575857e-10 3.334324216e-10 1.299193749e-10 3.004147913e-10 2.532306953e-10 3.219543856e-10 1.989964692e-10 2.918975451e-10 5.605578372e-10 5.499699765e-10 1.587993378e-10 1.046351085e-10 2.067359048e-10 5.236004349e-11 2.257217791e-10 8.412249248e-11 3.531250082e-10 3.115731582e-10 4.418857117e-10 1.975491334e-10 3.030893837e-10 2.5212481e-14 2.350131913e-10 3.429032691e-10 1.421061798e-10 1.091239282e-10 6.964529768e-11 3.147393338e-10 2.956422024e-10 3.391004717e-10 3.598888024e-10 3.352060247e-10 4.424491509e-10 2.758285068e-10 3.903601999e-10 7.440930711e-10 6.619564381e-11 4.235943315e-10 4.960215438e-10 1.761438988e-10 2.192995946e-10 2.742448395e-10 3.091572809e-10 9.493259569e-11 2.290303551e-10 2.774820666e-10 3.04258134e-10 2.655017716e-10 5.509308239e-10 1.344610583e-10 2.028541402e-10 1.787944454e-10 9.962172298e-11 4.192135362e-10 6.196699126e-10 2.026745037e-10 1.895322104e-10 5.944116323e-10 2.744189616e-10 6.571887429e-10 4.54195932e-10 2.31216972e-10 4.077142815e-10 6.440767478e-10 6.224773216e-10 6.164490464e-10 3.108315693e-10 8.161272867e-10 2.31425538e-10 3.825707264e-10 3.564530998e-10 5.047872228e-10 6.03150985e-10 4.143237108e-10 4.57293218e-10 1.880166329e-10 4.882860414e-10 2.81676271e-10 3.795499086e-10 3.361793323e-10 1.019481718e-10 2.033289582e-10 3.729827583e-10 1.786951352e-10 3.129999819e-10 9.116463053e-11 2.943568454e-10 2.305514427e-10 4.600795606e-10 3.467241478e-10 4.391616583e-10 2.533432795e-10 1.026256063e-10 5.151508872e-10 1.514838062e-10 3.330274295e-10 1.775181224e-10 1.646710818e-10 2.67110014e-11 2.761448997e-10 4.829929853e-11 2.02520788e-10 4.595077235e-11 2.229964061e-10 2.651370998e-10 2.714725086e-10 2.043433548e-10 1.026719177e-10 1.478363095e-10 3.22577315e-10 8.349184243e-10 2.506730726e-10 1.72318099e-10 6.059351616e-11 2.250990546e-10 5.509681287e-11 8.370572985e-11 1.471442172e-10 1.926682285e-10 3.964006699e-10 2.341318999e-10 1.282968436e-10 2.223577354e-10 4.744892166e-10 1.591577674e-10 1.256866576e-10 1.885767788e-10 1.713557307e-10 5.056754264e-11 1.159529897e-10 5.730200385e-10 2.097291664e-10 4.034745915e-10 4.214344172e-10 2.044207599e-10 1.09623363e-10 6.792177447e-11 2.983080048e-10 2.568966445e-10 1.585824878e-10 1.514492579e-10 1.35044306e-10 6.265504191e-11 4.228266107e-10 3.338155613e-10 1.27447842e-10 3.502519648e-10 5.414976602e-10 3.241790864e-10 1.285809588e-10 6.304064748e-11 2.543473487e-10 1.507928255e-10 8.674546523e-11 5.280186007e-10 2.395884805e-10 3.286734899e-10 3.144776216e-10 1.314346239e-10 1.972845587e-10 1.780814851e-10 2.021523512e-10 4.153129428e-10 1.597181143e-10 1.49613123e-10 1.513602963e-10 2.120527885e-10 7.389738349e-11 6.218769108e-10 1.627109947e-10 2.423765625e-10 2.664549017e-10 1.063492754e-10 4.004179879e-10 2.296084827e-10 2.982913085e-10 2.546335377e-10 1.903123187e-10 1.121182382e-10 4.601502835e-10 2.463863971e-10 +7.071550271e-11 1.620107713e-10 3.245811418e-10 3.922882812e-10 2.024760431e-10 9.586069098e-11 2.205261666e-10 2.135501154e-10 1.981972934e-10 1.815313179e-10 2.697095069e-10 2.408513395e-10 2.392080259e-10 3.770826286e-10 4.996124177e-10 5.863435603e-11 2.9964903e-10 2.824919048e-10 3.018829164e-10 1.357458826e-10 3.078697209e-10 4.156869602e-10 1.816570652e-10 1.851903787e-10 1.944653625e-10 7.472061391e-11 4.22208467e-11 1.911917058e-10 6.668837198e-11 4.557600509e-10 1.847208537e-10 7.424045412e-10 6.317691596e-11 1.27735653e-10 1.084070883e-10 2.623469135e-10 6.055824515e-11 4.931201635e-10 2.752853911e-10 1.076111576e-10 5.710540541e-11 2.785792822e-11 1.654016e-10 8.283715594e-11 1.361444066e-10 1.097941414e-10 7.254132224e-11 1.890769223e-10 7.500387237e-11 5.28964715e-10 1.482210226e-11 4.691612426e-10 3.95311054e-10 2.91157899e-10 9.066992263e-11 4.72283854e-11 3.421651486e-10 3.750835646e-10 1.7785738e-10 1.123826463e-10 2.481619561e-10 1.657374829e-10 1.507280822e-10 1.77379144e-10 1.111047868e-10 4.292614168e-10 1.719497697e-10 1.794886172e-10 3.671916631e-10 1.013791954e-10 3.033274098e-10 2.947038433e-10 2.40374269e-10 2.278279107e-10 2.48652031e-10 1.640229705e-11 2.399108825e-10 2.682492955e-10 3.130511363e-10 3.166581893e-11 5.10086359e-10 9.761493509e-11 2.554099901e-10 3.543982952e-10 2.827974242e-10 1.745120991e-10 1.700251084e-10 2.80275851e-10 2.560330243e-11 1.783330732e-10 5.393495586e-11 3.077887621e-10 2.341450725e-10 2.287192726e-10 8.288861474e-11 6.539663308e-10 2.901293424e-10 8.580267162e-11 1.133930218e-10 8.749568598e-11 2.798911119e-10 4.952034062e-10 2.78338806e-10 6.142884582e-11 2.782148998e-10 4.34705225e-10 5.678793023e-10 2.655324351e-10 2.763189065e-10 3.060788435e-10 3.652183884e-10 9.727236456e-11 2.525150749e-10 4.260695865e-10 2.69595599e-10 4.009519084e-10 1.304240742e-10 1.876111141e-10 1.348158882e-10 3.257827513e-10 4.924895264e-10 2.23307241e-10 1.81848281e-10 2.750266659e-10 3.194168659e-10 4.756531386e-10 3.371285004e-10 8.248659282e-11 3.231447693e-10 2.095974902e-10 2.530349552e-10 4.486781944e-10 3.157073871e-10 3.985895482e-10 2.124215759e-10 5.302812119e-10 2.475235722e-11 3.054552595e-10 6.371560467e-10 8.849463874e-11 2.476786968e-10 5.153139283e-11 4.64954762e-10 3.969685194e-10 3.276725555e-10 7.521310219e-10 3.227569354e-10 2.755078871e-10 2.633093429e-10 4.721504875e-10 3.482745313e-10 1.109951995e-10 7.110217066e-11 4.854388615e-11 4.595736567e-10 1.07744831e-10 4.376321365e-10 2.338926755e-10 1.482474409e-10 4.023269757e-10 1.638392049e-10 5.262200663e-10 4.228471377e-10 4.796828879e-10 4.851011835e-10 1.766094311e-10 4.853434354e-10 3.221619927e-10 3.81403719e-10 3.318699853e-10 3.076724721e-10 5.382970938e-10 1.828748132e-10 2.660546276e-10 1.814019413e-10 2.118997441e-10 1.199598636e-10 1.196459473e-10 2.489200812e-10 3.973485025e-10 1.200633749e-10 3.196787457e-10 9.237513854e-11 4.437771812e-10 2.71435067e-10 1.600486985e-10 3.795302727e-10 2.594720599e-10 3.181931948e-10 2.095371628e-10 7.97361141e-10 1.504004168e-10 2.740347971e-10 2.184863806e-10 3.169352846e-10 4.545220032e-10 3.880231409e-10 5.50132207e-10 6.177882822e-10 1.323484276e-10 1.86837459e-10 4.294197775e-10 1.50923041e-10 5.581228651e-10 3.706566881e-10 2.608066993e-10 4.895874792e-10 8.481563322e-11 3.817799889e-10 1.080090423e-10 1.692528241e-10 5.243648039e-10 5.420195181e-11 7.887130563e-11 1.821831883e-10 2.302260646e-10 1.69301532e-10 8.681483636e-11 1.605898043e-10 3.900831912e-10 2.248033996e-10 2.617487818e-10 2.10313849e-10 1.542800196e-10 1.931679913e-10 2.677615654e-10 3.790184186e-10 1.096002787e-10 3.031672953e-10 1.216843941e-10 3.370763314e-10 2.888433446e-10 1.52085903e-10 1.095124095e-10 1.440818057e-10 3.190614046e-10 4.615951242e-11 2.721183609e-10 1.414219324e-10 1.22091909e-10 2.180805572e-10 8.196232807e-11 1.755097854e-10 8.883501141e-11 2.286937096e-10 3.080696525e-10 4.649844756e-10 1.608520859e-10 4.846603968e-11 1.606456129e-10 4.09465787e-10 1.730652815e-10 1.867828104e-10 6.399759633e-11 4.377396776e-13 7.233246992e-11 3.724925876e-10 4.348729367e-10 1.785414851e-10 1.893699353e-10 2.894558084e-10 1.868618863e-10 1.297766309e-10 1.959634734e-10 1.051936648e-10 2.786200998e-10 2.287418729e-10 3.617232169e-10 5.379175727e-10 1.275067032e-10 2.804786957e-10 1.045762097e-10 8.136973792e-11 2.56624159e-10 2.289787242e-10 2.399500925e-10 2.399462017e-10 8.436499509e-11 5.698997283e-10 4.641476408e-10 7.808040634e-11 2.020050903e-10 8.222725293e-11 2.757681812e-10 6.315404602e-11 2.507151861e-10 9.319493848e-11 5.110063458e-12 3.771005206e-10 1.526492275e-10 2.969903124e-10 5.668785891e-11 6.052544848e-10 9.135563116e-11 9.886085934e-11 1.736238813e-10 1.494828009e-10 1.238059326e-10 5.092593784e-11 3.034506885e-10 +6.393917736e-11 1.581587813e-10 1.033493687e-10 9.84204746e-11 4.24314588e-10 1.778597379e-10 9.271604157e-11 2.206519692e-11 1.258884869e-10 5.9284454e-10 3.398031441e-10 1.673957264e-10 2.664052899e-10 2.346192342e-10 2.531917908e-10 2.855628161e-10 8.311050733e-11 1.136342899e-10 4.281678818e-10 1.375843802e-10 5.285308352e-10 1.299521253e-10 9.195022112e-11 5.94811525e-11 1.373051594e-10 1.169652876e-10 2.375739618e-10 1.758069793e-10 9.959527756e-11 4.578535719e-10 1.429316914e-10 4.85735787e-11 2.636736435e-10 2.86202577e-10 1.745007081e-10 1.14685544e-10 8.522591132e-11 1.862611772e-10 4.598475496e-10 2.281407125e-10 4.224021094e-10 2.090881507e-10 5.597191174e-11 1.974391919e-10 5.225577767e-11 1.553300716e-10 3.134048093e-10 2.992860351e-10 1.191329366e-10 2.799367339e-10 1.495858268e-10 1.181847741e-10 2.214051176e-10 1.438245528e-10 6.909472294e-11 3.973614399e-10 2.142313907e-10 5.577762826e-11 2.697617723e-10 4.588857444e-10 1.045857792e-10 7.137393673e-11 4.485197792e-10 1.34279154e-10 1.501537901e-10 2.195196888e-11 2.221709516e-10 3.663679206e-10 2.292756172e-10 1.366509187e-10 3.031579343e-10 2.918421954e-10 2.466388809e-10 1.538913898e-10 1.215291639e-10 2.769432997e-10 1.481634453e-10 1.130485815e-11 2.686829319e-10 2.454513074e-10 1.033235032e-10 5.463917664e-11 1.495821599e-10 2.429906776e-10 7.544140732e-11 2.232728631e-10 1.677931721e-10 3.431788881e-15 1.564278578e-10 2.124931222e-10 2.709856713e-10 2.535636838e-10 1.228316637e-10 3.371703748e-10 3.603831605e-10 6.786900904e-10 3.797705336e-10 8.9577155e-11 2.108291003e-10 3.345405434e-10 1.185195658e-10 4.265377499e-10 3.533787846e-10 2.418609341e-10 1.248456345e-10 1.828580507e-10 2.271332025e-10 3.52704085e-10 5.222405536e-10 3.410547525e-11 6.979149322e-10 5.899482944e-10 4.103317345e-10 1.689948403e-10 1.983616292e-10 3.82124406e-10 1.418441108e-10 2.614157867e-10 3.941936263e-10 1.531271336e-10 3.159324393e-10 1.352570315e-10 3.999318196e-10 9.027185473e-11 3.749839072e-10 4.430957689e-10 4.249040959e-10 3.100428556e-10 4.031222962e-11 1.932096106e-10 1.458783982e-10 3.537936308e-10 1.226665577e-10 4.43525117e-10 2.62041518e-10 1.504664833e-10 4.815076556e-10 4.896098647e-10 3.579459036e-10 1.978369833e-10 4.943804739e-11 4.162226692e-10 2.798372312e-10 2.747207432e-10 3.218011341e-10 6.187425138e-11 1.920086081e-10 5.004316662e-10 3.436252211e-10 1.794181824e-10 1.81514735e-10 2.310938206e-10 2.647459271e-10 4.589409189e-10 2.23536952e-10 3.456945025e-10 3.457705842e-10 1.761973032e-10 1.77970295e-10 4.901352689e-10 5.490254161e-10 2.316399973e-10 1.938262574e-10 2.938929188e-10 3.813934385e-10 3.422788173e-10 1.858763799e-10 3.78204132e-10 1.488909515e-10 4.141939204e-10 1.638118722e-10 5.37065683e-10 7.05832524e-10 2.153821931e-10 1.189249599e-10 7.239207352e-11 3.738343192e-10 1.821250114e-10 3.538817288e-10 3.65090711e-10 2.3280291e-10 5.875773151e-10 3.287299626e-10 1.89094271e-10 3.358883892e-10 2.157202969e-10 6.273036099e-10 4.255644383e-10 1.700474498e-10 4.459810084e-10 5.422486755e-10 5.340822672e-10 3.57787437e-10 1.907371198e-10 1.430937944e-10 2.907992965e-10 7.227271153e-11 2.997622552e-10 3.104237634e-10 4.839649386e-10 2.716604398e-10 1.841069581e-10 1.709026663e-10 2.537404697e-10 2.956868844e-10 5.146926278e-10 6.774462544e-11 2.224107165e-10 1.695500062e-10 3.304070551e-11 2.019943578e-10 4.336078447e-10 5.493378334e-11 4.95140393e-10 6.976042005e-11 3.133399833e-10 2.604600812e-10 1.993728426e-10 2.107244824e-10 1.139070473e-10 1.112955772e-10 2.396477143e-10 1.691763753e-10 7.515967352e-11 2.032852508e-10 4.259702799e-11 2.189095665e-10 1.308935001e-10 3.205040713e-10 1.318799562e-11 1.375216031e-10 3.308537247e-10 1.491970794e-11 2.429641338e-10 4.393386447e-10 2.835063943e-10 1.474121266e-10 1.726961466e-10 1.25475238e-10 2.115787635e-10 4.525152553e-11 1.212774394e-10 8.631292344e-11 6.76145894e-11 2.720908539e-10 4.152530327e-10 2.886937465e-10 1.667651622e-10 2.392571736e-10 3.018344132e-10 2.835945858e-10 7.707916702e-11 1.239404936e-10 2.830830392e-10 6.285737851e-10 2.478353722e-10 2.938104368e-11 2.066706457e-10 1.487392719e-10 2.363755242e-10 1.475319917e-10 4.041098675e-10 1.746501665e-10 3.542543933e-10 7.808702521e-11 2.860211257e-10 1.374668293e-10 2.209221729e-10 1.230603064e-10 4.923780794e-10 1.674771069e-10 1.71664815e-10 2.022936201e-10 8.099779052e-11 9.689259042e-11 2.028764022e-10 2.043649587e-10 2.073764882e-10 3.357361705e-10 2.773072454e-10 3.8767395e-10 4.725591398e-11 5.801833704e-10 6.191085759e-10 8.032305558e-11 9.602470228e-11 1.594890126e-10 3.323246145e-10 1.13865402e-10 2.788820902e-10 2.140463259e-10 3.741888036e-10 3.76468366e-10 2.141049655e-10 1.902903077e-10 2.479231127e-10 1.325694682e-10 4.388138872e-11 1.158761072e-10 1.872952709e-10 +2.44608208e-11 7.062999041e-11 2.551369349e-10 2.245400317e-10 2.046760923e-10 8.643153348e-11 1.427042227e-10 1.221418242e-10 8.726033563e-11 3.358930512e-10 2.380372412e-10 1.776169748e-10 3.458415612e-10 1.846698177e-10 2.531329176e-10 1.383497743e-11 2.92941677e-10 1.494003834e-10 7.742164681e-11 1.486250022e-10 1.795216568e-10 5.233976153e-11 6.89525797e-11 4.170903231e-10 1.987308361e-10 1.774663133e-10 6.375743172e-11 2.313277762e-10 2.355932806e-10 1.54324933e-10 3.621234883e-10 5.6126991e-11 2.754554155e-10 3.6144626e-10 1.466074296e-10 1.999179173e-10 1.17729931e-10 1.521258152e-10 1.841085014e-10 2.323024282e-10 9.467613937e-11 3.444820102e-11 9.564001414e-11 3.356112054e-10 6.340241422e-11 1.807094134e-10 3.680538062e-10 2.684994813e-10 1.226475805e-11 3.674772105e-10 3.201939112e-10 6.605073151e-11 1.039586083e-10 1.435923818e-10 2.477178251e-10 2.681392384e-10 1.325805406e-10 1.72204151e-10 1.393971771e-10 2.350810864e-10 1.19191134e-10 3.710667868e-10 2.249330784e-10 2.313291257e-10 5.324954661e-10 2.428613799e-10 2.063576959e-10 4.304256319e-11 1.195528119e-10 1.736442175e-11 1.091585622e-10 1.854842314e-10 2.95210362e-10 2.453412107e-10 1.682679262e-11 1.307429804e-10 1.057695975e-12 1.109729846e-10 4.601680866e-10 2.114716046e-10 2.115210981e-10 1.64335717e-10 2.348019346e-10 2.226498245e-10 1.05147342e-10 4.15065677e-11 9.745410806e-11 6.209296428e-11 7.775810199e-11 1.97020801e-10 2.077569155e-10 5.323223014e-10 5.200062747e-10 2.576864918e-10 3.949441783e-11 1.337241857e-10 1.215971424e-10 1.456079471e-10 1.747220764e-10 3.619331149e-10 2.531025721e-10 1.369329196e-10 2.13449441e-10 1.432481694e-10 5.199526147e-10 3.963822255e-10 5.04362996e-11 7.474216532e-11 7.067439054e-10 3.532918284e-10 5.382368073e-10 1.927675991e-10 2.158743826e-10 3.842880795e-10 3.350905036e-10 5.90772679e-10 1.72303064e-10 2.46840678e-10 2.772787243e-10 2.940450241e-10 4.521010126e-10 1.701241167e-10 8.479376351e-10 1.903308445e-10 3.483940006e-10 5.305918485e-10 3.088827061e-10 2.828281789e-10 2.286458162e-10 3.396788955e-10 2.178148358e-10 4.685580126e-10 2.778705705e-10 2.439623197e-10 1.409960707e-10 5.835271261e-10 3.292078644e-10 8.835135423e-11 3.689831609e-10 1.974175695e-11 2.468099698e-10 3.254124314e-10 6.723834023e-10 2.94550333e-10 2.722685045e-10 4.817565035e-11 3.787241244e-10 1.278642075e-10 2.231199308e-10 4.552764813e-10 1.139624089e-12 1.553787896e-10 7.529474084e-11 4.285316727e-10 6.102670943e-10 1.804944009e-10 2.569282456e-10 1.633512867e-16 4.402651722e-10 2.595306705e-10 3.322828912e-10 4.332763405e-10 2.347629321e-10 4.931679181e-10 3.283041889e-23 5.319026251e-10 4.399331807e-10 2.804914211e-10 1.750881121e-10 4.366505557e-10 1.930149073e-10 6.012706541e-10 9.172919337e-11 5.829740373e-10 1.203289073e-10 1.228233007e-10 4.696210087e-10 4.672133403e-11 8.307049984e-11 1.223133961e-10 8.248270406e-10 2.607535151e-10 3.304268144e-11 9.173738113e-11 8.70532239e-10 4.701984902e-10 1.252716465e-10 1.802447389e-10 1.837506405e-10 5.923156696e-10 4.165693569e-10 1.007534629e-09 2.524943634e-10 2.832776041e-10 4.069761195e-10 3.46411011e-10 2.889099982e-10 1.844752062e-10 1.484354461e-10 3.287276721e-10 3.478599635e-10 2.199611155e-10 1.273910668e-10 6.875925602e-10 1.211815443e-10 3.39789029e-10 2.148841551e-10 3.032613595e-10 1.45897464e-10 1.539776749e-10 2.021096978e-10 2.709333689e-10 1.63996703e-10 4.65938437e-11 2.53774947e-10 4.11260775e-11 7.739956066e-11 6.268788161e-11 1.214090984e-10 7.018775777e-11 8.326235819e-11 3.946077062e-10 3.656583123e-10 1.707014359e-10 2.711203976e-10 1.036654731e-10 9.700684923e-12 4.902768532e-11 2.327769707e-10 3.601224557e-10 1.380956897e-10 9.06146747e-11 4.620098276e-10 1.946037899e-10 2.463416582e-10 8.832450117e-11 2.139223678e-10 1.057105968e-10 1.311345234e-10 1.88173357e-10 1.575722485e-10 1.47905574e-10 3.497980619e-10 2.098086848e-10 1.613721802e-10 5.894707168e-10 1.588022168e-11 3.294648301e-10 2.463867114e-10 1.370774161e-10 2.733173975e-10 6.920787104e-10 2.245538202e-10 1.161389124e-10 2.32159462e-10 1.047823758e-10 1.075452124e-10 3.353483069e-10 2.620499346e-10 1.402661362e-10 2.81022514e-10 3.510249305e-10 9.200610335e-11 3.394059151e-10 8.63216387e-11 3.250392484e-10 2.172857052e-10 1.107039311e-10 1.526266711e-10 7.989314597e-11 8.769583868e-11 4.420846175e-10 3.614293597e-10 1.888823672e-10 6.775841201e-11 2.86346467e-10 1.065160304e-10 8.554603748e-12 1.653611178e-10 1.544008229e-10 9.378244916e-11 4.075134033e-10 2.398613716e-10 1.533487279e-10 2.2334622e-10 3.170128277e-10 2.419125593e-10 3.430528106e-10 2.54575854e-10 1.609204607e-10 1.535200827e-10 2.265500523e-10 2.963179723e-10 5.874573947e-11 1.188262209e-10 7.615545996e-11 6.648628372e-12 1.798243407e-10 5.714243746e-11 1.677296144e-10 +2.376644505e-10 4.035591096e-10 1.296330674e-10 2.240783968e-11 1.108067055e-10 6.683788167e-11 8.397333343e-11 1.290137225e-10 6.188130676e-11 6.370489684e-11 2.572578988e-10 1.063559465e-10 5.077704514e-11 7.23544891e-11 3.414017111e-10 1.127854849e-10 1.183815058e-10 2.232482345e-11 4.025938231e-10 1.220200851e-10 4.16884302e-10 8.293073062e-11 1.753266028e-10 2.151540715e-10 3.767396293e-10 1.592000897e-10 2.647062669e-10 1.971573013e-10 1.467982863e-11 1.777989349e-10 5.717824542e-11 1.809506144e-10 9.998510413e-11 3.059236151e-10 5.241435069e-10 3.280726349e-10 2.32272416e-10 9.965101124e-11 3.342978212e-10 3.046972912e-10 2.000875291e-10 1.17543143e-10 1.85557747e-10 8.204636871e-11 2.16960868e-10 8.959399416e-11 2.60178499e-10 2.182009034e-10 7.917407547e-10 4.677782852e-11 2.00372482e-10 1.064950807e-10 1.24602285e-10 2.302925629e-10 1.342330997e-10 2.97177496e-10 1.086379226e-10 4.232016671e-10 8.897784925e-11 1.697191384e-10 4.340004174e-11 1.957364583e-10 8.712470101e-21 1.56605895e-10 9.640754033e-11 1.896050813e-10 8.708616625e-11 2.123770645e-10 4.317559187e-11 1.044773427e-10 2.738287403e-10 1.449294378e-10 1.287754011e-11 3.545525933e-11 2.339618658e-10 2.860763737e-10 1.508619641e-10 3.621808298e-11 2.295917386e-10 2.367293388e-10 8.640860549e-11 5.890673161e-11 3.410942953e-10 1.141627616e-10 1.895295985e-10 2.433324275e-10 2.590287252e-10 1.467926746e-10 1.518017479e-10 1.331695654e-10 1.007698069e-10 2.3704123e-10 1.172667977e-10 1.714806904e-10 2.022293533e-10 2.867596047e-10 2.82595367e-10 1.179302113e-10 1.285403491e-10 4.931552659e-10 1.874827241e-10 1.630008958e-10 4.322542789e-10 4.088743939e-10 4.927351502e-10 3.551501281e-10 1.637870793e-10 1.040227974e-10 2.176199292e-10 5.383568253e-10 3.194751921e-10 1.577892739e-10 4.339704071e-10 3.043667476e-10 2.485810828e-10 4.174130361e-10 3.487855715e-10 9.376838759e-11 6.153046515e-10 4.451603992e-10 3.433122559e-13 1.834415217e-10 2.069673749e-10 1.670459398e-10 4.087223126e-10 2.621390056e-10 5.483365512e-10 3.183977184e-10 4.810461393e-10 7.037998801e-11 2.529004241e-10 2.309418955e-10 3.066026587e-10 2.963948816e-10 1.783950747e-10 1.095005365e-10 3.436406911e-10 6.93789037e-11 9.426368385e-10 1.767251125e-10 1.951273626e-10 1.610048291e-16 2.018753842e-10 3.908884873e-10 2.079235978e-10 4.221374227e-10 5.276323961e-10 1.290464772e-10 2.436633548e-10 1.561781012e-10 1.075389584e-10 1.346659562e-10 1.069490157e-10 2.438952977e-10 1.504267001e-10 1.507117341e-10 1.138641502e-10 2.012328386e-10 3.17853579e-10 4.668100653e-10 1.65287912e-10 2.162600107e-10 5.226175717e-10 4.34477639e-10 7.049329909e-11 1.742382171e-10 2.036525451e-10 2.588679306e-10 3.353453037e-10 3.471915834e-10 8.755940894e-11 0 3.351512792e-10 3.301276161e-10 4.253547846e-10 2.233107366e-10 3.438264222e-10 3.894939438e-10 2.366348728e-10 2.646486186e-10 1.097054924e-10 7.194569361e-10 4.619303378e-10 4.514549799e-10 2.768841948e-10 5.380559549e-10 1.152565848e-09 2.92567306e-10 3.059918355e-10 1.130265886e-10 1.790884825e-10 4.379988709e-10 3.691460713e-10 2.847248212e-10 3.360681077e-10 1.637819473e-10 2.40968974e-10 1.154637195e-10 2.575614384e-10 6.416280217e-11 1.467168527e-10 1.587634257e-10 4.778844346e-11 1.210307671e-10 4.97852077e-10 9.226363978e-11 2.845396613e-10 3.012026497e-10 1.342114506e-10 1.764806937e-10 1.395056512e-11 1.371620598e-10 6.653584838e-11 9.699850347e-11 2.108414535e-10 3.223116391e-10 2.382584344e-10 8.109506201e-11 4.189323054e-10 1.401434696e-10 8.334122347e-11 9.503159775e-11 1.138274829e-13 1.434805784e-11 1.057391302e-10 3.066598124e-10 8.210563974e-12 7.99421107e-12 2.767680533e-10 8.09037865e-11 8.308647665e-11 2.479976347e-10 6.859773628e-11 1.895000177e-10 1.674813478e-10 4.523386878e-11 8.653406695e-11 1.948798117e-10 2.223400242e-10 7.952515589e-11 1.786568721e-10 1.836667986e-11 1.278076089e-10 3.662127358e-10 1.619116056e-10 1.170322059e-10 1.918489924e-10 5.554604314e-10 8.470630686e-11 3.368804781e-10 3.232712599e-10 3.804134459e-11 2.719532748e-10 1.151749289e-10 2.032907675e-10 3.230060495e-10 2.21054828e-10 7.637891596e-11 1.032220463e-10 9.664142825e-11 1.055105389e-10 1.784960906e-10 2.063663513e-10 3.809862814e-10 1.222655907e-10 1.047783342e-10 2.097285585e-11 3.858843475e-11 9.245193066e-11 1.335640619e-10 1.537888011e-10 1.622188943e-10 3.108110768e-10 2.971063782e-10 5.40952159e-11 1.035868378e-11 2.51813327e-10 9.649631513e-11 1.686801241e-10 1.602639812e-11 7.131829894e-11 1.659277922e-10 1.250678207e-10 2.439037183e-10 1.595712792e-10 6.951003369e-10 2.561330553e-10 3.27236771e-10 2.830235546e-10 1.049383065e-10 1.155776796e-10 5.757378307e-11 5.522941705e-11 3.338382997e-10 1.504290007e-10 1.37477667e-10 2.045718177e-10 8.012593422e-11 2.25166723e-11 4.560393187e-11 +1.457106813e-10 2.569823727e-10 5.558280198e-11 1.859937927e-10 4.100984799e-12 3.183846031e-10 8.148236936e-11 1.095305934e-10 1.898462864e-10 2.905315815e-11 8.892346444e-11 5.236265688e-11 1.18026752e-10 7.245547322e-11 1.61041181e-10 1.419534894e-10 1.100867309e-10 1.451616974e-10 1.538944421e-10 2.346208761e-10 2.974791099e-10 3.551646917e-11 8.26754457e-11 2.475148308e-10 5.309872146e-10 1.296766456e-10 8.719005431e-11 4.135232035e-11 1.502543034e-10 2.45723667e-10 7.558308993e-10 1.314310812e-11 9.803578157e-11 1.989440785e-10 3.145770111e-10 1.47711093e-10 7.040536373e-11 1.461012782e-10 7.727358718e-11 1.592059094e-10 5.389807158e-11 2.193484966e-11 3.162144174e-10 1.606579006e-10 1.054503456e-10 1.827495138e-10 3.728383139e-10 3.508272931e-11 1.922298907e-10 4.742414806e-11 4.197269957e-10 7.197747912e-11 1.157171575e-10 3.067828566e-10 3.168928125e-10 2.255225598e-10 9.32223192e-11 3.355522127e-10 2.496661777e-10 1.054980302e-11 6.792519083e-11 5.273746715e-11 3.077489116e-10 1.241287872e-10 9.744086256e-11 2.318119292e-10 3.714711508e-11 1.67603171e-10 1.626880472e-10 2.565082421e-11 1.550717077e-10 2.011703993e-10 7.503060622e-11 1.483504716e-10 2.271705631e-10 8.694751868e-11 1.008744837e-10 3.321555892e-11 3.950817969e-10 6.59491746e-11 3.743381215e-11 7.651197593e-11 4.921180152e-11 1.147154674e-10 8.597837207e-11 2.709331513e-10 6.986483694e-11 3.060977537e-10 9.326648584e-11 7.105317888e-11 9.48803106e-13 1.181911735e-10 2.907204831e-10 6.491374773e-11 2.746943056e-10 1.822183144e-10 8.28240892e-12 3.102538923e-10 1.99709715e-10 3.503712727e-10 4.355258421e-11 1.2268231e-10 1.170344378e-10 2.110187177e-10 1.107526543e-10 1.574082165e-10 4.408664959e-10 2.300994179e-10 3.053344585e-10 4.285646373e-10 3.512119826e-10 1.758589381e-10 2.958797493e-10 2.420206387e-10 2.629450402e-10 6.90786929e-10 4.579658454e-10 5.028675941e-10 1.620360395e-10 2.834544436e-10 3.37094749e-10 5.286926526e-10 3.687901718e-10 2.215440811e-10 3.499800378e-10 4.024126389e-10 2.330998209e-10 4.39117984e-10 2.604578676e-10 1.728776689e-11 4.650483029e-10 3.281255191e-10 4.005865943e-10 2.92597613e-10 1.583955978e-10 2.150960195e-10 1.091611411e-10 6.547031052e-10 3.405464962e-10 1.220299842e-10 5.773751884e-10 3.682085078e-10 1.712618512e-10 2.414496244e-10 3.027697145e-10 4.107327e-10 2.333891684e-10 4.532298383e-10 1.16614875e-10 3.628454115e-10 3.413274854e-10 4.311999306e-10 3.954716882e-10 1.34948321e-10 4.35566767e-10 4.226038742e-10 3.871014117e-10 4.296588491e-10 1.756314347e-10 4.217116255e-10 3.188248494e-10 3.653172515e-10 3.672844864e-10 2.282283547e-10 4.544270555e-10 1.172871387e-10 1.385057018e-10 1.295125451e-10 5.156801653e-10 3.194424518e-10 1.508110807e-10 1.404049399e-10 5.268386406e-10 6.853427852e-11 3.065104681e-10 1.449375954e-10 4.282916689e-10 1.02858252e-10 1.898714477e-10 2.35649577e-10 3.882378076e-10 1.278847577e-10 5.261987695e-10 8.317738749e-10 3.832596572e-10 2.266744843e-10 3.23949568e-10 2.859849142e-10 4.397657953e-10 3.821044343e-11 1.065875272e-10 3.124276648e-10 1.863380247e-10 1.563099099e-10 4.440607969e-11 1.837906803e-10 1.918957396e-10 3.848717352e-10 3.172062344e-11 1.473999533e-10 8.298126675e-11 1.539757142e-10 4.063889404e-10 8.545424591e-11 3.501840873e-10 1.81597077e-10 4.797325167e-11 3.945118805e-11 5.298977509e-12 6.55829445e-11 1.623202013e-10 1.728729926e-10 7.340906791e-11 1.773545964e-10 2.97482962e-10 1.105320386e-10 1.54221755e-10 1.756353546e-10 6.814683396e-11 2.23874193e-10 9.151961332e-11 1.900828831e-10 2.968292645e-10 3.241422025e-11 1.026389836e-10 7.362204427e-12 1.179569063e-10 1.028185546e-10 5.011847959e-10 7.1878765e-11 7.881555829e-11 2.591192121e-10 1.949510957e-10 9.458504345e-11 2.124624055e-10 8.655370309e-11 8.837583342e-17 1.260254198e-10 1.745588875e-10 2.332008367e-10 3.654881216e-10 3.108749413e-10 1.322322994e-10 6.286904251e-11 1.452749252e-10 6.104229506e-10 1.398913211e-10 1.863934132e-10 1.116976927e-10 2.044822603e-10 1.392971594e-10 1.187818753e-10 2.083777233e-10 3.208044158e-10 1.578876515e-11 3.140769189e-10 1.007798393e-10 1.024704973e-10 9.623380058e-11 7.926486695e-11 1.495287525e-10 1.037316038e-10 1.357354363e-10 5.842765182e-10 1.54575991e-10 1.780334324e-10 7.162627835e-11 6.528482849e-11 4.795886652e-10 1.082571226e-10 8.371312299e-11 2.59722621e-10 2.453142218e-11 2.038800525e-10 1.548967676e-10 6.287319741e-11 1.388979524e-10 2.715927713e-10 9.000544094e-11 1.785230369e-10 1.07184887e-10 2.699226774e-10 2.29579704e-10 4.879696773e-11 2.098251774e-10 1.702543768e-10 4.750143294e-11 4.052569702e-10 1.910681947e-10 5.641908178e-10 1.349465641e-10 2.009379201e-10 2.197907977e-10 1.070625457e-10 2.100932729e-10 1.331902887e-10 6.977688332e-11 1.744094844e-10 2.157682618e-10 1.778304709e-10 +2.594694101e-10 2.095176672e-10 2.961838988e-10 3.205756353e-10 3.152630334e-11 6.818273283e-11 1.566051856e-10 4.220638564e-10 9.566925769e-11 2.351091997e-10 2.433029781e-10 6.019488097e-10 1.391486996e-10 1.139909553e-10 2.611874467e-10 6.764173713e-11 2.666997145e-10 7.031952933e-11 1.953022065e-10 2.138035318e-10 2.03749966e-10 1.17524611e-10 4.120449539e-11 4.229641206e-10 4.950159764e-11 3.913235993e-10 8.230036472e-11 2.301624251e-10 3.380706527e-10 6.437089678e-11 7.349676362e-11 7.141505647e-11 1.573160998e-11 1.113142547e-10 1.556811966e-10 2.870186686e-11 1.758749237e-10 3.758966085e-10 9.704953405e-11 2.301972035e-10 1.129791853e-10 8.774648908e-11 1.532576038e-10 1.84355939e-10 1.639086663e-10 3.596597e-10 1.265011908e-10 2.793420291e-10 5.06197317e-11 2.286173537e-10 3.710458978e-10 1.409791794e-10 1.385281999e-11 1.480617263e-10 2.430231469e-10 7.003561514e-13 5.366990124e-10 1.256695373e-10 1.648130183e-10 4.946508953e-11 5.302218314e-10 1.614682855e-10 1.726390725e-10 3.813492832e-10 5.867766597e-11 1.244143123e-10 1.039828809e-10 1.710409217e-10 8.967725614e-11 1.877264179e-10 4.607848476e-11 1.601257407e-10 5.99779634e-11 1.339039462e-10 7.782839979e-12 3.208666511e-10 2.266857159e-11 6.251452787e-30 1.464345654e-10 2.314181717e-10 2.468289749e-10 9.80596546e-11 1.284668533e-10 1.076764366e-10 1.865538309e-10 1.84822897e-10 1.593787191e-11 1.066148447e-10 3.875280878e-10 1.931468179e-10 8.988255815e-11 6.990581712e-11 3.268466554e-11 4.697195472e-10 3.911115801e-10 3.421150194e-11 1.65957562e-10 1.069922528e-10 3.049589091e-10 1.405524527e-10 1.636556252e-10 3.179086531e-10 2.109751234e-10 2.206232741e-10 6.510425304e-11 1.035116465e-10 2.805143704e-10 3.592215145e-10 1.798192506e-10 1.478915179e-10 2.750416154e-10 1.2471644e-10 4.361131718e-10 4.611380838e-10 2.294139748e-10 3.469104488e-10 4.613756176e-10 5.942780637e-10 1.173736185e-10 5.352804386e-10 1.44548597e-10 1.831639879e-10 2.211007366e-10 2.442208797e-10 4.043653665e-10 3.689887334e-10 1.53225493e-10 2.70364396e-10 2.159335943e-10 5.722946686e-10 9.247392211e-11 1.122177167e-10 2.390928778e-10 1.510043702e-10 1.158190117e-10 2.938397614e-10 2.011506491e-10 2.283102527e-10 2.189920034e-10 2.2636442e-10 5.486715489e-11 1.145651852e-10 3.240307887e-10 2.938729202e-10 2.353460638e-10 1.349133415e-10 3.524229236e-10 3.555497942e-10 9.711388207e-11 4.698727246e-10 3.022535374e-10 3.811224688e-10 2.283396958e-10 7.104982443e-11 3.539638627e-10 2.930302221e-11 2.633979455e-10 2.281244095e-10 1.328205699e-19 1.270512964e-10 2.111164871e-10 2.498724995e-10 4.108320706e-10 2.776756173e-10 3.048913086e-10 3.733605589e-10 8.815214826e-11 1.510464141e-10 1.14676222e-10 2.445910334e-10 4.424605327e-10 3.862636498e-10 1.811830808e-10 5.616889808e-10 3.81011171e-10 2.135332059e-10 3.180326186e-10 1.657472877e-10 6.31981394e-10 4.423428266e-10 4.725371879e-10 4.954171209e-10 3.581547137e-10 3.175243542e-10 3.635631786e-10 1.650866806e-10 1.543620205e-10 4.374483216e-10 2.17718294e-10 6.837087275e-10 1.471792049e-10 2.065738512e-10 2.320639022e-10 7.289328058e-10 2.495651745e-10 2.410837273e-10 1.165117887e-10 2.531327256e-10 7.948853944e-11 1.006130979e-10 1.048873567e-10 2.987445134e-10 4.761765607e-10 3.004439109e-10 3.25185527e-10 2.779494013e-10 1.95922386e-10 1.492058616e-10 8.687527477e-11 2.147257257e-10 1.147138863e-10 2.613628416e-11 5.321187367e-11 1.077586895e-10 3.07727594e-11 3.746253259e-10 1.634687079e-10 4.961091067e-11 3.609701086e-13 2.730502089e-11 1.07072662e-10 7.022449274e-11 2.551376413e-10 1.085810186e-10 1.076191506e-10 2.666518466e-10 5.460408703e-12 9.943151118e-11 1.165661755e-10 3.808667118e-10 8.923906517e-11 1.292996545e-11 4.802177348e-11 7.141675559e-11 1.056363267e-10 3.871149003e-10 8.921884106e-11 4.755413421e-11 3.993059605e-10 1.957069254e-10 1.7210315e-10 4.846106249e-10 9.902574056e-12 2.569426146e-10 1.184725272e-10 2.046630374e-10 9.299571115e-11 1.760571212e-10 1.91418227e-10 1.36452972e-10 9.005017739e-11 1.341464035e-10 2.889867409e-10 1.253691471e-10 8.398379715e-11 1.87020258e-10 1.257665167e-10 4.372029462e-11 3.756412106e-11 8.169478832e-11 3.851061749e-10 1.394488012e-10 2.888766288e-11 1.049520254e-10 2.169859362e-10 1.177715992e-10 1.245151983e-10 2.516989789e-10 2.391409619e-10 6.859905257e-11 3.653528021e-10 5.607255909e-11 4.21754472e-11 3.554069082e-10 2.500472635e-11 6.287426348e-11 1.719232286e-10 1.957588704e-10 3.159897018e-10 4.63909517e-11 4.004342329e-11 1.951304087e-10 2.713646314e-10 1.953393861e-10 2.272059967e-10 1.192886113e-10 4.560126088e-11 1.845225159e-10 9.129976508e-11 2.04027332e-11 2.72305532e-10 3.192587524e-10 2.599212115e-10 1.689347438e-10 7.355097854e-11 5.941922944e-11 3.911634884e-10 3.568040481e-10 2.483559627e-10 2.26784812e-10 +7.18981444e-11 1.979030545e-10 3.938848782e-10 1.478567636e-10 1.810407164e-10 3.749249165e-11 2.516791537e-10 7.622178377e-11 1.758319132e-10 1.05544596e-10 6.110582002e-11 1.26154211e-10 3.921364414e-10 1.584417187e-10 5.828119549e-11 2.274381235e-10 3.472174732e-11 1.503970927e-10 1.391620418e-10 1.07272772e-10 6.560138858e-11 1.597706473e-10 1.657366398e-10 1.885665905e-10 3.552592541e-11 2.87107121e-10 8.432619817e-11 2.328167698e-10 1.375143242e-10 1.063424502e-10 1.884579579e-10 1.425044609e-10 1.91491332e-10 2.816319262e-10 4.889702481e-11 5.858791456e-11 2.005727574e-10 4.648231417e-11 1.155644616e-10 7.236676e-11 3.638753388e-10 3.895228933e-10 5.493505159e-11 2.169119255e-10 1.400376226e-10 6.661048489e-10 4.066997794e-10 1.443933804e-10 1.209502642e-10 4.568854973e-11 4.05273216e-11 2.695580661e-11 7.702225564e-11 1.969374119e-11 2.562609299e-11 1.104296547e-10 1.157356097e-10 6.977651168e-11 2.923887506e-10 1.424021731e-11 2.140908022e-10 1.319688999e-10 1.655137267e-10 1.298492396e-10 1.067305719e-10 2.065783419e-10 1.010619957e-10 8.538363489e-11 2.809985799e-10 1.516106713e-10 7.423450383e-12 2.141838981e-10 1.161339075e-10 1.590453903e-10 8.161334022e-11 1.713228546e-10 4.300260111e-11 7.014452267e-11 5.637576275e-11 1.992514894e-10 1.223506227e-10 3.326358118e-10 8.273350365e-11 1.356146045e-11 6.773611957e-11 2.987597599e-10 1.954423798e-10 1.265325551e-10 9.123149402e-11 1.731145157e-10 1.259582752e-11 7.667936112e-12 1.603576676e-10 2.355281036e-10 2.026052158e-10 4.503766334e-11 1.651638204e-10 2.403058555e-10 1.175745864e-10 2.450920982e-10 2.787577049e-10 8.278928645e-11 2.647541755e-10 1.133936737e-10 4.772280691e-10 3.301246806e-10 3.380709179e-10 5.70227585e-11 6.078752428e-11 2.894072872e-10 7.797083406e-11 1.331099749e-10 1.748600765e-10 2.33439473e-10 2.492043148e-10 2.51247111e-10 6.101980218e-10 2.179912337e-10 2.777333613e-10 2.806490028e-10 3.198095698e-11 1.670721459e-10 3.147381305e-11 1.207294455e-10 3.984758665e-10 3.290326127e-10 4.188759746e-10 5.868727038e-11 6.522428891e-10 3.996292014e-11 1.724971096e-10 9.726952173e-11 1.839282487e-10 5.942329669e-10 3.023220354e-10 1.94333268e-10 3.716732999e-10 2.409135292e-10 1.448441478e-10 2.826681769e-11 6.739626983e-11 3.253947634e-10 1.927687979e-11 2.697778652e-10 2.74071998e-10 2.348640556e-10 2.077936542e-10 3.1875136e-10 6.200178995e-11 1.427019898e-10 1.489140137e-10 4.359509563e-10 3.781282858e-10 3.26325146e-10 4.026267444e-10 1.612982473e-10 1.46610045e-10 4.938995731e-10 5.558547073e-11 1.567873543e-10 1.910983295e-10 1.714747565e-10 4.897214838e-12 3.196631928e-10 6.462369519e-11 1.064485961e-10 2.350146484e-10 2.621847893e-10 1.656389584e-10 1.891690741e-10 4.401704839e-10 2.674594602e-10 3.164610115e-10 3.740136081e-10 8.201480333e-11 2.640036717e-10 3.102443745e-10 3.355609143e-10 3.939987861e-10 1.603323007e-10 3.020085407e-10 4.077270027e-11 3.432595218e-10 3.307359181e-11 1.197459701e-10 4.821943882e-11 1.440548803e-10 2.496382508e-10 2.731555306e-10 2.76311915e-10 3.06677373e-10 2.09075502e-10 2.989989534e-11 2.000222754e-10 2.083819087e-10 2.798483994e-11 1.01179897e-10 2.031656824e-10 2.207178391e-10 5.971879129e-11 1.946933931e-10 1.580047944e-10 1.313640365e-10 1.037223379e-11 3.72399232e-10 2.554776587e-10 1.5008812e-10 5.644031743e-11 2.121137526e-14 7.224725225e-11 2.936752945e-10 2.387859624e-11 2.095492754e-10 1.413437481e-10 1.991209734e-10 6.706951527e-11 4.225448688e-11 1.807689287e-10 3.545839355e-10 8.906292863e-11 6.766112556e-11 3.003047158e-10 4.255942444e-10 3.165240235e-11 1.386963269e-10 1.383548229e-10 7.205604212e-11 5.577968017e-16 2.275054215e-10 3.046360049e-11 1.070941944e-10 1.139871808e-10 6.347667087e-11 9.085356962e-11 1.938564746e-10 8.677184176e-11 4.772404932e-12 2.077464087e-11 1.996383346e-10 1.06585695e-10 1.973956037e-25 4.884069244e-11 1.491788349e-10 1.107336588e-10 2.073703869e-10 7.818433082e-11 6.014693033e-11 1.2507619e-10 2.198927967e-10 1.577861517e-10 2.765828582e-10 2.97937886e-10 6.153129667e-10 4.342803345e-10 4.870147541e-10 1.272253156e-10 2.05579553e-10 2.531405039e-10 4.516389036e-10 2.711102584e-11 1.861710916e-10 1.806764756e-10 4.433685981e-11 1.231121625e-10 2.584398574e-10 5.372344454e-11 2.853453e-10 7.043828359e-11 1.322392896e-10 1.120363434e-10 4.493096328e-11 3.112955121e-10 5.078328766e-10 1.29462825e-10 3.068333434e-10 8.677172053e-12 2.202804337e-10 1.087243829e-10 1.587033186e-10 2.463160547e-11 2.348662568e-10 3.805485413e-12 6.913732479e-11 1.020576921e-10 2.467422753e-11 1.268182751e-11 1.623765391e-10 5.621816159e-11 1.509378374e-10 1.280270423e-10 1.763425227e-10 9.015748627e-11 1.068427647e-10 6.915297444e-11 1.42296937e-10 8.857357184e-11 3.965656927e-11 9.492302792e-11 3.430742767e-11 6.298178512e-12 +9.229054879e-11 2.64383882e-11 2.15047172e-10 1.657290787e-10 9.038054562e-12 4.102761711e-11 8.41243104e-11 7.984621383e-11 2.010582294e-10 1.556056332e-10 1.409798622e-10 2.187676568e-10 3.543870584e-11 9.300663316e-11 2.062789058e-10 6.7302717e-11 5.407531701e-11 1.170581087e-10 5.179502074e-11 2.461908165e-10 2.414801454e-10 6.055853205e-11 5.378157868e-11 2.469381643e-11 2.112952062e-10 1.090264913e-10 2.297707381e-11 1.912461252e-10 7.315130881e-11 1.053753581e-10 9.816373041e-11 4.72408344e-11 1.789631839e-10 7.723787713e-11 1.573051631e-10 1.706824706e-10 4.354908609e-10 3.609332961e-10 9.900958611e-11 1.534491652e-10 1.80791374e-10 1.935607616e-11 1.080340611e-10 1.573886411e-10 2.379942142e-10 1.21106649e-10 7.87876638e-11 1.114844411e-10 7.920056144e-11 1.279600147e-11 2.579917103e-10 4.367308321e-11 1.048261269e-10 1.322373266e-10 2.314677175e-10 8.347836311e-11 2.639676013e-10 2.898649076e-11 1.867581559e-10 3.036585752e-10 7.117195202e-11 6.710511097e-11 1.166092259e-10 5.58733188e-11 1.953845166e-10 1.857630645e-10 1.537945564e-10 3.598374423e-14 3.539772519e-10 3.103156411e-10 4.058482986e-11 6.274297408e-11 2.638526181e-10 3.502588917e-11 3.419714723e-10 1.327635876e-10 3.284830463e-11 8.461060088e-11 8.202001826e-11 4.162254561e-11 1.257123146e-10 1.457933201e-11 1.451494333e-11 1.583798272e-10 8.500098493e-11 4.011324679e-11 3.732404908e-11 2.054342855e-10 6.423563701e-11 1.604889688e-10 1.718832064e-10 1.52842253e-10 1.703495854e-23 2.880871325e-10 6.432845046e-12 1.289581474e-10 5.419879973e-11 1.769366604e-10 3.554065347e-10 1.371172762e-10 1.367149149e-10 4.887483264e-11 9.335197218e-11 3.188804092e-10 2.396625364e-11 1.143998145e-10 1.041373338e-10 1.246200611e-10 3.909116046e-11 9.149177321e-11 3.236245735e-10 1.473176201e-11 3.039644843e-10 1.307399974e-10 2.537034289e-10 9.156303325e-11 3.30889339e-10 7.289058224e-11 2.577288984e-10 1.188754337e-10 1.615703343e-10 2.8796277e-10 3.18881458e-10 1.759490938e-10 1.205645989e-10 1.730701305e-10 6.69539157e-10 1.823816128e-10 3.555271898e-10 2.248737471e-10 3.380047793e-11 2.990653998e-10 1.719344815e-10 1.178972432e-10 1.143840977e-10 4.166147926e-10 1.530031432e-10 3.532608147e-11 7.447455516e-11 1.881331198e-10 1.860803031e-10 5.045738464e-10 2.332998002e-10 3.832786975e-10 1.333237145e-10 1.510153199e-11 2.79316658e-10 8.144680147e-11 1.184379392e-10 9.258830334e-11 5.449336342e-10 3.634109376e-10 2.647565598e-10 2.433289488e-10 3.254410713e-10 4.332549118e-10 3.176830631e-10 2.596209012e-10 2.295783814e-10 1.226208088e-10 1.996092994e-10 1.970658449e-10 2.742246577e-10 3.652916647e-10 1.768984123e-10 5.553951153e-11 1.015679943e-10 1.246548703e-10 2.028029831e-10 3.076757304e-10 1.662630304e-10 4.152491396e-10 4.511738551e-11 2.961765939e-10 2.515612059e-10 4.803355426e-11 1.787530731e-10 2.504290383e-10 1.660617534e-10 4.979653834e-10 3.257568422e-10 2.209815353e-10 3.375869899e-11 5.05535957e-11 2.053159442e-10 1.844505384e-10 2.136926525e-10 1.97444102e-10 1.972373344e-10 6.261602028e-11 1.318790206e-10 4.177358875e-11 2.576545264e-10 1.135299056e-10 8.959606325e-11 2.736212703e-10 1.619005935e-10 1.063762125e-10 8.833207237e-11 3.247096127e-13 1.051350124e-10 1.135053746e-10 1.371401147e-10 6.610806908e-11 3.918139162e-11 1.120163095e-10 1.11790427e-11 1.313781705e-10 2.14867976e-10 1.544696272e-10 4.225626944e-11 4.3264026e-11 1.416403615e-10 3.005257661e-11 8.562749385e-11 2.119246055e-10 2.384579559e-10 2.266129692e-10 1.887383015e-10 1.494704504e-10 1.692112277e-10 5.279872513e-11 1.041468824e-10 7.416136251e-11 2.290637371e-10 2.031032228e-10 4.232383599e-11 1.759248341e-10 2.956048032e-11 2.2255787e-10 1.853898203e-10 1.697626275e-10 5.430819296e-11 1.475652208e-10 2.538333212e-11 3.00937603e-11 2.906950069e-10 4.781528149e-15 5.11612379e-11 0 4.489894624e-10 1.124098313e-11 2.58747304e-10 3.456369911e-10 8.638249555e-11 3.807587106e-11 8.497053526e-12 0 1.293436e-10 2.891357687e-10 2.182693201e-10 7.377511426e-11 9.638955843e-11 2.364939312e-10 2.073948521e-10 1.727045504e-10 4.463584415e-10 1.610494876e-10 3.10793568e-10 6.107294131e-11 4.150775696e-10 1.584975862e-10 3.346401316e-10 8.265781863e-11 1.802412694e-10 2.371051448e-10 1.883867064e-10 3.954278683e-10 9.356487142e-11 3.183251088e-11 1.828123324e-10 1.181228921e-10 2.922742259e-11 8.281454569e-11 1.075475027e-10 6.769370759e-11 5.385496936e-11 4.233949817e-11 1.335129775e-10 6.483214598e-11 2.284129571e-10 4.554856089e-11 2.156984011e-10 1.818285817e-10 3.857248058e-10 1.29600281e-10 2.962957598e-11 2.164362772e-10 1.459079242e-10 1.064051048e-10 1.610949065e-10 1.429606348e-10 2.656626215e-11 1.147401466e-10 1.202289796e-10 7.704563227e-11 5.238587773e-11 4.662287936e-11 3.045589183e-10 9.423336308e-11 +8.783725313e-11 8.945369242e-11 2.987383729e-10 1.387957502e-11 1.717148218e-10 2.63610301e-11 2.948800978e-10 4.730816503e-10 2.484105499e-10 3.659715328e-10 1.427935736e-10 5.978020408e-11 6.641713083e-11 8.421839868e-12 2.347762863e-10 7.28629714e-11 2.301809517e-10 1.511843334e-10 3.724462646e-11 1.951770116e-10 2.039936667e-10 1.025120867e-10 1.079106545e-10 6.805122318e-11 1.223956657e-10 6.643391829e-11 2.619298777e-10 2.872755304e-10 1.841088796e-10 6.20852994e-11 7.632729822e-11 2.082833348e-10 1.547463206e-10 1.337750172e-10 1.748451518e-10 5.977254835e-11 5.738526733e-11 2.140051789e-10 5.159541655e-11 1.925814108e-10 1.793564512e-10 2.363365382e-10 1.657560348e-10 3.249223955e-10 5.560446907e-11 1.621089003e-10 2.079680997e-10 2.174403822e-10 6.894190749e-11 3.393162846e-10 2.997626724e-11 4.661018643e-11 6.954748108e-11 8.609235108e-11 3.350493112e-10 1.496311439e-10 6.048341229e-11 1.723247774e-10 2.43180421e-10 1.763390243e-10 8.729562567e-12 1.30070767e-10 1.747289899e-11 6.060063674e-11 1.357991893e-10 6.811530637e-11 3.387052811e-11 1.49237686e-10 5.802313761e-11 2.348824537e-10 1.557664947e-10 1.003663248e-10 1.874875437e-10 1.617336443e-10 1.81531069e-10 1.635975845e-11 1.4633709e-10 9.811741127e-11 2.953699811e-11 1.060625857e-10 2.634257105e-10 5.054443712e-11 3.323163864e-11 2.177792602e-10 2.614564138e-10 1.202109837e-10 5.306934384e-11 3.97249206e-13 8.646382733e-11 1.089634313e-11 1.00137505e-10 7.56110554e-11 2.570200171e-10 9.329001747e-11 1.101221545e-10 2.569424368e-10 1.053037692e-10 8.370490754e-11 9.355081486e-11 6.996987426e-11 1.962091755e-10 1.514616706e-10 8.955553477e-11 7.097272512e-11 7.926713666e-11 9.081387146e-11 2.482979587e-10 5.477506089e-10 3.199005907e-10 1.009778462e-10 1.734731238e-11 2.21772642e-10 8.401714717e-11 7.844655399e-11 3.06397887e-10 1.802236227e-10 4.155313729e-10 3.677680037e-11 3.730476452e-10 9.929704019e-11 2.637608043e-10 2.02231592e-10 3.630025093e-10 1.468562349e-10 1.665811941e-10 2.517393671e-10 1.927820223e-10 3.859835918e-10 2.645602181e-10 5.614746487e-11 1.883756052e-10 2.704696788e-10 6.172561986e-11 2.831902423e-10 4.667183772e-10 2.418803443e-10 1.459084482e-10 2.610094082e-10 1.166908741e-10 1.884995422e-10 7.867551817e-10 2.564132528e-10 9.286058494e-11 2.858243367e-10 3.317711911e-10 1.52140106e-10 1.499245828e-10 8.101413182e-11 1.294301693e-10 4.059072462e-10 4.970207987e-10 2.202730397e-10 2.150308923e-10 2.610784077e-10 1.251823576e-10 2.578785292e-10 6.225345555e-10 7.260905835e-10 3.956289412e-10 3.509241959e-10 3.640185446e-10 1.653947874e-10 7.588864918e-11 3.333515674e-10 4.864594647e-10 1.60564711e-10 2.07556247e-10 1.850073311e-10 2.559238003e-10 3.059983853e-10 1.427106031e-10 1.286991749e-10 1.600929297e-10 6.276928582e-12 4.097026925e-11 2.952696483e-10 4.688067879e-10 3.998293542e-10 4.299676468e-10 2.27591563e-10 3.884094367e-10 1.900013694e-10 1.09564861e-10 2.052688612e-10 1.214395371e-11 1.64637679e-10 1.055262885e-10 1.382748172e-10 2.893079832e-10 2.64728931e-11 1.580763826e-10 4.044473828e-11 1.695920094e-10 2.300238459e-10 6.797601674e-11 3.269882809e-11 3.415334072e-10 1.809580041e-11 2.215862133e-10 3.434465929e-11 2.827580362e-10 3.686823864e-11 1.234639068e-13 4.536944044e-11 4.138213607e-10 8.753900924e-11 0 4.794747181e-12 2.417194544e-11 1.564561223e-10 9.007220402e-11 7.016018815e-11 6.469860172e-11 4.73519899e-10 0 2.645065536e-11 1.831408131e-11 1.412222082e-10 2.449335144e-10 1.458466047e-10 2.838312348e-11 1.311726644e-10 6.381427353e-11 1.357245889e-10 2.607434448e-10 2.534567744e-16 1.011760184e-10 7.625999973e-11 1.112993395e-10 3.2172441e-10 1.242182958e-10 6.868598567e-11 6.426125475e-11 1.081375741e-10 8.727861499e-11 1.443905384e-10 7.963922459e-11 7.564689609e-11 2.522256743e-10 1.857890913e-10 2.918637768e-10 2.917073122e-11 4.673690966e-11 3.219458217e-10 5.575063258e-11 1.342291457e-11 1.173337969e-10 2.342738188e-10 1.236858221e-10 5.176723037e-11 3.017013388e-10 2.368451715e-10 1.938659828e-10 8.937647381e-11 8.288044439e-11 3.47413216e-10 2.124782724e-10 1.121241785e-10 4.742692016e-10 2.453034424e-10 8.693886387e-11 1.899394091e-10 9.922076447e-11 8.758820392e-11 1.052150052e-10 3.629845911e-11 1.62606568e-10 5.098226544e-11 9.632626592e-11 3.022511079e-10 2.308426124e-10 1.99764295e-10 1.653296533e-10 9.936081453e-11 4.604287452e-10 2.027426224e-10 3.561386762e-10 1.991196481e-10 1.968418831e-10 1.357940419e-10 4.889004016e-11 3.560203398e-10 3.411883518e-10 1.125776499e-10 4.125724945e-11 1.837010132e-10 2.954663167e-11 1.546415141e-11 1.507543663e-10 1.051010238e-10 2.358885261e-10 1.585080302e-10 6.548649302e-11 2.775423394e-12 2.49950004e-10 8.457491602e-11 3.438153126e-11 2.823694853e-11 7.806698772e-11 2.068888729e-10 +2.670696175e-11 1.152898169e-10 7.818746162e-11 4.629110754e-11 2.06925088e-10 9.783453484e-11 1.181386001e-10 1.693787571e-10 8.782096727e-11 3.979702952e-10 1.889330097e-10 3.087877559e-11 5.047387719e-11 7.988410315e-12 1.880040088e-10 6.354032106e-11 1.492271657e-10 2.143084278e-11 5.363832693e-11 1.856439325e-10 4.221636503e-11 1.225907431e-10 7.394836206e-12 8.998330278e-11 9.897415619e-12 2.488341039e-11 5.677853195e-11 1.099696184e-10 6.287257347e-11 2.218706228e-10 1.229691686e-10 1.102015643e-10 2.473546008e-10 2.362164038e-11 1.140426251e-10 2.832506897e-11 1.315728814e-10 1.864522609e-10 2.219152725e-10 4.056331621e-11 9.376003053e-11 3.078749109e-10 6.159625439e-11 1.131692e-10 4.665050969e-11 2.62027731e-10 2.157806645e-11 1.272447591e-10 1.912990778e-10 1.255638743e-11 3.580597743e-13 2.893844855e-11 1.012080238e-10 3.901915528e-11 4.596929073e-11 2.341164035e-10 9.37200504e-11 1.061297259e-10 6.662737469e-11 1.499953697e-10 3.403024046e-11 3.697421782e-11 2.146445683e-10 3.340628036e-10 5.942378801e-11 4.69194855e-11 3.768414148e-11 1.640173422e-10 1.469165117e-10 8.663663471e-11 2.643614164e-10 1.00839062e-10 9.634407917e-11 1.008725477e-10 1.670730527e-10 1.149543293e-10 3.873338126e-11 1.698063588e-10 1.957389944e-10 3.934763986e-11 1.943676506e-10 1.824154974e-10 4.526352962e-11 2.23467113e-10 1.276034538e-10 3.77703143e-11 0 1.196134182e-16 5.649946008e-11 2.16172237e-10 1.051744446e-10 1.112319863e-10 0 6.125356155e-11 6.416559827e-11 9.800055249e-11 1.119964463e-10 1.002111662e-11 7.721049394e-11 8.211358654e-11 2.227117423e-10 1.883461866e-10 1.265358485e-10 2.351114682e-10 1.891194078e-10 1.878543899e-10 4.518435471e-11 5.175368372e-11 1.797808728e-10 2.448890929e-10 2.058920248e-10 2.734038454e-10 4.514496445e-10 1.913417991e-10 1.122960859e-10 1.951143515e-10 1.461007211e-10 9.872029055e-11 5.38152884e-11 2.076690732e-10 1.614298802e-11 3.732881064e-11 2.892077018e-10 2.326340865e-10 3.799503264e-10 1.173391394e-10 1.1315829e-10 2.041455231e-10 2.740156833e-10 2.424188334e-10 1.297836858e-10 1.502315352e-10 3.057812938e-10 3.295484701e-10 8.982920567e-11 1.146098801e-10 1.94346393e-10 2.002564467e-10 1.765992528e-10 2.974407731e-10 1.627506422e-10 7.966661488e-11 2.384623788e-10 2.243415873e-10 3.542453698e-10 3.429341271e-10 0 4.916391031e-19 2.442962167e-10 2.785780115e-10 4.402175757e-10 2.243865301e-10 8.181709861e-11 9.944641513e-11 1.201695657e-10 7.452079629e-11 2.645278493e-10 2.95469361e-10 3.364946957e-10 2.676774824e-10 1.681357343e-10 2.522920338e-10 1.158258865e-10 2.457986047e-11 4.310109069e-16 6.236765363e-11 5.660841648e-10 3.629136717e-11 8.316017963e-12 1.442126579e-10 7.145402468e-11 2.98645966e-10 4.16459667e-11 6.500552968e-11 1.769403008e-10 2.197623419e-10 3.189883695e-11 7.017383425e-11 3.159317011e-10 1.542478019e-10 1.895583935e-11 3.477713585e-10 1.064800322e-10 1.760958772e-10 6.827935918e-12 2.418492469e-10 2.129873186e-11 1.926326869e-10 3.724658403e-19 3.072051318e-10 9.531507073e-11 1.929046413e-10 9.633887933e-11 5.02267789e-11 1.755048786e-10 3.870534629e-11 4.998937625e-11 2.70562361e-11 4.290497726e-10 3.617504754e-10 1.894870122e-10 6.984165565e-16 1.170293564e-10 7.704980501e-20 6.761793757e-11 8.145892685e-11 1.606522866e-10 1.51580332e-10 1.808895083e-10 5.38558128e-11 1.308768473e-10 2.563171166e-10 1.444357315e-10 1.076268217e-10 1.874231607e-10 1.60136873e-11 3.904671198e-11 2.097039635e-10 1.771412523e-11 4.592371478e-10 2.374140293e-10 1.191939103e-10 2.667103736e-10 3.340225011e-11 1.898284378e-10 2.45429424e-16 9.334122095e-11 2.219727241e-10 4.801827082e-11 9.898777163e-11 5.840143022e-11 1.005164142e-10 1.629327203e-10 1.544713484e-10 3.154721546e-10 1.745058193e-10 1.164479293e-11 1.429036394e-10 8.049882291e-11 1.218016043e-10 2.375618169e-10 4.589264125e-11 1.031438795e-10 1.190563944e-10 1.175575528e-10 9.969110031e-11 9.422184584e-12 2.397771908e-26 1.581561824e-11 1.216103877e-10 8.769543559e-11 1.144632541e-10 3.315640371e-11 1.892017236e-10 7.383149873e-11 4.808633773e-11 3.448228235e-11 2.332572963e-11 1.342170401e-10 1.46761905e-10 7.82328901e-11 1.053308685e-10 1.750363253e-10 7.828832642e-11 1.511006019e-11 1.007873844e-10 1.727269459e-10 2.572520695e-10 4.072732038e-10 4.666531049e-11 5.530936446e-10 4.306605702e-11 9.400020084e-11 8.395346603e-11 8.094766066e-11 1.420478832e-10 1.369007131e-10 2.82461452e-10 1.42001284e-10 5.905515537e-11 4.624955588e-11 3.131283064e-12 8.879113167e-11 3.484041921e-11 3.095669178e-11 1.267767712e-10 2.024795906e-11 2.115997273e-11 1.226031595e-10 2.126308428e-10 3.999136103e-10 1.647134581e-10 3.663591157e-11 2.092063854e-10 7.57875116e-11 1.363911466e-10 1.722610969e-11 8.01050724e-11 9.677190578e-11 4.442276167e-11 +2.852348889e-10 8.506847285e-11 1.833007487e-10 1.108353016e-10 8.063138056e-11 2.336997538e-10 0 9.112637029e-11 5.16455051e-11 6.225810391e-11 4.789358271e-11 1.908124916e-12 2.278817972e-10 1.595904979e-10 1.282930222e-10 1.936147284e-10 1.250374238e-10 9.637747491e-11 3.051601074e-11 1.024900604e-10 1.449394282e-10 3.627634947e-10 7.310613445e-11 3.173785927e-11 2.544327626e-11 6.520142389e-11 2.305812989e-11 2.044909947e-10 2.025772774e-10 3.474128052e-11 3.721123376e-10 3.675039315e-10 1.363582051e-10 1.043159909e-10 2.983909702e-11 4.293554766e-10 6.014480843e-12 1.449588803e-10 7.967291007e-11 2.047947054e-11 1.572178626e-10 1.662188627e-11 1.352949123e-10 2.113866584e-10 8.24437118e-11 2.416608174e-10 1.029754642e-11 1.426938042e-10 4.916561225e-12 2.40540992e-11 2.781515394e-11 1.133170473e-10 3.067838764e-11 1.873164941e-10 1.079691136e-10 2.011316052e-11 1.557434583e-10 2.944779402e-11 5.765604163e-11 1.876228775e-10 3.534664311e-11 2.828436864e-11 1.112907316e-11 8.526035037e-11 1.197754822e-10 1.887544318e-10 2.590093372e-10 6.566054058e-19 6.323627311e-12 6.079985374e-11 1.580127026e-10 1.835814503e-10 2.152316052e-10 1.424433836e-11 3.287955874e-14 6.045571277e-11 1.823791298e-10 2.206216988e-11 9.904889129e-11 4.988035401e-11 2.683250987e-10 1.149064652e-11 5.556465794e-11 1.602409617e-18 2.463121147e-10 9.763805864e-11 5.759807271e-11 0 0 3.97686926e-11 5.258788741e-11 1.53075369e-11 1.727950748e-10 4.668797073e-11 1.824582888e-21 3.433569588e-11 1.246326309e-10 5.764932331e-11 7.828150988e-11 0 8.061453955e-11 1.323296756e-10 1.781522193e-11 1.289166493e-10 9.939350927e-11 1.064811706e-11 2.947653024e-10 2.038890559e-10 3.17711202e-13 5.832316008e-11 6.867777582e-11 1.045316913e-10 2.273859888e-10 3.200369533e-11 2.806859588e-11 2.976552586e-10 1.217585179e-10 1.659712111e-10 4.598314097e-10 1.063886814e-10 5.488893106e-11 8.591116858e-11 1.684145758e-10 3.350574269e-10 7.102824337e-11 1.740922926e-10 4.245722425e-11 6.011606589e-11 6.765810418e-13 1.460283648e-10 1.330637071e-10 8.040366865e-11 2.775219408e-10 2.410397932e-10 2.362251303e-10 2.831793898e-10 2.310185385e-10 2.793341603e-10 2.209794228e-10 3.035468278e-10 2.446968955e-10 3.219313127e-10 3.586307174e-10 7.89102225e-11 3.259655912e-10 4.821766451e-10 1.281770397e-10 4.02785797e-10 6.035912454e-11 2.000631785e-10 1.514252739e-10 1.470023726e-10 2.553849163e-10 9.666228873e-11 8.026610672e-11 1.481799864e-10 3.087214507e-10 1.000735664e-10 3.984331894e-11 1.291325435e-11 4.386617524e-10 9.86121229e-11 2.670277239e-11 1.225674817e-10 2.747469313e-10 2.570384483e-10 5.523316124e-11 4.118832758e-10 2.737526234e-10 3.028289749e-10 2.869685626e-11 6.215959716e-11 2.097713774e-10 4.064091893e-11 1.440002863e-10 2.233375697e-10 1.645791472e-10 6.749214599e-11 4.441589965e-11 5.232074001e-11 2.40939727e-10 3.377758262e-10 1.440558666e-10 5.980075861e-11 2.810126042e-10 1.496428736e-10 5.752618203e-11 1.362560677e-10 7.621571943e-11 1.932213007e-10 5.287440694e-11 1.627760343e-10 2.171951292e-10 8.225555298e-11 7.740201476e-11 1.482534756e-10 4.091115757e-11 1.724937203e-10 5.632856291e-11 1.258287527e-10 5.828837271e-11 1.129895252e-10 6.218933051e-11 4.200701142e-12 9.258139369e-11 8.650992731e-11 8.452328857e-12 3.633736151e-11 4.636546617e-10 1.859434167e-10 5.369475983e-11 1.228022387e-15 2.068350459e-11 7.414035361e-11 2.819235541e-11 3.911168953e-11 1.073657928e-11 2.273786461e-10 7.574314963e-11 7.167556763e-11 9.258355581e-11 5.371985102e-11 1.731139963e-10 1.590644702e-10 4.122238803e-12 8.583534095e-11 7.24812169e-11 3.002429267e-10 1.551687782e-10 6.023513201e-11 2.469651014e-10 5.549277928e-11 2.997640382e-10 7.033420675e-11 4.563747967e-10 1.387800986e-10 1.265688785e-11 2.266543633e-10 1.483482637e-10 8.632912601e-11 1.486143157e-10 5.031143348e-11 1.166917176e-10 1.182566287e-10 1.321747252e-11 1.267025195e-10 2.996795604e-10 7.504815939e-11 8.132184862e-12 6.206375918e-11 8.282464413e-11 2.609349825e-10 3.134421118e-11 2.876979954e-11 4.299634251e-11 2.596913431e-10 4.643689276e-10 7.38305987e-11 1.526361436e-10 2.179280475e-10 1.20771463e-10 2.49067621e-11 1.966474386e-11 4.008204407e-11 3.549689657e-11 1.401578007e-10 1.971685813e-10 1.939565463e-10 1.27896986e-10 1.44729045e-10 8.835959797e-11 1.31721822e-10 2.684152804e-10 7.137383429e-11 1.701335848e-10 5.26318574e-11 1.033198812e-10 1.021626608e-10 9.022185451e-11 1.926641199e-10 1.066674671e-10 7.454608236e-11 9.114514538e-11 2.486454587e-10 5.372622725e-11 6.895960152e-13 8.427961916e-11 2.87560357e-11 3.619593713e-11 1.28119123e-10 1.644227151e-10 7.692511078e-11 6.678794158e-11 7.556206872e-11 6.214369503e-11 2.566572186e-10 5.912300157e-18 1.040115547e-10 8.594614617e-11 1.17357728e-10 +1.6896091e-10 2.003578754e-10 1.813940987e-10 2.349193114e-12 1.602203827e-10 7.202701071e-11 2.231868661e-11 1.744225022e-11 1.960829361e-10 1.555644644e-10 5.165677338e-11 6.461221356e-11 1.639723627e-10 4.424910327e-11 7.306812629e-11 1.155735959e-10 8.699673236e-11 2.242012624e-10 1.106075281e-10 1.140824355e-10 4.019086586e-11 8.188658178e-11 9.211686994e-11 4.066251664e-12 2.006826496e-10 6.15556188e-11 1.505777457e-11 3.395041192e-11 1.550621159e-11 1.31584756e-10 5.294281891e-12 1.500800031e-10 2.008917782e-10 9.019780851e-11 2.23611433e-11 7.056104143e-11 3.798161725e-11 1.653142695e-10 2.068711082e-10 9.570024671e-11 1.755212003e-10 8.433490843e-11 5.689717249e-11 1.527179742e-10 3.631354177e-10 5.583420456e-20 7.627473912e-11 9.679174618e-11 6.195323972e-11 3.479132306e-10 2.337922163e-11 3.429502635e-11 2.792026576e-23 5.841695922e-11 5.691559404e-11 1.378449357e-10 7.945798515e-11 1.117648493e-10 1.249669381e-10 2.685531153e-10 1.793191529e-13 8.15784868e-11 2.088653633e-10 8.066582369e-11 1.269574705e-10 1.539432727e-10 1.561692199e-10 1.371961414e-10 3.966401674e-11 1.263134206e-10 2.307389974e-11 1.082293781e-10 1.000602089e-10 1.180981602e-10 2.0906962e-11 2.65421558e-11 4.085799226e-11 5.304468512e-12 2.561049367e-10 3.28285034e-11 1.486571409e-11 7.632315634e-11 4.471988582e-11 9.92336272e-11 0 2.050393354e-11 7.553013381e-11 3.682487888e-11 4.342079064e-15 8.040616826e-11 4.499038038e-11 6.26025048e-11 3.295339315e-11 2.673541647e-18 2.648439302e-11 4.932152521e-11 1.71303416e-10 2.002052317e-10 9.306014208e-16 1.297042458e-10 1.468987509e-10 1.111532852e-10 1.110217453e-10 4.366434208e-11 5.864095225e-11 2.29889657e-10 3.643823999e-11 1.247930621e-11 1.001376878e-11 9.963927971e-11 3.252888319e-11 1.579069595e-10 5.905728452e-13 7.051891455e-11 1.492290042e-10 1.786312716e-10 7.766220216e-12 2.837106314e-10 1.252270121e-10 1.064098322e-10 1.600599278e-10 6.425687407e-11 1.172872817e-10 1.697648361e-10 1.566439838e-10 2.011779234e-10 5.490880122e-11 2.907210219e-11 2.857856761e-10 3.312430463e-12 6.502764128e-11 7.714698722e-11 1.361476812e-11 4.754243899e-10 1.630629214e-10 3.354299518e-11 2.034278378e-11 1.834357518e-10 1.153965558e-10 0 2.337849981e-10 4.22560787e-10 6.898870547e-11 4.594113902e-11 1.086404086e-10 8.613008377e-11 1.358856496e-10 1.702928666e-10 2.198870883e-10 1.882352883e-11 1.848442933e-10 2.298831643e-10 1.416226571e-10 2.063273658e-10 1.465077056e-10 1.532858591e-10 3.1021578e-10 5.620497812e-11 9.784973143e-11 1.155615098e-10 3.947066715e-10 7.19571146e-11 1.951141013e-11 9.560821248e-11 2.599026899e-11 4.788854871e-10 1.524395776e-11 2.466660259e-10 4.553050195e-11 2.169433113e-10 4.545353855e-11 2.311052372e-10 1.186844734e-10 2.323409383e-10 2.042205544e-10 2.137429312e-10 1.371764855e-11 6.292952114e-12 1.019204598e-10 1.453454464e-10 8.401281792e-11 3.40748338e-11 5.549647864e-11 1.02166001e-10 1.944414638e-10 3.032504023e-10 1.285008792e-18 1.07630376e-10 1.229675065e-10 1.117757895e-10 1.623961341e-10 8.877345126e-11 3.379255538e-10 4.518212256e-11 1.462153219e-10 8.508697515e-11 1.2491453e-10 1.631322989e-10 3.109027491e-19 5.224894608e-11 7.488978213e-12 2.047047802e-11 1.190466567e-10 3.432341567e-11 8.481871616e-11 0 4.135977598e-11 0 3.398160242e-11 6.228560189e-11 8.872781196e-11 3.191769175e-11 1.569661127e-10 2.474792883e-11 5.245935732e-11 1.201403672e-11 7.748990164e-11 1.643553308e-10 3.738376631e-11 1.370678802e-10 4.079538149e-11 1.312144388e-10 5.804261797e-11 1.998640883e-10 3.843100301e-12 1.29183591e-10 1.471513512e-10 1.35586381e-11 9.428758533e-11 5.792660004e-11 2.25640845e-11 2.379080931e-11 2.632116296e-11 2.446601811e-10 0 9.620781603e-13 1.031279405e-10 3.336192998e-10 1.673930145e-10 2.979446814e-10 9.500051801e-11 3.148829718e-11 1.998048738e-10 7.193408056e-12 1.265746132e-12 3.255706684e-10 1.053410462e-10 3.717624681e-11 7.073192241e-11 1.393155988e-11 1.494659454e-10 1.008218592e-10 1.486907259e-11 3.206357119e-11 1.765401776e-13 9.759210357e-11 5.811016509e-11 9.11199999e-11 1.938079422e-10 2.90639236e-10 1.593636811e-10 1.627889046e-10 1.778633123e-10 7.780857488e-11 9.00667145e-12 1.875427831e-10 2.175655869e-10 1.826742594e-10 5.588506997e-11 4.480413479e-11 2.675643135e-10 2.281807184e-10 1.613859119e-10 6.806915432e-11 2.430398839e-11 5.038181703e-12 8.633631721e-11 1.344156856e-10 3.042720241e-14 1.520948499e-10 1.514280532e-10 8.363385707e-11 1.893173071e-10 3.961543014e-11 1.252525366e-11 1.348535183e-10 1.843225786e-11 5.611425349e-11 3.222187401e-11 1.55192515e-10 3.497551569e-11 9.736866848e-11 6.364533194e-12 5.945536039e-11 5.191122963e-11 2.047102217e-11 3.152584768e-11 1.169164553e-10 1.743041954e-10 1.264176043e-10 +3.593227677e-11 3.436379253e-10 5.006807782e-14 3.547390363e-11 1.333207282e-10 1.276483211e-10 9.091969664e-11 1.173497197e-31 1.232390756e-12 2.209563338e-11 6.467476282e-11 3.883262667e-11 3.936819924e-11 1.488892101e-10 1.584086445e-10 5.669612308e-11 1.344968601e-10 2.065143049e-10 1.03791654e-10 1.860297051e-10 1.933842326e-11 2.220824886e-10 9.858597031e-11 1.864412904e-21 1.316340419e-10 5.441651085e-11 1.09715988e-10 7.233610251e-11 1.777010116e-11 4.542000968e-11 1.195466732e-10 1.582636929e-10 6.011387512e-12 1.171955067e-10 4.695880581e-11 2.347346106e-10 2.134900195e-10 5.212492904e-11 1.731977034e-12 1.860349284e-10 8.573575821e-11 5.021323067e-12 4.752617981e-11 3.518852934e-10 3.79005908e-11 3.08806372e-11 1.191956001e-10 1.046467089e-16 1.725194777e-10 1.309020719e-10 1.764592542e-11 2.66402183e-10 4.546747196e-11 2.183609908e-10 1.914814507e-10 1.744287131e-10 3.626043727e-11 5.056500321e-11 2.863569175e-11 1.078396431e-10 2.351790124e-11 3.400589531e-11 3.365305485e-11 1.352376049e-10 8.329868124e-11 6.000539382e-11 1.603091546e-11 3.164926248e-11 1.699693153e-10 4.743879536e-16 2.528919272e-10 1.166459733e-10 8.324035153e-13 3.751180953e-11 2.371063779e-11 3.780047831e-11 7.174153863e-11 1.151724391e-10 3.825346994e-10 6.227892016e-11 6.166197222e-11 1.305020444e-11 5.470276801e-11 1.618001028e-10 4.777322595e-12 6.844944747e-18 1.062230896e-10 2.662207316e-11 5.431379904e-11 1.919825012e-11 2.40571741e-11 4.067241036e-10 2.774563523e-11 1.884627654e-10 1.065024466e-10 7.184354591e-11 7.326407016e-11 5.940403337e-11 2.278545743e-11 1.214506422e-10 2.186498916e-10 0 9.491307621e-11 2.68181738e-10 1.514688434e-10 7.856319277e-12 8.709787061e-11 1.867549355e-11 9.372902308e-12 3.643788412e-11 1.268339308e-10 8.781926211e-11 1.380228776e-10 6.132553373e-11 1.215894794e-15 9.23891013e-12 4.265930215e-11 1.731521271e-10 5.603122522e-11 8.118561131e-11 2.12970365e-10 3.259180442e-11 5.777131496e-11 2.554871893e-10 1.258188683e-10 6.114644606e-11 2.819217957e-10 1.194320088e-10 2.847926381e-13 8.150728814e-11 2.324725949e-10 1.281905705e-10 1.572136185e-10 3.112266831e-11 2.959976636e-10 3.547837615e-11 6.700162024e-11 7.341977501e-11 2.618065404e-10 2.126016157e-10 1.402232041e-10 2.435716799e-10 2.153481678e-10 2.080373385e-11 1.534210922e-10 4.112610326e-12 2.677340089e-10 9.42370078e-11 1.970278929e-11 9.804182389e-11 1.892205235e-11 1.702231949e-10 0 8.088405536e-11 4.910609788e-11 2.461218894e-11 1.649552381e-11 7.435161325e-15 1.078705801e-10 3.549432856e-12 8.64450478e-11 1.193736849e-10 1.61310491e-10 2.051618202e-11 5.336330073e-11 1.305467964e-10 5.82585419e-11 1.748995559e-11 3.065624875e-11 7.772354554e-11 4.944223458e-11 1.668419791e-10 1.509533908e-10 2.432891949e-10 7.755500732e-11 0 2.039891128e-10 1.063109623e-11 5.001489472e-11 5.268033148e-10 3.756001776e-10 1.450834592e-10 1.010855389e-10 1.159754992e-10 7.751063278e-11 2.192666676e-10 0 2.271141321e-10 5.492415224e-11 2.691041016e-11 1.351736486e-14 1.330633957e-16 0 1.924251427e-10 9.507448914e-11 6.680924345e-11 1.571317013e-10 2.812174907e-11 7.241380588e-12 6.545222486e-11 1.860193722e-10 3.37798397e-11 5.848982898e-12 1.288806981e-10 2.048164308e-11 7.126800129e-11 9.468636766e-11 1.924927693e-11 5.481555971e-11 1.068675803e-10 2.60880377e-11 3.805928244e-11 2.026615169e-11 4.056979566e-11 1.678708305e-10 5.992629616e-11 2.449621927e-11 8.685983113e-11 2.849284235e-10 2.712912858e-11 6.645373828e-11 2.018395234e-10 1.172844284e-10 3.344476618e-11 1.209178437e-10 2.625542726e-10 1.706961686e-10 5.048258992e-11 5.292509901e-11 2.232847225e-10 6.488956855e-11 9.665572748e-11 8.14544193e-11 1.156775235e-10 2.443604492e-11 0 7.066869004e-11 1.446836381e-10 1.408995406e-10 1.038835083e-11 1.605432409e-11 6.81007278e-11 2.259187538e-12 4.483286845e-11 0 3.64743275e-12 9.079852888e-11 2.586822775e-11 2.979263531e-11 8.476191843e-11 1.114497591e-10 1.436728973e-10 2.684590627e-11 1.318180106e-10 8.821217843e-11 2.268247583e-11 1.169694762e-10 1.193465712e-10 3.958767164e-11 6.341874618e-11 0 4.244231777e-11 1.793017584e-10 3.092460795e-11 1.853679013e-10 8.923991759e-12 1.190806496e-11 9.990055054e-12 1.318297545e-10 1.463284704e-10 1.582571043e-10 1.275966608e-10 1.233853541e-10 3.328621488e-11 4.660676455e-11 1.149085544e-10 1.493666192e-11 4.95762717e-11 3.135920614e-10 1.560707261e-10 1.504608834e-10 2.67113521e-10 1.385000417e-10 3.684397645e-11 5.06949786e-11 4.016943589e-12 2.650012562e-10 8.233694875e-11 4.836900544e-11 1.244376643e-10 1.326888458e-10 8.982262276e-11 2.938223069e-10 2.232235648e-10 5.884494561e-11 3.309030873e-11 4.785145632e-11 1.009549147e-10 4.302579657e-11 3.346537814e-11 +2.078171443e-10 3.036484839e-10 3.000533394e-10 4.649280126e-11 1.19211623e-10 3.077154304e-11 8.388078865e-11 9.475743515e-23 1.919900707e-12 6.282254087e-11 1.657603218e-10 1.29369742e-10 9.179719976e-11 9.158243354e-14 1.818910366e-10 5.086174071e-11 1.583845354e-18 7.332592134e-11 2.326510763e-12 3.848347341e-11 7.473742568e-12 1.051116819e-10 1.070393944e-10 2.570224619e-10 2.79010025e-11 1.098392641e-11 4.62563553e-11 2.706416399e-10 5.546383259e-11 1.144484633e-10 5.883538589e-11 2.632259744e-10 2.153432636e-10 2.263137735e-11 4.667507614e-11 4.68488466e-11 8.490158106e-11 1.780018947e-10 1.174230993e-10 1.304508112e-11 1.251216882e-10 2.778660469e-13 6.405931373e-12 2.459648676e-11 1.2730657e-10 5.340195146e-11 8.158863863e-11 3.391088012e-11 8.275037197e-11 6.641418289e-11 4.599694975e-11 1.400372119e-10 1.152812058e-10 1.720262139e-10 2.783996554e-11 1.587227133e-10 9.395903806e-11 3.105348029e-10 1.184646278e-10 1.429822303e-11 7.81249253e-11 1.072862907e-10 1.168063116e-10 3.781025892e-11 7.375272574e-11 6.175689427e-11 6.681770693e-12 4.381188605e-11 2.613091511e-11 4.011696238e-10 8.241432928e-27 7.989539729e-14 5.021414695e-11 6.710796011e-11 6.154151014e-15 2.973537416e-11 5.39004042e-12 2.172666733e-10 6.255766619e-11 5.657958517e-11 4.303467106e-12 5.142906056e-11 3.222731768e-11 4.090346485e-11 3.106215113e-11 0 1.522683866e-10 4.910401101e-11 0 8.993690059e-11 7.64659223e-11 1.381665781e-10 5.96853651e-11 1.077266441e-10 2.81461485e-11 1.744349763e-12 1.789312914e-10 9.572028272e-11 4.289726645e-11 1.065335636e-11 8.602060724e-11 8.025679292e-11 1.298110688e-11 2.04228769e-10 1.047791438e-10 0 1.523525722e-10 1.085810748e-10 3.482625149e-11 5.621754015e-11 2.233177144e-11 7.217637049e-11 2.240619585e-10 7.988316333e-12 1.535366236e-11 1.045651595e-10 1.244152228e-10 6.64436373e-12 8.155000788e-11 1.797832267e-13 1.822954159e-11 5.661708834e-11 9.552686504e-12 1.927380776e-10 2.068952586e-11 2.708647519e-10 1.692450984e-10 2.78002621e-10 5.40677473e-13 1.071427128e-11 7.94729955e-11 8.139940717e-11 1.358126692e-10 4.068248142e-11 0 2.461304095e-11 2.660314367e-10 2.530942013e-15 9.649991048e-11 2.27199717e-10 4.82807217e-10 1.081724663e-10 1.257863766e-10 1.532355852e-10 5.201648995e-10 1.227716143e-10 4.05745817e-11 3.629735196e-11 2.852378231e-11 8.0307932e-11 2.235108519e-10 6.818084269e-11 3.415640531e-12 9.41249747e-11 1.862252683e-10 2.241580286e-11 6.380541708e-11 1.080442265e-10 1.306332416e-10 1.444292788e-10 1.302699176e-29 2.844470687e-11 1.868488847e-10 7.680533582e-11 9.705340247e-11 2.861334384e-11 9.981594273e-11 2.213560011e-11 1.364121724e-10 2.212158848e-10 5.252503089e-11 7.046331248e-14 1.645275073e-10 1.150356681e-10 1.597310528e-10 5.147379458e-11 3.3367454e-11 1.148032749e-11 9.957384957e-11 0 3.951980172e-11 2.903615869e-12 6.463198573e-11 1.671891398e-26 1.372679028e-11 0 1.408071628e-11 1.046461534e-11 5.200463138e-10 1.685239304e-16 3.913160429e-11 8.597515835e-12 3.220360229e-11 6.894040297e-11 1.807638181e-10 3.438769707e-11 2.166693711e-10 1.796444235e-10 6.904171213e-12 2.477711575e-11 3.203776521e-11 9.349523506e-11 2.289446752e-19 9.591990007e-11 2.322063962e-11 1.139197192e-10 1.014741728e-10 1.355539557e-27 0 4.563368952e-15 1.238965568e-11 1.765162421e-10 0 1.402447403e-10 1.877676058e-11 3.359608568e-11 6.249317953e-11 1.198637382e-10 1.278408801e-19 2.068805395e-12 4.200944767e-11 1.290440218e-11 1.301123521e-10 2.063899417e-11 5.303924758e-11 0 4.133659002e-11 2.238206093e-10 3.952156683e-11 3.084237282e-11 1.167018698e-11 4.598293385e-11 4.413340443e-11 5.190375268e-11 4.682321908e-26 6.096531363e-11 2.829247008e-11 2.813247581e-10 1.309543491e-10 1.355500471e-10 0 1.153866146e-10 8.599994904e-12 1.439109375e-10 8.83291999e-11 1.55358712e-11 1.295869165e-11 5.274999023e-11 1.513387098e-10 6.26088467e-11 2.248060267e-11 1.059187947e-12 4.663266014e-11 0 1.776317121e-10 2.126166053e-11 2.900931743e-11 5.141126144e-11 1.767172694e-10 1.254166193e-10 3.80223127e-29 1.001587103e-10 1.100787953e-11 2.845139317e-11 6.479291165e-16 2.130221845e-10 2.155174645e-12 0 4.80795635e-11 1.065500055e-10 1.080186542e-10 6.445987606e-11 1.981212127e-10 2.190529042e-10 9.102754077e-11 1.422104872e-10 1.4211281e-10 1.038768917e-10 1.76560083e-10 1.584704749e-10 3.820624774e-11 3.755411412e-11 1.029092325e-10 2.580237685e-11 3.812480264e-11 5.331755198e-11 1.180130214e-10 9.630581863e-11 3.679741739e-28 8.230283778e-11 6.676967113e-11 3.289480047e-11 8.405125678e-13 8.528242745e-11 9.201962083e-11 1.392920272e-10 9.654590657e-11 1.589610768e-10 8.985535457e-11 3.462141542e-11 +4.684777269e-10 3.097563593e-11 4.450409582e-11 2.650349683e-11 8.996066009e-11 9.039986701e-11 1.228467636e-10 2.883766881e-28 1.880855589e-10 1.629640432e-10 0 5.469441864e-11 0 3.950733948e-11 3.369576748e-11 8.151794081e-11 1.715664391e-10 5.61666159e-11 7.579372528e-15 8.195437554e-11 3.554527215e-11 1.121280111e-11 7.985586729e-14 1.668944722e-10 2.449151167e-19 6.163491567e-11 3.946812179e-26 3.62249185e-12 2.258367246e-10 5.314850588e-11 8.930671985e-11 1.342833126e-11 1.840224468e-10 1.940976054e-11 2.554495128e-11 0 1.724837926e-11 5.586436168e-11 2.182849926e-10 9.028270463e-11 3.209498425e-16 2.368351027e-11 2.673151234e-11 6.378613754e-11 7.526958858e-11 2.367138665e-10 1.855668512e-11 1.468019227e-11 8.156204467e-11 9.081822587e-11 6.468384926e-12 6.195244082e-11 9.971414407e-24 7.433005232e-11 3.477314912e-11 6.413572603e-13 4.568767143e-11 1.164142701e-10 4.094224977e-11 8.281257588e-12 4.908781033e-11 1.308547017e-11 3.374859484e-11 0 6.816047991e-22 3.284175843e-10 6.097864397e-11 1.063539952e-11 8.91631509e-11 1.426609405e-10 6.389530605e-11 4.429447988e-13 2.533658409e-11 2.324847798e-10 2.990186215e-11 8.553936742e-11 3.654826769e-23 9.749252533e-12 1.432553691e-10 6.896660783e-12 6.421067139e-11 6.219725106e-11 7.309486575e-11 3.11121825e-10 4.404091336e-11 7.874066698e-12 2.812082885e-15 5.431698265e-11 4.272969894e-10 3.162499631e-14 1.813080778e-10 1.724128456e-11 8.996212148e-11 3.101524605e-11 9.951093975e-11 2.469953026e-10 2.158664834e-11 6.504240065e-11 7.081600583e-11 2.309623799e-11 8.730982273e-12 7.486712121e-11 2.978235107e-14 2.550394047e-11 1.654067824e-10 7.243601766e-12 7.44706704e-11 3.070383996e-11 6.28117331e-11 0 1.26291549e-10 1.123079076e-11 0 1.762260895e-11 1.113665631e-10 7.819684557e-12 1.958856073e-10 4.303038126e-11 2.404379804e-11 9.777162771e-12 1.615168594e-19 2.794543988e-12 0 1.569195985e-10 1.193168744e-10 1.486874491e-10 3.265453837e-12 6.006539001e-11 3.70401343e-11 2.242413604e-13 8.921051178e-11 5.343303347e-11 1.271718742e-10 1.25848463e-10 1.327000684e-11 9.413512609e-11 1.910102242e-10 3.654782761e-11 3.566782241e-11 4.492219337e-11 1.674966923e-10 3.899099143e-11 2.289531687e-10 8.018311434e-21 3.677541965e-11 3.245081717e-10 1.125331747e-10 1.589225209e-10 1.87001263e-11 5.657651748e-11 0 2.830024587e-11 1.509912669e-10 1.990602728e-10 7.864766693e-11 3.598079618e-11 5.067503467e-11 1.28767991e-11 2.501261586e-11 1.814438506e-10 1.129996201e-10 8.945069032e-11 1.044214346e-11 4.155047575e-11 5.079293887e-11 0 2.442501893e-11 1.528097043e-11 2.52806638e-11 3.335411304e-10 8.219063462e-12 3.499762388e-10 1.35941767e-10 6.645904022e-11 2.945704832e-20 1.024067402e-10 1.468443563e-13 1.107226541e-10 2.919137256e-11 2.621708327e-12 1.558219659e-10 1.088048106e-10 7.110208477e-11 1.061343744e-11 3.063273356e-11 4.576967579e-11 2.063271828e-10 1.030127433e-10 0 1.052733856e-10 1.023754592e-10 5.907002545e-11 6.333353655e-11 5.804563884e-11 0 1.186091823e-10 3.334873232e-12 8.282420808e-27 1.129657653e-10 3.143487159e-11 7.445516859e-11 3.679300099e-11 5.68371717e-11 3.623518507e-11 1.941092374e-10 2.033802692e-17 4.336269044e-11 0 9.459523201e-11 1.27959198e-18 4.116209169e-11 7.361805734e-11 9.997115514e-11 1.099997939e-10 3.983688174e-11 0 1.141580268e-11 8.787444014e-11 0 5.059625524e-16 3.618690441e-11 1.755754566e-11 6.8224527e-11 1.806163565e-10 3.645944669e-11 3.289576222e-11 1.527130186e-15 5.386899571e-11 3.830998378e-11 2.57662566e-11 5.411258613e-11 3.087079845e-17 5.996722181e-11 4.436689627e-11 8.868820129e-11 2.43006127e-11 2.989171135e-11 7.406204434e-11 1.551357715e-10 1.208431573e-11 1.448084171e-10 3.301049487e-11 3.783995074e-15 4.71669183e-11 6.012850962e-13 1.514216149e-10 1.359338349e-10 5.081788774e-11 6.269241796e-11 1.601709319e-11 4.434207083e-20 2.28261491e-10 4.251996133e-11 2.647163739e-11 3.539325718e-11 2.013769277e-10 4.808039669e-12 6.921533137e-12 8.923663924e-15 8.375153193e-11 8.791767729e-11 3.597671289e-14 3.399479664e-10 0 1.169120493e-10 4.088677814e-12 2.177463337e-11 9.991970403e-11 3.262922996e-11 3.868587799e-11 1.754307559e-10 1.445626617e-11 1.586074056e-10 4.34537618e-11 4.942083051e-11 1.407412647e-10 1.08605993e-10 1.195920428e-10 9.548165523e-11 4.007449398e-11 5.845254077e-11 1.313189079e-10 4.169177498e-14 1.197726694e-11 1.436380438e-10 1.1757526e-10 1.137538452e-10 1.910945887e-11 7.434091346e-11 8.313396092e-12 2.228213723e-24 7.914344714e-11 1.534907943e-10 4.925575836e-11 1.576596278e-11 9.456295979e-12 0 8.545587777e-12 7.833901694e-11 2.992282734e-11 +2.018907787e-11 1.909660993e-10 2.385518268e-27 2.145120342e-11 1.205479686e-11 1.033813042e-10 4.957249759e-11 1.892106887e-10 0 0 1.825476419e-10 2.850220203e-20 1.378629898e-20 3.591842857e-11 1.567026802e-10 2.125906063e-10 4.029917866e-11 1.620437131e-11 9.917495252e-11 1.357723563e-10 8.608917226e-11 0 2.238740316e-10 2.825382887e-16 7.986482367e-12 8.169757231e-11 1.037795877e-10 9.647502021e-12 1.993930496e-11 2.956692079e-11 1.278340001e-11 2.283574856e-10 4.5421731e-12 2.630538091e-11 1.163192886e-11 7.273849587e-21 1.148550787e-10 1.823615733e-10 3.281357784e-11 2.967825022e-11 9.862055063e-12 5.148217828e-12 1.02069287e-15 1.803508303e-11 1.019938287e-11 4.726417324e-11 2.146251693e-26 1.549243953e-10 7.98866636e-14 9.501368058e-11 4.560274768e-12 3.824707711e-11 7.198777074e-12 0 0 1.123521486e-10 2.209684739e-11 6.723201588e-11 3.807706422e-14 2.238123023e-11 4.172272819e-14 2.37994103e-11 1.67624054e-11 9.268669271e-12 6.457703923e-11 2.149021719e-11 1.820056862e-11 2.567377175e-13 1.09408411e-11 2.583273691e-11 9.003412356e-11 6.98569205e-12 3.596190574e-11 3.821622507e-13 0 3.785855704e-11 8.918578383e-11 2.477566467e-11 2.21923867e-10 2.679936059e-10 5.181489678e-12 3.327281228e-13 0 3.078145093e-11 2.21933935e-11 1.643675884e-12 1.855302894e-10 9.905644116e-11 1.376202361e-10 1.703993961e-11 1.167698215e-11 5.235273129e-35 7.989913935e-11 1.218619193e-11 3.48635927e-11 7.36242165e-11 7.331479012e-11 5.968019206e-11 3.533685298e-11 6.310546277e-13 3.512205297e-11 0 1.498185179e-11 2.650937107e-11 4.222599066e-11 5.660179928e-11 4.419501514e-11 4.492242274e-12 1.814057165e-10 3.313671203e-12 2.246310465e-11 1.695694933e-11 9.637171837e-11 4.789202593e-11 3.607590421e-11 1.122880551e-11 4.447262468e-11 3.484177607e-22 0 0 2.931560047e-11 7.350719817e-11 1.385651216e-11 2.333543802e-10 3.849565877e-11 9.606202005e-11 1.099363353e-11 3.990075867e-11 9.626320408e-11 1.254787176e-10 9.826987445e-11 1.16858499e-10 3.046137961e-10 1.690923445e-19 1.008950259e-10 3.207784564e-10 1.562214771e-10 4.636009497e-15 3.241018622e-11 1.850008671e-11 8.179069462e-11 7.807278526e-11 1.24866792e-10 1.958499725e-11 8.194765002e-12 3.153000258e-28 3.195403438e-10 9.056487434e-11 1.381900006e-11 1.345948063e-10 1.767532697e-11 8.608339598e-11 1.47556738e-10 1.523686144e-10 3.050035645e-12 6.751868642e-11 7.834310963e-11 4.920216705e-12 7.219548925e-11 7.930545164e-11 5.901147484e-11 1.25609866e-10 1.556212646e-11 7.90391261e-12 3.335085238e-11 2.774693348e-11 7.284191198e-11 3.41587234e-26 0 3.682881689e-11 2.230701632e-11 4.50474613e-11 1.18022206e-10 3.329189801e-11 3.378415478e-11 4.307309505e-16 9.213735019e-12 0 5.807124232e-12 3.911835935e-11 0 1.276653581e-10 8.641931446e-11 5.536891091e-11 1.194928767e-11 1.300681706e-32 8.251583195e-11 0 1.613202525e-11 2.376105133e-10 1.748540791e-11 4.958108804e-11 4.767530409e-11 2.93459931e-11 2.437715403e-11 1.627900919e-11 3.310026592e-11 1.064383852e-11 3.12437612e-11 4.676608856e-11 2.332816118e-10 6.474769302e-15 1.508058504e-11 3.505735793e-12 0 1.6846539e-10 4.22161066e-11 2.300834061e-16 8.764333223e-18 0 3.406190487e-12 6.091366882e-13 3.588899018e-11 1.271195506e-10 1.937250817e-10 6.313353237e-11 4.053641403e-11 5.0401898e-11 3.186975978e-11 7.335079269e-11 1.780675538e-10 1.032799025e-10 1.252401045e-10 6.678092422e-12 1.222315842e-10 6.102190117e-11 7.859996307e-11 6.054503279e-11 3.699449279e-12 9.724886465e-11 3.802108389e-14 1.030480434e-11 2.218814488e-11 2.115173321e-11 2.658050762e-22 1.29038121e-11 0 3.144647959e-11 1.080737988e-11 0 3.085996104e-11 1.046269127e-10 9.218987181e-11 2.505418842e-10 3.672767583e-11 2.933003627e-16 3.22330741e-11 1.784677061e-10 3.842045131e-11 4.240008702e-11 2.211833272e-11 1.14000096e-10 6.831707936e-11 1.111707934e-11 9.238753611e-16 3.598045079e-12 8.356585556e-11 1.548776162e-11 1.093507581e-10 3.892619682e-10 1.61361854e-10 4.906864995e-11 4.688788934e-19 1.612010035e-10 7.584091129e-12 5.539254636e-11 4.822971734e-11 5.791561027e-11 4.377836652e-11 2.066805795e-11 3.272996369e-11 2.404624932e-11 1.767174877e-11 0 6.769678606e-20 2.016422786e-15 0 3.216659795e-27 2.376183639e-11 6.193298012e-12 1.171296128e-11 8.147414979e-11 3.810798684e-12 4.953351719e-12 1.106098763e-11 0 1.328288909e-12 3.590537068e-11 5.269762646e-12 3.041179406e-11 4.756692816e-22 1.088340917e-10 8.56187779e-12 1.821498047e-14 8.380130967e-11 1.216063624e-10 2.755545492e-11 3.708478872e-11 4.010018318e-11 1.890335839e-10 +1.65699569e-10 3.70192013e-11 3.257642122e-11 2.653847496e-11 1.626661172e-13 7.927526872e-11 4.770464052e-11 8.505247622e-12 2.790791031e-11 3.718828418e-11 5.00499646e-11 9.351401392e-12 8.141420885e-11 2.484389061e-11 2.799260774e-12 3.119470064e-11 4.380036114e-31 3.597372654e-11 1.094097297e-10 1.129601204e-10 6.950858458e-11 7.99316175e-17 3.411167542e-11 2.120053644e-12 2.544856375e-11 1.443237856e-19 1.324108643e-11 2.565369336e-11 1.804886487e-11 1.777755639e-11 4.614728859e-11 8.222808764e-11 2.951842945e-11 1.692412472e-13 3.195401726e-11 1.678309347e-10 1.793122847e-10 1.78772874e-10 1.350345193e-10 1.112536517e-10 3.681059826e-11 2.080553563e-16 1.420551073e-11 5.419696179e-11 5.860034836e-20 5.768862593e-11 1.618732825e-10 2.278059815e-11 1.803526611e-10 8.84810769e-11 6.373136296e-11 1.567003475e-10 4.201199042e-11 1.020485286e-11 7.172408571e-11 9.629537435e-11 7.298754199e-11 3.542777163e-14 2.302851162e-11 6.71189822e-11 5.407551463e-11 1.796997142e-10 6.690999712e-11 2.757557201e-10 8.234834498e-11 8.745712719e-11 0 1.027834791e-10 1.583916065e-11 6.440836607e-11 4.694168843e-11 1.072317749e-11 1.405697408e-10 2.060650025e-16 3.618266009e-11 5.718767799e-11 6.106929492e-11 4.300261589e-11 0 1.951637508e-17 7.18867775e-11 2.873636692e-13 6.567776734e-11 7.069551457e-12 2.399055716e-10 1.08269598e-10 0 4.490873498e-11 2.852773058e-11 1.089275897e-10 1.298762352e-10 1.183047635e-14 3.998507826e-11 4.851597642e-12 1.337434542e-10 1.134213309e-15 4.581250992e-11 7.769670822e-11 2.201611742e-11 0 0 5.45694755e-11 0 5.021588406e-11 6.363991708e-12 7.019245877e-11 6.092567977e-11 1.153708331e-11 1.453362456e-10 1.072006565e-13 9.925405814e-12 1.198425328e-10 5.456483119e-11 1.379399673e-10 0 0 0 9.210317364e-12 1.753747414e-15 6.922890658e-11 5.865642867e-11 0 3.934838652e-11 0 3.443982831e-11 8.804520095e-11 6.414312046e-11 5.68179397e-12 1.014348956e-11 7.886377893e-11 2.52902441e-12 0 1.125431731e-11 4.314640853e-13 2.879380373e-11 1.002320506e-10 1.885948168e-12 7.525231296e-11 2.512218442e-11 1.525317634e-10 7.548774499e-11 1.712623987e-10 7.649431976e-12 8.251120251e-11 7.297755534e-27 0 3.481039339e-11 2.217307512e-11 9.829747238e-11 3.62769842e-11 0 1.869329431e-16 4.383040119e-14 1.258192415e-10 3.509929279e-11 0 1.084352531e-11 7.071365113e-11 9.720369707e-11 9.574991907e-11 2.962184159e-11 9.488266972e-11 1.171822482e-25 6.296803366e-12 6.167127268e-12 0 0 1.037212576e-10 9.862115531e-11 3.170948104e-10 6.854622902e-11 3.186811174e-11 6.817317218e-11 2.932615935e-10 0 4.290343672e-11 3.203755047e-11 6.69916685e-14 1.56865682e-19 4.987611751e-11 0 2.080538614e-11 1.279553354e-16 1.577021198e-13 2.049104352e-11 2.230643354e-17 5.964322037e-16 1.952480477e-11 0 0 1.237033703e-11 1.687352258e-10 6.876288111e-11 1.542324694e-11 5.583362372e-25 1.662084113e-11 0 1.643984316e-12 8.094029155e-11 1.146221405e-11 2.197352587e-10 6.381168737e-11 2.524521117e-11 3.349760758e-11 2.364170778e-10 3.525709213e-17 7.524641504e-11 1.503452333e-11 5.153051955e-11 1.611177662e-19 2.374570194e-25 1.043644238e-11 2.277531243e-14 9.729785583e-13 4.869037181e-11 2.900922343e-19 1.241759324e-15 5.044249613e-11 1.408717542e-11 1.366203451e-10 7.947375489e-12 6.580399969e-12 1.835000226e-11 1.629790857e-10 5.485967155e-11 3.316541737e-11 5.493442622e-14 7.340781182e-12 6.584078067e-11 2.204990829e-11 6.702204049e-11 1.759704415e-14 1.809161922e-10 8.501764685e-15 4.470162103e-11 3.631823236e-11 5.020027767e-11 1.856244934e-11 1.049462909e-11 2.149172231e-11 1.236042492e-10 4.472509663e-11 9.984152572e-11 0 0 0 3.149470646e-11 9.43055167e-12 1.503612779e-16 7.507500158e-12 4.629132369e-11 5.102380208e-11 6.5928866e-11 0 1.616916754e-10 0 1.957565816e-11 7.891940599e-11 4.482253942e-11 2.472124507e-11 1.480708108e-10 6.226416171e-11 6.526694641e-11 4.875973706e-11 1.696089997e-10 6.866542482e-11 2.694281902e-10 6.961385295e-12 3.440544837e-11 3.536768511e-11 1.630225672e-10 0 1.2521987e-10 1.438788673e-12 7.404178392e-29 1.133714681e-11 0 3.304470441e-11 0 0 1.439021802e-11 5.079503892e-10 2.981457934e-11 4.849326472e-11 2.447026337e-10 5.849284981e-11 1.494416057e-10 1.273805812e-11 9.387677108e-11 3.285005318e-11 1.965608633e-23 0 1.472496896e-10 8.291970632e-11 1.440994549e-11 4.260749918e-11 1.040192943e-11 1.204421279e-10 5.57762436e-11 4.591038239e-11 +1.216237508e-20 7.957832326e-12 7.867535168e-11 9.35952301e-11 1.200425932e-11 0 1.242562342e-11 2.222992134e-11 2.258399687e-12 4.833048026e-12 1.646504913e-10 2.157871789e-11 5.903082171e-11 1.700731857e-11 3.172636297e-28 0 1.35858855e-11 1.249554788e-15 1.75311829e-10 7.634709989e-11 0 7.972193091e-11 4.844535241e-11 4.129156999e-11 8.568445131e-13 2.091585292e-11 4.794709386e-11 1.085926973e-11 0 2.811725049e-11 3.115127624e-11 1.27461156e-10 1.924767357e-11 3.780804172e-11 2.756970774e-11 1.263466368e-17 1.413838931e-11 2.32073312e-11 8.497330852e-11 2.475748605e-11 1.811603004e-11 0 7.98894438e-12 5.714926527e-11 1.225565384e-10 2.363116838e-11 5.47768437e-11 1.17341708e-10 8.503327259e-11 5.836557869e-11 1.437045347e-11 3.224987485e-11 2.34977679e-11 1.634124532e-10 2.827002604e-11 1.417599933e-10 0 3.63651214e-11 1.01934027e-10 2.402838378e-11 1.19067517e-11 4.129536714e-11 0 6.197360822e-11 9.732358261e-11 5.637624057e-11 1.065746858e-10 1.711469743e-10 1.066730117e-11 2.28108996e-11 5.257837738e-11 0 7.915627033e-11 1.503590454e-11 7.358547159e-11 1.246506316e-11 1.475011977e-14 5.00143774e-11 3.849211486e-11 5.059206651e-11 0 1.559145655e-11 8.666944875e-11 1.201846659e-11 4.27767985e-11 7.168036167e-11 2.544557407e-10 1.708969769e-11 0 2.791067539e-11 7.507664139e-11 8.664710013e-11 2.95462739e-11 8.049087991e-11 5.725392487e-12 0 2.571327347e-11 2.845065931e-11 0 3.337008169e-11 2.383478056e-11 0 1.565599094e-11 0 3.914803283e-11 2.09517379e-11 0 3.012693112e-11 0 3.568657115e-12 2.239697452e-10 1.428636312e-11 9.286961942e-11 2.902581646e-14 0 2.056624369e-11 1.097345154e-11 2.787462971e-19 1.95904612e-11 1.409373011e-11 8.396725392e-11 0 0 2.000080276e-15 2.421477237e-11 8.950078592e-11 0 7.595945481e-12 4.562858423e-11 0 4.210621941e-11 0 9.309708388e-12 2.844998395e-14 1.602076855e-11 1.938534485e-11 0 2.480546819e-28 9.626011069e-11 1.059430321e-14 2.222662842e-11 4.056390543e-11 1.117388307e-11 4.380154033e-13 2.52543865e-11 2.354637865e-11 3.214981394e-14 1.094037793e-11 8.202884517e-11 6.061198038e-14 6.336644166e-11 2.126286124e-11 1.636015465e-11 7.788626894e-11 6.667991682e-11 1.248253122e-10 0 1.781642072e-11 6.508065232e-11 4.597337695e-11 2.675834653e-11 2.245183194e-11 0 4.489930926e-19 5.653945577e-12 0 1.617728438e-11 0 2.723598159e-19 3.566072212e-11 2.502197712e-11 7.81422015e-20 3.479284869e-11 1.028478033e-10 0 4.560115746e-12 0 2.005059062e-11 8.444004104e-12 4.476872153e-11 0 0 5.735481338e-13 1.616765969e-11 3.066838354e-11 2.21559578e-12 0 0 2.251909536e-11 4.235437446e-11 7.804534113e-11 0 1.442134077e-10 9.836297321e-11 5.48830118e-11 2.310557634e-18 1.448663505e-15 2.98013589e-12 4.876831353e-12 4.19443769e-26 1.046387089e-10 1.039745249e-10 0 0 5.944937737e-11 8.167312653e-11 0 4.998045293e-11 1.248945248e-11 3.530768979e-22 4.463660621e-11 6.837544861e-11 1.465048967e-26 0 0 1.04503901e-11 5.803384075e-14 5.057175765e-12 2.089082982e-11 0 0 4.220349728e-11 0 3.83865821e-12 1.438419954e-10 7.049319459e-20 0 0 2.182068689e-11 2.479782629e-11 8.423599033e-12 0 6.79505657e-11 2.968362067e-11 1.06854074e-10 7.616772514e-11 3.228525322e-12 1.327563364e-15 7.76026464e-14 3.955677935e-11 3.317174339e-11 3.764686086e-11 9.834756857e-13 2.932264829e-11 1.501109788e-10 3.647328597e-11 0 1.193537764e-10 1.105321991e-11 1.040640838e-28 1.446277857e-16 0 2.524999444e-11 7.822434865e-12 3.903162267e-10 4.338952878e-11 2.02632336e-11 1.87133832e-11 7.932918924e-13 3.812509099e-11 0 2.20750453e-11 1.280547369e-11 3.919950392e-22 2.135053501e-11 4.837938393e-11 8.4640352e-13 4.335406412e-11 8.083658525e-17 7.670325588e-17 3.162690975e-11 1.840054196e-11 2.395482462e-11 6.613538013e-14 1.889822131e-11 3.643699224e-11 0 6.446997668e-15 8.074744618e-12 1.878012087e-10 1.296166412e-15 0 5.466378332e-11 3.581293178e-17 4.051702172e-11 0 2.669716762e-11 1.333884469e-11 2.102616709e-11 1.195936305e-11 5.906670963e-19 0 2.223394523e-11 7.699670267e-12 7.040863837e-11 7.742675404e-11 9.847461319e-12 6.442270131e-12 1.066230842e-10 6.309368687e-12 +1.031389077e-11 9.78104809e-12 1.085923733e-10 0 3.501211166e-12 7.958177074e-18 8.809615233e-11 1.796573588e-11 1.80123704e-11 6.433224386e-11 3.995712134e-11 1.201566666e-11 4.93172625e-11 1.116012669e-10 3.340864008e-11 0 2.025196428e-11 2.553461293e-11 1.174595141e-10 0 9.664426524e-12 1.406517184e-11 1.564748638e-10 2.253005784e-11 0 1.752268795e-12 2.483925675e-13 2.093743252e-11 0 0 0 0 1.656005283e-10 3.570096253e-11 0 6.822367291e-11 0 1.276084483e-11 4.336481288e-11 2.074660985e-11 4.64240044e-11 8.816497362e-11 1.258287318e-11 9.20702515e-15 3.179072888e-11 2.617990835e-11 5.843612581e-11 1.283562556e-11 0 1.072413003e-10 4.531591124e-11 7.666867263e-12 0 9.352876458e-18 0 5.088933299e-11 9.715520579e-12 0 2.110395522e-11 0 0 1.180909571e-14 0 5.339799162e-11 3.697504929e-11 0 5.203199829e-11 7.286728712e-12 1.830953204e-11 2.787160442e-16 6.874745443e-12 1.058765505e-10 2.76729291e-11 4.610978617e-11 0 4.455607639e-12 2.944463327e-11 0 1.195053985e-11 1.866215607e-10 0 2.244701029e-11 1.176899034e-10 1.203382883e-11 4.946471157e-39 4.243900149e-11 1.169083643e-11 3.006211898e-11 1.099339056e-15 1.74826203e-11 1.09904929e-11 2.775338809e-11 3.618104796e-11 3.429366925e-13 0 0 0 8.892900647e-26 8.543811952e-12 0 1.112100484e-11 0 1.269401791e-10 1.953446221e-11 5.112253757e-11 1.261798224e-18 5.329471416e-22 8.20100583e-12 1.81131015e-10 9.896383597e-12 1.163338966e-11 3.664529317e-20 1.648475196e-12 1.361241089e-10 4.447865787e-11 1.206144123e-11 6.658156043e-11 1.137394206e-10 0 0 1.552055102e-10 8.289001668e-15 3.616542386e-11 1.940316599e-10 2.482518113e-15 2.304165752e-11 0 0 9.317759434e-12 8.130694459e-29 9.797815245e-11 4.017347562e-11 3.685634888e-11 1.031139203e-10 0 6.554361113e-13 3.353045568e-12 5.133982566e-11 6.709857412e-12 0 1.810231833e-10 3.300505457e-11 0 9.675224607e-11 1.396675596e-10 0 5.724686669e-11 1.894344231e-12 0 3.42078086e-12 1.98332252e-11 0 3.454456406e-11 2.826953443e-11 3.046959516e-11 0 6.734299737e-11 8.439200475e-29 2.191615468e-11 4.83080782e-11 8.757103816e-11 1.314657622e-11 2.042659784e-11 8.630330128e-11 3.050396297e-11 4.38812978e-12 0 0 4.404528655e-11 8.223959613e-12 6.638185944e-14 0 1.169335924e-10 9.923444529e-27 7.981404419e-12 9.97953922e-11 3.610702093e-11 3.268136788e-11 0 1.631430577e-11 1.073364959e-15 0 3.944614242e-14 9.556025554e-11 0 2.266541104e-11 1.865509886e-11 1.03910456e-11 0 0 2.342333453e-11 1.309744516e-10 6.607227308e-11 1.217623363e-24 1.833555092e-11 2.359086787e-18 1.605376867e-11 0 2.166728925e-11 0 1.351436988e-11 0 2.627597087e-15 6.415212868e-11 1.502248012e-11 2.988197409e-10 3.163999042e-11 0 7.515609409e-11 1.077178428e-11 1.12586153e-10 0 1.632255108e-11 0 2.430830684e-11 2.716401783e-18 0 4.940528826e-11 2.197488639e-11 1.867087362e-11 1.838150708e-11 4.569110155e-17 0 6.205117404e-11 0 0 1.706023951e-11 2.439209627e-11 3.606549084e-11 8.557113771e-12 2.964645996e-11 5.317519533e-11 5.118698901e-11 2.004290325e-11 3.282639694e-24 2.782589451e-11 0 5.834787775e-12 0 2.490375588e-11 2.473986413e-25 4.685296205e-11 8.212389315e-12 7.186767775e-26 0 8.327415315e-12 5.742777664e-11 7.784437882e-16 1.152676269e-10 3.497420404e-11 0 0 0 2.986285635e-11 6.063529966e-11 4.880661685e-13 6.224221597e-11 0 2.43962897e-11 4.742936144e-11 9.291891891e-11 4.67035978e-16 4.281658082e-11 1.557955195e-11 6.61184839e-11 1.173508573e-11 3.450304059e-11 5.222510886e-11 4.219005536e-11 1.520802877e-10 2.425512579e-11 2.372076299e-11 8.519503154e-23 5.895579658e-11 0 5.450827039e-11 1.426749227e-11 0 0 2.327499776e-11 1.746045411e-11 6.469619002e-11 2.192027269e-10 4.844642203e-11 1.596363483e-10 4.250768168e-11 2.139476395e-12 3.822526369e-11 1.610020893e-11 0 6.18089504e-12 5.887748834e-19 4.657136223e-11 0 0 9.317487942e-14 0 4.514762448e-11 0 0 +2.272332163e-11 2.8962394e-18 1.305914561e-11 8.696812351e-17 5.791745034e-16 0 2.242396798e-11 1.725136802e-10 0 1.269158703e-10 1.067350095e-23 1.989831586e-11 1.513136983e-11 1.343889179e-10 2.772921519e-19 1.666465157e-11 0 5.77520175e-11 8.126767051e-11 6.295221187e-11 1.197543121e-11 0 0 0 0 6.075075717e-12 0 0 5.836680003e-14 1.021555783e-10 3.955473755e-11 2.468431379e-12 1.868861051e-11 1.303518991e-16 7.975399803e-15 0 8.079846555e-11 1.014666318e-10 7.766168272e-11 1.823146713e-12 3.199984842e-11 1.308856164e-11 9.37100242e-11 1.783885523e-11 0 4.265718023e-20 1.388380068e-12 1.678858212e-10 6.284212357e-11 6.115101141e-11 1.289564071e-11 0 1.162377879e-20 0 4.011977638e-11 8.27484088e-12 1.208965188e-11 1.859943775e-11 8.501724464e-12 1.663587814e-11 9.876270545e-12 1.964111936e-11 2.167365326e-10 0 1.689102163e-11 0 0 0 6.793529956e-18 7.005063335e-12 1.832052185e-11 1.337781297e-11 0 1.897808517e-11 1.069998469e-10 0 2.756555858e-11 8.93130786e-12 0 0 6.074409823e-11 8.572442597e-22 1.085740738e-12 2.270665709e-10 0 1.117208029e-10 1.270641484e-11 0 4.136192624e-13 7.827590614e-11 1.364432924e-12 1.452356378e-11 8.624654667e-27 0 0 0 0 0 3.376890098e-11 5.806544777e-24 1.966629454e-10 0 1.37800429e-11 0 2.641749876e-25 2.753125976e-11 0 2.744914298e-11 0 1.238548421e-11 0 7.980533624e-11 2.30227782e-11 4.864860191e-15 5.617708001e-12 0 1.52993348e-11 2.809245437e-12 0 1.711089209e-20 0 0 4.557112361e-16 0 3.245558463e-11 5.549718666e-11 1.535655191e-13 0 8.653147897e-11 5.835657019e-18 0 3.473063186e-11 0 0 2.087192742e-11 0 3.183711631e-11 5.311527186e-12 6.978625708e-11 2.530113525e-11 1.461580577e-10 3.156994544e-11 0 1.630601139e-15 8.771884844e-12 6.600796211e-11 0 2.011620366e-11 1.225242507e-11 1.247375516e-15 2.560138309e-13 0 1.154204397e-12 2.32816648e-11 0 2.850144439e-10 1.755657447e-10 0 0 0 6.475255569e-11 1.97794142e-10 0 6.184771306e-11 0 3.703998054e-11 0 1.133070473e-15 1.105431538e-11 0 1.417761447e-11 0 1.834977915e-11 1.12780819e-11 0 0 0 1.182360612e-11 7.762795125e-20 1.2281662e-10 7.9980272e-26 0 9.323905781e-17 0 2.055551627e-15 3.553517077e-21 2.148621856e-15 4.628457185e-11 0 0 0 1.299953151e-10 3.061045031e-11 0 0 0 0 4.231067604e-12 3.148666201e-11 3.373992707e-12 8.440152096e-20 8.569146891e-12 7.167925982e-12 1.53550466e-11 1.333351292e-10 4.894161967e-25 1.726758562e-10 1.046624706e-11 0 1.310554531e-11 3.035555941e-13 3.853602581e-27 0 1.766493919e-27 3.321805372e-12 9.067807318e-12 0 2.016521284e-18 0 8.566748788e-11 0 1.637252305e-11 1.166336943e-11 2.173553465e-27 0 5.988883152e-11 1.398397835e-10 5.105459112e-11 1.931639827e-11 9.11669762e-15 0 2.454174538e-11 0 9.715409992e-12 3.472424246e-11 3.53098426e-27 6.130955807e-11 0 0 5.229591248e-11 2.948841145e-15 0 5.259871409e-17 3.879806748e-22 1.328928899e-10 3.403951757e-12 1.935467647e-11 5.535677467e-15 1.22766591e-11 1.086221948e-11 0 1.375437414e-11 3.099255432e-11 0 8.936606287e-12 5.840069466e-12 1.791070819e-11 1.834146449e-11 9.980613601e-12 4.506276836e-11 0 0 0 0 1.777243564e-11 2.584959209e-10 0 0 8.066619281e-27 5.903653079e-11 3.529867192e-14 2.03338169e-10 4.251033353e-11 0 0 1.348862703e-11 0 1.12087242e-16 1.613386334e-11 9.91601968e-12 2.023813856e-11 3.940143665e-14 2.417553666e-12 9.104792004e-11 6.413873555e-11 1.359073345e-10 8.498994092e-12 0 0 4.466511503e-11 0 1.742740841e-11 3.874236844e-12 0 6.515870329e-14 7.895540656e-22 0 0 1.056348329e-10 0 +3.854143313e-11 1.026657383e-21 9.590040186e-11 5.436890206e-13 0 0 9.791099872e-11 0 1.156728519e-11 4.080787073e-13 9.903547164e-12 8.171669945e-12 0 1.186194434e-11 0 0 0 0 2.093139784e-11 1.003650928e-21 0 0 1.858357254e-11 0 5.034909855e-14 8.472066894e-11 0 1.492592093e-11 0 1.63834511e-11 1.34740017e-11 0 1.913959256e-11 0 0 3.387005092e-12 5.704758297e-17 0 0 0 3.387081462e-22 1.612691594e-22 0 6.178643939e-11 9.452951176e-11 1.635532249e-14 6.776615322e-11 8.49250912e-12 0 0 0 4.421807484e-11 0 0 1.196402897e-10 8.846363689e-15 2.143482751e-11 6.316215678e-12 0 6.342808856e-21 0 0 0 0 7.176768899e-12 0 1.360251211e-17 0 0 6.123577777e-11 2.073355886e-14 1.037369873e-13 1.124598805e-11 1.053053861e-14 1.125343953e-10 9.760141924e-12 1.058923782e-16 0 0 0 0 0 0 1.541277957e-23 5.512202366e-12 3.454008943e-11 0 5.052537321e-12 8.933247552e-11 1.787720876e-10 0 1.33271468e-10 4.040497465e-15 0 7.192940621e-11 0 0 0 0 7.54471202e-11 0 0 0 0 5.063303006e-11 0 8.544821432e-11 5.020583005e-11 0 4.927434072e-11 0 4.495621832e-11 3.905665401e-11 0 0 0 0 0 0 0 3.185107581e-12 0 1.009803637e-22 0 0 0 6.055953796e-11 0 6.012082156e-11 0 5.306824854e-11 0 1.381201342e-19 0 2.100003763e-11 7.197002219e-11 0 0 1.072148099e-11 0 0 0 0 1.458891699e-11 0 0 0 0 0 0 0 0 0 1.874045877e-11 0 0 0 3.653143614e-23 0 2.277664305e-17 0 0 0 0 4.831366603e-11 7.301441544e-11 0 0 0 0 0 4.591518198e-12 0 3.327837528e-17 0 0 0 0 0 0 3.589392133e-11 1.59251708e-11 8.426195708e-14 3.703008937e-11 0 0 0 7.745432924e-12 0 2.030177348e-11 1.143293044e-10 2.988722428e-19 2.802235245e-11 3.04615298e-11 7.213998307e-21 6.460137562e-13 0 0 0 0 4.424737302e-27 4.793004915e-11 1.382790742e-11 0 2.707759212e-11 0 6.348140344e-11 3.908566059e-12 6.733117726e-11 2.199317946e-11 6.820034569e-11 0 0 0 4.179168242e-12 9.961725581e-11 3.518161384e-11 2.744447023e-14 2.156951066e-11 0 2.539986448e-12 0 0 1.203258941e-15 1.87379096e-23 0 0 0 0 0 2.342788044e-14 0 3.864599076e-12 3.030847178e-18 0 2.892029347e-12 2.691829434e-11 5.595637203e-12 1.386051983e-13 0 5.042998488e-11 0 0 6.66132376e-12 4.786488681e-11 2.152342279e-14 4.92422175e-18 0 3.473491927e-11 0 1.362336754e-10 6.525015573e-14 1.711300233e-10 0 2.621302174e-11 3.924011403e-11 0 0 0 1.368009811e-17 4.399831008e-11 1.20898099e-18 6.845478776e-12 0 9.008422471e-12 1.080502466e-11 1.094294668e-10 1.893717142e-11 0 7.233870899e-27 4.457941667e-11 0 0 0 7.62655172e-12 9.480008072e-13 0 5.325047045e-11 0 1.985692292e-11 0 6.650612661e-12 6.009010019e-11 0 3.497885799e-11 0 0 0 2.118001682e-11 1.457184192e-10 0 0 5.536613431e-11 3.651590528e-21 6.898926758e-11 3.313222503e-13 2.576117448e-11 1.012202556e-11 0 0 +1.295779153e-11 1.319099627e-11 1.96547699e-11 0 1.736250259e-13 0 0 0 0 0 0 0 4.191338547e-11 0 8.763651858e-12 0 0 5.308245583e-11 0 2.622501613e-33 0 1.019602285e-10 0 1.683631579e-11 0 1.413867017e-11 3.464976682e-11 1.887003506e-11 0 0 0 3.142851108e-11 0 1.15220549e-19 3.431095415e-24 5.1766246e-11 0 0 0 0 8.003085878e-19 0 0 0 0 5.44481376e-11 1.227137609e-11 4.71992571e-19 1.344556206e-11 0 0 0 0 2.727825877e-11 6.341591893e-15 0 0 3.414777445e-11 8.157447888e-13 0 0 0 8.127969344e-28 0 0 0 1.201381989e-11 2.224508983e-14 0 0 1.478883417e-11 0 0 0 2.86233352e-11 4.651426767e-11 0 0 0 0 2.555977718e-14 0 3.381901564e-11 1.217989082e-11 0 0 0 0 0 0 0 6.257700724e-27 0 7.229932043e-11 0 4.18149144e-11 0 0 2.851837379e-11 0 0 5.602867648e-11 0 0 0 6.734905977e-11 0 0 5.906117316e-12 0 0 0 4.241251463e-26 2.847603158e-11 0 8.727405172e-20 0 0 0 0 1.774580597e-11 0 0 2.254105073e-11 0 2.033088131e-11 0 1.035882009e-11 0 0 0 0 3.861591415e-13 0 0 0 0 0 0 5.587858396e-12 0 3.536690334e-11 6.240006037e-14 0 0 0 1.897802023e-24 8.227556146e-12 0 3.174194315e-11 2.917768757e-21 8.305178859e-11 0 0 0 0 3.53632433e-25 0 1.453155407e-15 0 3.565260025e-11 0 4.003101149e-11 1.231086717e-16 1.23424149e-11 0 0 1.516655371e-19 8.23235104e-12 0 0 1.03520037e-41 2.085612058e-12 0 0 0 9.386284685e-12 0 0 4.6624693e-18 0 0 3.158327793e-14 1.68451955e-11 8.609770793e-11 1.100811418e-14 0 0 0 1.611128942e-26 0 1.561678094e-11 1.108033957e-11 0 0 0 0 0 0 2.712049046e-14 0 0 0 3.265212501e-19 4.121581341e-12 0 0 0 0 0 0 0 0 0 0 0 2.532721583e-14 0 0 0 3.473432651e-15 0 7.548912606e-11 0 0 0 0 0 0 0 2.032140667e-11 3.10785741e-11 2.49945868e-11 0 0 0 1.052237108e-11 0 0 0 3.651740097e-21 0 5.241377288e-12 0 0 4.712311139e-12 0 3.936186209e-11 0 0 0 0 0 0 7.93789828e-16 0 8.953613596e-12 0 2.074966985e-11 0 0 0 4.978129956e-11 0 0 0 1.460012203e-11 3.308446462e-16 0 2.102265695e-14 3.045817511e-11 0 0 0 4.863487271e-11 0 0 0 1.510245272e-11 0 4.278436831e-11 0 0 2.763536447e-11 0 1.343843331e-10 4.380489002e-11 0 0 0 0 0 0 0 0 0 0 0 0 1.021158245e-11 +# Errors [PSD_4PI/PSD_4PI.dat] I_err: +0 0 0 0 0 0 0 0 0 7.311770765e-13 1.086283723e-16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.04074204e-13 0 0 0 0 4.372287023e-27 0 0 0 0 0 7.338159334e-11 0 0 0 0 0 0 0 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.19836707e-12 0 0 0 0 0 0 1.34440804e-20 1.409925914e-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 1.567822131e-17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.006369923e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.823578936e-12 0 0 0 1.581600341e-11 0 0 0 0 0 2.52316499e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 2.768962386e-14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.479387877e-17 0 0 0 +0 8.517303687e-11 0 0 0 0 0 3.815294543e-12 0 2.442504202e-16 0 0 0 8.585725385e-12 0 0 0 1.18689567e-11 0 0 0 8.063387771e-12 0 1.930403838e-11 0 0 0 7.451009623e-11 0 0 2.936428675e-11 1.610876254e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.479774634e-11 0 0 0 0 1.818014746e-28 9.79708745e-12 0 1.17606626e-10 0 1.971338827e-29 1.319258579e-10 0 0 0 0 0 0 7.177600902e-12 0 0 0 0 0 0 8.204526367e-11 1.965579281e-11 0 1.265837487e-17 0 0 4.405670268e-11 0 0 0 5.864044209e-15 0 5.055879007e-12 0 4.72280282e-18 0 0 7.710046852e-11 0 6.221063302e-13 3.474742052e-12 0 0 0 0 0 0 0 4.049869765e-11 0 0 0 0 0 1.729208005e-11 1.719163157e-28 0 0 0 6.296212256e-12 0 0 0 1.88694897e-11 2.279290946e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.655680112e-11 0 4.587989947e-11 0 2.558962808e-26 0 0 4.052695203e-12 0 0 0 4.245717898e-12 0 0 0 0 0 0 0 3.440792814e-11 1.190956741e-11 0 0 0 4.788015179e-12 0 0 0 0 0 0 0 0 0 0 0 1.001402989e-16 0 0 0 0 0 0 0 0 0 5.635797247e-11 0 0 0 3.002906945e-18 0 0 0 3.23997849e-16 2.97384665e-11 4.621971532e-11 1.941154762e-23 0 0 0 3.135491271e-11 1.21247893e-17 0 5.427315779e-11 0 1.88049523e-11 0 6.913735024e-11 0 0 2.527075748e-16 1.474060837e-11 0 0 5.074132122e-11 1.836572848e-11 4.010435349e-14 1.992191956e-11 6.148071372e-13 0 1.238416366e-11 0 6.681516513e-11 1.042348098e-10 4.985926437e-14 0 0 0 9.102654831e-12 3.236637614e-11 0 0 0 0 1.182791876e-11 0 0 3.086825549e-11 7.340547264e-11 0 6.177464553e-11 0 0 0 4.170170915e-11 0 0 2.842355119e-11 0 0 0 0 0 0 4.713971468e-14 0 0 0 0 3.225547512e-11 1.705681648e-25 1.370733607e-13 1.682252696e-15 9.892616597e-12 0 2.321736025e-11 3.354467782e-15 0 0 1.847477308e-18 0 7.365909488e-11 0 0 1.904343242e-11 1.22654194e-11 0 1.995118043e-11 9.090684898e-20 1.024149271e-17 0 5.283351724e-15 0 3.249739386e-17 1.115832061e-11 0 1.036683695e-10 0 9.565529174e-18 0 2.874358479e-11 7.824972066e-15 1.096244824e-11 0 0 0 0 5.290844364e-21 0 0 0 0 0 0 +1.098043855e-10 0 0 5.174786953e-20 0 0 6.182580417e-11 0 9.347356602e-15 3.009628211e-11 0 0 9.627031306e-13 2.849397984e-17 0 4.416271937e-12 0 0 2.874525972e-10 0 4.978896433e-11 3.228795824e-11 6.014629199e-12 3.509609691e-11 0 0 0 0 2.992194202e-14 4.511408618e-11 5.023215161e-12 7.08741223e-12 1.426317258e-28 0 0 1.315150458e-14 0 1.513979455e-10 4.795395388e-11 0 2.43530807e-15 1.472455061e-15 9.340781134e-14 2.587135372e-11 0 0 0 1.101807342e-11 0 1.427194823e-18 4.634702935e-11 0 0 2.320321388e-25 3.567385151e-11 4.401394665e-11 0 0 1.366467897e-11 0 0 1.449317177e-11 2.985039142e-11 3.088252604e-11 0 0 4.66115436e-11 0 0 1.050369463e-13 0 0 1.210370463e-25 5.067289121e-15 1.429353559e-10 6.703627714e-17 0 1.335367309e-10 0 0 3.638321077e-11 0 6.304950603e-11 0 0 3.868887215e-23 0 1.022269991e-10 0 7.074383244e-23 0 0 1.327084478e-16 0 3.427876481e-11 0 0 0 1.477652309e-11 2.782339466e-11 6.319870709e-12 0 5.57767408e-11 0 0 0 3.638661695e-11 0 0 0 2.022421846e-11 0 0 0 0 0 0 0 0 0 2.547823968e-15 0 3.318438294e-19 5.239804704e-11 0 0 3.205843178e-16 0 0 0 5.255417388e-13 0 1.630680193e-11 6.27538136e-11 0 3.915102824e-12 1.628322046e-11 2.892644287e-15 0 4.575326364e-11 1.619144684e-11 2.842331526e-11 0 6.327046366e-15 0 0 1.314948798e-11 0 0 4.127490783e-11 3.248144631e-11 3.64654712e-11 0 0 3.209275898e-11 3.5482538e-11 0 0 4.459135773e-11 1.506313375e-11 0 1.530969826e-11 8.508780976e-12 0 0 7.635776161e-12 4.221107982e-11 1.039676375e-10 3.0468383e-12 9.021107021e-12 1.021007011e-25 8.503943188e-12 0 0 0 0 0 0 0 0 7.077762662e-18 6.519054783e-11 0 0 0 7.477805718e-11 1.412252831e-10 2.034615048e-11 0 0 2.383258458e-11 9.094663193e-11 0 1.547584253e-11 3.34885375e-17 5.981314249e-16 0 1.154601802e-11 1.800939379e-12 0 0 0 4.810858982e-11 0 2.042013657e-15 1.265856067e-20 3.254919829e-10 0 1.105175638e-10 0 0 0 1.380412394e-13 1.360289294e-11 0 0 0 0 5.479519804e-11 7.630233924e-11 2.068436454e-11 0 0 7.913255262e-16 2.267924724e-11 0 2.964320671e-11 1.785428406e-16 0 3.647691974e-15 0 1.174133569e-11 0 3.13489229e-12 0 1.418010917e-11 0 0 0 1.137957079e-12 4.339881175e-16 9.424870508e-12 2.390649259e-11 0 1.099836133e-13 7.863657133e-14 1.849520197e-11 0 0 6.920640506e-11 3.653591242e-23 3.550941751e-11 0 2.407168603e-11 0 0 0 1.64727896e-11 0 0 0 2.781603969e-11 2.969958435e-12 1.313475072e-11 3.747620146e-18 2.484725095e-11 0 3.405191922e-11 4.603584093e-11 2.309106144e-12 2.361417304e-11 2.213105945e-11 5.826967472e-24 0 1.696035303e-11 1.01547371e-11 0 1.285156563e-11 4.68858002e-11 3.097527282e-11 0 4.532549275e-12 2.611053083e-11 0 6.708277403e-12 4.594753596e-11 2.898632669e-26 1.194051024e-11 7.092407833e-11 6.281383519e-18 0 1.551314705e-11 0 3.39942455e-10 0 9.953300897e-20 1.334247546e-29 0 7.790535026e-12 1.270562083e-11 +2.622078347e-11 0 0 0 0 0 3.90549234e-11 0 3.174790463e-16 0 1.116738466e-11 2.590174462e-28 1.15079732e-11 3.839026047e-16 2.592046104e-15 4.728966335e-24 0 1.661960361e-12 1.867465967e-13 1.398084024e-15 0 4.213560472e-11 5.202054475e-11 9.599637238e-11 1.937724202e-11 0 7.340831493e-14 1.676390722e-23 0 0 2.328173945e-11 0 6.833970138e-11 4.846893065e-11 1.044148084e-10 0 1.196394804e-11 0 1.709954849e-11 7.735751136e-11 0 3.041791415e-11 0 8.828653092e-16 2.427854834e-12 0 4.158991086e-11 0 7.270964786e-12 1.43009853e-15 1.328363911e-11 2.078006545e-11 4.695590695e-11 0 0 4.980733093e-11 3.293840749e-12 3.214484188e-16 0 5.433198064e-11 0 8.748983419e-11 2.2676016e-11 0 4.630295607e-11 1.432454158e-12 7.792526015e-11 1.862275913e-16 2.180999097e-11 1.2791587e-11 0 1.371985284e-11 0 9.814266357e-12 0 3.316955834e-11 1.654557541e-11 1.876522834e-10 1.537254834e-13 1.086014816e-10 0 2.060290277e-11 0 9.181928765e-12 2.222580974e-21 3.929723036e-11 0 1.22642509e-11 1.714656608e-11 3.400939896e-26 3.835657226e-20 6.147333703e-17 5.58163732e-17 6.481002206e-11 3.099825406e-14 1.868994508e-28 0 0 1.053964157e-11 0 0 0 0 3.387990107e-11 7.272679305e-16 2.436044885e-11 6.670976032e-13 4.772382279e-18 0 1.44532783e-11 1.741337863e-17 0 0 7.720159549e-11 3.629425562e-12 4.213302666e-11 3.392747531e-11 0 1.403607195e-11 9.183024065e-11 2.709367629e-11 8.32177654e-11 3.11156888e-12 0 3.725999917e-11 1.593670677e-16 2.900895972e-11 4.368013854e-13 0 0 1.886007514e-11 3.070135895e-12 7.101579383e-12 0 4.730314781e-12 6.826744091e-11 1.025314139e-11 0 2.478101366e-11 8.97481294e-11 0 3.062763628e-11 5.944331264e-11 9.920321461e-11 1.03277413e-10 2.221693687e-11 0 1.014630187e-10 0 2.34896338e-11 1.111537752e-10 1.914069445e-12 8.406499756e-11 0 1.269982101e-11 6.194565175e-11 0 0 1.190533729e-11 7.428824933e-11 1.062881572e-11 7.61201943e-12 5.815172319e-13 0 0 0 0 9.779113251e-12 2.742418333e-14 0 3.792055595e-12 5.408087257e-11 5.094978673e-11 2.390338961e-11 0 0 1.368109587e-16 2.007178418e-10 2.734223446e-11 2.626619055e-11 2.154687755e-14 0 7.771285707e-11 0 2.934097667e-11 0 0 7.629635731e-12 1.834895612e-14 2.453461452e-11 0 0 0 4.572302242e-16 1.575361918e-11 3.205941699e-11 3.317446684e-11 2.276499662e-11 6.624311208e-17 3.219513155e-11 0 0 4.606565888e-11 1.126206507e-27 0 3.263197124e-11 0 6.30254143e-12 0 1.706151662e-11 0 0 0 3.450374322e-11 0 0 1.678554691e-11 1.129482311e-10 5.875409239e-19 0 1.145316616e-10 7.923973796e-12 0 1.513769415e-18 4.088002858e-17 1.070160093e-15 2.519503599e-11 1.72949397e-11 4.005756484e-14 4.316085313e-12 1.33946275e-11 4.488373179e-12 0 0 0 0 7.47941313e-13 0 0 7.093714579e-12 1.520985103e-11 8.973864696e-11 5.98718303e-14 1.225371244e-12 2.94023983e-13 3.676480412e-11 4.737829477e-11 4.194372846e-28 3.215887852e-11 0 5.226716989e-11 3.804568338e-14 0 2.470685249e-18 6.818024254e-12 0 4.345929799e-11 0 4.187888533e-25 2.906219463e-12 0 0 5.45180877e-11 0 1.084101319e-11 0 0 4.441878092e-11 8.755106607e-12 0 0 1.106072065e-11 5.726544471e-12 2.683690805e-11 0 2.34800981e-11 0 2.7886058e-20 2.523375635e-11 0 0 9.871525242e-11 1.061527815e-11 0 9.435831563e-13 2.249781359e-11 0 5.733649422e-26 1.118533306e-10 3.839500561e-11 4.697744543e-23 2.234388929e-11 1.792773654e-11 7.891998277e-11 0 0 3.278058041e-11 5.070644475e-11 0 2.926020611e-14 +3.095106949e-11 1.139482296e-10 0 7.07957154e-12 4.958196923e-16 2.764615836e-10 3.036369688e-11 1.462794591e-20 0 3.345552749e-12 0 6.025693326e-11 9.558625882e-21 8.009195622e-12 0 0 3.404995583e-11 5.847295023e-12 1.098865478e-10 2.996332898e-11 9.631042416e-17 3.222428847e-12 0 6.524263911e-20 0 1.394596647e-10 2.035390197e-11 9.064882167e-24 3.127567813e-11 1.247482659e-11 0 5.976103241e-12 5.655326615e-11 1.754577609e-11 1.930779574e-11 9.20791207e-12 5.099740945e-11 4.091459654e-12 9.092571531e-14 6.643197136e-11 4.764163317e-11 4.51059049e-11 0 0 5.95958098e-13 0 1.586707614e-11 7.83235608e-14 7.467455055e-12 0 9.523287746e-21 2.948293333e-24 2.044192549e-11 0 2.261019113e-11 2.850758586e-11 0 2.577904634e-11 0 2.434133807e-12 1.114315599e-10 1.175347771e-11 5.680350068e-11 1.204618614e-11 0 5.648645475e-15 5.348447987e-13 0 0 1.154337966e-10 6.097317999e-13 1.177167745e-11 3.896496855e-11 3.850496116e-12 0 7.538262298e-12 8.757036896e-16 0 1.990011545e-11 7.915742442e-17 0 0 3.467279383e-11 2.390064311e-10 1.730954858e-11 1.144645805e-10 3.271687425e-11 2.069016757e-10 3.01225071e-11 0 3.115690842e-11 4.329380717e-11 1.384695296e-13 3.174394361e-14 1.632732868e-10 3.132476159e-11 2.62566687e-11 0 5.404048063e-12 1.971057181e-11 5.825839752e-11 2.095143612e-11 2.065973746e-16 3.252256195e-11 1.753966253e-11 3.842662398e-11 4.360470812e-14 1.546121521e-11 1.059852754e-11 0 4.213170052e-15 0 3.271794683e-11 2.402530411e-11 0 1.938448188e-15 0 2.040202224e-13 0 0 3.195915464e-18 3.088370627e-11 2.172978762e-11 2.156063223e-11 0 3.143307384e-11 4.702794736e-21 3.469602617e-11 3.570521815e-11 0 5.161816581e-11 0 0 0 0 5.321487179e-11 3.829495172e-15 1.439057323e-11 4.559241646e-19 6.612231656e-11 2.616239597e-11 3.235065339e-11 4.20517545e-11 1.113681699e-10 1.86900213e-11 8.916578021e-11 1.360556478e-11 1.084183943e-10 0 1.065699125e-11 0 7.27234652e-11 1.744334025e-19 0 0 0 0 5.992261477e-12 0 4.749369812e-11 0 0 2.199515574e-11 9.807109906e-11 2.203634547e-12 0 4.030701193e-11 1.323832735e-11 0 5.082780994e-13 4.662004336e-11 6.588083721e-11 0 1.559780517e-11 3.027390222e-11 3.080609247e-11 4.453311702e-11 3.725897623e-11 5.478820611e-11 0 0 2.554928197e-11 3.472999841e-12 3.429679898e-11 0 0 0 5.181337534e-11 6.289121867e-11 4.338210565e-11 3.892108641e-11 0 1.184894524e-11 0 7.304380455e-11 4.735125823e-18 1.171906009e-21 3.178503951e-11 1.558967308e-11 0 1.116980781e-11 3.448127635e-11 0 3.468677772e-11 8.58483953e-11 0 1.997400966e-11 1.588774772e-18 1.000954006e-11 0 4.592965758e-21 0 4.691328412e-11 6.454628003e-12 1.132978508e-10 3.627387051e-11 0 0 0 2.344509853e-11 6.902724238e-12 0 3.231583091e-19 1.439814647e-10 3.883033333e-11 4.048692623e-29 2.083589497e-11 3.7670182e-11 4.910579674e-11 1.213564111e-11 8.720980077e-12 9.115128831e-16 3.745349785e-14 2.088934434e-10 0 7.805159181e-11 1.489102533e-11 7.676187072e-13 2.312207228e-11 3.022365221e-11 3.838332303e-20 7.345035722e-11 2.880118843e-15 1.052456192e-16 1.637201894e-10 3.510391571e-11 3.227816647e-13 0 0 4.853210097e-12 3.917821544e-12 0 0 5.883343678e-11 1.516628064e-13 1.225339377e-11 0 2.305902114e-11 1.043432212e-11 2.028537806e-11 2.680275042e-11 0 1.271151124e-14 1.521500595e-10 5.190389584e-11 5.111788363e-11 2.071619375e-11 8.706491735e-12 2.698297863e-11 7.171379468e-11 0 2.192521834e-11 0 0 1.630435725e-11 3.16134004e-11 0 0 3.821904885e-11 5.917928226e-15 1.25804271e-10 1.590867232e-11 4.242735415e-11 6.222162576e-11 4.937921585e-13 2.727140246e-11 2.649205371e-11 6.041660754e-11 0 4.656060573e-17 1.560424108e-10 0 6.060406445e-11 1.404982866e-11 0 8.641385094e-22 0 2.485694779e-12 5.80136106e-14 1.333318768e-10 +2.103210795e-11 1.082263515e-10 4.200865186e-11 6.645673671e-11 0 7.04542482e-11 0 1.318667258e-11 1.211332166e-14 7.888585563e-13 1.188861681e-10 2.151732847e-14 1.711423099e-11 8.869605637e-12 8.767478085e-12 5.640137942e-12 0 0 1.883939319e-11 2.716853429e-15 4.489945249e-11 1.905700198e-10 0 1.158263739e-10 1.437826638e-10 3.796403385e-11 4.31883659e-11 7.120139028e-11 2.620389048e-13 3.265203979e-18 1.281732218e-14 7.164965735e-11 7.689685657e-11 3.876804824e-11 6.190020689e-11 1.143426353e-11 2.102207721e-11 5.775895421e-11 1.525372996e-10 9.398086243e-12 1.805125438e-18 3.041260676e-11 2.983482351e-11 2.252171549e-11 5.580482792e-11 1.205190157e-10 1.016954338e-10 4.084181992e-11 6.251146736e-11 1.29120933e-10 4.006767827e-11 3.165701042e-11 4.676577659e-17 0 6.271498708e-11 5.302882673e-16 4.438757844e-11 1.680467677e-11 2.729532658e-11 2.082085793e-11 8.163401896e-11 1.847611416e-11 1.960638534e-11 7.148392487e-11 2.231472024e-11 5.950683558e-11 3.314212617e-11 1.437854102e-11 0 0 3.45082197e-11 1.69794018e-11 2.166054259e-11 1.133817873e-11 2.190206523e-11 1.045010874e-14 4.990327287e-11 1.312543019e-10 0 6.208148359e-11 1.043697702e-12 2.741707951e-11 4.856918226e-11 7.500531915e-18 9.237658364e-11 5.357082978e-11 1.469226338e-15 2.113463352e-10 1.400777632e-11 1.115026323e-10 0 9.364146967e-14 4.32663506e-11 8.438361169e-19 8.952509368e-12 0 1.235299979e-10 5.200811754e-11 0 1.951426212e-11 3.165567026e-10 1.666905241e-10 2.303225816e-11 0 1.70032612e-10 0 8.057021047e-12 1.351464692e-10 1.246645974e-15 1.004520388e-11 8.913500915e-11 7.3368334e-12 0 6.500089001e-15 0 5.93965129e-11 2.055709066e-32 4.800466868e-11 0 5.103791256e-11 5.634136941e-14 1.805075054e-11 4.561882134e-11 4.031715063e-12 3.82143945e-11 0 0 3.774299718e-11 8.746582224e-11 1.627134872e-10 3.867796814e-11 1.655446302e-25 2.884905907e-12 5.615265195e-11 1.623215573e-11 3.740609926e-11 3.670761728e-11 0 3.905927963e-17 1.111939231e-10 1.408306202e-11 0 0 0 6.015955303e-11 0 1.995584861e-11 6.858204551e-11 5.346435612e-11 2.236290365e-16 1.771577708e-11 3.245261152e-12 4.065831322e-11 8.779514787e-11 1.169507728e-10 2.356501791e-11 4.213705713e-11 1.808959435e-11 0 0 4.803672391e-11 4.325377722e-13 7.808480678e-22 9.616037539e-11 0 2.724645196e-24 9.47341088e-11 1.554055635e-11 8.354303969e-11 1.533979568e-10 6.340764757e-11 1.772764201e-15 3.273019633e-11 0 4.764184217e-11 0 0 1.33316508e-11 0 1.931003357e-11 3.055819587e-11 0 0 6.31028849e-11 4.229793604e-12 0 1.374447349e-28 0 1.300537449e-14 4.802271465e-11 1.580974408e-11 3.385398449e-12 2.63706327e-11 3.047680977e-11 1.368314925e-10 2.862515048e-13 3.646940713e-11 4.279663974e-11 1.322401235e-11 1.551292131e-11 2.728024613e-11 4.117220104e-13 7.265668348e-11 0 1.781305546e-11 1.104105702e-10 9.251248854e-11 0 9.46437755e-13 8.627477316e-25 0 7.641283439e-12 3.01439794e-18 4.554545096e-11 5.129275523e-11 3.043937214e-15 1.097635467e-10 8.636016656e-11 6.708586328e-11 0 0 4.090710358e-11 1.709378667e-10 1.756887514e-11 5.277133958e-11 5.080801413e-12 0 1.762925055e-11 1.49955972e-10 1.820464218e-11 0 5.570687623e-28 1.675119162e-11 1.218551797e-10 4.718098471e-11 3.541442444e-11 2.279752531e-11 2.322379056e-11 1.301790551e-10 2.058001673e-10 2.38114242e-11 0 0 5.595593637e-12 0 3.431033902e-13 1.850517757e-11 2.185047552e-12 7.601483043e-12 0 2.199200256e-11 2.401695585e-11 4.221463111e-14 4.884211709e-11 3.350190072e-21 4.235843973e-11 1.932702392e-14 3.827423358e-18 6.105467672e-11 2.993664199e-12 1.455657126e-12 0 1.139737904e-11 5.344569538e-18 6.876405091e-17 3.584127463e-18 1.720185295e-11 6.030208302e-11 5.025264618e-11 3.181870617e-11 5.010304466e-11 2.192108126e-10 3.136324687e-11 1.172187311e-21 2.506805157e-11 6.875469929e-12 7.599609293e-11 7.757386347e-21 1.061132568e-10 6.279165667e-11 5.312844654e-13 2.061686887e-10 7.665622509e-11 2.361820755e-11 0 0 3.975454035e-11 1.943248995e-11 3.919674581e-11 2.843875938e-11 8.965558444e-19 8.919241221e-13 9.39953762e-11 0 5.17418137e-11 6.716722296e-12 4.252405957e-11 3.632280422e-11 8.589794008e-28 0 +1.738664506e-11 0 0 5.005790959e-11 1.738170998e-11 9.741840862e-12 7.376777662e-11 2.419084608e-10 2.393877406e-10 5.076379975e-12 9.028293582e-11 0 1.054169191e-12 1.01409156e-10 0 9.657322466e-11 4.244440924e-11 1.336578633e-10 2.784663455e-11 2.907210486e-21 3.649363285e-11 2.003594666e-11 0 0 1.040847329e-10 2.01198078e-11 1.148915034e-11 6.757537086e-11 1.563588897e-11 1.63323534e-12 2.551338323e-11 1.226509998e-10 5.846134677e-11 3.000139519e-11 2.169150018e-11 2.434566798e-33 1.118461532e-10 1.139196187e-10 9.734430437e-12 6.587350651e-11 0 5.749996276e-11 6.965890943e-11 1.969025782e-10 1.734850144e-10 2.69157997e-11 6.159785629e-11 5.770599255e-11 7.401381095e-11 5.069955228e-11 8.031797116e-11 3.98517227e-11 4.954679279e-14 7.237249103e-12 9.078165915e-11 9.592220077e-11 0 9.975210129e-11 2.194234021e-13 1.683928508e-11 0 6.694207581e-11 2.560906788e-18 0 1.268707025e-10 8.216946898e-11 3.490132774e-11 8.882698699e-21 5.028218596e-11 1.472701574e-11 9.597684209e-12 8.93270814e-11 7.315224185e-12 7.861914885e-11 1.020986976e-10 1.539601604e-10 1.438208875e-11 1.500832459e-10 0 1.284852661e-19 3.232760967e-11 4.085119301e-11 5.640688095e-11 9.002007613e-12 7.559346272e-12 4.022618102e-16 6.65462144e-11 4.130631089e-12 7.295934963e-12 8.357665993e-12 7.238520683e-12 3.510594283e-12 1.223382135e-11 5.623664739e-11 1.019547455e-11 2.630202073e-17 6.794509962e-11 6.629864557e-11 0 3.76968372e-12 0 0 2.031227506e-11 4.445379993e-11 3.037100813e-11 9.597646352e-20 8.042951228e-17 8.471060292e-11 1.564579106e-11 0 2.859389362e-11 9.616742277e-13 0 4.91116353e-11 2.003879912e-10 0 6.444457637e-11 3.351798145e-12 1.068107914e-10 6.404706827e-11 0 1.886037668e-17 0 1.764718087e-10 1.657783357e-17 6.14021789e-11 0 3.192781671e-11 0 0 0 2.288126446e-13 1.649032122e-11 3.43684374e-11 8.801276964e-12 1.528266525e-11 1.216833318e-10 1.745489007e-11 1.848080941e-18 4.387020253e-11 0 5.201583953e-15 1.228162651e-22 3.190408386e-11 3.791567435e-11 3.761910487e-11 6.838419399e-13 0 4.253299986e-11 5.028336067e-15 2.453964846e-12 3.131066435e-11 9.032873118e-14 0 4.078186347e-12 8.066170633e-11 0 5.69864321e-12 0 3.990021351e-11 0 3.183430828e-11 9.80079978e-11 0 1.165432869e-21 8.11227371e-11 1.681317988e-13 4.718615904e-11 1.497943692e-11 4.849305561e-11 8.070237593e-11 1.38899642e-10 2.184354654e-10 7.870987371e-11 1.284768345e-10 3.308239413e-12 1.232110901e-25 3.602487508e-11 1.098125813e-13 2.185352075e-11 2.461597306e-11 5.126325042e-11 3.291062464e-12 5.046494939e-11 7.387324125e-11 0 4.540551432e-12 6.844148438e-11 6.889710845e-11 3.74476117e-11 5.12523166e-14 9.044307868e-12 6.805495939e-11 1.823454407e-11 5.904052573e-15 8.743887041e-11 1.528982465e-10 8.87971271e-11 1.216223435e-10 2.470154873e-11 2.056379106e-11 1.018546938e-11 2.798845046e-11 4.051511649e-12 3.700541001e-11 6.510401187e-14 5.869458617e-15 0 6.737058865e-11 2.138056139e-11 3.751334201e-11 7.05532377e-11 7.746068648e-14 2.760479777e-18 0 2.305846623e-11 2.788818225e-11 0 4.700428072e-11 5.899868558e-11 4.415428194e-19 5.071873987e-11 0 4.339363347e-17 4.171147431e-11 4.748529919e-11 8.437384574e-15 8.72263519e-11 6.670321679e-11 2.165909754e-11 6.956129397e-11 4.813077836e-11 1.102020905e-10 8.321443763e-15 2.392279457e-23 0 2.604086221e-11 4.832878355e-11 6.096979455e-11 9.220955874e-12 1.251803221e-10 1.826732543e-11 1.52688469e-10 1.384366395e-11 1.376478565e-10 1.232341761e-11 3.746100254e-11 1.092819711e-11 2.957665607e-12 2.156301599e-12 0 0 3.6493005e-11 1.9507133e-28 5.357417355e-11 1.723891605e-10 6.018697545e-11 1.44174509e-11 4.228611116e-11 2.737418115e-10 4.445959651e-11 9.700501508e-11 2.33147461e-11 2.734444008e-20 4.130428883e-11 5.686977582e-11 0 1.683777027e-11 1.698059969e-11 3.357260914e-11 8.037643892e-11 1.067022566e-11 3.62229083e-11 1.402171766e-10 5.440338113e-11 3.336844968e-11 1.359948525e-31 1.154244347e-14 6.125568828e-11 8.50669523e-12 9.030262563e-12 8.984730744e-12 1.69808516e-10 9.599161417e-11 6.865648111e-11 1.614595668e-11 1.319829577e-10 4.516181919e-11 5.682960662e-11 1.345953761e-20 1.151270256e-10 9.893575387e-13 3.04525133e-16 5.175049088e-11 0 1.151742764e-10 0 0 7.715651974e-14 1.95828919e-11 +2.100622368e-11 5.62163899e-11 7.671720981e-11 3.028556051e-11 0 5.996708741e-12 7.00553599e-11 1.372841236e-11 1.967175756e-11 2.141075076e-10 2.482602757e-11 1.200358858e-11 2.525475179e-12 8.085701004e-11 2.638735467e-11 4.162746392e-11 3.228898866e-11 3.458503636e-11 1.1541088e-12 4.809223973e-19 2.312782176e-11 8.834302769e-11 2.734220857e-11 1.019817376e-10 0 0 2.481885124e-26 6.835035075e-11 0 2.667232954e-11 1.104065843e-10 3.569452167e-11 8.661306427e-11 4.231625201e-11 1.143252801e-10 1.343779148e-10 8.45487435e-11 5.436211264e-11 2.305390745e-11 1.26022462e-11 4.016729363e-15 1.859798881e-10 6.642679065e-11 1.118782143e-11 5.000404174e-12 6.381930415e-11 1.354700159e-10 2.977077496e-11 1.779912736e-11 1.228985056e-10 1.118259866e-11 2.161095766e-11 3.549995742e-18 1.023784644e-10 1.194745409e-10 8.573445737e-12 1.194338657e-10 1.819791009e-11 4.462577043e-11 0 3.249193126e-11 1.124699006e-10 1.319773199e-10 1.043533288e-13 5.365928149e-11 3.350740335e-11 2.504361575e-17 4.880108587e-11 3.324932383e-11 9.956815877e-11 1.697552085e-11 1.704784966e-11 1.949217248e-11 7.536633203e-11 9.21498202e-13 1.472769505e-11 2.7520628e-11 1.900568779e-11 1.36921726e-11 8.024168887e-11 2.171703501e-11 4.279909836e-11 3.342849866e-12 5.268190306e-11 6.667877478e-11 8.799477639e-11 9.535057e-18 6.395619606e-11 1.918210543e-11 4.486978336e-11 2.242470748e-11 7.231147296e-11 1.110340602e-10 7.765981109e-12 1.901981396e-10 2.115239036e-10 1.126331311e-10 2.966319057e-12 1.320012257e-11 6.478550936e-11 2.054075345e-13 6.846346326e-11 8.993850538e-11 6.370392431e-11 0 4.79491095e-11 2.127540162e-11 2.140985926e-10 6.99674864e-11 0 4.490491315e-19 1.806731919e-15 1.365820493e-11 5.539800453e-11 2.396466672e-11 0 8.296827905e-27 1.637007963e-11 9.748731267e-12 1.504301856e-11 7.54114475e-11 5.320898227e-11 6.746018172e-11 6.437927143e-11 7.813506607e-11 4.739395117e-11 9.678358375e-11 1.152175209e-10 1.523671644e-11 4.757049282e-11 4.668832694e-11 1.51172501e-11 1.167071154e-18 0 6.767120766e-11 2.822967158e-11 1.064092091e-10 0 2.325335656e-11 2.888818556e-11 1.755082783e-11 1.237577714e-10 1.666451798e-10 0 0 2.85314084e-11 9.204566298e-12 3.875197104e-16 7.27406446e-11 5.629792979e-18 1.074916969e-10 5.607443112e-11 5.456908917e-11 3.556051901e-11 4.717007597e-11 7.729146989e-11 2.491389744e-11 8.842681912e-11 6.078682335e-11 2.178574316e-15 3.3992795e-13 3.964716161e-12 6.705989103e-12 0 2.730203119e-11 1.260966484e-11 1.960171944e-11 4.560665961e-11 8.261546191e-12 1.476165587e-10 2.758783182e-11 0 2.422680918e-11 4.162305344e-11 1.300679733e-11 2.817326259e-11 9.671471777e-11 2.488970438e-11 3.161126644e-11 6.679346045e-12 2.912718874e-11 1.647368843e-11 3.130743062e-11 8.671585391e-15 2.407983324e-11 4.115956944e-11 4.046957849e-11 9.285715035e-13 2.008095928e-11 5.522605986e-11 1.070785492e-10 3.405006525e-11 1.136975073e-10 8.146049241e-11 2.839988662e-11 1.464365783e-11 2.362079977e-11 1.663615642e-10 2.250154922e-10 2.340291146e-11 5.979258736e-11 7.605685436e-11 6.05829108e-11 1.314304574e-16 3.066832697e-11 1.090105271e-10 1.183087759e-11 7.603509244e-11 1.016253772e-10 1.304317151e-10 1.343656872e-10 1.381142371e-10 9.513310912e-11 1.730272834e-11 7.455228152e-11 2.641415054e-11 2.224860729e-11 2.301046401e-14 2.503271775e-12 1.154713e-11 1.271291934e-13 0 4.297101054e-15 4.106461989e-11 1.431030372e-10 1.590438383e-10 1.594103116e-10 3.879939256e-13 3.791724855e-11 1.287424827e-10 1.998372679e-10 1.411688073e-10 1.651209906e-11 6.583455051e-11 5.202516818e-11 1.256623845e-10 2.130354762e-11 5.983815891e-11 1.38163044e-10 9.664368646e-14 5.085726856e-11 2.681485736e-11 3.194380967e-11 6.409291491e-11 3.996937453e-11 0 9.568186127e-12 4.521092894e-11 5.86882006e-11 3.047208497e-10 9.369413413e-11 1.139266121e-11 1.269155064e-10 4.39149183e-11 6.025644944e-11 6.656086542e-11 1.591852545e-10 1.55219274e-10 6.441212765e-18 1.758460883e-11 6.04047851e-12 3.089531018e-12 3.292819701e-11 2.962249983e-11 1.167807628e-10 3.466066088e-12 1.048095831e-11 3.269526132e-11 7.13672272e-13 2.381570372e-11 2.868883814e-11 1.052726564e-10 3.597368051e-11 1.230157346e-11 4.487612077e-11 3.771466617e-11 2.40470792e-11 4.023590651e-15 1.007271128e-11 1.161099064e-11 2.290685058e-11 2.53774822e-11 6.653353616e-11 2.978176717e-11 2.053034716e-11 4.04106231e-11 5.731132182e-11 2.976978139e-12 1.633596233e-10 9.302520672e-11 3.741591717e-11 3.03826127e-11 6.497663952e-11 6.380592486e-11 6.086664869e-11 6.101157744e-11 2.818289835e-11 5.652182076e-11 4.409033297e-11 3.825494783e-11 +6.23124716e-11 4.553715195e-11 3.153412947e-12 1.437874603e-10 3.496002986e-11 5.278283007e-11 3.785693752e-12 1.029850031e-10 1.591894915e-11 4.066289507e-11 2.178151952e-11 8.67997436e-11 9.041893394e-11 9.94116315e-11 3.517895143e-11 3.647306955e-11 2.228506197e-11 1.89006249e-11 4.393303608e-12 4.026914078e-11 1.09195522e-10 1.564803138e-11 1.243298374e-10 1.375338559e-10 6.629278424e-11 1.023372859e-10 2.975406784e-10 1.742630807e-11 1.086613779e-11 3.862597998e-11 4.558914162e-11 5.984527238e-11 2.207440728e-17 1.972589033e-11 1.43880915e-11 1.044634464e-15 1.885790658e-11 2.531952798e-14 7.57268668e-11 4.492713758e-12 1.317652851e-10 1.039564331e-11 2.052113462e-12 1.043576457e-10 1.770987841e-10 1.106197398e-11 1.468027375e-10 3.734275457e-11 7.311142802e-11 3.328837023e-11 9.457071687e-11 2.679199213e-12 1.041437998e-11 9.3178405e-11 7.755166362e-11 1.601831061e-11 1.195289673e-11 1.011717358e-10 7.641875962e-12 1.024771319e-10 4.413210399e-11 1.581262672e-10 5.700255717e-11 3.181291426e-12 3.420470134e-11 2.532457987e-10 7.719701914e-11 1.158577908e-10 1.404826008e-10 0 6.597798564e-11 0 9.55203861e-12 1.559767219e-11 1.080473244e-10 8.08113286e-11 1.118021628e-10 1.881001542e-14 0 3.476783223e-11 1.859856374e-10 0 2.200315072e-11 2.83170685e-11 1.417635504e-10 4.648317884e-11 3.160170447e-11 2.755785755e-10 1.206227822e-10 2.291650057e-11 7.127130184e-11 3.922265545e-12 5.936202987e-11 4.342710987e-11 2.237710819e-11 2.268377312e-11 1.843186479e-10 1.617114505e-11 1.375962579e-10 3.923625502e-11 1.247306958e-11 3.534903714e-11 7.453546456e-11 1.089576736e-11 2.563902979e-11 2.83231502e-11 8.958846444e-11 1.880861933e-11 2.904925677e-11 3.428391841e-11 7.504526044e-11 1.861152866e-10 3.829986814e-11 4.909724207e-11 1.311316155e-10 1.366632595e-10 0 1.68202655e-10 4.993238848e-11 6.980754087e-11 4.964292585e-11 0 7.415586511e-11 2.114922944e-10 1.733076417e-13 2.698924591e-11 6.362349527e-11 6.968721531e-11 6.544280902e-11 1.535913997e-11 4.624406277e-22 5.59607176e-11 1.36183932e-10 3.723533737e-11 8.988834624e-11 6.446118392e-11 3.007414659e-11 0 7.005411406e-11 7.195559579e-11 3.028681547e-11 2.421370941e-10 2.187681992e-10 1.114807088e-10 2.898487775e-11 2.293720906e-11 2.523673144e-11 6.53487962e-11 2.891596626e-11 1.934562606e-11 1.075033855e-10 7.287514965e-11 7.236845896e-11 5.361628871e-11 1.986871816e-10 2.822873561e-11 2.605727537e-11 3.370212525e-11 2.869541761e-11 7.62843192e-12 2.021687032e-10 7.796772475e-11 8.345945326e-12 5.402138365e-13 3.856771331e-11 1.659628112e-11 1.460091074e-10 9.0833612e-24 6.525960796e-11 2.279122537e-10 1.322103347e-17 7.243013521e-11 0 1.53537524e-10 6.089414581e-11 2.815422592e-11 8.352681091e-11 1.213607756e-10 1.237450478e-10 5.625223159e-12 6.201689453e-11 2.224670443e-10 5.550738386e-11 0 7.421015435e-11 1.306727841e-16 1.63169326e-14 5.510554074e-11 1.35335965e-27 1.064263216e-10 2.753701248e-11 1.181076602e-11 0 3.944097688e-11 0 3.666242631e-11 1.063484934e-10 3.879296388e-12 4.217349593e-11 9.632740801e-16 1.526555587e-17 9.658314078e-12 1.273542417e-10 4.004204562e-11 0 5.636818109e-11 1.137471214e-11 1.877644278e-10 3.788113014e-11 2.268508617e-11 6.859283392e-11 6.852795495e-11 8.128093846e-11 1.355127861e-10 6.604723085e-12 8.11526614e-11 2.685518046e-11 1.512910302e-11 2.513281752e-11 5.849485744e-11 8.313242283e-11 6.992026073e-12 1.023991138e-12 1.185178617e-12 6.239687405e-13 5.1133171e-11 1.003091644e-10 4.519970401e-11 5.249664511e-11 2.207481787e-10 7.008345083e-11 3.909379743e-13 1.470226774e-10 4.208834922e-11 3.38696314e-11 8.912143489e-12 9.545465018e-11 2.025360692e-10 3.074873456e-11 0 3.001300008e-17 5.065700559e-11 5.639787813e-11 2.807340506e-11 1.165634037e-10 1.68777724e-10 8.611094848e-11 0 2.219080644e-11 4.568189441e-11 1.359409681e-11 1.926796894e-11 1.839212343e-18 1.11104992e-16 4.819210843e-11 1.340223936e-10 2.11127389e-10 6.351213263e-11 0 1.476896894e-10 5.718302184e-13 1.572979168e-10 5.171592347e-16 6.077815726e-13 0 5.010326454e-11 0 6.773506684e-11 9.219319246e-12 2.67872328e-11 4.759650071e-11 3.211255278e-16 2.041214739e-11 5.190341726e-11 1.521606288e-10 3.785365228e-11 4.704647051e-11 2.487666847e-11 5.727512584e-11 1.563315861e-10 4.817149303e-11 2.162782496e-11 0 9.717046937e-11 4.140091272e-11 2.116462132e-10 7.966984009e-11 4.746266903e-11 1.844165776e-11 2.818708463e-10 1.48733817e-10 8.871457839e-11 4.06921938e-11 7.358701793e-11 4.97663404e-11 9.406791166e-11 2.727113143e-10 5.247544734e-11 2.498049902e-11 2.734804241e-11 +6.324775772e-11 5.600847361e-11 7.655282656e-11 1.588764368e-10 5.951217014e-11 4.513302073e-11 2.930062325e-11 1.818442334e-11 6.692638951e-11 4.770026216e-11 6.135628991e-11 3.110979508e-11 9.05510978e-11 6.084303259e-14 2.242735127e-11 3.454789336e-11 8.027388221e-11 4.668268652e-11 1.670118675e-11 7.923766053e-11 4.211398546e-11 5.67443625e-11 8.196815099e-17 2.529130055e-11 2.70592249e-11 4.632352191e-11 2.179130054e-11 8.806084523e-11 8.57194488e-11 3.452528248e-11 1.460352859e-10 3.992048375e-11 3.653337023e-11 1.994834726e-11 4.386694154e-19 6.94422187e-11 5.091525032e-11 9.55856063e-11 8.617430505e-12 3.448616305e-11 4.116470471e-11 2.352397199e-18 5.747487999e-11 0 0 5.463184892e-11 1.422258525e-10 4.798926305e-11 8.228478429e-11 1.302683222e-11 6.11321574e-13 6.865788183e-11 8.495790556e-12 2.956248485e-11 1.489313092e-10 1.388659325e-10 1.179043718e-11 3.778115831e-11 3.352830133e-15 2.377307449e-10 7.054678846e-11 5.820880808e-11 4.23248986e-11 3.35824808e-11 5.403663297e-11 1.331912025e-11 7.510589707e-11 3.214054099e-11 7.042626502e-11 3.64841618e-19 1.109890642e-10 4.161575134e-12 1.202013669e-10 3.033744842e-11 7.033616608e-11 4.830510487e-14 6.314731186e-11 1.491682402e-10 1.64583998e-16 1.233758368e-11 1.35103105e-11 3.508590321e-11 4.525254873e-11 4.141867917e-12 3.385878853e-11 7.995205433e-11 2.735836639e-11 8.625263424e-11 1.08503286e-11 7.852461199e-11 2.312195507e-11 2.040055053e-11 3.447067328e-11 2.854208911e-11 7.016426374e-11 2.496357859e-11 5.173387089e-11 1.843546671e-10 3.73225872e-11 3.293751135e-11 1.391077625e-14 1.358864634e-10 1.721227974e-10 1.378884197e-10 0 4.01978528e-11 2.802165778e-11 4.981637951e-14 2.421753977e-10 4.634491561e-12 3.230571654e-20 9.439233552e-16 1.566182573e-10 1.045734161e-10 6.119418759e-11 4.900116516e-11 7.31839841e-11 3.171268428e-11 2.173508981e-10 9.358706776e-11 2.991056978e-11 4.965726854e-11 7.706473709e-11 4.135449618e-11 2.375190414e-11 3.927511623e-11 7.141353346e-11 0 8.720242146e-11 1.642250146e-10 1.79716684e-11 1.55482481e-11 2.739284124e-11 2.462374665e-11 4.292625506e-11 6.364238743e-11 1.009997742e-11 7.81850012e-11 4.733654886e-11 1.333875404e-11 5.996059536e-11 1.057844183e-16 1.195976608e-10 6.784897517e-11 3.692073761e-11 1.841665675e-10 1.485560708e-10 6.144072818e-11 1.294411835e-11 8.765856284e-11 3.802081591e-11 1.111952509e-10 5.012764925e-11 1.319167232e-11 1.537629857e-10 5.025086582e-11 4.537616835e-11 1.47381989e-10 1.620036558e-10 2.090739386e-11 1.156266579e-10 2.308873034e-11 3.219233532e-11 3.850394404e-13 4.311885188e-11 2.358895788e-10 1.270348602e-16 6.887307382e-12 6.31253403e-14 2.354776529e-11 2.869563848e-26 1.488259698e-11 3.124089183e-11 9.241703289e-11 4.80909243e-11 9.771942735e-11 2.272922358e-11 1.466466991e-11 8.537266088e-11 1.015336893e-10 6.491619143e-11 2.352870974e-10 3.111695246e-12 2.376704463e-10 0 1.735504911e-16 2.988696761e-11 3.795011116e-11 0 5.70183181e-11 2.054017803e-14 1.040876303e-10 5.719310216e-11 1.022963884e-10 0 5.103288271e-11 5.955226803e-11 5.341732684e-16 3.462733303e-11 4.875213049e-11 7.439674185e-12 1.93169151e-10 1.04346482e-10 6.503383346e-11 2.563159617e-11 4.64351138e-11 0 7.243554117e-24 0 9.138181416e-11 2.658922377e-13 4.208164458e-11 5.259249082e-11 1.488611134e-10 1.122768872e-10 4.946119829e-11 2.968245982e-19 7.716268627e-11 5.02640114e-11 9.606472883e-12 9.950107378e-11 5.968919775e-11 2.263765274e-11 4.763477542e-11 1.216401128e-10 7.166623942e-11 1.145675351e-10 1.00804454e-10 2.282358632e-12 8.182005518e-11 5.033001407e-11 1.327186096e-11 3.63141887e-11 7.578589925e-11 8.717222991e-11 1.608197365e-10 1.681504004e-12 1.269828301e-11 4.545798732e-11 5.025488695e-12 7.658512869e-33 1.213484621e-13 1.939888491e-11 2.071450192e-10 1.356715443e-21 8.388317426e-12 3.902459331e-11 4.227992414e-11 3.14042068e-11 7.984507207e-11 3.280615903e-11 1.202115047e-10 1.876513182e-11 8.841887281e-12 1.750192056e-11 3.764468192e-11 1.658171808e-11 5.970547441e-11 3.183797507e-11 4.045838346e-11 1.079523975e-10 1.677305767e-10 4.993513664e-11 5.396586131e-11 3.081415227e-11 1.288513986e-10 4.566324313e-11 6.191345117e-11 2.010856132e-10 7.160446688e-18 1.235285216e-10 3.798670263e-11 3.191753053e-12 1.013926505e-10 1.250868466e-10 1.197967516e-10 8.28508543e-11 6.882229061e-11 9.943066244e-11 5.915806857e-11 1.294718291e-10 5.80007445e-11 5.120191135e-11 1.219125731e-11 3.804698849e-11 9.452267301e-11 6.896589078e-11 0 4.976349901e-11 1.5352862e-11 1.404787177e-10 1.217582745e-10 1.535541816e-10 3.909068523e-11 4.074455805e-10 1.720318777e-10 1.462000737e-10 1.735519074e-10 6.285154564e-11 2.868278252e-11 +1.920330453e-11 4.313618587e-11 1.241134192e-10 3.013162428e-10 2.876275228e-11 1.263630932e-23 9.938141914e-11 5.24141684e-11 3.133106647e-10 4.43094513e-11 1.724205317e-10 3.965376722e-11 1.001011807e-10 7.894643547e-11 3.020297291e-11 7.544152241e-11 2.041289162e-11 2.539006424e-11 3.237507099e-11 8.958383047e-11 1.026778576e-10 4.116235209e-11 3.033511996e-11 2.391889867e-19 2.053697849e-10 1.050500128e-10 7.022467596e-11 1.4858047e-10 2.353139046e-11 1.270830544e-10 0 6.605910146e-11 2.706418824e-11 2.035387285e-11 5.189985845e-11 3.936918297e-11 6.821906102e-11 1.546131559e-10 6.646367079e-11 6.70313146e-12 3.604923787e-11 2.046680306e-10 5.52114038e-12 1.584741428e-10 1.983277524e-10 2.715438885e-11 5.625222343e-11 7.180458606e-11 4.026838305e-11 0 1.007881064e-11 2.74137583e-11 8.536655053e-11 2.519863372e-10 1.064129643e-10 7.736252515e-12 3.918249806e-11 1.53622906e-11 8.669859145e-11 1.008207782e-11 1.677529878e-10 2.617821887e-11 2.44365954e-11 3.968738801e-11 3.788627194e-11 4.227806371e-11 4.527421676e-11 2.02401448e-10 1.267087408e-18 1.091621221e-11 4.677798456e-11 1.120925187e-12 1.674840371e-11 2.40413548e-10 1.960282168e-10 2.976354269e-11 2.627830673e-11 5.662983421e-11 1.260303101e-10 6.980303669e-12 7.091498799e-11 2.018745471e-11 7.004702069e-11 6.3548923e-11 3.05493583e-10 1.215617002e-11 2.434528216e-10 5.014618904e-11 8.654796151e-11 3.869448014e-11 1.647935027e-26 5.085563034e-11 9.298751759e-11 1.500427445e-10 2.072696862e-13 0 3.650700578e-11 2.031633231e-11 1.751179741e-11 1.86592579e-10 1.948234839e-11 2.415114632e-10 3.657378486e-11 6.1242417e-18 6.296065949e-11 4.061064379e-11 2.285581917e-11 9.990631007e-11 2.358737815e-12 3.639869949e-13 1.932715553e-10 5.920386854e-11 9.493604046e-11 5.293367921e-11 2.641537339e-11 5.338795831e-15 1.256796949e-10 1.0854982e-10 1.405359728e-11 1.153545213e-10 1.453130208e-10 2.866970918e-11 1.481153369e-11 1.257375905e-10 9.340296415e-11 1.379804074e-10 9.687679044e-11 1.164355242e-10 1.347992122e-10 2.993428663e-10 4.03818187e-11 7.877169797e-28 1.375089697e-10 1.095645067e-10 1.785124273e-10 1.225787316e-10 3.613001778e-11 1.210038109e-10 4.534577028e-11 1.366258814e-10 2.707620842e-10 2.06734415e-10 7.141145545e-12 1.180173524e-10 4.376513953e-11 1.953695541e-11 4.373190078e-11 1.964454661e-10 1.697904718e-10 2.235960708e-10 1.158087612e-10 5.103597234e-11 1.338781244e-10 9.092593166e-11 1.385037319e-10 1.966487485e-10 1.820391406e-11 4.011701822e-11 6.603306461e-12 2.808209179e-10 7.620437622e-11 1.032146375e-10 1.017936172e-10 4.169744644e-11 2.325371445e-11 1.864738675e-10 4.963634758e-11 3.489505756e-11 1.104209259e-10 1.536728329e-11 2.661116836e-11 8.416696116e-11 1.793008897e-10 1.591682159e-10 1.102093028e-11 6.248526234e-11 1.784892823e-11 2.016768848e-11 1.334872869e-10 7.338750201e-11 1.339550966e-12 7.198492963e-11 2.674540978e-11 4.900383666e-11 0 7.014117887e-11 2.64732253e-11 7.251039572e-11 2.848633489e-11 1.178135145e-10 5.5903201e-11 1.830295173e-11 9.203565561e-11 6.27367245e-11 1.844213437e-19 1.036854475e-10 7.177260635e-12 5.956944004e-11 5.864349223e-11 2.816181368e-11 6.287003395e-11 3.945161903e-19 5.633304213e-11 6.22870085e-11 2.861582816e-12 8.471746428e-11 7.284663636e-11 8.640509988e-11 5.61166184e-11 2.612842887e-11 4.786492177e-11 0 2.118470557e-11 4.131293112e-11 7.126245221e-12 4.63992617e-11 2.058340901e-10 1.128672456e-11 2.383010915e-13 2.300489585e-10 5.419948577e-11 3.924334976e-11 7.88606812e-11 2.088435012e-10 2.238390862e-10 1.647105953e-11 1.446780536e-10 1.186469188e-10 7.995406202e-11 1.875850755e-11 1.868109384e-18 5.647548955e-11 1.920739629e-11 7.002155866e-17 4.69808185e-11 0 1.967485698e-10 6.09066619e-12 2.466268361e-11 9.674975979e-11 5.212024089e-11 2.395165688e-13 1.35845872e-10 1.972812533e-11 3.539621118e-12 6.296387665e-12 1.727536371e-31 4.023131748e-11 3.007710171e-15 9.697722835e-11 4.913700757e-11 6.018120164e-11 1.241634639e-14 6.84963272e-11 5.710066405e-11 4.30306249e-11 3.187420612e-11 1.511015443e-16 9.873691158e-11 3.111367039e-11 1.440051016e-10 7.175532933e-11 7.518834761e-11 5.320302404e-11 2.861609044e-10 5.971441254e-11 1.058540334e-10 8.380078849e-11 7.266967884e-11 3.433242331e-10 1.03961136e-10 8.547991835e-11 5.840847847e-11 5.040032743e-11 5.394055462e-11 2.207279767e-11 1.654463774e-10 4.384114873e-11 1.159074427e-10 1.382377714e-10 6.507598653e-11 7.331870181e-11 5.149157927e-11 1.587002101e-11 1.078946048e-10 5.819434123e-11 3.155326279e-11 6.532746864e-13 1.41484357e-10 2.488899426e-11 1.260214167e-10 8.768432834e-11 3.030326261e-10 2.370870371e-10 1.270498592e-10 2.070031215e-11 1.049915211e-10 2.386921861e-25 1.130692824e-11 8.358014239e-11 +4.2170744e-11 8.493834722e-11 1.64590832e-10 1.077708673e-10 2.15657399e-10 1.141619166e-10 7.120047088e-11 6.147358886e-11 1.221088819e-10 6.099972102e-11 8.538931844e-12 1.081528334e-10 3.69988017e-11 4.927749482e-12 4.812476106e-11 2.971411123e-10 1.83439848e-11 7.12103084e-11 2.700870668e-11 1.092911719e-10 4.534250939e-11 1.384400968e-10 8.775249082e-11 4.772235022e-11 1.005373758e-10 1.596135518e-10 1.652151439e-10 1.805017116e-26 1.163113413e-11 3.541589265e-11 1.02879096e-10 1.582262427e-11 1.128503235e-10 9.636188126e-11 5.358120947e-11 1.435046855e-10 1.592380055e-11 7.840110331e-11 7.052982966e-11 9.126595105e-11 7.153515419e-11 1.624326378e-10 5.652258403e-11 8.182220688e-12 1.62604529e-10 4.155061176e-12 1.376157496e-10 8.71881082e-12 1.891488183e-11 1.511543146e-10 7.285974536e-11 6.962784658e-11 9.990597442e-11 1.509030889e-10 4.208752535e-11 5.957353242e-11 5.575734959e-11 2.093617253e-11 2.102951251e-11 4.514652724e-11 2.79913463e-11 3.922863215e-11 4.854357051e-11 3.312659928e-11 1.147142274e-10 1.063857306e-11 6.484261392e-11 5.798982768e-11 7.770419849e-11 1.050068689e-10 4.074460482e-11 6.250822831e-11 1.234487539e-10 5.756687901e-11 3.314000001e-11 1.10182718e-15 7.271387195e-11 1.18761481e-11 3.479276732e-11 5.114504639e-11 2.929080431e-11 0 1.494211281e-10 8.419604474e-12 2.399022395e-10 6.409987196e-13 9.248844403e-11 2.813410771e-11 6.604451096e-11 4.67937294e-11 8.543278702e-11 8.180697265e-11 2.885939648e-11 1.99646112e-10 3.27672e-10 9.765038495e-11 5.706115165e-21 8.40548019e-11 4.131119297e-11 6.390149591e-11 3.6700998e-11 1.014746352e-10 7.241864558e-11 9.346726613e-11 6.48425842e-11 1.631708564e-16 1.119227553e-12 3.892699255e-11 5.689123201e-11 1.08150164e-10 9.99093522e-11 9.098542524e-11 1.495879428e-10 1.175860585e-10 2.552650752e-10 1.022940702e-10 5.568206358e-11 1.690435969e-10 2.267912546e-10 2.685974532e-10 8.438131141e-12 8.096082644e-16 2.978459874e-10 1.384169127e-10 5.781200769e-11 1.880527324e-11 1.23365019e-10 7.173917234e-11 5.172289591e-11 7.225790335e-11 8.050437509e-11 2.315585838e-10 7.858420601e-11 1.812945928e-10 1.833890219e-10 7.3903155e-11 2.086567574e-11 2.374187605e-10 8.722818226e-11 4.202283854e-11 5.607046694e-11 8.679293251e-11 5.238601652e-11 1.907246312e-10 9.1662991e-11 4.287113471e-11 3.62872971e-11 1.694135192e-10 3.344919329e-13 6.833144422e-11 6.412549075e-11 1.701114338e-10 2.37773837e-10 1.302510118e-10 1.267155595e-10 1.2842297e-10 3.591387529e-17 6.476662313e-11 5.766463247e-11 9.844670334e-11 1.754840308e-10 1.577257212e-10 1.255053625e-10 2.079033667e-10 1.100210125e-10 3.243175469e-11 3.275929698e-11 5.253282144e-11 2.626284688e-24 8.034283201e-11 9.107923938e-11 4.401647745e-11 8.377913822e-11 5.585588609e-11 1.738401986e-10 1.443846788e-10 1.51982132e-10 5.067157246e-11 4.713079713e-11 3.704140637e-17 2.943409088e-11 8.468869515e-11 1.523062476e-11 2.771659571e-10 9.018644175e-11 1.848416889e-11 1.044902327e-10 6.328747213e-11 1.35438824e-10 7.61578034e-12 1.606693866e-10 1.068533345e-10 5.544975755e-11 5.119175611e-11 0 2.232051604e-10 5.074831897e-11 1.679786889e-11 7.552846834e-11 1.732767752e-10 4.777503222e-11 4.998907053e-11 4.276255471e-11 7.862432879e-16 9.186450492e-11 6.369192031e-11 3.930544285e-18 6.828512575e-11 1.189702007e-10 9.195165558e-11 2.490539319e-11 1.545663764e-10 7.190465543e-11 0 2.142925284e-19 5.693669091e-11 1.410596811e-10 1.913851185e-11 8.246223199e-11 1.703897069e-11 1.246261316e-11 2.367981993e-10 1.068692667e-10 0 8.084525153e-11 1.949910744e-10 3.948331274e-11 2.683861527e-11 1.810429966e-10 2.518904301e-11 3.849326478e-11 6.040230792e-11 1.278429284e-10 1.861225928e-17 1.105309251e-10 7.268429107e-11 9.090999088e-11 4.8718078e-11 1.218424412e-10 1.090777728e-10 2.351768305e-12 2.363578609e-11 1.005047396e-10 5.401756563e-11 1.067471084e-10 9.720204682e-11 2.135230684e-10 4.929702951e-11 6.45654863e-11 2.433889629e-11 2.406012486e-16 2.662719939e-11 6.121169082e-17 2.250606539e-11 4.949741555e-11 1.126896535e-10 1.241088419e-16 2.707928565e-10 1.001419468e-10 6.654130102e-11 2.744935585e-11 1.542925896e-10 1.215085897e-11 1.205361486e-10 5.733302439e-11 1.314237911e-10 1.468580385e-11 4.185955853e-11 7.148253344e-11 2.800450985e-11 1.227365831e-10 2.51062941e-10 1.300427812e-11 5.544558851e-11 6.811219276e-11 1.278176884e-10 4.10198533e-11 1.097029238e-10 6.263295646e-11 2.733062046e-11 4.279438764e-11 2.577625573e-11 2.13780515e-11 1.81670092e-10 1.780955093e-10 8.610997451e-11 9.701333942e-11 1.933749777e-10 8.114154866e-11 4.743991463e-11 7.361216804e-14 1.306810323e-10 2.843355968e-11 1.684285827e-10 3.065793854e-11 4.515839095e-11 9.7073985e-11 2.038116551e-10 3.663994241e-12 1.206757766e-11 +2.865305206e-11 2.621681071e-10 3.968381203e-11 4.88432509e-11 1.70113016e-10 7.057396512e-11 2.059954515e-10 9.696913855e-11 7.280712068e-11 8.99984567e-11 1.191291055e-10 5.762177387e-12 1.144425743e-10 2.774702177e-11 5.403984855e-11 1.033192304e-10 8.342129318e-11 1.018594176e-10 2.996909193e-11 5.53728494e-11 3.657870772e-11 6.023681031e-11 7.894002866e-11 2.462839493e-11 5.86816793e-11 8.356989676e-11 2.698530057e-10 9.459254666e-11 2.701063961e-11 1.696093575e-10 9.435895755e-11 3.097790145e-10 4.574883049e-11 1.220306438e-10 3.765822799e-11 1.070328294e-10 1.078734991e-10 2.615535498e-10 1.611202177e-10 6.415400204e-11 1.859499576e-10 2.776020341e-11 1.797477545e-11 2.497928188e-11 7.371993587e-11 4.671035425e-12 1.773698096e-10 4.719090721e-11 6.134014774e-11 3.50810759e-11 1.539198038e-10 4.690895305e-11 7.377462714e-11 1.690021311e-11 5.929558371e-11 5.645917123e-11 2.486764383e-11 7.927255982e-11 1.60865558e-10 1.491827859e-11 3.578135032e-11 1.164945371e-10 4.72242251e-11 1.024655196e-10 2.972556077e-11 2.95313368e-11 7.011183862e-11 7.412326123e-11 7.720284328e-11 4.451421859e-11 1.731307777e-12 1.263176153e-10 1.219846474e-10 2.012786803e-10 1.248557624e-10 1.05742287e-10 5.218707898e-11 3.001757667e-11 1.846582746e-15 1.698782688e-10 8.320579129e-11 4.464418106e-11 2.129503304e-11 2.634069833e-11 3.569930452e-11 2.317756349e-11 1.573925976e-10 5.433504642e-11 3.634569365e-11 5.59384148e-12 3.919789253e-11 4.790977983e-11 1.17451456e-11 8.816203996e-11 7.773214567e-11 2.832922252e-11 3.689701822e-11 7.244857684e-11 7.311011224e-11 9.975595996e-16 8.713568369e-11 4.863623777e-11 2.832346305e-11 2.521074911e-10 7.50134993e-11 3.576021082e-12 1.275418659e-10 5.504428588e-12 1.380467017e-10 6.96743948e-11 9.039957602e-11 5.332367303e-11 3.72062771e-11 2.079366272e-11 4.93553972e-11 1.254024714e-10 1.981148069e-10 9.410582649e-11 1.451252183e-10 7.899109566e-11 1.334596402e-10 2.766527794e-11 4.982252453e-11 4.629007028e-11 4.562824244e-11 1.228943209e-10 1.358280902e-11 4.347412031e-11 1.683821841e-10 1.677627619e-10 8.129330804e-11 8.67391748e-11 9.376640323e-11 8.251617379e-11 1.936029606e-10 6.689981259e-11 1.01472525e-10 9.244744762e-11 1.671053601e-10 1.037105332e-10 1.887906168e-10 4.511986224e-11 3.567739366e-11 9.977272506e-11 7.310221797e-11 9.671657831e-11 4.596205961e-10 1.439412836e-10 3.955842398e-11 7.342326294e-11 1.144496957e-10 1.142829318e-10 8.071216789e-11 1.133087782e-10 9.162069682e-15 2.833923787e-11 8.058346434e-11 8.29712315e-11 1.332413789e-10 2.119793928e-10 1.509469423e-10 1.44110624e-10 1.350519215e-10 2.758961829e-10 2.249997406e-10 1.355809825e-10 8.548714869e-11 8.908880203e-11 1.265274276e-10 3.656815122e-10 4.285362315e-11 3.024752407e-10 1.328882294e-10 9.297957906e-11 1.075675223e-11 9.869814339e-11 4.819585125e-11 1.099826634e-10 1.209851737e-10 1.266672822e-10 1.479907672e-10 1.79070776e-10 7.2826437e-11 1.266837209e-10 2.290614175e-11 2.134153025e-10 5.112675127e-11 3.008012751e-11 1.124263285e-10 1.073443036e-10 0 1.593114197e-10 9.946384748e-11 4.52731513e-12 1.785085722e-13 7.956249794e-11 1.988166506e-10 1.657604549e-10 3.750614846e-11 1.181767932e-10 1.76339884e-10 4.493993915e-22 9.00999061e-11 3.191824009e-11 5.027142704e-11 1.570911409e-11 1.032936365e-10 4.617483294e-11 9.636343632e-11 1.087539246e-10 1.035766558e-10 4.443721448e-11 2.044305924e-11 1.060880813e-10 1.707810908e-11 4.957444332e-11 1.927309878e-11 5.020376725e-11 2.6856108e-11 3.980477512e-11 1.163606955e-10 5.568431308e-11 2.117862696e-11 1.148398159e-11 1.428583536e-10 1.813977676e-10 1.478267582e-10 3.215966442e-11 1.022137174e-11 7.567796289e-11 6.878007856e-11 5.546262569e-11 5.093864933e-11 5.622432432e-11 1.998722641e-10 3.745760902e-11 6.001310741e-11 4.298245856e-11 8.358841046e-11 9.043896688e-11 3.983543877e-11 2.559012886e-28 7.812834438e-12 6.094088357e-11 1.748136313e-11 3.406139507e-11 5.844016653e-11 5.598140591e-11 1.286423128e-10 1.294969757e-10 1.507935454e-10 1.760801268e-11 2.090506239e-10 5.874504164e-11 1.050640244e-11 7.621095089e-11 2.784557674e-10 6.213545288e-11 1.005585559e-10 1.723724763e-11 6.098632692e-11 1.284979801e-10 1.104128252e-10 1.580959445e-11 4.766034094e-11 4.750216707e-12 1.231847268e-10 2.3556507e-10 2.669136227e-10 8.014044582e-11 3.583553886e-11 5.196119732e-11 3.810709333e-11 2.180034993e-11 8.47867571e-11 6.759059686e-12 5.22272571e-11 2.668775337e-10 5.684372495e-11 3.434201691e-11 1.394597131e-11 1.887094765e-10 7.921245355e-11 3.896627357e-11 1.340941091e-10 1.441885875e-11 1.160447363e-11 1.709349261e-10 4.614383764e-11 3.048769372e-10 5.284563191e-11 1.090951136e-10 1.701687605e-10 4.01976153e-11 4.212809692e-11 1.133554911e-10 2.048500629e-10 2.149607139e-10 4.993961363e-13 3.336449983e-11 +7.379997322e-11 3.925708196e-11 3.138398696e-11 8.235026063e-11 4.322674443e-11 3.10133709e-11 3.014157688e-11 1.038448574e-10 8.969493364e-11 5.429882667e-11 6.231975491e-11 4.554476293e-17 9.763369983e-11 2.681677114e-11 3.071793754e-11 2.921622884e-10 1.240249082e-11 4.119021361e-11 2.103531369e-10 4.848614252e-11 1.420698302e-10 1.170126741e-10 7.217429861e-12 3.397454975e-11 6.244878355e-11 2.129000665e-10 1.026206829e-11 1.129387002e-10 7.429041589e-11 2.394864539e-11 8.54380088e-11 1.027979882e-10 1.327962439e-10 9.058429508e-11 3.228211356e-11 7.131869361e-11 1.17387244e-10 8.71993204e-11 8.434940345e-11 8.259547782e-11 3.974277082e-11 8.256213862e-12 7.576758429e-13 8.954406878e-11 1.503245908e-10 6.87334102e-11 2.134515643e-11 2.352748413e-11 8.514080599e-11 1.223438938e-10 7.36968928e-11 4.401825675e-11 7.218185803e-11 8.024219758e-11 4.399204319e-11 1.864609236e-10 3.035996281e-11 1.485591693e-10 1.804465533e-11 6.573243605e-18 2.325161678e-10 3.665288557e-11 8.690898139e-11 2.254065575e-11 4.888620846e-11 5.151445422e-11 4.530449919e-11 1.085580756e-14 8.59446862e-11 8.182366606e-11 8.58461248e-11 3.910166557e-13 1.290011391e-11 6.05023253e-11 1.754275549e-11 5.857837662e-11 3.757095644e-15 1.683292386e-10 5.695731733e-11 2.386689659e-10 1.157652908e-11 0 8.457219415e-11 4.315495883e-11 1.567613016e-10 9.490326664e-11 7.611857699e-11 1.505713405e-22 1.601959058e-12 2.86848238e-11 5.898814987e-11 2.763661151e-11 1.820894316e-10 1.557508412e-10 1.17582858e-10 1.174466552e-10 6.543997156e-11 9.852449303e-12 2.059485038e-10 7.795356308e-11 3.534152635e-11 3.20214898e-11 8.627971973e-11 2.802472539e-11 1.543287335e-10 1.556735048e-11 2.064004991e-11 1.428799135e-10 5.624728171e-11 3.630364904e-11 1.339008798e-10 3.154650983e-11 1.622914702e-10 1.021182452e-10 1.415344042e-10 9.105718024e-11 2.029358563e-11 2.213321945e-10 3.565055086e-11 1.111526146e-10 1.234641986e-10 1.083204678e-10 1.308609805e-10 4.381293035e-11 1.569946116e-10 1.816231386e-10 1.043280718e-10 2.79501523e-10 1.312308766e-10 1.715406003e-10 1.03108761e-10 1.22892338e-10 1.350651795e-10 1.094666888e-10 1.26404771e-10 2.62182966e-10 1.603622176e-10 2.891143452e-10 1.775017609e-11 3.463969506e-11 1.592289185e-10 1.358065391e-10 1.156876796e-10 9.193550712e-11 1.824374175e-11 2.210616366e-10 3.066815308e-11 3.397426234e-10 1.17166613e-10 1.011135071e-10 1.399079271e-10 2.923646315e-10 1.156859932e-10 8.534014103e-11 4.755013194e-11 1.395489503e-10 2.188000905e-10 1.148238774e-10 1.193976389e-10 1.088674737e-10 8.20175248e-11 3.719545157e-11 6.965601568e-11 5.230534661e-11 2.232386216e-10 2.352681757e-10 1.051945601e-10 8.419421287e-11 5.476392025e-11 2.826292203e-11 1.136233441e-10 1.026580604e-10 1.29362037e-10 3.146860723e-10 1.075904334e-10 1.9286444e-10 7.902822838e-11 3.955696884e-11 1.440587017e-10 5.971124375e-11 1.336881354e-10 3.273688073e-10 2.309331124e-11 7.773351253e-11 4.609434144e-11 5.054562076e-11 8.440003854e-11 5.760522472e-11 7.48277299e-12 9.638094011e-15 1.344026837e-10 3.87505262e-11 1.265680115e-10 7.991309271e-11 4.784310428e-11 1.719913827e-10 1.120170464e-10 1.530753708e-11 5.381990052e-11 5.926971395e-11 4.168223496e-11 5.185274891e-11 4.725396221e-11 6.137397751e-11 1.698465513e-10 4.163704527e-16 4.064363843e-11 5.868000086e-14 3.872486784e-11 1.365340624e-10 1.193093474e-11 6.344488519e-11 4.928932884e-11 1.9773163e-10 5.165439259e-14 1.313790589e-10 4.391749782e-11 1.509285786e-10 5.535497625e-11 4.905441457e-11 2.483433689e-11 1.836856614e-10 2.969325835e-11 3.419867388e-11 1.361897715e-10 4.273424647e-11 1.029362851e-10 1.134855614e-10 2.236333741e-11 5.183973849e-12 1.531564014e-11 6.293592492e-11 1.01011724e-10 1.192779308e-10 4.067279204e-11 3.892156376e-15 1.139806442e-10 1.20769684e-10 5.264879339e-11 2.019636103e-11 5.046601693e-11 1.021102617e-11 8.729469096e-11 1.357107278e-10 2.764601085e-10 1.559761797e-10 4.243513968e-11 2.563910869e-11 8.214768407e-12 2.819838893e-11 7.266059217e-12 1.24781614e-11 1.41122633e-11 9.696047564e-11 1.196282688e-10 5.114078364e-11 1.403811555e-10 7.098606887e-11 1.495193727e-11 2.742094153e-10 1.2618269e-10 1.021288694e-10 6.93625474e-11 7.449494499e-11 8.396260311e-11 8.61227512e-11 2.346847475e-10 3.996440255e-11 5.50347519e-11 9.898520193e-11 4.675254277e-11 3.266327948e-11 1.944220414e-10 9.646511089e-11 2.123844367e-10 4.121387755e-11 7.693121489e-11 1.676455831e-10 4.485562618e-11 3.375495105e-11 1.675632139e-10 1.562260418e-10 2.986521202e-11 1.324794876e-11 6.748847231e-13 1.42450331e-10 1.283864511e-10 1.282494123e-10 2.629870506e-11 6.025345973e-11 3.184193049e-11 2.401031869e-11 6.380232489e-11 1.268861855e-10 8.630194207e-11 4.217761857e-11 1.081319038e-10 1.823003084e-10 1.017477827e-10 7.440080814e-11 +4.699710958e-11 1.878324161e-11 6.004281402e-11 7.246365683e-11 1.217069382e-10 4.640385218e-12 7.441058741e-11 7.542562295e-11 1.468220851e-10 1.625388369e-10 6.600392973e-11 4.099108364e-11 8.024739268e-11 5.612360249e-11 7.251787337e-11 1.384182785e-10 2.138354227e-11 9.078644056e-11 3.599762802e-11 2.325847094e-11 3.710709381e-11 1.576192938e-11 1.360608472e-10 2.25862875e-10 1.413200106e-10 5.642316362e-11 1.366320336e-10 2.206226925e-11 8.133637076e-11 2.476168365e-11 5.313102843e-11 1.345520194e-10 5.162897307e-11 1.897921545e-10 1.002982732e-10 1.027070196e-10 8.907576921e-11 3.730502042e-11 3.91167091e-11 1.697487027e-10 1.908046639e-11 1.390965931e-10 7.155078611e-11 1.468407686e-10 1.514845272e-10 4.3151712e-11 8.970776632e-11 1.132240366e-10 8.286560371e-11 4.469283277e-17 1.59564887e-10 8.482887181e-11 5.542655044e-11 4.358486622e-12 2.980447596e-11 7.69982028e-11 1.981100663e-10 2.240839431e-28 3.923504667e-11 6.876435198e-11 1.349455673e-11 2.973285759e-10 9.393432145e-11 3.349357185e-11 6.837856624e-11 2.134799725e-11 5.167642796e-11 5.3277213e-11 7.805653225e-13 3.617322029e-11 1.218223379e-10 4.115408169e-11 4.287937429e-11 2.066968973e-11 2.676195794e-10 8.327853204e-11 1.671317136e-10 1.192818109e-10 7.590118914e-16 3.688956979e-11 4.737638982e-11 7.531946341e-11 1.528864805e-10 7.892389701e-11 3.962310893e-11 3.839990238e-11 3.682154106e-11 1.125648741e-10 2.781387298e-11 6.86244392e-11 2.182059256e-11 1.778675925e-10 7.31004648e-11 1.997416599e-11 4.550002007e-11 8.477185373e-11 1.189333823e-10 1.466462208e-10 9.544909553e-11 5.154607404e-11 5.35422297e-11 9.241745125e-11 1.200725895e-10 7.803412756e-11 5.718827899e-11 1.592574345e-10 1.144973651e-10 5.553346397e-11 5.766236801e-11 0 2.347661268e-11 1.146316697e-10 2.829402427e-11 8.754375769e-11 3.443086115e-11 3.914769064e-11 9.33538221e-11 1.751204889e-10 1.083963378e-10 6.764806389e-12 1.389746283e-10 3.740075229e-10 1.713146563e-10 3.01103744e-10 1.855510291e-10 1.052790476e-10 6.072427871e-11 6.06276912e-11 1.566396281e-10 8.835014683e-11 4.235563444e-11 1.344861119e-10 7.413432822e-11 1.314067383e-10 3.157498601e-10 1.781590811e-10 1.111370849e-10 1.397848032e-10 1.643464741e-10 1.480589857e-10 1.729707314e-10 1.404853275e-10 3.34414469e-10 2.200847386e-10 1.927073468e-10 1.539985368e-10 8.499902377e-11 1.990265965e-10 7.001318692e-11 1.127940554e-10 9.431048284e-11 2.076418233e-10 5.830005345e-11 2.24097282e-10 1.723190551e-10 7.743933241e-11 3.03917188e-11 5.766210017e-11 6.215400124e-11 1.358129048e-10 1.058130226e-10 2.381089439e-10 2.242950678e-10 7.22989979e-11 5.037774366e-11 1.684884259e-10 5.656253561e-11 1.864150191e-10 1.214300569e-10 6.357953631e-11 1.685651086e-10 5.018767694e-11 1.733847755e-10 3.459589965e-11 9.295157548e-11 2.803772146e-10 4.793951212e-11 2.527462552e-10 1.476496283e-10 6.835312336e-11 1.445205452e-10 1.887736246e-10 1.165465232e-10 1.881367927e-10 6.64083623e-11 9.582042899e-11 1.446538535e-10 5.996267493e-11 7.742597913e-11 1.686914513e-10 3.181495918e-11 1.148827072e-10 9.503759931e-11 4.622918399e-11 1.205508824e-10 1.082781518e-10 2.098406584e-11 7.224947519e-11 9.747036928e-11 1.293727023e-10 9.323063084e-11 1.307471353e-10 4.8454895e-11 1.804021155e-10 8.917766898e-12 5.853710501e-11 4.768164703e-11 7.704802124e-11 1.005908357e-10 4.607115042e-11 5.197280361e-11 1.310080073e-10 2.491333727e-10 8.827831513e-11 2.148541801e-11 1.533426528e-10 4.434880509e-11 6.865132947e-11 5.17827103e-11 1.176881822e-11 4.209491397e-11 5.68529464e-11 1.427342543e-10 7.042518853e-11 1.304810415e-11 1.481425612e-10 1.932244716e-10 7.926159422e-12 1.138872254e-10 4.590556431e-11 7.035992474e-11 7.928849592e-11 1.594348254e-10 9.520788593e-11 1.479887479e-11 1.352081056e-10 1.911775652e-10 6.534049147e-12 1.539823331e-10 1.77234281e-14 7.764828461e-11 1.366535747e-10 1.188792897e-10 4.65490289e-11 1.151655714e-10 2.665465591e-11 9.135550558e-11 6.231058149e-11 2.778625686e-11 7.150057514e-11 5.6365201e-11 6.786899106e-11 2.060645459e-11 1.243131305e-10 3.311218042e-12 3.891324255e-11 4.803088445e-11 1.303699221e-10 5.678208149e-11 4.343176035e-11 1.127279943e-10 8.75419304e-11 1.180629297e-10 1.693123667e-10 1.087765429e-10 1.076287895e-10 5.789503946e-11 2.223182531e-11 1.225646804e-10 2.787801904e-10 1.999925367e-11 1.182932957e-10 1.40554627e-13 5.373025104e-11 1.646103094e-11 8.569042623e-11 8.559275728e-11 2.580511055e-11 7.564158357e-11 2.54691935e-10 7.975021063e-11 1.025661095e-10 1.588412224e-11 1.779173623e-10 3.750468044e-11 5.290674458e-11 5.910489647e-11 6.651646405e-11 1.291811014e-10 7.113347569e-11 9.961018124e-11 6.182442879e-11 7.008691423e-11 4.947624059e-11 7.060171734e-11 1.046796125e-10 1.424348792e-10 5.775487752e-11 7.883855244e-11 1.148249755e-10 +9.047202686e-11 3.095807486e-11 1.626194012e-10 5.399975569e-11 1.84734656e-10 1.726672869e-10 7.59688057e-12 1.076942829e-11 9.976262664e-11 2.831734367e-11 2.535963151e-10 5.493939515e-11 2.091691588e-10 9.811166357e-11 7.369028624e-11 5.541375232e-11 2.533778408e-11 1.171548919e-10 4.777993148e-11 6.486526309e-11 1.135583604e-11 2.30165216e-10 9.465415209e-11 1.527325966e-10 7.273671805e-11 1.624939828e-10 1.156675079e-10 7.667290291e-11 1.373731116e-10 2.457699761e-11 3.190007994e-10 1.625679742e-10 1.799194169e-10 5.178812052e-15 1.033201046e-10 1.650445214e-10 6.039975621e-11 2.135426528e-10 8.816136322e-11 1.602931493e-10 5.477295874e-12 5.607133998e-11 1.324003794e-10 1.589829748e-10 3.686273596e-11 1.570640106e-10 2.138230954e-10 1.478670121e-11 1.318549832e-11 1.714309285e-10 5.930303969e-11 1.721341646e-10 6.027667444e-11 8.912875226e-11 7.328917715e-11 9.45110554e-11 6.930312927e-11 6.095041377e-11 8.67699541e-11 2.014340833e-11 4.353353168e-11 5.949992168e-11 3.733470865e-11 4.651945429e-11 2.74551224e-10 1.079122944e-10 1.024052771e-11 1.079258225e-11 9.837003848e-11 1.063020906e-10 2.459296851e-10 1.85790358e-10 6.681265159e-11 7.438394359e-12 4.923734181e-11 1.031801723e-10 2.23460051e-11 1.08059897e-10 5.850505335e-11 8.761572785e-11 1.461949202e-10 6.20888862e-11 4.686174967e-11 1.158941832e-10 1.68297792e-10 8.615085804e-11 1.629864007e-10 9.118430581e-11 2.671888376e-21 7.449280318e-11 1.24868668e-10 4.57794567e-11 9.14644937e-11 1.21129254e-10 2.947751306e-11 1.262113141e-10 1.065479004e-10 1.63085599e-10 2.948362279e-10 1.489454346e-11 2.247005559e-10 7.92397903e-11 1.018579582e-10 6.473807398e-12 3.726260989e-11 3.191009851e-11 9.162498243e-11 1.603434757e-10 3.291024299e-11 1.225059005e-10 5.505594455e-11 2.988024854e-10 1.24421137e-10 6.543686802e-11 5.732277708e-11 1.26628556e-10 1.790092299e-10 2.37756908e-11 1.015060685e-10 2.593013201e-10 1.420199807e-10 6.845904548e-11 1.073946453e-10 2.047399508e-10 1.785360522e-10 1.395177565e-10 2.857357462e-10 1.263058205e-10 1.125049022e-10 7.693294371e-11 1.32720857e-10 1.683941902e-10 2.497587275e-10 2.47533682e-10 8.587909188e-11 1.754221309e-10 1.031419425e-10 1.242603161e-10 2.122163561e-10 9.252852155e-11 1.859725677e-10 8.230338632e-11 2.385105081e-10 2.558350731e-10 1.804740372e-10 9.65389982e-11 5.507326314e-11 8.534070546e-11 7.989429187e-11 1.184940658e-10 1.859993183e-10 1.627403343e-10 7.192677277e-11 1.377780032e-10 7.701762604e-11 1.370537523e-10 2.710488611e-10 2.866673165e-11 2.072570394e-10 8.313617602e-11 3.151755812e-10 1.011820595e-10 7.700655782e-11 1.142379649e-10 1.463704087e-10 4.515000239e-11 1.054354875e-10 1.965025303e-10 2.737127157e-10 1.163216492e-10 2.649525544e-10 1.90926749e-10 1.556235207e-10 1.547807391e-11 2.713948592e-10 2.05774131e-10 1.439879567e-10 1.508037366e-10 6.373529303e-11 1.966266464e-10 6.162024326e-11 1.729288646e-10 7.278838028e-11 8.446407422e-11 1.263345091e-10 8.724625265e-11 1.239775011e-10 3.045790254e-11 1.884868025e-10 3.990228039e-11 5.980526256e-11 7.865395494e-11 1.917370974e-10 2.442500129e-11 1.587476449e-10 7.626118193e-11 5.544658154e-11 8.144268509e-11 5.203663753e-11 4.95295433e-11 1.39148053e-10 9.949298455e-11 6.782270829e-11 2.167688325e-11 4.736405122e-11 6.403613412e-11 1.389188176e-10 4.019263131e-11 4.751973913e-11 4.46488781e-11 2.417658405e-11 1.055586764e-12 8.986879398e-11 1.350394914e-10 1.408411947e-10 9.912052549e-12 2.124627538e-10 9.926149935e-11 4.437601109e-11 1.794730563e-10 4.160821651e-11 4.807559697e-11 1.412486259e-11 1.225395301e-10 4.538801052e-11 2.549090311e-10 4.048620648e-11 8.294082248e-11 9.69780359e-11 9.121763416e-11 1.23964003e-10 8.846412183e-15 2.08225475e-11 6.458543219e-11 8.501641725e-11 7.232207205e-11 2.002568854e-11 4.95592853e-11 1.067705704e-10 1.152517533e-10 4.008973707e-11 5.853741533e-11 3.43058515e-11 1.44652573e-10 1.127558746e-10 8.820785094e-11 1.1838783e-12 5.748777036e-11 2.267209068e-10 5.429110812e-11 6.61699281e-11 1.140534188e-10 1.397132081e-10 1.506218205e-10 1.679656452e-10 1.966161802e-11 3.825055454e-11 2.56847028e-11 3.880600535e-11 4.889279694e-11 5.591856521e-11 2.61903735e-11 9.858608119e-11 1.394251362e-10 1.294247228e-10 4.855820757e-11 4.518530994e-11 3.878307191e-11 5.954291149e-11 1.550893579e-11 7.238157216e-11 2.929049613e-10 9.146569935e-11 1.091941682e-11 1.416644562e-10 3.135114095e-11 7.274117073e-11 5.945273188e-11 1.682821831e-10 9.931972284e-11 6.367325861e-11 3.811528698e-11 1.352346546e-11 1.638238221e-10 1.101426644e-11 1.100780693e-10 1.50294129e-10 9.87741744e-11 1.184347903e-10 1.705099942e-10 9.27548875e-11 8.986154728e-11 2.83408139e-11 1.10755853e-10 1.765523461e-11 1.888354511e-10 1.449447418e-10 2.424890718e-11 2.74555298e-11 1.778199845e-10 +6.448438841e-11 1.050062953e-10 1.056545096e-10 9.49036194e-11 3.116145511e-11 2.602052795e-10 5.766633065e-11 6.392772835e-11 1.208175344e-10 1.316426793e-10 6.032311003e-11 7.570279885e-11 1.372353144e-10 1.023033052e-10 4.128131274e-11 1.818476645e-10 9.850142183e-11 8.616388248e-11 7.49958786e-11 1.776442528e-10 1.470009884e-10 2.598253712e-11 6.029437922e-11 1.70177988e-10 6.939910856e-11 8.884987124e-11 6.151155419e-11 7.330853632e-11 7.072276932e-11 4.249685289e-11 4.83188571e-11 6.734198569e-11 1.375608855e-10 7.329678471e-11 1.9289292e-10 5.829850294e-11 1.405919119e-10 5.378638715e-11 4.599885718e-11 8.856845261e-11 2.883018229e-11 1.305816347e-10 2.144394267e-10 2.640770777e-10 1.643198548e-11 3.155034316e-10 8.328551043e-11 1.136370831e-10 3.638954327e-11 1.004437079e-10 7.433954241e-11 4.969607393e-11 1.563369995e-10 1.112450374e-10 8.095562433e-11 2.05271732e-10 1.859570713e-10 9.89632354e-11 1.866329251e-10 1.045850494e-10 2.407656912e-10 2.720833466e-11 5.38434993e-11 1.750227729e-11 1.976487909e-11 1.266561532e-10 5.738312906e-11 7.404598514e-16 2.448787894e-11 9.268649732e-11 9.029496778e-11 4.331138278e-11 8.722710122e-11 9.254717486e-11 5.944084672e-11 8.336312316e-11 6.545817576e-11 3.152255019e-11 1.467014951e-10 8.99830701e-12 1.73539152e-10 1.729252572e-10 9.974573943e-11 1.145246939e-10 1.065406889e-11 8.114851744e-11 7.172065746e-12 1.235402589e-10 8.216069183e-11 1.693071255e-10 1.446605196e-10 2.450820886e-11 4.926115066e-11 1.190018202e-10 3.395762901e-10 1.351364619e-10 1.264986679e-10 4.360648631e-11 2.508023089e-10 2.758204621e-10 1.401479583e-10 1.007927038e-10 7.388810609e-11 1.081390489e-10 6.856889336e-11 1.312649331e-10 1.819629487e-10 8.839959046e-11 2.058743809e-10 8.315663827e-11 5.622688843e-11 1.700459818e-10 1.949528378e-10 8.092262865e-11 5.685894741e-11 1.567060419e-10 2.027017302e-10 1.081405912e-10 8.431753679e-11 1.019499083e-10 2.013150016e-10 1.767715587e-10 1.417185453e-10 1.245074387e-10 1.505055224e-10 1.608405736e-10 1.666217077e-10 1.300099577e-10 1.895490622e-10 9.642484389e-11 1.064439228e-10 7.615540375e-11 1.940306798e-10 3.356114787e-10 5.284996072e-11 1.266215733e-10 1.575427759e-10 1.056865428e-10 1.02371507e-10 1.301167071e-10 7.849708955e-11 2.26811265e-10 2.716239377e-10 4.065065405e-11 2.789803458e-10 1.300576409e-10 5.40100597e-11 2.183435231e-10 1.795847023e-10 1.018829311e-10 1.445884044e-10 9.025414857e-11 1.890057944e-10 1.534226936e-10 1.112475139e-10 3.061545743e-10 1.080951407e-10 2.493981768e-10 1.659697715e-10 1.553329781e-10 9.466889064e-11 1.838649838e-10 1.653944384e-10 1.841843063e-10 1.596588092e-10 7.241461443e-11 1.454260189e-10 1.393293886e-10 2.099913328e-10 1.874332943e-10 5.108868088e-11 2.963658147e-10 1.156487238e-10 9.901235468e-11 3.813397202e-11 2.456273002e-10 1.219535711e-10 1.463468339e-10 7.198960875e-11 2.091629681e-10 7.154234709e-11 1.673214252e-10 2.158005603e-10 1.490865136e-13 1.608770085e-10 2.0573784e-10 3.794291817e-11 5.101304852e-11 1.349668087e-10 2.26366351e-10 9.882801953e-13 4.872148997e-11 1.201330388e-10 1.426909048e-10 3.61534307e-11 8.947172e-11 2.055833839e-10 1.328913323e-10 8.880905289e-11 8.31167461e-19 7.484083469e-11 1.793961051e-10 1.380649888e-10 9.106688844e-11 1.541842161e-11 3.975980142e-12 7.986957628e-12 8.035716247e-11 1.469978637e-10 4.956635e-11 1.310238778e-10 1.84889376e-11 1.630491997e-10 9.173172361e-11 4.632791683e-11 3.620571217e-11 3.280239135e-11 1.463677114e-11 1.279510233e-10 2.125429974e-10 1.22232651e-10 1.177971513e-10 7.252060899e-11 1.910348419e-11 1.127731648e-10 2.101985255e-11 4.746054726e-11 1.257162635e-10 5.790193569e-11 4.847672584e-11 3.524466465e-11 7.38424653e-11 1.494537013e-10 5.075643173e-11 2.063880717e-11 2.045766053e-11 3.17196678e-11 1.303872656e-10 2.69174271e-11 7.89030601e-11 2.796678077e-11 7.067395732e-11 1.304752445e-10 1.11087504e-10 1.074159311e-10 1.606012084e-10 2.583991063e-11 2.040155965e-11 2.325813287e-11 7.932114213e-11 1.734461449e-10 1.024903826e-10 5.416000334e-11 1.197337687e-10 3.572889588e-12 7.968589509e-11 1.707535594e-11 4.947131454e-11 2.161928473e-10 1.055964093e-10 7.083158003e-11 1.633200038e-10 1.536111519e-10 7.127294091e-11 6.064129361e-11 8.734223331e-11 1.337567366e-10 2.303425402e-10 2.81875118e-11 1.173154441e-10 5.364896359e-11 7.716662237e-11 2.660107855e-11 5.047268478e-11 7.9053851e-11 8.375597381e-11 1.293426106e-10 1.451549373e-10 1.096900864e-10 1.308747927e-11 6.752999929e-11 5.246468205e-11 1.300627416e-10 5.762375707e-11 1.175891744e-10 1.077846984e-10 3.448832522e-11 5.595408565e-11 1.612108923e-10 2.155963726e-11 1.242986123e-10 9.871319469e-11 1.337175066e-10 1.018180278e-10 2.617126708e-11 7.198272278e-11 8.985482024e-11 9.594088297e-11 8.321375912e-11 8.536949547e-11 +1.21236789e-10 1.574827238e-10 1.005049914e-10 1.30174947e-10 9.131452244e-11 8.779799663e-12 1.419083148e-10 6.774012095e-11 2.196640431e-11 9.823102093e-11 1.004749888e-10 1.566912748e-10 1.986659926e-11 1.596811095e-10 7.98625042e-11 1.03835525e-10 1.144751963e-10 4.009501142e-11 2.013940618e-11 1.179254186e-12 7.545672145e-11 2.540899932e-10 5.193550888e-11 7.797655197e-11 2.793958878e-11 5.192477668e-11 8.232312099e-11 1.84047043e-10 1.00552211e-10 7.814988326e-11 1.699523312e-11 1.301381555e-10 4.461861509e-11 1.031094553e-10 2.654071161e-11 1.54268615e-10 5.421232843e-11 1.450561074e-10 6.715087271e-12 2.044573798e-10 1.313392693e-10 7.552721442e-11 3.984575257e-28 8.339115865e-11 1.514392092e-10 1.369081465e-10 7.402724576e-11 9.760349294e-11 8.010118364e-11 3.172286883e-11 1.535968678e-10 5.494120851e-11 3.510392264e-10 1.623718362e-10 3.077317948e-10 3.159098598e-11 1.159681159e-10 1.331270475e-10 1.375162378e-10 1.818513986e-10 8.360776937e-11 2.290634027e-10 5.992192774e-11 3.758285609e-11 3.186798502e-11 1.192397882e-10 1.212069133e-10 2.150929694e-10 9.210820429e-11 9.533332581e-11 7.120181223e-11 5.149124775e-11 4.258486716e-11 3.012450053e-11 1.025687942e-10 6.297840792e-11 1.726394783e-10 1.450476979e-10 9.425447233e-11 8.94513178e-11 1.60310957e-10 1.974752268e-10 8.752586145e-11 2.041626151e-10 2.019408204e-10 1.295505743e-10 1.723073008e-11 7.702052277e-11 6.975510078e-11 1.394479983e-10 7.258626825e-11 2.675118494e-11 9.683251399e-11 2.432061808e-10 8.895413349e-11 8.733515917e-11 7.62610409e-11 8.346570757e-11 1.641298204e-10 1.150536344e-10 1.645659649e-10 2.014070953e-10 1.01328857e-10 1.362104039e-10 2.002797144e-10 1.527198504e-10 1.705569848e-10 1.293685105e-10 1.434383726e-10 1.144631028e-10 1.232005125e-10 1.249522398e-10 2.702680216e-10 3.501913921e-11 2.564039985e-10 6.214530697e-11 1.306007944e-10 1.18917106e-10 8.135936927e-11 1.603562166e-10 1.546837162e-10 1.022453023e-10 1.233287737e-10 5.511488284e-11 9.967483946e-11 1.831864119e-10 1.099365692e-10 1.644042423e-10 1.765777719e-10 6.138330271e-11 1.709910409e-10 3.212173965e-10 1.654078011e-10 1.278359295e-10 9.090162355e-11 2.088508348e-10 2.010674916e-10 1.284895214e-10 1.165841342e-10 4.677480281e-11 6.313074649e-11 2.14744836e-10 1.281533615e-10 1.264568971e-10 1.073070995e-10 1.159208178e-10 5.08693482e-11 1.31734589e-10 6.492376176e-11 1.536897725e-10 8.681967059e-11 1.849357884e-10 1.680270337e-26 1.513011839e-10 1.353076443e-10 1.477737347e-10 9.690095095e-11 1.713314957e-10 2.715709603e-10 1.313748407e-10 2.292692339e-10 1.438425467e-10 1.253707949e-10 8.154761914e-12 1.264387078e-10 8.291983179e-11 2.612485987e-10 8.833840986e-11 1.475220976e-10 6.068331966e-11 1.129957574e-10 1.398886762e-10 2.60542338e-10 1.733625823e-10 1.061413785e-10 1.499990799e-10 8.374653128e-11 5.152993653e-11 1.777557663e-10 6.699531556e-11 2.6713155e-10 1.520468447e-10 9.704683493e-11 2.393040326e-10 1.48721892e-10 1.665394131e-10 1.233325948e-10 2.559045627e-10 1.368810379e-10 2.39603859e-10 1.571545571e-10 1.136733737e-10 1.082213202e-10 1.350787296e-10 8.502197025e-11 5.007621945e-11 1.381125832e-10 1.578679015e-10 1.052866163e-10 1.324849961e-10 1.708279255e-10 6.149457075e-11 3.263330059e-10 1.881429905e-10 8.977471014e-11 2.778395413e-10 3.566631014e-11 1.129020205e-10 1.347948214e-10 1.410733084e-10 6.111138365e-11 1.025922151e-10 2.802835938e-11 1.221716227e-10 9.564777151e-11 3.718545242e-11 7.294038415e-11 9.005445658e-11 4.856697686e-11 2.137422259e-11 1.603350324e-10 1.263118895e-10 9.192988489e-11 2.818301574e-10 1.303205285e-10 1.373363899e-10 1.225217265e-10 8.515893522e-11 6.103738722e-11 1.488637869e-10 1.027250736e-10 1.033416212e-10 2.200991453e-12 2.214260144e-11 6.361904128e-11 1.49493539e-10 1.358066598e-10 1.057226293e-10 1.516779308e-10 1.207283497e-10 6.882307724e-11 1.104934664e-10 1.283115089e-10 2.381859902e-10 3.95753088e-11 2.167025308e-10 3.013381037e-11 1.552121995e-10 1.05756042e-10 6.836395861e-11 6.177309909e-11 1.988679133e-10 1.006349852e-11 1.266619833e-10 9.241331417e-11 9.998373063e-11 8.798803346e-11 2.436974142e-10 4.92166443e-11 1.034751036e-10 4.819127526e-11 4.652001092e-11 4.654827375e-12 9.37398058e-11 1.39743824e-10 1.09738385e-10 6.848568598e-11 3.060704487e-11 5.684941663e-11 5.973378312e-11 2.974661e-11 2.770350231e-11 1.180472145e-10 6.805929879e-11 8.239168315e-11 1.099924651e-10 2.995964389e-11 1.174326091e-10 2.860549906e-11 1.390881973e-10 1.049236078e-10 5.174286955e-11 1.12155306e-10 1.032489967e-10 4.436838477e-11 1.883323183e-10 1.6799833e-10 1.184598608e-10 1.573109122e-10 7.763909272e-11 3.173406603e-11 1.241004394e-10 2.361100195e-10 7.172279261e-11 1.92249098e-10 8.480477361e-11 3.586266431e-11 1.390350809e-10 4.576013558e-11 5.454211653e-11 +7.334866186e-11 4.790063108e-11 7.071899774e-11 1.054627553e-10 4.503313327e-11 1.221410834e-11 2.200857453e-10 5.309082814e-11 3.537438807e-11 1.071859967e-11 9.784963692e-11 1.67052326e-11 1.138799777e-10 4.258134934e-11 1.98841357e-10 1.789578321e-10 1.454232754e-10 2.075125485e-10 4.602602034e-11 5.893850055e-11 8.326926201e-11 7.054828437e-11 1.415021103e-10 7.157547684e-12 4.844972752e-11 7.645296303e-11 3.966912416e-11 1.578611535e-10 4.913523515e-11 8.475598113e-11 4.127483779e-11 1.106965336e-10 5.512692306e-11 6.892121262e-11 1.305357938e-10 5.72265306e-11 2.177397489e-11 2.118623125e-10 3.832965642e-11 1.43592424e-10 2.985854692e-10 1.920459708e-10 3.023035651e-10 7.260707576e-11 2.074771199e-10 6.039371058e-11 5.7031605e-11 3.828434194e-11 7.155274023e-11 4.689949827e-11 9.707232771e-11 1.10227773e-10 7.567435404e-11 1.074407347e-10 2.203427156e-10 1.156545867e-10 1.656854263e-10 6.598986144e-11 2.056804645e-11 3.864103365e-11 5.333310371e-11 9.591486823e-13 1.063628487e-10 3.675739672e-11 6.342699837e-11 5.903872425e-11 9.932591625e-11 1.172563376e-10 1.420409752e-10 5.486364852e-11 8.471568427e-11 8.807861083e-11 2.127194667e-11 4.059368516e-11 6.757493931e-11 1.106977642e-10 1.175290053e-10 9.205339302e-11 5.678126703e-11 3.767786179e-11 7.200147822e-11 2.753955084e-10 1.442636226e-10 5.329541515e-11 6.331630015e-11 0 1.241331832e-10 3.984731437e-11 2.285369865e-14 1.15930939e-10 1.107712606e-11 1.023585477e-10 1.810442903e-10 2.270018207e-10 7.417302099e-11 1.159248855e-10 1.079660433e-11 9.538361445e-11 8.543183671e-11 1.188944682e-10 2.003632122e-10 2.743519645e-10 5.277038452e-11 8.98437568e-11 1.06762762e-10 1.55885767e-10 5.790137331e-11 2.172141915e-10 2.127231633e-10 5.93945943e-11 2.191195294e-10 2.983261224e-11 1.118475847e-10 2.559574008e-10 7.958309696e-11 1.557560697e-10 9.642321034e-11 1.015844403e-10 1.855584707e-10 1.432270987e-10 1.633034684e-10 1.640874267e-10 1.616746872e-10 2.136387982e-10 1.803303045e-10 2.488391662e-10 3.612764632e-11 1.425031317e-10 1.279297217e-10 1.058419327e-10 2.088426055e-10 2.719943714e-11 1.533153211e-10 2.890671756e-10 8.636247236e-11 9.601804392e-11 1.439997879e-10 1.063621483e-10 1.874023397e-10 8.760336504e-11 1.042395341e-10 8.527375231e-11 9.504564122e-11 2.90003143e-10 2.029141913e-10 2.665192378e-10 7.996187636e-11 2.817541979e-10 2.016454251e-10 1.222103184e-10 1.220716745e-10 1.750892038e-10 1.498524752e-10 2.171443321e-10 6.069224145e-11 1.152674436e-10 1.121250369e-10 9.419891562e-11 1.049602689e-10 9.273373431e-11 7.863151284e-11 1.547914642e-10 9.122214574e-11 1.442170054e-10 8.169754491e-11 1.248985182e-10 1.698261924e-10 1.613529956e-10 1.913928579e-10 2.415867573e-10 4.648894575e-10 9.806732495e-11 6.285025908e-11 2.308136916e-13 2.938966293e-11 1.543010752e-10 7.251525756e-11 8.448355019e-11 9.02356086e-11 1.674910658e-10 2.005559856e-10 8.011747735e-11 2.63276445e-10 1.365567361e-10 1.172623101e-10 1.17038849e-10 1.214977634e-10 1.280303056e-10 1.581844315e-10 2.189209291e-10 2.222058818e-10 9.589132186e-11 1.902907913e-10 1.866728321e-10 1.28278483e-10 1.40242553e-10 9.24412676e-11 1.141692534e-10 1.952868924e-10 1.06881316e-10 7.416555969e-11 1.592782316e-10 4.612853484e-11 6.812634744e-11 7.550960396e-11 6.192514953e-11 7.870710358e-11 5.896771941e-11 1.188399869e-10 7.09400475e-11 7.051304661e-11 1.368802719e-10 1.734987796e-10 9.028338203e-14 2.314096086e-15 9.476447668e-11 1.556449425e-20 1.544383899e-11 6.054285679e-11 6.278795546e-11 8.579339092e-11 1.612098336e-11 7.732672666e-11 2.418070375e-11 5.879178024e-11 8.811369076e-11 2.022926764e-12 1.612075156e-10 8.969331326e-11 1.395136765e-10 4.008969964e-11 1.626822441e-10 5.326798201e-12 1.255886674e-10 9.809321964e-11 1.698869411e-10 1.025904722e-10 9.911728575e-11 9.574551819e-11 1.364441878e-10 5.140452268e-11 2.316397329e-10 3.599424922e-11 1.73281697e-10 4.197812297e-11 1.805932651e-10 1.644421454e-10 1.068131065e-10 1.586891677e-10 3.049111266e-10 1.206068158e-10 7.749152233e-11 1.396540135e-10 1.248080883e-10 9.980974771e-11 6.198832943e-11 1.692842867e-10 1.48999377e-11 2.715928651e-11 1.666230957e-10 1.123912058e-10 9.446406811e-11 1.048809792e-10 6.961584747e-11 4.086553512e-11 1.230344745e-10 1.682122111e-11 1.228979239e-10 6.325260033e-11 8.841095427e-11 8.198348863e-11 2.911860027e-10 1.212022948e-10 4.681164105e-11 1.220997714e-10 7.699911547e-11 9.82299761e-11 1.129560936e-10 1.018934712e-11 9.649921048e-11 1.18801686e-10 1.309409017e-10 6.361488599e-11 2.157972091e-10 3.633781176e-11 2.805217787e-11 6.8705434e-11 3.966894739e-11 6.326607664e-11 6.607739479e-11 6.888821213e-11 6.80434393e-11 1.059860027e-10 9.39264219e-11 1.212137379e-10 5.930358096e-11 2.064921505e-11 1.305777116e-10 9.956157693e-11 6.03920438e-11 +1.080057562e-10 7.291817287e-11 1.991815371e-11 6.173834937e-11 4.617574356e-11 3.471503961e-11 1.658009864e-10 4.222779159e-11 1.063940877e-10 1.731331148e-11 2.271810859e-10 3.701759877e-11 1.661656426e-10 3.310575167e-10 1.292394435e-10 6.420473765e-11 4.337700767e-11 1.16632217e-10 1.714732552e-10 1.251458198e-10 3.06895422e-11 6.402929429e-11 1.25600367e-10 1.03199601e-10 6.351615318e-11 5.518597913e-11 5.895965659e-11 9.175389005e-11 4.290481643e-11 1.180244423e-10 1.071864503e-10 7.468965792e-11 5.770515373e-11 1.643741783e-10 9.755777177e-11 5.108394958e-11 1.192278872e-10 1.704913992e-10 1.521715399e-10 7.918104977e-11 1.816290378e-11 8.725579058e-11 2.06062135e-10 1.172096719e-10 1.626752455e-10 3.415801537e-10 1.17008128e-10 2.472718804e-10 3.911081623e-11 5.197291381e-11 1.189640857e-10 7.479754605e-11 1.935066172e-10 6.705166841e-11 6.654761027e-11 1.554378992e-10 1.964170811e-10 2.007801337e-10 6.025994523e-11 1.825901247e-10 4.534131119e-11 3.151608353e-10 1.63228531e-10 1.280072172e-10 1.182160308e-10 1.282209443e-12 9.11293301e-11 5.948128172e-11 7.620340851e-11 5.153158356e-11 1.506085154e-10 2.479625105e-10 1.188220519e-10 8.050111664e-11 5.111422432e-11 1.447098131e-11 2.011227318e-10 1.024137251e-10 1.853402905e-10 1.017565962e-10 8.58284993e-11 1.235915982e-10 4.701873723e-11 1.258566433e-10 6.441898358e-11 1.608504049e-10 6.811119408e-11 1.958784334e-11 7.140338102e-11 2.371610685e-13 9.257235958e-11 8.873147716e-11 1.207886055e-10 1.438974369e-10 1.068392943e-10 1.230079248e-10 1.449455963e-10 9.771022153e-11 1.204256534e-10 3.453386743e-11 5.633097833e-11 1.115342522e-10 1.40852763e-10 1.762821191e-10 1.582255144e-10 5.808490371e-11 3.468882987e-11 1.309881175e-10 1.929365599e-10 1.144415739e-10 1.166791593e-10 1.164631914e-10 7.932884357e-11 8.083729035e-11 2.241817375e-10 1.447022039e-10 1.458107252e-10 1.907362782e-10 1.312175941e-10 9.166693335e-11 9.631973695e-11 2.915326215e-10 1.508461157e-10 1.039811784e-10 3.478119606e-10 1.194836477e-10 2.642286502e-10 1.19905001e-10 1.709542356e-10 1.393611959e-10 1.467450926e-10 1.456147794e-10 1.701482928e-10 2.75482647e-10 1.642171085e-10 1.510666125e-10 3.494903198e-19 1.171580331e-10 1.393795341e-10 1.774927499e-10 2.596133155e-10 1.424304296e-10 1.475769203e-10 1.681160106e-10 3.022737132e-10 3.528688446e-10 9.823582121e-11 2.912701349e-10 3.495174995e-10 0 4.998069429e-11 2.716556398e-10 2.340520109e-10 7.56731583e-11 8.785892624e-11 1.102804384e-10 2.039134865e-10 1.02236684e-10 1.880978155e-10 1.522375602e-10 4.337420408e-11 1.992393641e-10 1.363810779e-10 1.794790844e-10 2.44838052e-10 1.428013145e-10 1.723809797e-10 6.061052979e-11 3.499107443e-10 1.144963242e-10 1.409109236e-10 7.938353173e-11 2.58100916e-10 6.991883845e-11 2.07799595e-10 9.5086863e-11 3.225637834e-10 1.09326958e-10 1.423190872e-10 1.901220594e-10 1.279756999e-10 7.79330676e-11 1.260473558e-10 1.087551393e-10 1.550121333e-10 3.767765612e-10 1.415994821e-10 1.299739994e-10 1.332293593e-10 2.28114391e-10 1.476401439e-10 1.459770204e-10 1.369628964e-10 3.188896153e-10 1.576983257e-10 1.131061881e-14 1.778136291e-10 1.625323591e-11 1.127136206e-10 2.750209433e-10 2.085630044e-11 7.447918564e-11 1.186985055e-10 3.12357478e-11 9.427583015e-11 2.621737689e-10 1.926689672e-10 1.466720552e-10 8.635045624e-11 1.373032578e-10 6.357062446e-11 8.147075254e-11 8.906276824e-11 1.947336053e-10 6.353329798e-11 1.623423599e-11 6.356265068e-11 1.223449278e-10 1.611536925e-10 1.22140877e-10 9.83694031e-11 1.305867703e-14 7.16319119e-11 1.008786492e-10 5.566681816e-11 4.058802717e-11 1.300720511e-10 2.750697926e-10 2.75547241e-11 1.779530689e-10 9.859309128e-11 1.795907348e-10 9.006372652e-11 1.640065035e-10 9.738119649e-11 2.892729669e-10 8.208964681e-11 2.014945013e-10 5.503049424e-11 1.094382105e-11 2.367827422e-10 1.200284951e-10 7.063974732e-11 4.570931606e-11 1.691960956e-10 1.034469175e-10 1.970227269e-10 2.076368718e-10 8.049825637e-11 1.191261965e-10 1.305984564e-10 1.82856102e-10 1.924728914e-10 1.185129528e-10 2.168464502e-10 2.95748643e-11 4.758010597e-11 9.887747686e-11 5.384794541e-11 9.757593032e-11 1.192965839e-10 1.376718731e-10 6.408386944e-11 5.141142772e-11 1.012458628e-10 9.822336983e-11 6.279269631e-11 1.401495831e-10 6.025739677e-11 2.681916508e-11 4.056728565e-11 3.039842892e-11 2.567370266e-11 1.162787435e-10 1.224229041e-10 6.129786848e-11 1.628971776e-10 7.16009302e-11 1.705230339e-10 1.139212028e-10 6.086406058e-11 3.757461398e-11 2.341698418e-10 1.052387719e-10 1.447193095e-10 1.056887821e-10 6.339287842e-11 9.396610428e-11 3.976105577e-11 8.582616035e-11 1.427737603e-11 6.83492703e-11 1.271031541e-10 1.470611817e-10 8.32836278e-11 1.241131487e-10 1.594018253e-10 4.960097296e-11 2.345546725e-10 9.920510515e-11 +2.916462435e-10 1.686712991e-10 9.433770787e-11 1.481755719e-10 8.620233318e-11 5.297194979e-11 2.057765699e-10 8.216116727e-11 2.342407425e-10 1.220210855e-10 2.345798072e-10 2.735382798e-11 7.198203629e-11 1.849353041e-10 1.407403454e-10 2.248169858e-10 5.157461543e-11 2.961291017e-10 1.017979916e-10 5.009010106e-11 5.802381282e-11 7.815131885e-11 1.201903633e-10 7.222598105e-11 2.379151745e-10 1.115428121e-10 7.613065081e-11 4.929354977e-11 1.074551312e-10 1.096383404e-10 5.100288221e-11 8.633557593e-11 4.589664774e-11 2.239907083e-11 1.418520041e-10 1.380974529e-10 4.805877111e-11 1.166122293e-10 1.229019544e-10 1.212808512e-10 2.817797964e-11 2.083054891e-10 2.686690656e-11 3.787436441e-11 1.498635957e-10 1.905584845e-10 9.131410203e-11 2.281255039e-10 8.245300901e-11 8.276915764e-11 9.093795048e-11 5.150686523e-11 1.538479101e-10 9.409443064e-11 1.233823072e-10 1.416718909e-10 8.842081526e-11 1.106756599e-10 9.787012921e-11 1.481580297e-10 1.795999746e-10 1.218530698e-10 4.183080378e-11 1.781285742e-10 3.054020793e-11 1.387135086e-11 1.596895301e-10 1.409582336e-10 7.314847068e-11 1.614524371e-10 1.555988849e-10 1.21662671e-10 1.616956975e-10 1.12750885e-10 7.811234731e-11 9.270015042e-11 1.075776626e-10 8.94087113e-11 5.082078065e-11 1.630374653e-10 1.869493333e-11 3.806003719e-12 2.196014361e-18 3.838447328e-11 1.291607926e-10 5.384376902e-11 7.110934757e-11 9.431996112e-11 5.111854835e-11 4.602132685e-11 2.249224966e-10 9.10425354e-11 1.382102237e-10 1.098851559e-10 2.261179313e-11 1.238917081e-10 2.07104334e-10 3.683449511e-11 2.020596105e-10 1.10119924e-10 1.882493295e-10 1.089966432e-10 6.098117804e-11 1.549949708e-10 1.786042074e-10 2.001786654e-10 1.612306529e-10 5.357125321e-11 1.249060013e-10 7.092022557e-11 9.73781915e-11 1.533516497e-10 9.772681821e-11 1.243216523e-10 2.935382662e-10 1.039288265e-10 1.533175808e-10 1.019534662e-10 1.255851621e-10 2.746883987e-10 2.911640604e-10 2.864014814e-10 1.123277487e-10 1.795667942e-10 1.375499625e-10 1.383955205e-10 1.441718526e-10 2.131409447e-10 1.34470728e-10 1.69140295e-10 1.49755417e-10 1.685405757e-10 7.272510138e-11 1.491749652e-10 3.464736493e-10 1.265616369e-10 6.502875467e-11 1.703131637e-10 1.008362277e-10 2.661575958e-10 3.745370523e-11 2.108264165e-10 1.440144651e-10 1.163312519e-10 1.835392212e-10 3.797673739e-11 3.23443577e-12 2.391309981e-10 7.377845952e-11 2.260374097e-10 1.940066654e-10 1.690893036e-10 1.530207841e-10 2.420747904e-10 1.323586188e-10 1.005697278e-10 1.811732762e-10 5.883268218e-11 7.808551624e-11 1.713680859e-10 8.962627498e-11 6.958105763e-11 1.357674313e-10 7.697814162e-11 7.058136766e-11 7.724010414e-11 7.897022386e-11 1.594603873e-10 1.219560245e-10 2.172549856e-10 1.903431208e-10 2.546897769e-10 3.555718864e-11 9.407476755e-11 1.43658274e-10 1.524034767e-10 1.683323248e-10 1.214753577e-10 1.729909004e-10 2.415463791e-10 2.124724465e-10 7.772071309e-11 9.538258173e-11 1.136776651e-10 2.005618616e-10 8.985849504e-11 8.520029101e-11 2.21678135e-10 1.884998352e-10 1.332625087e-10 1.063846851e-10 1.718842871e-10 2.727170802e-10 1.60315494e-10 1.269427753e-10 1.042235002e-10 8.999506893e-11 2.692239313e-10 1.616297475e-10 2.567342404e-10 7.897671544e-11 1.654843991e-10 1.591822632e-10 1.47206907e-10 4.202150749e-11 1.760418584e-10 8.955774812e-11 2.951070823e-11 1.692504824e-10 2.939604263e-11 2.420989349e-11 5.536686331e-11 9.571419292e-11 1.331267696e-10 1.103453429e-10 3.822919352e-11 6.804048707e-11 1.506053824e-10 2.578050437e-10 7.248377497e-11 9.329580957e-11 1.328192198e-11 3.047572311e-11 1.557127587e-10 6.386891487e-11 7.228169867e-11 7.25225108e-11 1.70941292e-10 1.001684598e-10 3.065849705e-10 7.066374406e-11 1.579031328e-11 1.752295684e-10 1.941024821e-11 2.058938577e-11 8.273181605e-11 1.370656724e-10 7.975920421e-11 1.061132921e-10 1.178397617e-10 2.919331658e-10 1.481331514e-11 1.961827563e-10 9.686320468e-11 6.780257725e-11 8.148936667e-11 1.407463852e-10 2.632513774e-10 5.598557764e-11 1.176506512e-10 3.125105306e-12 2.684533786e-10 6.534016331e-11 1.747205872e-10 1.132000541e-10 1.938729612e-10 8.314335961e-11 3.7260934e-11 1.902386307e-10 1.150539577e-11 1.567865893e-10 6.716235391e-11 1.902256219e-10 1.961834044e-10 4.863353449e-11 3.621826731e-11 1.448507689e-10 7.816575239e-11 1.119570165e-10 5.43996094e-11 1.89499782e-11 9.722196037e-11 9.304113879e-11 1.161556707e-10 3.694776429e-11 1.308336122e-10 4.877481087e-11 2.415023435e-11 1.87942366e-10 1.603551449e-10 8.463302515e-11 1.231706286e-10 2.542363485e-10 4.780364371e-11 4.900640182e-11 3.814471067e-11 9.375196311e-11 6.656304108e-11 1.463553177e-10 1.680778545e-10 2.218691455e-10 3.432255894e-10 4.2125619e-11 1.064947042e-10 9.804186749e-11 5.666206977e-11 2.27076734e-11 1.07784165e-10 1.322109885e-10 1.020534999e-10 +1.617515173e-10 1.083277933e-10 2.718666798e-10 1.068905799e-10 1.093481939e-10 4.897342658e-11 2.959284098e-11 2.680621038e-11 1.120618862e-10 4.86026787e-11 1.64995483e-10 2.396279643e-10 2.231546924e-10 8.544462344e-11 6.846469527e-11 3.970202748e-11 1.21518967e-10 6.120436545e-11 1.06480451e-10 1.048233376e-10 2.834943958e-10 9.548436689e-11 1.966293158e-11 8.915823706e-11 2.524393334e-10 3.60186339e-11 1.094833909e-10 2.613380651e-10 8.989429449e-11 9.490598967e-11 4.631682388e-11 7.82082633e-11 3.673549639e-10 2.167351185e-10 4.401090647e-11 7.86116953e-11 1.389032988e-10 1.500857569e-10 8.565961919e-11 6.696822266e-11 1.610440452e-10 1.002687805e-10 6.631484039e-11 1.064625941e-10 2.056175154e-10 6.110153849e-11 2.76558491e-10 4.451302362e-11 6.388738444e-11 7.073674413e-11 4.346996263e-11 1.214318451e-10 1.170865849e-10 2.743869971e-10 4.078778091e-11 1.128224071e-10 9.593171178e-11 1.694714519e-10 1.06442305e-10 1.976834749e-11 2.592553843e-10 9.148914263e-11 4.447672276e-11 9.566033311e-11 8.026527108e-11 2.359876485e-10 2.101630599e-10 1.678964695e-10 1.124359821e-10 1.650923481e-10 3.700317016e-11 1.261610844e-10 2.060049148e-10 8.638897731e-11 4.055712896e-11 1.753807514e-10 7.831398152e-11 9.820806868e-11 1.662530124e-10 2.411889416e-10 9.845731821e-11 1.462485271e-10 2.325409966e-10 7.101220012e-11 4.561718181e-11 1.190985634e-10 8.591239677e-11 1.314930851e-10 2.902948486e-10 1.574322817e-10 5.158599023e-11 1.149734115e-10 7.781374756e-11 5.268464027e-11 2.073491077e-10 1.538813977e-10 2.185747642e-10 1.715453535e-10 5.735185878e-11 1.345398705e-10 2.100158041e-10 1.369836432e-10 2.792317676e-10 1.419366083e-10 3.605501619e-10 2.04996256e-10 1.595606888e-10 1.599180576e-10 7.797162179e-11 5.286485374e-11 1.900883386e-10 2.037149745e-10 3.507366337e-10 1.251857619e-10 1.046605589e-10 2.162126364e-10 1.7160836e-10 9.357521532e-11 1.245734012e-10 3.689070716e-10 2.078665455e-10 1.253617063e-10 1.063482791e-10 1.578102686e-10 1.832117659e-10 2.760260722e-10 2.979730725e-11 1.623912898e-10 1.698715657e-10 6.144683315e-11 1.158352411e-10 7.190938013e-11 5.567694585e-11 1.082086058e-10 2.318568233e-10 7.691459666e-11 1.957219869e-10 2.328638168e-10 5.066821556e-11 1.794888079e-10 9.584711144e-11 1.458786988e-10 9.844971558e-11 9.751528102e-11 7.981670714e-11 2.403970435e-10 1.159567089e-10 1.760838472e-10 8.455195778e-11 8.775284632e-11 2.946854717e-10 1.62040207e-10 7.444218224e-11 2.531182119e-10 1.980185451e-10 1.373356534e-10 3.172321652e-11 3.280860556e-10 7.411244651e-11 1.073516626e-10 1.977751814e-10 1.014601824e-10 9.435127587e-11 3.247913786e-11 6.962192935e-11 4.776391512e-11 2.220316341e-10 1.901018062e-10 9.563915547e-11 2.94376169e-10 2.607363462e-10 1.517620727e-10 8.901517292e-11 1.113994831e-10 1.198701329e-10 2.298888841e-10 8.457021121e-11 1.196266091e-10 1.56549252e-10 1.834752775e-10 1.867376474e-10 1.941809635e-10 1.00884777e-10 1.140948713e-10 1.941755798e-10 1.325721599e-10 8.370892858e-11 2.023016454e-10 1.01175082e-10 1.412231113e-10 1.598561596e-10 1.667350269e-10 1.979593879e-10 1.502415189e-10 3.102238685e-10 3.188486111e-10 1.159864308e-10 2.868612778e-10 3.194237238e-10 1.938622661e-10 2.15951158e-10 9.316087285e-11 1.693461178e-10 8.715028757e-11 1.67755627e-10 6.029594898e-11 1.500770082e-10 1.302377339e-10 7.53797919e-11 1.956181834e-10 4.301668008e-11 3.779380506e-11 7.121716176e-11 1.595829845e-10 1.166710021e-10 7.171461385e-11 1.259035311e-10 1.494802398e-10 7.869449424e-11 6.999971611e-11 1.497375484e-10 1.732145925e-10 1.609271699e-10 3.849939442e-11 4.066536939e-11 3.151662999e-11 9.401245297e-11 1.243085082e-10 1.17841638e-10 2.473414469e-11 1.736344219e-10 1.755439783e-10 9.835885131e-11 1.311902784e-10 8.852582336e-11 4.069003895e-11 7.175769493e-11 5.237967669e-11 1.011946641e-10 1.386611435e-10 2.172704033e-11 1.807089688e-10 5.969162922e-11 2.062478507e-14 1.539055665e-10 1.200956854e-10 8.682454249e-11 1.731196056e-10 1.029042514e-10 7.601741981e-11 1.30898036e-10 2.731688611e-10 3.869680346e-11 9.311342236e-11 6.075013636e-11 1.324858414e-10 1.420050025e-10 4.48282033e-11 1.216005097e-10 8.839978078e-11 3.254205105e-11 1.073992451e-10 4.524345729e-11 9.813659657e-11 9.630826659e-11 1.825076364e-10 1.844229923e-10 1.74982519e-10 4.713322815e-11 6.875375922e-11 3.791707488e-11 1.735524752e-10 1.345579984e-10 1.256103881e-10 4.804481846e-11 5.727168785e-11 1.307521875e-10 1.62089831e-11 8.895365646e-11 4.21528989e-11 3.773978423e-11 1.721629538e-10 8.970762206e-11 2.270669646e-11 1.093959338e-10 5.732923879e-11 7.44751853e-11 5.162627224e-11 1.156044459e-10 1.427175775e-10 1.735884581e-10 2.819729004e-10 3.360525887e-11 5.472267101e-11 2.623519868e-12 1.309072057e-10 2.633308365e-10 9.833029086e-11 6.978478727e-11 1.38379013e-10 +1.433207596e-10 2.086275781e-10 1.507573656e-10 1.082023252e-10 1.32861172e-10 2.610325089e-11 1.55498741e-10 2.027566703e-10 2.466376286e-10 1.877040566e-10 8.133041262e-11 8.336931706e-13 1.64117721e-10 1.422212137e-10 1.838732678e-10 6.569072762e-11 2.922345201e-11 6.45466071e-11 9.931027169e-11 5.545652384e-11 5.066906765e-11 7.236621461e-11 1.386691677e-10 5.58150337e-11 9.981654271e-11 7.368527735e-11 7.28934841e-11 6.013354562e-11 2.076335578e-10 3.923031142e-10 4.7501567e-11 6.916840698e-11 3.692459962e-10 1.528379566e-10 1.119431646e-10 7.12120876e-11 1.428345497e-10 1.308470398e-10 3.668996422e-10 1.868814853e-10 5.642707995e-11 6.457214424e-11 1.275037785e-11 1.045582303e-10 2.505759588e-10 1.254809454e-10 7.95573539e-11 2.763709539e-10 4.598351724e-11 1.636350853e-10 1.315814416e-10 1.039021729e-10 1.842982416e-10 2.067062374e-10 2.127157007e-11 1.33256453e-10 2.510982846e-10 1.448034175e-10 1.224985564e-10 2.639699692e-10 9.281531775e-11 2.576653421e-10 4.286954902e-16 1.562789982e-10 1.068587059e-10 2.174822221e-10 7.896370064e-11 8.965440665e-11 4.449509301e-11 1.767065251e-10 1.592561303e-10 6.376127998e-11 3.778900088e-11 3.845305085e-11 1.389181339e-10 1.359950061e-10 1.93966565e-10 2.024114844e-10 1.469084237e-10 1.537442946e-10 1.593230302e-10 7.66008791e-11 3.090995997e-11 1.059187226e-10 6.353470197e-11 1.641670354e-10 7.840674195e-11 1.6494481e-10 6.5882957e-11 2.28700719e-10 7.718176751e-11 7.999179793e-11 2.18408837e-10 2.134731549e-11 9.012721603e-11 8.831046868e-11 1.401803365e-10 8.916850936e-11 2.011279263e-10 1.730416216e-10 1.200358232e-10 2.369740718e-10 5.496430299e-11 1.655932992e-10 1.900592065e-10 2.573540774e-10 1.674239693e-10 2.568430028e-10 1.451334585e-10 2.66039891e-10 2.443228326e-10 2.06342028e-10 1.423150142e-10 1.604869381e-10 1.998672939e-10 8.119188169e-11 2.193849816e-10 8.016380683e-11 1.946135855e-10 3.447735111e-10 2.028993598e-10 1.151343602e-10 1.534721178e-10 1.266812735e-10 7.262033276e-11 1.790168037e-10 2.361621705e-10 1.707407633e-10 1.401941811e-10 1.960897662e-10 9.461928858e-11 1.291650813e-10 1.337571203e-10 1.921146147e-10 1.47804817e-10 2.245541651e-10 2.320896395e-10 9.097530027e-11 1.221764676e-10 2.420334119e-10 9.114224865e-11 2.281823395e-10 2.032333519e-10 1.897688519e-10 2.084534791e-10 1.244011109e-10 1.48550375e-10 1.494593357e-10 1.064270328e-10 1.276035801e-10 7.208422297e-11 2.207212506e-10 1.441398244e-10 6.135638929e-11 1.851093568e-10 2.166554303e-10 1.670475409e-10 2.229179088e-10 2.08701692e-10 1.122425371e-10 2.188365724e-10 3.004315962e-10 1.738870229e-10 1.000191822e-10 8.466927418e-11 1.881171112e-10 1.782626832e-10 1.53050781e-10 1.32188827e-10 1.185965988e-10 1.87795134e-10 1.18904429e-10 5.416941535e-11 1.862091427e-10 1.271045917e-10 3.169668365e-10 2.020291587e-10 5.210602274e-11 1.31678202e-10 1.284486129e-10 3.467316696e-10 1.420255544e-10 3.962893946e-11 2.531177635e-10 9.098263824e-11 1.877655107e-10 1.855939483e-10 1.08589534e-10 1.173115853e-10 1.528931874e-10 1.927050652e-10 1.646013615e-10 2.205764003e-10 1.233190038e-10 1.378923936e-10 2.339708965e-10 1.34807041e-10 2.305108927e-10 1.334275655e-10 2.061137847e-10 1.240920274e-10 1.532364466e-10 2.553301672e-10 8.967635588e-11 1.267105544e-10 6.601417374e-11 1.798505101e-10 1.393096459e-10 1.80621354e-10 9.584465698e-11 1.609153783e-10 1.598156066e-10 1.095600239e-10 1.850457313e-10 1.112633685e-10 1.869184849e-11 5.880260941e-11 3.352771753e-11 2.173313265e-10 3.06854802e-13 9.252459975e-11 7.602504565e-11 4.69238382e-11 1.39304117e-10 6.676133891e-11 8.160125837e-11 1.055149042e-10 1.331845896e-10 1.306667483e-10 1.289190554e-10 1.485556632e-10 3.103093871e-10 3.667342217e-11 1.824498919e-10 1.1826303e-10 1.412510459e-10 1.714508441e-10 5.913890595e-11 2.190273747e-11 9.383480495e-11 6.45632546e-11 3.53753872e-10 9.48527666e-11 7.675737356e-11 9.800638353e-11 8.529148582e-11 4.498115829e-11 3.32611663e-10 1.666983305e-10 1.316400456e-10 1.297067211e-11 1.097116287e-10 1.677125539e-10 4.950902964e-11 6.078988514e-11 1.532650774e-10 1.17717001e-10 1.474849097e-10 1.601399968e-10 1.104899236e-10 8.899524302e-11 8.317926759e-11 1.039700381e-10 7.774034453e-11 4.222622885e-11 8.165921485e-11 2.498578683e-10 1.003250189e-10 1.326464731e-10 1.968260947e-10 1.456514663e-11 9.176689451e-11 4.183698745e-11 6.694877694e-11 1.156390883e-10 1.413485919e-10 7.863120657e-11 1.216052886e-10 1.750240369e-10 8.361441821e-11 1.923587344e-10 1.812333029e-10 1.134737987e-11 1.301440777e-10 1.486421521e-10 2.437883899e-11 1.108964053e-10 9.388543824e-11 1.961124334e-10 4.421278413e-11 2.38452e-10 9.718705219e-11 1.493953817e-10 7.006090487e-12 4.976531243e-11 8.582402208e-11 3.109679448e-11 1.756930004e-10 4.315990895e-11 1.547374742e-10 +2.633222503e-10 2.554146503e-10 2.264674761e-10 1.56549097e-10 6.22904475e-11 7.277240527e-11 5.177459233e-11 1.749544956e-10 1.61990442e-10 2.459029602e-11 1.097954906e-10 1.916660457e-10 2.401890536e-10 3.869686887e-11 1.355573851e-10 1.611663969e-10 1.185487967e-10 1.887068558e-14 1.122641515e-10 4.083210818e-11 1.729316887e-10 3.522630414e-11 5.114596435e-11 8.570276889e-11 2.288268155e-10 6.942996381e-12 4.702943388e-11 6.003717758e-11 2.396208472e-11 2.074525591e-10 1.121718076e-10 5.740489518e-11 1.356770303e-10 1.878888335e-10 6.5141733e-11 1.146680092e-10 5.753773318e-11 1.463027589e-10 1.090897235e-10 6.135240693e-11 5.71315267e-11 2.59015734e-11 7.130159328e-11 1.924518741e-10 8.477447932e-11 2.971839467e-10 5.14202803e-11 5.487359795e-11 7.497787272e-11 1.350757159e-10 1.926819326e-10 2.547477616e-10 5.230955205e-11 1.639943683e-10 1.115615971e-10 1.232486498e-10 1.268119586e-10 1.943599699e-11 9.879548705e-11 1.251918774e-10 6.760193715e-11 7.565458784e-11 8.621192027e-11 3.694059627e-11 7.660849506e-11 7.337962251e-11 7.856238839e-11 1.642068161e-10 1.510924039e-10 1.878959622e-10 8.42852964e-11 1.136050331e-10 1.031107743e-10 8.626157447e-14 2.542646334e-10 1.463993604e-10 1.592316902e-10 6.791784436e-11 1.47398872e-10 6.899671778e-11 1.959390958e-10 1.742390454e-10 1.380840206e-10 5.455991698e-11 1.858296932e-10 1.050987545e-10 1.70050292e-10 1.621165177e-11 1.719746429e-10 8.267293068e-11 1.018353531e-10 1.923032148e-10 6.298513941e-11 1.328825756e-10 2.938778509e-10 8.871413006e-11 3.233468e-10 4.911879509e-11 1.135979579e-10 1.292465998e-10 1.561291361e-10 1.73140812e-10 2.471574918e-10 1.783054818e-10 1.418415676e-10 7.9012192e-11 1.884679058e-10 9.652687924e-11 2.343360533e-10 1.236611643e-10 8.076071323e-11 1.355983112e-12 1.493871856e-10 2.278362822e-10 1.470326584e-10 2.758592782e-10 2.438618428e-10 8.864380908e-11 1.146818977e-10 1.45661343e-10 1.557862068e-10 1.626414858e-10 1.968375026e-10 1.504634994e-10 1.110355455e-10 1.085267805e-10 1.017924255e-10 3.76853852e-10 5.210088802e-11 1.563016999e-10 1.183269425e-10 1.052269417e-10 3.578299673e-10 1.459485286e-10 1.922417652e-10 1.08986419e-10 2.062211322e-10 2.589279543e-10 3.851805339e-10 5.765934505e-11 9.194250662e-11 6.419980473e-11 1.538817145e-10 2.372976013e-10 1.554770476e-10 9.647278646e-11 2.426830135e-10 1.531011043e-10 1.829424499e-10 1.586637984e-10 1.496909447e-10 1.126796358e-10 1.181690419e-10 4.461062847e-11 1.279430943e-10 1.22578109e-10 1.50043199e-10 2.864431467e-10 1.681533981e-10 7.631795139e-11 4.346907462e-10 1.071806719e-10 1.030574965e-10 2.633342758e-11 1.651622729e-10 8.897249373e-11 2.589646385e-10 2.267869177e-10 1.929562987e-10 2.563164689e-10 4.328863283e-11 3.737300052e-10 1.361290009e-10 9.546148284e-11 1.612591239e-10 1.390452936e-10 2.720209449e-10 1.38947757e-10 2.081962421e-10 1.064308522e-10 1.084288361e-10 1.753656034e-10 2.141882624e-10 7.547277475e-11 2.736060415e-10 1.334890944e-10 2.231942874e-10 1.676572719e-10 2.105532164e-10 2.42265538e-10 7.554833061e-11 1.957683743e-10 1.907423612e-10 1.42085725e-10 1.283727772e-10 1.783998786e-10 3.616829625e-10 2.576275747e-10 2.288662387e-10 9.599809113e-11 2.061078153e-10 2.183992875e-10 1.731796901e-10 1.444150166e-10 3.629065419e-10 1.753380017e-10 1.85570948e-10 1.184708304e-10 1.537024072e-10 1.154502564e-10 1.283431855e-10 8.583763974e-11 3.797267547e-10 5.462721934e-11 2.573044928e-10 4.169312987e-11 6.271191775e-11 1.340013013e-10 1.308211563e-10 2.52947474e-11 5.701271715e-11 1.738824959e-10 2.943628265e-10 8.820589386e-11 9.716745563e-11 1.462763053e-10 5.156762155e-11 1.765586479e-10 1.307571381e-10 6.545880258e-11 6.655523188e-11 1.40282208e-10 1.488801505e-10 6.501418117e-11 1.430747203e-10 1.312375768e-10 9.042776903e-11 2.340044431e-10 8.668166453e-11 5.138975674e-11 7.817677552e-11 1.585197473e-10 6.04308969e-11 1.592143904e-10 1.117824457e-10 1.408242109e-10 9.828035592e-11 1.514455397e-10 1.388087082e-10 1.8361897e-10 4.493625931e-11 1.327399268e-10 1.966245003e-10 1.056468127e-10 1.052743139e-10 2.772035046e-11 6.590560145e-11 4.082869509e-11 1.146855272e-10 7.368649065e-11 5.459119271e-11 2.031558097e-10 6.865953714e-11 2.729675701e-10 1.178728994e-10 3.64026824e-10 1.191762326e-10 1.163083246e-10 1.479423678e-10 4.337346554e-11 1.219790098e-10 1.127458415e-10 2.394018561e-10 1.601787502e-10 1.850960484e-10 2.015783812e-10 2.382247933e-10 4.93689835e-11 5.341966545e-11 8.58370724e-11 1.302765074e-10 6.987317113e-11 1.777482833e-10 2.037050753e-10 7.630709031e-11 1.120182778e-10 1.675958696e-10 1.420827584e-10 1.302837793e-10 1.171349456e-10 8.031055955e-11 1.00984483e-10 2.890918299e-10 1.802100777e-10 1.790136464e-10 3.707442964e-11 1.193099604e-10 5.127782084e-11 7.248086409e-11 7.107778176e-11 +1.321168026e-11 7.248159153e-11 1.557174115e-10 1.843081793e-10 1.641099542e-10 6.36979021e-11 4.728898558e-11 2.442061612e-10 5.255493578e-11 2.114126328e-10 6.373478953e-11 1.696196461e-10 4.390023524e-11 1.134753394e-10 1.907159278e-10 1.267435934e-10 1.87853765e-10 4.6500297e-11 2.647574635e-10 1.616916287e-10 7.041536934e-11 1.600553157e-10 1.302307959e-10 3.267573022e-10 3.261375359e-11 1.687691742e-10 1.573845183e-10 1.210144391e-10 1.071893785e-10 8.500864127e-11 6.284439944e-11 8.978264966e-11 2.255094029e-10 1.08164033e-10 1.130221247e-10 1.702726674e-10 2.755544975e-10 9.756353489e-11 1.346497735e-10 2.18633742e-10 1.484338515e-10 3.365134687e-10 1.185329254e-10 6.156663615e-11 1.310881104e-10 1.31210191e-10 1.455306373e-10 2.025413492e-10 1.174302749e-10 2.666445927e-10 3.242206547e-10 1.438796388e-10 9.970611694e-11 2.793770233e-10 1.957155892e-10 1.00497658e-10 1.099568836e-10 9.343913305e-11 1.194825048e-10 7.405772513e-11 1.109634469e-10 1.324536595e-10 9.399598483e-11 3.244515747e-11 1.903520175e-10 4.281431166e-11 7.983784242e-11 2.809341303e-10 1.968124794e-10 6.026574301e-11 1.373347307e-10 1.352887707e-10 2.049876296e-10 2.034825463e-10 2.407046507e-10 4.557218125e-11 2.015659331e-10 1.592670015e-11 2.127936104e-10 1.014384551e-10 1.450977651e-10 1.305372e-10 1.121461613e-10 2.611547165e-10 1.162569123e-10 1.257545241e-10 1.557494017e-10 1.30716615e-10 1.021586361e-10 1.668723211e-10 3.96599201e-10 1.898838715e-10 1.993497438e-10 1.126484769e-10 9.231803452e-11 1.736932678e-10 1.202833847e-10 1.689104858e-10 1.338664178e-10 8.502452458e-11 1.493501307e-10 2.942936902e-10 2.342847914e-10 3.090073179e-10 2.068720599e-10 2.173729247e-10 2.751536982e-10 2.157674412e-10 5.84397492e-11 1.408312342e-10 7.11472825e-11 7.087528995e-11 1.495643542e-10 1.012568628e-10 1.701136513e-10 1.481706684e-10 9.201031582e-11 2.240061505e-10 2.307698206e-10 1.636483577e-10 2.292717515e-10 1.84354222e-10 1.341150138e-10 2.663563078e-10 8.682311322e-11 9.163485233e-11 2.874237534e-10 1.620884379e-10 1.646210733e-10 1.305728824e-10 1.038458873e-10 1.301048892e-10 9.73045181e-11 1.880869742e-10 6.827313318e-11 2.321918953e-10 1.158636663e-10 6.64381005e-11 1.119466602e-10 1.61612887e-10 2.683594394e-10 2.022331469e-10 2.149456437e-10 1.902575827e-10 1.650927642e-10 2.37334399e-10 1.762396392e-10 1.222507578e-10 3.006307409e-10 2.03464713e-10 9.5005045e-11 1.464197738e-10 3.298141914e-11 1.357898716e-10 2.448486987e-10 2.202558277e-10 1.066160461e-10 1.423406414e-10 1.648353787e-10 1.295467799e-10 1.924963499e-10 1.111869376e-10 3.07407049e-10 2.351483286e-10 1.288641872e-10 8.972690394e-11 2.236329542e-10 1.494317934e-10 1.256584728e-10 1.470650374e-10 2.143610907e-10 1.611700127e-10 1.235680029e-10 1.792765702e-10 1.339276505e-10 1.104942235e-10 1.472988729e-10 1.860568305e-10 1.112896824e-10 2.26116948e-10 1.443193363e-10 1.185192583e-10 2.076667369e-10 1.21828581e-10 9.047359576e-11 2.243430952e-10 1.523069854e-10 1.572885388e-10 2.152443654e-10 1.130092124e-10 1.138936662e-10 8.818178941e-11 3.286715318e-10 1.598664904e-10 3.187818649e-10 1.666097282e-10 1.29933664e-10 2.099222424e-10 1.509008342e-10 8.6415661e-11 1.796511958e-10 1.939839175e-10 3.148957494e-10 1.458856058e-10 1.255152096e-10 1.720186164e-10 8.447464629e-11 6.849946866e-11 3.488754432e-10 1.782171858e-10 8.44063568e-11 1.32911526e-10 3.916774567e-11 1.412986426e-10 1.505683562e-10 1.525568437e-10 9.024751402e-11 1.162890666e-10 9.551963635e-11 5.2489842e-11 9.540853507e-11 4.377884303e-11 1.252611727e-10 3.894104542e-10 1.776448499e-10 7.12010609e-11 9.55931235e-11 6.679537058e-11 7.197209302e-11 8.629452323e-11 1.484520084e-10 7.648584622e-11 1.401792767e-10 1.321465066e-10 1.969221896e-10 2.177255226e-10 1.033875353e-10 1.352192394e-10 3.304664102e-11 2.264732784e-11 9.797406728e-11 1.439933658e-10 2.20504566e-10 1.514679962e-10 1.628413882e-10 6.495559273e-11 8.194229831e-11 1.136726803e-10 5.891228351e-11 7.176048563e-11 5.769794979e-11 1.360680066e-10 1.06717007e-10 8.0065362e-11 1.120486673e-10 1.742878942e-10 1.694674502e-10 4.931000917e-11 1.747307023e-10 7.758646859e-11 5.827715922e-11 6.41906756e-11 1.214446992e-10 1.116001371e-10 7.100963629e-11 1.652245716e-10 6.116859939e-11 1.861554691e-10 8.107177054e-11 1.389058468e-10 1.919716494e-10 1.220184191e-10 1.348390639e-10 1.855144535e-10 1.944884626e-11 2.005646077e-10 5.348844434e-11 2.380290397e-10 1.570317964e-10 5.772778894e-11 1.302029399e-10 1.271097981e-10 1.936571525e-10 1.617439728e-10 5.028350105e-11 2.338477978e-10 6.390137951e-11 2.002608903e-10 1.241256988e-10 5.381015596e-11 1.506428816e-10 3.814275152e-11 1.285117853e-10 9.21019298e-11 7.162163435e-11 1.107548862e-10 1.854974178e-10 5.645255589e-11 1.253731251e-10 4.126071446e-11 +1.64632631e-10 1.416547094e-10 7.621953479e-11 2.880581635e-10 2.376876719e-10 1.636622162e-10 6.301402579e-11 1.523708748e-10 1.689568857e-10 1.73416985e-10 1.10978262e-10 5.867092944e-11 3.276915143e-11 1.049295822e-10 3.05170082e-10 1.073371256e-10 1.924330764e-10 1.874670158e-11 9.940205543e-11 1.732912519e-10 5.957297521e-11 8.713592278e-11 1.127032782e-10 1.377071115e-10 5.203164781e-11 1.111043584e-10 1.414710193e-10 1.069669687e-10 5.47268682e-11 1.196482071e-10 6.142284286e-11 2.167842884e-10 5.14903254e-11 5.954141354e-11 1.826279901e-10 9.406558875e-11 9.775731494e-11 9.937339071e-11 5.810792696e-11 9.386849355e-11 6.163967637e-11 4.265383309e-11 1.087361316e-10 9.172895212e-11 2.136764808e-10 1.280963606e-10 1.006485747e-10 6.910644418e-11 6.328854418e-11 1.186157852e-10 1.077337585e-10 1.39351423e-10 1.353034438e-10 1.081859054e-10 2.846153564e-10 2.115564639e-10 1.85776163e-10 1.157355328e-10 1.458426174e-10 1.145838574e-10 1.485787021e-10 4.065447114e-11 1.425065366e-10 2.022845556e-10 5.648966766e-11 2.414427382e-11 1.843603984e-10 7.165910989e-11 1.073321163e-10 9.218405401e-11 2.469746906e-11 7.349413294e-11 1.482358476e-10 1.677287922e-10 7.410709354e-11 1.761419379e-10 3.324407074e-11 5.467990738e-11 5.385880276e-11 9.444684502e-11 1.181380509e-10 9.774990752e-11 1.30038411e-10 7.968316028e-11 1.545574996e-10 4.649043869e-11 6.524474364e-11 8.524680928e-11 1.310549377e-10 1.750690174e-10 2.26997142e-10 9.312920942e-11 5.158773601e-11 1.992497105e-10 2.33013793e-10 3.658994927e-11 1.663145846e-10 1.434439713e-10 2.765347109e-10 1.95696515e-10 1.222661262e-10 1.248110595e-10 1.961498981e-10 1.375107412e-10 6.816556866e-11 2.012776057e-10 1.529730852e-10 1.325679649e-10 1.820425807e-10 1.317528817e-10 1.096438647e-10 1.188847363e-10 1.090393914e-10 6.164158328e-11 1.634861816e-10 1.008176346e-11 1.753880726e-10 2.580403528e-10 1.637989199e-10 2.237132371e-10 3.42581202e-10 3.58279645e-10 1.225991848e-10 2.024917852e-10 2.202949355e-10 2.80334243e-10 3.006981438e-10 7.255671901e-11 2.393201375e-10 1.990680023e-10 1.077562239e-10 7.814288658e-11 2.888187952e-10 1.133234961e-10 8.661145692e-11 2.777424223e-10 1.991365714e-10 1.06279299e-10 1.588735896e-10 1.685852676e-10 1.526193431e-10 3.632702859e-10 1.601448602e-10 1.20618485e-10 1.412503491e-10 2.464933337e-10 1.012869958e-10 1.449855485e-10 1.643373329e-10 1.982811847e-10 2.265701616e-10 7.597104412e-11 2.911821581e-10 2.661591971e-10 1.658019646e-10 7.504997331e-11 1.902150494e-10 1.571181838e-10 6.4149869e-11 9.354210238e-11 2.406596648e-10 1.331805719e-10 1.625301723e-10 1.2816359e-10 3.007962238e-10 1.950094208e-10 1.002210708e-10 1.85715049e-10 1.597691322e-10 1.914889826e-10 1.297498205e-10 1.986150131e-10 1.589804536e-10 1.518869072e-10 2.140294056e-10 1.104488784e-10 4.640424942e-11 1.618220943e-10 1.756517154e-10 1.91777323e-10 2.587177066e-10 1.838392397e-10 1.982458299e-10 2.710167839e-10 6.329925575e-11 3.681533523e-11 1.824130117e-10 1.629547116e-10 1.853845599e-10 9.604155279e-11 2.364992137e-10 1.056098724e-10 1.611286752e-10 3.251475087e-10 1.29545003e-10 2.592236242e-10 3.596095302e-10 2.618997414e-10 1.125799559e-10 2.091010129e-10 2.128808048e-10 9.486719626e-11 2.215327256e-10 2.053084219e-10 2.080094282e-10 2.422069283e-10 8.053063996e-11 1.93248107e-10 1.610281945e-10 1.986205911e-10 2.549803161e-10 2.090589092e-10 1.840575348e-10 2.442122508e-10 1.50039554e-10 9.175140778e-11 1.192206463e-10 1.92034204e-10 9.807698686e-15 9.147642726e-11 8.525805369e-11 3.255359558e-10 1.718324316e-10 5.929836919e-11 7.382026992e-11 9.753911554e-11 1.041864088e-10 8.561618769e-11 6.745041657e-11 9.743541865e-11 2.074994702e-10 1.690702341e-10 7.189659808e-11 6.15678152e-11 9.316243012e-11 4.69296867e-11 5.042562444e-11 2.504445021e-10 4.02817616e-11 1.004899882e-10 7.661229134e-11 6.572421721e-11 2.717283223e-10 2.888176517e-11 1.088549103e-10 1.172423952e-10 5.342892896e-11 1.376868905e-10 1.403885151e-10 2.077319785e-10 7.255516568e-11 4.695613278e-11 9.646664608e-11 1.149300331e-10 7.507692612e-11 1.234946534e-10 3.807327379e-11 1.058030578e-10 1.202340328e-10 1.676457935e-10 1.966791953e-10 1.198470767e-10 2.148617927e-10 9.059461953e-11 8.466156834e-11 6.013327201e-11 9.04449394e-11 6.975500385e-11 1.4125472e-10 1.458129462e-10 7.791781067e-11 1.968528614e-10 1.129003029e-10 1.074327116e-10 9.940623223e-11 7.507495007e-11 1.499795165e-10 5.668051672e-11 5.9191814e-11 1.360535653e-10 1.17139288e-10 1.292274471e-10 1.147462605e-10 6.189875819e-11 1.322730574e-10 9.086193803e-11 1.182586176e-10 8.760421918e-11 2.673828915e-10 1.085487676e-10 4.100043782e-11 1.05127363e-10 1.629704843e-10 1.417385381e-10 1.030818511e-10 3.374000587e-11 1.048967162e-10 3.016121223e-10 7.73712062e-11 1.423982482e-10 +4.777776611e-11 3.351173575e-10 6.602221181e-11 2.112493342e-11 1.18060458e-10 4.301640861e-11 9.2766502e-11 7.624504231e-11 1.898783107e-10 8.104229815e-11 1.884815042e-10 6.237609603e-11 1.705644703e-10 2.419059706e-11 6.957112317e-11 5.070985894e-11 6.85125793e-11 5.599706389e-11 8.560151653e-11 2.011735128e-10 1.68325004e-10 6.456282873e-11 9.838109731e-11 1.979133161e-10 1.561162678e-10 9.16193924e-11 8.446285408e-11 1.568828427e-10 6.515293765e-11 1.883291194e-10 5.738987857e-11 2.534599427e-10 1.092095795e-10 1.376141285e-10 1.093701542e-10 1.775909414e-10 6.253213789e-11 1.764664742e-10 1.301290623e-10 1.796105779e-10 4.940863479e-11 2.379627854e-10 1.074483858e-10 2.286956408e-10 1.071950835e-10 6.846498583e-11 1.557994995e-10 6.942476504e-11 1.225909572e-10 1.39065318e-10 6.800363769e-11 1.412556684e-10 1.848221235e-10 1.774191993e-10 8.065365189e-11 2.603418072e-10 2.163338793e-10 1.243796532e-10 1.809768822e-10 3.248146025e-11 1.014120203e-10 7.05885125e-11 1.299100974e-10 7.894060025e-11 7.704496324e-11 1.343188021e-10 8.338534258e-11 1.577593388e-10 2.359207676e-10 8.528931438e-11 1.149434833e-10 4.165465605e-11 1.314718664e-10 6.588721612e-11 1.091727363e-10 8.406206225e-11 1.176091388e-10 1.404827863e-10 2.11721512e-10 1.331802348e-10 2.197342243e-10 1.495941018e-10 1.383290197e-10 1.254740844e-10 5.117317354e-11 8.653885296e-11 7.309591343e-11 1.968847147e-10 1.950624076e-10 1.914350776e-10 1.465694697e-10 1.472818557e-10 1.06956456e-10 3.252569246e-10 1.379233292e-10 1.540220015e-10 1.529242945e-10 2.05511731e-10 2.128857191e-10 1.447019092e-10 1.997404277e-10 2.216098772e-10 2.093068937e-10 6.693295762e-11 9.719918572e-11 5.584011037e-11 2.993308105e-10 1.635642662e-10 1.101348635e-10 2.840795709e-10 1.822133351e-10 1.82797138e-10 1.823066277e-10 2.28452572e-10 2.019143203e-10 1.955151949e-10 2.218623355e-10 1.75193225e-10 2.393669494e-10 1.824056693e-10 1.968942873e-10 5.891193636e-11 2.166726074e-10 3.472504479e-10 1.895530631e-10 5.231038604e-11 1.776802773e-10 1.707030985e-10 1.248449615e-10 2.331665146e-10 1.884383339e-10 5.747779559e-11 2.343257214e-10 1.43253921e-10 1.717047788e-10 1.017181683e-10 1.458871971e-10 1.656313638e-10 1.142036605e-10 1.811455981e-10 6.795214767e-11 1.43815015e-10 1.547013611e-10 1.018379911e-10 6.924551415e-11 1.435779716e-10 2.273346325e-10 2.157526527e-10 2.506538672e-10 5.207623628e-11 3.29002189e-10 1.862443463e-10 1.854891476e-10 1.371337973e-10 1.913501007e-10 2.095960836e-10 1.175377555e-10 1.602879492e-10 8.317239426e-11 2.56921387e-10 2.623697601e-10 1.346496577e-10 2.168334398e-10 9.811135555e-11 3.939943953e-10 3.330728373e-10 1.767430145e-10 1.760365653e-10 2.180524801e-10 2.227199035e-10 2.12625624e-10 2.585641688e-10 3.328498382e-10 1.770383038e-10 1.250074682e-10 1.928703851e-10 2.044986565e-10 1.798282341e-10 2.993580692e-10 1.871253488e-10 7.945357745e-11 2.782634346e-10 1.188050548e-10 1.917265278e-10 1.471748267e-10 8.452551491e-11 2.148064764e-10 1.259229199e-10 1.692540216e-10 1.942791043e-10 1.661619373e-10 2.040855735e-10 3.677325186e-10 2.425451363e-10 8.400037296e-11 2.267820628e-10 1.484740776e-10 1.489134994e-10 1.5583503e-10 3.084254771e-10 1.487036349e-10 1.8528255e-10 1.384661225e-10 7.038629458e-11 2.752974622e-10 1.588974379e-10 2.608843147e-10 1.031219746e-10 1.513062124e-10 1.254513148e-10 2.826483535e-10 2.622526571e-11 1.657348151e-10 1.330264894e-10 2.120317855e-10 1.127460162e-10 1.393798574e-10 4.713880697e-11 2.029692938e-10 2.400493886e-11 4.946547517e-11 1.890188134e-10 2.508026798e-10 1.403425685e-10 1.318264546e-10 7.637119692e-11 1.106193295e-10 3.585900434e-11 1.60030267e-10 1.369578766e-10 2.196110869e-10 6.313971362e-11 4.445224036e-11 1.602962824e-10 1.142898496e-10 3.641686794e-11 2.114263891e-10 1.476802972e-10 1.113482498e-10 1.352290764e-10 7.161360912e-11 2.706280475e-10 1.402402296e-10 1.866220825e-10 2.088463662e-10 2.405260771e-10 9.464021721e-11 1.133985734e-10 3.748801408e-11 9.178921655e-11 1.987158364e-10 8.872486661e-11 2.033981289e-11 4.307614859e-11 1.364357458e-10 1.673234012e-10 5.142011188e-11 1.207535201e-10 1.447965293e-10 7.643359309e-11 1.533942321e-10 1.332822053e-10 2.695007331e-10 2.86766674e-11 1.434858105e-10 1.306675904e-10 1.417252537e-10 1.666567137e-10 3.676501532e-11 1.967771395e-10 2.106603085e-10 1.364399714e-10 1.085311806e-10 6.079743549e-11 2.56454258e-10 9.047252938e-11 3.201961389e-11 1.901339684e-10 2.535656784e-10 1.368678982e-10 1.939106786e-10 1.349855616e-10 2.015230593e-10 9.506581452e-11 8.840829171e-11 2.247612349e-10 1.129063077e-11 1.559444056e-10 1.096042061e-10 4.010493825e-11 5.197846734e-11 2.379134571e-10 1.396530244e-10 7.058022798e-11 1.466276597e-10 2.33758034e-10 3.428458068e-11 1.517799809e-10 1.867389577e-10 3.080345312e-11 +6.131430357e-11 2.887989013e-10 1.095585528e-10 7.23737598e-11 5.53337746e-11 6.6596279e-11 2.44036765e-10 3.768034933e-11 1.133661437e-10 5.800645545e-11 1.256794903e-10 1.320614061e-10 9.398919368e-11 1.542851547e-10 4.187423755e-11 8.420974556e-11 2.454755242e-10 4.597323766e-11 6.112522423e-11 1.887238392e-10 1.476668486e-10 1.47871846e-10 9.929146228e-11 8.791002889e-11 1.296339941e-10 5.896833593e-11 2.117710223e-10 1.418774725e-10 2.085205261e-10 2.075392944e-10 1.850056514e-10 1.573428761e-10 1.539462832e-10 1.550570731e-10 1.507009101e-10 2.006055732e-10 2.479733691e-10 9.520779289e-11 6.216853835e-11 9.810148911e-11 2.866538502e-10 1.939264443e-10 1.904245759e-10 2.393979835e-10 1.340919562e-10 7.545527112e-11 2.688098181e-10 1.611353328e-10 2.157424749e-10 9.874015776e-11 1.203300747e-10 1.335326296e-10 2.868997129e-10 1.305828847e-10 6.069638257e-11 1.773446206e-10 1.246927553e-10 9.754886257e-11 1.822363191e-10 1.486624034e-10 1.51661205e-10 2.074486e-10 1.202096453e-10 1.937749352e-10 9.502466006e-11 1.552643916e-10 1.249627064e-10 5.961031599e-11 9.330748691e-11 1.808077177e-10 1.260763839e-10 1.395142096e-10 8.590374088e-11 2.021396499e-10 2.681147772e-10 5.086251906e-11 1.817060577e-10 1.153170848e-10 1.114024043e-10 1.299457654e-10 2.296972992e-10 1.281724808e-10 1.24538362e-10 1.471569528e-10 5.579421397e-11 1.277007249e-10 2.189597067e-10 1.556395779e-10 1.898975673e-10 5.084551026e-11 9.523487925e-11 1.279697434e-10 1.326994958e-10 1.722917654e-10 2.8091027e-10 1.230650956e-10 2.566178562e-10 1.768408587e-10 2.298426977e-10 2.31405301e-10 2.836365724e-10 2.742033444e-10 1.005295963e-10 1.671654004e-10 3.536201506e-10 8.897164041e-11 2.456880151e-10 2.511941956e-10 1.476100938e-10 2.347284661e-10 8.85309343e-11 2.056620912e-10 1.323405587e-10 1.550481748e-10 1.363693204e-10 2.277954575e-10 2.249181896e-10 1.368231539e-10 7.714150319e-11 1.073013911e-10 1.753455025e-10 1.827349028e-10 2.170528703e-10 3.640612516e-10 1.012649452e-10 3.070946341e-16 1.183973927e-10 2.290437399e-10 1.466720787e-10 2.519262246e-10 2.435026862e-10 1.129262352e-10 8.663614979e-11 2.821206211e-10 2.307520589e-10 1.15149173e-10 2.120165626e-10 1.16214777e-10 4.922507025e-11 1.395841373e-10 2.529454064e-10 1.661217375e-10 9.293025722e-11 1.688710365e-10 1.191994698e-10 1.053976973e-10 1.52865568e-10 2.123109082e-10 1.633060254e-10 2.084365943e-10 1.150331979e-10 1.229194727e-10 2.322858636e-10 2.806105589e-10 1.543862674e-10 2.317258025e-10 1.247729903e-10 1.762743864e-10 2.942090007e-10 9.388396279e-11 2.160324893e-10 5.862344366e-11 3.072467383e-11 3.128857671e-11 2.405646488e-10 1.541570996e-10 1.359616928e-10 7.184704708e-11 2.775254716e-10 1.0696047e-10 1.21379048e-10 9.582315016e-11 3.171565962e-10 1.292356723e-10 3.155609727e-10 1.365412848e-10 2.568459611e-10 2.138775996e-10 1.094774386e-10 1.56480802e-10 1.427902246e-10 1.917037334e-10 1.209194068e-10 1.741640075e-10 9.270162633e-11 1.615529152e-10 8.104295917e-11 3.19513597e-10 2.049559414e-10 2.874993895e-10 1.103072952e-10 2.908268206e-10 1.167098533e-10 2.891668908e-10 1.02988135e-10 1.588321852e-10 2.693025919e-10 2.482410688e-10 1.743995664e-10 1.611659952e-10 1.932105692e-10 1.934609079e-10 1.929077299e-10 2.003666499e-10 1.228028282e-10 1.259235702e-10 1.155410282e-10 2.124448477e-10 3.200082357e-10 8.410192928e-11 8.464033031e-11 1.430780639e-10 9.770631023e-11 1.738016309e-10 1.755250882e-10 1.064192562e-10 1.649170519e-10 1.309809425e-10 1.367658863e-10 2.599967148e-10 1.971853061e-10 4.008630669e-11 5.320106435e-11 7.195097665e-11 6.719971224e-11 2.703181671e-11 1.247917561e-10 1.824734829e-10 1.227564103e-10 1.600710013e-10 1.077751562e-10 1.147412499e-10 2.551270951e-10 9.329917487e-11 4.704409127e-11 5.301488853e-11 3.449421449e-11 5.29693486e-11 2.141789515e-10 8.712381201e-11 2.171873659e-10 8.219274336e-11 3.983955991e-10 7.991554247e-11 2.170003937e-10 9.089804715e-11 2.523363067e-10 2.773771228e-11 1.060583945e-10 1.359628221e-10 1.195915413e-10 1.629349896e-10 3.531537556e-11 2.171594306e-10 1.493414755e-10 9.897275351e-11 1.328872426e-10 1.787727379e-10 1.646738567e-10 1.381889752e-10 1.449865073e-10 1.431811096e-10 1.289109423e-10 9.330884883e-11 2.266143078e-10 7.157315806e-11 2.47344692e-10 8.416898057e-11 2.106170334e-10 6.883426402e-11 2.219957551e-10 1.64294213e-10 3.233171042e-10 7.784678875e-11 1.167606173e-10 3.895797861e-10 1.28066489e-10 1.502476053e-10 1.27479518e-10 9.089031006e-11 7.873788265e-11 4.117698562e-11 1.453652035e-10 1.101360069e-10 4.785158466e-11 1.29286856e-10 5.029229918e-11 1.270818947e-10 1.595310505e-10 3.450992271e-12 1.114602154e-10 1.327396772e-10 1.040244416e-10 6.797825768e-11 6.510916184e-11 1.267530294e-10 9.218477694e-11 2.130655278e-11 6.556843385e-11 7.166133035e-11 +1.447689582e-10 7.951150846e-11 6.412897242e-11 6.357536016e-11 1.222692939e-10 8.077560693e-11 1.442031807e-10 8.6218774e-11 1.541178605e-10 7.438773352e-11 2.370149225e-10 7.817031488e-11 1.710709801e-10 1.524173143e-10 2.118938888e-10 5.275884754e-11 1.561645425e-11 2.298419364e-10 1.405581858e-10 9.62117203e-11 8.095402759e-11 1.21406e-10 6.193847151e-11 6.142465588e-11 9.970175611e-11 1.234364503e-10 1.615191193e-10 1.947132622e-10 1.368144781e-10 1.580625941e-10 1.004097755e-10 9.086005908e-11 2.058609908e-10 3.96922478e-11 6.489104417e-11 1.91636707e-10 9.436244446e-11 7.059840058e-11 1.218240773e-10 8.257303181e-11 1.640429362e-10 1.355781619e-10 1.298371299e-10 1.35563518e-10 9.41201881e-11 7.532659075e-11 5.39594873e-11 2.070058712e-10 1.720953917e-10 2.602436474e-10 9.944060684e-11 1.714979504e-10 1.05631638e-10 3.089366274e-10 1.236393557e-10 2.501994126e-10 1.169032748e-10 3.358029826e-10 1.164901944e-10 1.145800768e-10 8.556502944e-11 1.010334167e-10 6.095832049e-11 8.170181994e-11 1.635168361e-10 5.68674672e-11 2.871373099e-10 7.029918423e-11 1.509369041e-10 7.26418312e-11 8.155356201e-11 2.267768407e-10 1.146529847e-10 9.426922902e-11 1.6564722e-10 1.180598855e-10 1.199752695e-10 9.315944388e-11 8.068469548e-11 7.431118653e-11 2.114260527e-10 1.26650904e-10 1.075005904e-10 1.452381732e-10 2.605375989e-10 1.147327341e-10 9.534912729e-11 1.521055245e-10 1.392859027e-10 1.899832434e-10 1.60897145e-10 1.060578557e-10 1.358796885e-10 4.270795548e-10 1.746308141e-10 2.236123152e-10 1.63434345e-10 1.27540125e-10 2.981273503e-10 3.219152989e-10 1.507252665e-10 2.330693583e-10 2.396781628e-10 2.511232147e-10 2.221675213e-10 1.580314672e-10 1.922391167e-10 3.806273571e-10 2.083811374e-10 2.243076471e-10 2.293531867e-10 2.476600037e-10 2.113670274e-10 1.370046161e-10 1.191023724e-10 3.249844138e-10 1.37431837e-10 1.398444715e-10 1.586343769e-10 1.780699557e-10 2.004023941e-10 1.464628047e-10 2.288206411e-11 1.001843603e-10 1.658774832e-10 2.884814304e-10 2.081977369e-10 3.648320515e-10 2.311178617e-10 1.379923735e-10 3.116974937e-10 1.436185911e-10 2.462304068e-10 2.426622378e-10 1.496801656e-10 1.425702455e-10 1.746525748e-10 1.520917299e-10 2.519483477e-10 1.868560522e-10 1.657672349e-10 9.284648678e-11 1.658474462e-10 1.148317962e-10 2.701665589e-10 1.841447149e-10 1.035419824e-10 1.251470386e-10 1.466249951e-10 2.986678095e-10 9.173670136e-11 1.265204112e-10 1.087958556e-10 1.614759884e-10 1.83721371e-10 2.226023554e-10 1.32563534e-10 1.058635955e-10 1.575577713e-10 4.675791383e-11 2.027239655e-10 1.004730132e-10 1.623073498e-10 5.893270861e-11 1.662800128e-10 1.654884833e-10 2.007194716e-10 2.540371015e-10 1.646352272e-10 2.738321956e-10 1.983125536e-10 3.10650551e-10 2.18611944e-10 1.596857415e-10 1.367833279e-10 1.30436256e-10 1.392766084e-10 2.885214871e-10 2.061908656e-10 1.897506477e-10 1.191654489e-10 1.701562123e-10 1.820684688e-10 2.128023149e-10 1.562378156e-10 1.63086364e-10 1.95081246e-10 1.54070494e-10 1.30770976e-10 3.798670635e-10 2.425282569e-10 1.144580755e-10 2.184245531e-10 3.404395901e-10 1.390719454e-10 1.490737461e-10 3.710658782e-10 2.817675774e-10 1.768298701e-10 2.010234463e-10 2.800873489e-10 3.057157556e-10 3.652171048e-11 1.267729215e-10 2.295995225e-10 1.482324678e-10 7.229809774e-11 2.36568288e-10 2.268982508e-10 1.399385725e-10 2.389132088e-10 2.604244692e-10 2.377069214e-10 1.76097003e-10 1.988631771e-10 1.186160805e-10 5.768157837e-11 1.3639414e-10 6.418945779e-11 1.583961797e-10 5.020041494e-11 5.642062382e-11 9.662007596e-11 1.628854045e-10 1.734121388e-10 9.039214186e-11 2.515210258e-11 5.651409993e-11 1.868963734e-10 2.16451895e-10 1.639479539e-10 8.49702932e-11 1.584581635e-10 1.794473714e-10 1.014607803e-10 1.016204293e-10 5.173640375e-11 1.129843816e-10 1.226793126e-10 2.538644249e-10 2.521448328e-10 5.645259349e-11 1.501084673e-10 1.37403356e-10 2.302286061e-10 5.421261801e-11 1.292098675e-10 1.009502389e-10 2.008326027e-10 1.559398962e-10 6.309792127e-11 1.392358947e-10 2.636663366e-10 1.308726604e-10 1.006842325e-10 8.383499827e-11 7.789705528e-11 2.342704333e-10 7.035745239e-11 1.819357962e-10 5.904820951e-11 5.948842011e-11 1.979880159e-10 1.3947066e-10 2.741615297e-10 1.731446032e-10 1.818880181e-10 8.675481864e-11 1.611257988e-10 8.383421113e-11 4.140608288e-11 8.66948679e-11 1.711419775e-10 2.072067364e-10 8.364069762e-11 5.856276551e-11 7.983979615e-11 1.108978989e-10 2.918288298e-10 1.064618231e-10 1.026655744e-10 1.171879301e-10 7.324099297e-11 1.681038781e-10 4.372398137e-11 5.246446008e-11 1.253676365e-10 5.693199095e-11 1.154161241e-10 1.27036575e-10 6.712538383e-11 1.805106156e-10 1.696604867e-10 1.176516397e-10 2.168847708e-10 6.646300563e-11 9.954482041e-11 2.367697887e-10 1.055916442e-10 1.349995854e-10 +6.475047345e-11 8.870708075e-11 2.009840906e-10 2.984827503e-11 2.898286836e-10 9.482993428e-11 5.955795292e-11 6.273006231e-11 6.972500338e-11 1.665292426e-10 6.996307382e-11 3.547266546e-11 9.8676494e-11 1.133655879e-10 1.57023919e-10 1.474857601e-10 3.340928093e-11 7.068250603e-11 2.19303695e-11 9.270272149e-11 1.731349655e-10 8.963383107e-11 5.827747315e-11 4.75431688e-11 2.216550965e-10 5.25074872e-11 7.304982019e-11 1.443200234e-10 9.328475882e-11 6.006857691e-11 1.966922369e-10 2.201360728e-10 2.24951084e-10 1.278390705e-10 1.310084857e-10 2.27203237e-10 1.011863408e-10 6.727588371e-11 1.089671887e-10 2.569105436e-10 3.719339227e-10 2.774061601e-10 8.892459933e-11 2.028402202e-10 1.706810317e-10 1.858158418e-10 9.501593374e-11 9.809997569e-11 1.975436933e-10 2.131952844e-10 1.522145453e-10 6.628643509e-11 1.165134232e-10 2.218212266e-10 1.457209956e-10 7.689922335e-11 1.244719265e-10 1.933108248e-10 1.139300116e-10 2.383145932e-11 3.010842687e-10 9.605899074e-11 3.355760216e-10 8.763414577e-11 2.622008228e-11 3.779300434e-10 1.104273719e-10 2.276742965e-11 4.157268924e-11 8.16114955e-11 7.487159287e-11 9.290901178e-11 1.096108382e-10 1.357598553e-10 1.00405243e-10 5.80798816e-11 1.318634293e-10 1.51472057e-10 1.393633861e-10 2.474769905e-10 1.010394257e-10 6.138649507e-12 1.349635499e-10 2.171870751e-10 1.618062641e-10 1.038532598e-10 9.291704327e-11 2.19218985e-10 7.921211416e-11 1.336311545e-10 2.690895158e-10 1.297847047e-10 1.57723413e-10 5.833801258e-11 2.244493874e-10 1.908162886e-10 1.245614833e-10 1.173738022e-10 2.542781022e-10 8.083921594e-11 2.03369622e-10 1.433461682e-10 5.535719056e-11 2.564450779e-10 2.322742321e-10 1.704834384e-10 1.101207688e-10 1.235637599e-10 1.471424047e-10 2.847773687e-10 1.437875241e-10 1.731496256e-10 1.659623376e-10 2.670822793e-10 1.944355386e-10 1.887357157e-10 1.076628772e-10 2.42568334e-10 2.05443822e-10 1.845508933e-10 2.063120576e-10 1.469882523e-10 4.391550916e-10 1.120667996e-10 1.902700227e-10 1.838750384e-10 3.553104811e-10 1.322686489e-10 2.165577081e-10 1.004149434e-10 5.856348696e-11 1.095485494e-10 2.510653346e-10 1.194469447e-10 2.17249774e-10 2.011319013e-10 1.52468944e-10 1.20463112e-10 2.551223989e-10 1.688727467e-10 1.135013927e-10 2.188483834e-10 2.425504729e-10 2.593639854e-10 2.110349678e-10 9.691349497e-11 4.015813482e-10 8.579032453e-12 2.078972187e-10 1.349108793e-10 2.132501965e-10 8.140368885e-11 2.589547329e-10 1.436635345e-10 1.034478524e-10 6.428044724e-11 1.552763618e-10 2.083138636e-10 9.195499465e-11 1.894236725e-10 2.027275867e-10 9.002716828e-11 1.729037e-10 1.709075013e-10 1.774358511e-10 1.340359455e-10 2.47008919e-10 3.489019665e-10 1.296483256e-10 1.984893474e-10 1.000221772e-10 2.530710037e-10 2.090635323e-10 1.77190991e-10 1.515663251e-10 3.232789343e-10 2.867560547e-10 1.496260261e-10 1.183692861e-10 2.41097112e-10 2.219420884e-10 3.712390565e-10 3.882359184e-10 6.402906232e-11 8.722730174e-11 8.22846001e-11 1.848200671e-10 1.278829381e-10 2.00205395e-10 1.629068457e-10 8.292521082e-11 1.592124861e-10 2.120006641e-10 1.823177228e-10 1.607023023e-10 4.363149342e-10 1.195180801e-10 4.128600544e-10 2.680511897e-10 1.486054516e-10 2.967965655e-10 1.269509507e-10 1.849508388e-10 2.130965937e-10 2.397084526e-10 3.691648077e-10 2.816370368e-10 8.905553563e-11 1.533356098e-10 1.923574823e-10 2.013635455e-10 1.231334275e-10 1.563507191e-10 1.245656992e-10 1.62374154e-10 1.095761362e-10 1.259160866e-10 6.741420465e-11 2.194572622e-10 7.393334023e-11 5.815148885e-11 7.228605517e-11 1.90488552e-10 2.246940572e-10 1.188599993e-10 2.218254396e-10 1.342808943e-10 1.889484616e-10 1.222288209e-10 1.746700587e-10 1.687656257e-10 1.194268117e-10 1.473598741e-10 2.0002178e-10 3.192830077e-10 9.953345586e-11 9.079965001e-11 1.752853029e-10 1.537890786e-10 1.882194717e-10 4.24438876e-11 1.188970019e-10 1.323046069e-10 1.836545534e-10 1.835214333e-10 1.836939705e-10 1.887439582e-10 1.651359727e-10 1.020101625e-10 1.435104307e-10 2.307309248e-10 7.21790144e-11 1.077363513e-10 1.956082817e-10 1.179935187e-10 1.717683496e-10 1.533166629e-10 1.418921929e-10 2.297620921e-10 3.483201854e-10 1.063296779e-10 1.073648765e-10 6.096998237e-11 1.663703306e-10 1.439620839e-10 3.624420976e-10 8.54096397e-11 2.289433354e-10 7.888922324e-11 2.049360924e-10 1.091992461e-10 1.080425106e-10 2.267118668e-10 1.271701488e-10 8.226127453e-11 1.834682139e-10 2.163562066e-10 1.999279779e-10 1.451468359e-10 7.479124152e-11 1.670568293e-10 5.783781547e-11 1.214744242e-10 9.029525636e-11 2.301474078e-10 2.314992899e-10 9.721672526e-11 7.660199691e-11 8.155668345e-11 1.129425799e-10 8.997658698e-11 9.329643266e-11 1.319657508e-10 5.743516569e-11 1.621291598e-10 6.862018145e-11 7.252951181e-11 1.191960307e-10 2.66333177e-10 1.986008267e-10 +8.039933214e-11 3.212874092e-11 2.348192135e-10 2.262799969e-10 1.35034895e-10 1.675468395e-11 1.024474174e-10 2.021986307e-10 1.192095789e-10 5.334725557e-11 1.140054359e-10 2.382009226e-10 4.892934969e-11 1.453866269e-10 5.825045821e-11 1.462581308e-10 1.842016183e-10 2.07931299e-10 5.57929646e-11 3.351653581e-11 8.600792089e-11 1.656725288e-10 1.027520885e-10 1.811010162e-10 1.748509429e-10 3.002813054e-10 9.073879977e-11 1.075289768e-10 1.417893221e-10 1.849127629e-10 2.679730073e-10 1.266173853e-10 6.240715064e-11 1.694705138e-10 1.346227061e-10 1.476862138e-10 2.119235364e-10 1.017306966e-10 2.892741371e-10 1.279840871e-10 5.139195344e-11 8.115860568e-11 1.829099531e-10 7.59069661e-11 2.84240978e-10 9.186490607e-11 2.187736399e-10 2.344242363e-10 6.705702927e-11 1.772447408e-10 5.155446775e-11 1.242536099e-10 1.463699014e-10 2.055969689e-10 2.007237167e-10 1.555774415e-10 7.620207214e-11 3.380978681e-10 9.894823242e-11 1.417243406e-10 3.131720897e-10 9.177533147e-11 2.090463368e-10 9.057506475e-11 1.348992051e-10 2.005652514e-10 7.752706845e-11 1.208771468e-10 4.263871441e-11 1.64064044e-10 2.087772097e-10 1.284070944e-10 3.479966555e-11 3.368128419e-10 3.224326232e-10 1.560756831e-10 6.179827188e-11 7.45643441e-11 4.293854627e-11 3.197704287e-10 1.294398445e-10 2.525478916e-10 5.85455741e-11 1.385393507e-10 1.243699352e-10 1.072713867e-10 1.267947532e-10 1.78220181e-10 1.351496489e-10 1.840670458e-10 1.488684644e-10 2.00364054e-10 2.484928706e-10 2.189069892e-10 1.265150979e-10 2.012314603e-10 2.314023215e-10 1.262407793e-10 4.927240536e-10 1.326859511e-10 2.873884962e-10 1.247677698e-10 5.736831665e-11 2.01014148e-10 2.545253329e-10 1.027362646e-10 1.683263684e-10 2.631558982e-10 3.244347121e-10 7.733983279e-11 1.846559383e-10 3.603614074e-10 1.264977992e-10 1.872856557e-10 2.260489367e-10 1.990858663e-10 2.066894037e-10 2.383565828e-10 1.972724799e-10 1.368749586e-10 3.417506888e-10 2.902706121e-10 1.49664841e-10 1.491545248e-10 1.569843765e-10 2.619868618e-10 2.387314691e-10 1.676644651e-10 1.533687072e-10 2.107742678e-10 1.415599214e-10 2.298692804e-10 1.901951449e-10 2.01082257e-10 1.3775559e-10 2.585752039e-10 1.255427956e-10 1.500605241e-10 1.918254008e-10 9.040049142e-11 2.6100086e-10 3.262656797e-10 1.231462308e-10 1.582798912e-10 1.030864285e-10 2.158541936e-10 7.968157053e-11 1.664352398e-10 2.568786838e-10 2.838683996e-10 3.377787798e-10 1.113938601e-10 2.13779758e-10 1.731921781e-10 1.634327741e-10 8.283176736e-11 2.050167798e-10 1.001736732e-10 1.577106208e-10 5.960998404e-11 2.674202239e-10 1.786397278e-10 1.109791916e-10 1.803250923e-10 1.724758312e-10 2.537564629e-10 1.145214733e-10 1.54421215e-10 9.899615902e-11 7.827613013e-11 1.374191791e-10 1.806891051e-10 4.7106269e-10 1.910517592e-10 1.102410889e-10 1.359136757e-10 1.050259672e-10 1.748350072e-10 1.269721314e-10 1.455448499e-10 1.059860004e-10 2.419010183e-10 3.292946418e-10 1.75895964e-10 1.68499512e-10 5.383897384e-11 2.304304823e-10 2.468333938e-10 2.496826926e-10 2.09866235e-10 1.857092347e-10 2.774727395e-10 2.751522984e-10 1.219126766e-10 2.994828751e-10 1.684092344e-10 2.712487235e-10 1.850334769e-10 1.832972918e-10 1.742558756e-10 2.677117725e-10 3.770970192e-10 8.774697223e-11 1.082871799e-10 2.557655621e-10 4.991145844e-10 2.268549976e-10 2.386436425e-10 1.924913286e-10 4.543757177e-10 1.45110628e-10 1.881765364e-10 2.212272667e-10 1.328704045e-10 5.044380825e-11 8.947537045e-11 2.593861694e-10 6.635129065e-11 1.045751173e-10 1.107404109e-10 9.93827441e-11 3.553854162e-10 9.799197395e-11 7.28237412e-11 1.587135952e-10 2.282242834e-10 3.104862591e-11 1.982432469e-10 1.248690102e-10 2.077677865e-10 1.9277076e-10 1.511252209e-10 7.095041308e-11 1.143852849e-10 1.316158218e-10 7.99389806e-11 1.5385055e-10 3.04938025e-10 1.554867597e-10 8.03767967e-11 1.215206718e-10 1.04838468e-11 1.653126619e-10 2.293599328e-10 1.149447856e-10 1.550453794e-10 1.49557897e-10 1.045935946e-10 8.763381499e-11 1.976852988e-10 1.761906185e-10 5.882545679e-11 1.246482294e-10 1.047620899e-10 1.928274441e-10 2.201937735e-10 3.885644252e-11 3.718059157e-10 2.247898536e-10 2.386979919e-10 4.458286603e-11 1.078049495e-10 8.765753784e-11 4.944930859e-11 5.75842823e-11 5.731404499e-11 1.359769601e-10 2.901897605e-10 2.413158878e-10 1.793637788e-10 1.10024645e-10 1.661826293e-10 1.414005632e-10 1.727982443e-10 1.776812297e-10 1.566841514e-10 5.35545458e-11 2.276343695e-11 1.16865303e-10 1.384364771e-10 1.297837836e-10 7.152853292e-11 8.154980699e-11 1.741134295e-10 5.118961748e-11 2.409163217e-10 1.284836225e-10 6.442382858e-11 2.296570944e-10 3.01353515e-11 7.163756589e-11 2.335182229e-10 1.958830694e-10 1.447773239e-10 4.760876516e-10 1.214602362e-10 8.391270584e-11 5.353078027e-11 1.036875884e-10 1.192567118e-10 +1.196656141e-10 6.035570203e-11 8.748330641e-11 1.301916701e-10 3.001668542e-10 1.098097681e-10 1.304676877e-10 4.757089622e-11 6.756846844e-11 8.843498867e-11 1.517434516e-10 3.604063893e-10 1.424976357e-10 1.140845856e-10 6.973531494e-11 8.032993146e-11 3.738879032e-11 1.219014004e-10 1.212866578e-10 7.943055427e-11 1.6180235e-10 1.107020783e-10 9.881995809e-11 4.706947027e-11 1.522423497e-10 2.36009496e-10 1.051472892e-10 1.321879482e-10 1.552490023e-10 1.598115604e-10 1.132069368e-10 1.755524933e-10 7.385403378e-11 1.86491734e-10 3.375684084e-10 1.32540511e-10 1.583276522e-10 1.408735133e-10 8.920765123e-11 1.767684902e-10 8.704098084e-11 1.791488361e-10 2.175772818e-10 7.436313499e-11 1.045319515e-10 3.065423297e-10 5.601775547e-11 1.219318842e-10 9.721503718e-11 4.039622843e-11 5.040686147e-11 1.303528944e-10 1.122091333e-10 1.031037528e-10 1.962840503e-10 7.524070682e-11 1.994517845e-10 1.115711498e-10 2.947529295e-10 7.771138532e-11 9.726247985e-11 2.580664975e-10 1.034087597e-10 2.38228686e-10 3.911888459e-10 1.789338341e-10 6.126585636e-11 1.209465726e-10 1.651946576e-10 2.115126701e-10 1.586719433e-10 1.672583723e-10 1.97505516e-10 3.724378656e-10 5.011610147e-11 9.035294771e-12 2.246648811e-10 1.020976539e-10 4.081505575e-11 1.529926568e-10 2.317223944e-10 1.323119789e-10 4.199149501e-10 1.219855333e-10 3.077317124e-10 3.002460761e-10 2.700625087e-10 3.983088407e-11 2.177043595e-10 3.112059316e-10 1.89692219e-10 1.450061781e-10 1.026049391e-10 2.158967001e-10 1.850272566e-10 3.641259752e-10 1.470844212e-10 3.355823578e-10 8.20771144e-11 3.39799089e-10 1.357446838e-10 3.318065165e-10 1.946648508e-10 2.027256772e-10 2.315514061e-10 2.329687832e-10 2.658280118e-10 2.681423521e-10 1.919596497e-10 1.639341168e-10 2.135831141e-10 8.368011915e-11 3.642182727e-10 2.054234603e-10 1.31900224e-10 1.364244152e-10 1.98260662e-10 1.967372974e-10 2.059247103e-10 1.490997455e-10 1.99657819e-10 2.01729808e-10 1.705308178e-10 1.679987652e-10 2.235224835e-10 1.877208383e-10 2.068220214e-10 1.149425504e-10 1.408769274e-10 1.9598778e-10 1.715409075e-10 2.18367893e-10 9.887877254e-11 2.689566047e-10 9.351727118e-11 1.140865284e-10 1.296268519e-10 2.715202655e-10 1.223773595e-10 1.855002934e-10 1.917705199e-10 4.413365966e-11 1.424634707e-10 1.23033779e-10 1.881161816e-10 2.185928166e-10 1.120172038e-10 1.751850034e-10 1.540872543e-10 3.89902748e-10 2.25553669e-10 1.601749692e-10 2.382180576e-10 3.03210054e-10 2.120744134e-10 1.890575252e-10 1.841460102e-10 1.205896978e-10 7.647365409e-11 1.51982633e-10 2.147221764e-10 1.196974864e-10 1.199716938e-10 3.03432071e-10 1.42376753e-10 3.204086107e-10 1.175020894e-10 1.053968748e-10 1.860219541e-10 1.020072313e-10 1.714142751e-10 1.329006423e-10 3.873181212e-11 8.457013392e-11 1.871638422e-10 3.501684587e-10 1.786297397e-10 2.435611637e-10 1.536015251e-10 2.276448724e-10 1.348734242e-10 1.048077998e-10 1.9153616e-10 1.582164912e-10 1.340619361e-10 1.45777915e-10 1.374769667e-10 1.303175516e-10 2.83425358e-10 6.79534715e-11 1.639963052e-10 2.338174759e-10 1.200604846e-10 2.574260005e-10 1.617514153e-10 2.569491504e-10 2.689328552e-10 1.601646028e-10 1.979399981e-10 2.431033235e-10 2.594958254e-10 2.611696617e-10 3.887064321e-10 1.538591466e-10 1.603085459e-10 2.431477152e-10 2.5267997e-10 2.145765017e-10 1.479981131e-10 2.824265968e-10 3.672494824e-10 2.492498813e-10 1.563831092e-10 1.941793307e-10 2.47564042e-10 7.658576755e-11 3.006295347e-11 8.686891849e-11 5.481397173e-11 8.476018898e-11 2.281738528e-10 1.864352188e-11 1.018282248e-10 1.177226874e-10 6.591705594e-11 2.02043391e-10 1.447527389e-10 1.30204803e-10 6.978402806e-11 2.281362181e-10 1.367391126e-10 1.618374197e-10 1.509773475e-10 7.760569044e-11 9.901384019e-11 2.022248486e-10 1.197789177e-10 6.129920578e-11 2.023665986e-10 3.589879391e-10 4.385431787e-11 2.217135573e-10 1.998362151e-10 1.452626605e-10 2.920350242e-10 2.306453218e-10 1.215980472e-10 2.324338712e-10 2.232000311e-10 1.695562955e-10 1.009049619e-10 1.943101856e-10 4.093257703e-11 1.143746567e-10 8.055779996e-11 2.807132044e-10 1.153589861e-10 8.622307362e-11 1.256734242e-10 1.195862805e-10 6.619119364e-11 1.966562798e-10 1.142185567e-10 8.553558315e-11 1.22918963e-10 1.710127513e-10 1.083489409e-10 7.921689225e-11 1.609683423e-10 7.928369555e-11 5.667611867e-11 1.59433469e-10 1.48089036e-10 1.555284426e-10 1.792431899e-10 7.642824274e-11 6.353291479e-11 6.7158747e-11 1.895781415e-10 1.385784214e-10 1.251150291e-10 2.647218319e-10 8.938459069e-11 2.032885519e-10 5.397453269e-11 1.264120519e-10 8.375045504e-11 5.450706765e-11 1.166490007e-10 1.041038183e-10 2.021745209e-10 9.303677912e-11 1.435091687e-10 1.060268972e-10 5.384378171e-11 1.189953103e-10 1.412240092e-10 1.31396222e-10 1.60484602e-10 1.762449558e-10 +7.496922262e-11 1.181917476e-10 2.413518228e-10 2.284886915e-10 1.104521159e-10 2.742425651e-10 1.687489858e-10 1.900859512e-10 1.896176763e-10 1.349214448e-10 2.799840908e-10 2.154965737e-10 1.310343544e-10 4.583647972e-11 2.549826319e-10 1.333766595e-10 1.504184334e-10 9.814641541e-11 4.698123278e-11 2.521673306e-11 6.409036408e-11 1.186247184e-10 1.701243398e-10 8.71717322e-11 4.371886612e-11 1.593157983e-10 3.369741821e-10 2.025197215e-10 9.564359506e-11 1.068111883e-10 6.625717611e-11 2.147903407e-10 1.796616049e-10 2.63866103e-10 2.226747945e-10 6.370501314e-11 1.690180773e-10 1.643340114e-10 1.211189736e-10 2.759615439e-10 1.568491186e-10 7.713274726e-11 1.091505654e-10 2.084617959e-10 6.66311798e-11 1.752427948e-10 6.68851567e-11 1.357449391e-10 9.800521527e-11 1.063449194e-10 1.793454569e-10 6.059555015e-11 9.158937223e-11 1.801769673e-10 2.297228848e-10 1.478071403e-10 1.722454843e-10 6.613595285e-11 2.319791926e-10 9.877833881e-11 8.812172707e-11 9.348591988e-11 1.908615821e-10 7.79382001e-11 8.118139136e-11 6.718048989e-11 2.321104799e-10 6.59215759e-11 1.131014826e-10 1.575740525e-10 9.713402148e-11 2.473391806e-10 2.484107685e-10 7.765010986e-11 1.599696828e-10 2.838532751e-10 7.032075775e-11 2.973568935e-10 8.494264612e-11 3.321484602e-11 2.125302361e-10 2.014207152e-10 1.143696674e-10 1.593697481e-10 1.198133745e-10 3.165972473e-10 3.494745901e-10 2.451785992e-10 2.356676974e-10 3.225811369e-10 9.554867581e-11 1.746138112e-10 1.485290749e-10 2.113403998e-10 3.54681345e-10 2.974779864e-10 3.086811005e-10 4.698881607e-10 1.003692168e-10 1.353343278e-10 2.241438812e-10 1.931026895e-10 2.251946441e-10 3.137186166e-10 1.736984745e-10 3.89953057e-10 1.558239552e-10 1.311484321e-10 4.235601593e-10 1.90029692e-10 3.435469109e-10 2.685721233e-10 1.211050654e-10 2.776624093e-10 2.149695318e-10 1.598599062e-10 2.566825105e-10 8.703025135e-11 1.889475854e-10 1.959305705e-10 1.338699655e-10 1.703462359e-10 2.834809908e-10 8.276489462e-11 1.577119713e-10 1.687550898e-10 2.192093345e-10 2.082926336e-10 1.309650322e-10 1.254143031e-10 1.318916192e-10 1.552632324e-10 1.525864813e-10 2.829889192e-10 1.567560886e-10 1.419791386e-10 2.119072051e-10 2.104416863e-10 2.371079946e-10 2.126203667e-10 1.827449971e-10 1.467720785e-10 3.014270876e-10 2.62200734e-10 1.098479025e-10 1.750080439e-10 1.637138444e-10 2.404276018e-10 1.647303355e-10 2.416703564e-10 2.23711494e-10 2.093123554e-10 1.426584121e-10 3.212179844e-10 1.455204472e-10 1.636141043e-10 1.327694138e-10 1.568088209e-10 1.746434258e-10 1.988876132e-10 1.377857244e-10 1.740344346e-10 2.699015633e-10 1.745977981e-10 1.549532701e-10 1.514350004e-10 1.645370909e-10 2.180171145e-10 2.541870586e-10 1.686347654e-10 2.039547638e-10 3.75487652e-10 2.020887386e-10 2.098872292e-10 2.895284557e-10 1.415701606e-10 1.98617765e-10 2.028006445e-10 1.501719457e-10 1.578076827e-10 1.863310161e-10 1.702536523e-10 2.164462671e-10 2.149408388e-10 2.376493133e-10 1.830870929e-10 1.790123704e-10 2.86803885e-10 2.240722392e-10 1.933369466e-10 3.339481852e-10 3.024107987e-10 1.704060922e-10 2.751697557e-10 2.427755014e-10 1.004860617e-10 2.629598228e-10 2.391314641e-10 2.822055132e-10 2.373488354e-10 5.377680206e-11 3.566801712e-10 2.506191432e-10 2.235121473e-10 3.981160345e-10 2.630741715e-10 1.980520634e-10 1.783225212e-10 2.54509526e-10 9.926088048e-11 2.655228819e-10 2.795708942e-10 2.414008407e-10 1.290040391e-10 3.490087907e-10 1.243755872e-10 1.179102919e-10 1.9809523e-10 6.763352966e-11 4.942467789e-11 8.324644461e-11 9.12930754e-11 1.746783639e-10 9.702496606e-11 1.383030414e-10 1.982678889e-10 1.190989727e-10 6.994123519e-11 1.598756471e-10 1.005347507e-10 1.785518513e-10 2.901418765e-10 1.550447195e-10 4.395153226e-11 1.763622301e-10 3.244006673e-11 2.383692053e-10 1.153122246e-10 2.043727159e-10 2.140860712e-10 1.329973099e-10 5.937465862e-11 1.634947176e-10 1.850174541e-10 4.209675574e-11 1.134271688e-10 1.594698662e-10 2.124086442e-10 1.656830294e-10 1.319215779e-10 9.93076601e-11 1.431141392e-10 7.470813226e-11 1.199189415e-10 1.085558419e-10 5.835939942e-11 2.490494686e-10 1.219088175e-10 1.520269093e-10 1.986175539e-10 2.043391686e-10 1.641642148e-10 1.294192647e-10 1.177317345e-10 1.032979501e-10 9.879592403e-11 2.222884823e-10 1.914515667e-10 1.20916767e-10 4.558973235e-11 4.202753867e-11 1.080355574e-10 1.397124739e-10 5.985549368e-11 1.304487672e-10 1.755338193e-10 9.761827071e-11 1.325573079e-10 1.766824709e-10 3.813156736e-11 1.792142769e-10 1.840394609e-10 1.016464118e-10 2.342124805e-10 1.938794205e-10 8.653453733e-11 1.290249946e-10 8.856732712e-11 9.562227478e-11 8.981225919e-11 7.304514288e-11 2.648371481e-10 1.102542261e-10 3.873344629e-11 2.576671224e-10 8.41455887e-11 1.313592086e-10 2.16114832e-10 1.967358817e-10 4.22456262e-11 +1.697647044e-10 1.300603641e-10 2.029435863e-10 4.884695878e-11 3.833313762e-10 1.55627839e-10 6.836971082e-11 7.856258884e-11 1.073678353e-10 5.894798186e-11 8.654942363e-11 7.535447046e-11 5.046675171e-11 1.499269677e-10 1.063319467e-10 5.282686462e-11 2.457655489e-10 9.215784799e-11 1.061531923e-10 1.410523457e-10 6.270214382e-11 8.227837743e-11 1.515483858e-10 5.390936696e-11 1.3962443e-10 1.106043391e-10 8.738313766e-11 7.637287856e-11 9.963068104e-11 5.45458915e-11 2.248519395e-10 1.182315252e-10 1.544693564e-10 2.047077482e-10 8.967484596e-11 1.710047583e-10 2.664548195e-10 1.512476488e-10 1.644149536e-10 1.778050774e-10 7.69323988e-11 1.465181898e-10 1.870223648e-10 1.186216209e-10 1.274389527e-10 1.838721158e-10 2.784936884e-10 1.18039994e-10 2.126297948e-10 1.128580817e-10 1.443781049e-10 9.533432691e-11 8.497557679e-11 2.289860375e-10 1.698943292e-10 2.352714249e-10 9.845558371e-11 1.826741237e-10 1.967121201e-10 2.916797139e-10 2.935173782e-10 2.680548958e-10 1.575086276e-10 2.676149664e-10 2.368544936e-10 1.236403037e-10 1.574714916e-10 1.253116219e-10 1.785431203e-10 1.577728878e-10 2.414195649e-10 4.920647982e-11 1.395758363e-10 1.357234984e-10 1.014162173e-10 3.059634808e-10 9.241189946e-11 3.534582685e-10 1.13441632e-10 7.207953198e-11 8.177432284e-11 1.494900299e-10 7.766915449e-11 6.290444871e-11 2.076334455e-10 3.880211511e-10 1.85087785e-10 2.82803818e-10 2.798778826e-10 8.830841942e-11 2.306341276e-10 2.004489096e-10 1.990734547e-10 1.726544846e-10 1.494986143e-10 1.958194055e-10 2.17281903e-10 1.450654617e-10 1.564886588e-10 2.006507796e-10 3.438732382e-10 1.73786257e-10 2.222622677e-10 9.768729324e-11 1.493930229e-10 1.834435346e-10 2.086589822e-10 1.907629348e-10 3.112851025e-10 3.127818536e-10 3.498678072e-10 1.110467819e-10 1.443029698e-10 2.488070355e-10 2.379747978e-10 2.587928369e-10 1.731610789e-10 1.940950276e-10 1.888172276e-10 1.227623344e-10 1.585840267e-10 9.526691188e-11 2.724052068e-10 9.186153873e-11 3.326594214e-10 2.074897944e-10 1.008162099e-10 1.494959572e-10 3.019512502e-10 1.200500901e-10 1.955193501e-10 2.328437763e-10 1.154606316e-10 1.181887488e-10 1.441043312e-10 8.738346121e-11 1.251562053e-10 1.994855723e-10 9.597195613e-11 1.528053395e-10 1.760859571e-10 1.763292414e-10 1.002891529e-10 1.923242978e-10 1.959025911e-11 1.581254751e-10 1.352463365e-10 9.732365648e-11 1.660473559e-10 1.975854483e-10 2.155762431e-10 1.802993844e-10 1.286916986e-10 2.817231869e-10 2.225039562e-10 2.018427464e-10 2.455860152e-10 3.410065463e-10 1.532156628e-10 1.354973269e-10 2.593331249e-10 1.266134456e-10 2.510817598e-10 2.5749665e-10 2.147393353e-10 1.321340569e-10 1.895704707e-10 1.683976053e-10 2.206346336e-10 1.748903854e-10 1.164120977e-10 2.452770278e-10 1.337794331e-10 6.550661895e-11 1.948757611e-10 1.758686373e-10 1.068942164e-10 1.538634109e-10 1.152702691e-10 2.287309406e-10 1.2822027e-10 2.557988118e-10 1.747976061e-10 1.753924806e-10 1.825042935e-10 1.661935124e-10 2.949115816e-10 1.698237814e-10 1.24553108e-10 1.594626835e-10 2.624670534e-10 1.679571811e-10 3.990207321e-10 1.312087755e-10 2.083824242e-10 1.824598886e-10 2.78136097e-10 1.403129651e-10 1.934372205e-10 3.277500068e-10 2.744747297e-10 1.68296576e-10 2.80225333e-10 2.424122995e-10 2.495156969e-10 5.705564892e-11 2.113453635e-10 1.379477065e-10 1.884510626e-10 1.851331045e-10 2.804130547e-10 5.909100667e-11 1.663466608e-10 9.534544367e-11 1.401943523e-10 8.502534056e-11 1.48175815e-10 1.488639788e-10 1.187492291e-10 6.716650444e-11 1.978863444e-10 1.193788391e-10 1.51579154e-10 1.380429232e-10 5.666810867e-11 9.38049721e-11 2.348572643e-10 2.655358748e-10 6.440236805e-11 2.26492795e-10 2.181076517e-11 1.676529475e-10 5.713227817e-11 1.046246167e-10 1.104410479e-10 1.572127579e-10 1.154289931e-10 1.004301327e-10 1.50647407e-10 1.70482493e-10 3.267334572e-10 1.621524976e-10 1.212387288e-10 9.243092546e-11 3.704130244e-10 1.6063395e-10 8.405162555e-11 9.36054469e-11 9.672213062e-11 2.446238256e-10 1.524896801e-10 1.555699177e-10 4.877213161e-11 1.069802856e-10 2.858066981e-10 1.733124331e-10 3.190584383e-10 9.448539132e-11 1.135829503e-10 3.474850416e-10 2.137060892e-10 3.920990682e-11 5.749919591e-11 8.207064906e-11 1.98569885e-10 4.775775204e-11 1.990783236e-10 8.533649127e-11 5.957100571e-11 7.312803247e-11 7.09951319e-11 1.142286099e-10 7.088442718e-11 1.094042907e-10 1.461800288e-10 9.935488613e-11 9.698027602e-11 7.721119403e-11 1.144012223e-10 5.738344027e-11 1.52440194e-10 2.074875094e-10 2.001053905e-10 1.138407118e-10 3.711857287e-11 1.406887501e-10 8.436957193e-11 7.998920237e-11 2.102514194e-10 8.669217413e-11 1.346342899e-10 1.809707666e-10 8.585474133e-11 7.664424461e-11 2.464329012e-10 2.392004841e-11 9.588581407e-11 5.654709595e-11 2.736430007e-10 9.860853631e-11 +1.680886201e-10 3.306292814e-11 1.686698517e-10 1.205963284e-10 7.6493723e-11 1.521854713e-10 6.167144773e-11 7.97301276e-11 7.786038334e-11 1.290796127e-10 1.514704082e-10 3.592966773e-11 2.087353885e-10 2.274701184e-10 1.318543822e-10 1.168902162e-10 3.56903235e-10 2.022860297e-10 3.359548135e-10 1.53064968e-10 2.51225754e-10 2.757907856e-10 6.061612226e-11 1.578133795e-10 2.816737034e-10 1.478239614e-10 9.751521229e-11 1.065645586e-10 3.672139254e-10 2.409995202e-10 7.467021164e-11 1.086394322e-10 1.615692458e-11 1.217792621e-10 1.620165459e-10 1.37897989e-10 2.067423658e-10 2.455011536e-10 1.104997453e-10 9.734973748e-11 1.327217343e-10 3.2111521e-10 1.637736236e-10 1.958849417e-10 1.246094028e-10 1.405140518e-10 1.93917176e-10 1.491283187e-10 1.512675654e-10 9.494199122e-11 1.886607023e-10 1.310080448e-10 1.106220549e-10 1.263657715e-10 8.960996546e-11 1.035884255e-10 1.772392204e-10 1.675444508e-10 8.927064355e-11 2.505165804e-10 1.249889827e-10 2.094023869e-10 6.773836656e-11 2.027500538e-10 1.218390959e-10 1.795739238e-10 9.327308979e-11 1.944911865e-10 1.485948398e-10 2.088244654e-10 1.539601387e-10 9.107461291e-11 2.168703211e-10 1.147880514e-10 9.685596423e-11 5.183070748e-11 2.021957233e-10 1.521770916e-10 5.622302403e-11 2.06501347e-11 1.066883091e-10 1.048953908e-10 1.13899135e-10 1.383604361e-10 3.815826646e-10 2.520459606e-10 1.188722069e-10 2.638103593e-10 1.099013267e-10 2.052202255e-10 2.507099712e-10 2.823224706e-10 2.355101447e-10 3.330537717e-10 1.753644478e-10 2.245200338e-10 2.031149838e-10 2.425217803e-10 9.000199986e-11 1.847218894e-10 2.636468219e-10 1.407974247e-10 1.637499288e-10 2.510237409e-10 2.387822291e-10 2.900152793e-10 1.248440747e-10 2.031343847e-10 2.159654796e-10 1.567361868e-10 1.633800668e-10 3.160718145e-10 2.805320359e-10 1.812217193e-10 1.343175089e-10 1.220839722e-10 1.807953573e-10 1.614179966e-10 1.289595923e-10 1.306426376e-10 1.065127561e-10 9.132183116e-11 3.571765959e-10 2.055066838e-10 2.011904397e-10 3.200609279e-10 1.404782199e-10 3.701675742e-10 1.743132045e-10 9.617657779e-11 1.056182779e-10 1.37676565e-10 1.705178458e-10 9.432061924e-11 1.691014571e-10 1.96673262e-10 2.211759508e-10 2.53711245e-10 2.811891319e-10 1.229681889e-10 1.49585205e-10 3.940955238e-10 1.090325229e-10 1.478343249e-10 1.515531024e-10 9.124299057e-11 2.603490024e-10 1.656148976e-10 2.040308211e-10 1.358831684e-10 1.065006846e-10 1.113473484e-10 2.671436004e-10 7.976376238e-11 1.561048947e-10 2.432617749e-10 2.03344771e-10 1.175908305e-10 5.935391386e-11 1.246148789e-10 1.257462264e-10 1.621249484e-10 9.785147062e-11 1.92999209e-10 2.016151103e-10 1.946059025e-10 1.685946212e-10 1.99574233e-10 2.916300692e-10 2.673006533e-10 2.455806202e-10 2.845200002e-10 1.175422786e-10 1.441346301e-10 1.643680537e-10 2.66165922e-10 1.644110116e-10 1.268170219e-10 1.345873096e-10 1.788013602e-10 1.150250929e-10 1.656945562e-10 2.147331107e-10 1.368125945e-10 3.423505994e-10 1.7961926e-10 1.771453754e-10 2.209821887e-10 2.100612934e-10 1.544854845e-10 1.939855753e-10 2.626366343e-10 1.590272479e-10 1.909478575e-10 2.376043344e-10 3.30547265e-10 2.093290236e-10 1.558011879e-10 2.16309923e-10 2.271746424e-10 1.623526818e-10 1.895745867e-10 3.203426381e-10 2.64586102e-10 2.457709583e-10 1.767842588e-10 6.78253822e-11 1.948924919e-10 2.506979538e-10 2.259177525e-10 2.006123346e-10 1.886457841e-10 4.197901607e-10 1.156929821e-10 1.387042005e-10 1.699270917e-10 2.604424166e-10 8.004569469e-11 1.111176645e-10 1.880726371e-10 1.93476807e-10 1.281461422e-10 1.406316459e-10 1.552461946e-10 4.737163814e-11 1.677903168e-10 2.1057406e-10 2.117916774e-10 6.036615379e-11 3.051778036e-10 1.357324724e-10 1.357589259e-10 2.351379181e-10 1.744730966e-10 1.816149189e-10 1.026812817e-10 1.293169525e-11 2.485779883e-10 1.358042468e-10 4.424998917e-10 1.636671276e-10 2.162383717e-10 1.652088298e-10 1.864700802e-10 8.627318941e-11 8.442057793e-11 1.239358187e-10 2.325948524e-10 2.455405089e-10 1.37835054e-10 9.50875052e-11 1.546607826e-10 1.138546635e-10 7.443318669e-11 1.989340249e-10 8.741403785e-11 1.408847348e-10 2.544817417e-10 1.527982767e-10 1.471209006e-10 8.57975046e-11 1.191274237e-10 2.523474597e-10 1.354668775e-10 2.484498818e-10 1.393277959e-10 1.337208161e-10 2.075425439e-10 2.606986075e-10 2.525258154e-10 1.92202082e-10 1.422878576e-10 1.066184618e-10 4.099831089e-11 7.069109184e-11 1.479684494e-10 8.408117152e-11 5.552286227e-11 1.308508457e-10 7.075845558e-11 2.728089004e-10 1.28228407e-10 6.437089465e-11 1.571705433e-10 3.026219086e-10 1.668416578e-10 2.08683182e-10 4.321371786e-11 1.232711009e-10 1.205914942e-10 1.613245506e-10 1.96785644e-10 8.741370411e-11 2.105822596e-10 9.150713512e-11 5.131747632e-11 1.227894514e-10 1.063619466e-10 1.259332582e-10 1.202220481e-10 +6.812977095e-11 9.956616161e-11 2.355278121e-10 1.361553056e-10 1.977152094e-10 1.502801829e-10 1.723226936e-10 7.978656985e-11 1.992343244e-10 2.725373879e-10 1.959319274e-10 1.406006282e-10 2.782267671e-10 6.974457697e-11 1.580694672e-10 1.228679265e-10 1.884473138e-10 1.860930699e-10 4.552454783e-10 2.004817746e-10 4.623093279e-11 1.301164179e-10 1.465898932e-10 1.127651171e-10 6.208317885e-11 1.514527201e-10 6.820890003e-11 2.216870257e-10 8.359608362e-11 3.741682701e-10 1.630499982e-10 1.519767183e-10 1.874744965e-10 1.408243312e-10 1.328146897e-10 9.452186005e-11 1.368587387e-10 8.610656189e-11 1.90521895e-10 1.264760839e-10 1.885164756e-10 2.22945713e-10 2.504923175e-10 1.65594604e-10 3.526276035e-10 2.725187277e-10 2.033173413e-10 1.431491926e-10 2.370134155e-10 1.045673949e-10 9.678195619e-11 2.455526154e-10 7.51351837e-11 1.046130211e-10 1.726944478e-10 2.020975629e-10 2.169032874e-10 2.165315948e-10 3.491980864e-11 1.881304207e-10 8.795889536e-11 1.179376763e-10 9.836475399e-11 1.904243465e-10 2.070833074e-10 1.537524559e-10 1.699385969e-10 2.054439396e-10 2.897653433e-10 2.569418784e-10 2.375152244e-10 2.34075136e-10 2.8871071e-10 1.182164081e-10 9.273381593e-11 1.144150863e-10 3.230049985e-10 2.460327017e-10 2.982805976e-10 2.653054781e-10 4.834766061e-11 1.779696239e-10 2.150165819e-10 1.566074796e-10 9.980929926e-11 1.58693971e-10 2.064924546e-10 3.250555289e-10 1.858658192e-10 9.379701967e-11 2.116135963e-10 1.699293683e-10 1.806706034e-10 3.531032575e-10 1.165125626e-10 1.606816976e-10 1.793576958e-10 1.608785987e-10 1.272088903e-10 3.224996113e-10 2.121126564e-10 2.667158894e-10 1.759527601e-10 2.502113889e-10 1.424576051e-10 2.008830742e-10 2.371743712e-10 2.041358836e-10 2.708270536e-10 3.462321187e-10 3.491315759e-10 1.186817435e-10 1.228267389e-10 2.54796957e-10 1.650909812e-10 1.58479562e-10 3.631367431e-10 1.661308866e-10 1.41418471e-10 1.653204389e-10 2.07698422e-10 1.253528265e-10 1.657541138e-10 1.29570716e-10 2.207355826e-10 2.483859072e-10 3.552508437e-10 1.413303007e-10 2.948882808e-10 3.156475514e-10 1.325636437e-10 1.439774231e-10 2.38762073e-10 1.949565519e-10 1.271956422e-10 1.150001376e-10 1.537760361e-10 1.708570159e-10 2.26276418e-10 2.718542992e-10 1.684253992e-10 1.040357332e-10 1.364150491e-10 1.711467894e-10 5.990109238e-11 1.541943165e-10 9.792365261e-11 1.777918797e-10 1.959840567e-10 3.393332851e-10 2.030867806e-10 8.299103392e-11 2.440872522e-10 1.282324042e-10 1.487392728e-10 6.555143341e-11 1.205455976e-10 1.806967412e-10 2.356017593e-10 2.316980239e-10 8.042933312e-11 1.479076185e-10 9.329361042e-11 1.52543102e-10 1.913230389e-10 1.470165956e-10 1.717433411e-10 1.828592271e-10 1.322568448e-10 9.501568298e-11 1.640186041e-10 7.967452935e-11 2.76169755e-10 9.726503928e-11 2.940883438e-10 1.464250182e-10 1.707260078e-10 9.760150328e-11 1.691979879e-10 1.191576074e-10 1.734329154e-10 2.487025814e-10 2.446366553e-10 1.904455206e-10 2.553460607e-10 1.136807449e-10 2.32565115e-10 1.520670443e-10 1.506052679e-10 1.701911912e-10 3.685872857e-10 1.276421946e-10 2.572989014e-10 3.96922954e-10 3.022751907e-10 2.413341477e-10 3.895916207e-10 3.0604867e-10 2.434820167e-10 3.420354581e-10 2.896193245e-10 2.353567004e-10 2.98073235e-10 1.379606222e-10 2.222239515e-10 3.255730211e-10 1.640739253e-10 1.635270897e-10 2.091377715e-10 2.024467904e-10 3.344213006e-10 1.145539598e-10 2.039661006e-10 1.51245258e-10 2.091237015e-10 3.250209305e-10 1.556216918e-10 2.690068435e-10 1.783764334e-10 8.205094814e-11 1.766590424e-10 1.263540332e-10 1.554225834e-10 2.081093398e-10 6.114069065e-11 2.312845216e-10 1.898527355e-10 1.57660736e-10 3.0207071e-10 1.69393583e-10 1.307548004e-10 1.436054524e-10 1.796162713e-10 7.787855113e-11 4.927570774e-11 5.934606717e-11 2.248820313e-10 1.480265921e-10 5.590592253e-11 1.909510282e-10 1.520602539e-10 1.155479192e-10 1.017141073e-10 9.671004993e-11 1.560256215e-10 1.734825495e-10 1.678003369e-10 2.111224708e-10 1.713967622e-10 8.534148347e-11 8.346348648e-11 4.840502014e-11 6.804116578e-11 7.44306232e-11 1.481319267e-10 2.783370649e-10 1.71176584e-10 1.55710701e-10 4.232499875e-11 1.401420018e-10 7.934820175e-11 2.620733308e-10 4.46408888e-11 2.137901738e-10 5.181074929e-11 2.363662599e-10 4.40694513e-10 1.494299704e-11 1.559054267e-10 1.490275995e-10 1.428723409e-10 1.398833112e-10 9.681555325e-11 2.004178924e-10 1.649324386e-10 4.360752738e-11 6.655774276e-11 1.510645871e-10 1.621117402e-10 1.452774883e-10 5.012111935e-11 6.589468325e-11 1.841035989e-10 7.92954432e-11 1.181140499e-10 2.969466803e-10 3.173477344e-10 1.272973704e-10 1.186401863e-10 2.116156992e-10 2.155168307e-10 1.755926493e-10 7.457378358e-11 1.694092247e-10 9.045487086e-11 1.047090504e-10 1.887787858e-10 1.802890622e-10 6.290628257e-11 1.797034269e-10 +1.327973238e-10 1.256314992e-10 8.103381034e-11 1.839726062e-10 2.481677049e-10 1.181957922e-10 2.151219866e-10 2.907071621e-10 1.319922139e-10 3.304312654e-10 1.145690934e-10 1.047411118e-10 1.056024448e-10 1.032369184e-10 1.975929433e-10 8.883403346e-11 2.015004227e-10 3.124397682e-10 1.488375737e-10 7.707840003e-11 3.048818064e-10 7.60467937e-11 5.58401378e-11 2.54629473e-10 2.562626798e-10 1.017410472e-10 2.008768087e-10 1.985935187e-10 2.625913959e-10 3.667645853e-11 2.884779613e-10 1.526964565e-10 7.337607298e-11 7.045517401e-11 1.45483224e-10 1.167997644e-10 7.551884806e-11 2.655740252e-11 1.519421406e-10 1.890784875e-10 1.693856227e-10 1.027983248e-10 2.692446592e-10 2.00098464e-10 2.494232042e-10 1.953232712e-10 1.814648531e-10 1.268498252e-10 3.463739751e-11 1.00128768e-10 1.28116617e-10 1.615976955e-10 1.350901323e-10 2.430908134e-10 1.138631261e-10 2.342114343e-10 1.395231766e-10 2.161673824e-10 1.583760985e-10 1.366195205e-10 2.044765517e-10 2.166357083e-10 1.887958697e-10 2.472765352e-10 2.181732682e-10 1.212867005e-10 1.904408682e-10 8.950226866e-11 1.222566319e-10 1.733815006e-10 1.861747354e-10 6.975109924e-11 9.258884211e-11 1.947553681e-10 6.804860762e-11 1.34889901e-10 2.182231643e-10 1.161007949e-10 2.043873164e-10 1.621061784e-10 1.94681968e-10 7.953056719e-11 2.090875952e-10 2.125887888e-10 1.160185866e-10 3.033750081e-10 1.418348529e-10 3.985271744e-10 3.556701375e-10 1.328800176e-10 8.554821623e-11 2.176148241e-10 1.480356923e-10 3.252072533e-10 3.340146135e-10 3.115813455e-10 2.277357047e-10 1.953915496e-10 1.986904272e-10 2.452830408e-10 1.84746591e-10 2.592266189e-10 1.71890572e-10 2.267044664e-10 2.512490064e-10 2.40305259e-10 1.776013693e-10 1.32516552e-10 3.308113077e-10 8.482421275e-11 3.986189513e-10 2.244456864e-10 2.284730849e-10 1.762524211e-10 4.221172348e-11 2.645648893e-10 2.588008509e-10 2.563487727e-10 3.483656302e-10 2.590417528e-10 1.65254232e-10 2.013623018e-10 1.724456318e-10 2.055415167e-10 1.86880193e-10 1.984888606e-10 1.979101368e-10 1.66954018e-10 1.607797478e-10 2.144418502e-10 1.367040148e-10 2.149309795e-10 2.89490868e-10 1.962630889e-10 1.282426226e-10 2.981662545e-10 1.30626622e-10 1.02387766e-10 2.005937249e-10 1.817266072e-10 2.190681477e-10 1.440634033e-10 2.174903926e-10 1.298815084e-10 2.810013118e-10 2.305783429e-10 2.291356435e-10 1.498582585e-10 2.085038782e-10 2.105831165e-10 1.827530829e-10 1.615333632e-10 1.494900435e-10 1.280239346e-10 3.591900562e-10 1.885931629e-10 1.69052516e-10 1.913410617e-10 2.10058056e-10 2.443924912e-10 2.020634509e-10 2.636168377e-10 2.364717681e-10 2.15099718e-10 1.325137211e-10 1.801822197e-10 1.207015015e-10 1.072501502e-10 2.312598439e-10 1.92325104e-10 1.440215515e-10 3.485293463e-10 2.538215996e-10 2.824157504e-10 1.848320657e-10 2.535817865e-10 1.08610106e-10 1.185817337e-10 2.098431925e-10 2.205229174e-10 1.557277522e-10 2.497510761e-10 2.189991842e-10 1.48436841e-10 1.287696436e-10 1.626096109e-10 2.109571545e-10 2.642491259e-10 1.862515084e-10 2.84489615e-10 1.882984148e-10 2.741542266e-10 3.119592691e-10 2.746518004e-10 2.015973792e-10 2.988306367e-10 1.679791803e-10 3.470287072e-10 1.774479699e-10 3.240970786e-10 2.273417328e-10 3.313397155e-10 2.095210623e-10 1.441060012e-10 3.455031898e-10 3.057448854e-10 2.558960705e-10 2.999183415e-10 2.057290682e-10 2.198167043e-10 1.007539524e-10 1.234447552e-10 1.835860719e-10 1.868637949e-10 7.689085251e-11 1.751736545e-10 3.245333441e-10 1.129700241e-10 1.123199737e-10 1.837261261e-10 1.133329117e-10 1.892581167e-10 1.979699156e-10 2.038977303e-10 1.308227811e-10 2.1347133e-10 2.56581281e-10 1.664743575e-10 2.648728026e-10 9.894246806e-11 2.118066065e-10 1.522031043e-10 1.28126308e-10 9.705133284e-11 1.811448342e-10 2.481983668e-10 7.228739109e-11 8.988371038e-11 1.929753942e-10 3.09584694e-10 1.00383437e-10 1.272425189e-10 1.715554001e-10 1.893637552e-10 1.49425685e-10 1.807870904e-10 1.555299281e-10 2.978334514e-10 1.099295809e-10 1.626801781e-10 1.468983314e-10 9.722913883e-11 1.426312403e-10 1.614144324e-10 2.202232281e-10 4.653192453e-11 1.119158718e-10 8.959889559e-11 1.282264461e-10 3.296973412e-10 1.210243914e-10 7.783192697e-11 4.164073836e-10 1.1123648e-10 1.873421374e-10 1.343945207e-10 1.584375683e-10 1.275736794e-10 2.323484418e-10 1.09706055e-10 1.53917323e-10 8.958271831e-11 9.187945691e-11 1.566801747e-10 2.644348995e-10 1.749843788e-10 1.269383364e-10 1.646807967e-10 1.686236564e-10 5.569928676e-11 1.869192045e-10 9.371212671e-11 2.933048715e-10 1.64228622e-10 1.045142987e-10 1.176558355e-10 3.030535259e-10 4.028836153e-10 8.62172907e-11 8.460557954e-11 9.429835812e-11 3.862014662e-10 8.566773742e-11 1.79050884e-10 7.307465728e-11 2.706397244e-10 2.008143608e-10 1.148951944e-10 1.33752523e-10 3.459230697e-10 +2.057444032e-10 7.918078168e-11 1.385888065e-10 7.631002138e-11 1.176078677e-10 1.741441049e-10 2.141724604e-10 1.421137388e-10 2.962802246e-10 1.189746038e-10 1.266127549e-10 2.037611362e-10 2.159339747e-10 9.819201516e-11 3.775038591e-10 3.793896283e-11 8.157438113e-11 1.356335345e-10 8.541287113e-11 8.942754637e-11 8.326928846e-11 2.469976313e-10 2.54203254e-10 2.211827668e-10 5.536696265e-11 2.430923015e-10 1.031567588e-10 6.212542189e-11 3.188280441e-10 1.300277807e-10 6.843549238e-11 1.250533906e-10 7.35764962e-11 5.342234249e-11 5.360428188e-11 5.01711752e-11 2.086760614e-10 1.674439415e-10 1.34251122e-10 1.191499275e-10 2.58692064e-10 7.558844815e-11 2.058223456e-10 1.523131232e-10 1.570821188e-10 2.171548224e-10 1.831814336e-10 1.781953837e-10 1.490837115e-10 9.293145916e-11 2.20440595e-10 1.99308601e-10 4.334688749e-11 9.875417535e-11 2.734446202e-10 9.960643482e-11 6.233368079e-11 1.488749786e-10 3.346762329e-10 2.025351102e-10 1.664632389e-10 1.252617593e-10 1.231482293e-10 1.842864373e-10 2.635603775e-10 3.151725802e-10 9.362136443e-11 7.239702613e-11 1.55937795e-10 1.117642674e-10 1.294870532e-10 1.525177631e-10 2.103830417e-10 1.161690542e-10 1.552212096e-10 4.649015374e-11 2.181585734e-10 7.777333548e-11 1.187366868e-10 1.412797184e-10 9.423013153e-11 1.876703551e-10 1.359118628e-10 3.565838733e-10 2.505742593e-10 2.385203605e-10 1.319893615e-10 1.649952478e-10 1.267256613e-10 2.440100174e-10 3.576113358e-10 3.000533234e-10 3.189963648e-10 2.184484998e-10 2.708206178e-10 1.590072872e-10 1.400659711e-10 2.516628597e-10 3.658071994e-10 2.655512533e-10 2.118540654e-10 2.957507604e-10 2.409009472e-10 2.150206276e-10 1.666438917e-10 2.788370533e-10 1.25536856e-10 1.243714874e-10 1.459285908e-10 1.396185285e-10 2.573938951e-10 1.636159298e-10 1.784184018e-10 1.676003093e-10 2.390701312e-10 2.111019029e-10 1.23018528e-10 1.184920267e-10 1.942681754e-10 2.367734649e-10 1.84976023e-10 2.392348291e-10 3.905148655e-10 9.309669716e-11 1.297900062e-10 1.373568048e-10 3.401855549e-10 2.001414018e-10 4.513135049e-11 1.647811571e-10 2.12782493e-10 2.450274318e-10 1.790930311e-10 1.777656087e-10 2.635750374e-10 1.709096453e-10 1.535634253e-10 1.66029779e-10 3.463457638e-10 2.651028723e-10 1.868253717e-10 3.809764476e-10 2.539717365e-10 9.692963026e-11 1.074618723e-10 1.46490607e-10 1.365733651e-10 1.689015772e-10 2.34208647e-10 2.500232502e-10 1.206423171e-10 1.584997964e-10 9.309397871e-11 1.721933148e-10 5.306349031e-11 1.791068165e-10 1.037050444e-10 1.602314869e-10 1.100991167e-10 2.187926945e-10 2.353895177e-10 6.257708367e-11 1.35176814e-10 5.869655126e-11 2.121692167e-10 1.49208287e-10 2.155894471e-10 1.4728436e-10 8.276292704e-11 1.559073122e-10 2.913520853e-10 1.60697647e-10 1.316261619e-10 1.495067367e-10 2.304949338e-10 1.357302011e-10 1.119062788e-10 1.201596599e-10 2.560156576e-10 1.402431545e-10 2.312749131e-10 1.331574012e-10 1.213792299e-10 1.927027495e-10 3.306117634e-10 1.504949365e-10 1.842041381e-10 1.866168338e-10 1.663428397e-10 2.534907951e-10 3.427330445e-10 1.320788398e-10 3.062171542e-10 1.671769625e-10 1.808913192e-10 1.841097263e-10 2.532548781e-10 2.701047324e-10 2.326325794e-10 2.410238578e-10 2.260952349e-10 2.730360165e-10 3.289766759e-10 3.122338151e-10 9.348823266e-11 2.468092632e-10 2.191816466e-10 2.796077817e-10 3.595400902e-10 2.569296995e-10 2.869814184e-10 2.663185118e-10 2.651331572e-10 1.248991339e-10 1.815592474e-10 1.931265292e-10 2.07242178e-10 1.953755262e-10 1.039286375e-10 8.534235436e-11 1.639836007e-10 1.372706666e-10 2.257962662e-10 2.423310026e-10 1.298196812e-10 1.365518719e-10 2.118186458e-10 2.635501637e-10 1.046855967e-10 1.376267696e-10 5.517289755e-11 1.515561791e-10 2.061261736e-10 1.39700303e-10 2.247686429e-10 2.922124352e-10 2.206787582e-10 1.845409905e-10 2.578631729e-10 9.425041759e-11 2.215447725e-10 1.334973926e-10 6.613452759e-11 1.095131592e-10 1.015607048e-10 1.050710729e-10 2.841545855e-10 9.685544934e-11 2.131431676e-10 2.245739038e-10 1.929049087e-10 8.234958935e-11 1.73340593e-10 2.061407405e-10 1.153715479e-10 1.231515943e-10 1.432917183e-10 1.602529786e-10 2.868049921e-10 1.3218521e-10 1.628112003e-10 8.580466914e-11 1.344033215e-10 8.868988891e-11 1.331985007e-10 9.048607299e-11 3.956414989e-10 1.016102609e-10 7.202245888e-11 2.671196282e-11 2.308478334e-10 1.307421259e-10 9.42770651e-11 1.590536136e-10 1.930713697e-10 1.324861648e-10 1.030159004e-10 2.224486267e-10 1.118399655e-10 1.430437806e-10 9.201817281e-11 7.835810262e-11 7.766547614e-11 2.85750506e-10 5.926671426e-11 1.78019287e-10 7.715627471e-11 1.309759488e-10 1.38573441e-10 2.34981293e-10 2.339437619e-10 2.133858771e-10 9.804582596e-11 1.136148367e-10 1.256993339e-10 2.906590967e-10 1.620342302e-10 1.668776375e-10 9.514077509e-11 1.898716473e-10 +1.461742555e-10 6.179206585e-11 1.290949657e-10 1.6253354e-10 1.400524663e-10 1.650911468e-10 1.16068108e-10 1.453377789e-10 1.514940637e-10 7.70170764e-11 6.817839617e-11 1.479422121e-10 7.141071725e-11 9.36982666e-11 2.81635919e-10 1.019498864e-10 1.631124089e-10 1.418770101e-10 1.142081938e-10 6.999530319e-11 1.142453716e-10 2.50731545e-10 2.397932077e-10 1.079350323e-10 1.987176326e-10 1.579731499e-10 7.727602652e-11 1.568732862e-10 3.004701628e-10 1.94605763e-10 1.710962685e-10 2.144646623e-10 1.438029841e-10 9.597851795e-11 6.880297926e-11 1.057187808e-10 2.996002259e-10 2.371816364e-10 9.223158198e-11 5.915582709e-11 1.922317445e-10 2.449896727e-10 2.462091557e-10 1.781192057e-10 1.144159643e-10 1.348399921e-10 3.373762266e-10 1.975584355e-10 1.374520792e-10 6.080854044e-11 1.908772409e-10 2.183980127e-10 1.938642107e-10 2.292823252e-10 2.06527908e-10 4.288508928e-11 1.088482958e-10 3.067624032e-10 1.442467067e-10 2.899666361e-10 1.919886017e-10 1.165674547e-10 1.269272016e-10 2.182887428e-10 1.321543749e-10 6.328015876e-11 2.378821725e-10 2.253533411e-10 3.12321673e-10 1.914592896e-10 1.151844713e-10 1.215868174e-10 1.981850596e-10 9.996397585e-11 9.365958878e-11 5.542053693e-11 2.196422021e-10 1.113447116e-10 1.577528992e-10 1.432345901e-10 1.477848814e-10 1.966411063e-10 5.223300938e-11 1.009557858e-10 2.515727331e-10 3.117204506e-10 1.68288235e-10 3.231838543e-10 1.944199297e-10 1.360332515e-10 2.255805887e-10 2.841199006e-10 2.552740971e-10 3.082277217e-10 2.945731475e-10 3.06396539e-10 1.449112311e-10 2.349044226e-10 2.178200198e-10 1.763956294e-10 2.359777115e-10 1.26128236e-10 2.951316668e-10 2.867255345e-10 1.988998674e-10 1.354791918e-10 2.060652162e-10 1.864690512e-10 1.513928382e-10 3.397215069e-10 2.245271263e-10 2.557882688e-10 4.05612995e-10 3.297303546e-10 1.930188346e-10 2.698657648e-10 2.219868506e-10 1.759823894e-10 1.975833383e-10 2.656297331e-10 2.236890657e-10 2.414364613e-10 1.854508429e-10 1.227364529e-10 2.020460293e-10 3.026631594e-10 2.13858024e-10 1.23148648e-10 1.14902238e-10 2.894344344e-10 2.107461265e-10 1.067192017e-10 1.463259246e-10 1.169575628e-10 3.184378435e-10 1.632120413e-10 1.656976526e-10 2.022551559e-10 2.089213342e-10 1.688853983e-10 1.612532243e-10 2.294953252e-10 1.383233982e-10 9.596273248e-11 9.208901541e-11 2.053838028e-10 8.141655744e-11 1.456163822e-10 1.336712068e-10 7.42733894e-11 1.017541091e-10 1.799612202e-10 1.219007422e-10 1.177546544e-10 1.723351337e-10 7.993071931e-11 1.648139792e-10 3.278549807e-10 2.675186773e-10 1.789707113e-10 1.705899104e-10 2.231175738e-10 1.685543396e-10 1.688244554e-10 1.034359156e-10 2.440505858e-10 2.601146026e-10 2.312133222e-10 1.761329474e-10 7.595845303e-11 2.112953502e-10 1.171506856e-10 1.904742514e-10 2.120784957e-10 2.453935032e-10 2.656361361e-10 2.366646759e-10 2.11633177e-10 1.072237751e-10 1.605538461e-10 1.857080456e-10 2.441564872e-10 1.257970278e-10 4.613183812e-10 2.199627187e-10 2.225821813e-10 2.049086161e-10 2.495808151e-10 1.46971499e-10 1.734410966e-10 1.563957059e-10 3.107562195e-10 1.606966524e-10 1.274322843e-10 2.638446412e-10 2.545389436e-10 2.081793789e-10 2.521432724e-10 1.715396022e-10 2.713026251e-10 2.574778245e-10 2.307310372e-10 2.790628439e-10 1.479217607e-10 2.840193988e-10 1.596102133e-10 3.157155662e-10 2.143428768e-10 2.363676797e-10 2.00649619e-10 2.477741506e-10 2.62837842e-10 2.127748857e-10 1.767265651e-10 2.32193029e-10 2.082719758e-10 1.907837766e-10 2.973060636e-10 5.909664497e-11 1.368970964e-10 1.158886949e-10 8.380772219e-11 9.279546943e-11 2.417019044e-10 3.926267088e-11 1.20746321e-10 1.288816234e-10 2.744812126e-10 2.341614994e-10 1.924144589e-10 1.101411072e-10 1.626564367e-10 1.335042247e-10 2.632725235e-10 2.684869012e-10 1.087209368e-10 1.583542909e-10 1.503865447e-10 2.836813405e-10 9.006782644e-11 2.759228405e-10 3.318623793e-10 1.740793873e-10 2.300348333e-10 5.803949779e-11 1.942533477e-10 1.371790596e-10 1.718263864e-10 2.075221718e-10 2.548409218e-10 1.345741194e-10 2.790699807e-10 1.555949439e-10 1.839136512e-10 1.948450359e-10 1.152342241e-10 1.784619122e-10 1.352038776e-10 1.702448673e-10 2.424978446e-10 1.724091027e-10 2.790680886e-11 8.877273979e-11 8.822656409e-11 2.791856535e-10 7.056588021e-11 6.499607613e-11 7.226999932e-11 2.40319295e-10 2.605360535e-10 1.818454554e-10 9.031619794e-11 1.747531003e-10 8.140632894e-11 1.697082998e-10 2.424091882e-10 1.779379226e-10 1.033874148e-10 2.262382801e-10 1.306239222e-10 3.341294371e-10 1.803661422e-10 2.257520178e-10 1.654750045e-10 4.808184623e-10 1.491192878e-10 1.799675649e-10 8.894769453e-11 1.333760972e-10 5.804755914e-11 6.964787545e-11 8.438344987e-11 2.219490992e-10 3.000222057e-10 4.090839254e-10 6.304989671e-11 1.672066124e-10 2.029004987e-10 1.129835664e-10 1.627619301e-10 +7.381818217e-11 1.548696026e-10 2.039198271e-10 1.408747374e-10 1.495869601e-10 1.091343423e-10 2.788994454e-10 3.123663895e-10 4.444512263e-11 1.648378542e-10 2.432194011e-10 4.624524038e-11 1.631132831e-10 3.091035962e-11 3.982251501e-11 9.212578111e-11 1.612697618e-10 2.952868478e-10 1.73748214e-10 6.620754264e-11 2.530000149e-10 1.0117163e-10 1.339654082e-10 2.207951469e-10 3.549921543e-10 1.114948201e-10 2.896747734e-10 2.752570076e-10 1.153588747e-10 2.037075634e-10 2.440064635e-10 2.597946583e-10 1.389213719e-10 1.439500901e-10 2.328333928e-10 2.178238375e-10 1.686147981e-10 3.186659315e-11 5.862057311e-11 8.238717765e-11 2.135868417e-10 3.463015874e-10 6.167147829e-11 9.464955771e-11 1.822066426e-10 9.849893128e-11 5.475547069e-11 2.097657832e-10 2.072772531e-10 6.889555954e-11 2.284933005e-10 1.295592373e-10 1.087299727e-10 1.532534553e-10 2.256103395e-10 9.106670485e-11 1.39365063e-10 2.422798184e-10 1.848712693e-10 3.407711952e-10 3.343231778e-10 1.563564277e-10 1.699004453e-10 2.099846893e-10 1.135533738e-10 1.638794504e-10 2.145164677e-10 3.280132218e-10 1.872671459e-10 1.778815435e-10 1.02974674e-10 1.06482648e-10 1.541057909e-10 1.632331865e-10 1.593133096e-10 9.224857731e-12 1.3499925e-10 2.10779399e-10 2.007648901e-10 2.079058811e-10 1.846372488e-10 2.505435152e-10 2.882659098e-10 2.551762139e-10 4.027576183e-10 1.533658567e-10 1.637364118e-10 5.385894975e-11 2.313586206e-10 1.705008942e-10 3.55809019e-10 2.125080505e-10 3.415799404e-10 3.893552021e-10 2.173431428e-10 2.307418209e-10 1.860398574e-10 2.516868596e-10 1.560746005e-10 1.955709909e-10 3.434008949e-10 2.460904971e-10 2.648813588e-10 2.572903436e-10 3.239816661e-10 2.275580303e-10 1.806508054e-10 3.118607011e-10 1.156020985e-10 2.561066055e-10 2.102450888e-10 3.079769661e-10 8.301270813e-11 2.206332477e-10 2.66417473e-10 2.516495565e-10 1.311992825e-10 2.540458791e-10 1.680191053e-10 2.495972772e-10 2.384205423e-10 1.510099429e-10 1.740511864e-10 3.151347001e-10 1.480822798e-10 1.577903053e-10 2.136552233e-10 1.635407688e-10 1.553299991e-10 1.748835439e-10 8.552824736e-11 2.012297532e-10 1.114243759e-10 1.620596243e-10 1.506369041e-10 2.186646632e-10 1.051373192e-10 1.660981445e-10 8.368939084e-11 1.260547398e-10 3.273328504e-10 2.021654389e-10 2.019162711e-10 9.457737562e-11 2.511873516e-10 2.419027413e-10 1.655845633e-10 7.127288858e-11 3.113167161e-10 7.552820647e-11 1.913279995e-10 1.558846196e-10 1.28628714e-10 2.215723634e-10 6.767839812e-11 8.753818414e-11 1.138342922e-10 1.098784423e-10 3.304433931e-10 1.31839995e-10 2.087840942e-10 7.745273541e-11 1.245560217e-10 1.833760136e-10 2.135143959e-10 2.109772108e-10 1.419454135e-10 2.534051888e-10 2.113200663e-10 1.3159933e-10 1.266441882e-10 2.890023524e-10 2.699946411e-10 1.484232224e-10 9.923000918e-11 2.601604023e-10 2.785063581e-10 2.893070813e-10 2.875473088e-10 2.112748682e-10 3.570153783e-11 2.516998946e-10 1.05962743e-10 1.838451815e-10 3.027016963e-10 1.993914458e-10 1.353541571e-10 2.222080171e-10 1.019430954e-11 2.544290721e-10 2.079862552e-10 2.830943956e-10 1.467009557e-10 2.199271392e-10 1.43270788e-10 1.947495398e-10 1.892312476e-10 2.3514146e-10 1.458974012e-10 2.667328789e-10 2.133551894e-10 1.540839798e-10 1.856432929e-10 1.100524365e-10 3.6844744e-10 2.442702724e-10 4.021790849e-10 4.453241235e-10 4.26680977e-10 2.879545037e-10 2.270458549e-10 2.798879975e-10 1.836753266e-10 1.767930826e-10 3.466428408e-10 3.24612256e-10 2.90687922e-10 2.742757363e-10 1.298404725e-10 3.3693242e-10 1.004084691e-10 1.470026076e-10 2.455093641e-10 1.149531344e-10 1.172334062e-10 9.931318553e-11 1.703503467e-10 2.603716329e-10 2.618977643e-10 3.063494459e-10 2.320403031e-10 8.433505627e-11 2.61746772e-10 1.71790906e-10 5.698577042e-11 3.222440412e-10 2.377857749e-10 1.433760443e-10 1.45123537e-10 1.609930881e-10 1.413114331e-10 2.665640599e-10 1.031170592e-10 2.228854752e-10 1.644975854e-10 1.759343297e-10 1.192496779e-10 8.91183114e-11 1.938423292e-10 1.102819495e-10 1.738723314e-10 1.301069637e-10 1.34727018e-10 2.092730005e-10 2.137061479e-10 1.889251143e-10 1.476613109e-10 1.035795591e-10 1.372899893e-10 1.2574016e-10 1.69311499e-10 2.556408019e-10 1.0236646e-10 1.184178264e-10 1.419223664e-10 1.866469798e-10 2.785497478e-10 1.510448908e-10 2.872993916e-10 4.199687225e-10 9.261007676e-11 3.069083108e-10 1.897864761e-10 2.067590214e-10 1.364041525e-10 2.831723171e-10 7.290709833e-11 1.547815671e-10 2.170346627e-10 3.231872754e-10 3.359772455e-10 2.354778773e-10 2.04318385e-10 1.506092545e-10 1.227619955e-10 2.212110404e-10 1.451351971e-10 1.846668905e-10 3.957155284e-10 1.577231207e-10 9.087189446e-11 2.002680625e-10 9.351606045e-11 5.424542728e-11 1.813667362e-10 3.057987225e-10 1.408308284e-10 9.158746251e-11 2.821776245e-10 1.624813446e-10 +3.655546344e-11 3.153317703e-10 1.790561717e-10 2.240908811e-10 1.087532609e-10 1.770698004e-10 1.399860867e-10 2.109462806e-10 1.389777696e-10 1.777624529e-10 7.968803811e-11 3.368268453e-10 2.156513556e-10 1.096505055e-10 1.250084791e-10 1.923668554e-10 3.340785245e-10 1.084321858e-10 1.740718085e-10 3.130447673e-10 2.487137004e-10 1.089825234e-10 1.742689728e-10 7.444289647e-11 9.904786854e-11 2.367479205e-10 1.598445696e-10 8.472338783e-11 1.661831304e-10 1.685725863e-10 2.207333234e-10 4.214535745e-10 8.90227828e-11 1.201957783e-10 3.434574016e-10 2.585773231e-10 3.576365257e-10 1.533231319e-10 2.079387323e-10 2.563674863e-10 2.840483276e-10 1.97228739e-10 1.058197475e-10 1.522330499e-10 3.034875001e-10 2.041854992e-10 9.731629471e-11 1.171727427e-10 2.503692852e-10 2.611847308e-10 1.609456092e-10 1.05395111e-10 9.10777914e-11 6.800988064e-11 3.152675273e-10 1.330214439e-10 2.607629916e-10 6.869533468e-11 5.001378102e-11 1.579968843e-10 1.276697032e-10 9.861269626e-11 3.403485907e-10 3.47412982e-10 5.165119872e-11 8.791332152e-11 6.478581643e-11 2.548943081e-10 1.496892787e-10 2.698480076e-10 2.839635965e-10 2.00713276e-10 1.212311363e-10 3.055029287e-10 9.905448237e-11 8.69765098e-11 1.611975777e-10 1.913955754e-10 9.612773135e-11 2.514828946e-10 2.090298006e-10 1.079364464e-10 6.762904494e-11 8.040373243e-11 3.055675095e-10 2.110135352e-10 1.62909308e-10 2.583158447e-10 3.214700624e-10 3.788376922e-10 2.802692644e-10 2.897760966e-10 2.684943063e-10 3.334087165e-10 3.302105967e-10 3.585838461e-10 2.641094831e-10 2.173538789e-10 2.791837144e-10 1.02817059e-10 3.131036374e-10 2.63674394e-10 1.379296676e-10 1.627825833e-10 1.071683117e-10 1.408568061e-10 3.165688741e-10 1.281112249e-10 2.049718442e-10 2.31895974e-10 3.487631257e-10 1.582316969e-10 1.583990946e-10 1.403636141e-10 1.337394129e-10 2.574366226e-10 2.125687286e-10 1.392864272e-10 1.488209254e-10 1.779426292e-10 2.642776136e-10 8.195719004e-11 1.517799766e-10 2.634443347e-10 1.931734724e-10 2.891796007e-10 2.037326693e-10 2.055656564e-10 1.125084763e-10 2.415861111e-10 2.069322199e-10 2.054137226e-10 3.437473817e-10 1.076129753e-10 2.452484197e-10 9.862914983e-11 1.219006756e-10 2.71750924e-10 9.177766855e-11 7.591854731e-11 1.17869244e-10 1.649256723e-10 1.600933086e-10 1.807229457e-10 1.252957201e-10 1.195765134e-10 1.159480573e-10 6.419237006e-11 1.396579428e-10 8.566860391e-11 2.445018255e-10 5.027088397e-11 9.648712572e-11 1.260283326e-10 2.044975393e-10 1.616212041e-10 1.163653239e-10 2.899511521e-10 2.565509621e-11 1.773098204e-10 8.877901893e-11 1.441604376e-10 1.018186209e-10 1.222242493e-10 1.46336987e-10 1.605844247e-10 1.844064197e-10 1.914507307e-10 1.315213388e-10 1.833315787e-10 1.701636628e-10 2.665146931e-10 2.671336542e-10 1.961709428e-10 2.008009441e-10 2.33558955e-10 2.242494181e-10 1.914365366e-10 3.081835945e-10 8.461975552e-11 1.598106733e-10 1.758828331e-10 1.87748465e-10 2.342239913e-10 2.462340606e-10 1.876295308e-10 1.971368379e-10 2.092143008e-10 1.532578258e-10 2.590303252e-10 2.412042651e-10 1.904239018e-10 1.331482114e-10 1.877402392e-10 3.244607985e-10 3.554889487e-10 1.725917474e-10 1.608907006e-10 3.050083702e-10 2.841745209e-10 1.82599114e-10 3.748588101e-10 2.609287467e-10 2.067223322e-10 2.878035499e-10 1.61918461e-10 3.581223435e-10 2.417205446e-10 2.273597699e-10 4.076951504e-10 2.264582332e-10 2.61969225e-10 2.650497588e-10 1.928632774e-10 2.354292837e-10 1.063910695e-10 1.345050384e-10 2.286152007e-10 1.968151756e-10 2.089234193e-10 1.6093359e-10 1.963084306e-10 1.402602063e-10 1.515625158e-10 1.821404919e-10 1.989661144e-10 6.973526397e-11 1.09032723e-10 1.310963754e-10 2.11983382e-10 1.710598457e-10 1.660560228e-10 7.573190918e-11 1.804842097e-10 1.586431938e-10 9.982719959e-11 1.767602603e-10 1.900006879e-10 2.358696025e-10 1.353501595e-10 8.424731974e-11 1.811758262e-10 1.267233415e-10 2.312034659e-10 3.413016549e-10 6.864833882e-11 2.79184122e-10 1.763689856e-10 2.098994202e-10 1.154070543e-10 1.62617819e-10 1.71190265e-10 3.152613008e-10 7.98267229e-11 1.163624922e-10 3.14459216e-10 1.989762881e-10 1.142744923e-10 1.059078239e-10 3.120683518e-10 3.250507427e-10 1.313100445e-10 1.52797436e-10 1.642653043e-10 1.314816687e-10 1.30429585e-10 1.091450198e-10 1.838392662e-10 1.092335841e-10 1.042947324e-10 3.636864055e-10 2.824069247e-10 5.433671605e-11 1.781486999e-10 2.063597954e-10 1.196287817e-10 7.988565325e-11 3.746403796e-10 1.51757136e-10 1.519208645e-10 2.891974256e-10 9.833084634e-11 1.892508906e-10 2.542537697e-10 2.187962707e-10 5.869218419e-11 9.439422565e-11 6.104341567e-11 1.140351015e-10 9.923009759e-11 2.274751189e-10 1.586056259e-10 1.075028832e-10 2.181297783e-10 1.373303739e-10 2.467431049e-10 8.375521504e-11 1.331113241e-10 4.210964263e-10 1.789524956e-10 +2.665971552e-10 2.434512554e-10 7.562078524e-11 1.57455942e-10 1.904448445e-10 9.84961356e-11 9.946298255e-11 1.506835917e-10 1.578012849e-10 1.059705779e-10 2.641436761e-10 1.932993066e-10 4.511593976e-10 6.634499197e-11 3.673530728e-11 1.415999401e-10 3.719376099e-10 1.51797195e-10 1.869570504e-10 1.008818225e-10 8.06674033e-11 1.110337859e-10 2.03630382e-10 1.581893071e-10 9.165672427e-11 2.584989489e-10 7.931358819e-11 1.293983087e-10 2.701665398e-10 1.057295959e-10 1.902633483e-10 2.596464297e-10 2.239587423e-11 8.180862659e-11 2.737288156e-10 1.836518902e-10 1.896609218e-10 3.711779905e-10 1.898264008e-10 1.270032947e-10 1.447990139e-10 1.646909752e-10 3.636757731e-11 1.471512486e-10 1.270957922e-10 2.28777892e-10 2.081153653e-10 2.892735365e-10 3.279070972e-10 2.243931266e-10 1.731605554e-10 1.29759088e-10 2.031799354e-10 1.313916838e-10 1.532154194e-10 3.205260804e-10 2.421790264e-10 1.035168211e-10 2.082895749e-10 2.041274387e-10 2.129202635e-10 1.918604412e-10 1.501211786e-10 8.892705035e-11 1.123966698e-10 1.758593092e-10 1.291984233e-10 1.442810069e-10 1.680706952e-10 1.53583067e-10 1.615142889e-10 7.971508152e-11 1.345017929e-10 3.194821538e-10 9.960755149e-11 1.65045695e-10 2.851319676e-10 1.265906183e-10 1.765610669e-10 1.799243391e-10 2.014932134e-10 2.472216756e-10 4.667640837e-10 2.579497414e-10 1.761059928e-10 1.403386586e-10 2.37559456e-10 3.098057356e-10 9.070135961e-11 3.847032304e-10 3.090662584e-10 2.744782721e-10 3.538224814e-10 3.030738753e-10 2.302280293e-10 3.136797115e-10 3.371666707e-10 1.871478664e-10 2.611595541e-10 2.759516438e-10 2.482109018e-10 1.490303751e-10 2.67434513e-10 3.628056203e-10 2.249427533e-10 2.909267583e-10 2.438729829e-10 2.008501833e-10 3.504584726e-10 2.931644358e-10 2.955033181e-10 7.736202043e-11 1.800290995e-10 2.050129731e-10 2.214724357e-10 2.158617547e-10 3.751609067e-10 1.81015576e-10 2.107531223e-10 2.457406791e-10 2.052008427e-10 1.933091987e-10 1.030848834e-10 2.438262446e-10 1.679523925e-10 2.04631298e-10 2.399233464e-10 2.403188576e-10 1.886140852e-10 1.880820388e-10 1.166167929e-10 1.153162736e-10 1.323061615e-10 1.999154011e-10 1.821988066e-10 1.139068694e-10 1.999512405e-10 2.052561596e-10 1.378071929e-10 1.342424005e-10 1.041996535e-10 1.018161249e-10 1.35578706e-10 1.347570472e-10 6.92961245e-11 6.739751999e-11 1.455707879e-10 1.467976465e-10 9.125867014e-11 9.911435206e-11 8.149224029e-11 8.117978182e-11 7.615875021e-11 9.503823039e-11 9.787528804e-11 1.407968844e-10 9.469619802e-11 5.286219462e-11 1.664938528e-10 7.471224033e-11 6.006251124e-11 8.774300431e-11 1.288531796e-10 1.346826755e-10 8.48924915e-11 1.792933599e-10 2.862293891e-10 1.426114747e-10 1.285057963e-10 1.653465741e-10 2.18902081e-10 2.55140768e-10 1.304295332e-10 3.354650437e-10 1.256563099e-10 2.928040309e-10 1.823457574e-10 2.040335051e-10 2.908815859e-10 1.787793537e-10 2.348606216e-10 1.583824037e-10 2.551043546e-10 2.728567864e-10 3.194792355e-10 1.712629635e-10 1.983107054e-10 2.176366431e-10 3.360500397e-10 2.028938139e-10 2.26556582e-10 2.92172128e-10 3.11819617e-10 2.107090776e-10 3.106260685e-10 2.475863255e-10 2.93218092e-10 2.69507467e-10 2.599115649e-10 2.285767647e-10 4.320479697e-10 9.049221304e-11 3.183508051e-10 2.580723783e-10 2.632294788e-10 9.567384175e-11 1.894776995e-10 4.722272069e-10 2.169661343e-10 3.604360285e-10 2.640559754e-10 1.533331748e-10 1.236546089e-10 1.467600284e-10 1.997907068e-10 9.239830528e-11 2.550963257e-10 1.153019298e-10 1.616504268e-10 8.820623097e-11 2.955735214e-10 1.296368667e-10 1.877905694e-10 1.302737811e-10 2.299237501e-10 2.025014884e-10 1.876089008e-10 1.328349714e-10 1.74804138e-10 1.312587947e-10 1.931309674e-10 1.385957653e-10 1.961507268e-10 1.36684417e-10 1.34186722e-10 3.814300602e-10 3.134907949e-10 2.248983059e-10 1.558625152e-10 2.042831178e-10 9.520497909e-11 1.765964837e-10 1.383568226e-10 1.27032791e-10 1.214202519e-10 2.729662574e-10 2.006178882e-10 8.974913204e-11 2.219369139e-10 2.400151662e-10 1.385595031e-10 2.35003918e-10 2.244935924e-10 1.240161299e-10 1.719126897e-10 1.444341695e-10 8.278874315e-11 2.203538069e-10 1.177835187e-10 4.789763295e-10 2.254530452e-10 7.743771445e-11 3.568627028e-10 1.2604444e-10 5.138744752e-11 4.189860046e-10 1.17103905e-10 1.046940706e-10 1.342033547e-10 1.872039516e-10 1.728152733e-10 2.729704454e-10 1.482482406e-10 2.21384807e-10 2.597513e-10 7.331981968e-11 1.691999374e-10 1.867388306e-10 2.228662934e-10 1.672204114e-10 1.410656902e-10 3.090498239e-10 2.76021383e-10 2.708594721e-10 1.244693459e-10 2.276921151e-10 2.079388289e-10 1.660933804e-10 1.535958089e-10 2.836186682e-10 2.207353621e-10 4.017521687e-10 9.942209173e-11 7.226426264e-11 1.647249394e-10 8.839503988e-11 2.17387271e-10 2.983970133e-10 2.097031903e-10 9.659079541e-11 +1.103818979e-10 1.724070422e-10 1.511287991e-10 8.183886894e-11 2.143665093e-10 1.464026138e-10 1.776225587e-10 1.980808805e-10 1.207533639e-10 1.376277955e-10 3.795684869e-10 7.354420262e-11 1.677770619e-10 1.714585555e-10 2.426637445e-10 3.685577897e-10 1.566577304e-10 3.690307698e-10 1.870704032e-10 1.178132719e-10 1.134042791e-10 1.819495207e-10 2.628592353e-10 1.941140963e-10 1.510607121e-10 1.041773109e-10 1.447405718e-10 1.127923865e-10 1.656500504e-10 9.929828352e-11 4.880344903e-11 1.82857362e-10 2.049650818e-10 1.454968763e-10 1.331563589e-10 1.149110069e-10 2.105061679e-10 1.740659926e-10 3.43943979e-10 1.573364278e-10 1.269485163e-10 4.791974861e-11 2.544038264e-10 2.449860042e-10 1.561587703e-10 1.724628621e-10 1.650133928e-10 1.207083545e-10 2.236971971e-10 1.316088946e-10 2.593520654e-10 1.186768433e-10 1.592333071e-10 2.45025702e-10 1.384675612e-10 1.069813631e-10 1.033625162e-10 1.04197867e-10 1.887801984e-10 1.546394947e-10 9.51914264e-11 1.766107467e-10 2.014370987e-10 2.179946743e-10 2.526960437e-10 2.223798683e-10 6.948311253e-11 1.708163565e-10 1.508383398e-10 2.45468524e-10 1.740942552e-10 8.3541419e-11 1.752533135e-10 1.271445901e-10 1.627757007e-10 9.05421061e-11 1.06288817e-10 1.416232986e-10 1.602614069e-10 1.382912015e-10 1.757405725e-10 3.699176869e-11 2.104539756e-10 2.271296959e-10 2.754201236e-10 1.846872244e-10 6.735378286e-11 2.814249742e-10 2.254654616e-10 2.048119489e-10 3.199872588e-10 3.094100017e-10 3.318337183e-10 2.514203662e-10 2.72452784e-10 3.944112651e-10 4.480273995e-10 2.50440685e-10 4.364893501e-10 3.702430823e-10 3.287571636e-10 1.525604758e-10 3.64657132e-10 1.495582282e-10 1.303985339e-10 1.33916535e-10 3.315286279e-10 2.484982386e-10 1.035294262e-10 3.405294466e-10 2.711730962e-10 2.790955136e-10 3.269370973e-10 1.530255078e-10 1.330490889e-10 7.944430309e-11 1.872426894e-10 1.948815064e-10 3.07115078e-10 1.03286037e-10 1.342694069e-10 1.997747508e-10 1.830552914e-10 1.503869988e-10 2.409075098e-10 1.499172629e-10 1.617760048e-10 5.833497273e-11 2.239320147e-10 7.256502008e-11 1.004854492e-10 2.017421858e-10 9.048507896e-11 2.039815718e-10 1.146232632e-10 1.509021661e-10 8.89586812e-11 8.594179055e-11 7.895229247e-11 1.159754441e-10 1.545358149e-10 1.387345663e-10 1.656127419e-10 1.294839063e-10 2.030009702e-10 3.911786073e-11 1.134944301e-10 3.862999682e-11 2.820211599e-11 1.321872046e-10 9.103581526e-11 6.885013335e-11 7.573576953e-11 1.055043904e-10 5.892866301e-11 8.165502411e-11 2.372953134e-10 1.541633939e-10 1.553218018e-10 1.201129736e-10 1.387542432e-10 3.441866692e-10 8.350770026e-11 1.404309902e-13 1.356688553e-10 1.78466723e-10 1.01496136e-10 8.371971267e-11 2.173686638e-10 7.328828392e-11 1.070336742e-10 3.305533045e-11 1.816992669e-10 2.56864215e-10 1.459679016e-10 1.58882223e-10 1.18846397e-10 2.670306128e-10 1.754059456e-10 2.143620379e-10 2.066609375e-10 2.084742068e-10 2.595267534e-10 2.4031545e-10 1.542229071e-10 2.108376986e-10 2.182137343e-10 3.562144436e-10 2.851726174e-10 1.702207088e-10 1.932331245e-10 2.824362e-10 2.629590956e-10 2.636153168e-10 1.879023758e-10 2.513710602e-10 3.015715473e-10 3.500703532e-10 2.950105872e-10 3.176623732e-10 3.121454497e-10 3.420041687e-10 2.894917389e-10 3.820799427e-10 1.702139489e-10 1.768292885e-10 2.126316962e-10 1.708143687e-10 1.945007191e-10 3.175908745e-10 3.500463303e-10 9.164135338e-11 2.767255466e-10 1.832628308e-10 2.106788183e-10 1.943718274e-10 1.4365691e-10 2.070691709e-10 2.118051973e-10 1.813591353e-10 9.722715426e-11 2.360145156e-10 1.401773032e-10 1.310998273e-10 1.367191361e-10 2.038632009e-10 1.66295067e-10 1.960175589e-10 1.280154941e-10 2.186150146e-10 1.273030132e-10 2.799246295e-10 1.239683337e-10 2.177124873e-10 2.642411544e-10 2.723766899e-10 1.773416536e-10 2.962399805e-10 2.376268038e-10 2.206002476e-10 1.607486308e-10 2.362765789e-10 2.866675218e-10 1.231857801e-10 2.798253972e-10 2.239976059e-10 2.363205329e-10 1.130565543e-10 2.272724864e-10 1.395245107e-10 8.950412544e-11 2.528524368e-10 1.849710361e-10 9.565117105e-11 1.666400456e-10 2.247854219e-10 2.143024617e-10 2.198641994e-10 1.96797987e-10 6.704917377e-11 1.936372548e-10 1.457311729e-10 2.512327632e-10 2.712590929e-10 9.839941728e-11 1.185522412e-10 2.575093761e-10 8.762925459e-11 1.701022669e-10 3.906712861e-10 1.232001737e-10 8.789063015e-11 1.072814697e-10 8.957151094e-11 2.041927412e-10 2.17924029e-10 1.187169189e-10 2.094988121e-10 1.602919381e-10 1.0425797e-10 1.173709449e-10 2.908993742e-10 1.589738748e-10 1.89537537e-10 3.10700097e-10 1.484196554e-10 2.833657964e-10 3.70699068e-10 1.440037207e-10 2.244912568e-10 2.965040069e-10 9.014031822e-11 1.228038175e-10 2.418091063e-10 9.76650267e-11 2.382137701e-10 1.722777719e-10 1.867779408e-10 3.437610495e-10 1.942402855e-10 +1.180573305e-10 2.73080333e-10 2.755731236e-10 1.450171797e-10 1.43243397e-10 1.499167716e-10 1.091580101e-10 2.883283416e-10 9.571282622e-11 1.879362081e-10 3.695407541e-10 3.006167465e-10 4.639860124e-10 1.908796944e-10 8.667752832e-11 1.935952894e-10 1.735051735e-10 3.02240239e-10 1.196924683e-10 1.572671572e-10 4.162421814e-11 2.586923954e-10 1.213793803e-10 3.195354783e-10 2.294277999e-11 2.678142966e-10 1.336639914e-10 2.959520952e-10 1.478923947e-10 9.812398015e-11 2.896627975e-10 1.453926385e-10 1.681007007e-10 9.988156699e-11 1.992031879e-10 2.091475318e-10 1.102540007e-10 7.030625108e-11 1.334221337e-10 1.534337103e-10 1.842752833e-10 1.565492001e-10 1.473665653e-10 1.292265845e-10 5.245413955e-11 6.762259219e-11 2.268050593e-10 1.719181416e-10 1.183115332e-10 1.980299124e-10 4.140368705e-10 3.511339802e-10 1.693608692e-10 2.14692143e-10 7.885097857e-11 2.899803654e-10 2.730541033e-10 2.277853548e-10 2.975673062e-10 2.516239391e-10 1.727005343e-10 1.756066674e-10 5.824191167e-11 1.712270479e-10 2.440476101e-10 1.0672541e-10 2.207148398e-10 1.851483164e-10 1.356711201e-10 2.395539089e-10 1.308151171e-10 1.687201905e-10 1.84268118e-10 1.073028637e-10 8.095167879e-11 1.602894387e-10 1.245110264e-10 7.695878089e-11 1.669471365e-10 6.585116006e-11 1.682983006e-10 3.290014282e-10 1.8424181e-10 1.187532989e-10 2.657675413e-10 3.086724342e-10 2.445872973e-10 1.819302583e-10 1.44292834e-10 1.580979038e-10 2.727549629e-10 3.269917124e-10 2.482576593e-10 2.0649877e-10 4.114066107e-10 3.442271909e-10 3.089071642e-10 2.076320641e-10 3.286589831e-10 3.390584309e-10 3.295716606e-10 2.227391739e-10 2.66502145e-10 2.372190456e-10 1.832900496e-10 4.557081733e-10 1.936409387e-10 1.659309189e-10 2.132179172e-10 1.456927006e-10 1.828733773e-10 2.278194947e-10 2.282555561e-10 2.614373616e-10 1.278942155e-10 3.672688845e-10 2.566408285e-10 1.733516222e-10 2.391804305e-10 3.269187888e-10 2.463312636e-10 1.792071453e-10 2.135996565e-10 1.034892505e-10 1.737381836e-10 2.076451591e-10 1.493469404e-10 1.286390228e-10 2.418047512e-10 1.251241423e-10 1.649547546e-10 1.159694404e-10 1.258735968e-10 7.965519425e-11 5.256382241e-11 9.962587542e-11 3.397177302e-11 9.086870634e-11 1.316238629e-10 1.373016454e-10 1.160185602e-10 1.4279101e-10 9.835725406e-11 1.535656061e-10 7.724363119e-11 1.110093215e-10 3.968360893e-11 1.900211179e-10 6.237934922e-11 8.252209083e-11 6.641284428e-11 2.797762008e-10 7.278788013e-11 1.163705657e-10 1.051276503e-10 6.169034829e-11 1.196221302e-10 8.575463458e-11 7.306008861e-11 1.541258892e-10 9.269611269e-11 1.222950076e-10 1.724998838e-10 1.215623924e-10 2.095180977e-10 1.406832388e-10 9.311387809e-11 1.088405921e-10 1.684348833e-10 6.029746564e-11 1.720355764e-10 1.427842476e-10 3.689986758e-10 1.436346836e-10 2.152185826e-10 3.272280301e-10 2.931542358e-10 3.000613852e-10 1.448512377e-10 1.241501723e-10 1.614145629e-10 1.31544955e-10 2.354525386e-10 1.405039857e-10 1.511735504e-10 2.955916772e-10 1.707849589e-10 2.207652449e-10 2.191013387e-10 1.690406705e-10 2.396777423e-10 1.259300243e-10 3.343204459e-10 1.282708968e-10 3.47699918e-10 3.050438538e-10 1.856608589e-10 2.61723979e-10 4.061092781e-10 3.021069513e-10 4.231807435e-10 2.939870899e-10 2.094882128e-10 3.998467206e-10 1.763782612e-10 2.011062986e-10 2.912079978e-10 2.798711549e-10 2.83757123e-10 2.35802905e-10 2.53909291e-10 2.095947066e-10 4.550242801e-10 3.87652812e-10 1.648697619e-10 1.423161912e-10 1.001726505e-10 1.024297248e-10 1.514757243e-10 2.661276886e-10 1.28778656e-10 1.632068167e-10 1.471457193e-10 1.841817086e-10 1.864902927e-10 2.309240156e-10 3.143732245e-10 2.151733563e-10 2.802873848e-10 8.378899788e-11 1.593476957e-10 2.541228568e-10 8.089965752e-11 1.737605132e-10 1.997795901e-10 2.085270835e-10 2.863516413e-10 1.407007469e-10 9.40390636e-11 2.263525384e-10 7.675812531e-11 1.046041972e-10 2.511557779e-10 5.918397372e-11 1.07588923e-10 2.213787322e-10 2.623321636e-10 2.279637639e-10 2.069248821e-10 1.012757121e-10 6.57963133e-11 2.744251869e-10 9.805003016e-11 2.248742432e-10 3.068934918e-10 2.107011741e-10 1.017982777e-10 7.972806696e-11 1.943269499e-10 5.144424186e-11 2.695295013e-10 2.496905569e-10 1.441960772e-10 1.649224628e-10 1.322324001e-10 2.412863053e-10 1.29216993e-10 8.457419919e-11 1.590671112e-10 2.263749042e-10 3.510664284e-10 3.462860731e-10 1.155194572e-10 1.633188427e-10 1.4952152e-10 1.623984787e-10 1.840502572e-10 2.899988993e-10 1.431387612e-10 1.158691922e-10 1.363486389e-10 4.140517612e-10 1.346446369e-10 1.900107278e-10 1.170023845e-10 1.114379015e-10 8.365747486e-11 1.492714648e-10 2.629545975e-10 2.423957402e-10 6.547704181e-11 1.196688896e-10 1.574783827e-10 1.55618708e-10 2.477773347e-10 1.905797147e-10 1.779221594e-10 6.460287589e-11 1.359434301e-10 2.419410433e-10 +8.894422103e-11 1.362189954e-10 8.1525308e-11 2.826876396e-10 1.451228145e-10 6.045908187e-11 1.095603151e-10 1.883963586e-10 1.056776691e-10 3.952698509e-10 2.007370955e-10 2.339456361e-10 3.539165474e-10 2.642716129e-10 1.261405661e-10 3.649536892e-10 2.035294394e-10 3.97229764e-10 1.75724657e-10 2.480226551e-10 2.78482026e-10 1.966757248e-10 3.009516016e-10 1.019543427e-10 1.765518017e-10 1.77361636e-10 2.439389209e-10 1.651762071e-10 1.063604638e-10 1.385368867e-10 1.82101536e-10 6.73707042e-11 3.385020529e-10 5.727142376e-11 7.210716904e-11 1.315481821e-10 8.905369185e-11 4.001831269e-10 1.603288482e-10 4.70064778e-11 2.433842243e-10 2.322657491e-10 2.002528974e-10 2.187367022e-10 1.203216202e-10 1.403769572e-10 1.464103015e-10 2.505082947e-10 2.796355472e-10 2.08597405e-10 2.106589866e-10 7.397173025e-11 2.075146429e-10 2.34572178e-10 2.590633175e-10 3.004593519e-10 2.179994471e-10 2.337776464e-10 1.949044009e-10 3.794741829e-10 1.797968328e-10 1.706128521e-10 2.363061465e-11 2.743676698e-10 2.170024215e-10 2.266491192e-10 1.43326389e-10 1.176219394e-10 1.152751425e-10 2.991861296e-10 3.752819026e-10 1.38606922e-10 3.115033299e-10 3.562643575e-10 1.767850191e-10 2.864640152e-10 1.840330467e-10 1.283274498e-10 1.901302312e-10 2.591113306e-10 1.377627827e-10 1.168038887e-10 2.147022444e-10 2.870758407e-10 2.392741428e-10 2.165801758e-10 1.720345207e-10 3.398928434e-10 2.469654818e-10 2.499454034e-10 2.044143503e-10 2.135247588e-10 2.463691403e-10 1.944203016e-10 2.689166683e-10 2.449538887e-10 2.230237786e-10 2.371146863e-10 2.754786391e-10 2.075341243e-10 2.80353207e-10 3.998165008e-10 2.197200912e-10 2.832754888e-10 1.928760844e-10 2.207595532e-10 3.836952541e-10 2.080486912e-10 3.15057084e-10 1.878357356e-10 2.977224803e-10 5.13702206e-11 2.438684056e-10 1.926587426e-10 1.707236426e-10 2.358164956e-10 2.193690098e-10 2.905807905e-10 2.479362674e-10 1.987580462e-10 1.818875491e-10 1.516332317e-10 2.412548217e-10 2.171748259e-10 1.605546081e-10 1.712726038e-10 2.243862998e-10 9.912709208e-11 6.869783018e-11 1.410668593e-10 5.817823154e-11 1.228821362e-10 3.077642746e-10 1.14845071e-10 1.493565255e-11 9.390408101e-11 4.172358535e-11 1.000648382e-10 1.352852087e-10 4.233483389e-11 8.80315424e-11 1.162774311e-10 1.126656225e-10 1.165079404e-10 1.753925403e-10 3.530878626e-11 1.114342668e-10 1.302310703e-10 1.864806467e-10 8.138169689e-11 2.41781382e-10 6.136047426e-11 1.226859695e-10 1.546950514e-10 2.385718212e-10 1.70947864e-10 7.369796697e-11 1.219723976e-10 1.26939365e-10 1.321877343e-11 1.10033851e-10 1.062001896e-10 1.386862008e-10 1.216983661e-10 1.666149343e-10 2.904433137e-10 1.542593941e-10 4.587957327e-11 1.151571785e-10 1.899593448e-10 4.213851759e-11 2.589462472e-10 1.074500557e-10 1.337596892e-10 1.463324282e-10 1.615260121e-10 1.232253647e-10 2.666982396e-10 2.392245448e-10 1.894306253e-10 2.391700863e-10 3.013165421e-10 2.426998968e-10 2.775046169e-10 2.207916173e-10 2.556865609e-10 2.078389271e-10 2.360943536e-10 1.771024878e-10 2.790837182e-10 1.600908267e-10 1.664624568e-10 2.073127716e-10 2.490249912e-10 2.889422536e-10 2.659689366e-10 2.38403189e-10 2.470213391e-10 2.293401616e-10 2.351559279e-10 1.54078777e-10 2.639041029e-10 3.005171786e-10 1.883607644e-10 3.321279976e-10 2.513290333e-10 1.423205786e-10 2.33367534e-10 2.093871563e-10 2.277618015e-10 2.761815397e-10 3.038116711e-10 2.093790318e-10 5.77271597e-11 3.297991896e-10 1.783297961e-10 1.905533315e-10 1.855766408e-10 2.173122825e-10 2.035902638e-10 1.338265493e-10 1.491898897e-10 2.072733717e-10 1.195201746e-10 1.73171005e-10 8.98110405e-11 8.605633081e-11 1.906155666e-10 2.34829186e-10 2.142673372e-10 2.111633824e-10 2.22218309e-10 2.214502286e-10 2.081910592e-10 3.189734478e-10 3.069368004e-10 2.599351888e-10 1.605266155e-10 1.082412433e-10 2.025715094e-10 2.567959959e-10 1.554290971e-10 1.056568366e-10 1.307583854e-10 1.413609436e-10 4.150993273e-10 1.318727213e-10 2.550477603e-10 8.700884108e-11 2.270984676e-10 1.006699879e-10 1.127022315e-10 2.547894272e-10 2.497549898e-10 1.844286463e-10 1.450355638e-10 2.003699511e-10 8.369929554e-11 6.936426023e-11 2.579615887e-10 2.084776817e-10 5.934509133e-11 1.809649007e-10 1.29236396e-10 1.93183981e-10 2.99165905e-10 2.148439263e-10 1.797127727e-10 3.555544249e-10 1.259337557e-10 1.673086824e-10 1.322150434e-10 2.00905442e-10 7.399138833e-11 5.528335866e-11 1.653746342e-10 1.233866954e-10 1.267191963e-10 1.428027928e-10 3.932227912e-10 8.233508893e-11 3.833268251e-10 2.125516812e-10 1.070502811e-10 4.917598472e-11 7.801339093e-11 2.83409726e-10 2.238078089e-10 2.161861573e-10 1.230239587e-10 3.818327531e-10 1.14687643e-10 8.517503637e-11 1.28605445e-10 1.235175845e-10 2.513123383e-10 1.468893147e-10 1.176800051e-10 1.079284245e-10 8.602904476e-11 +2.426770955e-10 9.528657266e-11 1.409996796e-10 9.71591289e-11 1.662970102e-10 8.790472978e-11 2.786641856e-10 1.073871852e-10 1.125323841e-10 7.479860228e-11 8.985635449e-11 8.146591272e-11 2.180619078e-10 1.791971067e-10 1.605745157e-10 1.79247339e-10 1.0409974e-10 1.567315323e-10 1.621617697e-10 2.173553743e-10 2.059225651e-10 2.277872826e-10 1.605954523e-10 1.065614449e-10 1.789415924e-10 2.027804155e-10 3.41070546e-10 2.572476181e-10 3.694528521e-10 3.858216491e-10 1.269434107e-10 1.450614413e-11 2.870173525e-10 1.75229409e-10 1.378652465e-10 2.190356596e-10 2.327429644e-10 1.635914106e-10 2.361080313e-10 6.485359344e-11 3.65028207e-10 2.584424891e-11 2.384694424e-10 1.798923315e-10 1.493347169e-10 1.683497066e-10 9.536698177e-11 8.254624275e-11 1.255724372e-10 9.37246941e-11 2.900932038e-10 3.129645413e-10 1.330319608e-10 1.887981313e-10 1.045622054e-10 2.52283275e-10 2.85259849e-10 1.749264026e-10 2.589120307e-10 2.266974204e-10 1.853847996e-10 2.774286864e-10 1.218414723e-10 2.08328754e-10 2.003528824e-10 2.054970671e-10 1.769972998e-10 2.013035773e-10 3.366620219e-10 2.160214907e-10 2.434938547e-10 1.228147075e-10 1.043037481e-10 1.683865323e-10 1.112819933e-10 1.870848483e-10 7.570941138e-11 4.567556e-10 1.507646876e-10 2.792943074e-10 2.366054747e-10 1.472554863e-10 2.53232049e-10 1.320102959e-10 1.518735844e-10 2.879752127e-10 3.286349258e-10 3.208414477e-10 2.516972824e-10 3.089317281e-10 2.837335991e-10 3.033594902e-10 2.866303763e-10 2.353803603e-10 1.956539619e-10 2.178383852e-10 3.911090764e-10 2.463201374e-10 2.954734077e-10 3.018830035e-10 2.340511288e-10 2.648142939e-10 1.877536722e-10 2.017515791e-10 1.454856562e-10 2.537556445e-10 2.513374625e-10 2.334515486e-10 2.174066839e-10 1.29245365e-10 1.425989462e-10 1.643880048e-10 9.535316978e-11 2.749571662e-10 2.951533531e-10 9.874784128e-11 2.818844272e-10 3.283812252e-10 2.006371316e-10 1.987393616e-10 3.076881903e-10 1.662670314e-10 4.013276121e-11 2.026332644e-10 1.701980192e-10 1.445516214e-10 1.059531726e-10 1.501221748e-10 1.193582572e-10 1.657026919e-10 1.740207268e-10 1.510166971e-10 2.893968693e-10 6.471212208e-11 2.541636129e-11 1.147566493e-10 1.998977798e-10 1.357821569e-10 1.371298123e-10 1.067240499e-10 1.587137513e-10 6.278054841e-11 1.506150862e-10 1.551578101e-10 9.38664054e-11 1.295227775e-10 1.502328133e-10 1.284937718e-10 7.791626629e-11 2.921877972e-10 9.652280435e-11 2.772503037e-10 2.807333987e-10 1.589161603e-10 1.024567867e-10 9.099886596e-11 9.229538488e-11 1.820402686e-10 1.273970855e-10 1.187554254e-10 6.017732057e-11 1.465113807e-10 2.624443178e-10 2.134170353e-10 3.57140916e-10 1.242160011e-10 1.368874494e-11 1.233716634e-10 7.143433321e-11 1.046787299e-11 3.886598744e-11 1.574893149e-10 2.330353506e-10 2.600412415e-10 1.482966103e-10 4.063652425e-10 1.648606887e-10 1.498431774e-10 2.17346252e-10 1.90284851e-10 2.415413971e-10 2.584588381e-10 3.014726053e-10 2.036920545e-10 1.485520758e-10 2.488736021e-10 1.251404611e-10 2.182640119e-10 1.810058846e-10 1.821284886e-10 2.079364565e-10 3.083642654e-10 1.240016491e-10 1.353315405e-10 1.516476374e-10 2.279525588e-10 2.921068372e-10 2.154905612e-10 2.629385059e-10 2.324458491e-10 1.642287467e-10 2.626065382e-10 3.027200637e-10 2.014482512e-10 3.512073761e-10 2.269837741e-10 1.732001835e-10 2.297010169e-10 3.593416177e-10 3.597476699e-10 2.382496492e-10 2.248472416e-10 4.189812689e-10 3.024008645e-10 2.958252085e-10 1.546810071e-10 1.938961365e-10 1.793411459e-10 2.000471822e-10 1.913759136e-10 2.035152315e-10 1.70947147e-10 1.497007126e-10 2.123567195e-10 1.684700306e-10 1.611255454e-10 2.554305911e-10 1.703035351e-10 2.638677076e-10 1.632405931e-10 1.498379389e-10 2.385302241e-10 3.487837394e-10 1.285564277e-10 1.344751902e-10 2.378814063e-10 1.834197438e-10 1.536053376e-10 2.433004894e-10 1.670014396e-10 1.637253303e-10 2.279149243e-10 7.448898715e-11 1.551207293e-10 1.460377617e-10 2.270736907e-10 2.027413921e-10 1.754885788e-10 2.419469722e-10 1.230571918e-10 1.519722479e-10 3.289061065e-10 2.427110763e-10 1.913349703e-10 2.141098569e-10 9.393024924e-11 1.088703544e-10 8.505259687e-11 3.907873516e-10 8.12725466e-11 3.541294977e-10 1.238798527e-10 3.701672254e-10 2.631800128e-10 1.223726719e-10 8.818212493e-11 1.47333666e-10 1.158731446e-10 1.063630715e-10 1.705342497e-10 1.125053106e-10 1.496583014e-10 2.1750675e-10 1.437390827e-10 1.472852524e-10 2.876665066e-10 8.610035563e-11 6.537195446e-11 1.015435596e-10 1.403430684e-10 1.273653461e-10 1.436633416e-10 1.90562455e-10 2.765673691e-10 1.385680121e-10 2.217229927e-10 1.123873332e-10 1.730960213e-10 2.734656567e-10 7.365282914e-11 2.221881653e-10 1.932161218e-10 1.677368015e-10 2.096960202e-10 1.340736603e-10 1.926078189e-10 1.751527559e-10 2.095807072e-10 9.285191826e-11 3.630150998e-10 +7.502215572e-11 3.309212888e-10 1.286083637e-10 1.260853421e-10 1.592918031e-10 6.490659968e-11 2.13466073e-10 2.931053575e-10 1.335169801e-10 5.216593138e-11 2.096846821e-10 4.395609526e-11 1.99730386e-10 1.756746761e-10 2.001816627e-10 1.09507295e-10 1.637147596e-10 3.97755677e-10 2.012482405e-10 4.992177471e-11 1.537545706e-10 8.308468288e-11 2.152077189e-10 1.688041549e-10 4.215908607e-10 2.126490083e-10 9.768554375e-11 1.568751389e-10 1.351966046e-10 1.61474753e-10 2.449841886e-10 6.97292244e-11 1.801723753e-10 6.796419345e-11 1.156720577e-10 3.492785266e-11 2.744242536e-10 2.201042913e-10 9.976902281e-11 2.17196751e-10 8.213921352e-11 1.008510114e-10 9.717958085e-11 3.062489948e-10 2.072778212e-10 1.794633328e-10 2.730064716e-10 1.74182682e-10 1.603483484e-10 1.380884344e-10 1.317436293e-10 1.465802945e-10 2.947742229e-10 1.548967374e-10 1.411941732e-10 2.651600435e-10 1.840155536e-10 2.059893101e-10 1.627541105e-10 1.750654481e-10 1.440858551e-10 2.246559317e-10 5.006885688e-11 1.854480535e-10 2.574019363e-10 3.133501992e-10 1.627090588e-10 1.026993089e-10 2.638183629e-10 2.239328394e-10 1.183585958e-10 1.981122179e-10 7.491137293e-11 1.551938223e-10 1.764474347e-10 1.346912185e-10 1.459010793e-10 1.006662924e-10 1.462601606e-10 1.527326303e-10 9.539760657e-11 1.412969001e-10 2.832201369e-10 3.649539752e-10 1.672310681e-10 2.036504553e-10 2.814580026e-10 3.198876098e-10 2.991427334e-10 2.806526953e-10 2.986450968e-10 3.424977928e-10 2.060638069e-10 2.68777161e-10 3.351968725e-10 2.883370485e-10 2.523046872e-10 2.4376178e-10 1.829107139e-10 2.43232675e-10 1.836129729e-10 1.937967473e-10 1.944831291e-10 1.591596568e-10 3.08047354e-10 2.734240203e-10 3.096530002e-10 2.582565904e-10 2.353675179e-10 2.220253427e-10 1.627196637e-10 4.33190991e-10 2.75172623e-10 2.26619185e-10 2.837446711e-10 2.140473959e-10 3.018935741e-10 1.786636717e-10 1.513027603e-10 2.197250401e-10 1.3595088e-10 1.793289276e-10 1.448839271e-10 2.081413344e-10 1.43304565e-10 1.043044587e-10 1.625938369e-10 1.82983206e-10 1.392187418e-10 8.638365669e-11 5.240750854e-11 4.399005293e-11 2.295311881e-10 1.108669912e-10 1.185184606e-10 6.001449114e-11 1.228078244e-10 1.397422884e-10 1.083769603e-10 9.492827625e-11 2.537964797e-10 2.057506102e-10 1.55111333e-10 2.010663746e-10 1.536951995e-10 1.820145433e-10 1.739278317e-10 1.477093471e-10 7.942405104e-11 1.506160678e-10 1.316031374e-10 1.106374832e-10 1.676419579e-10 1.270493306e-10 1.254825934e-10 1.540144393e-10 2.453898576e-10 1.39232366e-10 8.954018321e-11 2.323040107e-10 1.476368132e-10 6.018519632e-11 1.086951923e-10 1.659179197e-10 1.706338123e-10 3.266321743e-11 1.146087157e-10 3.551468535e-11 1.928981374e-10 9.209952179e-11 9.450849701e-11 1.230997385e-10 9.932356246e-11 1.097015445e-10 1.151289662e-10 1.394085257e-10 1.925165792e-10 2.345009507e-10 6.361578978e-11 2.65104616e-10 2.779065926e-10 2.711832607e-10 2.123124475e-10 1.176362963e-10 2.66199364e-10 3.264505323e-10 1.77863501e-10 3.3157544e-10 3.966531232e-10 1.650041264e-10 2.106138498e-10 2.33637771e-10 2.313964247e-10 2.530632419e-10 2.969171933e-10 1.548183845e-10 1.720459084e-10 1.859402899e-10 4.148982684e-10 2.781269232e-10 2.939216445e-10 2.457503932e-10 1.321101468e-10 2.433305468e-10 1.81815079e-10 3.058541537e-10 2.922855779e-10 1.762305781e-10 3.082309036e-10 2.146047415e-10 2.848037617e-10 2.712634055e-10 1.995906036e-10 1.70013266e-10 2.930142847e-10 2.203774458e-10 1.596177892e-10 3.393069218e-10 2.423833864e-10 1.589680847e-10 2.068181393e-10 1.387673159e-10 6.68892764e-11 7.349636981e-11 3.118338745e-10 1.699131744e-10 1.666502213e-10 3.251866583e-10 3.705592345e-10 2.219593582e-10 1.194735418e-10 1.834590816e-10 1.117195725e-10 3.13375908e-10 1.156221112e-10 1.490263147e-10 3.418857498e-10 1.79516511e-10 9.629912543e-11 2.574770377e-10 2.25040068e-10 3.399029128e-10 1.611604923e-10 2.734374423e-10 1.537131335e-10 2.443583523e-10 1.96135646e-10 1.761689251e-10 1.409569549e-10 1.286196914e-10 2.251150143e-10 2.327687736e-10 1.164773909e-10 1.051568274e-10 6.756326064e-11 2.677048636e-10 1.511638608e-10 2.56775989e-10 1.396199079e-10 1.375751479e-10 7.887892007e-11 2.305586739e-10 9.34312448e-11 1.650279765e-10 1.117769756e-10 3.255187945e-10 1.658192542e-10 2.031684111e-10 7.260613552e-11 1.535175673e-10 8.335982615e-11 3.978365137e-10 2.388870202e-10 1.674586948e-10 2.780228637e-10 2.138338981e-10 1.848591607e-10 1.714917568e-10 2.296268152e-10 8.59759037e-11 3.819382165e-10 1.513780303e-10 3.000718952e-10 1.85295181e-10 1.970072294e-10 2.143790729e-10 2.547344791e-10 2.282363929e-10 1.193952375e-10 2.671302168e-10 2.318989353e-10 1.805040796e-10 1.703308377e-10 3.463902014e-10 1.581572684e-10 5.769071093e-11 1.255661308e-10 5.345456586e-11 2.786487987e-10 4.234106166e-10 +6.238291181e-11 1.846223296e-10 1.23901624e-10 3.149255663e-10 1.673829503e-10 2.506505183e-10 1.975905557e-10 1.083770869e-10 3.065113166e-10 8.922317819e-11 1.868652208e-10 6.759243012e-11 1.379657653e-10 2.32404075e-10 2.015607868e-10 2.019522522e-10 1.382211456e-10 1.034205777e-10 2.667145361e-10 1.301699336e-10 2.028707097e-10 2.031867305e-10 1.41618851e-10 1.643055381e-10 3.493341451e-10 9.839035218e-11 1.359981124e-10 2.293642544e-10 2.601252728e-10 1.436870234e-10 1.932563366e-10 2.189463685e-10 1.425132369e-10 3.316913647e-10 3.139941957e-10 1.976700111e-10 2.808863376e-10 8.688455623e-11 1.152920388e-10 1.861308914e-10 2.538318871e-10 8.333144708e-11 3.075274186e-10 2.415913147e-10 1.947147741e-10 1.922156509e-10 2.28580668e-10 5.900972669e-11 2.008356412e-10 3.11261775e-10 1.015711621e-10 1.984723564e-10 5.463804421e-11 1.164814675e-10 2.772700125e-10 1.517768727e-10 1.721453146e-10 7.161787196e-11 2.498992733e-10 2.294654283e-10 2.79615846e-10 1.867643792e-10 2.07038574e-10 2.419351063e-10 2.905199018e-10 2.658944403e-10 1.831894743e-10 2.164052205e-10 1.966058416e-10 9.150415201e-11 2.687102141e-10 1.771515762e-10 1.84094845e-10 2.252121673e-10 1.59161309e-10 3.173904576e-10 2.227434492e-10 2.032155637e-10 2.221175396e-10 2.257348279e-10 1.530699946e-10 1.093395384e-10 4.695856682e-11 3.119486509e-10 2.412529754e-10 2.049921437e-10 2.635746026e-10 2.824425825e-10 2.823194651e-10 3.42096703e-10 4.107943568e-10 2.390845432e-10 2.532163534e-10 3.55991855e-10 2.224066052e-10 2.28971314e-10 3.220654179e-10 3.778070755e-10 2.295289086e-10 2.829852058e-10 1.662870772e-10 3.22781634e-10 2.464650258e-10 2.41280087e-10 2.65228126e-10 1.814575851e-10 1.338074791e-10 2.429571118e-10 1.413856412e-10 2.130500404e-10 2.940350848e-10 1.776107617e-10 1.625893508e-10 1.534256414e-10 1.951289741e-10 1.659002065e-10 2.91741747e-10 2.939193223e-10 1.341472406e-10 2.150286496e-10 2.402997049e-10 1.888831469e-10 2.501070983e-10 9.557123786e-11 7.313370412e-11 2.102586999e-10 1.157679723e-10 1.123073483e-10 1.618711153e-10 1.167121738e-10 2.861247438e-10 1.217463614e-10 1.546812061e-10 4.11999533e-11 9.914307857e-11 1.190455349e-10 1.911657435e-10 9.408421186e-11 1.679447168e-10 1.295707483e-10 2.145919392e-10 1.445639354e-10 9.476769722e-11 2.601942606e-10 2.52548261e-10 3.248605355e-10 1.059123158e-10 2.137753113e-10 1.287222047e-10 4.146800473e-10 2.805898419e-10 1.026885487e-10 1.846159067e-10 4.441641806e-10 1.434682225e-10 1.696513786e-10 2.041436831e-10 8.299117475e-11 2.293511713e-10 8.36154054e-11 1.540041718e-10 1.615790221e-10 1.410333967e-10 1.230242316e-10 1.000809645e-10 8.060610239e-11 1.227486313e-10 8.928810663e-11 1.485449996e-10 1.512903881e-10 4.717576544e-11 2.0202554e-11 1.062694536e-10 9.365556521e-11 1.254238101e-10 1.18066597e-10 1.847472663e-10 1.262244525e-10 9.027755107e-11 1.180178968e-10 1.059819907e-10 9.156179144e-11 1.587271115e-10 2.01065803e-10 1.771701353e-10 2.340763386e-10 1.959049419e-10 2.50620269e-10 3.393584498e-10 1.859916036e-10 2.014618246e-10 2.862689163e-10 2.312602866e-10 2.181849826e-10 2.408494773e-10 1.259158551e-10 2.184068411e-10 2.203651774e-10 2.410736177e-10 2.891252255e-10 2.493083549e-10 3.489192802e-10 3.156503254e-10 2.450009594e-10 2.359735876e-10 2.352904034e-10 3.266475095e-10 4.035957603e-10 3.409721108e-10 3.61293514e-10 2.749652896e-10 2.569973054e-10 3.595096315e-10 2.558863789e-10 2.314272929e-10 2.063641359e-10 3.153290465e-10 2.712766602e-10 1.648214225e-10 1.653241349e-10 8.739769936e-11 1.704581968e-10 2.319624257e-10 1.518055303e-10 1.771596167e-10 1.599432557e-10 1.308685964e-10 1.988600158e-10 1.666891665e-10 1.575973622e-10 1.227468705e-10 1.295981299e-10 3.159815721e-10 4.026525364e-10 3.387112693e-10 1.601775674e-10 2.594265292e-10 2.141458843e-10 2.188686707e-10 2.471611879e-10 3.554803831e-10 3.275293587e-10 1.914527141e-10 3.244312469e-10 1.294739678e-10 1.636412849e-10 1.374275286e-10 1.569721063e-10 1.324628006e-10 1.58750619e-10 3.206488293e-10 2.601290546e-10 2.807499591e-10 1.284295858e-10 1.690390027e-10 3.17268424e-10 1.973529754e-10 1.361072155e-10 2.357780529e-10 1.462943674e-10 1.259363253e-10 2.272275527e-10 1.087907743e-10 1.365907051e-10 4.267816514e-11 2.462081087e-10 1.881533078e-10 1.189474646e-10 2.314901919e-10 2.074351962e-10 3.67729788e-10 1.492383289e-10 1.865830332e-10 2.481226733e-10 1.66048083e-10 3.029850063e-10 2.592550201e-10 2.178715802e-10 3.489991619e-10 2.354027298e-10 1.736839143e-10 1.803152291e-10 3.182440699e-10 7.727253722e-11 2.48185241e-10 7.585934165e-11 2.504586921e-10 2.683117936e-10 2.268720588e-10 4.265971278e-10 1.305135832e-10 1.897400772e-10 1.439704986e-10 1.64502754e-10 2.891760248e-10 7.355359487e-11 3.044488981e-10 2.67200216e-10 1.805154286e-10 1.873440073e-10 +2.990317838e-10 3.180877018e-10 1.530118221e-10 1.481396138e-10 3.072656224e-10 2.978857171e-10 1.526960041e-10 1.588740282e-10 1.525392119e-10 1.359936274e-10 2.661029584e-10 9.299806601e-11 9.13115847e-11 3.041624415e-10 1.026959919e-10 1.617907133e-10 6.287146301e-11 2.568057747e-10 2.280027712e-10 2.676581458e-10 1.895540622e-10 1.162436539e-10 2.22221773e-10 8.265391988e-11 8.812710194e-11 1.937064558e-10 1.339816686e-10 1.367311175e-10 2.372296941e-10 1.417790451e-10 2.086210544e-10 2.747027445e-10 2.896032177e-10 9.474112042e-11 7.370773502e-11 1.083199449e-10 9.051720733e-11 1.263907344e-10 1.810729066e-10 1.692496725e-10 2.286199688e-10 1.234671595e-10 2.228162984e-10 2.937122744e-10 1.466428463e-10 2.232050173e-10 8.180500213e-11 3.480190931e-10 1.990886652e-10 8.735793841e-11 6.895118221e-11 1.763354683e-10 3.401530536e-10 1.095040043e-10 6.915531918e-11 1.289211202e-10 1.361901915e-10 8.664282481e-11 2.143606056e-10 1.561567812e-10 1.829377347e-10 2.277017095e-10 2.779010333e-10 3.642341812e-10 2.609030942e-10 2.154193136e-10 1.113410713e-10 1.983310431e-10 1.392307666e-10 1.744342939e-10 2.040344347e-10 9.564464426e-11 1.49681861e-10 1.79957304e-10 1.728236542e-10 9.544260811e-11 2.444064159e-10 1.9547395e-10 1.439374344e-10 1.674021643e-10 2.425523452e-10 2.539289437e-10 2.688466459e-10 1.935084491e-10 2.153526423e-10 2.279942311e-10 1.899260465e-10 4.705165482e-10 3.799433089e-10 2.339766251e-10 2.575053862e-10 3.776019639e-10 3.830070392e-10 3.123030781e-10 3.740728664e-10 2.605148172e-10 2.734948456e-10 1.924437192e-10 1.739307318e-10 3.765547557e-10 2.117716144e-10 3.281482146e-10 2.114195457e-10 2.17105474e-10 2.014837608e-10 2.239871223e-10 3.266221218e-10 7.033559977e-11 2.259940841e-10 2.265586686e-10 2.024830433e-10 1.535105954e-10 3.058983851e-10 2.517806299e-10 1.505494256e-10 3.010870522e-10 1.34735244e-10 2.09575279e-10 1.973014929e-10 1.127098531e-10 1.454625268e-10 2.170805574e-10 1.369434929e-10 1.183321146e-10 4.50255974e-11 1.136038777e-10 6.119942976e-11 8.208644029e-11 2.753169011e-11 1.706459261e-10 2.134018513e-10 1.217789229e-10 1.309898858e-10 1.049601208e-10 2.034723403e-10 1.714029402e-10 1.031988424e-10 1.008085299e-10 1.537860353e-10 1.316606823e-10 3.952090288e-10 1.285202245e-10 1.082632751e-10 1.509679979e-10 4.325690239e-10 1.843539238e-10 1.252444389e-10 2.082721143e-10 2.477554996e-10 2.766651737e-10 3.515302358e-10 6.852119927e-10 2.700890888e-10 2.199467939e-10 3.50461392e-10 1.293872432e-10 2.088864546e-10 2.916310524e-10 2.904621525e-10 2.673289808e-10 2.415325564e-10 1.222937479e-10 1.530187565e-10 1.30418244e-10 1.465386611e-10 1.243622113e-10 1.450767985e-10 1.04859128e-10 6.944240576e-11 1.21039492e-10 9.757709237e-11 9.680980957e-11 1.907308642e-10 3.975044008e-11 1.300368783e-10 1.210635789e-10 1.191279345e-10 1.147684267e-10 5.978204033e-11 1.866520752e-10 1.8103892e-10 1.270643104e-10 1.799581924e-10 1.236227642e-10 2.320901057e-10 3.16608244e-10 2.30951254e-10 3.370174137e-10 2.78791753e-10 1.850642083e-10 1.952959276e-10 1.719767379e-10 3.386956946e-10 2.838714594e-10 2.365247374e-10 2.502084335e-10 2.419481944e-10 1.341712413e-10 2.742965277e-10 3.88765288e-10 2.426046288e-10 3.410346591e-10 2.659971492e-10 2.318698364e-10 2.889405306e-10 2.092317748e-10 2.656943805e-10 2.788621948e-10 2.411121829e-10 4.327576793e-10 3.265269598e-10 2.768467532e-10 4.134093437e-10 4.291639688e-10 2.785787234e-10 3.169525158e-10 2.083595147e-10 2.294853567e-10 4.310010291e-10 1.355197348e-10 3.056427268e-10 7.658545084e-11 1.03438976e-10 2.44521753e-10 1.336934959e-10 1.7753112e-10 1.360451559e-10 2.931035797e-10 2.700048481e-10 1.848265979e-10 2.24384527e-10 2.480117967e-10 2.044029366e-10 2.900158185e-10 2.562078695e-10 2.057682018e-10 1.025140976e-10 3.089416267e-10 1.44332934e-10 1.945670957e-10 3.003673902e-10 2.631865588e-10 2.093149601e-10 2.213004617e-10 3.708935787e-10 1.633261559e-10 2.681911462e-10 2.892985504e-10 1.258550421e-10 7.163576319e-11 2.467982597e-10 1.88952933e-10 1.633793256e-10 1.657802987e-10 1.092764424e-10 1.146962273e-10 4.347854664e-10 2.747970629e-10 1.5634347e-10 2.121270087e-10 3.584790247e-10 2.369077354e-10 1.116219322e-10 3.284673646e-10 1.089949928e-10 1.843622629e-10 1.404398664e-10 2.793318267e-10 1.051818099e-10 2.971345802e-10 1.401346436e-10 3.157478329e-10 1.981371452e-10 1.022722717e-10 3.117311919e-10 3.969362318e-10 3.006919497e-10 1.998739601e-10 3.739530537e-10 2.460259024e-10 1.25288348e-10 1.895122603e-10 9.391405935e-11 1.311458111e-10 1.212618628e-10 1.571474206e-10 1.015746991e-10 1.269507724e-10 8.820390201e-11 1.821905636e-10 1.665043711e-10 1.587894811e-10 6.671467007e-11 1.417158925e-10 9.903092515e-11 1.603481581e-10 4.109994715e-10 1.231973504e-10 1.997302549e-10 1.983223083e-10 +1.538809125e-10 7.118931149e-11 2.796085428e-10 1.086598205e-10 1.489103502e-10 1.985010304e-10 7.054854915e-11 1.388602986e-10 2.468041722e-10 2.494771155e-10 2.002110331e-10 2.237371724e-10 1.443555156e-10 8.789667831e-11 1.027811751e-10 3.344785569e-10 2.411358913e-10 2.083062471e-10 2.502564713e-10 1.182614815e-10 2.281902099e-10 1.452571341e-10 2.251584641e-10 1.253104399e-10 1.139545769e-10 2.361442473e-10 1.379955544e-10 1.252956259e-10 1.167754275e-10 1.84916578e-10 2.095775558e-10 3.338749409e-10 1.454229796e-10 1.329666669e-10 9.129101386e-11 3.608478251e-10 1.096005557e-10 1.014602662e-10 1.208257091e-10 3.015463705e-10 1.440104602e-10 3.515892741e-10 2.414170471e-10 1.330563578e-10 1.072271129e-10 2.189990399e-10 2.549566041e-10 2.283428077e-10 1.021241585e-10 2.438172137e-10 2.737240723e-10 1.462142249e-10 1.30773202e-10 2.050666987e-10 2.462498043e-10 1.802495088e-10 2.661464524e-10 1.61912647e-10 1.091472591e-10 2.110797058e-10 1.807504449e-10 1.704281859e-10 1.413507631e-10 2.977875164e-10 2.86032329e-10 1.769756115e-10 2.939141829e-10 1.408493633e-10 3.023499854e-10 2.380594977e-10 2.055786195e-10 2.956635953e-10 7.195425845e-11 1.164074356e-10 2.131807814e-10 1.29511326e-10 1.278248085e-10 3.264910361e-10 1.952800811e-10 2.92027176e-10 2.069655146e-10 5.585831597e-11 3.231309468e-10 2.609973515e-10 2.288423828e-10 2.707332725e-10 1.470403565e-10 3.935815165e-10 3.38397566e-10 3.178970459e-10 2.992241054e-10 2.069939518e-10 5.850201301e-10 2.185989809e-10 2.363980356e-10 1.951132546e-10 3.07715629e-10 4.172927838e-10 4.040312058e-10 2.619778442e-10 3.533021077e-10 2.404984121e-10 2.430853819e-10 4.166436537e-10 1.706885926e-10 3.243128623e-10 2.989728694e-10 3.180129183e-10 2.086854436e-10 3.373640582e-10 3.097616407e-10 1.026437267e-10 1.832266324e-10 1.289539113e-10 2.827816621e-10 3.197376194e-10 1.912133135e-10 1.603428393e-10 1.150097928e-11 1.352500059e-10 1.360156909e-10 1.597164585e-10 8.899772845e-11 1.304919433e-10 1.511900965e-10 1.798650579e-10 2.965435915e-10 1.61649898e-10 1.510178227e-10 6.672506491e-11 2.586997852e-10 2.134593392e-10 1.279532551e-10 1.786930218e-10 1.409423779e-10 1.525648483e-10 6.858870223e-11 4.419998719e-10 1.61368614e-10 1.348360744e-10 3.197197972e-10 1.810710772e-10 5.122758503e-10 2.151984853e-10 3.850974795e-10 6.100731647e-10 1.776816381e-10 5.10324333e-10 6.441041355e-10 4.783338186e-10 3.476911061e-10 7.30694873e-10 3.427558486e-10 3.836502723e-10 2.042860491e-10 6.098632585e-10 2.392391166e-10 2.404306955e-10 5.474519623e-10 2.235884255e-10 2.605983298e-10 5.823197722e-10 3.466659667e-10 1.47738953e-10 1.866249365e-10 1.19809819e-10 1.16204028e-10 1.482580363e-10 1.727413651e-10 2.201710838e-10 4.464571386e-11 1.283822902e-10 1.242397253e-10 7.77671174e-11 9.101156508e-11 3.87375466e-11 1.278552543e-10 8.034462039e-11 1.679993512e-10 1.05223931e-10 1.505750281e-10 1.570479418e-10 1.236422369e-10 2.031124753e-10 1.71519244e-10 7.713922205e-11 2.041464388e-10 2.784531789e-10 1.193994055e-10 1.156280703e-10 1.478157934e-10 1.719568983e-10 2.158544996e-10 2.532327451e-10 1.813024287e-10 1.369318948e-10 2.883241667e-10 1.91519537e-10 2.533489182e-10 2.309518399e-10 1.13381055e-10 4.171047059e-10 3.589542128e-10 3.370096859e-10 2.60621747e-10 2.945038545e-10 3.250393321e-10 2.548822535e-10 2.753987087e-10 3.153700971e-10 3.956286518e-10 2.936916912e-10 3.522578848e-10 3.456299298e-10 2.835015424e-10 2.453760451e-10 3.749941668e-10 1.995679142e-10 2.755007367e-10 2.725077013e-10 8.279118796e-11 1.23163346e-10 1.886771042e-10 1.314411592e-10 2.582939311e-10 1.828841629e-10 2.701179729e-10 1.789090188e-10 1.654331644e-10 2.218795795e-10 2.15994024e-10 1.337489967e-10 3.391245328e-10 1.909027921e-10 2.870466167e-10 1.128259397e-10 1.858322005e-10 1.900107988e-10 1.60316749e-10 3.229457228e-10 2.569816056e-10 9.413203252e-11 2.50957318e-10 1.531043278e-10 1.814843771e-10 1.437006205e-10 1.552317197e-10 7.003461095e-11 1.45372779e-10 2.255802049e-10 1.758433457e-10 6.471104481e-11 1.301998384e-10 7.914144633e-11 2.003737628e-10 1.222227743e-10 8.307390628e-11 2.25845407e-10 2.494503584e-10 1.253826157e-10 1.78839675e-10 2.619840945e-10 1.204602815e-10 1.969638664e-10 9.842162528e-11 1.031662826e-10 2.035530227e-10 1.599512906e-10 1.696460084e-10 1.27763974e-10 1.203767275e-10 1.05380933e-10 2.063822221e-10 1.389676045e-10 2.436609544e-10 7.068279817e-11 3.140197056e-10 1.800871338e-10 2.862136038e-10 3.249444161e-10 2.729572118e-10 1.400174989e-10 1.761552472e-10 2.010390255e-10 1.392742955e-10 2.725903846e-10 7.885118801e-11 7.813557837e-11 3.566140769e-10 2.518674887e-10 1.265905065e-10 3.06203088e-10 1.463733662e-10 1.541360697e-10 1.587055731e-10 2.258935939e-10 1.918305951e-10 2.707374717e-10 2.248839315e-10 2.479615879e-10 +1.055733616e-10 1.661222072e-10 1.023616742e-10 3.521988849e-10 1.34907386e-10 1.624877648e-10 2.726017146e-10 1.572743739e-10 1.104554264e-10 8.097707423e-11 1.614221844e-10 4.562916862e-10 2.326602928e-10 3.684883566e-10 1.667537483e-10 3.009456309e-10 2.454966447e-10 3.097273122e-10 9.859705544e-11 1.232858064e-10 8.262276937e-11 2.167000394e-10 1.893246891e-10 2.128840713e-10 1.584502629e-10 2.315628577e-10 3.226168482e-10 7.652163927e-11 1.177153079e-10 1.52258292e-10 2.600061831e-10 8.690053877e-11 2.586073315e-10 3.680222807e-10 3.269557193e-10 1.412038638e-10 6.037697065e-11 1.135707049e-10 1.337519086e-10 1.489908947e-10 6.066823489e-11 6.895195782e-11 3.582680873e-10 2.915161728e-10 1.313439679e-10 1.598671408e-10 2.099170181e-10 6.604803311e-11 1.019622906e-10 1.194576857e-10 1.074516524e-10 2.000669151e-10 9.204144623e-11 1.242244155e-10 2.851481599e-10 2.39186045e-10 2.311410431e-10 1.482627419e-10 2.058938218e-10 1.773140657e-10 1.25088794e-10 1.040661819e-10 1.714212707e-10 6.295907929e-11 3.672740558e-10 1.259612004e-10 3.002223576e-10 1.974432315e-10 2.274833579e-10 1.425128291e-10 2.370072813e-10 1.967378684e-10 2.281997165e-10 1.958612321e-10 3.201370751e-10 2.297945293e-10 1.756147796e-10 1.524047713e-10 5.431661109e-11 8.905095715e-11 2.68704117e-10 2.808546538e-10 2.026329154e-10 2.947856936e-10 3.641735984e-10 3.606116183e-10 3.370866621e-10 3.071385418e-10 3.868705001e-10 2.11189577e-10 2.008350842e-10 1.58598275e-10 3.084831773e-10 2.779865444e-10 1.72907823e-10 2.577473868e-10 2.331288384e-10 2.968496619e-10 2.517942526e-10 2.581378783e-10 3.422482745e-10 2.922477092e-10 2.081348729e-10 2.48559095e-10 3.104793319e-10 2.488741009e-10 1.542007837e-10 3.869702435e-10 3.118279441e-10 2.611849941e-10 2.160562174e-10 6.87622807e-11 1.260600151e-10 1.47107147e-10 2.073991955e-10 1.86892619e-10 1.904940317e-10 9.15985383e-11 1.59260424e-10 2.345522684e-10 7.920881909e-11 1.722288502e-10 6.963560835e-11 6.450388856e-11 7.434541123e-11 5.000363978e-11 8.910494552e-11 9.813026603e-11 1.758845046e-10 2.265838482e-10 1.618610459e-10 1.337664e-10 2.877248356e-10 1.042612656e-10 7.684767677e-11 1.556653855e-10 1.886936017e-10 5.785351494e-10 5.4215995e-10 4.549090577e-10 5.085964366e-10 7.653987656e-10 4.487843077e-10 4.089322338e-10 4.431847785e-10 3.782765573e-10 2.597840546e-10 5.589932868e-10 3.413505565e-10 5.363649398e-10 3.322976123e-10 4.215856898e-10 4.681072059e-10 2.885253339e-10 3.507331391e-10 2.770757096e-10 6.867913779e-10 1.718960709e-10 2.609341923e-10 3.981327726e-10 2.64844181e-10 1.377432768e-10 1.990825108e-10 2.681371591e-10 2.05193378e-10 1.695561658e-10 1.038135747e-10 1.864367939e-10 6.709117183e-11 1.291338602e-10 1.141909068e-10 1.452402823e-10 1.131874371e-10 1.281041327e-10 6.108872015e-11 2.176277686e-10 7.919945968e-11 1.157471874e-10 7.016154052e-11 1.627435286e-10 1.343244402e-10 7.82000909e-11 1.899004104e-10 2.553338756e-10 1.898755144e-10 2.917917998e-10 2.842891307e-10 2.870354368e-10 2.779273875e-10 2.707764891e-10 1.308810144e-10 3.257469624e-10 1.798903332e-10 2.874757857e-10 2.248931067e-10 2.179699718e-10 1.434712437e-10 2.701869441e-10 3.671496524e-10 2.853302463e-10 2.086629696e-10 2.455709829e-10 3.462637995e-10 1.840822138e-10 1.634168131e-10 3.336718601e-10 2.496630544e-10 3.921341913e-10 1.861092945e-10 2.804199832e-10 3.642467725e-10 3.979210798e-10 3.708350855e-10 3.712638849e-10 3.711100437e-10 2.197334739e-10 3.317962908e-10 2.451948723e-10 3.846340481e-10 1.779421119e-10 1.936726958e-10 1.458245345e-10 2.291088249e-10 1.115791265e-10 1.470943668e-10 1.124683125e-10 6.118445157e-11 2.610956308e-10 2.692770144e-10 1.671956846e-10 1.514486119e-10 1.543849497e-10 3.491861135e-10 3.884122531e-10 1.447052534e-10 1.375350018e-10 3.183913221e-10 1.828214838e-10 1.475897954e-10 2.682359764e-10 3.199435218e-10 7.287547675e-11 2.765226345e-10 1.746949353e-10 2.781032114e-10 2.828923897e-10 1.823441015e-10 1.676445377e-10 1.623926504e-10 3.813998339e-10 1.44068251e-10 1.001464356e-10 2.100454285e-10 1.033392457e-10 1.095057921e-10 1.374778318e-10 1.345132184e-10 9.423359399e-11 2.504768974e-10 1.292600115e-10 2.936116053e-10 6.913070468e-11 2.120040484e-10 2.372247659e-10 1.804142616e-10 4.529984364e-10 1.443292207e-10 2.335762851e-10 1.684475883e-10 1.786887599e-10 1.344197178e-10 1.290249409e-10 1.678805696e-10 1.404031053e-10 2.157189148e-10 2.353679142e-10 2.32260469e-10 1.849577438e-10 2.48459304e-10 3.557365601e-10 1.873236446e-10 2.786455919e-10 2.999121803e-10 2.766067914e-10 1.178778431e-10 1.29432888e-10 1.516965988e-10 2.831851102e-10 1.150434004e-10 1.806953758e-10 4.054006086e-10 2.732369624e-10 1.163807046e-10 1.214263926e-10 4.274837685e-11 1.53081043e-10 1.323125559e-10 2.321927813e-10 1.598557013e-10 1.635034022e-10 +2.826881054e-10 2.144677917e-10 2.22720727e-10 1.859105123e-10 1.527099806e-10 1.406330214e-10 1.505816616e-10 8.600566407e-11 2.340453868e-10 4.019084444e-10 2.044636099e-10 6.873235416e-11 1.9223225e-10 4.613261833e-10 1.478716046e-10 4.522461173e-10 2.82388942e-10 1.431120182e-10 1.608029424e-10 1.794865683e-10 1.888271303e-10 2.463012903e-10 3.002666489e-10 2.311209179e-10 1.971997418e-10 9.978893096e-11 1.225828332e-10 2.402000634e-10 2.240588352e-10 2.357455713e-10 1.307178708e-10 1.90519498e-10 2.260333497e-10 2.476228582e-10 1.750525412e-10 2.652028699e-10 1.062225479e-10 1.287478852e-10 6.323384089e-11 1.48804465e-10 4.232385683e-10 5.295358247e-11 4.562362127e-10 7.664857683e-11 9.84104529e-11 3.118596512e-10 2.322134228e-10 4.152006753e-10 1.616467862e-10 2.603340824e-10 2.702414602e-10 2.244973196e-10 6.521588353e-11 3.871096775e-10 1.144648649e-10 3.460996428e-10 3.372676999e-10 4.337483025e-11 1.308276765e-10 3.32842667e-10 3.176476968e-10 1.211808439e-10 1.496916037e-10 1.945592634e-10 2.529408549e-10 1.156023564e-10 1.547207579e-10 3.058111993e-10 1.806092177e-10 1.897232157e-10 4.440857266e-10 1.762594298e-10 1.426113609e-10 2.601590608e-10 1.888588304e-10 3.365333914e-10 1.862110788e-10 1.586365681e-10 1.741190799e-10 3.898090472e-10 2.44130204e-10 1.205392164e-10 3.167208122e-10 4.608888299e-10 3.009682503e-10 2.272864369e-10 3.093142459e-10 2.63729177e-10 3.778420199e-10 2.700967013e-10 4.436840601e-10 2.424316272e-10 2.022741681e-10 3.482933332e-10 2.418082299e-10 4.365587643e-10 2.745479826e-10 3.198732398e-10 3.497589763e-10 2.564679204e-10 2.690288377e-10 2.081830608e-10 3.164042007e-10 2.547922619e-10 1.656279779e-10 3.046371192e-10 1.95544127e-10 1.885092867e-10 1.276145193e-10 2.035662143e-10 2.700932537e-10 2.506689156e-10 2.636251122e-10 2.072591456e-10 2.870881476e-10 2.508758949e-10 3.270062684e-10 1.930701723e-10 1.525015245e-10 1.562098019e-10 9.910311898e-11 1.288972731e-10 1.042220437e-10 1.952691408e-10 1.371057262e-10 1.754135248e-10 2.866130424e-10 1.498335371e-10 1.799323592e-10 2.252035428e-10 1.814265458e-10 1.512908491e-10 2.350861129e-10 1.809507224e-10 1.729454186e-10 5.524151501e-10 3.296322046e-10 2.848816562e-10 5.607204147e-10 3.108799578e-10 3.971586817e-10 4.174330005e-10 3.498668097e-10 4.528893861e-10 2.131159929e-10 2.673181131e-10 3.745261876e-10 3.536336344e-10 4.453994707e-10 4.42110546e-10 8.060930338e-10 3.138478845e-10 1.944742775e-10 3.520294818e-10 4.891092718e-10 4.123218038e-10 3.640706575e-10 8.047062761e-10 2.793221583e-10 2.807448968e-10 4.737922619e-10 3.212329131e-10 4.40485114e-10 3.885770477e-10 3.647390787e-10 3.174996423e-10 3.012370866e-10 1.030536142e-10 1.162002102e-10 7.287763522e-11 1.905744276e-10 1.931195836e-10 1.776153779e-10 1.426318403e-10 1.759627118e-10 1.037731496e-10 2.957889096e-10 2.595070085e-10 1.575525537e-10 1.779709903e-10 1.521266846e-10 1.433520794e-10 9.233645846e-11 1.509930121e-10 1.533741371e-10 1.715670442e-10 1.990460025e-10 1.948621559e-10 2.670016095e-10 1.908283623e-10 4.033941301e-10 2.591157559e-10 2.714035749e-10 2.917266841e-10 3.479392652e-10 2.165868288e-10 4.182629093e-10 2.467445889e-10 3.513829196e-10 3.698954754e-10 2.483071763e-10 1.896664363e-10 2.124153577e-10 4.21959563e-10 1.326467652e-10 4.456873192e-10 3.229972641e-10 4.97151479e-10 5.196104993e-10 3.586523441e-10 3.81344342e-10 2.621476627e-10 2.675110663e-10 2.375394699e-10 3.765239178e-10 2.460958204e-10 2.958827035e-10 4.051789712e-10 2.907388182e-10 1.611325268e-10 1.523840125e-10 1.990515322e-10 2.453350594e-10 1.913000256e-10 2.268089109e-10 2.647913627e-10 2.332555489e-10 2.028053591e-10 1.662922519e-10 1.348564522e-10 1.52839833e-10 1.292575214e-10 2.658018917e-10 3.774365358e-10 2.66413421e-10 1.924495033e-10 2.074187445e-10 8.613777569e-11 2.237019676e-10 1.973155398e-10 1.484757921e-10 3.921588145e-10 1.765551644e-10 1.976037744e-10 1.79311119e-10 1.593852248e-10 1.17593423e-10 1.968046607e-10 2.632782782e-10 3.336474252e-10 1.264583843e-10 1.347687617e-10 2.048257682e-10 4.33727825e-11 1.857681834e-10 1.703955167e-10 1.011249194e-10 6.474986139e-11 2.036287074e-10 1.546886362e-10 1.02763239e-10 3.308482999e-10 1.145640108e-10 1.687762175e-10 1.355812231e-10 6.892519955e-11 2.252086137e-10 4.142825018e-10 2.432996634e-10 9.249398747e-11 3.940305867e-10 2.292148753e-10 3.353780305e-10 4.130062994e-10 1.456786999e-10 2.496613277e-10 2.941118026e-10 3.104908897e-10 1.139214443e-10 2.285146253e-10 2.135699839e-10 2.813853606e-10 2.937200481e-10 1.90501939e-10 3.23128936e-10 2.367569479e-10 1.519737954e-10 2.968437954e-10 3.270299609e-10 1.55104999e-10 2.087095487e-10 1.736796521e-10 2.463754632e-10 4.313475594e-10 1.179066717e-10 1.367227651e-10 2.188160613e-10 3.420656746e-10 1.449949811e-10 7.692793708e-11 +2.587506191e-10 1.167328886e-10 1.655211632e-10 1.36776437e-10 1.41392173e-10 7.854741211e-11 2.14272979e-10 3.25034482e-10 2.523463236e-10 1.557174739e-10 1.194949072e-10 2.606843613e-10 1.186489526e-10 1.379728222e-10 1.378895163e-10 8.081216473e-11 1.999320401e-10 1.811755887e-10 1.231040268e-10 1.333338012e-10 1.700878149e-10 1.63085437e-10 2.173624752e-10 2.261195747e-10 3.126157371e-10 1.722612207e-10 1.372128499e-10 2.631612017e-10 2.196082076e-10 6.862008347e-11 1.358976923e-10 1.311904325e-10 1.188604679e-10 1.846337553e-10 1.903964517e-10 1.499003422e-10 7.166028098e-11 2.062826587e-10 1.489219857e-10 3.201244877e-10 3.661039728e-10 1.216415304e-10 9.23546812e-11 4.965528655e-11 1.845143629e-10 2.643444793e-10 9.404739595e-11 9.197111883e-11 1.414255751e-10 1.275341709e-10 2.394112183e-10 9.580015298e-11 2.68433981e-10 3.081178369e-10 1.198209005e-10 2.8770861e-10 2.146189344e-10 1.289321828e-10 2.032019609e-10 2.007792214e-10 2.164491033e-10 1.859684018e-10 2.023889134e-10 1.517767653e-10 2.732493473e-10 2.704657642e-10 1.459963695e-10 2.14677351e-10 3.062173401e-10 1.813960122e-10 1.002721509e-10 3.163664824e-10 1.944121335e-10 1.404621956e-10 2.198479597e-10 1.312039562e-10 1.624193048e-10 9.970148724e-11 1.960603654e-10 1.6090828e-10 1.380988769e-10 2.235901187e-10 2.369219896e-10 2.438659641e-10 2.958419915e-10 3.359865415e-10 4.721567333e-10 4.381059525e-10 4.426370946e-10 3.264462855e-10 3.302492252e-10 1.885359199e-10 2.944053762e-10 1.637877338e-10 2.458471115e-10 1.779205406e-10 2.12449954e-10 3.099469876e-10 2.228270732e-10 2.754332913e-10 2.48707622e-10 3.323442296e-10 2.175992463e-10 1.829629322e-10 4.372661263e-10 2.539183711e-10 2.631535086e-10 2.289758744e-10 2.884766878e-10 2.162411031e-10 2.971427929e-10 2.34867354e-10 2.373074228e-10 1.879957556e-10 1.825946098e-10 1.519315997e-10 2.471247902e-10 1.474048122e-10 1.606796792e-10 1.101721973e-10 7.184862663e-11 5.602413827e-11 2.105322863e-10 6.205069702e-11 1.56248071e-10 1.821193365e-10 1.200686167e-10 9.973571275e-11 1.269636044e-10 1.625043945e-10 1.363946293e-10 5.93475455e-10 4.736628065e-10 3.474415665e-10 4.602627173e-10 2.788157323e-10 4.78654693e-10 4.793789028e-10 2.505442427e-10 3.923181048e-10 3.783396115e-10 4.918394936e-10 5.627364609e-10 4.651232117e-10 2.136493717e-10 4.126418096e-10 2.882092415e-10 4.333861855e-10 4.90199059e-10 3.794799452e-10 5.21498486e-10 3.539039871e-10 3.597805367e-10 3.041821382e-10 4.512255562e-10 9.63442751e-10 2.456786817e-10 5.067730197e-10 3.991395984e-10 7.036413585e-10 5.787585274e-10 4.184400934e-10 5.425647679e-10 3.490709347e-10 2.177916773e-10 3.894807674e-10 7.264442868e-10 6.990429602e-10 1.140407487e-10 2.014216143e-10 1.683196994e-10 1.630067559e-10 1.310180113e-10 1.429877579e-10 1.957262665e-10 1.470726417e-10 1.065762905e-10 7.311155421e-11 1.055130527e-10 6.846384342e-11 8.866583843e-11 1.004846909e-10 1.732837192e-10 1.194550073e-10 1.981459798e-10 1.920308809e-10 3.230730749e-10 2.753884136e-10 2.167878356e-10 1.200207332e-10 2.221089485e-10 2.53835593e-10 1.723744076e-10 2.164070905e-10 2.33820839e-10 2.426484062e-10 3.381772557e-10 3.065256465e-10 3.689543282e-10 3.111138675e-10 3.050089248e-10 3.074251497e-10 1.790261961e-10 2.599471059e-10 3.219533912e-10 2.160345509e-10 2.650190131e-10 5.135922175e-10 1.111255967e-10 2.682425919e-10 2.943000051e-10 2.428016446e-10 2.659290427e-10 3.139851329e-10 3.605909688e-10 2.577620629e-10 2.42328872e-10 3.25207377e-10 3.632734699e-10 2.78402692e-10 1.827272729e-10 1.25280972e-10 2.084646704e-10 1.368550401e-10 3.286417722e-10 1.772222711e-10 1.42587033e-10 1.500741232e-10 6.563279585e-11 1.204720186e-10 7.549514212e-11 2.455200341e-10 5.832183197e-11 2.10085941e-10 1.913397767e-10 2.397896157e-10 1.259420355e-10 1.34472152e-10 1.16515106e-10 2.593285414e-10 3.566203293e-10 2.26662009e-10 3.165465161e-10 1.522927972e-10 2.305247321e-10 4.753095448e-10 1.171265145e-10 1.856022578e-10 2.819781284e-10 1.942410402e-10 1.982435407e-10 2.226942572e-10 1.488691619e-10 9.742496719e-11 1.486035489e-10 1.71717317e-10 2.053723271e-10 1.821988059e-10 1.656867009e-10 2.149885557e-10 2.421057257e-10 3.24146294e-10 2.179251981e-10 3.448958348e-10 1.829844822e-10 1.957928496e-10 2.829455864e-10 1.383411233e-10 1.484332736e-10 1.801921894e-10 2.514493653e-10 8.058801958e-11 1.670051528e-10 2.142972435e-10 2.86352795e-10 1.987275643e-10 1.049206975e-10 1.386400679e-10 2.433985225e-10 2.53191585e-10 2.080267483e-10 1.050480424e-10 1.947138891e-10 3.350229874e-10 2.027946048e-10 1.51073431e-10 2.32651837e-10 1.533662085e-10 1.24561732e-10 3.085155213e-10 1.414305118e-10 3.294876927e-10 2.052622219e-10 1.468226525e-10 1.320052515e-10 3.360746379e-10 5.216604385e-11 3.564006107e-10 1.243475748e-10 8.38863189e-11 +1.46472268e-10 2.851607869e-10 1.786528188e-10 2.524798795e-10 1.523522722e-10 1.881491538e-10 3.486766561e-10 9.587815097e-11 1.911334752e-10 1.249666326e-10 1.54943022e-10 1.557131642e-10 7.523854336e-11 2.092231201e-10 2.10246059e-10 3.310320989e-10 2.168111021e-10 1.358096085e-10 1.430784737e-10 1.630952828e-10 1.451114986e-10 3.03673082e-10 2.065468972e-10 1.777843983e-10 8.14518774e-11 1.305546013e-10 3.714862786e-10 3.499953588e-10 2.766564969e-10 1.349989948e-10 3.094652031e-10 9.684947066e-11 1.904209695e-10 9.825820072e-11 2.406770719e-10 2.906272658e-10 2.866355929e-10 1.467780625e-10 4.043717576e-10 3.468225446e-10 1.136429941e-10 1.991730129e-10 1.499078201e-10 2.248492025e-10 1.106531989e-10 3.216782375e-10 2.116368907e-10 1.095208207e-10 1.323118833e-10 1.971960071e-10 1.071146758e-10 2.565058602e-10 1.167639892e-10 1.351053477e-10 1.600432494e-10 2.28910568e-10 1.737123271e-10 1.820566826e-10 1.690283002e-10 1.104203483e-10 1.457965693e-10 2.115208196e-10 1.715157945e-10 2.5730432e-10 1.85757601e-10 2.449121727e-10 1.492302591e-10 2.733649799e-10 1.890452973e-10 2.611066043e-10 9.076950055e-11 3.594762586e-10 1.298976911e-10 1.540171291e-10 3.806929272e-10 8.457287371e-11 3.831613398e-10 2.472512912e-10 1.479426214e-10 3.612976726e-10 2.717900614e-10 3.254545307e-10 1.723883521e-10 2.201911024e-10 3.243035027e-10 2.50642254e-10 2.402428542e-10 2.204980369e-10 3.20597935e-10 2.467902942e-10 4.995381275e-11 3.600894468e-10 2.235736098e-10 3.098613749e-10 3.003001329e-10 2.858525436e-10 2.635144831e-10 3.063900986e-10 1.889154576e-10 2.301604044e-10 2.017424601e-10 2.63614433e-10 2.155355764e-10 2.259129743e-10 2.138707052e-10 1.73982554e-10 3.049844858e-10 2.903884248e-10 2.088345277e-10 1.286810966e-10 1.13105409e-10 2.405147243e-10 9.502086702e-11 2.800333262e-10 3.545717176e-10 2.281385017e-10 1.619143782e-10 1.171431522e-10 1.675872431e-10 1.006937354e-10 2.944318574e-11 8.247560836e-11 1.466350447e-10 1.486765406e-10 2.243329379e-10 1.544350437e-10 1.56329331e-10 1.591606758e-10 5.056250854e-10 4.069484072e-10 3.570689766e-10 5.822000269e-10 3.851320323e-10 4.124898699e-10 2.803572061e-10 3.006785319e-10 6.867346335e-10 3.801099574e-10 3.396394467e-10 3.342670484e-10 2.741499357e-10 4.542219522e-10 2.93794572e-10 2.778362745e-10 4.765407941e-10 3.035945174e-10 2.591552825e-10 3.579507935e-10 2.896388415e-10 2.657374221e-10 4.502181932e-10 3.924464397e-10 6.470092221e-10 5.006675862e-10 6.770944284e-10 3.856302928e-10 4.841234431e-10 3.647134714e-10 2.436493523e-10 3.80215619e-10 3.231227333e-10 3.50144992e-10 5.326671173e-10 2.982416368e-10 2.875972742e-10 6.742266243e-10 4.96888824e-10 4.287985743e-10 2.647841501e-10 5.46752443e-10 1.629979423e-10 2.573376462e-10 9.654547951e-11 1.566191103e-10 1.838853861e-10 8.28475265e-11 1.484546269e-10 1.6735218e-10 8.430684229e-11 1.344628471e-10 1.069020251e-10 4.524110065e-11 1.533248001e-10 1.251078921e-10 7.408712478e-11 8.443904118e-11 1.336784019e-10 1.489616939e-10 2.592963658e-10 2.142642284e-10 2.655917118e-10 3.546213309e-10 1.920947924e-10 2.361898692e-10 3.243600251e-10 2.740703804e-10 8.798031741e-11 4.546711251e-10 1.580076992e-10 2.497183347e-10 1.079108853e-10 3.809351949e-10 3.272994815e-10 2.740873268e-10 2.9657685e-10 3.097780478e-10 2.542624433e-10 3.327662245e-10 4.202779276e-10 3.767020111e-10 4.191851621e-10 4.192979816e-10 3.067541096e-10 1.700853171e-10 1.998348097e-10 3.022862625e-10 2.123492941e-10 3.495221033e-10 2.457357786e-10 2.238629667e-10 1.113248478e-10 2.103905183e-10 1.127818034e-10 2.717223617e-10 3.821756965e-10 1.859352243e-10 2.351555713e-10 3.225612764e-10 1.907442446e-10 1.337127214e-10 1.827621061e-10 2.385021393e-10 2.499845932e-10 1.997602986e-10 1.775197003e-10 2.671599772e-10 1.846870497e-10 1.174628331e-10 3.11408218e-10 2.038924798e-10 1.509083655e-10 1.778716317e-10 1.736160324e-10 9.520133161e-11 9.487620902e-11 2.887917361e-10 2.688540288e-10 1.776835211e-10 1.381414604e-10 2.612004882e-10 1.877188019e-10 1.979198421e-10 2.806953004e-10 1.794686985e-10 7.480195641e-11 9.059444165e-11 1.327316968e-10 1.158592205e-10 1.294321308e-10 9.218714043e-11 2.389746032e-10 3.725194223e-10 1.606883094e-10 1.459984582e-10 8.313447834e-11 7.445752436e-11 3.107900461e-10 1.508753933e-10 2.281094251e-10 2.404874189e-10 3.600966805e-10 3.647920508e-10 2.839246013e-10 2.146212303e-10 3.000824033e-10 1.028097701e-10 1.555709528e-10 1.664712495e-10 3.120587624e-10 1.759164698e-10 2.823872158e-10 1.46407172e-10 2.138234054e-10 9.875616009e-11 1.279065683e-10 1.608796678e-10 1.538434581e-10 1.946960906e-10 1.146574573e-10 1.870986512e-10 3.171646303e-10 1.369295433e-10 1.045433617e-10 2.261771626e-10 2.255956828e-10 1.382407566e-10 1.946753016e-10 1.393066304e-10 2.349087341e-10 2.005737009e-10 +1.65891328e-10 1.285717694e-10 2.163090847e-10 1.572929451e-10 2.593589793e-10 2.442416144e-10 2.376370974e-10 1.820407087e-10 1.272926185e-10 2.291417508e-10 2.640071648e-10 1.83468859e-10 7.710621177e-11 9.506856893e-11 7.945153046e-11 2.576203521e-10 3.483378719e-10 2.049171551e-10 4.19321782e-10 3.124977145e-10 3.107374744e-10 1.080653842e-10 1.276971217e-10 1.64019254e-10 1.984956072e-10 5.031889243e-10 1.513918349e-10 9.371940522e-11 1.842651172e-10 1.160226474e-10 2.88046011e-10 2.229903626e-10 1.427089554e-10 1.858821343e-10 1.93530851e-10 2.028384362e-10 1.772677955e-10 1.145452211e-10 1.58131267e-10 1.185731742e-10 1.93792444e-10 1.382549158e-10 1.913609707e-10 4.132916956e-11 1.394122564e-10 1.897034577e-10 2.695326983e-10 2.336220832e-10 1.815001643e-10 2.260273893e-10 2.882367679e-10 9.601975518e-11 1.476389668e-10 1.333757514e-10 2.767254186e-10 2.276344311e-10 2.529223252e-10 1.39831222e-10 2.284184976e-10 1.811820384e-10 9.496928308e-11 1.38915407e-10 2.932243988e-10 1.398721851e-10 2.298288232e-10 2.564930291e-10 1.929626429e-10 2.217254551e-10 2.779104274e-10 2.556353104e-10 2.457324395e-10 9.152830324e-11 2.165123683e-10 1.195736424e-10 1.023350771e-10 1.465094674e-10 9.464334697e-11 2.388084176e-10 2.023388362e-10 9.193455028e-11 1.681083713e-10 1.642739113e-10 2.059696875e-10 3.433431849e-10 2.845005744e-10 3.402887771e-10 3.151007795e-10 3.528549723e-10 2.983531187e-10 2.441111616e-10 3.126733699e-10 2.807415394e-10 1.900919627e-10 3.303740082e-10 3.18974569e-10 3.365120906e-10 2.499029343e-10 3.378930239e-10 2.032273435e-10 1.232612137e-10 1.862598329e-10 3.095607824e-10 2.866621799e-10 4.127988293e-10 2.826405376e-10 1.367070799e-10 1.869897051e-10 2.275479907e-10 1.864973082e-10 2.699318903e-10 1.881077911e-10 3.078577845e-10 1.601340251e-10 2.66099038e-10 1.994971629e-10 1.639404864e-10 1.250455086e-10 9.077957749e-11 1.06411279e-10 1.926424035e-10 5.354977867e-11 1.172049557e-10 1.20465838e-10 1.857000304e-10 1.175711438e-10 6.561050407e-11 1.862178013e-10 1.404964796e-10 2.73626024e-10 7.225111084e-10 3.140616124e-10 2.935009582e-10 2.784801504e-10 3.026036419e-10 4.441042408e-10 4.87150249e-10 5.609605355e-10 4.434840521e-10 4.332629699e-10 5.011719853e-10 3.210555307e-10 3.662640154e-10 2.790823385e-10 2.774998598e-10 4.604811639e-10 4.775834915e-10 2.968711891e-10 3.241578935e-10 5.812985551e-10 3.115400176e-10 2.680848466e-10 2.887074076e-10 2.374657109e-10 6.165657139e-10 8.259218313e-10 4.296291998e-10 4.509250154e-10 4.279454575e-10 4.164092016e-10 2.189253076e-10 7.704190351e-10 4.97908322e-10 3.797685299e-10 5.409234065e-10 4.735802152e-10 4.11172751e-10 3.506860884e-10 3.312447156e-10 4.321744987e-10 3.193141176e-10 3.089880625e-10 3.834596642e-10 1.415636448e-10 2.104046268e-10 1.550919573e-10 1.625647531e-10 1.817772046e-10 1.899356871e-10 1.314703064e-10 1.377368828e-10 6.524967963e-11 3.701430861e-11 1.078850588e-10 1.140328544e-10 1.634446537e-10 2.051559103e-10 1.886260083e-10 2.031190887e-10 1.931017087e-10 1.831907835e-10 3.856070116e-10 2.188879644e-10 2.167091943e-10 3.509443627e-10 1.942825891e-10 2.626143429e-10 2.288021194e-10 3.405886271e-10 2.192597106e-10 2.487776394e-10 2.405350426e-10 2.835285693e-10 2.831617733e-10 2.290777695e-10 3.072610862e-10 3.005268913e-10 2.682107022e-10 2.589915268e-10 2.247922305e-10 2.231796931e-10 2.318883805e-10 3.45831208e-10 3.97250184e-10 5.1967824e-10 2.68766097e-10 2.775866275e-10 2.867418874e-10 2.696916649e-10 2.550680595e-10 1.271718669e-10 1.338663938e-10 1.473851212e-10 3.307638591e-10 2.635281597e-10 4.475616591e-11 1.231831047e-10 2.947915055e-10 1.07798137e-10 2.736343107e-10 1.97530085e-10 1.100247096e-10 1.52125221e-10 2.031883116e-10 3.586978335e-10 3.404149955e-10 2.331209926e-10 4.16624549e-10 9.908873459e-11 1.395844225e-10 1.42448494e-10 1.747626825e-10 1.477665159e-10 2.240144165e-10 2.572185089e-10 1.663074613e-10 1.6099131e-10 1.876126294e-10 2.678017242e-10 1.407921937e-10 1.77009347e-10 2.325356326e-10 2.257892752e-10 1.375603833e-10 1.063466747e-10 1.67889111e-10 1.663466956e-10 1.472034959e-10 9.773691167e-11 2.017201427e-10 9.094264925e-11 9.925789524e-11 1.47431659e-10 1.443977626e-10 1.562682927e-10 2.285319779e-10 1.596354984e-10 2.940732876e-10 2.187015448e-10 1.147409551e-10 2.522986816e-10 3.827701611e-10 2.519677587e-10 2.411878064e-10 2.465484117e-10 1.194091713e-10 1.633466376e-10 2.350745469e-10 3.047260456e-10 3.72627219e-10 3.9882179e-10 2.592581583e-10 3.247781804e-10 2.442375726e-10 3.113477718e-10 1.616469073e-10 1.339125385e-10 2.785457976e-10 3.183387058e-10 1.093389516e-10 3.265014825e-10 9.95107795e-11 9.559285493e-11 1.465138702e-10 3.652526302e-10 2.32065314e-10 1.051427288e-10 2.25818065e-10 4.440822768e-10 1.093087543e-10 1.324911195e-10 +2.639797195e-10 2.85039237e-10 2.010954363e-10 1.42322784e-10 1.968453054e-10 2.897601393e-10 1.152523902e-10 3.431026129e-10 3.024686702e-10 2.987803184e-10 1.062801017e-10 1.627698645e-10 1.811631023e-10 2.094054925e-10 2.468980931e-10 1.817964896e-10 1.561693367e-10 2.929579614e-10 3.149385775e-10 3.350790919e-10 1.239464485e-10 2.538020119e-10 2.366766359e-10 2.022926549e-10 1.146898902e-10 1.484507728e-10 2.137164827e-10 2.516219965e-10 2.49062276e-10 3.077214139e-10 8.901866724e-11 2.381043068e-10 1.164467673e-10 2.042486556e-10 1.154265692e-10 7.822742926e-11 7.39699982e-11 1.794334897e-10 1.782291176e-10 2.055476356e-10 1.756281875e-10 1.152470579e-10 1.43111116e-10 8.45998008e-11 2.83918325e-10 1.482325331e-10 1.646378261e-10 1.984852326e-10 2.113819966e-10 3.33104113e-10 1.283858149e-10 2.054753916e-10 3.024621709e-10 2.744943094e-10 2.093613109e-10 2.169370397e-10 2.916476399e-10 1.876289347e-10 3.053709032e-10 1.304241999e-10 1.284769816e-10 1.62715336e-10 1.923392334e-10 1.196331891e-10 1.75482583e-10 2.518442048e-10 2.342276698e-10 1.728800079e-10 2.062192027e-10 2.421869952e-10 1.0169227e-10 9.349764613e-11 9.737962588e-11 2.084428749e-10 1.568164297e-10 2.387891736e-10 1.963416311e-10 2.737932337e-10 2.075013027e-10 3.98800806e-10 2.663767547e-10 2.280258436e-10 4.133081701e-10 1.618430593e-10 2.314834097e-10 3.341709849e-10 5.041781249e-10 2.914885043e-10 3.209430724e-10 2.969954122e-10 2.769109765e-10 2.589519557e-10 3.331112242e-10 3.852275018e-10 3.525777788e-10 2.183376088e-10 3.165075709e-10 2.286488748e-10 2.359940058e-10 2.249961516e-10 2.849143219e-10 2.2707877e-10 2.094293562e-10 1.490278554e-10 2.759610367e-10 2.278174042e-10 2.94370224e-10 2.492120044e-10 2.407192314e-10 1.678037527e-10 1.790451027e-10 1.765772748e-10 1.536836569e-10 7.663335805e-11 8.949777667e-11 1.690192073e-10 1.08260951e-10 2.056532267e-10 1.525127067e-10 2.058213007e-10 1.226919281e-10 1.731302439e-10 1.63949564e-10 9.682833537e-11 1.984925484e-10 2.03640506e-10 4.102604439e-10 4.860189935e-10 3.977692317e-10 4.340815289e-10 4.451129555e-10 2.765834021e-10 4.383348176e-10 5.428087958e-10 3.427892428e-10 3.467425584e-10 5.269542052e-10 5.411540239e-10 3.711572245e-10 4.402885834e-10 5.092812036e-10 3.662656805e-10 2.725115054e-10 3.633170466e-10 4.361859718e-10 4.544624422e-10 3.371285107e-10 4.422777556e-10 6.012660744e-10 3.162035036e-10 5.770796986e-10 1.938257246e-10 4.24347119e-10 4.842800942e-10 4.986442724e-10 4.198070518e-10 3.929498279e-10 5.897889279e-10 2.954917798e-10 3.096970559e-10 2.878061203e-10 3.875975284e-10 4.02576401e-10 3.563103126e-10 5.715294954e-10 2.421148995e-10 7.06621797e-10 2.800701818e-10 2.856365907e-10 5.193857537e-10 5.700571031e-10 6.211747281e-10 2.448558934e-10 4.712006805e-10 1.422929256e-10 1.895482749e-10 1.030895285e-10 1.662729048e-10 2.581437518e-10 1.03739913e-10 9.651767972e-11 5.577139458e-11 6.222836406e-11 1.626176634e-10 1.024534617e-10 1.976242766e-10 2.76507454e-10 1.441240162e-10 2.652024454e-10 2.233537572e-10 3.700395909e-10 1.570652626e-10 1.947166769e-10 1.580802753e-10 2.039641555e-10 1.300823996e-10 3.13994117e-10 1.920104793e-10 4.197332344e-10 3.15540808e-10 2.108993243e-10 2.785134244e-10 2.874328475e-10 4.672727933e-10 3.519362978e-10 2.312507086e-10 4.430013644e-10 2.885579545e-10 3.487905402e-10 4.105542024e-10 3.382417851e-10 3.995300835e-10 2.440067123e-10 2.765526471e-10 3.745348573e-10 2.59760481e-10 2.739044672e-10 2.159763315e-10 3.267264236e-10 3.956333232e-10 2.58110974e-10 2.258692981e-10 2.566467171e-10 1.267447742e-10 2.492113195e-10 2.400537446e-10 2.427219924e-10 4.226071065e-10 2.149210408e-10 1.390712854e-10 3.236861027e-10 5.105848318e-10 3.896435821e-10 2.110008866e-10 2.713051518e-10 1.100358242e-10 1.590134735e-10 1.198567766e-10 8.691208328e-11 1.37216497e-10 3.373380855e-10 2.505135329e-10 2.049568145e-10 3.104423173e-10 2.23308977e-10 2.455787558e-10 2.373896132e-10 2.308988106e-10 2.787437402e-10 1.809773825e-10 1.577277273e-10 1.63165666e-10 2.607810624e-10 1.678784156e-10 2.134682752e-10 2.019714583e-10 2.101246452e-10 1.757992669e-10 3.155346484e-10 2.396431718e-10 2.858412448e-10 1.624312242e-10 1.240862515e-10 1.482325666e-10 1.249787028e-10 2.427391334e-10 1.028080714e-10 2.120218164e-10 2.082519133e-10 1.345457986e-10 2.482024624e-10 2.091068264e-10 1.780512809e-10 1.680970387e-10 1.723159435e-10 1.532974587e-10 1.768564179e-10 2.152201399e-10 2.616344899e-10 2.007911873e-10 1.400598317e-10 2.273527656e-10 3.3831495e-10 2.861941784e-10 2.082552256e-10 1.281400389e-10 2.918231988e-10 1.044033772e-10 3.57983408e-10 1.417543016e-10 2.636983645e-10 1.340382519e-10 2.431607104e-10 1.887050853e-10 2.923778459e-10 1.057637646e-10 3.607274782e-10 1.772349145e-10 1.746720361e-10 2.251600309e-10 +1.156809373e-10 2.005822628e-10 3.169625035e-10 1.727326177e-10 1.879350854e-10 1.609879205e-10 2.29816442e-10 3.258177592e-10 1.216750088e-10 4.652557071e-10 4.439136983e-10 1.280804193e-10 1.841286369e-10 2.605059828e-10 2.857380743e-10 7.320915015e-11 3.059313046e-10 4.158215826e-10 2.767447473e-10 7.358168048e-11 1.583818459e-10 5.908403032e-11 2.868856812e-10 2.698656351e-10 1.819752218e-10 2.596203592e-10 2.256372116e-10 2.017568763e-10 2.021562051e-10 1.921529897e-10 1.649571758e-10 1.175931909e-10 2.139759912e-10 3.967481893e-10 1.431660048e-10 1.219776629e-10 1.745098536e-10 2.585560143e-10 3.355839228e-10 1.775183773e-10 3.659225149e-10 1.937904418e-10 1.264540974e-10 1.385664345e-10 2.235057803e-10 2.869286138e-10 1.685547548e-10 1.807485047e-10 1.67700474e-10 1.400063619e-10 2.457163538e-10 8.673676004e-11 1.437566773e-10 2.388999545e-10 1.735893762e-10 1.002678807e-10 1.529616967e-10 1.328312787e-10 3.396196421e-10 2.441081836e-10 3.377580061e-10 1.356018706e-10 2.140470373e-10 1.40325472e-10 2.11222773e-10 1.244120659e-10 3.747462525e-10 3.351400086e-10 1.825907612e-10 2.388319561e-10 1.911740053e-10 2.3573711e-10 2.049677878e-10 2.710166834e-10 1.709174705e-10 2.171171049e-10 1.697384502e-10 2.133537906e-10 1.069784308e-10 1.643973254e-10 4.30646161e-10 3.099483006e-10 2.25293278e-10 2.427199045e-10 3.43508746e-10 2.882794827e-10 2.507356928e-10 4.685221515e-10 2.920684432e-10 4.998666234e-10 3.602570266e-10 3.005745526e-10 2.735518831e-10 3.066366376e-10 3.111294306e-10 2.61383853e-10 2.351302777e-10 4.486421044e-10 2.833621236e-10 3.22336167e-10 3.351025687e-10 2.807308459e-10 2.825216169e-10 1.822645654e-10 1.489370594e-10 3.776113867e-10 1.786341745e-10 3.054755879e-10 2.179991787e-10 2.881158932e-10 1.845119107e-10 2.080872037e-10 2.40500292e-10 3.477501903e-10 1.390601138e-10 1.194185705e-10 7.121825796e-11 8.47095575e-11 9.099845838e-11 1.794177819e-10 1.113677816e-10 1.838297245e-10 1.172518689e-10 2.188970107e-10 3.400926425e-10 3.269727098e-10 4.740225537e-10 3.424062535e-10 2.757974822e-10 4.484951696e-10 3.102998787e-10 4.784844627e-10 4.524508135e-10 4.165990002e-10 4.176617421e-10 4.079397261e-10 6.296667002e-10 3.240639769e-10 4.926916624e-10 2.858422404e-10 3.378406638e-10 3.820514354e-10 3.821623008e-10 3.958102889e-10 3.787038502e-10 5.229095637e-10 2.875920556e-10 7.991624121e-10 2.935776385e-10 5.536648766e-10 3.229399303e-10 4.538162592e-10 4.680585471e-10 3.582047319e-10 3.878536238e-10 5.582187709e-10 3.656897416e-10 3.674242193e-10 2.671121808e-10 3.746780979e-10 4.735956094e-10 5.143915655e-10 3.937594433e-10 2.984539875e-10 6.960000376e-10 7.419658833e-10 6.736933896e-10 4.038847685e-10 3.321699101e-10 5.291305662e-10 5.301685082e-10 2.251651016e-10 4.083445892e-10 4.021457796e-10 2.1320782e-10 4.822511462e-10 2.741370946e-10 1.689390523e-10 2.084432565e-10 1.215031765e-10 1.343695586e-10 6.228087791e-12 5.055490496e-11 1.180141393e-10 2.224216715e-10 1.514215596e-10 1.345667234e-10 1.00132369e-10 1.014063703e-10 2.421835487e-10 2.739027735e-10 2.3343494e-10 1.603133039e-10 2.842350368e-10 2.920176669e-10 2.817786348e-10 2.949136761e-10 2.804593456e-10 3.73818883e-10 3.032087194e-10 2.511190116e-10 2.660236797e-10 4.478158051e-10 3.326649761e-10 3.680349479e-10 3.693118279e-10 3.195061082e-10 3.812493791e-10 2.328310646e-10 2.697911619e-10 4.289745285e-10 3.0773612e-10 2.766758904e-10 5.049607109e-10 2.775256894e-10 3.014822619e-10 2.373572794e-10 2.201878295e-10 3.491997042e-10 1.831142859e-10 2.333802143e-10 3.533055485e-10 9.906514459e-11 2.383525356e-10 1.621326306e-10 2.417100469e-10 1.96070312e-10 1.857871262e-10 1.639070519e-10 1.704207328e-10 2.029374085e-10 1.639177639e-10 1.865513854e-10 9.939146156e-11 1.774007086e-10 2.739727473e-10 1.46063e-10 2.303189374e-10 2.264501445e-10 1.195920692e-10 1.578488432e-10 1.490975468e-10 1.838387471e-10 2.267381739e-10 3.385307137e-10 2.272831298e-10 1.806519089e-10 1.426391989e-10 2.092109363e-10 1.708012044e-10 2.556196516e-10 2.192954649e-10 4.0394335e-10 1.340232569e-10 2.252646295e-10 1.839563119e-10 1.752179689e-10 1.527633895e-10 4.860613101e-10 1.311968629e-10 1.018373417e-10 4.887494517e-11 2.801772655e-10 2.447060041e-10 3.050757889e-10 1.987131288e-10 3.151061748e-10 1.685398489e-10 2.773657114e-10 2.562591898e-10 2.516948358e-10 2.041058889e-10 1.779161091e-10 1.605057278e-10 9.995021021e-11 2.759832325e-10 3.283927162e-10 2.245341828e-10 3.04249788e-10 2.077612923e-10 9.871066236e-11 2.021956173e-10 1.743699375e-10 7.259164514e-11 2.993870554e-10 3.678632204e-10 2.392854866e-10 1.457096232e-10 1.830788089e-10 1.746285366e-10 1.866244437e-10 3.509056531e-10 2.911657763e-10 8.750707284e-11 2.127177348e-10 1.939245634e-10 3.774402652e-10 1.938179909e-10 3.66233246e-10 1.65845774e-10 +2.668671525e-10 1.092090714e-10 1.506374386e-10 3.518554412e-10 1.695691971e-10 2.024850171e-10 3.25466797e-10 8.269576138e-11 2.094601381e-10 3.17278855e-10 6.892768642e-11 2.382015205e-10 3.113333772e-10 2.574854666e-10 1.236544826e-10 1.815111945e-10 3.81772687e-10 3.584685744e-10 2.731416092e-10 5.370721132e-11 2.865381911e-10 3.457232055e-10 3.146455998e-10 1.219307187e-10 1.783789747e-10 1.421618084e-10 1.515223208e-10 2.175581715e-10 2.028938522e-10 2.296602011e-10 1.41488467e-10 2.02153137e-10 1.658551768e-10 1.924304059e-10 2.270353446e-10 2.144374325e-10 3.574711845e-10 1.767936879e-10 1.861714142e-10 2.093108214e-10 2.323362785e-10 1.169527549e-10 1.650773e-10 1.086285993e-10 3.710169103e-10 1.979769305e-10 1.028418089e-10 4.355530184e-10 1.992664377e-10 1.684165176e-10 9.970591853e-11 1.202958254e-10 1.311491029e-10 2.226575192e-10 2.659309167e-10 1.729438286e-10 2.005123522e-10 2.396337682e-10 1.991300026e-10 1.77908642e-10 2.284295053e-10 2.727421523e-10 1.22412751e-10 1.982454012e-10 1.073495729e-10 1.045485525e-10 2.572446587e-10 1.026335939e-10 1.359865679e-10 2.273756637e-10 1.738430899e-10 2.075178995e-10 2.645175112e-10 1.169419855e-10 2.063950135e-10 1.962790384e-10 1.208892674e-10 1.2822897e-10 2.014509632e-10 2.733280887e-10 3.171990968e-10 1.25347378e-10 1.623415603e-10 3.997748787e-10 2.582595055e-10 3.552205671e-10 3.554112506e-10 3.564325566e-10 2.849398749e-10 3.990877546e-10 3.832073186e-10 2.46909715e-10 3.226598002e-10 3.10635892e-10 3.644195886e-10 3.977258616e-10 2.466056625e-10 4.335284908e-10 2.836458175e-10 2.823360063e-10 2.532972693e-10 3.424708028e-10 3.054468445e-10 3.443599141e-10 2.352222624e-10 2.709809812e-10 2.342495412e-10 2.125801661e-10 3.196650125e-10 1.476189878e-10 1.98732205e-10 1.371423814e-10 1.486666792e-10 1.195085075e-10 1.196454637e-10 1.179819523e-10 6.522703262e-11 7.656380998e-11 1.891900946e-10 1.392796952e-10 1.751591451e-10 1.862341183e-10 1.924662941e-10 3.597584539e-10 5.984294481e-10 4.724634237e-10 2.504786494e-10 3.588332072e-10 4.328340215e-10 6.139267374e-10 3.666811856e-10 4.038861152e-10 6.171071257e-10 6.106462529e-10 4.754508829e-10 5.206496163e-10 7.182798818e-10 3.631996998e-10 3.583658616e-10 2.989555181e-10 5.408250142e-10 6.651831901e-10 6.252711106e-10 4.451967926e-10 2.037571682e-10 3.902879091e-10 5.378268106e-10 5.51868913e-10 3.732040909e-10 5.109845283e-10 5.639321331e-10 3.598066611e-10 5.267751568e-10 3.485675823e-10 3.371233029e-10 7.380174688e-10 2.813546633e-10 5.404456959e-10 3.665762869e-10 5.184798589e-10 6.601840638e-10 5.163643485e-10 6.14642532e-10 4.700990279e-10 3.39327526e-10 3.537475281e-10 1.867434183e-10 4.128446842e-10 4.41832282e-10 6.078064184e-10 3.735815747e-10 3.830508899e-10 5.664160708e-10 2.505500262e-10 2.81008983e-10 1.411238179e-10 1.762081088e-10 9.977135392e-11 2.663360837e-10 1.3371541e-10 1.994757692e-10 1.012377035e-10 1.969994211e-10 4.219722745e-11 1.811842656e-10 6.109286998e-11 1.792473834e-10 2.310089448e-10 1.317572806e-10 2.502534963e-10 2.293431708e-10 1.935012456e-10 2.661676735e-10 1.576408285e-10 1.795258386e-10 1.265986557e-10 2.740881013e-10 3.124990345e-10 2.867636371e-10 2.258669496e-10 2.369991112e-10 2.426859463e-10 3.022563066e-10 3.762881014e-10 3.263698293e-10 4.16143872e-10 1.969439615e-10 2.858417153e-10 2.766731511e-10 2.700839475e-10 2.937619974e-10 1.763514801e-10 5.627055181e-10 4.178834632e-10 3.502667604e-10 3.24167214e-10 1.347450148e-10 3.628381819e-10 2.994420583e-10 1.418552645e-10 2.318821442e-10 1.397706404e-10 3.508182304e-10 1.568995844e-10 1.53173666e-10 1.84990176e-10 2.146769254e-10 2.560517509e-10 5.47375291e-11 2.07229568e-10 3.579547903e-10 1.817397549e-10 2.392380846e-10 3.243300991e-10 2.041558019e-10 1.456264978e-10 2.452415807e-10 2.097721059e-10 2.808962072e-10 1.995577132e-10 2.998601166e-10 2.772269712e-10 2.580012215e-10 3.519932874e-10 3.26340724e-10 3.292946317e-10 1.425271915e-10 2.649365905e-10 1.979200262e-10 1.003366144e-10 2.587329247e-10 1.723525922e-10 1.936550552e-10 4.031311273e-10 1.360608794e-10 1.324810082e-10 2.649041012e-10 1.599685277e-10 2.988216923e-10 9.833135764e-11 1.723373268e-10 2.846366556e-10 2.748068634e-10 1.975158171e-10 1.68833265e-10 1.091436646e-10 6.381808693e-11 3.183675092e-10 3.603066262e-10 2.481000344e-10 3.753984911e-10 3.953526626e-10 1.488266062e-10 1.338019474e-10 4.188069352e-10 1.835224141e-10 1.511598847e-10 1.728587523e-10 1.659546505e-10 1.63007602e-10 2.044641356e-10 2.710789813e-10 1.654975783e-10 5.300342565e-11 1.449945374e-10 1.599159646e-10 1.859387882e-10 2.833262548e-10 2.259007809e-10 1.910576313e-10 2.094451803e-10 2.044176732e-10 1.539973405e-10 1.767925593e-10 3.115130265e-10 3.96325914e-10 8.532410753e-11 2.749996769e-10 1.499199059e-10 1.66155878e-10 +8.859603546e-11 1.218238821e-10 2.268732504e-10 3.134148346e-10 1.556849778e-10 2.929749663e-10 3.572819292e-10 2.887798805e-10 2.123189188e-10 2.261132604e-10 1.869732984e-10 2.64519262e-10 1.420147384e-10 2.374274113e-10 1.718682122e-10 3.81882832e-10 2.739621395e-10 1.24924157e-10 3.242777165e-10 1.510095753e-10 1.252106616e-10 2.710316746e-10 2.420165141e-10 2.211103014e-10 3.286410524e-10 2.535540752e-10 1.427884034e-10 2.529283351e-10 1.764450536e-10 1.429583923e-10 2.594078689e-10 1.398050976e-10 4.095268279e-10 2.578923579e-10 3.189497803e-10 2.868461061e-10 1.589930588e-10 2.259530443e-10 2.15780062e-10 2.693609468e-10 2.786749892e-10 1.095626749e-10 3.092980921e-10 2.048504173e-10 1.753270816e-10 2.976327212e-10 8.530607768e-11 2.539930524e-10 6.681604852e-11 2.634277623e-10 1.196684533e-10 8.087359817e-11 1.186777723e-10 8.918573896e-11 1.191706761e-10 2.291023334e-10 1.73977869e-10 2.491408152e-10 1.703355597e-10 2.373418073e-10 2.76052537e-10 1.902423792e-10 2.40746388e-10 1.289420456e-10 2.242416744e-10 1.728039253e-10 2.829413554e-10 1.315632396e-10 1.614283393e-10 1.801538415e-10 1.956035167e-10 2.031577082e-10 1.03215538e-10 2.180690421e-10 1.950237316e-10 1.602761407e-10 1.903867415e-10 2.134895417e-10 2.036915393e-10 1.570080904e-10 1.682637956e-10 1.993617279e-10 2.925724996e-10 1.541187769e-10 3.234730272e-10 3.858849398e-10 4.226060645e-10 4.622645148e-10 2.870208829e-10 3.581225808e-10 2.631029128e-10 2.628394779e-10 4.30718086e-10 2.420011271e-10 3.094367683e-10 2.567683748e-10 2.656106218e-10 2.202639995e-10 2.274732234e-10 2.180692462e-10 3.020550267e-10 2.891512411e-10 3.298656858e-10 4.804134006e-10 1.169940941e-10 2.764786558e-10 2.710984758e-10 2.485538035e-10 2.570585727e-10 2.794671388e-10 1.665866084e-10 2.095246315e-10 1.411859561e-10 2.320366809e-10 1.154547114e-10 4.676378883e-11 1.657754359e-10 2.679954774e-10 1.437479333e-10 1.325954579e-10 1.486151488e-10 1.49359666e-10 1.317012712e-10 3.875573987e-10 3.575141741e-10 2.671972647e-10 2.621593434e-10 6.684698198e-10 3.506839126e-10 6.492527647e-10 3.796589692e-10 3.883595364e-10 3.394522428e-10 5.089184494e-10 5.569375904e-10 4.766870038e-10 3.655595917e-10 3.915107094e-10 5.296890906e-10 3.332377208e-10 2.640159002e-10 8.346277895e-10 7.641185927e-10 4.787089826e-10 4.489051541e-10 6.194817614e-10 4.455202929e-10 4.162323455e-10 4.285306906e-10 2.944999827e-10 2.988757803e-10 2.436389932e-10 4.61660899e-10 3.220148657e-10 2.821187679e-10 5.012026001e-10 4.854168691e-10 6.805814912e-10 3.149223663e-10 5.01697725e-10 2.755601761e-10 3.016415169e-10 4.326682367e-10 4.730824328e-10 6.97891674e-10 3.409655088e-10 3.515343157e-10 5.165977713e-10 4.743616354e-10 4.549730549e-10 3.23579362e-10 3.62774363e-10 6.572260271e-10 5.350879604e-10 4.723978965e-10 5.010730305e-10 3.023701999e-10 3.990661272e-10 1.985115415e-10 1.772784058e-10 7.833246498e-11 1.211626479e-10 1.318935082e-10 1.881015636e-10 1.482738921e-10 9.454921566e-11 1.667788014e-10 1.421594107e-10 1.615315541e-10 1.720068334e-10 2.787102713e-10 2.651083583e-10 2.992506876e-10 2.663539129e-10 3.23640779e-10 2.675367093e-10 2.759017411e-10 3.28873332e-10 2.736616118e-10 3.026045417e-10 2.733443056e-10 2.324990548e-10 2.56845871e-10 2.922567857e-10 3.18244666e-10 3.416735442e-10 3.44992516e-10 3.103753523e-10 2.92119059e-10 2.263019729e-10 2.968728055e-10 3.410313866e-10 3.834569323e-10 3.039023799e-10 1.65236633e-10 2.30978894e-10 3.783010433e-10 1.963091615e-10 1.344438726e-10 1.822276046e-10 1.953943846e-10 1.915502733e-10 3.368037568e-10 1.508735551e-10 1.225382735e-10 1.574881171e-10 1.563109045e-10 2.844896228e-10 2.998600227e-10 2.052732184e-10 2.811303766e-10 2.229174737e-10 2.517022252e-10 1.76704037e-10 1.58101618e-10 2.801800602e-10 1.313342463e-10 2.53921802e-10 3.46143754e-10 2.07445884e-10 2.09966059e-10 2.596988214e-10 1.278052701e-10 2.506053776e-10 1.752920425e-10 1.573807766e-10 1.604122704e-10 1.498335751e-10 1.15495085e-10 2.663134816e-10 9.188289604e-11 2.991951662e-10 1.323429835e-10 2.296091484e-10 1.340602083e-10 2.504186212e-10 6.238910512e-11 3.04217456e-10 2.475323012e-10 3.205450999e-10 3.964706805e-10 9.56502425e-11 3.667859499e-10 2.71453514e-10 1.100255043e-10 2.059896729e-10 2.391942264e-10 2.081176544e-10 1.554934468e-10 1.406510976e-10 1.958479044e-10 1.290351295e-10 2.756674193e-10 2.821401874e-10 1.530497171e-10 1.966863489e-10 1.507267103e-10 2.473777204e-10 1.82559003e-10 1.281000054e-10 1.138884301e-10 1.954619124e-10 3.226404706e-10 1.699860892e-10 1.784637238e-10 3.448305444e-10 1.093379593e-10 3.631448849e-10 1.52919807e-10 1.225340237e-10 1.173407599e-10 3.163300175e-10 1.112507687e-10 1.1629456e-10 3.168962378e-10 1.679189484e-10 3.504761233e-10 1.174677719e-10 1.95430794e-10 1.21110044e-10 +2.595554775e-10 2.583627991e-10 1.354057673e-10 1.167208803e-10 3.659898993e-10 2.952758873e-10 2.08923249e-10 4.049532845e-10 2.644752073e-10 2.913298406e-10 1.891881907e-10 3.366323091e-10 2.924090276e-10 1.872106318e-10 1.645670325e-10 9.891163334e-11 2.675332034e-10 1.37797977e-10 3.14330116e-10 4.270411069e-10 2.206531338e-10 1.381814545e-10 2.12518601e-10 1.415255258e-10 2.900210002e-10 1.841221382e-10 2.285945696e-10 1.590765606e-10 1.132387721e-10 2.05995872e-10 3.468797238e-10 3.56984343e-10 1.804746018e-10 2.951945227e-10 1.77504275e-10 1.863777324e-10 2.589984688e-10 1.850657334e-10 1.599388992e-10 3.767135906e-10 1.706285971e-10 2.047256865e-10 1.134179107e-10 1.458982464e-10 3.432796413e-10 1.704873453e-10 1.76967489e-10 1.243447147e-10 2.932708159e-10 3.111569049e-10 3.434513589e-10 3.094745528e-10 3.34174789e-10 2.515444976e-10 2.975556971e-10 1.338192441e-10 1.193098097e-10 1.40196158e-10 2.443424242e-10 2.990623864e-10 2.805035699e-10 2.395180688e-10 2.616452697e-10 2.611394728e-10 2.757747905e-10 2.508450058e-10 2.994959002e-10 1.892035747e-10 2.504049184e-10 2.09078893e-10 2.27382829e-10 3.747636014e-10 1.878608833e-10 2.250313528e-10 2.813445419e-10 1.744921885e-10 9.019564242e-11 2.316780153e-10 2.153780736e-10 3.068337808e-10 1.77066248e-10 2.688407839e-10 3.023028241e-10 2.705401707e-10 2.594502049e-10 3.839726157e-10 3.313137158e-10 2.641955248e-10 3.097073351e-10 3.642114022e-10 2.828097636e-10 2.981822672e-10 1.861943152e-10 2.773682137e-10 2.816436287e-10 1.751882394e-10 2.744083926e-10 2.139270853e-10 1.112795122e-10 3.098079533e-10 1.928803929e-10 3.307358218e-10 2.819436229e-10 2.399810691e-10 3.304221589e-10 2.568262333e-10 2.166143656e-10 2.143670606e-10 3.201337969e-10 1.430983253e-10 1.431473968e-10 1.46304991e-10 1.366637104e-10 8.100275482e-11 5.350006492e-11 8.551170284e-11 1.072914681e-10 1.939641914e-10 1.296355756e-10 1.943108628e-10 1.487018692e-10 1.321860816e-10 1.652820382e-10 5.4115464e-10 3.852405075e-10 3.494333346e-10 7.32770515e-10 3.103192679e-10 4.053345126e-10 3.428620177e-10 3.046390414e-10 3.963432933e-10 3.82022606e-10 6.073926138e-10 3.538470397e-10 3.790355495e-10 4.88111926e-10 2.53343363e-10 3.512676064e-10 1.934624813e-10 4.320322993e-10 3.34339463e-10 4.444270481e-10 6.224920057e-10 3.857511775e-10 4.601193778e-10 3.995185986e-10 4.366570954e-10 4.065358187e-10 3.346427133e-10 2.848679828e-10 3.022878107e-10 5.970576329e-10 3.650091717e-10 4.20102411e-10 4.882636919e-10 5.554399897e-10 5.602595877e-10 6.37727932e-10 3.04760018e-10 4.827872763e-10 4.67094527e-10 5.125630204e-10 3.124502562e-10 5.665565132e-10 4.020173589e-10 4.321456904e-10 3.023954768e-10 4.332621318e-10 5.299015859e-10 4.557818678e-10 4.057367974e-10 4.942462849e-10 6.204024696e-10 4.154995456e-10 3.948704256e-10 5.915059999e-10 3.004121098e-10 4.808069389e-10 2.082471955e-10 1.341900777e-10 9.98627226e-11 2.177688242e-10 1.470522917e-10 1.469372609e-10 3.011124373e-11 1.012325809e-10 2.971325711e-10 1.758609301e-10 1.897294773e-10 2.493250551e-10 2.177127079e-10 2.89323255e-10 2.090939762e-10 1.961918312e-10 3.121066441e-10 2.849711031e-10 3.07314323e-10 1.378570489e-10 3.118834679e-10 1.967680665e-10 2.832624072e-10 2.674681908e-10 2.224569101e-10 4.279912442e-10 3.47994719e-10 4.212544796e-10 2.632461002e-10 2.199364282e-10 3.838129055e-10 3.383834437e-10 3.428626488e-10 3.371880698e-10 3.532994665e-10 2.59546641e-10 2.788392471e-10 2.639578649e-10 2.264624825e-10 2.825038928e-10 1.867485798e-10 2.31117296e-10 2.678806821e-10 1.864656663e-10 3.416071995e-10 2.154479327e-10 2.732544612e-10 3.169705295e-10 2.788520282e-10 1.626138163e-10 2.645852959e-10 2.358921443e-10 2.728221921e-10 2.807856397e-10 1.642655031e-10 2.527831647e-10 1.741700102e-10 2.991059485e-10 2.512718058e-10 1.893678636e-10 1.746178491e-10 2.38696628e-10 2.476940866e-10 3.099739693e-10 1.914682569e-10 3.558021133e-10 1.874982463e-10 1.620934177e-10 2.362691123e-10 1.905272106e-10 1.492055362e-10 1.852173256e-10 1.566502423e-10 1.874135484e-10 1.502414029e-10 2.466273053e-10 2.46303561e-10 3.361984774e-10 7.056658873e-11 7.718555431e-11 1.884034874e-10 2.056480919e-10 1.394375466e-10 1.776796518e-10 7.517651414e-11 2.527907594e-10 2.699614601e-10 1.839234501e-10 1.364919491e-10 2.754376426e-10 2.305786176e-10 2.516677415e-10 3.394347857e-10 1.899836976e-10 2.352768938e-10 1.040898738e-10 3.606705799e-10 1.332151166e-10 2.184666514e-10 1.55583931e-10 3.596755337e-10 2.466386239e-10 6.617840558e-11 2.855244504e-10 2.581133154e-10 3.88692465e-10 1.253033651e-10 1.589402665e-10 1.720464582e-10 2.594350432e-10 3.715478897e-10 2.46680128e-10 1.839035538e-10 1.690251277e-10 2.399382588e-10 4.905855973e-10 3.555148615e-10 1.548417498e-10 3.602188403e-10 2.869447311e-10 1.697886737e-10 +3.426686017e-10 5.029673329e-10 3.288310404e-10 3.825139527e-10 2.548439421e-10 2.466359263e-10 3.598042853e-10 2.10107967e-10 1.147754441e-10 1.780683857e-10 1.773515391e-10 2.854008126e-10 3.301884804e-10 2.089405851e-10 1.029203744e-10 4.311490175e-10 1.374706566e-10 2.097577546e-10 1.519661593e-10 2.369751993e-10 2.165547876e-10 1.230059874e-10 2.081201311e-10 1.381171131e-10 9.098950218e-11 2.593688592e-10 2.144550141e-10 1.348464295e-10 4.134776886e-10 2.464954043e-10 2.577022905e-10 1.372726825e-10 2.663843691e-10 2.851242331e-10 2.678728855e-10 1.506219773e-10 2.098891282e-10 1.595870204e-10 5.189266474e-10 3.626476308e-10 1.637876929e-10 2.125790986e-10 1.945229832e-10 2.275961553e-10 2.888333207e-10 1.576447712e-10 1.721285001e-10 2.185398962e-10 1.044474029e-10 2.710927823e-10 4.538496126e-10 2.542898271e-10 2.005650436e-10 2.069262515e-10 2.960234849e-10 1.666414161e-10 2.545547762e-10 1.840077693e-10 1.69612004e-10 1.293516534e-10 2.047896628e-10 2.521106393e-10 1.906785125e-10 1.867859169e-10 2.71720394e-10 1.158356888e-10 3.023329525e-10 2.997607375e-10 2.202174479e-10 1.155349801e-10 1.86670839e-10 2.196113093e-10 8.036229541e-11 1.763220867e-10 1.008430384e-10 1.166995254e-10 2.011063043e-10 2.953331685e-10 2.413169073e-10 3.395738499e-10 2.994286479e-10 2.337377935e-10 2.070620745e-10 3.39535907e-10 4.583199802e-10 3.212191066e-10 2.611718789e-10 3.102465883e-10 3.32119351e-10 2.450651866e-10 3.161862935e-10 3.055860017e-10 4.704500482e-10 2.154062907e-10 2.756372886e-10 4.189326038e-10 2.041389339e-10 3.299710143e-10 3.058528834e-10 3.659530415e-10 2.41387811e-10 3.254328935e-10 2.816439334e-10 1.563171919e-10 2.495490262e-10 1.939858297e-10 3.207365311e-10 3.512344793e-10 2.742322951e-10 1.948529299e-10 1.993467428e-10 1.514738393e-10 2.767012268e-10 1.420758746e-10 7.933256044e-11 2.186196666e-10 1.989346331e-10 1.253274716e-10 2.518996532e-10 1.99719631e-10 3.988376555e-10 6.949087582e-10 2.384681756e-10 2.891017531e-10 4.485867384e-10 5.487044232e-10 3.531966278e-10 4.158597347e-10 4.078167073e-10 6.158420574e-10 6.26936886e-10 5.346953055e-10 3.826957599e-10 4.655985142e-10 3.996724968e-10 5.265613835e-10 5.085390923e-10 3.13653453e-10 3.379534655e-10 3.953325806e-10 4.570970045e-10 4.362057452e-10 5.407718403e-10 3.86992696e-10 3.418400799e-10 7.585633278e-10 4.595496413e-10 3.316391741e-10 3.804939424e-10 2.228899952e-10 3.878980887e-10 7.550411359e-10 3.572153969e-10 4.154789178e-10 3.40201089e-10 7.541279689e-10 3.525321321e-10 3.217753516e-10 4.267084931e-10 3.502834459e-10 6.696658953e-10 3.550205299e-10 5.522158161e-10 2.178976655e-10 4.712377436e-10 4.901548181e-10 4.640278398e-10 4.369682179e-10 1.997524074e-10 5.656441896e-10 5.315133301e-10 4.694756349e-10 3.842648099e-10 6.896300529e-10 5.695620937e-10 3.865486742e-10 2.956919467e-10 4.273480586e-10 2.506811181e-10 4.544093971e-10 1.67786999e-10 1.382537504e-10 1.618950458e-10 2.382591858e-10 2.723851006e-10 1.740676488e-10 1.373996462e-10 4.70315269e-11 1.421727006e-10 1.407892166e-10 2.174462226e-10 2.252871936e-10 1.811942905e-10 2.223936026e-10 1.440655423e-10 2.240566009e-10 3.767225734e-10 2.741128271e-10 2.106765115e-10 2.587352789e-10 4.368111122e-10 2.240718484e-10 2.033984226e-10 4.055159169e-10 3.37783372e-10 3.640808188e-10 1.813613745e-10 3.214600909e-10 2.579877957e-10 2.309978914e-10 2.322196629e-10 4.339830219e-10 3.14210539e-10 3.204651607e-10 3.2189112e-10 4.578135364e-10 3.413451414e-10 2.642613487e-10 2.660280545e-10 2.457049365e-10 2.330324788e-10 2.472772988e-10 2.686715157e-10 1.025524217e-10 2.870731648e-10 1.661396904e-10 1.465029331e-10 1.56735609e-10 1.299033993e-10 2.21876429e-10 2.537414355e-10 2.364717411e-10 3.322506637e-10 1.774138235e-10 2.8240991e-10 2.407253991e-10 1.438077527e-10 1.929179833e-10 1.60278639e-10 1.744851745e-10 2.26091377e-10 3.407982891e-10 2.781926023e-10 2.305666566e-10 1.114752402e-10 2.224328222e-10 1.820008293e-10 1.792692741e-10 1.193592113e-10 2.645149911e-10 3.804501815e-10 1.61223417e-10 1.766655566e-10 1.701954131e-10 3.028419342e-10 1.675260391e-10 1.843359898e-10 1.922384092e-10 2.579006059e-10 2.274789884e-10 2.973009155e-10 1.939937176e-10 4.463724924e-10 9.479255998e-11 1.101637665e-10 3.285764943e-10 1.765679356e-10 3.036224018e-10 3.640745516e-10 8.334924951e-11 9.077696192e-11 2.609691947e-10 1.926793022e-10 1.348246387e-10 7.760747909e-11 3.275429609e-10 1.902421683e-10 2.917444178e-10 2.564119579e-10 2.229631753e-10 1.055410741e-10 1.875211545e-10 2.099816331e-10 3.814498848e-10 2.463677161e-10 1.207882024e-10 4.676073111e-10 1.698537465e-10 2.344279759e-10 2.558953565e-10 9.112447861e-11 2.556359078e-10 1.606925013e-10 7.745174589e-11 3.208774126e-10 2.028483624e-10 2.19606681e-10 2.072758814e-10 3.421132617e-10 2.23659513e-10 +2.677940279e-10 2.661923115e-10 1.807661759e-10 2.284626049e-10 3.097391109e-10 2.280109667e-10 1.770742062e-10 1.772078649e-10 9.758960764e-11 3.619147135e-10 1.011661917e-10 2.610808331e-10 2.112145715e-10 2.603130923e-10 2.626274836e-10 1.818944609e-10 1.49673663e-10 1.898429228e-10 1.37511649e-10 3.014380965e-10 3.080024706e-10 2.189232329e-10 2.900068148e-10 1.429625339e-10 1.66200248e-10 1.818782919e-10 2.985820947e-10 2.086924668e-10 2.236267613e-10 1.743746051e-10 2.343609068e-10 1.637143684e-10 2.642502184e-10 1.607386715e-10 2.569403725e-10 1.923470506e-10 2.229016766e-10 3.395612175e-10 1.832005592e-10 2.05338144e-10 5.238062866e-10 3.229862607e-10 3.478653131e-10 1.520314386e-10 2.07134822e-10 2.327823319e-10 1.329042618e-10 2.449507632e-10 1.821927336e-10 2.288962228e-10 2.951927368e-10 1.266904496e-10 1.680293649e-10 2.567271836e-10 3.124061343e-10 2.387240568e-10 1.986895285e-10 2.557697109e-10 2.977129666e-10 1.473909883e-10 1.389924467e-10 1.054532706e-10 2.664921352e-10 3.219063656e-10 1.694380258e-10 2.644879614e-10 2.660155938e-10 2.743675415e-10 1.805704217e-10 1.978548797e-10 1.301093762e-10 1.920412853e-10 1.952075741e-10 1.687323191e-10 1.466083403e-10 1.883469752e-10 2.655092056e-10 1.596074527e-10 2.268717257e-10 1.12024368e-10 3.09004342e-10 3.160575094e-10 2.730294301e-10 3.962487903e-10 3.022336006e-10 4.350316437e-10 2.921960242e-10 2.746790134e-10 1.997648801e-10 3.252855808e-10 4.173724955e-10 3.94422943e-10 2.172868435e-10 3.107657441e-10 3.922945779e-10 1.844288817e-10 3.239706592e-10 3.362889334e-10 3.577899902e-10 2.604400779e-10 2.421798514e-10 2.91006236e-10 2.717315568e-10 2.763824798e-10 2.222175649e-10 2.472222524e-10 2.738098842e-10 2.664902342e-10 1.935962814e-10 1.653782797e-10 1.324352665e-10 1.74879795e-10 1.431736669e-10 1.318180258e-10 1.624166407e-10 9.665681165e-11 2.022330385e-10 1.199497269e-10 2.043735266e-10 1.351219742e-10 3.124070653e-10 5.838495395e-10 5.189193432e-10 5.260473465e-10 4.578407943e-10 4.367669519e-10 4.468004938e-10 7.950354637e-10 2.804721839e-10 6.314163539e-10 4.7055513e-10 6.720509449e-10 3.223315302e-10 4.475928613e-10 4.759884806e-10 6.752674397e-10 4.519375562e-10 3.768102361e-10 4.75190809e-10 4.749875747e-10 4.247170916e-10 3.564069655e-10 6.373348262e-10 5.420926143e-10 2.336721285e-10 3.275298241e-10 2.528244288e-10 2.6932522e-10 5.12330672e-10 3.456062659e-10 3.208840158e-10 2.928167295e-10 4.44360044e-10 3.529812353e-10 4.399253222e-10 3.449630705e-10 2.35536607e-10 5.191138606e-10 5.72452633e-10 3.81013875e-10 5.417290876e-10 4.886129372e-10 3.775295744e-10 3.914794899e-10 4.890155845e-10 6.227291785e-10 8.117020028e-10 6.002553448e-10 3.597297038e-10 4.521370357e-10 4.070565726e-10 4.258362429e-10 4.982470343e-10 6.298330649e-10 5.132328921e-10 5.88364587e-10 3.432106165e-10 6.688626332e-10 4.515349681e-10 5.484993268e-10 1.167829475e-10 1.180634901e-10 1.769170489e-10 1.666143763e-10 1.934910758e-10 1.334307904e-10 1.913232816e-10 1.702880256e-10 1.001562278e-10 1.946318445e-10 1.7746229e-10 2.228238884e-10 2.778371308e-10 3.075777728e-10 2.684193821e-10 2.200226999e-10 1.10876413e-10 3.849984314e-10 3.226890583e-10 2.732112833e-10 2.503586845e-10 2.013173502e-10 3.4702917e-10 2.769829416e-10 2.482697488e-10 3.107776403e-10 1.746509975e-10 2.61937925e-10 4.260680535e-10 3.338847554e-10 2.647605446e-10 2.272777254e-10 3.965734723e-10 3.810687095e-10 3.490410511e-10 2.967531773e-10 4.658026069e-10 3.315535546e-10 3.212301594e-10 2.227732333e-10 1.506748726e-10 1.426545765e-10 1.091604671e-10 2.654563877e-10 1.559153407e-10 2.367161286e-10 1.356371383e-10 3.777029322e-10 1.766097191e-10 2.410084692e-10 1.197395903e-10 3.388876664e-10 2.367826884e-10 1.890998345e-10 3.103103449e-10 2.899487225e-10 2.872348181e-10 2.548895299e-10 2.608701563e-10 2.361469576e-10 2.18943909e-10 9.07431295e-11 1.325821395e-10 2.385449537e-10 1.744532847e-10 4.327841792e-10 1.888443976e-10 1.469024816e-10 3.395864698e-10 3.086855435e-10 2.508093465e-10 1.748175562e-10 1.187221772e-10 2.951672445e-10 2.718267508e-10 2.62481531e-10 2.073719153e-10 2.862851528e-10 3.068201779e-10 3.489426729e-10 2.510392634e-10 2.365263634e-10 2.369938942e-10 2.129510684e-10 1.940775869e-10 2.685462834e-10 1.041281747e-10 4.23485951e-10 3.496885171e-10 2.812737512e-10 2.352904164e-10 1.625467786e-10 8.998539638e-11 1.246734126e-10 2.886369626e-10 2.316036321e-10 3.182752204e-10 3.05965286e-10 1.46409978e-10 2.06753234e-10 1.724616533e-10 1.704075436e-10 1.281973556e-10 1.58424005e-10 2.342564682e-10 2.524958006e-10 3.625056907e-10 2.713032335e-10 2.761539249e-10 2.304177055e-10 1.913841053e-10 1.892788847e-10 2.659163008e-10 1.568110915e-10 3.970114872e-10 8.26573231e-11 3.0734663e-10 3.401382733e-10 4.088375172e-10 3.409116892e-10 +1.94215072e-10 2.130418525e-10 8.915753566e-11 1.583108539e-10 2.407535239e-10 1.927555804e-10 1.195512893e-10 1.856783389e-10 3.368189076e-10 2.216285109e-10 1.414794646e-10 3.6721978e-10 3.128039975e-10 2.56170871e-10 1.085586871e-10 3.496790404e-10 2.018783505e-10 2.190292162e-10 1.976187175e-10 1.859148606e-10 1.135121485e-10 2.485627472e-10 2.597856084e-10 2.287205854e-10 2.553830783e-10 1.760798188e-10 1.793582094e-10 2.623759336e-10 2.656162985e-10 2.834926131e-10 3.18362045e-10 3.308739282e-10 2.348609625e-10 1.33348544e-10 2.195581378e-10 2.513538551e-10 2.468668137e-10 3.243234806e-10 1.310070316e-10 1.256446623e-10 2.174099572e-10 2.279323399e-10 1.848130951e-10 1.510198295e-10 2.459008005e-10 2.521146023e-10 2.073471545e-10 2.269887261e-10 2.943969016e-10 1.468748553e-10 3.518547688e-10 1.963730967e-10 8.029379196e-11 2.140011301e-10 1.632697613e-10 1.827165724e-10 7.431408559e-11 3.055938221e-10 2.769766947e-10 2.699365272e-10 2.326316539e-10 2.696050053e-10 1.407803538e-10 2.647578518e-10 2.763123501e-10 3.60784099e-10 2.943307413e-10 2.806895285e-10 1.694872081e-10 4.236407077e-10 3.064682081e-10 3.594869262e-10 2.42235647e-10 2.680219039e-10 1.820980153e-10 1.361912835e-10 1.829122128e-10 1.787551406e-10 1.11546295e-10 8.192666715e-11 3.13564205e-10 3.104620076e-10 3.411379045e-10 3.222387792e-10 3.247993868e-10 3.856776848e-10 3.617699848e-10 2.246171675e-10 4.549887026e-10 3.30771304e-10 4.548186214e-10 3.488288853e-10 2.749681002e-10 3.007441046e-10 3.549593093e-10 2.468707248e-10 2.410119167e-10 4.12462311e-10 2.397098501e-10 2.214018865e-10 2.348808193e-10 2.50073415e-10 2.689776484e-10 2.510530974e-10 3.152723548e-10 3.035578856e-10 1.486745561e-10 2.038818303e-10 2.780694908e-10 2.319523969e-10 1.684568925e-10 1.023379892e-10 1.153142116e-10 2.153535867e-10 2.523734075e-10 2.840620704e-10 1.604158546e-10 2.081640987e-10 1.57071611e-10 2.670589211e-10 6.510217675e-10 5.076942546e-10 5.442452608e-10 4.5282792e-10 3.405595027e-10 3.832451564e-10 6.151472031e-10 4.414024957e-10 3.051635726e-10 3.091621008e-10 6.834871598e-10 3.954834513e-10 4.305508514e-10 4.433355476e-10 5.256556634e-10 6.584534938e-10 4.821370352e-10 6.793438631e-10 6.230854386e-10 5.618155295e-10 4.48720704e-10 5.443051524e-10 3.639521294e-10 8.139365117e-10 5.088659526e-10 3.856355574e-10 3.304576087e-10 4.330933039e-10 3.38429923e-10 3.523361005e-10 3.72603732e-10 4.285607312e-10 5.318457444e-10 5.163088185e-10 6.142416186e-10 3.60593313e-10 3.216904149e-10 3.449226631e-10 3.364858551e-10 6.109555211e-10 2.037766633e-10 3.875968484e-10 4.80658217e-10 3.667200359e-10 4.796850015e-10 3.826394136e-10 4.19001976e-10 6.554033217e-10 3.047777036e-10 5.122134922e-10 2.760879924e-10 5.411116577e-10 1.760060575e-10 5.388144994e-10 4.36459228e-10 4.951605633e-10 4.247161085e-10 6.34082484e-10 3.895892432e-10 5.907138473e-10 6.58870589e-10 1.693291198e-10 1.736390868e-10 1.782855719e-10 2.099015249e-10 8.848997811e-11 2.434078103e-10 1.205895115e-10 3.048385647e-11 1.483316318e-10 2.100263976e-10 2.712918022e-10 1.962422058e-10 2.301521529e-10 1.88907113e-10 2.590860518e-10 3.306808006e-10 3.757866385e-10 2.333010863e-10 2.223722171e-10 3.285101336e-10 3.409891333e-10 1.667375252e-10 3.17841755e-10 2.581443937e-10 2.574304498e-10 3.964888093e-10 2.385308679e-10 2.26234281e-10 4.718085968e-10 2.429611875e-10 4.879166603e-10 3.359248474e-10 3.690229573e-10 3.695272032e-10 3.210597979e-10 1.780516138e-10 2.677165757e-10 2.636945268e-10 2.956746667e-10 2.813813124e-10 1.333224714e-10 3.516868911e-10 2.546803642e-10 2.142645206e-10 2.20635463e-10 2.027078849e-10 3.956796682e-10 1.979065558e-10 2.301271766e-10 3.57846586e-10 2.563658045e-10 2.305372185e-10 2.930202618e-10 2.553795068e-10 1.56888147e-10 3.247671897e-10 3.532953683e-10 3.656046425e-10 3.701022861e-10 1.034201119e-10 1.951102914e-10 3.06212061e-10 3.231386162e-10 1.326952267e-10 2.990731741e-10 1.68857712e-10 9.264290351e-11 1.223218557e-10 1.747784821e-10 3.043060732e-10 1.082064641e-10 1.809581815e-10 9.744537891e-11 2.160648881e-10 1.766309313e-10 2.60909033e-10 2.244162862e-10 2.087171922e-10 1.928307184e-10 1.58640401e-10 2.024375837e-10 2.769200803e-10 1.980749903e-10 2.160419848e-10 2.198223996e-10 2.544695444e-10 1.838200928e-10 1.756055632e-10 1.914037394e-10 1.696137209e-10 3.09556475e-10 2.7777249e-10 2.237499686e-10 3.623511096e-10 1.546065356e-10 2.626888231e-10 1.665939369e-10 1.806760187e-10 6.734147511e-11 3.222766934e-10 1.394042579e-10 1.912465005e-10 1.789956541e-10 2.510021714e-10 2.399425678e-10 2.753036096e-10 2.726099933e-10 4.804405442e-10 1.945345473e-10 1.667302465e-10 2.890734956e-10 3.38889732e-10 1.151492712e-10 2.432426943e-10 9.053274575e-11 2.864336953e-10 3.135920233e-10 2.02308523e-10 2.46671187e-10 +2.238775244e-10 3.961101835e-10 1.9992462e-10 2.082801729e-10 1.64421247e-10 2.212191985e-10 2.572223e-10 3.612266875e-10 2.525265796e-10 1.118638143e-10 2.480522241e-10 2.522507387e-10 1.29023752e-10 2.402993288e-10 2.296922497e-10 1.532411235e-10 3.868597243e-10 1.237813667e-10 2.596587493e-10 3.641823114e-10 2.17774467e-10 3.171092316e-10 2.564991079e-10 3.354039873e-10 3.864576595e-10 3.113099933e-10 6.776521353e-11 9.669153475e-11 1.976184078e-10 1.748764619e-10 1.875766844e-10 4.10858776e-10 3.613805526e-10 2.805877678e-10 1.003548657e-10 2.513285547e-10 1.648494859e-10 5.014873473e-10 3.217766827e-10 2.056126259e-10 8.693551541e-11 1.547084451e-10 2.268152623e-10 1.482250011e-10 1.504753763e-10 9.696052914e-11 1.696084456e-10 1.150281105e-10 1.277948926e-10 1.24860211e-10 1.477870862e-10 1.697822022e-10 4.310615547e-11 2.304659288e-10 1.558334853e-10 1.974651449e-10 2.866556089e-10 1.367050073e-10 2.654466995e-10 2.898640373e-10 1.467147652e-10 3.330315802e-10 1.768318573e-10 1.14120753e-10 1.620843781e-10 1.754294893e-10 3.767606937e-10 1.621340746e-10 2.426433633e-10 2.327465126e-10 2.779323326e-10 2.326408035e-10 2.566697126e-10 2.054651951e-10 3.493507136e-10 3.477904046e-10 2.510502606e-10 1.932446235e-10 3.040720301e-10 5.748129504e-11 2.591967599e-10 2.814112727e-10 3.585726742e-10 1.800861239e-10 2.756489899e-10 2.790613609e-10 4.572009316e-10 2.621444631e-10 2.400331367e-10 3.24582563e-10 2.995673653e-10 3.902104696e-10 2.845227064e-10 1.913500871e-10 3.887294214e-10 2.429668661e-10 5.693196308e-10 3.291361803e-10 2.395632328e-10 2.376880786e-10 2.495172057e-10 2.910942106e-10 3.025641245e-10 1.380417317e-10 2.354940655e-10 2.380461144e-10 2.161384634e-10 1.433314691e-10 1.776611908e-10 2.714677622e-10 1.766855678e-10 1.045268072e-10 1.049810842e-10 1.93581512e-10 1.731111119e-10 2.252261898e-10 1.725056149e-10 1.515329884e-10 3.371148912e-10 4.336759628e-10 2.432184362e-10 4.904134111e-10 5.624729864e-10 4.060041031e-10 5.612812135e-10 4.089871797e-10 3.087131782e-10 5.076341975e-10 4.783603183e-10 4.714566551e-10 2.946518281e-10 4.417294206e-10 5.181721298e-10 5.279468886e-10 4.880194699e-10 4.388307751e-10 6.038143018e-10 4.105794117e-10 4.542229519e-10 6.239909194e-10 5.402866675e-10 5.440820957e-10 5.020854464e-10 3.126908511e-10 3.190644214e-10 6.385175674e-10 5.546898546e-10 7.457818671e-10 6.111900384e-10 4.411489366e-10 3.37407222e-10 2.597759526e-10 3.240924816e-10 3.499170213e-10 3.16323097e-10 4.912925582e-10 3.696283645e-10 6.064195309e-10 3.147665739e-10 6.498026366e-10 2.452105203e-10 4.785569439e-10 2.993724472e-10 3.051577686e-10 4.661318996e-10 4.102726821e-10 5.772219707e-10 5.510354253e-10 4.20621856e-10 5.686237576e-10 5.049650991e-10 4.102481872e-10 3.47068554e-10 5.169077751e-10 4.766934702e-10 3.20371035e-10 3.898001534e-10 3.114480101e-10 3.642092982e-10 8.83955882e-10 5.841451202e-10 3.963742759e-10 1.376236658e-10 1.350004864e-10 2.029232352e-10 1.662288128e-10 1.171342878e-10 1.654089503e-10 1.913516128e-10 9.048382947e-11 1.544157949e-10 1.235376485e-10 2.084050187e-10 1.66803235e-10 2.471869763e-10 2.660702249e-10 2.209293319e-10 3.25616066e-10 3.233695496e-10 2.730437482e-10 3.352612242e-10 4.119012268e-10 1.954291226e-10 3.927006208e-10 3.992279773e-10 2.844476753e-10 2.328571491e-10 2.439187187e-10 2.959948765e-10 3.080600863e-10 2.773623543e-10 2.723544811e-10 3.178710348e-10 3.496184128e-10 3.016134361e-10 4.797188329e-10 3.961048794e-10 3.260043071e-10 3.822161197e-10 1.396845936e-10 1.928261943e-10 2.119634961e-10 1.423505556e-10 2.709441185e-10 1.236794577e-10 4.102606306e-10 1.101768865e-10 2.05115586e-10 2.840041723e-10 1.607668937e-10 2.324673445e-10 2.464587763e-10 3.54918537e-10 2.633981197e-10 1.554898193e-10 1.934460701e-10 2.816217584e-10 3.804329021e-10 3.229432414e-10 2.183740054e-10 2.101134183e-10 2.59132488e-10 2.483032155e-10 1.1683741e-10 3.770828699e-10 1.346179578e-10 2.686259299e-10 2.264964903e-10 2.977088649e-10 1.570424603e-10 2.843290545e-10 2.891965284e-10 1.695010074e-10 2.037036366e-10 3.328363564e-10 1.809706517e-10 3.270358576e-10 2.580988644e-10 2.18171307e-10 1.099968857e-10 2.072948264e-10 3.58910651e-10 2.641256287e-10 3.06694475e-10 3.227935141e-10 2.598064986e-10 4.035940247e-10 3.392714808e-10 4.790148049e-10 2.303791645e-10 2.121487987e-10 1.381318315e-10 2.988824527e-10 2.875682851e-10 3.2711272e-10 1.310564914e-10 2.869435145e-10 6.816924488e-11 2.290744448e-10 4.163321465e-10 2.787378524e-10 2.223249707e-10 3.087661246e-10 2.365547244e-10 2.665010286e-10 2.548712935e-10 1.598908009e-10 1.214888071e-10 2.085588211e-10 4.667526211e-10 2.41939663e-10 2.175776897e-10 2.274251539e-10 9.983664534e-11 2.239490468e-10 3.281225834e-10 1.775647816e-10 4.087265487e-10 3.341520408e-10 2.660557033e-10 +2.173839576e-10 3.133120068e-10 2.809612267e-10 1.921178949e-10 3.918358308e-10 9.199103625e-11 2.79905207e-10 3.859898719e-10 1.067564735e-10 3.000536994e-10 3.23803461e-10 2.373998228e-10 1.93599595e-10 3.116933573e-10 1.953897162e-10 1.673535364e-10 3.258650588e-10 2.843598346e-10 3.148809093e-10 2.878562644e-10 1.87623112e-10 3.237497177e-10 1.917501371e-10 2.291018934e-10 2.832117219e-10 6.609157854e-11 2.583891065e-10 1.767906585e-10 2.046886993e-10 1.684022938e-10 3.136984138e-10 3.47512235e-10 2.40399097e-10 1.508902259e-10 3.874264155e-10 2.080407288e-10 2.076061986e-10 1.720965082e-10 1.838287807e-10 3.700885822e-10 1.423048707e-10 1.285913311e-10 2.902240015e-10 2.530331259e-10 8.202934943e-11 1.484887172e-10 2.322640468e-10 9.393650796e-11 3.604300277e-10 2.893726283e-10 1.638081566e-10 3.059895399e-10 1.920614826e-10 1.310574283e-10 1.554280648e-10 3.101072292e-10 1.837084895e-10 4.258650904e-10 1.72230705e-10 2.558100002e-10 1.13237411e-10 1.229306127e-10 1.382790634e-10 2.814254003e-10 1.944167638e-10 3.428096754e-10 2.405828144e-10 1.683892212e-10 1.613027797e-10 3.276641912e-10 1.611641917e-10 3.301889278e-10 2.155680665e-10 1.295997128e-10 2.594414657e-10 1.435229732e-10 2.646152865e-10 2.5016034e-10 2.179304364e-10 3.216383622e-10 2.663590358e-10 3.493453777e-10 2.976532432e-10 4.427876329e-10 3.331785805e-10 2.839284047e-10 3.242659802e-10 4.520327071e-10 2.569949609e-10 3.875540106e-10 3.613177874e-10 4.294871089e-10 4.084023501e-10 2.716894592e-10 2.173065588e-10 3.790875109e-10 3.315535944e-10 2.962036716e-10 2.811428116e-10 3.175241578e-10 2.696017369e-10 2.936924467e-10 1.741753029e-10 2.58515872e-10 2.563149518e-10 2.169600376e-10 1.846015041e-10 1.652596188e-10 2.858370188e-10 5.656529544e-11 1.199531592e-10 1.666962229e-10 3.015603435e-10 3.398675059e-10 2.648015998e-10 1.688625798e-10 1.224981356e-10 3.432050055e-10 5.167231805e-10 4.173894102e-10 4.754295489e-10 5.833731681e-10 3.246910107e-10 3.596980537e-10 4.256223011e-10 4.99975088e-10 2.945618016e-10 6.067774863e-10 5.026571513e-10 3.742018268e-10 3.540655209e-10 5.373959024e-10 4.860194319e-10 4.23146743e-10 4.418508817e-10 3.877311301e-10 2.712463681e-10 5.230387969e-10 2.993519198e-10 4.459618762e-10 3.819856706e-10 4.043240304e-10 3.037311572e-10 3.531663022e-10 4.595823457e-10 4.766840991e-10 5.794182357e-10 4.531019324e-10 3.37493564e-10 3.085602926e-10 4.235597735e-10 3.507239777e-10 3.736807673e-10 5.934749424e-10 5.100394038e-10 4.646154839e-10 3.846398901e-10 4.246297627e-10 4.722647554e-10 5.031998745e-10 6.587864364e-10 3.286817924e-10 2.363189686e-10 5.714841117e-10 3.666816029e-10 4.139638245e-10 3.869007137e-10 3.999537708e-10 3.75258155e-10 3.017048632e-10 5.576585925e-10 7.304898655e-10 3.461370352e-10 4.850127607e-10 5.039695786e-10 4.335129104e-10 5.374314425e-10 4.680271474e-10 5.942584638e-10 5.92700757e-10 3.093865426e-10 4.181782365e-10 2.59725129e-10 1.120775448e-10 1.457252197e-10 2.053422174e-10 1.427564789e-10 1.311422425e-10 1.277910775e-10 6.273137848e-11 1.422379372e-10 1.795350206e-10 2.142639172e-10 2.940009642e-10 1.769685514e-10 2.3747408e-10 2.729612277e-10 2.569277348e-10 2.461818971e-10 3.835462582e-10 2.59398239e-10 3.547799565e-10 3.552205812e-10 1.669354156e-10 3.18435238e-10 3.919283421e-10 3.533580644e-10 2.966720292e-10 3.222369008e-10 2.318986839e-10 2.922293479e-10 2.095646837e-10 3.203176405e-10 2.699184043e-10 4.893973464e-10 2.975225726e-10 2.938166388e-10 4.381106396e-10 1.888836712e-10 3.992457208e-10 1.676430519e-10 2.050574827e-10 1.645325621e-10 1.919330439e-10 1.736167479e-10 2.039814976e-10 2.953199944e-10 2.099113619e-10 3.413898935e-10 2.380233532e-10 2.539814983e-10 1.547865085e-10 2.464950877e-10 3.450163774e-10 2.573692546e-10 2.601051161e-10 2.915188892e-10 3.545373071e-10 2.501308848e-10 2.322927836e-10 2.364743989e-10 2.326864811e-10 2.932611734e-10 1.171161833e-10 2.862000879e-10 2.215961521e-10 1.214314226e-10 2.33839262e-10 2.533142106e-10 2.038332828e-10 1.208416396e-10 1.296167164e-10 2.520852799e-10 3.812756962e-10 2.088380007e-10 1.349324806e-10 2.171336515e-10 3.810895648e-10 3.297542303e-10 1.470828764e-10 3.084706579e-10 2.202966188e-10 1.932279034e-10 1.889948897e-10 4.302349542e-10 1.452056455e-10 3.133358175e-10 3.50749006e-10 1.367758518e-10 8.733531817e-11 2.591369154e-10 3.016555073e-10 2.970872402e-10 2.737016562e-10 1.89427162e-10 1.984485994e-10 2.714940077e-10 2.885228989e-10 1.732156478e-10 2.502340692e-10 2.568131521e-10 4.732385096e-10 2.100176482e-10 1.367215996e-10 3.007214761e-10 2.971709149e-10 1.519213233e-10 1.746110766e-10 1.901143232e-10 1.307843861e-10 2.458121573e-10 3.084357269e-10 2.080145437e-10 1.802743708e-10 2.276969535e-10 4.106533252e-10 2.303543199e-10 2.568597063e-10 2.358331748e-10 2.419872363e-10 +2.240868029e-10 3.128742919e-10 1.2305469e-10 1.638695072e-10 1.904890251e-10 3.758909578e-10 2.029954184e-10 2.674379473e-10 1.350178143e-10 1.617046153e-10 2.106027642e-10 2.046894135e-10 3.289073932e-10 2.893130967e-10 1.186982251e-10 2.302736341e-10 1.112082411e-10 1.72688881e-10 2.035201381e-10 1.285897121e-10 2.08997563e-10 3.23573465e-10 1.796260647e-10 3.570354932e-10 2.001241622e-10 1.996399722e-10 2.642484978e-10 6.129917683e-11 1.511125752e-10 2.426052301e-10 2.46994157e-10 1.153221375e-10 2.914446777e-10 3.359860979e-10 3.50090698e-10 2.55483549e-10 3.069262565e-10 2.591023096e-10 2.72176893e-10 2.566905764e-10 2.576986417e-10 2.428922853e-10 1.529967352e-10 2.038742023e-10 2.117991048e-10 1.291167274e-10 1.916756488e-10 1.490883873e-10 1.522645161e-10 9.500624064e-11 1.353417233e-10 2.393966786e-10 1.565868081e-10 1.328996845e-10 1.307394447e-10 3.889377408e-10 3.937900791e-10 2.388804962e-10 1.554926874e-10 2.914602521e-10 3.453373954e-10 1.424407969e-10 2.343645445e-10 2.260778098e-10 2.567332291e-10 1.36111399e-10 2.062134759e-10 1.87981173e-10 3.059716387e-10 1.336535344e-10 2.186165194e-10 3.553803732e-10 7.108691254e-11 2.563511671e-10 3.349168062e-10 1.356389851e-10 2.063832642e-10 1.682997887e-10 1.720487187e-10 3.996395327e-10 2.007715772e-10 3.284913223e-10 3.15884976e-10 4.218365637e-10 2.256961598e-10 3.021772946e-10 3.846578842e-10 4.864188392e-10 2.352186026e-10 2.047688825e-10 4.030414731e-10 2.212961773e-10 4.295685729e-10 3.01787858e-10 4.323052726e-10 3.839100819e-10 3.853743188e-10 3.592797138e-10 3.40397725e-10 3.335725608e-10 1.404667174e-10 2.554146939e-10 1.94996727e-10 2.552485981e-10 3.343316231e-10 2.16986178e-10 2.282713868e-10 3.128749619e-10 2.184304234e-10 9.574566574e-11 6.692232901e-11 1.380801804e-10 2.077483352e-10 1.460798739e-10 2.14994444e-10 4.895167613e-10 1.539412818e-10 4.706332144e-10 5.82263022e-10 3.687304148e-10 4.128973718e-10 3.445006925e-10 4.669659156e-10 6.884375294e-10 6.135170532e-10 3.865904644e-10 4.109242136e-10 5.601111425e-10 4.915739603e-10 2.999940605e-10 3.79302894e-10 5.148555019e-10 2.900851174e-10 3.673468398e-10 4.310572071e-10 5.668360191e-10 4.999118457e-10 3.104430633e-10 5.729944037e-10 4.247712405e-10 4.463086503e-10 3.968290061e-10 4.137265631e-10 4.837573013e-10 4.998097559e-10 5.944032864e-10 3.596559148e-10 5.490963667e-10 5.048303688e-10 6.200468168e-10 4.844816364e-10 5.239332364e-10 3.403233093e-10 5.807132228e-10 5.920696067e-10 5.293122924e-10 4.634503893e-10 5.504327634e-10 5.652207911e-10 5.4568594e-10 3.790263159e-10 3.490023653e-10 4.968929792e-10 6.484424242e-10 3.811376623e-10 3.942603355e-10 4.487301323e-10 2.746842168e-10 4.985492447e-10 5.393782514e-10 4.076786826e-10 2.597081894e-10 5.869428024e-10 3.448382352e-10 7.100263644e-10 3.590139932e-10 3.066602712e-10 4.542512872e-10 4.663633931e-10 3.286779607e-10 3.761207022e-10 2.804378928e-10 2.372769506e-10 1.619426111e-10 1.268009916e-10 2.185495341e-10 8.803134118e-11 1.282751578e-10 2.150690473e-10 1.263061015e-10 1.511548887e-10 2.499833097e-10 1.477209235e-10 1.920817383e-10 2.539520594e-10 3.519256754e-10 3.563875489e-10 2.157016001e-10 2.300277034e-10 3.280556854e-10 2.893434492e-10 2.008480091e-10 3.787423217e-10 2.651542868e-10 2.438762022e-10 2.805534215e-10 3.256377162e-10 3.864671556e-10 2.293820478e-10 2.970243661e-10 2.701683709e-10 3.55364707e-10 3.740512021e-10 3.473967285e-10 4.659410636e-10 3.894625706e-10 1.309872427e-10 3.757525829e-10 4.191041648e-10 2.456012064e-10 2.217554274e-10 1.686072196e-10 5.767848643e-11 2.515000616e-10 2.144403376e-10 1.488114419e-10 1.688626008e-10 3.397284726e-10 2.245705396e-10 2.119380217e-10 1.519083884e-10 1.602521239e-10 1.305322034e-10 2.537068701e-10 1.559986403e-10 1.911531979e-10 3.422753478e-10 8.804900531e-11 1.284631111e-10 2.651827676e-10 2.431390138e-10 2.815435696e-10 1.409487093e-10 3.259240539e-10 2.630021418e-10 1.555771823e-10 3.23843842e-10 1.03179869e-10 1.191812706e-10 2.057200831e-10 1.669972862e-10 3.185397956e-10 2.428174898e-10 1.663123459e-10 2.156074547e-10 1.4834023e-10 2.292317253e-10 1.788043364e-10 2.228040251e-10 3.373768058e-10 2.539311826e-10 2.720201595e-10 2.396029821e-10 1.789680895e-10 2.397397657e-10 2.390619053e-10 2.702708781e-10 2.342724107e-10 1.420440706e-10 2.424802529e-10 1.244484912e-10 2.137665561e-10 1.340255995e-10 1.008102629e-10 1.74309259e-10 2.160368678e-10 3.104573833e-10 3.763546715e-10 1.976255916e-10 1.280057526e-10 2.314860762e-10 2.783392466e-10 3.073589925e-10 1.97618473e-10 2.35216076e-10 1.655343445e-10 2.308941455e-10 2.470407591e-10 1.484521379e-10 3.319458968e-10 2.661613239e-10 1.983873913e-10 3.321459971e-10 1.609731719e-10 1.471909762e-10 2.300447941e-10 1.723265544e-10 1.50329935e-10 1.916634209e-10 1.022534997e-10 +1.202564479e-10 1.879717259e-10 3.042223845e-10 1.354670851e-10 1.970251067e-10 3.226304429e-10 1.51629626e-10 4.214391279e-10 3.230527583e-10 1.383733546e-10 1.886074059e-10 2.924193319e-10 2.26766774e-10 3.309044553e-10 3.66791042e-10 2.422912303e-10 1.472767101e-10 3.779863693e-10 4.348326635e-10 1.597812248e-10 2.503322445e-10 3.429985744e-10 2.607172504e-10 4.277916072e-10 2.067700874e-10 3.905299032e-10 3.588776762e-10 1.367998402e-10 1.969070341e-10 1.60684896e-10 2.10261104e-10 1.127613788e-10 2.105520589e-10 2.189126961e-10 3.5245927e-10 3.804569706e-10 3.472461149e-10 1.641614347e-10 3.174932007e-10 2.020662989e-10 1.225288043e-10 2.373703085e-10 2.040381146e-10 1.732907911e-10 1.563025765e-10 1.898197607e-10 2.386921437e-10 2.892415305e-10 1.024958882e-10 7.684676683e-11 8.065827879e-11 2.596809431e-10 3.346947411e-10 3.0065518e-10 1.804734321e-10 2.719081349e-10 1.63755919e-10 2.578710981e-10 2.321180026e-10 3.032918899e-10 1.58637057e-10 2.492379535e-10 1.984044863e-10 1.480192085e-10 3.892216882e-10 3.410806313e-10 3.396309868e-10 1.830212433e-10 2.370462313e-10 1.841351913e-10 2.115392578e-10 1.577844794e-10 2.033044925e-10 1.189226897e-10 3.076926286e-10 1.998998609e-10 3.377877727e-10 1.513124272e-10 2.309591888e-10 2.446307667e-10 1.030797189e-10 1.568858927e-10 3.310163709e-10 1.676487966e-10 3.416895444e-10 4.251323556e-10 4.228311375e-10 4.135282801e-10 2.442873747e-10 5.098972576e-10 2.087820619e-10 3.510506881e-10 2.215241414e-10 4.237759081e-10 4.226809862e-10 2.672814931e-10 3.03017733e-10 2.564271839e-10 3.938006937e-10 3.917671169e-10 3.158160245e-10 3.183632752e-10 4.007864422e-10 1.974073727e-10 2.761825829e-10 1.556731276e-10 2.57326968e-10 2.022826407e-10 8.540553974e-11 1.32008984e-10 1.290232893e-10 2.26347472e-10 1.393212575e-10 2.055353262e-10 2.312388955e-10 1.534516636e-10 3.772477152e-10 5.393427843e-10 4.497502161e-10 5.523254539e-10 6.635769022e-10 4.795119187e-10 5.648708109e-10 6.173473381e-10 4.261466425e-10 5.638663601e-10 4.628980762e-10 4.841337018e-10 4.544202369e-10 3.501171614e-10 7.037578435e-10 4.959103442e-10 7.179154874e-10 4.138517603e-10 4.635966779e-10 5.030209794e-10 4.677918322e-10 6.595513612e-10 4.727024206e-10 4.840852705e-10 5.614334313e-10 4.689563488e-10 4.48404694e-10 5.505709085e-10 4.40742935e-10 5.337657248e-10 6.644433965e-10 5.913898737e-10 4.49510845e-10 5.155773287e-10 5.574094475e-10 5.460864138e-10 4.755649278e-10 5.696873335e-10 6.272175412e-10 5.087447822e-10 5.280605609e-10 3.743120599e-10 5.977740728e-10 6.070184569e-10 6.650823958e-10 5.097146027e-10 6.179553976e-10 3.426460861e-10 5.051254253e-10 4.532750382e-10 5.259592013e-10 3.362231259e-10 6.172272793e-10 4.291980683e-10 8.58814837e-10 3.216368606e-10 3.200180582e-10 5.311323039e-10 4.156489222e-10 4.073465297e-10 7.14269421e-10 7.558764865e-10 5.611513384e-10 5.382515843e-10 5.448501119e-10 5.159780273e-10 3.287766017e-10 4.44412443e-10 2.801605178e-10 2.139486352e-10 1.676897866e-10 1.460534168e-10 1.500190478e-10 1.182804671e-10 1.846515809e-10 4.402823588e-11 2.024572329e-10 2.484207507e-10 2.105845605e-10 1.58106642e-10 2.42953717e-10 2.784913772e-10 4.889702036e-10 2.847639351e-10 4.458210019e-10 4.170566279e-10 2.794396175e-10 1.829299029e-10 3.172964928e-10 1.895913616e-10 3.777754916e-10 3.400732887e-10 2.506504879e-10 4.929344885e-10 3.442875668e-10 3.051837604e-10 3.173612e-10 5.622030513e-10 4.301662591e-10 3.30927507e-10 3.891746212e-10 3.781033647e-10 3.28905604e-10 2.635646226e-10 1.680962641e-10 2.382158621e-10 1.990984333e-10 2.695449896e-10 2.133136172e-10 2.043347449e-10 3.724520742e-10 2.488394697e-10 3.23408966e-10 2.335336976e-10 1.267559689e-10 2.36390304e-10 5.09775622e-10 2.246412569e-10 2.290495102e-10 2.887564204e-10 2.813874976e-10 3.605835661e-10 1.311105635e-10 2.481858884e-10 1.965341163e-10 3.253216887e-10 3.492894018e-10 2.458534985e-10 9.900093666e-11 1.149578202e-10 2.355683657e-10 2.578425701e-10 3.859577781e-10 2.945125914e-10 1.402189985e-10 2.980626392e-10 2.625585542e-10 2.449189929e-10 1.543589238e-10 3.601777779e-10 2.003413371e-10 4.060645486e-10 1.969357255e-10 1.697312976e-10 2.98920657e-10 2.814855101e-10 2.570381461e-10 1.38403237e-10 1.594473169e-10 2.621244632e-10 2.033675387e-10 3.98810731e-10 2.340915304e-10 2.265426398e-10 2.600405432e-10 2.180742329e-10 4.434127044e-10 2.628133232e-10 5.064116802e-10 2.127560725e-10 2.361150406e-10 3.769812886e-10 2.724376771e-10 1.380920999e-10 3.385568189e-10 3.798800904e-10 2.636764068e-10 1.610898051e-10 2.061379945e-10 2.950662481e-10 1.878542113e-10 2.563890699e-10 2.631620738e-10 3.174119132e-10 2.439014564e-10 4.021275542e-10 1.818710392e-10 1.505084877e-10 1.199505937e-10 6.212081885e-11 1.18430425e-10 1.298548477e-10 1.747013733e-10 2.07998292e-10 +1.67358891e-10 1.895767806e-10 2.044107075e-10 1.576632003e-10 1.618887479e-10 2.089825129e-10 1.639843457e-10 1.412080045e-10 1.0358286e-10 2.457648314e-10 1.082954275e-10 3.089042667e-10 1.787460363e-10 1.674875061e-10 2.617018815e-10 2.336191005e-10 1.657323707e-10 1.902063143e-10 2.523946949e-10 2.201719243e-10 2.136197412e-10 1.225969198e-10 1.595551681e-10 1.765743656e-10 1.770079885e-10 1.95458348e-10 2.252230332e-10 1.018753114e-10 1.501642536e-10 2.500490493e-10 2.580876175e-10 1.174328123e-10 3.013756188e-10 4.315267612e-10 2.83842046e-10 2.042934765e-10 1.665784741e-10 2.731532395e-10 2.748801435e-10 2.822605968e-10 1.754053961e-10 2.90102647e-10 1.905689782e-10 1.890530743e-10 1.863167168e-10 7.795564087e-11 2.401069959e-10 3.327099763e-10 1.679166025e-10 1.865073907e-10 2.186196747e-10 1.55843005e-10 9.128147359e-11 3.256265266e-10 2.447696205e-10 2.58996763e-10 2.635339833e-10 3.563397095e-10 2.748009736e-10 1.670061941e-10 1.732322561e-10 1.866084218e-10 3.64957692e-10 3.269522602e-10 1.476383894e-10 2.393235656e-10 1.623189485e-10 2.928721792e-10 2.764264056e-10 2.889919402e-10 4.151632797e-10 2.761275834e-10 1.976914797e-10 2.628528887e-10 3.62460615e-10 3.547385869e-10 1.411953263e-10 3.262766265e-10 1.62228052e-10 1.499325321e-10 3.401805143e-10 3.054448374e-10 3.196014459e-10 3.347512112e-10 3.472985521e-10 5.107371893e-10 2.766204863e-10 1.798847851e-10 3.246665523e-10 3.188906947e-10 3.666068166e-10 2.056443338e-10 3.655631465e-10 4.23227616e-10 2.811737843e-10 2.64933033e-10 2.842004165e-10 2.691675746e-10 3.130269375e-10 2.223714473e-10 2.812610795e-10 3.003821249e-10 3.654931969e-10 3.241686216e-10 2.944859317e-10 2.451237623e-10 1.625300637e-10 1.759931306e-10 1.277728466e-10 7.168527789e-11 8.820462486e-11 1.635195962e-10 2.061211911e-10 2.446415886e-10 1.98182781e-10 3.277693562e-10 4.32055333e-10 4.8287199e-10 5.864916417e-10 4.702614898e-10 4.3811673e-10 3.760658569e-10 6.130084057e-10 6.033947564e-10 4.875238945e-10 3.046527908e-10 3.967933452e-10 3.339290827e-10 4.180658809e-10 4.9292121e-10 3.698328913e-10 3.788972283e-10 3.33077007e-10 4.78944666e-10 3.457735097e-10 4.755296779e-10 5.78151866e-10 5.982804818e-10 4.657222437e-10 5.26549309e-10 5.412908734e-10 2.354048278e-10 7.005516882e-10 4.867382569e-10 5.312128247e-10 3.083769472e-10 4.47075027e-10 3.579603884e-10 6.039752971e-10 6.205090754e-10 6.059551142e-10 4.912034535e-10 5.386833483e-10 4.183868e-10 4.746667782e-10 4.260137943e-10 5.318580519e-10 5.0726389e-10 5.472100498e-10 4.919060519e-10 4.083636676e-10 5.782889245e-10 4.457617413e-10 5.946468994e-10 5.765517607e-10 4.519248343e-10 5.7963562e-10 4.016190038e-10 3.459576874e-10 5.31957204e-10 4.472353723e-10 4.504672918e-10 3.1384413e-10 5.654660825e-10 5.74424763e-10 4.45331775e-10 4.026487197e-10 7.005259704e-10 2.692936877e-10 3.972263393e-10 4.962119643e-10 5.101119865e-10 3.103283455e-10 3.867752514e-10 4.810057783e-10 2.042012016e-10 1.467536754e-10 1.482270027e-10 9.344265301e-11 1.771085136e-10 7.51800936e-11 2.071446079e-10 1.722915902e-10 1.090197719e-10 2.243272827e-10 3.107396081e-10 1.923648616e-10 3.472199781e-10 2.63064108e-10 2.229594186e-10 3.21990882e-10 3.198379555e-10 3.394252961e-10 3.669251524e-10 2.904114675e-10 1.966703655e-10 2.740172063e-10 3.08605286e-10 4.601784374e-10 4.166553147e-10 4.541932619e-10 3.918466257e-10 2.090677872e-10 5.854599741e-10 4.893811883e-10 3.462378312e-10 2.90173331e-10 2.364012752e-10 2.770460862e-10 2.63881766e-10 2.076546439e-10 3.110268436e-10 1.7639767e-10 1.480389026e-10 2.906244975e-10 1.268298678e-10 1.929235279e-10 2.783093552e-10 1.999523572e-10 2.277202073e-10 2.31518374e-10 3.322282593e-10 2.148560759e-10 2.284840339e-10 2.543632879e-10 2.236531033e-10 1.687758575e-10 2.49684278e-10 1.269022627e-10 2.613279159e-10 1.954228796e-10 2.779679047e-10 2.593813549e-10 2.376823036e-10 1.683954061e-10 2.619356483e-10 9.151432628e-11 2.6107161e-10 3.971927791e-10 3.513897222e-10 1.830334925e-10 1.798216538e-10 1.009657904e-10 2.433153999e-10 2.367763008e-10 2.491372261e-10 2.253018129e-10 2.500188384e-10 3.161903993e-10 3.832268577e-10 1.460802818e-10 1.992063098e-10 3.376278914e-10 1.085730619e-10 2.339350868e-10 1.990713486e-10 4.006878397e-10 1.005577735e-10 1.729898479e-10 2.7583541e-10 2.215221993e-10 1.064247593e-10 1.046079735e-10 2.142650688e-10 1.032401764e-10 1.786663464e-10 3.175353412e-10 5.163699608e-10 2.761047423e-10 2.805787071e-10 2.016793138e-10 2.072303794e-10 2.795215715e-10 2.014876641e-10 1.708225367e-10 1.201035319e-10 2.04010862e-10 3.711429479e-10 3.156478925e-10 2.073726e-10 9.294362779e-11 2.185834684e-10 2.056011283e-10 1.23510998e-10 3.64618521e-10 1.669243382e-10 8.592850835e-11 1.388373552e-10 2.399820773e-10 1.024372569e-10 +1.324722117e-10 1.162175444e-10 9.075904804e-11 1.918222449e-10 1.539722265e-10 1.701871363e-10 6.382215711e-11 2.330003633e-10 2.251017064e-10 1.670138976e-10 1.451780822e-10 1.225239779e-10 1.566597773e-10 9.372051102e-11 1.551671783e-10 1.781434936e-10 1.434974197e-10 4.246311937e-10 1.608239804e-10 1.201027717e-10 3.000939945e-10 1.025798634e-10 1.216028198e-10 2.314532668e-10 4.444111837e-10 1.99186977e-10 1.720376318e-10 9.735003767e-11 2.381509739e-10 1.65850274e-10 2.160376937e-10 2.182129898e-10 2.063032376e-10 2.529610862e-10 4.218753046e-10 2.229799028e-10 2.028447598e-10 3.224477098e-10 1.294326798e-10 1.499268813e-10 4.239672063e-10 2.374015743e-10 4.101538891e-10 1.756149571e-10 2.055690403e-10 1.90886091e-10 2.272147661e-10 3.22272042e-10 3.189233425e-10 2.20662022e-10 1.70102863e-10 2.338515459e-10 2.528187326e-10 1.518494199e-10 1.770101771e-10 4.863512888e-10 2.273439824e-10 1.219672097e-10 1.214277999e-10 2.332327429e-10 1.986125452e-10 1.989265166e-10 2.971295127e-10 2.46921792e-10 2.620771235e-10 9.944922698e-11 2.904447165e-10 2.567666576e-10 2.793828175e-10 3.517273151e-10 2.368289511e-10 2.280177199e-10 2.541411244e-10 2.428176298e-10 1.018784354e-10 3.081196263e-10 2.157121027e-10 1.600210974e-10 1.100995012e-10 2.76333945e-10 2.679210517e-10 3.671245501e-10 2.118460634e-10 5.1629383e-10 5.117510469e-10 2.992729054e-10 3.348010609e-10 3.618948423e-10 4.112204643e-10 2.533362753e-10 3.968786082e-10 4.357540597e-10 2.913856012e-10 3.733075367e-10 3.569318364e-10 2.630653277e-10 2.70531123e-10 1.410764938e-10 3.152261725e-10 2.928399397e-10 2.233882143e-10 2.74346321e-10 2.108779283e-10 2.284822435e-10 3.388000631e-10 3.686635007e-10 2.511315438e-10 2.632563131e-10 7.591472536e-11 1.184613622e-10 1.414959243e-10 2.045013688e-10 2.066341372e-10 1.889292711e-10 8.179715618e-10 3.464299626e-10 4.626105226e-10 4.73411018e-10 7.981690385e-10 4.225923818e-10 5.342257634e-10 4.439201674e-10 5.47960773e-10 7.789370893e-10 4.336004022e-10 6.727678039e-10 5.779508642e-10 2.139612902e-10 3.680549999e-10 4.808812225e-10 3.84999054e-10 3.945775349e-10 5.085831873e-10 4.72839687e-10 3.730548118e-10 4.796715625e-10 4.832420766e-10 4.102294564e-10 4.149798106e-10 4.719388848e-10 7.124339115e-10 4.78402588e-10 3.827750194e-10 4.588750181e-10 4.284692466e-10 4.967936869e-10 5.331605066e-10 3.600166636e-10 4.594375651e-10 3.322279189e-10 4.771262323e-10 4.463712979e-10 4.389429038e-10 4.892317835e-10 5.935286593e-10 4.571659365e-10 5.276783748e-10 4.98002231e-10 6.398075972e-10 7.282532497e-10 4.66052728e-10 4.954806215e-10 6.000728622e-10 4.945420863e-10 6.379511317e-10 2.850156308e-10 4.420174754e-10 4.712140411e-10 5.747566141e-10 3.981568268e-10 7.18404122e-10 3.676155266e-10 4.078716275e-10 5.217680808e-10 5.724892443e-10 3.295106609e-10 4.66796149e-10 7.24442489e-10 4.753331374e-10 8.276670301e-10 4.44595051e-10 4.610469799e-10 6.611113162e-10 3.549803873e-10 4.946813464e-10 4.215758048e-10 3.121396479e-10 2.000657345e-10 1.667621172e-10 1.194465491e-10 1.644510445e-10 1.027391803e-10 1.391800048e-10 1.221608108e-10 2.467086609e-10 3.022403438e-10 2.307675318e-10 3.300548975e-10 3.71063168e-10 3.706335914e-10 2.202521636e-10 3.474760808e-10 4.019620601e-10 3.528398255e-10 4.788717756e-10 2.836850381e-10 3.277240232e-10 2.552070168e-10 3.880854671e-10 3.120079348e-10 3.696321878e-10 4.534058792e-10 3.771130754e-10 2.844465909e-10 4.002019594e-10 2.767645584e-10 4.131300771e-10 4.663687773e-10 3.508955993e-10 2.718969944e-10 2.484719251e-10 2.761306908e-10 2.163799371e-10 3.417965106e-10 1.51606695e-10 2.984565001e-10 1.324919021e-10 3.502063268e-10 2.00819481e-10 1.369901697e-10 4.053977938e-10 2.282821081e-10 1.965203302e-10 2.305169353e-10 1.420862976e-10 1.287843337e-10 1.58333695e-10 2.076141927e-10 4.732230016e-10 2.338677782e-10 2.416619329e-10 2.543715553e-10 3.157018904e-10 2.309497175e-10 1.11076804e-10 1.795533644e-10 2.613813575e-10 2.008160244e-10 2.667420681e-10 1.984628726e-10 2.548940205e-10 2.130377801e-10 1.348162419e-10 3.346391724e-10 3.024745113e-10 1.776853148e-10 1.455650878e-10 3.391028617e-10 1.903540951e-10 2.210905096e-10 1.854155157e-10 2.43668063e-10 2.219787407e-10 7.018276555e-11 3.422346855e-10 1.763910477e-10 1.327903805e-10 2.168028278e-10 1.438884077e-10 2.776451377e-10 2.316039863e-10 2.594768655e-10 3.352008516e-10 2.00614569e-10 1.124731409e-10 3.22818263e-10 1.0169628e-10 3.776062063e-10 1.622769017e-10 3.79300962e-10 1.883696291e-10 3.858821033e-10 2.207184658e-10 2.130448559e-10 2.482899705e-10 3.406026609e-10 1.465838985e-10 1.240694498e-10 2.361088149e-10 1.845486196e-10 9.329439999e-11 7.802361293e-11 1.439894352e-10 1.274842939e-10 3.478818084e-10 3.033032699e-10 5.186602889e-11 2.110015075e-10 1.166320541e-10 2.073011203e-10 +2.336741119e-10 1.461543181e-10 1.788260234e-10 1.919898949e-10 3.957636781e-10 1.270214303e-10 8.279679098e-11 6.552852577e-11 2.731433164e-10 2.356142221e-10 1.325886831e-10 2.787758868e-10 5.002366389e-11 1.355098589e-10 3.157965784e-10 2.235715062e-10 4.244924563e-10 5.007000211e-10 1.349600396e-10 2.464281733e-10 1.395823774e-10 2.012327801e-10 1.644817002e-10 2.73521321e-10 2.536219495e-10 2.663637395e-10 2.808883952e-10 4.283575799e-10 3.269213992e-10 1.802463526e-10 3.477107687e-10 3.067256428e-10 2.667729714e-10 2.656841029e-10 1.890686067e-10 1.842309373e-10 2.989226735e-10 2.160147844e-10 1.448901988e-10 2.322189156e-10 3.099528726e-10 3.012315951e-10 4.730012283e-10 1.340316641e-10 1.334816611e-10 7.920442554e-11 2.319757527e-10 1.756411297e-10 2.99391228e-10 3.504697939e-10 9.470607225e-11 1.692191989e-10 2.62042739e-10 2.362456694e-10 1.908063571e-10 3.3603824e-10 1.352301458e-10 3.568258172e-10 2.812143897e-10 4.20987744e-10 1.873315655e-10 2.530546686e-10 3.080594131e-10 1.694537965e-10 2.754452746e-10 2.628894064e-10 2.558294991e-10 1.922149544e-10 2.513925045e-10 1.513671321e-10 1.926716661e-10 2.109636305e-10 1.642400513e-10 2.920411498e-10 2.890618101e-10 2.380579666e-10 2.662831077e-10 2.778660161e-10 2.066620515e-10 2.581485257e-10 2.024846305e-10 3.2042889e-10 2.486899403e-10 3.347896113e-10 3.51820577e-10 3.467133721e-10 3.321386127e-10 3.999816922e-10 3.630072937e-10 2.941288385e-10 2.792008371e-10 3.984037505e-10 2.656012756e-10 3.638190265e-10 2.917588117e-10 3.89803408e-10 4.846499881e-10 1.888359754e-10 4.560465561e-10 3.168607459e-10 2.508948812e-10 3.764053631e-10 3.687255514e-10 3.29529631e-10 2.414318265e-10 2.611917779e-10 2.404897011e-10 8.795415814e-11 2.453701835e-10 1.213884438e-10 1.407532341e-10 2.012394376e-10 2.180258058e-10 5.531162074e-10 2.848739561e-10 3.546236747e-10 3.06979993e-10 5.568019422e-10 5.728624396e-10 5.534398962e-10 6.129093361e-10 7.359478784e-10 4.426649772e-10 2.916513578e-10 6.107274883e-10 4.251127546e-10 5.58882105e-10 4.523515277e-10 7.504043936e-10 5.641912077e-10 6.199657069e-10 2.154094406e-10 3.476354453e-10 7.457641619e-10 7.737687508e-10 4.062368782e-10 4.862850218e-10 5.463876693e-10 5.767672163e-10 6.417133923e-10 4.9105558e-10 4.949863737e-10 4.928239249e-10 4.854703339e-10 3.023568086e-10 3.342849901e-10 6.143284432e-10 3.696682653e-10 3.774161943e-10 5.667237334e-10 4.594357167e-10 5.948093631e-10 3.342551605e-10 3.767896255e-10 3.735410234e-10 5.334599442e-10 3.355820602e-10 5.106272799e-10 4.844836829e-10 5.253721934e-10 4.603992643e-10 6.577779546e-10 5.311122735e-10 6.404698232e-10 6.922706685e-10 3.765345551e-10 3.509604906e-10 4.054883678e-10 3.841628612e-10 6.498437681e-10 4.918853127e-10 4.823644435e-10 4.574847431e-10 3.676362874e-10 4.094388034e-10 5.276525382e-10 8.488185135e-10 3.758644328e-10 4.928566841e-10 5.491846777e-10 5.024395034e-10 4.033223881e-10 2.736456452e-10 3.686696247e-10 4.005224938e-10 3.247673067e-10 1.113451291e-10 1.865369933e-10 1.732147845e-10 1.58547865e-10 1.110467435e-10 1.6617254e-10 1.374168028e-10 7.719573121e-11 1.414936493e-10 1.727567487e-10 2.314998455e-10 1.883756575e-10 2.892044983e-10 1.952816478e-10 2.842916784e-10 3.2281407e-10 1.356625686e-10 4.397969301e-10 4.110210397e-10 3.885821398e-10 3.642775335e-10 2.844934241e-10 3.109820893e-10 3.447854448e-10 4.377547142e-10 5.410310211e-10 2.438169452e-10 1.856030793e-10 5.100779137e-10 5.003660398e-10 2.605024063e-10 2.481791293e-10 1.778048138e-10 3.414728344e-10 1.869459824e-10 1.184209956e-10 2.474038362e-10 3.159661187e-10 2.184384984e-10 3.530137026e-10 3.582814574e-10 1.114206491e-10 2.508856048e-10 2.679844631e-10 2.68503128e-10 2.470962987e-10 1.69266056e-10 2.634909813e-10 2.05840866e-10 1.885742917e-10 1.814865359e-10 2.836274565e-10 2.942684712e-10 2.720878221e-10 2.337896727e-10 2.399926725e-10 2.189864247e-10 3.164447132e-10 1.589557459e-10 2.001137662e-10 3.521094913e-10 1.769097399e-10 1.766962278e-10 1.083205068e-10 1.78320153e-10 4.479231366e-10 1.8942925e-10 1.200020779e-10 2.504267937e-10 2.474161782e-10 2.495104711e-10 3.462762239e-10 2.876823943e-10 1.91643836e-10 2.093183155e-10 1.623198043e-10 2.185249936e-10 2.409820744e-10 3.993919414e-10 2.761446383e-10 3.048284192e-10 1.159588857e-10 3.022521975e-10 2.781980417e-10 4.397502933e-10 2.092902133e-10 2.591095789e-10 3.627347863e-10 2.402236324e-10 1.986668733e-10 4.938719346e-10 1.911767343e-10 4.3349192e-10 2.036025058e-10 2.632715422e-10 2.996635608e-10 2.823877063e-10 3.856541931e-10 3.172938259e-10 2.728620899e-10 1.638664994e-10 1.689929328e-10 1.16575106e-10 1.79437689e-10 2.760471899e-10 8.226445309e-11 1.544248834e-10 2.04656067e-10 2.143521116e-10 8.911900117e-11 2.048180721e-10 1.56035314e-10 3.439912022e-10 1.362078877e-10 +2.793781851e-10 1.257560172e-10 3.625045618e-10 1.696897905e-10 8.180302477e-11 1.597061695e-10 1.471011794e-10 1.743205174e-10 2.331618259e-10 1.285223004e-10 3.827720013e-10 7.455466881e-11 1.332396272e-10 4.074980698e-10 2.835601283e-10 1.258690415e-10 1.203932004e-10 1.740243385e-10 1.083358652e-10 2.066535722e-10 3.363506708e-10 4.198230032e-10 3.44284904e-10 3.386332251e-10 2.938568317e-10 2.695577073e-10 2.768114212e-10 1.73868237e-10 1.876280707e-10 3.685237567e-10 1.357959033e-10 4.149885076e-10 2.890860971e-10 2.710554067e-10 2.880824473e-10 2.148736878e-10 1.354874566e-10 2.015481232e-10 3.128724205e-10 3.223826248e-10 1.316161045e-10 3.011218085e-10 2.325765457e-10 2.1168179e-10 2.364155548e-10 3.5931386e-10 2.83137657e-10 2.283007125e-10 2.913845239e-10 1.556233607e-10 2.306091482e-10 1.708935396e-10 3.940649205e-10 1.285705329e-10 3.888858079e-10 2.471913107e-10 3.20771232e-10 3.290420944e-10 3.334669974e-10 3.419465735e-10 2.056441029e-10 2.220155861e-10 3.548682494e-10 2.990890417e-10 2.921874743e-10 1.037346097e-10 2.555748456e-10 2.269420454e-10 3.666199228e-10 2.294397441e-10 2.606994875e-10 4.029917861e-10 3.033848953e-10 2.163711456e-10 2.912325881e-10 2.495026965e-10 3.055380883e-10 1.820818559e-10 1.784749698e-10 3.288998694e-10 2.809810581e-10 1.582940051e-10 2.27473283e-10 2.466207148e-10 4.462829623e-10 3.672339336e-10 5.737738162e-10 3.644876097e-10 3.538605197e-10 2.993097255e-10 3.951766083e-10 3.844610796e-10 4.28670465e-10 3.127537764e-10 3.021488036e-10 4.110382363e-10 2.949250254e-10 2.129942505e-10 2.724833445e-10 3.279684603e-10 3.327385672e-10 3.543736859e-10 7.757338293e-11 3.282994648e-10 2.031193872e-10 2.386905891e-10 8.717366278e-11 1.310352492e-10 7.911903008e-11 1.909333376e-10 1.439776779e-10 2.086864355e-10 9.077636693e-11 7.178866795e-10 1.891838458e-10 3.923599116e-10 4.330886649e-10 4.698380555e-10 5.043186843e-10 6.569706129e-10 5.148003171e-10 4.459433005e-10 5.217008708e-10 4.866172591e-10 2.414352974e-10 4.773333871e-10 3.509790274e-10 6.46551353e-10 4.692745465e-10 3.688615569e-10 5.212329301e-10 5.225526397e-10 5.974673953e-10 5.758499673e-10 5.667730018e-10 5.272328706e-10 3.917361909e-10 5.312439615e-10 6.188808942e-10 4.36655121e-10 5.45203788e-10 4.359952467e-10 4.671253518e-10 5.651077447e-10 5.62572341e-10 4.77608947e-10 6.102198293e-10 5.207608574e-10 3.182540397e-10 4.702991122e-10 3.189176423e-10 4.259314323e-10 3.510115929e-10 4.490014843e-10 3.597032057e-10 3.065676963e-10 3.837726039e-10 4.158959816e-10 5.117892301e-10 4.404660491e-10 6.383305026e-10 7.456464711e-10 4.968949466e-10 5.096869476e-10 4.784453372e-10 4.459953597e-10 4.958617078e-10 3.244241271e-10 4.160595471e-10 5.084982155e-10 4.187008927e-10 4.531549e-10 2.925793543e-10 4.138266097e-10 2.219080723e-10 3.818274447e-10 3.547479637e-10 6.990814847e-10 4.225294668e-10 5.961836735e-10 4.190778723e-10 7.174413184e-10 5.159479992e-10 5.029186325e-10 4.979785708e-10 5.730994869e-10 1.234004286e-10 1.143901351e-10 2.752191286e-10 2.269679883e-10 1.89417174e-10 1.5157696e-10 1.795902981e-10 1.055885789e-10 2.070712405e-10 2.64889793e-10 2.495816282e-10 2.124123229e-10 3.037132798e-10 2.779103286e-10 2.549774452e-10 2.903696433e-10 2.832527728e-10 1.926041812e-10 1.971052679e-10 3.635937038e-10 2.13024413e-10 4.131240434e-10 2.995763603e-10 4.539012031e-10 3.665891294e-10 3.174353207e-10 4.771433471e-10 4.613457282e-10 4.634289391e-10 3.686655636e-10 4.602982711e-10 3.363859386e-10 3.127711316e-10 3.225963996e-10 8.345491976e-11 2.540121297e-10 2.05563473e-10 1.46233746e-10 1.359468174e-10 3.593121801e-10 2.852379338e-10 2.467552534e-10 2.807707785e-10 1.815025234e-10 2.810012844e-10 4.223147645e-10 2.525827008e-10 1.534002697e-10 3.344755481e-10 1.390643225e-10 2.518108665e-10 3.292573869e-10 2.377093351e-10 3.085835353e-10 2.410807354e-10 2.658534431e-10 2.01054719e-10 3.152334427e-10 2.043451476e-10 3.203062806e-10 1.521141785e-10 2.691305786e-10 2.156282293e-10 1.773921232e-10 2.74201958e-10 2.465126813e-10 1.97049937e-10 2.003779712e-10 1.445004081e-10 1.585844791e-10 4.493207004e-10 3.279459268e-10 2.743349519e-10 2.228713051e-10 2.307379035e-10 3.958557209e-10 4.665860193e-10 1.746629242e-10 1.659292107e-10 2.116025016e-10 2.211442567e-10 1.699063601e-10 2.205026095e-10 1.442610306e-10 3.225808868e-10 2.048882392e-10 3.511330475e-10 1.224124268e-10 2.013871465e-10 2.016442517e-10 2.937985954e-10 3.032994252e-10 1.32817158e-10 2.262073484e-10 9.37346059e-11 2.881283022e-10 1.911373864e-10 2.296973161e-10 1.836156117e-10 7.718550585e-11 1.929876723e-10 4.437448593e-10 7.302960738e-11 1.634566956e-10 2.119166046e-10 1.050198526e-10 7.849953415e-11 1.933658242e-10 5.16159287e-11 1.403107282e-10 2.294083221e-10 2.221994135e-10 1.554431641e-10 3.141178684e-10 +9.939111886e-11 8.921220591e-11 1.000158225e-10 9.484683339e-11 2.42130435e-10 1.016453495e-10 5.612324227e-11 1.631457276e-10 1.644613625e-10 1.336142342e-10 1.679870935e-10 1.546127723e-10 9.625595812e-11 2.835314532e-10 1.67402496e-10 1.895904218e-10 1.377980517e-10 1.485500221e-10 1.327598718e-10 2.963740712e-10 2.560990437e-10 4.296031588e-10 3.606079241e-10 2.740867568e-10 2.385049527e-10 2.892099353e-10 1.378464367e-10 1.959487307e-10 1.846135511e-10 8.764596129e-11 3.172822203e-10 3.236517911e-10 3.276404016e-10 3.035583859e-10 2.986037065e-10 2.681933671e-10 3.424893815e-10 2.478931012e-10 1.781888847e-10 2.864246296e-10 1.817550906e-10 2.613340879e-10 2.161556733e-10 2.834804426e-10 2.431178628e-10 1.830347372e-10 1.851804937e-10 3.554521088e-10 1.798827955e-10 1.448531786e-10 8.337075478e-11 1.547910222e-10 1.87897506e-10 9.8485633e-11 1.425556373e-10 1.514174898e-10 1.472074528e-10 2.414255833e-10 2.66515915e-10 2.654741147e-10 3.145975413e-10 2.19847879e-10 3.211864722e-10 2.22492687e-10 2.132480247e-10 2.586172022e-10 3.239832986e-10 2.807435336e-10 3.822792301e-10 1.954480328e-10 2.622412018e-10 2.159430122e-10 3.176525216e-10 3.285939602e-10 1.334881577e-10 2.163813694e-10 2.365144284e-10 2.714793202e-10 9.276270826e-11 3.713962713e-10 2.714262576e-10 1.940901214e-10 4.698875123e-10 3.674857872e-10 5.24757722e-10 4.250352919e-10 3.39361602e-10 3.437222547e-10 4.668842259e-10 2.863999797e-10 3.580274586e-10 3.863455325e-10 2.075691446e-10 3.721741649e-10 2.851545491e-10 3.690057528e-10 3.82907014e-10 2.102180404e-10 2.912985438e-10 3.54770235e-10 2.785122784e-10 3.647781746e-10 2.965996741e-10 1.987158267e-10 1.926395944e-10 2.394184445e-10 1.159934692e-10 1.06134114e-10 1.077290655e-10 9.422847371e-11 1.480911395e-10 1.23594298e-10 3.441507902e-10 3.745359283e-10 4.954636011e-10 3.633249796e-10 5.474228788e-10 5.253521115e-10 6.310610634e-10 6.163045951e-10 6.044210196e-10 3.798406588e-10 4.505817355e-10 4.899930451e-10 3.312157528e-10 4.114082634e-10 7.848703254e-10 4.817794672e-10 4.738752772e-10 4.807641562e-10 5.531309254e-10 4.35985498e-10 6.49730486e-10 4.735842075e-10 7.101950936e-10 5.537381753e-10 5.502325475e-10 6.673237004e-10 6.824420979e-10 4.695351334e-10 4.851055444e-10 4.445254428e-10 4.655909295e-10 3.049261427e-10 3.008654701e-10 4.277270553e-10 4.084462317e-10 3.840421543e-10 3.533031309e-10 3.46896818e-10 4.278726022e-10 3.484392362e-10 4.069312759e-10 2.941276225e-10 2.234870196e-10 2.569964828e-10 3.51271044e-10 5.965423336e-10 6.062780427e-10 5.886522122e-10 6.208285452e-10 4.977519307e-10 4.503963178e-10 5.59616297e-10 5.296850146e-10 5.608419908e-10 7.001946969e-10 4.763310942e-10 5.845139767e-10 3.607182928e-10 4.600701797e-10 7.940033627e-10 5.569098227e-10 6.236175344e-10 4.825258878e-10 4.028770394e-10 5.645882871e-10 3.445532271e-10 3.216343086e-10 5.854544884e-10 5.377872785e-10 4.730595448e-10 4.641952476e-10 4.149836109e-10 4.708746823e-10 8.700157133e-10 5.222283529e-10 3.847862239e-10 1.39963612e-10 2.423603659e-10 2.549183691e-10 1.948418606e-10 3.160592404e-10 2.1659261e-10 3.463279145e-10 1.577285847e-10 2.92127651e-10 3.336640439e-10 2.229445773e-10 2.141827813e-10 2.142794354e-10 3.412143137e-10 3.792644578e-10 2.191987114e-10 3.408902986e-10 2.344245047e-10 2.999657604e-10 3.300899623e-10 3.247647267e-10 4.367519636e-10 3.178643965e-10 2.80139656e-10 4.057590043e-10 3.490373649e-10 4.712756464e-10 3.870735443e-10 4.258303602e-10 3.665037832e-10 2.909226687e-10 4.144513219e-10 2.448230577e-10 1.536786374e-10 1.435685038e-10 2.037993065e-10 3.874059508e-10 2.295482535e-10 2.724445283e-10 2.270720497e-10 2.842703006e-10 2.622789965e-10 3.513686663e-10 3.176536955e-10 4.338255384e-10 2.562815166e-10 1.336868646e-10 2.514498214e-10 1.926004044e-10 2.570518348e-10 2.078643315e-10 2.013442022e-10 2.936243212e-10 1.746021623e-10 1.792189621e-10 3.595801031e-10 2.331127796e-10 8.142379963e-11 2.44064989e-10 1.453271782e-10 1.916579948e-10 2.871468193e-10 2.796147799e-10 4.499623917e-10 1.35712728e-10 2.611472067e-10 1.566431642e-10 5.077147657e-10 1.738402676e-10 1.785211648e-10 3.19741379e-10 1.275828631e-10 3.116993304e-10 1.718872912e-10 1.896421544e-10 1.156584356e-10 2.709643982e-10 1.203322085e-10 2.183286849e-10 2.401673156e-10 3.92688321e-10 2.486460039e-10 4.167612475e-10 3.583364971e-10 2.118243491e-10 1.581438528e-10 3.465528854e-10 2.306176673e-10 4.047627701e-10 4.205989586e-10 1.695750514e-10 2.731941645e-10 1.650199203e-10 1.219002347e-10 2.338709028e-10 6.10851323e-11 1.55114907e-10 1.679851579e-10 2.289863777e-10 4.916284362e-11 1.284780031e-10 1.001913051e-10 2.934634324e-10 2.331657121e-10 2.483424607e-10 1.782147509e-10 1.01054832e-10 2.549353285e-10 1.05554583e-10 8.36093311e-11 2.381230205e-10 5.737072e-11 +1.388677444e-10 2.224367318e-10 1.799176145e-10 1.280449188e-10 8.030366231e-11 2.855070382e-10 1.968186764e-10 1.177384629e-10 2.042906749e-10 6.613142986e-11 1.70198494e-10 1.495309877e-10 1.049936593e-10 1.721130238e-10 3.302221288e-10 8.976343561e-11 2.043562618e-10 1.954250716e-10 4.863476843e-11 1.463250826e-10 3.514276974e-10 2.166569215e-10 2.824666323e-10 2.662553121e-10 3.654904067e-10 4.603129801e-10 2.464486227e-10 1.669422078e-10 1.609469072e-10 2.394727666e-10 2.260141474e-10 2.598530627e-10 3.249906316e-10 2.309623483e-10 2.664120473e-10 1.582731159e-10 3.288119879e-10 2.163204401e-10 3.294083856e-10 3.386762195e-10 1.855637804e-10 4.743004753e-10 2.397523882e-10 2.708065627e-10 4.622079772e-10 1.625744414e-10 3.094331921e-10 2.569859887e-10 2.207808405e-10 8.736409357e-11 2.194708702e-10 2.01002334e-10 1.742990095e-10 2.750782935e-10 3.511475142e-10 3.526922152e-10 1.134364784e-10 2.395544579e-10 1.268809409e-10 4.516351503e-10 2.589956583e-10 3.3596178e-10 3.173933107e-10 2.667466032e-10 2.871057718e-10 1.658696103e-10 3.130813093e-10 3.048081964e-10 2.766238518e-10 3.392085741e-10 1.695133601e-10 2.710871481e-10 2.901899402e-10 2.111930477e-10 2.098832338e-10 1.484180391e-10 2.692818018e-10 2.205065875e-10 2.295514809e-10 1.590539561e-10 2.495058443e-10 1.656351956e-10 3.215472584e-10 2.407295263e-10 3.586436715e-10 3.800200053e-10 3.876230931e-10 3.091111124e-10 4.748546588e-10 3.21342063e-10 2.473884154e-10 3.887699305e-10 1.82263794e-10 3.694108096e-10 2.30017135e-10 2.587663686e-10 4.592570102e-10 2.515159988e-10 3.261828878e-10 1.541201687e-10 3.006324143e-10 2.81406433e-10 2.509681466e-10 2.95240809e-10 2.488979394e-10 1.68817819e-10 9.020727765e-11 2.168815788e-10 4.231330122e-11 9.008031882e-11 1.854824654e-10 1.827667538e-10 3.433165092e-10 6.101154349e-10 4.178895983e-10 3.216928548e-10 6.441622817e-10 6.179918036e-10 8.092488039e-10 4.64758417e-10 7.750067328e-10 3.802969808e-10 4.731277383e-10 3.660300429e-10 4.387930023e-10 6.16801445e-10 5.797571232e-10 5.170166505e-10 3.247792622e-10 5.779563321e-10 5.27852987e-10 6.544748001e-10 6.076187031e-10 6.461346717e-10 4.31755782e-10 5.363786879e-10 5.073730961e-10 4.466490932e-10 3.240245943e-10 4.355915889e-10 3.999839528e-10 2.571595209e-10 3.615895797e-10 3.085374944e-10 3.177191746e-10 5.121386767e-10 4.268235462e-10 3.896489002e-10 2.612867709e-10 2.944734836e-10 4.009680732e-10 4.441439762e-10 4.120504294e-10 4.874248425e-10 4.538438869e-10 5.248238463e-10 4.211733225e-10 3.946167909e-10 2.518754726e-10 5.088059404e-10 4.237958248e-10 4.348419901e-10 4.789541576e-10 5.825366217e-10 5.472513442e-10 6.000950822e-10 5.651849823e-10 6.201635641e-10 3.991743008e-10 7.505909601e-10 4.633780817e-10 4.825102469e-10 4.336936907e-10 3.621689299e-10 5.691977745e-10 4.797992758e-10 3.696366665e-10 4.248212504e-10 6.16515655e-10 5.165421925e-10 4.662771928e-10 5.233786447e-10 4.621008843e-10 3.626375135e-10 5.19182523e-10 6.113245948e-10 6.981502878e-10 3.292017278e-10 2.379659224e-10 1.873105592e-10 2.023805656e-10 1.600096471e-10 1.655338009e-10 2.384847689e-10 2.3120737e-10 2.084457505e-10 3.195410826e-10 2.745117962e-10 2.430359572e-10 2.217530798e-10 4.005204663e-10 4.046615128e-10 3.651566103e-10 2.183800906e-10 3.383192228e-10 1.963884403e-10 3.363840604e-10 3.704446858e-10 3.554617129e-10 4.120447029e-10 3.963250819e-10 2.818851151e-10 3.677615573e-10 3.682635961e-10 4.039021647e-10 4.766583881e-10 5.36517108e-10 1.393726234e-10 3.23394683e-10 3.866469204e-10 2.112435079e-10 3.43224679e-10 2.621990864e-10 2.805882016e-10 1.78757304e-10 3.387223524e-10 1.485634138e-10 1.065571843e-10 1.522927529e-10 4.09947959e-10 2.72025885e-10 2.430325206e-10 3.149949529e-10 1.64207227e-10 1.956095895e-10 1.863162115e-10 3.36031376e-10 2.035716366e-10 2.432600938e-10 2.899699344e-10 3.40086164e-10 1.773447478e-10 2.606991331e-10 1.401324443e-10 1.792758107e-10 2.924466736e-10 1.363607418e-10 1.104147756e-10 2.807535739e-10 4.95637695e-10 2.757750092e-10 3.449399401e-10 1.830385398e-10 2.721400765e-10 1.733505855e-10 1.936607254e-10 2.436510006e-10 3.607957028e-10 2.474553261e-10 2.878183443e-10 1.848043212e-10 1.95184318e-10 2.856584862e-10 1.727354622e-10 1.845560822e-10 6.137779322e-11 2.603366103e-10 1.949090124e-10 1.675651334e-10 2.513530834e-10 2.47301607e-10 6.786390267e-11 3.42022527e-10 3.491068328e-10 3.025152408e-10 2.971885292e-10 5.307217208e-10 2.428362423e-10 2.706553782e-10 2.939157366e-10 1.917159724e-10 9.577330803e-11 1.217433546e-10 2.003816593e-10 1.321645306e-10 2.449484716e-10 1.382446126e-10 1.313412994e-10 2.342896738e-10 3.46406112e-10 5.744620582e-11 1.436756166e-10 1.148845479e-10 2.176761333e-10 1.23610255e-10 3.219801651e-10 2.17454878e-10 1.156110599e-10 1.714868304e-10 5.605889782e-11 +1.647327008e-10 7.103727226e-11 2.197899482e-10 8.694532655e-11 2.439557249e-10 1.108976847e-10 6.569558116e-11 1.733516511e-10 8.337493353e-11 9.369014821e-11 1.645026145e-10 2.013237225e-10 1.533712159e-10 1.135590539e-10 3.419703191e-10 4.202671955e-10 1.461213022e-10 2.101475004e-10 8.936962119e-11 2.117048313e-10 1.609284363e-10 2.882122864e-10 3.402026365e-10 3.091052391e-10 1.282771321e-10 3.789829807e-10 2.949211961e-10 4.130858983e-10 3.778055542e-10 2.471805867e-10 2.239065739e-10 2.08008901e-10 2.549823046e-10 2.762295599e-10 7.320640278e-11 4.172183569e-10 1.518216055e-10 3.039848165e-10 1.752344101e-10 1.992786068e-10 4.07050014e-10 3.044669972e-10 2.418279941e-10 3.330535691e-10 6.07529622e-10 3.750763899e-10 2.712130088e-10 2.555731462e-10 2.835538609e-10 1.677907945e-10 1.117154122e-10 1.865147631e-10 3.326371766e-10 2.759766446e-10 2.088534881e-10 3.415125141e-10 2.689459451e-10 2.034448032e-10 2.392848014e-10 2.486446274e-10 2.529829202e-10 1.767407557e-10 2.3439621e-10 2.739560235e-10 1.525706688e-10 3.697076849e-10 2.699365986e-10 3.411965082e-10 2.389721136e-10 3.004495282e-10 1.94358458e-10 1.62545845e-10 1.9022822e-10 2.12513466e-10 1.827171906e-10 3.908473081e-10 2.248025854e-10 3.528635168e-10 1.606138229e-10 2.972566964e-10 2.862416431e-10 3.101302872e-10 3.507018297e-10 3.013720506e-10 3.475161038e-10 4.835973669e-10 4.253544046e-10 4.609487789e-10 4.554840749e-10 3.65599234e-10 4.360134796e-10 3.080943368e-10 2.902489832e-10 2.898296554e-10 3.985147073e-10 3.756272101e-10 4.199371608e-10 2.62866104e-10 2.676370326e-10 2.217996126e-10 3.393923455e-10 2.49102583e-10 2.48250382e-10 2.693725377e-10 2.194990396e-10 1.468385255e-10 6.373502484e-11 1.427435165e-10 1.698835768e-10 1.889281868e-10 1.2453615e-10 1.453679781e-10 6.632190153e-10 7.517891254e-10 3.795053581e-10 4.69498085e-10 8.23763307e-10 6.085591283e-10 3.729937945e-10 3.610223877e-10 3.81219998e-10 5.451297104e-10 6.212130148e-10 3.699996903e-10 5.327540247e-10 4.541784944e-10 4.269391067e-10 6.097549181e-10 5.715969932e-10 4.777553653e-10 7.20705792e-10 6.259965446e-10 5.602882942e-10 4.945889956e-10 4.980018209e-10 3.990241726e-10 3.275673885e-10 2.748239849e-10 4.857155427e-10 3.359084077e-10 4.889163041e-10 4.246490472e-10 5.289815684e-10 2.862984789e-10 3.475275072e-10 4.928346457e-10 5.05819044e-10 2.808750057e-10 4.279664993e-10 4.695454099e-10 3.995519393e-10 4.035406733e-10 3.487787509e-10 3.020766349e-10 3.092085185e-10 3.818619947e-10 4.027011468e-10 4.938400357e-10 2.660265713e-10 5.196137943e-10 2.590622775e-10 3.709151922e-10 4.305242087e-10 3.099401272e-10 4.68093478e-10 5.02129201e-10 5.940910929e-10 6.02917432e-10 4.496712634e-10 4.616146857e-10 4.642957792e-10 7.101547349e-10 5.86943061e-10 3.997927316e-10 5.076256301e-10 5.060109641e-10 4.158074322e-10 6.105360541e-10 4.327636546e-10 3.861389123e-10 6.468779327e-10 4.802021038e-10 3.999838298e-10 8.025036843e-10 6.92597513e-10 7.459477373e-10 3.900650392e-10 8.826288966e-10 1.771710385e-10 2.554189483e-10 1.903228247e-10 1.305419491e-10 1.152385381e-10 5.610546141e-11 1.025255364e-10 1.803107264e-10 1.394303762e-10 2.544649714e-10 3.161462804e-10 1.954061738e-10 3.102628754e-10 3.920662551e-10 3.041031086e-10 3.671719264e-10 3.047879499e-10 3.342021179e-10 2.294139797e-10 2.472195758e-10 1.926295127e-10 3.503569575e-10 5.051208712e-10 3.24788338e-10 3.806388612e-10 4.359183084e-10 4.994778335e-10 4.107359482e-10 3.925705877e-10 4.766254412e-10 4.106927127e-10 2.115818061e-10 3.365265015e-10 1.867367959e-10 2.822259462e-10 4.115411264e-10 3.092061322e-10 2.202636595e-10 2.109292569e-10 2.722603365e-10 1.619319587e-10 2.846032423e-10 2.136750765e-10 2.157911104e-10 2.747949257e-10 2.860538252e-10 3.423602444e-10 2.718586192e-10 1.973961152e-10 2.517134349e-10 1.791044975e-10 2.495571833e-10 2.724023057e-10 2.565930445e-10 3.286878177e-10 8.043979852e-11 1.771540374e-10 1.2275359e-10 1.649052088e-10 2.89757112e-10 2.818833197e-10 2.977741167e-10 1.214646555e-10 2.757551779e-10 1.98155099e-10 3.195829208e-10 3.45120651e-10 2.256540568e-10 1.606052688e-10 4.456117263e-10 2.403185272e-10 2.269540265e-10 3.516031581e-10 2.769334834e-10 3.621472968e-10 1.404286896e-10 3.160567216e-10 2.391502652e-10 5.570017108e-11 2.640486293e-10 2.291707944e-10 1.384355194e-10 2.451608808e-10 2.063009568e-10 3.43271578e-10 3.628645801e-10 2.822267271e-10 2.869888889e-10 1.760372552e-10 2.997894928e-10 4.047098694e-10 1.812867077e-10 1.944239197e-10 1.535828718e-10 1.794371995e-10 6.219089889e-11 1.171854447e-10 1.857503971e-10 1.70249029e-10 3.069930673e-10 7.334304917e-11 1.051284568e-10 3.961478113e-10 4.62585106e-11 1.606636498e-10 8.429995943e-11 1.196988958e-10 2.747400329e-10 1.123423367e-10 3.018697326e-10 1.495103706e-10 1.316832953e-10 +1.654884369e-10 8.891201745e-11 2.146964854e-10 2.299874795e-10 9.467283461e-11 1.948704966e-11 1.571379379e-10 1.076619781e-10 8.545586412e-11 1.942883031e-10 3.212766924e-10 1.857764469e-10 2.797568359e-10 1.003824257e-10 2.060447663e-10 2.016358274e-10 1.377904293e-10 2.09886529e-10 1.073391915e-10 1.90477271e-10 1.956793047e-10 1.219765543e-10 1.892636898e-10 4.567569479e-10 9.936018648e-11 3.758924779e-10 3.610841598e-10 1.872011236e-10 2.722439245e-10 2.472704723e-10 1.36296368e-10 3.176881257e-10 4.188516337e-10 2.317865184e-10 2.990244728e-10 1.869526398e-10 3.004020317e-10 2.259884677e-10 3.200254783e-10 3.023270306e-10 2.526534601e-10 2.597784535e-10 2.946941675e-10 1.498041229e-10 2.686839347e-10 1.662255977e-10 2.146829743e-10 3.786520926e-10 3.961873323e-10 4.069042255e-10 2.349027972e-10 2.57574734e-10 2.227621376e-10 1.404044442e-10 3.32451359e-10 9.97088026e-11 1.469761364e-10 3.345722789e-10 2.047739071e-10 1.234884348e-10 3.132439995e-10 2.606557146e-10 3.113613129e-10 3.109205454e-10 2.281763041e-10 2.489050413e-10 3.186788762e-10 2.777796808e-10 2.18062351e-10 3.132993157e-10 1.469191844e-10 2.33754989e-10 2.909381002e-10 1.695586703e-10 3.105074842e-10 1.113453445e-10 3.628368235e-10 3.374695369e-10 2.800004975e-10 2.644287563e-10 2.201692488e-10 3.079333824e-10 4.41530426e-10 4.947692068e-10 4.02141223e-10 3.196144238e-10 3.184359616e-10 5.556761989e-10 4.745081207e-10 4.184363063e-10 4.358991531e-10 2.496514531e-10 2.352028343e-10 3.452279795e-10 2.025204242e-10 3.691521005e-10 1.835556519e-10 3.289013479e-10 2.493404152e-10 2.751147219e-10 3.592569958e-10 3.115126479e-10 2.893968847e-10 3.636019737e-10 1.073663393e-10 1.730923939e-10 4.422496977e-11 3.941105919e-10 1.750983991e-10 1.966430055e-10 1.932947339e-10 7.458101472e-10 2.903024672e-10 7.857199762e-10 5.320776211e-10 5.733133476e-10 4.863310735e-10 3.111240657e-10 4.581798803e-10 3.879406681e-10 3.913284016e-10 7.350734195e-10 4.49890721e-10 6.505831137e-10 4.971670445e-10 3.937875712e-10 5.939764449e-10 7.112556644e-10 5.271315017e-10 2.795555188e-10 6.764042639e-10 5.049099353e-10 4.178561977e-10 5.954053866e-10 4.765194613e-10 3.764980343e-10 4.376527415e-10 3.708916736e-10 7.022355143e-10 3.633189086e-10 4.562910312e-10 4.469360777e-10 2.542225289e-10 4.033780647e-10 4.741581742e-10 5.558446862e-10 4.307186907e-10 3.511552921e-10 3.383469291e-10 3.456716411e-10 4.542754995e-10 3.119963277e-10 3.057723094e-10 4.661663389e-10 3.123230122e-10 3.497312521e-10 3.913492759e-10 3.47818314e-10 5.002555836e-10 3.962812163e-10 4.499752772e-10 4.193987347e-10 4.188493665e-10 4.004488361e-10 2.895908114e-10 3.945666261e-10 4.280827112e-10 7.26538938e-10 4.960788326e-10 6.157223208e-10 7.463305952e-10 5.612665755e-10 3.745188753e-10 5.227459035e-10 5.240257706e-10 3.675701978e-10 3.963123725e-10 3.925182482e-10 4.783888899e-10 7.058215587e-10 4.323710168e-10 5.263205647e-10 4.944434118e-10 5.89754087e-10 5.203480707e-10 4.670736048e-10 5.072062111e-10 5.904784269e-10 1.255655706e-10 1.818163705e-10 1.350565418e-10 2.313993696e-10 1.167801e-10 1.997271636e-10 8.890431822e-11 2.222186832e-10 2.292449337e-10 2.523034353e-10 2.84391343e-10 2.511596288e-10 3.514083718e-10 1.628835424e-10 3.074657597e-10 4.043216121e-10 2.346724745e-10 4.327679361e-10 3.801353311e-10 3.905594773e-10 2.68733677e-10 2.948582363e-10 1.910101091e-10 4.565378114e-10 5.335849972e-10 2.884219135e-10 4.066264024e-10 2.704904099e-10 4.060727076e-10 2.278183875e-10 3.829209474e-10 3.330806606e-10 2.60524239e-10 2.696735229e-10 3.805740371e-10 2.192601709e-10 3.238038676e-10 2.673309457e-10 2.529251716e-10 2.815306044e-10 3.630052621e-10 3.124584712e-10 2.316058162e-10 2.524310877e-10 3.686177021e-10 2.375116027e-10 2.413912329e-10 1.889870683e-10 2.56576324e-10 1.713056008e-10 3.27541373e-10 1.548648239e-10 2.404824444e-10 2.550860292e-10 2.53033722e-10 1.06254123e-10 2.463594019e-10 2.521092365e-10 1.534942183e-10 9.465747062e-11 1.923542215e-10 4.326173812e-10 2.101692136e-10 2.160265157e-10 2.468175674e-10 2.271100131e-10 3.395563684e-10 3.199649084e-10 1.546611196e-10 1.903998672e-10 2.671192771e-10 2.702878325e-10 3.451348268e-10 4.165935991e-10 1.543308522e-10 2.122298537e-10 1.925346479e-10 2.054055156e-10 3.04234776e-10 4.559210646e-10 3.663159443e-10 4.010823322e-10 5.134481738e-10 3.440086309e-10 1.951438276e-10 3.554741619e-10 1.91272539e-10 1.099812942e-10 3.748781099e-10 2.198593344e-10 1.42354123e-10 1.213157118e-10 3.465132769e-10 1.130533069e-10 1.440989141e-10 2.926920866e-10 9.981572316e-11 3.288967696e-10 1.403075839e-10 1.150597587e-10 1.907198591e-10 5.087993829e-11 1.825840581e-10 3.170921784e-10 5.372674546e-11 7.897376228e-11 3.634616293e-10 1.666151144e-10 1.444152941e-10 1.046838691e-10 2.765968544e-10 5.159863113e-11 +3.151819163e-10 1.032745335e-10 5.528186243e-11 1.917638491e-10 7.730028905e-11 8.494581068e-11 2.318555596e-10 1.338814171e-10 1.033344885e-10 5.015772396e-10 1.092563933e-10 3.731703672e-10 8.239064256e-11 8.419951482e-11 1.490472908e-10 1.581694926e-10 2.567119636e-10 1.53552313e-10 3.530931323e-10 2.743721877e-10 1.318519864e-10 1.865194773e-10 1.114436334e-10 9.693281541e-11 3.520033468e-10 1.303801342e-10 3.253255194e-10 1.280631622e-10 3.348745293e-10 3.267459076e-10 3.758343716e-10 2.379820874e-10 2.867909653e-10 4.079190142e-10 4.154508182e-10 1.605729405e-10 3.314326029e-10 2.462506268e-10 4.134355006e-10 1.774715556e-10 2.358289482e-10 3.778095993e-10 4.098899956e-10 1.670233068e-10 2.167481329e-10 3.390159635e-10 2.449127213e-10 1.955805609e-10 1.279450735e-10 2.59367457e-10 3.403115708e-10 2.738993107e-10 1.988281978e-10 1.988721653e-10 2.019185756e-10 1.355845424e-10 1.448181028e-10 3.124897327e-10 3.496200011e-10 2.610967337e-10 2.570080828e-10 2.860003808e-10 2.518139822e-10 2.546571638e-10 1.065399864e-10 1.160072229e-10 2.01803162e-10 4.352624597e-10 2.332990589e-10 3.467043919e-10 3.329675049e-10 2.945403874e-10 1.505141493e-10 3.038471255e-10 2.318093635e-10 3.920349142e-10 1.191260514e-10 2.370047048e-10 3.72326041e-10 2.225033294e-10 2.320607939e-10 3.954550052e-10 2.336538966e-10 4.61195657e-10 3.320732332e-10 3.902588857e-10 2.615367395e-10 2.482506665e-10 3.021254139e-10 2.782026734e-10 3.707855729e-10 3.738751131e-10 2.977775494e-10 4.415428733e-10 2.093845742e-10 3.998298068e-10 3.5526636e-10 3.330963359e-10 2.949446316e-10 4.208444434e-10 4.49006783e-10 3.213449476e-10 3.641613964e-10 2.776828563e-10 2.240943537e-10 1.617380037e-10 9.905507853e-11 1.700557624e-10 9.402100021e-11 2.096959321e-10 3.218961666e-10 4.709985194e-10 7.316897618e-10 3.485223775e-10 4.215167724e-10 5.410939507e-10 4.793343904e-10 7.644102615e-10 5.807991599e-10 4.031949928e-10 5.490065281e-10 5.840767626e-10 4.764468565e-10 4.288131913e-10 6.13339075e-10 4.919016852e-10 7.402979342e-10 7.845881736e-10 5.897362459e-10 5.751871742e-10 7.223322699e-10 5.071264751e-10 4.968862411e-10 5.027346022e-10 4.535003798e-10 3.948623826e-10 2.474226896e-10 2.947292567e-10 4.250892972e-10 3.813485402e-10 3.984075226e-10 4.232435729e-10 3.084589237e-10 3.223237366e-10 2.903423963e-10 2.365154064e-10 3.11202696e-10 2.599399668e-10 3.867636059e-10 2.789669303e-10 2.951233212e-10 3.7504239e-10 3.943796129e-10 3.447939716e-10 4.811337645e-10 3.827027997e-10 3.218614063e-10 3.604916236e-10 3.260416171e-10 3.392514421e-10 4.09007293e-10 3.787191049e-10 4.313052713e-10 3.084516673e-10 5.241837075e-10 3.666494314e-10 5.563169206e-10 5.186338948e-10 6.120543275e-10 4.343627617e-10 4.867061163e-10 5.131417669e-10 5.273342575e-10 7.995004813e-10 6.703012092e-10 4.390008018e-10 4.547175788e-10 7.775813968e-10 3.910466743e-10 3.91153473e-10 4.591778135e-10 7.866048038e-10 6.258071362e-10 4.942432722e-10 3.747964008e-10 5.369401925e-10 7.329633875e-10 4.868042304e-10 5.658122679e-10 1.913755381e-10 2.264855995e-10 1.889455722e-10 8.95796672e-11 1.242098381e-10 1.342781767e-10 1.74596968e-10 2.296778134e-10 1.733441621e-10 2.488258342e-10 3.249870774e-10 2.708162884e-10 3.722899222e-10 2.896072937e-10 2.766946371e-10 2.67519029e-10 3.766684285e-10 2.786036909e-10 3.524411454e-10 3.127825412e-10 4.490271711e-10 4.417434121e-10 4.112126009e-10 2.898715198e-10 4.70713285e-10 2.458295898e-10 3.966475069e-10 5.747227777e-10 3.484019e-10 3.218807402e-10 3.270825487e-10 3.237473832e-10 2.939986247e-10 2.08219647e-10 2.662542043e-10 2.530164179e-10 2.917437039e-10 2.832640506e-10 2.116715368e-10 3.134143576e-10 2.779788425e-10 2.227139463e-10 2.084986621e-10 2.136065656e-10 2.820798815e-10 2.041266106e-10 1.593233246e-10 2.825778087e-10 2.53285804e-10 2.326484719e-10 2.727503211e-10 2.363073754e-10 3.238588162e-10 2.829632031e-10 2.066242535e-10 2.014756209e-10 1.432120598e-10 1.904650643e-10 2.569975701e-10 1.062773994e-10 2.898201714e-10 1.672816178e-10 2.124862795e-10 1.625150721e-10 2.568761707e-10 2.238136879e-10 3.958251294e-10 1.64155374e-10 2.643581494e-10 3.29106453e-10 4.110973778e-10 2.62988524e-10 2.123562769e-10 2.680019011e-10 4.316287544e-10 2.492408779e-10 2.244673656e-10 2.433688523e-10 2.468061858e-10 2.175150888e-10 1.734117292e-10 2.159578942e-10 2.702902013e-10 2.399043259e-10 2.484697954e-10 2.255965214e-10 3.418645065e-10 2.62173326e-10 1.504883146e-10 9.466687053e-11 2.461198623e-10 1.491437495e-10 2.084688256e-10 1.132518896e-10 2.860133522e-10 4.287452686e-10 2.258293176e-10 1.836342371e-10 9.719484962e-11 7.454502697e-11 3.325852615e-11 1.408602704e-10 1.918878175e-10 9.265570489e-11 1.545424559e-10 2.528887278e-10 1.08258293e-10 1.569548468e-10 1.604398302e-10 2.021366382e-10 1.205902101e-10 +8.040730963e-11 2.96518011e-11 1.298314019e-10 2.347035066e-10 9.14181171e-11 1.208114298e-10 2.555047037e-10 1.568067207e-10 9.961118438e-11 9.744284202e-11 1.477246355e-10 1.494777543e-10 2.164695814e-10 1.388173607e-10 1.449017104e-10 8.116424479e-11 3.50210434e-10 1.514637344e-10 1.658150961e-10 2.708777124e-10 2.641484964e-10 1.202256827e-10 3.022391562e-10 1.202829702e-10 2.491403839e-10 2.846990868e-10 1.58104258e-10 2.681074264e-10 3.261684966e-10 3.135871713e-10 3.039547466e-10 4.320111654e-10 2.828734753e-10 1.797005742e-10 3.233546662e-10 1.507844125e-10 2.138316489e-10 1.977348635e-10 2.504426853e-10 2.237465661e-10 2.28210464e-10 2.333543563e-10 4.141791527e-10 1.378048118e-10 2.220928228e-10 2.291727946e-10 3.672236134e-10 1.723613508e-10 2.877608844e-10 3.091637253e-10 2.497665413e-10 1.854389128e-10 2.983216662e-10 2.288974035e-10 1.907280597e-10 1.693025541e-10 2.089536946e-10 3.924874562e-10 2.449327082e-10 2.259424575e-10 8.905929722e-11 2.936834988e-10 2.648492844e-10 1.456659678e-10 2.310885166e-10 3.217063407e-10 3.098373555e-10 1.360476747e-10 3.498793194e-10 1.177772886e-10 3.215710615e-10 2.128896212e-10 1.687507567e-10 1.584160863e-10 3.425018109e-10 3.404723088e-10 2.202809515e-10 2.135077607e-10 7.787162364e-11 3.933686271e-10 3.497265854e-10 3.773192436e-10 4.307315397e-10 3.407152e-10 3.124024036e-10 3.892750113e-10 4.305953867e-10 2.862694629e-10 3.31430081e-10 3.584642583e-10 2.238539233e-10 4.02570261e-10 2.620221165e-10 4.115822889e-10 2.673145384e-10 2.718646301e-10 3.547613486e-10 3.131588656e-10 3.193213093e-10 3.77198539e-10 3.565635111e-10 2.627151568e-10 2.436962958e-10 1.890572121e-10 1.512394311e-10 1.13305561e-10 2.334316662e-10 2.923538626e-10 1.75277956e-10 1.703517394e-10 5.016492916e-10 5.154247154e-10 3.282604867e-10 5.572432999e-10 4.034060352e-10 5.13930669e-10 5.857739064e-10 4.544803539e-10 3.02341066e-10 5.30358271e-10 3.649819635e-10 3.701087645e-10 4.443640486e-10 4.889823333e-10 4.681766392e-10 6.088522576e-10 4.000116254e-10 4.833967149e-10 5.280788167e-10 6.485892309e-10 6.5060229e-10 4.735416802e-10 3.660972499e-10 5.545948845e-10 3.326802901e-10 4.407525826e-10 3.719616463e-10 2.866619157e-10 3.175534216e-10 4.231979118e-10 3.822772791e-10 4.214760003e-10 3.230894039e-10 4.055104761e-10 3.888990862e-10 3.918499014e-10 4.215888631e-10 2.601919549e-10 3.461886509e-10 3.408922929e-10 3.574843902e-10 3.595366422e-10 3.128929235e-10 2.969136574e-10 4.461021239e-10 4.616316125e-10 3.960529226e-10 4.222039493e-10 5.012712677e-10 3.521381537e-10 4.920156091e-10 4.240871749e-10 4.395597214e-10 3.298018598e-10 3.555376656e-10 4.73556635e-10 5.881066506e-10 3.055191137e-10 4.604492763e-10 4.353569377e-10 6.193322722e-10 7.902308414e-10 6.650276007e-10 6.395761695e-10 5.307937643e-10 3.506675026e-10 4.913326512e-10 4.477506755e-10 4.820370732e-10 6.410128955e-10 3.998261084e-10 4.945699285e-10 4.72014366e-10 5.642655195e-10 3.485222893e-10 6.116599485e-10 6.741633577e-10 5.470356732e-10 6.602022889e-10 3.482914623e-10 2.931346134e-10 1.699908779e-10 2.882510196e-10 1.837175862e-10 1.81050347e-10 1.659636883e-10 1.910380038e-10 2.081318654e-10 1.9034158e-10 3.65467181e-10 3.052383958e-10 2.329116463e-10 3.020385018e-10 2.411250054e-10 3.183666109e-10 3.444293338e-10 2.863171013e-10 4.792846692e-10 2.781429238e-10 2.810842007e-10 4.460808127e-10 2.029329722e-10 3.720907298e-10 3.286772239e-10 3.497920266e-10 3.753791933e-10 4.909529332e-10 3.771530722e-10 2.04150018e-10 3.534908922e-10 2.248525714e-10 3.921281341e-10 1.710923395e-10 2.323339199e-10 3.035998762e-10 2.766600087e-10 2.519953573e-10 3.244994134e-10 3.477937831e-10 2.576251362e-10 1.760237602e-10 3.35284054e-10 3.402076673e-10 2.089951652e-10 1.923460129e-10 2.852878049e-10 3.046716555e-10 2.0223468e-10 4.33460305e-10 2.937633166e-10 2.890634498e-10 3.363921376e-10 3.750136065e-10 2.418860389e-10 1.446110979e-10 1.685409792e-10 4.072637984e-10 2.224887837e-10 2.21149219e-10 2.678460855e-10 1.729783819e-10 2.994778233e-10 3.043282382e-10 1.048661721e-10 2.848020574e-10 2.335990513e-10 4.141142969e-10 1.783314115e-10 1.597030936e-10 2.537324582e-10 1.821930839e-10 1.544439787e-10 2.357565595e-10 1.815711582e-10 3.321517018e-10 2.312708329e-10 2.889874998e-10 1.045116208e-10 1.562095449e-10 3.231367285e-10 1.72322683e-10 3.760071156e-10 2.478779767e-10 4.052972319e-10 4.356425012e-10 2.239645363e-10 3.184426041e-10 2.326288212e-10 2.425823242e-10 2.510504721e-10 1.958944763e-10 1.93166954e-10 1.255127918e-10 1.97541085e-10 1.381747934e-10 1.150064246e-10 1.281921878e-10 1.146567997e-10 1.015010533e-10 1.577801099e-10 2.180095263e-10 3.548655007e-10 1.198912064e-10 1.63590529e-10 1.563827766e-10 1.829960265e-10 1.868435397e-10 8.650951995e-11 1.019926263e-10 2.095100629e-10 +2.685049557e-10 6.749780363e-11 5.072103388e-11 2.081004083e-10 2.693323751e-10 8.917587844e-11 6.161552317e-11 8.365646325e-11 3.20436803e-10 9.817897666e-11 1.546367334e-10 1.969137015e-10 3.038202188e-10 1.777892975e-10 2.232621681e-10 2.476896042e-10 2.414819239e-10 3.684963056e-10 1.708450204e-10 1.591406701e-10 1.921900882e-10 2.012293414e-10 2.018925693e-10 2.186606463e-10 1.668691647e-10 3.313220997e-10 2.484357476e-10 2.309475123e-10 3.754598221e-10 4.308792085e-10 2.371585067e-10 1.648412672e-10 3.326016276e-10 5.19608917e-10 4.571426984e-10 3.316598304e-10 1.92269532e-10 2.928625054e-10 1.195435779e-10 1.138780192e-10 3.516105388e-10 2.969845647e-10 2.141521458e-10 3.165155817e-10 2.871796998e-10 1.828707005e-10 3.09573006e-10 3.085529807e-10 1.97152989e-10 2.852193091e-10 2.195021197e-10 2.76439358e-10 6.071510633e-11 1.788750961e-10 2.075505565e-10 2.282426019e-10 1.239803909e-10 1.825226478e-10 2.755222686e-10 2.576485655e-10 2.168528721e-10 3.772189264e-10 2.197378728e-10 2.139198999e-10 1.526856423e-10 2.890190862e-10 1.941810345e-10 2.040070341e-10 2.74839946e-10 2.827775129e-10 2.27107472e-10 2.815223001e-10 4.400056688e-10 3.777757002e-10 2.778649252e-10 1.812851484e-10 3.008893871e-10 2.087669039e-10 2.912256183e-10 3.394056965e-10 3.055630234e-10 2.004864193e-10 4.422834743e-10 4.174246732e-10 2.901642676e-10 2.996218254e-10 3.240339986e-10 3.814654838e-10 4.108161882e-10 3.822709108e-10 3.972069236e-10 3.829372949e-10 3.128372482e-10 3.124734267e-10 2.699376503e-10 3.81388212e-10 3.940604768e-10 2.829035138e-10 4.709301291e-10 3.037872686e-10 2.567352009e-10 2.705392062e-10 2.434434057e-10 2.455989651e-10 1.096920902e-10 1.52955267e-10 1.463448315e-10 2.479975214e-10 1.727060913e-10 6.552271211e-10 6.091317255e-10 4.305549644e-10 4.45339359e-10 3.602755263e-10 5.404257126e-10 6.120298433e-10 5.025039595e-10 4.056823447e-10 5.159602402e-10 5.126413717e-10 4.269027727e-10 4.839129089e-10 3.711323194e-10 3.565176996e-10 4.898029729e-10 5.62289778e-10 5.119195115e-10 5.069598699e-10 5.464572581e-10 4.691446955e-10 4.858756271e-10 3.904959976e-10 4.771413157e-10 3.904903095e-10 4.839556229e-10 4.100024769e-10 3.53398198e-10 3.802330019e-10 3.695718452e-10 4.858919377e-10 4.44439542e-10 3.398970496e-10 4.079805194e-10 2.822800643e-10 3.842846024e-10 4.338939269e-10 5.573637718e-10 4.872060364e-10 5.098467194e-10 3.542557481e-10 3.108351809e-10 3.215290744e-10 3.32324672e-10 3.470156638e-10 3.613299934e-10 3.641502067e-10 4.251224751e-10 3.925336108e-10 3.308127377e-10 3.569281597e-10 3.112811103e-10 3.376819748e-10 4.492541335e-10 4.749020507e-10 3.714033167e-10 3.681568253e-10 3.915481313e-10 4.144842403e-10 2.938309117e-10 5.80817303e-10 5.178007199e-10 4.78893924e-10 5.06321e-10 4.509170423e-10 6.530661221e-10 3.692929236e-10 4.843198351e-10 5.323671636e-10 5.090313922e-10 5.263000763e-10 5.96792668e-10 6.07780955e-10 5.129674143e-10 5.286459162e-10 5.081985258e-10 5.150768443e-10 8.412490256e-10 4.505485058e-10 5.357230342e-10 5.541203164e-10 1.929351495e-10 1.772122478e-10 1.891793402e-10 1.219766433e-10 1.022970503e-10 2.09588649e-10 1.941259947e-10 2.020382319e-10 3.046665424e-10 2.946697568e-10 3.637448288e-10 2.679686891e-10 2.6539279e-10 2.669068724e-10 4.308045763e-10 2.806270627e-10 4.795955549e-10 4.047236224e-10 3.773422923e-10 5.227818878e-10 3.556691779e-10 3.321407028e-10 4.477869696e-10 4.838703063e-10 4.021696946e-10 4.454946967e-10 3.694525427e-10 3.197284811e-10 5.202258404e-10 3.803751236e-10 2.38710285e-10 1.859463217e-10 1.933938163e-10 1.078712238e-10 1.611629136e-10 2.404992154e-10 1.47809818e-10 2.318361752e-10 2.356195581e-10 2.604044084e-10 1.935549623e-10 4.922609012e-10 3.84717445e-10 3.826787654e-10 2.847339344e-10 2.803807755e-10 2.438415083e-10 1.39784085e-10 3.500630315e-10 3.076066872e-10 2.135588392e-10 2.392459462e-10 2.285151074e-10 4.533208509e-10 6.541039791e-11 1.860377469e-10 1.767998975e-10 2.553284465e-10 1.511296957e-10 2.408507069e-10 3.666346026e-10 2.650590363e-10 2.342067054e-10 3.917813397e-10 1.337511453e-10 2.543624458e-10 2.134598821e-10 3.68827385e-10 3.559742704e-10 3.070528942e-10 1.856290115e-10 4.736832418e-10 2.725963468e-10 2.781041233e-10 1.672076438e-10 3.944056946e-10 2.026513734e-10 2.410920544e-10 2.765101697e-10 1.489398879e-10 4.021514321e-10 1.603693479e-10 1.553594429e-10 2.9057687e-10 2.992526219e-10 1.713133176e-10 2.360056209e-10 3.72292992e-10 1.56124603e-10 1.430981149e-10 3.283123631e-10 9.572553149e-11 1.253134973e-10 2.420965536e-10 7.073532086e-11 1.478527885e-10 1.506509371e-10 3.029776777e-10 5.943980197e-11 3.165794815e-10 9.289767659e-11 9.237821111e-11 1.337621178e-10 1.468618088e-10 1.640236686e-10 1.092740553e-10 1.649631098e-10 2.779767542e-10 2.311088782e-10 1.193128606e-10 +2.178616008e-10 1.897238448e-10 2.970357332e-11 9.094053897e-11 2.727832126e-10 3.194211339e-11 1.503417604e-10 6.434038439e-11 9.261770123e-11 2.631972945e-10 1.34924836e-10 8.0713738e-11 5.114783605e-10 1.159748083e-10 4.925952117e-11 1.335277253e-10 2.5445462e-10 1.605089674e-10 1.550766928e-10 1.491215372e-10 3.686133735e-10 3.770187251e-10 1.293035374e-10 2.316000888e-10 1.053837287e-10 2.466121099e-10 1.952062369e-10 2.284970462e-10 2.886956362e-10 2.710343023e-10 3.534619519e-10 2.807427933e-10 3.30837319e-10 9.974612241e-11 1.571498558e-10 2.839757049e-10 1.594848982e-10 2.677587181e-10 2.941196682e-10 2.017767467e-10 3.98821699e-10 3.410398299e-10 4.863943414e-10 2.994833188e-10 3.310595995e-10 4.631534454e-10 1.57511237e-10 1.003291554e-10 1.593768569e-10 1.59531198e-10 3.958232505e-10 2.449191454e-10 2.163824395e-10 1.86726403e-10 3.467898404e-10 1.911053269e-10 1.439149551e-10 2.869899624e-10 2.802589489e-10 1.900464328e-10 1.956419611e-10 1.727402006e-10 2.934496727e-10 2.026138439e-10 2.965256464e-10 2.340068312e-10 1.98353041e-10 1.758062788e-10 3.369868361e-10 2.645129597e-10 1.743188619e-10 1.904006956e-10 4.032774987e-10 2.28492703e-10 2.596728987e-10 3.509665118e-10 3.775870685e-10 2.808119756e-10 1.66287658e-10 2.752177201e-10 3.059954136e-10 3.714178528e-10 3.118362821e-10 4.179436617e-10 4.358916593e-10 4.973348207e-10 3.289669247e-10 3.536928685e-10 2.291190808e-10 4.481986538e-10 2.954756547e-10 2.647013494e-10 2.496835921e-10 5.012289594e-10 3.663212441e-10 3.41656292e-10 3.871696021e-10 2.579580676e-10 2.73813491e-10 3.026079682e-10 3.730400969e-10 4.02968733e-10 1.429816281e-10 1.732272993e-10 1.159330763e-10 2.465391586e-10 1.800642317e-10 2.13775174e-10 1.789141777e-10 2.983268018e-10 5.504227024e-10 6.682877344e-10 6.905088322e-10 7.045901787e-10 4.167154338e-10 6.05358165e-10 5.431759914e-10 6.016874973e-10 5.625818194e-10 4.081161181e-10 3.845887986e-10 3.23496502e-10 4.559740639e-10 5.289730131e-10 6.257712826e-10 4.058378947e-10 6.682480367e-10 5.576422151e-10 5.485268203e-10 3.25258566e-10 4.315411985e-10 4.553380676e-10 5.251303052e-10 3.569131743e-10 5.077740581e-10 4.726331501e-10 5.19058297e-10 3.655572188e-10 3.416824998e-10 3.920691637e-10 4.320282389e-10 2.355298396e-10 3.176886859e-10 3.036204507e-10 3.66437774e-10 4.182732181e-10 4.578670132e-10 3.807877259e-10 3.295757121e-10 2.743073781e-10 3.36228594e-10 4.377140219e-10 3.927550938e-10 4.456319573e-10 3.963799316e-10 2.45738703e-10 3.967075991e-10 2.746896127e-10 3.427932224e-10 4.996400123e-10 4.432824018e-10 4.335063708e-10 3.942313518e-10 4.951859567e-10 2.83292909e-10 4.618754136e-10 4.188267937e-10 4.534925992e-10 2.976229789e-10 4.620332093e-10 4.7508996e-10 4.329895446e-10 5.565885087e-10 6.394971125e-10 7.275460693e-10 6.111135998e-10 5.342254452e-10 4.468329232e-10 7.045882717e-10 4.08612713e-10 4.967412488e-10 3.583256229e-10 6.941156193e-10 8.123657755e-10 5.794271654e-10 5.883857547e-10 5.377457625e-10 6.465625036e-10 4.795838918e-10 7.032715948e-10 1.967634743e-10 1.468388025e-10 2.574693459e-10 2.146674183e-10 2.034645095e-10 2.452352448e-10 1.876778732e-10 2.895481565e-10 3.126620905e-10 2.541617051e-10 2.560640281e-10 3.530587588e-10 2.656894567e-10 2.813694246e-10 3.201334738e-10 3.018625822e-10 2.721897228e-10 2.756127347e-10 4.156571839e-10 3.890704156e-10 5.628231116e-10 3.092598744e-10 2.30167952e-10 3.259574403e-10 4.239762937e-10 3.079433135e-10 4.25250985e-10 3.827957873e-10 2.759129447e-10 3.605215487e-10 2.303306198e-10 2.680463884e-10 3.173557767e-10 1.438750946e-10 3.520306031e-10 1.716822795e-10 2.300694068e-10 2.486338062e-10 4.092289315e-10 3.281036434e-10 3.162625537e-10 3.434469131e-10 2.346240808e-10 2.615292705e-10 1.635919915e-10 2.382867822e-10 3.853402539e-10 2.227823925e-10 3.690009015e-10 4.080550734e-10 1.786096219e-10 3.130700023e-10 1.310183978e-10 2.738553648e-10 2.275379759e-10 3.67054598e-10 3.368887638e-10 2.22697723e-10 1.792977978e-10 2.670334127e-10 2.871746683e-10 1.587903268e-10 2.690354728e-10 1.726629225e-10 3.733320205e-10 1.915918244e-10 2.034909674e-10 2.936908703e-10 2.933907229e-10 3.863047661e-10 1.481106445e-10 1.66623545e-10 2.415213603e-10 1.727515794e-10 1.883508363e-10 1.859991405e-10 1.500701119e-10 3.95070715e-10 1.049245568e-10 2.285659239e-10 4.303715618e-10 3.462959402e-10 2.56080293e-10 2.687208491e-10 2.278887371e-10 2.187286918e-10 2.204636077e-10 1.25926411e-10 1.546767398e-10 3.492465088e-10 3.283299111e-10 1.954767586e-10 8.749210777e-11 3.065196141e-10 2.295291291e-10 9.637173659e-11 2.018615852e-10 9.24865383e-11 1.709161243e-10 1.775536558e-10 1.111210852e-10 6.357774048e-11 1.511125368e-10 2.15748922e-10 1.869782456e-10 6.187891847e-11 1.1305967e-10 1.629239106e-10 6.57777464e-11 1.552200186e-10 +1.595346329e-10 8.842168325e-11 1.302045756e-10 1.864659452e-10 1.76403767e-10 5.225401484e-11 2.394302453e-10 2.209710205e-10 1.922385468e-10 6.750088096e-11 1.430492593e-10 1.638354449e-10 1.142166867e-10 6.154279021e-11 9.489389841e-11 1.221977575e-10 1.735404636e-10 3.75062506e-10 1.362412494e-10 1.465154409e-10 1.166207913e-10 2.701374354e-10 1.582089774e-10 2.143903987e-10 1.139537539e-10 1.895647322e-10 2.556446405e-10 2.190772675e-10 2.42861484e-10 2.352183562e-10 2.450305442e-10 4.355286423e-10 1.375425832e-10 3.534014887e-10 2.084927663e-10 4.880080365e-10 1.760463086e-10 1.781507774e-10 3.185363058e-10 3.40531625e-10 1.768446376e-10 1.702516785e-10 1.851923006e-10 1.825702005e-10 2.170564735e-10 2.473650354e-10 1.893279623e-10 4.091380275e-10 2.203306599e-10 1.495368255e-10 3.92770867e-10 1.408861926e-10 1.759332274e-10 2.453942789e-10 3.200474048e-10 1.919295741e-10 2.575176542e-10 1.28615877e-10 3.640057401e-10 3.164838787e-10 1.953688022e-10 2.533136263e-10 2.617592894e-10 2.773664779e-10 3.759205195e-10 2.807462944e-10 1.711368489e-10 3.124644147e-10 3.688507967e-10 2.380473687e-10 3.553645664e-10 2.357295563e-10 3.419438091e-10 2.357711454e-10 2.273797872e-10 3.172099651e-10 2.808076206e-10 3.401054996e-10 2.174436308e-10 2.846021541e-10 4.002641452e-10 3.601541833e-10 3.401560521e-10 4.34680912e-10 3.764730829e-10 3.579246079e-10 2.771241701e-10 3.604644602e-10 3.663988375e-10 5.137273781e-10 4.120728649e-10 2.938646887e-10 2.086766879e-10 2.68000709e-10 4.573381605e-10 2.487122897e-10 2.62650417e-10 3.631070493e-10 2.349602826e-10 3.217872871e-10 2.308058284e-10 2.201639462e-10 2.926989613e-10 1.77733468e-10 2.557262958e-10 1.143415568e-10 2.856147308e-10 1.705838876e-10 2.611347145e-10 2.337997464e-10 5.374782677e-10 6.240491096e-10 8.840230907e-10 4.312511109e-10 5.317135755e-10 5.494520131e-10 6.317464648e-10 5.558874195e-10 4.218045217e-10 4.029392929e-10 7.191385462e-10 4.476600719e-10 4.271599866e-10 5.794095384e-10 5.552071561e-10 6.049143891e-10 6.821532776e-10 4.756701475e-10 5.926498049e-10 6.621696644e-10 3.462572963e-10 4.245835219e-10 3.999610353e-10 3.823606549e-10 4.238774397e-10 4.061822678e-10 3.886653317e-10 3.801717379e-10 3.778621675e-10 3.358730315e-10 2.375388297e-10 2.467186778e-10 3.523606427e-10 3.237996853e-10 2.674017976e-10 4.352401913e-10 4.182936022e-10 3.542487278e-10 3.934542982e-10 4.534504247e-10 4.465210424e-10 2.935466841e-10 3.34838972e-10 3.375625288e-10 2.522098811e-10 3.23982805e-10 4.666827346e-10 4.71039901e-10 3.255039677e-10 4.386384627e-10 3.831679149e-10 3.852095906e-10 3.740014113e-10 3.57216364e-10 4.472222347e-10 3.837369777e-10 4.466156613e-10 2.861026919e-10 3.882742722e-10 3.127158945e-10 3.244020366e-10 6.256744867e-10 3.944794664e-10 5.932401032e-10 5.44922421e-10 7.382353091e-10 5.729490488e-10 5.51162801e-10 5.655784264e-10 3.599045842e-10 5.568406579e-10 5.162966753e-10 4.516919046e-10 4.823725038e-10 3.812918093e-10 8.021148308e-10 5.708985739e-10 4.381821667e-10 7.172755723e-10 5.739141473e-10 4.16123977e-10 1.979206194e-10 1.313960134e-10 1.482670794e-10 1.54704378e-10 8.529656797e-11 1.133667967e-10 2.829519882e-10 1.827373315e-10 3.149228281e-10 2.385457555e-10 2.585654437e-10 2.927474071e-10 2.842548298e-10 3.174348376e-10 3.678527152e-10 2.482875256e-10 4.162632731e-10 3.742149289e-10 3.176508908e-10 2.876794066e-10 4.474043245e-10 5.122220359e-10 2.29016327e-10 4.586505351e-10 4.579579269e-10 2.861083521e-10 4.109656152e-10 5.794742011e-10 2.594512267e-10 2.486919354e-10 1.528965863e-10 2.298297075e-10 2.633120758e-10 3.106995215e-10 2.655124757e-10 1.866611198e-10 1.817206137e-10 4.482774817e-10 2.506813066e-10 3.517632977e-10 3.999584602e-10 2.071672181e-10 2.890670837e-10 2.305487044e-10 3.304675304e-10 3.21321084e-10 2.625645966e-10 2.015152715e-10 4.534285901e-10 2.709297493e-10 3.224413681e-10 2.919516524e-10 1.582468333e-10 1.259548065e-10 9.858382478e-11 2.466066451e-10 1.162077488e-10 8.632724246e-11 2.65904233e-10 2.844344731e-10 2.6603615e-10 2.04011529e-10 3.70263074e-10 1.037338206e-10 3.850642748e-10 1.654588001e-10 1.861072494e-10 1.963247109e-10 1.818973955e-10 2.86768672e-10 2.34142614e-10 3.484697639e-10 1.243307982e-10 1.417769143e-10 2.245920718e-10 1.923079252e-10 4.62100768e-10 3.128729479e-10 2.635217191e-10 1.452218599e-10 1.469951833e-10 3.328858947e-10 2.729409963e-10 3.530821815e-10 1.295321241e-10 1.683613818e-10 1.795661214e-10 1.809383799e-10 1.39139227e-10 1.200689398e-10 1.526309877e-10 2.968689623e-10 1.16679056e-10 1.274911072e-10 6.42372413e-11 2.655348765e-10 1.130035366e-10 7.140353067e-11 8.886528083e-11 1.917336881e-10 1.066484049e-10 1.582318593e-10 9.084382507e-11 1.958863982e-10 2.494146668e-11 1.139441751e-10 1.794211108e-10 2.017087545e-10 2.468881234e-10 +1.615072604e-10 4.213428842e-11 1.241223687e-10 1.817817605e-10 1.228500478e-10 1.11702185e-10 1.252420782e-10 1.792447428e-10 4.220541732e-10 1.521920317e-10 1.155773272e-10 1.643254377e-10 1.164746847e-10 2.001424821e-10 2.12760573e-10 1.712028175e-10 1.062692208e-10 3.305653437e-10 1.372357412e-10 1.407164519e-10 1.046119747e-10 4.810779124e-11 1.409929643e-10 3.019102435e-10 1.887093727e-10 1.275255691e-10 3.115168901e-10 2.704446917e-10 1.921139651e-10 2.422746141e-10 3.065486095e-10 2.616924936e-10 8.236387098e-11 1.980211137e-10 2.494837608e-10 2.418413235e-10 2.105962639e-10 2.754730216e-10 3.578720584e-10 2.078088485e-10 2.018720649e-10 2.88200956e-10 3.238100281e-10 3.157960646e-10 3.775065357e-10 1.177896005e-10 2.524552595e-10 2.124440368e-10 3.359603394e-10 4.38779621e-10 1.893121884e-10 4.667581721e-10 1.081691069e-10 1.967520023e-10 1.328177927e-10 2.238030984e-10 2.078499877e-10 2.048454718e-10 3.048271299e-10 2.130690923e-10 4.514094766e-10 2.751155321e-10 1.980524681e-10 2.098424897e-10 3.216180058e-10 2.192642173e-10 3.534478684e-10 1.813535407e-10 2.905559495e-10 2.152570412e-10 2.785334281e-10 3.640593364e-10 2.478272021e-10 2.418187438e-10 2.698395171e-10 3.404299763e-10 2.174965884e-10 1.338181483e-10 2.283383113e-10 2.790335984e-10 5.148639157e-10 2.946025935e-10 4.480283963e-10 5.191951815e-10 3.699630948e-10 3.685522573e-10 3.052306317e-10 3.910048463e-10 4.454202994e-10 5.211416903e-10 3.178396988e-10 2.404539561e-10 3.788069873e-10 2.795466717e-10 3.630227432e-10 3.316549744e-10 3.472659016e-10 3.70961521e-10 4.664556223e-10 1.882607982e-10 3.005568267e-10 2.188797298e-10 2.099326175e-10 1.569819222e-10 5.683895539e-11 3.288188162e-10 2.376356674e-10 2.126154276e-10 2.205472161e-10 4.9579964e-10 4.802355385e-10 5.13443083e-10 3.987353158e-10 5.01043017e-10 5.570202542e-10 5.870375525e-10 3.857330639e-10 4.534196153e-10 2.252445494e-10 2.967878754e-10 3.678357224e-10 2.803160868e-10 6.795155854e-10 4.517764691e-10 6.510883539e-10 5.952970733e-10 5.060174664e-10 5.159325402e-10 4.111761685e-10 4.659785994e-10 5.053737781e-10 4.784534762e-10 4.36060915e-10 3.422853698e-10 3.693283195e-10 4.368720037e-10 4.622686275e-10 3.807515152e-10 3.036846137e-10 4.170478353e-10 4.645593948e-10 3.718377165e-10 4.406976562e-10 3.980174491e-10 2.540908614e-10 3.418271619e-10 3.185973727e-10 3.314909287e-10 2.820986663e-10 2.78160729e-10 2.660087808e-10 2.985651914e-10 3.053969552e-10 3.145242768e-10 3.153684643e-10 4.578323941e-10 3.960981511e-10 3.833391278e-10 4.750513302e-10 3.49329472e-10 3.412748313e-10 4.804271556e-10 3.284784359e-10 3.344881188e-10 5.221691906e-10 4.328959032e-10 5.02139378e-10 4.385493724e-10 4.209828437e-10 4.234896856e-10 4.482220114e-10 3.84684883e-10 3.540276318e-10 4.073299752e-10 4.650806603e-10 4.668634639e-10 4.695357159e-10 4.130319703e-10 5.80862465e-10 7.152330043e-10 5.783190488e-10 5.686815455e-10 5.522535124e-10 8.18941912e-10 4.786571767e-10 5.160884417e-10 6.23042824e-10 3.233039574e-10 5.402870718e-10 8.602819083e-10 2.290480671e-10 1.78314601e-10 1.88796332e-10 2.517109973e-10 2.208125962e-10 2.190662496e-10 1.575279729e-10 2.25766069e-10 3.393403531e-10 2.416507774e-10 2.976840487e-10 2.938122456e-10 3.213440484e-10 2.929133609e-10 3.109777302e-10 4.515059258e-10 2.613338633e-10 3.257555686e-10 5.390281432e-10 4.16558188e-10 3.841564184e-10 3.508445026e-10 3.528809679e-10 4.094514769e-10 3.576589295e-10 2.381570652e-10 5.093147725e-10 3.785216085e-10 4.697064633e-10 2.91476915e-10 2.840930429e-10 1.446981652e-10 1.509377429e-10 1.022343632e-10 1.654605494e-10 3.121498044e-10 3.809379825e-10 2.218208621e-10 2.116513879e-10 2.229010379e-10 2.124662543e-10 2.878293716e-10 2.244313822e-10 3.485693626e-10 1.776009446e-10 1.84309941e-10 2.984971134e-10 4.398209854e-10 3.112093244e-10 1.814119174e-10 2.520131283e-10 2.037963196e-10 3.322302429e-10 1.732327931e-10 1.541095424e-10 2.223652346e-10 6.98231312e-11 4.164572461e-10 3.591171568e-10 3.084108738e-10 2.409361033e-10 2.469911128e-10 1.630919107e-10 4.821301192e-10 1.904620461e-10 3.074918788e-10 1.992949177e-10 2.081892666e-10 2.373111701e-10 2.832973382e-10 2.049962269e-10 1.027644421e-10 2.351143729e-10 2.589806938e-10 3.817984774e-10 3.082054653e-10 1.661180814e-10 4.699625368e-10 2.610383043e-10 1.586932113e-10 3.633967449e-10 2.917830097e-10 3.81257793e-10 3.315351478e-10 1.894678712e-10 2.023358734e-10 1.420645045e-10 1.434796486e-10 1.616124703e-10 1.820159491e-10 2.110640186e-10 1.689953275e-10 1.233410224e-10 1.585283e-10 9.192299821e-11 1.367799178e-10 6.317648737e-11 2.42382462e-10 1.33528207e-10 4.299430448e-10 4.683856954e-10 1.589874429e-10 1.084920791e-10 1.207445262e-10 1.561564078e-10 2.677974604e-10 3.403668662e-10 3.066412761e-11 1.180979994e-10 2.854203753e-10 +1.541688089e-10 2.110676685e-10 1.101861201e-10 1.763083332e-10 3.810752606e-10 1.594703742e-10 1.278672108e-10 1.196762737e-10 2.604298511e-10 6.647535697e-11 3.848009355e-10 1.120175897e-10 8.787061435e-11 1.815764867e-10 7.218506346e-11 3.049317417e-10 1.674112025e-10 1.203250212e-10 2.119135991e-10 1.960365674e-10 1.399814516e-10 1.357276578e-10 1.600644112e-10 2.813553371e-10 1.520527334e-10 3.152808679e-10 3.982086995e-10 9.831115908e-11 1.914719581e-10 2.629448786e-10 4.793516679e-10 2.040291603e-10 3.325938792e-10 3.029636764e-10 2.229543986e-10 3.0491093e-10 3.830175753e-10 2.742325059e-10 2.093312035e-10 2.310198361e-10 1.804413789e-10 4.272373025e-10 2.477433788e-10 3.582367449e-10 2.406169341e-10 2.205896488e-10 2.654125718e-10 2.118939411e-10 1.504908169e-10 3.013318897e-10 1.550243095e-10 1.747767672e-10 4.802214308e-10 4.433993755e-10 2.444007464e-10 2.79452211e-10 1.967157617e-10 2.138871148e-10 3.682281341e-10 1.780372009e-10 2.646015913e-10 1.69241894e-10 2.460596573e-10 3.333939481e-10 1.699551132e-10 2.727439113e-10 2.995823283e-10 2.751409352e-10 1.790702679e-10 2.708317188e-10 1.534576652e-10 3.823475583e-10 1.615337366e-10 1.664713733e-10 3.303045981e-10 2.744805637e-10 3.666987155e-10 2.457128321e-10 2.405148969e-10 2.252979399e-10 3.812292648e-10 3.461392384e-10 3.791855001e-10 5.253956025e-10 4.399342336e-10 3.431050724e-10 3.622874695e-10 4.555130601e-10 3.851192585e-10 2.458070346e-10 4.431847396e-10 2.989853542e-10 4.881089919e-10 2.896104858e-10 3.344015764e-10 2.747731234e-10 4.188671884e-10 3.432801593e-10 3.29300928e-10 3.103850874e-10 3.206856929e-10 2.214574993e-10 9.904018664e-11 1.116488671e-10 2.033668024e-10 1.349317794e-10 1.988644522e-10 2.395442186e-10 4.046019917e-10 6.023269955e-10 5.887564986e-10 6.158936199e-10 5.646310195e-10 5.147903368e-10 4.310081381e-10 7.309061102e-10 3.921320908e-10 5.445716454e-10 6.131056628e-10 5.262056036e-10 5.100252179e-10 4.471035517e-10 5.254860045e-10 4.847153076e-10 5.821091669e-10 5.510050607e-10 5.018112877e-10 3.910326279e-10 3.359634809e-10 4.761603358e-10 3.810958739e-10 4.277769523e-10 3.761496046e-10 4.090418946e-10 3.01243477e-10 5.786027275e-10 4.894470754e-10 4.3002692e-10 2.732439405e-10 3.092339238e-10 4.281954646e-10 3.282575628e-10 3.369123267e-10 2.963652528e-10 3.162718021e-10 2.491291151e-10 2.287387839e-10 2.546333023e-10 2.242625895e-10 2.499805563e-10 1.524438949e-10 2.286673225e-10 3.782448979e-10 2.407230107e-10 2.944695694e-10 3.536516035e-10 2.95445273e-10 3.884660527e-10 3.793762241e-10 4.089243048e-10 3.247005692e-10 3.855621995e-10 4.076616064e-10 5.352258849e-10 3.234413962e-10 2.864981138e-10 4.680809894e-10 4.201731979e-10 2.836183603e-10 4.76213412e-10 5.339290014e-10 3.77233131e-10 4.873329096e-10 6.045213523e-10 6.043897951e-10 5.438004011e-10 4.593286207e-10 7.422631696e-10 6.755339736e-10 3.814435013e-10 5.074620849e-10 3.271172606e-10 7.290773746e-10 6.000288654e-10 4.907647673e-10 5.965218486e-10 5.510474962e-10 5.099660232e-10 4.978310028e-10 7.251742535e-10 6.256314141e-10 4.482608489e-10 1.526967731e-10 1.954420063e-10 1.733823295e-10 2.366613193e-10 1.000371935e-10 2.67332166e-10 2.893496561e-10 2.50868602e-10 3.011001975e-10 2.123313915e-10 3.148062519e-10 3.000668696e-10 3.381322505e-10 3.142948036e-10 3.725376754e-10 3.360178445e-10 3.523887031e-10 3.092398572e-10 4.348759593e-10 4.402410002e-10 2.46792509e-10 2.649062731e-10 4.961876907e-10 4.615905986e-10 4.271228953e-10 3.846375949e-10 3.331654059e-10 3.33225429e-10 2.160989833e-10 1.542177319e-10 1.583398291e-10 1.906860061e-10 1.872843892e-10 1.744435726e-10 3.111831448e-10 3.899643227e-10 3.585009359e-10 1.649597875e-10 4.733539982e-10 2.787739497e-10 2.707608155e-10 1.482870372e-10 2.401835937e-10 1.753447321e-10 3.369130709e-10 2.841096018e-10 2.724929872e-10 3.019281855e-10 2.095909887e-10 2.651535493e-10 1.742318807e-10 1.370244471e-10 1.953513569e-10 2.199600885e-10 1.826815542e-10 3.04717567e-10 3.709874053e-10 1.73756235e-10 3.612190427e-10 2.37519985e-10 2.336419071e-10 2.370968558e-10 2.520765858e-10 3.316259668e-10 3.749508824e-10 3.587007951e-10 4.54282538e-10 1.376238038e-10 2.506520418e-10 3.959442189e-10 1.945812482e-10 4.746532155e-10 2.6274061e-10 3.854336828e-10 2.769012602e-10 1.402701961e-10 2.017183946e-10 4.44368229e-10 3.482179783e-10 2.040264553e-10 2.022685324e-10 2.98391616e-10 2.614541943e-10 1.129704283e-10 1.631749206e-10 3.494810158e-10 1.611172628e-10 9.376001079e-11 1.014821322e-10 1.094242479e-10 3.404396552e-10 1.597289464e-10 2.185157602e-10 1.513656182e-10 1.303375802e-10 8.870287755e-11 1.238888218e-10 2.294078048e-10 1.423405493e-10 1.926276048e-10 2.822466594e-10 6.452807569e-11 3.633516034e-10 1.736259229e-10 1.904340605e-10 2.95336721e-10 3.555024978e-10 2.055743958e-10 +9.761906337e-11 2.036457395e-10 3.308996696e-10 1.542592437e-10 1.383493905e-10 3.715811287e-10 1.631578442e-10 2.464663871e-10 3.293484473e-10 1.254149997e-10 1.085334485e-10 9.073738548e-11 2.469529678e-10 2.219643654e-10 1.788284473e-10 8.348556949e-11 8.959462329e-11 1.11661401e-10 6.603499759e-11 2.368631692e-10 2.14822897e-10 1.638273952e-10 4.494523729e-10 1.561603426e-10 1.741372504e-10 2.172372133e-10 3.036371067e-10 1.342272956e-10 1.830315593e-10 3.125857638e-10 3.347523698e-10 4.282085018e-10 3.254225433e-10 2.799871235e-10 2.238653436e-10 2.781700739e-10 2.479839341e-10 2.774111853e-10 2.671956653e-10 1.464740593e-10 1.624231703e-10 1.455749504e-10 1.523570213e-10 3.002284454e-10 2.816913304e-10 4.829957498e-10 2.166507777e-10 2.08824853e-10 2.783816369e-10 3.333790412e-10 4.203699479e-10 1.604116721e-10 2.16704751e-10 2.834640614e-10 2.307961849e-10 1.599451607e-10 3.150583751e-10 1.773413685e-10 1.994529598e-10 3.230819264e-10 3.671935728e-10 2.005223184e-10 2.193197762e-10 1.902656269e-10 1.583521306e-10 2.271661461e-10 3.999653257e-10 2.68661992e-10 3.012229636e-10 3.093563409e-10 3.423123629e-10 2.673919495e-10 3.704183771e-10 2.66463014e-10 3.119245673e-10 3.200386539e-10 2.453234731e-10 3.507038116e-10 2.010781257e-10 3.917175286e-10 3.954714901e-10 3.27997306e-10 3.453486258e-10 4.161460361e-10 4.718376679e-10 2.691594674e-10 3.579658515e-10 4.846762741e-10 2.008673538e-10 3.554199009e-10 4.204021202e-10 3.407329467e-10 3.705056932e-10 3.926409298e-10 4.13315532e-10 2.433264378e-10 2.998039289e-10 3.083217242e-10 2.901483028e-10 2.678861606e-10 2.20523658e-10 2.66130268e-10 2.251755307e-10 1.645143945e-10 1.050084122e-10 1.939840924e-10 1.598431854e-10 3.499622783e-10 3.961130806e-10 4.992713206e-10 3.839577582e-10 6.429628543e-10 5.050993364e-10 4.457466941e-10 5.314706768e-10 5.028743344e-10 5.104897639e-10 6.461489982e-10 4.109181474e-10 7.066822093e-10 4.935588695e-10 7.714466667e-10 5.64684682e-10 5.089709343e-10 6.012838009e-10 4.909669268e-10 5.17671949e-10 4.804224575e-10 5.045892631e-10 4.372680991e-10 2.843122154e-10 5.029975884e-10 3.535876292e-10 5.28718899e-10 4.004846016e-10 3.339501337e-10 4.433987634e-10 3.971908758e-10 4.135262688e-10 3.957523743e-10 2.488408794e-10 3.83659377e-10 2.838908097e-10 2.481732931e-10 2.248383764e-10 3.013314224e-10 1.401339047e-10 2.41552917e-10 2.792113585e-10 2.58080736e-10 2.251769166e-10 1.945372772e-10 2.851787136e-10 2.249018214e-10 1.96592152e-10 2.234297591e-10 2.391488335e-10 2.999191139e-10 2.218547596e-10 3.507052471e-10 3.518400786e-10 4.154500092e-10 3.983822066e-10 3.476805502e-10 4.980616088e-10 3.902974929e-10 5.40928917e-10 3.502361435e-10 3.754935073e-10 3.266615183e-10 3.507880378e-10 4.546490782e-10 4.132548719e-10 4.13763763e-10 5.44082059e-10 5.205929482e-10 6.810500647e-10 5.231562289e-10 5.507561156e-10 4.65460404e-10 5.568398465e-10 5.080824266e-10 4.504678755e-10 5.058954461e-10 5.127957363e-10 6.279011235e-10 4.371369995e-10 5.883631196e-10 3.761348509e-10 5.57782637e-10 6.471521741e-10 8.592044479e-10 2.656737388e-10 2.06528963e-10 1.666735963e-10 5.791029109e-11 1.31002108e-10 1.251153494e-10 3.153346308e-10 2.095085716e-10 3.07887804e-10 3.265037926e-10 3.047674946e-10 3.313900639e-10 3.629898379e-10 3.87832509e-10 4.955243441e-10 3.913241138e-10 4.20047098e-10 2.914592608e-10 2.278122211e-10 3.316170001e-10 3.632765289e-10 4.940344709e-10 3.975398942e-10 3.783209861e-10 4.411240153e-10 4.336415639e-10 2.63234461e-10 4.729987755e-10 1.888135783e-10 3.67650343e-10 1.727359649e-10 1.966008852e-10 2.395825243e-10 3.645612805e-10 2.670099602e-10 3.590345881e-10 2.804466175e-10 3.076640346e-10 2.402286775e-10 2.232751321e-10 2.964229371e-10 2.566486228e-10 2.786344115e-10 2.008950404e-10 2.400219564e-10 2.286593718e-10 3.445942491e-10 2.016859421e-10 3.23332494e-10 3.756355215e-10 2.20394847e-10 1.497513843e-10 1.673701748e-10 2.075089823e-10 9.736241176e-11 1.255079876e-10 2.206091708e-10 2.269537689e-10 3.46299504e-10 2.212219871e-10 2.104346804e-10 1.028917977e-10 1.698552118e-10 1.741348181e-10 1.689936907e-10 3.129884878e-10 4.207970297e-10 3.602826688e-10 1.641787582e-10 3.197506909e-10 2.555592213e-10 3.197271788e-10 2.334148986e-10 3.591208964e-10 1.293100682e-10 2.441578786e-10 2.279254951e-10 1.75282976e-10 2.860145879e-10 1.946995128e-10 1.704388007e-10 2.672405134e-10 1.742535562e-10 1.843347903e-10 2.323143575e-10 2.883823564e-10 1.51503848e-10 1.698637261e-10 1.171732212e-10 1.843512207e-10 1.862826693e-10 1.353272809e-10 1.801063674e-10 2.460509138e-10 9.665877184e-11 1.354444913e-10 5.646629264e-11 1.589906784e-10 2.205377034e-10 1.254240747e-10 1.250775535e-10 2.206426308e-10 5.768508722e-11 1.05386163e-10 1.381312065e-10 5.967769921e-10 3.059632342e-10 2.656115582e-10 +1.485477778e-10 1.611553763e-10 7.32332239e-11 2.409304736e-10 1.407842988e-10 1.042364742e-10 2.130811834e-10 1.128265659e-10 1.313286656e-10 1.582242204e-10 1.849428402e-10 1.35859689e-10 2.247928278e-10 1.390342063e-10 9.269284286e-11 3.102621993e-10 7.880681737e-11 1.621074156e-10 9.964916901e-11 1.028642019e-10 1.069477335e-10 2.768437441e-10 2.025505945e-10 2.58716781e-10 2.635838616e-10 1.448920099e-10 1.915876519e-10 1.597211649e-10 4.120130701e-10 2.932848692e-10 2.140815567e-10 4.188215192e-10 1.779886681e-10 1.801246293e-10 3.217224051e-10 3.506984586e-10 2.959874737e-10 1.708497063e-10 3.302060667e-10 2.911122503e-10 1.990875959e-10 2.030813998e-10 1.932949159e-10 4.472793655e-10 4.239161056e-10 2.421448762e-10 3.256715168e-10 3.193381202e-10 1.97284056e-10 2.33291039e-10 2.739846571e-10 2.086688473e-10 4.626299698e-10 3.121940712e-10 2.657381096e-10 1.569873273e-10 3.430612947e-10 1.895204991e-10 1.874134453e-10 3.824622725e-10 3.063081627e-10 1.712713094e-10 2.712544896e-10 1.582440949e-10 2.853057157e-10 1.870658728e-10 1.352687642e-10 4.223756633e-10 2.476905337e-10 2.674467284e-10 2.968133656e-10 3.188746677e-10 2.889116616e-10 3.662653477e-10 3.883211563e-10 2.736211744e-10 3.591489172e-10 3.969065974e-10 2.608262198e-10 1.893787242e-10 3.480015639e-10 3.931578475e-10 3.334640313e-10 3.362148439e-10 5.628386992e-10 3.549249904e-10 3.43405825e-10 4.886619605e-10 3.300735209e-10 2.349216664e-10 3.908092199e-10 3.011791219e-10 4.224541512e-10 2.87900954e-10 4.444847661e-10 2.168442974e-10 2.964450164e-10 1.618510688e-10 4.682031423e-10 2.955111331e-10 1.556570012e-10 2.273893359e-10 9.508417617e-11 1.685649098e-10 1.195135051e-10 1.463100347e-10 2.453816201e-10 5.393987012e-10 5.035982024e-10 4.387569331e-10 4.758016549e-10 7.717696471e-10 7.144814157e-10 5.939103714e-10 3.797931643e-10 4.034381119e-10 6.201237208e-10 6.51147986e-10 7.047049194e-10 4.43704561e-10 5.985721238e-10 4.77437703e-10 4.73824764e-10 5.314868635e-10 4.530684641e-10 6.170926499e-10 4.855255522e-10 3.835418785e-10 5.200857126e-10 3.654695769e-10 3.28459237e-10 4.126955481e-10 3.779727132e-10 3.937555252e-10 4.479658114e-10 3.521572642e-10 4.227490107e-10 3.770681285e-10 3.195525799e-10 2.751859522e-10 2.750923578e-10 2.593615707e-10 2.805277188e-10 2.114364877e-10 2.463602274e-10 2.673463755e-10 1.593072739e-10 1.190763062e-10 9.397758771e-11 2.024137186e-10 1.952873132e-10 1.31701634e-10 1.56284745e-10 1.919553426e-10 1.883713723e-10 1.72188844e-10 1.865021329e-10 2.321407067e-10 1.90777812e-10 2.011608149e-10 3.431600109e-10 2.379661718e-10 2.903168218e-10 3.981152063e-10 4.882802114e-10 3.459785431e-10 5.226080514e-10 3.8459708e-10 4.695877715e-10 5.076910394e-10 3.412660451e-10 5.334400421e-10 2.296811988e-10 3.452761132e-10 3.969749812e-10 6.11427129e-10 6.503721683e-10 5.640457936e-10 5.71823383e-10 5.487771721e-10 7.351125852e-10 5.190521005e-10 5.437865845e-10 5.810754478e-10 4.635495862e-10 6.134588878e-10 5.580884718e-10 6.017601606e-10 6.392199748e-10 6.116016919e-10 6.215250574e-10 5.500917295e-10 4.245887464e-10 5.622672867e-10 1.761735787e-10 2.396410568e-10 2.344877934e-10 1.4189448e-10 2.43497669e-10 3.193462268e-10 3.488996942e-10 3.391348141e-10 3.188985942e-10 3.120010903e-10 3.124679684e-10 4.876338053e-10 3.611631491e-10 5.239044451e-10 2.938115989e-10 4.415697425e-10 2.521649626e-10 3.31844899e-10 2.838494793e-10 3.203766434e-10 4.824195391e-10 5.427749076e-10 4.668163043e-10 3.360577527e-10 2.709420193e-10 3.39284033e-10 3.084666386e-10 3.201699119e-10 2.404586588e-10 3.253113991e-10 2.99913502e-10 1.405128448e-10 2.701254961e-10 3.178378061e-10 3.232103931e-10 3.048943519e-10 3.597353385e-10 4.620848476e-10 3.237199575e-10 3.371476829e-10 2.873873994e-10 3.540834255e-10 1.767180583e-10 2.99002537e-10 1.387735844e-10 1.190651728e-10 3.692576199e-10 3.415392386e-10 2.119001573e-10 2.533836672e-10 1.771962274e-10 2.484714199e-10 1.683027836e-10 2.416699855e-10 1.696604663e-10 2.737484096e-10 2.597443427e-10 1.379027728e-10 1.79035646e-10 2.372670812e-10 2.95305806e-10 1.365345045e-10 3.626700993e-10 3.298097131e-10 2.6393508e-10 3.959435317e-10 3.0266094e-10 1.4161957e-10 2.012671406e-10 2.704102089e-10 2.692616943e-10 3.464840589e-10 3.232623773e-10 2.911407874e-10 3.300955709e-10 5.248344111e-10 2.56747509e-10 3.272633009e-10 2.992912472e-10 1.474533907e-10 2.097433403e-10 1.479319517e-10 1.336228207e-10 9.99803666e-11 1.816634774e-10 1.016025971e-10 1.195274184e-10 1.520916962e-10 2.154321518e-10 1.584734806e-10 1.681768038e-10 2.226694927e-10 9.810496049e-11 1.65042471e-10 9.900995964e-11 8.616975092e-11 2.837661934e-10 1.341639137e-10 1.663396765e-10 9.861623611e-11 1.065394347e-10 2.216100059e-10 1.362235783e-10 2.885372564e-10 2.622409001e-10 7.365667301e-11 +7.300893037e-11 1.745572194e-10 1.684267336e-10 1.374933085e-10 2.920570045e-10 4.412403118e-10 1.167460676e-10 1.198849732e-10 2.505284554e-10 3.926189215e-10 1.078297096e-10 8.320158091e-11 1.495774218e-10 8.678775607e-11 9.521150186e-11 9.784021488e-11 1.315525259e-10 3.537192826e-10 3.009490216e-10 1.672269894e-10 2.343880863e-10 9.146556419e-11 1.424683108e-10 2.89567677e-10 4.153368056e-10 2.885053238e-10 2.321923962e-10 1.479410762e-10 3.509943481e-10 3.446825481e-10 9.983724662e-11 2.162570968e-10 3.44497993e-10 2.60348366e-10 3.58375874e-10 3.226113073e-10 2.570935423e-10 8.25434361e-11 3.43332789e-10 1.699257015e-10 4.055029162e-10 2.902926184e-10 1.639464227e-10 2.977775751e-10 5.201682109e-10 1.588495399e-10 2.684270039e-10 2.458563495e-10 1.556138579e-10 4.068969409e-10 3.033528547e-10 2.296378719e-10 1.075281576e-10 1.401784019e-10 1.22812101e-10 1.611224526e-10 1.811888908e-10 3.396034e-10 2.831990819e-10 1.739255352e-10 3.446479609e-10 2.342119028e-10 3.990637095e-10 2.387998341e-10 4.179167851e-10 2.730202463e-10 3.644697525e-10 2.404931456e-10 2.953946351e-10 3.290295937e-10 3.084674353e-10 2.609707443e-10 2.314739098e-10 2.964325588e-10 3.108279141e-10 8.199712595e-11 4.256884962e-10 2.780083057e-10 2.839332466e-10 2.311586719e-10 4.788709882e-10 4.833775914e-10 4.359575036e-10 5.094599922e-10 4.406304495e-10 3.916263014e-10 4.069140076e-10 3.367322238e-10 4.415101003e-10 4.767361106e-10 5.216445849e-10 5.227881809e-10 3.431204808e-10 2.888711538e-10 3.776888982e-10 3.162700539e-10 3.382978061e-10 3.422504493e-10 3.400140214e-10 1.862510683e-10 3.281781666e-10 1.881622214e-10 1.244558045e-10 1.516198219e-10 2.114830305e-10 1.831934474e-10 2.372652186e-10 5.297913481e-10 4.102122803e-10 7.640522575e-10 7.371202993e-10 3.059530655e-10 4.819904431e-10 7.627800741e-10 5.192619922e-10 4.54897991e-10 4.809228938e-10 4.358052536e-10 4.741808356e-10 5.355469271e-10 5.606451345e-10 4.678505726e-10 6.505689423e-10 4.343572332e-10 5.074028481e-10 3.141097378e-10 3.625311556e-10 5.254072941e-10 4.91422459e-10 4.737120272e-10 3.704203309e-10 3.774863285e-10 3.271322493e-10 4.136576066e-10 3.931456306e-10 2.74981057e-10 3.067328389e-10 3.241814578e-10 2.816394121e-10 4.313355522e-10 2.546165508e-10 1.605375227e-10 1.633597351e-10 1.735611131e-10 2.16996529e-10 1.699204398e-10 1.37550991e-10 1.216292931e-10 9.731126461e-11 1.110933613e-10 2.914745546e-16 1.15079631e-10 1.513730298e-10 9.717224887e-11 8.689926051e-11 1.288005714e-10 6.485178542e-11 1.423849839e-10 1.995966931e-10 2.402229403e-10 1.972047265e-10 2.612735357e-10 2.155637177e-10 2.990082056e-10 3.018776774e-10 2.756141424e-10 4.211021659e-10 4.748184992e-10 4.502576479e-10 4.528114471e-10 4.419188647e-10 4.29421282e-10 4.791876471e-10 3.560118653e-10 4.07644036e-10 4.708252188e-10 6.328378843e-10 8.040314989e-10 7.341657998e-10 7.109987005e-10 6.251445241e-10 5.488875909e-10 5.466254129e-10 3.736909582e-10 4.716209284e-10 3.768294151e-10 6.133284031e-10 4.463101212e-10 7.262261586e-10 6.465612144e-10 7.06494131e-10 7.468764998e-10 3.163344311e-10 1.653843274e-10 2.204156376e-10 3.026798749e-10 1.537474419e-10 1.704367578e-10 2.229260252e-10 2.340449128e-10 3.729068645e-10 2.835776517e-10 3.642412524e-10 3.52404604e-10 2.338961315e-10 3.235796352e-10 3.327450733e-10 2.869784346e-10 2.578625638e-10 3.581842554e-10 4.79589993e-10 4.065361075e-10 3.935066693e-10 2.99801786e-10 4.723619033e-10 3.736222485e-10 3.764965761e-10 2.783788867e-10 2.998246701e-10 3.216860898e-10 2.309347691e-10 3.523226279e-10 1.659849084e-10 3.106799351e-10 2.394105212e-10 2.81785753e-10 2.124913342e-10 2.711765335e-10 1.74333052e-10 1.773294585e-10 3.754138301e-10 4.833356017e-10 2.225749316e-10 2.165282817e-10 2.33792299e-10 2.734675794e-10 2.81701322e-10 2.817995546e-10 2.268649147e-10 2.792952813e-10 3.410254351e-10 2.261707026e-10 3.125876991e-10 2.198865971e-10 1.503030471e-10 2.694387112e-10 2.268716313e-10 4.233639724e-10 2.933723035e-10 1.916320516e-10 1.820333676e-10 1.402446893e-10 3.112755549e-10 3.01040228e-10 2.007996887e-10 4.112571122e-10 2.746314809e-10 3.272417113e-10 1.977628856e-10 3.564668614e-10 1.374885914e-10 2.64900687e-10 2.515866728e-10 4.05543003e-10 2.215642826e-10 2.976888699e-10 1.873073942e-10 2.474592152e-10 1.745631632e-10 4.055575068e-10 1.57197624e-10 2.122354601e-10 1.429223929e-10 1.134298929e-10 2.098881695e-10 3.164793265e-10 2.33395118e-10 2.522113319e-10 4.157502437e-10 1.565756316e-10 4.131118602e-10 2.997807876e-10 9.544238362e-11 4.130419467e-10 1.280821006e-10 2.176354992e-10 2.290798176e-10 1.849220426e-10 1.248156485e-10 1.965628161e-10 9.019917758e-11 5.884154291e-11 3.017771564e-10 2.843238615e-10 1.056872695e-10 1.263681431e-10 4.235637647e-10 1.606362009e-10 1.059807891e-10 1.129138556e-10 +1.485163268e-10 1.004422009e-10 7.394851297e-11 1.986589054e-10 8.975244634e-11 3.043049426e-10 2.067582444e-10 2.236029506e-10 1.718493154e-10 1.394772334e-10 8.744609113e-11 1.45566596e-10 2.394934473e-10 1.466758187e-10 1.840009528e-10 6.217169155e-11 1.986611839e-10 3.121701451e-10 8.200921849e-11 1.668079699e-10 2.516897809e-10 1.744529446e-10 7.218701459e-11 1.379887175e-10 2.05340419e-10 6.391140652e-11 3.280699349e-10 2.707154122e-10 1.396569075e-10 1.595239269e-10 3.669959304e-10 2.444030777e-10 2.195963131e-10 3.691541361e-10 3.088965437e-10 3.074828947e-10 3.91228854e-10 2.924586794e-10 1.275915005e-10 1.260341419e-10 1.441965905e-10 4.057017534e-10 3.711991088e-10 2.775365208e-10 2.850899326e-10 2.745858716e-10 1.901612068e-10 2.377370114e-10 3.315273926e-10 1.309239884e-10 1.563883871e-10 1.439573915e-10 2.73965357e-10 2.207180476e-10 2.510289892e-10 3.635843958e-10 2.432904612e-10 3.415837997e-10 1.916011234e-10 2.979413621e-10 2.276892097e-10 3.089290888e-10 3.073267932e-10 3.031368977e-10 2.233375902e-10 2.252470444e-10 1.955063198e-10 2.208440934e-10 1.829015251e-10 2.855241826e-10 2.294929362e-10 3.753286061e-10 2.82706962e-10 3.790102783e-10 3.922860556e-10 2.705671186e-10 2.255300752e-10 2.498390581e-10 3.939685132e-10 5.447061285e-10 3.257757019e-10 4.654238616e-10 4.348753527e-10 2.357612728e-10 2.613592335e-10 4.309108927e-10 4.19860915e-10 3.535676299e-10 3.781200384e-10 3.565065373e-10 2.751017607e-10 4.554448598e-10 3.463906381e-10 3.08951755e-10 2.283059163e-10 2.745150267e-10 3.141063308e-10 3.934919746e-10 2.915503718e-10 2.893743388e-10 2.089652764e-10 3.514451692e-10 1.360888864e-10 1.952349494e-10 3.436417185e-10 2.132087491e-10 2.198596805e-10 1.009832671e-09 6.100839997e-10 5.897377567e-10 9.392165305e-10 5.224917196e-10 3.169130486e-10 4.506211102e-10 4.243111675e-10 5.99282313e-10 5.644837843e-10 4.456114747e-10 5.083404969e-10 5.795584219e-10 5.426070304e-10 6.943545344e-10 5.305320836e-10 5.667837293e-10 4.133609559e-10 3.993633753e-10 5.350143271e-10 3.690645851e-10 3.021256594e-10 4.187838302e-10 4.632201828e-10 4.85640034e-10 4.59797346e-10 3.716865263e-10 4.002343216e-10 2.623761288e-10 2.896504283e-10 2.299502492e-10 1.532575086e-10 2.364466002e-10 2.362530443e-10 1.886877311e-10 8.740430409e-11 1.001955064e-10 7.210907828e-11 1.338982139e-10 8.136095722e-11 4.334242159e-11 6.297240054e-11 8.234814006e-11 1.100374369e-10 9.334532369e-11 3.428486775e-10 1.413128379e-10 1.011051074e-10 7.156069166e-11 3.008547763e-10 8.375763956e-11 1.413667992e-10 1.796310673e-10 6.446975189e-11 1.861919981e-10 2.640794327e-10 3.078687602e-10 3.579849373e-10 2.901066226e-10 4.035191964e-10 2.876548091e-10 4.043384586e-10 4.912147895e-10 5.064685746e-10 4.756997186e-10 5.214103486e-10 4.622765106e-10 4.667834126e-10 5.739001399e-10 5.158136521e-10 6.33091427e-10 5.379686114e-10 3.736270297e-10 8.078265104e-10 5.480115218e-10 5.590823881e-10 5.690800745e-10 7.44400458e-10 4.370005227e-10 8.202669874e-10 3.394854264e-10 3.380734986e-10 5.736869519e-10 5.617082111e-10 7.394973315e-10 5.220444763e-10 3.381136288e-10 2.362016618e-10 2.4527274e-10 1.554656278e-10 1.677361299e-10 2.408106786e-10 2.067481928e-10 2.075831198e-10 3.044175332e-10 4.506603113e-10 3.773675612e-10 4.311627592e-10 4.900902783e-10 2.727316749e-10 2.119431415e-10 3.101792365e-10 2.542919319e-10 5.052454448e-10 4.049757113e-10 4.323508874e-10 4.465892713e-10 3.824955756e-10 4.867111906e-10 2.950766736e-10 3.896101987e-10 5.302949185e-10 3.979918466e-10 2.418089553e-10 7.791683877e-11 2.706293277e-10 1.705689425e-10 2.626651828e-10 2.963827326e-10 3.958273504e-10 3.290312532e-10 4.042503946e-10 2.702103402e-10 2.522614588e-10 3.166315596e-10 2.137666112e-10 2.490991439e-10 2.88525591e-10 3.263246995e-10 2.67909245e-10 2.587775345e-10 3.524126818e-10 3.350842909e-10 3.539933339e-10 1.865918958e-10 3.377753085e-10 4.19151243e-10 2.351847707e-10 2.30463434e-10 2.215851599e-10 2.4449312e-10 2.053795626e-10 1.883556418e-10 1.202104027e-10 3.414538728e-10 3.960112537e-10 3.174023952e-10 1.523275461e-10 2.285819201e-10 4.084715351e-10 3.380178878e-10 1.681386959e-10 1.705064541e-10 1.73883823e-10 3.058273508e-10 2.197435176e-10 3.716986418e-10 2.533160855e-10 1.878632389e-10 2.453942096e-10 2.203646932e-10 3.264247376e-10 3.236511147e-10 1.678417529e-10 1.529073814e-10 2.751317839e-10 1.998334975e-10 2.441674234e-10 1.047170884e-10 1.196617966e-10 6.697509319e-11 1.623033201e-10 1.757894002e-10 1.193284194e-10 1.843694762e-10 1.548879987e-10 2.742641807e-11 1.076496581e-10 1.766535221e-10 2.243548888e-10 9.011385676e-11 3.487257278e-10 3.235397783e-10 1.271891124e-10 1.830196914e-10 4.624885324e-11 1.552178286e-10 2.061741417e-10 4.354991117e-11 1.569372715e-10 1.322267461e-10 2.180116695e-10 1.443731018e-10 +6.643870725e-11 2.789704169e-10 1.070534838e-10 1.901089348e-10 1.543246573e-10 3.835433369e-10 8.036553636e-11 1.038956508e-10 1.0972149e-10 1.060009706e-10 1.222494369e-10 1.305583734e-10 2.805963311e-10 2.494129638e-10 1.252748439e-10 1.911454251e-10 1.959637328e-10 1.03756135e-10 2.785110216e-10 1.594116112e-10 1.221698596e-10 1.320178516e-10 3.410168558e-10 4.013584078e-10 2.34006024e-10 3.688770039e-10 2.237877248e-10 3.005260871e-10 1.75743063e-10 3.262787431e-10 1.816829176e-10 2.958836475e-10 1.672442792e-10 3.178477179e-10 2.547413715e-10 3.623590645e-10 4.086837633e-10 3.287794157e-10 2.234330074e-10 2.27030848e-10 2.543100808e-10 1.012515848e-10 1.510860426e-10 3.496999548e-10 1.354771828e-10 3.440246969e-10 3.527276429e-10 2.509918432e-10 2.487785366e-10 4.252008826e-10 2.100853611e-10 1.281244922e-10 2.570042206e-10 4.054519873e-10 2.90659769e-10 4.195951831e-10 2.993499802e-10 1.549531482e-10 2.344930593e-10 1.71128507e-10 2.313185698e-10 2.842806939e-10 1.977965804e-10 1.836863608e-10 3.338121238e-10 3.104986934e-10 2.254112072e-10 4.227031567e-10 2.592455716e-10 5.258476869e-10 3.363343542e-10 3.337409695e-10 2.724546256e-10 1.359766763e-10 2.243295253e-10 2.23275407e-10 4.060237548e-10 2.325814507e-10 2.22227563e-10 2.980364588e-10 4.340795134e-10 2.728284259e-10 2.699906341e-10 3.950681054e-10 4.134805208e-10 3.157497398e-10 3.202759306e-10 3.598558333e-10 3.53871505e-10 3.528085049e-10 3.393267174e-10 3.950259287e-10 2.523293591e-10 4.136205983e-10 4.13944424e-10 4.03837673e-10 3.773797088e-10 3.112197815e-10 3.159418765e-10 2.474277041e-10 2.080038675e-10 2.324022384e-10 2.308139209e-10 1.592768416e-10 2.181007754e-10 2.608878416e-10 4.135848199e-10 5.686829576e-10 7.294265371e-10 8.313225159e-10 4.711274941e-10 5.444187347e-10 4.938232095e-10 3.874280641e-10 6.112255405e-10 8.073317177e-10 4.272028921e-10 5.142091281e-10 3.670210761e-10 6.037184456e-10 6.97550521e-10 5.728198618e-10 5.99060557e-10 3.645757846e-10 3.868459042e-10 5.336295331e-10 4.459576273e-10 4.446519178e-10 3.723887184e-10 4.710142257e-10 3.146842487e-10 3.781989299e-10 4.184202602e-10 4.007908721e-10 4.413675557e-10 3.591738399e-10 2.701623674e-10 1.091199717e-10 2.752790426e-10 1.661447164e-10 1.582109653e-10 1.46574998e-10 9.070794372e-11 2.583299939e-10 1.38397016e-10 9.188696375e-11 1.304895251e-10 2.198584008e-10 1.081991199e-10 1.329623781e-10 2.09275982e-10 0 2.084606035e-10 1.608515963e-10 1.013119454e-10 8.896053155e-11 2.141931581e-10 3.042420894e-10 9.313208447e-11 1.053587393e-10 3.354982144e-10 2.372267772e-10 2.247521078e-10 2.864858955e-10 2.48638001e-10 3.24135753e-10 1.831282275e-10 3.677770461e-10 2.372244353e-10 4.085180948e-10 3.30734253e-10 4.137304726e-10 4.329332834e-10 3.714546374e-10 3.059173611e-10 4.291963406e-10 4.68901564e-10 4.731470902e-10 5.318712198e-10 6.840818776e-10 6.637418941e-10 4.429223232e-10 5.765376774e-10 7.369043321e-10 4.526158035e-10 4.762130248e-10 6.39919982e-10 6.211640133e-10 3.816503634e-10 6.144699155e-10 4.443114739e-10 4.995264411e-10 7.968248138e-10 4.523027849e-10 2.023977926e-10 2.532968278e-10 2.238723613e-10 1.564190647e-10 1.940138618e-10 3.278077119e-10 2.384366923e-10 2.346826911e-10 2.499993751e-10 3.137777958e-10 3.696000466e-10 3.15133011e-10 3.546196445e-10 3.60134437e-10 3.005435087e-10 3.882071634e-10 5.611049679e-10 6.173695178e-10 2.68898634e-10 4.310917083e-10 5.049289163e-10 2.600495597e-10 3.414823253e-10 6.249145359e-10 3.60687895e-10 4.649296059e-10 2.181450634e-10 3.352287678e-10 1.866934642e-10 4.487729949e-10 2.648931017e-10 2.553579489e-10 1.766251842e-10 3.353913082e-10 2.311956959e-10 2.393204232e-10 5.012301836e-10 4.344336064e-10 3.521157462e-10 2.821338466e-10 2.621427089e-10 3.989248405e-10 4.102477406e-10 3.093393702e-10 1.647312539e-10 1.75148916e-10 2.995684025e-10 2.474102405e-10 3.215603486e-10 3.079814532e-10 2.732407443e-10 3.067783444e-10 2.766291394e-10 1.556362031e-10 3.695455997e-10 1.579280534e-10 1.505120879e-10 1.856255135e-10 1.286711895e-10 3.295604688e-10 2.757126178e-10 1.642762295e-10 3.139501296e-10 2.201423581e-10 1.650413641e-10 2.901304831e-10 3.776013202e-10 2.893751667e-10 4.599571947e-10 1.046313939e-10 3.87961571e-10 2.388049712e-10 2.123619604e-10 3.073265552e-10 2.083143757e-10 1.58799103e-10 1.495478878e-10 2.180150182e-10 2.134191225e-10 1.156159021e-10 3.121187411e-10 4.516349848e-11 1.316743175e-10 1.327699217e-10 2.076232974e-10 1.281783464e-10 2.759647422e-10 1.232460571e-10 1.006359054e-10 2.766407721e-10 2.913863958e-10 2.44932004e-10 3.651103484e-11 9.145606549e-11 3.698148097e-10 1.191323478e-10 1.22882719e-10 3.206571765e-10 1.659589742e-10 2.485249098e-10 1.5914928e-10 1.018692102e-10 3.069583171e-10 1.236075983e-10 1.036773129e-10 3.554490683e-10 +1.988920988e-10 2.037802184e-10 1.685320889e-10 1.045199809e-10 3.616539625e-10 3.047882959e-10 2.323845981e-10 2.558137045e-10 1.89501956e-10 2.295439918e-10 1.757882604e-10 1.358390503e-10 1.43465432e-10 1.721392772e-10 7.737558986e-11 2.087405868e-10 1.613109727e-10 3.818673543e-10 1.322673037e-10 1.823270829e-10 2.281435476e-10 3.872598077e-10 7.739959724e-11 9.791942957e-11 1.248279425e-10 9.956203515e-11 1.426963158e-10 1.462379536e-10 1.442908748e-10 2.4821259e-10 2.897160438e-10 3.368734127e-10 2.988633537e-10 3.598298589e-10 1.981896069e-10 2.604401586e-10 3.193061558e-10 2.186555504e-10 1.392057926e-10 2.560697824e-10 2.788533673e-10 1.174702225e-10 1.563000321e-10 2.896659097e-10 1.793928676e-10 4.658050098e-10 4.513746955e-10 2.454325936e-10 3.309685518e-10 2.576360694e-10 1.776677053e-10 2.405471509e-10 1.655222193e-10 1.293329426e-10 4.063504407e-10 2.510869044e-10 1.574213667e-10 2.884333642e-10 3.159237372e-10 3.006476031e-10 2.755734325e-10 2.712073283e-10 2.996114428e-10 2.838028552e-10 4.239520002e-10 3.250711116e-10 2.267174284e-10 3.170994472e-10 2.905549983e-10 2.747431829e-10 4.595366817e-10 3.429279613e-10 2.061681359e-10 1.780548951e-10 3.087534386e-10 1.215225478e-10 2.390051656e-10 2.469158561e-10 2.55059662e-10 2.213529768e-10 4.097533711e-10 2.555568426e-10 4.487355403e-10 5.459499283e-10 3.239283507e-10 3.303753508e-10 3.67229638e-10 4.805204142e-10 3.108122363e-10 2.19700609e-10 2.509526542e-10 4.329669338e-10 2.347635089e-10 2.703131159e-10 2.534148415e-10 3.719140365e-10 3.26080281e-10 4.371558055e-10 3.293347997e-10 3.354526088e-10 2.679181495e-10 1.941026629e-10 1.156387141e-10 1.980702004e-10 2.990830403e-10 4.278197498e-10 3.436363939e-10 5.854747357e-10 5.458017738e-10 6.079949335e-10 5.10336855e-10 6.205446636e-10 5.184092139e-10 5.430886667e-10 6.109725394e-10 6.711495154e-10 4.6564338e-10 4.738244188e-10 5.217120861e-10 6.99702038e-10 6.796963251e-10 4.735033444e-10 3.077748749e-10 5.337486275e-10 4.238913502e-10 3.423401622e-10 4.260025553e-10 4.531455706e-10 5.905465106e-10 5.09491548e-10 4.263814072e-10 3.487551149e-10 3.326566445e-10 2.887926379e-10 2.688752658e-10 2.645750548e-10 1.847733694e-10 2.138205995e-10 9.510037856e-11 2.812828096e-10 3.340619407e-10 1.426780603e-10 9.203891853e-11 1.653118072e-11 1.068692544e-10 8.213429045e-11 1.434006287e-10 1.039515675e-10 1.714506433e-10 3.027281744e-19 1.526806765e-10 9.857674118e-11 1.63938742e-10 6.591428195e-11 1.404676105e-10 2.474362803e-15 1.527824175e-10 1.30837271e-10 1.106602119e-10 1.120144473e-10 5.651956239e-19 1.20607578e-10 1.493482994e-10 1.533960288e-10 1.747385745e-10 3.083379974e-10 3.417911265e-10 3.346591479e-10 3.85005241e-10 3.213298999e-10 4.33757966e-10 3.432061916e-10 5.178538328e-10 3.953945163e-10 4.429837796e-10 6.914823379e-10 4.031869581e-10 6.39766164e-10 5.111877667e-10 4.583012326e-10 8.748189002e-10 4.434180301e-10 6.4670819e-10 4.889604591e-10 7.909892134e-10 3.646920267e-10 4.303074907e-10 5.582703585e-10 7.741408995e-10 5.310981556e-10 6.406444819e-10 4.778871681e-10 4.053247812e-10 5.271182118e-10 2.477651411e-10 2.748734285e-10 2.503825883e-10 7.270671341e-11 2.308949162e-10 2.548305962e-10 3.897493023e-10 2.903319544e-10 4.936309219e-10 2.622395321e-10 2.835724059e-10 3.25267885e-10 2.149357114e-10 2.771117026e-10 2.53153962e-10 4.473538629e-10 2.56854912e-10 3.989738909e-10 4.356904698e-10 4.777462888e-10 5.571787196e-10 4.877317977e-10 4.178967394e-10 3.442963354e-10 3.590057152e-10 3.223234979e-10 3.135994207e-10 2.87478521e-10 2.657882694e-10 3.389911546e-10 1.78120293e-10 3.627189725e-10 2.503142849e-10 2.676638328e-10 2.366591168e-10 2.757871542e-10 2.652173372e-10 4.200255911e-10 2.936365225e-10 2.372629711e-10 3.529072566e-10 3.486750243e-10 2.184978444e-10 2.317283202e-10 3.411683509e-10 2.330002104e-10 3.453943122e-10 3.575792747e-10 2.760508755e-10 1.4961544e-10 1.004779069e-10 3.15348199e-10 2.248654494e-10 2.649918931e-10 4.650072614e-10 2.041762736e-10 3.358264138e-10 4.953733452e-10 4.736554455e-10 1.945025121e-10 3.353574767e-10 2.669050654e-10 1.909159819e-10 3.577297113e-10 2.12675075e-10 3.268223652e-10 3.069857901e-10 3.874362378e-10 3.042019349e-10 2.988691873e-10 2.595150522e-10 2.817333818e-10 2.663999383e-10 1.627298931e-10 1.384678136e-10 2.075970513e-10 2.375613682e-10 2.015255931e-10 1.627941243e-10 1.644021513e-10 1.060639884e-10 1.283024925e-10 1.86975389e-10 1.236368574e-10 2.708387637e-10 7.002985694e-11 1.174587041e-10 1.779447408e-10 1.077980923e-10 9.664919843e-11 2.309243337e-10 2.760101302e-10 8.206424085e-11 3.788769684e-10 1.81629274e-10 3.967910515e-10 1.359886223e-10 1.316109644e-10 1.455561353e-10 8.312472772e-11 3.404825285e-10 1.356982549e-10 2.461827355e-10 7.768192577e-11 5.049521353e-11 1.330976363e-10 +4.19522107e-10 1.173808294e-10 1.937177752e-10 6.022110999e-11 1.113800561e-10 2.597295295e-10 2.759338909e-10 3.355278635e-10 1.040397203e-10 2.355454749e-10 1.422668906e-10 2.925102135e-10 2.928606905e-10 1.065088847e-10 1.693520884e-10 2.382012531e-10 1.23143518e-10 2.075553228e-10 2.061812928e-10 2.122732071e-10 1.495527099e-10 2.134704788e-10 1.337858884e-10 2.044153702e-10 8.33989585e-11 3.179893972e-10 2.893424942e-10 3.877054549e-10 2.046641199e-10 1.22298076e-10 1.650138545e-10 2.602118695e-10 2.137377417e-10 3.791730901e-10 2.021807071e-10 2.439200196e-10 1.35435719e-10 2.120269006e-10 2.221047644e-10 4.994285655e-10 2.329891222e-10 1.368672377e-10 2.001196461e-10 2.460892414e-10 4.229909339e-10 1.883757743e-10 1.182853284e-10 2.812312857e-10 1.42860299e-10 2.099661053e-10 4.331053848e-10 3.574544021e-10 2.426347933e-10 2.443007262e-10 1.925674229e-10 3.545676786e-10 2.553279776e-10 2.126356349e-10 3.381293532e-10 3.307106913e-10 2.342541199e-10 1.664792062e-10 2.598018196e-10 2.091475531e-10 2.247881129e-10 1.78022797e-10 2.390640555e-10 3.430931018e-10 4.653586221e-10 3.107352101e-10 5.035018743e-10 2.818461456e-10 2.608755587e-10 3.739718125e-10 2.004667978e-10 3.683530011e-10 1.90124807e-10 2.939855024e-10 3.06709479e-10 4.733755969e-10 2.399453396e-10 3.671743711e-10 4.151484733e-10 4.581221417e-10 4.912853799e-10 5.12674113e-10 3.954561626e-10 4.313444839e-10 3.131170267e-10 3.396458924e-10 1.770196917e-10 4.415500398e-10 4.418423463e-10 2.843165932e-10 3.014127556e-10 3.074840608e-10 3.917178763e-10 2.455819067e-10 3.798112663e-10 2.256986762e-10 2.012243582e-10 9.610863438e-11 2.285143255e-10 1.874167586e-10 1.837874457e-10 2.070813771e-10 3.223720129e-10 5.017189558e-10 7.282034966e-10 3.751264997e-10 5.535034681e-10 6.03888668e-10 5.863359504e-10 6.379727227e-10 4.656593523e-10 4.499241563e-10 5.413968371e-10 7.433673196e-10 4.339624201e-10 5.616107884e-10 7.443262074e-10 5.949076868e-10 3.34751554e-10 3.874458231e-10 3.2326652e-10 4.823602371e-10 3.830222746e-10 3.768325019e-10 4.778092744e-10 4.86547349e-10 4.558357568e-10 2.665493976e-10 2.739320768e-10 3.155434393e-10 1.876423005e-10 2.478324363e-10 1.11892938e-10 1.70795186e-10 2.519601381e-10 1.986229098e-21 1.270803128e-10 8.07683794e-12 1.161032309e-10 9.888755775e-11 1.54333875e-10 0 1.835043716e-10 1.016422299e-10 8.155287959e-11 1.043316793e-10 1.010324491e-10 1.204650208e-10 1.518434449e-10 1.113840638e-10 2.500188716e-10 9.421641465e-11 7.701571297e-13 1.959970263e-10 1.526145356e-10 1.137902495e-10 2.129881276e-10 2.380893486e-10 4.231756127e-11 1.565785314e-10 1.164951047e-10 2.128682331e-10 2.335456451e-10 3.277900513e-10 3.795608109e-10 4.636435809e-10 4.642667666e-10 3.813781667e-10 4.733658584e-10 3.687726269e-10 3.4114619e-10 4.842477996e-10 3.962483368e-10 3.259543837e-10 5.821504195e-10 5.349118429e-10 6.25836309e-10 8.424236313e-10 7.150551201e-10 4.525193229e-10 7.017649344e-10 5.843617963e-10 3.041188253e-10 6.230080285e-10 4.714763593e-10 3.290410368e-10 7.271395176e-10 5.925623513e-10 8.340777497e-10 7.310999639e-10 2.321940132e-10 2.343714272e-10 1.742816932e-10 1.25807035e-10 7.088968091e-11 1.677898268e-10 2.429817402e-10 2.84330812e-10 2.778739516e-10 3.334321315e-10 3.987088787e-10 1.932255204e-10 4.017276198e-10 4.032253145e-10 3.074501861e-10 3.617812511e-10 3.838335633e-10 3.078773423e-10 4.52051509e-10 4.530401546e-10 4.336269004e-10 3.718933062e-10 3.424850536e-10 4.480209828e-10 4.701078219e-10 2.071099594e-10 3.258811812e-10 2.933419121e-10 2.306520786e-10 2.450441758e-10 2.352289742e-10 2.891390882e-10 4.595510379e-10 3.754164891e-10 2.249431073e-10 2.662392124e-10 2.735717206e-10 3.530818219e-10 2.983790974e-10 2.573387299e-10 2.048128094e-10 2.162589509e-10 2.586427888e-10 1.922507679e-10 1.745100809e-10 3.161721575e-10 3.729193384e-10 2.123891387e-10 2.34180558e-10 3.149309284e-10 1.268397588e-10 2.720843995e-10 2.59882198e-10 3.0350734e-10 2.552772602e-10 2.964796893e-10 4.488381253e-10 3.832047035e-10 2.567208762e-10 1.879541399e-10 2.660079292e-10 2.104978669e-10 4.579038856e-10 3.041624553e-10 1.431300187e-10 3.969522987e-10 3.747708883e-10 1.653108613e-10 2.540755229e-10 1.433182539e-10 1.432125422e-10 2.890077009e-10 2.657988267e-10 2.282568409e-10 2.366207545e-10 1.203799675e-10 1.194036382e-10 2.753809008e-10 1.283388671e-10 4.901012081e-11 2.462580638e-10 1.636150344e-10 1.511267279e-10 3.17527614e-10 1.413841469e-10 6.874570112e-11 2.184359143e-10 1.457812064e-10 3.43172128e-10 5.103689893e-11 2.822949205e-10 1.179275927e-10 1.411783811e-10 1.81735163e-10 9.031179357e-11 1.656136714e-10 1.138948518e-10 1.130935692e-10 2.451686728e-10 3.621422166e-10 1.138744259e-10 1.596217978e-10 1.293925616e-10 1.193287337e-10 1.373378123e-10 2.811608208e-10 +8.465401311e-11 1.530935038e-10 2.443485683e-10 1.5689205e-10 1.207733792e-10 1.405577521e-10 2.483805711e-10 5.596691884e-11 1.506266265e-10 3.110896645e-10 1.121973249e-10 2.838272861e-10 3.222917399e-10 9.885344457e-11 4.091227427e-10 6.607167787e-11 3.508184416e-10 7.040042275e-11 4.136464156e-10 3.662764049e-10 1.689095593e-10 1.935310879e-10 1.939802739e-10 2.08676995e-10 1.368819692e-10 1.832936008e-10 2.519936514e-10 2.131479043e-10 3.110550447e-10 2.040858293e-10 3.189040612e-10 1.507111056e-10 3.326060901e-10 2.42603802e-10 2.566197766e-10 4.855767628e-10 3.440236526e-10 2.253999405e-10 2.595065169e-10 1.913854259e-10 1.53080714e-10 2.606991683e-10 2.516287934e-10 1.504396415e-10 2.884454822e-10 2.944399912e-10 2.508534776e-10 1.606729907e-10 2.838143243e-10 3.059781561e-10 4.722672268e-10 1.22830693e-10 3.534669238e-10 2.233645021e-10 2.375655518e-10 2.194774264e-10 2.1133137e-10 4.050733637e-10 4.321421024e-10 2.574589912e-10 2.645142714e-10 2.16690001e-10 2.029732465e-10 2.441543321e-10 2.469713936e-10 2.605146151e-10 3.808094873e-10 1.807077389e-10 3.118360503e-10 6.423867896e-10 1.516737597e-10 4.107511144e-10 1.127585916e-10 2.885335668e-10 2.394229346e-10 2.518086627e-10 2.140060734e-10 3.905655174e-10 3.029147804e-10 2.512422066e-10 4.511619972e-10 3.263876881e-10 2.990732831e-10 6.214416876e-10 5.43086668e-10 5.742415227e-10 4.766672042e-10 4.76291091e-10 3.971200276e-10 4.206378493e-10 2.65869728e-10 4.695577968e-10 3.667757057e-10 3.705828317e-10 3.184230801e-10 4.342341411e-10 3.263283926e-10 2.653193254e-10 2.224415923e-10 2.778808987e-10 1.605066237e-10 1.405989135e-10 1.630175808e-10 2.12793631e-10 2.543078027e-10 2.695204145e-10 4.283143754e-10 6.003538243e-10 8.056203211e-10 7.397756278e-10 7.52078565e-10 9.310044987e-10 4.741498255e-10 4.535975866e-10 5.965291688e-10 5.378382683e-10 6.675682114e-10 6.891423675e-10 5.651004286e-10 4.909887902e-10 4.720809529e-10 5.917924447e-10 3.56427628e-10 4.255091545e-10 3.229005494e-10 3.498491971e-10 4.823321892e-10 4.623699303e-10 4.992759695e-10 4.469590547e-10 2.471964708e-10 2.982251911e-10 2.49379748e-10 1.533770558e-10 1.311908233e-10 9.732146871e-11 1.553147085e-10 1.150131182e-10 1.015391051e-10 9.537696455e-11 8.973875865e-11 9.901278697e-11 1.904435832e-10 2.153286916e-10 1.006206287e-10 9.802017538e-11 8.501714968e-11 2.021478454e-10 2.105026809e-10 1.887152685e-10 1.405881609e-10 1.772740475e-10 2.257539884e-10 3.854529538e-10 7.396860138e-11 1.04479799e-10 1.567987339e-10 1.711816313e-10 2.121128541e-10 1.278278336e-10 8.859572541e-11 6.86551708e-11 1.81457475e-10 9.801281083e-11 1.439689101e-10 2.115839528e-10 1.56457319e-10 3.289074715e-10 4.029251564e-10 3.791840753e-10 4.812000228e-10 4.39988222e-10 4.397354143e-10 4.435219891e-10 5.137384543e-10 3.141342648e-10 3.275374405e-10 4.229628203e-10 4.462021586e-10 5.836810218e-10 8.903634466e-10 6.736736287e-10 5.147550727e-10 5.738760794e-10 6.068890056e-10 5.686215845e-10 4.543258248e-10 4.438514869e-10 8.06759986e-10 5.541481194e-10 4.539461769e-10 3.724155046e-10 6.180561113e-10 5.387688414e-10 2.464934486e-10 3.184194257e-10 2.096450951e-10 2.832674479e-10 1.671784634e-10 1.924413682e-10 1.438552953e-10 2.5964093e-10 3.196823968e-10 3.539941304e-10 3.470733347e-10 4.08248359e-10 3.166701682e-10 2.263816616e-10 4.338129761e-10 4.312557679e-10 2.76826992e-10 3.963285887e-10 2.850754325e-10 4.111282623e-10 3.658993591e-10 4.994396582e-10 3.612404145e-10 4.941690169e-10 4.551502222e-10 3.689727144e-10 3.129922731e-10 1.265643482e-10 1.112003382e-10 3.002062467e-10 4.218105144e-10 2.902460691e-10 2.987239088e-10 4.075486831e-10 4.669591334e-10 4.741133914e-10 3.695724225e-10 3.785684555e-10 2.454924927e-10 2.360165167e-10 2.583612525e-10 2.197732584e-10 2.870445534e-10 1.480987596e-10 4.923944041e-10 2.877532283e-10 1.307743721e-10 3.551761354e-10 2.521965959e-10 1.569712755e-10 3.691037258e-10 1.053380133e-10 3.248988959e-10 3.129771136e-10 2.855677343e-10 2.061347439e-10 2.782093438e-10 3.695317905e-10 2.978178802e-10 3.016751576e-10 2.317731238e-10 2.828451637e-10 1.141073405e-10 3.404465147e-10 3.325494622e-10 2.412796399e-10 5.038201465e-10 3.146582906e-10 3.12421465e-10 1.699666866e-10 3.087447829e-10 3.19923225e-10 3.197599085e-10 3.562443765e-10 1.471308071e-10 1.874523151e-10 1.746799579e-10 1.32534192e-10 2.189078495e-10 1.505199714e-10 1.124891453e-10 1.920113793e-10 7.077553605e-11 2.31037216e-10 1.332702282e-10 6.465305776e-11 1.44298135e-10 2.434508572e-10 2.180425574e-10 2.397672279e-10 6.418013373e-11 1.771848646e-10 3.417881185e-10 4.294614069e-11 2.673459405e-10 3.439436434e-10 3.568009619e-10 2.770830165e-10 1.398727311e-10 1.435651058e-10 1.083975231e-10 9.388073249e-11 2.248480104e-10 1.173919482e-10 1.874846063e-10 3.791934719e-10 +9.710102167e-11 1.611440079e-10 3.108828182e-10 2.563146353e-10 2.361506333e-10 1.865356621e-10 3.499111686e-10 3.055241499e-10 1.444416414e-10 1.384920806e-10 2.58844924e-10 1.00375107e-10 1.283199319e-10 1.259593176e-10 2.350367769e-10 9.290068342e-11 6.605118647e-11 3.774260482e-10 1.242644612e-10 1.498859881e-10 1.902399775e-10 1.365059041e-10 2.329641783e-10 1.181377192e-10 9.434073147e-11 2.261690886e-10 2.116732785e-10 1.357328356e-10 1.70416438e-10 2.397381707e-10 2.555305125e-10 2.564849214e-10 2.365186349e-10 3.135159238e-10 4.067941015e-10 3.149534098e-10 3.034071278e-10 3.826154777e-10 4.575558763e-10 2.692311603e-10 4.345346995e-10 2.347375656e-10 2.445910342e-10 1.859949657e-10 3.484366553e-10 2.167576093e-10 1.460916919e-10 3.109873253e-10 1.643687662e-10 2.074847989e-10 2.267699667e-10 2.289488239e-10 1.862810748e-10 2.964517276e-10 3.289035523e-10 2.179157378e-10 3.833222813e-10 1.482645325e-10 1.399287954e-10 2.875073937e-10 2.513492847e-10 3.986900055e-10 2.861661641e-10 3.362820453e-10 2.342665807e-10 3.539058211e-10 3.095283168e-10 2.6270237e-10 4.10852409e-10 3.199791129e-10 4.479779448e-10 2.246808694e-10 2.464460407e-10 1.771457066e-10 2.543053385e-10 3.158813535e-10 2.195642764e-10 3.074339384e-10 3.668229387e-10 4.224974849e-10 3.107809589e-10 2.565097204e-10 4.267671776e-10 5.675752434e-10 3.522889769e-10 4.026837123e-10 2.588184255e-10 4.860946771e-10 3.690541262e-10 3.509979803e-10 3.558343945e-10 2.871143127e-10 4.767256189e-10 3.97154308e-10 2.327251086e-10 2.564407214e-10 2.527901573e-10 3.638478191e-10 1.836919372e-10 3.352644624e-10 1.636268651e-10 2.457772041e-10 1.133375034e-10 2.010476725e-10 2.284508229e-10 3.441113694e-10 5.239385188e-10 8.241637888e-10 4.293008067e-10 6.938230405e-10 4.943628102e-10 3.467503516e-10 7.176118533e-10 5.439293265e-10 8.03245167e-10 5.189823267e-10 3.801321964e-10 5.908802977e-10 5.812167133e-10 4.992058665e-10 4.468570837e-10 4.612143596e-10 4.180512924e-10 3.456743593e-10 3.701785263e-10 3.315757753e-10 5.007564843e-10 4.012714931e-10 4.498677385e-10 3.697888863e-10 3.202921904e-10 4.036848082e-10 2.296898041e-10 1.068161091e-10 1.738026773e-10 1.818601603e-10 0 1.361616527e-10 0 1.83807964e-10 6.898648399e-11 2.231649084e-10 4.382478214e-10 1.519133741e-10 2.129094322e-10 1.787876442e-10 2.931866059e-10 2.563459513e-10 3.314587731e-10 2.944017936e-10 4.02039542e-10 5.076171404e-10 3.166868029e-10 3.260979777e-10 3.011169819e-10 2.18024806e-10 2.66844959e-10 2.339930177e-10 8.497462178e-11 1.551724956e-10 1.868472523e-10 8.924501117e-11 1.484357723e-10 1.314352713e-10 1.391821661e-10 1.12416544e-10 2.277113174e-10 2.816930745e-10 3.167185635e-10 3.327384858e-10 3.882251772e-10 3.095009964e-10 3.96156449e-10 3.810446985e-10 4.132271209e-10 3.690053166e-10 3.511990527e-10 4.102394195e-10 4.3587211e-10 6.380697932e-10 6.510688144e-10 7.995047274e-10 6.920796551e-10 5.220852512e-10 4.115270466e-10 5.285182013e-10 3.606675054e-10 5.623830365e-10 8.153243199e-10 5.740521339e-10 5.262711909e-10 3.966926881e-10 7.594348706e-10 5.138379552e-10 6.707316644e-10 2.301895044e-10 2.252786151e-10 2.509838598e-10 7.475304759e-11 2.009030643e-10 2.258299095e-10 4.180876364e-10 2.536559289e-10 4.763618878e-10 3.67714835e-10 4.031659156e-10 3.038363914e-10 4.313385965e-10 4.024724229e-10 5.19555192e-10 3.238177925e-10 4.664970728e-10 4.439969346e-10 3.605591303e-10 4.533227419e-10 2.344204622e-10 4.940411085e-10 3.095385261e-10 4.469466583e-10 4.657747094e-10 3.299192025e-10 4.102572351e-10 2.065371361e-10 2.208050477e-10 3.072400383e-10 2.626591022e-10 1.798054172e-10 2.48581531e-10 2.262508249e-10 2.830765532e-10 3.872733599e-10 4.59243833e-10 7.476617643e-11 2.39799689e-10 2.220170059e-10 2.882537751e-10 3.535973944e-10 1.687924709e-10 1.768939508e-10 3.264975454e-10 4.099978857e-10 3.229279857e-10 1.183367397e-10 2.192896285e-10 2.346651607e-10 1.711404856e-10 1.181510802e-10 1.1815902e-10 3.407600849e-10 2.523536568e-10 2.032280949e-10 2.192126078e-10 1.532379536e-10 2.365697772e-10 2.911857146e-10 2.825953406e-10 2.732115584e-10 1.755828916e-10 2.256413478e-10 1.647056428e-10 1.46701206e-10 3.006123756e-10 1.963438067e-10 2.437225022e-10 3.607883308e-10 2.521960624e-10 2.27597052e-10 2.487903063e-10 1.072879865e-10 1.444821977e-10 2.583943371e-10 1.880439612e-10 2.595937107e-10 2.205879855e-10 1.846898399e-10 2.146423381e-10 2.565107054e-10 1.541097761e-10 1.281318181e-10 9.147782023e-11 2.037547861e-10 2.338239186e-10 2.207468009e-10 1.978575042e-10 2.425723695e-10 9.280979233e-11 1.370674915e-10 1.648584573e-10 1.449737197e-10 1.626628988e-10 8.217906804e-11 2.635735353e-10 2.588169643e-10 1.218594971e-10 8.188638661e-11 2.436509735e-10 2.491085591e-10 2.842709925e-10 1.304106756e-10 2.021719715e-10 +3.683706153e-10 1.17576247e-10 1.495115179e-10 1.237568132e-10 2.24641657e-10 1.315547353e-10 1.582375733e-10 8.39162801e-11 9.685083232e-11 3.845009694e-10 1.359036159e-10 1.633114286e-10 1.492921125e-10 3.341781743e-10 3.02672413e-10 3.933726553e-10 1.306428229e-10 2.182122355e-10 9.480809789e-11 1.215509849e-10 1.754660449e-10 2.383844563e-10 1.107378502e-10 2.148398563e-10 1.296174785e-10 4.707836014e-10 9.618837456e-11 1.636885869e-10 1.221386458e-10 1.888799005e-10 1.518976707e-10 1.376580741e-10 1.310060938e-10 1.876674291e-10 3.374798405e-10 2.972620413e-10 3.05588442e-10 1.140067707e-10 3.016102553e-10 1.988099196e-10 2.582907861e-10 3.162211841e-10 1.269760056e-10 2.214800946e-10 1.359543823e-10 5.161684551e-10 4.14243755e-10 2.760635855e-10 2.009754067e-10 2.831378115e-10 3.220498227e-10 3.095516417e-10 2.423047578e-10 3.51626501e-10 1.489230517e-10 4.514329799e-10 1.314137199e-10 2.942613319e-10 1.643284794e-10 2.975829978e-10 2.770418562e-10 2.621612429e-10 1.635985098e-10 2.537364415e-10 2.289251752e-10 2.20792178e-10 3.212019056e-10 2.665294903e-10 4.340283214e-10 2.980932323e-10 2.453850489e-10 1.430225718e-10 3.855233267e-10 4.481359374e-10 2.281841595e-10 3.517099507e-10 2.656274173e-10 1.152035887e-10 2.285227126e-10 4.290083999e-10 2.843475214e-10 3.5220752e-10 3.904698057e-10 4.187161464e-10 3.232393215e-10 2.691328842e-10 4.882223045e-10 3.415665328e-10 4.867588699e-10 3.395583508e-10 5.261193897e-10 3.768543074e-10 2.801283559e-10 4.653787281e-10 2.970802911e-10 2.698123055e-10 3.286801108e-10 2.526060006e-10 3.354303682e-10 1.657654023e-10 1.318820659e-10 3.92166285e-10 1.569697738e-10 2.500901571e-10 2.85564283e-10 4.855676072e-10 6.082967989e-10 5.906989056e-10 5.813507745e-10 5.430854007e-10 7.854329138e-10 6.232682172e-10 5.302682469e-10 2.638763588e-10 5.445544406e-10 6.40110777e-10 6.286882489e-10 6.570376803e-10 4.852951124e-10 5.069004378e-10 5.339617493e-10 5.065932913e-10 3.859221528e-10 5.241584994e-10 3.515306761e-10 5.563098767e-10 4.625083605e-10 4.368220025e-10 5.057129223e-10 3.686472215e-10 3.044950621e-10 2.157707911e-10 1.451416652e-10 1.465154882e-10 8.932926117e-20 1.246199538e-10 9.432378678e-11 1.621603779e-15 1.008605566e-10 1.142387368e-10 1.66386191e-10 2.467095349e-10 3.096937462e-10 3.614492466e-10 3.232943838e-10 2.848050558e-10 2.359794959e-10 3.620425035e-10 3.881188104e-10 4.58111259e-10 2.606979895e-10 3.398048156e-10 3.076200065e-10 3.892192506e-10 3.295958853e-10 2.401054563e-10 3.63018771e-10 2.149554834e-10 3.230935232e-10 1.130605237e-10 7.297390037e-11 1.204624699e-10 1.456539752e-10 2.742753892e-10 1.526478138e-10 1.948263797e-10 2.008138519e-10 1.492215964e-10 2.609278559e-10 2.768962055e-10 3.188352042e-10 4.856916309e-10 3.196928775e-10 3.544606195e-10 3.693400871e-10 3.635581297e-10 4.075414293e-10 4.552053899e-10 3.941596956e-10 5.699051512e-10 6.720541566e-10 5.571600796e-10 6.443298677e-10 6.65616709e-10 4.827640227e-10 4.576863375e-10 4.091570075e-10 4.189390076e-10 6.828592622e-10 4.192194751e-10 6.435524117e-10 6.356089289e-10 5.9527599e-10 6.084597642e-10 5.210665969e-10 2.023405298e-10 2.343975226e-10 2.655993022e-10 8.794813374e-11 1.400997126e-10 2.450864579e-10 2.923132506e-10 2.784756311e-10 2.392673741e-10 3.293242551e-10 5.033385296e-10 3.617747903e-10 3.302015312e-10 3.379827099e-10 2.841633341e-10 4.207761748e-10 3.773942932e-10 4.360813616e-10 4.277267353e-10 3.335298048e-10 4.622310351e-10 5.516874986e-10 4.19609925e-10 4.291814799e-10 4.6910532e-10 4.318883389e-10 1.979711534e-10 2.829379007e-10 1.012753726e-10 2.059360316e-10 2.565982204e-10 2.006200616e-10 1.572721418e-10 2.040005371e-10 4.052538582e-10 2.965949047e-10 3.392999449e-10 3.600455383e-10 2.06331195e-10 2.234876309e-10 1.750017159e-10 3.990998071e-10 2.690045429e-10 2.705759068e-10 4.924862743e-10 3.238940537e-10 2.275411492e-10 2.837049098e-10 1.594976689e-10 1.292953382e-10 1.319691452e-10 3.383542128e-10 4.033628951e-10 4.308080351e-10 2.339885919e-10 2.547969159e-10 3.397726815e-10 2.547824941e-10 1.905107928e-10 2.114873502e-10 2.876496897e-10 3.086267273e-10 1.730949004e-10 1.988442847e-10 3.947398646e-10 3.135955655e-10 3.652590436e-10 3.992267964e-10 3.846380294e-10 2.77531687e-10 3.195987423e-10 1.887921686e-10 3.910289705e-10 1.656056775e-10 3.96641497e-10 2.199773719e-10 4.064567033e-10 8.711722655e-11 6.619397082e-11 1.255974814e-10 1.496125846e-10 1.827530989e-10 9.240091427e-11 5.026956794e-11 3.148510809e-10 1.411182011e-10 3.404042078e-10 1.233747102e-10 2.997681583e-10 1.782594177e-10 1.797883864e-10 2.614885456e-10 1.609860744e-10 4.418043895e-10 8.289909678e-11 1.777821178e-10 1.489674912e-10 1.586753889e-10 1.254947078e-10 2.682019472e-10 8.320360268e-11 1.313762681e-10 4.417247791e-11 2.979856851e-10 2.54328625e-10 +1.155106492e-10 1.296081889e-10 7.025659539e-11 3.303868867e-10 3.112171348e-10 2.406346916e-10 1.513528921e-10 1.235182156e-10 2.174117004e-10 2.200351999e-10 1.474662574e-10 1.032868135e-10 2.536054902e-10 7.367430678e-11 2.105587475e-10 1.486185026e-10 2.846490401e-10 1.04028329e-10 1.838775239e-10 2.395335702e-10 3.04713041e-10 1.330141128e-10 2.743071382e-10 1.031510109e-10 1.624636033e-10 1.089452405e-10 9.29805459e-11 1.965779549e-10 2.997262152e-10 3.532766657e-10 2.275574739e-10 1.998299078e-10 3.01696682e-10 2.731733829e-10 2.594929527e-10 3.722024898e-10 2.763424671e-10 2.384771675e-10 3.859903558e-10 2.362370582e-10 4.356230329e-10 1.205156756e-10 3.399603809e-10 9.726154907e-11 3.951613581e-10 2.384685141e-10 3.686277493e-10 2.980613256e-10 1.105881525e-10 3.072008182e-10 4.656659605e-10 2.311022837e-10 4.270164181e-10 1.678200505e-10 2.33272565e-10 3.991142534e-10 2.583923873e-10 3.630212315e-10 2.575530863e-10 1.071573625e-10 2.936699433e-10 3.092878584e-10 2.571782246e-10 2.480099974e-10 2.117051569e-10 2.809897172e-10 3.269304082e-10 1.360969253e-10 2.356409748e-10 2.655655783e-10 2.838516629e-10 2.648510457e-10 2.534386407e-10 3.439199228e-10 3.136604595e-10 1.89170907e-10 2.350185341e-10 3.804045802e-10 3.788042252e-10 4.185212003e-10 3.454062721e-10 6.075312323e-10 4.034770001e-10 5.735567966e-10 5.593070649e-10 4.394412045e-10 3.142268588e-10 3.600453977e-10 3.238476652e-10 3.604405367e-10 4.301233015e-10 4.359338713e-10 3.677856574e-10 3.712788661e-10 4.031327682e-10 3.182630508e-10 3.580247322e-10 2.803648592e-10 2.484300826e-10 2.440821653e-10 1.331573117e-10 2.345952275e-10 2.834789859e-10 2.517098484e-10 1.973572781e-10 6.882270318e-10 4.998266136e-10 6.872851093e-10 6.353726766e-10 4.148499779e-10 4.916016137e-10 5.305953897e-10 5.584208868e-10 6.906192255e-10 5.924799301e-10 4.409196535e-10 9.16555792e-10 6.90122037e-10 5.989439932e-10 5.69037732e-10 3.861439559e-10 5.916337111e-10 4.26231572e-10 5.291016027e-10 4.831465919e-10 3.799074319e-10 4.057813922e-10 3.384892878e-10 3.426038113e-10 3.212532501e-10 2.865801884e-10 1.145001879e-10 9.626811115e-11 1.101949551e-10 0 1.273837518e-10 1.408979484e-10 1.259657736e-10 2.250841915e-10 1.557482632e-10 2.464169176e-10 4.239148296e-10 5.274722094e-10 5.419137379e-10 3.601349166e-10 4.238477054e-10 4.381501237e-10 3.568985632e-10 4.123410195e-10 4.14989334e-10 5.530935509e-10 4.154529888e-10 5.516931794e-10 4.011910523e-10 3.591627173e-10 3.27334034e-10 3.287010002e-10 3.320893204e-10 3.743264648e-10 2.187195257e-10 8.812555597e-11 1.183856661e-10 1.186604876e-10 1.416145001e-10 2.555776297e-10 2.004028731e-10 1.174571002e-10 9.158908005e-11 2.103553928e-10 1.994773811e-10 4.258318641e-10 3.47328257e-10 4.319596574e-10 3.535144196e-10 4.883432862e-10 4.052573728e-10 5.002118614e-10 4.9546548e-10 4.102078449e-10 4.968236457e-10 5.442208907e-10 5.725395181e-10 1.018651458e-09 6.395913991e-10 6.489657961e-10 7.215199915e-10 3.962857234e-10 5.149268717e-10 3.783954652e-10 3.474059473e-10 6.095353283e-10 7.955241151e-10 5.094486851e-10 4.815460028e-10 5.39830732e-10 2.43435486e-10 3.004716252e-10 1.367075749e-10 2.589211789e-10 6.185999799e-11 3.066366594e-10 2.897420448e-10 1.73851238e-10 2.641657785e-10 2.759490875e-10 4.169282667e-10 3.924260379e-10 4.102882621e-10 3.941350791e-10 2.666708933e-10 4.217425084e-10 3.90388811e-10 3.094281441e-10 3.859401593e-10 5.113431211e-10 4.826675579e-10 3.489488633e-10 3.665501678e-10 3.608447709e-10 3.560851857e-10 4.001994654e-10 2.835755642e-10 1.331954073e-10 2.932883679e-10 2.810362225e-10 3.314029498e-10 2.874503431e-10 2.615326787e-10 4.307937795e-10 3.38315587e-10 2.818517986e-10 1.285827441e-10 3.052915635e-10 2.355031623e-10 2.208848178e-10 2.744354112e-10 2.609725166e-10 3.440490459e-10 4.306774863e-10 2.095932276e-10 1.285764199e-10 2.827977467e-10 2.115945874e-10 2.95664788e-10 4.437529717e-10 4.037354807e-10 2.481303215e-10 3.733819703e-10 3.145633139e-10 1.824536608e-10 4.090143563e-10 2.608946346e-10 1.573302832e-10 3.236773893e-10 2.179393655e-10 4.072374278e-10 4.022171263e-10 2.972610562e-10 2.01612492e-10 1.974458917e-10 1.770908457e-10 3.763693752e-10 1.923219423e-10 3.798953159e-10 4.182599359e-10 3.476164701e-10 2.635924609e-10 2.011675509e-10 2.514733943e-10 8.15269201e-11 6.24295713e-11 2.615070087e-10 2.283143882e-10 6.522889412e-11 2.67637372e-10 2.160754376e-10 1.849835733e-10 7.928415442e-11 1.962997853e-10 1.779845866e-10 1.407368071e-10 6.7230773e-11 1.008340551e-10 1.505566035e-10 2.259543495e-10 3.272093137e-10 1.161603055e-10 3.027162282e-10 2.992279951e-10 4.971013359e-11 6.10624205e-11 1.216617259e-10 1.053369209e-10 2.248384084e-10 1.734559176e-10 1.347725431e-10 1.349706887e-10 2.292473441e-10 1.775090671e-10 1.087069843e-10 +1.955860365e-10 2.929440316e-10 2.387166828e-10 1.856379154e-10 1.107102042e-10 2.571789744e-10 3.843106722e-10 2.59583283e-10 3.055030991e-10 1.187858792e-10 1.037859719e-10 1.980753734e-10 1.720238648e-10 6.184958448e-11 1.151840131e-10 3.705262267e-10 1.180130488e-10 4.08650979e-10 1.668345087e-10 2.499681197e-10 1.205908203e-10 3.363387288e-10 1.416867138e-10 1.848496153e-10 8.308400095e-11 2.334753586e-10 2.323032921e-10 1.985935107e-10 1.566912758e-10 4.127181724e-10 2.18157431e-10 2.544847987e-10 1.734997309e-10 1.392403154e-10 3.834448867e-10 2.070576624e-10 2.365880742e-10 3.219407643e-10 3.07079377e-10 3.632870043e-10 3.114785025e-10 4.400489561e-10 3.2123696e-10 3.7825349e-10 2.906701564e-10 3.792260331e-10 2.932538424e-10 1.990576422e-10 3.640720755e-10 2.227229717e-10 3.863995927e-10 3.833719037e-10 2.729425994e-10 3.097766978e-10 2.186251132e-10 2.102974168e-10 2.140916496e-10 3.219018631e-10 2.330961656e-10 1.850654835e-10 2.041780409e-10 2.321530591e-10 2.562080916e-10 2.440867243e-10 2.047077369e-10 2.903556287e-10 2.290839834e-10 3.484107524e-10 3.19225755e-10 2.766651167e-10 3.121006128e-10 2.0039729e-10 3.326699048e-10 1.556398787e-10 2.379638771e-10 2.226427191e-10 3.397579144e-10 3.020611294e-10 1.455829585e-10 3.133723621e-10 4.335672446e-10 2.947428303e-10 5.447151948e-10 4.354483715e-10 3.929791332e-10 3.031907774e-10 4.082005102e-10 3.8163377e-10 3.466742874e-10 3.27518869e-10 3.779430684e-10 3.510575391e-10 3.487561438e-10 3.716088217e-10 3.57378257e-10 2.905856342e-10 3.937135302e-10 2.760366439e-10 3.383698718e-10 3.126572872e-10 8.470586337e-11 2.229134334e-10 2.04114643e-10 2.653322508e-10 3.037105749e-10 4.219467748e-10 7.14147554e-10 4.694684231e-10 5.190508816e-10 7.295326886e-10 6.54800457e-10 8.487466588e-10 5.459527381e-10 5.567660831e-10 6.090562792e-10 5.039641112e-10 6.959238594e-10 5.558174802e-10 5.994317549e-10 4.962504292e-10 3.508426573e-10 3.161155381e-10 4.34198394e-10 4.466700901e-10 4.253503158e-10 3.200315435e-10 3.644054693e-10 3.874662926e-10 3.406312029e-10 3.033661745e-10 2.737458308e-10 1.38721633e-10 2.650229567e-10 1.33296679e-10 1.135571922e-10 9.609265296e-11 9.950196691e-11 2.020691179e-14 1.24153228e-10 2.617674517e-10 3.28567915e-10 2.087318545e-10 3.257325651e-10 4.031450106e-10 4.952698319e-10 4.285938054e-10 4.416653332e-10 4.419428637e-10 5.332020799e-10 5.912876248e-10 4.458750133e-10 4.812313547e-10 4.316643963e-10 5.105228403e-10 4.672118345e-10 4.106820072e-10 5.116172739e-10 5.206313036e-10 4.527136464e-10 3.747710333e-10 2.351868287e-10 2.830224643e-12 1.67433864e-10 7.528792423e-17 6.571650801e-11 2.318994676e-10 5.394366069e-18 1.03405758e-10 1.442944327e-10 2.408382824e-10 3.659480608e-10 3.482759948e-10 3.902670312e-10 4.309069534e-10 2.470561595e-10 4.45316934e-10 4.627411658e-10 4.563170346e-10 6.353221347e-10 4.500579127e-10 5.428706912e-10 5.600272052e-10 6.50932753e-10 7.502405813e-10 6.186044586e-10 5.342015914e-10 4.47320283e-10 6.548161373e-10 6.711449672e-10 4.329736355e-10 6.698449965e-10 5.130654818e-10 5.696413099e-10 6.941547055e-10 5.198344597e-10 4.631124478e-10 2.185280962e-10 1.191710608e-10 1.088929982e-10 1.271049757e-10 3.259376733e-10 1.657789599e-10 2.961513556e-10 2.857843508e-10 3.374543059e-10 2.663376857e-10 3.340436032e-10 4.588458343e-10 3.145454452e-10 3.968419125e-10 3.392384854e-10 3.574300329e-10 3.517223945e-10 4.090522386e-10 4.018344651e-10 4.142398829e-10 4.099326604e-10 6.106177848e-10 4.528057314e-10 2.81429706e-10 2.508353605e-10 4.076521085e-10 3.570033873e-10 3.71176882e-10 2.917370923e-10 4.051022474e-10 2.569319115e-10 2.129642825e-10 2.56384473e-10 2.705921408e-10 3.85787732e-10 4.422241199e-10 3.005280717e-10 3.65561296e-10 1.765220562e-10 3.331846907e-10 3.678958913e-10 5.035172621e-10 2.531079455e-10 3.641140833e-10 3.810130688e-10 2.341073735e-10 2.766428115e-10 2.381840696e-10 2.73455661e-10 3.754327643e-10 3.691306071e-10 2.617462003e-10 1.154124261e-10 2.236270854e-10 4.375988969e-10 2.787104922e-10 3.970777758e-10 3.261003428e-10 2.095729003e-10 3.375552152e-10 2.506615321e-10 4.183362071e-10 3.630255044e-10 1.605312861e-10 2.260439086e-10 3.01845604e-10 3.941268413e-10 4.963227454e-10 3.90230511e-10 1.493907811e-10 1.307951177e-10 1.481468305e-10 1.275510759e-10 7.289923111e-11 3.320379381e-10 8.765772016e-11 1.480917666e-10 1.671879841e-10 9.901510931e-11 6.895008106e-11 8.657239385e-11 1.811854072e-10 2.432434894e-10 1.220260834e-10 1.807402502e-10 1.23578298e-10 3.292184141e-10 1.446075715e-10 1.004721753e-10 6.762713483e-11 1.03805931e-10 1.301628088e-10 1.914844959e-10 1.491754246e-10 1.073837074e-10 3.604925391e-10 2.969329663e-10 1.006949575e-10 1.926634608e-10 1.968837826e-10 2.89377808e-10 2.914790656e-10 1.243547953e-10 2.645163611e-10 +9.237271876e-11 1.723917703e-10 1.167337059e-10 1.438668886e-10 1.752505286e-10 4.489480917e-10 3.634119006e-10 6.940797438e-11 2.185535114e-10 2.253637645e-10 2.255134817e-10 2.548289569e-10 1.853669693e-10 2.140717047e-10 3.749099028e-10 1.196728596e-10 2.386919195e-10 1.142006458e-10 4.418237918e-11 4.279440898e-10 2.666963239e-10 1.719607876e-10 2.9500495e-10 1.516196519e-10 1.948265225e-10 2.458450101e-10 1.225660203e-10 1.645489223e-10 1.337663997e-10 3.386121988e-10 2.519217896e-10 1.861129861e-10 1.501478141e-10 2.364541212e-10 2.706927933e-10 2.892965997e-10 1.63789949e-10 2.252411291e-10 4.446185432e-10 2.564665833e-10 3.027747243e-10 3.39384527e-10 2.465857313e-10 1.759191251e-10 3.820364258e-10 1.280801205e-10 2.311655872e-10 2.704408327e-10 2.647937135e-10 2.385084166e-10 1.839697717e-10 2.352912284e-10 2.447770687e-10 2.029890962e-10 4.058997135e-10 3.350133464e-10 2.848795041e-10 1.363456852e-10 2.834149539e-10 2.017990663e-10 2.636737457e-10 2.483710962e-10 4.689646309e-10 3.64900119e-10 3.461427938e-10 2.436365472e-10 1.972051943e-10 3.646873982e-10 2.369393215e-10 1.918816909e-10 1.566537837e-10 2.887089573e-10 2.030805751e-10 4.220470988e-10 3.037659241e-10 1.988088677e-10 2.680620544e-10 2.780155163e-10 4.797257648e-10 3.14964405e-10 4.213708218e-10 4.452883805e-10 4.9195143e-10 4.710147427e-10 3.735342535e-10 3.135067043e-10 4.312011465e-10 3.859502392e-10 3.79159736e-10 2.003693669e-10 4.113480535e-10 4.317295235e-10 2.275060538e-10 3.498422612e-10 3.577920579e-10 4.221143264e-10 2.612209502e-10 3.323822081e-10 3.460014553e-10 2.364207371e-10 2.944509565e-10 2.498300192e-10 3.225060727e-10 2.672529263e-10 5.369055648e-10 8.358920097e-10 5.332630605e-10 4.205656744e-10 4.8339063e-10 9.18351624e-10 6.587021417e-10 6.606855024e-10 5.600334321e-10 6.112589744e-10 6.015292011e-10 7.151240873e-10 7.140392914e-10 7.255874363e-10 5.676652512e-10 4.130249862e-10 5.68562807e-10 4.252420106e-10 2.963114541e-10 3.980814872e-10 4.049492364e-10 4.141207208e-10 3.475931386e-10 4.359825581e-10 3.983192406e-10 2.397972379e-10 9.156278166e-11 1.67869197e-10 1.637792117e-10 1.726914274e-10 5.250718222e-18 1.147669187e-10 1.265663337e-10 4.236314684e-10 2.237334571e-10 2.673349044e-10 4.177292421e-10 4.205606365e-10 4.741709639e-10 5.227534497e-10 5.108829405e-10 4.348574263e-10 6.180399193e-10 5.738853646e-10 3.395470126e-10 4.694749595e-10 4.211131707e-10 4.479911789e-10 5.457082252e-10 4.207661525e-10 5.013367892e-10 4.293646589e-10 4.714027152e-10 5.285792747e-10 3.924000495e-10 4.096736331e-10 3.889817323e-10 2.245571486e-10 2.528880278e-10 3.58264727e-10 8.814036969e-11 5.606739327e-12 3.644768875e-11 9.281630847e-11 1.188176338e-10 1.270356902e-10 2.26919676e-10 3.752077359e-10 3.968281408e-10 3.566556279e-10 4.587198696e-10 5.258911488e-10 4.809358699e-10 5.352628041e-10 3.835455997e-10 3.461703301e-10 4.52829639e-10 5.558854515e-10 6.283743807e-10 5.936159544e-10 6.093124174e-10 6.72071091e-10 6.072620911e-10 9.493958698e-10 7.489869706e-10 5.778586274e-10 9.28059116e-10 4.946553607e-10 5.881458746e-10 5.147913789e-10 8.382511001e-10 4.020910042e-10 1.916353565e-10 2.5375666e-10 9.593865747e-11 1.858544935e-10 4.795725846e-10 3.692252895e-10 2.545366301e-10 3.200128369e-10 1.908589453e-10 3.535161338e-10 3.910397475e-10 3.43758573e-10 3.745809621e-10 4.322730452e-10 3.793062377e-10 3.950382553e-10 3.767353948e-10 3.241444463e-10 4.796992031e-10 5.645904428e-10 3.507120607e-10 5.569898459e-10 6.19309948e-10 2.885556765e-10 4.290289295e-10 2.140057308e-10 3.086793582e-10 2.912061339e-10 3.672657556e-10 3.160758699e-10 3.452373864e-10 3.726108946e-10 2.777874524e-10 3.216196776e-10 3.774407556e-10 2.896506235e-10 1.696124174e-10 2.502586542e-10 2.975958043e-10 2.100105659e-10 2.647378467e-10 3.262073355e-10 3.953324485e-10 2.319672273e-10 2.523050037e-10 3.281472777e-10 2.061071816e-10 2.152513934e-10 2.033392052e-10 3.739986671e-10 2.51116177e-10 4.294620308e-10 3.109508359e-10 3.952559106e-10 3.201664374e-10 4.774008247e-10 2.956859222e-10 2.663560142e-10 2.095028653e-10 1.993646317e-10 1.783828789e-10 2.617354832e-10 1.424514075e-10 2.192876632e-10 3.670358479e-10 2.34904984e-10 1.909320724e-10 2.042555804e-10 2.576841095e-10 1.589445271e-10 2.209138163e-10 2.184606821e-10 1.775774633e-10 2.676534739e-10 1.056885418e-10 1.603568219e-10 1.6642473e-10 9.097449408e-11 2.919483827e-10 1.896823263e-10 7.183380623e-11 2.38720421e-10 3.159995045e-10 4.507974693e-10 3.13940691e-10 1.17276306e-10 1.643763189e-10 1.518315213e-10 4.318067153e-10 2.534587838e-10 1.718018555e-10 1.44607362e-10 1.794227893e-10 4.542665528e-11 2.818574717e-10 1.804730282e-10 1.393002088e-10 1.218258601e-10 2.3584458e-10 7.969825248e-11 1.351034904e-10 2.483967337e-10 1.87793926e-10 1.175396296e-10 +1.613301027e-10 2.004875376e-10 2.931306045e-10 1.021992168e-10 2.448594807e-10 2.534042788e-10 1.42339463e-10 1.058811708e-10 9.471968569e-11 3.550317213e-10 1.891237546e-10 1.023265719e-10 1.043831168e-10 2.188349615e-10 1.854892916e-10 1.809343071e-10 2.368647042e-10 1.650914498e-10 1.320502178e-10 2.989386071e-10 1.141253345e-10 2.598763962e-10 1.684439943e-10 1.140847694e-10 3.45860908e-10 2.329498084e-10 2.210071456e-10 1.506250066e-10 1.534012758e-10 2.156642124e-10 1.858396488e-10 2.632640054e-10 3.098975186e-10 1.387283252e-10 3.717422539e-10 3.740046779e-10 1.996336261e-10 5.012990517e-10 3.599182845e-10 1.845887384e-10 2.490440151e-10 1.223528795e-10 2.333175364e-10 3.840663805e-10 2.121633058e-10 3.100669646e-10 3.717067546e-10 3.573363649e-10 5.045708986e-10 5.11465365e-10 3.992764802e-10 2.893672775e-10 3.427425345e-10 1.939949489e-10 2.214961137e-10 2.218235324e-10 4.28081163e-10 3.359388481e-10 2.224813433e-10 2.289945051e-10 2.193834441e-10 2.575100532e-10 2.875687402e-10 3.379327943e-10 3.248431781e-10 2.942789239e-10 2.465872318e-10 2.909859039e-10 3.084259957e-10 3.91051102e-10 4.788371802e-10 1.831985558e-10 2.765412048e-10 1.921366846e-10 1.520888205e-10 3.324198985e-10 1.898293975e-10 2.395585312e-10 2.129033433e-10 2.426761645e-10 4.762292116e-10 5.369065794e-10 4.130331458e-10 4.63768066e-10 3.377784897e-10 5.298007182e-10 3.261403581e-10 3.804926789e-10 4.107875804e-10 5.164029609e-10 3.246639488e-10 4.020073296e-10 3.111809806e-10 3.29727811e-10 4.24253088e-10 2.403597086e-10 3.130275089e-10 2.764574679e-10 1.711057687e-10 3.603894036e-10 6.533466374e-11 1.780155098e-10 2.791830913e-10 2.407623354e-10 3.602935463e-10 6.298089734e-10 4.92819585e-10 4.098728335e-10 6.03421183e-10 7.382269834e-10 4.768364288e-10 5.304204421e-10 4.78279466e-10 8.348512059e-10 8.42761163e-10 6.520272096e-10 6.18493563e-10 6.702547506e-10 4.543883329e-10 4.088169651e-10 4.703875754e-10 3.923171871e-10 3.480938904e-10 3.939816515e-10 3.306068474e-10 4.716133324e-10 4.132986973e-10 2.238912201e-10 1.712779001e-10 2.330400723e-10 1.277804244e-10 1.265986786e-10 1.069602827e-10 9.350319374e-11 9.87514333e-11 1.442408234e-10 2.315474409e-10 3.043548564e-10 4.613309367e-10 4.822274413e-10 4.997965401e-10 4.245707549e-10 5.020796476e-10 5.048282885e-10 3.983313695e-10 4.624841491e-10 6.078878834e-10 5.755399629e-10 5.401327995e-10 4.471156435e-10 5.407386937e-10 4.538026248e-10 5.358026528e-10 5.122485588e-10 5.159387377e-10 4.522760184e-10 4.850675664e-10 4.579686915e-10 5.395603193e-10 3.915371698e-10 4.989423624e-10 3.495370749e-10 2.968383188e-10 3.59089444e-10 1.645023377e-10 6.593461247e-11 1.008814723e-10 1.406731986e-10 1.11372955e-10 8.751335814e-13 1.871680798e-10 1.950499079e-10 3.838360337e-10 3.472045932e-10 3.35975352e-10 4.323957685e-10 3.591026185e-10 3.695354489e-10 5.021933201e-10 4.92233518e-10 5.572058349e-10 6.096452139e-10 6.125246827e-10 6.245810836e-10 7.194715662e-10 6.374869294e-10 7.381420312e-10 5.036544799e-10 6.44772117e-10 6.713415862e-10 4.95572423e-10 3.957111796e-10 6.089632637e-10 7.382318442e-10 8.543191099e-10 6.640348882e-10 3.288254729e-10 3.055380986e-10 1.972033423e-10 1.17344762e-10 1.618593586e-10 2.379905769e-10 1.946785124e-10 3.10912787e-10 2.83438348e-10 2.582271375e-10 3.122635411e-10 3.051191083e-10 4.273547748e-10 4.359792134e-10 2.785469668e-10 3.584717689e-10 3.331395915e-10 3.26366069e-10 5.018161531e-10 4.268209528e-10 3.169923793e-10 5.1847186e-10 3.514212561e-10 2.766359779e-10 4.945280085e-10 2.207794288e-10 2.498833003e-10 2.675705692e-10 3.484536379e-10 2.596050357e-10 2.200668655e-10 3.710584901e-10 4.342482535e-10 2.227642395e-10 2.664307674e-10 3.191960664e-10 2.666639261e-10 2.450223868e-10 4.303689818e-10 2.840520176e-10 2.038821868e-10 2.902747285e-10 3.129797228e-10 3.900261904e-10 2.60715496e-10 1.793342809e-10 2.215762915e-10 2.092759775e-10 1.901307487e-10 1.915087729e-10 2.500110929e-10 1.225922776e-10 5.007052662e-10 3.715770821e-10 3.864992001e-10 3.406133658e-10 2.015034392e-10 2.596293289e-10 3.28397695e-10 2.160490175e-10 3.704899403e-10 2.676299161e-10 1.416879435e-10 1.742230119e-10 2.822851216e-10 2.683786271e-10 3.289008234e-10 2.838092566e-10 2.855299039e-10 1.944589014e-10 1.357399271e-10 1.497025282e-10 1.837326249e-10 1.501627703e-10 1.674257194e-10 1.325474744e-10 2.943568443e-10 1.537019855e-10 2.574274885e-10 2.280157277e-10 1.144069325e-10 2.310866525e-10 2.0497356e-10 1.508402346e-10 2.718124785e-10 2.233670205e-10 2.296642391e-10 3.050005873e-10 1.966390433e-10 1.526344149e-10 1.61433036e-10 1.262245885e-10 1.634511244e-10 1.863786927e-10 2.512159168e-10 1.38468792e-10 2.690428754e-10 1.164933819e-10 1.840169448e-10 2.752278713e-10 2.572342538e-10 1.289992305e-10 1.298716161e-10 2.100854291e-10 +6.308279043e-11 1.320886418e-10 9.486993151e-11 3.316944275e-10 1.644674111e-10 1.805435994e-10 2.854913131e-10 2.807185419e-10 1.716856376e-10 7.800103984e-11 2.60796172e-10 1.168070511e-10 2.967215641e-10 1.547930322e-10 1.021116767e-10 2.869974907e-10 1.634227762e-10 2.644001906e-10 1.870684562e-10 1.852540736e-10 2.699489671e-10 2.408330876e-10 1.454429686e-10 1.490051284e-10 1.680893631e-10 1.397232167e-10 1.790073428e-10 3.059238341e-10 2.890655427e-10 2.18338329e-10 2.557744686e-10 2.543460801e-10 1.973611904e-10 2.629781694e-10 1.256460488e-10 3.809669626e-10 2.132809236e-10 2.618268799e-10 2.190692306e-10 2.055915272e-10 3.12756282e-10 4.473045123e-10 4.11860197e-10 3.757013731e-10 2.127382212e-10 3.740521064e-10 2.975132479e-10 3.441180749e-10 2.747121658e-10 2.609884075e-10 2.319792495e-10 3.886772548e-10 3.655156212e-10 4.184992961e-10 3.309891679e-10 1.811086635e-10 2.688879192e-10 3.389455714e-10 1.56027656e-10 2.121478917e-10 2.667576575e-10 2.828738806e-10 3.068004818e-10 3.674516576e-10 3.921084439e-10 2.300843015e-10 9.62006874e-11 1.813296831e-10 3.446646053e-10 3.361598405e-10 3.115263146e-10 3.736682054e-10 4.724847011e-10 2.414957105e-10 2.425889977e-10 2.132003684e-10 2.481243278e-10 2.913985094e-10 3.718742859e-10 3.905831319e-10 3.789723102e-10 4.207321784e-10 3.76458935e-10 4.570901673e-10 4.678402775e-10 4.168754342e-10 4.430475586e-10 4.841783344e-10 5.217635651e-10 3.700249195e-10 3.895214577e-10 4.313048847e-10 3.770701693e-10 5.390076927e-10 3.795734899e-10 3.930734704e-10 5.548386009e-10 2.29716651e-10 2.163437519e-10 2.753983548e-10 2.315026337e-10 2.215219964e-10 1.451901456e-10 5.840007907e-10 6.890299299e-10 6.269305972e-10 7.235160205e-10 4.734574268e-10 5.917193612e-10 9.574255298e-10 4.712301106e-10 6.171166611e-10 4.823084376e-10 4.614538898e-10 5.489433865e-10 6.183348346e-10 6.095672473e-10 5.119184227e-10 4.801985333e-10 4.037695435e-10 5.643923963e-10 5.50255417e-10 5.595335428e-10 4.097677092e-10 5.084145138e-10 3.703234201e-10 3.730927228e-10 1.249247627e-10 2.144079074e-10 1.449922632e-10 1.199623723e-10 1.418262869e-10 1.617887577e-12 7.564538909e-11 1.300496446e-10 3.190848611e-10 4.311704004e-10 4.414891436e-10 5.73324111e-10 4.198890533e-10 5.21436536e-10 5.043054835e-10 4.56063262e-10 5.12078797e-10 5.162169368e-10 4.805085367e-10 4.630966323e-10 4.187426703e-10 3.959422538e-10 5.240620704e-10 4.088865643e-10 4.816398618e-10 3.758288738e-10 4.322452862e-10 4.607156717e-10 4.173471963e-10 5.24024963e-10 4.775993583e-10 4.943464656e-10 4.715078836e-10 5.408662176e-10 3.97388865e-10 4.235402456e-10 3.253931459e-10 2.753355146e-10 1.562510186e-10 1.045979511e-10 1.419104216e-10 1.457458968e-10 1.466769778e-10 2.081957035e-10 1.612571262e-10 2.785795268e-10 3.087451115e-10 3.428185454e-10 4.03494432e-10 4.953768451e-10 4.919616193e-10 3.5129202e-10 3.597195729e-10 3.928068786e-10 3.984109717e-10 6.484968393e-10 7.157154805e-10 5.168905149e-10 7.185879137e-10 5.443242007e-10 7.324372525e-10 5.477515685e-10 8.599004007e-10 7.422043251e-10 5.977372945e-10 7.332044001e-10 6.634729207e-10 4.663057745e-10 5.200467327e-10 3.975413753e-10 3.186722109e-10 2.225067333e-10 1.983957994e-10 1.169091319e-10 2.154111473e-10 2.900243418e-10 4.665414075e-10 3.881567338e-10 3.561005083e-10 3.765682473e-10 2.733614894e-10 5.1474787e-10 3.551099982e-10 3.083566599e-10 4.388652592e-10 4.914059529e-10 6.355467663e-10 3.216379833e-10 3.196049765e-10 3.663768969e-10 4.668344828e-10 3.393638211e-10 2.616861148e-10 3.853464631e-10 2.237443113e-10 2.445434202e-10 2.30368906e-10 2.647336381e-10 3.42215281e-10 2.349819999e-10 1.737704092e-10 4.027430532e-10 2.975865316e-10 2.635944694e-10 4.42936682e-10 4.048898486e-10 2.848036336e-10 4.487600433e-10 4.312600964e-10 2.342585564e-10 2.15614979e-10 2.215256731e-10 1.918682206e-10 1.71837136e-10 2.282160126e-10 3.449197859e-10 2.368389167e-10 3.450578682e-10 2.06467762e-10 3.603553235e-10 4.007051692e-10 2.059475376e-10 3.65812806e-10 3.549812123e-10 1.575207735e-10 4.231167463e-10 2.606586068e-10 2.438156875e-10 1.610106788e-10 3.364227043e-10 4.464648312e-10 3.765109874e-10 3.11366344e-10 3.047614615e-10 3.016057235e-10 4.842371162e-10 3.024433549e-10 2.00275259e-10 1.290361438e-10 2.243317158e-10 1.881083009e-10 2.20155465e-10 1.759993588e-10 1.181224918e-10 1.685623905e-10 2.561788944e-10 9.428667811e-11 1.476119241e-10 1.548059688e-10 2.628970617e-10 2.683562564e-10 1.305511636e-10 1.878019646e-10 2.919493519e-10 1.554845969e-10 1.286775407e-10 2.513965478e-10 1.573510609e-10 1.414783451e-10 2.521329832e-10 2.195402817e-10 2.157132227e-10 1.038065026e-10 2.615344812e-10 3.025732529e-10 2.607564608e-10 7.549103404e-11 1.572901076e-10 1.599320939e-10 3.562591593e-10 2.771818616e-10 1.660544342e-10 1.659274624e-10 +3.362824568e-10 2.614140782e-10 3.030582178e-10 6.103456098e-11 1.307803574e-10 1.851519967e-10 2.861345006e-10 2.372708916e-10 2.150756182e-10 4.339343112e-10 3.574841628e-10 1.580507425e-10 1.817329376e-10 1.108405524e-10 6.520234599e-11 3.231015768e-10 1.885865092e-10 1.977636707e-10 1.461288113e-10 1.594039839e-10 1.822281989e-10 3.012282815e-10 2.591966129e-10 2.121427558e-10 1.181493896e-10 1.23856432e-10 1.128701037e-10 2.298715116e-10 1.304250439e-10 1.369738858e-10 2.061281799e-10 2.412848961e-10 2.487257353e-10 2.658995312e-10 1.885532182e-10 1.225761379e-10 3.22624182e-10 2.763388795e-10 1.506925328e-10 1.929054133e-10 3.328936805e-10 1.661975226e-10 2.556470454e-10 2.062224152e-10 3.745994298e-10 2.700978885e-10 2.454409738e-10 2.311051661e-10 4.158722016e-10 2.88897008e-10 3.170612223e-10 4.551313658e-10 2.492661985e-10 2.854262346e-10 1.99642592e-10 2.444116709e-10 3.113585865e-10 2.782972666e-10 2.511520898e-10 1.294302906e-10 3.758523234e-10 4.108970737e-10 3.277227881e-10 3.275936692e-10 2.993317111e-10 2.64917435e-10 2.146883332e-10 3.470672434e-10 3.134474346e-10 4.209117204e-10 4.157462443e-10 2.671267746e-10 4.465124179e-10 2.727303577e-10 3.278889815e-10 2.779007283e-10 2.645984317e-10 3.097073152e-10 2.887833769e-10 4.051823398e-10 2.095552427e-10 5.223590794e-10 4.913362984e-10 5.304700132e-10 3.431511737e-10 3.682201121e-10 3.354605263e-10 3.906445728e-10 3.067635164e-10 2.657591758e-10 3.547202979e-10 3.790747025e-10 4.632631717e-10 3.952810951e-10 5.018299812e-10 3.487868752e-10 2.823118952e-10 3.770663037e-10 2.084425677e-10 1.037863477e-10 2.123836276e-10 2.797769781e-10 2.700168735e-10 7.246162569e-10 4.567933256e-10 5.660066375e-10 7.546046259e-10 9.572053304e-10 6.475867676e-10 6.311651413e-10 6.381776261e-10 5.310521689e-10 7.021688926e-10 7.181090415e-10 6.356779415e-10 8.78504158e-10 5.83442829e-10 4.910392261e-10 4.268187182e-10 5.078885377e-10 5.563324528e-10 3.406909023e-10 4.800095563e-10 4.229818882e-10 4.414819944e-10 2.83548332e-10 1.743311395e-10 2.780716534e-10 3.666082576e-11 8.131646327e-11 3.915528618e-10 1.145973941e-20 1.438576338e-10 1.866458948e-10 2.646250773e-10 3.154173814e-10 5.099785039e-10 3.504068734e-10 4.817788801e-10 6.174847528e-10 5.221990701e-10 5.23260248e-10 3.876712661e-10 4.198056421e-10 5.154653389e-10 4.150580281e-10 5.233385138e-10 6.303497858e-10 6.192344836e-10 6.141151287e-10 6.265268482e-10 6.23170907e-10 6.029068999e-10 5.38076223e-10 4.53146739e-10 5.18510418e-10 4.703294171e-10 5.489037276e-10 5.143968716e-10 4.863796739e-10 5.320083743e-10 4.451849198e-10 5.965571678e-10 5.236998793e-10 4.420241121e-10 5.426203742e-10 2.059819061e-10 9.627383658e-11 1.76472853e-10 1.406759738e-10 2.426319221e-10 5.303810582e-12 2.220511856e-10 2.550341966e-10 3.956688935e-10 3.942040859e-10 5.574636203e-10 4.137554652e-10 5.141172272e-10 4.727111411e-10 5.361828248e-10 4.855945075e-10 4.651894617e-10 6.951392048e-10 6.019365915e-10 5.961199115e-10 6.64745272e-10 9.099126531e-10 4.167406477e-10 6.615043548e-10 7.185939236e-10 7.704697374e-10 4.226780954e-10 6.369622132e-10 6.503937544e-10 4.44023178e-10 4.269591095e-10 2.107180948e-10 2.198733116e-10 7.465466364e-11 1.685261076e-10 2.478785728e-10 3.724432319e-10 2.6476811e-10 4.190593314e-10 4.528364233e-10 2.655999463e-10 4.858966983e-10 3.381681192e-10 4.020709749e-10 4.375610692e-10 5.202739649e-10 5.02007172e-10 3.103079907e-10 4.315050739e-10 4.372173041e-10 3.554078848e-10 5.025477734e-10 4.490751784e-10 3.592128548e-10 3.586594185e-10 3.75444765e-10 2.344290321e-10 2.08368817e-10 3.194538075e-10 3.831680948e-10 3.715062522e-10 2.256043662e-10 3.023898502e-10 2.312633241e-10 1.445635106e-10 3.183064776e-10 2.196153488e-10 3.108613305e-10 1.561610545e-10 2.319048721e-10 1.750099041e-10 2.818665202e-10 1.881351171e-10 1.778090131e-10 2.782696532e-10 1.848603721e-10 2.601879245e-10 1.314485547e-10 2.899345345e-10 1.886309979e-10 2.977345763e-10 4.066538012e-10 2.222191825e-10 3.642147361e-10 1.454772128e-10 3.100602568e-10 2.481689296e-10 4.001264829e-10 3.677744212e-10 4.037548052e-10 4.804881843e-10 1.442671211e-10 3.220479551e-10 2.124406164e-10 2.449618823e-10 1.492466965e-10 1.934792913e-10 1.879743286e-10 9.539652804e-11 2.81144948e-10 3.253092205e-10 3.379729106e-10 1.645036756e-10 8.212692995e-11 2.632368985e-10 2.93436242e-10 2.058533361e-10 2.901162721e-10 3.059585411e-10 4.772893522e-11 2.081327568e-10 9.991764243e-11 1.918894856e-10 1.376057316e-10 2.064621879e-10 4.066581842e-10 2.046258293e-11 5.89630231e-11 1.641414241e-10 1.375312967e-10 1.618437647e-10 1.997230164e-10 1.437861094e-10 1.006608896e-10 1.20683933e-10 9.702395274e-11 1.486489946e-10 3.378725557e-10 1.409435022e-10 2.948243013e-10 2.414480821e-10 1.47042716e-10 1.661109032e-10 1.482092695e-10 +1.380862805e-10 5.087012551e-10 2.45543301e-10 1.351144382e-10 3.079686359e-10 8.503095841e-11 3.022486103e-10 1.330355218e-10 1.833840941e-10 3.195337499e-10 1.817315693e-10 2.40888289e-10 1.347307489e-10 7.685906984e-11 3.476128362e-10 9.568541439e-11 3.30289598e-10 1.392989856e-10 1.737484076e-10 2.240038753e-10 1.20474134e-10 5.126968705e-11 2.273596179e-10 7.726391075e-11 1.231270207e-10 1.495660074e-10 3.047559814e-10 1.227971063e-10 1.297010869e-10 1.218221159e-10 4.768761669e-10 1.300792912e-10 1.408682834e-10 3.409949828e-10 2.327013891e-10 2.978037511e-10 2.178991907e-10 1.275519404e-10 1.902466485e-10 1.864855473e-10 2.286015701e-10 2.994250451e-10 3.95985621e-10 4.065890519e-10 2.505065032e-10 3.034575974e-10 3.65749233e-10 2.587116124e-10 2.944221204e-10 1.586026607e-10 3.473879004e-10 1.318902695e-10 1.894553874e-10 2.32489445e-10 3.630830083e-10 9.623305533e-11 1.266875394e-10 2.309315803e-10 1.90623605e-10 1.230174921e-10 3.612105846e-10 3.630044939e-10 2.390031525e-10 2.363983369e-10 2.391098286e-10 2.55705252e-10 3.398815094e-10 4.591612842e-10 3.020636219e-10 2.88946984e-10 3.076315847e-10 1.732238164e-10 3.184477207e-10 2.946962497e-10 2.344726281e-10 1.667156798e-10 4.800265363e-10 3.366695135e-10 3.417093023e-10 3.006613999e-10 3.29033725e-10 3.974168473e-10 4.58966793e-10 3.096563841e-10 2.834115425e-10 4.369907595e-10 4.354288834e-10 4.158907672e-10 2.329101184e-10 3.217546296e-10 2.676834971e-10 4.005750982e-10 3.889838563e-10 4.144868886e-10 3.92683426e-10 3.099138967e-10 2.407192783e-10 1.894519125e-10 3.016968776e-10 1.305954419e-10 1.124870471e-10 2.646199903e-10 3.477288426e-10 4.251112038e-10 6.41003551e-10 8.836277866e-10 5.000667825e-10 5.508816097e-10 5.480881879e-10 4.704260125e-10 3.798781231e-10 6.164383476e-10 6.875754391e-10 6.602871371e-10 3.774250517e-10 8.176767649e-10 4.590211821e-10 4.752029743e-10 5.580907208e-10 3.162643209e-10 4.383753128e-10 3.528962999e-10 3.813986706e-10 4.386985406e-10 4.783768577e-10 4.163169674e-10 2.720313976e-10 1.209971308e-10 3.644255371e-43 7.205150233e-11 1.147995298e-10 1.569266697e-10 3.203862219e-10 3.338240292e-10 3.554802832e-10 4.572376715e-10 5.008255426e-10 4.915256942e-10 4.285861664e-10 5.672314247e-10 5.768944275e-10 5.498493443e-10 4.916561275e-10 6.175355397e-10 7.427470561e-10 6.441731903e-10 8.285564889e-10 5.852911015e-10 8.382253301e-10 6.517430621e-10 6.653389362e-10 8.217762197e-10 9.594885427e-10 5.631570631e-10 8.412233508e-10 6.088528882e-10 4.986650768e-10 5.405909492e-10 4.86887177e-10 6.187374037e-10 5.064388312e-10 4.490287375e-10 5.082030385e-10 4.210839699e-10 4.103550608e-10 3.686906243e-10 1.678000414e-10 1.773881573e-10 1.047225628e-10 5.527524521e-11 1.037276186e-10 1.402575064e-10 1.754274161e-10 1.744539651e-10 3.407035812e-10 2.31948621e-10 3.234830806e-10 5.287402797e-10 2.85690661e-10 3.945869578e-10 3.166966952e-10 3.835792428e-10 5.367037157e-10 6.866247276e-10 6.422374861e-10 6.24469325e-10 5.109440007e-10 6.179078239e-10 4.890898809e-10 7.937913115e-10 5.956576819e-10 7.157854579e-10 6.759370162e-10 4.356344043e-10 6.237634558e-10 5.252895998e-10 9.347345955e-11 2.245190701e-10 2.124951711e-10 2.17663459e-10 6.976061859e-11 2.351490328e-10 2.934600302e-10 3.87968087e-10 1.635261566e-10 3.537686749e-10 4.682601454e-10 2.382067828e-10 3.775097473e-10 3.504616052e-10 4.612307884e-10 4.40591598e-10 5.535006321e-10 4.031001692e-10 4.330589078e-10 5.204952574e-10 3.417892443e-10 4.516910932e-10 3.582841563e-10 2.448050014e-10 3.770127084e-10 1.978024521e-10 3.312946143e-10 1.790440799e-10 2.83708969e-10 2.791089045e-10 3.672803552e-10 3.430665164e-10 3.966040373e-10 2.165097357e-10 2.48159291e-10 2.686106652e-10 4.560050636e-10 2.537553187e-10 2.457032167e-10 3.879579363e-10 3.763796912e-10 3.166480487e-10 3.573967989e-10 1.62164158e-10 3.115342594e-10 1.486584648e-10 1.809564315e-10 3.440197004e-10 1.115535784e-10 1.777884053e-10 3.063691384e-10 2.746855985e-10 2.007822065e-10 2.633968389e-10 1.658741287e-10 1.607964175e-10 2.822366589e-10 2.322124057e-10 1.757709538e-10 2.466288848e-10 2.151305332e-10 1.846697891e-10 3.921423983e-10 3.257340992e-10 2.085354265e-10 1.690171263e-10 2.210309199e-10 2.147118956e-10 2.649624084e-10 1.41532809e-10 1.95772689e-10 1.490145562e-10 1.09466958e-10 2.132233437e-10 2.372403284e-10 1.577199289e-10 2.147869875e-10 1.708794234e-10 6.861392514e-11 1.19440104e-10 2.475627254e-10 2.854346886e-10 1.043048389e-10 1.959686107e-10 4.116499497e-10 9.940962769e-11 1.120817321e-10 2.679758305e-10 1.03669295e-10 1.439908322e-10 1.786055574e-10 1.224157879e-10 1.270883943e-10 1.237604017e-10 3.558027589e-10 6.565942193e-11 9.521752088e-11 3.038355147e-10 3.626267954e-11 1.25808772e-10 9.473572375e-11 2.219989795e-10 1.185302588e-10 2.282303267e-10 +1.981999321e-10 1.110818767e-10 2.814223233e-10 3.055781266e-10 1.675325752e-10 8.751807523e-11 2.04257162e-10 2.642975563e-10 1.119499972e-10 1.891194591e-10 1.422681008e-10 2.096694017e-10 2.065790218e-10 1.260629651e-10 2.487388546e-10 1.54076922e-10 9.684042016e-11 2.700192401e-10 3.197494992e-10 3.981610787e-10 1.035757808e-10 1.384706122e-10 1.909211483e-10 1.334762638e-10 1.644262908e-10 1.350887168e-10 3.563011907e-10 2.75479082e-10 2.400386906e-10 1.111290569e-10 9.914562569e-11 2.048513251e-10 1.459720237e-10 3.047780927e-10 1.719183901e-10 1.80296605e-10 2.039471822e-10 2.687591913e-10 2.540514957e-10 2.838966424e-10 1.876048844e-10 3.436114492e-10 3.71224718e-10 4.134173963e-10 1.880188791e-10 2.112345187e-10 3.949608933e-10 3.01591713e-10 2.861562447e-10 2.855998157e-10 2.511470377e-10 2.625119462e-10 2.225215628e-10 1.969966335e-10 1.875170426e-10 2.815776369e-10 2.587312693e-10 2.744682145e-10 3.218782599e-10 3.242664707e-10 1.711286991e-10 3.751691721e-10 2.834330754e-10 3.301434805e-10 1.965074868e-10 3.480715461e-10 2.079146587e-10 2.57355206e-10 3.26455107e-10 2.513488598e-10 3.203525552e-10 3.111623426e-10 2.500580005e-10 3.910769232e-10 3.994195055e-10 2.7189664e-10 3.650547123e-10 3.525051676e-10 2.680762187e-10 2.874358162e-10 4.879091747e-10 4.600538961e-10 4.185881318e-10 3.637331279e-10 3.279848497e-10 4.012005641e-10 4.158834345e-10 4.802557014e-10 3.98460586e-10 2.93155718e-10 3.49386212e-10 3.138742146e-10 3.002666542e-10 2.945742252e-10 4.250491957e-10 2.873364637e-10 4.12725384e-10 1.385137997e-10 2.578737597e-10 1.223381438e-10 1.924511528e-10 2.487187911e-10 2.576507818e-10 4.616427837e-10 4.989110783e-10 3.976269291e-10 6.887262123e-10 5.138370238e-10 5.844028643e-10 5.599792429e-10 3.775984645e-10 5.209757441e-10 4.175519087e-10 4.694574238e-10 5.841796609e-10 5.939079426e-10 5.310928923e-10 5.498746574e-10 5.622260959e-10 3.193433875e-10 6.218280534e-10 4.947682797e-10 3.197002112e-10 4.248312783e-10 3.922493398e-10 3.80657549e-10 2.295738344e-10 9.814702789e-11 8.081416975e-11 1.189138773e-10 1.301401627e-10 1.735847413e-10 1.677658439e-10 3.378518592e-10 3.961744097e-10 5.0084626e-10 4.457549639e-10 5.825360022e-10 5.738786942e-10 4.089393529e-10 4.177615303e-10 5.778455353e-10 6.694959423e-10 9.06853681e-10 7.374882081e-10 8.261633379e-10 8.156930785e-10 9.789019181e-10 7.640438942e-10 9.124140137e-10 7.219532677e-10 8.960948639e-10 6.884421015e-10 8.167709927e-10 6.439411005e-10 6.570748922e-10 6.527816244e-10 5.34339784e-10 6.029794138e-10 5.388522161e-10 4.940105054e-10 5.476506985e-10 5.228873858e-10 4.382355111e-10 4.763327904e-10 4.200387456e-10 3.253638928e-10 1.442412303e-10 1.807129652e-10 7.762034948e-11 2.231562119e-10 8.317560157e-18 2.136835791e-10 1.028525138e-10 2.5678976e-10 4.10657524e-10 3.752107471e-10 5.020646674e-10 3.566896669e-10 4.080666973e-10 6.598126883e-10 4.521643024e-10 4.446803075e-10 5.818402997e-10 7.070412863e-10 7.152511316e-10 5.205001294e-10 4.064083778e-10 5.859701203e-10 5.31234257e-10 4.926668264e-10 6.40560081e-10 6.334063705e-10 5.187967348e-10 5.245879921e-10 7.716305935e-10 3.261696606e-10 2.372208689e-10 2.332966894e-10 2.387731073e-10 2.054378423e-10 1.598396276e-10 2.627049264e-10 2.854768859e-10 3.064266532e-10 3.449573093e-10 4.585511577e-10 3.472504816e-10 4.722157531e-10 3.016993673e-10 4.39374177e-10 4.991743078e-10 4.18162642e-10 4.184954876e-10 4.015073948e-10 5.279345535e-10 4.554928972e-10 4.669896476e-10 3.879613017e-10 3.930297205e-10 4.247416562e-10 5.135171895e-10 4.40955815e-10 3.124248587e-10 2.055501704e-10 3.018877685e-10 1.608176751e-10 3.115570931e-10 5.40780322e-10 4.739099371e-10 2.731848191e-10 4.028952354e-10 3.062060161e-10 2.219059045e-10 3.4917809e-10 2.804707692e-10 2.092784358e-10 3.029966323e-10 3.34890023e-10 3.255679407e-10 2.114595558e-10 1.163141026e-10 2.24388939e-10 2.839717778e-10 1.973130293e-10 3.036551322e-10 3.609554117e-10 3.22741743e-10 1.289556265e-10 2.915263602e-10 2.298355355e-10 1.553850474e-10 2.291926352e-10 3.887038756e-10 4.73025284e-10 2.90134714e-10 1.391013479e-10 1.373201662e-10 3.183259776e-10 3.21175243e-10 3.144324068e-10 3.684671988e-10 1.993606568e-10 1.491442942e-10 2.58735041e-10 1.779479086e-10 2.855215819e-10 2.315655968e-10 1.630922082e-10 1.981225186e-10 1.50771405e-10 2.047814073e-10 1.266371293e-10 6.86187737e-11 1.734253155e-10 1.75094e-10 1.422569106e-10 2.844038786e-10 1.561753583e-10 1.925816912e-10 2.753931734e-10 2.890541343e-10 1.652066089e-10 1.840021939e-10 1.546288734e-10 1.533748082e-10 1.904642371e-11 2.963506602e-10 2.10320694e-10 2.393236012e-10 8.713663146e-11 1.043651491e-10 1.37542862e-10 2.871465712e-10 2.175900923e-10 2.046738828e-10 1.438131603e-10 1.850835862e-10 4.43879299e-10 2.322922681e-10 +1.915250188e-10 1.006139092e-10 4.185676733e-10 2.431925931e-10 1.874636676e-10 2.295932274e-10 1.570967413e-10 4.488979019e-11 4.1811304e-10 1.135699093e-10 1.103318571e-10 1.185907074e-10 2.519362918e-10 3.554856398e-10 1.616488079e-10 9.96308262e-11 5.761291306e-11 2.2977564e-10 1.264140457e-10 2.028966067e-10 2.106038783e-10 1.218110094e-10 3.421340596e-10 3.545150814e-10 1.163623439e-10 2.353955056e-10 3.947656074e-10 1.957133504e-10 4.979330202e-11 2.111466367e-10 9.135577557e-11 3.886015443e-10 3.595818104e-10 1.738519126e-10 1.67714723e-10 1.833682034e-10 3.483735121e-10 3.762106525e-10 4.801395555e-10 4.769758973e-10 1.606909861e-10 1.789597253e-10 3.074904555e-10 3.328789504e-10 3.255238594e-10 1.806712007e-10 4.198812036e-10 2.239644527e-10 2.729387836e-10 3.441141516e-10 3.374470653e-10 3.049000725e-10 3.085457794e-10 3.82594577e-10 2.040324233e-10 2.682303999e-10 1.649718083e-10 2.21687864e-10 2.443908067e-10 2.589403075e-10 1.818262705e-10 3.47992007e-10 1.613402038e-10 3.387170692e-10 3.295067631e-10 2.804388584e-10 2.55116865e-10 3.135659588e-10 3.70743012e-10 3.275341239e-10 3.125305866e-10 3.500549201e-10 4.668554352e-10 1.286801998e-10 2.440803884e-10 2.027277674e-10 3.285938528e-10 2.637052917e-10 3.255585071e-10 3.500478614e-10 4.109708354e-10 4.874972732e-10 6.365846939e-10 4.586341918e-10 3.114882096e-10 5.545378559e-10 3.700515634e-10 4.733298174e-10 5.611156518e-10 4.757290497e-10 3.885609375e-10 4.294945037e-10 2.488672101e-10 3.629688607e-10 2.786611299e-10 3.608632154e-10 2.681856949e-10 2.340311346e-10 2.261623205e-10 1.377765315e-10 3.529055895e-10 2.392404202e-10 2.397736898e-10 6.874987285e-10 4.735480888e-10 7.581990895e-10 5.854260845e-10 6.675832943e-10 7.073343169e-10 5.520009341e-10 4.110757172e-10 5.509620808e-10 8.063023921e-10 6.972602335e-10 7.104463782e-10 7.782991323e-10 5.801993542e-10 5.036399704e-10 5.016147565e-10 4.43679662e-10 6.136298185e-10 4.252046753e-10 4.278986359e-10 5.43442403e-10 3.854272245e-10 2.25098735e-10 1.114149533e-10 1.123450427e-10 1.623434404e-10 1.707583833e-10 8.363750929e-11 1.482776123e-10 5.591192734e-10 4.979244622e-10 4.584838588e-10 4.494514895e-10 4.797449602e-10 5.116613413e-10 4.911702014e-10 5.406416426e-10 6.722733773e-10 5.910704216e-10 5.641164061e-10 7.650263762e-10 7.703384394e-10 9.05958473e-10 9.238844019e-10 7.792856951e-10 8.345470477e-10 8.455753683e-10 9.162149336e-10 9.541612374e-10 9.990010347e-10 1.011614973e-09 9.324274982e-10 8.666088767e-10 7.702210167e-10 9.266073212e-10 6.299769803e-10 5.207610961e-10 5.602859954e-10 5.335204388e-10 4.838043789e-10 6.434169184e-10 5.046962664e-10 6.189881858e-10 4.546985336e-10 3.674902458e-10 7.634617625e-11 2.245342756e-10 5.335523644e-13 1.219556423e-10 1.646029957e-13 1.157297539e-10 2.589822495e-10 4.235258321e-10 4.72992922e-10 5.348655475e-10 5.03668735e-10 3.348517903e-10 3.885889874e-10 5.827868167e-10 5.135913188e-10 5.263408675e-10 7.099317865e-10 5.815196859e-10 7.603336785e-10 6.192825754e-10 7.291914429e-10 6.590013102e-10 3.957624227e-10 3.21274165e-10 6.165300698e-10 6.653937728e-10 5.961791529e-10 5.1442992e-10 7.697804574e-10 2.647420764e-10 2.396570435e-10 1.488919135e-10 1.666406376e-10 2.995420501e-10 3.836793542e-10 3.546196751e-10 4.077446794e-10 4.03273224e-10 3.411243801e-10 3.377264829e-10 3.943196328e-10 2.684771809e-10 3.311371446e-10 3.701338456e-10 4.05254498e-10 3.89520065e-10 3.929129422e-10 4.587105512e-10 5.006359908e-10 5.670049801e-10 3.310486301e-10 3.53687932e-10 1.7787196e-10 3.900585748e-10 3.436933519e-10 2.956734026e-10 3.715528299e-10 1.87328186e-10 3.528170793e-10 2.380117172e-10 2.522705823e-10 3.113708472e-10 3.716660415e-10 2.939155015e-10 2.365573767e-10 3.192425944e-10 1.726331836e-10 2.966692719e-10 2.780678716e-10 2.557325049e-10 3.29562471e-10 3.158187168e-10 2.550546844e-10 2.646229364e-10 2.014012306e-10 3.036013086e-10 4.231768498e-10 2.015238387e-10 1.775965002e-10 2.600512306e-10 3.693003854e-10 3.422465182e-10 4.04487426e-10 1.814972455e-10 2.194383659e-10 3.72936118e-10 3.223342747e-10 2.256874e-10 1.879180835e-10 4.114600399e-10 4.772098354e-10 3.858777198e-10 2.359703179e-10 3.902808079e-10 3.874862437e-10 2.638558353e-10 2.317379864e-10 1.215872013e-10 3.539864604e-10 2.165754526e-10 2.807521704e-10 1.181225216e-10 1.841656893e-10 3.422422094e-10 8.944549189e-11 1.65703055e-10 2.87823048e-10 8.782097239e-11 1.728209359e-10 2.345668026e-10 3.31951158e-10 2.925227238e-10 3.780046262e-10 9.761069318e-11 2.04076884e-10 2.215845144e-10 2.737657116e-10 1.08489599e-10 1.298797008e-10 1.300887447e-10 8.667199393e-11 2.781119674e-10 1.086803756e-10 1.488217318e-10 2.798611266e-10 9.566957708e-11 1.602089574e-10 2.356258458e-10 2.966173648e-10 2.743211934e-10 4.495915284e-11 9.170042202e-11 +1.300932289e-10 7.588064157e-11 1.318567908e-10 6.915481549e-11 5.008707421e-10 1.18971208e-10 1.893824353e-10 1.999628364e-10 1.507037433e-10 1.923207338e-10 1.37225698e-10 1.438137076e-10 4.492172649e-10 1.030784485e-10 2.173502603e-10 1.254987709e-10 2.664766567e-10 1.346564853e-10 1.36304797e-10 3.780934025e-10 1.757308361e-10 2.086813426e-10 1.808170918e-10 8.461866686e-11 3.19335766e-10 1.015748195e-10 2.638454386e-10 1.144289492e-10 1.630094711e-10 2.142516525e-10 8.272719509e-11 1.225977853e-10 1.145286249e-10 1.812532723e-10 2.433627427e-10 3.451402628e-10 2.806008426e-10 2.255466295e-10 3.558263018e-10 1.625923399e-10 3.751010777e-10 3.594530994e-10 2.553633903e-10 4.908457451e-10 1.430047952e-10 2.183115832e-10 3.628522198e-10 2.290934953e-10 2.137081433e-10 2.474008699e-10 3.585382731e-10 2.590956923e-10 3.935562993e-10 4.055920479e-10 4.031316279e-10 2.75898196e-10 1.471081896e-10 3.104592304e-10 2.107643011e-10 3.565999113e-10 1.738564602e-10 4.75785606e-10 3.286387429e-10 3.400108681e-10 2.524903217e-10 3.050152478e-10 1.686384775e-10 4.15640697e-10 3.902167131e-10 4.47355024e-10 3.001284743e-10 1.965726797e-10 3.220164857e-10 3.617896039e-10 2.830009266e-10 3.641678268e-10 3.646599009e-10 3.250171284e-10 4.026251781e-10 2.247825332e-10 3.957572392e-10 4.241614684e-10 3.980356061e-10 3.758266812e-10 5.646357894e-10 3.204079401e-10 3.352693636e-10 6.184777309e-10 4.800508686e-10 4.853075294e-10 3.088334129e-10 4.132015166e-10 4.413454331e-10 3.890559577e-10 3.600154942e-10 3.415840792e-10 2.285148216e-10 1.91562901e-10 2.237032803e-10 2.220346985e-10 3.077980413e-10 3.267101167e-10 3.869367687e-10 4.63898208e-10 6.103112635e-10 4.813640957e-10 6.884840106e-10 5.00262084e-10 5.168861709e-10 5.591395318e-10 6.119543258e-10 4.172638817e-10 8.473716918e-10 6.157729216e-10 6.62786944e-10 5.722282313e-10 3.730700493e-10 3.569501799e-10 4.350464329e-10 5.65109358e-10 4.934930317e-10 5.37551469e-10 4.019320653e-10 2.870187918e-10 3.085272652e-10 1.725144517e-10 8.416045154e-11 1.480687323e-10 8.525529898e-11 1.846066515e-10 2.006621773e-10 3.25910202e-10 3.229266108e-10 5.113741446e-10 4.830145715e-10 4.600049597e-10 5.093243831e-10 4.650758171e-10 4.124423967e-10 5.987881065e-10 6.618869736e-10 6.506175235e-10 1.028607465e-09 9.044747272e-10 8.300023471e-10 9.245381103e-10 9.212769238e-10 9.939291448e-10 1.21538905e-09 8.589108478e-10 8.491542577e-10 9.101565566e-10 9.647602384e-10 8.050714244e-10 9.469516101e-10 1.087552437e-09 7.238920995e-10 7.048598146e-10 9.113136598e-10 6.012670934e-10 6.756952764e-10 5.236306206e-10 5.956688483e-10 4.976241127e-10 5.40555249e-10 5.650947248e-10 3.599720385e-10 5.312456811e-10 2.893162814e-10 1.357141786e-10 1.427697641e-10 3.379568001e-13 1.022383785e-10 1.266537111e-10 1.332022577e-10 2.583553223e-10 3.653993195e-10 5.313545265e-10 4.318877029e-10 3.385891256e-10 4.844157286e-10 5.544969356e-10 4.204769944e-10 4.745966515e-10 5.001178765e-10 7.742468856e-10 6.720633344e-10 4.222850517e-10 3.600615759e-10 5.1262246e-10 7.062802322e-10 9.14655552e-10 9.260697904e-10 3.945894938e-10 7.125829486e-10 7.788527271e-10 4.622982605e-10 1.518795082e-10 3.322701498e-10 1.701496096e-10 1.922077835e-10 1.929856849e-10 3.025233042e-10 3.429954492e-10 2.66657527e-10 4.334777231e-10 3.925598654e-10 3.330666885e-10 2.799691045e-10 2.374915249e-10 4.213674252e-10 3.421796246e-10 3.668634077e-10 3.825248807e-10 4.323569252e-10 5.240753624e-10 3.599687692e-10 4.57156024e-10 4.476197678e-10 3.968826422e-10 2.947309626e-10 2.878123147e-10 2.156748694e-10 3.521996728e-10 2.845383348e-10 2.017367281e-10 2.301007577e-10 3.961189262e-10 2.697150278e-10 3.156167062e-10 3.399854995e-10 4.898729161e-10 2.767374847e-10 1.302758352e-10 3.111968867e-10 1.947980563e-10 1.684136733e-10 2.985320766e-10 2.917831924e-10 3.166670569e-10 2.597297293e-10 2.107958884e-10 1.976698706e-10 2.781774996e-10 2.641759228e-10 2.048289779e-10 3.820879956e-10 1.998582286e-10 2.565277088e-10 2.444865344e-10 2.857749163e-10 3.312486887e-10 4.183494456e-10 2.110102154e-10 1.056511104e-10 2.99570512e-10 1.989424872e-10 2.454277007e-10 3.854977817e-10 2.89236239e-10 1.56832427e-10 3.052296414e-10 3.035249587e-10 2.870408455e-10 1.395829645e-10 1.780158632e-10 1.609031558e-10 2.662514779e-10 1.82072438e-10 1.14462779e-10 2.310222203e-10 3.812012937e-10 2.682883359e-10 5.318029496e-10 2.353466784e-10 2.916925105e-10 1.116382966e-10 6.746059888e-11 1.340421611e-10 3.390004512e-10 1.27697483e-10 3.022139234e-10 4.60237297e-10 2.885933329e-10 3.395828785e-10 1.838308009e-10 1.060837015e-10 1.506673303e-10 2.529404634e-10 1.490280553e-10 2.361204881e-10 1.747956465e-10 2.094760479e-10 2.956378524e-10 9.884234554e-11 4.300242046e-10 9.441698378e-11 1.344860959e-10 2.371006634e-10 1.48593505e-10 +1.428676918e-10 2.063281224e-10 8.965451505e-11 2.311909803e-10 2.135616854e-10 1.638521249e-10 7.613929647e-11 9.78041824e-11 8.752993672e-11 1.247028152e-10 2.777574913e-10 2.494946768e-10 1.481453658e-10 1.564935953e-10 1.7139234e-10 1.200337571e-10 3.29090238e-10 2.394705217e-10 2.18192004e-10 1.010238017e-10 2.424394136e-10 2.272255307e-10 3.972103563e-10 1.473257731e-10 1.41236725e-10 1.433465111e-10 1.669570293e-10 1.629466175e-10 1.911616912e-10 1.356197871e-10 1.491988261e-10 1.216573433e-10 4.751838281e-10 1.458553673e-10 1.675454612e-10 3.18871304e-10 2.274124233e-10 2.611987855e-10 2.9509135e-10 3.77465673e-10 4.648726979e-10 3.505428058e-10 2.374643123e-10 3.224620045e-10 2.567232876e-10 3.992930903e-10 2.789686601e-10 2.680570251e-10 1.977167768e-10 2.277111062e-10 2.564749414e-10 5.402049531e-10 3.03239834e-10 3.890675485e-10 2.06626246e-10 2.71880979e-10 1.674935033e-10 4.316370365e-10 2.232509514e-10 4.174601323e-10 1.857847979e-10 2.313342281e-10 2.23417763e-10 4.167982222e-10 2.641341814e-10 2.639671455e-10 1.93380992e-10 3.539361671e-10 4.130184174e-10 3.847991612e-10 3.779606113e-10 2.624952451e-10 1.415315307e-10 4.8756885e-10 3.443166004e-10 3.548137914e-10 1.802371323e-10 2.111883201e-10 3.837982668e-10 4.386615732e-10 4.566256127e-10 3.928903049e-10 5.574682276e-10 5.057557444e-10 4.402988582e-10 3.629970036e-10 3.975069176e-10 4.167503747e-10 2.950344886e-10 2.912345358e-10 2.604678642e-10 5.157126503e-10 2.208071888e-10 3.555815703e-10 3.644443403e-10 3.06402334e-10 3.732352556e-10 3.86801735e-10 2.703006231e-10 3.17436222e-10 2.359426544e-10 2.177535814e-10 3.867382238e-10 4.629789003e-10 4.275937642e-10 7.013633092e-10 8.912444823e-10 6.73899948e-10 7.634266831e-10 5.141039092e-10 4.83522218e-10 7.877342506e-10 5.412021305e-10 5.712154312e-10 7.160971351e-10 4.759571998e-10 3.103722051e-10 4.939882969e-10 4.278208844e-10 2.947081164e-10 4.060006098e-10 3.673071964e-10 5.205918271e-10 3.890406943e-10 2.645338718e-10 6.807768707e-11 1.068691373e-10 9.852513736e-11 7.692254313e-11 1.378201724e-10 2.005191635e-10 3.048939279e-10 3.023641767e-10 4.880946593e-10 5.630804878e-10 5.716317442e-10 5.265277568e-10 5.240173537e-10 6.364682673e-10 8.594998831e-10 6.914263418e-10 8.100018161e-10 1.050661158e-09 8.625806084e-10 9.193060872e-10 8.570703624e-10 1.068314009e-09 9.740313536e-10 9.617860627e-10 9.309001634e-10 8.975705023e-10 1.055886152e-09 7.823939933e-10 7.835621276e-10 8.983967551e-10 9.992267595e-10 9.04853236e-10 9.629056637e-10 8.297394076e-10 7.674213789e-10 7.993532912e-10 7.303119681e-10 5.516628978e-10 4.929879137e-10 5.170076674e-10 5.160102925e-10 4.528417218e-10 5.172750878e-10 5.768767859e-10 3.289271207e-10 1.070761833e-10 1.741708732e-10 7.243268033e-11 1.223034295e-10 1.587770646e-10 3.197670938e-10 2.922774442e-10 4.263207827e-10 4.849277605e-10 4.817582855e-10 5.764423705e-10 3.730620482e-10 5.415449534e-10 4.085194638e-10 7.051351065e-10 7.814303667e-10 5.744894785e-10 5.016817319e-10 6.449808496e-10 5.307504205e-10 6.588677994e-10 8.199558184e-10 5.878519231e-10 7.637923532e-10 6.318862038e-10 4.542479949e-10 5.89084451e-10 2.875484928e-10 2.535048641e-10 2.439605378e-10 1.772442199e-10 1.400811474e-10 3.200931221e-10 2.756614845e-10 3.637749579e-10 3.920076133e-10 3.532875574e-10 4.325393375e-10 4.213245109e-10 4.631166586e-10 4.375120771e-10 3.09538208e-10 4.350066062e-10 6.034141167e-10 3.119763872e-10 3.394531764e-10 4.686530179e-10 4.903923438e-10 3.432500294e-10 5.686968958e-10 4.765791019e-10 2.523412018e-10 2.984802306e-10 3.217487556e-10 3.206464533e-10 1.748050106e-10 3.776808389e-10 2.661544839e-10 4.255128124e-10 3.144718045e-10 3.083684733e-10 3.366870689e-10 3.329965016e-10 2.310976615e-10 3.153471532e-10 3.084959996e-10 3.180997718e-10 2.365079832e-10 2.744211914e-10 1.832075051e-10 2.949301302e-10 2.546379671e-10 3.881256194e-10 3.044903931e-10 1.535230389e-10 3.051080762e-10 3.389941235e-10 2.150687093e-10 2.567430495e-10 2.984359231e-10 1.69987602e-10 2.021604301e-10 3.340727088e-10 3.304417268e-10 3.974596393e-10 1.636572058e-10 2.518105381e-10 2.695699522e-10 3.577893891e-10 2.544044166e-10 3.91296639e-10 3.413459171e-10 2.858415378e-10 3.134622042e-10 9.653883096e-11 1.45047835e-10 1.477026714e-10 1.34794353e-10 1.445800901e-10 2.95805939e-10 3.171474129e-11 2.547642217e-10 3.148645899e-10 1.102051661e-10 1.657391115e-10 1.593669961e-10 1.872643003e-10 2.251041048e-10 1.200724913e-10 1.346088519e-10 3.450907742e-10 2.054193563e-10 1.594387532e-10 1.703950696e-10 3.752132226e-10 1.541397989e-10 2.091434632e-10 1.195630818e-10 2.457309673e-10 2.121762592e-10 1.650058002e-10 1.146942482e-10 2.265367676e-10 4.007181688e-10 2.282470545e-10 3.61373966e-10 2.447950186e-10 2.675196387e-10 2.920385612e-10 3.996642632e-10 +1.372745325e-10 1.499451428e-10 3.228857049e-10 3.902648085e-10 4.936902609e-10 2.118823731e-10 1.037482814e-10 2.587261168e-10 1.825402395e-10 1.669054587e-10 4.124036923e-10 1.666960333e-10 1.033636365e-10 3.429992373e-10 1.353534966e-10 2.425607757e-10 1.28739306e-10 2.422173702e-10 1.279670463e-10 2.238410996e-10 2.511840408e-10 1.065730987e-10 2.830866317e-10 9.388297266e-11 2.731440378e-10 1.501645486e-10 1.951698352e-10 2.143120775e-10 1.340437813e-10 3.135660961e-10 1.709954953e-10 1.563223503e-10 2.037298471e-10 1.862859251e-10 2.342299569e-10 2.904840478e-10 2.611133113e-10 1.240996088e-10 3.820944901e-10 2.99387571e-10 2.093719125e-10 3.283636777e-10 3.298017863e-10 3.255674163e-10 2.361641573e-10 4.067059789e-10 4.058912375e-10 2.996312042e-10 4.519911965e-10 2.487615801e-10 2.919801016e-10 3.36703486e-10 3.691607666e-10 3.340527974e-10 3.272605235e-10 3.519470839e-10 3.497612435e-10 3.067904789e-10 3.919533395e-10 3.874838561e-10 2.79818221e-10 2.943891728e-10 4.158587635e-10 2.67335268e-10 3.041090069e-10 2.284465154e-10 3.082864018e-10 3.499995815e-10 1.398426748e-10 4.612998132e-10 3.541600506e-10 3.310769122e-10 2.500687679e-10 2.741470367e-10 2.325457667e-10 3.872523035e-10 2.939218695e-10 2.657943486e-10 3.776414523e-10 4.925438456e-10 5.089008897e-10 4.400030561e-10 5.223123769e-10 4.363847275e-10 3.517855795e-10 5.305765911e-10 3.903297755e-10 4.7067476e-10 3.850579082e-10 4.453714505e-10 4.244286363e-10 3.337563217e-10 4.646123934e-10 3.928017732e-10 3.524865097e-10 3.793550094e-10 3.562378026e-10 2.636923979e-10 1.851200933e-10 5.43043376e-11 2.24804184e-10 2.125477515e-10 4.459929716e-10 6.298581865e-10 5.913982391e-10 5.238892345e-10 5.816563137e-10 5.759191115e-10 5.644843316e-10 7.738905892e-10 6.312036025e-10 6.776247105e-10 6.043366851e-10 7.212722248e-10 6.496013822e-10 6.821871843e-10 5.091359432e-10 3.449900092e-10 4.615684539e-10 4.662989885e-10 3.698852254e-10 4.734853774e-10 3.399309185e-10 3.326918222e-10 1.637479625e-10 1.363549037e-10 9.574317151e-11 1.438220145e-10 1.276784609e-10 1.436876762e-10 2.733396987e-10 3.87737853e-10 3.456689663e-10 4.230983833e-10 6.243824807e-10 4.165920694e-10 5.39243679e-10 7.156906673e-10 6.753527488e-10 9.064818873e-10 9.234219128e-10 1.05422736e-09 8.793566266e-10 8.033511826e-10 9.387033016e-10 1.090270934e-09 9.387091678e-10 1.010498382e-09 1.030040346e-09 7.466429531e-10 1.020953814e-09 1.088773735e-09 1.099839366e-09 9.851777734e-10 7.906260012e-10 7.721325622e-10 8.306175548e-10 1.049533412e-09 9.258454228e-10 1.019932057e-09 9.730954515e-10 7.849953764e-10 5.71614306e-10 4.639328141e-10 5.658597643e-10 5.097060771e-10 6.210050281e-10 4.745693785e-10 4.242302753e-10 3.299244999e-10 1.124254435e-10 9.991758581e-11 1.217969705e-10 1.607920435e-10 1.166336627e-10 1.584304737e-10 2.258075554e-10 2.745447576e-10 3.865614128e-10 5.162976878e-10 3.548949275e-10 4.268054214e-10 5.784395275e-10 5.479022768e-10 5.035276476e-10 6.93219015e-10 5.621219269e-10 7.330609142e-10 5.773280432e-10 4.433642255e-10 6.4534226e-10 4.639467999e-10 6.064399018e-10 7.700223452e-10 7.358109042e-10 6.829434492e-10 6.827589616e-10 3.32618568e-10 2.742888309e-10 1.948414112e-10 2.356612151e-10 1.904278636e-10 2.597609306e-10 3.538164867e-10 3.797952986e-10 4.301908375e-10 3.77743446e-10 2.930817857e-10 4.86849034e-10 3.233608577e-10 3.696825969e-10 2.841656117e-10 5.152773779e-10 4.143819501e-10 5.402799223e-10 4.608989725e-10 4.861274855e-10 5.478476539e-10 4.972967668e-10 4.536692325e-10 2.893283653e-10 3.673555797e-10 4.304179879e-10 4.39295642e-10 1.992092752e-10 4.715261111e-10 2.414355118e-10 3.210872141e-10 1.035321281e-10 3.078964648e-10 5.427916934e-10 3.04840857e-10 1.907917283e-10 2.362322858e-10 3.969439878e-10 3.899747368e-10 3.934641337e-10 3.482694062e-10 2.789778334e-10 2.744363946e-10 2.535134628e-10 1.490112692e-10 1.372598367e-10 2.204322438e-10 3.428980173e-10 1.879874553e-10 2.410699673e-10 3.763122084e-10 3.806544195e-10 1.498759287e-10 3.201258607e-10 2.804654198e-10 3.24334996e-10 3.323875776e-10 4.17013642e-10 2.661747938e-10 3.886843074e-10 4.897946651e-10 3.676242842e-10 3.422860338e-10 4.515781703e-10 1.894283173e-10 3.12704161e-10 4.02290139e-10 2.2274121e-10 3.145181455e-10 1.175663955e-10 2.255760927e-10 8.903839842e-11 1.326615317e-10 2.460164883e-10 2.404800258e-10 2.746603508e-10 3.185981133e-10 2.252066988e-10 1.832552625e-10 1.235312821e-10 9.293477736e-11 1.572493235e-10 1.22773514e-10 1.634512268e-10 2.230576743e-10 1.554410798e-10 2.536023333e-10 1.717075632e-10 2.400340131e-10 1.4004511e-10 4.56729966e-11 1.110909332e-10 2.055767815e-10 1.099532879e-10 1.145136327e-10 1.089728091e-10 1.54430336e-10 2.181860992e-10 2.745317248e-10 6.293556487e-11 2.660860095e-10 1.533525473e-10 2.057087378e-10 +2.213999667e-10 1.035120888e-10 1.035250816e-10 1.715543837e-10 3.889053969e-10 1.063381789e-10 1.27185194e-10 2.851414273e-10 1.102905398e-10 3.36539091e-10 3.641050249e-10 5.964672978e-11 2.235542774e-10 3.727956695e-10 1.451040854e-10 4.767268027e-10 3.724538016e-10 1.264931379e-10 2.687534684e-10 1.964407612e-10 1.691535258e-10 1.209264246e-10 1.384817061e-10 2.505657496e-10 7.280793113e-11 2.475908426e-10 1.837440087e-10 1.091041561e-10 1.694625846e-10 3.031024279e-10 2.382656164e-10 2.125425227e-10 2.522671224e-10 1.693724747e-10 2.320716647e-10 2.019414483e-10 3.573139854e-10 2.188370465e-10 2.922291893e-10 3.989924326e-10 2.036912245e-10 4.822177607e-10 2.729824629e-10 1.986541597e-10 3.621439343e-10 2.69275455e-10 2.009539173e-10 3.599162293e-10 2.375421838e-10 2.244622099e-10 3.455631102e-10 2.253894996e-10 2.760773175e-10 3.021107033e-10 2.956862544e-10 2.286307176e-10 2.998525925e-10 2.383452987e-10 3.225664266e-10 2.638946563e-10 2.682934139e-10 3.077132069e-10 4.762187597e-10 1.985564118e-10 3.053637936e-10 3.502016847e-10 4.272306719e-10 2.180583719e-10 2.043495609e-10 3.717084913e-10 3.428734867e-10 3.846337603e-10 4.084265531e-10 1.590340723e-10 3.454721093e-10 2.956747991e-10 2.874397336e-10 2.208337542e-10 2.364347248e-10 3.597846275e-10 4.200239734e-10 4.173112249e-10 4.874958087e-10 5.027006485e-10 4.303148182e-10 4.148727832e-10 3.423426586e-10 4.345444076e-10 4.643006536e-10 4.690545025e-10 4.052970497e-10 5.295893685e-10 3.714832099e-10 3.377156411e-10 3.737611401e-10 4.083091538e-10 2.476636013e-10 2.688489809e-10 1.996704152e-10 1.712054132e-10 2.568066937e-10 2.075446645e-10 7.139605728e-10 7.12939283e-10 6.161809719e-10 5.922568667e-10 7.376763346e-10 5.014313709e-10 5.437489697e-10 5.239839853e-10 6.609406622e-10 5.892429112e-10 7.726631053e-10 5.968979777e-10 7.363177003e-10 5.769505744e-10 3.532855972e-10 4.817974943e-10 4.787430638e-10 4.862273783e-10 4.055236467e-10 3.418868647e-10 3.52944604e-10 2.850503396e-10 1.967714243e-10 1.021037235e-10 1.069150923e-10 3.856891512e-13 2.42434088e-10 1.591246303e-10 5.637568358e-10 4.135321238e-10 5.210627182e-10 5.789971796e-10 5.526755875e-10 4.200244531e-10 8.370277948e-10 6.451814397e-10 9.502950411e-10 1.193081192e-09 9.010404362e-10 1.038243923e-09 8.079089712e-10 9.867629983e-10 1.038924478e-09 8.417212089e-10 8.693882879e-10 8.779249188e-10 7.616511144e-10 8.497338165e-10 7.259980978e-10 7.577675502e-10 8.510403042e-10 7.856734362e-10 8.627978226e-10 8.820713766e-10 1.050879714e-09 9.023125146e-10 8.823214242e-10 1.052285852e-09 1.030407491e-09 8.17345349e-10 7.400764686e-10 5.561022748e-10 6.220854542e-10 5.870655134e-10 5.887843526e-10 5.545523318e-10 4.670900923e-10 3.715188385e-10 2.750364884e-10 2.657868116e-10 1.426269274e-10 1.123212999e-10 1.58021139e-10 1.751950706e-10 2.70457678e-10 4.082990299e-10 5.382188046e-10 4.163494247e-10 4.705698327e-10 4.856538263e-10 5.490104069e-10 4.077418932e-10 5.09071727e-10 8.558867976e-10 5.751159905e-10 5.669189978e-10 5.78252046e-10 7.842686435e-10 6.004425245e-10 6.556236227e-10 9.826974934e-10 5.799283393e-10 5.993956715e-10 7.518896111e-10 8.219270911e-10 5.825429546e-10 1.639983549e-10 2.296176734e-10 2.328516626e-10 1.041200196e-10 2.611520048e-10 2.023705914e-10 4.556982998e-10 4.064119876e-10 4.064495949e-10 3.896213669e-10 3.576794547e-10 4.335045055e-10 4.689739009e-10 3.556142822e-10 3.887346382e-10 3.959364725e-10 3.798702933e-10 4.95615023e-10 4.156973294e-10 6.545527671e-10 4.350844055e-10 3.618995769e-10 4.276103931e-10 4.409789351e-10 2.124049019e-10 2.994606641e-10 2.18373447e-10 3.046293241e-10 2.506776814e-10 3.089177958e-10 4.210135502e-10 2.959716964e-10 3.865224139e-10 3.163794197e-10 3.460737856e-10 3.375109169e-10 2.220219334e-10 2.373499566e-10 2.961748987e-10 4.038381986e-10 1.505995557e-10 3.604247445e-10 3.255261926e-10 4.621191352e-10 4.815792305e-10 1.548797274e-10 3.084831118e-10 3.7240202e-10 4.788393707e-10 2.059427931e-10 3.686545264e-10 3.820801446e-10 2.328380898e-10 3.557444742e-10 1.861390684e-10 2.018961865e-10 1.339556434e-10 2.363766277e-10 3.719884682e-10 2.956481735e-10 1.656017351e-10 2.033250962e-10 2.408740335e-10 2.831674986e-10 3.303528527e-10 1.56001801e-10 3.100575814e-10 1.714707273e-10 2.722337387e-10 2.029465506e-10 6.030005971e-11 2.766768694e-10 2.955764916e-10 1.581395714e-10 2.198659687e-10 3.220301873e-10 1.561164403e-10 1.539438838e-10 8.025291205e-11 1.34734996e-10 2.008418284e-10 3.632038685e-10 2.290161104e-10 1.344460404e-10 1.176978876e-10 2.79556309e-10 1.649266299e-10 2.889700632e-10 2.47831333e-10 3.025684027e-10 1.684245926e-10 3.067818565e-10 1.59176772e-10 1.406204611e-10 1.593916095e-10 1.941278515e-10 2.489375136e-10 1.065267359e-10 3.612615922e-10 8.377738047e-11 3.134654217e-10 9.807464875e-11 +1.340453143e-10 3.02737128e-10 1.524005154e-10 1.875495158e-10 2.225897473e-10 2.106714865e-10 9.80915645e-11 1.568144038e-10 2.39157816e-10 8.458790898e-11 4.174555709e-10 2.428992071e-10 6.095894965e-11 2.753671808e-10 9.605072295e-11 3.430732083e-10 9.806899655e-11 5.310615514e-11 1.438798092e-10 4.117429311e-10 2.273170704e-10 2.992107326e-10 1.309910089e-10 3.649286563e-10 2.348615821e-10 1.194107502e-10 2.739075183e-10 6.631541702e-11 1.296464733e-10 3.383686968e-10 1.541115667e-10 2.866963998e-10 1.332507406e-10 3.282266701e-10 3.447548097e-10 2.139536954e-10 1.776331273e-10 4.459916444e-10 3.179687055e-10 3.370883095e-10 3.546250493e-10 4.0895562e-10 3.527703848e-10 2.482989372e-10 3.078950436e-10 2.365985716e-10 3.872564156e-10 3.168065774e-10 2.918645272e-10 3.092897382e-10 1.65906467e-10 3.31428315e-10 1.864001014e-10 2.857553325e-10 3.174273537e-10 2.32101253e-10 2.286286736e-10 3.360443859e-10 1.614889596e-10 3.069460778e-10 4.313212277e-10 2.398292732e-10 4.523185832e-10 2.953249154e-10 4.148850702e-10 3.025995497e-10 2.849674651e-10 3.215607734e-10 3.360570797e-10 3.969318036e-10 2.577218727e-10 3.668760914e-10 3.491330455e-10 4.180242634e-10 2.794645649e-10 3.040091526e-10 2.760117378e-10 2.203704368e-10 3.465217542e-10 3.321395209e-10 4.533711776e-10 6.145179946e-10 4.606814211e-10 4.936437935e-10 4.472821114e-10 4.408110406e-10 4.05514865e-10 4.553710649e-10 3.914480618e-10 3.254430718e-10 3.465252848e-10 4.146460668e-10 4.155666485e-10 4.415328778e-10 3.884592994e-10 3.684355027e-10 3.312491212e-10 2.562373488e-10 2.157580105e-10 1.020965607e-10 2.856931463e-10 3.133908431e-10 4.855361664e-10 8.67234179e-10 4.952607297e-10 5.424632898e-10 5.3706727e-10 7.171438366e-10 4.032403233e-10 6.288643026e-10 4.664453519e-10 7.601508653e-10 6.146098148e-10 7.064611932e-10 5.622681325e-10 5.112369615e-10 4.643880938e-10 4.150746921e-10 5.354389163e-10 3.543162075e-10 3.432251691e-10 4.239012802e-10 2.952708185e-10 2.094216941e-10 1.336328486e-10 1.09962901e-20 1.014699804e-11 8.315548227e-19 2.295582973e-10 2.868332075e-10 4.83756716e-10 5.06696694e-10 5.97305661e-10 5.14245344e-10 4.774078447e-10 7.184473856e-10 7.508767636e-10 9.0838932e-10 9.112920588e-10 9.913079316e-10 9.800474327e-10 9.798772357e-10 9.858477078e-10 8.088875426e-10 8.411361925e-10 8.865876223e-10 9.443669721e-10 8.104604865e-10 8.079025769e-10 1.031046797e-09 8.239157171e-10 8.812426385e-10 8.509383988e-10 9.516071687e-10 7.51649956e-10 1.020415932e-09 8.790678844e-10 8.334337972e-10 8.303807695e-10 1.059397034e-09 8.171691919e-10 1.037732058e-09 1.057028163e-09 8.573611195e-10 4.516904524e-10 4.760987566e-10 5.912754193e-10 5.998791892e-10 5.815848876e-10 4.450394532e-10 3.116141278e-10 2.155190847e-10 2.842383424e-10 1.585551612e-10 1.62337292e-10 8.852996892e-11 2.993181081e-10 3.806757047e-10 4.591502985e-10 4.745040765e-10 4.313805432e-10 3.840164084e-10 4.99841244e-10 4.976035512e-10 3.661511954e-10 6.422322371e-10 6.128242892e-10 5.893722518e-10 5.896442135e-10 6.37108052e-10 4.448638814e-10 5.610152896e-10 5.042054315e-10 5.802355065e-10 3.906279799e-10 9.365672024e-10 4.665335232e-10 2.173796978e-10 1.903316878e-10 3.093571758e-10 1.641577778e-10 1.610353663e-10 1.842447588e-10 2.144876616e-10 2.810432916e-10 3.201739086e-10 4.112594244e-10 2.966385219e-10 4.52969321e-10 2.594351843e-10 4.073136153e-10 4.566444999e-10 4.153989827e-10 5.362954315e-10 4.107502774e-10 4.485269384e-10 6.146072897e-10 4.72842598e-10 3.504825464e-10 5.479542893e-10 2.799408397e-10 2.477651317e-10 4.061390795e-10 2.802657754e-10 2.141810495e-10 3.849729061e-10 2.695093915e-10 2.597736722e-10 2.714439567e-10 2.826547811e-10 2.882715316e-10 1.688088503e-10 3.537764429e-10 4.405573499e-10 4.10387995e-10 3.200918865e-10 1.938437616e-10 3.197049195e-10 2.388066341e-10 1.984825881e-10 2.187429636e-10 2.594856881e-10 3.98918033e-10 3.270678371e-10 2.607167453e-10 4.137019915e-10 3.229002287e-10 2.228731787e-10 2.600504004e-10 2.666090661e-10 2.87751451e-10 2.851162607e-10 2.551691773e-10 3.201256757e-10 3.349348794e-10 3.120152636e-10 3.505059901e-10 2.578998446e-10 5.223306024e-10 2.2304672e-10 2.952098251e-10 4.209963665e-10 3.747447001e-10 3.156960451e-10 8.389590277e-11 1.799476309e-10 2.230051899e-10 1.867834993e-10 3.126676714e-10 2.23242301e-10 1.579417912e-10 1.43079985e-10 3.808135867e-10 1.377285694e-10 7.700731464e-11 2.849174565e-10 3.424397135e-10 3.019446574e-10 1.445449594e-10 2.052541793e-10 1.289613629e-10 1.456940549e-10 1.346135744e-10 1.412891586e-10 3.308534507e-10 1.77305321e-10 3.363931068e-10 8.306637412e-11 9.665656386e-11 1.789970673e-10 1.001094429e-10 1.414060371e-10 2.402963747e-10 5.87776291e-11 3.615025116e-10 1.290536738e-10 9.24860698e-11 2.676143917e-10 1.541377884e-10 8.099220036e-11 +4.534224256e-11 2.302205447e-10 4.251974644e-10 1.802798634e-10 7.282510183e-11 3.052932799e-10 2.257316405e-10 1.711896705e-10 2.486009435e-10 9.275066074e-11 9.393988542e-11 2.286578959e-10 7.08736561e-11 1.644346787e-10 2.296635122e-10 2.993512036e-10 1.332915624e-10 1.082095068e-10 2.18522026e-10 1.21218836e-10 2.403609778e-10 1.726013533e-10 2.775453682e-10 3.63131106e-10 1.589902247e-10 2.246242131e-10 2.999175317e-10 2.849516478e-10 1.026072504e-10 1.393538312e-10 1.305859706e-10 2.286920303e-10 2.84626969e-10 1.370299515e-10 2.442142932e-10 2.284869496e-10 2.360458031e-10 1.167684207e-10 2.494309635e-10 1.086553545e-10 2.244190437e-10 3.422912785e-10 3.549847536e-10 2.972580479e-10 2.116901684e-10 3.0276387e-10 2.705109626e-10 2.311694991e-10 3.057757171e-10 2.311746395e-10 3.5948305e-10 3.004051189e-10 3.040107603e-10 4.040117787e-10 3.528420188e-10 3.248148643e-10 3.241222791e-10 1.831049097e-10 2.505488397e-10 1.785285814e-10 2.885077918e-10 3.155835006e-10 2.2629143e-10 2.791156362e-10 3.575721444e-10 2.522042643e-10 2.980983386e-10 2.976640232e-10 3.748359595e-10 3.260734227e-10 2.984947691e-10 2.913158281e-10 2.951577387e-10 1.508615127e-10 3.935937285e-10 2.481262479e-10 2.218424176e-10 3.159724858e-10 3.278627795e-10 4.343263066e-10 2.850718259e-10 6.087901713e-10 5.697974915e-10 3.996309556e-10 4.730080369e-10 6.283616529e-10 3.640091465e-10 3.827540072e-10 4.963825904e-10 4.519589073e-10 4.495469509e-10 3.860689433e-10 2.892780316e-10 2.695180598e-10 4.098831931e-10 3.72572135e-10 2.302846412e-10 1.611784658e-10 4.76631735e-10 2.989591461e-10 2.239659003e-10 2.786901869e-10 7.080303778e-10 7.447712924e-10 9.497772739e-10 7.948144861e-10 6.377773392e-10 6.622692299e-10 5.355909811e-10 4.552278703e-10 7.535312585e-10 6.313768741e-10 6.79416852e-10 6.980508423e-10 4.342691365e-10 5.379246888e-10 5.42513414e-10 4.42143415e-10 4.433984685e-10 5.039256115e-10 4.572811873e-10 4.217938768e-10 2.393851878e-10 1.629661678e-10 3.664708487e-11 1.094855124e-10 1.497783277e-10 1.41602525e-10 2.56339393e-10 4.05739949e-10 5.330694474e-10 5.422820635e-10 4.514568546e-10 5.1280986e-10 5.006749221e-10 7.371704066e-10 7.006674679e-10 1.160668597e-09 8.490852363e-10 9.714746228e-10 8.261780746e-10 1.061064509e-09 8.705259804e-10 8.335335981e-10 8.42239524e-10 9.691173247e-10 7.608614311e-10 8.158683285e-10 8.130754985e-10 8.646967269e-10 7.553457238e-10 9.800229074e-10 8.336198107e-10 8.288032292e-10 8.33193829e-10 8.856519409e-10 1.023548601e-09 1.069553267e-09 9.129576713e-10 1.022559972e-09 7.532903076e-10 8.50789343e-10 9.334529453e-10 8.251427562e-10 5.605632066e-10 4.988813827e-10 4.829413941e-10 5.6672874e-10 3.639283927e-10 5.65633832e-10 3.333834587e-10 3.625716745e-10 1.711883316e-10 7.110570915e-11 7.290478855e-11 1.592808861e-10 1.009890498e-10 3.004330069e-10 4.410069131e-10 4.322764675e-10 4.405822492e-10 4.118219289e-10 4.49968276e-10 4.453669086e-10 4.931202154e-10 6.345565709e-10 7.569174203e-10 5.953430579e-10 6.946518352e-10 6.019442556e-10 8.419790205e-10 6.388921106e-10 7.557873265e-10 7.389863514e-10 8.425815534e-10 6.439862665e-10 7.078191049e-10 2.878617988e-10 1.995132515e-10 2.460769655e-10 2.571516955e-10 1.383816941e-10 2.746732808e-10 2.170163204e-10 2.957208777e-10 4.058827199e-10 2.505178916e-10 3.681455774e-10 4.64577368e-10 4.388223756e-10 5.540809998e-10 4.642504761e-10 3.548501011e-10 5.058221468e-10 4.156815735e-10 3.725687316e-10 5.390930183e-10 3.578758726e-10 5.595336952e-10 2.389418534e-10 4.181694778e-10 2.70005834e-10 3.148630196e-10 2.099415525e-10 3.668243327e-10 4.486022869e-10 4.230840346e-10 2.272477348e-10 2.676378075e-10 2.691481724e-10 3.395765741e-10 2.808427848e-10 3.200312384e-10 2.093409412e-10 2.863869221e-10 2.289779449e-10 3.915054676e-10 3.956154958e-10 2.999691622e-10 2.249910967e-10 8.533830636e-11 1.517553457e-10 1.972229679e-10 3.38758592e-10 1.947338312e-10 2.009936973e-10 2.12664627e-10 2.10662007e-10 4.261848392e-10 4.836505389e-10 3.36893491e-10 4.413203799e-10 3.34322363e-10 3.433650907e-10 3.720381327e-10 3.420263021e-10 2.673707817e-10 3.178859365e-10 2.473513616e-10 4.58184006e-10 2.004649428e-10 2.528093582e-10 3.747780434e-10 2.261798052e-10 2.396713385e-10 2.164474814e-10 1.024206971e-10 1.067751552e-10 1.821746322e-10 9.745465831e-11 2.392852392e-10 2.347815177e-10 1.164757271e-10 3.084683163e-10 1.357196168e-10 1.435854629e-10 3.123213429e-10 4.042990754e-10 1.276120499e-10 1.839137024e-10 1.745471858e-10 1.448673402e-10 2.711196824e-10 1.654344955e-10 2.970405522e-10 2.358612923e-10 9.716530836e-11 1.562874751e-10 1.314854935e-10 3.384862531e-10 2.633048879e-10 6.020392831e-11 1.789705482e-10 2.305500288e-10 1.571075666e-10 7.04524342e-11 2.514514739e-10 2.399079498e-10 2.0530917e-10 3.369851564e-10 +7.150933291e-11 2.718793305e-10 2.189809996e-10 9.152213127e-11 2.396457599e-10 7.749962106e-11 1.750726517e-10 1.148559092e-10 1.959474348e-10 1.917800701e-10 1.057433276e-10 3.983031234e-10 1.390611065e-10 1.128922798e-10 1.411036708e-10 4.168519272e-10 1.991774924e-10 2.223895017e-10 8.126698948e-11 3.616298688e-10 1.0595371e-10 2.168157577e-10 2.187501936e-10 3.34017344e-10 2.971100918e-10 2.335310066e-10 1.785087169e-10 1.622277908e-10 3.159310484e-10 7.030926523e-11 2.822611244e-10 4.44070124e-10 3.077603639e-10 1.086395081e-10 1.463129324e-10 2.966079759e-10 2.556354835e-10 1.837311811e-10 3.111792985e-10 2.873258667e-10 3.997262602e-10 5.317374822e-10 3.675540479e-10 2.86000319e-10 5.542098547e-10 2.679900674e-10 2.768936923e-10 3.178430763e-10 2.597879772e-10 3.878622493e-10 2.437732749e-10 2.290960064e-10 5.051529909e-10 2.226343043e-10 3.794859428e-10 2.965819313e-10 2.357237567e-10 1.477512263e-10 2.552808247e-10 2.801663654e-10 4.585406147e-10 4.08784714e-10 3.837292069e-10 4.628030617e-10 3.307104779e-10 5.396436988e-10 3.715105327e-10 3.731093187e-10 3.711597098e-10 3.942057696e-10 4.784678435e-10 2.529632342e-10 4.386631088e-10 2.301262321e-10 4.370565398e-10 2.091875892e-10 3.066265243e-10 2.928197444e-10 2.556293159e-10 2.870586504e-10 5.920044759e-10 5.064997327e-10 5.278218474e-10 4.650105549e-10 3.408831965e-10 4.397409406e-10 6.024564234e-10 3.054470189e-10 4.59612371e-10 4.046774101e-10 4.556022733e-10 3.970213584e-10 4.543058214e-10 5.363651171e-10 3.125651062e-10 4.433296056e-10 4.05795156e-10 2.847594622e-10 1.517824669e-10 1.431803276e-10 3.273165854e-10 2.382036735e-10 6.591160289e-10 5.087024392e-10 6.533459706e-10 5.805837058e-10 7.719651124e-10 3.573327931e-10 6.679358677e-10 3.393550377e-10 6.646025318e-10 6.963408223e-10 8.124719078e-10 6.34265096e-10 4.634499001e-10 3.69884043e-10 3.601227164e-10 5.918635848e-10 3.703791442e-10 4.92677282e-10 4.751846016e-10 3.709800053e-10 2.248270214e-10 1.858202753e-10 1.021599953e-10 1.583124241e-10 1.521019838e-10 1.993047744e-10 3.675615505e-10 5.142247742e-10 3.849851745e-10 4.835852827e-10 5.987649392e-10 4.918759487e-10 5.279874014e-10 6.037616696e-10 8.49927103e-10 9.807201348e-10 9.706064575e-10 8.938065086e-10 8.636748213e-10 1.14986171e-09 9.385920513e-10 9.002163378e-10 7.834753991e-10 8.34527033e-10 7.733803168e-10 6.082064319e-10 8.195192582e-10 6.146105879e-10 8.101731457e-10 7.826505242e-10 6.959641405e-10 8.239975666e-10 8.526828729e-10 8.235750934e-10 9.089588268e-10 7.457209006e-10 7.424044247e-10 1.003895256e-09 7.73420611e-10 1.013958471e-09 1.065672733e-09 9.39694513e-10 7.804775211e-10 6.992965073e-10 7.560123828e-10 5.352103615e-10 5.046272394e-10 5.536444677e-10 4.50692333e-10 3.682687969e-10 4.169979661e-10 5.083406723e-11 1.825762133e-10 1.565163652e-10 1.819331331e-10 2.883948615e-10 4.458639458e-10 3.916792488e-10 3.367584604e-10 4.213974054e-10 4.224631759e-10 3.853761453e-10 4.279545305e-10 4.548037193e-10 7.695897684e-10 7.849537574e-10 6.613398703e-10 5.770654845e-10 5.604804109e-10 7.162505748e-10 6.623075422e-10 6.582274786e-10 4.613740264e-10 9.091389027e-10 3.452021079e-10 8.340417732e-10 4.116522287e-10 1.674281567e-10 2.374772374e-10 2.038752059e-10 1.823924249e-10 2.772521012e-10 2.619602077e-10 4.064754757e-10 4.029594767e-10 4.863901838e-10 4.291901974e-10 5.594021085e-10 4.273865987e-10 3.602805016e-10 3.984979975e-10 5.115336856e-10 3.656988516e-10 4.466274209e-10 3.799273334e-10 4.941630294e-10 4.512275343e-10 2.614947382e-10 3.563237235e-10 3.001808408e-10 3.025863879e-10 3.603609903e-10 3.052623879e-10 5.656973406e-10 3.518831261e-10 2.855250008e-10 4.212896376e-10 3.926670393e-10 3.657222163e-10 4.284763976e-10 2.790050586e-10 2.858517376e-10 2.650207377e-10 3.08753389e-10 2.352539396e-10 3.777532959e-10 1.184018972e-10 2.793587243e-10 2.636149297e-10 2.026666463e-10 2.745057535e-10 2.135083893e-10 2.29549512e-10 1.700899948e-10 3.715257291e-10 2.264332432e-10 4.891187674e-10 3.159244249e-10 4.934708705e-10 3.649572462e-10 2.682894398e-10 2.37541534e-10 3.759178896e-10 1.060037849e-10 2.655883258e-10 3.494827041e-10 2.781496675e-10 3.337836619e-10 2.047122961e-10 3.718659187e-10 2.459762881e-10 1.834930314e-10 2.202552389e-10 1.046663149e-10 1.688792632e-10 1.419497424e-10 2.461941577e-10 9.488625706e-11 1.487194845e-10 1.193726518e-10 1.750993931e-10 2.136363937e-10 3.403538515e-10 2.294669273e-10 2.449354196e-10 3.221163977e-10 2.538125292e-10 1.430175162e-10 2.801657149e-10 1.704194136e-10 5.633395574e-11 3.205361365e-10 2.661752757e-10 8.400024415e-11 2.118893928e-10 4.650400144e-11 1.663759968e-10 2.47481544e-10 1.786065313e-10 1.901739373e-10 1.255517167e-10 1.917807913e-10 1.378710004e-10 2.237607539e-10 2.182930842e-10 2.085789392e-10 2.314123111e-10 1.764392394e-10 +1.682407657e-10 3.068147861e-10 2.206610033e-10 2.003999102e-10 1.055644901e-10 7.486498476e-11 2.646634005e-10 1.049983341e-10 3.910250974e-10 3.482043148e-10 1.45344617e-10 2.6105099e-10 1.09791221e-10 2.222689681e-10 1.035464705e-10 3.265839633e-10 1.027814973e-10 2.634941789e-10 2.970952667e-10 4.698756739e-11 3.263936738e-10 1.781613127e-10 1.184725819e-10 1.567140786e-10 1.912584673e-10 1.608879828e-10 1.206991077e-10 2.650297044e-10 1.413835611e-10 8.96783313e-11 1.790456558e-10 1.686719251e-10 2.616819846e-10 1.343178032e-10 1.715001833e-10 2.341653174e-10 1.740988902e-10 1.786264027e-10 3.645797605e-10 2.109773315e-10 3.624168518e-10 4.859966776e-10 3.311177558e-10 1.726311263e-10 3.321252849e-10 3.404554411e-10 4.363160496e-10 3.260250181e-10 2.770878823e-10 2.589591401e-10 3.992783756e-10 2.573192819e-10 4.067476307e-10 3.979551595e-10 3.093131444e-10 4.85383296e-10 2.585278528e-10 2.408216525e-10 2.078347279e-10 2.392244715e-10 3.527591261e-10 2.728078316e-10 2.46282901e-10 3.722061214e-10 4.040015082e-10 2.794596059e-10 3.972328654e-10 5.533572566e-10 1.788942901e-10 2.437001858e-10 1.939257896e-10 2.238417492e-10 3.724998513e-10 2.910160175e-10 2.538615825e-10 3.501967235e-10 3.857240257e-10 3.45396704e-10 2.671012242e-10 4.187856705e-10 3.534403409e-10 5.36847278e-10 2.256733802e-10 5.174200502e-10 4.489176769e-10 4.363078988e-10 4.275748048e-10 3.318204061e-10 4.016545576e-10 5.184340214e-10 3.787371354e-10 5.282487356e-10 2.881865322e-10 2.742832003e-10 3.236963909e-10 3.813100668e-10 2.651805029e-10 1.768868185e-10 8.680985004e-11 3.087859255e-10 1.389882134e-10 4.432353498e-10 3.926500143e-10 7.118916925e-10 5.443449176e-10 5.798419009e-10 6.406635846e-10 6.838395968e-10 5.089073389e-10 5.986396609e-10 3.189294024e-10 5.808581863e-10 7.698139394e-10 7.226427203e-10 5.913126179e-10 5.772602088e-10 4.408306224e-10 4.274975628e-10 4.483785176e-10 4.53773628e-10 4.19150954e-10 2.000984361e-10 1.927186652e-10 4.592086866e-11 1.464267232e-10 1.917707897e-15 2.226408157e-10 1.825106349e-10 4.892535448e-10 3.894260079e-10 5.60266032e-10 4.676113498e-10 4.425271104e-10 6.580830465e-10 6.747954329e-10 8.893920391e-10 1.015151594e-09 9.461317882e-10 1.030367715e-09 8.726693297e-10 8.439899743e-10 8.80646228e-10 9.85787979e-10 8.332413079e-10 7.941211153e-10 5.925144816e-10 7.361222588e-10 6.132243341e-10 5.944059039e-10 5.917587844e-10 6.136302115e-10 7.221179834e-10 6.428813383e-10 5.92072007e-10 8.255008445e-10 8.256432547e-10 9.009866964e-10 8.410546587e-10 8.950932798e-10 9.333806684e-10 7.761582879e-10 1.018834915e-09 1.351315566e-09 1.114971321e-09 9.700986885e-10 7.216263978e-10 6.617396142e-10 4.886811578e-10 6.638033988e-10 5.515335008e-10 5.990880782e-10 4.159665843e-10 1.976265617e-10 1.357800464e-10 1.512407486e-10 1.944590188e-10 1.120746415e-10 1.926895443e-10 3.530978324e-10 3.754460295e-10 4.652525997e-10 3.426564368e-10 5.808606072e-10 4.358576585e-10 4.605852846e-10 5.401880092e-10 7.036691148e-10 6.553021389e-10 4.572621177e-10 8.419011762e-10 5.277253974e-10 6.432711393e-10 6.335660687e-10 7.216238245e-10 8.265091167e-10 7.258970007e-10 6.526094118e-10 4.950700032e-10 3.127152809e-10 2.702937543e-10 2.474474729e-10 1.151410948e-10 2.887097471e-10 1.652166269e-10 3.572596616e-10 4.928793889e-10 3.661955689e-10 4.072316699e-10 4.162770003e-10 3.292995384e-10 2.25465014e-10 4.170054044e-10 4.152347932e-10 5.083345405e-10 5.704751014e-10 5.09436846e-10 4.907066343e-10 3.821854321e-10 3.961741874e-10 2.479323107e-10 3.140660034e-10 2.951028513e-10 2.410160338e-10 2.886281312e-10 1.773721218e-10 3.158774975e-10 3.51865942e-10 4.241973429e-10 2.224985425e-10 3.198027422e-10 3.932449842e-10 1.31757569e-10 2.815214112e-10 2.733946832e-10 2.221398137e-10 2.888967654e-10 2.884412849e-10 2.803438263e-10 1.971479652e-10 1.718727697e-10 3.531877062e-10 2.390921355e-10 1.650181951e-10 3.779016572e-10 2.354592372e-10 3.19519805e-10 2.925199773e-10 5.381176708e-10 3.805360043e-10 2.446190751e-10 3.605821264e-10 3.691777681e-10 3.033372792e-10 1.997079194e-10 2.009291397e-10 2.933433174e-10 4.190964665e-10 4.387060001e-10 2.197735574e-10 1.34172548e-10 3.205990009e-10 1.897935444e-10 3.082024499e-10 3.915579347e-10 3.856639953e-10 1.651793256e-10 1.915125404e-10 1.563408931e-10 1.814745454e-10 1.741452855e-10 1.323310868e-10 1.163881659e-10 8.055322782e-11 2.072799282e-10 1.644366445e-10 2.551342609e-10 3.178397e-10 1.417106025e-10 1.954736243e-10 4.214801564e-10 2.468378367e-10 1.418944619e-10 1.403360848e-10 1.479370842e-10 1.364816826e-10 1.716957459e-10 2.119605322e-10 2.616222875e-10 6.102547375e-11 1.609101032e-10 3.536782039e-10 9.302563727e-11 2.27664787e-10 1.514084951e-10 1.694137649e-10 3.258207321e-10 1.32169884e-10 1.428376076e-10 3.538798711e-11 1.619844976e-10 +8.421958905e-11 9.830367782e-11 1.12264322e-10 1.178429829e-10 2.855280967e-10 1.324366097e-10 1.895410422e-10 2.931353439e-10 2.849354644e-10 3.401617484e-10 1.167747713e-10 1.853698867e-10 3.180650916e-10 1.911717299e-10 2.843734149e-10 8.005264785e-11 2.729076853e-10 1.367837493e-10 1.37196794e-10 2.165207905e-10 2.348901696e-10 1.151374625e-10 1.562026052e-10 2.280565142e-10 3.831486193e-10 1.601624878e-10 2.539359737e-10 3.765717249e-10 1.90865109e-10 2.356607102e-10 1.030409276e-10 1.84607021e-10 2.963943685e-10 8.525665667e-11 7.597505587e-11 2.034432441e-10 1.109711711e-10 2.740679217e-10 2.026532655e-10 2.071568054e-10 2.538348932e-10 3.865301678e-10 3.98260593e-10 4.024659576e-10 2.041586178e-10 2.595432511e-10 3.13132485e-10 2.665673855e-10 4.283436294e-10 2.954786299e-10 3.362959903e-10 3.028331028e-10 5.448572713e-10 2.470380367e-10 1.24691647e-10 2.326417139e-10 2.325410889e-10 2.110641852e-10 3.583537088e-10 1.836416719e-10 2.294026776e-10 3.628813371e-10 3.011173895e-10 3.249689911e-10 2.201472077e-10 2.243847232e-10 2.967061496e-10 2.364538623e-10 3.731810071e-10 2.651855785e-10 4.654196107e-10 2.053957668e-10 2.924791634e-10 2.795639488e-10 2.371068197e-10 2.758039722e-10 2.573448667e-10 3.996506908e-10 3.906385202e-10 4.644338578e-10 3.796442751e-10 4.738484643e-10 4.017013033e-10 5.032428255e-10 4.027515592e-10 4.090647285e-10 4.97580623e-10 6.423180355e-10 4.100300934e-10 3.198411422e-10 3.974268642e-10 3.394961174e-10 4.208368274e-10 3.070661353e-10 3.710636227e-10 4.40299692e-10 1.56668201e-10 1.565210113e-10 1.268234797e-10 2.5214063e-10 3.170453003e-10 5.194065631e-10 7.621939746e-10 8.059880932e-10 5.879509155e-10 5.454257695e-10 5.469123288e-10 6.988125821e-10 6.931270582e-10 8.535838213e-10 7.086345262e-10 5.657030998e-10 7.008778005e-10 3.894342098e-10 4.836358577e-10 5.362955447e-10 5.433438404e-10 6.443889848e-10 4.365266726e-10 5.055448386e-10 4.033495955e-10 2.690312351e-10 5.458036117e-15 1.533595849e-10 1.503290422e-10 1.806782246e-10 1.362739754e-10 3.990733679e-10 4.791336948e-10 6.400504261e-10 4.66701665e-10 4.126779963e-10 5.096514126e-10 8.036273764e-10 8.26702305e-10 9.539969262e-10 9.581835284e-10 9.745523958e-10 6.987734494e-10 8.035815621e-10 8.401405078e-10 8.102068188e-10 8.830617107e-10 6.91133952e-10 6.611659483e-10 5.993137064e-10 5.764779004e-10 5.528941837e-10 6.427595087e-10 5.892451321e-10 5.16581816e-10 5.589503417e-10 5.08505342e-10 6.605292338e-10 8.080928023e-10 6.122038151e-10 6.221102422e-10 8.28040548e-10 7.659955213e-10 8.990929597e-10 8.439214166e-10 8.478831443e-10 1.004410441e-09 1.093277289e-09 1.139988601e-09 7.466980227e-10 6.47694859e-10 4.838872812e-10 4.469569955e-10 5.617916676e-10 5.728146798e-10 4.492355995e-10 4.481001912e-10 3.096371935e-10 1.412830953e-10 1.995772524e-10 1.077447988e-10 2.854637055e-10 3.878921546e-10 5.458483705e-10 3.792398688e-10 4.91216654e-10 5.445687626e-10 4.474167654e-10 4.899486805e-10 6.588483253e-10 5.93607738e-10 6.899482973e-10 6.755868353e-10 4.991367849e-10 4.889402547e-10 5.992631802e-10 6.151695146e-10 6.416394062e-10 6.482054062e-10 5.771760819e-10 9.390450246e-10 5.070042535e-10 2.617127616e-10 3.006858899e-10 3.013490822e-10 2.692554728e-10 1.113305782e-10 2.316452512e-10 2.804034949e-10 3.981788629e-10 3.002094335e-10 3.540714162e-10 4.526673454e-10 3.301727324e-10 3.577142531e-10 4.315977986e-10 2.677261828e-10 3.778762904e-10 4.107823566e-10 3.164873066e-10 5.106663809e-10 4.55033462e-10 4.770217215e-10 4.234966895e-10 4.971564467e-10 3.291082106e-10 2.346464966e-10 3.043585946e-10 2.871007166e-10 2.409516385e-10 3.802645645e-10 2.444975718e-10 2.103320006e-10 3.836950781e-10 3.987068389e-10 3.698432759e-10 2.620079751e-10 3.148971147e-10 3.148539338e-10 1.84236916e-10 2.75245014e-10 2.938747927e-10 3.27020371e-10 2.970294846e-10 3.502744025e-10 2.764930779e-10 3.937982741e-10 2.556470433e-10 3.438061611e-10 3.157150504e-10 3.304311128e-10 2.490576741e-10 3.299643318e-10 3.855202807e-10 2.681700059e-10 3.700144917e-10 1.700141199e-10 2.382890104e-10 2.172800035e-10 3.072324264e-10 4.056848303e-10 5.621275561e-10 3.904750326e-10 4.606707097e-10 2.860902209e-10 3.340316462e-10 4.341850634e-10 1.652609982e-10 2.990884905e-10 1.514926876e-10 1.249960367e-10 2.718099107e-10 8.428139872e-11 3.881257063e-10 2.226525458e-10 1.488573574e-10 1.939086477e-10 1.543211714e-10 1.210784471e-10 3.290765761e-10 1.216345045e-10 1.794536292e-10 1.244668083e-10 2.051622022e-10 2.580575925e-10 1.564379652e-10 1.561568885e-10 1.884671093e-10 1.904624334e-10 1.514847248e-10 1.383880625e-10 4.232402801e-10 1.885871072e-10 2.057574003e-10 3.808810453e-10 1.365136175e-10 1.328374504e-10 7.557299724e-11 2.494502176e-10 1.842282256e-10 1.707806457e-10 8.111795101e-11 8.252463551e-11 3.11820088e-10 +2.966492199e-10 3.012446467e-10 2.90469891e-10 2.412970662e-10 3.302206078e-10 6.062114237e-11 7.215444371e-11 3.879596509e-10 1.607021725e-10 9.769422187e-11 3.782620122e-10 9.238903406e-11 1.446933258e-10 1.053063912e-10 1.589355169e-10 1.139626113e-10 1.350321955e-10 1.932246292e-10 1.431429647e-10 7.394403391e-11 1.810615038e-10 6.866881299e-11 2.332309072e-10 1.119867874e-10 2.222700243e-10 1.512258476e-10 2.409324447e-10 2.260368157e-10 3.455941613e-10 2.070651991e-10 1.388878736e-10 1.924000811e-10 1.469184302e-10 3.558111357e-10 1.176327869e-10 8.294951676e-11 1.601112038e-10 1.334350707e-10 1.773171641e-10 3.829548052e-10 1.813303459e-10 4.856775108e-10 2.275971907e-10 2.147974643e-10 2.147105959e-10 1.705885099e-10 3.325426674e-10 3.03961096e-10 2.288766346e-10 3.025315018e-10 2.240593019e-10 5.209203092e-10 2.008542121e-10 2.905861494e-10 3.677080168e-10 4.975173953e-10 2.0467399e-10 4.829651594e-10 3.564911489e-10 2.086218258e-10 1.442477611e-10 2.962460907e-10 1.410930814e-10 3.092777549e-10 4.020470002e-10 3.067611103e-10 4.029880585e-10 2.578191478e-10 3.724612599e-10 3.056133508e-10 3.770371582e-10 4.396701939e-10 3.303311295e-10 1.635523316e-10 4.086207206e-10 3.306816512e-10 1.8002172e-10 3.284226664e-10 2.7235411e-10 4.491080242e-10 3.941174648e-10 5.395011228e-10 6.12310538e-10 4.91271214e-10 4.659293201e-10 4.235222997e-10 3.537655663e-10 3.894630314e-10 2.97983306e-10 3.334761662e-10 4.079683236e-10 4.779360551e-10 4.936517953e-10 3.543159233e-10 3.518517451e-10 2.500177245e-10 2.50481535e-10 2.36234121e-10 1.433107242e-10 2.148539365e-10 2.716562004e-10 4.53259243e-10 6.050310776e-10 8.402545038e-10 7.376737472e-10 3.96606185e-10 6.568742478e-10 5.101882906e-10 5.059258268e-10 5.992856586e-10 7.677347089e-10 9.014540799e-10 7.364238277e-10 6.001333239e-10 5.21365053e-10 5.331142895e-10 5.476453951e-10 5.347378646e-10 3.622704796e-10 3.810599276e-10 3.345159304e-10 3.372115075e-10 1.000814821e-10 1.014661029e-10 9.213829607e-11 8.884815782e-11 2.795845116e-10 4.209959259e-10 7.032865542e-10 5.738968428e-10 5.821416597e-10 5.492151918e-10 7.284321801e-10 8.077321198e-10 9.874588569e-10 9.551682136e-10 1.031821572e-09 9.992697077e-10 8.945230953e-10 8.863756106e-10 9.738536155e-10 7.95670838e-10 7.127315221e-10 6.219091679e-10 5.828790054e-10 4.747670939e-10 3.10486517e-10 4.38681626e-10 3.59542887e-10 2.909326076e-10 2.433737723e-10 3.819077065e-10 3.913919278e-10 4.527259485e-10 5.571764047e-10 5.67375796e-10 5.785845888e-10 7.945343393e-10 7.081093415e-10 8.30964866e-10 8.866894039e-10 8.541445433e-10 1.156309313e-09 9.972194402e-10 9.328934659e-10 1.058420688e-09 9.644881776e-10 5.368829021e-10 5.103258716e-10 4.735744697e-10 6.294396444e-10 3.955816772e-10 5.18843006e-10 4.180134623e-10 8.579791633e-11 1.576497835e-10 1.924917052e-10 1.722887352e-10 2.456361615e-10 3.757286249e-10 2.781604913e-10 5.778830525e-10 4.093902153e-10 3.995510131e-10 5.058930391e-10 5.684607611e-10 5.718613372e-10 7.567144974e-10 5.279584752e-10 7.334027988e-10 6.814218756e-10 6.742282097e-10 6.796198118e-10 2.880576534e-10 7.087846796e-10 9.509815304e-10 5.027155865e-10 7.22903581e-10 2.545200654e-10 1.886662402e-10 2.077988386e-10 9.245099645e-11 2.78310045e-10 3.744427514e-10 2.555407464e-10 2.544339524e-10 3.770558242e-10 5.060199716e-10 3.220017447e-10 3.613772464e-10 5.054990095e-10 4.762234919e-10 5.647008541e-10 5.039881713e-10 4.899395022e-10 4.516989382e-10 4.624442303e-10 4.322793624e-10 5.549162554e-10 4.087042454e-10 3.264515983e-10 2.448560641e-10 4.092694309e-10 3.321603419e-10 3.097602602e-10 3.637284688e-10 3.384537702e-10 2.007062082e-10 3.850841515e-10 4.038978698e-10 3.057682345e-10 2.667397345e-10 3.015814774e-10 2.660944869e-10 1.676871806e-10 3.549740358e-10 3.456140881e-10 2.984926388e-10 2.383380537e-10 1.030451252e-10 3.167486703e-10 1.649852105e-10 3.137289156e-10 3.713127784e-10 1.571680544e-10 2.799158465e-10 3.353305417e-10 3.776933562e-10 3.446003784e-10 3.511094009e-10 4.405294319e-10 3.502262042e-10 3.615156127e-10 4.144390455e-10 3.711855587e-10 3.895988751e-10 3.584496249e-10 2.456153508e-10 2.673481215e-10 3.245044021e-10 1.884535186e-10 1.904714938e-10 2.161625849e-10 1.485196748e-10 2.709561591e-10 7.746661001e-11 2.745584787e-10 1.033924528e-10 2.225981694e-10 2.03785145e-10 1.525693017e-10 8.695539542e-11 1.624572951e-10 2.152343162e-10 1.067817455e-10 2.276628826e-10 2.376656898e-10 2.817636237e-10 2.16820645e-10 3.333004389e-10 3.124132645e-10 2.591811685e-10 3.714311476e-10 3.96288121e-10 1.911235288e-10 5.858788611e-11 8.087790576e-11 2.272336117e-10 1.511035972e-10 1.454858746e-10 3.325194703e-10 1.558458327e-10 2.268740598e-10 2.347820358e-10 1.676374276e-10 3.898260395e-10 1.243288763e-10 1.787114615e-10 8.566364042e-11 2.233123143e-10 +1.865433825e-10 1.564677429e-10 3.168944826e-10 1.675884237e-10 1.321566473e-10 1.021137347e-10 8.253637215e-11 3.681027654e-10 3.746309788e-10 1.028103804e-10 3.921203826e-10 1.946175447e-10 2.508244317e-10 9.232236721e-11 2.659536017e-10 2.066354231e-10 2.860286152e-10 1.201277233e-10 1.401701519e-10 1.860966138e-10 1.869954124e-10 3.436851337e-10 5.945393351e-11 3.479158457e-10 2.12569739e-10 3.034563212e-10 7.276089255e-11 2.265957548e-10 8.466656047e-11 1.96573333e-10 1.204810068e-10 2.560460019e-10 2.124055916e-10 3.806739647e-10 1.258722051e-10 2.019336114e-10 1.097105616e-10 3.508984912e-10 1.560840179e-10 2.216986422e-10 3.127164748e-10 3.154023861e-10 3.852472483e-10 3.80050355e-10 4.752394488e-10 5.078573284e-10 3.670185577e-10 2.74457625e-10 4.153884541e-10 1.596895258e-10 4.703018948e-10 2.771469314e-10 2.291596353e-10 1.786443757e-10 1.654899158e-10 3.218560655e-10 3.795783029e-10 1.911052096e-10 1.512194955e-10 2.812195095e-10 4.016498443e-10 1.548591506e-10 3.772578479e-10 2.202777312e-10 3.511138535e-10 3.728538972e-10 3.832888006e-10 1.981252355e-10 4.386084479e-10 4.514897584e-10 2.676794682e-10 4.059161002e-10 3.572814229e-10 2.705233303e-10 4.169019614e-10 2.688394557e-10 3.948033891e-10 2.897795543e-10 2.53103175e-10 2.283100223e-10 4.505788517e-10 3.09156136e-10 4.011311792e-10 4.730632611e-10 4.656910559e-10 6.046031778e-10 4.652974684e-10 3.322469718e-10 4.192930568e-10 4.631663328e-10 5.08534802e-10 4.407714302e-10 3.825137106e-10 4.267027596e-10 4.128737731e-10 2.702789391e-10 2.703635773e-10 1.263557731e-10 9.726831676e-11 2.840350263e-10 2.978347892e-10 7.131411408e-10 8.689575826e-10 5.157161569e-10 4.765134897e-10 5.270333392e-10 4.163597427e-10 4.979292128e-10 6.58430127e-10 7.262620184e-10 6.318679947e-10 6.306714537e-10 7.771731377e-10 5.887886282e-10 3.782492684e-10 3.625274132e-10 6.718119483e-10 4.973170043e-10 4.761549089e-10 4.111528036e-10 3.034857557e-10 2.024756039e-10 1.462299871e-10 1.03977853e-10 1.667187152e-10 1.827096785e-10 2.8591103e-10 3.764088823e-10 5.534904537e-10 5.058312296e-10 5.109672658e-10 5.985303741e-10 6.52649687e-10 9.523499576e-10 8.939466225e-10 9.00728893e-10 1.111491338e-09 7.782611337e-10 8.905759591e-10 8.02468668e-10 7.202469312e-10 5.362668563e-10 6.321675258e-10 3.250862611e-10 4.042283222e-10 3.157524952e-10 3.248359898e-10 1.782008814e-10 2.075138739e-10 2.475232666e-10 2.60211773e-10 2.477881764e-10 2.118324284e-10 3.730404824e-10 3.563734103e-10 3.946468393e-10 4.333124428e-10 5.758115785e-10 7.309689841e-10 7.693681514e-10 8.253627317e-10 9.376754612e-10 9.088747802e-10 9.396525087e-10 9.189122556e-10 9.505972661e-10 7.956777191e-10 7.116919923e-10 4.825303776e-10 4.711132105e-10 5.775761796e-10 4.439485633e-10 4.74478331e-10 3.236182173e-10 2.369141773e-10 2.004843372e-10 1.930631147e-10 1.556430545e-10 2.312140629e-10 3.629765736e-10 4.781955929e-10 5.333702101e-10 3.598538951e-10 5.959378261e-10 6.225640535e-10 5.657688814e-10 4.589152396e-10 6.506830518e-10 7.889171049e-10 6.123973895e-10 6.447332501e-10 7.93935206e-10 5.154945366e-10 6.4294341e-10 6.013374558e-10 8.409353811e-10 8.697925984e-10 6.778312762e-10 6.149046426e-10 2.297965855e-10 3.03473581e-10 1.222852963e-10 2.598122486e-10 2.459164903e-10 2.447961042e-10 3.961462433e-10 4.343683169e-10 3.443805789e-10 3.880622556e-10 4.246422602e-10 4.16144615e-10 4.463232833e-10 4.582848932e-10 5.193377369e-10 5.175136456e-10 4.821687585e-10 4.774333057e-10 3.55004955e-10 5.432655349e-10 3.51011492e-10 2.855953715e-10 5.052200323e-10 3.431548822e-10 3.612909148e-10 3.800186536e-10 1.839540349e-10 1.491411626e-10 3.122108052e-10 1.758454575e-10 1.996965542e-10 2.901838153e-10 3.409406736e-10 2.307620377e-10 3.160930542e-10 3.491429506e-10 2.901066772e-10 4.318148811e-10 4.833338003e-10 4.210763879e-10 2.38756812e-10 3.27325755e-10 2.695242528e-10 3.495234522e-10 2.189455348e-10 2.612030861e-10 2.05799547e-10 4.023425556e-10 5.019482942e-10 2.884316955e-10 1.681085726e-10 3.866158844e-10 3.212313403e-10 4.381099927e-10 3.678212007e-10 3.325678745e-10 4.035514811e-10 2.478631782e-10 2.189858167e-10 3.298525036e-10 3.36189414e-10 2.632307317e-10 2.138406101e-10 2.18573795e-10 2.264752227e-10 1.247618665e-10 1.763169416e-10 2.107045407e-10 2.954749395e-10 2.11029501e-10 1.277108086e-10 3.251551898e-10 3.274434111e-10 1.803365459e-10 1.663237281e-10 3.232773172e-10 2.074034027e-10 1.884508976e-10 3.83808362e-10 1.49708514e-10 2.475349649e-10 3.479098951e-10 5.237650909e-10 3.868076731e-10 7.935376737e-11 2.811825654e-10 1.926408287e-10 2.361663951e-10 3.053506993e-10 2.184984163e-10 1.45366827e-10 1.388061072e-10 1.264228598e-10 3.839872689e-10 4.383669575e-10 5.268809368e-10 6.224085081e-11 7.245312844e-11 8.88534578e-11 1.442946847e-10 1.657504637e-10 +2.463887481e-10 1.295999799e-10 1.916386888e-10 1.185747017e-10 1.8228273e-10 1.599455767e-10 2.753757888e-10 9.299784895e-11 1.454083394e-10 1.634167542e-10 1.195305651e-10 3.337099288e-10 1.381023983e-10 3.807027109e-10 2.123834728e-10 2.359593319e-10 2.156195111e-10 1.387621829e-10 3.843575736e-10 1.30347815e-10 2.821295871e-10 1.223289493e-10 3.853113852e-10 2.837719516e-10 1.232551794e-10 3.490426239e-10 1.318221095e-10 1.697164694e-10 2.204553096e-10 1.883051611e-10 1.942060933e-10 2.736059685e-10 1.853608006e-10 2.613304212e-10 1.029774208e-10 2.458993522e-10 1.528865083e-10 1.982929706e-10 1.409398536e-10 2.85483898e-10 3.457043252e-10 3.478269513e-10 3.588876706e-10 2.467545168e-10 3.004184606e-10 2.74702071e-10 3.150572979e-10 2.810164869e-10 3.616164898e-10 4.961320095e-10 2.922542444e-10 2.391195964e-10 2.337787482e-10 3.493922577e-10 1.77006055e-10 4.079905961e-10 1.46252568e-10 2.225146373e-10 3.348075977e-10 2.083288011e-10 2.1901417e-10 2.27558476e-10 2.923309665e-10 2.796227846e-10 2.31728219e-10 3.500189352e-10 3.511148453e-10 2.100408795e-10 4.470049445e-10 3.678249361e-10 2.301798175e-10 3.393831955e-10 1.790835109e-10 4.508147736e-10 2.582773436e-10 2.631288189e-10 2.815295043e-10 1.825759582e-10 2.048412147e-10 3.267447992e-10 6.161114132e-10 2.96173732e-10 4.557857538e-10 5.303645452e-10 4.673069162e-10 4.24886632e-10 5.055679208e-10 4.626408873e-10 4.495326471e-10 3.672038159e-10 2.977965599e-10 3.499515736e-10 3.594520094e-10 4.797360011e-10 2.506810528e-10 1.936703807e-10 1.65129598e-10 1.40574433e-10 1.776263501e-10 2.806964355e-10 2.736212796e-10 4.254613472e-10 7.340754708e-10 4.441835453e-10 9.831130111e-10 6.658342953e-10 7.955169207e-10 4.774720633e-10 5.507130511e-10 6.158686933e-10 6.738677044e-10 6.771293217e-10 7.677133815e-10 6.283030186e-10 3.027178084e-10 5.214690556e-10 5.066969296e-10 5.580464249e-10 5.596932576e-10 4.009210282e-10 2.889749919e-10 1.772348364e-10 1.776948753e-10 0 1.353546146e-10 1.466322738e-10 5.644900261e-10 5.869018228e-10 6.057149384e-10 5.584951818e-10 4.877892014e-10 8.746589614e-10 9.194137893e-10 9.832693508e-10 9.556392161e-10 8.562142147e-10 8.318472849e-10 9.6343799e-10 8.493048762e-10 7.833318511e-10 7.797728236e-10 5.433519041e-10 5.102559006e-10 2.770105003e-10 2.826942682e-10 1.939645184e-10 1.367556336e-10 1.538162493e-10 1.558549258e-10 6.447068769e-11 1.211558278e-10 2.146962466e-10 1.582891606e-10 1.71726425e-10 2.321418137e-10 2.720436857e-10 3.534745408e-10 4.680634152e-10 5.168424771e-10 6.04917425e-10 7.130609987e-10 8.658009779e-10 1.116063544e-09 9.868849263e-10 8.511223051e-10 9.121043639e-10 1.221219425e-09 9.664427588e-10 6.761362022e-10 4.40637813e-10 5.846732578e-10 4.495860055e-10 5.133217918e-10 4.655351067e-10 2.313055194e-10 6.31083531e-11 1.488204132e-10 2.317080273e-10 1.135447829e-10 1.898962332e-10 4.370465105e-10 4.676467513e-10 3.181591941e-10 3.782673508e-10 4.703961499e-10 5.090860388e-10 4.61046393e-10 6.764306157e-10 8.94084914e-10 6.801236191e-10 6.736558953e-10 6.499001035e-10 6.487724431e-10 6.801369136e-10 5.605703979e-10 6.855862706e-10 9.026654666e-10 6.564233376e-10 7.10524654e-10 2.198441812e-10 1.727103882e-10 2.735352543e-10 1.904605497e-10 2.341734286e-10 2.876160238e-10 3.930559159e-10 3.379049461e-10 2.751125893e-10 3.190195378e-10 2.570018169e-10 4.31655014e-10 5.415587531e-10 5.375865001e-10 4.901031833e-10 3.085027451e-10 4.843200546e-10 3.478554912e-10 4.894639125e-10 3.850024602e-10 4.077134151e-10 4.620147034e-10 3.535279554e-10 2.192298021e-10 3.051186418e-10 3.646739983e-10 3.322148043e-10 2.58469347e-10 3.452515406e-10 2.865920402e-10 2.389198368e-10 4.84479894e-10 2.423931159e-10 3.282651414e-10 3.604061485e-10 2.179980715e-10 3.603778569e-10 3.528225142e-10 3.554133959e-10 3.340996765e-10 1.855328191e-10 3.866912405e-10 2.687933014e-10 4.005561475e-10 2.902972955e-10 3.538387704e-10 2.833497711e-10 3.376926256e-10 1.387316356e-10 3.388915839e-10 3.969957141e-10 2.086148234e-10 3.137850336e-10 3.150220367e-10 2.415857555e-10 3.157635526e-10 1.448097135e-10 3.148262981e-10 1.629630959e-10 2.028115815e-10 2.596213963e-10 2.261242226e-10 2.081478318e-10 2.071570457e-10 2.488914156e-10 2.28188052e-10 2.346010644e-10 1.506469104e-10 1.53934005e-10 1.121923199e-10 1.533201665e-10 1.318151317e-10 1.391642263e-10 1.485436228e-10 1.168894537e-10 2.639242203e-10 4.111234687e-10 8.922601761e-11 1.793085966e-10 3.310166443e-10 2.618600748e-10 1.224996075e-10 1.41731017e-10 1.704366074e-10 1.410888007e-10 1.034366341e-10 1.165506936e-10 1.669376018e-10 2.794146819e-11 4.268533506e-10 1.381521405e-10 1.478748824e-10 2.533204745e-10 1.37881064e-10 1.0706619e-10 3.509379288e-10 9.219775442e-11 9.344461162e-11 1.680965946e-10 3.566305337e-10 2.620947592e-10 +3.678336892e-10 9.198329382e-11 8.027731517e-11 2.510442549e-10 1.383655406e-10 2.614661761e-10 2.270183008e-10 1.247127621e-10 1.986259887e-10 1.46150751e-10 1.396011518e-10 1.451946771e-10 1.638293116e-10 1.391489135e-10 7.887365354e-11 2.483402585e-10 1.478204876e-10 1.218617885e-10 4.224579571e-10 3.670222298e-10 1.454700118e-10 1.395973673e-10 1.967654966e-10 2.312337503e-10 1.991418463e-10 4.123581524e-10 2.59374235e-10 3.655033428e-10 1.048177982e-10 1.92127825e-10 1.080733293e-10 2.548310444e-10 2.725401205e-10 1.079780793e-10 1.35500876e-10 1.699226686e-10 2.280628358e-10 1.917122872e-10 2.012952418e-10 3.657074229e-10 5.48690665e-10 2.651001321e-10 3.803926582e-10 3.518932364e-10 3.872966864e-10 4.203822701e-10 1.908775829e-10 2.538611008e-10 4.802343601e-10 3.069175133e-10 3.876239109e-10 2.771266909e-10 3.726794945e-10 3.970364282e-10 3.316372544e-10 1.94016377e-10 2.177984304e-10 2.894363276e-10 4.323617767e-10 3.339977896e-10 1.910647515e-10 2.374540393e-10 4.344134425e-10 3.267147067e-10 3.026420438e-10 3.606555179e-10 2.680710952e-10 3.235053115e-10 3.310388938e-10 3.663035665e-10 3.590385243e-10 2.849282395e-10 2.94403687e-10 3.776922708e-10 2.994153534e-10 2.456743384e-10 2.849305039e-10 3.381874517e-10 3.978068875e-10 3.894824876e-10 5.334972498e-10 4.472313042e-10 5.416240647e-10 4.228100966e-10 3.585637036e-10 5.213719039e-10 6.639045675e-10 4.382075703e-10 5.860854123e-10 3.123567166e-10 3.698899089e-10 3.281752044e-10 3.782724749e-10 3.562697525e-10 3.345239354e-10 2.652484559e-10 3.860774879e-10 2.500341092e-10 2.38719302e-10 1.725350284e-10 3.274632881e-10 2.542036138e-10 4.414251981e-10 9.057830657e-10 5.641336565e-10 5.814573424e-10 5.714514598e-10 6.985550331e-10 5.979146501e-10 5.571333957e-10 4.917398179e-10 7.656570143e-10 6.289945227e-10 4.269858776e-10 3.482829225e-10 5.195664443e-10 3.564460433e-10 5.621293226e-10 4.118203805e-10 4.923742756e-10 2.888517332e-10 1.609654414e-10 8.077347702e-11 3.849079688e-27 2.057547719e-10 2.745791319e-10 4.808158494e-10 5.070646274e-10 4.353982602e-10 5.606198656e-10 6.472709812e-10 8.481496746e-10 1.023044585e-09 9.734111923e-10 1.037097036e-09 9.265777104e-10 8.038486665e-10 9.105880848e-10 7.610040243e-10 6.907196107e-10 5.92959921e-10 5.058098342e-10 1.892458775e-10 2.137332006e-10 1.853662178e-10 1.781260544e-10 1.090134782e-10 1.561567959e-10 1.561791808e-10 1.618664294e-10 8.529357461e-11 1.265389683e-10 1.316625327e-10 1.204947916e-10 1.282445424e-10 1.709232661e-10 1.063284004e-10 2.835883599e-10 3.973733228e-10 6.110589747e-10 7.052979734e-10 7.942753652e-10 8.700089616e-10 9.025333185e-10 7.62592925e-10 1.12512205e-09 1.037531826e-09 1.007935086e-09 8.689975481e-10 5.192407344e-10 5.825649331e-10 5.550565798e-10 5.403011052e-10 5.59817217e-10 2.658503541e-10 1.739703955e-10 8.776913686e-13 1.458463107e-10 1.626102883e-10 2.504628817e-10 4.278469037e-10 2.443920292e-10 4.698976429e-10 4.487585895e-10 4.926529415e-10 4.146747694e-10 4.46943363e-10 6.261866272e-10 8.460076455e-10 7.808627184e-10 8.527702e-10 5.483846289e-10 5.468849978e-10 7.871047234e-10 6.539853886e-10 7.662620156e-10 7.170045525e-10 8.36356947e-10 2.945624101e-10 2.292666488e-10 1.730441443e-10 2.045674564e-10 1.704642481e-10 1.681518729e-10 2.395866645e-10 4.023984552e-10 4.0281702e-10 4.176002385e-10 4.420980557e-10 3.430553495e-10 4.247334562e-10 3.1027956e-10 5.128242775e-10 5.558911682e-10 3.526687112e-10 5.72941633e-10 4.49218912e-10 5.710113854e-10 4.585725556e-10 4.61947928e-10 2.958200225e-10 3.06062732e-10 3.112998086e-10 3.898957367e-10 3.450261753e-10 2.398310124e-10 1.343765513e-10 2.888938427e-10 3.33035639e-10 3.978293193e-10 3.840303834e-10 3.013848229e-10 2.984955253e-10 2.019388148e-10 2.896661716e-10 3.195748182e-10 2.09003327e-10 2.893744696e-10 3.385033988e-10 1.994784801e-10 2.081701368e-10 3.534534069e-10 1.751009731e-10 3.03477383e-10 3.268987535e-10 3.149193957e-10 1.781407853e-10 3.124838667e-10 2.999617719e-10 4.099002947e-10 2.851336674e-10 1.878834922e-10 3.559524113e-10 2.967959085e-10 2.861517454e-10 2.299636925e-10 3.472050934e-10 3.924183348e-10 2.456336841e-10 2.42070406e-10 2.299649379e-10 1.100345819e-10 1.737840343e-10 1.180160006e-10 3.543461976e-10 3.070995782e-10 6.673583074e-11 3.96013431e-10 1.267141643e-10 3.416135285e-10 8.800675543e-11 2.649000794e-10 2.331796858e-10 1.181951803e-10 1.632024297e-10 3.30284443e-10 1.172320407e-10 1.800003578e-10 9.719311284e-11 2.264927074e-10 2.413110337e-10 3.879315356e-11 1.829267483e-10 2.396438753e-10 1.996085581e-10 6.194788713e-11 1.372013264e-10 4.33263809e-10 9.406684676e-11 1.245353179e-10 1.406650355e-10 2.751208286e-10 3.133874702e-10 1.944021026e-10 2.722005326e-10 1.702887369e-10 1.443456984e-10 1.120139824e-10 1.904639392e-10 2.092630222e-10 +1.232412227e-10 1.560769983e-10 1.35195688e-10 3.577286149e-11 1.706439158e-10 2.073169875e-10 8.456413545e-11 9.038626467e-11 1.549108549e-10 1.71332732e-10 3.479435272e-10 7.004007612e-11 2.045415911e-10 1.1225933e-10 1.718912384e-10 1.07302478e-10 2.347910649e-10 1.013019238e-10 1.49060576e-10 1.656981922e-10 4.31855528e-10 1.404404529e-10 1.892833247e-10 1.331560876e-10 1.565492971e-10 4.577339572e-10 3.36074412e-10 2.106411659e-10 1.223296506e-10 1.146397411e-10 2.614852763e-10 1.329534962e-10 3.465168158e-10 2.689800017e-10 2.174198969e-10 1.062732834e-10 1.692646206e-10 1.974501794e-10 2.861240954e-10 1.94275727e-10 2.017918406e-10 3.881513912e-10 2.188056817e-10 3.439502392e-10 2.90682247e-10 2.089155077e-10 3.277058909e-10 4.349128974e-10 2.756560132e-10 2.543990596e-10 3.423279023e-10 5.793953473e-10 4.153163758e-10 2.309255282e-10 2.477742328e-10 3.088033082e-10 1.711049262e-10 4.619729965e-10 2.322581137e-10 2.745359544e-10 1.802666035e-10 3.599573379e-10 3.7238797e-10 2.672420238e-10 4.476478761e-10 3.214783505e-10 2.861767329e-10 2.969841188e-10 2.717974803e-10 2.577720671e-10 3.200235294e-10 4.065481933e-10 2.344497902e-10 3.974732948e-10 2.835787359e-10 3.42557855e-10 2.973846078e-10 3.011235133e-10 3.076099982e-10 4.487749309e-10 4.421050905e-10 5.378231178e-10 4.251533639e-10 4.103620038e-10 2.853291504e-10 4.602143918e-10 4.059557454e-10 2.993341107e-10 4.093974394e-10 4.140652992e-10 2.945019534e-10 5.848910225e-10 4.584316897e-10 3.076637292e-10 3.300937295e-10 3.380880855e-10 1.712141718e-10 8.940897158e-11 2.212022215e-10 2.694164105e-10 4.387580525e-10 7.384211911e-10 5.128234609e-10 6.643588279e-10 6.460314207e-10 6.320945702e-10 6.707673999e-10 6.135479598e-10 4.440333638e-10 7.175555985e-10 9.298071863e-10 6.429020282e-10 5.887220149e-10 4.597961168e-10 5.272880566e-10 5.073875228e-10 4.165637785e-10 5.562704043e-10 5.948317463e-10 4.034734743e-10 2.330117655e-10 1.237259766e-11 1.500271911e-10 8.002409566e-11 1.160608581e-10 4.582880875e-10 4.949368903e-10 5.313408322e-10 5.736537365e-10 5.394230303e-10 6.73629374e-10 6.741969907e-10 9.306442301e-10 8.826213327e-10 9.497815741e-10 8.465494587e-10 8.321962966e-10 8.714549194e-10 7.194239992e-10 5.66581941e-10 4.24888859e-10 3.049250523e-10 1.958085432e-10 1.35511606e-10 7.87010882e-11 1.240014341e-10 1.352072859e-10 1.521876673e-10 2.827368085e-16 1.34208141e-10 8.12525022e-13 1.704822733e-10 1.100298505e-10 1.817753635e-10 1.617942705e-13 1.251497599e-10 2.876723323e-10 2.249702011e-10 2.079076669e-10 3.733337963e-10 5.451440222e-10 7.054283399e-10 7.482045475e-10 8.241492481e-10 1.008075062e-09 8.576452929e-10 1.141405425e-09 9.305865518e-10 8.00149929e-10 7.317808792e-10 5.138356607e-10 4.703055317e-10 6.200550211e-10 5.707112e-10 4.274388717e-10 1.358046518e-10 1.554804608e-11 2.473598834e-11 1.385923514e-10 1.950247373e-10 4.188598427e-10 5.384520786e-10 3.588376462e-10 4.900072786e-10 5.245085288e-10 3.139653417e-10 4.478594226e-10 5.312371322e-10 7.660196127e-10 6.413282912e-10 6.456939656e-10 6.871269867e-10 9.287986834e-10 6.552202185e-10 5.792023839e-10 6.860005598e-10 5.291922185e-10 6.56236488e-10 6.977847039e-10 3.429635334e-10 2.463484363e-10 1.106368772e-10 1.183919119e-10 3.450925201e-10 3.643029128e-10 2.896960484e-10 3.384923649e-10 4.470094786e-10 5.909252997e-10 4.844547615e-10 5.200158154e-10 4.076670363e-10 5.407139794e-10 3.683097516e-10 4.513063858e-10 4.123308038e-10 6.71801718e-10 4.205737476e-10 3.957746369e-10 2.345021859e-10 4.467562549e-10 4.031448723e-10 2.369866226e-10 2.486951805e-10 3.418272258e-10 3.025739579e-10 3.343542082e-10 3.136084952e-10 2.332702847e-10 4.495485143e-10 3.694263291e-10 3.495340732e-10 2.486966691e-10 4.302393335e-10 3.105532305e-10 2.03598344e-10 1.989676137e-10 2.055664346e-10 2.669198342e-10 3.766636956e-10 2.572647469e-10 2.639263672e-10 3.356777632e-10 2.744067722e-10 2.502567989e-10 2.450132322e-10 2.885268108e-10 2.325390125e-10 3.176743662e-10 3.87720134e-10 3.722855595e-10 2.754512624e-10 2.463270058e-10 4.510508183e-10 3.76832974e-10 5.032516785e-10 2.041797864e-10 2.252382754e-10 4.7800533e-10 3.098006296e-10 1.746406338e-10 2.286190036e-10 2.946941394e-10 2.545882152e-10 1.726149805e-10 2.090550445e-10 1.718482071e-10 1.865491223e-10 7.443468537e-11 3.647355874e-10 1.500138382e-10 3.14981004e-10 3.666545945e-10 3.095283477e-10 1.732203356e-10 2.951176406e-10 4.31447131e-10 4.038667022e-10 1.311705475e-10 4.123639099e-10 1.250323311e-10 1.930477317e-10 1.797814936e-10 1.582481765e-10 1.20160224e-10 1.36583102e-10 2.420088022e-10 2.352355445e-10 2.259335376e-10 1.058350712e-10 2.916297716e-10 1.939577144e-10 8.982578867e-11 3.721304506e-10 2.486479384e-10 4.724771775e-11 1.996492187e-10 2.404534703e-10 4.412356261e-10 1.536834887e-10 +3.860197478e-10 1.130673061e-10 1.512388312e-10 2.599104419e-10 1.934097194e-10 2.975014643e-10 1.032610213e-10 7.529271343e-11 1.34706949e-10 3.092422902e-10 1.963332255e-10 9.125930393e-11 1.49995276e-10 3.838384782e-10 1.548918644e-10 1.69336744e-10 6.991868915e-11 1.899443014e-10 3.39176466e-10 1.08790035e-10 1.213794576e-10 1.629674526e-10 2.078164103e-10 1.660540645e-10 1.406771761e-10 2.138438994e-10 9.518576724e-11 1.787087972e-10 1.934707447e-10 2.164594489e-10 1.389533593e-10 3.192349278e-10 2.61133347e-10 1.157397049e-10 1.395182897e-10 2.241908464e-10 6.644919325e-11 1.800663478e-10 1.134208213e-10 2.106889142e-10 3.011444602e-10 3.810095827e-10 2.903280257e-10 3.389815376e-10 2.588100098e-10 2.436815488e-10 3.051520155e-10 2.930325828e-10 5.02531258e-10 3.116579039e-10 2.916668146e-10 1.926841324e-10 2.993181816e-10 2.205735221e-10 3.723240178e-10 1.716814953e-10 1.666491442e-10 1.692130368e-10 3.681055115e-10 2.371115802e-10 3.382569683e-10 3.603288076e-10 2.044765279e-10 2.884532442e-10 3.113756783e-10 2.655269163e-10 3.442318787e-10 2.806776773e-10 5.233397623e-10 4.473881353e-10 4.163657185e-10 4.066342252e-10 4.030775217e-10 3.541443027e-10 3.040236264e-10 2.763174065e-10 4.403093518e-10 2.145075209e-10 3.545305587e-10 3.636735845e-10 3.790481531e-10 5.801630355e-10 4.49675074e-10 5.008811038e-10 5.322820143e-10 5.76093662e-10 3.53696967e-10 3.561091252e-10 4.673544596e-10 4.26720443e-10 5.359990242e-10 3.992294439e-10 4.282376878e-10 3.683744381e-10 4.053832548e-10 2.16827543e-10 1.979334444e-10 1.906884049e-10 3.417749783e-10 1.945429255e-10 3.008975047e-10 5.766420169e-10 5.469966317e-10 5.884191092e-10 6.198613422e-10 8.772460835e-10 6.141246093e-10 8.780726099e-10 6.220446749e-10 7.360489385e-10 6.10779369e-10 6.687590863e-10 5.692378381e-10 4.349795875e-10 6.364614816e-10 4.543214872e-10 5.079786822e-10 4.57569884e-10 4.113471723e-10 3.452246861e-10 1.407230036e-10 1.174705774e-10 5.695851066e-11 1.464945018e-10 1.416322576e-10 4.79202671e-10 5.452891521e-10 5.326054189e-10 4.543141712e-10 6.493553052e-10 8.601034489e-10 8.20243777e-10 7.96060426e-10 1.015896037e-09 8.327737263e-10 8.177516947e-10 8.899472988e-10 7.335510165e-10 5.935857324e-10 4.628983783e-10 2.654362335e-10 2.037836167e-10 8.831006437e-11 2.146089644e-10 1.90767885e-10 1.93300334e-12 1.204281304e-10 1.938242701e-10 3.734388873e-11 1.746183082e-10 1.738235685e-10 1.954037258e-10 1.211509432e-10 2.400659894e-10 1.11082694e-10 1.278570141e-10 1.392098393e-10 1.09820121e-10 2.002955416e-10 3.282153138e-10 5.014251701e-10 5.909485719e-10 6.565494108e-10 8.854948645e-10 9.464965296e-10 9.219623241e-10 9.364204775e-10 1.007414154e-09 8.797323707e-10 7.924077086e-10 6.138136894e-10 5.63386091e-10 5.807365892e-10 5.999343975e-10 4.182629353e-10 2.973746879e-10 7.843997903e-11 4.371175263e-14 1.354332087e-10 1.432707374e-10 2.574778526e-10 4.292305333e-10 4.867995457e-10 5.91342252e-10 4.292753904e-10 4.473675836e-10 5.551788595e-10 5.758398945e-10 9.04937608e-10 8.264834521e-10 6.221231122e-10 4.870207654e-10 6.087794586e-10 6.45345564e-10 4.814520676e-10 6.220793397e-10 7.41907735e-10 6.46032756e-10 4.526069886e-10 3.310025543e-10 3.121817968e-10 3.091152064e-10 2.663103388e-10 2.14167772e-10 3.656819116e-10 3.198210758e-10 2.130711228e-10 5.103383805e-10 3.461823014e-10 3.185614045e-10 3.088954532e-10 1.744851712e-10 4.465471742e-10 3.959027211e-10 5.833797331e-10 5.714410547e-10 3.859297626e-10 5.99409629e-10 5.707291846e-10 5.181102735e-10 2.465456245e-10 3.262334871e-10 3.719392778e-10 4.18037268e-10 2.96905006e-10 5.111428906e-10 3.929308069e-10 2.150276017e-10 2.354324921e-10 3.846095747e-10 2.751537703e-10 2.604405125e-10 3.142770004e-10 3.795984863e-10 2.83960257e-10 2.309032723e-10 4.409218293e-10 3.462229858e-10 3.285976007e-10 3.30656338e-10 4.454941973e-10 1.932273328e-10 2.775970933e-10 2.544129057e-10 3.456437514e-10 4.619516034e-10 2.268686797e-10 3.169883011e-10 2.744623396e-10 1.774187757e-10 4.159319559e-10 4.681057432e-10 4.14002325e-10 2.628924058e-10 1.93740448e-10 2.090751178e-10 4.863339162e-10 4.040123482e-10 2.234748846e-10 1.93410697e-10 3.988222449e-10 2.14667121e-10 2.492691329e-10 1.711462234e-10 2.718193313e-10 1.931606232e-10 3.022360599e-10 2.269906943e-10 1.657033694e-10 2.083111924e-10 2.587043314e-10 7.353715053e-11 1.305618805e-10 1.501157554e-10 3.526382296e-10 2.233978233e-10 1.992639929e-10 3.522403067e-10 1.49053731e-10 3.812787173e-10 1.66775315e-10 1.144650273e-10 1.681305935e-10 1.854010788e-10 1.955469055e-10 3.131754909e-10 1.796096598e-10 1.675111801e-10 1.379246511e-10 7.49898902e-11 1.379017365e-10 1.663288094e-10 2.074532035e-10 7.826695031e-11 2.302143788e-10 1.684108225e-10 9.402980693e-11 1.167887128e-10 1.615401758e-10 4.603928012e-10 +2.206193397e-10 1.505235566e-10 3.308167847e-10 3.396164053e-10 1.005391034e-10 4.118515119e-10 7.103024523e-11 1.922044834e-10 7.771372404e-11 2.7265229e-10 1.615670198e-10 4.19037676e-10 3.801547565e-10 9.829273068e-11 2.014844813e-10 1.902813466e-10 1.456414408e-10 1.800518763e-10 1.698348505e-10 9.708462117e-11 3.691913483e-10 4.86107999e-11 1.836811875e-10 1.213290729e-10 2.779581678e-10 1.086201035e-10 2.706029517e-10 1.323795061e-10 1.652403986e-10 2.095510511e-10 1.512056148e-10 3.768612281e-10 2.198161356e-10 2.908709147e-10 1.750385545e-10 1.081727571e-10 1.091648679e-10 1.615537985e-10 1.659699515e-10 3.124646072e-10 3.110577804e-10 2.814818261e-10 4.855155751e-10 2.284410637e-10 2.035196235e-10 3.934942944e-10 3.163492771e-10 3.340628819e-10 2.573158961e-10 1.82559978e-10 3.500421857e-10 2.56901705e-10 2.98029025e-10 3.054720318e-10 2.918026361e-10 3.921319216e-10 2.933432621e-10 3.07379888e-10 3.263320594e-10 2.857170621e-10 4.992132079e-10 1.982141461e-10 2.706606065e-10 3.177377666e-10 1.999184932e-10 2.727471078e-10 3.576097076e-10 3.481437556e-10 2.520126564e-10 1.797278928e-10 5.361889686e-10 3.048634829e-10 2.641242886e-10 2.655079359e-10 3.645180242e-10 3.621103317e-10 3.555664817e-10 4.197167276e-10 3.444446939e-10 3.910200824e-10 3.657242692e-10 3.478797999e-10 5.420035592e-10 4.07593566e-10 3.792696779e-10 3.86569465e-10 4.650431132e-10 3.784228683e-10 4.420024095e-10 2.972631732e-10 3.909304506e-10 3.872963222e-10 3.635434368e-10 3.68256612e-10 3.698026567e-10 3.428349833e-10 2.681190468e-10 7.573658841e-11 1.433822286e-10 2.21470961e-10 2.974475171e-10 6.683205013e-10 5.065814739e-10 4.143791796e-10 5.569368902e-10 6.604210742e-10 8.336709403e-10 6.546559033e-10 6.082356837e-10 7.163966887e-10 5.778366106e-10 6.913110176e-10 6.250894376e-10 4.521255879e-10 4.03948013e-10 5.805125329e-10 3.92781551e-10 4.409107857e-10 4.175339492e-10 3.349037577e-10 1.579787184e-10 1.355862413e-10 8.554156127e-11 1.479639469e-10 2.544050472e-10 3.875512553e-10 6.057978312e-10 5.639161611e-10 5.761068389e-10 6.817689596e-10 8.302164653e-10 9.553725903e-10 8.558361367e-10 9.425258028e-10 7.567251359e-10 9.51365609e-10 7.608458425e-10 5.565960042e-10 4.98568158e-10 2.522725849e-10 5.960071935e-11 1.477824738e-10 0 7.268884445e-11 1.663283365e-10 1.024189148e-10 2.143711478e-10 6.968925715e-11 1.328369842e-10 6.191569125e-15 1.153477062e-10 1.202436223e-10 5.052011743e-11 6.398535201e-15 2.566972843e-10 1.160012462e-10 1.049134414e-10 3.880299491e-11 9.280456304e-15 1.640181342e-10 2.219949283e-10 4.46797031e-10 6.530349212e-10 8.628505167e-10 9.868452102e-10 7.93122425e-10 8.377333832e-10 9.225131305e-10 8.856503809e-10 9.062112619e-10 6.701935048e-10 4.683252228e-10 4.376490471e-10 6.472571794e-10 4.616956115e-10 3.578132795e-10 1.45058527e-21 2.021249998e-10 1.110934329e-10 1.372137001e-10 2.875489117e-10 4.380549704e-10 4.232601663e-10 3.242740474e-10 5.325954772e-10 4.861054685e-10 5.542260362e-10 5.602005643e-10 6.750277199e-10 7.114750823e-10 7.698828495e-10 6.70088674e-10 7.229734223e-10 5.61097151e-10 5.809523184e-10 5.76155791e-10 8.042057611e-10 8.234394157e-10 7.571842006e-10 2.581754068e-10 2.943791215e-10 2.876427977e-10 2.141205847e-10 2.505181183e-10 3.355306843e-10 3.508262524e-10 3.849363002e-10 4.75325192e-10 4.394057155e-10 3.105763137e-10 3.591515425e-10 2.413438759e-10 3.904278716e-10 5.409140452e-10 3.605657097e-10 3.921687332e-10 4.718813076e-10 3.448597329e-10 4.113448709e-10 5.402397336e-10 3.814899164e-10 3.180210911e-10 2.534492476e-10 2.778630943e-10 2.514181123e-10 2.738189071e-10 3.095945996e-10 3.628369857e-10 2.035092e-10 5.025755161e-10 3.90268478e-10 2.204214642e-10 2.554691458e-10 2.328368354e-10 4.731567427e-10 2.801991685e-10 2.564135945e-10 3.174216355e-10 1.815203477e-10 2.845686664e-10 2.04099668e-10 3.931041938e-10 2.503408952e-10 2.63597134e-10 2.406362484e-10 2.360694258e-10 2.313644438e-10 2.876744536e-10 3.948913181e-10 2.57587981e-10 1.751250057e-10 1.935600021e-10 3.159708371e-10 2.796901522e-10 3.68077738e-10 2.470084539e-10 2.99030451e-10 3.253184541e-10 3.287008659e-10 2.163385849e-10 3.488110516e-10 2.854296346e-10 3.265759204e-10 1.378636187e-10 5.538914222e-11 2.433417382e-10 2.654646891e-10 9.28838426e-11 1.489634483e-10 1.027219496e-10 1.366383374e-10 2.565728275e-10 2.790682916e-10 3.501721473e-10 2.768246166e-10 1.998974798e-10 3.447447929e-10 2.332494522e-10 3.446087644e-10 2.735808426e-10 1.32990498e-10 1.403948663e-10 1.170572566e-10 1.309089988e-10 3.454858451e-10 2.015917233e-10 2.959730957e-10 1.311975889e-10 3.227771829e-10 2.470398375e-10 4.303541752e-11 1.340481107e-10 3.772558734e-10 7.428848051e-11 1.928955377e-10 2.631537419e-10 3.289482909e-10 4.271321174e-10 6.121814512e-11 1.818609367e-10 +1.13866189e-10 3.344112935e-10 2.681546272e-10 1.691630468e-10 8.276469209e-11 2.231772677e-10 3.240413161e-10 2.477623113e-10 1.032042208e-10 3.563999521e-10 7.227815697e-11 5.731136592e-11 1.89187644e-10 3.395094079e-10 1.876694652e-10 2.840063224e-10 2.420930001e-10 1.624791486e-10 8.375406543e-11 1.40796754e-10 1.571495735e-10 1.58265825e-10 1.204101491e-10 1.525597097e-10 3.487069126e-10 2.017433036e-10 3.365399205e-10 1.655966752e-10 2.334714916e-10 2.140344343e-10 3.053008921e-10 3.084423736e-10 3.718693867e-10 1.387666684e-10 2.73142539e-10 1.713448956e-10 8.877553163e-11 1.59014743e-10 3.200255522e-10 1.52110357e-10 2.209916969e-10 3.889263004e-10 2.72717498e-10 2.724873984e-10 3.602350187e-10 2.558159055e-10 1.708494103e-10 2.680906118e-10 2.327316931e-10 2.918682662e-10 2.571030087e-10 1.690181085e-10 1.719527893e-10 2.589827296e-10 2.810707421e-10 2.333335409e-10 3.801160444e-10 1.298118965e-10 2.33124277e-10 3.09386119e-10 4.539851423e-10 2.76195071e-10 3.561585852e-10 3.036183216e-10 2.98399359e-10 3.123257016e-10 3.277350186e-10 3.570028815e-10 2.78356485e-10 3.048350001e-10 3.387439047e-10 3.725289876e-10 3.202712645e-10 3.090099282e-10 2.248330793e-10 2.151580391e-10 3.163177034e-10 3.031685488e-10 4.134822753e-10 3.988509571e-10 4.492830682e-10 4.73982536e-10 4.879913729e-10 4.05487651e-10 4.092582937e-10 4.446823536e-10 3.922638123e-10 4.83901672e-10 3.135492294e-10 3.132806561e-10 2.555846839e-10 3.895859754e-10 3.202104262e-10 3.557902112e-10 3.731375714e-10 2.292412787e-10 3.304027137e-10 2.177463565e-10 2.330031711e-10 3.423926019e-10 7.655169914e-10 8.622927453e-10 6.952529905e-10 5.479316772e-10 7.818314025e-10 6.87146341e-10 8.32377958e-10 5.997077044e-10 6.317769257e-10 7.448782336e-10 5.552079545e-10 7.845745231e-10 5.088773914e-10 5.643706832e-10 4.634865225e-10 5.402356131e-10 5.303018333e-10 5.068318804e-10 4.484121141e-10 2.318342351e-10 1.644945645e-10 1.15011654e-10 1.551625348e-10 8.661497675e-12 3.143846883e-10 5.501254607e-10 4.9950735e-10 4.855601184e-10 3.732563806e-10 6.63478201e-10 1.056701691e-09 1.031295715e-09 9.856290265e-10 9.079932477e-10 8.007556942e-10 9.16943326e-10 6.356879779e-10 4.869685676e-10 2.79967222e-10 2.072384652e-10 1.782366627e-10 1.086871204e-10 1.247449544e-10 1.479238499e-10 1.056300156e-10 1.572816354e-10 1.321979124e-10 1.073955085e-10 1.019150766e-10 0 2.111160152e-10 0 1.083287962e-10 1.54677642e-10 1.779265804e-10 6.689002084e-11 5.961915456e-11 1.32758102e-10 7.255241904e-11 1.380679631e-10 1.160968273e-10 2.602750057e-10 5.840715133e-10 6.513901051e-10 9.186115592e-10 8.810895807e-10 9.159381948e-10 1.00468788e-09 1.011363965e-09 9.078938477e-10 6.165667649e-10 6.267710764e-10 4.421602245e-10 5.373689259e-10 5.003806201e-10 5.605273899e-10 1.569718357e-10 2.028674923e-15 4.013193593e-14 7.532583387e-14 2.791911709e-10 4.13022699e-10 4.241201777e-10 4.303518127e-10 5.764057086e-10 4.355420192e-10 5.097251764e-10 5.17245049e-10 7.10544329e-10 6.518999108e-10 5.037828896e-10 6.050194327e-10 6.010353629e-10 4.49237884e-10 5.470722946e-10 7.996600104e-10 5.395938951e-10 6.710137858e-10 7.346325708e-10 5.892753316e-10 2.640058993e-10 2.523232374e-10 1.887135957e-10 1.61044055e-10 2.391069046e-10 3.4531015e-10 4.620188804e-10 2.209150015e-10 3.50260092e-10 2.836197058e-10 4.264728683e-10 5.415030745e-10 5.965372321e-10 4.824372601e-10 4.86872677e-10 5.643070947e-10 6.276386654e-10 5.583913786e-10 5.436238274e-10 3.211463989e-10 5.570434417e-10 4.884966852e-10 3.255309839e-10 1.666351947e-10 3.018363984e-10 3.659221256e-10 3.867244401e-10 2.41142036e-10 3.52359849e-10 2.37968853e-10 3.540353684e-10 3.329405459e-10 3.604257884e-10 3.579811419e-10 3.245203572e-10 4.170917872e-10 3.096852234e-10 2.837649485e-10 2.320833345e-10 1.42472337e-10 2.06559476e-10 3.519959677e-10 2.650101779e-10 3.671154276e-10 1.293076077e-10 2.783745339e-10 2.135302459e-10 1.619159036e-10 3.23338697e-10 3.511216302e-10 2.855762365e-10 2.393213922e-10 2.144905513e-10 3.576325223e-10 4.085854252e-10 1.827411598e-10 2.772034225e-10 2.251907314e-10 2.455964068e-10 3.785852404e-10 2.276237773e-10 1.732696187e-10 3.108168385e-10 2.027046901e-10 1.321869839e-10 2.527652172e-10 6.493170352e-10 1.83721893e-10 2.480349377e-10 1.608351878e-10 1.457112235e-10 1.261445406e-10 3.003755353e-10 2.682119242e-10 1.157447463e-10 8.050084979e-11 1.542474012e-10 2.834943862e-10 3.193543501e-10 2.050345931e-10 1.721193202e-10 1.539597092e-10 1.222322868e-10 3.921936918e-10 4.074501639e-10 4.497629665e-10 6.342093469e-11 2.184268303e-10 1.444962645e-10 1.477873745e-10 2.789975025e-10 3.404715293e-10 2.381347257e-10 1.385518648e-10 2.366951347e-10 2.163824654e-10 1.192036218e-10 1.604282962e-10 3.516072514e-10 7.133351712e-11 +1.707300437e-10 2.077891196e-10 1.999513508e-10 3.198407715e-11 1.264837998e-10 1.906041792e-10 1.481273867e-10 1.17842421e-10 1.255946091e-10 2.559024379e-10 9.948011051e-11 1.597508135e-10 2.941064041e-10 3.607889149e-10 1.690061413e-10 1.777687351e-10 1.190272164e-10 1.283815916e-10 2.509112556e-10 7.386887055e-11 1.957883916e-10 1.81844009e-10 1.363832429e-10 2.833616579e-10 2.631062707e-10 1.328105442e-10 8.484295886e-11 4.366220605e-10 1.915693253e-10 1.423087438e-10 1.340869975e-10 2.681316543e-10 2.19632583e-10 1.179501319e-10 1.955397988e-10 2.153215438e-10 1.372387547e-10 2.294240816e-10 2.277205707e-10 1.762472554e-10 3.257656639e-10 4.210772583e-10 2.475189756e-10 3.844329506e-10 4.583856874e-10 3.403733061e-10 3.135774884e-10 3.322025201e-10 4.496434865e-10 3.521175396e-10 2.980760673e-10 2.438779391e-10 1.231493444e-10 2.199871359e-10 2.363629378e-10 2.257893575e-10 2.847898416e-10 2.593996751e-10 2.357209424e-10 2.167907693e-10 2.909905505e-10 2.757963359e-10 3.337902537e-10 1.850440466e-10 2.771834485e-10 2.983330604e-10 2.662361515e-10 3.997560436e-10 2.266768253e-10 3.202571404e-10 3.469478213e-10 4.12184289e-10 4.431746118e-10 2.331410078e-10 2.553168779e-10 3.875853051e-10 4.168015983e-10 2.532244883e-10 3.170125945e-10 4.742801272e-10 3.680132571e-10 5.246271011e-10 5.740456175e-10 4.617246913e-10 5.790137083e-10 3.341157935e-10 3.814857124e-10 3.929283253e-10 4.930137925e-10 3.991605549e-10 4.853297439e-10 3.538172137e-10 4.084178646e-10 3.477021612e-10 3.257689883e-10 3.952771664e-10 1.889685102e-10 1.823365513e-10 2.318039455e-10 2.445590577e-10 4.435942481e-10 7.715076969e-10 5.950340654e-10 9.870388181e-10 7.67109124e-10 5.596156218e-10 8.729644169e-10 4.824112253e-10 6.24525678e-10 5.642062689e-10 8.860079294e-10 7.741581151e-10 6.235918221e-10 4.940521504e-10 5.089484793e-10 5.831704206e-10 4.587183996e-10 4.825340211e-10 4.871297703e-10 1.454142545e-10 1.587092048e-10 4.892880721e-11 9.690304899e-11 2.262697083e-10 3.767188312e-10 4.809735597e-10 5.839849841e-10 5.664407769e-10 6.091228473e-10 8.091040913e-10 9.601228389e-10 9.859224689e-10 1.06361027e-09 9.755270725e-10 8.575400457e-10 7.970414002e-10 6.530073257e-10 4.452330459e-10 1.34826675e-10 1.320338307e-10 1.606915088e-10 1.448251694e-10 9.000494172e-11 2.818329405e-16 2.509190515e-10 1.602957267e-10 1.228282426e-10 2.039234049e-10 1.146625622e-10 7.564413934e-11 1.547992317e-10 1.341953705e-10 1.585523841e-10 5.956019976e-11 1.664160793e-10 1.551433053e-10 1.229193439e-10 1.262335546e-10 1.740997034e-10 2.364976643e-10 9.436160015e-11 1.347336369e-10 4.250723149e-10 4.944135178e-10 7.562109941e-10 8.360811431e-10 9.386555767e-10 9.325497627e-10 1.134380327e-09 1.038522859e-09 8.253544724e-10 6.365170294e-10 5.162068774e-10 4.685600095e-10 5.894467052e-10 4.868438378e-10 1.312565774e-10 2.336200618e-10 2.64429521e-10 1.226064902e-10 2.403003985e-10 3.903008204e-10 4.204573965e-10 4.115495122e-10 4.281861833e-10 4.699985466e-10 5.54731118e-10 5.012544671e-10 6.907453933e-10 8.228672315e-10 5.91252655e-10 6.755386044e-10 9.573124451e-10 5.746680528e-10 8.571260241e-10 7.539159988e-10 4.655805887e-10 9.521615472e-10 5.934371826e-10 2.174731898e-10 2.367953987e-10 2.71527063e-10 1.665873702e-10 2.011787836e-10 3.092799434e-10 3.678153734e-10 3.28002931e-10 3.10623565e-10 4.418293769e-10 5.323201056e-10 4.505812921e-10 3.643873558e-10 3.593314105e-10 4.121318149e-10 5.555922414e-10 5.100188392e-10 6.869987939e-10 4.025420715e-10 3.61808014e-10 3.206789539e-10 5.549337516e-10 3.867575615e-10 5.514715956e-10 2.78048132e-10 1.710102436e-10 1.623992296e-10 2.236841221e-10 3.397939556e-10 2.255483981e-10 3.448436002e-10 2.186685042e-10 2.174756508e-10 3.000624585e-10 2.276494887e-10 2.573476611e-10 3.029829642e-10 3.933382661e-10 2.293378509e-10 3.747172489e-10 3.186941241e-10 4.771808658e-10 1.901706203e-10 2.486351055e-10 3.086016845e-10 2.298755141e-10 2.795596368e-10 3.599171764e-10 4.024373227e-10 1.983163591e-10 2.319866087e-10 2.588141993e-10 2.575252723e-10 4.782789656e-10 2.807500416e-10 4.561656816e-10 2.170678664e-10 3.065517653e-10 2.943131566e-10 4.476973673e-10 4.971606842e-10 2.568269269e-10 2.961905859e-10 2.311014311e-10 2.098915311e-10 8.505245422e-11 1.691538036e-10 1.538936513e-10 2.033035235e-10 2.809963731e-10 3.834382937e-10 2.134752943e-10 2.134043619e-10 2.706261305e-10 2.052370517e-10 3.377540579e-10 3.90123924e-10 2.777629652e-10 5.605857311e-10 2.602024147e-10 1.67882338e-10 3.946295521e-10 1.169491316e-10 3.174881505e-10 7.267479698e-11 8.224467874e-11 1.823702381e-10 3.096682985e-10 1.176935341e-10 2.174999591e-10 6.033880564e-11 2.176115311e-10 3.347769107e-10 1.638121803e-10 1.625830999e-10 3.093399372e-10 1.946224578e-10 1.872194537e-10 6.378507951e-11 1.555538944e-10 1.597287672e-10 +1.870944304e-10 4.735057547e-11 1.17426292e-10 2.989148794e-10 1.902832604e-10 3.129170856e-10 2.877920194e-10 2.875770402e-10 1.810533987e-10 2.300729662e-10 4.287597179e-10 1.373677518e-10 3.731049157e-10 1.303032373e-10 8.958783038e-11 3.620421112e-10 1.150708092e-10 9.148723173e-11 2.662946322e-10 1.700908909e-10 8.316794044e-11 2.393277998e-10 2.305145192e-10 1.751537022e-10 9.601912682e-11 2.242752175e-10 3.510515424e-10 3.57498752e-10 2.724790968e-10 1.369440362e-10 3.120299613e-10 4.301344278e-10 2.85854781e-10 8.184627922e-11 2.439393392e-10 2.356245369e-10 8.125762415e-11 2.495145693e-10 2.087761156e-10 3.329874308e-10 1.417246464e-10 2.82161063e-10 3.420716501e-10 4.0841439e-10 3.476627978e-10 2.436420235e-10 1.70593397e-10 3.174535835e-10 1.653115568e-10 1.710452844e-10 2.227494913e-10 2.470422406e-10 3.553059864e-10 3.039922225e-10 3.762876763e-10 3.993910837e-10 2.793315458e-10 4.400812079e-10 2.126745636e-10 2.590050343e-10 2.613299067e-10 3.744195149e-10 2.750805468e-10 3.452625145e-10 2.770711261e-10 4.243394353e-10 3.739206064e-10 3.538568031e-10 1.578701523e-10 3.443063471e-10 2.965896843e-10 3.370755177e-10 3.898696716e-10 4.376229999e-10 3.035278205e-10 2.61846957e-10 2.429757475e-10 2.589622331e-10 4.725103395e-10 5.075220633e-10 3.84426578e-10 3.795001019e-10 6.611952588e-10 5.080297799e-10 5.373026036e-10 3.844654617e-10 3.631048643e-10 4.148625481e-10 5.147632698e-10 4.014635214e-10 4.631981013e-10 5.382540894e-10 4.60697278e-10 3.615893873e-10 3.91206871e-10 2.238098672e-10 6.303467823e-11 1.669047859e-10 2.621397678e-10 2.179606655e-10 5.349797277e-10 6.399733586e-10 7.571745328e-10 6.792327286e-10 5.904142345e-10 5.388488028e-10 8.026113284e-10 6.760312082e-10 4.205861918e-10 8.181261878e-10 8.959291126e-10 5.834840755e-10 5.396421468e-10 4.727973669e-10 5.593967615e-10 4.901975891e-10 4.355279823e-10 4.325834932e-10 2.611061347e-10 4.892742392e-13 1.2762884e-10 2.565051182e-10 1.852545457e-10 3.344780801e-10 4.993906894e-10 5.317756616e-10 4.87906296e-10 4.692696922e-10 5.285388212e-10 8.24751723e-10 1.184708653e-09 1.284786835e-09 1.047856786e-09 8.704701892e-10 8.227914226e-10 7.520085556e-10 3.671216552e-10 3.604680505e-10 8.571566402e-11 9.39320185e-13 2.580267357e-10 4.19627476e-13 1.669870275e-10 1.277507467e-10 1.47402143e-10 1.523986626e-10 1.302808537e-10 1.300550721e-10 6.479303919e-11 1.444147332e-10 1.397010704e-10 8.333798976e-11 1.614248458e-10 1.291222518e-10 5.860597912e-16 5.638204604e-11 1.545062726e-10 2.38663792e-10 1.354608753e-12 1.528747866e-10 0 1.643924149e-10 2.741858639e-10 4.230526073e-10 7.29836327e-10 8.399016178e-10 9.901258502e-10 9.247806129e-10 9.184204069e-10 9.524789971e-10 1.009415755e-09 6.133251646e-10 6.166587746e-10 5.037734427e-10 4.646341626e-10 4.427154005e-10 2.674524719e-10 1.933310048e-10 9.338822867e-11 9.833006257e-11 9.73785275e-11 3.232227315e-10 4.49195098e-10 4.056705759e-10 3.641349015e-10 4.03504114e-10 3.755783655e-10 5.231615561e-10 6.675475202e-10 6.502412978e-10 7.102286187e-10 6.845190018e-10 5.913543245e-10 7.816491812e-10 6.217854046e-10 4.799076558e-10 8.619744442e-10 5.240106407e-10 7.099884508e-10 3.549519879e-10 1.374467442e-10 2.871780185e-10 2.782238617e-10 1.969782985e-10 2.822384388e-10 3.047270104e-10 4.171593128e-10 2.420934595e-10 4.061775149e-10 3.248410511e-10 4.859941794e-10 5.071107207e-10 2.58578313e-10 3.813261323e-10 4.709559276e-10 4.238072624e-10 5.357434583e-10 4.911231712e-10 6.216520245e-10 4.77326638e-10 1.91246607e-10 4.328773536e-10 3.737391048e-10 3.177061131e-10 4.215539559e-10 2.380528802e-10 3.79394747e-10 4.12394546e-10 3.208171145e-10 4.57450557e-10 4.124683323e-10 2.731707557e-10 2.062468741e-10 2.197501752e-10 2.63747088e-10 3.909184934e-10 4.414152717e-10 3.763860905e-10 3.324053841e-10 3.164131491e-10 5.302782356e-10 1.801227751e-10 2.808188599e-10 2.328489537e-10 2.73666338e-10 3.337633371e-10 2.575515581e-10 4.161740258e-10 3.265230088e-10 3.577815613e-10 2.358138359e-10 2.285602429e-10 2.131691934e-10 2.844932871e-10 3.150745912e-10 3.816931739e-10 4.164754542e-10 3.737904588e-10 3.875287026e-10 3.72830115e-10 2.101121845e-10 2.243183101e-10 3.130235094e-10 3.519232222e-10 2.479775005e-10 1.130621397e-10 9.954664481e-11 2.611319714e-10 1.742247541e-10 7.663748247e-11 3.055407629e-10 1.532805663e-10 2.232352278e-10 1.810363703e-10 2.749493897e-10 1.325464655e-10 2.955791779e-10 1.638171027e-10 8.336136119e-11 2.109173772e-10 4.857445284e-11 1.329097465e-10 1.326275389e-10 1.811812536e-10 1.009578505e-10 3.845351931e-10 1.836350295e-10 3.043466584e-10 1.13104826e-10 2.631635574e-10 1.031018623e-10 1.589416107e-10 1.72904825e-10 3.182637798e-10 1.553310653e-10 1.744704491e-10 2.312771794e-10 1.851958333e-10 1.19055352e-10 1.571477512e-10 +1.315269307e-10 1.010304411e-10 1.636047877e-10 9.578852963e-11 2.733613459e-10 1.479468639e-10 2.227251674e-10 2.978980725e-10 1.362897096e-10 2.077533028e-10 1.082513776e-10 1.735498745e-10 1.678781981e-10 1.40082442e-10 1.31934393e-10 1.784466723e-10 3.203283347e-10 1.699273335e-10 1.1863039e-10 1.264401016e-10 1.091666333e-10 3.36307536e-10 1.848710808e-10 2.772591054e-10 1.362492445e-10 2.724984804e-10 3.598726916e-10 3.321464223e-10 1.466093346e-10 1.617163949e-10 1.527559818e-10 2.285042212e-10 1.76236515e-10 2.696481426e-10 1.669330974e-10 2.179833929e-10 1.01805265e-10 2.261949768e-10 1.822975396e-10 1.359545766e-10 3.6930876e-10 2.523638092e-10 3.117798677e-10 3.253085267e-10 1.819994035e-10 2.579674571e-10 4.075615162e-10 1.725402636e-10 3.651834269e-10 3.329668751e-10 3.712991073e-10 4.789952827e-10 2.388691651e-10 2.546643035e-10 2.499577003e-10 4.302520445e-10 4.208090985e-10 1.119490571e-10 3.236704502e-10 1.980441246e-10 1.740817149e-10 2.499651077e-10 3.569721062e-10 2.786857871e-10 2.533746594e-10 2.656324886e-10 3.9973831e-10 2.76550962e-10 4.837416781e-10 4.300708738e-10 2.510891104e-10 2.737135327e-10 4.325872112e-10 3.902873252e-10 3.438102004e-10 3.107969684e-10 4.281384337e-10 1.752463461e-10 3.845010634e-10 3.679399505e-10 3.958341153e-10 5.970997425e-10 4.373919353e-10 3.392740551e-10 5.277470421e-10 5.4575197e-10 4.040739677e-10 4.657414153e-10 4.394647751e-10 5.259798452e-10 4.041272326e-10 4.740246123e-10 2.507983927e-10 3.727305511e-10 3.354621902e-10 2.252472189e-10 2.135187166e-10 3.175271531e-10 3.060805494e-10 3.19300074e-10 7.467150823e-10 6.240607385e-10 8.165352413e-10 7.805801444e-10 6.37975808e-10 8.296232234e-10 6.922371011e-10 7.423379015e-10 5.907658423e-10 7.934885998e-10 7.748691682e-10 5.781711848e-10 6.432074759e-10 4.503276635e-10 4.106310414e-10 4.802358612e-10 4.471942641e-10 4.212928755e-10 3.286493849e-10 9.690520615e-11 1.393941559e-10 1.778479015e-10 1.982547183e-10 1.973188038e-10 4.351853363e-10 4.83254982e-10 6.008123387e-10 5.859157888e-10 7.641788532e-10 8.36275925e-10 1.012321663e-09 9.62485051e-10 9.238986308e-10 9.817312133e-10 7.874562592e-10 6.412100326e-10 3.724966296e-10 1.440692805e-10 4.577273837e-15 7.383456907e-12 9.022459257e-11 1.502821985e-10 1.85707678e-10 1.155950648e-10 1.596781279e-10 1.044022449e-10 1.641864082e-10 1.150327902e-10 1.899468953e-10 1.860978241e-10 1.335330703e-10 1.451517878e-10 1.270504896e-10 1.669569414e-10 1.185704509e-10 5.492986304e-11 8.180276896e-11 0 1.466887063e-10 2.139158922e-10 1.530511685e-10 9.391008276e-11 1.271334185e-10 3.931196031e-10 3.85655421e-10 7.934101305e-10 1.061314179e-09 1.044568754e-09 9.465778801e-10 1.073821146e-09 1.1225007e-09 9.161596531e-10 5.652037205e-10 5.58315956e-10 4.931059124e-10 5.017179286e-10 4.132462789e-10 1.337905942e-10 5.858360624e-27 1.528533612e-10 1.240629693e-10 2.585911436e-10 4.493207492e-10 3.586911856e-10 5.372759935e-10 4.984923613e-10 6.225109541e-10 4.713929777e-10 5.689110278e-10 6.97817391e-10 7.987939189e-10 4.677738818e-10 6.816786662e-10 5.839142813e-10 7.011632498e-10 5.468616742e-10 8.608522843e-10 7.856293073e-10 7.606753814e-10 5.801088358e-10 2.258135462e-10 2.354601845e-10 1.850750396e-10 2.572745458e-10 2.467602825e-10 3.355085693e-10 3.381679587e-10 3.520773e-10 3.315988544e-10 3.680280719e-10 3.528132702e-10 3.619298709e-10 5.025329611e-10 4.851078808e-10 5.801803486e-10 6.170298833e-10 3.143095875e-10 4.173502278e-10 4.193107932e-10 6.279291434e-10 5.470368142e-10 3.085652439e-10 3.10515841e-10 3.852453074e-10 2.352073051e-10 3.053077409e-10 4.211481708e-10 3.664707159e-10 3.173753864e-10 3.433759688e-10 4.015620198e-10 2.89358463e-10 4.030792147e-10 3.303971469e-10 2.737827223e-10 3.828968688e-10 2.267273377e-10 2.781771312e-10 2.642312549e-10 3.018686484e-10 1.841282965e-10 3.800804308e-10 2.262172863e-10 1.874592696e-10 1.333199398e-10 2.767452352e-10 1.686474115e-10 2.318429841e-10 3.136718316e-10 1.158628688e-10 3.382501126e-10 2.792507067e-10 2.616603686e-10 3.379340275e-10 2.335526917e-10 4.0609796e-10 1.791036284e-10 3.108313718e-10 2.857548594e-10 2.718539744e-10 1.315318557e-10 1.147297347e-10 3.049719758e-10 8.333330739e-11 3.005648454e-10 1.032261985e-10 1.545378244e-10 1.16349003e-10 1.489187979e-10 2.577651353e-10 2.657516664e-10 1.705729081e-10 1.461376367e-10 1.812872122e-10 2.227026353e-10 1.722457285e-10 1.481629082e-10 2.521408325e-10 2.258332462e-10 8.484400398e-11 1.269352196e-10 4.24831106e-11 3.523245929e-10 1.799126935e-10 1.475234242e-10 4.883103817e-11 3.70466281e-10 1.301321887e-10 2.717624617e-10 2.135979985e-10 9.66435625e-11 2.39244721e-10 2.420304674e-10 1.385439704e-10 1.120057809e-10 2.718062478e-10 2.002236874e-10 1.136492485e-10 9.235467924e-11 3.48550646e-10 +1.467557105e-10 2.361950893e-10 9.147702083e-11 3.212297673e-10 2.223485047e-10 4.114020894e-11 1.662600616e-10 2.147206163e-10 1.060819454e-10 2.859960621e-10 3.520111825e-10 1.497065467e-10 3.365609522e-10 5.735615501e-10 2.286145208e-10 4.265736578e-10 1.056308337e-10 9.971143886e-11 1.291677031e-10 1.495878954e-10 1.553134373e-10 4.542637198e-10 2.216810012e-10 2.791767865e-10 2.894420325e-10 1.430424366e-10 1.888532348e-10 1.399311924e-10 1.164616991e-10 3.576744177e-10 8.780628817e-11 3.064753512e-10 1.030350225e-10 3.376126241e-10 1.869367061e-10 1.44555888e-10 1.720827222e-10 2.953599355e-10 1.449384374e-10 1.648035844e-10 2.767531776e-10 2.961765164e-10 3.440043872e-10 3.695670909e-10 3.766357191e-10 1.670594878e-10 2.811700629e-10 4.429815781e-10 3.669037454e-10 3.093591124e-10 4.495059763e-10 2.1581052e-10 3.05286233e-10 2.222558238e-10 3.266686469e-10 3.572600259e-10 1.815770984e-10 2.864933776e-10 2.596365769e-10 3.313606292e-10 2.342554413e-10 2.981705695e-10 3.025840657e-10 2.311639563e-10 3.321295143e-10 3.958294704e-10 4.167246232e-10 3.296435747e-10 2.390096173e-10 4.184320554e-10 3.555713302e-10 3.996300459e-10 4.475308798e-10 3.00242615e-10 2.794329407e-10 2.79203126e-10 3.177545558e-10 4.086476075e-10 2.851500462e-10 4.43835256e-10 4.651244165e-10 4.756359835e-10 6.0338598e-10 5.951540476e-10 5.05831726e-10 3.672235601e-10 6.259065205e-10 5.082359359e-10 4.678473297e-10 3.269936667e-10 3.845785263e-10 2.700257033e-10 4.025468858e-10 3.029496375e-10 3.114671073e-10 2.780100761e-10 1.187984086e-10 1.022076647e-10 2.195786934e-10 3.005557248e-10 6.938503403e-10 5.750239922e-10 6.20062915e-10 8.906687675e-10 8.038385528e-10 6.662706011e-10 8.0374233e-10 5.40501676e-10 5.852185533e-10 5.669521106e-10 7.875685611e-10 6.187883649e-10 6.047624843e-10 5.774997868e-10 5.873959202e-10 5.945496495e-10 5.087637394e-10 4.124482776e-10 2.601629931e-10 1.165668797e-10 6.554329317e-11 1.5918313e-10 8.868686137e-11 3.782384983e-10 4.86407303e-10 5.261135318e-10 5.097190012e-10 6.421995398e-10 1.050735564e-09 1.149225978e-09 1.012669272e-09 1.0033522e-09 8.249311002e-10 8.689015799e-10 6.872429222e-10 2.570116801e-10 2.181255794e-10 1.814670423e-10 3.395364941e-10 1.890330743e-10 1.173363715e-10 2.051452088e-10 1.311487848e-10 1.806157475e-10 6.961568173e-11 1.134388369e-10 1.913230637e-10 1.464837009e-10 1.614758974e-10 1.404805797e-10 1.395555243e-10 3.098507775e-10 1.434968964e-10 1.016796099e-10 2.152745261e-10 8.885442072e-11 1.044719369e-10 1.351027567e-10 1.815004251e-10 1.863419607e-10 1.82336199e-10 1.989008046e-10 1.204669393e-10 2.39397467e-10 4.450937958e-10 7.879027888e-10 9.342507546e-10 9.946818439e-10 1.002956823e-09 1.018024336e-09 9.044580571e-10 7.802084264e-10 4.638878085e-10 5.777364508e-10 5.665693173e-10 4.36934163e-10 3.108180993e-10 1.120685679e-10 1.180004767e-10 1.556950317e-10 1.201445536e-10 3.55798293e-10 4.365064751e-10 4.578457928e-10 5.380843714e-10 3.794969841e-10 4.263478003e-10 5.583092515e-10 6.273989158e-10 6.421408372e-10 7.674393447e-10 6.724275112e-10 7.665336939e-10 7.156956832e-10 7.530074292e-10 1.084809667e-09 7.694203259e-10 6.469732943e-10 8.157894655e-10 4.276160971e-10 2.989123824e-10 2.533440896e-10 2.069235312e-10 2.826460524e-10 1.976302098e-10 4.112037616e-10 3.411373565e-10 5.493597594e-10 3.059814001e-10 3.876869943e-10 2.4107003e-10 3.144776784e-10 4.739974393e-10 5.149446763e-10 5.11753612e-10 3.809458564e-10 4.418004732e-10 5.905569099e-10 4.385836607e-10 4.573241169e-10 4.444694362e-10 4.711498961e-10 3.018856507e-10 3.124034571e-10 2.969528792e-10 3.304587824e-10 2.504626808e-10 2.036671162e-10 2.623452473e-10 3.743798095e-10 3.265375401e-10 3.8736043e-10 3.330728281e-10 2.966492273e-10 3.788396398e-10 2.080683488e-10 4.64773424e-10 4.151222016e-10 3.75212501e-10 1.977541816e-10 2.769650947e-10 2.135363109e-10 2.456087493e-10 3.509378172e-10 2.929056157e-10 1.754580732e-10 2.773249686e-10 3.734479058e-10 3.349002383e-10 4.66697686e-10 2.727919406e-10 1.908641927e-10 2.525746267e-10 3.99824533e-10 4.899578722e-10 3.849869556e-10 3.2271463e-10 2.159152087e-10 2.663346609e-10 2.752283402e-10 9.176410265e-11 4.497065405e-10 3.55300466e-10 1.749069163e-10 2.849010883e-10 3.046529319e-10 1.654337112e-10 1.011506978e-10 1.558946664e-10 1.387561108e-10 1.190072536e-10 2.709770314e-10 1.250613468e-10 3.17717137e-10 2.125775066e-10 1.795118601e-10 1.810252058e-10 2.145806119e-10 1.192057201e-10 2.833990505e-10 1.649930271e-10 1.806441769e-10 1.204102188e-10 8.68430841e-11 1.67812517e-10 2.288729059e-10 3.328444728e-10 1.246594864e-10 2.268067649e-10 3.983212598e-10 2.703276474e-10 1.827624589e-10 1.893620471e-10 2.507545429e-10 1.56614031e-10 1.008211326e-10 2.46721768e-10 1.614566436e-10 2.169432711e-10 1.988420991e-10 +1.1220938e-10 1.023154568e-10 3.217944978e-10 2.020647301e-10 8.636970943e-11 1.601683397e-10 1.318801547e-10 1.108627977e-10 2.059791765e-10 1.974667202e-10 1.50254278e-10 3.704534682e-10 4.714770276e-11 2.117685376e-10 9.410148353e-11 1.434460434e-10 2.418459843e-10 1.639227466e-10 2.312877089e-10 1.591531697e-10 1.495308586e-10 1.592106191e-10 2.014469814e-10 2.447604984e-10 5.476221157e-10 3.463335519e-10 1.564492582e-10 2.620635766e-10 2.442082006e-10 8.575086643e-11 2.246119194e-10 3.993221222e-10 3.53045412e-10 1.383152417e-10 1.123810985e-10 3.629137429e-10 2.288782312e-10 2.791525803e-10 3.770954782e-10 3.160836377e-10 2.25368079e-10 1.759163736e-10 3.10437569e-10 2.85105216e-10 5.894619231e-10 3.357687116e-10 2.016069223e-10 3.190318334e-10 3.254427635e-10 2.072855119e-10 3.215266301e-10 4.143782516e-10 2.923510587e-10 4.735228191e-10 2.831172292e-10 3.112326502e-10 3.338392173e-10 5.283410432e-10 1.418348309e-10 1.158303771e-10 2.44587866e-10 2.333778119e-10 2.439695923e-10 2.84111044e-10 3.066733231e-10 2.905102843e-10 2.87094174e-10 3.357334286e-10 3.670784202e-10 3.531215923e-10 3.873575065e-10 3.372918069e-10 2.901808512e-10 1.454523372e-10 4.685242686e-10 3.07779456e-10 1.781113619e-10 3.979463315e-10 4.184454905e-10 4.536063978e-10 4.341950612e-10 6.211257626e-10 6.28806417e-10 4.688494301e-10 5.653811594e-10 4.946749111e-10 4.653797505e-10 3.313187002e-10 5.561005276e-10 4.686233811e-10 3.363072286e-10 4.01122493e-10 2.544764984e-10 3.750750807e-10 4.018934983e-10 2.486454171e-10 2.446862237e-10 1.898934401e-10 2.252778553e-10 2.098783885e-10 5.519482246e-10 7.300017085e-10 9.295915206e-10 7.052659353e-10 3.740137799e-10 8.106689912e-10 7.795112203e-10 4.465205501e-10 7.543793371e-10 7.296183796e-10 7.508049614e-10 6.334540716e-10 5.455113416e-10 5.914392526e-10 4.440259147e-10 4.283674552e-10 4.922586811e-10 3.734588241e-10 2.630558427e-10 1.098650068e-10 3.399902728e-11 1.149601214e-10 0 3.84787478e-10 4.859022828e-10 5.566053663e-10 5.296711094e-10 6.893700075e-10 8.690367537e-10 1.141000066e-09 1.030357265e-09 9.110276351e-10 9.735424201e-10 8.845874478e-10 6.552864701e-10 4.186090898e-10 1.826892624e-35 0 4.746645342e-11 0 1.567366149e-10 2.571137456e-12 1.547234049e-10 1.490881153e-10 1.069725871e-10 8.875563853e-11 3.254810064e-27 1.59346963e-10 1.446144142e-10 9.627253565e-11 8.012714798e-11 2.717516452e-11 1.868846308e-10 1.201929302e-10 1.308316837e-10 9.862649646e-11 1.280179902e-10 9.632286602e-13 1.221449982e-10 1.711239795e-10 1.938299878e-10 1.758438258e-10 2.201598997e-10 1.42269955e-10 2.233040856e-10 5.177169516e-10 8.265112149e-10 1.034055543e-09 9.030586022e-10 9.427521827e-10 9.422737437e-10 9.158307224e-10 5.376995245e-10 6.168705352e-10 3.484854204e-10 4.76111949e-10 6.328438761e-10 2.884846073e-10 1.256366133e-10 2.072266641e-10 1.708033575e-10 2.478299932e-10 3.217697784e-10 3.620302154e-10 4.945295968e-10 5.449782899e-10 4.533699599e-10 4.77094377e-10 5.974599982e-10 6.822886935e-10 7.77512482e-10 6.498573604e-10 6.01388457e-10 6.591366215e-10 8.827919613e-10 7.827655669e-10 4.868926749e-10 6.061282805e-10 8.667152837e-10 4.891820717e-10 2.031746533e-10 3.386870077e-10 2.536320251e-10 2.066722729e-10 2.487395991e-10 4.281080704e-10 3.397017965e-10 3.690195808e-10 3.182570854e-10 3.531653158e-10 4.260024051e-10 2.826793416e-10 4.826479257e-10 3.720523882e-10 4.833344738e-10 4.455711713e-10 3.601717957e-10 4.802394473e-10 5.552510987e-10 4.266961614e-10 3.557990253e-10 4.699396768e-10 2.727320015e-10 2.884190985e-10 2.802251461e-10 2.423475387e-10 3.547180549e-10 1.884307191e-10 3.425761858e-10 3.390697606e-10 2.83548956e-10 2.606387075e-10 3.278957365e-10 3.23301944e-10 3.262397002e-10 4.482786995e-10 2.822404661e-10 1.745309316e-10 2.34817726e-10 2.1126874e-10 2.704735054e-10 3.670355421e-10 4.856906316e-10 3.805702434e-10 3.328582332e-10 1.920235905e-10 2.411129558e-10 4.000577119e-10 1.204039254e-10 2.855415909e-10 4.670821435e-10 1.912676861e-10 2.567355027e-10 3.430607392e-10 3.576441307e-10 3.917416743e-10 2.285919581e-10 4.959335956e-10 2.360240804e-10 1.401755547e-10 3.306303e-10 2.312334217e-10 1.492582955e-10 2.850763701e-10 1.339377109e-10 1.76898019e-10 1.404507333e-10 1.936008793e-10 3.07595169e-10 3.149957189e-10 1.908664625e-10 2.576840472e-10 2.23009169e-10 1.801261079e-10 1.990734985e-10 8.717440577e-11 2.784942676e-10 1.759586901e-10 3.077530938e-10 1.672042762e-10 4.314737904e-10 1.291066717e-10 2.445368633e-10 2.895581566e-10 3.621967807e-10 1.784630968e-10 1.983835156e-10 1.55675385e-10 2.378003726e-10 1.812074388e-10 1.589126431e-10 7.480112806e-11 6.685020919e-11 1.373621652e-10 4.615360924e-10 1.045094211e-10 1.098688459e-10 2.717167914e-10 2.05957725e-10 1.01136486e-10 +1.026047988e-10 9.231141739e-11 3.25329404e-10 2.288793431e-10 2.033888733e-10 1.171460203e-10 2.204006273e-10 1.082499194e-10 2.55524822e-10 1.822951942e-10 7.573703337e-11 1.793177848e-10 1.65300607e-10 1.958049396e-10 1.905424646e-10 1.426631851e-10 2.477908962e-10 9.798082628e-11 4.050093491e-10 1.037946561e-10 1.478071189e-10 7.011983973e-11 1.093234019e-10 2.299426594e-10 1.472506902e-10 2.616521357e-10 1.014214317e-10 1.404154624e-10 1.838748053e-10 4.219086244e-10 2.287496175e-10 1.382071965e-10 1.12952055e-10 8.222540307e-11 1.654817988e-10 2.274705274e-10 3.061447284e-10 1.37319772e-10 2.339484566e-10 1.55875471e-10 1.425038909e-10 3.541719361e-10 2.771677152e-10 2.950882971e-10 3.32134679e-10 1.745826193e-10 3.272404652e-10 3.768939666e-10 3.365334761e-10 2.670647791e-10 2.213107286e-10 5.117622426e-10 2.999939297e-10 2.490801224e-10 3.395204494e-10 3.96570863e-10 2.402464856e-10 2.178801572e-10 1.627347526e-10 2.44921338e-10 1.980049276e-10 3.366906281e-10 2.780229567e-10 3.846922504e-10 2.546409282e-10 3.785865981e-10 3.360675898e-10 3.076277506e-10 2.970295543e-10 5.463836927e-10 3.466777535e-10 2.304065928e-10 3.603598043e-10 2.567270659e-10 4.893223416e-10 3.367167829e-10 2.567060974e-10 3.094512381e-10 4.39741042e-10 4.369097406e-10 4.497761318e-10 4.725513629e-10 5.577602667e-10 6.088355509e-10 3.269340005e-10 4.659423204e-10 4.663891478e-10 5.300011515e-10 4.058594796e-10 3.926705897e-10 4.831620034e-10 4.195445148e-10 4.345896993e-10 4.727966123e-10 3.362513121e-10 2.672193869e-10 1.549229191e-10 1.731502243e-10 3.056980322e-10 2.706427888e-10 7.340976437e-10 8.165008682e-10 5.727828966e-10 4.512515146e-10 6.892369124e-10 7.922593943e-10 5.801732377e-10 6.340033339e-10 7.090154925e-10 8.4359736e-10 5.644714499e-10 5.082741157e-10 5.746794653e-10 4.421257054e-10 4.876530816e-10 5.198806774e-10 4.402002792e-10 3.881930764e-10 1.782938185e-10 2.18119545e-11 1.086162137e-10 4.409330789e-11 3.707391925e-10 5.252620112e-10 6.206790661e-10 6.080002723e-10 5.475634058e-10 8.668846342e-10 1.025884715e-09 1.038555602e-09 1.107219607e-09 9.128607534e-10 9.299055244e-10 6.727142144e-10 4.773284362e-10 5.736931797e-11 1.939003975e-10 1.069642973e-10 2.710970875e-10 1.19116528e-11 1.383349957e-10 1.426629309e-10 1.781296841e-10 1.573816509e-10 1.681994102e-10 1.064382583e-10 8.676411838e-11 1.341162833e-10 1.00329245e-10 1.7159752e-10 1.764280948e-10 1.06940644e-10 1.046566332e-10 1.21149542e-10 1.514520657e-11 1.504761188e-16 1.273495249e-11 1.461920185e-10 1.567955507e-10 2.528771345e-10 1.273062562e-10 1.33696463e-10 1.81083298e-10 1.096156665e-10 6.136675396e-11 3.752611594e-10 6.020650648e-10 7.248176527e-10 9.767311974e-10 8.947489143e-10 9.53046077e-10 9.310888624e-10 6.771652295e-10 5.6490234e-10 5.127807221e-10 5.753195547e-10 5.019628281e-10 2.566898727e-10 1.436928373e-10 1.940778562e-10 1.910057187e-10 2.287566936e-10 4.004174563e-10 4.688836002e-10 4.888519802e-10 5.978823828e-10 4.603208878e-10 5.165667174e-10 6.735314583e-10 7.112248099e-10 8.465237876e-10 7.547156876e-10 6.162922543e-10 5.560739983e-10 7.422022134e-10 7.779448287e-10 8.380362215e-10 7.15708717e-10 6.596188919e-10 7.839564513e-10 4.546118146e-10 2.726841207e-10 1.563640644e-10 1.185000811e-10 2.727468035e-10 3.184488229e-10 3.801311221e-10 3.018042671e-10 3.625000665e-10 2.9710521e-10 3.44398867e-10 4.691676143e-10 4.525819932e-10 5.122671836e-10 6.482256639e-10 4.702158499e-10 4.567946493e-10 5.480381827e-10 5.706381545e-10 4.384032999e-10 4.624736498e-10 2.374033225e-10 2.742121614e-10 2.020071387e-10 2.646105254e-10 2.644484188e-10 3.737326961e-10 2.753279383e-10 3.164468972e-10 4.036431693e-10 3.511727218e-10 3.533173865e-10 3.041552814e-10 2.915447597e-10 3.6551508e-10 2.458158717e-10 2.491817672e-10 3.423754905e-10 3.875311148e-10 2.470591178e-10 2.60423568e-10 5.247387825e-10 2.142620375e-10 1.743595979e-10 2.868733414e-10 2.538149321e-10 3.374257761e-10 2.533129856e-10 3.011662809e-10 2.072478303e-10 1.697791088e-10 1.817046261e-10 2.855695524e-10 2.43163227e-10 3.971857785e-10 3.436940021e-10 4.141031748e-10 1.885083868e-10 4.531554537e-10 3.560511341e-10 2.459941952e-10 3.12274115e-10 1.340633645e-10 1.219140055e-10 2.008994151e-10 4.269012713e-10 2.544898493e-10 3.251092979e-10 1.533171571e-10 1.272426561e-10 2.964490687e-10 1.589554792e-10 1.927152177e-10 1.454031157e-10 2.575758168e-10 3.293846793e-10 3.138355506e-10 2.10441079e-10 1.163416551e-10 1.59295899e-10 9.898688473e-11 3.543188959e-10 2.355389955e-10 2.667169395e-10 7.603979206e-11 2.469624968e-10 2.255214693e-10 1.794102177e-10 8.853003055e-11 3.318815374e-10 2.653143301e-10 2.526656549e-11 2.06995718e-10 2.338287244e-10 2.069835934e-10 2.031759098e-10 1.54126451e-10 1.595818367e-10 1.615353245e-10 2.813799467e-10 +2.733753821e-10 1.171814059e-10 1.586201328e-10 4.099951927e-10 2.437427926e-10 2.672309475e-10 3.080458995e-10 3.247759355e-10 1.038546654e-10 1.789515648e-10 9.737692128e-11 8.964704383e-11 3.169290575e-10 2.401681771e-10 1.840627051e-10 2.129454669e-10 8.339693782e-11 9.539426888e-11 2.806010772e-10 1.220602258e-10 1.615687786e-10 2.105928576e-10 2.816874558e-10 4.530423791e-10 1.902321621e-10 3.00278044e-10 2.479078893e-10 2.568112958e-10 2.735411402e-10 2.803702766e-10 9.390748923e-11 2.54924673e-10 1.472100892e-10 1.55832095e-10 1.766390668e-10 3.017394835e-10 1.628563195e-10 1.52647068e-10 1.489985753e-10 1.690870129e-10 1.706773424e-10 3.924881354e-10 4.471879033e-10 3.03100751e-10 2.768370935e-10 3.237874346e-10 2.114184324e-10 1.552691433e-10 2.1635961e-10 3.000775967e-10 1.761303297e-10 3.492758002e-10 2.845296179e-10 2.871148423e-10 2.550359425e-10 5.404031941e-10 4.505831653e-10 3.812713479e-10 4.370201669e-10 2.149939652e-10 3.286250608e-10 4.222071819e-10 4.695832214e-10 2.642864935e-10 3.456552045e-10 3.380371143e-10 3.323334587e-10 2.70632588e-10 3.758637887e-10 3.735502245e-10 2.769151244e-10 1.952736079e-10 3.62072068e-10 2.931162088e-10 2.823378072e-10 3.116347802e-10 2.588551855e-10 2.923121892e-10 3.131265728e-10 3.821059991e-10 3.431547222e-10 6.658452331e-10 5.89630522e-10 3.295145752e-10 3.930487274e-10 5.239478498e-10 5.53708376e-10 4.005641327e-10 5.058039818e-10 3.690337111e-10 5.14658085e-10 3.238977514e-10 3.186727184e-10 4.165835387e-10 3.144681163e-10 4.036017036e-10 2.110727463e-10 5.966803907e-11 1.488582505e-10 2.612947785e-10 5.294478751e-10 5.17941551e-10 6.989730629e-10 7.986755293e-10 5.526043073e-10 8.281972586e-10 5.953736051e-10 6.793410458e-10 7.084441824e-10 7.989274395e-10 7.537517739e-10 5.518274072e-10 5.094746743e-10 3.780682655e-10 5.526143538e-10 4.62029595e-10 2.879186093e-10 4.240974205e-10 1.016061448e-10 1.544301254e-10 1.296935039e-10 6.417710563e-11 2.903898319e-10 3.774747509e-10 5.934490696e-10 5.346267018e-10 5.336120528e-10 7.627168649e-10 1.114080873e-09 9.121175933e-10 1.020218902e-09 9.074107667e-10 7.11182228e-10 6.673026588e-10 3.549770918e-10 1.69105283e-10 1.433088833e-10 9.384078736e-11 1.952765302e-10 1.007757648e-10 1.278237905e-10 1.649630619e-10 1.133874895e-10 1.416582431e-10 8.987672887e-11 1.12878728e-10 1.694558964e-10 4.69206429e-13 8.693341604e-11 1.621898761e-10 1.443262301e-10 1.694635018e-10 1.238460437e-10 9.730435657e-11 2.383851184e-10 8.485247176e-11 1.260545363e-10 1.255803664e-10 1.064987798e-10 7.495526457e-11 1.576458993e-10 2.248981678e-10 1.146834941e-10 7.94326203e-11 2.070526724e-10 2.587846043e-10 7.279266614e-10 7.762529173e-10 7.717481681e-10 1.027512652e-09 9.868765103e-10 9.113439861e-10 7.697009902e-10 5.985365702e-10 5.334215021e-10 5.381905093e-10 5.495054144e-10 3.646987519e-10 1.335700299e-10 1.407748372e-10 1.849130922e-10 1.734134362e-10 3.295835634e-10 5.298668404e-10 4.076307704e-10 5.647732946e-10 5.267560431e-10 4.817204814e-10 4.617370131e-10 6.010018582e-10 7.758379049e-10 6.307976299e-10 7.114117519e-10 6.002818326e-10 6.055879058e-10 6.632872175e-10 5.785734864e-10 6.359537958e-10 9.413474387e-10 5.04093962e-10 2.83784383e-10 1.501231952e-10 1.891635083e-10 2.270926594e-10 3.179370541e-10 3.78363098e-10 3.776479502e-10 5.340907337e-10 3.811678656e-10 4.488634506e-10 4.330772957e-10 4.307148846e-10 4.701996588e-10 4.276885406e-10 4.712597951e-10 5.442152723e-10 3.955736192e-10 5.478082371e-10 5.541827794e-10 2.882854633e-10 3.97856181e-10 4.739790874e-10 3.878121178e-10 3.107268006e-10 3.553900095e-10 2.273041994e-10 3.840171164e-10 2.261551371e-10 3.521988968e-10 4.463767861e-10 3.183179747e-10 3.415546796e-10 1.524540817e-10 1.725041596e-10 3.065208225e-10 2.500510427e-10 2.924408437e-10 3.763316714e-10 3.356805034e-10 3.702339271e-10 3.255355684e-10 3.089810646e-10 3.431690808e-10 3.118455056e-10 2.589582805e-10 3.492607414e-10 2.234878831e-10 3.961276785e-10 3.824258452e-10 3.826921342e-10 3.217302078e-10 3.578128571e-10 2.8710926e-10 2.506306253e-10 2.579786036e-10 4.161228541e-10 3.110332372e-10 2.709130452e-10 2.946965582e-10 2.148482133e-10 2.716035688e-10 1.043525023e-10 1.856954956e-10 1.299082571e-10 1.706264328e-10 3.101915199e-10 3.738295231e-10 2.622807708e-10 2.509392725e-10 2.145266138e-10 2.68401129e-10 1.637531146e-10 2.119677325e-10 2.505131936e-10 2.005928622e-10 3.12867314e-10 1.108044449e-10 1.621570786e-10 8.817546738e-11 2.59414624e-10 4.333799879e-11 1.252485633e-10 2.211879988e-10 8.577585169e-11 4.965488513e-11 1.738861143e-10 1.758969528e-10 1.291674562e-10 4.476622804e-10 1.403045883e-10 1.792403811e-10 4.14734725e-10 1.104690058e-10 2.558649619e-10 8.08532724e-11 1.215342131e-10 2.202516234e-10 2.168078497e-10 9.056101543e-11 1.609009478e-10 +2.913994385e-10 8.389965708e-11 3.636634667e-10 4.158648862e-10 3.560578772e-10 4.021308498e-10 2.209099117e-10 1.531081571e-10 8.381439569e-11 1.758056781e-10 3.47711511e-10 2.27414717e-10 2.653021025e-10 1.085746372e-10 3.336848042e-10 1.942030701e-10 2.077323038e-10 1.09535355e-10 9.427650306e-11 1.331228158e-10 7.891094093e-11 2.58744886e-10 1.549125961e-10 3.067803942e-10 1.264191079e-10 2.324703538e-10 3.467195149e-10 3.0821526e-10 2.73904064e-10 1.589861106e-10 2.812801795e-10 1.342004243e-10 2.697341808e-10 1.459993148e-10 1.505743499e-10 5.139699414e-10 1.168375652e-10 1.789583288e-10 1.922184582e-10 2.382349813e-10 4.452418415e-10 2.147335029e-10 3.24284624e-10 4.449995711e-10 5.676138262e-10 3.950008067e-10 4.357173395e-10 3.081927507e-10 1.687354113e-10 4.001060826e-10 2.938925905e-10 2.237686628e-10 4.322297979e-10 1.901487862e-10 3.997698112e-10 3.347922817e-10 2.553919406e-10 2.234284232e-10 1.359476234e-10 4.539793642e-10 3.566077216e-10 2.080972573e-10 3.289955188e-10 2.125747178e-10 4.55551753e-10 3.324882906e-10 2.145133211e-10 2.094767668e-10 2.450004608e-10 4.271896477e-10 3.484297e-10 4.104016435e-10 3.631469233e-10 3.575801018e-10 3.602907459e-10 3.079442453e-10 3.797771574e-10 3.563587622e-10 3.623112214e-10 3.50903138e-10 3.1275171e-10 5.501333605e-10 4.58946387e-10 6.118334411e-10 5.431125308e-10 5.580368732e-10 3.677409521e-10 4.345249398e-10 4.877656505e-10 4.255193095e-10 3.621501758e-10 3.108954831e-10 3.648623484e-10 4.136887845e-10 3.701139659e-10 2.979628151e-10 2.128037254e-10 3.355800926e-10 2.880425986e-10 2.582584598e-10 4.161691336e-10 6.430163289e-10 7.693425391e-10 7.962506877e-10 6.136308213e-10 4.996805682e-10 5.260547256e-10 5.178959312e-10 5.489131943e-10 7.130786563e-10 5.912776166e-10 7.061902022e-10 5.397140402e-10 5.520699403e-10 5.125941455e-10 4.525812869e-10 5.268729936e-10 3.193562326e-10 2.207607943e-10 1.079133835e-10 9.939223875e-11 2.441988285e-10 3.995633113e-10 5.038528013e-10 6.474406676e-10 6.704630545e-10 6.722948884e-10 1.106507828e-09 1.098123119e-09 8.919614527e-10 9.81239356e-10 9.259508466e-10 8.588496516e-10 5.137648778e-10 3.355013382e-10 1.640764664e-10 1.033854112e-10 1.445606212e-10 1.528424858e-10 1.824714649e-10 8.527393743e-11 1.514809385e-10 1.5715473e-10 8.727555753e-11 1.723581688e-10 1.795205941e-10 1.491373125e-10 1.39565941e-10 1.039911075e-10 7.805991373e-11 1.457040656e-10 1.296179644e-10 1.53218863e-10 1.736604899e-10 1.206442731e-10 2.690299582e-10 1.373582179e-10 1.350035258e-10 3.257523022e-11 1.9436868e-10 0 1.169845549e-10 1.767531956e-10 1.122261473e-10 1.302955849e-10 6.239096241e-11 5.49153732e-10 6.032768411e-10 8.409361188e-10 8.954509042e-10 9.918099853e-10 1.102007359e-09 1.028022319e-09 5.983665673e-10 5.025721234e-10 5.257619744e-10 5.516777482e-10 3.900879382e-10 1.855110847e-10 2.201216886e-10 1.547381295e-10 2.28273881e-10 2.919590978e-10 5.196190428e-10 4.32708444e-10 5.108140542e-10 5.048547104e-10 5.31764315e-10 5.174917166e-10 7.0816895e-10 6.895325484e-10 4.654238856e-10 8.401621508e-10 5.527529714e-10 7.321391431e-10 8.23165167e-10 6.076933823e-10 7.476941584e-10 6.478378336e-10 6.109829153e-10 2.525970856e-10 1.411048883e-10 2.631589533e-10 1.768532443e-10 3.24582636e-10 3.514786032e-10 4.425119126e-10 4.476395997e-10 4.198072482e-10 4.632219088e-10 2.99237735e-10 2.618409103e-10 3.454205795e-10 5.121330494e-10 6.079931354e-10 4.650375368e-10 4.145506585e-10 5.737375618e-10 5.336125865e-10 2.660505185e-10 3.655087187e-10 2.950472901e-10 3.087860785e-10 2.655496709e-10 2.812123409e-10 4.802255487e-10 2.813179216e-10 2.365881678e-10 4.472758067e-10 4.715022987e-10 3.118044162e-10 3.16176696e-10 3.040080323e-10 2.352896443e-10 2.83927247e-10 3.681558452e-10 3.088121881e-10 3.130292624e-10 3.002717827e-10 2.364339742e-10 1.962026112e-10 1.930909132e-10 3.755257774e-10 1.218798862e-10 4.094359716e-10 2.667925508e-10 4.402188379e-10 1.707892497e-10 2.880723689e-10 2.826385796e-10 3.705780028e-10 3.324138831e-10 3.717834864e-10 2.676100101e-10 2.308527165e-10 3.366529935e-10 1.80440724e-10 2.506786236e-10 1.782432593e-10 4.240646671e-10 3.267857562e-10 1.727499228e-10 1.645352798e-10 3.247194321e-10 1.280185561e-10 2.228350572e-10 1.32918068e-10 2.19005288e-10 1.034373421e-10 2.312202818e-10 1.129610736e-10 1.150133307e-10 1.455885822e-10 1.877008985e-10 1.632774956e-10 1.655762585e-10 3.905092126e-10 1.19024782e-10 1.238109814e-10 2.550371317e-10 1.428053546e-10 9.820037204e-11 9.038514366e-11 1.599994068e-10 1.47932501e-10 2.697400409e-10 1.921992742e-10 8.258420329e-11 3.621192869e-10 2.497586427e-10 2.344131955e-10 2.024279731e-10 1.0677019e-10 1.35192185e-10 3.069066564e-10 2.146439322e-10 1.570494872e-10 3.945490988e-11 3.898209308e-10 1.324291986e-10 +3.04953628e-10 1.665666923e-10 1.724571421e-10 1.548023173e-10 3.772319441e-10 9.818133748e-11 1.708530054e-10 2.184169313e-10 2.629377413e-10 2.871360551e-10 2.81829976e-10 4.872185061e-11 2.548714554e-10 1.981912143e-10 3.031701942e-10 5.996349244e-11 2.823841162e-10 9.207307989e-11 1.578565341e-10 4.597430495e-10 1.172810917e-10 3.412848287e-10 2.926925393e-10 2.282701003e-10 2.389304721e-10 1.380478445e-10 2.493038776e-10 4.126375049e-10 2.461260896e-10 2.733851939e-10 1.679494859e-10 3.229928171e-10 2.086975353e-10 2.114396423e-10 1.48553732e-10 2.130063154e-10 3.032224321e-10 1.312554995e-10 9.349949661e-11 2.640893128e-10 2.611727523e-10 3.294566861e-10 3.229228935e-10 3.135991406e-10 2.137164602e-10 2.929132803e-10 3.573692675e-10 3.007250342e-10 1.876144386e-10 4.124333913e-10 4.745280211e-10 2.713885185e-10 4.007601819e-10 2.29687382e-10 3.241178712e-10 2.41137037e-10 3.830905997e-10 2.758202186e-10 2.312696635e-10 9.579165491e-11 3.395784379e-10 2.78209615e-10 4.037132698e-10 1.698344688e-10 3.26658015e-10 3.474069821e-10 3.767540331e-10 3.424898183e-10 3.681306435e-10 3.482501574e-10 2.632537902e-10 3.808498629e-10 3.118547004e-10 2.602763796e-10 3.657815777e-10 2.697398004e-10 1.439219989e-10 2.420055498e-10 4.014021773e-10 4.560010846e-10 4.631604637e-10 4.199503004e-10 4.234488155e-10 5.227878282e-10 6.110878571e-10 4.16885095e-10 5.024963595e-10 3.751426712e-10 3.87930158e-10 4.476577875e-10 4.749051064e-10 5.030661062e-10 4.500672769e-10 3.917990467e-10 3.215161981e-10 2.219972896e-10 1.811829317e-10 2.00214467e-10 3.433307195e-10 2.287002414e-10 3.486505377e-10 7.756215788e-10 7.996315972e-10 8.274470886e-10 7.754724934e-10 5.160589488e-10 5.230678605e-10 5.773013534e-10 6.798198849e-10 8.012357631e-10 5.323031911e-10 5.569598441e-10 4.413964647e-10 4.279380255e-10 4.474270169e-10 3.387986647e-10 4.640107817e-10 2.708198868e-10 1.532215202e-10 9.873071448e-11 9.848455681e-11 2.216138333e-10 5.22294861e-10 4.921174383e-10 5.636784755e-10 5.012652524e-10 6.855031713e-10 8.237819692e-10 9.018149126e-10 1.043477868e-09 9.440530566e-10 9.458001512e-10 5.657976811e-10 3.930392513e-10 2.070785706e-10 8.294241485e-11 1.332976241e-10 1.225659295e-10 1.19104914e-10 1.419324509e-10 2.016314265e-10 1.271626912e-10 1.383744407e-10 1.195304163e-12 1.269125072e-10 1.259274223e-10 1.069536643e-10 1.24748199e-10 1.64875966e-10 9.522191729e-11 8.923328118e-11 8.984202353e-11 1.970892856e-10 1.213382168e-10 1.666585132e-10 1.243814398e-10 1.23501462e-10 1.882558168e-10 1.434465214e-10 1.612938828e-10 1.189094575e-10 1.412282401e-10 1.767516007e-10 0 1.019053835e-10 9.732142405e-11 4.065170552e-10 7.657198928e-10 8.199144147e-10 8.171770036e-10 1.098336181e-09 1.022016732e-09 8.905318147e-10 6.515700605e-10 5.58566281e-10 5.706824748e-10 5.450899286e-10 3.441092106e-10 2.634627719e-10 1.724330952e-10 1.439338901e-11 1.212893651e-10 3.253580301e-10 4.389276088e-10 4.403621923e-10 4.497198815e-10 4.369123243e-10 5.212733321e-10 5.441961627e-10 7.994621079e-10 6.483174313e-10 6.863955852e-10 6.50794421e-10 7.491319238e-10 7.762325851e-10 8.492792286e-10 5.941494326e-10 6.349009246e-10 6.474110351e-10 7.844593057e-10 5.925829825e-10 1.151431231e-10 2.38759066e-10 1.743211464e-10 2.982461911e-10 3.035601761e-10 3.577389349e-10 3.724895946e-10 4.46006112e-10 3.849656083e-10 4.750368358e-10 3.596643112e-10 4.417154072e-10 2.499627388e-10 3.336264229e-10 4.910712612e-10 3.566707735e-10 4.730005316e-10 6.348152652e-10 5.358325206e-10 4.522819556e-10 5.910294428e-10 3.112124616e-10 2.900666445e-10 3.563325745e-10 2.885317225e-10 4.709976417e-10 2.157932661e-10 4.414093543e-10 2.765323717e-10 1.993307241e-10 2.192531897e-10 2.993978301e-10 2.175022916e-10 2.33885023e-10 2.729420617e-10 3.271606135e-10 1.656617068e-10 1.202766869e-10 2.927552106e-10 3.53971739e-10 4.200614194e-10 3.617704636e-10 1.865223114e-10 2.568087909e-10 2.727665561e-10 2.005909356e-10 3.449155559e-10 2.718926076e-10 3.736078884e-10 4.454147177e-10 2.761441579e-10 3.625102676e-10 1.944124806e-10 2.492104319e-10 3.428221383e-10 5.434734735e-10 3.04901731e-10 4.744975667e-10 2.815378619e-10 2.277145446e-10 2.553110411e-10 1.811655915e-10 2.39770754e-10 1.022124789e-10 3.693652149e-10 2.298673429e-10 9.155263949e-11 2.2360525e-10 9.501484907e-11 3.325139448e-10 1.280501164e-10 1.397617984e-10 1.30011773e-10 2.61853455e-10 1.018906534e-10 2.14204527e-10 1.58467303e-10 1.744851641e-10 7.550893256e-11 1.014715538e-10 3.63769372e-10 9.979168976e-11 2.745469343e-10 3.408088318e-10 1.692502007e-10 1.90337052e-10 1.24628094e-10 2.174393403e-10 3.347648319e-10 1.70170783e-10 1.000113307e-10 2.836165664e-10 2.522675785e-10 5.925902245e-11 1.092244097e-10 2.304071251e-10 1.81730305e-10 8.371450899e-11 1.378937196e-10 +1.679318416e-10 1.788991792e-10 7.391846632e-11 3.592527568e-10 9.218111429e-11 1.281753204e-10 1.990491363e-10 1.410160371e-10 1.520980962e-10 2.253690977e-10 3.330332128e-10 4.173636848e-10 1.680692062e-10 1.467530781e-10 1.306709845e-10 3.281973511e-10 4.443550259e-10 9.599938755e-11 9.933508204e-11 2.02132849e-10 8.200534183e-11 1.865899594e-10 1.576674232e-10 1.846902192e-10 4.213831882e-10 1.744686709e-10 1.635573292e-10 1.385807409e-10 1.711572582e-10 1.010074838e-10 3.307175045e-10 1.283372512e-10 1.031066392e-10 3.095219344e-10 2.732105487e-10 2.506180577e-10 3.411284844e-10 4.16208741e-10 2.625419383e-10 1.570704799e-10 2.244450603e-10 3.08534416e-10 3.348953876e-10 4.748210192e-10 3.289735325e-10 3.873806354e-10 3.246405423e-10 2.781077556e-10 5.70281684e-10 2.141437215e-10 3.251041603e-10 1.610590418e-10 4.168207114e-10 2.189096144e-10 3.320346648e-10 2.962615198e-10 2.463024801e-10 2.572309857e-10 2.944844164e-10 1.822946329e-10 3.273714862e-10 2.370242925e-10 2.890013906e-10 1.898520098e-10 1.91283821e-10 4.7894387e-10 2.093491914e-10 2.401799628e-10 3.699002155e-10 3.766014094e-10 1.854369509e-10 4.235224348e-10 3.767907294e-10 3.564238046e-10 3.898088908e-10 3.55480832e-10 4.816813524e-10 4.072513036e-10 3.70173931e-10 3.693087668e-10 3.748904255e-10 6.129743851e-10 4.305542143e-10 4.547953367e-10 5.871996119e-10 3.764934786e-10 4.609403643e-10 4.807220033e-10 4.057169674e-10 3.35156773e-10 3.822265963e-10 4.13285742e-10 3.502296658e-10 4.629632104e-10 4.192184799e-10 2.807537629e-10 2.152911541e-10 2.574460561e-10 2.749666592e-10 3.492212542e-10 8.141739813e-10 4.317050343e-10 7.757300103e-10 4.405486945e-10 7.717918211e-10 7.814402419e-10 4.879523145e-10 7.285851018e-10 8.110999367e-10 6.615536716e-10 7.548727749e-10 3.737598216e-10 4.041038085e-10 6.787396878e-10 4.919010402e-10 4.900308211e-10 4.139394137e-10 1.702665376e-10 1.151598375e-10 1.75216681e-10 2.160827508e-10 9.994904202e-11 5.865637826e-10 5.790287613e-10 6.941226515e-10 4.898667904e-10 7.770139274e-10 1.047381806e-09 8.609151079e-10 1.00253502e-09 1.050803178e-09 8.842094181e-10 4.912274824e-10 3.620461692e-10 1.327933749e-10 1.314330479e-10 1.0219963e-10 1.599983514e-10 1.118912938e-16 0 1.577398914e-10 1.411480484e-10 2.734333194e-12 7.147037972e-13 1.69553011e-10 9.078771782e-11 1.824654257e-10 1.021705276e-10 2.313742403e-10 1.690728251e-10 1.715815659e-10 1.172964385e-10 9.739318845e-11 4.59755225e-13 1.167923779e-10 8.779529864e-11 2.054598695e-10 0 1.170591205e-10 1.19896013e-10 1.805082982e-10 1.469861804e-10 9.25390317e-11 2.003866203e-10 1.249488416e-10 1.669521434e-10 2.497736993e-10 4.894644781e-10 8.009152248e-10 8.571939577e-10 9.432800782e-10 1.13682255e-09 9.788710802e-10 8.732928864e-10 6.393255349e-10 4.674846594e-10 4.797638744e-10 5.666480989e-10 7.650628329e-11 1.473955829e-18 1.950993185e-10 1.143980662e-10 2.028876847e-10 4.417235089e-10 5.057760613e-10 5.935444208e-10 3.817555493e-10 4.529369705e-10 5.095491986e-10 5.808990122e-10 6.44694695e-10 6.332219066e-10 7.6052839e-10 6.192517707e-10 5.481249202e-10 5.021512789e-10 8.296372051e-10 7.482076132e-10 5.814141309e-10 6.935450371e-10 5.987627688e-10 1.909350654e-10 2.119857899e-10 2.733209519e-10 3.213214698e-10 3.187250489e-10 4.736839277e-10 3.225162479e-10 3.378069912e-10 4.130756791e-10 4.939520546e-10 3.434105187e-10 3.945632936e-10 4.415175994e-10 5.074465959e-10 5.135874487e-10 3.911590905e-10 3.746849216e-10 4.722277205e-10 3.906256797e-10 4.274506498e-10 3.448164475e-10 4.586201501e-10 3.772784419e-10 1.908313482e-10 2.967328559e-10 2.286028312e-10 2.851707488e-10 3.905841754e-10 3.647341473e-10 4.181305922e-10 2.699452313e-10 3.7927901e-10 3.39417217e-10 3.055760515e-10 3.21280756e-10 3.286159991e-10 3.808059374e-10 3.916915154e-10 3.140816203e-10 2.295336605e-10 3.104574247e-10 3.541556138e-10 3.210145225e-10 3.137217075e-10 2.165492458e-10 3.141390186e-10 2.064150075e-10 3.753614913e-10 3.800929145e-10 2.567093645e-10 4.260910618e-10 3.804179434e-10 2.361107668e-10 5.063285672e-10 3.924312436e-10 2.960757084e-10 2.739396101e-10 4.606083012e-10 2.24974991e-10 1.637403266e-10 1.860145601e-10 7.735290952e-11 1.631555302e-10 1.782377003e-10 1.20467123e-10 1.165636049e-10 1.750939959e-10 2.429031951e-10 1.806226806e-10 1.166050824e-10 1.275378575e-10 2.839061506e-10 3.285999579e-10 2.235479328e-10 2.461739764e-10 1.671157784e-10 1.172307197e-10 2.905273332e-10 1.978609443e-10 2.373136594e-10 1.413748825e-10 1.532389776e-10 9.303839147e-11 2.38863587e-10 3.26906602e-10 1.512894062e-10 1.180985051e-10 3.003548419e-10 9.817093684e-11 1.84570204e-10 2.307140452e-10 3.061892061e-10 4.846254749e-10 2.347667041e-10 3.395495831e-10 1.65560584e-10 4.786219219e-10 2.417075444e-10 2.226889189e-10 +1.123997304e-10 1.44112651e-10 7.597305526e-11 3.081295766e-10 1.343751126e-10 1.461381646e-10 1.364713167e-10 8.622384753e-11 4.95075095e-11 1.637399326e-10 1.868297367e-10 1.304907428e-10 1.086204712e-10 1.638831351e-10 2.274297139e-10 3.927232931e-10 2.764584135e-10 3.285049093e-10 1.41671087e-10 1.875308779e-10 1.991604256e-10 6.350045244e-11 3.735651759e-10 1.058233391e-10 1.955875551e-10 2.204270033e-10 1.756728291e-10 1.855504776e-10 1.568842967e-10 2.1742665e-10 1.920735964e-10 1.586891292e-10 1.36295533e-10 2.710914936e-10 1.30722401e-10 1.431831453e-10 8.219947111e-11 1.410349239e-10 1.507256311e-10 2.743202017e-10 1.69736996e-10 3.711940516e-10 4.198641401e-10 3.165296054e-10 4.061552883e-10 2.545783124e-10 2.560499964e-10 4.033966373e-10 1.166743791e-10 3.177922371e-10 5.473704924e-10 4.061265844e-10 3.384518155e-10 3.283150201e-10 3.305370942e-10 2.95245961e-10 4.403269637e-10 2.979649433e-10 3.363639796e-10 3.075403607e-10 3.49856466e-10 1.784013944e-10 2.010610868e-10 2.554711723e-10 2.715863834e-10 3.909485074e-10 3.384088239e-10 3.183670457e-10 4.543072263e-10 2.99440204e-10 2.516145375e-10 3.909289883e-10 3.662345922e-10 3.052633441e-10 4.10468048e-10 2.229717082e-10 2.505987376e-10 5.003644161e-10 4.581478467e-10 4.163401773e-10 5.236762118e-10 6.959379754e-10 5.628608061e-10 5.660830187e-10 3.511259157e-10 4.019683758e-10 3.349999583e-10 4.020317924e-10 2.873205859e-10 4.707522491e-10 3.718336391e-10 3.685788008e-10 3.701791846e-10 3.12597397e-10 2.227551211e-10 2.663286101e-10 1.016244708e-10 3.407900607e-10 3.212235634e-10 5.384639792e-10 5.618788339e-10 5.900140769e-10 4.962184921e-10 7.340905599e-10 7.082727406e-10 6.722867858e-10 6.449611193e-10 6.861147601e-10 8.002402958e-10 8.071371266e-10 5.402013844e-10 5.77409431e-10 5.672037769e-10 4.629333247e-10 6.25282778e-10 5.651316535e-10 4.004192291e-10 2.427376495e-10 1.221261726e-10 1.694547395e-10 9.762681428e-12 2.167991964e-10 3.736808031e-10 4.979464567e-10 5.493935239e-10 5.959645809e-10 9.896392008e-10 9.720310777e-10 1.099669707e-09 9.288145787e-10 9.775129264e-10 7.576839553e-10 4.49580475e-10 2.606338618e-10 1.353171366e-10 1.359913321e-10 1.745452502e-10 1.350848371e-10 1.852394648e-10 9.819417972e-11 1.692016769e-10 1.255981847e-10 1.912500107e-10 1.356485479e-10 8.34332739e-11 7.341683387e-11 1.398902394e-10 1.447933322e-10 1.994030728e-10 1.819413116e-10 9.8950253e-11 1.102103498e-10 1.335176365e-10 7.723667771e-11 6.476904626e-11 1.644890156e-10 1.191734116e-10 1.192683398e-10 1.680100264e-10 1.136756721e-10 8.831918912e-11 1.54094564e-10 2.127381954e-10 1.158581867e-10 1.774631928e-10 6.053446144e-11 1.901745088e-10 5.587327419e-10 8.352197716e-10 8.963371015e-10 9.941215191e-10 9.61748846e-10 9.682696154e-10 9.536515145e-10 5.833581091e-10 5.562535597e-10 4.949294051e-10 5.341345176e-10 2.359312025e-10 4.690798629e-11 1.366095957e-10 1.205535713e-10 1.938394959e-10 3.352078003e-10 4.605209198e-10 5.670469621e-10 5.274055734e-10 4.635819446e-10 5.966153805e-10 5.664846109e-10 8.003223045e-10 6.136616642e-10 5.447332207e-10 5.746124111e-10 5.263225537e-10 5.059690543e-10 8.10801651e-10 6.393086121e-10 3.975455612e-10 7.302834219e-10 2.793688444e-10 3.085563586e-10 9.03100386e-11 1.248926244e-10 1.695951923e-10 2.962869973e-10 4.870096802e-10 4.275427651e-10 3.055796787e-10 4.763918703e-10 3.982071917e-10 4.302602996e-10 5.54081675e-10 5.008483672e-10 5.213568342e-10 4.409801752e-10 5.303123534e-10 5.960964791e-10 4.161041003e-10 5.082983988e-10 3.701097582e-10 3.453758795e-10 3.672734387e-10 1.506862611e-10 2.966301062e-10 4.397886031e-10 2.583462438e-10 3.330032398e-10 5.25201477e-10 2.784310713e-10 3.678926303e-10 3.632938755e-10 2.704711525e-10 2.569730911e-10 2.663434556e-10 2.048353437e-10 2.468991294e-10 2.704939772e-10 4.540148573e-10 1.750545672e-10 1.878168027e-10 4.015705037e-10 2.2745838e-10 3.473560193e-10 2.24446834e-10 3.093176135e-10 3.308397921e-10 3.966942016e-10 2.238787345e-10 4.147935492e-10 2.790739898e-10 3.73336046e-10 2.826813723e-10 2.949539029e-10 1.40537927e-10 2.445360025e-10 3.956941411e-10 2.573775162e-10 2.266530347e-10 3.435974674e-10 2.614351532e-10 1.599181238e-10 2.478788947e-10 1.084588882e-10 1.810669071e-10 3.531886811e-10 2.050616274e-10 1.921845178e-10 2.253320804e-10 1.613816945e-10 1.641851946e-10 1.071997758e-10 3.593105764e-10 3.042026677e-10 8.513003272e-11 6.857292742e-11 2.269370337e-10 2.115234857e-10 1.422383666e-10 1.37074821e-10 2.372800392e-10 1.152065076e-10 2.372659462e-10 2.836645544e-10 1.915535355e-10 3.340214145e-10 2.56734682e-10 3.8884098e-10 2.193846385e-10 3.249065501e-10 1.616947941e-10 2.122750292e-10 6.31328201e-11 3.577843935e-10 2.821251581e-10 9.723054962e-11 4.370598175e-10 2.726110242e-10 1.288466769e-10 3.700106503e-10 +2.098154213e-10 8.901583269e-11 2.356197394e-10 2.566412252e-10 2.269391558e-10 1.438444638e-10 2.42082872e-10 1.908535798e-10 2.028654162e-10 5.47737765e-11 3.330860192e-10 7.991591699e-11 1.5168706e-10 3.356623724e-10 2.330365474e-10 2.188594034e-10 3.499404645e-10 3.821156597e-10 2.47885829e-10 2.570376771e-10 3.038110268e-10 2.998350829e-10 7.34987687e-11 9.929711553e-11 3.342113536e-10 1.777845293e-10 1.624169331e-10 1.804755791e-10 1.902797376e-10 2.823940863e-10 1.767997189e-10 1.988029156e-10 2.634440483e-10 2.022459016e-10 1.598914883e-10 1.802322321e-10 1.298604108e-10 1.870006962e-10 1.09963119e-10 1.473316515e-10 1.949188849e-10 2.506336465e-10 3.624485934e-10 3.692777731e-10 1.78724381e-10 3.329264223e-10 2.724832766e-10 2.937308293e-10 4.09832502e-10 2.616456322e-10 5.214253729e-10 2.303068637e-10 3.553544523e-10 2.601785543e-10 2.978130464e-10 1.855632025e-10 1.31915602e-10 3.765030941e-10 2.672610317e-10 2.762254109e-10 3.209485003e-10 3.33409842e-10 4.408829219e-10 3.861300257e-10 2.079560579e-10 3.969116899e-10 1.868284087e-10 3.216182664e-10 3.011943282e-10 4.639484649e-10 3.123630901e-10 4.458980268e-10 3.40796831e-10 3.020833293e-10 4.910356881e-10 3.750676234e-10 2.56372695e-10 4.324825608e-10 2.420538387e-10 3.512185996e-10 5.099186754e-10 4.644883709e-10 4.403501913e-10 4.076272312e-10 5.427259519e-10 4.670475116e-10 4.520838837e-10 5.111666562e-10 4.394501974e-10 4.808943058e-10 4.611529925e-10 4.258337354e-10 4.970906539e-10 3.742688963e-10 2.407426478e-10 2.337487784e-10 1.986602962e-10 2.528972205e-10 2.85291986e-10 4.462139125e-10 6.260150241e-10 6.537135644e-10 8.670625337e-10 6.89018699e-10 7.642082588e-10 6.143951782e-10 5.696337995e-10 3.743574659e-10 6.95070788e-10 7.815813075e-10 5.26016038e-10 3.902187293e-10 5.924718257e-10 5.673451782e-10 5.556057428e-10 4.210991882e-10 3.81692312e-10 2.662289278e-10 1.032499195e-10 1.10125314e-10 2.314713281e-10 3.384456746e-10 6.471036032e-10 5.912560962e-10 5.552193061e-10 6.176924984e-10 7.841983678e-10 1.014137097e-09 9.492399604e-10 1.001859183e-09 8.596232526e-10 8.26200644e-10 4.128468966e-10 1.644702975e-10 1.789298877e-10 2.083400213e-10 8.115141753e-11 1.803382177e-10 2.109840737e-10 1.137044734e-10 1.859489082e-10 2.400306308e-10 9.551761229e-11 1.530633486e-10 1.156074758e-10 5.456171598e-11 0 1.421696265e-10 2.324677593e-10 1.349730569e-10 1.421168875e-10 1.038773607e-10 1.536825131e-10 1.335838899e-10 2.231579223e-10 1.673181813e-10 1.30637926e-10 1.600602508e-10 1.465169328e-10 1.303281839e-10 1.852990403e-10 1.323041438e-10 1.540215011e-10 2.736307206e-10 1.479919848e-10 2.071488397e-10 1.887031124e-10 3.574172041e-10 6.747052374e-10 8.425060963e-10 9.938820804e-10 9.759379582e-10 1.168507213e-09 9.959745035e-10 5.843294897e-10 5.662706831e-10 5.426415891e-10 5.247360811e-10 3.091080973e-10 1.485209161e-10 2.195509745e-10 6.939969103e-11 2.475954356e-10 4.207712603e-10 3.921326058e-10 5.277764919e-10 5.984028406e-10 6.903693923e-10 4.511355457e-10 5.114856045e-10 8.042184931e-10 5.822746204e-10 7.519711772e-10 5.726585308e-10 6.650745251e-10 7.949038353e-10 8.64294889e-10 5.589935383e-10 6.107248354e-10 5.197066783e-10 5.663365353e-10 4.188972868e-10 1.971663169e-10 8.314101992e-11 2.364710192e-10 3.63473028e-10 3.770833856e-10 3.948782807e-10 3.3499437e-10 5.22641117e-10 4.210613328e-10 3.696011747e-10 4.651439261e-10 4.826729668e-10 3.58955619e-10 5.250612619e-10 5.295394097e-10 4.391674238e-10 4.930803379e-10 4.284106866e-10 3.6870404e-10 2.913344553e-10 2.291122954e-10 3.154620193e-10 4.610524247e-10 1.294069871e-10 2.910563889e-10 2.698113014e-10 2.212284885e-10 3.357246915e-10 2.722624829e-10 3.637844889e-10 3.203884666e-10 1.813520725e-10 3.576935504e-10 2.548553039e-10 3.079547448e-10 2.600116786e-10 2.93627643e-10 3.401060722e-10 2.20809914e-10 2.367312446e-10 3.525773776e-10 2.543324728e-10 4.289140358e-10 4.015343075e-10 3.203757873e-10 3.216005569e-10 2.628458455e-10 1.908400032e-10 2.378228486e-10 3.013082147e-10 2.956599813e-10 1.8113578e-10 4.041690233e-10 3.756628899e-10 4.433024856e-10 4.079458055e-10 1.743677224e-10 3.838115595e-10 2.297092254e-10 7.833334764e-11 1.256251e-10 2.943840495e-10 1.986547615e-10 2.121024562e-10 1.680550186e-10 2.382279847e-10 2.158204258e-10 1.377565073e-10 2.792208781e-10 2.918881742e-10 2.499090278e-10 1.659525252e-10 3.721053569e-10 7.421446455e-11 2.416045402e-10 1.645740219e-10 8.694629269e-11 2.623434147e-10 1.701745446e-10 1.670716986e-10 1.199278593e-10 4.157326044e-10 1.746811376e-10 8.92202675e-11 1.392242125e-10 1.421045266e-10 2.765793181e-10 3.653797462e-10 1.524484495e-10 1.199529079e-10 8.610704894e-11 1.57227263e-10 2.940586276e-10 1.648365776e-10 3.167750392e-10 1.598541302e-10 2.815812628e-10 4.163094621e-10 +2.237946652e-10 2.575624665e-10 2.240435338e-10 8.184614216e-11 1.871204409e-10 1.17765366e-10 1.388210178e-10 3.151926819e-11 1.756251261e-10 1.961343544e-10 3.851551593e-10 8.505195874e-11 1.416133849e-10 1.767558871e-10 1.371468737e-10 1.626481699e-10 1.427804103e-10 4.523488344e-10 2.105823964e-10 1.981033011e-10 2.21173518e-10 2.18944504e-10 6.494439245e-11 9.620654075e-11 1.084978371e-10 3.933682098e-10 1.804845006e-10 1.515092756e-10 1.25346842e-10 1.851189017e-10 2.157849638e-10 1.474997974e-10 2.581525041e-10 1.310953089e-10 1.766377711e-10 1.836570346e-10 3.508525558e-10 6.236926739e-11 1.656464246e-10 3.324532756e-10 2.2337744e-10 3.060464117e-10 4.604355007e-10 3.052068228e-10 4.133865869e-10 3.644233381e-10 3.260574406e-10 1.512360001e-10 1.419756642e-10 2.108060904e-10 2.906004457e-10 2.870464905e-10 3.899529579e-10 4.053861523e-10 3.047341487e-10 5.62488759e-10 3.235635055e-10 3.320701735e-10 2.813704101e-10 3.23288506e-10 2.850796214e-10 3.696589548e-10 3.003728865e-10 3.338849326e-10 3.634440326e-10 2.424805886e-10 3.702981274e-10 2.398851385e-10 3.172806398e-10 2.379469891e-10 2.77207566e-10 2.484122081e-10 3.538901147e-10 3.493068781e-10 2.13663561e-10 5.050002715e-10 4.411053369e-10 2.990552009e-10 3.511264263e-10 3.782305004e-10 4.198218986e-10 5.8671206e-10 5.47938365e-10 3.939879731e-10 4.81082696e-10 5.309609618e-10 4.795835361e-10 6.477757293e-10 4.233496304e-10 4.140943213e-10 4.814673814e-10 3.413102813e-10 3.693971854e-10 3.193959745e-10 3.592714989e-10 2.661602167e-10 7.805156374e-11 2.983447926e-10 2.034641618e-10 2.028874817e-10 6.10694776e-10 5.575297272e-10 7.026654622e-10 4.927421612e-10 6.466851443e-10 6.245294187e-10 7.08165272e-10 5.882931557e-10 7.807747992e-10 7.071654171e-10 5.14469756e-10 5.08586974e-10 4.843832366e-10 6.477274518e-10 4.449635963e-10 3.063244355e-10 3.558250045e-10 1.638723156e-10 1.269512076e-10 1.014388585e-10 6.486493904e-13 3.788643994e-10 6.462500983e-10 6.587181239e-10 6.027533479e-10 6.458148332e-10 8.263976578e-10 1.172275251e-09 9.721755681e-10 9.716503677e-10 8.192359168e-10 6.640445352e-10 3.072263608e-10 9.950905123e-11 1.724874658e-10 4.291278886e-13 1.810735756e-10 1.954214864e-10 2.027008009e-10 4.277619075e-14 1.653908724e-10 2.489788592e-10 1.209435339e-10 1.33091988e-10 1.870980057e-10 7.320072786e-11 1.742861813e-10 1.221817794e-10 1.212646945e-10 1.452381711e-10 1.598262905e-10 1.976093792e-10 1.114819649e-19 9.122881615e-11 2.150093192e-10 9.431761954e-11 1.578889155e-10 1.167296773e-10 6.352800755e-11 7.519986773e-11 1.182498097e-10 9.382041943e-11 3.109094929e-10 1.461675479e-10 1.443128895e-10 1.564270885e-10 1.511905972e-10 3.843928499e-10 6.239339291e-10 9.412081341e-10 9.809436604e-10 1.025887319e-09 9.32895765e-10 8.737004215e-10 5.753747165e-10 5.314359912e-10 5.378764186e-10 4.338221493e-10 2.643552095e-10 1.281981995e-10 1.485296985e-10 1.875079658e-10 1.48679309e-10 2.570766521e-10 5.363776791e-10 4.205036377e-10 5.522310052e-10 5.633094315e-10 6.719393018e-10 5.978919513e-10 7.979126877e-10 6.748342141e-10 4.747785056e-10 6.543635226e-10 8.25472121e-10 5.835534332e-10 6.611048522e-10 6.157622519e-10 7.847611938e-10 6.400608423e-10 8.341066162e-10 2.410074541e-10 2.919128595e-10 2.60326626e-10 2.014450708e-10 2.1994667e-10 2.153851288e-10 2.827598877e-10 2.933320292e-10 3.210657782e-10 3.83523845e-10 5.097124606e-10 3.972857307e-10 3.517431242e-10 4.197878077e-10 4.855590787e-10 3.881661213e-10 4.101327663e-10 4.442072605e-10 4.7735048e-10 3.309747754e-10 3.413289524e-10 2.391483031e-10 4.456812507e-10 2.656329433e-10 3.479541733e-10 3.503345703e-10 2.571114732e-10 3.102991036e-10 4.467068374e-10 2.163683854e-10 3.058330227e-10 3.485359362e-10 4.032241248e-10 4.790100127e-10 3.037024657e-10 3.018839906e-10 2.898384828e-10 3.780239091e-10 3.113418667e-10 3.136804129e-10 3.048669596e-10 3.126757621e-10 2.95469842e-10 2.446227206e-10 2.780145934e-10 3.22258911e-10 3.246454306e-10 4.741604769e-10 4.032629315e-10 1.944494822e-10 4.783133777e-10 2.066055303e-10 3.716465924e-10 3.249272395e-10 3.018664248e-10 1.575689738e-10 3.233549185e-10 2.815725381e-10 2.34462785e-10 3.212045176e-10 1.984208468e-10 4.208305108e-10 3.537149643e-10 1.575369003e-10 4.227580404e-10 2.060105454e-10 1.202647978e-10 2.549427495e-10 2.064809085e-10 3.148230264e-10 1.5649793e-10 1.66587421e-10 3.069664049e-10 2.774249122e-10 1.79471958e-10 1.182618086e-10 1.572769449e-10 2.05582036e-10 6.103855376e-10 1.000997205e-10 1.639245511e-10 2.06553935e-10 8.854534303e-11 2.318455866e-10 9.632870372e-11 1.952940491e-10 1.104079494e-10 1.636823777e-10 1.536801402e-10 4.261610754e-10 2.335008053e-10 2.441632973e-10 1.628646559e-10 1.858130845e-10 9.662107821e-11 1.347260334e-10 1.976089066e-10 2.232537191e-10 2.496914509e-10 +1.213838452e-10 1.981145578e-10 1.68158809e-10 2.675424965e-10 1.91734777e-10 1.772473823e-10 7.947344422e-11 1.56809512e-10 3.855116159e-10 3.367278509e-10 2.518364873e-10 1.227447611e-10 2.237404409e-10 3.106891282e-10 9.580441789e-11 9.539717837e-11 3.131816519e-10 1.07362626e-10 3.468964047e-10 1.141797489e-10 1.517456863e-10 2.280891014e-10 1.447480277e-10 2.696546216e-10 1.637814042e-10 2.436046959e-10 3.037265011e-10 1.671820842e-10 2.166764967e-10 3.17028907e-10 2.061049095e-10 1.5427727e-10 2.564513831e-10 1.484591161e-10 2.086062993e-10 1.661066837e-10 1.333392584e-10 1.853598976e-10 2.331640348e-10 2.524226896e-10 1.555176492e-10 2.317901484e-10 2.471003575e-10 3.441946974e-10 4.477114507e-10 3.340883691e-10 2.299178466e-10 2.732734657e-10 2.276009932e-10 2.633547003e-10 3.309894776e-10 4.113128149e-10 2.600511341e-10 2.509639954e-10 2.982510384e-10 2.128432565e-10 2.608112079e-10 3.133208353e-10 3.823112144e-10 4.332654234e-10 2.165648551e-10 4.655457798e-10 2.545678241e-10 2.55685602e-10 1.665786517e-10 2.370092762e-10 3.272937304e-10 3.136746122e-10 3.996858613e-10 2.40380584e-10 4.492615103e-10 2.815148772e-10 3.929562407e-10 3.12965614e-10 3.548778602e-10 1.360215747e-10 2.610469593e-10 4.4589002e-10 3.146990317e-10 5.567750376e-10 5.147715039e-10 4.740066001e-10 2.97377135e-10 5.323082412e-10 4.043954088e-10 4.227971642e-10 4.372438875e-10 3.805624357e-10 3.132442155e-10 3.826962633e-10 3.186695791e-10 4.060174539e-10 4.001398934e-10 3.000060784e-10 2.751091922e-10 3.029513992e-10 1.078239605e-10 2.506584463e-10 1.502671119e-10 3.532906399e-10 6.63348377e-10 4.980357094e-10 8.025565493e-10 4.036886071e-10 6.719265099e-10 5.787219656e-10 6.701686464e-10 6.426015594e-10 9.836291137e-10 7.213694064e-10 6.680126359e-10 5.286494294e-10 5.120690258e-10 4.651679592e-10 3.881459643e-10 5.544668295e-10 3.2164716e-10 9.717242653e-11 1.999255944e-10 2.107201689e-10 9.91713157e-11 4.108856371e-10 4.289915023e-10 7.059567946e-10 5.443799193e-10 7.63985283e-10 1.019699432e-09 9.83433143e-10 9.772259142e-10 1.03539195e-09 8.311472679e-10 6.081788309e-10 2.983639375e-10 9.990935401e-11 1.712864363e-10 1.084326147e-10 1.005529092e-10 1.649100194e-10 2.449478797e-10 1.734049909e-10 1.299810945e-10 0 1.203073283e-10 1.478278224e-10 1.138814822e-10 1.383900482e-10 1.389877537e-10 0 1.357617967e-10 9.14209557e-11 1.253616558e-10 1.0630036e-10 1.653938142e-10 3.46612613e-10 1.149252514e-10 2.392048487e-10 1.87743636e-10 1.320262523e-10 9.376684832e-11 1.818952991e-10 2.492261302e-11 8.762102648e-11 1.964393346e-10 1.807438797e-10 9.364129186e-11 1.421270162e-10 8.350039093e-11 2.133995295e-10 6.090200901e-10 7.932888175e-10 1.075934313e-09 9.296663864e-10 1.064580194e-09 1.005132363e-09 7.796543182e-10 5.111256713e-10 5.734293681e-10 6.057397166e-10 4.852674472e-10 1.96184094e-10 2.072044809e-10 8.948117833e-11 1.852262202e-10 3.548614849e-10 4.035577245e-10 4.65866984e-10 4.837699103e-10 5.09808032e-10 4.393632014e-10 5.734919532e-10 7.869446846e-10 7.928931909e-10 5.35786684e-10 5.810689876e-10 6.811883137e-10 7.722750391e-10 6.995037568e-10 5.651116311e-10 6.187051643e-10 7.51498699e-10 5.728606319e-10 1.148177446e-10 2.164074301e-10 1.708921575e-10 2.572270992e-10 2.705319442e-10 3.866956081e-10 4.477627055e-10 3.608814874e-10 3.225195449e-10 4.772193024e-10 5.556016361e-10 5.262639152e-10 3.78857031e-10 4.951266347e-10 5.51112091e-10 4.42009653e-10 3.493804696e-10 4.315574003e-10 2.332086404e-10 3.931147662e-10 3.373832854e-10 3.236952019e-10 4.308784927e-10 3.30080389e-10 1.527684873e-10 2.637764144e-10 2.198464402e-10 2.240055278e-10 3.230690637e-10 2.660146622e-10 3.398364358e-10 3.670361438e-10 2.608733365e-10 3.156435122e-10 2.489062829e-10 3.476897433e-10 2.649368652e-10 1.366055461e-10 1.858065877e-10 2.268031877e-10 2.894311063e-10 2.495133504e-10 2.601848028e-10 2.268129502e-10 3.272489002e-10 3.826109513e-10 2.985422276e-10 3.228668424e-10 2.07997442e-10 2.586801674e-10 2.751571348e-10 2.212496455e-10 4.520062375e-10 4.450177731e-10 2.82224905e-10 2.18815269e-10 2.504844782e-10 1.135710612e-10 2.770598442e-10 2.646734893e-10 2.412294132e-10 2.893796531e-10 2.298748643e-10 1.496909038e-10 2.901100305e-10 1.253255623e-10 2.902043448e-10 1.066904482e-10 1.35068821e-10 2.489491059e-10 2.033606964e-10 2.091378861e-10 2.496036513e-10 2.751913335e-10 1.254372788e-10 3.885604925e-10 2.283531432e-10 1.948936978e-10 2.959833504e-10 4.138732347e-10 2.502156389e-10 2.298172118e-10 3.059717065e-10 1.278239867e-10 2.664388846e-10 9.034875155e-11 3.030370368e-10 1.838735168e-10 1.067207006e-10 2.554997716e-10 6.580067826e-11 1.602180835e-10 1.987526817e-10 5.002265359e-10 1.367474681e-10 1.789275057e-10 1.130285281e-10 1.446307474e-10 1.951579955e-10 +1.032680906e-10 2.752514774e-10 3.776805438e-10 1.93023112e-10 2.05394967e-10 1.312123186e-10 1.391901367e-10 1.07010689e-10 1.071763848e-10 7.309537167e-11 1.388693368e-10 3.396676468e-10 2.32636073e-10 4.277617013e-10 1.460240815e-10 1.481348079e-10 3.833710528e-10 1.416894056e-10 3.423071758e-10 1.740135478e-10 1.340060424e-10 1.491382513e-10 1.597847188e-10 1.446215811e-10 2.275924082e-10 3.209778255e-10 1.22630839e-10 1.905141503e-10 1.713958482e-10 2.828295507e-10 2.679351635e-10 2.683666395e-10 2.220294433e-10 1.997104576e-10 1.719023181e-10 1.265046591e-10 2.942799293e-10 1.778933289e-10 1.823996121e-10 2.477603913e-10 3.017577751e-10 2.710477693e-10 1.273644524e-10 4.298465672e-10 5.533538213e-10 3.805006773e-10 2.099698789e-10 2.512146286e-10 4.422690019e-10 3.992615108e-10 3.77594886e-10 4.350290923e-10 3.703733426e-10 3.050452098e-10 2.632634394e-10 3.960081964e-10 2.509013572e-10 4.623466385e-10 3.386864969e-10 2.596749385e-10 1.316181874e-10 3.209162271e-10 3.979296284e-10 3.224841389e-10 2.315127156e-10 5.014434313e-10 2.823836511e-10 2.990645019e-10 2.790042114e-10 3.124299677e-10 3.73425257e-10 2.929050139e-10 3.236056247e-10 2.859249813e-10 3.88153426e-10 1.874528791e-10 2.540936187e-10 2.851659602e-10 2.368849401e-10 3.591392235e-10 5.070304322e-10 5.074218324e-10 4.507689877e-10 3.362445108e-10 3.505210212e-10 2.98673269e-10 4.60882839e-10 4.313449782e-10 4.264118193e-10 4.859291452e-10 3.670711141e-10 3.522912469e-10 4.775686953e-10 3.058235771e-10 3.08876949e-10 2.900688899e-10 1.041117717e-10 1.846963726e-10 2.408513066e-10 2.828779498e-10 6.651652648e-10 7.451785831e-10 4.590869574e-10 6.562975242e-10 6.889436203e-10 5.542425071e-10 6.386071044e-10 6.355861277e-10 7.304486919e-10 6.743073042e-10 5.80760994e-10 4.6750621e-10 4.918928097e-10 5.393192082e-10 5.509502887e-10 4.163987378e-10 2.684898183e-10 1.287137877e-10 8.434970213e-11 0 1.06982869e-10 5.131486545e-10 6.444336025e-10 5.486633556e-10 6.417163891e-10 7.483687147e-10 1.032959933e-09 1.034132497e-09 1.009624814e-09 8.431332152e-10 8.960037455e-10 5.215333123e-10 1.454164527e-10 8.752924352e-11 1.176280996e-10 1.925946098e-10 3.824330941e-11 1.191998741e-11 1.410378359e-10 1.650368453e-10 1.692229385e-10 2.125629315e-10 1.392365761e-10 1.157128129e-10 1.344353881e-10 1.377608018e-10 1.154473812e-13 1.447887912e-10 1.230366733e-10 1.587764459e-10 1.586661785e-10 0 1.499454737e-10 1.673060098e-10 1.612180978e-10 1.305899999e-10 1.212956801e-10 1.725406323e-10 6.79056553e-11 2.716298803e-11 8.895904766e-11 1.410829091e-10 0 1.699517416e-10 1.643233616e-10 1.236625056e-10 1.856412275e-10 8.825182342e-11 3.617564487e-10 7.502307774e-10 9.570250783e-10 9.930791643e-10 1.191280283e-09 1.337378797e-09 9.156332331e-10 6.205828461e-10 6.915551737e-10 5.435789381e-10 4.62957881e-10 1.303952657e-10 2.658139844e-10 1.595837302e-10 1.457878252e-10 2.165840096e-10 3.852301023e-10 5.32026624e-10 5.815227696e-10 5.12618888e-10 3.740924678e-10 5.277487044e-10 7.880121112e-10 6.850751006e-10 6.072649002e-10 7.358498894e-10 8.074708491e-10 4.875402387e-10 6.727606574e-10 6.012696095e-10 6.40013043e-10 7.76001571e-10 7.661445887e-10 1.81303501e-10 1.325462649e-10 1.219636382e-10 2.180770078e-10 1.426784506e-10 3.378362715e-10 2.789057567e-10 3.91040263e-10 4.280636361e-10 5.232559145e-10 3.908080253e-10 4.217594635e-10 5.74888778e-10 4.761862915e-10 4.674746067e-10 3.449924371e-10 5.583697878e-10 5.997973117e-10 7.201760539e-10 4.438461326e-10 5.713469151e-10 3.523925562e-10 3.158365704e-10 1.859411676e-10 3.294121255e-10 3.173047046e-10 3.074027991e-10 4.10261807e-10 3.36401043e-10 4.773278544e-10 2.947727536e-10 2.467568432e-10 4.135351835e-10 5.379661459e-10 1.554408274e-10 4.568763203e-10 1.907756856e-10 2.105954104e-10 3.150881705e-10 1.9026729e-10 2.751708037e-10 3.257027384e-10 2.734580213e-10 3.540445531e-10 5.632824166e-10 3.337425983e-10 3.262324975e-10 2.506338209e-10 3.428465331e-10 2.250407595e-10 3.176116845e-10 4.65511736e-10 4.367810469e-10 3.203270871e-10 3.152867903e-10 3.414520923e-10 1.854319723e-10 3.184426718e-10 3.852249864e-10 1.068827845e-10 1.219084012e-10 9.936720469e-11 2.578874725e-10 2.776682126e-10 1.689984132e-10 2.73023939e-10 1.570211483e-10 2.681823851e-10 1.269301309e-10 1.403261613e-10 1.456429792e-10 2.153538752e-10 2.113670153e-10 1.7901597e-10 1.151457352e-10 1.883686977e-10 2.197626682e-10 1.754966306e-10 3.63229282e-10 2.166714989e-10 9.868898031e-11 7.775878041e-11 1.903263951e-10 1.995381168e-10 3.168021958e-10 1.435557191e-10 1.945454021e-10 4.129113613e-10 1.709607222e-10 9.258546032e-11 1.516172356e-10 3.332581942e-10 1.047263431e-10 1.274698379e-10 9.595295875e-11 1.476419822e-10 1.933725516e-10 2.892339037e-10 1.290810268e-10 +2.216318269e-10 2.466065386e-10 1.547780242e-10 2.125906755e-10 1.072757628e-10 1.247668181e-10 2.395963393e-10 2.989484778e-10 9.837786554e-11 1.501098954e-10 2.351140866e-10 1.642375798e-10 2.03656282e-10 2.639290216e-10 3.473993261e-10 1.975054e-10 1.282916538e-10 2.547608092e-10 1.918083993e-10 3.581365929e-10 2.99356948e-10 2.509039194e-10 2.028856374e-10 7.910886911e-11 3.07878867e-10 1.341283095e-10 3.757693207e-10 1.622419537e-10 1.784996272e-10 1.782467468e-10 1.227764077e-10 2.360530534e-10 4.010398441e-10 4.34180124e-10 2.874363969e-10 1.962101768e-10 2.449109917e-10 1.164818446e-10 1.500867734e-10 2.620341596e-10 1.89191969e-10 1.515580066e-10 3.130124222e-10 2.307296438e-10 2.878699096e-10 4.619635139e-10 4.381522026e-10 2.928780192e-10 2.831739536e-10 2.782736765e-10 2.896460614e-10 2.432886983e-10 3.156938457e-10 4.138988415e-10 2.677258441e-10 2.91939122e-10 2.271559982e-10 2.969330829e-10 4.135295947e-10 2.887272463e-10 2.690020171e-10 2.195989715e-10 4.437028458e-10 2.987066602e-10 2.828651471e-10 3.192747812e-10 2.618618541e-10 3.652619977e-10 2.957211144e-10 3.351994763e-10 3.709506019e-10 3.567846269e-10 3.411763061e-10 3.464428168e-10 3.313700887e-10 3.488049229e-10 3.198609076e-10 2.539859729e-10 2.494995752e-10 4.356351072e-10 4.033704154e-10 5.950749723e-10 4.635656938e-10 5.737620333e-10 6.097686743e-10 4.536656583e-10 4.712793927e-10 5.586292496e-10 5.956808064e-10 4.021796558e-10 3.827360377e-10 4.010617691e-10 5.476623357e-10 3.026957419e-10 3.578110747e-10 1.452825121e-10 1.310845592e-10 2.905033966e-10 3.083321984e-10 5.255431749e-10 5.874543579e-10 9.738421539e-10 6.406651933e-10 7.522046348e-10 7.133507839e-10 8.624624967e-10 6.978691086e-10 7.185365523e-10 8.02681993e-10 6.275871874e-10 6.725735555e-10 5.325567586e-10 5.256480286e-10 4.455403338e-10 5.800135113e-10 4.58625835e-10 3.570947692e-10 1.653210739e-10 1.490068161e-10 1.051800601e-10 2.333282223e-10 4.527852666e-10 6.191052995e-10 4.859602592e-10 5.616008679e-10 7.572263892e-10 9.828596063e-10 9.589206614e-10 8.453805957e-10 1.119748087e-09 7.490483042e-10 4.978834714e-10 1.371118183e-10 1.639719543e-10 1.446551791e-18 2.269390107e-10 7.262566881e-11 1.271685246e-10 1.626258713e-10 1.751022475e-10 1.769346081e-10 1.501267359e-10 1.562748735e-10 1.066888639e-10 9.412692872e-11 1.459640274e-10 1.546532139e-10 1.732838516e-10 2.886194853e-11 1.641116865e-10 1.101605956e-10 2.023375485e-10 1.572373569e-10 8.217217261e-11 8.701082577e-11 9.641520594e-11 1.54492722e-10 1.978921954e-10 1.076185018e-10 1.263937052e-10 6.247252229e-11 1.371739125e-10 1.635041341e-10 2.004550608e-10 8.010167478e-11 2.187397326e-10 3.698900629e-12 8.627828062e-11 2.766511425e-10 8.617921453e-10 8.025669837e-10 9.441076537e-10 1.018954893e-09 1.041083908e-09 8.351834803e-10 6.679675895e-10 6.138861477e-10 6.157856255e-10 4.134413096e-10 1.664583757e-10 1.198970563e-10 1.298816337e-10 7.688044693e-11 2.43664362e-10 5.349094331e-10 5.562930937e-10 5.271774854e-10 5.206957752e-10 5.489126814e-10 6.125744879e-10 5.167680186e-10 7.50577705e-10 6.361837855e-10 9.141168491e-10 7.337970367e-10 8.118792774e-10 6.638438551e-10 9.461195838e-10 8.172657405e-10 5.234380908e-10 6.38170223e-10 2.161352627e-10 2.118915598e-10 1.017316485e-10 3.17789675e-10 2.910950639e-10 3.481942122e-10 2.897642454e-10 4.21403077e-10 3.16669045e-10 4.085817477e-10 3.725984532e-10 3.914735273e-10 3.645885418e-10 5.994644069e-10 4.280103924e-10 4.315119499e-10 5.406952397e-10 6.382935119e-10 5.393874227e-10 4.105484947e-10 4.526134166e-10 1.649860411e-10 1.771384654e-10 4.281989202e-10 3.989150436e-10 2.701981492e-10 3.838160308e-10 5.164018661e-10 2.652972913e-10 2.075381866e-10 3.185468859e-10 2.263723375e-10 2.188376889e-10 1.991924064e-10 2.638114575e-10 3.283065414e-10 3.182639396e-10 2.647460671e-10 2.334440506e-10 2.489721535e-10 1.83103048e-10 3.037108657e-10 5.71355281e-10 1.911022687e-10 1.970880601e-10 1.679844581e-10 3.117988966e-10 3.922698578e-10 2.059075778e-10 4.937443601e-10 4.172150776e-10 2.919937449e-10 3.43134648e-10 2.839291196e-10 3.622388591e-10 3.417922144e-10 3.45191613e-10 1.808274793e-10 1.781336674e-10 2.79398448e-10 3.074448135e-10 1.573704997e-10 1.697191646e-10 1.094998658e-10 3.323990655e-10 1.098034356e-10 3.152891491e-10 1.156549945e-10 1.418478224e-10 8.833624389e-11 1.565904131e-10 1.950081215e-10 3.233741623e-10 2.503002448e-10 1.72449754e-10 2.603486407e-10 2.448468997e-10 2.337166161e-10 1.078688805e-10 1.106967181e-10 2.214097592e-10 3.474607103e-10 1.326392433e-10 2.400763204e-10 2.788661006e-10 3.702864769e-10 3.534645645e-10 1.064284994e-10 1.625942935e-10 2.995177652e-10 3.121061818e-10 2.428808205e-10 1.999623571e-10 4.434390037e-10 1.14630669e-10 1.296705341e-10 7.450502165e-11 2.216984818e-10 9.227852541e-11 +2.977135669e-11 2.252468795e-10 3.183260358e-10 1.801723301e-10 1.100268071e-10 2.856455754e-10 4.203269494e-10 1.875299642e-10 4.484451349e-10 3.887231926e-10 1.253684028e-10 4.722308704e-11 1.181636568e-10 9.666174081e-11 1.682411752e-10 3.186548752e-10 1.211178312e-10 1.065468256e-10 2.674227769e-10 2.193960238e-10 3.437762475e-10 3.530013129e-10 3.184226087e-10 9.379199435e-11 3.281200667e-10 9.532247934e-11 3.053138708e-10 3.712161084e-10 4.492395284e-11 2.271732824e-10 1.689442274e-10 2.239073117e-10 1.097220288e-10 1.66491183e-10 1.111257037e-10 2.738725948e-10 1.534706048e-10 2.175047807e-10 1.838291493e-10 3.593787248e-10 1.473700942e-10 3.582749148e-10 3.066817665e-10 1.800791457e-10 3.759379551e-10 1.743990033e-10 2.072629737e-10 4.22163512e-10 4.097805171e-10 2.001955356e-10 2.901759436e-10 2.223700313e-10 2.235922729e-10 3.467408024e-10 3.120015212e-10 3.201647835e-10 2.511908409e-10 3.259313964e-10 1.871441019e-10 2.768880905e-10 3.118039495e-10 1.745009241e-10 3.991807389e-10 2.803936902e-10 3.462452221e-10 2.730044409e-10 2.213937013e-10 4.397228305e-10 4.885504535e-10 2.860502297e-10 3.484931648e-10 3.951558699e-10 2.876943516e-10 3.844445236e-10 3.279904651e-10 3.426907221e-10 3.437240465e-10 2.316552907e-10 3.700225579e-10 2.903155186e-10 5.561427664e-10 5.407529219e-10 5.287810837e-10 4.700996618e-10 3.753577779e-10 5.0216273e-10 5.154151714e-10 4.664584046e-10 5.334598783e-10 4.323146805e-10 2.953394819e-10 5.617356016e-10 3.228479102e-10 4.082258874e-10 2.81713587e-10 1.732032901e-10 2.794222846e-10 2.949806014e-10 1.784948138e-10 4.564424593e-10 4.913332062e-10 7.22198761e-10 4.935076969e-10 6.680811046e-10 4.039890322e-10 5.748097874e-10 7.040504383e-10 6.112753149e-10 7.02455973e-10 6.453067089e-10 4.274515696e-10 5.562674715e-10 5.91877857e-10 5.553169902e-10 5.36799678e-10 6.349780008e-10 2.160148482e-10 1.198508814e-10 2.060137786e-10 2.805299069e-11 2.511557107e-10 5.028784107e-10 6.20412438e-10 5.932950667e-10 5.476019072e-10 9.903173321e-10 1.089510653e-09 9.237856654e-10 9.717068016e-10 1.01188752e-09 5.408988165e-10 2.659897874e-10 1.301111504e-10 9.009247759e-11 1.199270804e-10 1.802373986e-10 1.856322736e-10 1.140202187e-10 7.840386807e-12 1.786498299e-10 1.050947808e-10 2.106022697e-10 1.533888574e-10 1.512331464e-10 8.758611385e-12 1.535641241e-15 1.0964905e-10 1.186095276e-10 1.998408694e-10 1.57651756e-10 1.866510176e-10 8.642742739e-11 2.4967044e-10 1.864927542e-10 1.653968112e-10 1.703563648e-10 1.620918545e-10 1.485135433e-10 8.77302913e-11 9.189985545e-13 1.476278958e-10 1.341729809e-10 9.727964367e-11 1.283636098e-10 1.26815745e-10 1.617314606e-10 0 1.546216964e-10 2.381357348e-10 6.227651356e-10 9.382206313e-10 9.172733719e-10 1.058199614e-09 9.249240448e-10 9.972598456e-10 5.690067587e-10 6.558280788e-10 6.29629204e-10 5.218025032e-10 2.640740614e-10 2.006111303e-10 1.031482882e-10 1.360277446e-10 3.547567422e-10 3.445120856e-10 5.384081615e-10 5.199393059e-10 4.548785373e-10 5.298424373e-10 6.426378502e-10 5.741261859e-10 5.942346507e-10 5.265645558e-10 7.645615103e-10 6.411123727e-10 5.94455758e-10 5.876413175e-10 8.376890586e-10 7.10677171e-10 5.631045824e-10 1.964427367e-10 3.092891319e-10 2.151361451e-10 9.855298068e-11 2.285622916e-10 3.743537379e-10 3.38332548e-10 3.4145398e-10 3.76995529e-10 4.403309635e-10 3.437529067e-10 3.568223618e-10 4.770810894e-10 4.240273289e-10 3.645621695e-10 2.399204265e-10 3.597204783e-10 3.515619319e-10 4.271472938e-10 5.519917438e-10 3.624478871e-10 3.897353506e-10 2.873446491e-10 3.110173799e-10 3.185539425e-10 4.053711511e-10 2.038259771e-10 2.449648633e-10 1.978183266e-10 2.67455324e-10 3.284940816e-10 3.145916253e-10 1.697138096e-10 3.501586498e-10 2.477411614e-10 4.515036983e-10 2.965055377e-10 2.808510401e-10 2.261384654e-10 4.777652027e-10 2.215021886e-10 1.227829186e-10 2.514385287e-10 3.364201235e-10 2.900384634e-10 4.183177875e-10 4.052071187e-10 2.776326613e-10 5.249287795e-10 2.969309647e-10 3.603848273e-10 3.385622384e-10 4.277101157e-10 4.035755939e-10 4.021707051e-10 2.15795117e-10 2.734192401e-10 3.538146482e-10 3.189573716e-10 2.289550018e-10 1.777101368e-10 2.758117268e-10 8.579467524e-11 2.027140788e-10 1.927325517e-10 1.893205317e-10 2.817190074e-10 2.148878806e-10 3.834099029e-10 1.693466402e-10 3.46201015e-10 1.717034516e-10 8.556988266e-11 3.051492291e-10 2.950660606e-10 1.292055086e-10 2.264556616e-10 3.317481335e-10 1.617042614e-10 2.183948552e-10 6.411168446e-11 1.298930602e-10 1.269894032e-10 2.608067946e-10 1.424642644e-10 8.748456329e-11 1.029213062e-10 1.241532395e-10 2.452407021e-10 1.106182099e-10 1.550008347e-10 2.309735168e-10 1.398745278e-10 2.341312667e-10 1.501426676e-10 2.164576845e-10 1.431126677e-10 6.588255809e-11 2.492479888e-10 2.320833622e-10 +1.169035601e-10 1.56530743e-10 2.067307598e-10 7.53982222e-11 2.107048974e-10 9.532225857e-11 2.172960068e-10 2.131687118e-10 2.56739736e-10 1.884803065e-10 9.696505228e-11 3.174265077e-10 1.826185527e-10 2.351739816e-10 6.930572064e-11 3.466785579e-10 1.366945646e-10 1.369266418e-10 2.592513264e-10 1.351405216e-10 2.817195511e-10 1.376307801e-10 2.260942659e-10 3.009658853e-10 1.288790768e-10 2.862158716e-10 1.846323662e-10 2.060783728e-10 1.496058236e-10 4.424936774e-10 2.004438158e-10 1.762926137e-10 2.858928938e-10 1.554876533e-10 1.778847891e-10 2.930681855e-10 1.617563687e-10 2.483410359e-10 2.873636201e-10 3.225844372e-10 2.297707045e-10 2.146677284e-10 3.502665542e-10 1.79692265e-10 3.300184003e-10 2.861480414e-10 1.930186673e-10 4.322356465e-10 3.769881866e-10 2.405994971e-10 2.398257928e-10 3.317908687e-10 3.741447725e-10 4.062517877e-10 2.007507655e-10 3.751358515e-10 1.646108904e-10 2.251180324e-10 1.537319549e-10 3.402417268e-10 3.013259006e-10 2.278936942e-10 3.915256509e-10 3.792573739e-10 4.281516477e-10 3.946757297e-10 4.842370627e-10 2.47038431e-10 2.155648239e-10 3.471401186e-10 2.591627028e-10 1.915078555e-10 3.535293886e-10 3.007332166e-10 2.327512223e-10 3.606332812e-10 2.536711937e-10 2.131978616e-10 2.94549253e-10 4.02630179e-10 4.457967935e-10 5.435627831e-10 5.364962449e-10 4.162963756e-10 4.111682678e-10 7.104398475e-10 5.848010382e-10 3.442376819e-10 4.570338799e-10 4.033253472e-10 4.687880288e-10 4.512562284e-10 3.798735757e-10 1.970708289e-10 4.64778107e-10 3.304046253e-10 1.578510196e-10 2.735385842e-10 2.373097234e-10 6.445475633e-10 6.214193479e-10 6.839823478e-10 8.242691902e-10 4.627892897e-10 6.519124098e-10 5.554250709e-10 7.645361759e-10 7.803975621e-10 6.948891328e-10 7.948414515e-10 5.234487365e-10 5.609927716e-10 5.238580169e-10 4.177074786e-10 5.125245566e-10 4.107723228e-10 2.259534514e-10 2.186852544e-10 3.486808189e-11 1.555118149e-10 3.834839305e-10 4.97452439e-10 6.39152592e-10 5.042844257e-10 5.408387157e-10 1.027734473e-09 1.071903583e-09 1.003047695e-09 9.507777834e-10 8.086834862e-10 5.631406917e-10 2.657749197e-10 1.178123364e-11 1.562923352e-10 1.225070565e-10 1.524534669e-10 1.327334037e-10 1.186816533e-10 1.882358586e-10 1.27564373e-10 1.39233045e-10 1.123963135e-10 4.68750639e-11 8.985081161e-11 1.500957292e-10 1.396137101e-10 1.106746729e-10 1.453209106e-10 1.803377109e-16 1.050423219e-10 1.814643374e-10 1.096228018e-10 1.56721701e-10 2.220611231e-10 9.945217492e-11 1.400130363e-10 1.24238862e-10 2.118191015e-10 1.59678125e-10 1.306874499e-10 2.045330246e-10 1.739994571e-10 1.314042419e-10 1.935308187e-10 2.133458822e-10 2.506082962e-20 6.330582292e-11 1.265109842e-10 1.90954971e-10 7.249374502e-10 9.481671234e-10 9.973036414e-10 8.649242124e-10 1.037954363e-09 9.116870805e-10 7.123146278e-10 5.589045853e-10 5.546817524e-10 5.096050834e-10 3.00098902e-10 1.430603099e-10 6.570579732e-11 1.750930945e-10 1.907817902e-10 5.319974573e-10 3.730388825e-10 4.576356218e-10 4.649538581e-10 5.23805341e-10 5.733779427e-10 8.481479433e-10 6.755646422e-10 5.846884971e-10 4.349602817e-10 9.582869017e-10 8.035146922e-10 6.47470173e-10 6.532683723e-10 5.928042498e-10 5.326789981e-10 4.197467874e-10 2.523816086e-10 2.704133893e-10 1.507299572e-10 3.406036571e-10 2.343588525e-10 3.357887311e-10 3.827071692e-10 4.694358638e-10 3.671342921e-10 3.651591603e-10 5.286341904e-10 5.206014453e-10 3.728076439e-10 3.051680869e-10 4.101492438e-10 4.163791073e-10 4.184224652e-10 6.364682552e-10 4.95698285e-10 3.388431277e-10 4.338831264e-10 4.104579171e-10 2.081667259e-10 3.436153586e-10 2.963487016e-10 1.305803717e-10 3.855956463e-10 3.361578287e-10 3.141941664e-10 2.099981561e-10 3.672215922e-10 3.529956091e-10 3.535449766e-10 1.563427854e-10 2.082903873e-10 4.276719263e-10 3.314633991e-10 3.198517015e-10 2.336749795e-10 3.922815774e-10 2.816047601e-10 2.381422768e-10 4.508654711e-10 3.689192023e-10 1.409496188e-10 3.542953997e-10 4.918831305e-10 3.677414651e-10 3.54875378e-10 4.206038342e-10 3.922801235e-10 3.540768718e-10 2.166001347e-10 2.96061405e-10 2.225159495e-10 2.086943325e-10 4.031526976e-10 2.331843041e-10 2.330451407e-10 2.744633324e-10 1.952864073e-10 2.825348812e-10 4.301580597e-10 2.511495024e-10 1.657993311e-10 3.97457869e-10 1.332681829e-10 1.690520387e-10 2.444558595e-10 2.048147461e-10 1.004733091e-10 1.84639106e-10 1.389709595e-10 2.886180537e-10 2.538788232e-10 9.793633404e-11 2.286571282e-10 4.827315224e-10 1.667832361e-10 2.589278002e-10 3.544996242e-10 3.786178839e-10 2.422110641e-10 8.729704898e-11 1.188072601e-10 1.391238051e-10 2.35464314e-10 2.293941624e-10 1.51812498e-10 1.356286069e-10 5.897225862e-11 2.619482072e-10 1.383795509e-10 1.021849368e-10 1.426745938e-10 1.513718183e-10 3.373838712e-10 1.320287308e-10 3.015973334e-10 +2.911126872e-10 2.301953514e-10 7.751239548e-11 3.093114687e-10 2.085874397e-10 1.214818868e-10 2.964914237e-10 2.84234673e-10 2.940860587e-10 2.474376852e-10 9.593441406e-11 1.77601293e-10 1.977244122e-10 1.657700174e-10 1.828050705e-10 9.355228966e-11 1.192579102e-10 3.980082789e-10 4.627413549e-11 6.76211917e-11 2.41685762e-10 2.241254608e-10 7.788490747e-11 2.318694325e-10 9.859216021e-11 3.126689066e-10 2.067638849e-10 3.220440033e-10 2.469750375e-10 2.12935267e-10 2.820763366e-10 1.641553202e-10 1.546711209e-10 8.875940084e-11 5.148531488e-11 3.529899461e-10 2.791195061e-10 9.887448814e-11 2.249141888e-10 3.941425627e-10 2.518785526e-10 2.190308829e-10 3.83595605e-10 2.558067979e-10 2.982608548e-10 2.097981385e-10 4.914518559e-10 3.613095458e-10 3.051237478e-10 5.273491995e-10 3.243156912e-10 2.320986095e-10 2.89519169e-10 3.727535394e-10 2.48756929e-10 3.92368543e-10 2.60662357e-10 2.639737958e-10 2.625480012e-10 3.28291881e-10 3.507341259e-10 3.511248938e-10 3.398837782e-10 3.827696595e-10 3.331766937e-10 3.766331358e-10 3.59730411e-10 2.960816586e-10 5.484726157e-10 4.172701876e-10 4.073156557e-10 4.611582612e-10 2.336291266e-10 3.752331501e-10 5.194320827e-10 3.068381056e-10 2.332073087e-10 2.499995992e-10 2.766847615e-10 4.263669544e-10 5.073331819e-10 2.720354339e-10 4.289180322e-10 4.702378845e-10 5.197613664e-10 4.308128113e-10 4.146062267e-10 5.905391537e-10 4.81239788e-10 4.52286991e-10 3.623348794e-10 3.661282005e-10 4.341807976e-10 3.671177027e-10 2.435110479e-10 2.047435645e-10 3.113685796e-10 2.798555648e-10 2.643343664e-10 5.899727903e-10 6.84917739e-10 9.548848364e-10 7.255591892e-10 7.227241249e-10 6.207759052e-10 8.363763578e-10 6.631360898e-10 5.729979306e-10 6.908005777e-10 7.192285974e-10 5.114579888e-10 4.352421457e-10 5.36266023e-10 4.455444154e-10 4.37211964e-10 4.663280996e-10 1.531567046e-10 1.460575471e-10 0 1.053181767e-10 3.164787109e-10 6.090692221e-10 5.060575359e-10 5.527986243e-10 6.80266099e-10 9.662593262e-10 1.144417129e-09 1.015673983e-09 8.453152906e-10 8.680402508e-10 5.251890559e-10 1.410105958e-10 2.192699832e-10 1.880066279e-10 1.595272501e-10 1.728587686e-10 5.219297224e-11 9.754116466e-11 1.491165272e-10 1.130792736e-10 1.082631972e-10 7.403667695e-11 1.264231299e-10 1.821425563e-10 2.043919144e-10 1.140153693e-10 1.400796341e-10 8.471875137e-11 1.008095048e-10 2.130706199e-10 1.709565042e-10 1.136852997e-10 1.214896736e-10 1.432241612e-10 1.381477998e-10 1.808741308e-10 1.164856722e-10 1.620634082e-10 1.566013355e-10 1.943142808e-10 1.975178727e-10 1.097028653e-10 8.447293441e-11 1.877319086e-11 1.417913682e-10 1.445546107e-10 1.481146712e-10 1.084237264e-10 1.730647804e-10 6.146791939e-10 9.712719848e-10 9.341801485e-10 8.913846776e-10 9.966816038e-10 9.6329216e-10 5.879520487e-10 4.692939112e-10 5.875820489e-10 5.438809251e-10 3.38341046e-10 1.810138511e-10 2.5519922e-10 9.751424284e-11 2.414178815e-10 3.892182884e-10 6.357152372e-10 4.826826516e-10 4.097173235e-10 5.0921885e-10 4.79733836e-10 7.638903956e-10 6.717344008e-10 6.749262509e-10 6.716873958e-10 6.667370203e-10 6.511482722e-10 6.059464696e-10 6.82466612e-10 6.578101435e-10 5.576508151e-10 5.294737123e-10 2.47451148e-10 1.896291983e-10 2.359549266e-10 2.140516505e-10 3.450910334e-10 3.513042987e-10 2.89146356e-10 5.132617818e-10 2.732105031e-10 3.373986379e-10 5.126589994e-10 4.8990698e-10 5.119301531e-10 5.396636449e-10 3.369717136e-10 4.302845164e-10 5.608558097e-10 4.474300991e-10 4.939681518e-10 3.68331325e-10 3.775211401e-10 3.131074869e-10 2.773966991e-10 2.707913116e-10 2.277445363e-10 3.22090647e-10 3.036177027e-10 4.196124468e-10 3.428707972e-10 2.647769729e-10 2.247866145e-10 3.872623976e-10 3.86410563e-10 2.165104656e-10 3.490070827e-10 3.091821056e-10 3.817364992e-10 2.578339002e-10 4.649924833e-10 2.234120387e-10 4.25116196e-10 3.837345673e-10 2.655167668e-10 3.413303482e-10 3.292469985e-10 2.448886526e-10 4.718273873e-10 3.882369824e-10 2.573374881e-10 3.345534077e-10 3.768304403e-10 2.760312807e-10 2.939155457e-10 2.585324573e-10 3.587835486e-10 5.130607165e-10 2.309847704e-10 1.534293667e-10 2.999457225e-10 7.486278354e-11 1.68341834e-10 2.058107202e-10 1.704443091e-10 2.188594747e-10 1.280421655e-10 1.801303192e-10 1.833413136e-10 1.789948382e-10 2.00201246e-10 3.02118045e-10 2.237933483e-10 3.188770374e-10 3.058951624e-10 5.406800327e-11 5.296198245e-11 1.679669795e-10 2.188996495e-10 3.233839551e-10 3.056630192e-10 2.167691127e-10 1.507981863e-10 3.237841641e-10 1.75457554e-10 2.932897509e-10 1.483592195e-10 1.27596051e-10 1.328054788e-10 4.476767832e-10 4.315782248e-10 3.496920963e-10 1.261601103e-10 2.57675094e-10 1.897188432e-10 2.247785786e-10 1.091137968e-10 1.995485502e-10 3.28519232e-10 1.9105126e-10 1.250958209e-10 +1.750288861e-10 2.267380139e-10 1.209809421e-10 1.426057226e-10 2.274327905e-10 2.265867095e-10 2.454018118e-10 1.262589399e-10 3.633785104e-11 1.030412764e-10 1.110903464e-10 4.377155528e-10 2.452787929e-10 1.25252549e-10 1.255186217e-10 2.443180083e-10 1.211227262e-10 1.323831362e-10 1.006259313e-10 2.901499592e-10 2.433928819e-10 3.395851459e-10 2.070112453e-10 1.409386007e-10 1.395783327e-10 1.438873103e-10 1.175314473e-10 3.48085285e-10 1.7973191e-10 2.068102684e-10 1.453012057e-10 2.690623757e-10 7.708534166e-11 3.418680771e-10 1.916860363e-10 2.001453027e-10 3.140983651e-10 1.922157911e-10 1.658548698e-10 4.048922318e-10 2.512599723e-10 1.691457148e-10 3.504933534e-10 2.733670192e-10 3.216447033e-10 2.681593357e-10 2.616335835e-10 2.88315575e-10 3.610007644e-10 3.753000255e-10 2.013117315e-10 4.567522338e-10 2.458852737e-10 2.336220468e-10 3.840320804e-10 2.946155763e-10 2.621322394e-10 2.578986123e-10 3.552965424e-10 1.706780918e-10 2.137048212e-10 2.983063336e-10 1.737012547e-10 4.139787303e-10 2.395252265e-10 3.405208186e-10 2.522508571e-10 1.59390315e-10 1.978192578e-10 2.259626328e-10 4.21685387e-10 2.048443567e-10 3.041524248e-10 3.653064349e-10 2.219129023e-10 3.480553843e-10 2.580653075e-10 2.023281644e-10 4.991740838e-10 4.134965915e-10 4.255868392e-10 5.379651172e-10 5.245237655e-10 5.947867127e-10 5.22734402e-10 4.708280545e-10 5.067474259e-10 4.312167564e-10 4.343839761e-10 5.723472778e-10 2.50465856e-10 3.525927253e-10 3.549696954e-10 3.211474032e-10 1.584575672e-10 2.2113426e-10 1.487023009e-10 2.20356909e-10 2.78473205e-10 4.44523247e-10 8.662701069e-10 4.560368009e-10 8.653498516e-10 6.782149004e-10 6.199268589e-10 7.188283565e-10 5.58463294e-10 7.914132278e-10 7.86177388e-10 7.656875583e-10 5.357363859e-10 4.671349295e-10 5.585993474e-10 4.664370332e-10 4.055768934e-10 3.61202792e-10 3.803697702e-10 1.778693495e-10 1.093257791e-10 1.640034593e-12 3.795519128e-10 5.759373347e-10 4.736670148e-10 6.160051454e-10 7.35428695e-10 1.004842872e-09 1.027615166e-09 1.012427574e-09 8.410735643e-10 7.827950255e-10 3.703279471e-10 1.217204447e-10 1.082689474e-10 1.517447597e-10 1.178582995e-10 1.530429767e-10 1.710147241e-10 1.907625769e-10 1.581696449e-10 1.113462933e-10 1.377377491e-10 1.953621156e-10 2.299684567e-10 0 1.904363589e-10 1.546776756e-10 1.056786999e-10 1.215800428e-10 1.646963393e-10 1.502603604e-10 1.218285478e-10 1.595180312e-10 1.665922518e-10 1.176259715e-10 1.533970435e-10 1.485362028e-10 4.126922923e-11 1.154125421e-10 4.510089741e-11 2.562708627e-10 1.480277836e-10 1.455719792e-10 1.559938467e-10 1.692244535e-10 1.72364908e-10 1.356107206e-10 1.618864551e-10 9.87350871e-11 1.331017912e-10 6.090589023e-10 8.265205637e-10 9.863163009e-10 1.116159439e-09 1.082483378e-09 1.000180816e-09 5.724500384e-10 4.688462323e-10 6.184151782e-10 5.111145217e-10 2.089383244e-10 1.841479778e-10 4.211219243e-12 1.413538479e-10 1.157754194e-10 3.555648732e-10 4.796742292e-10 4.60517839e-10 5.548095834e-10 4.008846397e-10 5.312212216e-10 6.914386781e-10 7.204523837e-10 7.349963694e-10 4.184584388e-10 5.7296675e-10 6.783573831e-10 5.789188479e-10 7.098522599e-10 6.763463116e-10 7.302523307e-10 5.452121411e-10 2.668736847e-10 2.102203919e-10 2.478184428e-10 2.887971735e-10 5.218246787e-10 3.184773069e-10 3.759872249e-10 3.896524073e-10 4.21462447e-10 3.548262234e-10 3.872241996e-10 4.004655037e-10 6.988418325e-10 4.744838634e-10 4.470568249e-10 3.639235832e-10 4.219516803e-10 4.436304981e-10 3.666527502e-10 4.130490369e-10 4.148646064e-10 3.653173615e-10 2.318674438e-10 2.956765371e-10 2.992757725e-10 3.688492506e-10 3.584853088e-10 1.904576575e-10 3.957407337e-10 3.220842925e-10 3.373399768e-10 2.034630998e-10 3.354908014e-10 3.967424004e-10 3.106815344e-10 3.872334881e-10 2.88153871e-10 2.437937557e-10 2.599632852e-10 3.783427965e-10 2.409529546e-10 2.310208845e-10 2.822987793e-10 3.802276531e-10 4.390711768e-10 2.436844696e-10 3.734324982e-10 3.737780225e-10 6.757497966e-10 2.110828007e-10 2.886728989e-10 1.983280321e-10 2.623989358e-10 3.022641164e-10 1.739064376e-10 3.287214878e-10 2.390929244e-10 1.901604715e-10 1.529208571e-10 2.97572205e-10 1.58395402e-10 2.490850957e-10 1.147619972e-10 2.766188546e-10 3.291833073e-10 8.940033745e-11 1.521440013e-10 1.626905299e-10 2.362990628e-10 1.612939246e-10 1.106567841e-10 2.763236408e-10 1.503918584e-10 1.16082314e-10 2.707642776e-10 2.720827558e-10 2.741269739e-10 3.547923591e-10 8.340663787e-11 4.107621962e-10 3.983972411e-10 1.262713752e-10 1.954117823e-10 3.823013576e-10 1.129054636e-10 2.118470135e-10 1.908611662e-10 1.334792316e-10 1.324098983e-10 3.206394684e-10 3.788888224e-10 1.923572023e-10 3.706230964e-10 1.158894986e-10 2.277490233e-10 1.289200967e-10 1.276137892e-10 2.012568733e-10 2.70323689e-11 +3.942806419e-10 3.672248268e-10 1.846687084e-10 8.825544135e-11 2.88118111e-10 1.197495843e-10 2.634799406e-10 2.070232086e-10 1.679061028e-10 2.266072922e-10 2.579366061e-10 3.072225415e-10 1.349779867e-10 2.963116588e-10 1.907374955e-10 1.351882085e-10 1.367195716e-10 2.491957208e-11 1.164914243e-10 2.192980541e-10 1.33733536e-10 1.401682085e-10 7.682267884e-11 3.87932386e-10 1.272452303e-10 6.652030324e-11 1.743098533e-10 3.771844016e-10 2.049500938e-10 2.869788904e-10 1.874583832e-10 1.499089416e-10 2.557445523e-10 1.891890169e-10 1.803363826e-10 1.664268562e-10 3.537203912e-10 2.127270326e-10 2.082372406e-10 2.512575249e-10 1.617678747e-10 4.241747471e-10 2.208234259e-10 3.205049206e-10 2.318900202e-10 3.404184818e-10 3.332007652e-10 2.688057165e-10 2.604517489e-10 2.446098865e-10 2.008606575e-10 2.32555673e-10 4.49178367e-10 4.759002557e-10 3.259431527e-10 2.836839523e-10 4.528425689e-10 3.578059481e-10 3.498888181e-10 2.621982609e-10 1.951715652e-10 3.39906046e-10 3.692513481e-10 3.514158341e-10 3.220484678e-10 2.743924924e-10 2.780911167e-10 4.227305001e-10 2.512534025e-10 2.689179081e-10 3.685984775e-10 2.97086906e-10 3.467790819e-10 3.364810536e-10 3.308003611e-10 3.526632338e-10 3.990054711e-10 2.594478663e-10 4.420843358e-10 4.355523525e-10 5.652801356e-10 6.519702279e-10 5.17250004e-10 4.668715149e-10 4.099955345e-10 5.850641223e-10 3.104056517e-10 4.66851069e-10 4.908679191e-10 4.72886802e-10 4.024096613e-10 2.968371342e-10 3.135295742e-10 3.730485374e-10 3.264216688e-10 2.455897824e-10 2.303958798e-10 2.652624306e-10 2.221968771e-10 6.576555376e-10 7.373624687e-10 6.121128974e-10 5.903092718e-10 7.414512194e-10 4.899683725e-10 5.985281557e-10 5.693866185e-10 6.805431831e-10 7.574665683e-10 5.88856357e-10 7.224942095e-10 3.807165824e-10 3.819809885e-10 4.651316782e-10 2.939008961e-10 4.143941766e-10 1.409319687e-10 1.403760441e-10 1.299445038e-10 1.409050446e-10 4.232117563e-10 5.477411069e-10 5.366889938e-10 5.043774473e-10 7.464378005e-10 9.557320355e-10 9.887474981e-10 1.061836654e-09 8.979495561e-10 5.71986863e-10 3.935568802e-10 6.405983411e-11 1.342920653e-10 1.731429338e-10 1.421634177e-10 2.196241886e-10 1.575418274e-10 2.623213412e-11 1.145458755e-10 1.004238585e-10 1.872024956e-10 1.564444043e-10 1.867658181e-10 1.356169343e-10 1.12846429e-23 1.1158765e-10 1.644044702e-10 1.333200725e-10 8.365610798e-11 1.132156869e-10 0 1.729576631e-10 0 7.140132388e-11 1.090190744e-10 1.971147905e-10 1.551961395e-10 1.64360894e-10 7.343597493e-11 1.174150011e-10 1.397308997e-10 1.648818409e-10 9.44131066e-11 1.413514478e-10 1.683376391e-10 2.01810106e-11 2.202348218e-10 1.788053278e-10 1.434303911e-11 3.896884057e-10 7.382473058e-10 1.017144565e-09 9.689169666e-10 1.012902124e-09 1.154952653e-09 7.717128477e-10 5.229370925e-10 5.719954448e-10 5.387821976e-10 3.158596378e-10 2.08960948e-16 1.671378539e-10 1.132065476e-10 3.02139212e-10 3.848723366e-10 4.288256254e-10 4.818955168e-10 6.797001933e-10 4.050696974e-10 5.518557115e-10 6.372408224e-10 8.375304348e-10 6.151501689e-10 5.18706857e-10 7.125412467e-10 6.676889942e-10 7.957190425e-10 4.321699805e-10 6.919047689e-10 6.117033722e-10 5.418870834e-10 2.26309835e-10 2.90675746e-10 2.615501205e-10 2.051302783e-10 3.821424152e-10 3.986059254e-10 4.948383519e-10 4.630750077e-10 4.08249872e-10 4.559861879e-10 3.018764982e-10 3.496401773e-10 4.431258772e-10 3.062420805e-10 6.302606025e-10 6.128470396e-10 4.470096523e-10 6.366606416e-10 5.494412065e-10 3.609138522e-10 3.081494198e-10 3.494320244e-10 2.289142547e-10 4.935318748e-10 3.313250678e-10 5.145527304e-10 2.47584747e-10 2.809019582e-10 2.915348554e-10 3.592267053e-10 3.492300804e-10 4.341679998e-10 3.349226036e-10 3.431886912e-10 3.197551118e-10 2.762807231e-10 2.97143614e-10 3.453947911e-10 4.572273501e-10 2.873430161e-10 3.291230714e-10 2.20868674e-10 2.346760303e-10 1.710971791e-10 3.048304696e-10 3.203688383e-10 1.779965356e-10 3.971700154e-10 3.571971585e-10 3.955205304e-10 2.858313931e-10 2.986226394e-10 4.647255278e-10 3.90133565e-10 4.340784417e-10 3.546026197e-10 1.47419185e-10 1.57703692e-10 2.629508679e-10 2.120595945e-10 1.967479253e-10 1.419339561e-10 3.195585855e-10 1.413848872e-10 1.352340259e-10 3.000444958e-10 2.23012404e-10 3.271316557e-10 1.540145251e-10 3.311758693e-10 8.076165564e-11 2.644197747e-10 1.490843432e-10 1.516713671e-10 8.464202869e-11 4.07966864e-10 1.964213417e-10 1.216815598e-10 3.049225808e-10 1.726657609e-10 1.897162647e-10 1.593955105e-10 2.647805773e-10 1.140323615e-10 1.529076204e-10 1.084170774e-10 2.38571382e-10 8.209148807e-11 2.372722089e-10 4.890557498e-10 2.24673688e-10 1.150519796e-10 4.386822106e-10 3.828386807e-10 2.473927037e-10 1.657421074e-10 2.523264542e-10 6.372137468e-11 1.434660374e-10 +1.559177812e-10 1.369952564e-10 1.129723354e-10 8.448990046e-11 9.023591552e-11 3.789115229e-10 8.439974279e-11 1.697854874e-10 2.601332574e-10 1.333393584e-10 3.613763765e-10 2.009019312e-10 2.512345121e-10 1.09884681e-10 1.31828622e-10 1.191595703e-10 1.217281074e-10 1.634670238e-10 6.787969147e-11 1.387616202e-10 1.585573708e-10 1.254102799e-10 3.902218834e-10 2.68503621e-10 3.227387553e-10 2.772426989e-10 1.333598302e-10 2.871316103e-10 1.968370888e-10 3.007577957e-10 1.464018287e-10 1.258704192e-10 1.170198314e-10 3.642799019e-10 1.816253502e-10 2.244551671e-10 2.098783374e-10 1.936254558e-10 2.073212957e-10 2.785124843e-10 1.960395331e-10 9.893503563e-11 2.633904306e-10 2.705920996e-10 2.198614439e-10 1.505205623e-10 2.337391482e-10 2.651571562e-10 2.06716473e-10 3.908360995e-10 3.759365471e-10 3.05137237e-10 4.697687553e-10 3.017042015e-10 4.868704299e-10 2.672680696e-10 2.554164324e-10 3.461646822e-10 1.614837296e-10 2.212168234e-10 3.964775868e-10 3.47881464e-10 1.875517717e-10 2.755568514e-10 2.583273983e-10 4.29217622e-10 2.77720428e-10 3.80967634e-10 3.397493093e-10 2.990836878e-10 3.78695855e-10 3.034224578e-10 4.376676541e-10 2.876983345e-10 1.269015594e-10 3.353520708e-10 2.489670857e-10 2.774019636e-10 3.645365847e-10 2.954296032e-10 4.036182935e-10 2.81097235e-10 5.601899095e-10 5.54862079e-10 4.355577724e-10 4.803107809e-10 4.301136469e-10 4.524000429e-10 4.0837019e-10 5.394826239e-10 4.312945415e-10 5.222410419e-10 3.61992369e-10 4.246484943e-10 2.854631103e-10 2.594477707e-10 1.556862099e-10 1.896757391e-10 2.417313748e-10 4.435828876e-10 6.386537776e-10 5.225117388e-10 7.431289676e-10 9.385457556e-10 6.442098878e-10 5.671954096e-10 6.048359045e-10 7.859959784e-10 6.99491392e-10 5.641382461e-10 5.468825063e-10 3.972372318e-10 5.05192489e-10 4.382913009e-10 4.352091675e-10 3.627884181e-10 2.283063835e-10 1.830046384e-10 1.236978966e-10 1.309185392e-10 2.523601368e-10 5.227839565e-10 5.806794798e-10 5.634260479e-10 5.404021243e-10 9.605911256e-10 1.03455299e-09 1.080348823e-09 9.330338286e-10 6.927418687e-10 3.621677809e-10 0 1.717734542e-10 2.130911849e-10 2.015140661e-10 1.312854098e-10 1.889567258e-10 1.64509804e-10 1.575860613e-10 1.760838741e-10 5.530987868e-11 9.948848089e-11 9.827025336e-11 1.108092855e-10 1.242214327e-10 1.177140843e-10 1.693024721e-10 1.249527398e-10 9.44155734e-11 1.82907759e-10 2.116007289e-10 1.98790834e-10 1.190411823e-10 1.153427755e-10 1.522281785e-10 9.052524755e-11 1.166813715e-10 6.966249948e-11 0 1.885890788e-10 8.363401246e-11 1.212766762e-10 1.996087486e-10 1.521689364e-10 7.991185102e-11 1.673489159e-10 4.914884158e-11 8.450961113e-11 2.561456471e-11 3.169095104e-10 7.161381372e-10 8.330697437e-10 1.002570321e-09 1.096416309e-09 9.914742659e-10 8.103228253e-10 4.731837905e-10 6.082186296e-10 5.468227222e-10 4.054132463e-10 1.123574862e-10 2.290588462e-13 1.823697983e-11 1.431573775e-10 3.837655289e-10 3.9549349e-10 4.802324252e-10 5.863725031e-10 4.829067043e-10 3.555032799e-10 5.776274488e-10 8.184836958e-10 7.701680187e-10 6.399509733e-10 7.52191494e-10 6.42463834e-10 8.036805541e-10 9.234784594e-10 6.212524902e-10 6.450336368e-10 3.29608379e-10 3.258096905e-10 2.797402613e-10 1.805515751e-10 2.774713562e-10 2.862288642e-10 3.593992848e-10 3.900873843e-10 4.680487333e-10 4.476879048e-10 5.414819064e-10 3.52437164e-10 5.141081549e-10 6.141301814e-10 5.723827342e-10 5.470704628e-10 5.16546545e-10 5.381107218e-10 4.336536181e-10 3.881562065e-10 3.317033833e-10 5.386278013e-10 2.988367391e-10 3.991089859e-10 3.468367167e-10 4.311538523e-10 3.626617787e-10 3.358441985e-10 3.777408527e-10 2.239473909e-10 5.074249948e-10 4.189433821e-10 2.873194604e-10 3.885748315e-10 3.624128679e-10 2.586743485e-10 2.961414275e-10 1.955132406e-10 2.583745904e-10 2.989438904e-10 1.842623265e-10 3.285120961e-10 4.098929462e-10 2.438539114e-10 4.687948505e-10 1.726070645e-10 3.973077583e-10 3.439339653e-10 2.185484085e-10 2.172337293e-10 4.131647875e-10 2.340763374e-10 3.731610974e-10 2.459879555e-10 5.83755416e-10 3.308072372e-10 1.851729762e-10 2.565456862e-10 3.931128685e-10 1.996555725e-10 1.693433286e-10 9.881547218e-11 9.998816143e-11 1.858808751e-10 1.108558766e-10 1.545543831e-10 1.252830885e-10 9.346312103e-11 2.463197713e-10 8.368784683e-11 1.90829786e-10 1.817802928e-10 2.507409679e-10 2.860977841e-10 2.70433862e-10 3.605039082e-10 2.704393729e-10 1.262322206e-10 1.068439056e-10 1.018331234e-10 3.122159805e-10 4.528146051e-10 1.201366427e-10 2.86827149e-10 2.780620085e-10 1.730664926e-10 2.510203222e-10 1.71987233e-10 3.624826322e-10 2.303441584e-10 4.273968047e-10 2.600728919e-10 1.457028354e-10 1.355489704e-10 1.400539069e-10 1.385357626e-10 3.843960856e-10 2.465449592e-10 1.032899911e-10 3.110959819e-10 +1.518087017e-10 1.456701052e-10 1.958746474e-10 8.078058687e-11 3.175263733e-10 3.171560489e-10 1.125832482e-10 1.045281899e-10 3.307314021e-10 1.533237029e-10 3.105369781e-10 2.438420365e-10 8.015714648e-11 3.054618348e-10 2.21776937e-10 2.261794163e-10 1.320663374e-10 1.291956812e-10 3.640726831e-10 2.149316606e-10 1.839406071e-10 1.642024072e-10 1.354498178e-10 2.193022574e-10 3.721129728e-10 2.163640815e-10 1.23259446e-10 2.278366067e-10 1.216471659e-10 1.214895049e-10 1.635122287e-10 1.963801713e-10 2.612895333e-10 3.120580625e-10 3.221058364e-10 2.276955366e-10 2.322787993e-10 3.287194208e-10 2.148715931e-10 1.475317346e-10 2.279092135e-10 1.771027538e-10 2.378246396e-10 2.542825928e-10 3.828758477e-10 2.984807596e-10 4.232416783e-10 2.445654624e-10 3.285750381e-10 1.68423313e-10 2.845982142e-10 2.583879584e-10 9.570136973e-11 2.941310563e-10 2.081061019e-10 4.37557412e-10 2.764469645e-10 2.731375369e-10 3.967437411e-10 2.290449289e-10 2.605351693e-10 2.556753201e-10 3.142611401e-10 3.693397952e-10 1.986913616e-10 2.382364705e-10 4.017843264e-10 2.543716241e-10 2.389018188e-10 4.044715567e-10 3.351874863e-10 4.111432199e-10 2.296920461e-10 2.845577347e-10 3.056810194e-10 2.404700253e-10 3.705225836e-10 3.016824396e-10 4.511309095e-10 3.103205942e-10 4.217668039e-10 5.942967589e-10 5.217938419e-10 4.422306741e-10 4.875281926e-10 4.727596466e-10 4.479491803e-10 4.387339481e-10 5.070782892e-10 3.907477796e-10 4.095693955e-10 3.880087406e-10 4.25401034e-10 4.456435271e-10 3.398081254e-10 2.087444188e-10 4.009300075e-10 2.95636023e-10 2.671726578e-10 3.993467067e-10 4.990834537e-10 6.936215613e-10 6.632520523e-10 7.989563283e-10 6.112673575e-10 7.668721065e-10 6.08333596e-10 6.817388491e-10 8.477781571e-10 5.861363111e-10 5.158361679e-10 3.967587285e-10 5.220296797e-10 4.65911167e-10 5.588292026e-10 4.242852802e-10 1.835228626e-10 2.69389935e-10 1.493452335e-10 8.703682795e-11 4.128068255e-10 5.068048456e-10 5.338359898e-10 5.909697919e-10 7.698095787e-10 1.018296743e-09 1.121691902e-09 9.947436879e-10 1.033031674e-09 7.386184796e-10 1.673269467e-10 2.25213244e-10 2.356246886e-10 1.770402792e-10 1.628635174e-10 1.114984533e-10 1.784589758e-10 1.69834268e-10 1.36928359e-10 1.806121733e-10 1.12948846e-10 1.723922461e-10 1.267464923e-10 1.311756645e-10 1.606539392e-10 1.600483595e-10 1.520780203e-10 1.246126801e-10 1.15293682e-10 0 1.150344856e-10 2.663298769e-12 1.55166232e-10 1.879338791e-10 1.546938532e-10 1.920393238e-10 1.72301602e-10 1.178195605e-10 1.374925277e-10 1.303956675e-26 1.286278427e-10 1.128322818e-10 2.062303893e-10 2.073199045e-10 8.448092265e-11 1.348757602e-10 1.224216883e-10 1.505203492e-10 8.357016952e-11 2.781930501e-10 7.655801659e-10 8.593769116e-10 8.041340568e-10 1.065378107e-09 1.111793994e-09 7.5432721e-10 4.849982228e-10 5.106053544e-10 4.757421647e-10 2.252675854e-10 9.015377817e-11 2.699827824e-14 1.790199478e-10 2.42530228e-10 4.621485819e-10 4.019766841e-10 5.098114655e-10 4.454520499e-10 5.149200316e-10 6.273300698e-10 6.497342699e-10 7.593647397e-10 9.000077013e-10 4.900060687e-10 7.039133861e-10 8.253122553e-10 6.82378128e-10 9.078966766e-10 6.442850318e-10 9.871013419e-10 4.747939745e-10 2.006809537e-10 2.625478214e-10 1.650174522e-10 1.421945753e-10 4.544142518e-10 3.548167289e-10 4.282977304e-10 4.795179574e-10 4.443239423e-10 4.259898624e-10 2.976923651e-10 3.805143459e-10 3.126547341e-10 6.404783297e-10 4.590326296e-10 6.054444044e-10 5.838064496e-10 6.445040426e-10 5.286642569e-10 4.054826899e-10 3.867950794e-10 2.449008448e-10 4.188212487e-10 4.929097236e-10 3.295009018e-10 4.295862474e-10 2.639775978e-10 3.966002784e-10 2.238017927e-10 3.460400218e-10 3.09612436e-10 3.238322165e-10 2.987826403e-10 2.261519822e-10 1.982875003e-10 2.848711323e-10 2.941245935e-10 3.336860489e-10 2.439711254e-10 3.632566964e-10 1.896941908e-10 3.719145558e-10 3.787646704e-10 4.48365694e-10 4.933765769e-10 2.746175666e-10 2.492496015e-10 3.262590947e-10 3.969862888e-10 3.939787757e-10 2.829669866e-10 2.638403953e-10 3.565190093e-10 2.906124317e-10 3.527225967e-10 3.240956711e-10 3.222813069e-10 3.940070161e-10 1.647776617e-10 1.277071164e-10 1.319081747e-10 4.471251647e-10 2.241828605e-10 3.298536373e-10 1.266337243e-10 4.182827489e-10 2.422277952e-10 1.545213832e-10 1.352117504e-10 1.240784422e-10 3.579609326e-10 2.353016934e-10 2.687278867e-10 2.536027412e-10 2.372084418e-10 1.713508876e-10 1.988935319e-10 1.304315101e-10 4.555416343e-10 2.936366392e-10 1.490187162e-10 3.754837102e-10 5.98161725e-11 2.455316585e-10 2.900076264e-10 1.760803008e-10 3.389603545e-10 8.307657077e-11 1.918062251e-10 9.833516891e-11 1.539945974e-10 1.242421584e-10 1.906710298e-10 1.002314535e-10 1.538366104e-10 2.520749194e-10 7.954913714e-11 1.618837709e-10 2.28911038e-10 +1.129519907e-10 2.347487345e-10 7.670499214e-11 1.489771192e-10 3.3195538e-10 2.82516561e-11 1.016742047e-10 2.43969943e-10 2.35567282e-10 4.037399302e-10 1.840121795e-10 8.155025498e-11 1.009829916e-10 1.130951685e-10 1.137335154e-10 8.259600339e-11 3.847231977e-10 1.30673336e-10 1.016221241e-10 1.168515378e-10 8.51738907e-11 1.952338795e-10 3.619415899e-10 2.922201458e-10 6.991920333e-11 2.10923827e-10 3.187550117e-10 2.053873444e-10 1.72642129e-10 2.299958503e-10 1.361430428e-10 2.396527375e-10 2.171496076e-10 4.024732331e-10 1.447746422e-10 1.727407605e-10 9.217729373e-11 2.16111461e-10 1.320574372e-10 9.10984703e-11 1.501212646e-10 1.709519857e-10 1.747544081e-10 6.433950594e-10 2.461868608e-10 4.499315931e-10 5.394386267e-10 2.357865463e-10 3.709527005e-10 3.794813877e-10 3.870695663e-10 4.293737755e-10 2.950597201e-10 2.970443544e-10 3.576690658e-10 2.321442193e-10 3.840494784e-10 2.017971605e-10 3.494395243e-10 3.571491227e-10 4.184873705e-10 3.610405322e-10 3.830825474e-10 3.469076843e-10 3.946702565e-10 2.376579341e-10 4.567600005e-10 2.775418366e-10 3.145126922e-10 1.683736613e-10 3.840319186e-10 2.714070944e-10 2.720003842e-10 2.04414638e-10 3.788900298e-10 2.69444686e-10 3.872418799e-10 4.815379271e-10 4.639694231e-10 4.928313141e-10 3.899651423e-10 5.177593299e-10 4.414876816e-10 5.244818982e-10 6.203974045e-10 3.929937989e-10 5.178383823e-10 4.44578816e-10 4.305624197e-10 4.066874508e-10 3.032719896e-10 4.231950067e-10 3.789274085e-10 3.751417503e-10 2.058626537e-10 1.877810627e-10 2.479955023e-10 2.468669716e-10 4.755844008e-10 7.150845932e-10 7.729061152e-10 6.670777989e-10 7.033497192e-10 7.152713423e-10 8.076092223e-10 6.133909873e-10 6.323854161e-10 8.340810414e-10 7.490556062e-10 6.301077691e-10 7.155241043e-10 4.97316202e-10 5.391857013e-10 4.210404301e-10 4.755306862e-10 3.992984198e-10 1.458559589e-10 7.714117242e-12 1.397741696e-10 1.912775461e-10 4.145982861e-10 5.721367448e-10 5.07151984e-10 5.309737585e-10 7.490232113e-10 1.119297176e-09 9.786715193e-10 1.084549348e-09 8.385021315e-10 6.507807106e-10 3.170749756e-10 2.157749347e-10 1.704247568e-10 6.540394214e-11 1.449771896e-10 1.501246458e-10 9.35518539e-11 1.254224043e-10 2.157548893e-10 1.70691969e-10 1.182574494e-10 1.21646468e-10 2.088822975e-10 1.29189455e-10 7.496002777e-11 1.478849338e-10 1.822174809e-10 1.576691569e-10 1.256116746e-10 1.286308584e-10 7.298527523e-11 1.07916168e-10 1.563232561e-10 8.896240118e-11 1.260178828e-10 8.40355075e-13 9.19268449e-11 2.165631625e-10 1.072480438e-10 1.481016469e-10 1.415204444e-10 1.357405135e-10 1.270840852e-10 1.094294411e-10 2.489477261e-10 1.054853117e-10 1.821471242e-10 5.014475756e-11 1.488649376e-10 1.631641112e-10 7.582673859e-10 1.064924218e-09 9.165808908e-10 1.004242128e-09 9.707876314e-10 9.286249049e-10 6.111668408e-10 5.477734849e-10 6.704498283e-10 4.419733651e-10 1.894624738e-10 2.149182733e-10 8.712405416e-11 2.036378213e-10 3.857106987e-10 5.435045957e-10 5.248325754e-10 4.75667317e-10 6.273783693e-10 4.769499332e-10 5.578936285e-10 9.011442901e-10 5.465002358e-10 6.732294222e-10 4.843949995e-10 7.343736498e-10 6.873213163e-10 5.864324233e-10 7.69306941e-10 6.057699938e-10 5.065082381e-10 5.091255043e-10 3.160096126e-10 1.975956959e-10 1.177633121e-10 3.339651326e-10 4.614138786e-10 3.167333356e-10 4.413653841e-10 4.576531159e-10 3.379263034e-10 3.489730002e-10 4.95016952e-10 4.245771532e-10 3.927362728e-10 5.212791288e-10 4.282904872e-10 3.884193704e-10 4.33144873e-10 5.041634502e-10 4.652809461e-10 3.858226321e-10 4.889436919e-10 3.995207642e-10 4.49077643e-10 3.824186113e-10 1.904651326e-10 3.164333991e-10 3.401207554e-10 3.697752827e-10 2.218844244e-10 2.229857975e-10 3.300641459e-10 3.67135427e-10 2.978816337e-10 3.518138929e-10 2.326542819e-10 3.790047396e-10 3.067051504e-10 3.914401963e-10 2.65639135e-10 3.277229913e-10 2.089237415e-10 3.501777991e-10 2.672090075e-10 3.998322851e-10 2.159968205e-10 2.385593742e-10 3.446948348e-10 2.636936658e-10 1.733724039e-10 4.055454032e-10 2.494351152e-10 3.794838143e-10 2.911634235e-10 2.019323928e-10 2.77620311e-10 2.424797283e-10 2.922959639e-10 2.302948912e-10 1.532491875e-10 2.55398057e-10 2.186658576e-10 1.892382393e-10 2.816439622e-10 1.018014893e-10 2.164523324e-10 1.730465455e-10 2.843836152e-10 4.06488144e-10 1.63551296e-10 2.415075005e-10 1.870534821e-10 3.439613059e-10 1.594265348e-10 3.893808232e-10 1.947433191e-10 8.354001844e-11 2.432755499e-10 1.514309062e-10 2.707045917e-10 3.255566649e-10 3.107341166e-10 1.289876484e-10 3.483222227e-10 2.26541809e-10 7.376247397e-11 1.435452289e-10 2.723326772e-10 7.294565684e-11 3.609945617e-10 1.410994597e-10 2.476217705e-10 1.009654779e-10 4.672407409e-10 9.153222719e-11 1.066956041e-10 1.230532306e-10 1.090650989e-10 1.785245335e-10 +1.067055842e-10 3.108813118e-10 1.729064749e-10 1.219768891e-10 2.212494398e-11 2.131110926e-10 1.241462971e-10 1.303313407e-10 2.084692762e-10 1.653665681e-10 2.677728182e-10 1.19871052e-10 1.88557221e-10 1.4523163e-10 1.866987398e-10 1.156127408e-10 1.413563596e-10 2.89964523e-10 1.551858121e-10 2.596191511e-10 1.772110757e-10 2.677590483e-10 1.014574891e-10 6.815712347e-11 2.201230219e-10 2.746487702e-10 1.45771777e-10 1.432816806e-10 3.278768145e-10 1.821252465e-10 1.559563342e-10 3.151401076e-10 1.460902072e-10 1.599749659e-10 2.182997397e-10 1.092468448e-10 2.169200035e-10 1.544117818e-10 1.759078703e-10 1.532418726e-10 2.590547103e-10 1.000908214e-10 3.676994198e-10 2.540203368e-10 1.578256871e-10 3.112430988e-10 2.466794819e-10 4.961195713e-10 2.895291436e-10 5.182055209e-10 5.359937538e-10 3.676912102e-10 4.780431027e-10 3.912801167e-10 3.569791797e-10 1.721698038e-10 1.895467248e-10 2.805857565e-10 2.106850338e-10 3.285648355e-10 1.299929558e-10 3.023310662e-10 4.591980742e-10 3.371292876e-10 5.088550244e-10 2.687814166e-10 2.770084788e-10 2.16449702e-10 4.052127721e-10 2.720574708e-10 3.711438422e-10 4.448912366e-10 2.771004413e-10 4.398356936e-10 4.147917962e-10 5.063328471e-10 3.313984275e-10 2.53572682e-10 4.176336362e-10 3.524987567e-10 3.880414975e-10 5.027954311e-10 4.842504e-10 4.515796876e-10 4.592802777e-10 5.949377835e-10 5.602941208e-10 5.322231934e-10 3.746005173e-10 2.99934044e-10 4.551357549e-10 4.94088483e-10 4.039694047e-10 3.317549873e-10 2.981617645e-10 1.954633944e-10 1.357102225e-10 1.879282837e-10 2.84054176e-10 7.473324173e-10 7.264673756e-10 7.855194861e-10 4.607969981e-10 5.122607286e-10 7.322122367e-10 3.945649555e-10 6.121834936e-10 5.616152816e-10 6.843468596e-10 6.878935828e-10 4.242110578e-10 3.958034465e-10 4.772728625e-10 3.98293175e-10 4.185099573e-10 3.415698364e-10 1.976279715e-10 9.667216972e-11 1.491668532e-10 1.424224563e-10 3.24721141e-10 5.316962756e-10 5.829298919e-10 6.134936102e-10 8.232064719e-10 1.042664373e-09 1.022468282e-09 8.654874631e-10 9.389438914e-10 6.744056873e-10 2.559141046e-10 1.431859702e-10 1.871060788e-10 1.638115521e-10 1.504700031e-10 1.752930478e-10 1.379999184e-10 6.452945933e-11 1.012487329e-10 4.707689461e-11 1.412765608e-10 1.045102089e-10 9.949727573e-11 1.852338803e-10 1.285618705e-10 1.241765445e-10 1.399511943e-10 1.61063829e-10 7.530031869e-12 1.357919764e-10 2.399824555e-10 1.504097449e-10 2.026122102e-10 1.099097566e-12 1.671240742e-10 1.597722193e-10 1.953643132e-10 1.944619395e-10 1.403077816e-10 1.318243704e-10 1.244015355e-10 1.586598481e-10 1.332446519e-10 9.434957501e-11 1.025910225e-10 1.257106714e-10 7.46336861e-11 1.510745813e-10 1.053501463e-10 1.512152518e-10 5.923708604e-10 8.454915625e-10 8.998593378e-10 1.108290335e-09 9.764540308e-10 8.575567428e-10 5.541808295e-10 6.66468791e-10 5.784496069e-10 3.95073932e-10 1.188196662e-10 1.151855926e-12 1.467826818e-10 1.709515091e-10 3.564177768e-10 6.095099469e-10 4.680828186e-10 5.447391838e-10 3.711703504e-10 4.971831074e-10 6.984898802e-10 7.240906617e-10 8.333129611e-10 6.162628031e-10 6.283193539e-10 6.983773869e-10 6.451804153e-10 5.704448035e-10 9.214565159e-10 7.396338842e-10 6.299377572e-10 2.684738743e-10 2.40339961e-10 1.927149947e-10 1.280877143e-10 1.12729775e-10 3.111859173e-10 4.871764036e-10 5.067938983e-10 3.971148117e-10 4.697348763e-10 5.614402966e-10 6.245103921e-10 4.63602968e-10 4.091188663e-10 4.809095124e-10 4.826890701e-10 5.133675493e-10 6.257232023e-10 6.023595248e-10 3.800265759e-10 4.940611121e-10 4.89776396e-10 3.011778008e-10 2.495263131e-10 3.259306516e-10 3.80196162e-10 2.523384613e-10 4.45065725e-10 4.554829606e-10 3.458662033e-10 3.884573412e-10 3.071389569e-10 3.271478013e-10 3.25170239e-10 2.312408939e-10 3.247982818e-10 2.304038668e-10 2.083381309e-10 2.748669127e-10 2.243672742e-10 2.255580977e-10 3.479436674e-10 3.817679842e-10 2.850206413e-10 3.0953753e-10 4.743220028e-10 3.794248288e-10 3.125632101e-10 1.464181529e-10 4.302069954e-10 3.582528907e-10 3.461886139e-10 3.738327875e-10 2.563882142e-10 2.253977953e-10 1.960671972e-10 3.99022559e-10 3.870669497e-10 1.752035603e-10 2.771087047e-10 2.524171417e-10 1.489920737e-10 2.373944384e-10 1.692484327e-10 1.838794846e-10 1.978565315e-10 2.362446301e-10 3.19899165e-10 3.248941956e-10 2.613101899e-10 3.231751639e-10 3.61924204e-10 3.611412957e-10 5.247347118e-11 2.12079948e-10 2.302770592e-10 2.239610072e-10 2.160754766e-10 1.594982301e-10 9.606995399e-11 2.817196161e-10 1.838716222e-10 1.470784112e-10 2.730881844e-10 1.897305716e-10 2.561180736e-10 8.910424337e-11 1.907584482e-10 1.158291336e-10 2.124090344e-10 7.523608405e-11 2.584645174e-10 9.618332952e-11 4.605858703e-10 1.572624858e-10 3.328243742e-11 3.288730631e-10 2.157206975e-10 8.006533778e-11 +6.346054638e-11 1.429208201e-10 3.065118474e-10 1.209202293e-10 1.211117643e-10 1.881446977e-10 3.358828828e-10 3.263814311e-10 9.002389771e-11 1.888383246e-10 4.09171714e-10 2.212178236e-10 2.768077506e-10 2.384232418e-10 1.533967997e-10 2.384046653e-10 1.755536026e-10 4.232700155e-10 9.441819811e-11 2.161058354e-10 2.538355522e-10 3.157411167e-10 2.537973162e-10 2.689545209e-10 2.804870465e-10 4.185242517e-10 1.716886691e-10 3.019709475e-10 1.12201689e-10 3.295773787e-10 1.352928348e-10 1.557116703e-10 3.105332865e-10 2.125136186e-10 1.3722224e-10 3.762041354e-10 3.081206462e-10 6.837068304e-11 2.080375228e-10 1.34089426e-10 3.383835053e-10 2.594514189e-10 5.038008386e-10 2.980632439e-10 3.175259029e-10 2.774123672e-10 4.703970034e-10 2.677648874e-10 2.895512821e-10 2.522765097e-10 3.736632807e-10 3.925251807e-10 2.244333224e-10 2.401744833e-10 2.334391701e-10 2.656784875e-10 3.612061617e-10 1.238315663e-10 1.81096973e-10 1.89340944e-10 4.164648291e-10 2.648319696e-10 1.99162126e-10 3.177247965e-10 2.279110588e-10 2.048349451e-10 3.137653378e-10 3.435419261e-10 3.851520347e-10 4.666095428e-10 4.239737347e-10 3.243036654e-10 4.363898328e-10 2.378524646e-10 3.857849742e-10 5.311900436e-10 3.838827357e-10 3.183115707e-10 5.674294891e-10 4.827488382e-10 7.119433467e-10 4.813515994e-10 3.606799539e-10 4.807366188e-10 5.820650259e-10 4.080107864e-10 5.261382231e-10 3.867939211e-10 3.62167939e-10 3.026981196e-10 3.120347289e-10 3.145575775e-10 3.522655742e-10 3.129588541e-10 2.541627641e-10 1.171820904e-10 1.952530088e-10 2.217057151e-10 2.706243565e-10 8.001006036e-10 8.334565803e-10 5.801459105e-10 6.371509622e-10 8.423763346e-10 6.116058595e-10 4.699792012e-10 5.837264323e-10 7.594294512e-10 6.797953297e-10 6.539046577e-10 5.666112776e-10 5.615974729e-10 6.172418006e-10 4.62439733e-10 4.795460037e-10 4.126111112e-10 1.946875846e-10 1.017859699e-10 1.990608235e-10 2.586121661e-10 4.874152151e-10 5.008345054e-10 5.940934291e-10 5.053452212e-10 8.263297257e-10 1.013453895e-09 9.630948087e-10 9.355465373e-10 8.813517257e-10 5.986122204e-10 7.344272423e-11 2.063605327e-10 1.288580942e-10 2.969794731e-12 2.017887955e-10 1.108934246e-10 3.750485198e-19 1.290484106e-10 7.941304193e-11 9.452558598e-11 1.967076565e-10 1.192938059e-10 1.832601461e-10 1.176418822e-10 1.391637608e-10 9.770363383e-11 8.236158286e-11 1.085223729e-10 2.041218833e-10 1.731819423e-10 9.550272949e-11 1.375944701e-10 1.222214161e-13 1.417454577e-10 1.32010472e-10 1.272131826e-10 1.159458058e-10 1.576335094e-10 7.999601505e-11 9.16457331e-11 1.54740219e-10 1.153801288e-10 1.606825318e-10 1.005446052e-10 1.62379159e-10 1.962520484e-10 1.980297519e-10 8.253062293e-11 1.575922405e-10 1.837316204e-10 6.216838711e-10 9.628232489e-10 8.476922142e-10 9.150693787e-10 1.044424569e-09 7.601689883e-10 5.463084941e-10 5.73374794e-10 5.776078989e-10 3.326395285e-10 1.195072788e-10 2.020892262e-10 1.429372848e-10 2.236240361e-10 4.182157793e-10 4.2343199e-10 5.59758016e-10 4.595637406e-10 5.541239476e-10 5.342805267e-10 6.807295013e-10 8.268019901e-10 8.638650424e-10 8.364220582e-10 7.725579945e-10 5.64745447e-10 8.753384634e-10 5.458250276e-10 6.065877497e-10 1.049447776e-09 4.008774125e-10 2.801577508e-10 3.288522195e-10 2.190587411e-10 2.476543696e-10 3.068969545e-10 3.474567769e-10 4.277751868e-10 4.608334057e-10 4.829240443e-10 4.373262591e-10 2.644884176e-10 4.62793805e-10 4.050842245e-10 4.758205382e-10 3.755599301e-10 3.624439608e-10 4.42440473e-10 4.466186096e-10 4.914034014e-10 3.280955261e-10 3.107956274e-10 3.171151926e-10 1.753596201e-10 3.655440481e-10 2.128027852e-10 2.407577032e-10 2.718630029e-10 3.912551259e-10 4.68967685e-10 3.369421575e-10 2.624254054e-10 2.980897453e-10 2.59128023e-10 3.934336339e-10 3.154848529e-10 3.005917613e-10 3.329719465e-10 3.236763993e-10 4.858804262e-10 2.342608541e-10 3.395584921e-10 1.988109655e-10 2.766399161e-10 2.18451904e-10 2.831818955e-10 3.433904349e-10 2.933144715e-10 4.342762504e-10 3.176766824e-10 3.344196688e-10 2.027647773e-10 3.068559497e-10 3.746283857e-10 5.764989903e-10 2.06197063e-10 2.883486563e-10 2.136940055e-10 3.141714829e-10 1.949274024e-10 9.98413539e-11 2.378127683e-10 3.043640126e-10 4.567509797e-10 1.413884572e-10 2.661597234e-10 2.957805442e-10 9.304444295e-11 2.944343555e-10 9.936220503e-11 1.363895515e-10 1.553065358e-10 3.948758971e-10 2.203570119e-10 1.756897084e-10 1.553981498e-10 1.585157943e-10 1.617417443e-10 7.735273656e-11 2.543701079e-10 7.755254445e-11 1.797527075e-10 1.895703628e-10 3.43108245e-10 3.468861492e-10 1.867759942e-10 1.663506242e-10 1.865863985e-10 3.447023416e-10 1.406905987e-10 2.16115797e-10 1.790915495e-10 2.759262823e-10 2.362630252e-10 4.338529172e-10 1.237943127e-10 7.13533855e-11 1.71732001e-10 1.392988183e-10 1.217537777e-10 +1.901462596e-10 4.099175285e-11 5.362959741e-11 9.428517469e-11 2.569187687e-10 2.717888734e-10 1.327591738e-10 2.660583973e-11 2.143002458e-10 2.304455422e-10 1.047584166e-10 1.166058865e-10 2.599306781e-10 3.072895694e-10 1.568459852e-10 1.207327978e-10 1.562865405e-10 1.756351309e-10 1.783100058e-10 2.167312757e-10 8.761888382e-11 1.294805888e-10 1.887833285e-10 1.816946907e-10 8.84554293e-11 3.556633248e-10 3.614385259e-10 1.266042521e-10 3.234325395e-10 1.797881704e-10 1.362844417e-10 1.303400257e-10 1.620907493e-10 1.533493733e-10 1.711030555e-10 2.515465376e-10 2.084937581e-10 1.593530181e-10 9.662897923e-11 2.081359411e-10 1.830136094e-10 2.214027242e-10 2.770898465e-10 1.74619654e-10 3.107178392e-10 2.819196987e-10 2.001557905e-10 3.561948796e-10 3.740790055e-10 3.063681044e-10 3.252690589e-10 2.476036851e-10 4.584176888e-10 3.117589845e-10 3.866072548e-10 2.872668305e-10 3.883311e-10 3.517508204e-10 1.976645893e-10 3.920801251e-10 2.867844379e-10 4.128527022e-10 3.833118273e-10 4.505726158e-10 2.963499799e-10 3.361068808e-10 2.46909975e-10 3.481417725e-10 2.963017525e-10 2.644084183e-10 3.619456197e-10 3.883560693e-10 3.757520511e-10 3.865613467e-10 3.252348199e-10 2.347289053e-10 2.808485108e-10 3.492813931e-10 5.17785049e-10 6.394774605e-10 3.718673562e-10 3.63564331e-10 5.317721354e-10 4.372526406e-10 4.804909253e-10 4.429066857e-10 4.771990466e-10 4.97888309e-10 3.807822087e-10 2.959053352e-10 4.073917406e-10 3.895853271e-10 4.284012017e-10 3.118076749e-10 2.811724623e-10 1.624985496e-10 1.876144301e-10 1.595608387e-10 4.241429464e-10 6.343623198e-10 6.815015483e-10 5.37208787e-10 9.49421893e-10 6.685782603e-10 7.772705062e-10 6.748443207e-10 9.850020347e-10 7.790837775e-10 7.889130756e-10 6.057566043e-10 3.909593628e-10 5.381756819e-10 4.476845574e-10 4.372012284e-10 5.492570403e-10 4.304379938e-10 1.39685695e-10 2.221229843e-10 2.746138517e-10 1.807010924e-10 3.538528201e-10 6.342866051e-10 4.399269243e-10 5.812835199e-10 9.544162461e-10 1.165540784e-09 8.547908311e-10 1.07665409e-09 8.858240142e-10 4.78428735e-10 1.62120214e-10 1.142658425e-10 1.32413984e-10 2.253460643e-10 1.405210091e-10 2.046816832e-10 1.484871529e-10 1.097050103e-10 1.892011715e-10 1.391613832e-10 1.129286092e-13 1.587136166e-10 1.101586183e-10 7.565722825e-11 1.494012402e-10 1.302069657e-10 1.118834436e-10 1.043159e-10 2.03001935e-10 3.853155243e-11 7.099586971e-11 1.463538012e-10 1.261750973e-10 1.872324915e-10 9.075792758e-11 1.414495189e-10 1.281819053e-10 2.24663363e-10 2.079205761e-10 1.260520408e-10 1.032595258e-10 1.049439697e-10 1.841899593e-10 1.613370853e-10 1.371235015e-10 6.325664556e-11 8.950548113e-11 1.422014615e-10 2.360390479e-10 1.108450153e-10 5.686580501e-10 9.136589251e-10 1.127554071e-09 1.142068254e-09 9.293357767e-10 7.864241875e-10 4.795496307e-10 5.336732617e-10 5.737930193e-10 4.940919912e-10 1.397745236e-10 1.415743946e-10 1.096307023e-10 1.859761449e-10 3.943169453e-10 3.93278708e-10 3.263303362e-10 5.207865615e-10 5.005016769e-10 4.841627085e-10 5.627297038e-10 7.189622671e-10 7.902899561e-10 5.477472474e-10 7.014833587e-10 4.85425658e-10 6.985014662e-10 7.286312079e-10 7.800182747e-10 5.529173181e-10 7.806997007e-10 2.982876987e-10 2.900615636e-10 1.578987019e-10 1.572956709e-10 2.676274297e-10 3.609130415e-10 3.484150246e-10 3.252384709e-10 5.968360498e-10 3.117627033e-10 2.493564817e-10 4.615983228e-10 4.071996388e-10 4.689576631e-10 6.676118146e-10 4.359958219e-10 6.65248119e-10 4.921971605e-10 3.313448809e-10 4.059935216e-10 4.161619414e-10 2.37973505e-10 2.341681534e-10 3.251010122e-10 2.412606266e-10 2.377087051e-10 2.581495253e-10 2.528556467e-10 4.481518602e-10 4.375464333e-10 4.89756838e-10 3.568704815e-10 2.663066876e-10 3.690912188e-10 3.527469206e-10 3.870924923e-10 2.048301475e-10 3.579677211e-10 2.749652101e-10 2.849759148e-10 4.578837039e-10 2.491520115e-10 4.323656094e-10 3.184828936e-10 5.114805909e-10 3.032845475e-10 3.174570804e-10 2.322088212e-10 2.701715262e-10 2.727302087e-10 3.166580757e-10 3.738784902e-10 3.878391093e-10 3.238603637e-10 2.740536554e-10 2.414081236e-10 2.641441747e-10 2.854528812e-10 1.636505213e-10 3.214948776e-10 3.494143022e-10 1.246272771e-10 1.386713197e-10 3.047540008e-10 1.612726461e-10 3.182171309e-10 2.236407586e-10 3.174707889e-10 1.567823939e-10 1.859465025e-10 3.543320011e-10 1.552180453e-10 1.120814844e-10 1.262237166e-10 7.387390104e-11 2.116135169e-10 2.262930711e-10 1.380429946e-10 1.172742614e-10 3.070584599e-10 2.476397379e-10 1.359504279e-10 1.628102763e-10 2.03350964e-10 2.088971321e-10 1.998818297e-10 1.296691585e-10 1.648811721e-10 1.457980093e-10 2.124444664e-10 2.192022045e-10 3.172267788e-10 1.340784419e-10 2.500516378e-10 1.014071456e-10 1.670551755e-10 8.232847598e-11 1.600130622e-10 1.477508089e-10 +1.579509451e-10 1.504732983e-10 1.151063712e-10 3.014696128e-10 2.005870318e-11 1.51317774e-10 2.444929814e-10 1.420195075e-10 1.100877574e-10 1.702422991e-10 1.538229422e-10 1.013895143e-10 1.756559724e-10 1.863160498e-10 1.835866079e-10 1.698754043e-10 1.239166658e-10 9.655967043e-11 2.748516945e-10 1.645277426e-10 1.018080866e-10 1.19850251e-10 1.03398719e-10 2.236595436e-10 9.901610574e-11 2.890958032e-10 2.072873629e-10 3.789759991e-10 1.835433372e-10 3.795380317e-10 2.523570377e-10 1.758850402e-10 4.290014604e-10 2.95701202e-10 2.934790523e-10 1.574974484e-10 3.017859681e-10 2.262707502e-10 1.293651501e-10 2.525317006e-10 1.179730768e-10 3.146365713e-10 2.180613313e-10 2.225247377e-10 4.586789662e-10 2.765852131e-10 2.743892485e-10 4.093864743e-10 2.688201811e-10 3.211651557e-10 2.621977634e-10 3.235457115e-10 3.254703169e-10 2.420087544e-10 4.699669475e-10 4.425956668e-10 1.813339376e-10 4.030999593e-10 3.707248684e-10 3.723754238e-10 3.754573381e-10 2.928954424e-10 3.992900223e-10 2.835251052e-10 3.562199649e-10 3.706894423e-10 3.714035735e-10 2.566329316e-10 2.49520355e-10 2.917891843e-10 2.940444308e-10 2.2610912e-10 3.405865967e-10 3.355509114e-10 3.406963467e-10 2.370155748e-10 3.90818143e-10 3.207627382e-10 3.743461977e-10 4.624514152e-10 2.952390836e-10 4.394754907e-10 4.637030263e-10 4.831850981e-10 4.163007137e-10 4.692835585e-10 3.479776425e-10 3.659631028e-10 4.435557693e-10 3.529113157e-10 4.206259757e-10 3.399734077e-10 2.942204754e-10 4.107607232e-10 2.125675321e-10 1.980423022e-10 6.610952615e-11 3.537283826e-10 1.982564127e-10 6.257319309e-10 5.226259357e-10 7.986860573e-10 6.216091241e-10 8.742218869e-10 5.20276737e-10 5.823922555e-10 6.155000854e-10 6.079653171e-10 7.575969676e-10 5.853562461e-10 5.961606957e-10 4.624446305e-10 3.435941958e-10 5.019918517e-10 5.008168908e-10 3.578789315e-10 1.178079252e-10 1.10587754e-10 1.421866899e-10 7.155734102e-11 4.302725846e-10 5.459100643e-10 5.981844195e-10 4.873483113e-10 8.970746451e-10 1.178970066e-09 9.057679199e-10 1.012489167e-09 9.849221676e-10 4.876843111e-10 1.046360062e-10 1.037839702e-10 1.128704379e-10 1.945646091e-10 1.891255571e-10 1.813697484e-10 2.471769148e-10 1.872531029e-10 0 1.083656217e-10 2.119177645e-10 9.408155637e-11 1.673416411e-10 1.831824663e-10 1.713141811e-10 1.188315253e-10 1.012441342e-10 1.187719728e-10 1.532430727e-10 1.451795626e-10 1.439440694e-10 8.813713349e-11 2.02957787e-10 1.587253171e-10 1.348426956e-10 1.47154576e-10 3.449290457e-11 9.534031393e-11 1.347016707e-10 1.259782823e-10 9.104495176e-11 2.205420634e-10 1.23842966e-10 1.616333215e-10 1.077418978e-10 9.281533799e-11 2.110910503e-10 1.74019253e-10 1.222900418e-10 1.930722368e-10 5.670398157e-10 9.329753598e-10 1.100727221e-09 8.823665706e-10 1.105082842e-09 9.922808284e-10 4.878765441e-10 4.684673856e-10 5.675017426e-10 3.610826664e-10 1.783227769e-10 1.379018942e-15 1.556369435e-10 1.462305714e-10 3.365392634e-10 4.705739734e-10 4.003508018e-10 4.766826831e-10 4.158008735e-10 5.149297482e-10 4.915335849e-10 9.428560201e-10 5.751892357e-10 7.117540486e-10 7.160534687e-10 8.824428525e-10 5.687814044e-10 6.317441572e-10 7.800127729e-10 1.033716397e-09 7.139944372e-10 4.116309839e-10 1.966792214e-10 2.783886266e-10 1.69899081e-10 2.364826505e-10 3.862108477e-10 4.820198772e-10 3.713681112e-10 3.759868189e-10 3.60669274e-10 3.523837177e-10 4.133597023e-10 4.75749394e-10 6.25816449e-10 4.11584936e-10 3.484679739e-10 4.712124263e-10 5.284255088e-10 4.240506434e-10 4.73646306e-10 3.375144285e-10 2.702560516e-10 4.934704643e-10 3.268102899e-10 2.200581602e-10 2.687505697e-10 2.964366496e-10 4.029941798e-10 4.968046292e-10 2.595085534e-10 3.513424197e-10 3.756346224e-10 2.091402698e-10 4.192317899e-10 3.695289269e-10 3.454575523e-10 3.806820543e-10 2.506902991e-10 2.947735737e-10 1.707399049e-10 5.225289274e-10 3.28347665e-10 5.133560771e-10 3.706712288e-10 2.54191923e-10 3.019589858e-10 2.116064998e-10 4.252659994e-10 3.60455431e-10 3.549193098e-10 2.868989635e-10 3.609704963e-10 3.21533977e-10 2.752972114e-10 1.000060186e-10 3.043410076e-10 2.246343471e-10 2.871758163e-10 3.665799314e-10 2.467682129e-10 1.163030827e-10 2.262872852e-10 1.195044387e-10 1.689610786e-10 1.825053864e-10 5.378635938e-10 1.868503631e-10 3.148069813e-10 4.34234762e-10 1.837466642e-10 1.372601665e-10 2.296926652e-10 1.578432012e-10 2.04790355e-10 2.025420826e-10 1.908242762e-10 3.612433787e-10 1.124464921e-10 2.386524775e-10 2.118744296e-10 2.550907846e-10 1.159090159e-10 1.777709996e-10 8.07088163e-11 1.021781484e-10 3.588033477e-10 3.096153928e-10 2.201907599e-10 2.095144499e-10 6.981098725e-11 3.427751542e-10 2.656151391e-10 2.076188039e-10 3.930039661e-10 2.264132382e-10 3.099680688e-10 3.08458606e-10 2.712326512e-10 2.355229446e-10 +8.017859468e-11 1.055308876e-10 1.819180297e-10 8.564520759e-11 3.169594744e-10 4.422230844e-10 2.402309842e-10 2.962371592e-10 3.100757298e-10 3.338439109e-10 2.06956085e-10 3.268294988e-10 1.262418414e-10 2.181296801e-10 3.659890835e-10 2.607586125e-10 3.539964982e-10 1.879728444e-10 1.091283675e-10 1.151377014e-10 3.280074929e-10 1.103418492e-10 1.450565437e-10 1.518889693e-10 1.121673852e-10 9.531690752e-11 2.965028965e-10 1.744900277e-10 2.123948e-10 1.986168197e-10 2.965850907e-10 3.001321617e-10 2.038764082e-10 1.27719352e-10 2.625335713e-10 2.25895835e-10 3.470793529e-10 2.228866421e-10 2.64425438e-10 1.324980168e-10 3.080612119e-10 2.887233248e-10 1.673489704e-10 3.193647656e-10 2.306088213e-10 2.479571725e-10 3.861461935e-10 3.424522828e-10 3.375586263e-10 4.145601084e-10 2.373541572e-10 3.550388045e-10 3.979223989e-10 1.875974796e-10 3.298786158e-10 2.97150372e-10 2.549437599e-10 2.835019974e-10 3.280059894e-10 1.561949466e-10 1.822006444e-10 3.113189663e-10 3.853859328e-10 3.019929345e-10 3.356684859e-10 3.419103155e-10 3.899637981e-10 3.548920242e-10 2.661136604e-10 3.923904073e-10 3.473101496e-10 4.679345421e-10 3.99543158e-10 4.257830943e-10 3.200582676e-10 2.984383623e-10 3.64053605e-10 4.363425795e-10 2.824015456e-10 3.38286666e-10 4.345714852e-10 5.537953693e-10 3.515402701e-10 5.037748997e-10 4.337690439e-10 4.901544292e-10 6.20121287e-10 5.296144313e-10 4.331566477e-10 3.729890457e-10 3.200555655e-10 2.944841769e-10 3.790279608e-10 3.745612896e-10 2.997148178e-10 3.041316922e-10 3.350898347e-10 3.323538681e-10 6.202172193e-10 6.634589929e-10 5.719853033e-10 8.948281656e-10 6.547382956e-10 5.722887416e-10 6.278174009e-10 8.688718148e-10 8.077786576e-10 7.860585337e-10 7.793781074e-10 4.309039645e-10 4.148676707e-10 3.860228532e-10 6.249892603e-10 5.457502709e-10 4.432427964e-10 3.167293864e-10 1.22757526e-10 1.306627995e-10 1.684079172e-10 2.065407508e-10 4.641611751e-10 6.279916847e-10 5.725013018e-10 6.531133315e-10 8.078059469e-10 9.978795297e-10 9.960734916e-10 9.615132939e-10 9.186885782e-10 4.640289034e-10 2.005509774e-10 1.334339223e-10 1.387023528e-10 2.585529441e-10 2.129501847e-10 2.347277173e-10 1.824797732e-10 1.734025569e-10 1.634041183e-10 1.146774405e-10 1.621679443e-10 1.230616015e-10 1.730055906e-10 1.496149819e-10 1.945153048e-10 1.385931582e-10 1.90602041e-10 1.575088705e-10 1.113711765e-10 1.777264725e-10 1.668940047e-10 1.372834501e-10 1.238635053e-10 1.380071241e-10 1.761714421e-10 1.301322335e-10 1.152669656e-10 1.107175771e-10 1.691216798e-10 1.895106868e-10 7.451265201e-11 1.712890745e-10 1.580855586e-10 1.774175616e-10 1.601631852e-10 1.824008162e-10 5.954517473e-15 9.552654095e-11 1.039258573e-10 1.534989807e-10 5.199185527e-10 8.545826942e-10 8.668836727e-10 1.069648464e-09 9.8632797e-10 9.276465812e-10 5.070164583e-10 5.503837138e-10 5.957969992e-10 4.387462115e-10 1.298244244e-11 1.728384826e-10 6.365819726e-11 1.497612688e-10 3.226404514e-10 5.275255112e-10 4.619993424e-10 5.219612027e-10 5.103841184e-10 4.026995754e-10 6.59465885e-10 7.768635072e-10 7.180963385e-10 8.18256191e-10 5.341222544e-10 7.357016756e-10 4.566105684e-10 8.170060588e-10 5.923500223e-10 7.505909962e-10 4.351291928e-10 4.614304914e-10 2.921476471e-10 3.125282859e-10 2.004254943e-10 2.844863983e-10 2.814973226e-10 4.491721052e-10 3.667522614e-10 6.128803058e-10 3.39780411e-10 4.283744559e-10 4.900942385e-10 5.205093687e-10 3.974696659e-10 4.525641095e-10 3.818257526e-10 4.775358883e-10 4.81757482e-10 4.718544992e-10 3.415142987e-10 2.964078796e-10 3.357943473e-10 2.42283111e-10 3.87484596e-10 3.518335629e-10 2.129405985e-10 2.333679061e-10 3.502641041e-10 4.136546083e-10 3.561145446e-10 3.996556007e-10 2.594506113e-10 3.054575193e-10 3.251035453e-10 2.778024633e-10 3.279226566e-10 2.28097366e-10 3.911100476e-10 3.840274987e-10 3.298637873e-10 2.392054414e-10 2.984127165e-10 3.062216633e-10 3.181879054e-10 1.626174691e-10 2.452271534e-10 2.741466489e-10 3.486301e-10 3.029170487e-10 4.29421617e-10 1.541575027e-10 3.347624553e-10 2.427771285e-10 4.523555075e-10 2.446884097e-10 3.535229446e-10 2.154073288e-10 2.182286887e-10 1.836192345e-10 3.120965604e-10 2.046955947e-10 2.115657395e-10 4.726002924e-10 1.456025411e-10 1.779050763e-10 4.1931742e-10 2.321719572e-10 2.921945892e-10 1.063228524e-10 1.679722885e-10 4.701894956e-10 1.536399011e-10 2.666504573e-10 1.03392523e-10 1.441385889e-10 1.291323807e-10 2.757552212e-10 2.921531829e-10 3.151318573e-10 1.200241134e-10 1.524502573e-10 1.607347026e-10 1.005374482e-10 2.471898067e-10 1.152563112e-10 6.355473658e-11 1.994122845e-10 2.991552076e-10 2.679591535e-10 1.598268185e-10 2.598082674e-10 2.299143035e-10 6.896082014e-11 7.901207959e-11 1.119052838e-10 2.280627876e-10 8.245802933e-11 1.465845843e-10 2.70459885e-10 +1.884051867e-10 2.911224969e-10 3.383655373e-10 8.917793337e-11 3.110274527e-10 1.277762059e-10 3.242818343e-10 9.761866164e-11 2.086984588e-10 3.633790607e-10 2.319124059e-10 1.508742547e-10 4.267806269e-10 2.350462216e-10 3.465151331e-10 2.183692547e-10 1.494093511e-10 1.709928693e-10 9.745635171e-11 1.918578935e-10 2.093815778e-10 2.00155993e-10 2.936939769e-10 3.039182564e-10 1.708309318e-10 1.159759867e-10 1.456181045e-10 1.555542156e-10 2.242211914e-10 2.649367272e-10 1.696603821e-10 2.33713759e-10 1.710223542e-10 1.828915333e-10 1.455226949e-10 1.615516607e-10 1.205222242e-10 1.335018429e-10 9.687471302e-11 1.322782731e-10 2.33502051e-10 2.507252563e-10 2.259416172e-10 2.720242104e-10 2.259326154e-10 4.602366327e-10 4.190548238e-10 2.077864034e-10 2.87961668e-10 5.204545395e-10 4.921071458e-10 1.900268647e-10 2.741922344e-10 4.444590382e-10 3.873941072e-10 3.488498953e-10 2.382067409e-10 2.665538302e-10 8.373818979e-11 2.334062499e-10 3.844610194e-10 2.112481829e-10 3.495704471e-10 4.127957432e-10 2.541885715e-10 4.38754709e-10 3.538399284e-10 2.507183881e-10 2.620857528e-10 4.268669908e-10 3.06153701e-10 4.526091208e-10 3.944427737e-10 2.914511284e-10 3.508565045e-10 3.559194535e-10 3.04853448e-10 3.979609586e-10 5.077973303e-10 4.099104211e-10 4.003311356e-10 4.968663569e-10 4.492261358e-10 5.209953369e-10 4.402799002e-10 5.394394668e-10 5.100568128e-10 5.108966533e-10 4.554116441e-10 5.183867158e-10 4.272366872e-10 3.837280122e-10 4.56801484e-10 3.22724906e-10 3.854926632e-10 2.69484773e-10 1.683487962e-10 2.681086851e-10 2.049093087e-10 5.787082783e-10 8.45796137e-10 6.475889366e-10 7.663745038e-10 7.755097446e-10 6.210387662e-10 6.937177237e-10 7.058554527e-10 7.326307771e-10 7.914896588e-10 5.846542996e-10 4.860545694e-10 5.375849313e-10 5.590994216e-10 5.284280516e-10 6.005362476e-10 3.191279268e-10 1.364686604e-10 1.767759032e-10 2.196965392e-10 2.278887366e-10 5.696694893e-10 5.15447994e-10 6.286803654e-10 5.888696335e-10 8.576764693e-10 9.840008001e-10 1.049562308e-09 9.015004764e-10 8.889710035e-10 4.390616409e-10 1.883496187e-10 1.133026644e-10 2.651165841e-10 1.931405761e-10 2.952510247e-19 1.522060197e-10 8.026787543e-14 1.533730103e-10 1.316496176e-10 1.462211064e-10 1.783539715e-10 1.474843049e-10 1.771404812e-10 2.232072211e-10 1.713674799e-10 1.157242348e-10 1.080612516e-10 8.400170602e-11 1.51287478e-09 3.659514693e-08 3.735457092e-08 1.017544748e-10 1.190959321e-12 1.900893259e-10 8.974129491e-11 9.104698105e-11 9.197330774e-11 1.013443532e-10 1.257768032e-10 3.191910471e-11 1.017575063e-10 9.047835612e-11 2.09822023e-10 8.684212621e-13 9.383012281e-11 1.31092092e-10 1.42878974e-10 3.697870087e-13 1.709889836e-10 1.429204812e-10 4.931128504e-10 8.118874604e-10 9.406546926e-10 9.021436911e-10 1.088192804e-09 8.754180016e-10 5.829282994e-10 6.193365937e-10 4.934213272e-10 5.322508118e-10 8.047462022e-11 1.563676952e-10 2.431142402e-10 1.958016567e-10 3.031353774e-10 5.228285588e-10 4.774873607e-10 5.298992135e-10 6.089377635e-10 5.698212085e-10 5.769119435e-10 8.868267571e-10 7.211659986e-10 7.386976956e-10 6.015406135e-10 6.855106312e-10 9.505191567e-10 5.89285037e-10 6.115246164e-10 7.755453852e-10 3.578899842e-10 2.897201909e-10 2.756470691e-10 1.847900912e-10 1.574368948e-10 3.057884843e-10 4.158564748e-10 3.607857747e-10 4.181052906e-10 3.675237193e-10 4.091606841e-10 4.763250205e-10 3.370291471e-10 5.721123451e-10 5.516043219e-10 3.711737539e-10 5.080128159e-10 4.708660738e-10 3.815141187e-10 4.020234202e-10 3.349625854e-10 3.634386824e-10 4.032552607e-10 1.755782462e-10 3.622444996e-10 2.780560651e-10 3.368646579e-10 4.005447654e-10 4.110772034e-10 2.62170338e-10 3.478079998e-10 2.733796821e-10 3.02072221e-10 4.326172595e-10 2.93646423e-10 3.036051229e-10 3.393647518e-10 2.417588049e-10 3.440630256e-10 2.02610385e-10 2.722080173e-10 2.56954135e-10 2.733649111e-10 5.417385099e-10 3.163266195e-10 3.009098909e-10 3.821376606e-10 3.205688374e-10 3.15641637e-10 3.745128393e-10 2.885939165e-10 2.826238623e-10 1.973199813e-10 3.821132622e-10 2.590240113e-10 2.988288967e-10 2.982285799e-10 2.292302487e-10 2.023767045e-10 2.595408494e-10 1.03868743e-10 2.544000861e-10 2.169427965e-10 1.449106102e-10 1.068760689e-10 1.11703661e-10 1.114308435e-10 2.19042902e-10 3.04799396e-10 2.370595763e-10 2.507851849e-10 2.541478398e-10 2.63946662e-10 4.415497255e-10 2.866209005e-10 1.051434431e-10 8.738881768e-11 1.86844096e-10 2.262965797e-10 1.611476217e-10 1.11292237e-10 2.209041566e-10 1.264208203e-10 2.75493716e-10 1.926809517e-10 1.506055494e-10 8.241253627e-11 2.644517824e-11 2.080245461e-10 1.465065036e-10 3.278314568e-10 2.029881994e-10 1.870875885e-10 1.368866251e-10 1.009518818e-10 2.326918333e-10 1.138371419e-10 1.31630196e-10 4.234828101e-10 1.718203954e-10 +7.299702075e-08 5.023824748e-08 1.826301818e-10 1.967530079e-10 2.006884609e-10 5.580832756e-11 9.023532414e-11 1.344498926e-10 1.955075448e-10 1.161171478e-10 1.421693724e-10 2.75574974e-10 1.465397547e-10 2.365609829e-10 2.186287756e-10 1.587879202e-10 3.361346865e-10 9.518679654e-11 1.338885296e-10 1.232078914e-10 3.388727586e-10 2.55116631e-10 1.846863959e-10 5.911055711e-11 2.01341004e-10 1.422084567e-10 1.286393549e-10 1.999375812e-10 2.398393175e-10 2.439695985e-10 2.565211255e-10 2.154868861e-10 1.376228585e-10 4.089190221e-10 1.992864081e-10 2.712192514e-10 2.390163653e-10 2.624797217e-10 1.133433775e-10 2.165337019e-10 2.519733404e-10 2.034503369e-10 4.153928022e-10 3.328509321e-10 2.415362934e-10 2.598545595e-10 3.248260765e-10 2.434249486e-10 1.884306494e-10 3.452361213e-10 2.957747037e-10 6.097140944e-10 3.033012569e-10 1.646063211e-10 3.740015242e-10 2.837753948e-10 3.223562575e-10 2.565188571e-10 2.264502196e-10 4.549100568e-10 3.263331482e-10 2.068215992e-10 4.407515992e-10 3.788839779e-10 4.451892883e-10 2.46787135e-10 3.191265952e-10 2.891142094e-10 2.737631171e-10 2.398987507e-10 3.276447015e-10 4.97391633e-10 4.049733766e-10 4.761964943e-10 3.960259772e-10 2.929904653e-10 3.845351495e-10 1.813443275e-10 4.004636425e-10 3.621357592e-10 5.223126676e-10 4.619216024e-10 4.266401123e-10 4.068029096e-10 3.203220511e-10 5.494744929e-10 4.726000786e-10 3.85866535e-10 3.489881105e-10 3.379413632e-10 4.716119311e-10 5.002484275e-10 4.356954925e-10 3.50955605e-10 3.120879092e-10 2.041867289e-10 1.689863318e-10 4.034106991e-10 2.075168167e-10 5.063372037e-10 6.243682015e-10 9.169944247e-10 7.783565399e-10 7.636946734e-10 4.757979832e-10 5.987028889e-10 7.219337471e-10 6.771432024e-10 7.805543171e-10 7.750918227e-10 4.686829875e-10 5.068597792e-10 4.503297999e-10 4.329994189e-10 5.276079866e-10 3.298108692e-10 2.72283147e-10 3.580675512e-12 1.638708224e-10 1.352659901e-10 5.192650354e-10 6.318990355e-10 5.995510637e-10 4.291393078e-10 9.491697176e-10 1.031426379e-09 9.632512875e-10 8.988429392e-10 7.840240753e-10 4.46073202e-10 1.045284717e-10 1.752661766e-10 7.330810277e-11 1.23759463e-10 8.27146485e-11 1.76039622e-10 1.016603642e-10 1.654753753e-10 9.656384776e-11 1.454151704e-10 1.602008665e-10 1.429801287e-10 1.301404272e-10 1.544363862e-10 3.45073498e-14 1.571000862e-10 1.204378456e-10 1.311280344e-10 2.896350541e-09 9.701012664e-08 9.884258225e-08 2.659622582e-09 1.845606632e-10 1.067432974e-10 1.80172328e-10 0 1.560950108e-10 1.255728575e-10 1.250660493e-10 8.35876938e-11 1.126404216e-10 1.077422411e-10 1.24064445e-10 1.814638995e-10 1.860768129e-10 1.593075257e-10 1.360246778e-10 1.553600655e-12 4.256407333e-14 1.115132563e-10 4.276110648e-10 7.257287288e-10 1.030548356e-09 9.779533788e-10 1.011502159e-09 8.55184157e-10 6.790146114e-10 5.489504461e-10 5.76885561e-10 4.753714064e-10 2.752387899e-10 1.137934337e-10 2.012612513e-10 1.165353235e-10 3.01830515e-10 4.314183933e-10 4.85190816e-10 3.942413013e-10 5.382184754e-10 5.488196061e-10 5.254987209e-10 6.650702801e-10 8.54748483e-10 5.249008169e-10 6.252860688e-10 6.884256433e-10 7.939427044e-10 6.517102602e-10 5.221547302e-10 7.224552392e-10 8.566202763e-10 2.82890169e-10 3.299321103e-10 1.986381719e-10 2.564620208e-10 3.034794039e-10 3.458154032e-10 4.210656156e-10 3.007439317e-10 3.774768523e-10 3.184607035e-10 3.524782096e-10 3.539850666e-10 5.160413182e-10 6.407069683e-10 5.633829697e-10 4.206627977e-10 6.619010773e-10 4.660740216e-10 5.204810361e-10 3.829594836e-10 3.49146244e-10 2.765060468e-10 2.9635832e-10 2.825742426e-10 3.593655439e-10 2.413966081e-10 2.893820418e-10 2.570038375e-10 3.095028917e-10 3.811212053e-10 2.843423348e-10 4.374576857e-10 4.880072794e-10 2.405462357e-10 2.896855008e-10 3.395398627e-10 2.508726016e-10 2.322471297e-10 3.336290342e-10 1.793374454e-10 2.691481019e-10 3.697807011e-10 3.722697402e-10 2.119445819e-10 3.450078956e-10 3.51717095e-10 2.983334639e-10 2.141100487e-10 3.243580913e-10 4.066164178e-10 4.201436848e-10 3.354026588e-10 3.096197132e-10 2.932055811e-10 2.080630562e-10 1.81830446e-10 2.296152812e-10 4.039651589e-10 2.304297849e-10 1.796169804e-10 1.28782449e-10 1.328817867e-10 1.305449566e-10 1.649448341e-10 1.120356276e-10 2.204907407e-10 3.476434606e-10 4.37935292e-10 1.609285528e-10 1.667203147e-10 1.529490398e-10 1.652019429e-10 1.757253304e-10 1.688013631e-10 2.285002867e-10 1.87510289e-10 1.751688984e-10 2.528148601e-10 1.246766936e-10 1.589601709e-10 9.047171698e-11 1.877217527e-10 1.918517433e-10 2.129294967e-10 2.227431026e-10 1.710182472e-10 9.618129175e-11 7.562514661e-11 2.416042653e-10 2.125332821e-10 3.54350102e-10 2.695965158e-10 1.619820025e-10 3.136626239e-10 1.698758161e-10 1.385686129e-10 1.01009503e-10 4.994514566e-08 7.276504861e-08 +6.317420989e-08 5.226475859e-08 2.239119991e-10 8.447963685e-11 1.733883276e-10 1.350417479e-10 3.984653326e-10 2.454260339e-10 3.134600564e-10 2.335230771e-10 1.137053092e-10 2.14226096e-10 1.34225421e-10 1.767836204e-10 2.983588589e-10 2.359025771e-10 3.581921909e-11 2.164063453e-10 2.98724146e-10 4.613269145e-10 8.843364094e-11 1.616594305e-10 3.538641662e-10 2.708228645e-10 8.439856901e-11 1.342018879e-10 2.825319697e-10 1.539532073e-10 8.771603016e-11 1.980961797e-10 2.737538055e-10 2.906625361e-10 2.81619242e-10 2.559014484e-10 3.178821043e-10 2.82917131e-10 1.800453935e-10 2.45645422e-10 1.521232879e-10 2.547299114e-10 2.532842193e-10 1.541580041e-10 2.128767963e-10 2.116948114e-10 2.294399674e-10 3.765015302e-10 3.309088763e-10 3.709475909e-10 3.764702415e-10 2.7315635e-10 2.866859795e-10 2.618394446e-10 2.762607269e-10 3.268678381e-10 3.421547129e-10 1.96651686e-10 2.997127926e-10 1.260165261e-10 2.725273704e-10 2.890172514e-10 2.877765376e-10 1.258945506e-10 2.041951679e-10 4.129644151e-10 2.778592658e-10 3.346083249e-10 3.760102398e-10 2.975779088e-10 2.968280471e-10 3.50996299e-10 3.129915355e-10 2.890294308e-10 3.965951163e-10 3.312993835e-10 2.258676584e-10 3.577803992e-10 2.784023764e-10 2.864065497e-10 3.938481337e-10 3.964313469e-10 4.72731666e-10 5.031863922e-10 5.106995216e-10 5.007790836e-10 4.117978328e-10 5.080893392e-10 4.023524065e-10 4.544104863e-10 3.706701204e-10 3.911232724e-10 3.995658015e-10 4.637958643e-10 4.858115589e-10 2.796700245e-10 3.805799051e-10 1.274917987e-10 2.639812416e-10 2.013462043e-10 2.925233574e-10 7.371569234e-10 6.564366958e-10 8.523337078e-10 8.195835973e-10 7.314458593e-10 6.814153639e-10 8.111833531e-10 5.935701716e-10 6.265478029e-10 7.652258843e-10 5.492158505e-10 4.614126625e-10 5.629663205e-10 3.97602575e-10 5.219167372e-10 4.026502686e-10 3.743891811e-10 1.5251242e-10 5.532212722e-11 1.175694659e-11 1.128749101e-10 5.84982926e-10 5.268626398e-10 5.631615212e-10 5.182606957e-10 8.574542491e-10 1.030206554e-09 1.142788856e-09 1.115590439e-09 9.306535474e-10 5.476437156e-10 1.492207869e-10 1.000440077e-10 1.422228617e-10 0 8.992449894e-15 1.009891642e-10 1.493158498e-10 6.033403497e-16 9.61238161e-11 1.552708161e-10 1.244254926e-10 1.46509167e-10 8.237347731e-11 2.002225286e-10 5.042026893e-11 1.595193107e-10 8.971602298e-13 1.758314779e-10 3.733195466e-09 1.132770573e-07 1.129196486e-07 3.286890151e-09 1.459158656e-10 1.340892539e-10 1.831589521e-10 1.609569595e-10 9.874197526e-11 1.14441741e-10 1.309878089e-10 8.59479794e-11 1.692903615e-10 8.626856153e-11 2.061980597e-10 1.359520418e-10 2.084340135e-10 1.014973146e-10 1.446636574e-10 2.62980064e-14 1.600138595e-10 2.150662032e-10 4.74341754e-10 7.336123365e-10 8.32599664e-10 9.060113792e-10 1.188902315e-09 8.916640097e-10 6.180275409e-10 6.025164908e-10 5.1511474e-10 4.069185981e-10 1.582749781e-10 1.592236833e-10 2.175865946e-10 7.360073925e-11 2.989543192e-10 5.185360264e-10 3.538420026e-10 5.275111323e-10 4.993492807e-10 5.531204146e-10 4.90555246e-10 5.775350492e-10 5.332381238e-10 7.800423444e-10 6.483140568e-10 5.947760644e-10 5.081150542e-10 5.280134726e-10 8.554746742e-10 5.449055812e-10 5.148779886e-10 2.796817525e-10 2.477204946e-10 9.91502106e-11 1.75270905e-10 3.597064859e-10 3.714475489e-10 4.235337576e-10 4.78713771e-10 3.892184563e-10 3.491246629e-10 3.262898577e-10 4.081929989e-10 4.276542105e-10 3.202410453e-10 4.276677242e-10 5.245089963e-10 4.99330443e-10 5.309147972e-10 6.524070242e-10 6.295276145e-10 5.298533506e-10 3.555227128e-10 3.140778233e-10 4.707644207e-10 3.084526426e-10 2.426201311e-10 4.42542412e-10 2.958286654e-10 2.986133873e-10 4.587050559e-10 4.542911449e-10 2.720914605e-10 2.38869998e-10 4.332432554e-10 3.765588174e-10 3.237469378e-10 3.103514896e-10 2.229105223e-10 9.007131945e-11 2.51163821e-10 2.03065327e-10 2.20543186e-10 2.539179514e-10 3.284091844e-10 3.241310357e-10 3.401475032e-10 2.256558131e-10 3.125240861e-10 2.800879283e-10 1.80337803e-10 4.675056178e-10 2.238416297e-10 3.256197036e-10 2.989364353e-10 2.897099565e-10 2.176062997e-10 4.567321844e-10 4.620065775e-10 1.263606638e-10 1.16633099e-10 3.503546334e-10 1.214947082e-10 2.240227889e-10 1.016770628e-10 2.438752121e-10 2.288588179e-10 2.034001466e-10 1.322146829e-10 2.563602322e-10 3.013600042e-10 7.432459009e-11 3.264527126e-10 4.062774442e-10 1.960961703e-10 3.014080536e-10 1.336190118e-10 2.782919158e-10 4.029144075e-10 2.127372958e-10 1.311329556e-10 2.567201845e-10 1.780985807e-10 1.776434384e-10 3.352141451e-10 1.978795655e-10 2.185018484e-10 6.631556639e-11 2.223383093e-10 3.930394674e-10 1.838996192e-10 1.027644397e-10 3.696056302e-10 2.037533004e-10 4.369655685e-10 1.67750736e-10 3.55541979e-10 1.957984354e-10 5.225323065e-08 6.30676534e-08 +6.277447775e-08 5.15430835e-08 1.020168526e-10 1.263698217e-10 2.648497758e-10 2.658553266e-10 1.257267729e-10 2.1179915e-10 2.889706107e-10 1.542290079e-10 3.016787159e-10 5.735732396e-11 2.485247479e-10 1.998686512e-10 1.011638491e-10 2.087435135e-10 2.068586194e-10 1.475067898e-10 1.47269144e-10 2.619789662e-10 2.523347849e-10 1.135064877e-10 1.98354254e-10 1.956111641e-10 3.07251877e-10 1.043952459e-10 1.969267196e-10 2.305926927e-10 1.55767606e-10 3.597444282e-10 2.028721458e-10 2.748250134e-10 1.986716087e-10 2.953278202e-10 1.94919724e-10 3.481515491e-10 3.530119111e-10 1.682906519e-10 3.81962156e-10 2.9571313e-10 4.158370561e-10 2.10876076e-10 2.311149982e-10 3.321524151e-10 4.351486453e-10 3.479722738e-10 4.622664882e-10 3.42315579e-10 4.793751904e-10 2.509100212e-10 1.557293529e-10 3.566555176e-10 3.829977128e-10 4.625090112e-10 4.478356754e-10 3.277481772e-10 2.396771269e-10 2.914089757e-10 4.436386916e-10 2.377714829e-10 2.965087749e-10 3.168157512e-10 3.858858454e-10 3.044240575e-10 3.771965664e-10 4.138336362e-10 4.101852405e-10 3.530443307e-10 3.235049341e-10 2.118866128e-10 3.311308694e-10 5.213290078e-10 3.128067774e-10 4.02124208e-10 3.98443472e-10 2.464848224e-10 2.786727114e-10 3.345074266e-10 3.211087195e-10 5.331735228e-10 4.176363606e-10 6.266183839e-10 5.719565567e-10 3.740624014e-10 4.70337134e-10 5.795480329e-10 4.913555041e-10 2.255304339e-10 3.614927365e-10 3.156621681e-10 3.110079309e-10 3.177126449e-10 3.723141059e-10 2.973900152e-10 2.593270521e-10 2.882467e-10 3.30479737e-10 3.230146049e-10 3.476239338e-10 8.121248995e-10 8.930748202e-10 7.532450486e-10 8.332684215e-10 7.633879116e-10 7.209886305e-10 6.260204915e-10 5.446985106e-10 7.935303592e-10 7.523147117e-10 5.844429802e-10 5.925056118e-10 5.190322766e-10 4.601156027e-10 3.847376861e-10 6.061968696e-10 3.717245793e-10 6.158798877e-11 1.803172164e-10 1.192571925e-10 1.272317284e-10 5.165212807e-10 5.774378878e-10 6.510274644e-10 5.47984747e-10 9.904943502e-10 1.185047843e-09 8.611874736e-10 1.14600317e-09 6.93748571e-10 3.89733824e-10 1.239518957e-10 1.1377079e-10 2.209973797e-10 1.746326916e-10 1.422838988e-10 1.482606463e-10 1.60778183e-10 1.611301104e-10 2.033493484e-10 1.188844754e-10 1.632452448e-10 1.785131143e-10 2.118589706e-10 1.364776563e-10 1.291067871e-10 0 9.439169225e-11 1.620150023e-10 3.491780622e-09 1.134601948e-07 1.138979411e-07 3.40917388e-09 1.481302265e-20 9.144839175e-11 1.552679506e-10 7.193188727e-11 3.025831585e-15 1.384506239e-10 3.402890309e-13 1.213496809e-10 3.362968064e-12 1.40004633e-10 2.300254317e-10 1.273676585e-10 9.972169108e-11 2.127086213e-10 1.639921503e-10 7.523989216e-11 1.104358092e-10 1.40278778e-10 4.317100728e-10 7.11812384e-10 8.724602642e-10 1.121919184e-09 1.069186358e-09 9.611447255e-10 6.683230674e-10 5.311374069e-10 6.748624565e-10 5.181227699e-10 3.351328495e-13 1.706613282e-10 6.477958485e-11 1.37085122e-10 2.813047603e-10 3.603666068e-10 3.777500154e-10 5.081921714e-10 5.133411512e-10 5.212445569e-10 6.395095302e-10 7.498249358e-10 6.744847345e-10 6.470728918e-10 4.881740372e-10 7.647287826e-10 6.095755384e-10 6.632165936e-10 5.641859966e-10 5.821735241e-10 7.444505754e-10 2.538608068e-10 2.355505906e-10 1.99124382e-10 1.067783772e-10 2.594842999e-10 4.578729372e-10 3.01395825e-10 3.839452311e-10 3.275382878e-10 3.08571085e-10 5.255814725e-10 3.882483749e-10 4.51419356e-10 5.439169406e-10 3.084406116e-10 5.166349313e-10 4.860000095e-10 3.48506485e-10 3.943388628e-10 3.809223286e-10 3.768835425e-10 2.858120518e-10 2.697658603e-10 3.466946432e-10 3.161201186e-10 3.169651143e-10 3.324850171e-10 2.496795273e-10 3.347421706e-10 2.685866841e-10 3.422356586e-10 3.877385468e-10 1.771914001e-10 3.669821012e-10 3.966669585e-10 3.549005432e-10 2.375571099e-10 3.239040174e-10 3.56998856e-10 2.573991906e-10 2.709109443e-10 1.980518362e-10 1.91997696e-10 2.875281854e-10 2.722008612e-10 3.343858208e-10 4.273883333e-10 4.384944492e-10 2.959629405e-10 3.887155775e-10 2.824137678e-10 2.532859761e-10 2.210772577e-10 3.080577646e-10 2.562980311e-10 2.157698306e-10 1.667773785e-10 3.123703464e-10 2.591004034e-10 2.757571696e-10 2.282375517e-10 1.470465863e-10 2.484356105e-10 1.711399361e-10 1.456956989e-10 4.695111731e-10 1.578556602e-10 2.063074025e-10 3.563983114e-10 1.891507018e-10 1.438113237e-10 1.304072077e-10 1.615703908e-10 9.992137791e-11 2.401384387e-10 1.077770659e-10 3.462967024e-10 3.627931901e-10 1.922866448e-10 3.303452115e-10 1.821009906e-10 2.027259612e-10 2.917461481e-10 2.472463369e-10 2.29572521e-10 1.370121271e-10 3.37114177e-10 3.063700329e-10 1.543156205e-10 2.812521859e-10 1.449037501e-10 1.256216329e-10 2.863315028e-10 3.683619193e-10 1.104681975e-10 2.478833452e-10 2.725782076e-10 5.167324412e-08 6.251832936e-08 +6.325122856e-08 5.21051442e-08 1.842486662e-10 2.833565284e-10 1.657882709e-10 1.838254906e-10 1.475811296e-10 2.850979733e-10 2.030448604e-10 3.592413541e-10 9.242393688e-11 1.250907598e-10 2.784696959e-10 1.146527812e-10 2.625058911e-10 1.78773814e-10 1.122978282e-10 2.621487755e-10 2.581654815e-10 1.299756021e-10 4.39671674e-10 1.896713298e-10 2.526583751e-10 2.641607999e-10 1.462054934e-10 1.322503064e-10 1.860089065e-10 1.524360845e-10 2.755368308e-10 2.152002342e-10 1.713721786e-10 1.197159178e-10 9.984172591e-11 1.261605724e-10 1.638803253e-10 2.7641347e-10 2.078251512e-10 2.269519157e-10 9.436737427e-11 2.092464809e-10 4.595505864e-10 1.868826872e-10 1.968494035e-10 3.148137584e-10 6.450316788e-10 3.510236774e-10 3.932635159e-10 4.045460002e-10 1.650774124e-10 2.531853181e-10 2.829188935e-10 3.683765915e-10 2.380726393e-10 3.243543578e-10 3.782271656e-10 2.740444446e-10 2.34647343e-10 3.379830139e-10 5.032385441e-10 3.865287247e-10 2.041744365e-10 4.454651796e-10 1.250854954e-10 2.343516176e-10 2.789503954e-10 4.320453017e-10 4.485402592e-10 2.768825811e-10 2.816110487e-10 3.993819801e-10 3.442647082e-10 3.576131859e-10 3.393843343e-10 1.581637321e-10 3.235093457e-10 3.502697111e-10 3.874411505e-10 2.715936393e-10 4.057197816e-10 3.319862463e-10 5.849114337e-10 6.161569304e-10 4.931839981e-10 4.418504195e-10 4.706626973e-10 5.544723086e-10 4.678983386e-10 5.091225716e-10 4.32333483e-10 4.564396737e-10 4.289723524e-10 3.537152051e-10 3.89427179e-10 3.391928186e-10 2.159170601e-10 2.346674617e-10 2.724081209e-10 1.820717261e-10 3.188527242e-10 8.023050912e-10 7.271279435e-10 8.767395406e-10 6.392296232e-10 7.322898281e-10 6.38072583e-10 9.212843587e-10 6.794027188e-10 7.953299897e-10 7.057833602e-10 5.754203942e-10 5.362095408e-10 4.687812539e-10 4.942456132e-10 3.780945246e-10 6.094114784e-10 3.479315787e-10 1.592359284e-10 2.641410418e-10 8.585314098e-11 2.438209701e-10 5.05549583e-10 5.610737076e-10 5.10143232e-10 5.178198272e-10 9.378690525e-10 1.206147036e-09 9.835080234e-10 9.673060682e-10 7.082322319e-10 4.335495943e-10 2.148517853e-10 1.489984571e-19 1.867659716e-10 1.477757794e-10 1.594740425e-10 2.086499533e-10 1.8154931e-10 1.05621873e-10 1.560184716e-10 1.708800679e-10 1.66171137e-10 1.548983584e-10 1.845757788e-10 7.186394718e-11 1.432906749e-10 1.16099433e-10 1.322230567e-10 4.002389307e-12 2.771803586e-09 1.134715058e-07 1.131709708e-07 2.221442634e-09 1.842082657e-10 8.987251077e-11 1.206147133e-10 1.438776578e-10 1.773026151e-10 1.30323447e-10 2.123918532e-10 1.806399219e-10 1.438599653e-10 2.004919439e-10 1.351643392e-10 1.288182962e-10 1.185856044e-10 1.63527348e-10 9.45844638e-11 1.154912803e-10 1.322930575e-10 1.314249269e-10 4.755628971e-10 8.436452084e-10 8.208916001e-10 8.412889978e-10 1.078829571e-09 8.764405405e-10 5.682397665e-10 5.900425153e-10 5.930207742e-10 5.73788584e-10 2.964248937e-10 1.681092977e-10 1.174302866e-10 7.982829079e-11 3.484453249e-10 4.69753048e-10 4.432897055e-10 4.055365366e-10 5.665109797e-10 5.754376769e-10 6.32034933e-10 8.891121646e-10 5.562037214e-10 5.841573439e-10 7.257243921e-10 9.1063912e-10 5.330231071e-10 9.729480812e-10 6.315519369e-10 4.896314222e-10 6.51971821e-10 3.447640661e-10 2.104519724e-10 2.324052804e-10 1.804283718e-10 2.388059785e-10 4.001389157e-10 3.018119403e-10 4.100599274e-10 4.340494555e-10 4.389551303e-10 4.178627962e-10 3.574350248e-10 5.509324137e-10 5.588073373e-10 2.752988563e-10 4.807448471e-10 5.104488472e-10 5.197942244e-10 4.419311559e-10 2.651315573e-10 3.216198965e-10 4.031817005e-10 3.205034497e-10 3.677657172e-10 3.692532894e-10 2.380580504e-10 3.963779481e-10 3.079094382e-10 3.538941115e-10 3.662070319e-10 2.874295011e-10 3.620975872e-10 2.917120637e-10 3.331011429e-10 2.331323833e-10 2.830151447e-10 2.304234899e-10 2.60847543e-10 3.384393675e-10 1.629728416e-10 2.889820328e-10 2.979721827e-10 2.67996229e-10 3.312374581e-10 2.670490514e-10 3.967980461e-10 3.654658584e-10 2.326226566e-10 2.04239602e-10 3.023892765e-10 2.863440015e-10 3.267308039e-10 3.671291938e-10 4.593667532e-10 2.177516226e-10 2.178281054e-10 4.116713919e-10 3.239798784e-10 2.340036758e-10 2.430872286e-10 1.990826001e-10 3.078296269e-10 2.155311551e-10 7.824755052e-11 2.233985559e-10 3.429365639e-10 2.759950125e-10 2.062857954e-10 2.932880449e-10 1.327670737e-10 1.886121871e-10 4.147433414e-10 1.623651104e-10 1.471227796e-10 1.769099696e-10 1.655067135e-10 1.696295642e-10 1.790773685e-10 6.275422133e-11 9.113565573e-11 3.965989684e-10 6.903647044e-11 6.502170555e-11 3.942520612e-11 3.405954086e-10 1.5592143e-10 1.607736029e-10 1.409932977e-10 2.503454102e-10 4.497008217e-10 3.146896641e-10 1.404472728e-10 8.343053917e-11 8.680527504e-11 4.0449508e-11 1.18134214e-10 3.009310558e-10 5.204389493e-08 6.314691374e-08 +7.265953584e-08 5.002450661e-08 1.443006473e-10 1.197240515e-10 2.196738852e-10 2.529808822e-10 7.965655732e-11 3.054780134e-10 1.338927144e-10 2.855565652e-10 2.097697509e-10 2.029822786e-10 1.761192897e-10 2.283687843e-10 3.263475858e-10 4.330896105e-10 2.46524466e-10 2.003478463e-10 2.286177145e-10 4.080274302e-10 2.055073697e-10 3.830088448e-10 1.844799513e-10 2.501657552e-10 2.308333711e-10 2.020596667e-10 1.381636588e-10 1.494334458e-10 3.027198584e-10 1.332003884e-10 1.588889468e-10 1.906622947e-10 2.599940621e-10 2.894463907e-10 1.312317093e-10 1.935976788e-10 1.833137996e-10 2.325489065e-10 1.560939092e-10 4.406192941e-10 2.928896823e-10 2.666375766e-10 3.221233197e-10 1.578861225e-10 1.619073155e-10 3.50691975e-10 3.459758513e-10 4.038740758e-10 3.749853184e-10 5.103752458e-10 2.302503775e-10 3.291321341e-10 2.750067289e-10 3.519122607e-10 3.415640395e-10 3.063610663e-10 2.373071138e-10 9.659592112e-11 2.307767819e-10 2.196926974e-10 2.608482268e-10 4.221688544e-10 2.781074485e-10 5.156223766e-10 3.907147285e-10 3.241422557e-10 4.157842605e-10 4.017761266e-10 2.790323266e-10 4.269530151e-10 3.389836236e-10 2.313148329e-10 3.209010449e-10 2.169080479e-10 2.184737521e-10 2.886920652e-10 2.363191796e-10 4.177448639e-10 3.567201765e-10 4.937573228e-10 4.784589549e-10 5.532812025e-10 4.08644363e-10 5.762562864e-10 5.201772853e-10 5.226233886e-10 4.464822312e-10 3.494402249e-10 4.320367417e-10 3.39075697e-10 3.570198136e-10 3.50406783e-10 3.573246943e-10 3.549858181e-10 2.770830474e-10 3.36560754e-10 2.344404409e-10 1.849523403e-10 4.56747816e-10 7.487805316e-10 6.067788244e-10 7.751127983e-10 5.924162272e-10 5.229628175e-10 5.655148556e-10 3.938881902e-10 6.17267518e-10 7.93262935e-10 7.764974223e-10 6.211034919e-10 3.045494327e-10 5.027718739e-10 4.406379369e-10 3.962119274e-10 4.694086e-10 4.716482317e-10 1.272596363e-10 1.238131526e-10 9.136195198e-11 2.886094141e-10 5.154489141e-10 5.428666366e-10 6.234035845e-10 5.395626392e-10 9.496814169e-10 9.738430161e-10 1.078515461e-09 9.607851748e-10 8.2028583e-10 4.930483798e-10 2.004938345e-10 1.332138055e-10 1.805374587e-10 0 4.962745812e-11 1.580304121e-10 2.022986086e-10 1.147770115e-10 1.323443981e-10 1.370728042e-10 1.487619696e-10 1.016244181e-10 1.320217073e-10 1.33443592e-10 8.376994119e-11 1.781691068e-10 2.23593622e-10 1.348712464e-10 4.515207537e-09 9.553231333e-08 9.703774978e-08 3.9200564e-09 1.539761039e-10 8.028111844e-11 1.703634016e-10 8.698652543e-11 1.56620454e-10 1.265494096e-10 2.0741961e-10 1.72812471e-10 1.771757453e-10 1.92200821e-10 1.337021639e-10 8.527371586e-11 1.522441111e-10 1.700912002e-10 9.822766747e-11 1.29075197e-10 8.308100508e-11 1.639479476e-10 5.330024523e-10 8.159611664e-10 1.032342491e-09 9.831686688e-10 1.166329575e-09 7.68598141e-10 4.348153284e-10 4.737556263e-10 5.667542016e-10 3.461926682e-10 1.377759449e-10 1.829415625e-10 1.470119549e-10 9.945297651e-11 2.965448374e-10 5.27660066e-10 3.94541489e-10 6.326118516e-10 4.261659706e-10 6.045502327e-10 5.197900189e-10 6.231189254e-10 9.136663451e-10 6.328210649e-10 6.313635735e-10 5.844640731e-10 5.29047191e-10 6.446456723e-10 6.411292878e-10 8.51866917e-10 7.921418639e-10 2.69942922e-10 3.404958738e-10 1.574384005e-10 3.390177221e-10 2.906868254e-10 3.94634029e-10 2.950855458e-10 4.012314078e-10 4.197412489e-10 5.180143487e-10 3.648374819e-10 4.298274683e-10 5.417881086e-10 5.998055403e-10 4.724268239e-10 3.703888117e-10 4.175467241e-10 5.414440437e-10 3.833892438e-10 3.842184287e-10 3.762927088e-10 2.11628191e-10 2.639493618e-10 4.065303516e-10 2.837663699e-10 2.613572819e-10 4.009809088e-10 4.292392197e-10 2.378274864e-10 2.226419092e-10 1.452752231e-10 4.669603228e-10 4.316300892e-10 2.516533939e-10 3.622985481e-10 2.156091943e-10 2.708801198e-10 2.901926378e-10 3.203630872e-10 3.604929929e-10 3.12029175e-10 3.035279333e-10 3.289189632e-10 3.195743711e-10 3.911679657e-10 2.740417275e-10 2.41317721e-10 2.975152874e-10 4.354788001e-10 4.270459423e-10 4.088671659e-10 4.203472415e-10 4.435402075e-10 2.376767091e-10 4.34659347e-10 3.463598703e-10 1.658867333e-10 1.779279749e-10 2.494202004e-10 9.899743979e-11 8.453029764e-11 1.99359635e-10 3.284680883e-10 1.988724556e-10 1.406434163e-10 1.199437386e-10 2.051593714e-10 1.174415833e-10 1.352117091e-10 2.75348144e-10 1.810043608e-10 1.457255558e-10 1.604635255e-10 4.087464883e-10 1.984082616e-10 3.222137042e-10 6.301773302e-11 2.490376565e-10 1.492213626e-10 2.750000286e-10 1.435274863e-10 2.167833508e-10 3.666766213e-10 1.615875794e-10 7.625059827e-11 1.992007306e-10 1.490023906e-10 2.80049176e-10 4.180979263e-10 2.427780306e-10 1.069175474e-10 2.605009649e-10 1.019672353e-10 1.183643597e-10 1.796725843e-10 1.148177196e-10 8.982239194e-11 5.011336436e-08 7.283444528e-08 +1.583064525e-10 5.018994721e-10 3.152798938e-10 1.387393861e-10 2.298040866e-10 1.323595114e-10 1.104098547e-10 1.345160928e-10 2.038092742e-10 5.027883262e-11 1.228214552e-10 1.213019451e-10 1.467292132e-10 1.565793406e-10 3.996648877e-10 2.846133689e-10 5.865994882e-11 3.625806961e-10 8.494295012e-11 1.433619232e-10 2.917609576e-10 2.827105505e-10 2.286316356e-10 8.168891146e-11 1.801898588e-10 1.454594329e-10 1.586211293e-10 1.487173206e-10 2.543307078e-10 1.995757228e-10 8.983042436e-11 1.428883117e-10 2.848764254e-10 4.049805151e-10 2.249931091e-10 4.474981878e-10 2.567994311e-10 1.097285681e-10 2.123602003e-10 2.284128042e-10 3.550087164e-10 2.343396529e-10 2.765443766e-10 2.584846969e-10 1.496562744e-10 3.590984759e-10 1.978678121e-10 2.603335849e-10 3.595330371e-10 2.034349004e-10 3.463241774e-10 4.392929151e-10 3.589890315e-10 3.956966335e-10 5.016766104e-10 3.252634156e-10 3.625850461e-10 1.664612239e-10 2.151970209e-10 2.035923235e-10 2.346254315e-10 2.871088451e-10 1.708872968e-10 3.001565376e-10 4.125923265e-10 2.476601315e-10 2.851544096e-10 1.948002939e-10 1.792376438e-10 4.223864806e-10 3.952661387e-10 3.747720757e-10 3.405398192e-10 2.56651328e-10 2.577427182e-10 4.416807631e-10 2.478627144e-10 2.731236782e-10 3.264642467e-10 5.088102945e-10 5.250287649e-10 5.623157911e-10 4.065699391e-10 3.503061989e-10 4.479374753e-10 5.097284071e-10 3.124707998e-10 4.837638712e-10 5.041534189e-10 3.084625333e-10 3.687465348e-10 4.550439281e-10 2.866685982e-10 3.500747934e-10 3.101388051e-10 2.183087589e-10 2.997354354e-10 2.585431436e-10 2.605519918e-10 6.743048283e-10 7.272009476e-10 5.902437224e-10 6.861426666e-10 8.284301732e-10 7.887081891e-10 7.745485103e-10 3.963169773e-10 5.725460497e-10 8.282567496e-10 5.572592827e-10 3.906063919e-10 6.244259479e-10 4.587960773e-10 5.456940859e-10 4.987674646e-10 4.20945873e-10 1.86586052e-10 1.330106159e-10 1.02172673e-10 9.623089252e-11 5.172098346e-10 6.289872884e-10 5.937119292e-10 5.973782184e-10 1.052185598e-09 1.145667785e-09 9.531120976e-10 8.920160969e-10 9.865849857e-10 4.638001944e-10 1.531749565e-10 1.820348635e-10 1.914417962e-10 1.140701032e-10 1.754583319e-10 1.32606353e-10 1.979145169e-10 6.859718918e-11 1.731666661e-10 1.211186221e-10 1.093147124e-10 2.311454953e-10 2.07337876e-10 2.234034927e-10 4.688144208e-11 1.88300002e-10 1.201187145e-10 1.310544617e-10 8.421020145e-10 3.786757361e-08 3.703667896e-08 4.02191378e-10 1.411187928e-10 1.27932851e-10 1.590478471e-10 1.541672121e-10 2.094115086e-10 1.317929762e-10 1.966439754e-10 1.714329995e-10 1.69217085e-10 1.4913001e-10 1.46662156e-10 0 1.23961719e-10 1.854340245e-10 2.012410555e-10 1.1666593e-10 2.071245942e-10 1.471668894e-11 4.345777741e-10 9.066289631e-10 9.501670437e-10 9.185693365e-10 1.117794482e-09 1.051009744e-09 5.9282068e-10 6.205777847e-10 4.949768706e-10 4.551915815e-10 2.370553411e-10 1.358255634e-10 2.255833611e-10 2.190605422e-10 4.535161937e-10 4.971408993e-10 5.189586675e-10 4.932173998e-10 4.619074752e-10 3.896730314e-10 5.234236117e-10 7.898782286e-10 6.27906072e-10 4.82762005e-10 6.099458829e-10 5.584362432e-10 5.804323884e-10 8.351975563e-10 6.777242481e-10 6.973060496e-10 5.254228199e-10 3.160534745e-10 3.881511064e-10 1.9496663e-10 2.902004029e-10 3.616952749e-10 4.537982521e-10 4.771871496e-10 4.512630602e-10 4.242843992e-10 3.168032576e-10 4.737918057e-10 3.780740087e-10 2.579018839e-10 5.597864495e-10 4.324704751e-10 4.209640748e-10 5.376101377e-10 4.742177128e-10 5.082196369e-10 3.801432844e-10 3.437335668e-10 4.313121308e-10 3.380525587e-10 4.23271694e-10 3.564043342e-10 3.394726606e-10 2.847533225e-10 3.416141351e-10 4.737735087e-10 3.537561019e-10 3.997228516e-10 2.786822479e-10 3.040667618e-10 2.577769723e-10 2.70967847e-10 3.715220738e-10 1.643533021e-10 3.031148878e-10 4.119276803e-10 2.743599685e-10 1.223503421e-10 3.355934197e-10 3.501732565e-10 2.998530117e-10 2.33963483e-10 2.094679346e-10 2.495492267e-10 5.469236313e-10 3.888976646e-10 2.195615276e-10 2.863390271e-10 2.028486787e-10 3.50298074e-10 3.270850701e-10 2.722358538e-10 3.068106775e-10 1.797829607e-10 2.92770181e-10 3.800339861e-10 1.027688547e-10 3.661637362e-10 2.60246005e-10 3.630576332e-10 2.195135964e-10 7.513255204e-11 8.887317085e-11 2.826674827e-10 2.350608917e-10 2.260592625e-10 1.687620417e-10 2.071733649e-10 3.016602101e-10 1.567659536e-10 1.535171147e-10 1.589031794e-10 8.386551791e-11 7.380976494e-11 1.657546291e-10 7.717608583e-11 8.683785975e-11 9.198367277e-11 2.115255709e-10 1.429108417e-10 1.809804714e-10 4.247340941e-10 1.928847178e-10 1.824868474e-10 1.795414414e-10 2.325213504e-10 2.628416932e-10 1.734614747e-10 2.703353258e-10 1.139899412e-10 1.4827858e-10 2.273607541e-10 2.381708213e-10 3.698005091e-10 2.216534312e-10 7.149624534e-11 +1.109206585e-10 6.726377191e-11 2.640097598e-10 1.546928057e-10 1.772489394e-10 1.279145979e-10 2.921084981e-10 3.033589612e-10 8.822408104e-11 1.93571776e-10 1.337068044e-10 2.478948599e-10 1.384929433e-10 6.91509654e-11 2.022014356e-10 1.074459487e-10 1.787448887e-10 8.296278042e-11 1.897989878e-10 1.469706433e-10 1.8243339e-10 2.173451548e-10 1.579842643e-10 9.542403312e-11 2.061992415e-10 2.148887058e-10 2.303616598e-10 2.385878362e-10 3.79323861e-10 3.263090177e-10 1.814814955e-10 1.909681141e-10 2.120673857e-10 4.565377957e-10 1.796820748e-10 2.65084257e-10 2.059179998e-10 1.746824927e-10 7.602343543e-11 2.406156759e-10 1.98897736e-10 2.773891157e-10 3.367178556e-10 2.302007151e-10 3.549513758e-10 3.845258654e-10 4.770557929e-10 3.536785189e-10 2.957959049e-10 5.648236577e-10 2.533110844e-10 2.671523931e-10 1.720269495e-10 3.145514865e-10 3.611588636e-10 4.044423378e-10 2.599380691e-10 4.347770617e-10 2.851757819e-10 3.952103273e-10 2.807897507e-10 3.248670632e-10 3.797719473e-10 2.435310728e-10 2.729271405e-10 4.033981489e-10 1.906244027e-10 3.317003609e-10 2.95229513e-10 2.456954055e-10 3.172618592e-10 2.878006596e-10 2.806969579e-10 1.625923034e-10 1.673838979e-10 3.427181228e-10 2.332329449e-10 5.103190059e-10 2.524956691e-10 2.546161513e-10 3.097804331e-10 6.60970457e-10 5.20592892e-10 4.830246495e-10 4.714307465e-10 4.064337786e-10 5.747544424e-10 5.381124435e-10 3.643787645e-10 5.208953862e-10 4.432742002e-10 3.328074788e-10 3.793985468e-10 2.763362251e-10 2.56041248e-10 1.311290305e-10 1.712428229e-10 3.339249146e-10 2.881621993e-10 5.733512238e-10 6.683458522e-10 8.930085153e-10 1.001952266e-09 8.037415912e-10 7.649236255e-10 6.764113429e-10 6.532271073e-10 5.967999543e-10 8.291945945e-10 5.582771216e-10 5.046534177e-10 5.028805295e-10 5.324035603e-10 5.389562802e-10 3.003519992e-10 3.332503851e-10 2.132444e-10 2.798290786e-10 1.77458225e-10 1.528225484e-10 3.774578528e-10 5.640499268e-10 5.489045301e-10 5.110578914e-10 8.835824261e-10 1.131978518e-09 9.337796592e-10 9.790950719e-10 7.7577127e-10 5.475649762e-10 2.348830677e-10 6.530336961e-11 6.979718776e-11 1.155876525e-10 5.429171333e-16 5.667936992e-11 7.262062883e-11 1.427231069e-10 9.222192839e-11 5.81851952e-26 2.261840703e-10 2.01192798e-10 1.630662328e-10 1.340359997e-10 1.136011188e-10 2.443166392e-10 1.879730186e-10 1.356837817e-10 0 6.820685547e-11 1.365174655e-10 2.164190135e-10 1.076021668e-10 1.784912386e-11 1.535174859e-10 8.34184046e-11 2.00184278e-10 2.44374809e-10 1.021456093e-10 1.810119684e-10 1.566445482e-10 1.906089036e-10 1.022417393e-10 1.197007031e-10 0 1.603720628e-10 1.432223076e-10 1.62772941e-10 1.470553454e-10 1.117809454e-10 5.514542341e-10 8.938128803e-10 1.004001528e-09 9.839621562e-10 9.49337288e-10 1.020543685e-09 5.945304421e-10 4.97517304e-10 6.956132127e-10 4.289828606e-10 9.695617608e-11 1.6775022e-10 0 2.788711492e-10 1.814225899e-10 4.494458524e-10 6.306842122e-10 3.794593179e-10 5.084628246e-10 6.754889235e-10 6.086438839e-10 6.39121026e-10 8.656377874e-10 7.964986179e-10 8.129663405e-10 5.774582574e-10 8.953852457e-10 7.516489024e-10 7.3076706e-10 5.786269332e-10 7.560536217e-10 5.553981482e-10 3.222084664e-10 2.461172634e-10 2.106294301e-10 3.480072453e-10 3.620596229e-10 4.450298917e-10 2.823156922e-10 3.894894779e-10 4.175962176e-10 4.019545263e-10 4.748106707e-10 4.188817151e-10 3.980664444e-10 4.320364818e-10 4.870946558e-10 5.482016829e-10 3.57557428e-10 3.368247433e-10 4.526833573e-10 4.481687365e-10 2.454647273e-10 2.672577538e-10 2.976488177e-10 3.217497075e-10 2.842570127e-10 2.797323717e-10 4.02413135e-10 3.760752294e-10 3.157285378e-10 2.971525619e-10 3.448278785e-10 3.435689713e-10 3.697119012e-10 3.437491079e-10 4.0682105e-10 4.618361152e-10 3.557382666e-10 3.819432877e-10 2.261811127e-10 2.516005632e-10 2.773209222e-10 3.088334084e-10 1.620378107e-10 3.054907686e-10 4.196978565e-10 3.07420032e-10 2.783624366e-10 2.844473878e-10 3.275626523e-10 2.558520324e-10 3.240994073e-10 3.778763022e-10 3.175377976e-10 2.504192228e-10 3.226628787e-10 1.711095642e-10 2.184731635e-10 2.802513225e-10 3.090671803e-10 3.224646379e-10 7.602197658e-11 2.842763197e-10 1.453681668e-10 2.243419006e-10 3.332106707e-10 4.112205599e-10 3.499097821e-10 2.552616097e-10 1.168032248e-10 2.435952389e-10 1.676170902e-10 2.586096778e-10 2.453976117e-10 4.06582495e-10 3.349486032e-10 1.276835391e-10 2.849099351e-10 1.15961633e-10 2.453927992e-10 2.171614905e-10 1.660751587e-10 2.358880064e-10 2.966467517e-10 4.305355476e-10 1.389672722e-10 3.646372268e-10 3.477086069e-10 2.575982431e-10 3.310852122e-10 1.963206763e-10 2.520935608e-10 3.509704584e-10 3.541343509e-10 3.597401788e-10 2.149459288e-10 1.958086159e-10 2.914101601e-10 2.581182247e-11 +1.323766838e-10 4.834450682e-10 1.828958873e-10 3.183220385e-10 3.014760931e-10 1.737280737e-10 1.338431195e-10 9.858349812e-11 2.190835429e-10 2.727422884e-10 1.749725628e-10 2.852470913e-10 1.240337716e-10 1.551127433e-10 1.524534431e-10 1.765845758e-10 2.137982969e-10 2.24136858e-10 3.212303873e-10 2.885824448e-10 3.066564396e-10 2.045874327e-10 2.497852133e-10 2.251900149e-10 3.486151981e-10 2.346468087e-10 1.884488752e-10 2.815298613e-10 1.702167831e-10 2.11069917e-10 2.465369422e-10 2.179586076e-10 2.547832091e-10 1.809512527e-10 2.584446988e-10 1.396605033e-10 1.272150469e-10 3.644880766e-10 1.439914221e-10 1.813080819e-10 2.59861442e-10 1.179634054e-10 3.157804596e-10 2.681384986e-10 2.130594028e-10 4.726782354e-10 4.218103409e-10 2.691633825e-10 4.133177828e-10 3.501802624e-10 2.964047419e-10 4.278065943e-10 2.018788783e-10 4.005711449e-10 4.234801825e-10 3.110006346e-10 3.031367179e-10 2.451505174e-10 3.250358379e-10 2.762985282e-10 2.997140287e-10 3.023659319e-10 4.312324128e-10 2.765615129e-10 3.249693599e-10 3.801060802e-10 2.797201582e-10 2.986406558e-10 2.725811775e-10 3.501875277e-10 4.429637219e-10 3.089078538e-10 2.398430261e-10 4.090468686e-10 3.626755455e-10 2.306951382e-10 2.654793356e-10 4.103521257e-10 4.653461231e-10 4.82611263e-10 3.670493801e-10 4.626377799e-10 4.080357782e-10 3.759285186e-10 5.606908665e-10 4.631551632e-10 5.617366943e-10 5.181980868e-10 4.879308696e-10 4.559780174e-10 5.003239597e-10 2.874578887e-10 5.231780104e-10 2.73684086e-10 2.17744875e-10 2.270728144e-10 1.911548829e-10 1.9235139e-10 2.669357518e-10 4.810713903e-10 8.317205576e-10 6.22092231e-10 6.206032831e-10 9.709639078e-10 7.652729555e-10 7.363691771e-10 7.626461252e-10 6.553615676e-10 8.460877834e-10 4.949001203e-10 6.443151528e-10 4.035723043e-10 5.350429582e-10 5.95364508e-10 4.228597331e-10 2.863075832e-10 1.722553479e-10 8.752346971e-11 1.487241475e-10 2.011224562e-10 4.455867539e-10 5.490293495e-10 5.850514653e-10 4.276424588e-10 1.01798477e-09 1.075385198e-09 9.932124578e-10 7.862453464e-10 7.891985224e-10 6.262000409e-10 1.333766014e-10 1.21964536e-10 0 1.415649051e-10 1.120475527e-10 1.002806706e-10 1.371536572e-10 2.335850547e-10 1.435929083e-10 5.477639931e-12 1.371051285e-10 8.933449949e-11 1.489437322e-10 2.056234807e-10 1.680217324e-10 1.629888866e-10 1.899143479e-10 1.373658632e-10 9.986208979e-11 1.574086177e-10 1.199283875e-10 3.637236712e-12 1.638269589e-10 0 1.882987088e-10 1.504158843e-10 1.448556143e-10 9.598053083e-11 9.92705776e-11 1.361561285e-10 1.836806342e-10 1.925248955e-10 1.630854685e-10 1.769226802e-10 1.185107157e-10 1.064989103e-10 1.698581616e-10 0 1.764907755e-10 1.476057404e-10 5.830447037e-10 9.140292294e-10 8.5901525e-10 1.128468884e-09 1.100701378e-09 8.195377878e-10 6.202900234e-10 5.414668767e-10 6.745138592e-10 3.6610506e-10 1.653344153e-10 5.342717408e-11 2.608585626e-10 1.365567524e-10 3.715747283e-10 6.006346383e-10 4.786023001e-10 4.28309803e-10 4.102647308e-10 5.488356583e-10 6.165223853e-10 7.4789467e-10 6.850028872e-10 6.34072904e-10 7.042590879e-10 6.192558102e-10 6.3178212e-10 7.546879139e-10 9.5807037e-10 8.239212939e-10 7.180430715e-10 1.972514145e-10 2.716414656e-10 9.243083348e-11 1.731673476e-10 2.305164789e-10 4.364908528e-10 2.796529775e-10 2.687557343e-10 4.242446061e-10 2.699663712e-10 6.326795023e-10 3.563837906e-10 5.237428431e-10 4.44787019e-10 3.32335897e-10 4.845872161e-10 6.560021703e-10 6.047938476e-10 5.121609686e-10 3.883718266e-10 4.398669103e-10 3.231143516e-10 2.176321649e-10 2.845803967e-10 2.703405388e-10 4.437580515e-10 3.539290398e-10 4.374118057e-10 2.305701182e-10 3.114200236e-10 3.487647238e-10 2.178585188e-10 2.350702784e-10 3.826381521e-10 2.301168169e-10 3.568477379e-10 2.581904587e-10 2.07670569e-10 2.158112295e-10 1.938394623e-10 4.348248309e-10 2.920800249e-10 2.578745041e-10 1.999577882e-10 5.171569406e-10 3.444916976e-10 4.673486489e-10 4.703953705e-10 4.267449352e-10 3.486126966e-10 3.091957669e-10 3.438170343e-10 2.167694337e-10 2.996040901e-10 2.957135419e-10 4.277124833e-10 1.468660502e-10 2.283223747e-10 1.021045962e-10 1.495487614e-10 1.869063817e-10 1.212409526e-10 1.966625119e-10 2.240723635e-10 2.057513506e-10 2.115890497e-10 2.104536975e-10 3.301917198e-10 1.452930897e-10 2.457690963e-10 1.316192046e-10 4.53572349e-10 1.352953477e-10 1.46309648e-10 1.162155321e-10 7.499215018e-11 1.919339912e-10 3.702273004e-10 1.838516192e-10 1.69598418e-10 4.526112373e-10 2.956406797e-10 2.236389185e-10 3.178120543e-10 2.222622721e-10 3.002819551e-10 1.384947301e-10 1.282124678e-10 3.038922924e-10 1.349008538e-10 1.834367185e-10 1.989067731e-10 2.791400181e-10 1.652595858e-10 5.558088072e-11 4.278968607e-10 2.903756137e-10 2.896999353e-10 3.84150818e-10 +3.952437078e-10 5.968914301e-11 2.873175869e-10 1.863165916e-10 1.888123446e-10 2.105123992e-10 2.918616686e-10 2.216807894e-10 1.366714889e-10 4.339994361e-10 1.732623398e-10 2.233794383e-10 2.954011283e-11 1.880839673e-10 1.854598122e-10 3.357631474e-10 1.321559049e-10 1.966019012e-10 1.33972406e-10 4.664289631e-11 3.916193825e-10 1.299341507e-10 2.388677597e-10 1.306135884e-10 1.029857294e-10 1.317439902e-10 2.086437848e-10 1.192965324e-10 2.70364339e-10 2.691018539e-10 2.172049803e-10 2.644455252e-10 1.761718119e-10 1.955141339e-10 2.158613161e-10 3.318904175e-10 4.016378791e-10 1.2355317e-10 1.627925732e-10 3.472702101e-10 2.26114826e-10 3.118794418e-10 2.132911566e-10 1.432187496e-10 4.427378541e-10 3.193330847e-10 4.239676943e-10 2.308355791e-10 3.672203722e-10 3.095515097e-10 3.843414419e-10 2.201510686e-10 3.43330524e-10 2.119096243e-10 3.35003818e-10 3.651991958e-10 2.811586264e-10 1.726021141e-10 3.155024536e-10 3.306708171e-10 4.567101301e-10 2.332622155e-10 4.722945033e-10 3.490938815e-10 3.690583761e-10 2.347879869e-10 2.343897072e-10 2.77603017e-10 4.140580016e-10 2.866135456e-10 3.067812715e-10 4.209585336e-10 3.586994101e-10 2.064678572e-10 2.932735381e-10 3.765490154e-10 4.259660594e-10 2.417478906e-10 3.290873864e-10 4.967984441e-10 5.918166863e-10 5.029089573e-10 4.60997502e-10 5.472625573e-10 4.862154485e-10 5.940494415e-10 3.294803285e-10 3.650276249e-10 5.35238215e-10 3.959690229e-10 4.28133335e-10 5.968781618e-10 4.395689096e-10 3.507917234e-10 3.602113732e-10 1.7853556e-10 2.041959292e-10 2.441572076e-10 2.458132703e-10 5.766982069e-10 7.287549222e-10 7.201277406e-10 7.053212499e-10 5.643960807e-10 7.1346217e-10 8.080892461e-10 4.624016182e-10 6.647724236e-10 8.070206878e-10 6.818169791e-10 5.355889614e-10 5.31911301e-10 4.639862044e-10 4.469099874e-10 5.27009012e-10 3.047694341e-10 1.555092253e-10 1.449941741e-10 3.400996158e-15 1.700621478e-10 4.192432341e-10 5.237083046e-10 6.029388088e-10 5.407610133e-10 1.003194983e-09 1.086078821e-09 1.170355724e-09 8.876504147e-10 9.268930667e-10 5.759313251e-10 1.814181561e-10 2.455183704e-10 1.649899604e-18 1.356380373e-10 1.458520594e-10 8.490438983e-11 9.571451289e-11 9.384193318e-11 1.318521835e-10 1.083375624e-10 1.224715234e-10 1.45219572e-10 1.605031586e-10 1.525711409e-10 0 1.236397769e-10 7.094631779e-11 9.776605185e-11 1.232850176e-10 1.193963094e-10 9.93974653e-11 1.550433674e-10 2.843248498e-16 1.351653485e-10 1.828845479e-10 1.703396122e-10 8.470435627e-11 1.211786578e-10 1.645700353e-10 1.823326024e-10 0 1.225488038e-10 1.401737974e-10 9.728742838e-11 1.837836429e-10 1.790302e-10 1.284669074e-10 2.160386973e-10 2.410087669e-11 1.593836446e-10 4.939463987e-10 7.259441468e-10 8.844941841e-10 9.191643671e-10 1.041311837e-09 9.691069953e-10 4.967429316e-10 5.523628784e-10 4.80356312e-10 4.466193373e-10 1.17922512e-10 2.323053563e-10 9.46284317e-11 8.242969033e-11 3.773673096e-10 5.385913441e-10 3.994503107e-10 5.279748445e-10 4.675163114e-10 5.02284432e-10 5.909636164e-10 8.018346311e-10 8.543290311e-10 5.987144559e-10 4.635904427e-10 7.072907766e-10 4.635232259e-10 5.87007668e-10 6.778269942e-10 5.734958021e-10 5.497968477e-10 3.681846398e-10 2.426819832e-10 2.104945069e-10 3.252435314e-10 3.423831859e-10 2.74441117e-10 4.085700121e-10 4.583028675e-10 3.74029036e-10 3.874968773e-10 5.64808494e-10 4.588090659e-10 4.135174818e-10 5.762687299e-10 5.841050284e-10 4.964843493e-10 4.081843288e-10 5.726455946e-10 4.897472102e-10 3.592411323e-10 3.884265597e-10 3.647365613e-10 2.746915074e-10 3.186464095e-10 3.080381743e-10 1.686000657e-10 4.380296772e-10 2.816506395e-10 3.274172178e-10 3.206517347e-10 3.232618471e-10 5.194531231e-10 4.374951925e-10 3.52822905e-10 3.837553056e-10 3.522811442e-10 3.020349843e-10 2.785547158e-10 4.506884288e-10 3.109835134e-10 3.858098795e-10 3.334906562e-10 2.375009702e-10 2.655974746e-10 2.481396193e-10 4.114586906e-10 3.109583267e-10 2.617692062e-10 2.071341707e-10 4.232698071e-10 4.396586537e-10 3.409744364e-10 4.041791833e-10 3.499723714e-10 1.916689404e-10 5.23384243e-10 2.486144483e-10 1.579142396e-10 3.484763454e-10 1.299945218e-10 2.477320641e-10 2.843927907e-10 1.214503484e-10 4.099407285e-10 2.02236342e-10 9.320661017e-11 2.240881776e-10 1.665194596e-10 1.340657007e-10 1.224343639e-10 1.927244184e-10 2.802985841e-10 2.061543342e-10 8.720863178e-11 2.318688306e-10 1.790947209e-10 1.507371893e-10 4.169527788e-10 7.118798508e-11 1.299260305e-10 2.876591904e-10 4.249836326e-10 8.391113906e-11 1.275612418e-10 1.764603903e-10 2.233266164e-10 1.551247286e-10 9.136950031e-11 4.061724025e-10 1.444197802e-10 2.090386611e-10 3.499589662e-10 2.972104549e-10 1.052726262e-10 1.624916553e-10 4.05808587e-11 2.739579603e-10 3.344182314e-10 4.089150074e-10 +3.267021027e-10 5.437921455e-11 1.882526903e-10 3.172239891e-10 3.546034773e-10 4.614182779e-11 1.13044872e-10 1.566905544e-10 1.792520133e-10 2.371675454e-10 1.744794121e-10 3.763481771e-10 2.529291115e-10 1.07161746e-10 2.093723848e-10 2.696709005e-10 2.674166934e-10 1.594866827e-10 1.534486732e-10 2.177784461e-10 3.41620418e-10 2.41910544e-10 7.590074944e-11 1.018532875e-10 3.849524022e-10 3.159022294e-10 1.563498829e-10 1.531162492e-10 1.942167243e-10 2.50070467e-10 1.019157191e-10 1.668946144e-10 2.167626324e-10 4.155988186e-10 2.423886814e-10 1.756115507e-10 2.688544265e-10 1.850274484e-10 1.870634679e-10 2.640222575e-10 2.269844054e-10 1.160519091e-10 3.915535707e-10 3.447472239e-10 3.045779672e-10 1.939919045e-10 2.274069417e-10 2.621549701e-10 2.635419411e-10 2.08276638e-10 3.98622672e-10 2.779051215e-10 4.089354091e-10 3.086419877e-10 2.260499442e-10 3.11375537e-10 2.818872057e-10 1.810300119e-10 1.686940429e-10 1.405983056e-10 2.330801187e-10 2.717384208e-10 3.419321922e-10 2.928592672e-10 5.150788218e-10 3.756355421e-10 2.054368674e-10 3.305323005e-10 2.296801076e-10 3.902005288e-10 4.484188717e-10 1.892258388e-10 2.897810005e-10 4.253775315e-10 2.59021433e-10 1.542954141e-10 3.405644657e-10 3.5300785e-10 3.811473771e-10 4.435266253e-10 4.651066501e-10 5.733028711e-10 5.37149679e-10 3.106462278e-10 3.85013264e-10 3.714700677e-10 5.137306889e-10 3.803765734e-10 5.140395801e-10 5.167311651e-10 3.976138447e-10 3.112847089e-10 3.067487503e-10 3.212822036e-10 1.87563652e-10 1.090463073e-10 1.769533079e-10 3.26676398e-10 1.420418417e-10 4.921673993e-10 5.194503702e-10 6.260791382e-10 8.51612605e-10 8.048530287e-10 5.965930175e-10 4.625000562e-10 6.006309497e-10 8.362082243e-10 8.150182918e-10 6.895189957e-10 5.735236248e-10 5.090911487e-10 4.188780625e-10 5.106497385e-10 5.184970977e-10 2.924727941e-10 1.846257617e-10 1.472971671e-10 2.762347658e-10 1.712886906e-10 5.343674333e-10 4.881105936e-10 6.284249933e-10 4.651309947e-10 1.020511261e-09 1.091626712e-09 1.048392131e-09 9.693054721e-10 8.736728316e-10 6.502350033e-10 1.132175047e-10 1.60793306e-10 1.105509475e-10 1.720612801e-10 2.885027175e-16 2.045790221e-10 1.104146737e-10 1.68881484e-10 1.720469314e-10 9.117415904e-11 9.895776031e-11 1.947624822e-10 1.485608807e-10 3.656934602e-13 1.446119292e-10 8.467458246e-11 1.487828502e-10 1.583600349e-10 6.330676492e-11 9.560127361e-12 2.083432705e-10 7.573391841e-11 1.665590033e-10 1.844188882e-10 4.352935388e-11 5.109223169e-18 7.721762422e-11 1.571159176e-10 5.622066643e-11 1.283314937e-10 1.167035024e-10 1.854316596e-10 1.679587441e-10 1.59826441e-10 4.496823308e-15 1.457191383e-10 4.957210916e-12 5.614453218e-12 1.623910875e-10 1.921291298e-10 5.922998696e-10 9.053391568e-10 1.122501459e-09 9.389348948e-10 1.054574394e-09 9.532797921e-10 5.705482726e-10 6.205636301e-10 5.989371369e-10 4.613079987e-10 1.685626372e-10 4.651223605e-11 8.02430848e-11 2.5485131e-10 3.200665387e-10 5.846060857e-10 5.364210211e-10 5.486556914e-10 6.127399981e-10 5.496847152e-10 7.06851668e-10 6.02307677e-10 7.935964524e-10 4.732805558e-10 7.410789546e-10 7.654151214e-10 9.618643783e-10 8.083137032e-10 6.821006373e-10 6.729420332e-10 7.82064644e-10 2.351395079e-10 1.845197473e-10 2.722122003e-10 1.304984469e-10 3.157951106e-10 2.83769782e-10 3.239878135e-10 3.19489506e-10 4.67347882e-10 3.32197316e-10 3.948628296e-10 5.093773911e-10 4.255346021e-10 5.27127386e-10 4.74197411e-10 4.783307559e-10 3.688546134e-10 3.631889393e-10 5.303352876e-10 3.674339087e-10 4.303033787e-10 2.581391791e-10 3.621685243e-10 3.947955728e-10 4.260504655e-10 2.998418798e-10 2.52996039e-10 3.418767666e-10 3.581085236e-10 2.234279943e-10 3.504284566e-10 2.704368078e-10 2.579981002e-10 3.885582486e-10 1.79441761e-10 3.374036083e-10 1.823727647e-10 2.321896042e-10 2.708034618e-10 4.252306328e-10 2.161499828e-10 3.007311074e-10 3.998106002e-10 2.899693522e-10 2.08657332e-10 3.537441195e-10 2.579205569e-10 3.343798711e-10 4.166958348e-10 2.691418364e-10 2.795464342e-10 3.734135529e-10 3.793368092e-10 3.750316037e-10 2.599359793e-10 2.051480239e-10 2.540935025e-10 2.281587694e-10 1.428135067e-10 3.570092193e-10 2.505564088e-10 2.805627684e-10 1.937844661e-10 2.109837808e-10 1.54849283e-10 1.609399602e-10 1.364327916e-10 3.433896649e-10 2.257896169e-10 2.794087815e-10 1.377757711e-10 5.352371224e-10 3.274522523e-10 1.646168152e-10 2.933743916e-10 2.841927764e-10 2.21471023e-11 2.335828493e-10 2.510810265e-10 2.998039694e-10 1.487622789e-10 4.292402915e-10 1.625131762e-10 8.319522793e-11 2.020765783e-10 3.451145781e-10 3.087692914e-10 1.993268331e-10 5.736419929e-10 2.798655809e-10 1.164953615e-10 1.185442897e-10 3.14026742e-10 2.384690154e-10 1.799805039e-10 7.647510457e-11 2.107126478e-10 1.934038846e-10 1.328568327e-11 +3.455583566e-10 1.650503071e-10 1.121391613e-10 2.469909944e-10 1.121342694e-10 3.391577824e-10 1.970272182e-10 5.745207895e-10 1.664418664e-10 3.169029894e-10 4.180497884e-10 7.752225586e-11 3.018985089e-10 1.110340756e-10 1.164496747e-10 2.170469014e-10 2.385883931e-10 6.605328989e-11 3.2219228e-10 1.69374161e-10 4.516922173e-11 2.436410231e-10 2.338734077e-10 1.374027359e-10 1.630668225e-10 3.252244235e-10 1.70645356e-10 2.145864885e-10 9.603498678e-11 1.750690321e-10 2.676104502e-10 9.176702993e-11 1.12736327e-10 2.937768298e-10 2.664005465e-10 9.868777416e-11 9.392709337e-11 1.615870041e-10 3.558734761e-10 1.625043888e-10 3.504283887e-10 1.320322399e-10 3.576579107e-10 2.428673978e-10 2.923822659e-10 4.07005489e-10 3.026914812e-10 2.47376345e-10 2.748072672e-10 2.415207353e-10 2.308046277e-10 2.003394537e-10 3.10588582e-10 3.283406002e-10 4.531872471e-10 2.864466594e-10 2.476123042e-10 4.948777146e-10 2.57357444e-10 4.727972391e-10 1.513288942e-10 2.814817675e-10 2.86325916e-10 2.909561346e-10 2.695098388e-10 3.081298275e-10 2.96881548e-10 2.015372243e-10 2.314786437e-10 2.6571276e-10 4.366198087e-10 3.275978302e-10 2.11823458e-10 2.137144487e-10 3.186306051e-10 1.788524847e-10 3.123587181e-10 2.092746855e-10 4.120627635e-10 5.339524768e-10 5.291220793e-10 4.800336048e-10 5.755153546e-10 5.693790527e-10 4.841752935e-10 5.146115409e-10 4.88387258e-10 5.096507398e-10 4.042967372e-10 5.3974419e-10 3.860205827e-10 3.841402664e-10 4.614979382e-10 4.865890775e-10 2.905038367e-10 2.218133387e-10 1.34851781e-10 2.782460201e-10 3.316533917e-10 6.342374315e-10 8.978824932e-10 8.871791228e-10 5.792771637e-10 8.619753055e-10 6.48182889e-10 6.343101556e-10 6.782272258e-10 8.372416073e-10 9.475553397e-10 6.306480616e-10 3.88003603e-10 5.502728806e-10 5.012954626e-10 3.529580259e-10 5.389162598e-10 4.261670511e-10 1.720148174e-10 1.382747715e-10 1.229104922e-10 2.012498915e-10 4.145863537e-10 5.761538572e-10 5.214858441e-10 4.934873759e-10 7.81622354e-10 9.897951352e-10 1.083434699e-09 9.794364774e-10 9.111708251e-10 7.248317826e-10 2.213797959e-10 2.014301895e-10 2.062049434e-10 2.081939481e-10 1.081473016e-10 1.32741122e-10 1.254684611e-10 1.406299803e-10 1.113482908e-10 9.236886757e-11 1.181711238e-10 1.103561266e-10 1.317325469e-10 8.182816643e-11 2.201434339e-10 1.674838761e-10 2.049208447e-10 1.228447939e-14 2.023985607e-10 1.051488969e-10 1.564122772e-10 1.654695581e-12 1.154167745e-10 1.463496486e-10 1.970505591e-10 1.686129684e-10 1.006262153e-10 1.924322338e-10 1.565971425e-10 1.142870698e-10 1.614233398e-10 1.109234356e-10 1.515133495e-10 2.230260711e-11 1.396278361e-10 6.939181139e-11 5.814853634e-11 1.339805675e-10 1.194528225e-10 3.093092733e-10 5.922099207e-10 7.990921676e-10 9.707946245e-10 9.338022324e-10 9.915060002e-10 9.303467976e-10 5.32258065e-10 5.261336522e-10 6.474159453e-10 4.083939893e-10 2.192526458e-10 1.77739703e-10 3.588285529e-11 2.078893347e-10 4.709433949e-10 5.61328282e-10 4.645406212e-10 5.259898565e-10 4.52331816e-10 5.715491085e-10 5.241686303e-10 6.442304337e-10 6.885541953e-10 5.167633052e-10 4.665407415e-10 6.861169062e-10 5.786672743e-10 6.425259925e-10 9.578736161e-10 7.411676451e-10 6.790113029e-10 2.882412044e-10 2.648411598e-10 1.819157013e-10 1.257237685e-10 3.458979184e-10 3.567911742e-10 3.699205322e-10 5.168083481e-10 5.360942891e-10 6.645205051e-10 2.883258262e-10 5.002579581e-10 4.279121745e-10 4.101696005e-10 6.00417877e-10 5.637957783e-10 5.001665913e-10 4.158182627e-10 4.964026801e-10 3.317668059e-10 5.724046967e-10 3.492452452e-10 4.184356925e-10 4.022559957e-10 3.327385439e-10 2.741536659e-10 3.463427937e-10 3.539322361e-10 4.447504315e-10 3.687784426e-10 2.042066088e-10 3.531447557e-10 4.124969993e-10 2.542017254e-10 2.67371968e-10 1.509422307e-10 2.40077111e-10 2.558727494e-10 2.993551466e-10 3.010791384e-10 4.056102766e-10 2.491732518e-10 1.667425792e-10 3.054417748e-10 3.720731994e-10 5.095287821e-10 2.96036465e-10 3.595212603e-10 2.512776948e-10 1.968760566e-10 2.704711302e-10 2.664740677e-10 3.07333451e-10 2.19632172e-10 3.37795699e-10 2.754018646e-10 3.031174144e-10 2.287547958e-10 1.898329807e-10 1.606915443e-10 2.490183614e-10 9.973639501e-11 2.466482096e-10 1.914020045e-10 8.862315084e-11 1.511713655e-10 1.807626935e-10 1.754708046e-10 2.358333607e-10 3.287870131e-10 3.262420393e-10 1.340063697e-10 3.06603779e-10 2.223594806e-10 1.591878738e-10 2.414869214e-10 1.330357476e-10 4.991899161e-10 1.955164016e-10 3.369540157e-10 4.189081244e-11 1.975166122e-10 2.394516575e-10 8.071428584e-11 1.042216229e-10 2.245998075e-10 1.383665718e-10 2.266572372e-10 1.474196167e-10 3.033343289e-10 2.637861472e-10 1.91501546e-10 1.260470691e-10 9.574857948e-11 2.22958856e-10 3.263724558e-10 1.089388028e-10 2.026266974e-10 4.068592063e-11 +3.80495116e-10 3.007937754e-10 1.152052481e-10 2.766342171e-10 2.843066449e-10 1.012294992e-10 1.10647694e-10 3.787546532e-10 2.047262605e-10 2.907493388e-10 6.097595947e-11 1.466481102e-10 1.044307134e-10 1.293028697e-10 4.53204079e-10 9.184420274e-11 3.475276259e-10 4.011203784e-10 2.548151183e-10 2.093864771e-10 9.234859676e-11 4.215263467e-10 3.416053058e-10 5.706601717e-11 2.472523024e-10 1.835637511e-10 3.063626424e-10 1.416546021e-10 2.506480313e-10 2.149368468e-10 2.989778369e-10 2.631131043e-10 2.526447515e-10 3.061323391e-10 1.982362085e-10 1.745793278e-10 2.271669851e-10 1.54287715e-10 2.387204078e-10 3.803181322e-10 2.301376762e-10 4.069415976e-10 2.782668562e-10 3.020921302e-10 3.664789583e-10 4.025199307e-10 2.868560999e-10 4.181758581e-10 2.17794127e-10 4.004356541e-10 3.418990052e-10 3.956381687e-10 2.193118032e-10 4.057333104e-10 3.082013163e-10 3.773259068e-10 2.08648247e-10 2.58271606e-10 2.687340658e-10 1.938396165e-10 2.557694126e-10 2.822427756e-10 2.560395518e-10 4.423216635e-10 2.903542894e-10 3.165671505e-10 3.485990053e-10 2.535761005e-10 2.359048615e-10 2.972839345e-10 3.455140223e-10 3.62731174e-10 2.405313836e-10 3.056511254e-10 2.781119304e-10 3.804393299e-10 2.161339447e-10 3.195945833e-10 4.650353672e-10 4.01097382e-10 3.476329702e-10 7.554437617e-10 5.085005672e-10 4.617218208e-10 4.309525118e-10 3.946240622e-10 4.030169125e-10 3.108593691e-10 4.519763213e-10 4.767179287e-10 5.610193131e-10 4.211372909e-10 3.403071623e-10 3.370204583e-10 1.961476519e-10 1.556946476e-10 3.343178129e-10 2.632304611e-10 4.685640485e-10 6.154038412e-10 4.747333111e-10 9.541144519e-10 9.77063176e-10 4.88006727e-10 7.324471298e-10 5.409856729e-10 5.601039098e-10 8.542988476e-10 7.376571178e-10 6.936703061e-10 6.107726985e-10 3.530996644e-10 5.709255421e-10 5.454019167e-10 4.842218728e-10 3.944790854e-10 2.91640335e-10 7.448856645e-11 1.97442436e-33 3.513989346e-13 4.471430568e-10 5.417421349e-10 7.041759859e-10 4.76839611e-10 5.743477518e-10 1.037302693e-09 9.465662063e-10 8.522638913e-10 7.691733889e-10 7.294053353e-10 3.160975672e-10 2.445680601e-10 1.671537171e-10 8.729691375e-15 1.918792099e-10 1.773692615e-10 1.618604898e-10 1.104320729e-10 2.382221424e-17 1.817063399e-10 1.56763502e-10 2.382215583e-10 1.693706863e-10 1.866770755e-10 1.717607791e-10 2.245248464e-10 9.231611525e-11 1.746876573e-10 1.266320732e-10 1.084012715e-10 1.949673762e-11 1.898718482e-10 1.21055949e-10 1.170180764e-10 2.019672201e-10 1.068284506e-10 1.439631081e-11 1.66071861e-10 1.381068118e-10 1.500872222e-10 9.824938612e-11 1.144662931e-10 1.67065378e-10 0 1.13456863e-10 1.635499085e-10 1.528960596e-10 1.163558673e-10 1.319775601e-10 3.417900394e-10 6.340154478e-10 9.271195006e-10 9.428212131e-10 9.806225757e-10 1.02776556e-09 7.666618305e-10 6.320277535e-10 5.91486255e-10 6.017168275e-10 3.430304982e-10 1.191903273e-10 2.251747781e-10 1.251113063e-10 1.799789286e-10 4.280227366e-10 3.145319448e-10 4.725836919e-10 5.69839798e-10 3.183749962e-10 4.311987184e-10 6.348363719e-10 6.266962805e-10 9.526057078e-10 7.372841283e-10 5.089580904e-10 6.606862117e-10 6.080809061e-10 8.559004205e-10 8.45022963e-10 5.983012718e-10 4.060606896e-10 2.928209891e-10 3.558897015e-10 2.235664587e-10 1.421226784e-10 3.216090875e-10 4.185768642e-10 4.491235752e-10 4.084678088e-10 2.501424512e-10 5.683589015e-10 5.000434562e-10 4.767341579e-10 4.062241919e-10 4.570620042e-10 4.934886122e-10 4.232970273e-10 3.923749233e-10 4.587361646e-10 5.536388429e-10 5.427369999e-10 3.412021328e-10 2.117281899e-10 3.030103422e-10 1.91227151e-10 3.782650398e-10 2.262689432e-10 4.114770284e-10 3.657592859e-10 4.831523282e-10 3.431936316e-10 3.375268264e-10 3.223177446e-10 4.981261305e-10 2.675089547e-10 2.434076795e-10 3.500477224e-10 1.828590262e-10 2.938963993e-10 2.905122853e-10 4.172887562e-10 3.406564119e-10 3.869617711e-10 2.459689239e-10 2.190846255e-10 2.411823238e-10 2.636681465e-10 3.006203293e-10 4.460260201e-10 3.137163902e-10 2.586595378e-10 4.439339236e-10 2.363294333e-10 2.393991908e-10 4.387259785e-10 4.558846687e-10 1.863067072e-10 2.486642621e-10 2.431202649e-10 1.354333562e-10 2.114130703e-10 6.663333407e-11 1.680442661e-10 3.079570773e-10 1.358697471e-10 2.974885464e-10 2.420048776e-10 3.614197254e-10 1.792154679e-10 2.07058641e-10 3.128758368e-10 1.086724756e-10 1.601195226e-10 2.283693488e-10 2.727226581e-10 1.48537262e-10 2.697929476e-10 3.705888646e-10 2.32937777e-10 1.431855053e-10 3.8505078e-11 1.804555095e-10 2.182327367e-10 2.077060155e-10 3.190196926e-10 3.129418624e-10 2.378259516e-10 1.703569031e-10 3.797393806e-10 3.5109667e-10 3.12433613e-10 2.027114887e-10 2.617314385e-10 7.876885902e-11 1.78044202e-10 6.108314282e-11 5.474018524e-11 2.503203468e-11 3.168466421e-10 1.125077882e-10 +1.954645445e-10 1.642583023e-10 3.164491559e-10 3.270341046e-10 1.099795937e-10 1.852657364e-10 2.350344883e-10 6.786423714e-11 3.552537635e-10 3.606667915e-10 1.164599954e-10 1.788512114e-10 3.111898331e-10 2.265263522e-10 4.169500102e-10 4.122993845e-10 1.378238362e-10 1.138872148e-10 2.583020347e-10 1.594252566e-10 9.423046091e-11 4.087107119e-10 4.628879449e-11 1.764769373e-10 3.144960458e-10 1.417724497e-10 2.355312834e-10 2.076646383e-10 1.178510636e-10 1.264171691e-10 8.398230087e-11 3.300614284e-10 2.673371818e-10 1.399479832e-10 1.915771987e-10 1.298459591e-10 1.554389172e-10 2.264661726e-10 1.098539166e-10 1.158998578e-10 1.529526353e-10 1.823124818e-10 1.082358985e-10 4.752993951e-10 5.367826131e-10 2.125432665e-10 2.040842186e-10 2.485935285e-10 3.562768035e-10 2.569723474e-10 3.016214386e-10 1.797835603e-10 2.834549159e-10 4.349831332e-10 2.971413116e-10 2.427700452e-10 1.760449887e-10 2.923237236e-10 1.891999545e-10 5.147919738e-10 2.834485713e-10 2.082989693e-10 2.964218635e-10 3.820928456e-10 3.077253101e-10 3.586819424e-10 4.599907594e-10 3.250261709e-10 2.442604538e-10 3.153249244e-10 2.927180379e-10 4.41847077e-10 4.015272374e-10 2.072580881e-10 2.944556884e-10 4.816945318e-10 4.012546764e-10 1.161538193e-10 3.331404847e-10 5.303473229e-10 3.068313593e-10 5.423158034e-10 3.614165598e-10 5.243224352e-10 5.137975907e-10 6.677664116e-10 5.298957283e-10 5.342250829e-10 4.773373806e-10 4.445776748e-10 4.260509078e-10 4.297185144e-10 5.644918587e-10 2.584984047e-10 3.138254894e-10 2.32931941e-10 2.651436229e-10 3.085328289e-10 6.865804985e-10 6.506173171e-10 7.29009521e-10 7.594257234e-10 8.241302182e-10 6.908868968e-10 6.750193523e-10 5.301021233e-10 6.439313937e-10 7.099588472e-10 8.292419801e-10 6.680389867e-10 5.034094639e-10 5.528848044e-10 4.424627553e-10 5.602025561e-10 5.336015107e-10 3.838414646e-10 2.511034431e-10 1.426211263e-10 2.165578879e-10 1.993836747e-10 3.162726123e-10 5.511471766e-10 6.302172032e-10 5.365497567e-10 8.06231335e-10 1.018588967e-09 1.203207189e-09 8.288302436e-10 9.108777381e-10 6.812539665e-10 2.539463e-10 6.913629631e-11 1.263666708e-10 1.326386042e-10 1.639980819e-10 1.624397506e-10 1.650327596e-10 1.597596145e-10 1.26779521e-10 1.230524555e-10 1.697397505e-10 1.452847878e-10 1.044351462e-10 1.138860449e-10 1.516101284e-10 3.979347012e-15 1.053648427e-10 1.300416677e-10 2.234478763e-10 2.642463325e-15 1.619451392e-10 1.588864398e-10 2.253463674e-10 3.606695921e-19 2.748782919e-10 8.093368782e-11 6.55088599e-17 1.627373653e-10 1.381048648e-10 1.6561259e-10 1.320462311e-10 1.076795615e-10 1.454390319e-10 0 1.248413014e-10 1.427651251e-12 1.281700908e-10 1.81919149e-10 1.264364428e-10 2.104638313e-10 7.022598402e-10 1.008832622e-09 1.058564767e-09 9.874215642e-10 9.621249851e-10 7.354518578e-10 4.660462755e-10 4.928741496e-10 4.828921251e-10 4.343016132e-10 1.729203868e-10 6.200970007e-11 1.435616065e-10 1.800089923e-10 3.468917524e-10 5.413782375e-10 5.470343411e-10 5.425406858e-10 4.376547869e-10 5.395385264e-10 6.767576952e-10 8.845249352e-10 7.502439127e-10 7.035475296e-10 6.171897894e-10 8.725012233e-10 6.375982438e-10 5.183222504e-10 6.864766584e-10 7.095483564e-10 9.376581824e-10 3.176803663e-10 3.015285957e-10 3.408844885e-10 1.263823147e-10 2.838708228e-10 2.816198916e-10 4.18034905e-10 3.363898497e-10 3.71366706e-10 4.160618076e-10 3.691711422e-10 4.060362097e-10 5.886752901e-10 3.411306138e-10 4.216946073e-10 3.387440421e-10 4.350530452e-10 4.828450029e-10 3.589641187e-10 5.110474482e-10 4.248886484e-10 2.537101392e-10 5.050907535e-10 3.261175049e-10 2.044840721e-10 4.619536522e-10 1.722874523e-10 1.579671905e-10 1.488240413e-10 3.05941371e-10 3.201660682e-10 2.727182293e-10 3.602278079e-10 3.184883297e-10 2.274690725e-10 2.528202693e-10 3.84354901e-10 1.340410492e-10 1.935773671e-10 3.172373422e-10 3.411433221e-10 2.589552118e-10 2.493589527e-10 2.840604258e-10 3.310464333e-10 3.819182168e-10 5.35590133e-10 3.746838087e-10 2.563357248e-10 3.787851815e-10 5.759912642e-10 2.766955553e-10 2.521475906e-10 2.522928529e-10 2.624908803e-10 2.730885658e-10 3.588740223e-10 1.835903485e-10 1.937004124e-10 2.43705415e-10 1.362302533e-10 1.14215333e-10 2.852584169e-10 2.407130636e-10 1.494406104e-10 1.81625204e-10 1.898200833e-10 2.391497995e-10 1.806633919e-10 1.545136771e-10 1.014704802e-10 2.537540858e-10 1.562423507e-10 6.664138309e-11 2.276021793e-10 6.45849055e-11 1.862285514e-10 1.213233005e-10 2.775586917e-10 6.246278186e-11 1.55724493e-10 2.38618667e-10 1.799006361e-10 1.240504776e-10 1.218432189e-10 2.435809613e-10 9.473419013e-11 1.42806193e-10 2.321332259e-10 1.454181341e-10 2.844982028e-10 1.93222877e-10 2.025304148e-10 1.524208036e-10 2.298884007e-10 2.576974285e-10 2.611455081e-10 1.498410521e-10 1.034870009e-10 +1.480310489e-10 2.021334952e-10 4.745078036e-10 1.83514845e-10 4.411912241e-10 1.581358118e-10 1.34683049e-10 1.952760527e-10 2.653920633e-10 1.164279637e-10 2.938178212e-10 2.10364112e-10 1.781975221e-10 1.962881286e-10 9.528954128e-11 8.095534739e-11 1.179637794e-10 1.174385844e-10 1.165453505e-10 8.134050475e-11 1.874786331e-10 2.644539602e-10 2.38498888e-10 1.233045191e-10 3.650797742e-10 5.476573816e-11 2.871634362e-10 1.118674889e-10 1.593737975e-10 2.693450242e-10 1.31565695e-10 8.633323723e-11 2.973417514e-10 3.033211356e-10 1.619706091e-10 1.688807591e-10 3.760783997e-10 1.686598979e-10 9.504265824e-11 2.076332387e-10 1.70862635e-10 2.644233005e-10 3.011225119e-10 2.339053853e-10 3.863049749e-10 4.235392866e-10 1.871035461e-10 3.342694948e-10 2.543980376e-10 2.896654441e-10 2.182202586e-10 3.244318659e-10 3.862688515e-10 3.258498569e-10 3.88142684e-10 2.880812769e-10 2.473040704e-10 2.811284897e-10 3.376117793e-10 3.23279615e-10 1.568722198e-10 1.597758434e-10 2.156849908e-10 3.444778856e-10 2.849347812e-10 3.432605643e-10 2.672539577e-10 3.129997761e-10 3.539608175e-10 4.89340272e-10 3.579301931e-10 5.356766669e-10 3.88027356e-10 4.209271677e-10 3.06448343e-10 3.670999422e-10 4.842786192e-10 3.582943957e-10 3.196113635e-10 5.858107292e-10 5.940459131e-10 4.559204955e-10 5.062005472e-10 4.662219947e-10 5.670893186e-10 3.595291431e-10 4.460832565e-10 5.383969836e-10 4.719456531e-10 4.482736775e-10 4.158697311e-10 4.164583811e-10 3.988107464e-10 3.387784708e-10 2.606726065e-10 1.229555142e-10 1.120588616e-10 1.949411288e-10 2.01420789e-10 5.832554631e-10 5.163195808e-10 6.136419583e-10 6.934098363e-10 8.783360998e-10 8.317463173e-10 6.082680365e-10 4.384213259e-10 8.015200251e-10 7.011752834e-10 6.966911825e-10 6.533848753e-10 4.495588532e-10 5.179793919e-10 4.864760727e-10 4.140212584e-10 4.267940902e-10 1.812542625e-10 2.027614167e-10 1.919772508e-10 1.256838e-10 4.472144584e-10 5.935065157e-10 6.38502359e-10 6.243872155e-10 7.342718699e-10 9.541675295e-10 1.016151114e-09 9.040648898e-10 8.599917234e-10 6.204077284e-10 3.246161689e-10 1.914316452e-10 1.361311025e-10 7.981623053e-11 8.749463663e-11 9.533697594e-11 1.100302527e-10 1.523647124e-10 1.619739442e-10 1.359920431e-10 1.145243397e-10 1.210019659e-10 1.970363472e-10 1.258474674e-10 9.948374378e-13 1.305096854e-10 1.288296496e-10 2.042278443e-10 1.177336776e-10 1.753636551e-15 1.136464925e-10 2.382034454e-10 1.638432067e-10 1.22835348e-10 2.092811778e-10 1.140356199e-10 1.574896819e-10 1.611622858e-10 1.435058337e-10 1.121581675e-28 1.751105083e-10 1.74817733e-10 1.663592159e-10 1.37215219e-10 1.300778848e-10 1.05075932e-10 2.986782991e-14 1.683756268e-10 1.777579827e-10 3.640022534e-10 8.564993168e-10 8.039985841e-10 9.066894493e-10 9.152989345e-10 1.053963047e-09 5.671384396e-10 4.793285646e-10 5.239334728e-10 5.454516876e-10 3.370562769e-10 1.624469409e-10 8.183556909e-11 2.732810089e-10 2.586885645e-10 4.79277301e-10 5.440321965e-10 4.579189238e-10 5.352651314e-10 6.413954575e-10 5.835835663e-10 5.717929908e-10 8.72184269e-10 7.19512885e-10 6.20590002e-10 6.922660229e-10 5.232837508e-10 7.235797133e-10 7.545607724e-10 8.144354393e-10 5.896000447e-10 5.699394147e-10 1.943928931e-10 3.002524846e-10 2.31841021e-10 1.948409748e-10 2.00551805e-10 2.728520019e-10 3.025352647e-10 3.283314239e-10 3.213801656e-10 5.87855856e-10 4.343286709e-10 4.583639774e-10 5.447102074e-10 4.741754659e-10 4.629829911e-10 3.462030606e-10 4.655694922e-10 5.386733831e-10 4.373158726e-10 3.283562402e-10 3.45821055e-10 3.161913091e-10 4.367838578e-10 2.261053708e-10 2.53210463e-10 4.092083557e-10 4.027461299e-10 3.636119736e-10 3.243212118e-10 2.538653035e-10 3.200309027e-10 2.847487063e-10 2.399656372e-10 3.08158505e-10 3.360045356e-10 2.558736755e-10 2.696938519e-10 1.666731686e-10 4.020478587e-10 8.4084433e-11 3.067317616e-10 3.657782575e-10 2.111477924e-10 2.958339514e-10 2.301687847e-10 3.766686833e-10 3.193227173e-10 2.894813163e-10 4.686523001e-10 2.044534301e-10 2.550407492e-10 5.953612258e-10 2.402858082e-10 2.621054989e-10 3.269467478e-10 4.877784641e-10 1.800740304e-10 2.416083276e-10 2.644276506e-10 2.969569503e-10 1.794911225e-10 1.703586639e-10 1.316043533e-10 1.599721946e-10 2.426282081e-10 2.281388183e-10 1.175608553e-10 2.646084887e-10 1.650155678e-10 1.462442718e-10 1.895786029e-10 1.7292564e-10 1.15591734e-10 7.82359578e-11 3.118347889e-10 2.850335682e-10 1.034599082e-10 3.945450719e-10 1.325110579e-10 6.135240935e-11 1.778868198e-10 3.912658999e-10 3.42641616e-10 3.56404531e-10 2.481985362e-10 1.748046457e-10 1.532242766e-10 1.561066024e-10 1.830369734e-10 2.629586775e-10 1.657946429e-10 2.500974419e-10 1.271148844e-10 1.935793455e-10 1.197665438e-10 3.2763168e-10 2.496569598e-10 1.374604137e-10 2.778088363e-10 +1.187032673e-10 1.133844613e-10 3.053306776e-10 1.384826585e-10 1.777546819e-10 8.937581402e-11 1.547046589e-10 9.776111811e-11 1.803615215e-10 2.311024457e-10 1.609697038e-10 3.52897718e-10 2.556207737e-10 2.043861579e-10 1.220770308e-10 8.157279059e-11 2.08496138e-10 3.750298447e-10 4.658668328e-10 2.713139596e-10 2.342041251e-10 3.29011736e-10 3.169491671e-10 2.526513724e-10 8.927292783e-11 2.14915296e-10 1.071796984e-10 2.753220273e-10 1.591894242e-10 1.433005999e-10 1.088479732e-10 1.084723929e-10 1.762408808e-10 1.569646668e-10 1.124017845e-10 2.133945086e-10 1.810686055e-10 3.262001483e-10 1.263099144e-10 2.00312384e-10 2.586156583e-10 1.625415452e-10 2.290942985e-10 3.529680826e-10 4.544606756e-10 3.193432626e-10 2.343613926e-10 2.643267984e-10 2.746327757e-10 2.790237074e-10 3.707312091e-10 2.482786185e-10 3.874837214e-10 3.302796694e-10 3.401043479e-10 3.521245713e-10 4.02584763e-10 2.717244778e-10 3.716809917e-10 3.4194595e-10 3.708961455e-10 3.923862242e-10 2.298503096e-10 1.697995646e-10 3.492664352e-10 3.795514799e-10 3.543011036e-10 3.591473587e-10 2.574276523e-10 3.811670378e-10 3.77918314e-10 3.908397021e-10 2.729700723e-10 3.751383363e-10 4.413931742e-10 3.682882339e-10 3.137183693e-10 2.993284039e-10 3.585628517e-10 3.526141906e-10 5.481786058e-10 5.435738705e-10 5.738849175e-10 4.496055632e-10 4.142667019e-10 7.119576462e-10 5.421323953e-10 4.397324652e-10 4.414907114e-10 4.063004624e-10 3.253563378e-10 5.239666885e-10 2.667708655e-10 1.762548794e-10 3.541173484e-10 2.35908665e-10 3.285184351e-10 3.242849158e-10 2.595114413e-10 5.492042068e-10 5.373071606e-10 6.969345598e-10 7.246728478e-10 8.317025515e-10 9.108884377e-10 5.827585152e-10 6.685115886e-10 6.629586624e-10 8.428628337e-10 5.830404045e-10 6.060070994e-10 6.184115865e-10 3.92036888e-10 5.499052003e-10 5.90104424e-10 5.059019073e-10 2.242557592e-10 1.3009265e-10 1.666324728e-10 2.501813095e-10 4.213236027e-10 5.459268768e-10 6.007308924e-10 5.708524617e-10 5.478114713e-10 1.002830394e-09 1.107608407e-09 1.034204303e-09 9.561833624e-10 7.707443589e-10 4.270653265e-10 2.293803796e-10 2.168173387e-10 1.39734697e-10 1.864819551e-10 1.509586661e-10 1.341855704e-10 1.705389402e-10 1.621498072e-10 1.419915867e-10 1.202156782e-10 1.225735584e-10 1.519367331e-10 1.60852346e-10 6.818760158e-19 1.860340847e-10 1.663030636e-10 1.298045893e-10 1.481521273e-10 1.63402188e-10 2.10604739e-10 1.452078468e-10 1.028910403e-10 1.623111029e-10 1.138374484e-10 1.640938252e-10 2.124856066e-10 1.188358564e-10 1.964036307e-10 9.574032062e-11 3.892639381e-11 1.462341239e-10 1.032014022e-10 1.228562501e-10 1.79888165e-10 1.163433415e-10 1.881485595e-10 1.22939198e-10 1.886282597e-10 4.246555357e-10 6.793467263e-10 9.928656501e-10 8.704881659e-10 1.103646276e-09 8.828948575e-10 7.212484129e-10 5.836960923e-10 4.812799466e-10 5.066134114e-10 3.84644e-10 1.40078329e-10 1.421238817e-10 1.34899155e-10 1.947786683e-10 5.246636506e-10 4.305712319e-10 5.072229225e-10 5.12353398e-10 5.319150195e-10 5.7453686e-10 6.459224399e-10 8.094586479e-10 6.651443514e-10 5.837721072e-10 6.830258629e-10 7.160420765e-10 1.013071607e-09 7.04868973e-10 5.955642002e-10 4.467888375e-10 8.4297347e-10 2.041063557e-10 3.190846069e-10 1.91672249e-10 1.911540765e-10 2.891365688e-10 2.603652487e-10 4.375132623e-10 3.413278224e-10 4.327025386e-10 3.79187638e-10 3.728344915e-10 4.050057332e-10 3.195216139e-10 4.982129191e-10 2.597175793e-10 3.65077723e-10 5.825425681e-10 5.312022419e-10 4.928303922e-10 3.842707458e-10 3.906230438e-10 3.634246244e-10 4.504319575e-10 3.64637082e-10 2.307259459e-10 2.43043352e-10 1.762742251e-10 3.672902876e-10 4.332870302e-10 3.49086855e-10 3.787237362e-10 3.300975934e-10 3.438027377e-10 3.760955245e-10 2.987731486e-10 2.870325775e-10 2.565788886e-10 1.709248649e-10 4.174865123e-10 2.091234491e-10 4.809586869e-10 2.977754905e-10 1.653109687e-10 4.103594038e-10 2.893102461e-10 2.736994765e-10 2.754502204e-10 2.322826752e-10 3.047399121e-10 3.661323777e-10 2.308519425e-10 4.172371528e-10 2.813566249e-10 4.504603874e-10 2.646566656e-10 2.095671526e-10 3.48353156e-10 2.078497554e-10 1.967445129e-10 1.346752188e-10 3.089432792e-10 1.176820939e-10 1.614427734e-10 2.383803255e-10 1.646632414e-10 1.678998768e-10 1.267579099e-10 3.881071537e-10 1.682093143e-10 2.005502992e-10 1.406646567e-10 1.015203254e-10 3.59922834e-10 1.261998983e-10 1.523924844e-10 1.878912076e-10 1.623062552e-10 3.124765772e-10 1.211351132e-10 1.071189533e-10 2.691584275e-10 1.00861384e-10 1.908792527e-10 1.981225743e-10 9.91192598e-11 3.675628774e-10 2.61108367e-10 1.65473317e-10 8.736875788e-11 1.231030849e-10 1.238491265e-10 3.044300214e-10 8.911058428e-11 2.455414407e-10 2.966697942e-10 1.12795812e-10 5.404955867e-11 2.814566812e-10 1.486445211e-10 +1.638833335e-10 3.491900663e-10 1.393749057e-10 3.218633742e-10 2.179292003e-10 8.088254858e-11 4.898995772e-10 2.733901301e-10 1.782139348e-10 1.292993534e-10 2.451021443e-10 3.339267896e-10 8.666209263e-11 1.132268648e-10 9.610661799e-11 4.246056078e-10 1.241280646e-10 1.408740307e-10 1.107224134e-10 4.068559285e-10 4.473873851e-10 3.030607223e-10 1.769247307e-10 3.962427995e-10 1.27744514e-10 1.210469759e-10 1.468282559e-10 3.204046471e-10 2.102407157e-10 1.658671412e-10 1.520821572e-10 2.127508292e-10 1.730361504e-10 2.065096703e-10 1.150523845e-10 1.548611612e-10 2.563029504e-10 9.34001498e-11 6.507987724e-11 3.29682913e-10 2.698901862e-10 1.974479108e-10 5.506624906e-10 3.39108027e-10 4.8147736e-10 2.89137852e-10 3.830559614e-10 3.089256698e-10 2.936865297e-10 2.213877959e-10 2.908497277e-10 3.624552301e-10 3.148573603e-10 1.469519961e-10 3.822971507e-10 3.356522846e-10 2.217865608e-10 3.659970784e-10 2.913079862e-10 5.491177996e-10 8.341862996e-11 1.397160818e-10 2.279624076e-10 3.738755449e-10 2.988591338e-10 4.472884008e-10 3.857784519e-10 2.133330848e-10 3.225660321e-10 3.18940231e-10 3.63564261e-10 2.919223764e-10 2.257707644e-10 2.748681214e-10 3.95083394e-10 1.568560785e-10 3.086013017e-10 2.540973173e-10 4.77394599e-10 3.191879511e-10 5.924352748e-10 5.182432535e-10 5.566161691e-10 3.743478639e-10 5.683367759e-10 4.460221197e-10 3.707613207e-10 4.035565338e-10 3.148693066e-10 2.44638597e-10 2.59834585e-10 3.864943794e-10 4.184325139e-10 3.174816319e-10 3.708824536e-10 2.154716531e-10 2.467836428e-10 3.458668991e-10 2.420322083e-10 5.958618642e-10 5.495228178e-10 8.000907038e-10 6.875107991e-10 6.66322359e-10 7.105043832e-10 5.52892514e-10 5.973092487e-10 6.117000061e-10 7.537293904e-10 6.158524306e-10 6.090597679e-10 5.066567407e-10 5.461432676e-10 4.699453643e-10 5.578548456e-10 2.986424188e-10 3.110776961e-10 9.361405593e-11 1.200409995e-13 1.440910211e-10 2.148233236e-10 5.115883617e-10 5.022947175e-10 5.805122654e-10 5.679627777e-10 9.804980793e-10 1.080203578e-09 1.049274212e-09 9.548075986e-10 8.599377675e-10 5.715804657e-10 2.027812638e-13 1.576282674e-10 1.151593431e-10 1.172009406e-10 1.212238832e-10 1.155547599e-10 1.348584085e-10 1.755456153e-10 1.24360506e-10 8.721726372e-11 9.712941917e-11 1.476267334e-10 1.320683547e-10 6.580480452e-19 1.560869202e-10 1.075610684e-10 1.467650831e-10 1.660147713e-10 1.557141626e-10 2.137326824e-10 9.671474864e-11 1.093159138e-10 1.263108175e-10 1.306707205e-10 1.61948064e-10 1.187970949e-10 5.22872517e-11 7.32703968e-11 9.567393448e-11 1.650145256e-10 9.849243931e-11 1.569523013e-10 1.928740498e-10 1.098079208e-10 7.518659771e-11 1.26465085e-10 1.720726278e-10 1.351930737e-10 5.559956705e-10 6.857794852e-10 1.047174146e-09 9.744468186e-10 9.835226836e-10 9.471051695e-10 6.471832166e-10 5.797256069e-10 5.99352e-10 6.048740227e-10 3.2804533e-10 9.683994123e-11 1.355262737e-10 2.175388394e-10 1.864017813e-10 2.634872998e-10 4.8303915e-10 5.883935981e-10 5.602878424e-10 6.233636705e-10 5.571300814e-10 5.377650768e-10 6.811055811e-10 8.727631452e-10 6.209510893e-10 6.558746798e-10 5.28442077e-10 5.306524379e-10 4.741104025e-10 8.797648045e-10 4.24446968e-10 5.911786411e-10 2.714883436e-10 2.824406915e-10 1.591677951e-10 2.98005421e-10 3.894681158e-10 4.479258743e-10 3.970830927e-10 4.568381284e-10 3.737496606e-10 3.565363277e-10 3.164408978e-10 4.966746324e-10 3.783129269e-10 4.425057294e-10 5.251416512e-10 5.056941504e-10 6.539433393e-10 4.588142804e-10 4.796168066e-10 3.709382612e-10 4.755066609e-10 4.474922052e-10 1.579943199e-10 4.332555995e-10 2.613575365e-10 3.207273353e-10 2.232584692e-10 3.757643491e-10 5.537808465e-10 3.034194831e-10 4.256196015e-10 3.453053799e-10 2.919284203e-10 3.012799537e-10 5.178855397e-10 3.100370135e-10 3.70006675e-10 2.132671715e-10 2.713287665e-10 2.318878676e-10 3.364931999e-10 2.774352292e-10 2.76841941e-10 3.767528549e-10 2.563316543e-10 3.391133832e-10 4.241107163e-10 2.293873406e-10 2.043748249e-10 4.753750085e-10 2.836120123e-10 3.67327799e-10 3.032759525e-10 3.799726323e-10 3.276877833e-10 3.386705856e-10 2.231720278e-10 1.14234946e-10 2.164778515e-10 1.711176872e-10 1.138926135e-10 1.944488485e-10 2.826565142e-10 2.056557983e-10 1.557704119e-10 2.220698389e-10 2.551861297e-10 1.760891806e-10 2.546928242e-10 2.82244224e-10 1.989338869e-10 2.057720654e-10 1.657429939e-10 1.420624613e-10 1.322890849e-10 1.024628591e-10 1.567153709e-10 2.612206047e-10 2.121340164e-10 1.823675603e-10 4.324658799e-11 2.18460068e-10 3.663905077e-10 4.221494058e-10 4.158661646e-10 3.399720699e-10 1.538222602e-10 1.374862224e-10 3.074390487e-10 3.273025299e-10 2.626636727e-10 1.665825943e-10 1.527488315e-10 1.592780825e-10 1.574679246e-10 1.503518259e-10 2.378358315e-10 2.256242005e-10 2.492082883e-10 +2.532437259e-10 1.24514664e-10 3.238813539e-10 2.585927571e-10 2.265391911e-10 3.858573232e-10 1.484440015e-10 7.896911741e-11 2.130973632e-10 1.364672096e-10 4.1118921e-10 1.121315991e-10 2.045942717e-10 3.281839647e-10 2.73314227e-10 4.365160159e-10 1.371523134e-10 2.821409806e-10 1.193380067e-10 3.438673973e-10 3.452347116e-10 1.082792146e-10 3.128905418e-10 2.224690537e-10 2.307053133e-10 1.437834977e-10 4.178644703e-10 3.04247594e-10 1.11351e-10 2.602828477e-10 3.078939683e-10 1.16936412e-10 1.41299035e-10 2.618306514e-10 1.872045727e-10 1.952082246e-10 2.497311487e-10 1.168588563e-10 3.127098007e-10 3.691246817e-10 2.429222619e-10 3.524660369e-10 3.965323553e-10 5.231436912e-10 2.830936774e-10 2.454188214e-10 4.039507124e-10 2.628444106e-10 2.378533021e-10 3.106464928e-10 3.624967062e-10 2.615271595e-10 2.755216617e-10 4.479319518e-10 2.373666826e-10 2.336925781e-10 4.794351654e-10 2.063991252e-10 3.354110166e-10 2.615766223e-10 3.270964182e-10 1.467905675e-10 3.554345222e-10 2.209041692e-10 2.541817311e-10 3.173456226e-10 2.672905118e-10 5.019988648e-10 2.980609929e-10 4.040853823e-10 2.841751749e-10 3.153677497e-10 3.169365578e-10 4.285825443e-10 2.964717605e-10 2.693596784e-10 3.231048661e-10 3.31299535e-10 3.421608052e-10 6.91994832e-10 4.055497594e-10 7.294472269e-10 5.67918985e-10 4.509571915e-10 5.76270497e-10 3.705547509e-10 5.458918116e-10 4.759405209e-10 4.241618094e-10 4.098258686e-10 4.324129861e-10 2.928162896e-10 3.005603499e-10 3.283436391e-10 2.862559463e-10 2.704019327e-10 1.751786867e-10 2.482195429e-10 3.46789466e-10 3.215353244e-10 6.684100077e-10 5.285501255e-10 6.799154155e-10 7.195832985e-10 7.052657855e-10 6.780883639e-10 6.761339381e-10 6.801408375e-10 7.614291946e-10 5.98609691e-10 4.715691247e-10 4.858929169e-10 5.903082892e-10 5.013362637e-10 3.462932001e-10 4.929814902e-10 2.323927839e-10 1.347355707e-10 1.184772669e-10 4.422460642e-11 3.162197597e-10 3.871995177e-10 5.277209239e-10 5.567080716e-10 6.067579122e-10 9.754422735e-10 1.113540939e-09 9.210189612e-10 9.539190656e-10 9.640253239e-10 4.785706051e-10 1.532715145e-10 9.41738223e-11 1.615795103e-10 1.737725242e-10 0 1.599301515e-10 1.015957559e-11 1.489136994e-10 1.507113461e-10 6.566139439e-27 0 1.707725338e-10 1.438786516e-10 1.463651978e-10 1.82135231e-10 1.449206288e-10 4.169035425e-11 3.594736899e-11 9.699433299e-11 0 1.17755614e-10 1.468657774e-10 7.782877311e-11 3.554597273e-16 1.158804606e-10 1.554988789e-10 1.218061057e-10 7.513847665e-12 1.845439681e-10 1.536764564e-10 9.983298547e-11 7.845582789e-11 1.656966525e-10 1.529174451e-10 8.243737716e-11 1.024695488e-10 1.248536372e-10 1.675073464e-10 4.98953996e-10 1.003167784e-09 9.431261551e-10 1.037081163e-09 1.104641663e-09 8.627928897e-10 5.696802544e-10 6.399637238e-10 6.539871717e-10 5.783368759e-10 1.831486748e-10 1.737873625e-10 1.570162149e-10 1.975716264e-10 2.571606162e-10 5.042217119e-10 4.153385182e-10 4.326444451e-10 4.324893132e-10 5.306317104e-10 5.049236905e-10 5.992223513e-10 7.850158542e-10 6.91384063e-10 6.61832415e-10 6.280001112e-10 7.219391557e-10 6.936893025e-10 7.147159845e-10 8.14072279e-10 7.933340045e-10 5.922629685e-10 2.396618782e-10 2.005069714e-10 1.980217182e-10 1.205010999e-10 3.369104789e-10 3.656416102e-10 4.376800092e-10 3.722200911e-10 4.2900581e-10 3.489660474e-10 5.213372152e-10 4.250048967e-10 5.084498603e-10 4.48293877e-10 4.248763988e-10 5.179477877e-10 6.681831378e-10 5.97488358e-10 3.870216393e-10 3.762040673e-10 5.694470155e-10 4.204390109e-10 2.266280854e-10 4.063965557e-10 1.990529089e-10 3.143807139e-10 2.139307982e-10 2.776545294e-10 2.610819979e-10 2.66377359e-10 3.164857971e-10 3.060408761e-10 2.916734267e-10 2.579904876e-10 3.365872786e-10 3.614901934e-10 3.186198604e-10 2.459462274e-10 3.355663826e-10 3.794953026e-10 2.236089281e-10 1.739663026e-10 2.872908564e-10 2.094681617e-10 3.821491727e-10 4.582534911e-10 4.937260612e-10 3.283101085e-10 2.575327862e-10 2.671267705e-10 2.774803414e-10 2.32810053e-10 4.535713239e-10 2.984745974e-10 3.45770392e-10 2.819525765e-10 3.263946752e-10 2.945369721e-10 2.069417844e-10 3.255613705e-10 2.461159787e-10 1.365771294e-10 4.934523765e-10 2.157569337e-10 1.707408842e-10 1.414728551e-10 3.601609065e-10 1.538332232e-10 5.668777749e-10 1.51364017e-10 2.072998496e-10 2.608604239e-10 8.876345742e-11 1.1726072e-10 3.770669077e-10 3.740921299e-10 1.13332778e-10 1.032298021e-10 1.664322821e-10 3.34372126e-10 1.38165993e-10 1.330549409e-10 3.210243457e-10 1.677858546e-10 1.43459045e-10 1.300011218e-10 1.966701011e-10 1.530571347e-10 1.500015365e-10 1.595618336e-10 1.541298198e-10 8.51910606e-11 1.89856408e-10 1.05019059e-10 6.762562952e-11 1.217035077e-10 9.132101979e-11 2.318534747e-10 2.485312062e-10 +3.352565497e-10 4.501964395e-10 1.0814654e-10 1.981645872e-10 2.212867431e-10 2.534689891e-10 2.116998774e-10 1.76774635e-10 1.586645173e-10 3.418547886e-10 2.58823249e-10 2.866677532e-10 1.291682727e-10 7.471675087e-11 1.33111995e-10 1.169769399e-10 2.480206367e-10 2.133031251e-10 2.001538339e-10 9.691321745e-11 1.673979322e-10 3.449378012e-10 2.320211663e-10 1.120328642e-10 1.395632023e-10 1.603494675e-10 1.402744825e-10 1.373079521e-10 1.75503348e-10 8.493419883e-11 2.63769219e-10 1.823051048e-10 1.633720168e-10 2.324140265e-10 1.525519341e-10 2.027918715e-10 1.814021425e-10 1.47419234e-10 9.425791525e-11 1.951185382e-10 1.588338229e-10 1.752980909e-10 1.494924877e-10 2.344813367e-10 1.927008739e-10 2.741934498e-10 2.6891597e-10 3.399373663e-10 2.820277678e-10 5.248714041e-10 2.043009592e-10 2.926732703e-10 2.449473203e-10 2.836652079e-10 2.348887817e-10 2.424623587e-10 3.128451326e-10 4.016233315e-10 3.304585092e-10 3.562421557e-10 2.403749575e-10 3.200312696e-10 2.961535395e-10 4.825410704e-10 3.207318472e-10 4.419374e-10 3.844006955e-10 2.089478276e-10 3.208213636e-10 2.431758944e-10 3.948968712e-10 3.038982227e-10 3.119622926e-10 3.739647567e-10 3.710494906e-10 2.858242128e-10 2.727526977e-10 2.793477003e-10 2.850435847e-10 3.875992249e-10 5.063395276e-10 4.60804355e-10 5.527087474e-10 6.36973498e-10 5.801676898e-10 3.70786772e-10 4.912080799e-10 6.545630211e-10 3.833818132e-10 3.197713822e-10 3.671612934e-10 4.769418539e-10 4.185901286e-10 3.670415949e-10 2.569327615e-10 1.258480944e-10 1.145431481e-10 3.261467386e-10 2.66432269e-10 5.143033854e-10 6.337020831e-10 5.889739298e-10 6.899283484e-10 5.861801165e-10 7.985402595e-10 6.114877845e-10 6.678312353e-10 6.417866532e-10 7.814832282e-10 7.245666813e-10 6.630334589e-10 5.41767997e-10 4.579711882e-10 5.434139705e-10 3.503650069e-10 2.346759315e-10 2.132007371e-10 1.362775994e-10 9.102769943e-11 2.995592105e-10 1.142765141e-10 4.366541074e-10 6.053371998e-10 5.946732787e-10 6.724964748e-10 9.705745455e-10 1.007629526e-09 1.135153944e-09 8.070771504e-10 9.150656432e-10 4.701918831e-10 1.914576249e-10 7.664478537e-11 1.732493628e-10 1.24209972e-10 1.42166984e-10 1.233745445e-10 1.78161783e-10 1.608197305e-10 4.362117722e-11 1.669446644e-10 8.642841488e-12 2.192227089e-10 9.565753247e-11 1.453315014e-10 1.258168891e-10 7.359555051e-11 9.141012174e-11 1.516640141e-10 1.805609923e-10 1.211960705e-10 1.615601087e-10 1.086178412e-10 1.472946013e-10 1.236110973e-10 1.823350137e-10 1.428545975e-10 1.723604614e-10 1.543415091e-10 1.444697664e-10 5.159919252e-13 1.619160814e-10 1.034381438e-10 1.252292029e-10 2.014557e-10 1.697474322e-10 1.612935893e-10 1.692861374e-10 1.266373276e-10 6.931467895e-10 9.605377121e-10 9.100394196e-10 8.314595713e-10 9.394950459e-10 1.045467591e-09 6.392131427e-10 5.233617439e-10 5.419469882e-10 5.282844522e-10 2.375956755e-10 2.04746309e-10 2.231020687e-10 4.523137195e-11 3.49037797e-10 4.316741317e-10 4.953429394e-10 4.266242456e-10 5.084236398e-10 3.514727817e-10 5.746874583e-10 6.907919354e-10 8.054461362e-10 5.857610659e-10 7.964165111e-10 5.617120579e-10 5.861506392e-10 5.330532386e-10 6.051191503e-10 6.864738338e-10 6.181233473e-10 5.530063169e-10 1.843647109e-10 3.812583928e-10 1.884543286e-10 1.579729719e-10 2.386201591e-10 4.272893911e-10 1.955143784e-10 3.050379655e-10 4.355315012e-10 4.32156651e-10 4.641461306e-10 3.455378843e-10 5.115785972e-10 4.813597867e-10 3.522620208e-10 5.668627633e-10 4.567608867e-10 4.325659515e-10 4.484992614e-10 5.630733038e-10 6.030393169e-10 4.021029742e-10 3.035148134e-10 4.196062146e-10 2.402363039e-10 3.442504584e-10 2.099631483e-10 2.073139013e-10 3.588599553e-10 3.55546233e-10 2.852992495e-10 2.526991944e-10 1.120074989e-10 4.164742618e-10 2.114297542e-10 2.613566814e-10 2.84264983e-10 1.933940936e-10 2.508285207e-10 3.317894385e-10 1.791778081e-10 3.642443837e-10 2.40190395e-10 4.979974281e-10 3.159871094e-10 3.581311914e-10 2.108771929e-10 3.586176516e-10 1.908867378e-10 2.75006825e-10 2.600224923e-10 3.675640147e-10 3.336367348e-10 2.191836362e-10 3.456512663e-10 2.308900277e-10 4.076471652e-10 1.61927605e-10 2.257886606e-10 3.644512941e-10 3.110207625e-10 2.738144309e-10 1.065227048e-10 2.735326944e-10 1.051726282e-10 1.198481602e-10 1.387400426e-10 1.207901418e-10 3.898364505e-10 1.041132141e-10 1.576962634e-10 2.895510834e-10 1.705565495e-10 9.636704698e-11 4.802213362e-11 4.294153491e-10 2.010678236e-10 1.004400847e-10 4.506190165e-10 1.579608388e-10 1.514589233e-10 1.444758021e-10 9.008227864e-11 3.481197393e-10 2.524044548e-10 1.606781034e-10 1.810480855e-10 2.310575157e-10 1.807324961e-10 1.555041789e-10 4.312504993e-10 3.575977442e-10 3.274734654e-10 2.121208966e-10 1.518241089e-10 1.977641991e-10 1.910379992e-10 2.905300354e-10 1.641180364e-10 +4.311578392e-11 3.619921911e-10 1.180518892e-10 1.16392902e-10 2.015398934e-10 1.671536389e-10 1.203872451e-10 1.812053614e-10 2.50956725e-10 3.870051634e-10 2.110898239e-10 4.795300184e-10 5.391360333e-11 1.455220187e-10 1.315291621e-10 1.391712172e-10 3.155140665e-10 2.216845942e-10 1.493364705e-10 4.036630164e-10 3.396816829e-10 2.471156874e-10 3.160640819e-10 4.182456435e-10 1.032233296e-10 1.195409657e-10 2.663601667e-10 3.439826864e-10 4.310710402e-10 1.444854306e-10 1.744050676e-10 2.773490411e-10 1.097897717e-10 3.269911227e-10 2.20283746e-10 2.657132578e-10 9.781424434e-11 6.741811274e-11 2.971023773e-10 2.165300812e-10 1.419147926e-10 2.269623244e-10 2.384721705e-10 3.863924794e-10 2.375704291e-10 4.471711021e-10 4.734167586e-10 2.588954668e-10 2.761659419e-10 2.465457776e-10 3.838563522e-10 3.720306348e-10 3.541754814e-10 2.803280155e-10 3.345953322e-10 2.59279922e-10 3.04188268e-10 2.192238878e-10 2.453010818e-10 3.284931416e-10 1.597681449e-10 3.257301824e-10 2.828340692e-10 2.890684714e-10 4.037596501e-10 2.212906318e-10 2.215970134e-10 2.783880241e-10 2.216625756e-10 2.494909515e-10 3.898010575e-10 2.407456271e-10 2.853716112e-10 2.844197385e-10 3.349111133e-10 3.392042521e-10 3.589947594e-10 3.190084513e-10 3.794835126e-10 4.820959136e-10 5.402530419e-10 4.940836362e-10 5.570268727e-10 3.119380156e-10 3.538229775e-10 3.63393767e-10 4.448020104e-10 5.197032944e-10 4.798489175e-10 5.523593861e-10 3.919596484e-10 2.427895525e-10 5.039089787e-10 3.017418064e-10 2.642147551e-10 2.273743587e-10 2.188486139e-10 3.05115095e-10 2.238336958e-10 5.540990833e-10 8.193899397e-10 7.72204751e-10 4.63618523e-10 1.020976026e-09 8.006708588e-10 3.817379762e-10 5.11827042e-10 5.828756465e-10 8.196381881e-10 7.240799192e-10 6.150980225e-10 6.128000952e-10 4.381533472e-10 4.561010421e-10 5.532919115e-10 3.658591802e-10 2.831405864e-10 1.487331313e-10 5.839949966e-11 1.904185791e-10 2.107732796e-10 5.029679001e-10 6.493201429e-10 5.130501641e-10 4.638561227e-10 8.433811956e-10 1.143017705e-09 1.065035984e-09 9.991534171e-10 8.221462422e-10 5.785021403e-10 2.918562681e-10 1.750137078e-10 1.879102846e-10 1.413810637e-10 2.18891119e-10 1.574620578e-10 1.29411471e-10 1.664102938e-10 1.973234519e-10 1.59059761e-10 7.399737789e-11 1.502366481e-10 9.559685719e-11 1.669811022e-10 1.202844853e-10 1.405639993e-10 1.839618407e-10 1.581101421e-10 1.14203665e-10 1.211930394e-10 2.008738498e-10 1.232827591e-10 1.093875112e-10 1.035655489e-10 1.492976716e-10 1.098939488e-10 2.612003604e-10 1.583347901e-10 1.215672557e-10 1.659263132e-10 1.164100376e-10 1.387346072e-10 8.773282571e-23 1.184157855e-10 1.262886666e-10 1.117547669e-10 1.153662016e-10 2.802244607e-10 7.352843291e-10 9.392036571e-10 7.879857233e-10 1.030602594e-09 1.145198602e-09 9.856538076e-10 6.266362191e-10 5.466292919e-10 3.401482684e-10 6.139110719e-10 2.995436775e-10 2.548123171e-10 1.255318229e-10 7.872073018e-11 2.719825198e-10 5.443013462e-10 5.107081614e-10 5.288027468e-10 5.617069313e-10 5.11801411e-10 5.793928164e-10 7.378499637e-10 8.888287236e-10 5.161545593e-10 5.168095603e-10 6.998266673e-10 7.251705957e-10 6.665947386e-10 9.191837821e-10 6.584224425e-10 5.917300169e-10 6.374050453e-10 2.485845074e-10 2.546116578e-10 3.46821071e-10 2.873309596e-10 2.814755824e-10 3.244155185e-10 2.387549642e-10 3.669963004e-10 4.232769621e-10 2.906770141e-10 5.462641583e-10 5.351925247e-10 5.282199123e-10 3.189112287e-10 4.840358602e-10 3.824492917e-10 6.813624982e-10 4.447355492e-10 4.516241959e-10 2.498720688e-10 3.283069775e-10 2.631624744e-10 1.811303712e-10 5.057325646e-10 2.771915785e-10 3.784646654e-10 3.352387375e-10 4.845105982e-10 3.686630879e-10 3.655480055e-10 4.222398723e-10 1.893283694e-10 3.122489346e-10 4.337002387e-10 4.408667365e-10 5.292073607e-10 4.331137299e-10 3.126699434e-10 1.274092606e-10 2.403998832e-10 3.051376611e-10 4.192572657e-10 1.794672056e-10 1.81251157e-10 2.015693988e-10 4.383435492e-10 5.094793027e-10 2.674037457e-10 5.486526126e-10 2.639700815e-10 4.794728636e-10 2.886302337e-10 5.578028611e-10 4.656684006e-10 1.778474773e-10 2.515257306e-10 1.200190869e-10 2.50797975e-10 1.499473727e-10 3.545662044e-10 1.581819059e-10 1.951232961e-10 1.857289971e-10 2.971560471e-10 2.994084117e-10 2.599903565e-10 2.1081615e-10 1.199379607e-10 1.739054371e-10 3.097555391e-10 2.357360865e-10 1.546283374e-10 3.689909702e-10 3.694387619e-10 1.717948661e-10 6.658299948e-11 1.588154497e-10 1.148573315e-10 2.142348171e-10 2.462736375e-10 2.311310891e-10 2.261893385e-10 4.049909174e-10 2.356952821e-10 2.447408282e-10 1.504160714e-10 2.891840385e-10 1.097743762e-10 3.011866814e-10 1.353467474e-10 2.118044949e-10 1.978644698e-10 2.150998277e-10 3.242653213e-10 1.833661685e-10 1.103696265e-10 1.795877593e-10 1.376340289e-10 2.299173555e-10 +2.519569309e-10 1.713682782e-10 2.31711692e-10 2.386808129e-10 8.031774945e-11 1.327993419e-10 6.413627335e-11 2.942649225e-10 2.125000466e-10 3.666147504e-10 1.467793117e-10 3.245203111e-10 1.627426731e-10 4.756327103e-10 1.348648034e-10 3.456779254e-10 1.048241219e-10 1.785070986e-10 3.269555802e-10 7.542007874e-11 2.336884676e-10 1.883919622e-10 2.549409873e-10 4.072585714e-10 1.086235393e-10 2.405626529e-10 1.513102152e-10 1.632329666e-10 1.489058989e-10 2.276124673e-10 1.283146705e-10 2.256561987e-10 3.043599695e-10 3.906911178e-10 1.980407725e-10 2.444418521e-10 1.730583232e-10 2.897366463e-10 1.907823743e-10 1.780999406e-10 2.841898645e-10 1.701997214e-10 3.847342692e-10 2.506845498e-10 2.91525055e-10 2.709116248e-10 4.251363623e-10 1.886522964e-10 2.879886667e-10 2.435485307e-10 2.490561333e-10 2.125522322e-10 3.613328402e-10 3.55775189e-10 4.08863851e-10 3.433437381e-10 2.813823759e-10 2.449614092e-10 2.244605631e-10 3.459026346e-10 3.894294374e-10 1.946510591e-10 4.173950178e-10 2.346096731e-10 4.14401084e-10 3.682496562e-10 2.561642746e-10 3.302557896e-10 2.404027587e-10 2.825168308e-10 4.135907977e-10 2.510323288e-10 3.323215944e-10 5.153476224e-10 4.272347534e-10 3.321552399e-10 2.667047796e-10 3.517428907e-10 2.154169749e-10 4.688864877e-10 5.198290064e-10 4.912530936e-10 5.14046979e-10 6.265109211e-10 4.373778389e-10 4.302183537e-10 7.100770967e-10 3.917905762e-10 2.64319606e-10 3.81374509e-10 3.247927785e-10 2.903471083e-10 3.748387499e-10 4.408699333e-10 4.458418092e-10 2.830661758e-10 1.70989713e-10 2.810308547e-10 4.192139963e-10 4.001937262e-10 7.312543738e-10 4.669441449e-10 9.370533025e-10 5.907711148e-10 6.718985308e-10 5.559187041e-10 8.479520539e-10 5.510770651e-10 7.959576999e-10 5.233374115e-10 3.798270479e-10 5.369584994e-10 4.927264922e-10 5.437728015e-10 4.141967312e-10 4.371606065e-10 1.920878827e-10 1.006870707e-10 1.408033263e-10 1.254940023e-10 9.183643703e-11 3.488540635e-10 5.203233515e-10 5.231534319e-10 5.26349235e-10 8.881619256e-10 1.103516223e-09 1.004485674e-09 8.447971802e-10 9.319667581e-10 7.89987644e-10 3.367098407e-10 1.781785849e-10 0 8.664767491e-13 1.819598724e-10 4.019182203e-16 1.011074005e-10 1.23902561e-10 1.399583005e-10 1.199025055e-10 1.510561315e-10 1.71291624e-10 1.331926011e-10 2.981934971e-12 5.335955376e-13 1.703623975e-10 1.685882066e-10 1.785915275e-10 1.405294149e-10 1.629450477e-10 1.344684775e-10 1.793506921e-10 1.306742893e-10 1.426279706e-10 1.746228831e-10 1.045491389e-10 1.043425589e-10 1.84227464e-10 0 8.905107583e-11 7.424933409e-11 1.212892113e-10 1.402383725e-10 1.255943991e-10 2.090366794e-10 1.734502069e-10 9.722355049e-11 3.54266201e-10 7.597249985e-10 8.572632588e-10 9.633252669e-10 8.85366296e-10 1.068840446e-09 8.129893181e-10 6.015900477e-10 5.59427168e-10 5.728858406e-10 5.178811405e-10 1.685181744e-10 9.111797941e-34 2.690190486e-10 8.216017504e-11 1.636376152e-10 4.529903476e-10 4.943653864e-10 4.418034217e-10 5.283494227e-10 4.858638547e-10 5.78258998e-10 6.154327406e-10 7.032837907e-10 6.807366657e-10 6.848004585e-10 6.147877499e-10 7.260279403e-10 5.583447452e-10 7.478877143e-10 6.076062651e-10 9.198740992e-10 4.012039555e-10 2.295584367e-10 2.396860173e-10 8.907521077e-11 2.140180902e-10 2.529686423e-10 2.642289819e-10 3.124634586e-10 4.390175987e-10 4.181990906e-10 3.629504312e-10 3.66121527e-10 3.340044074e-10 4.242399377e-10 3.339586974e-10 4.257482519e-10 4.747823263e-10 4.867385357e-10 5.216384349e-10 3.533177708e-10 5.325916017e-10 5.296533729e-10 3.216544789e-10 3.597364846e-10 2.96072638e-10 1.776417667e-10 3.213381274e-10 2.599771885e-10 5.101802388e-10 2.741548184e-10 3.748423012e-10 4.724989396e-10 3.129995468e-10 3.575553431e-10 3.422856312e-10 3.158851996e-10 2.954323728e-10 1.471924787e-10 3.148812454e-10 2.235308018e-10 4.679326804e-10 1.560679578e-10 4.125794694e-10 1.83572631e-10 2.192017051e-10 2.775357224e-10 2.396110009e-10 2.812215839e-10 4.125461695e-10 2.520241904e-10 2.866749664e-10 2.266031777e-10 3.210781686e-10 5.020330207e-10 3.505237747e-10 3.125149414e-10 3.921081837e-10 2.614193643e-10 4.691998107e-10 1.914504215e-10 1.874655803e-10 2.037912773e-10 1.2157281e-10 2.945782622e-10 2.698185425e-10 2.632824401e-10 1.266284388e-10 2.778688924e-10 4.338094897e-10 1.50123768e-10 3.780596392e-10 9.165104923e-11 2.055071203e-10 1.097541165e-10 1.14277457e-10 8.851928083e-11 6.45335114e-11 2.677137652e-10 2.064653711e-10 3.357709365e-10 2.502914434e-10 2.360135088e-10 7.997458462e-11 1.629289863e-10 3.463505263e-10 1.88266606e-10 2.356571285e-10 8.76463187e-11 1.40390127e-10 1.566723569e-10 2.968257379e-10 7.783755679e-11 1.1496273e-10 1.651143401e-10 2.066993711e-10 2.204035761e-10 3.896642117e-10 1.240348642e-10 1.933496451e-10 4.345046856e-10 +4.289780508e-10 1.381234378e-10 3.533142719e-10 3.469384831e-10 2.200204483e-10 3.222617824e-10 2.617283983e-10 3.428731192e-10 5.480314649e-11 9.768819528e-11 1.375008756e-10 2.727080064e-10 2.751654932e-10 3.764398318e-10 4.3960213e-10 1.442015777e-10 1.385104779e-10 1.736418889e-10 5.981704396e-11 2.370705431e-10 1.450930011e-10 1.437003919e-10 2.261699209e-10 1.676800141e-10 3.378568802e-10 1.155478536e-10 2.028523601e-10 3.745705524e-10 3.170718628e-10 8.032325624e-11 1.52315511e-10 1.833700043e-10 2.31079831e-10 2.872227492e-10 1.758351372e-10 1.675241175e-10 1.705135748e-10 2.722451472e-10 1.451697362e-10 3.80818659e-10 2.401360487e-10 1.463241449e-10 2.723924038e-10 3.849384788e-10 3.765198162e-10 4.414729654e-10 2.461111056e-10 2.640396385e-10 2.940499067e-10 2.001549438e-10 2.796554315e-10 2.58586214e-10 4.342082058e-10 2.961750548e-10 2.882406102e-10 3.086222771e-10 2.033583025e-10 2.287325528e-10 1.601065305e-10 2.492807191e-10 1.817502877e-10 3.156649749e-10 3.967580661e-10 3.616553245e-10 3.759542008e-10 3.621864152e-10 3.931602448e-10 2.450662904e-10 4.550561023e-10 3.153617539e-10 4.39603824e-10 3.988560152e-10 2.526720458e-10 2.750184324e-10 2.832744394e-10 2.679543139e-10 3.222250315e-10 3.967401679e-10 3.485865491e-10 3.431039502e-10 4.721480336e-10 4.340323791e-10 4.944589656e-10 4.074414865e-10 4.722907347e-10 5.776274853e-10 5.647323755e-10 4.502438082e-10 5.221980656e-10 4.774936728e-10 4.405955009e-10 3.10764997e-10 4.780053165e-10 2.694339682e-10 3.675257872e-10 1.851604458e-10 1.838998406e-10 2.214729457e-10 2.379966117e-10 4.549353995e-10 6.399112435e-10 6.390330562e-10 7.822395825e-10 6.50320794e-10 5.997374472e-10 3.366187696e-10 7.523607569e-10 6.010211105e-10 7.510438725e-10 8.158505779e-10 6.386817862e-10 5.042487716e-10 4.992727149e-10 4.95413756e-10 5.197906524e-10 4.327715451e-10 1.90470872e-10 9.481896106e-11 4.306393945e-14 1.363433869e-10 9.719157995e-11 4.106459897e-10 5.862878875e-10 5.744432448e-10 5.068001288e-10 8.818974239e-10 1.05050013e-09 1.07664901e-09 9.278603846e-10 9.47875684e-10 8.414720767e-10 4.931993076e-10 1.415633688e-10 1.096518203e-10 6.651007648e-11 1.616560678e-10 7.475487114e-11 1.270595335e-10 1.67028417e-10 1.362254169e-10 0 1.760823607e-12 2.47371478e-11 1.263289964e-10 1.287370581e-10 1.391327086e-10 3.52767827e-10 7.180191449e-11 1.490182046e-10 1.442386072e-10 1.336497343e-10 1.406773329e-10 1.659969956e-10 8.112323885e-11 1.772195274e-10 1.530216666e-10 9.542135219e-11 1.079021076e-10 1.344372852e-10 4.389333552e-28 2.280120104e-10 1.671421871e-10 1.217335507e-10 1.604602759e-10 1.526884938e-16 1.504353061e-10 1.412190926e-10 2.055571011e-10 4.562463378e-10 7.465303208e-10 1.162162447e-09 8.681120217e-10 9.382358367e-10 9.458472273e-10 8.542980523e-10 6.322726266e-10 5.99464756e-10 5.88425293e-10 3.766098042e-10 1.135588972e-10 1.295821944e-10 7.110352448e-11 1.39978053e-10 2.269637086e-10 4.046375444e-10 4.990663637e-10 4.146366189e-10 5.755526348e-10 4.579378371e-10 7.004973712e-10 7.12035527e-10 7.814823716e-10 5.385466491e-10 7.236602168e-10 5.924027307e-10 7.442864996e-10 6.883152563e-10 6.460866299e-10 6.536427756e-10 5.359034573e-10 3.43478899e-10 2.482755884e-10 3.51264763e-10 2.233014129e-10 2.821957544e-10 2.973099365e-10 3.139466932e-10 4.057317644e-10 3.603104583e-10 3.516826689e-10 3.409079784e-10 4.439010357e-10 4.525848333e-10 5.354938245e-10 6.23791088e-10 3.289342048e-10 3.726192865e-10 4.808503128e-10 6.692613077e-10 3.713644706e-10 4.039950251e-10 3.283040734e-10 3.27168117e-10 2.894281644e-10 3.376776395e-10 3.242492674e-10 4.104638854e-10 3.158040252e-10 1.613259291e-10 3.77763718e-10 3.924576323e-10 3.763658719e-10 4.48517595e-10 2.957743965e-10 3.488473077e-10 3.11667713e-10 5.518723474e-10 3.977524626e-10 3.067253719e-10 3.144015443e-10 3.196113689e-10 2.4907093e-10 3.227824101e-10 3.269312697e-10 3.392130646e-10 3.939162021e-10 3.812286458e-10 2.656132606e-10 3.015116826e-10 1.977442456e-10 1.672668013e-10 2.794300585e-10 2.499966997e-10 3.481616008e-10 1.299852651e-10 2.794509867e-10 2.517572773e-10 5.792007087e-10 1.369821138e-10 2.642013962e-10 2.636300761e-10 1.734104224e-10 2.923404613e-10 1.088793399e-10 1.640570368e-10 3.011121479e-10 3.109577897e-10 3.157107668e-10 2.774147901e-10 9.496641094e-11 3.256638779e-10 2.626939253e-10 1.988820791e-10 6.904585403e-11 2.347297199e-10 2.937986885e-10 1.011325692e-10 2.447168847e-10 3.217481672e-11 1.742375585e-10 3.536495274e-10 1.272006181e-10 1.617355466e-10 5.407986727e-10 2.228674527e-10 2.058893622e-10 6.420253368e-11 3.065305729e-10 8.479177543e-11 1.34039374e-10 1.532284869e-10 2.71312142e-10 1.971264778e-10 2.642160323e-10 1.013605204e-10 1.275003978e-10 1.439500021e-10 2.219125259e-10 8.190616351e-11 3.265171553e-10 +2.953371625e-10 2.561065012e-10 1.045570284e-10 2.80603322e-10 2.616189701e-10 3.724298029e-10 1.19298044e-10 1.200805793e-10 2.533297265e-10 1.383810317e-10 2.819140417e-10 8.177030774e-11 2.212461688e-10 1.423952731e-10 1.521549942e-10 1.180142338e-10 3.120178719e-10 3.730396104e-11 2.415631089e-10 2.764994186e-10 2.864395281e-10 2.475558862e-10 5.999328999e-11 1.650442022e-10 2.305496362e-10 1.432157087e-10 2.562338578e-10 1.600662648e-10 2.176511989e-10 2.873535777e-10 2.805906773e-10 1.853295674e-10 1.748052308e-10 3.170720377e-10 1.222921658e-10 8.525305593e-11 2.835642485e-10 9.860885191e-11 1.103053595e-10 1.281191501e-10 2.517709877e-10 3.650813037e-10 4.347515578e-10 2.660581992e-10 4.111518667e-10 2.600298514e-10 3.171916129e-10 2.414043132e-10 4.133627331e-10 3.21532833e-10 3.036370444e-10 3.402804066e-10 6.272503696e-10 2.917615996e-10 3.340784497e-10 2.74173486e-10 2.992719516e-10 3.134292054e-10 3.279463157e-10 3.237923464e-10 1.491601172e-10 3.589263299e-10 2.32540106e-10 3.574919021e-10 2.242686369e-10 1.698029942e-10 3.313880261e-10 3.479205619e-10 3.150407139e-10 4.676210394e-10 2.997197779e-10 4.660534554e-10 3.092942805e-10 2.691266383e-10 2.197026671e-10 1.479531614e-10 2.913918229e-10 3.914106732e-10 3.92617086e-10 4.051997991e-10 3.303948671e-10 4.800985213e-10 3.983308409e-10 5.464312812e-10 3.996489266e-10 4.63694343e-10 3.611779505e-10 4.127349714e-10 3.975407047e-10 5.873272681e-10 4.639499112e-10 3.561996905e-10 2.849310847e-10 4.515431838e-10 3.928541842e-10 2.877128498e-10 1.613627078e-10 2.143275491e-10 2.594254624e-10 2.444972846e-10 9.719928978e-10 8.316245053e-10 7.017255778e-10 8.261358174e-10 7.775711275e-10 7.809929485e-10 6.228025355e-10 4.313517707e-10 6.401551634e-10 6.903706662e-10 5.999322234e-10 4.839864259e-10 4.36573626e-10 4.380479181e-10 4.185504516e-10 4.681053234e-10 3.011024544e-10 2.137350854e-10 1.695603197e-10 2.020405665e-10 1.024646947e-10 2.888723011e-10 5.166679146e-10 4.440705134e-10 5.828677675e-10 7.617219087e-10 9.755780237e-10 9.369142879e-10 8.755586941e-10 8.760052436e-10 9.268054431e-10 5.126346425e-10 2.640827596e-10 7.020886048e-17 1.723628806e-10 1.115657923e-10 8.839147055e-12 1.397225213e-10 1.187924495e-13 8.22184035e-11 1.357961011e-10 1.938580645e-10 1.705594509e-10 1.932968081e-10 1.301560542e-10 6.658567421e-15 1.030126447e-10 9.004993064e-12 1.860720224e-10 1.67240104e-10 1.358185612e-10 8.185008272e-11 2.183102005e-10 0 1.44806601e-10 2.616587481e-10 1.656941975e-10 1.560684238e-10 1.206990039e-10 1.115947944e-10 1.868912274e-10 0 1.319042367e-10 1.498105633e-10 1.110184642e-10 2.537833658e-10 1.48059521e-10 3.655151494e-10 5.37577897e-10 6.754244614e-10 9.87218066e-10 8.902463308e-10 1.097123421e-09 1.024130092e-09 5.984249586e-10 6.168214723e-10 4.990214098e-10 5.811288167e-10 4.718460998e-10 1.698038988e-10 7.486341597e-11 1.22903243e-10 1.178384878e-10 3.426172759e-10 2.914309419e-10 5.159251323e-10 4.617669752e-10 3.331322844e-10 4.051213398e-10 6.733864901e-10 6.494272002e-10 6.062216619e-10 5.736822782e-10 5.313884908e-10 5.555463298e-10 7.822873141e-10 8.989004761e-10 5.897539431e-10 6.368573241e-10 5.818359817e-10 5.641133214e-10 1.708387171e-10 3.716317056e-10 2.499294946e-10 2.421984334e-10 1.65311076e-10 3.680308141e-10 4.197159628e-10 3.488596357e-10 4.696070076e-10 2.70280776e-10 4.325592706e-10 3.307149295e-10 3.79374093e-10 4.72478301e-10 4.894463009e-10 4.639110969e-10 6.053791224e-10 3.94503409e-10 4.397058614e-10 5.683004616e-10 4.66841666e-10 5.047122964e-10 2.716141703e-10 3.952321454e-10 2.719366347e-10 2.828436821e-10 3.575632499e-10 2.069811217e-10 2.676388991e-10 3.850924694e-10 2.799789266e-10 3.862692361e-10 3.431717604e-10 2.543768701e-10 2.631542695e-10 1.965586282e-10 2.878783155e-10 3.338524853e-10 1.437084063e-10 2.196870021e-10 3.371757736e-10 2.894866612e-10 3.812725669e-10 5.063396107e-10 4.153192744e-10 3.917594262e-10 2.795361881e-10 3.211094541e-10 3.178401778e-10 1.908693034e-10 3.017232456e-10 4.905025648e-10 2.870021496e-10 3.483057227e-10 3.171323119e-10 3.794036042e-10 3.61837315e-10 3.705762385e-10 2.022565283e-10 1.524518661e-10 1.313438338e-10 2.053302905e-10 1.825228181e-10 4.065460852e-10 4.785007671e-10 1.560244448e-10 2.267687111e-10 1.724623461e-10 3.443881073e-10 3.072728064e-10 1.975741209e-10 1.167101142e-10 3.400977191e-10 1.840024065e-10 2.324218171e-10 1.218779731e-10 5.818088003e-11 3.549675967e-10 2.304102775e-10 3.080325968e-10 1.470448381e-10 1.412574017e-10 1.615863401e-10 4.117285781e-10 1.656166687e-10 1.190933562e-10 3.11019402e-10 2.490379702e-10 3.551422159e-10 4.059529241e-10 1.810320726e-10 5.52251917e-11 1.004412098e-10 3.859717637e-10 1.580370676e-10 1.646155903e-10 1.92130931e-10 1.001500538e-10 7.462220959e-11 +2.414559513e-10 9.232946858e-11 1.229463884e-10 1.752333831e-10 1.418471836e-10 1.926802424e-10 3.774701684e-10 2.166293507e-10 2.36987385e-10 1.348683696e-10 2.902302398e-10 2.006000758e-10 1.548306445e-10 2.217016142e-10 1.387119249e-10 7.758665263e-11 2.607757085e-10 2.31737087e-10 1.480261656e-10 3.469154162e-10 4.504986597e-10 9.004615763e-11 3.930057148e-10 9.591027713e-11 2.243815146e-10 4.710530108e-10 2.054651916e-10 2.617042468e-10 9.857378132e-11 1.394908837e-10 1.609170983e-10 1.46901823e-10 4.650014022e-10 2.341559899e-10 1.033461841e-10 2.402835994e-10 1.897143039e-10 1.713093716e-10 2.647104033e-10 2.200600306e-10 2.103343766e-10 3.413153301e-10 3.283452184e-10 1.567316061e-10 2.861847903e-10 2.724193158e-10 3.601166542e-10 3.497425799e-10 1.625005952e-10 2.638020767e-10 3.027792133e-10 2.697097323e-10 2.063598972e-10 2.083091079e-10 1.72294228e-10 3.371708263e-10 3.483835157e-10 4.437008753e-10 3.222803252e-10 2.442542255e-10 2.697630053e-10 1.618092225e-10 3.685371955e-10 5.439015869e-10 3.172945792e-10 3.262299848e-10 2.803232309e-10 2.936145275e-10 2.806459053e-10 4.262125528e-10 4.326294073e-10 2.505790024e-10 3.334505144e-10 2.703219405e-10 4.540303351e-10 2.329738969e-10 2.177091365e-10 2.804693049e-10 4.015669144e-10 3.787890088e-10 3.83691502e-10 3.830760892e-10 5.076405846e-10 4.69907274e-10 5.034798917e-10 3.947209313e-10 3.149074427e-10 3.73309758e-10 2.518048968e-10 4.207242078e-10 3.680103821e-10 3.012479813e-10 4.239580742e-10 4.638100502e-10 2.903822181e-10 3.333277863e-10 2.454080318e-10 1.978073252e-10 2.290201484e-10 3.677492737e-10 5.658228149e-10 9.364314342e-10 9.64110094e-10 9.405860351e-10 6.829733875e-10 5.831834007e-10 5.370539476e-10 9.079900464e-10 7.265117919e-10 7.585234942e-10 5.40429923e-10 4.441431333e-10 5.360496389e-10 4.945514775e-10 5.250880497e-10 4.112585838e-10 4.014202837e-10 1.77134571e-10 2.079226686e-10 2.213446143e-10 2.642758421e-10 2.403999496e-10 5.504273704e-10 5.528661594e-10 6.108507357e-10 6.565656428e-10 8.730926004e-10 1.077737762e-09 9.828158245e-10 1.100833541e-09 1.005186839e-09 7.26387536e-10 4.088347999e-10 1.534036178e-10 1.170729728e-10 1.409541705e-10 1.452868316e-10 1.09805905e-10 1.596741777e-10 1.712674469e-10 7.123291733e-11 1.358337235e-10 1.30400264e-10 1.338967985e-10 1.262705341e-10 1.580926652e-10 1.480566062e-10 1.307636275e-10 2.675809936e-10 1.194826708e-10 1.134513064e-10 1.22076807e-10 1.88794637e-10 1.056432942e-10 8.309572601e-11 1.219701733e-10 9.20292111e-11 8.463204572e-11 2.343690704e-10 1.333080177e-10 8.678973539e-11 1.249391143e-10 1.251790229e-10 5.490082869e-18 1.906571748e-10 1.190826699e-10 1.881690737e-15 3.039834964e-10 7.398128371e-10 8.193847677e-10 9.533706322e-10 9.505892493e-10 1.154235098e-09 1.021995294e-09 5.825322728e-10 6.010244654e-10 5.551239106e-10 4.677492781e-10 3.571087739e-10 1.381461349e-10 1.762653079e-10 1.565990387e-10 2.325482313e-10 4.443407425e-10 3.585249731e-10 5.7325133e-10 5.46780912e-10 4.03986065e-10 3.985617231e-10 5.98299287e-10 6.218169953e-10 7.365938652e-10 6.262954068e-10 6.521010958e-10 5.887068413e-10 6.406602449e-10 7.284474358e-10 7.571666531e-10 5.312611488e-10 5.582837487e-10 5.673797334e-10 2.701266886e-10 2.325969171e-10 1.246030026e-10 2.413043155e-10 2.801600691e-10 3.795898202e-10 4.479350519e-10 3.414625067e-10 3.585868087e-10 4.767234391e-10 3.934162272e-10 3.070797355e-10 4.403260492e-10 4.589683074e-10 6.043810986e-10 4.759293602e-10 6.517423979e-10 4.406700066e-10 4.806862662e-10 4.291632282e-10 2.785823153e-10 2.244444252e-10 5.383681106e-10 3.501238224e-10 3.203351558e-10 4.488729744e-10 4.792290786e-10 2.94314368e-10 3.468022801e-10 3.07679171e-10 4.699479156e-10 3.12710581e-10 4.302760529e-10 2.180819134e-10 2.988920683e-10 3.328510173e-10 3.633909364e-10 2.285458311e-10 1.76673938e-10 3.183461861e-10 2.32917035e-10 2.342421384e-10 2.119527437e-10 4.781043628e-10 3.275307603e-10 2.067182701e-10 2.076905e-10 3.298801474e-10 3.141044797e-10 2.807800492e-10 1.946938678e-10 3.07995617e-10 2.914664659e-10 5.153945812e-10 1.91048729e-10 3.728700187e-10 3.319055796e-10 4.455082823e-10 2.111684148e-10 1.495450328e-10 1.445464652e-10 3.660749363e-10 1.43214803e-10 1.44985727e-10 2.227960789e-10 3.094448025e-10 1.054607802e-10 1.452965171e-10 3.12618683e-10 2.138074965e-10 8.994373916e-11 3.828918808e-10 1.296227238e-10 2.912505204e-10 2.261937581e-10 8.832801305e-11 2.819835716e-10 3.750975361e-10 1.507457311e-10 2.172876884e-10 2.22366404e-10 3.137408975e-10 1.571322182e-10 1.296157332e-10 2.807682592e-10 4.035391997e-10 1.91288699e-10 3.18130629e-10 4.66418695e-10 2.18244747e-10 2.898018696e-10 1.515537161e-10 1.353244293e-10 2.162441647e-10 1.025312979e-10 5.189711102e-11 1.833930836e-10 2.943377553e-10 1.335633137e-10 +1.07239474e-10 1.717871572e-10 1.742515196e-10 1.743848161e-10 9.2095049e-11 1.063092889e-10 1.513923952e-10 2.432815286e-10 9.103070134e-11 1.677569924e-10 1.214550177e-10 3.321623413e-11 3.350115941e-10 1.580927826e-10 2.275133231e-10 1.188470304e-10 4.411542439e-10 9.726928384e-11 2.128290681e-10 1.394712298e-10 1.431082671e-10 2.196447759e-10 7.959894926e-11 6.537917325e-11 1.448164023e-10 3.518046423e-10 2.168755036e-10 3.458045451e-10 2.420844704e-10 1.353648759e-10 2.014886465e-10 2.014707659e-10 8.493953653e-11 1.17934121e-10 1.055057042e-10 2.307975887e-10 1.173735481e-10 1.162063745e-10 1.441719086e-10 2.367640524e-10 2.246197247e-10 3.535626826e-10 2.900289579e-10 4.267085308e-10 4.028771812e-10 4.424139614e-10 2.851011007e-10 3.990169918e-10 1.978259463e-10 3.854276971e-10 3.736354705e-10 3.329276469e-10 3.141488409e-10 3.135553909e-10 2.67552517e-10 3.858572075e-10 1.926150325e-10 2.530405942e-10 1.357829796e-10 4.039138179e-10 2.6587111e-10 1.596254044e-10 3.580762633e-10 4.640896432e-10 3.540516904e-10 4.116339407e-10 2.726846273e-10 2.651973035e-10 3.557769775e-10 3.980963597e-10 3.29093192e-10 4.796009097e-10 3.773397319e-10 3.710887429e-10 3.510881569e-10 4.00146924e-10 1.916141808e-10 2.312506635e-10 3.952521268e-10 4.857559743e-10 6.793244581e-10 6.233098984e-10 3.584995082e-10 4.201979323e-10 4.237630342e-10 3.900797968e-10 5.205442224e-10 4.47397037e-10 4.829492665e-10 3.76785509e-10 3.46044792e-10 4.205692871e-10 3.691973678e-10 4.295808808e-10 4.443707159e-10 3.552188721e-10 1.79846386e-10 2.950456639e-10 2.215759854e-10 5.950990731e-10 5.121988138e-10 9.237380196e-10 7.669776654e-10 7.04462633e-10 6.623492117e-10 5.362192102e-10 6.327183733e-10 5.899150755e-10 7.631753988e-10 8.676971167e-10 5.673259378e-10 6.100214608e-10 4.032021397e-10 5.057204554e-10 5.470487041e-10 5.023663767e-10 3.444316987e-10 1.971553987e-10 2.27955727e-10 2.612203437e-10 1.209998077e-10 2.522699645e-10 5.887971273e-10 5.90276507e-10 5.034506972e-10 5.898253191e-10 9.750868728e-10 1.264048504e-09 1.056965382e-09 1.117417851e-09 8.146606718e-10 7.417820366e-10 3.439415748e-10 1.230652112e-10 1.515678311e-10 8.140059814e-11 9.824288653e-11 1.204852609e-10 6.46367614e-11 1.727803051e-10 2.214084547e-10 1.284313843e-10 1.516069092e-10 1.792247435e-10 1.73168046e-10 1.395245026e-10 2.101432587e-10 9.404661227e-11 1.264639366e-10 1.990035148e-10 1.013819413e-10 1.115635785e-10 1.536803451e-10 0 9.143882871e-11 1.137812937e-10 8.562647265e-11 6.65283237e-11 2.100973946e-10 1.925026104e-10 1.411297839e-10 1.147439758e-10 1.270895775e-10 7.278976109e-11 2.571845243e-11 1.820974943e-10 0 4.299755127e-10 7.829865132e-10 8.478934323e-10 9.38017542e-10 9.656157402e-10 1.119871251e-09 8.756144967e-10 5.851279478e-10 6.201189296e-10 5.487596654e-10 4.576161969e-10 2.21358613e-10 2.443632783e-10 1.555805764e-10 1.048520114e-10 2.620908864e-10 4.794012269e-10 4.283163498e-10 3.792766646e-10 5.263039953e-10 5.68760513e-10 4.954753302e-10 7.195992901e-10 7.7915123e-10 8.148474485e-10 7.777439392e-10 5.562655196e-10 7.704395144e-10 6.332189432e-10 5.806826661e-10 9.581212652e-10 6.109388308e-10 5.882823372e-10 4.2438405e-10 2.799347248e-10 2.012527965e-10 1.138252421e-10 3.44737054e-10 3.373881022e-10 3.842073999e-10 3.570133111e-10 5.026891225e-10 3.770773186e-10 3.15431619e-10 4.754655913e-10 4.836931544e-10 2.942337731e-10 5.573383361e-10 4.154445655e-10 6.667942769e-10 4.604910572e-10 3.957935019e-10 4.370918906e-10 3.960301224e-10 2.546033299e-10 2.53424921e-10 3.771364516e-10 3.518714764e-10 3.203999277e-10 3.521148557e-10 2.524443392e-10 1.833951349e-10 2.152233335e-10 3.844291906e-10 1.698747256e-10 1.821909228e-10 2.035936102e-10 2.312552934e-10 3.055329101e-10 3.728280127e-10 2.428055559e-10 3.881863726e-10 2.267116767e-10 3.182379129e-10 8.990217017e-11 3.115442293e-10 2.955384466e-10 4.348705852e-10 4.11018927e-10 2.570195595e-10 3.210850574e-10 3.613957987e-10 2.248833285e-10 4.667606451e-10 2.72937423e-10 2.582099485e-10 2.81355279e-10 2.849340716e-10 2.334354363e-10 2.476372536e-10 2.074620336e-10 3.77568533e-10 1.779551943e-10 1.805688926e-10 2.859071881e-10 2.158814399e-10 2.032388472e-10 2.430392495e-10 1.953280686e-10 2.013158368e-10 1.403320051e-10 2.031734787e-10 2.537821275e-10 4.26544724e-10 2.363880617e-10 1.457571656e-10 3.112220413e-10 7.342970312e-11 3.518153137e-10 1.404899013e-10 1.167073632e-10 3.505895834e-11 1.846396969e-10 1.959259229e-10 3.333898778e-10 1.788972676e-10 3.664713416e-10 2.659139309e-10 7.146683108e-11 1.094914431e-10 1.980193884e-10 1.420886095e-10 1.352577178e-10 2.130157044e-10 2.431264431e-10 1.893147062e-10 2.440336836e-10 1.714271552e-10 1.806426277e-10 1.871211191e-10 2.098655228e-10 2.819573091e-10 1.872959701e-10 +1.394536631e-10 1.229678932e-10 3.231596066e-10 2.626410004e-10 2.103697514e-10 1.549725254e-10 2.396894672e-10 3.331852105e-10 1.247210199e-10 4.447260835e-10 1.236504995e-10 1.712261531e-10 2.008860802e-10 2.919489247e-10 3.086924245e-10 3.835352225e-10 3.783957705e-10 1.72457222e-10 9.629484861e-11 1.06768596e-10 2.373497564e-10 1.043915141e-10 2.103882547e-10 3.379977183e-10 1.398657759e-10 1.191165516e-10 2.394658525e-10 1.371747145e-10 2.34978421e-10 2.238500268e-10 2.292441195e-10 2.839900879e-10 1.474588547e-10 1.716868421e-10 2.725034036e-10 9.529565413e-11 1.473924208e-10 1.707128423e-10 1.139907312e-10 1.89761957e-10 1.84987634e-10 2.373007567e-10 4.603294618e-10 2.294173524e-10 2.97008478e-10 4.012812426e-10 4.613424689e-10 3.305421002e-10 3.60891139e-10 3.371371273e-10 3.461188819e-10 5.145580195e-10 2.649759002e-10 2.196565492e-10 4.646188574e-10 3.131693108e-10 4.987697683e-10 2.227217421e-10 3.254248249e-10 2.196442875e-10 2.784664271e-10 3.713164399e-10 2.975453567e-10 3.92819931e-10 2.241222099e-10 1.671184959e-10 3.43015072e-10 3.100244107e-10 2.631782209e-10 2.472928533e-10 3.530748038e-10 2.461904914e-10 2.280482111e-10 2.605767868e-10 2.899096339e-10 2.704889973e-10 3.606345972e-10 1.734164116e-10 4.583573324e-10 4.163746004e-10 4.8635576e-10 5.942404904e-10 6.049262269e-10 4.253018944e-10 4.93630517e-10 4.812633329e-10 5.368972956e-10 4.324487876e-10 5.63105738e-10 2.772147588e-10 4.042202891e-10 4.264600291e-10 3.12487843e-10 3.307157454e-10 3.201586667e-10 2.354275056e-10 2.082854436e-10 3.380917358e-10 2.328986023e-10 2.042880168e-10 7.04397934e-10 6.565043829e-10 5.266378881e-10 5.776869778e-10 8.546130968e-10 7.838238076e-10 6.20645957e-10 5.269444837e-10 6.762381487e-10 6.262793435e-10 6.285298276e-10 3.749294091e-10 5.796531252e-10 4.982117957e-10 4.342510869e-10 4.58852034e-10 3.373106008e-10 3.097551519e-10 1.59556405e-10 1.055387675e-10 3.714198427e-11 1.286401053e-10 4.444657893e-10 5.889324167e-10 5.35659254e-10 5.814472901e-10 7.543051119e-10 1.053659235e-09 9.429337375e-10 1.008479819e-09 9.617642528e-10 9.031108236e-10 5.536655004e-10 1.866582763e-10 1.057750082e-10 1.492002149e-10 8.675731903e-11 1.348861534e-10 3.360647609e-16 8.748288702e-11 7.521000051e-11 1.074311726e-10 1.298829216e-10 1.824422015e-10 1.24361632e-10 1.45530457e-10 1.573077235e-10 1.642271409e-10 7.888785941e-11 1.285281552e-10 2.497590749e-10 1.127112715e-10 1.400560519e-10 6.848610882e-11 1.526750156e-10 1.46589424e-10 1.644615134e-10 1.738060664e-10 9.240471269e-11 8.540689748e-11 1.943510432e-10 1.682835189e-10 1.509103757e-10 1.547586348e-10 1.6980125e-15 1.158968331e-10 1.382926618e-10 4.440459118e-10 7.049777215e-10 8.841674247e-10 1.08019521e-09 8.981717537e-10 9.505556983e-10 8.835990156e-10 5.753398297e-10 6.6104397e-10 4.576538478e-10 4.533314119e-10 1.96241972e-10 1.249671776e-10 1.218156182e-10 1.673293474e-14 1.987720775e-10 4.196077994e-10 5.187164198e-10 3.470930652e-10 6.123198892e-10 6.427729789e-10 4.388087957e-10 6.285921143e-10 9.176135442e-10 5.483801571e-10 4.792869664e-10 5.050332397e-10 6.595412381e-10 5.89044735e-10 6.158346643e-10 7.910786245e-10 7.497999596e-10 6.13041151e-10 3.463324507e-10 3.153679763e-10 2.076282778e-10 1.129061249e-10 3.483279643e-10 3.287126374e-10 3.110660413e-10 3.053325313e-10 4.210378608e-10 2.898842054e-10 3.23119248e-10 4.853313213e-10 4.789269828e-10 3.965502505e-10 4.765244732e-10 3.568351868e-10 4.247261981e-10 5.750712865e-10 5.711576749e-10 6.520076879e-10 5.078632928e-10 5.056556233e-10 2.492144394e-10 4.352782041e-10 2.354708075e-10 3.382137982e-10 2.718997532e-10 3.97718573e-10 3.697785867e-10 3.967750553e-10 3.339973861e-10 1.843002465e-10 1.635066078e-10 4.235893646e-10 2.362129882e-10 3.286717395e-10 2.642020551e-10 2.724792647e-10 2.288387701e-10 3.719322439e-10 2.96018908e-10 2.445906861e-10 2.836173664e-10 1.521960131e-10 2.292714239e-10 3.852822665e-10 4.06435938e-10 3.469039104e-10 1.96454143e-10 2.07119555e-10 3.610427269e-10 5.303434789e-10 4.074277889e-10 4.119239681e-10 4.719760083e-10 3.07869152e-10 3.076276842e-10 5.674188057e-10 2.464688168e-10 2.986148197e-10 5.272180087e-10 1.945505957e-10 9.278071564e-11 1.673887483e-10 1.713545291e-10 1.05922848e-10 2.134383159e-10 2.097738991e-10 9.1206979e-11 1.747155517e-10 1.286833708e-10 1.579694276e-10 2.925304561e-10 1.016106284e-10 2.313803964e-10 1.800182132e-10 7.669254077e-11 4.131568324e-10 1.352194551e-10 1.240778622e-10 1.33446361e-10 1.412052339e-10 1.698863933e-10 4.376829167e-10 2.546556167e-10 1.01288195e-10 8.15058032e-11 2.08469856e-10 2.387357144e-10 2.543454624e-10 2.451220958e-10 5.860339372e-11 1.573675871e-10 1.108824116e-10 1.377923665e-10 1.363185103e-10 9.478817708e-11 1.464358283e-10 1.56190018e-10 3.605625611e-10 +1.441184029e-10 1.195876e-10 2.479905732e-10 3.423002489e-10 1.21210731e-10 1.80564287e-10 1.124012586e-10 1.206815421e-10 1.40579161e-10 1.928321335e-10 2.301134033e-10 2.14394146e-10 3.980535416e-10 1.121642464e-10 4.113178609e-10 2.792738134e-10 1.869705391e-10 1.003878337e-10 2.475399256e-10 1.842201041e-10 1.037735134e-10 3.929617424e-10 1.629742967e-10 2.703669513e-10 3.144417352e-10 1.334568988e-10 2.551467456e-10 1.611551666e-10 1.80714498e-10 2.434425203e-10 6.858076089e-11 4.49295198e-10 1.99891211e-10 2.413968241e-10 2.45245326e-10 8.966912864e-11 2.368598913e-10 1.014948717e-10 2.259143108e-10 1.760884061e-10 1.683966477e-10 2.065765577e-10 2.671195974e-10 2.957901422e-10 4.450092167e-10 2.555630197e-10 2.097957228e-10 2.251224195e-10 2.007149181e-10 3.29335299e-10 3.848740298e-10 3.032053406e-10 2.151904286e-10 2.673561653e-10 2.172231619e-10 3.428732355e-10 2.958371193e-10 2.920746675e-10 2.876902551e-10 3.367449857e-10 4.76098725e-10 2.766965009e-10 3.851297045e-10 2.787713524e-10 2.910705529e-10 3.526814079e-10 2.303372645e-10 3.011843145e-10 3.835345145e-10 4.684950615e-10 3.812340609e-10 3.499409139e-10 4.126848509e-10 3.131402536e-10 3.336937308e-10 4.192246286e-10 3.762149411e-10 3.460738286e-10 3.141463011e-10 2.056853393e-10 3.727142215e-10 5.815299909e-10 4.69366648e-10 3.699123162e-10 4.257665866e-10 5.592631681e-10 2.843742237e-10 5.290293891e-10 4.225762769e-10 4.479380034e-10 3.713408473e-10 4.554731516e-10 4.7565148e-10 3.562803274e-10 3.876660627e-10 1.402285772e-10 2.042611814e-10 1.848336239e-10 2.424951624e-10 5.814822285e-10 7.36577164e-10 6.553138217e-10 7.161423561e-10 4.604895939e-10 9.211947265e-10 5.755710083e-10 5.314432646e-10 3.208514997e-10 9.21649689e-10 6.596150243e-10 5.9020135e-10 7.018965917e-10 5.006765485e-10 6.169540289e-10 4.958614199e-10 4.979599564e-10 4.824544934e-10 3.021094442e-10 1.412448189e-10 7.445024699e-11 1.744111481e-10 2.241364761e-10 5.575336766e-10 5.366614295e-10 7.082142132e-10 5.138667255e-10 7.219604342e-10 1.02879682e-09 1.06876134e-09 9.897396128e-10 1.007360779e-09 8.32521631e-10 6.372037893e-10 1.65169308e-10 1.501388332e-10 1.682479537e-10 1.454699697e-10 2.653861327e-10 8.931572942e-14 1.380325496e-10 1.002756124e-10 4.068912002e-16 3.131418138e-13 1.145122118e-10 7.714435897e-11 2.114161265e-14 1.042847286e-10 1.413874373e-10 1.664019314e-10 2.533523929e-10 1.77208098e-10 1.481683875e-10 7.245555302e-11 1.688517865e-10 2.089355423e-10 1.509450161e-10 1.4854653e-10 1.247746381e-10 1.23555499e-10 3.556142675e-14 1.41750994e-10 1.687233664e-10 1.595184229e-10 1.642667169e-10 7.103210421e-18 9.611293711e-11 3.392729724e-10 6.752956646e-10 8.690341277e-10 9.773221177e-10 9.93788526e-10 1.063146916e-09 1.072136413e-09 7.373912781e-10 4.959251407e-10 6.442261494e-10 6.719018161e-10 4.332053529e-10 2.039964577e-10 1.509226461e-10 1.933995686e-10 1.437820221e-11 2.319236679e-10 3.909606675e-10 4.48014322e-10 4.963532981e-10 5.668805424e-10 4.384464551e-10 4.01078398e-10 6.397600201e-10 8.709213831e-10 6.53149095e-10 7.14152394e-10 6.176553458e-10 7.983225321e-10 5.427581908e-10 5.462018114e-10 7.611203519e-10 9.995173266e-10 5.564454671e-10 3.208880925e-10 1.453213102e-10 2.710608142e-10 1.682114825e-10 1.727703649e-10 3.284490223e-10 3.16882629e-10 3.644860993e-10 4.061105397e-10 3.469224869e-10 4.003116721e-10 4.397601658e-10 4.434507361e-10 3.772581416e-10 3.40035824e-10 4.060409497e-10 3.163274896e-10 5.94393247e-10 4.862790965e-10 5.066835939e-10 5.11154605e-10 3.959777409e-10 3.934973085e-10 2.863291761e-10 4.234018096e-10 4.27375219e-10 3.548945663e-10 1.469179174e-10 2.511047461e-10 4.720848728e-10 2.825170886e-10 3.110699711e-10 3.531105149e-10 3.099586687e-10 2.746420614e-10 2.931436232e-10 3.158629551e-10 2.166507419e-10 3.160629198e-10 2.426092016e-10 4.140036557e-10 1.900182603e-10 2.428340629e-10 2.389173432e-10 1.528215611e-10 3.58820393e-10 2.261525796e-10 3.894784106e-10 2.99586265e-10 3.468817978e-10 2.719222865e-10 2.079970971e-10 4.333079397e-10 2.232243623e-10 5.17100841e-10 2.200634874e-10 4.675676177e-10 2.52559585e-10 3.582008894e-10 2.374195732e-10 2.484086028e-10 2.509895728e-10 1.509485302e-10 2.354797194e-10 1.716640234e-10 2.521943669e-10 4.40756692e-10 4.138210958e-10 1.718663975e-10 2.074789797e-10 2.15095993e-10 2.700654052e-10 1.546389406e-10 1.681360306e-10 2.508658907e-10 1.359321598e-10 1.26279091e-10 2.30584084e-10 7.372378923e-11 2.211553106e-10 3.347094283e-10 3.817518242e-10 1.541998656e-10 3.013228113e-10 2.168501855e-10 3.189017906e-10 1.652518795e-10 2.220530657e-10 1.052662349e-10 1.946858409e-10 2.450930456e-10 1.499796183e-10 3.733519746e-10 1.754672323e-10 2.243447153e-10 1.739005872e-10 1.327273539e-10 3.217474708e-10 3.565598688e-10 2.095995614e-10 +4.862482047e-10 9.178164044e-11 9.185717776e-11 2.85647373e-10 1.146219728e-10 1.301447978e-10 2.893461383e-10 1.968204701e-10 1.522045781e-10 2.357035582e-10 1.347640981e-10 1.550753845e-10 2.164737221e-10 2.258139097e-10 5.689492114e-11 1.904777784e-10 2.944345765e-10 5.31614593e-11 2.076035279e-10 2.835008837e-10 2.570147641e-10 2.201457891e-10 2.450139184e-10 1.883233411e-10 1.183392688e-10 2.337246315e-10 1.327519129e-10 1.230558867e-10 7.388062781e-11 3.400950144e-10 1.590573345e-10 5.158418357e-10 4.836137474e-10 7.892252358e-11 2.6046228e-10 1.834557791e-10 1.803990505e-10 5.326902338e-11 3.037536812e-10 1.127248349e-10 4.53415707e-10 2.484331948e-10 2.37233456e-10 3.269524343e-10 2.272845198e-10 3.571752569e-10 4.380590306e-10 4.139777744e-10 3.778965964e-10 1.741213421e-10 2.392973727e-10 4.229264286e-10 3.401262879e-10 3.869957643e-10 2.575374292e-10 1.597837116e-10 4.401532608e-10 3.328670895e-10 1.684046302e-10 3.660503498e-10 2.637107927e-10 3.914965384e-10 3.347652479e-10 2.612340703e-10 3.988351609e-10 3.436137619e-10 3.362155807e-10 2.452426262e-10 3.482585671e-10 4.334266513e-10 3.580078474e-10 4.277000382e-10 2.121180961e-10 2.41455855e-10 3.228839729e-10 2.793499341e-10 4.085725738e-10 3.271602399e-10 3.339759632e-10 2.943735959e-10 3.340253901e-10 4.567355796e-10 5.832495764e-10 5.444831786e-10 4.476219095e-10 5.549170544e-10 3.755095489e-10 4.042207679e-10 5.095944184e-10 4.694515889e-10 3.701950343e-10 3.34177223e-10 4.903206048e-10 3.484930082e-10 3.372655853e-10 1.767200872e-10 3.046623576e-10 2.26623332e-10 2.878497171e-10 2.638936598e-10 7.043459634e-10 7.766468188e-10 8.744427328e-10 6.239673903e-10 5.667370086e-10 6.365448629e-10 6.25675004e-10 6.194372003e-10 8.418430951e-10 9.366159811e-10 6.397437415e-10 5.981760723e-10 4.041462461e-10 5.5076812e-10 6.139102456e-10 5.201178797e-10 5.376415033e-10 2.760038196e-10 1.6815224e-10 1.633533919e-10 5.71689995e-11 1.901416289e-10 5.176505038e-10 6.264933945e-10 6.475628237e-10 6.29415471e-10 6.023145202e-10 1.093526106e-09 1.08185142e-09 9.844157728e-10 9.033283584e-10 8.954596681e-10 7.089540566e-10 3.483001275e-10 8.527075041e-11 1.306086441e-15 4.783353204e-13 1.910812575e-10 1.322407598e-10 0 1.426173842e-10 1.169240546e-10 1.372376417e-10 0 1.307633293e-10 1.022767222e-10 8.901463644e-11 1.348785057e-10 2.112023774e-10 1.1465933e-10 1.287264639e-10 1.657704932e-10 1.373633026e-10 1.309205185e-10 1.262568436e-10 1.44571068e-10 1.085493334e-10 1.777311338e-10 1.203253888e-10 1.081705918e-10 1.299728284e-10 1.774468598e-10 1.519548774e-10 1.535446119e-10 1.89446736e-10 2.488604271e-10 3.768914795e-10 7.313565627e-10 7.883338481e-10 9.167753785e-10 9.585015086e-10 9.851674967e-10 9.642890566e-10 7.106905093e-10 6.797268813e-10 5.875977768e-10 5.728232202e-10 4.803934609e-10 1.434286906e-10 1.795043799e-10 1.40429014e-10 1.231511094e-10 2.952887557e-10 4.420384964e-10 3.506900663e-10 4.931721106e-10 5.480139985e-10 3.938328775e-10 4.78143998e-10 7.217582234e-10 8.208911212e-10 8.186178025e-10 4.920763508e-10 6.417418597e-10 7.471389876e-10 6.165054912e-10 7.261163781e-10 3.724960831e-10 8.920000914e-10 8.39122256e-10 3.080534815e-10 2.144581869e-10 2.875379505e-10 1.581668696e-10 2.347193375e-10 4.062342561e-10 3.92706242e-10 4.727641475e-10 3.42678859e-10 4.686402212e-10 4.840796419e-10 4.057634558e-10 4.473064447e-10 4.462061258e-10 5.141014076e-10 5.016791075e-10 4.635769983e-10 5.799709151e-10 5.851985497e-10 4.427612198e-10 3.934584902e-10 3.5291314e-10 2.345649813e-10 3.80007696e-10 3.581779833e-10 2.089631335e-10 3.278080503e-10 3.618638714e-10 2.783813336e-10 2.66270288e-10 3.650646309e-10 1.520675354e-10 3.073399982e-10 3.631134769e-10 2.071256034e-10 4.361071177e-10 3.331922401e-10 3.91164383e-10 2.933447362e-10 1.613394126e-10 2.313439647e-10 1.926944359e-10 2.89676533e-10 3.031495921e-10 1.576427077e-10 3.312034288e-10 3.551640575e-10 3.660798057e-10 3.578584664e-10 3.242465505e-10 3.150842761e-10 3.31330728e-10 1.792584587e-10 2.057235122e-10 1.848129309e-10 2.251549518e-10 3.471568421e-10 2.154478582e-10 2.377997175e-10 4.203525466e-10 2.443494268e-10 1.556863334e-10 3.523696456e-10 3.438107123e-10 1.860881841e-10 2.460842038e-10 1.326825081e-10 1.415128068e-10 2.866584266e-10 1.551848211e-10 9.181022077e-11 3.702007446e-10 2.113898948e-10 2.735459796e-10 2.03487949e-10 3.78910657e-10 2.503663444e-10 2.096849706e-10 3.829695572e-10 2.629032516e-10 2.454874403e-10 9.097671286e-11 1.868919465e-10 2.397252105e-10 4.008443364e-10 2.246097595e-10 1.740348413e-10 1.781761989e-10 1.858322879e-10 1.418327247e-10 2.392468309e-10 1.444959722e-10 2.867181348e-10 6.833034693e-11 1.301241777e-10 3.593741905e-10 1.071606476e-10 2.14822386e-10 1.374896441e-10 1.940804818e-10 +2.420712911e-10 1.714497947e-10 1.828620998e-10 1.314847948e-10 4.140786389e-10 2.59398888e-10 1.526582795e-10 2.984990372e-10 2.423994566e-10 1.332800587e-10 2.953134026e-10 2.163782745e-10 3.152461463e-10 9.582753653e-11 7.773581851e-11 2.640615349e-10 4.313381353e-10 1.868215371e-10 1.418269651e-10 1.876296183e-10 8.491473048e-11 2.185020584e-10 2.257047973e-10 1.924444833e-10 1.755263603e-10 4.495831828e-10 2.666290545e-10 4.531267488e-10 4.990919605e-10 1.237361275e-10 1.918852766e-10 3.03917708e-10 2.444719838e-10 2.159487963e-10 1.357815884e-10 1.290782488e-10 1.101065995e-10 4.319266284e-10 1.225129195e-10 2.848181402e-10 2.067145183e-10 2.795016543e-10 2.902097475e-10 2.626636888e-10 3.803214931e-10 2.309973275e-10 3.23488636e-10 3.264114026e-10 3.101265683e-10 2.460053414e-10 3.45837933e-10 2.967286843e-10 2.621620675e-10 3.788331063e-10 3.002796107e-10 3.520691693e-10 1.947570639e-10 1.816768601e-10 3.010640374e-10 3.768214715e-10 1.779765818e-10 2.554981944e-10 3.116506814e-10 4.1491232e-10 1.872656279e-10 2.78760574e-10 3.64649521e-10 2.283760162e-10 2.836751453e-10 2.188003993e-10 2.691917567e-10 3.82707371e-10 3.514520966e-10 3.739218455e-10 2.806220326e-10 3.743119813e-10 3.33070333e-10 3.739097905e-10 4.472695494e-10 4.174809578e-10 6.093121339e-10 4.126902328e-10 4.5349305e-10 3.653270618e-10 5.404097299e-10 4.750672101e-10 3.270551963e-10 3.599862524e-10 3.10498139e-10 4.240386067e-10 2.504966921e-10 5.275504716e-10 3.716661269e-10 4.915286617e-10 3.776430817e-10 2.698850327e-10 9.202171399e-11 3.083924254e-10 3.156451311e-10 3.735557198e-10 6.167392237e-10 6.632682203e-10 6.532582927e-10 6.684183272e-10 7.907898781e-10 7.407156243e-10 7.18419625e-10 5.960174191e-10 7.14166796e-10 8.204274742e-10 7.265052304e-10 5.202807156e-10 4.719708997e-10 5.589009828e-10 4.123302297e-10 4.937168963e-10 4.873182267e-10 4.407052914e-10 8.996489512e-11 1.071466743e-10 7.589595284e-11 1.849847618e-10 3.549008501e-10 4.050008736e-10 4.596672492e-10 5.791264254e-10 5.499771186e-10 1.017929761e-09 1.049999148e-09 9.959281338e-10 9.169329812e-10 8.553134277e-10 8.539479372e-10 4.648079067e-10 2.39079292e-10 1.545500966e-10 1.570879417e-10 1.413064034e-10 1.709434745e-10 0 1.518937225e-10 5.020919573e-11 2.219575825e-10 9.104823886e-11 1.099282728e-10 1.736790644e-10 1.648825337e-10 9.348089378e-11 1.68538581e-10 1.276607201e-10 1.619250006e-10 1.400689305e-10 2.662570984e-14 8.307417904e-11 1.426784863e-10 2.062111139e-10 1.268278226e-10 4.152349756e-12 1.615717828e-10 1.026814889e-10 2.258833287e-10 1.021497863e-10 7.237531559e-11 7.170310704e-11 1.622959737e-10 1.321455528e-10 4.226481201e-10 8.735435568e-10 9.044225012e-10 7.276574269e-10 9.297939372e-10 1.077945301e-09 1.051907162e-09 4.830285144e-10 6.575145568e-10 5.408521906e-10 5.659756156e-10 2.77889522e-10 1.597818931e-11 1.873938667e-10 1.576578307e-10 1.605278303e-10 3.913870481e-10 4.203354942e-10 3.847044291e-10 5.610663391e-10 5.587536876e-10 5.282183858e-10 5.469806091e-10 7.159330604e-10 8.539436092e-10 8.038264951e-10 7.963207257e-10 7.247499072e-10 8.390201391e-10 6.4529357e-10 5.565502186e-10 6.233570433e-10 7.310333529e-10 4.037695549e-10 2.545214991e-10 2.281656784e-10 2.261098163e-10 1.374299089e-10 2.098584294e-10 3.669398962e-10 4.366838535e-10 4.063222849e-10 3.263718766e-10 4.761254944e-10 3.338370504e-10 5.950049517e-10 3.807978042e-10 2.972662597e-10 5.663145024e-10 4.706852549e-10 5.959965072e-10 4.093535303e-10 3.651616863e-10 4.42945226e-10 3.108565423e-10 3.137378468e-10 2.419380455e-10 2.735702794e-10 3.281694757e-10 2.75369409e-10 3.164633633e-10 2.677602921e-10 4.034535787e-10 3.985890899e-10 2.250109963e-10 2.235146673e-10 2.320345822e-10 3.099673755e-10 2.279557739e-10 3.270362664e-10 3.323490812e-10 1.746914001e-10 3.330102241e-10 2.013217034e-10 3.731065026e-10 4.6218379e-10 2.173674774e-10 3.212023277e-10 2.737671184e-10 3.548211124e-10 4.066403184e-10 2.369638455e-10 3.751747456e-10 3.436300489e-10 2.930689972e-10 2.02187776e-10 5.128122366e-10 3.275264087e-10 1.872017825e-10 3.946017031e-10 1.68751338e-10 3.781591197e-10 2.376248081e-10 1.405519726e-10 2.20934061e-10 2.723477092e-10 2.277544589e-10 1.971134816e-10 1.207388375e-10 2.113041857e-10 2.247630305e-10 9.748166909e-11 1.454015152e-10 3.153802996e-10 1.303178066e-10 1.849231501e-10 3.973673949e-10 1.370449747e-10 1.440091338e-10 1.604893605e-10 3.067280365e-10 1.637592093e-10 1.476919373e-10 3.147247781e-10 2.052636401e-10 2.713207611e-10 3.531363067e-10 2.542462453e-10 6.910144045e-11 3.282737715e-10 1.33342711e-10 1.999002434e-10 1.549751479e-10 2.880805294e-10 2.223985656e-10 5.664658308e-10 2.869107743e-10 1.347492005e-10 2.079423712e-10 1.133361062e-10 7.368323425e-11 1.819398857e-10 2.475721418e-10 1.538553047e-10 +1.471572281e-10 3.697397068e-10 1.770446937e-10 1.079617329e-10 1.974024194e-10 1.948513916e-10 2.211664569e-10 1.570043172e-10 1.249765308e-10 1.001480583e-10 1.613169462e-10 4.531310018e-10 1.324727366e-10 4.770119417e-10 2.069709585e-10 3.116355259e-10 3.270539191e-10 3.295703561e-10 2.256221848e-10 2.162581629e-10 1.179065446e-10 1.051574594e-10 1.792866572e-10 2.4300196e-10 1.372188031e-10 2.481139473e-10 1.761523414e-10 7.162932244e-11 3.214094315e-10 2.527411197e-10 2.577785466e-10 7.87751483e-11 3.449509628e-10 2.580453104e-10 2.50614331e-10 2.119562888e-10 2.478418486e-10 1.77012538e-10 1.599325105e-10 1.289269553e-10 2.437726234e-10 3.183322838e-10 1.882855297e-10 3.959859437e-10 1.797194765e-10 2.434967933e-10 4.447010151e-10 3.487457402e-10 2.349611815e-10 3.205049898e-10 2.689210909e-10 3.60045646e-10 2.492057591e-10 1.99331812e-10 2.754143838e-10 2.213585538e-10 2.125642248e-10 3.741260594e-10 3.958586563e-10 3.361282419e-10 1.596514846e-10 2.293523306e-10 4.925804522e-10 3.191116646e-10 3.35332632e-10 4.096412459e-10 2.517155594e-10 2.142242504e-10 1.764653053e-10 2.924965122e-10 1.840208376e-10 4.584485305e-10 3.635637223e-10 3.897671918e-10 2.410189848e-10 3.837443138e-10 2.204651977e-10 3.772222948e-10 3.130136477e-10 2.778718463e-10 4.368493052e-10 4.631906278e-10 4.869231137e-10 5.257729833e-10 4.446921447e-10 4.245192719e-10 3.399569963e-10 3.547585725e-10 4.867443107e-10 4.864454227e-10 4.2997399e-10 3.454799166e-10 4.266755621e-10 3.827683895e-10 2.555380019e-10 1.894205656e-10 1.24896437e-10 3.670113577e-10 2.644874252e-10 2.642526741e-10 5.441206957e-10 8.005939266e-10 6.97559241e-10 7.904295963e-10 5.922264049e-10 8.223131983e-10 6.787399576e-10 5.073418031e-10 5.813378963e-10 7.569751466e-10 6.383844489e-10 5.11445049e-10 4.939562904e-10 4.680309516e-10 3.515004213e-10 4.467285856e-10 4.946933365e-10 3.589577405e-10 1.571360472e-10 1.279238742e-10 1.274292275e-10 2.42745964e-10 2.338731176e-10 4.95605876e-10 6.289254683e-10 5.723138034e-10 5.647773511e-10 8.315384355e-10 1.088012472e-09 9.424525185e-10 9.541505047e-10 8.479196051e-10 9.258054149e-10 5.958479954e-10 2.910178913e-10 1.246393674e-10 8.594731371e-11 8.129086459e-11 1.512200835e-10 1.537753973e-10 1.485687661e-10 9.606071481e-11 1.146467584e-10 1.395730657e-10 9.933322426e-11 1.280688447e-10 1.02384896e-10 1.341041416e-10 1.573208239e-10 1.959361062e-10 1.030100799e-10 1.999214358e-10 1.732984401e-13 1.117055107e-10 9.437886798e-11 4.444163817e-23 1.210650825e-10 1.40779615e-10 1.429659463e-10 1.696130764e-10 1.048898563e-10 2.047800847e-10 1.952624373e-10 1.210637044e-10 1.133142723e-10 2.878218012e-10 6.726365745e-10 7.059056013e-10 9.837931453e-10 1.11083195e-09 1.004020862e-09 1.232852671e-09 7.576849333e-10 5.727168452e-10 4.971808931e-10 5.609915841e-10 6.031959139e-10 2.589692722e-10 8.409214798e-11 1.153160561e-10 2.62122599e-10 2.19106986e-10 3.956484213e-10 4.630551615e-10 5.568424919e-10 4.950667843e-10 4.405762902e-10 5.017582595e-10 5.725080268e-10 6.558874116e-10 8.877554024e-10 7.097822886e-10 5.969675585e-10 8.835885865e-10 5.123172067e-10 7.390564755e-10 8.140365064e-10 7.82045281e-10 8.625776933e-10 4.215601818e-10 4.160045156e-10 2.490260749e-10 1.78759917e-10 1.939420475e-10 2.651990154e-10 2.483848822e-10 3.911009211e-10 4.260770158e-10 3.673392605e-10 5.972210663e-10 3.291539822e-10 4.586547047e-10 4.426062977e-10 4.244699813e-10 4.966089052e-10 4.003053029e-10 4.482563781e-10 4.975582431e-10 4.920206481e-10 4.036071852e-10 3.539870591e-10 4.584081618e-10 3.04323351e-10 2.979730776e-10 2.159598087e-10 3.689050351e-10 2.780983537e-10 3.804054981e-10 3.983410374e-10 4.523490168e-10 4.809784716e-10 1.848721493e-10 4.563583869e-10 3.38853965e-10 4.250965776e-10 1.755642223e-10 2.835875377e-10 2.544857909e-10 3.497655643e-10 3.938929982e-10 2.301797601e-10 2.691165072e-10 2.942634791e-10 1.908879304e-10 2.850784379e-10 3.429142375e-10 2.32209282e-10 5.726532155e-10 3.966193353e-10 4.281747495e-10 2.420149906e-10 3.182018091e-10 1.744054585e-10 3.416986526e-10 2.089947426e-10 5.464885855e-10 4.439384644e-10 3.296602791e-10 2.47468555e-10 2.427162962e-10 2.222835946e-10 1.566665611e-10 2.272000249e-10 1.558204365e-10 1.738277174e-10 2.81773432e-10 2.777052486e-10 3.806691433e-10 1.585989274e-10 1.270077127e-10 2.46593689e-10 3.431373525e-10 8.32917297e-11 8.958949857e-11 2.607893945e-10 1.692240853e-10 3.405134057e-10 4.306343194e-10 5.525123121e-11 2.54747428e-10 1.377110564e-10 2.844418531e-10 3.588542219e-10 2.149497115e-10 3.558396344e-10 2.764653773e-10 1.776690284e-10 1.038345352e-10 2.50459862e-10 2.558523899e-10 1.53688251e-10 1.218222872e-10 1.163885959e-10 3.589368388e-11 2.402500035e-10 5.975878619e-11 3.599657121e-10 3.053327839e-10 9.424177745e-11 9.754284901e-11 +2.004016956e-10 1.557512823e-10 2.23768666e-10 3.039486219e-10 1.659217212e-10 1.247488461e-10 3.179532396e-10 3.488429987e-10 2.660949376e-10 8.019299866e-11 1.336490165e-10 7.991241244e-11 3.284032872e-10 2.845336488e-10 1.481163115e-10 1.017943364e-10 1.633940058e-10 1.374597744e-10 2.542037812e-10 1.964405911e-10 1.718290143e-10 2.16958629e-10 1.356125501e-10 1.356288638e-10 8.648917491e-11 1.265245954e-10 2.111478665e-10 3.282521942e-10 1.702704483e-10 1.291842003e-10 4.56639147e-10 1.479655444e-10 3.857577825e-10 1.13047719e-10 1.839319414e-10 1.212372362e-10 3.188246739e-10 1.192568843e-10 3.000723439e-10 2.969009342e-10 3.728239152e-10 3.804285588e-10 2.597949675e-10 2.014223432e-10 1.908656121e-10 1.710964015e-10 3.213736354e-10 4.483366636e-10 4.146070778e-10 4.607953296e-10 2.360409176e-10 2.484049925e-10 4.165052893e-10 2.35330507e-10 3.33014773e-10 3.049741014e-10 4.203962872e-10 3.242127596e-10 2.620444522e-10 1.743600705e-10 3.62400706e-10 2.085224455e-10 3.64885855e-10 2.621234087e-10 2.541991261e-10 3.576153319e-10 2.105869735e-10 2.638151041e-10 3.116768737e-10 3.623906858e-10 3.047959729e-10 1.481730929e-10 3.381261329e-10 3.477076398e-10 4.379609637e-10 1.817565121e-10 2.552533102e-10 4.446203637e-10 2.319847326e-10 3.938100759e-10 5.302683894e-10 5.545832435e-10 6.007032755e-10 3.582248698e-10 3.067323133e-10 5.441251848e-10 4.605870807e-10 4.768542412e-10 4.312971147e-10 3.069757131e-10 4.105788458e-10 2.549307312e-10 3.592800235e-10 4.82649604e-10 2.759993567e-10 3.151713095e-10 1.775314003e-10 1.89678189e-10 1.911072794e-10 2.403184511e-10 4.596414928e-10 7.157952186e-10 6.158539287e-10 4.553687379e-10 6.644016807e-10 5.673583516e-10 4.568048687e-10 6.29228886e-10 9.306853895e-10 6.576618602e-10 7.241102297e-10 7.666757972e-10 4.379121793e-10 5.551984992e-10 6.198249131e-10 4.591768831e-10 4.770678864e-10 4.233680265e-10 2.215748076e-10 1.664830657e-10 2.512477068e-11 1.039432833e-11 2.071042188e-10 5.488635562e-10 4.87276859e-10 5.595619423e-10 5.74039364e-10 7.437271455e-10 1.094416323e-09 1.093089604e-09 1.077631086e-09 9.205896094e-10 8.749081666e-10 7.378366816e-10 5.693446463e-10 2.719060709e-10 6.176655978e-11 6.32004785e-11 9.558954677e-11 3.368162468e-11 1.027736673e-10 1.414350524e-10 6.066847035e-11 1.911414471e-10 1.246140782e-10 7.821392852e-11 1.451253831e-10 1.515338634e-10 9.226847034e-11 1.194754389e-10 1.178792958e-10 1.352783673e-10 1.049211247e-10 8.905583043e-11 1.096427559e-10 9.531789887e-11 1.590462506e-10 1.331573256e-10 1.265343989e-10 3.659553936e-13 1.774593779e-10 2.183333357e-10 1.309051436e-10 1.417978079e-12 1.785388957e-10 5.303137218e-10 7.155500653e-10 9.020301436e-10 9.489245032e-10 8.877832227e-10 1.033699065e-09 9.946974636e-10 8.1077779e-10 5.83836975e-10 5.955563505e-10 6.31670179e-10 4.681890054e-10 1.432476923e-10 1.27970386e-10 1.873400213e-22 1.163195564e-26 2.664243317e-10 4.122449848e-10 4.039968721e-10 4.806795664e-10 4.751487535e-10 4.761911258e-10 4.374851996e-10 5.418898181e-10 8.491728551e-10 6.918467393e-10 6.404706488e-10 8.592337825e-10 6.739515739e-10 5.750979084e-10 5.262748638e-10 7.970020799e-10 7.044090339e-10 5.481429647e-10 5.875070501e-10 2.299895349e-10 1.971352145e-10 1.533267013e-10 1.628301963e-10 2.763706753e-10 2.311245824e-10 4.406660385e-10 3.635199526e-10 4.117213621e-10 3.988954083e-10 5.523317013e-10 3.67882058e-10 4.570502358e-10 4.439669384e-10 4.440486865e-10 3.008881638e-10 3.252582764e-10 4.249680852e-10 4.646719544e-10 3.310841662e-10 4.285819045e-10 3.274061161e-10 2.312370102e-10 3.420620978e-10 1.370891146e-10 2.034891777e-10 3.438247752e-10 4.347547398e-10 3.135373976e-10 3.496741511e-10 3.523669205e-10 3.115779528e-10 2.402179033e-10 4.268401286e-10 3.0134421e-10 4.000690092e-10 5.389918741e-10 3.379867357e-10 2.907424897e-10 3.213313962e-10 2.67084717e-10 2.315249749e-10 1.546785253e-10 3.360738853e-10 2.470830557e-10 3.879988279e-10 1.411558336e-10 3.67210933e-10 2.412902528e-10 2.662900601e-10 4.455305136e-10 4.756055721e-10 1.615728264e-10 3.347610443e-10 2.850353993e-10 4.260880564e-10 5.659545944e-10 1.557196512e-10 3.163385244e-10 1.499570018e-10 1.471954811e-10 2.956402647e-10 2.252361962e-10 1.265373705e-10 3.402318189e-10 1.191886658e-10 2.460974999e-10 1.401868065e-10 1.057892288e-10 1.69454973e-10 2.924541481e-10 1.908090279e-10 3.185747319e-10 2.537719017e-10 1.275766787e-10 2.880994374e-10 7.996858527e-11 8.178907138e-11 8.329631544e-11 1.102005466e-10 3.542201629e-10 1.141569793e-10 2.269534068e-10 1.738423156e-10 1.065307469e-10 5.625083771e-11 1.877062184e-10 2.557986353e-10 1.301915624e-10 1.961086261e-10 1.032771722e-10 5.25809519e-11 5.286483192e-10 7.04542353e-11 1.366664029e-10 2.953018007e-10 4.952117841e-10 1.765013805e-10 3.353342101e-10 2.975000617e-10 +1.897468233e-10 6.843695913e-11 1.09996338e-10 8.630386893e-11 3.05152415e-10 1.399503275e-10 2.730567231e-10 1.763224933e-10 1.738249106e-10 3.410589262e-10 2.824552527e-10 1.502574708e-10 2.036207489e-10 3.540958322e-10 9.466693501e-11 4.142650784e-10 2.179170583e-10 2.88927439e-10 3.991318241e-10 1.348206928e-10 7.414926826e-11 3.871638058e-10 1.553154282e-10 1.614109036e-10 4.129499075e-10 1.731600061e-10 1.726575062e-10 1.226865114e-10 1.175410428e-10 2.797293431e-10 2.568776719e-10 1.492047946e-10 2.44954876e-10 2.919886289e-10 9.811074555e-11 3.544824048e-10 2.505053488e-10 2.62392394e-10 3.154317055e-10 1.518865417e-10 2.132965004e-10 5.308494909e-10 2.378505957e-10 4.39126504e-10 3.088939214e-10 1.563614404e-10 4.249148337e-10 1.224632162e-10 2.403462944e-10 3.755866417e-10 3.757051847e-10 2.838428433e-10 1.977084447e-10 2.338727854e-10 1.761755243e-10 4.35530402e-10 5.539060507e-10 2.0174515e-10 1.967927749e-10 1.905737513e-10 2.14582857e-10 3.39883645e-10 2.984427034e-10 3.699243949e-10 2.941662063e-10 3.62144975e-10 3.97884798e-10 2.805614141e-10 1.696817398e-10 3.494127398e-10 6.091254727e-10 2.618754772e-10 2.354534201e-10 4.052845089e-10 4.990612044e-10 2.284952423e-10 2.762847702e-10 2.783478153e-10 4.740457087e-10 4.34622498e-10 4.120604099e-10 5.136564831e-10 5.5030806e-10 3.464174154e-10 4.124717272e-10 5.275764197e-10 5.137138771e-10 4.583705932e-10 4.644492305e-10 3.563801584e-10 4.22298034e-10 3.348924809e-10 3.44630661e-10 3.102966103e-10 3.248135801e-10 3.114864886e-10 1.344915961e-10 1.554626929e-10 2.764900432e-10 2.119186174e-10 3.86343383e-10 4.768471392e-10 7.002979779e-10 5.216891785e-10 4.983296264e-10 6.426604935e-10 6.590772616e-10 5.869236773e-10 5.051752514e-10 8.561630839e-10 7.967584707e-10 3.844081559e-10 4.767755426e-10 4.650995257e-10 4.798570201e-10 4.686959616e-10 4.386648211e-10 3.308750257e-10 1.502442828e-10 0 2.291623385e-10 1.21199239e-10 1.104988377e-10 4.824514328e-10 2.950863339e-10 5.701841795e-10 5.420701746e-10 5.823798716e-10 8.860949535e-10 8.006447987e-10 1.121141196e-09 9.571068924e-10 9.659010656e-10 8.24363431e-10 5.098124543e-10 3.259053347e-10 1.750450438e-10 1.005333817e-10 1.031483432e-10 1.312614187e-10 1.10695925e-10 1.182364452e-10 1.084629446e-10 1.241151405e-10 9.863031488e-11 0 1.361933287e-10 1.899566044e-10 1.1126366e-10 9.983685602e-11 7.427575983e-11 1.324006644e-10 1.662667373e-10 8.328698125e-11 1.975931859e-10 1.261673922e-10 1.00241816e-10 1.667533495e-10 9.303876075e-11 4.782782065e-11 5.794732205e-31 1.648802813e-10 1.180733502e-10 9.595056667e-11 3.358243203e-10 6.161162406e-10 8.639490043e-10 6.573662751e-10 1.092712491e-09 9.395246831e-10 9.722577148e-10 9.810158092e-10 6.244907892e-10 5.518215504e-10 6.268375446e-10 6.627204254e-10 5.492316793e-10 2.059038559e-10 1.697607301e-10 1.857229012e-10 1.479206273e-10 1.641322435e-10 4.436392331e-10 5.279008492e-10 3.199359939e-10 3.40892218e-10 5.28851722e-10 4.38012881e-10 6.832334349e-10 8.10984409e-10 7.532759391e-10 3.687160603e-10 5.890869591e-10 6.723364924e-10 8.958412341e-10 7.20134234e-10 6.176031286e-10 7.820680865e-10 6.528551676e-10 4.843681609e-10 3.466145854e-10 2.900983619e-10 1.623480693e-10 1.555487317e-10 2.802185244e-10 3.217411595e-10 4.090220958e-10 5.708552604e-10 3.51381675e-10 3.657079332e-10 3.725756442e-10 4.360065453e-10 4.120332522e-10 3.641521243e-10 3.542586586e-10 5.409682395e-10 3.978939024e-10 4.369207525e-10 5.164062859e-10 2.974949668e-10 2.168111981e-10 1.734611792e-10 1.577802639e-10 2.246230002e-10 2.028088112e-10 3.243960357e-10 3.385310706e-10 4.727609799e-10 2.059574129e-10 4.337463714e-10 2.447153823e-10 3.908925627e-10 2.390021315e-10 2.375950323e-10 2.575119151e-10 4.889546056e-10 3.233012096e-10 2.869429671e-10 2.330496645e-10 2.802875577e-10 1.67874057e-10 1.987030672e-10 3.416267318e-10 3.784829533e-10 1.574285467e-10 2.413761202e-10 2.023616135e-10 3.005003632e-10 3.521377969e-10 3.301844108e-10 2.496167772e-10 3.381644065e-10 2.55770746e-10 2.825149747e-10 2.323027766e-10 2.802666208e-10 3.16027526e-10 4.816851211e-10 2.263064057e-10 2.01061734e-10 1.862604971e-10 2.215048285e-10 3.57888131e-10 1.741727222e-10 2.632755108e-10 3.375639892e-10 3.753868874e-10 2.506542235e-10 9.777588866e-11 2.873013994e-10 2.333650145e-10 1.262006068e-10 3.390400616e-10 3.73076825e-10 5.534478061e-11 3.053542536e-10 2.251463559e-10 2.562902822e-10 3.041387102e-10 1.990556556e-10 1.646279729e-10 9.873740288e-11 1.685268487e-10 9.127872488e-11 1.476534414e-10 9.854063243e-11 5.783444033e-11 1.733038558e-10 1.073625015e-10 1.23302113e-10 2.175011415e-10 7.291732269e-11 3.460713321e-10 3.187279018e-10 1.99185914e-10 1.494693938e-10 1.287417916e-10 1.202949096e-10 1.115320546e-10 1.662806516e-10 +3.619740282e-11 6.607692497e-11 1.311199879e-10 3.217873571e-10 9.214723634e-11 1.409539406e-10 3.393383248e-10 2.940608555e-10 9.854967652e-11 3.761209819e-10 1.110036118e-10 2.413002893e-10 4.188084529e-10 1.371332013e-10 1.68240904e-10 1.614853268e-10 1.573250189e-10 8.670388648e-11 1.85542228e-10 2.655015113e-10 1.419310046e-10 2.576587374e-10 1.404575367e-10 3.283345275e-10 2.4702309e-10 9.341062712e-11 2.574134175e-10 1.213311122e-10 1.388700182e-10 3.602089478e-10 1.392085171e-10 1.204374302e-10 1.401650252e-10 2.794955286e-10 9.578209577e-11 1.061140675e-10 2.212751651e-10 1.185672998e-10 1.180079811e-10 1.73447827e-10 1.733514613e-10 2.973358891e-10 3.630426777e-10 2.986384428e-10 4.417338766e-10 5.093920482e-10 2.87029832e-10 2.083635896e-10 3.684723103e-10 3.841853267e-10 2.220484289e-10 2.437422192e-10 2.120589162e-10 2.176434604e-10 3.274102674e-10 2.304565782e-10 2.417367784e-10 2.496299898e-10 1.985656476e-10 1.720971504e-10 4.078092987e-10 2.702625847e-10 3.200871851e-10 2.324466823e-10 1.794826598e-10 2.450183755e-10 3.051203933e-10 2.467323548e-10 2.023150953e-10 3.909298236e-10 3.31396173e-10 2.256119582e-10 2.644533263e-10 3.559821428e-10 2.732623543e-10 3.196486629e-10 3.781910922e-10 2.516254166e-10 3.983909761e-10 4.708331959e-10 5.405745267e-10 3.794705521e-10 3.076077344e-10 5.171759797e-10 3.845975286e-10 5.916393025e-10 4.149874138e-10 4.986444959e-10 3.144357554e-10 3.654343755e-10 3.829899246e-10 4.195586648e-10 4.009975669e-10 4.224897097e-10 2.010512232e-10 1.876894375e-10 1.155869715e-10 1.408306718e-10 2.705774537e-10 2.921936704e-10 7.816475963e-10 7.97028858e-10 7.663512718e-10 6.935803566e-10 6.742819239e-10 5.930950558e-10 5.479613441e-10 6.982822933e-10 5.609231568e-10 7.931711023e-10 6.879294022e-10 5.755537801e-10 4.983956518e-10 3.334774239e-10 5.164580535e-10 4.874049098e-10 4.737585709e-10 3.461490307e-10 2.268164704e-10 4.579975114e-28 9.671161546e-11 1.541381932e-11 1.126942551e-10 4.437848175e-10 5.081328356e-10 5.97485279e-10 4.264069877e-10 5.517833867e-10 8.087538817e-10 9.8185974e-10 1.030958282e-09 9.458312452e-10 9.707097031e-10 7.548778466e-10 7.254836994e-10 5.202665269e-10 2.959963482e-10 1.283939422e-10 1.710470923e-10 1.445002333e-10 1.387517255e-10 1.584102e-10 1.749583984e-10 9.786577081e-11 1.585531082e-10 1.673696585e-10 1.132523354e-10 1.0808254e-10 7.484524474e-11 1.40466318e-10 1.137604658e-10 1.55428693e-10 1.091888756e-10 2.076662703e-10 6.642731509e-11 2.271632905e-10 1.725161926e-10 1.527181492e-10 1.206469078e-10 1.814283606e-10 1.272489911e-10 1.188649123e-10 1.167927863e-10 2.764749953e-10 4.367277213e-10 7.195743768e-10 7.558217782e-10 9.571256857e-10 8.293807713e-10 8.529500913e-10 1.08186888e-09 9.279691618e-10 5.715300276e-10 6.614819343e-10 5.474407505e-10 6.102722694e-10 3.70602421e-10 1.92044349e-10 7.248958329e-11 1.425904855e-10 2.113667049e-10 3.380620327e-10 4.427155704e-10 4.472669515e-10 3.087453855e-10 4.136231623e-10 5.208872061e-10 6.265501071e-10 4.373192586e-10 7.292294813e-10 6.566924243e-10 4.722408709e-10 4.625341704e-10 3.898271983e-10 5.75892074e-10 5.479292795e-10 7.555460446e-10 5.418929464e-10 6.64362113e-10 4.327097318e-10 2.030253577e-10 3.840783722e-10 3.017690565e-10 1.066971798e-10 4.094494178e-10 2.64709928e-10 3.700087052e-10 4.18009321e-10 3.818366076e-10 3.96307064e-10 3.593688391e-10 5.267105932e-10 4.776107509e-10 3.587897443e-10 5.014340406e-10 5.669932659e-10 3.512658706e-10 5.219020198e-10 6.729343683e-10 4.521707061e-10 4.133286675e-10 3.362309887e-10 2.698333134e-10 3.930543689e-10 1.555177273e-10 2.407868434e-10 3.187945999e-10 3.026235019e-10 4.051815612e-10 3.41762584e-10 3.557133431e-10 3.573247724e-10 1.866316726e-10 4.095973706e-10 2.353480705e-10 3.906111902e-10 3.02958028e-10 2.911525051e-10 2.956725418e-10 3.26862181e-10 3.928199039e-10 1.714795883e-10 2.3059513e-10 3.695972401e-10 3.990337405e-10 3.038667954e-10 1.629229317e-10 2.999472709e-10 2.679343308e-10 3.441314967e-10 3.17451463e-10 4.363914429e-10 3.819644335e-10 3.354253451e-10 2.232827529e-10 5.207101713e-10 2.35075914e-10 4.009312013e-10 3.241782046e-10 2.568030292e-10 2.294032968e-10 2.021663424e-10 2.740276386e-10 2.699755227e-10 1.783745335e-10 1.340985527e-10 1.800177837e-10 3.211157589e-10 1.611968048e-10 1.462047043e-10 1.171814435e-10 1.189423948e-10 1.58820826e-10 3.933002201e-10 2.095220369e-10 2.203999317e-10 1.525108617e-10 8.81422656e-11 1.323798855e-10 1.079140835e-10 1.397618065e-10 2.582722554e-10 1.928426032e-10 2.519104738e-10 3.819711477e-10 1.972899377e-10 1.243715441e-10 2.048854873e-10 2.380047822e-10 2.772243733e-10 1.105976673e-10 2.30968509e-10 1.164519328e-10 2.391301244e-10 5.297134872e-11 1.242475001e-10 3.824182836e-10 8.878255463e-11 2.826390663e-10 1.640430455e-10 +3.23731191e-10 1.683339984e-10 2.220789751e-10 2.245273463e-10 4.988315715e-11 1.627308993e-10 1.311135224e-10 1.549493482e-10 1.25343778e-10 1.483474124e-10 1.391249532e-10 2.616573344e-10 1.564327466e-10 1.673422401e-10 1.138443669e-10 1.498178149e-10 2.309285212e-10 9.689698377e-11 1.106213421e-10 2.551838235e-10 1.19176288e-10 3.985125548e-10 1.627695552e-10 2.212278554e-10 1.713902143e-10 2.010430656e-10 3.286014773e-10 1.926625285e-10 4.30274634e-10 1.513206489e-10 1.675854701e-10 2.318992234e-10 1.818202147e-10 3.629293284e-10 1.874168633e-10 1.225981936e-10 1.118956852e-10 1.215365233e-10 2.779329079e-10 1.788690087e-10 1.085465452e-10 3.7861351e-10 3.656594635e-10 6.336011933e-10 2.120102434e-10 1.907775796e-10 1.620515721e-10 3.020138508e-10 3.515541656e-10 2.63327039e-10 2.68146473e-10 3.554712382e-10 4.665686046e-10 2.218079467e-10 2.669051136e-10 4.14641179e-10 2.992845529e-10 1.653809481e-10 2.543132349e-10 4.305092679e-10 1.647241786e-10 3.369449918e-10 2.098489024e-10 3.52339372e-10 2.882379141e-10 3.601100516e-10 2.95954293e-10 2.248816993e-10 2.512584833e-10 4.155190551e-10 4.22028495e-10 2.442019856e-10 4.50827236e-10 1.866245158e-10 1.919330862e-10 3.973910283e-10 2.154650745e-10 3.093102836e-10 3.157763414e-10 2.054506511e-10 4.394880392e-10 3.96783929e-10 3.51297906e-10 3.601435456e-10 3.97703105e-10 4.583578901e-10 3.756867679e-10 4.583121096e-10 4.858703331e-10 2.672938677e-10 4.059026019e-10 4.412971825e-10 2.334737299e-10 3.917689053e-10 3.121088045e-10 3.427852551e-10 2.646068717e-10 1.347901662e-10 2.677952184e-10 3.144071555e-10 6.1757478e-10 5.083548717e-10 7.200953456e-10 7.897890388e-10 6.799696637e-10 5.23353288e-10 6.680181468e-10 4.591903951e-10 5.82365313e-10 5.666833505e-10 8.830036142e-10 6.49760162e-10 4.154347755e-10 4.405044334e-10 5.041686373e-10 4.290148857e-10 5.886454249e-10 4.278759037e-10 3.421270338e-10 1.992473041e-10 1.383495218e-10 5.280645225e-11 1.813507173e-10 2.4593212e-10 4.796514215e-10 4.496259163e-10 5.894220122e-10 6.247813321e-10 6.165773281e-10 8.348430212e-10 1.165696085e-09 1.066963307e-09 9.943844234e-10 8.94855651e-10 8.026258929e-10 4.881494063e-10 3.170149479e-10 9.513407505e-11 7.542781261e-29 1.478590988e-10 5.796035393e-18 1.567241425e-10 1.11368118e-10 1.249388838e-10 1.368040004e-10 9.575126362e-11 1.573357225e-10 1.839333891e-10 1.992891256e-10 1.62501586e-10 1.108682274e-10 2.111545722e-10 1.277951945e-10 1.479925515e-11 1.221080775e-10 9.776477653e-11 1.234484498e-13 1.617646688e-10 0 2.827077272e-11 1.77724926e-10 1.118432883e-10 9.120876314e-11 3.36737789e-10 4.13280585e-10 8.590982615e-10 9.809589658e-10 8.11897139e-10 8.799286668e-10 9.298975815e-10 9.759944389e-10 6.726182481e-10 5.910187737e-10 5.613507138e-10 5.267318562e-10 5.08948529e-10 2.645182635e-10 1.262138202e-10 3.185235128e-10 1.321206308e-10 1.157064129e-10 2.597000423e-10 4.141144259e-10 3.763552803e-10 5.483898662e-10 4.581422271e-10 5.60670874e-10 5.097409379e-10 6.449557668e-10 4.818412449e-10 6.783528121e-10 5.227951066e-10 6.477855406e-10 7.787355802e-10 7.900109236e-10 6.397635643e-10 7.302925281e-10 1.019964371e-09 5.4576609e-10 4.045012303e-10 2.504194085e-10 2.063137846e-10 1.584422433e-10 1.245056934e-10 2.373984479e-10 2.95249043e-10 3.969096269e-10 2.554298911e-10 4.831180571e-10 3.323610012e-10 3.338986469e-10 4.14846846e-10 3.847811127e-10 5.197111946e-10 4.452741483e-10 5.329500533e-10 4.237405012e-10 5.793439206e-10 3.721168454e-10 6.650774996e-10 4.124851922e-10 2.997018521e-10 3.68130571e-10 4.074909111e-10 2.549939603e-10 2.087589716e-10 3.42329675e-10 2.287675618e-10 2.576427522e-10 3.752296839e-10 2.754040625e-10 4.494422168e-10 1.488931171e-10 3.417798123e-10 2.229514416e-10 5.31583969e-10 2.731989168e-10 2.187286668e-10 2.443338099e-10 2.456748086e-10 2.814645446e-10 3.078995638e-10 2.501835285e-10 3.720965329e-10 3.413605158e-10 4.197858825e-10 1.999333973e-10 3.080607147e-10 6.942958899e-10 2.621301799e-10 3.748993088e-10 4.295257442e-10 3.364996065e-10 4.02041167e-10 2.668166577e-10 2.095762246e-10 3.339640506e-10 3.209907734e-10 2.882636917e-10 3.000163134e-10 2.812394977e-10 2.333793722e-10 1.389055115e-10 2.742175737e-10 1.406874298e-10 1.512677113e-10 2.223275263e-10 1.553751699e-10 2.382600845e-10 2.313507626e-10 1.192010864e-10 1.707302171e-10 3.289996973e-10 1.254691812e-10 1.39459455e-10 9.743123402e-11 1.272587382e-10 3.202715285e-10 1.730339244e-10 2.940606921e-10 3.232436467e-10 1.88631898e-10 3.580449698e-10 2.827739305e-10 1.371636581e-10 1.884551412e-10 2.499650504e-10 3.905127835e-10 2.834318943e-10 1.139594571e-10 1.507572944e-10 1.863927158e-10 1.554297608e-10 1.176835973e-10 2.488515233e-10 4.053700717e-10 4.098861133e-10 9.633173512e-11 9.554895285e-11 8.769542538e-11 +1.551073735e-10 9.065503205e-11 1.237063808e-10 3.15656016e-10 1.393306978e-10 1.123297553e-10 2.233880308e-10 1.382704607e-10 5.033337727e-11 1.85182805e-10 3.255155576e-10 1.586964215e-10 1.802129288e-10 5.547490455e-11 1.391400744e-10 3.665963007e-10 2.895526492e-10 1.319191044e-10 1.85803343e-10 1.256081739e-10 3.407254581e-10 4.512995077e-10 1.420782096e-10 2.82268068e-10 2.522011809e-10 1.905829906e-10 1.859344212e-10 2.235923878e-10 1.471935117e-10 2.79804632e-10 3.51201167e-10 3.031019648e-10 1.562881363e-10 3.8434203e-10 2.072198365e-10 2.479457763e-10 1.5014909e-10 1.82813496e-10 2.996721693e-10 2.987894154e-10 2.32295667e-10 3.145975472e-10 4.886428163e-10 2.752011403e-10 4.10398934e-10 3.592047578e-10 3.584293752e-10 1.620165121e-10 4.639831011e-10 2.239248511e-10 2.717338832e-10 3.488328609e-10 3.974153635e-10 1.727425167e-10 4.048006675e-10 2.57630837e-10 3.584556296e-10 1.732715494e-10 2.37885671e-10 3.539714467e-10 1.163932351e-10 3.695647718e-10 3.434764282e-10 2.116796243e-10 3.946908665e-10 2.724828384e-10 2.230524077e-10 2.098982213e-10 3.412679592e-10 3.004647002e-10 3.837769053e-10 4.123763705e-10 4.192264816e-10 3.349412409e-10 3.404165544e-10 2.956905626e-10 2.312285006e-10 2.020166359e-10 3.966843742e-10 5.118112686e-10 3.79610364e-10 3.798475966e-10 5.567195165e-10 4.892058649e-10 4.063896094e-10 3.359289045e-10 4.585319155e-10 4.171717213e-10 3.433237094e-10 4.70521002e-10 3.543688961e-10 4.02731105e-10 3.965172591e-10 2.165817081e-10 2.276183e-10 2.449166418e-10 2.17600416e-10 1.56414418e-10 2.156117998e-10 2.878640124e-10 4.117028195e-10 7.000317961e-10 6.085727362e-10 5.219261651e-10 6.313186739e-10 7.932408612e-10 4.666691866e-10 5.642526957e-10 6.783418897e-10 7.304825209e-10 6.693172869e-10 7.480455849e-10 6.127155423e-10 4.966940435e-10 4.347728768e-10 6.457815075e-10 4.094011706e-10 4.334618034e-10 2.823017455e-10 1.957517851e-10 1.102999853e-10 0 5.52092125e-11 3.011342643e-10 4.450007783e-10 4.962880652e-10 5.13346691e-10 4.562116627e-10 6.866009143e-10 9.227661901e-10 1.075686687e-09 9.18741299e-10 8.945892894e-10 9.212438204e-10 8.80563074e-10 5.786382954e-10 5.113554643e-10 1.790464649e-10 1.397783251e-18 7.461807544e-11 1.192920574e-10 1.660850598e-10 1.590526225e-10 4.178788602e-11 1.866934585e-10 1.778898182e-10 1.426468944e-10 7.873878416e-11 1.358834416e-10 1.159502994e-10 1.395098481e-10 2.088319061e-10 1.217743503e-10 2.061987403e-10 1.499611436e-10 1.503241085e-10 0 1.405592407e-10 1.339525859e-10 1.200170909e-10 1.872678645e-10 0 1.719782501e-10 3.609070779e-10 6.95803264e-10 7.742114398e-10 9.051658606e-10 7.325922358e-10 9.526081062e-10 9.478832697e-10 8.312637371e-10 6.986877298e-10 6.427311182e-10 4.27247488e-10 5.111480968e-10 5.091687157e-10 3.141699874e-10 1.07115857e-10 1.504509077e-10 1.326205247e-10 2.106423631e-10 3.423736515e-10 4.692270174e-10 4.787635451e-10 4.821244357e-10 5.025227849e-10 4.261072035e-10 5.893868258e-10 5.079786237e-10 7.161306197e-10 5.402755866e-10 4.73795245e-10 7.307618163e-10 5.041352933e-10 6.191552213e-10 8.173163254e-10 5.994587795e-10 6.54959472e-10 7.066625893e-10 7.807690009e-10 2.322256406e-10 2.340992895e-10 1.814173655e-10 8.508525286e-11 3.111414144e-10 4.639569009e-10 3.185533144e-10 2.797063663e-10 4.216957407e-10 4.851321418e-10 4.396812251e-10 4.388367679e-10 3.607559426e-10 4.634558755e-10 3.312337624e-10 5.652092469e-10 4.302302273e-10 4.660932934e-10 4.099934715e-10 3.17954193e-10 3.623322626e-10 4.382879987e-10 2.805307184e-10 3.074004838e-10 4.750623455e-10 3.196844981e-10 2.8511918e-10 1.928247149e-10 2.511537237e-10 4.012963862e-10 3.815379305e-10 3.495061197e-10 2.974664569e-10 3.898507976e-10 2.790208126e-10 3.636600305e-10 3.584522862e-10 3.815931925e-10 1.841789214e-10 2.082539871e-10 2.279322292e-10 2.109142716e-10 1.721361027e-10 3.378045892e-10 2.212979362e-10 2.781004366e-10 1.482119173e-10 3.018841193e-10 2.652214081e-10 3.844221935e-10 1.158524766e-10 2.646424867e-10 3.09125869e-10 3.310425741e-10 2.825879717e-10 3.635837401e-10 2.484710076e-10 2.899052913e-10 3.307439958e-10 3.198541542e-10 1.470749449e-10 2.091545904e-10 3.44404376e-10 2.095516347e-10 1.874883333e-10 8.835734254e-11 4.345450731e-10 3.968106822e-10 1.706841724e-10 1.736713564e-10 2.172689483e-10 2.414508935e-10 2.679610021e-10 1.896296423e-10 2.99774001e-10 1.706613959e-10 1.288600502e-10 1.388072319e-10 2.817611853e-10 2.608082243e-10 4.290033635e-10 2.370501247e-10 1.034485019e-10 3.478631375e-10 3.21432019e-10 8.29977574e-11 2.068083441e-10 1.295314774e-10 2.671163496e-10 1.730626381e-10 1.736188932e-10 3.976175986e-10 2.167647355e-10 1.72188989e-10 3.858298185e-10 1.608267244e-10 1.294567027e-10 1.668513435e-10 2.221894813e-10 2.870123796e-10 +3.464076105e-10 6.268596216e-11 2.343796728e-10 1.627430424e-10 1.393817192e-10 2.998504716e-10 2.425940218e-10 1.548051744e-10 2.704342603e-10 8.171328304e-11 1.725722868e-10 1.733221767e-10 3.526760547e-10 2.126250003e-10 2.536790299e-10 2.132529896e-10 2.075578596e-10 2.261598743e-10 3.579862649e-10 2.541988288e-10 2.458623202e-10 8.180139847e-11 3.290752675e-10 1.297960256e-10 1.799790358e-10 2.728980637e-10 3.879200256e-10 1.913244742e-10 1.063497318e-10 1.586782891e-10 2.456487855e-10 2.347438056e-10 9.274467244e-11 2.666060413e-10 2.340249883e-10 1.729637316e-10 1.060976188e-10 1.8739643e-10 3.061593444e-10 1.228351849e-10 2.078456243e-10 3.886892404e-10 2.295109354e-10 4.012309518e-10 2.028517771e-10 1.916399241e-10 2.515564593e-10 4.369243562e-10 1.775421224e-10 2.739772961e-10 2.106686656e-10 1.20043774e-10 2.194618836e-10 2.098647831e-10 2.566299185e-10 3.412233729e-10 2.441120431e-10 3.465182782e-10 3.967185451e-10 4.111769835e-10 1.467411213e-10 1.767374558e-10 3.83310914e-10 3.029234836e-10 3.09249486e-10 2.260274015e-10 2.981901823e-10 2.606619318e-10 3.325441299e-10 3.09359621e-10 2.853511311e-10 2.408305721e-10 3.099423726e-10 3.035610823e-10 3.62895654e-10 4.075218814e-10 3.458324807e-10 3.739407833e-10 2.108869333e-10 2.844182895e-10 3.026268417e-10 6.332819771e-10 4.470393773e-10 4.460805972e-10 4.364291885e-10 4.480681486e-10 5.820270819e-10 3.677307891e-10 5.64698876e-10 4.036239803e-10 5.574743179e-10 2.668325397e-10 4.364790408e-10 4.988171312e-10 3.645300542e-10 3.286061085e-10 2.916955219e-10 1.536597297e-10 2.853843356e-10 2.504181703e-10 2.722298335e-10 8.853595902e-10 6.525078777e-10 4.530648858e-10 6.436741625e-10 6.769057188e-10 4.393934612e-10 6.081616826e-10 7.802461623e-10 8.525498521e-10 8.327075297e-10 6.771422976e-10 4.47606685e-10 4.01816279e-10 4.292682071e-10 3.875550198e-10 5.082014319e-10 3.745792357e-10 4.052250811e-10 1.762155078e-10 1.371240183e-10 8.794252232e-11 1.482906695e-10 1.837847073e-10 5.454410967e-10 4.771409344e-10 6.553616941e-10 5.397760182e-10 5.349996066e-10 7.634022905e-10 9.324301931e-10 1.083494766e-09 9.287702009e-10 9.300708763e-10 9.917274731e-10 7.485748506e-10 6.818839852e-10 3.653251071e-10 1.738567789e-10 1.924189728e-10 1.642026161e-10 1.895920257e-10 1.346675807e-10 1.828719198e-10 1.32546654e-10 1.434800282e-10 9.290098503e-11 7.9003869e-13 1.626807141e-10 1.163808239e-10 1.217496124e-10 0 1.624665436e-10 1.734118606e-10 2.919707134e-11 1.239750739e-10 2.077485302e-10 2.188396467e-20 1.646043816e-10 1.327357888e-10 1.044800822e-10 2.672976081e-10 4.874887787e-10 7.133491224e-10 8.448121219e-10 9.596207538e-10 7.994860386e-10 1.097098625e-09 1.065417604e-09 1.071876005e-09 8.695107897e-10 5.715466752e-10 4.962153203e-10 5.250226179e-10 5.060604422e-10 4.460869823e-10 2.584331549e-10 1.400485473e-10 1.895085758e-10 2.476726852e-10 2.036998371e-10 3.862509382e-10 5.15355091e-10 4.934002579e-10 4.771007293e-10 4.610245669e-10 3.798313425e-10 5.778520242e-10 6.991278617e-10 4.998813584e-10 6.186666294e-10 6.811385646e-10 4.808526263e-10 6.971080534e-10 5.808578406e-10 8.009520096e-10 6.281138347e-10 3.020021703e-10 7.390145382e-10 3.787793826e-10 3.192877203e-10 2.445769697e-10 2.132491356e-10 2.029645896e-10 3.863914833e-10 3.240185456e-10 3.32905898e-10 4.671978327e-10 3.837938633e-10 3.804368962e-10 2.466080618e-10 4.888321527e-10 4.057472789e-10 3.934924475e-10 4.235032505e-10 4.568424566e-10 4.383470085e-10 4.817630048e-10 3.399533921e-10 5.584898121e-10 2.791463961e-10 3.045541864e-10 3.328595854e-10 1.564831418e-10 3.087148674e-10 2.398921681e-10 3.285557714e-10 2.836507712e-10 3.409454166e-10 3.74190018e-10 3.860436907e-10 3.142576139e-10 2.711887926e-10 4.223162194e-10 2.431408756e-10 3.382094131e-10 2.79107339e-10 4.29266702e-10 2.427549114e-10 3.565177051e-10 1.987334304e-10 3.489592212e-10 1.262217691e-10 4.189383269e-10 2.168118174e-10 2.288382465e-10 2.689559087e-10 2.376530488e-10 3.510667039e-10 4.221211768e-10 2.667047468e-10 1.868748221e-10 1.978358828e-10 2.449405045e-10 1.683981174e-10 2.471690085e-10 3.3667758e-10 2.677542372e-10 3.300448532e-10 1.92680337e-10 1.052665131e-10 1.920277842e-10 1.434678559e-10 3.556260696e-10 1.630486829e-10 2.800043647e-10 1.350611043e-10 2.953507962e-10 1.937109739e-10 1.736504198e-10 3.479544075e-10 1.793740978e-10 4.437915061e-10 2.236527156e-10 3.094932653e-10 7.900845495e-11 4.606088275e-10 2.954430807e-10 4.154251007e-10 2.019724832e-10 1.508685631e-10 1.352541498e-10 8.721793184e-11 1.368401934e-10 2.428458419e-10 1.435531242e-10 2.847226629e-10 4.279646375e-10 1.860345033e-10 1.796492669e-10 5.509984997e-11 3.059093019e-10 1.836513745e-10 1.491623943e-10 9.978148931e-11 2.174741072e-10 2.709244433e-10 4.090402988e-10 1.286770047e-10 1.082169127e-10 +8.105697833e-11 1.947397457e-10 2.928737009e-10 3.685733905e-10 1.855215827e-10 3.225837019e-10 3.956678054e-10 8.806162196e-11 1.085766735e-10 1.440360917e-10 7.392127535e-11 1.848752081e-10 2.071478203e-10 1.461501793e-10 1.594199478e-10 1.42598977e-10 1.411859842e-10 1.713776576e-10 1.784989867e-10 2.098331344e-10 1.170209819e-10 1.988730673e-10 1.644908513e-10 3.033684831e-10 2.22949127e-10 2.09633339e-10 3.779250382e-10 1.249033604e-10 4.360150346e-10 9.083226014e-11 2.751448249e-10 1.207556958e-10 1.623300084e-10 1.076316143e-10 2.093358618e-10 1.528464173e-10 1.765653521e-10 1.714812652e-10 3.386257698e-10 1.280485526e-10 3.632375205e-10 2.108470324e-10 1.23925344e-10 3.843857094e-10 3.268248531e-10 3.946305183e-10 4.493588249e-10 3.080886178e-10 3.298653285e-10 3.657546773e-10 3.19480707e-10 2.845602111e-10 3.95263015e-10 2.921532397e-10 3.783505653e-10 2.907052753e-10 3.941942149e-10 2.140255973e-10 1.456684101e-10 2.999053222e-10 2.87080813e-10 1.721016578e-10 2.398973917e-10 2.353171406e-10 3.257473418e-10 2.578210042e-10 3.350122818e-10 2.373115812e-10 3.41316962e-10 3.577802348e-10 4.344784495e-10 3.784977396e-10 3.260318851e-10 2.293757718e-10 2.878675025e-10 3.573552307e-10 2.458715462e-10 2.008929968e-10 3.608273153e-10 3.99307567e-10 4.187004354e-10 3.899345565e-10 4.4593107e-10 5.252443392e-10 3.286262116e-10 4.935872327e-10 5.611866739e-10 4.356008632e-10 4.324607527e-10 3.908559404e-10 4.156897008e-10 4.816889602e-10 5.470946629e-10 4.212071642e-10 3.20904129e-10 2.461067412e-10 2.557573871e-10 3.030869945e-10 1.591730401e-10 2.503868074e-10 3.941605939e-10 5.650136289e-10 8.369277146e-10 5.378894438e-10 7.626813871e-10 4.268916848e-10 8.216082749e-10 5.187659696e-10 6.504794681e-10 5.689423383e-10 6.283380712e-10 6.962321809e-10 5.477725647e-10 4.875699739e-10 4.80202654e-10 5.881136371e-10 4.254164206e-10 4.71826744e-10 3.469564826e-10 2.672527619e-10 9.279459526e-11 2.632713731e-15 2.106267945e-13 2.157793582e-10 3.887168052e-10 5.35160256e-10 5.248079554e-10 5.76498449e-10 6.285414534e-10 7.278497359e-10 1.019922305e-09 1.034000454e-09 8.328821675e-10 1.138798757e-09 1.007506179e-09 9.129409324e-10 6.339345727e-10 5.195263229e-10 2.903854482e-10 1.272801972e-10 4.224597209e-11 1.179227445e-13 1.613723721e-10 1.656975799e-10 2.460768902e-10 1.037256911e-10 2.07027808e-33 1.184030084e-10 1.261967958e-10 1.412755445e-10 1.492260298e-10 1.652039611e-10 1.493779534e-18 9.326180997e-11 1.279745463e-10 1.786029915e-10 1.286667422e-10 2.328642106e-10 6.691101372e-11 1.67817575e-10 2.479419569e-10 3.035504031e-10 5.157570737e-10 5.62194763e-10 8.985654033e-10 7.882063907e-10 8.749559552e-10 1.021101208e-09 9.373754756e-10 9.827935823e-10 5.65408314e-10 5.25462341e-10 4.942210737e-10 5.054034672e-10 4.691910706e-10 3.32106046e-10 4.938759866e-13 2.049917573e-10 1.814360035e-10 1.035393945e-10 3.628789168e-10 4.312463045e-10 4.254283231e-10 5.747503826e-10 5.624247769e-10 5.317739076e-10 4.365654349e-10 5.394996126e-10 5.033883545e-10 7.913436893e-10 8.782271883e-10 5.845849539e-10 4.411634089e-10 7.867144595e-10 5.234979891e-10 1.050475092e-09 6.51446142e-10 6.053599145e-10 6.777792958e-10 3.830911335e-10 1.855109894e-10 3.823947394e-10 2.248260724e-10 2.267675845e-10 4.276171569e-10 3.885353527e-10 3.985561327e-10 3.356956123e-10 2.838001274e-10 2.668496474e-10 5.506247164e-10 3.855835032e-10 2.846921899e-10 3.428324614e-10 4.961548057e-10 5.550868419e-10 4.69176208e-10 4.280064457e-10 4.851159493e-10 4.494520388e-10 4.685491957e-10 3.439754477e-10 2.513090208e-10 5.266883113e-10 2.962064332e-10 3.051943638e-10 3.47452622e-10 3.359039419e-10 2.816158901e-10 1.659477834e-10 4.389649267e-10 2.198126847e-10 3.475267742e-10 2.111643818e-10 3.758036073e-10 2.2136857e-10 3.154204861e-10 2.390533839e-10 4.277515657e-10 2.586377367e-10 2.280519425e-10 2.938665355e-10 3.220190709e-10 2.878751549e-10 1.998121191e-10 3.380416994e-10 3.193549804e-10 3.169843135e-10 2.500836175e-10 1.955906173e-10 3.815372707e-10 2.016262629e-10 2.980399311e-10 2.665116449e-10 3.520080386e-10 1.93204037e-10 3.340658951e-10 2.447949937e-10 3.032492782e-10 3.137123795e-10 3.352736326e-10 1.979559858e-10 1.58297911e-10 1.801488636e-10 2.046228223e-10 2.657968397e-10 1.324044721e-10 2.050812107e-10 6.241351291e-11 2.005235701e-10 3.480483194e-10 2.46322282e-10 2.443102644e-10 1.885924475e-10 3.771863132e-10 1.255314574e-10 2.15687944e-10 2.385656927e-10 1.862740733e-10 1.727028887e-10 2.435175722e-10 2.443120013e-10 9.647669578e-11 1.211768094e-10 3.65496375e-10 3.711511715e-10 2.122629674e-10 3.243027405e-10 2.528461797e-10 1.155157925e-10 8.11912506e-11 1.231991475e-10 2.845078304e-10 2.205561523e-10 3.900019736e-10 1.136484558e-10 1.76775376e-10 1.055338279e-10 3.959446064e-10 1.587335545e-10 +1.918837748e-10 4.22450586e-10 7.961409728e-11 6.366955547e-11 9.450261305e-11 2.215044425e-10 2.100287952e-10 1.518792267e-10 1.688737418e-10 1.031567707e-10 1.253213218e-10 1.671745126e-10 1.127281534e-10 1.236154711e-10 5.311847315e-10 4.888268719e-11 4.555082972e-11 2.486032055e-10 7.785993126e-11 2.737237208e-10 2.329938603e-10 3.626190759e-10 1.395478627e-10 9.265290918e-11 1.64912347e-10 3.339684367e-10 2.42280047e-10 1.515887689e-10 1.076179377e-10 1.5530491e-10 2.217197647e-10 1.752866652e-10 3.014392087e-10 2.897431493e-10 9.948220962e-11 1.605585563e-10 2.578324415e-10 1.024730865e-10 2.39735202e-10 1.421644065e-10 2.652822588e-10 2.162084471e-10 3.067722934e-10 2.724683618e-10 2.388721429e-10 2.274466286e-10 2.571832491e-10 2.939835815e-10 2.824860467e-10 2.828828563e-10 3.680517494e-10 4.751041918e-10 1.921322333e-10 4.224393156e-10 4.402431674e-10 4.166863497e-10 2.485149846e-10 1.686241588e-10 2.065265025e-10 2.496310493e-10 2.927077526e-10 2.447420868e-10 3.71430236e-10 2.718686165e-10 3.201829981e-10 2.789085818e-10 2.606403155e-10 2.952660246e-10 3.18253371e-10 4.24392794e-10 3.607412066e-10 3.011255746e-10 2.783181738e-10 3.769370788e-10 3.163253157e-10 3.908892959e-10 3.886017486e-10 3.085105023e-10 2.812207277e-10 4.300448182e-10 3.73833561e-10 4.726447885e-10 4.521437562e-10 5.281290191e-10 3.311023685e-10 4.796506943e-10 4.019702088e-10 4.483822439e-10 5.99239641e-10 4.161484328e-10 4.401000105e-10 3.449927221e-10 3.221296241e-10 3.505569063e-10 3.789933085e-10 2.097392536e-10 4.20915569e-10 2.222706028e-10 2.687544915e-10 2.491797949e-10 2.283775744e-10 4.764236792e-10 5.991237954e-10 7.412345789e-10 9.208465416e-10 7.343172626e-10 7.916635734e-10 7.604672796e-10 5.91195308e-10 7.566826988e-10 8.684410114e-10 8.67413995e-10 5.353336742e-10 5.532408186e-10 6.731890165e-10 4.583967785e-10 3.430037726e-10 4.749901989e-10 4.191606617e-10 2.08139788e-10 1.519452512e-10 2.044464908e-10 0 1.010403304e-10 2.817898647e-10 4.059223007e-10 4.034871679e-10 5.936229849e-10 5.764848392e-10 5.269914665e-10 8.273630308e-10 9.466089675e-10 1.125355738e-09 9.915567669e-10 7.879807214e-10 9.025936185e-10 7.089344983e-10 4.579211437e-10 4.22900717e-10 3.416661741e-10 2.336143152e-10 1.392501905e-10 1.798448503e-10 2.069653157e-10 4.479813498e-11 1.373999586e-10 9.734439378e-11 1.425209651e-10 1.219889235e-10 1.353262483e-10 1.89386527e-10 1.362780154e-10 1.213735646e-10 6.94150236e-11 2.145432994e-10 1.825101518e-10 1.469473253e-10 3.049701414e-12 1.511835606e-10 2.235572757e-10 3.359756097e-10 5.412125806e-10 6.424081552e-10 7.088499261e-10 7.844760227e-10 8.860140112e-10 8.303902233e-10 8.910172882e-10 1.117885802e-09 8.905462264e-10 6.415440265e-10 5.333863373e-10 5.872635842e-10 5.55540168e-10 3.926763523e-10 1.546083414e-10 9.332368653e-11 2.280003054e-10 1.067914748e-10 1.131616596e-10 3.253875687e-10 3.983191601e-10 5.234016469e-10 5.333670174e-10 4.274094805e-10 4.439788531e-10 6.173399665e-10 4.622269452e-10 4.448657878e-10 8.643727214e-10 7.840505789e-10 7.337858733e-10 6.258973939e-10 7.55608659e-10 5.613712623e-10 4.631086547e-10 5.803086429e-10 6.510980999e-10 4.981412943e-10 2.666934539e-10 1.96788535e-10 3.870122283e-10 1.883947181e-10 3.017372375e-10 3.280467317e-10 3.903344442e-10 2.913988128e-10 3.878494982e-10 5.475271975e-10 4.272944759e-10 5.107283702e-10 2.794035813e-10 4.32030862e-10 4.83588058e-10 3.314285295e-10 3.796269936e-10 4.339815592e-10 5.255874162e-10 4.962048884e-10 3.358584716e-10 2.149244547e-10 2.584624869e-10 2.889236281e-10 3.981958856e-10 4.68517433e-10 1.627123338e-10 2.310506728e-10 2.741956323e-10 3.226949437e-10 3.604815097e-10 3.493605408e-10 2.707553616e-10 3.062836491e-10 3.556753941e-10 1.628861808e-10 2.029783414e-10 3.22569827e-10 4.234460526e-10 3.269612655e-10 3.189918519e-10 3.426736149e-10 2.807992672e-10 2.829420082e-10 2.840723415e-10 2.455024289e-10 2.496138376e-10 2.003579888e-10 4.594191288e-10 4.139012346e-10 2.000912348e-10 2.42101404e-10 2.280142906e-10 2.536692858e-10 4.154587265e-10 3.174793307e-10 3.739526322e-10 4.02004116e-10 3.169848135e-10 2.853707823e-10 1.730308908e-10 3.245744652e-10 3.331115454e-10 1.4723177e-10 1.563531286e-10 1.468934739e-10 1.677874822e-10 2.13307959e-10 3.245853646e-10 1.73116038e-10 1.176607664e-10 9.715837341e-11 3.358242192e-10 2.47127854e-10 1.385284732e-10 2.408016004e-10 2.164625564e-10 4.155505098e-10 1.566441573e-10 6.595446017e-11 8.124593303e-11 1.358273066e-10 8.958331473e-11 1.319766497e-10 1.619579181e-10 1.282531999e-10 1.380833236e-10 1.425926786e-10 8.337075718e-11 1.17474108e-10 3.1274542e-10 2.852620066e-10 2.049011534e-10 7.541272149e-11 1.910731872e-10 2.102705191e-10 3.072120343e-10 3.412198352e-10 1.187744292e-10 1.753718569e-10 2.056352078e-10 +1.061441029e-10 1.254680882e-10 1.406105126e-10 1.396810618e-10 3.464013198e-10 1.809081008e-10 1.919807588e-10 1.183603723e-10 8.511990528e-11 4.402573764e-11 5.009487067e-11 2.022088117e-10 1.982326979e-10 8.859122504e-11 2.772018865e-10 2.237054031e-10 1.311237271e-10 3.412777929e-10 2.099941612e-10 5.843414087e-11 1.205298484e-10 3.633231861e-10 2.968787787e-10 4.016060887e-10 2.179399271e-10 3.44889407e-10 2.885533246e-10 1.819793198e-10 2.582781287e-10 2.267944438e-10 2.874992206e-10 1.244792534e-10 3.034583871e-10 2.074342541e-10 2.171375682e-10 1.175057155e-10 2.143021412e-10 1.740966913e-10 1.350971815e-10 9.59479135e-11 2.098365521e-10 1.936341423e-10 4.7001779e-10 2.450520518e-10 2.749769345e-10 3.459462093e-10 4.230533115e-10 2.753768421e-10 2.925123376e-10 3.391267633e-10 4.844725248e-10 5.047829431e-10 3.245720038e-10 2.014514714e-10 3.309882246e-10 3.127699658e-10 5.454295223e-10 4.004456165e-10 2.691313916e-10 3.404204156e-10 1.323755656e-10 2.820313695e-10 3.315530658e-10 3.242879915e-10 1.897389858e-10 2.555993503e-10 2.887497388e-10 1.819168124e-10 3.019235529e-10 3.015573941e-10 3.220925922e-10 3.552421646e-10 3.512636042e-10 3.533077516e-10 1.754057347e-10 3.886425528e-10 2.632333662e-10 3.282084369e-10 3.627984929e-10 4.047951778e-10 4.837401346e-10 4.926490864e-10 3.808283172e-10 2.794276823e-10 6.073315054e-10 4.137956595e-10 3.957296958e-10 4.358434814e-10 4.249181237e-10 2.722006004e-10 3.138731831e-10 2.496608355e-10 3.805582515e-10 4.610569324e-10 3.059488287e-10 1.673009076e-10 2.549308165e-10 1.234551882e-10 1.360016236e-10 2.782397908e-10 2.467309604e-10 9.798048433e-10 7.911786592e-10 5.376588585e-10 7.1219368e-10 5.244135797e-10 4.996467383e-10 6.605332767e-10 7.30793875e-10 5.862119669e-10 7.804938072e-10 5.245189447e-10 7.548842497e-10 3.585800919e-10 6.184145226e-10 4.944603113e-10 4.121791379e-10 3.586322458e-10 3.984056449e-10 2.765363689e-10 1.194904511e-10 1.170651208e-10 1.685300001e-10 1.277380049e-10 2.355436901e-10 5.411643257e-10 5.108202355e-10 4.188184753e-10 5.207988774e-10 5.344923397e-10 7.979900641e-10 9.481537729e-10 9.48739475e-10 1.148281129e-09 8.747061296e-10 8.290767011e-10 8.491854281e-10 6.604368678e-10 6.199304453e-10 3.858326861e-10 1.752765444e-10 9.377241197e-11 8.879732856e-11 8.361322308e-11 1.479998484e-10 1.047798034e-10 1.203459461e-10 1.96225533e-10 1.280336868e-10 1.370874544e-10 1.332261592e-10 1.915988723e-10 1.130277542e-10 4.227315239e-12 1.375902496e-10 0 1.248592793e-10 2.627554212e-10 1.583591095e-10 2.071847937e-10 4.754308543e-10 7.032619677e-10 8.118655382e-10 8.56177396e-10 8.333099327e-10 9.12394753e-10 9.884663313e-10 9.27997154e-10 9.973968218e-10 8.601470356e-10 5.70534441e-10 4.302809559e-10 5.257076531e-10 5.008530323e-10 3.842672528e-10 1.652143425e-10 1.1514899e-10 1.650582675e-10 2.247295105e-10 1.969059928e-10 2.18722842e-10 4.441990218e-10 5.481614167e-10 2.891117767e-10 4.597756254e-10 5.850333508e-10 4.276183585e-10 6.773413465e-10 6.505826657e-10 9.771822446e-10 6.757339119e-10 7.777111715e-10 6.513504255e-10 4.931969032e-10 4.40805879e-10 7.517282395e-10 8.244949496e-10 6.421226302e-10 4.394449141e-10 5.068550059e-10 3.118925639e-10 2.691900289e-10 3.097376465e-10 2.278459977e-10 2.79524441e-10 4.423755623e-10 4.338809792e-10 3.30344726e-10 5.0459921e-10 1.871317935e-10 3.948781728e-10 5.625915931e-10 5.923177721e-10 3.868027582e-10 4.83107608e-10 6.856009583e-10 4.686875146e-10 5.264767513e-10 5.841686148e-10 3.911368146e-10 4.158162127e-10 2.717200483e-10 4.178141845e-10 2.141185442e-10 3.860713502e-10 2.987502467e-10 2.556332091e-10 2.752166682e-10 2.292802569e-10 3.572843307e-10 2.596487633e-10 3.783771299e-10 3.585701385e-10 2.420223041e-10 2.548455526e-10 2.437255771e-10 4.04828625e-10 4.343808045e-10 4.582637549e-10 3.475889491e-10 2.480950404e-10 2.496332788e-10 2.335582785e-10 3.019438651e-10 4.185932568e-10 3.932777678e-10 2.345830055e-10 3.92464233e-10 2.811561263e-10 2.607664741e-10 2.670171003e-10 2.157758358e-10 3.153608692e-10 3.220422529e-10 3.008184298e-10 2.232155345e-10 3.505608489e-10 1.063227814e-10 1.865024915e-10 1.695083843e-10 2.236584844e-10 1.355519701e-10 1.852355401e-10 1.288972273e-10 1.764477618e-10 1.348679715e-10 1.996427301e-10 5.858547392e-11 2.118129136e-10 4.01203242e-10 1.742899335e-10 1.631566464e-10 1.653367487e-10 4.043254118e-10 3.296235508e-10 1.429804702e-10 3.026015106e-10 1.249565521e-10 2.763690793e-10 1.385561986e-10 1.263653178e-10 1.314435507e-10 2.142809128e-10 1.728249503e-10 5.029498544e-11 3.238840827e-10 2.469755572e-10 2.609818163e-10 1.901412811e-10 4.208907235e-11 2.597597045e-10 7.586255469e-11 2.701158815e-10 1.131078075e-10 1.844281806e-10 1.056299123e-10 9.12541111e-11 3.217006476e-10 3.408779095e-10 1.339967554e-10 +9.104421097e-11 2.224203353e-10 8.795290429e-11 1.989035257e-10 3.126733993e-10 2.034195105e-10 2.003348699e-10 2.676006349e-10 3.047479852e-10 1.160061544e-10 4.112886713e-10 3.792562917e-10 1.425914245e-10 1.343747841e-10 2.497073388e-10 2.248123136e-10 3.159822059e-10 1.810096753e-10 3.300748711e-10 1.374264272e-10 2.670798387e-10 3.334474425e-10 2.227916098e-10 9.367611314e-11 1.819067673e-10 1.681612417e-10 2.540250035e-10 2.272651911e-10 1.610644102e-10 2.330061982e-10 1.822557288e-10 1.741309922e-10 4.061755725e-10 1.698514362e-10 1.625214664e-10 1.483576574e-10 1.676183137e-10 2.457874941e-10 3.125917438e-10 3.860061693e-10 2.695795692e-10 2.74590184e-10 3.890797511e-10 2.897653593e-10 4.84841902e-10 4.156831979e-10 2.362091195e-10 2.687355256e-10 3.170963847e-10 2.149737249e-10 2.764279361e-10 5.603589802e-10 1.889565104e-10 3.199778281e-10 5.191206205e-10 4.254936446e-10 2.286348489e-10 1.14273864e-10 1.970180331e-10 2.572117149e-10 1.588642359e-10 3.182743449e-10 2.61768467e-10 3.691962432e-10 3.945840699e-10 2.108723229e-10 3.441680817e-10 3.836626254e-10 2.140256756e-10 4.164856657e-10 5.716197418e-10 2.362260786e-10 2.501337701e-10 3.143155923e-10 2.805108087e-10 3.244105417e-10 2.774770737e-10 2.62168502e-10 4.273076356e-10 3.097192654e-10 5.488246602e-10 3.791755624e-10 4.53534558e-10 3.832574908e-10 5.617669168e-10 3.513528292e-10 4.263164956e-10 3.988796765e-10 3.629756704e-10 3.421134364e-10 2.853868312e-10 3.901414824e-10 4.024251601e-10 3.811134183e-10 3.499521039e-10 3.18843745e-10 2.548213597e-10 1.099891075e-10 2.58225801e-10 3.306823633e-10 2.855158988e-10 5.206547258e-10 7.520259649e-10 7.973498177e-10 7.508689207e-10 6.86177783e-10 3.914436364e-10 6.132190617e-10 7.433170538e-10 7.498755311e-10 8.429421522e-10 7.534981033e-10 6.00523904e-10 6.018240899e-10 5.951032231e-10 3.476532832e-10 4.837337226e-10 5.855336446e-10 4.511891437e-10 3.006607059e-10 2.427256174e-10 2.215401001e-12 8.587387967e-11 1.631540144e-10 1.688284925e-10 3.639160842e-10 5.76924575e-10 4.966302101e-10 4.121679383e-10 5.55780231e-10 5.269281711e-10 8.789852477e-10 7.378525896e-10 1.044155464e-09 9.436461116e-10 8.615140423e-10 1.07872882e-09 9.339830891e-10 6.856269865e-10 6.266685939e-10 3.683123241e-10 1.366279397e-10 1.745841789e-10 7.779003703e-11 1.488179436e-10 2.372621104e-10 1.602107322e-10 1.992950511e-10 1.379400374e-10 8.226541432e-11 1.714489085e-10 2.241294132e-10 1.335871671e-10 7.061057887e-11 1.88669758e-10 1.297370614e-10 2.034895259e-10 1.704340134e-10 1.935542168e-10 3.308332724e-10 5.654283084e-10 7.122096839e-10 6.85485743e-10 9.294476793e-10 9.475324401e-10 8.278580535e-10 1.042738048e-09 1.043518122e-09 8.052997263e-10 8.392532931e-10 6.121295904e-10 5.995289766e-10 5.357483701e-10 5.548474741e-10 3.770936468e-10 2.567099423e-10 1.178522893e-10 1.395774964e-10 6.438075969e-11 2.280232147e-10 3.558603367e-10 4.419237238e-10 3.372772152e-10 4.680263646e-10 4.763998394e-10 4.136176873e-10 6.391679729e-10 5.69535473e-10 6.134720375e-10 6.895767724e-10 6.252745881e-10 8.494534925e-10 7.47168725e-10 6.870132302e-10 5.756833628e-10 6.133266279e-10 4.231795513e-10 6.944192775e-10 5.134528499e-10 6.977078878e-10 2.65729347e-10 1.333341431e-10 2.293024497e-10 1.997030484e-10 2.097510272e-10 4.362736636e-10 4.030290939e-10 3.85500742e-10 5.058952472e-10 3.126602525e-10 4.1078791e-10 4.502346021e-10 5.40973446e-10 4.698820486e-10 3.86572741e-10 5.12503813e-10 3.99646546e-10 3.754500722e-10 5.528049666e-10 4.458845071e-10 3.896661911e-10 2.048950704e-10 3.589316772e-10 3.848008428e-10 3.094842057e-10 3.36440369e-10 3.720724242e-10 3.619575423e-10 3.951851013e-10 3.494650545e-10 3.674208242e-10 4.141920081e-10 3.071136684e-10 2.30936239e-10 3.120782987e-10 3.093255364e-10 2.984430673e-10 4.470375634e-10 2.55631397e-10 2.103133417e-10 2.05559424e-10 3.587807043e-10 3.671949602e-10 1.887492053e-10 2.284595073e-10 3.667600601e-10 2.545493594e-10 3.641479683e-10 2.911517084e-10 2.321257149e-10 2.23879915e-10 2.374053524e-10 3.054294912e-10 2.483336665e-10 4.54821672e-10 5.330249221e-10 3.651129461e-10 2.803877287e-10 1.907950953e-10 4.342206527e-10 2.225678839e-10 2.362666795e-10 4.019884835e-10 3.548370554e-10 1.639276214e-10 1.036083151e-10 1.820297288e-10 1.115317428e-10 1.147578553e-10 3.053855311e-10 1.556526726e-10 3.262147346e-10 1.40853087e-10 2.130487017e-10 3.113691246e-10 1.988279358e-10 2.662402468e-10 2.337911475e-10 1.720007347e-10 1.310820239e-10 8.157538764e-11 1.005729871e-10 1.290805992e-10 5.28320082e-10 1.785390369e-10 1.298659923e-10 1.865232577e-10 1.659206242e-10 1.61566144e-10 1.262790966e-10 1.111508906e-10 1.510001465e-10 1.577186024e-10 2.566537099e-10 1.900058995e-10 2.133669286e-10 3.699427082e-10 1.145086362e-10 4.048588957e-10 2.146637228e-10 +2.523780938e-10 3.050863638e-10 1.685742573e-10 1.025244592e-10 2.210197789e-10 2.302185998e-10 8.152689659e-11 2.779571782e-10 2.543461927e-10 1.226422313e-10 3.149306557e-10 2.065632577e-10 1.737226155e-10 1.609403677e-10 1.489486382e-10 2.788536143e-10 4.933099223e-10 7.995478096e-11 1.817797332e-10 1.318489845e-10 1.70405532e-10 9.779516103e-11 1.503755314e-10 2.573885599e-10 1.886044231e-10 2.114231209e-10 1.492372837e-10 2.333084104e-10 8.892252008e-11 1.033828542e-10 2.667476432e-10 3.050993199e-10 1.196399296e-10 1.687433577e-10 4.332594844e-10 3.098563358e-10 1.578889821e-10 1.812346095e-10 1.743477389e-10 2.29274056e-10 3.651979987e-10 2.043193291e-10 3.121036934e-10 1.97402157e-10 3.299795808e-10 2.995007534e-10 2.821318606e-10 2.103366403e-10 2.381850724e-10 2.532798088e-10 3.484097999e-10 1.75977272e-10 3.827729225e-10 2.93733781e-10 2.308948753e-10 3.288203315e-10 3.27901022e-10 3.938199793e-10 3.627141405e-10 2.414735316e-10 3.936775792e-10 2.33298616e-10 2.778263571e-10 1.773044158e-10 3.045200827e-10 2.299804736e-10 3.058139761e-10 2.500163449e-10 4.78110961e-10 4.059051294e-10 2.575743175e-10 2.260653678e-10 3.258273553e-10 2.879116908e-10 2.279958431e-10 2.943645067e-10 2.95579062e-10 2.453075196e-10 4.567560756e-10 3.720149657e-10 4.001616067e-10 3.48903829e-10 4.362873928e-10 3.456838339e-10 3.975178265e-10 3.943894892e-10 4.447090631e-10 5.684956379e-10 3.112183316e-10 4.608238778e-10 3.887620987e-10 2.851419138e-10 2.83049181e-10 3.445905226e-10 4.327049203e-10 3.031285695e-10 1.86089183e-10 1.317571141e-10 1.916340141e-10 2.311870756e-10 5.24672706e-10 6.650249387e-10 5.739162765e-10 5.572021234e-10 6.869431269e-10 7.882136476e-10 6.327763993e-10 4.86543388e-10 6.176595998e-10 4.664822171e-10 8.103058065e-10 6.381692787e-10 5.68817597e-10 4.885291225e-10 4.112395688e-10 4.347380772e-10 4.834393545e-10 4.723334576e-10 4.440624863e-10 3.686674035e-10 1.822999729e-10 2.557595367e-10 8.166260408e-11 8.403168198e-11 9.454784057e-11 3.097189502e-10 4.217748679e-10 5.346350172e-10 5.171482123e-10 6.669623749e-10 4.298130214e-10 8.185057726e-10 8.396843119e-10 1.031757117e-09 9.3922639e-10 8.655181075e-10 9.948996868e-10 9.352661154e-10 9.074173825e-10 6.584580207e-10 5.160042395e-10 3.465893567e-10 2.407622657e-10 1.342066386e-10 8.568151033e-11 1.852251014e-10 1.525807532e-10 1.183817443e-10 1.628071886e-10 6.941472461e-14 2.087036061e-10 1.358761383e-10 1.655454774e-26 0 1.567422497e-10 2.305225499e-10 2.736677059e-10 2.052092138e-10 3.073068592e-10 3.701286801e-10 6.14285215e-10 7.622760565e-10 9.038473148e-10 6.084289981e-10 9.493211559e-10 9.624686119e-10 1.007296845e-09 9.274649784e-10 6.451983751e-10 6.933689387e-10 5.158138413e-10 6.922685378e-10 4.551870731e-10 5.728181865e-10 2.283598106e-10 1.625303496e-10 8.683700342e-11 1.344429196e-10 1.659259888e-10 2.760893183e-10 4.212205743e-10 4.484052487e-10 4.363254538e-10 4.685467721e-10 4.637318321e-10 3.730663388e-10 5.438532387e-10 7.316885544e-10 5.741386408e-10 7.945713091e-10 6.827773212e-10 4.785467165e-10 6.500697523e-10 4.463444021e-10 6.75353116e-10 7.265056757e-10 5.502392145e-10 5.970616639e-10 3.84622134e-10 2.833141484e-10 2.406369241e-10 3.180650258e-10 2.683444444e-10 2.457659343e-10 2.150778303e-10 4.268739294e-10 3.139749582e-10 4.12211023e-10 3.587741045e-10 3.641538635e-10 3.921973965e-10 4.663819062e-10 5.458025156e-10 4.507161537e-10 5.07224067e-10 3.658717714e-10 4.012492985e-10 3.955968904e-10 4.175665469e-10 4.897447632e-10 2.886015257e-10 4.110892015e-10 3.287791102e-10 3.015505042e-10 1.615625765e-10 2.923738208e-10 3.406662643e-10 4.624109576e-10 4.336057148e-10 2.477524092e-10 3.606192392e-10 1.745915358e-10 2.38508859e-10 3.970844396e-10 3.532128528e-10 3.081832672e-10 3.879252482e-10 4.408906415e-10 2.968940154e-10 2.653613579e-10 1.916316874e-10 5.145481418e-10 3.971104681e-10 2.108335328e-10 3.778109084e-10 3.397046297e-10 1.977388418e-10 1.578107318e-10 3.126042755e-10 2.302461217e-10 4.012860554e-10 4.026587347e-10 2.904217176e-10 3.617714429e-10 3.697530605e-10 1.602145442e-10 1.997380725e-10 3.954822735e-10 5.584829753e-10 1.370603228e-10 2.505676907e-10 2.462082361e-10 2.63748613e-10 2.398650856e-10 2.332658975e-10 3.098414958e-10 3.376451198e-10 9.299748971e-11 1.210392779e-10 1.621532036e-10 1.239387029e-10 1.794038284e-10 1.974343645e-10 3.599175105e-10 1.520290983e-10 1.26787668e-10 3.105641042e-10 4.57595282e-10 2.931839894e-10 2.044661202e-10 6.983490325e-11 2.171812047e-10 2.520880201e-10 1.52442957e-10 2.499732582e-10 1.609621896e-10 1.427199689e-10 1.905990192e-10 1.360678888e-10 9.400897601e-11 8.006234813e-11 1.215366948e-10 3.978595771e-10 3.202099047e-10 2.057752454e-10 1.174564857e-10 1.340006337e-10 1.779410414e-10 1.483091124e-10 1.98479849e-10 +2.072546994e-10 4.273298079e-10 1.195975574e-10 1.494026781e-10 3.01681628e-10 1.832765706e-10 1.271631025e-10 9.326441238e-11 7.592492101e-11 1.048215925e-10 1.231329782e-10 3.356747807e-10 1.180770403e-10 9.897016801e-11 1.366100897e-10 4.143642632e-10 2.525028037e-10 3.876553029e-10 3.781545465e-10 3.162062821e-10 2.004835899e-10 2.788533343e-10 1.949261745e-10 7.511640604e-11 1.690039327e-10 2.311819678e-10 3.464728375e-10 3.279279051e-10 1.213876705e-10 1.776793743e-10 1.326895258e-10 3.156859523e-10 3.172426594e-10 2.005150976e-10 1.599946538e-10 1.266352467e-10 2.294249138e-10 3.572053577e-10 4.180035241e-10 3.364228497e-10 4.41845999e-10 2.632520173e-10 4.516703263e-10 3.120045638e-10 3.217548877e-10 3.807577094e-10 3.086044575e-10 3.346835996e-10 2.5332371e-10 2.951047295e-10 2.510090938e-10 2.670309899e-10 2.271584871e-10 2.638503465e-10 2.852184181e-10 3.440960337e-10 3.755040568e-10 2.658743951e-10 2.430407943e-10 1.81399824e-10 1.708055837e-10 4.880073171e-10 3.044051773e-10 2.979908421e-10 3.947692798e-10 3.560622015e-10 3.483752346e-10 2.884964192e-10 2.739132649e-10 3.439394298e-10 2.124055678e-10 1.553483297e-10 4.936564523e-10 4.889515949e-10 2.372391246e-10 3.295719397e-10 2.189730899e-10 2.210374782e-10 2.515292408e-10 3.425266785e-10 3.421359798e-10 5.17880332e-10 6.04947053e-10 5.049717758e-10 4.710793466e-10 3.245201809e-10 4.057510286e-10 5.548750411e-10 3.286641405e-10 5.187151795e-10 3.849061532e-10 3.787489423e-10 3.464932394e-10 3.655533729e-10 3.671483433e-10 3.916560181e-10 3.528025534e-10 1.992791773e-10 1.535524587e-10 2.985438747e-10 2.471109669e-10 6.676000235e-10 5.21275331e-10 7.114524679e-10 5.575710669e-10 5.496217831e-10 8.958072748e-10 5.884802336e-10 5.492459537e-10 5.56370757e-10 7.468347135e-10 5.668477807e-10 6.567790853e-10 4.832262043e-10 5.224090847e-10 6.32691278e-10 4.070606074e-10 4.137696577e-10 4.030329907e-10 4.002852925e-10 3.14083546e-10 1.672296294e-10 9.93433132e-11 8.499373016e-11 8.030793588e-11 2.42785219e-10 4.323557237e-10 5.736125229e-10 5.595485372e-10 5.780873608e-10 4.814424881e-10 7.35663643e-10 9.098303908e-10 1.039837994e-09 8.746510941e-10 1.034862176e-09 9.059895247e-10 9.075262554e-10 8.17595665e-10 8.554076313e-10 6.378762186e-10 5.543129548e-10 4.75319297e-10 2.110268383e-10 2.320829577e-10 1.122365248e-10 1.626646438e-25 1.080183781e-10 1.127318054e-10 1.59420572e-10 0 1.344989896e-10 8.736722018e-11 5.769988552e-12 1.961655024e-10 4.117518741e-10 2.6812052e-10 4.595473732e-10 5.098888677e-10 7.603954408e-10 8.256945019e-10 9.241543063e-10 9.734985224e-10 8.807892207e-10 9.45169834e-10 9.639026902e-10 9.184854532e-10 7.889593637e-10 6.089042785e-10 5.674382104e-10 6.415162351e-10 4.729366262e-10 5.455968409e-10 5.138830633e-10 1.923777293e-10 1.811618589e-10 2.06275602e-10 3.798475302e-20 3.013289289e-10 2.325865498e-10 3.437050305e-10 3.62675146e-10 4.71569658e-10 4.046170824e-10 4.226739508e-10 6.050791336e-10 5.100562315e-10 6.404087127e-10 6.121739104e-10 7.093161401e-10 5.134265217e-10 7.606024953e-10 6.821991058e-10 7.197399329e-10 5.322445896e-10 6.64785336e-10 5.927529421e-10 9.906417953e-10 7.842310696e-10 1.80014975e-10 1.75668353e-10 1.430213864e-10 2.406395212e-10 2.405733363e-10 2.444986859e-10 3.168382882e-10 4.547096119e-10 4.197861443e-10 2.936003232e-10 5.753004345e-10 4.257400569e-10 4.88477825e-10 3.548082299e-10 3.054263163e-10 4.801393759e-10 4.223401817e-10 4.218076244e-10 3.431702101e-10 4.915009965e-10 4.179849405e-10 5.005460793e-10 2.398288724e-10 3.035397923e-10 3.782587865e-10 3.902179314e-10 2.156745756e-10 2.632370992e-10 4.160699092e-10 2.201237973e-10 3.951041059e-10 3.257693822e-10 3.253454614e-10 3.154147453e-10 3.561788879e-10 2.713214825e-10 3.364542222e-10 2.8149174e-10 3.070978969e-10 3.077354899e-10 2.576672241e-10 3.425775471e-10 2.252767064e-10 4.010654251e-10 2.155007403e-10 3.372248679e-10 4.158973308e-10 4.265190087e-10 4.557436965e-10 3.863040111e-10 1.008874269e-10 2.798434025e-10 3.031702557e-10 2.760641097e-10 4.829272272e-10 2.180413218e-10 2.10108177e-10 2.715944332e-10 4.218941124e-10 3.60991203e-10 2.465522779e-10 2.022765906e-10 3.376166891e-10 1.486283447e-10 2.330782302e-10 2.031163614e-10 2.06524422e-10 1.949292791e-10 2.358127574e-10 1.94246908e-10 1.892277545e-10 1.772452288e-10 1.416868972e-10 8.976848772e-11 2.227694401e-10 1.528715108e-10 2.009043511e-10 3.286273048e-10 1.816947416e-10 1.841673271e-10 2.646440262e-10 1.894136504e-10 1.552158078e-10 1.46255712e-10 2.354375908e-10 3.00715323e-10 1.232205535e-10 2.274695419e-10 2.208318567e-10 8.695937783e-11 1.651471552e-10 1.982743603e-10 2.047345283e-10 7.552141304e-11 4.238320485e-10 8.745471821e-11 1.534843736e-10 5.863026236e-11 9.247399008e-11 2.071192218e-10 3.347594034e-10 +2.270247678e-10 9.313171534e-11 1.337398388e-10 9.620243699e-11 9.073328299e-11 2.885073345e-10 2.245112476e-10 2.242457271e-10 2.451598893e-10 3.565810036e-10 1.210260713e-10 1.624001537e-10 8.172109167e-11 7.198894842e-11 2.617878979e-10 2.312379765e-10 1.861398581e-10 2.558110143e-10 1.282202112e-10 3.098208939e-10 1.101424498e-10 1.856177335e-10 1.588331895e-10 1.243624505e-10 3.245941939e-10 1.244156339e-10 2.743223682e-10 2.11422356e-10 1.594059474e-10 1.012486717e-10 2.030313361e-10 3.98540757e-10 3.489693571e-10 2.220335828e-10 1.15872146e-10 1.481771114e-10 3.41857182e-10 2.38644955e-10 2.134702381e-10 5.03138883e-10 3.682142869e-10 2.711554846e-10 4.030777691e-10 4.309514401e-10 4.05287937e-10 1.652753613e-10 4.894726074e-10 2.375051735e-10 1.828791981e-10 1.90668521e-10 3.088055476e-10 2.77556779e-10 1.242813852e-10 1.822759919e-10 3.269721758e-10 3.188848335e-10 1.659531293e-10 2.032052892e-10 2.547730102e-10 2.528773087e-10 2.424115481e-10 2.488633481e-10 2.258869943e-10 1.437263557e-10 4.051209157e-10 2.41618892e-10 2.449261232e-10 2.275970579e-10 2.157636439e-10 2.628419308e-10 4.291523878e-10 2.582800488e-10 4.792058738e-10 3.631676707e-10 3.00465888e-10 2.864471956e-10 2.369074139e-10 1.987050107e-10 4.2725516e-10 3.662457638e-10 5.159464951e-10 5.171499137e-10 4.091005635e-10 4.618116317e-10 4.717857668e-10 5.313707303e-10 5.302467759e-10 5.566434804e-10 4.164239407e-10 3.678772524e-10 3.889671705e-10 4.206454139e-10 2.923532094e-10 1.974918089e-10 3.808039044e-10 3.00173813e-10 4.795421488e-10 2.171953966e-10 1.343732062e-10 2.737110368e-10 2.602442033e-10 3.779114026e-10 8.020110724e-10 6.693752415e-10 7.319820892e-10 4.816909149e-10 4.5875235e-10 6.043915633e-10 6.456331323e-10 5.482544933e-10 7.045836082e-10 8.053109808e-10 6.021852683e-10 5.54126288e-10 5.516554943e-10 4.749403618e-10 4.686687891e-10 4.7966256e-10 5.231314658e-10 5.398796188e-10 1.87900927e-10 1.537360863e-10 1.232973101e-10 1.709228968e-10 1.411092291e-10 9.86436812e-19 2.830270729e-10 4.965215475e-10 5.590453737e-10 5.542706012e-10 5.637054161e-10 5.980763591e-10 9.195645485e-10 1.092902279e-09 8.807700457e-10 8.430452929e-10 8.587655067e-10 7.302166924e-10 8.336425305e-10 7.436795118e-10 8.272688598e-10 7.058469155e-10 6.395276084e-10 6.484299297e-10 3.87046488e-10 3.316774374e-10 2.384679949e-10 2.050804894e-10 1.679301971e-12 1.051387521e-10 1.792724168e-10 5.949107693e-11 2.375890145e-10 2.626507525e-10 3.491424673e-10 4.057969187e-10 5.309519437e-10 5.924937136e-10 5.822840065e-10 7.725413006e-10 6.595026665e-10 8.819105526e-10 9.590518993e-10 9.815831677e-10 9.822230072e-10 9.168153563e-10 1.045975196e-09 7.877400647e-10 6.426630135e-10 5.404550646e-10 5.558247341e-10 4.735452636e-10 3.728705941e-10 1.024272002e-10 1.854816108e-10 1.106518976e-10 5.677400156e-11 1.774623118e-14 8.666953574e-11 3.998473222e-10 4.810245956e-10 5.166884106e-10 4.149852371e-10 5.902340729e-10 6.664435174e-10 4.786765059e-10 6.222862046e-10 8.93806975e-10 7.599248928e-10 6.26683477e-10 5.704167658e-10 6.422698769e-10 4.587553968e-10 5.68493325e-10 3.301253653e-10 9.243900501e-10 4.807487581e-10 4.36253852e-10 4.669559098e-10 1.692541357e-10 2.680576587e-10 3.135067187e-10 1.573488629e-10 1.917106513e-10 2.462210124e-10 3.500574786e-10 6.120756545e-10 4.40438817e-10 2.728264259e-10 4.005876027e-10 5.084131234e-10 4.350098498e-10 4.447912103e-10 5.193133496e-10 4.632658449e-10 5.238115327e-10 5.234410585e-10 4.414857132e-10 5.622875233e-10 4.255901388e-10 2.920051325e-10 2.215909668e-10 2.601497128e-10 2.016329491e-10 3.101539851e-10 2.44501685e-10 2.516918621e-10 2.978216999e-10 4.33151638e-10 2.12932201e-10 3.260501253e-10 3.689506382e-10 3.170082923e-10 2.507934145e-10 3.338790435e-10 3.540978997e-10 2.182495528e-10 3.677152499e-10 3.970543223e-10 2.587290597e-10 1.939659771e-10 2.603572979e-10 2.628582374e-10 2.744857743e-10 1.9710405e-10 1.208198584e-10 2.500122754e-10 4.381683457e-10 2.411243385e-10 3.669148088e-10 2.542027192e-10 2.618777338e-10 5.93026281e-10 2.27461658e-10 4.015848999e-10 3.253567088e-10 2.235641935e-10 3.049312917e-10 1.959680451e-10 1.960019371e-10 2.041532348e-10 3.217872265e-10 2.385406801e-10 2.649554752e-10 3.636245941e-10 2.629731313e-10 2.708692837e-10 1.273927451e-10 1.944788972e-10 1.415942302e-10 3.194870723e-10 4.123594544e-10 3.150904446e-10 2.668729686e-10 2.479928056e-10 1.182439316e-10 4.974772171e-10 1.752331792e-10 2.471713674e-10 4.83457311e-11 2.168869953e-10 4.954621592e-10 4.236360414e-10 2.007115535e-10 1.966258373e-10 2.70415266e-10 1.023501656e-10 9.82285273e-11 1.680953255e-10 9.431847081e-11 1.47558383e-10 2.955225874e-10 1.920419829e-10 3.491954087e-10 1.627379184e-10 2.47651786e-10 8.981294589e-11 2.007444315e-10 1.31075527e-10 1.961346159e-10 +4.182583381e-10 1.603169105e-10 4.073744922e-10 7.237917348e-11 1.215090862e-10 2.646068914e-10 2.974680364e-10 1.659210036e-10 8.606575432e-11 8.590132653e-11 3.110857521e-10 2.723418584e-10 5.534281036e-11 1.134392296e-10 9.904165387e-11 1.746571132e-10 1.036562069e-10 8.955854292e-11 1.889106174e-10 2.484380538e-10 3.581802989e-10 8.36151241e-11 1.452359029e-10 1.468097012e-10 1.412423971e-10 2.350300273e-10 2.286706552e-10 1.414707572e-10 1.480159147e-10 1.184314318e-10 1.506314372e-10 1.39387474e-10 1.346482449e-10 9.430635962e-11 2.445301282e-10 1.178738525e-10 2.13698829e-10 3.23535916e-10 1.737024308e-10 3.593318127e-10 2.24969521e-10 4.368967226e-10 4.245935136e-10 2.532829386e-10 1.67752297e-10 3.443495307e-10 2.551883335e-10 3.928708053e-10 4.082108965e-10 2.065666883e-10 3.443315682e-10 3.377551728e-10 2.827749596e-10 2.085560681e-10 2.356839932e-10 4.184014246e-10 3.194836454e-10 3.553594917e-10 2.385082546e-10 3.173818833e-10 2.846922057e-10 2.680576137e-10 2.527990234e-10 3.99401598e-10 2.313766036e-10 2.342615949e-10 3.099190441e-10 2.358267129e-10 2.684736839e-10 2.802835921e-10 5.319498048e-10 4.239669399e-10 2.715820071e-10 3.60499446e-10 4.987066558e-10 3.264331627e-10 1.393468396e-10 2.145577514e-10 4.903090268e-10 4.474328221e-10 3.018030976e-10 5.038004043e-10 5.504488151e-10 4.908810664e-10 6.13124316e-10 3.626911818e-10 4.585598775e-10 4.262413837e-10 3.502067303e-10 4.414140148e-10 3.153612993e-10 3.823516101e-10 3.462414308e-10 5.502161086e-10 4.676187406e-10 4.37512455e-10 4.013739328e-10 1.890647795e-10 3.024162207e-10 3.185621675e-10 1.724501772e-10 3.867000032e-10 5.774620448e-10 5.941677077e-10 3.942977469e-10 4.741214778e-10 8.071904535e-10 6.006256962e-10 3.579789044e-10 4.195372662e-10 7.131373393e-10 6.807945699e-10 6.812132875e-10 5.392147824e-10 5.073261331e-10 4.947405197e-10 5.382786124e-10 3.998024176e-10 4.283983333e-10 4.539227288e-10 3.684322623e-10 2.656940182e-10 3.476744465e-17 1.127560115e-10 1.434459056e-10 9.979195733e-11 2.896727538e-10 4.02096628e-10 5.444911184e-10 5.887016956e-10 5.444036107e-10 5.863090666e-10 9.400907627e-10 6.934168687e-10 8.518276868e-10 9.156621664e-10 1.025427222e-09 1.059690004e-09 7.701338314e-10 8.428143279e-10 7.588877825e-10 7.01150584e-10 6.617479269e-10 6.333810272e-10 6.106927036e-10 5.01475908e-10 4.67798475e-10 3.808832338e-10 3.108176328e-10 4.440682681e-10 3.196040964e-10 4.040931846e-10 4.079947673e-10 4.253737481e-10 4.756298496e-10 5.713932688e-10 6.004293399e-10 6.333558273e-10 8.33354516e-10 8.86123414e-10 9.182978962e-10 8.649315368e-10 1.028735265e-09 9.422469681e-10 1.085305352e-09 9.187394695e-10 8.087325314e-10 6.22735084e-10 4.849732971e-10 5.638519637e-10 4.948690604e-10 5.032898903e-10 3.713820004e-10 2.793325922e-10 9.783104572e-11 1.104276251e-10 1.364016428e-10 9.493037314e-11 1.90443216e-10 2.920549955e-10 3.881290772e-10 5.454836147e-10 4.080040247e-10 5.23655901e-10 5.141661568e-10 5.595338357e-10 5.801446988e-10 5.538669668e-10 6.174211402e-10 6.137456429e-10 4.218776889e-10 7.313830765e-10 7.800936674e-10 5.182017566e-10 7.014571298e-10 6.753043559e-10 8.352485764e-10 4.101370821e-10 4.198268162e-10 2.459565716e-10 3.017916284e-10 3.047765808e-10 1.107113429e-10 1.550039161e-10 2.716798684e-10 3.473130999e-10 4.376370341e-10 3.51240384e-10 3.898093767e-10 4.183478549e-10 4.873459247e-10 3.06304506e-10 4.131685347e-10 4.915931773e-10 3.117655013e-10 4.844669688e-10 4.940471094e-10 4.8588523e-10 5.23580489e-10 4.842009025e-10 3.961261701e-10 3.851651301e-10 3.245341372e-10 3.486631536e-10 2.610972514e-10 2.741443613e-10 2.603709556e-10 3.825832107e-10 2.010766676e-10 4.394857559e-10 4.347068972e-10 3.28681485e-10 2.752367286e-10 2.334409376e-10 2.972082912e-10 2.962662908e-10 2.499683089e-10 3.045425413e-10 2.922835068e-10 3.230809164e-10 4.050827062e-10 3.917594592e-10 1.478764614e-10 2.915817096e-10 2.73826855e-10 1.861797645e-10 3.881603318e-10 4.400058314e-10 3.514935296e-10 2.201478091e-10 2.213390019e-10 2.421909663e-10 4.096606829e-10 2.887013847e-10 2.607295912e-10 3.214919802e-10 2.262358318e-10 3.206701899e-10 1.66474404e-10 4.010656312e-10 4.047242017e-10 3.328284195e-10 1.686409051e-10 1.888749072e-10 1.421245999e-10 3.062368087e-10 2.664983852e-10 3.498948388e-10 2.338576949e-10 1.591929863e-10 9.792089031e-11 1.381640205e-10 1.056287488e-10 2.007234403e-10 1.757339804e-10 2.55421487e-10 1.971026916e-10 3.493102707e-10 2.272369632e-10 1.960193914e-10 1.592641356e-10 2.248635019e-10 2.077371036e-10 2.802508056e-10 1.917684416e-10 2.213977611e-10 1.922207095e-10 2.366150868e-10 1.655701589e-10 9.48534775e-11 1.437580972e-10 2.619389063e-10 3.366134871e-10 1.655750873e-10 1.083130434e-10 1.028956891e-10 2.044368978e-10 4.357414458e-11 1.701468922e-10 8.454886954e-11 +1.694285293e-10 9.144836631e-11 7.970870887e-11 4.780242777e-11 4.456331081e-10 6.172517005e-11 3.042692879e-10 1.02718813e-10 2.442373272e-10 3.563241526e-10 2.808706188e-10 1.347229136e-10 1.222884121e-10 1.370792307e-10 1.715326688e-10 2.27865505e-10 2.692051262e-10 2.006130227e-10 1.212162036e-10 4.00602261e-10 1.157954742e-10 2.350464144e-10 3.493194143e-10 3.294219179e-10 2.409575527e-10 2.719188281e-10 3.006706246e-10 2.330825752e-10 1.169905132e-10 7.910005191e-11 1.228705316e-10 1.802903227e-10 3.659510099e-10 2.762095878e-10 3.538424497e-10 1.844889112e-10 1.299307624e-10 2.815899161e-10 3.260797837e-10 2.208008103e-10 2.196156869e-10 1.600726838e-10 4.665307205e-10 2.426292152e-10 1.71685013e-10 4.831200883e-10 3.443907356e-10 3.390276994e-10 3.512902603e-10 2.843635834e-10 1.739196821e-10 5.422769438e-10 2.683531082e-10 1.859702221e-10 2.583324929e-10 3.680307233e-10 3.11931383e-10 3.27019696e-10 3.536436369e-10 2.920845178e-10 2.887872439e-10 2.964923985e-10 3.25554821e-10 2.080958663e-10 2.629789146e-10 2.653591013e-10 1.574410564e-10 3.146376522e-10 3.004558313e-10 3.837249758e-10 2.648307175e-10 2.984970016e-10 2.842519248e-10 1.944459331e-10 1.940782519e-10 2.436266457e-10 3.867967988e-10 2.831471241e-10 2.665365273e-10 2.898721946e-10 3.881570386e-10 4.23838043e-10 4.489783872e-10 6.352865928e-10 2.709668959e-10 4.398336674e-10 4.423338197e-10 4.121621617e-10 5.277564575e-10 3.674515737e-10 3.860059994e-10 4.099492959e-10 2.942992202e-10 3.247626063e-10 3.386805503e-10 2.903579909e-10 2.533277899e-10 1.80307451e-10 2.113608188e-10 1.860079787e-10 3.053504512e-10 4.328921973e-10 6.442918713e-10 8.012025972e-10 6.53762492e-10 6.789931949e-10 8.579380829e-10 6.434421378e-10 5.086303373e-10 5.64014008e-10 7.31027742e-10 8.208266443e-10 7.361295705e-10 6.057242441e-10 4.095871883e-10 2.846854161e-10 2.221976044e-10 5.240758317e-10 4.264173793e-10 4.380192283e-10 4.708247195e-10 3.489385593e-10 1.900413778e-10 1.692241418e-10 1.357074565e-10 1.42447233e-10 1.449467446e-10 4.36075448e-10 5.226161634e-10 5.40757804e-10 5.975495004e-10 6.441680697e-10 4.263480472e-10 9.611418013e-10 8.596267376e-10 9.471749541e-10 9.315323841e-10 9.736854525e-10 8.021999468e-10 1.104723506e-09 9.305381068e-10 8.520868615e-10 7.338961819e-10 8.772777227e-10 6.250617516e-10 5.598935978e-10 4.886460039e-10 5.574102476e-10 5.065885337e-10 5.163205315e-10 4.78854999e-10 5.40040902e-10 5.766326348e-10 5.212222159e-10 6.018186844e-10 8.066537833e-10 6.530197514e-10 6.749485769e-10 8.993658606e-10 8.570069336e-10 7.273130674e-10 8.287047636e-10 1.088549123e-09 8.465357252e-10 1.00719117e-09 9.790299468e-10 6.094843734e-10 5.672807648e-10 6.862873879e-10 6.154642989e-10 5.021267145e-10 5.067838025e-10 4.600020372e-10 1.452729032e-10 1.905584669e-10 1.999663874e-10 9.136937059e-11 1.939576855e-10 3.758718146e-11 4.670542443e-10 4.048624377e-10 4.445808318e-10 4.739344847e-10 4.715718297e-10 4.690454946e-10 4.900971913e-10 5.54905709e-10 6.20502763e-10 6.025783447e-10 6.136484955e-10 7.499068042e-10 6.014885598e-10 5.671870524e-10 7.209587245e-10 5.232858972e-10 8.15462655e-10 8.6787156e-10 7.141372807e-10 4.291079849e-10 2.859311236e-10 1.990485773e-10 3.162520375e-10 1.846454774e-10 4.928934474e-10 3.754006043e-10 3.816618233e-10 3.175606576e-10 4.083833488e-10 3.831988507e-10 3.795219771e-10 4.459465739e-10 3.876088533e-10 3.70535474e-10 3.230924845e-10 4.731914882e-10 5.465492813e-10 4.051883268e-10 4.504474843e-10 5.071298648e-10 3.610962865e-10 3.503929028e-10 4.6626062e-10 4.27497076e-10 1.574121323e-10 3.183353147e-10 2.809981322e-10 2.917234116e-10 3.995717086e-10 3.710776979e-10 3.251920765e-10 2.480657254e-10 3.477065375e-10 1.349816657e-10 2.584907207e-10 3.741097683e-10 4.738005026e-10 3.098046779e-10 4.439445852e-10 3.019029698e-10 2.993128672e-10 2.889538033e-10 2.735394265e-10 2.126276312e-10 2.000483017e-10 2.522719764e-10 3.154931065e-10 3.887863628e-10 3.092587488e-10 5.719354229e-10 3.020698506e-10 3.2723009e-10 3.422651827e-10 1.544067015e-10 3.260288334e-10 4.121496977e-10 2.206048717e-10 3.795142578e-10 3.659054857e-10 2.267753311e-10 2.591803622e-10 3.714272015e-10 2.231174487e-10 2.033767961e-10 3.512529873e-10 1.224262359e-10 1.244041093e-10 1.710944505e-10 7.137186107e-11 1.746479495e-10 1.561201251e-10 1.746495017e-10 9.504655155e-11 1.959135262e-10 1.545476971e-10 2.269671194e-10 3.981006808e-10 1.703312643e-10 2.538200203e-10 4.226660431e-10 1.25043365e-10 3.541608135e-10 8.84663241e-11 8.908240994e-11 2.627932898e-10 2.285164689e-10 3.230255964e-10 2.576666005e-10 2.387188758e-10 1.089796055e-10 2.310131966e-10 8.814279234e-11 1.268839623e-10 2.098914837e-10 1.120655258e-10 1.497774597e-10 3.62748267e-10 1.464504313e-10 2.233157614e-10 1.824583693e-10 1.226646826e-10 +1.412418385e-10 1.261964431e-10 1.425906027e-10 4.016611893e-10 2.491201256e-10 1.68908794e-10 2.003671721e-10 3.486548626e-10 2.237379795e-10 9.986839359e-11 2.605664747e-10 3.292744574e-10 8.185616144e-11 2.105334678e-10 2.86014607e-10 2.856673375e-10 2.093434866e-10 3.308149471e-10 1.502888606e-10 3.487604861e-10 9.12757459e-11 3.49223078e-10 2.185966443e-10 8.662445675e-11 1.986853932e-10 1.894874288e-10 1.304310072e-10 1.372244443e-10 2.069261482e-10 1.960999272e-10 2.106096087e-10 1.65177664e-10 2.096133599e-10 3.100514202e-10 1.998243981e-10 1.737448652e-10 1.929559172e-10 2.732622229e-10 1.971726518e-10 3.156240113e-10 4.508239939e-10 3.620597853e-10 4.578300059e-10 4.584378444e-10 4.781118916e-10 2.228579164e-10 3.051586627e-10 1.962583037e-10 3.527608892e-10 3.102548187e-10 2.659944788e-10 4.365873824e-10 2.553963442e-10 3.647292426e-10 3.368136185e-10 2.157523179e-10 1.750945412e-10 1.471613344e-10 2.498977036e-10 2.62600696e-10 3.477976737e-10 3.169599952e-10 2.867732686e-10 3.646059808e-10 4.938440822e-10 2.875623295e-10 2.411668595e-10 3.25074637e-10 3.887385906e-10 2.930271845e-10 1.785227477e-10 3.736236253e-10 2.797178773e-10 2.25359512e-10 3.99148068e-10 4.845332153e-10 2.485321478e-10 3.388178825e-10 1.845626466e-10 3.383236295e-10 3.814610839e-10 3.774997359e-10 5.000216834e-10 4.015398103e-10 3.582496052e-10 4.884527716e-10 4.61391063e-10 4.081969005e-10 4.104875823e-10 3.617928292e-10 4.650996609e-10 3.332462905e-10 3.303947881e-10 3.311642797e-10 4.483734508e-10 3.812516943e-10 2.955734488e-10 2.647232304e-10 7.359822302e-11 2.16336938e-10 2.893874924e-10 3.770873606e-10 5.064155976e-10 5.378638744e-10 5.761760925e-10 5.590124988e-10 8.34618947e-10 6.525090234e-10 5.638340301e-10 5.393958923e-10 4.703569164e-10 8.070465638e-10 6.420943611e-10 6.266004398e-10 6.00219614e-10 4.974603415e-10 4.129803364e-10 5.183604885e-10 3.266012477e-10 4.098348556e-10 3.957986567e-10 3.891249463e-10 2.207583305e-10 2.591048439e-10 2.177117519e-10 2.267845702e-10 1.851924918e-10 2.241309425e-10 5.558401244e-10 5.738374473e-10 5.507339365e-10 5.946411006e-10 4.832920473e-10 7.003359431e-10 7.870178844e-10 9.051526889e-10 1.024178067e-09 8.326126883e-10 7.350340485e-10 7.766922184e-10 9.683753489e-10 8.823795056e-10 7.700638885e-10 9.142391934e-10 8.482410023e-10 6.774979836e-10 7.569455051e-10 7.004655305e-10 6.30801677e-10 7.967072119e-10 5.740930761e-10 6.381015101e-10 7.060573015e-10 6.771481636e-10 7.713719387e-10 6.746951764e-10 8.865481053e-10 8.252480132e-10 8.276801098e-10 8.899643952e-10 9.394769811e-10 1.059645164e-09 1.085129337e-09 8.657941248e-10 9.471669213e-10 7.379255287e-10 6.921445625e-10 5.745112755e-10 5.271286813e-10 4.981718992e-10 4.515300706e-10 5.418211232e-10 3.482759236e-10 1.170236761e-10 2.263817969e-10 7.788197273e-11 2.307054096e-10 1.284505805e-10 3.394237722e-10 5.854264884e-10 3.263687315e-10 4.591768071e-10 4.39215739e-10 6.331706052e-10 5.261102062e-10 4.082939925e-10 7.954268191e-10 6.551937915e-10 7.606660501e-10 5.390516392e-10 5.007138891e-10 4.879568724e-10 8.827998926e-10 7.723431478e-10 7.343082794e-10 5.65654602e-10 7.872850174e-10 7.891828653e-10 2.8086854e-10 3.256023501e-10 2.245722167e-10 1.795240195e-10 2.084221343e-10 2.628138548e-10 3.31273978e-10 2.753918647e-10 3.139013622e-10 5.427854586e-10 4.921622392e-10 3.402173098e-10 4.94516138e-10 4.502734461e-10 4.699787361e-10 4.008258984e-10 4.868051436e-10 4.750093886e-10 4.360532444e-10 3.988754844e-10 4.788199249e-10 3.457102571e-10 3.252286515e-10 3.415712008e-10 2.960137511e-10 3.231115467e-10 3.264401654e-10 2.647890894e-10 2.852281673e-10 2.371031132e-10 2.103708809e-10 3.908946168e-10 2.750536222e-10 2.199626952e-10 3.791743648e-10 2.172170488e-10 2.465363521e-10 2.767686225e-10 2.908439422e-10 3.973088106e-10 2.827049961e-10 3.452251223e-10 4.075938994e-10 2.418540242e-10 2.232163387e-10 4.075085197e-10 4.103765541e-10 2.380099229e-10 3.180340123e-10 2.73887646e-10 1.704303233e-10 3.759980633e-10 2.955164314e-10 3.356022249e-10 1.841842554e-10 2.913062389e-10 1.80229891e-10 3.073997921e-10 1.491207957e-10 2.507806285e-10 1.734619686e-10 1.934162344e-10 3.406438662e-10 3.657484591e-10 1.091722504e-10 1.943509773e-10 1.741883316e-10 2.548742456e-10 1.709853834e-10 9.690553579e-11 1.035065161e-10 1.869378078e-10 1.690039072e-10 3.033446069e-10 2.696935257e-10 2.771812071e-10 1.10016436e-10 1.825789076e-10 3.060784619e-10 3.479871228e-10 3.626433873e-10 3.066095251e-10 1.46700967e-10 2.194741536e-10 1.188497712e-10 2.591329261e-10 3.416563647e-10 1.920947367e-10 2.109642936e-10 1.080674362e-10 2.571585338e-10 1.719906357e-10 1.09695258e-10 1.113829265e-10 1.957299444e-10 2.034716374e-10 2.247741278e-10 1.880457035e-10 9.752400623e-11 2.292923131e-10 1.80029854e-10 1.435774619e-10 +1.547088108e-10 2.235156682e-10 2.814455872e-10 1.462282318e-10 1.522306022e-10 5.77528848e-11 2.843363767e-10 8.012179624e-11 1.559099858e-10 4.224061896e-10 1.915427599e-10 1.337054749e-10 4.18084662e-10 3.245010972e-10 1.486834344e-10 1.072890013e-10 1.416838174e-10 3.345563774e-10 1.384915382e-10 1.121511577e-10 1.956444374e-10 2.513976021e-10 1.966647053e-10 1.801107657e-10 8.061280663e-11 1.925009165e-10 8.533662079e-11 1.275640682e-10 6.523576574e-11 1.607793209e-10 7.251590053e-11 3.0081336e-10 2.189446602e-10 8.37411133e-11 1.452691481e-10 3.319674437e-10 3.086366083e-10 3.407455905e-10 1.952219404e-10 1.986087575e-10 1.722645114e-10 2.764343756e-10 3.925225233e-10 3.080618763e-10 4.121179588e-10 3.99446778e-10 3.124252353e-10 3.541378251e-10 1.788375536e-10 4.420252527e-10 2.314199006e-10 2.499113991e-10 1.978916259e-10 3.1082661e-10 2.963359025e-10 3.417844948e-10 2.363970471e-10 1.748362804e-10 2.947996313e-10 2.222032795e-10 2.918531081e-10 3.280920763e-10 3.381435914e-10 3.533125227e-10 2.27776525e-10 1.661106534e-10 4.44430889e-10 2.930207936e-10 2.661915084e-10 3.560210165e-10 1.549246286e-10 3.710588117e-10 2.502372504e-10 3.448642144e-10 2.712217471e-10 3.094616965e-10 2.796030552e-10 5.7466587e-10 2.936692523e-10 3.708561561e-10 6.029714038e-10 4.376111558e-10 3.697517831e-10 4.507806948e-10 2.759329623e-10 3.162043054e-10 4.609941909e-10 4.425171677e-10 3.696612563e-10 3.706231751e-10 4.171367122e-10 4.663540808e-10 2.337093052e-10 3.77509948e-10 3.105139301e-10 2.388740176e-10 3.148084364e-10 1.989919814e-10 2.422201249e-10 2.421660792e-10 3.111182236e-10 3.405751592e-10 6.016583702e-10 6.598286593e-10 6.583041624e-10 3.973826259e-10 7.121360686e-10 5.84475392e-10 6.526260801e-10 5.528962755e-10 4.53150022e-10 8.730935322e-10 8.9376953e-10 7.066629876e-10 5.929019016e-10 4.617926394e-10 3.305262001e-10 3.93060837e-10 4.948761478e-10 5.042156869e-10 4.784424443e-10 3.462032849e-10 2.811828195e-10 1.022757689e-10 1.663444188e-10 1.462082011e-10 1.469876492e-10 2.4956646e-10 2.784188828e-10 4.736238354e-10 5.00279828e-10 5.384123954e-10 5.820804786e-10 5.26090566e-10 6.913570139e-10 8.25402194e-10 8.496842069e-10 8.004314289e-10 9.644582747e-10 8.894325739e-10 1.012921964e-09 9.509619319e-10 8.411577997e-10 8.36022596e-10 8.056251511e-10 7.298104056e-10 8.415801563e-10 8.019707034e-10 7.434658247e-10 6.906606152e-10 7.758182628e-10 7.93197312e-10 7.635322133e-10 7.74375774e-10 9.170868397e-10 8.551346805e-10 7.152809121e-10 9.674970065e-10 9.611700644e-10 9.688378704e-10 8.340438424e-10 9.363437383e-10 9.500484903e-10 9.467021314e-10 8.854078542e-10 5.937443361e-10 6.080708638e-10 3.95900099e-10 5.7151582e-10 5.875264539e-10 5.063402065e-10 2.86818498e-10 8.182915174e-11 2.031568472e-10 1.289906155e-10 7.237381926e-11 1.156589644e-10 2.606263902e-10 3.264377234e-10 3.476341016e-10 5.319676036e-10 4.596948179e-10 4.769980414e-10 6.284932494e-10 5.887419229e-10 6.060808589e-10 6.441333381e-10 6.660437837e-10 7.335091404e-10 6.768434907e-10 6.494326413e-10 5.363031415e-10 7.041864017e-10 8.653855674e-10 4.744556094e-10 5.85487155e-10 7.659108519e-10 9.1687476e-10 3.753343817e-10 2.212192607e-10 2.076768951e-10 2.277342156e-10 2.216617647e-10 2.205289077e-10 3.399329685e-10 3.603136286e-10 3.998675636e-10 4.397317787e-10 3.860919996e-10 3.732962952e-10 3.796559483e-10 3.608169917e-10 3.495420188e-10 3.252756015e-10 6.326083934e-10 4.66302977e-10 4.964750171e-10 4.373598506e-10 3.910537255e-10 4.117557838e-10 4.322578259e-10 3.575812054e-10 2.672744149e-10 2.837192572e-10 3.711828474e-10 2.701115884e-10 2.976488306e-10 5.052466218e-10 2.656256349e-10 2.910109019e-10 2.627674684e-10 3.825072354e-10 4.036090226e-10 3.660573781e-10 3.269628021e-10 3.516714067e-10 3.674319252e-10 2.15960742e-10 4.122253691e-10 2.131458485e-10 2.790042848e-10 1.848137254e-10 2.386924502e-10 3.529447354e-10 4.233620031e-10 2.249097553e-10 3.488174147e-10 4.163895391e-10 2.572796237e-10 3.752427921e-10 2.989017639e-10 2.58458998e-10 2.291962744e-10 1.968041931e-10 3.103539868e-10 3.209308881e-10 3.602946798e-10 3.440901469e-10 2.872251979e-10 1.890498482e-10 1.61570889e-10 2.645799823e-10 1.669366907e-10 2.508341742e-10 1.692364522e-10 2.258535962e-10 1.998352792e-10 5.931122409e-11 3.263063541e-10 1.758129061e-10 1.56518661e-10 9.485766632e-11 1.030194421e-10 1.505076443e-10 2.682906958e-10 1.444777608e-10 1.977977488e-10 2.229564128e-10 2.883038138e-10 1.305496809e-10 1.299470505e-10 4.679551931e-10 2.134083955e-10 8.498419448e-11 1.022201664e-10 1.467892572e-10 1.228689475e-10 1.833877169e-10 1.762853528e-10 1.211015778e-10 1.331700512e-10 2.786141235e-10 1.755075507e-10 1.066559094e-10 1.592153311e-10 2.359478283e-10 1.247634378e-10 2.035291957e-10 1.227840193e-10 1.714924752e-10 +2.080773941e-10 1.448780181e-10 8.130130791e-11 1.475373395e-10 3.230768313e-10 1.200312823e-10 4.169673126e-10 1.177375986e-10 1.064348272e-10 1.558311915e-10 1.988264876e-10 2.356988606e-10 4.000345261e-11 2.772013225e-10 1.893297659e-10 1.586593529e-10 3.068144583e-10 2.821458112e-10 4.065715031e-10 2.848112712e-10 2.250567454e-10 1.010463754e-10 1.937721478e-10 1.369348846e-10 3.118459371e-10 2.715487141e-10 2.190517848e-10 1.571887784e-10 4.283930168e-10 1.313949631e-10 4.044946049e-10 1.619656843e-10 1.999508778e-10 1.886215937e-10 1.086276078e-10 1.660723107e-10 2.075049982e-10 2.03549667e-10 1.913915522e-10 1.932891195e-10 3.094645645e-10 2.779610729e-10 3.376652949e-10 2.945656247e-10 4.747393577e-10 2.360338814e-10 3.90126088e-10 1.343921119e-10 3.178737327e-10 5.812902221e-10 2.859409481e-10 3.596700696e-10 3.568429699e-10 1.822461553e-10 2.835027154e-10 3.791680132e-10 2.1409987e-10 4.078484585e-10 3.225773514e-10 3.295528828e-10 2.420310782e-10 3.326300935e-10 3.10352983e-10 3.876906296e-10 2.242890297e-10 2.214002636e-10 3.335399523e-10 1.784658925e-10 2.522443249e-10 2.275968295e-10 1.683709697e-10 4.354088051e-10 3.581638079e-10 3.458522863e-10 3.055778261e-10 4.53145323e-10 2.138914265e-10 1.963852758e-10 3.782013885e-10 5.693053129e-10 4.334720286e-10 5.509436418e-10 5.488770167e-10 5.392508347e-10 5.426731106e-10 3.218695051e-10 5.483267341e-10 3.299489745e-10 4.617989496e-10 3.782956029e-10 4.161403558e-10 3.196605431e-10 2.816867658e-10 4.404696502e-10 3.174941465e-10 4.348835388e-10 3.115658819e-10 3.133611586e-10 1.379678014e-10 1.588512101e-10 2.14315181e-10 3.251079968e-10 5.15807031e-10 5.987072164e-10 5.290363643e-10 6.692317429e-10 5.94557648e-10 5.445297553e-10 3.271374513e-10 6.126305486e-10 6.133104058e-10 6.657734543e-10 9.508059817e-10 7.79923133e-10 4.850701898e-10 4.87746981e-10 3.937445633e-10 3.879078505e-10 5.930066462e-10 5.200928507e-10 5.321504851e-10 3.458921681e-10 3.219840974e-10 1.6649796e-10 1.37894536e-10 1.309017136e-10 9.577547122e-11 1.015201949e-10 4.443510091e-10 3.970738381e-10 5.153645609e-10 5.727576983e-10 4.852217811e-10 4.827915673e-10 4.653797391e-10 7.001802502e-10 7.46752196e-10 1.039675751e-09 1.013986426e-09 1.04158827e-09 9.757083207e-10 9.584170915e-10 8.287261024e-10 8.237589789e-10 7.836967625e-10 8.772568191e-10 9.470329131e-10 9.319918099e-10 8.056003248e-10 7.95515076e-10 6.676001018e-10 7.226645825e-10 7.726259701e-10 7.944789249e-10 9.132187477e-10 1.023983837e-09 8.297006627e-10 8.418715144e-10 1.111918913e-09 1.065820779e-09 1.061117327e-09 1.010689153e-09 9.602540778e-10 9.027496745e-10 6.109301197e-10 5.830050645e-10 4.802775233e-10 5.224476688e-10 4.670681771e-10 4.288133569e-10 4.634204243e-10 1.172350185e-10 1.614942276e-10 7.845878155e-21 7.387940758e-11 0 2.587402607e-10 2.814686423e-10 4.433791573e-10 4.177686809e-10 5.618767333e-10 3.879260966e-10 5.551262928e-10 5.141962619e-10 5.279622339e-10 5.236163258e-10 7.046475021e-10 5.923757464e-10 6.071795603e-10 4.473589799e-10 5.363044238e-10 6.649422738e-10 7.967434188e-10 5.315573868e-10 7.220874511e-10 6.486997098e-10 6.674848952e-10 4.325054644e-10 2.181105123e-10 2.144087119e-10 2.491947549e-10 8.384079663e-11 2.175062334e-10 2.412801308e-10 3.829296812e-10 3.739514895e-10 3.931335819e-10 3.942246907e-10 3.146249758e-10 3.03145598e-10 4.595470614e-10 4.793848719e-10 3.989008731e-10 4.219704402e-10 6.20365089e-10 3.699184067e-10 4.766307998e-10 3.913795279e-10 4.349800776e-10 5.548533501e-10 2.33853374e-10 2.812805748e-10 3.471496613e-10 2.745898855e-10 1.272246046e-10 3.70709043e-10 3.151301972e-10 2.543867712e-10 1.958350063e-10 2.243508308e-10 3.048277885e-10 2.090490399e-10 2.815247599e-10 4.366467106e-10 1.978548222e-10 3.986321562e-10 3.088422408e-10 2.824037105e-10 3.227225507e-10 2.764104609e-10 1.582489269e-10 2.28246336e-10 2.855317092e-10 2.634424337e-10 2.957645328e-10 2.159827352e-10 2.281395551e-10 4.534176175e-10 4.026730978e-10 3.466187917e-10 4.750610914e-10 1.904681831e-10 4.546695831e-10 3.777384457e-10 2.141635983e-10 3.157578785e-10 2.721881637e-10 1.827582688e-10 2.996182968e-10 3.640874798e-10 2.648955823e-10 2.674892959e-10 3.47243486e-10 1.551158134e-10 2.766289285e-10 4.198396471e-10 2.374806961e-10 8.783166397e-11 2.453431429e-10 2.547529514e-10 1.763877487e-10 1.345080031e-10 2.391073625e-10 3.880410079e-10 5.521848262e-10 3.964613829e-10 1.126304755e-10 8.153384567e-11 1.358854324e-10 1.600005372e-10 2.723569266e-10 2.181520755e-10 1.821138796e-10 1.264149526e-10 1.047231079e-10 1.694320963e-10 9.896048509e-11 8.523200793e-11 1.009139301e-10 1.602004432e-10 2.073101813e-10 5.123673513e-11 3.003961734e-10 4.216176793e-10 2.508807891e-10 1.36295738e-10 2.731208622e-10 9.521491293e-11 9.583533257e-11 6.060393066e-11 +9.084859959e-11 1.581944021e-10 1.830328443e-10 1.692751305e-10 6.87620447e-11 2.399926174e-10 3.192743557e-10 1.026780429e-10 2.322096361e-10 2.212587129e-10 2.988378633e-10 1.4883655e-10 5.372525762e-11 2.974596114e-10 9.14531596e-11 1.549168518e-10 2.915847011e-11 1.861832153e-10 9.796847401e-11 1.535393608e-10 4.053271685e-10 1.081726944e-10 1.936188531e-10 2.362976009e-10 3.258727259e-10 1.76325875e-10 2.784398494e-10 7.701211127e-11 2.007130786e-10 1.097911706e-10 1.358546917e-10 2.148785301e-10 2.568251897e-10 2.029873204e-10 3.107694674e-10 1.476978905e-10 4.390331618e-10 1.958291847e-10 4.430662509e-10 2.793539103e-10 4.427404039e-10 6.796353047e-11 2.079186045e-10 3.67921893e-10 1.271261552e-10 2.494469627e-10 2.122116749e-10 4.467928001e-10 3.407218135e-10 4.524632453e-10 3.125990454e-10 4.915367527e-10 3.446939798e-10 2.995465978e-10 1.875308482e-10 1.476860493e-10 2.2159997e-10 2.708614667e-10 2.982222061e-10 2.649209916e-10 2.396903309e-10 3.605698268e-10 3.06832249e-10 2.206097776e-10 1.940350403e-10 3.05345708e-10 3.623537975e-10 2.288960543e-10 2.505901122e-10 3.770999573e-10 3.822256812e-10 3.954017927e-10 3.485246474e-10 2.296518623e-10 1.481795838e-10 3.280521683e-10 3.120321678e-10 3.794979014e-10 2.526551811e-10 6.357163797e-10 3.463863478e-10 4.90566215e-10 4.928037297e-10 4.776679621e-10 5.435984273e-10 4.205203156e-10 5.286168203e-10 3.259254254e-10 4.05163142e-10 3.949260311e-10 4.304357151e-10 3.144248923e-10 4.531502696e-10 4.701667649e-10 3.713895826e-10 4.556501872e-10 2.261622628e-10 1.844780899e-10 2.702060781e-10 2.816855409e-10 3.38388157e-10 2.123439887e-10 4.310360646e-10 7.697737512e-10 8.717955337e-10 6.065385002e-10 6.797653066e-10 6.964386223e-10 7.974570124e-10 7.90505107e-10 6.0895173e-10 5.856170702e-10 5.000120884e-10 8.79470345e-10 7.004703963e-10 6.11764513e-10 5.469145713e-10 4.508445837e-10 5.399388549e-10 3.147949261e-10 4.042869707e-10 4.469372126e-10 3.389382308e-10 1.642974253e-10 1.353824656e-13 1.083865198e-10 1.021959036e-10 4.524051455e-11 2.211833844e-15 3.198434077e-10 5.342870942e-10 6.022537419e-10 4.344080302e-10 5.57975357e-10 5.008073319e-10 7.229841562e-10 6.164663662e-10 7.044412768e-10 9.051245731e-10 9.483119067e-10 8.884305339e-10 1.034231608e-09 8.628348863e-10 9.340943599e-10 7.066734396e-10 8.326582493e-10 8.633523004e-10 9.090189698e-10 7.215707039e-10 8.779009321e-10 8.279617484e-10 9.832254292e-10 8.100849492e-10 9.406991962e-10 7.397193936e-10 1.047765228e-09 7.999464444e-10 8.966716976e-10 1.016655288e-09 1.085232009e-09 9.746999094e-10 9.018018614e-10 1.091977369e-09 7.842125625e-10 6.067429959e-10 5.160454959e-10 5.647185821e-10 5.115997995e-10 4.588216205e-10 4.741655513e-10 3.07992157e-10 3.033835908e-10 6.248883629e-11 1.081608004e-10 8.635245736e-11 9.662556922e-11 1.452808585e-10 3.306366323e-10 2.692137354e-10 3.195176309e-10 4.625293877e-10 3.763089258e-10 4.454373483e-10 6.121481406e-10 5.495360385e-10 5.143932934e-10 7.749572898e-10 6.769940536e-10 5.440087225e-10 7.709281308e-10 4.683843764e-10 6.388226385e-10 9.143335497e-10 5.284104111e-10 7.15831554e-10 6.418605453e-10 6.160485253e-10 4.373323364e-10 2.822699196e-10 3.538494259e-10 2.934148261e-10 2.903070723e-10 2.522802222e-10 2.537749012e-10 5.072689779e-10 3.314150011e-10 3.652883077e-10 3.971209709e-10 3.73228084e-10 3.10118253e-10 2.885121011e-10 3.154030165e-10 4.524491344e-10 3.478446631e-10 2.886424855e-10 5.794290069e-10 4.708922741e-10 4.334810033e-10 4.891509381e-10 3.823911446e-10 4.558998573e-10 4.313862362e-10 3.690721968e-10 1.659290541e-10 3.297355435e-10 2.983924966e-10 3.247832715e-10 2.428185455e-10 3.557411358e-10 3.356496025e-10 4.641525695e-10 3.957351478e-10 3.41863746e-10 3.722652434e-10 3.106787266e-10 4.255206841e-10 3.164692196e-10 1.231179997e-10 2.549994857e-10 4.147691214e-10 2.698026772e-10 3.710682132e-10 1.978381982e-10 3.238893906e-10 2.745403845e-10 3.223704522e-10 4.642600143e-10 3.729867371e-10 1.46754668e-10 2.915495893e-10 1.800261727e-10 2.01161519e-10 4.529077971e-10 4.074448228e-10 1.940802286e-10 2.92217896e-10 2.555988918e-10 3.088973353e-10 2.357017862e-10 2.934298606e-10 3.249099362e-10 4.097443127e-10 1.883637471e-10 1.146193847e-10 1.976912216e-10 2.126169599e-10 4.744061711e-10 1.266797021e-10 2.040772453e-10 2.58817483e-10 4.400578358e-10 1.702925223e-10 1.716300542e-10 9.63816685e-11 3.667640829e-10 1.2061834e-10 2.612100953e-10 2.786035178e-10 1.954625779e-10 2.783412575e-10 3.655033909e-10 1.018176708e-10 1.372943944e-10 1.569804208e-10 1.499423845e-10 2.473910415e-10 2.752437819e-10 3.937752792e-10 1.908982173e-10 1.363715493e-10 7.134173462e-11 3.015616584e-10 5.163101408e-10 2.313784022e-10 2.524481215e-10 2.230911675e-10 4.576559891e-11 1.501373104e-10 3.98060911e-10 2.777828193e-10 +1.497109106e-10 1.995889912e-10 7.459742249e-11 9.016043952e-11 3.178910787e-10 2.119705483e-10 1.535998202e-10 1.987007337e-10 1.987577354e-10 2.814154639e-10 1.994825915e-10 6.318806518e-11 1.313563742e-10 1.849538715e-10 3.806361167e-10 1.07701548e-10 2.338750177e-10 4.716084061e-10 1.413042991e-10 2.468660868e-10 2.040566958e-10 1.881975404e-10 2.754518714e-10 1.607157057e-10 1.011391204e-10 1.38964265e-10 1.368173671e-10 1.405647429e-10 8.8710277e-11 7.716267721e-11 9.55532657e-11 1.620539308e-10 3.434968079e-10 4.743501282e-10 2.318513226e-10 1.215756116e-10 1.540892668e-10 2.388723114e-10 2.75048152e-10 4.402245977e-10 2.95034958e-10 3.255015659e-10 3.184316173e-10 2.645098403e-10 2.689328765e-10 3.301960391e-10 2.405062768e-10 2.524765011e-10 3.355780638e-10 3.170669886e-10 2.191699756e-10 2.663908584e-10 3.216929464e-10 2.716097151e-10 2.988609426e-10 3.267299221e-10 4.009569555e-10 2.251788767e-10 2.637520584e-10 2.405306226e-10 3.168530192e-10 3.249070027e-10 2.005584524e-10 1.820503706e-10 1.970169225e-10 4.119444055e-10 2.210516189e-10 3.612150183e-10 3.035131478e-10 2.706176671e-10 1.872576322e-10 3.186077668e-10 2.788743443e-10 4.092478208e-10 2.605430006e-10 3.597068128e-10 2.940636993e-10 3.424748817e-10 2.985369104e-10 3.994314843e-10 2.607025265e-10 3.934282812e-10 4.613636224e-10 5.512256548e-10 5.131406801e-10 5.142073928e-10 4.594111784e-10 5.492719153e-10 4.138908029e-10 4.651783071e-10 3.234971901e-10 3.446709875e-10 3.002823558e-10 3.776550277e-10 3.995881163e-10 3.440767732e-10 2.264380527e-10 3.208652962e-10 7.658670234e-11 3.360304729e-10 2.738512605e-10 3.910069727e-10 5.458180013e-10 5.746309875e-10 6.439567084e-10 8.260641878e-10 6.553272166e-10 4.792845709e-10 9.266828382e-10 6.507449351e-10 5.7560804e-10 6.399119389e-10 5.572357157e-10 6.358702028e-10 5.712552458e-10 5.284149113e-10 5.385373814e-10 3.687482511e-10 3.754481248e-10 4.503519391e-10 3.474289876e-10 4.20857467e-10 3.13919359e-10 1.921391707e-10 1.51015464e-10 7.008205451e-11 8.076761049e-11 1.078458354e-14 1.343015635e-10 2.423906945e-10 3.195395735e-10 4.925262735e-10 5.475142612e-10 4.88517937e-10 5.253769576e-10 6.027479446e-10 4.917842467e-10 7.283440883e-10 7.896467849e-10 1.037131407e-09 1.00260193e-09 1.024365446e-09 9.678980992e-10 1.027104483e-09 1.028386992e-09 1.05746894e-09 8.764678416e-10 7.128671845e-10 1.021584656e-09 8.889537996e-10 8.641224959e-10 7.785139269e-10 7.996697504e-10 8.707051414e-10 8.383853192e-10 7.040966608e-10 9.43964572e-10 9.108504841e-10 9.229546618e-10 9.808115646e-10 9.605049689e-10 8.637189099e-10 6.606112458e-10 5.5280991e-10 6.370037958e-10 5.220264996e-10 4.959429093e-10 5.083424242e-10 4.75394707e-10 4.452309613e-10 3.110176472e-10 2.568196905e-14 7.983645784e-11 2.721884951e-10 8.327953197e-11 2.166363899e-10 1.890266483e-10 3.766755064e-10 3.836555699e-10 4.928508412e-10 4.318325074e-10 5.548156056e-10 5.804662403e-10 4.493326386e-10 4.836955676e-10 5.113390647e-10 6.59072951e-10 9.512977431e-10 4.690055858e-10 5.374717902e-10 6.154519278e-10 5.938930154e-10 6.871305307e-10 8.383319886e-10 8.058705503e-10 7.119382442e-10 7.080976389e-10 5.905748671e-10 2.980637019e-10 1.93550101e-10 1.889943609e-10 1.446681714e-10 2.400104271e-10 2.949080445e-10 3.315012237e-10 2.772873377e-10 3.646269928e-10 1.841535351e-10 4.35838371e-10 3.878502638e-10 3.77079565e-10 5.419671839e-10 3.565912266e-10 3.688331339e-10 5.407470381e-10 5.097745052e-10 5.64569251e-10 4.480709282e-10 5.044209725e-10 4.910634694e-10 3.074019847e-10 3.191784128e-10 1.830176754e-10 1.759587981e-10 3.23336071e-10 2.745622362e-10 2.881889274e-10 1.726885104e-10 3.122974601e-10 4.890372074e-10 2.386202824e-10 4.512648897e-10 1.992653854e-10 2.853305655e-10 2.005077617e-10 2.841898945e-10 3.850164712e-10 2.131125951e-10 3.815003289e-10 2.815077042e-10 3.218358726e-10 3.006629986e-10 3.982492023e-10 2.257362568e-10 2.297599557e-10 2.202702707e-10 2.672616932e-10 4.094955557e-10 3.098323007e-10 3.30256994e-10 2.540759523e-10 3.68040185e-10 1.994110399e-10 1.860455122e-10 3.882040188e-10 3.11788855e-10 3.615844675e-10 1.112673674e-10 3.848915032e-10 2.678079486e-10 1.954538393e-10 3.814799629e-10 3.97145333e-10 3.208472699e-10 1.957901719e-10 1.299973065e-10 1.704637084e-10 2.795333277e-10 2.385490387e-10 2.163036079e-10 2.147637525e-10 2.524971792e-10 1.703453015e-10 3.357345055e-10 2.261125257e-10 1.959780519e-10 1.894702321e-10 1.949161211e-10 1.571100665e-10 1.419806972e-10 6.872212607e-11 2.492618181e-10 3.48553994e-10 2.565233408e-10 1.376981755e-10 3.421455558e-10 1.804874221e-10 2.928954924e-10 2.750544803e-10 4.691996799e-10 7.720180329e-11 1.809062735e-10 1.566384061e-10 7.316727614e-11 1.931172394e-10 1.316490766e-10 1.836501612e-10 1.374223086e-10 1.577163727e-10 2.967831027e-10 +3.490409714e-10 1.026381436e-10 1.737715819e-10 3.09725755e-10 2.010963331e-10 2.500041975e-10 1.015689917e-10 1.995749055e-10 1.693193926e-10 1.854788215e-10 1.162372289e-10 9.630959962e-11 1.10658068e-10 1.400927724e-10 2.39138037e-10 1.805610904e-10 1.5199122e-10 1.137071357e-10 3.179618729e-10 1.749261051e-10 2.495007359e-10 3.266768423e-10 1.465710213e-10 1.615043292e-10 1.076007243e-10 1.862799927e-10 2.193578745e-10 3.310117571e-10 9.775440057e-11 2.01140209e-10 1.12819525e-10 1.665376091e-10 2.2240674e-10 2.410953472e-10 1.251622871e-10 3.515816187e-10 3.264554558e-10 3.774731723e-10 2.079068905e-10 2.784775433e-10 1.665180363e-10 2.082584147e-10 4.082674593e-10 2.559538861e-10 4.904133741e-10 2.736976204e-10 4.176703731e-10 4.221664245e-10 2.220007674e-10 4.438660938e-10 3.152628772e-10 3.739783633e-10 1.492960011e-10 3.229612288e-10 2.356578633e-10 2.683574891e-10 3.430923434e-10 2.780400698e-10 2.037278159e-10 2.75639449e-10 1.52949586e-10 3.497940542e-10 3.890738152e-10 2.74020541e-10 3.426266973e-10 5.334241293e-10 1.942559688e-10 3.629571503e-10 1.580431554e-10 4.077226419e-10 3.105625838e-10 3.821109505e-10 2.857917336e-10 3.496122895e-10 2.818906599e-10 2.501121757e-10 3.505910004e-10 2.803660724e-10 2.855229311e-10 4.292183396e-10 2.847650299e-10 2.437699982e-10 5.819929476e-10 5.048206541e-10 4.483900646e-10 5.004927014e-10 5.238997859e-10 5.565606193e-10 3.533926555e-10 4.06053741e-10 4.030250045e-10 3.007310008e-10 4.217200438e-10 4.325024127e-10 3.308733998e-10 3.097198557e-10 4.193112183e-10 2.818854578e-10 1.749488465e-10 2.233844597e-10 2.445861998e-10 1.719567551e-10 3.843683077e-10 5.848714003e-10 6.446474199e-10 7.2700464e-10 6.243234671e-10 5.176544714e-10 7.860461698e-10 6.548690691e-10 6.611421775e-10 6.978749762e-10 6.955334515e-10 9.228720559e-10 6.573952044e-10 5.27620122e-10 4.708130336e-10 5.096955614e-10 4.918151525e-10 4.372278793e-10 3.164446651e-10 4.323962791e-10 3.494120378e-10 3.268775668e-10 2.056472376e-10 1.886817678e-10 1.065634079e-10 1.381443661e-10 2.468351082e-10 3.652237982e-10 4.261255899e-10 4.38626541e-10 5.07375567e-10 5.238024668e-10 5.194607888e-10 4.842022673e-10 5.214858202e-10 5.898921844e-10 9.001142042e-10 6.676827868e-10 9.60959428e-10 9.03492827e-10 8.977083839e-10 9.048262543e-10 9.382020071e-10 8.438683774e-10 9.806124456e-10 1.038738056e-09 8.179877901e-10 9.394088605e-10 9.376221552e-10 7.876935368e-10 1.018058944e-09 8.206917643e-10 9.21868045e-10 9.66112098e-10 1.203600809e-09 8.443114024e-10 9.14762878e-10 8.654863171e-10 8.76372304e-10 8.428815584e-10 6.057336529e-10 5.752981553e-10 4.835843723e-10 7.084269531e-10 4.970163133e-10 5.092605558e-10 4.455590339e-10 3.666229801e-10 1.916275784e-10 1.016714665e-10 1.094439448e-10 1.881971296e-10 2.474570506e-10 1.866396427e-10 2.364635135e-10 3.839587987e-10 3.652114757e-10 4.515254747e-10 4.34979846e-10 3.640287877e-10 4.64996559e-10 6.397839882e-10 5.431340532e-10 6.37377395e-10 6.068742972e-10 5.064971035e-10 6.682823165e-10 5.085095238e-10 4.043515424e-10 5.819419882e-10 5.350011222e-10 4.111910084e-10 7.062778184e-10 6.122769934e-10 6.647471282e-10 3.722332233e-10 2.886035364e-10 2.49526558e-10 1.586851932e-10 2.274431238e-10 2.762084334e-10 2.191292472e-10 3.414969842e-10 3.883405425e-10 3.312988256e-10 4.040194062e-10 4.232439162e-10 3.221355523e-10 4.024057157e-10 4.897293545e-10 4.649795117e-10 5.394955827e-10 4.744956409e-10 3.877529998e-10 3.610408195e-10 3.998331611e-10 5.234646929e-10 5.260606265e-10 3.431154509e-10 2.302440582e-10 2.901028253e-10 2.736517804e-10 2.699112218e-10 2.513823145e-10 3.920055962e-10 2.595168658e-10 2.618556274e-10 3.660787635e-10 4.208109942e-10 1.928802973e-10 3.02202154e-10 2.63701161e-10 3.923466681e-10 4.235803021e-10 2.300235315e-10 2.408097236e-10 3.21436225e-10 2.67675338e-10 2.114980707e-10 1.725965462e-10 2.92267376e-10 4.505786881e-10 3.09566002e-10 3.178182101e-10 2.171469359e-10 2.25683422e-10 2.238212533e-10 3.217294682e-10 3.941739842e-10 3.003733847e-10 3.069151841e-10 2.996814249e-10 2.411643496e-10 2.607537803e-10 3.563296947e-10 3.248792821e-10 4.628495314e-10 3.800558114e-10 5.043081808e-10 3.504629558e-10 1.734648514e-10 1.284930302e-10 1.570331098e-10 2.109540834e-10 2.115481304e-10 1.828292591e-10 1.506931869e-10 3.014105916e-10 2.284843759e-10 6.814994119e-11 9.122867782e-11 1.738421598e-10 1.221190596e-10 2.392980585e-10 1.775095659e-10 9.556959764e-11 1.422608694e-10 2.117279053e-10 1.775237938e-10 1.566182927e-10 1.363244148e-10 1.966501901e-10 1.497298813e-10 3.391092404e-10 1.52273141e-10 3.191829451e-10 1.52832351e-10 8.368837167e-11 1.147281633e-10 9.514064642e-11 1.06938677e-10 2.16340908e-10 9.503116014e-11 4.746831924e-10 2.116301412e-10 2.006846689e-10 2.674168327e-10 1.708290788e-10 +2.201081409e-10 2.730604353e-10 1.727514714e-10 3.220490551e-10 1.929517578e-10 9.232240477e-11 3.105193284e-10 2.043578553e-10 1.814858385e-10 1.266415958e-10 1.350759702e-10 1.007860279e-10 1.586945786e-10 6.413857306e-11 3.321858336e-10 2.317873479e-10 2.525452895e-10 2.82980262e-10 3.523592386e-10 2.698907872e-10 1.507385476e-10 1.561753512e-10 2.362951224e-10 5.422314056e-11 2.646915079e-10 2.572943728e-10 1.533641185e-10 8.328291854e-11 2.544244013e-10 3.733220226e-10 9.733913437e-11 3.110592496e-10 1.549109632e-10 1.358675833e-10 2.314378905e-10 2.968456697e-10 2.084776604e-10 2.885241636e-10 3.738941748e-10 2.598427294e-10 2.695677462e-10 2.152469575e-10 4.496881156e-10 3.156528957e-10 2.172197561e-10 4.497071146e-10 2.586383646e-10 3.091595251e-10 3.239359157e-10 2.703394698e-10 2.161175931e-10 2.60117568e-10 2.783119818e-10 2.609168425e-10 1.867185186e-10 3.393530185e-10 1.504690547e-10 1.320655745e-10 3.635924315e-10 2.092878042e-10 2.127736817e-10 3.689093084e-10 4.758426293e-10 2.859223158e-10 3.392590049e-10 4.309510647e-10 4.256405274e-10 1.480155689e-10 3.716913554e-10 2.997466116e-10 3.061267687e-10 2.276365551e-10 2.052487148e-10 3.763837909e-10 1.429645563e-10 3.645443417e-10 3.058301748e-10 1.63532332e-10 3.314398839e-10 4.394172002e-10 4.222038124e-10 5.221038978e-10 4.065072769e-10 5.48566016e-10 2.953389914e-10 4.353020858e-10 4.667688343e-10 4.025795406e-10 3.818513419e-10 4.262331507e-10 4.653846245e-10 4.462020019e-10 4.16340422e-10 3.48278874e-10 5.338587822e-10 3.206564456e-10 3.231182102e-10 3.33264203e-10 1.342354221e-10 1.432439558e-10 2.629296116e-10 2.9294188e-10 1.947824804e-10 6.120756057e-10 6.619456417e-10 5.786207435e-10 7.06535734e-10 6.373767114e-10 4.927510937e-10 7.237749335e-10 6.586967533e-10 6.78007243e-10 6.280944499e-10 6.703235811e-10 6.027544969e-10 5.5371454e-10 4.010159488e-10 5.775028348e-10 5.397482489e-10 4.538513159e-10 5.807418646e-10 4.398361507e-10 3.374182729e-10 4.428754965e-10 2.227084742e-10 2.573087308e-10 1.550473372e-10 1.545272519e-10 0 1.175613949e-11 2.747436476e-10 4.572959294e-10 3.285440979e-10 4.328217834e-10 5.572702494e-10 6.6590185e-10 5.548633207e-10 4.344015164e-10 6.143828888e-10 6.701601454e-10 9.874683145e-10 7.940712552e-10 7.332944857e-10 8.199068811e-10 1.015670721e-09 9.133401363e-10 9.367558714e-10 8.703818253e-10 9.10717957e-10 8.596870931e-10 9.526435448e-10 9.435186013e-10 1.037982611e-09 8.983581382e-10 9.826424122e-10 8.098928984e-10 1.147987208e-09 8.817730736e-10 8.845821839e-10 8.106320126e-10 1.007188145e-09 6.866121568e-10 5.216007002e-10 5.13435161e-10 6.19850523e-10 5.723487228e-10 5.421074761e-10 4.782707837e-10 3.8625929e-10 2.17417361e-10 1.212552184e-10 2.105157496e-10 1.807384217e-10 7.917872544e-11 1.656190077e-10 2.106972136e-10 3.194309201e-10 4.821811889e-10 4.824055217e-10 3.427584066e-10 5.005321537e-10 5.55750553e-10 3.557493417e-10 6.48039596e-10 5.655964845e-10 7.701934596e-10 8.595916401e-10 6.573609255e-10 7.217610597e-10 6.734041393e-10 5.092415436e-10 5.431373639e-10 6.047171731e-10 4.306860967e-10 7.542720779e-10 7.519969582e-10 6.813683579e-10 2.561087188e-10 2.172444727e-10 2.318934596e-10 1.250799686e-10 2.282152809e-10 1.999626772e-10 2.618508836e-10 3.84857481e-10 3.461807036e-10 3.47349748e-10 5.257402212e-10 4.788321961e-10 3.526570377e-10 2.708665915e-10 2.92512793e-10 5.248303782e-10 4.656733114e-10 4.17004178e-10 3.682509295e-10 3.399811354e-10 3.678091528e-10 4.792402292e-10 3.707108132e-10 3.834519441e-10 2.689232891e-10 2.712337512e-10 4.082154868e-10 4.790093604e-10 4.107015135e-10 4.039939457e-10 2.522951167e-10 3.371571537e-10 4.396322446e-10 2.508975319e-10 2.317386885e-10 3.934508008e-10 2.529968991e-10 3.356881474e-10 3.021442721e-10 3.30856044e-10 3.643338014e-10 2.442082468e-10 3.695565432e-10 2.246405322e-10 2.768831916e-10 1.354645153e-10 9.394330439e-11 2.370020089e-10 2.00521509e-10 3.708210424e-10 3.291635433e-10 2.776050869e-10 3.98890304e-10 2.75284516e-10 1.966558645e-10 2.67787373e-10 2.924263578e-10 1.699102275e-10 1.272720064e-10 3.890357478e-10 2.715036085e-10 2.581046779e-10 2.99701195e-10 2.12403466e-10 3.627757122e-10 1.424349996e-10 1.617254725e-10 2.890790069e-10 1.01313872e-10 2.625295516e-10 2.765593541e-10 2.607019568e-11 9.366269087e-11 1.455071547e-10 1.704935241e-10 2.950131975e-10 2.534850864e-10 2.059731621e-10 2.688769291e-10 3.888999133e-10 1.451141331e-10 2.208022144e-10 2.190124378e-10 3.461520712e-10 9.849614735e-11 1.809408846e-10 2.061208742e-10 9.722104263e-11 2.076422373e-10 2.528672602e-10 9.237085388e-11 1.20081693e-10 4.053328725e-10 3.443012061e-10 1.618917373e-10 1.422822138e-10 1.553306125e-10 1.884701411e-10 1.218138667e-10 8.781132675e-11 1.160011522e-10 1.667121614e-10 2.045552052e-10 +1.945266056e-10 2.485311203e-10 2.894049538e-10 1.126764862e-10 1.274081132e-10 8.247548694e-11 2.366164721e-10 1.384917389e-10 2.270752319e-10 1.215546636e-10 9.425880004e-11 1.950218364e-10 2.554271334e-10 2.329106437e-10 1.70663646e-10 2.0975874e-10 1.811397264e-10 2.521814887e-10 1.661896811e-10 7.192303843e-11 1.983427268e-10 2.292652516e-10 2.424974404e-10 3.287584152e-10 1.818421217e-10 1.878504492e-10 1.83519427e-10 2.100739421e-10 2.980123863e-10 1.383154283e-10 1.918763931e-10 1.237982485e-10 3.131268454e-10 2.77598946e-10 1.491808893e-10 3.809231138e-10 1.605618051e-10 1.618174868e-10 2.461573449e-10 2.054071971e-10 2.824122971e-10 1.974224612e-10 2.635414541e-10 2.4425017e-10 3.077659482e-10 2.249829213e-10 2.516378857e-10 2.227803771e-10 2.349791378e-10 3.289173065e-10 3.548845354e-10 1.95854345e-10 3.687114882e-10 3.219972261e-10 3.33308585e-10 2.136501057e-10 3.08759944e-10 3.167395291e-10 4.724632727e-10 3.189574737e-10 2.498596196e-10 3.705490644e-10 2.787796596e-10 3.75436444e-10 2.81545718e-10 3.14292886e-10 1.77509079e-10 3.136600378e-10 2.23142335e-10 2.906489783e-10 2.571578589e-10 3.385063682e-10 2.870003853e-10 1.957677608e-10 2.281243972e-10 3.013901672e-10 2.663695608e-10 3.077460642e-10 4.063299726e-10 3.331315078e-10 5.283552508e-10 4.765939395e-10 5.202904263e-10 4.788777968e-10 4.473254648e-10 3.349452302e-10 4.467569097e-10 4.774560649e-10 3.9756019e-10 4.002608585e-10 3.542899874e-10 3.931604489e-10 3.564198102e-10 4.371190491e-10 3.352903795e-10 2.91075858e-10 3.68126574e-10 2.236499659e-10 2.44437368e-10 1.724846905e-10 2.799070107e-10 2.956657122e-10 3.424493578e-10 4.588892668e-10 8.247969369e-10 7.230748935e-10 7.736051103e-10 4.541777518e-10 6.73813818e-10 3.226766291e-10 5.319196902e-10 6.129528354e-10 6.522884542e-10 6.065927828e-10 7.181203747e-10 5.427902454e-10 5.130174966e-10 4.59218291e-10 4.804768581e-10 2.707086545e-10 4.746491164e-10 4.391222816e-10 4.234464338e-10 4.219094646e-10 2.303458934e-10 1.744220044e-10 1.407834818e-10 1.353860343e-10 1.144132864e-10 7.650335584e-11 1.683128178e-10 2.380711538e-10 3.740467747e-10 4.039055085e-10 3.939258493e-10 4.580947627e-10 4.691447596e-10 4.883297362e-10 6.356736183e-10 5.258169908e-10 7.493417585e-10 6.472242034e-10 7.697661857e-10 7.799613802e-10 7.345685079e-10 1.089619305e-09 8.845830224e-10 9.447609099e-10 8.398663447e-10 9.041793995e-10 9.363594318e-10 8.893803469e-10 8.479413769e-10 8.866062031e-10 9.838494974e-10 9.810482463e-10 9.626301734e-10 8.800979058e-10 6.892619443e-10 6.766333218e-10 7.730418798e-10 5.821769424e-10 5.200472992e-10 5.066477311e-10 5.723281885e-10 5.482103653e-10 4.684347592e-10 2.401304958e-10 2.813895533e-10 1.056787878e-10 1.402451679e-10 1.226004773e-10 1.124012621e-10 1.618624054e-10 1.089877501e-10 2.655178203e-10 3.522858133e-10 4.366274302e-10 6.01681723e-10 4.574608246e-10 3.579633345e-10 5.833264717e-10 4.701688532e-10 5.052369965e-10 6.051252062e-10 6.595094769e-10 8.440776447e-10 4.661785784e-10 5.651487053e-10 6.492902483e-10 4.838945051e-10 6.986237695e-10 7.463004757e-10 3.93738862e-10 6.82669884e-10 6.633297571e-10 6.802695728e-10 2.17661292e-10 2.345025724e-10 3.058116794e-10 8.065812492e-11 1.266079889e-10 1.509103117e-10 2.146288413e-10 3.143510187e-10 4.423364935e-10 4.188709359e-10 2.712665007e-10 4.31613393e-10 4.201362503e-10 5.870311369e-10 3.336635641e-10 4.792337178e-10 2.603218078e-10 3.947410423e-10 5.38625783e-10 5.99113605e-10 4.897443009e-10 4.256493721e-10 3.282869561e-10 3.802968114e-10 2.550660559e-10 3.364314676e-10 2.656181304e-10 1.914024857e-10 2.8992307e-10 2.367652363e-10 3.52630735e-10 2.793503402e-10 3.912313081e-10 3.091625568e-10 3.646537487e-10 1.999002992e-10 2.794029612e-10 3.300592617e-10 2.146577027e-10 3.319583606e-10 3.181470328e-10 3.63742876e-10 2.534580362e-10 3.237784723e-10 3.335771922e-10 3.401782364e-10 1.806220422e-10 2.760818508e-10 2.274321179e-10 2.506945537e-10 2.597993154e-10 2.901809246e-10 3.529980686e-10 3.926699433e-10 2.363138107e-10 3.570009227e-10 3.905478802e-10 2.802415567e-10 2.057596688e-10 2.668839153e-10 1.430775037e-10 3.979964348e-10 2.503025554e-10 2.564846194e-10 4.065156362e-10 2.385139404e-10 1.622163628e-10 1.880227941e-10 3.274289157e-10 1.778219293e-10 1.971831485e-10 1.115843819e-10 3.657012468e-10 3.222915273e-10 1.143005369e-10 9.622966594e-11 3.001095712e-10 3.286674794e-10 3.776533679e-10 1.866238613e-10 1.862018801e-10 2.366700969e-10 1.421238463e-10 1.377701894e-10 6.631561934e-11 1.42192384e-10 1.657031542e-10 9.002569195e-11 1.728126083e-10 1.585279297e-10 1.149419622e-10 1.589032399e-10 2.866349123e-10 2.94232089e-10 1.374826066e-10 1.967853481e-10 2.605300698e-10 7.569014322e-11 3.559673849e-10 2.055729423e-10 9.402452796e-11 7.267604401e-11 1.328242492e-10 +6.896238685e-11 1.58570703e-10 2.919018694e-10 3.69360106e-10 1.659224876e-10 6.052768676e-11 1.702363285e-10 1.457096726e-10 8.831684591e-11 1.509804193e-10 2.72739845e-10 2.863616055e-10 2.280804423e-10 3.032861438e-10 2.085514333e-10 1.816747817e-10 1.306084288e-10 1.979692776e-10 2.696807293e-10 1.350596403e-10 1.613522805e-10 1.862806125e-10 8.355294499e-11 2.30012144e-10 2.043663156e-10 1.426848585e-10 2.999420006e-10 1.870657552e-10 2.877716529e-10 3.730399241e-10 3.084797608e-10 2.354490878e-10 1.885011286e-10 4.10381653e-10 1.186121606e-10 2.898071143e-10 2.69686217e-10 2.0373148e-10 1.553482835e-10 3.340507647e-10 2.571561373e-10 2.737689322e-10 4.312897122e-10 3.445231731e-10 2.993628319e-10 2.133792992e-10 2.166279001e-10 2.769200666e-10 2.940800767e-10 3.102147217e-10 1.806379381e-10 2.428851993e-10 2.119543775e-10 1.457581195e-10 2.564185542e-10 2.618724831e-10 1.972548868e-10 2.43092194e-10 3.669116752e-10 3.165435437e-10 3.102960568e-10 1.367559133e-10 3.815102948e-10 2.869865487e-10 2.320275485e-10 3.430198385e-10 2.173684687e-10 2.616129579e-10 3.772011398e-10 4.228428361e-10 1.959811562e-10 2.336818333e-10 2.088196759e-10 2.679899127e-10 2.943814798e-10 3.949855059e-10 3.788809762e-10 4.424491925e-10 2.249776486e-10 4.422395434e-10 3.968718492e-10 4.670256119e-10 5.776453508e-10 4.772804999e-10 3.859839174e-10 5.210016954e-10 3.73045825e-10 4.404152275e-10 3.999909657e-10 3.364527665e-10 3.040502228e-10 3.307085702e-10 4.231270808e-10 4.407650259e-10 2.843597334e-10 2.778508493e-10 3.858362983e-10 2.399899436e-10 2.53385437e-10 2.720663265e-10 2.862864973e-10 2.708064295e-10 1.646937849e-10 8.543535227e-10 6.642695837e-10 6.553501683e-10 4.66112494e-10 9.466993003e-10 4.578610986e-10 6.554922184e-10 3.993809866e-10 6.473748851e-10 6.061789474e-10 6.140846827e-10 7.769730709e-10 5.357573496e-10 5.753367881e-10 4.948739973e-10 5.123629387e-10 3.919251447e-10 4.363355541e-10 4.737781989e-10 5.640879849e-10 3.422069248e-10 4.076649591e-10 2.593462314e-10 1.097265398e-10 1.053895902e-10 1.054417209e-10 6.165796342e-11 1.103232878e-10 1.242422764e-10 3.098842467e-10 5.705570937e-10 4.734719018e-10 4.615900652e-10 5.341841239e-10 5.020300788e-10 4.7436753e-10 4.339817792e-10 5.108222459e-10 7.768686768e-10 1.010335594e-09 8.878014443e-10 7.111119179e-10 9.884315575e-10 9.630780566e-10 7.982691961e-10 9.689328966e-10 8.640232105e-10 7.302061431e-10 8.431386803e-10 8.647071611e-10 9.023922567e-10 8.364271885e-10 9.185694545e-10 6.518189131e-10 9.599319637e-10 5.727687955e-10 6.107795334e-10 4.817587035e-10 3.768257188e-10 5.43818752e-10 4.447641318e-10 5.334080267e-10 5.166350152e-10 3.118811302e-10 1.040412757e-10 3.435160572e-10 1.666592846e-17 6.608901768e-11 8.481141311e-11 6.53557761e-11 2.22849192e-10 2.730452076e-10 3.458024374e-10 2.567522878e-10 4.601109109e-10 4.739889685e-10 5.24118049e-10 3.112933306e-10 4.480114192e-10 5.735405956e-10 4.612278952e-10 6.205128469e-10 7.126088249e-10 6.731382389e-10 6.026611631e-10 5.93536856e-10 4.970244616e-10 4.300385726e-10 7.459119606e-10 7.631233559e-10 6.266649106e-10 4.725659884e-10 9.241632847e-10 7.361279388e-10 3.271687986e-10 1.336526329e-10 1.548123447e-10 3.009455547e-10 2.450325775e-10 1.897795634e-10 3.568924118e-10 3.261063482e-10 3.821756136e-10 4.095812132e-10 3.465097496e-10 4.572950277e-10 4.240562584e-10 3.680415769e-10 3.664111992e-10 3.828804399e-10 3.576954635e-10 4.996633378e-10 3.405419508e-10 4.345091397e-10 4.098648425e-10 4.673540731e-10 4.505027987e-10 3.9372113e-10 1.983357074e-10 2.70898988e-10 2.281651967e-10 3.538631785e-10 1.722537628e-10 3.444275108e-10 2.748761942e-10 3.500356125e-10 1.889778157e-10 3.858731435e-10 2.400716822e-10 2.502940518e-10 3.946136252e-10 3.02593808e-10 3.519243616e-10 2.243977261e-10 2.234628715e-10 3.120982531e-10 3.336906737e-10 4.873651447e-10 1.767086489e-10 3.008119661e-10 3.060550782e-10 2.73962143e-10 2.710409316e-10 4.51332029e-10 3.401966613e-10 2.546481468e-10 2.507317887e-10 4.707512024e-10 2.208759515e-10 2.273379639e-10 5.286213561e-10 3.90388599e-10 2.651302746e-10 1.428889273e-10 2.049434075e-10 3.107602917e-10 1.434051273e-10 5.4699371e-10 3.529438199e-10 2.235228055e-10 4.557122698e-10 1.490037092e-10 2.14913558e-10 3.184997701e-10 1.920472325e-10 3.63998821e-10 1.947286587e-10 1.974365326e-10 8.503737004e-11 1.268217869e-10 9.931346347e-11 1.511692726e-10 2.0373164e-10 2.266716736e-10 8.088289757e-11 1.108782494e-10 2.251290212e-10 2.155971967e-10 2.627720999e-10 1.587676432e-10 1.093520101e-10 2.561984788e-10 4.009208652e-10 1.438607016e-10 2.420896261e-10 1.182415009e-10 1.670716374e-10 1.055729056e-10 7.495049887e-11 1.652677526e-10 1.122932407e-10 1.609018286e-10 1.694547143e-10 1.485616877e-10 2.703635154e-10 2.963550209e-10 9.661085658e-11 +1.433324655e-10 1.996091541e-10 1.774611886e-10 2.318147003e-10 1.656682814e-10 4.069175069e-10 1.21875456e-10 3.486892942e-10 1.862353339e-10 1.667224002e-10 1.123067592e-10 1.6455089e-10 7.183583729e-11 2.843505282e-10 3.736876456e-10 3.506035363e-10 3.741749699e-10 1.168811308e-10 1.266077337e-10 1.333344422e-10 2.74787477e-10 2.524224973e-10 9.390074772e-11 1.193211862e-10 3.217323186e-10 5.634801099e-11 1.105467586e-10 5.032069941e-10 8.071905296e-11 1.345251012e-10 1.527913942e-10 1.282925296e-10 8.448097599e-11 3.435777181e-10 2.459430412e-10 4.077187781e-10 2.296894877e-10 4.304267119e-10 2.813674576e-10 3.144645069e-10 3.989916179e-10 2.870079335e-10 3.572540165e-10 2.068987431e-10 2.152972797e-10 2.709414171e-10 2.833081275e-10 3.266904787e-10 3.385923618e-10 2.925275535e-10 3.25312896e-10 2.449129784e-10 2.552714036e-10 1.498833007e-10 2.435764615e-10 1.986054407e-10 3.187157037e-10 2.9505199e-10 2.967136496e-10 1.364498607e-10 2.559774771e-10 2.911804526e-10 2.145470029e-10 3.136445657e-10 3.855835801e-10 1.28396549e-10 2.379934787e-10 2.82189193e-10 3.811276756e-10 3.596752225e-10 4.225415366e-10 1.743888885e-10 2.296506679e-10 3.389621141e-10 1.484618624e-10 3.714680834e-10 3.093951167e-10 3.180506787e-10 3.293271189e-10 2.498627941e-10 3.837460103e-10 4.234671692e-10 4.341782989e-10 4.330919956e-10 5.168235064e-10 4.18711647e-10 2.960271145e-10 4.99437527e-10 4.584518784e-10 3.360703065e-10 4.104051649e-10 2.623826638e-10 3.873151101e-10 2.788067074e-10 2.366008665e-10 3.481291307e-10 3.348159946e-10 2.620783362e-10 2.539863561e-10 1.720015931e-10 1.196191915e-10 2.933419779e-10 1.552340314e-10 5.641839378e-10 4.671498777e-10 6.809428736e-10 6.807217653e-10 6.597482873e-10 7.680454325e-10 6.300036657e-10 8.169677253e-10 7.219272711e-10 6.393155822e-10 5.794501482e-10 7.179785519e-10 7.656852753e-10 4.87553822e-10 4.521509034e-10 5.782443494e-10 4.571480354e-10 5.009322751e-10 3.279356673e-10 3.437084932e-10 3.661215275e-10 4.067675235e-10 3.092180211e-10 1.736593269e-10 1.854872224e-10 1.585869383e-10 1.097745608e-10 3.906512082e-14 1.040817027e-10 3.598158233e-10 3.930589146e-10 3.802097787e-10 5.846641529e-10 4.812613639e-10 4.597224135e-10 4.770183257e-10 5.923860701e-10 5.176997258e-10 3.823363195e-10 6.208469889e-10 7.637604683e-10 6.612342406e-10 8.492914909e-10 8.325510171e-10 7.50837916e-10 9.080363591e-10 7.755016247e-10 8.760095965e-10 9.108923704e-10 9.024648431e-10 6.793324703e-10 7.985955409e-10 8.749776375e-10 6.804045626e-10 6.168782035e-10 5.19542238e-10 4.569862933e-10 6.383774602e-10 5.633613859e-10 4.663954792e-10 5.895071847e-10 4.3047119e-10 4.250192699e-10 4.491090414e-10 2.916489813e-10 1.496716529e-10 1.73739249e-10 1.229663266e-10 7.119472065e-11 6.89695868e-11 1.454868268e-10 3.212428351e-10 3.315722061e-10 2.671630582e-10 5.340710678e-10 4.56658519e-10 3.945138179e-10 5.647635231e-10 5.022254291e-10 5.987970505e-10 4.816777798e-10 8.958188618e-10 8.080177813e-10 6.32767929e-10 3.572264006e-10 7.404198668e-10 7.052176916e-10 5.437346989e-10 5.353098571e-10 4.464845774e-10 4.384760169e-10 9.162056922e-10 7.435080176e-10 5.279393901e-10 3.528969062e-10 1.665274899e-10 2.660849719e-10 7.771424497e-11 2.026605643e-10 3.356528751e-10 4.058268359e-10 4.50046914e-10 1.869359565e-10 4.055806091e-10 3.598913544e-10 3.475061851e-10 4.151612774e-10 3.703013877e-10 3.520097161e-10 4.666570912e-10 3.795321168e-10 4.981593963e-10 3.744377569e-10 4.105134485e-10 4.787640878e-10 4.512104862e-10 2.413586128e-10 3.356169961e-10 3.021195821e-10 3.137113093e-10 2.74334391e-10 2.94092942e-10 4.213142617e-10 2.491849883e-10 3.350945396e-10 4.034019445e-10 1.781369854e-10 4.354553054e-10 3.548171171e-10 3.373842884e-10 1.885416542e-10 3.026599526e-10 2.391535092e-10 2.913954177e-10 4.021531515e-10 2.908335545e-10 3.0219958e-10 3.734451919e-10 1.194567893e-10 1.778279917e-10 2.804468182e-10 3.59763193e-10 1.206220232e-10 2.150208415e-10 2.376016202e-10 1.640606752e-10 2.680398587e-10 1.642280761e-10 3.006559234e-10 2.551357326e-10 3.576676542e-10 3.435269295e-10 2.817357382e-10 2.506275916e-10 1.62171327e-10 3.006596904e-10 2.493693193e-10 2.628229931e-10 3.744366533e-10 2.712661334e-10 3.83727939e-10 1.224464859e-10 3.525240567e-10 1.857929061e-10 1.291102279e-10 1.985438641e-10 3.824054024e-10 2.297781256e-10 1.636189599e-10 1.325606302e-10 1.427358131e-10 2.128758203e-10 1.350629019e-10 2.33578135e-10 2.245173266e-10 9.803401291e-11 2.87487023e-10 1.537332956e-10 1.388446994e-10 2.138782628e-10 2.446857369e-10 3.278275753e-10 2.352280605e-10 2.039702316e-10 1.783503845e-10 3.292545297e-10 3.540870252e-10 2.732766799e-10 1.360676906e-10 1.535478035e-10 8.001425622e-11 2.410632376e-10 1.372755929e-10 1.167948623e-10 3.370118898e-10 4.677512552e-12 2.745318963e-10 +8.312073397e-11 1.443434124e-10 1.185275599e-10 2.613829082e-10 1.614765478e-10 1.668202157e-10 1.498981221e-10 3.669400847e-10 1.474686952e-10 1.031210795e-10 1.103296469e-10 1.34341906e-10 2.687808655e-10 1.977168971e-10 1.543354682e-10 8.845791574e-11 2.079578474e-10 1.054592933e-10 1.732411898e-10 1.987693292e-10 2.428092375e-10 1.644688841e-10 5.219077635e-11 2.095985e-10 2.381680928e-10 1.867105329e-10 9.012788437e-11 1.168401902e-10 1.809797132e-10 1.402614349e-10 3.994111368e-10 8.800875436e-11 3.286651062e-10 1.943204938e-10 2.2761555e-10 2.066102978e-10 4.303607949e-10 2.312149677e-10 2.955818744e-10 1.985994759e-10 2.473776523e-10 2.544164915e-10 2.740243821e-10 1.641258505e-10 2.751747575e-10 1.740150363e-10 2.258744171e-10 2.591957154e-10 2.586567232e-10 3.867031187e-10 5.020305233e-10 1.621152048e-10 3.628639145e-10 2.848218721e-10 3.084729632e-10 1.813028894e-10 1.998468774e-10 1.981113339e-10 2.944856405e-10 1.798233695e-10 3.381851291e-10 2.739162573e-10 3.483859974e-10 1.888031514e-10 2.533481756e-10 2.598061031e-10 2.077100135e-10 2.551090931e-10 3.317859168e-10 2.641043048e-10 1.923195288e-10 2.96271208e-10 3.587910901e-10 2.678803479e-10 2.614429706e-10 3.96640112e-10 3.432956831e-10 1.787308408e-10 3.380173384e-10 4.104938143e-10 4.39696152e-10 4.611851892e-10 6.977447522e-10 4.075873977e-10 2.967791841e-10 6.343889953e-10 5.407852723e-10 4.910430471e-10 4.553161403e-10 4.832658696e-10 2.794100542e-10 3.935120232e-10 4.132932869e-10 2.851745637e-10 3.468092204e-10 4.462270724e-10 3.021289179e-10 2.36764023e-10 2.040384429e-10 2.236591344e-10 1.508439452e-10 2.656787616e-10 2.216951964e-10 2.992341218e-10 5.943703981e-10 5.284727939e-10 6.032724196e-10 1.009813465e-09 8.541385264e-10 5.226607077e-10 7.307313065e-10 6.036383639e-10 5.057158729e-10 5.838388609e-10 6.502132573e-10 5.101280971e-10 6.894807599e-10 3.744767955e-10 5.571574789e-10 5.216456801e-10 4.301598564e-10 3.302404402e-10 5.659216963e-10 3.864915117e-10 3.689036007e-10 3.448192243e-10 1.556673031e-10 1.245492525e-10 1.845644333e-10 2.676609692e-17 1.122629082e-10 0 2.543092557e-10 3.639242335e-10 2.67527275e-10 4.147176399e-10 5.498984032e-10 4.97988378e-10 5.690040815e-10 5.76269993e-10 5.582208702e-10 4.331553073e-10 4.524057208e-10 4.916191559e-10 5.185377099e-10 6.753045561e-10 6.970399647e-10 7.877932164e-10 6.432694221e-10 5.41695499e-10 6.660166772e-10 6.638171675e-10 6.697466088e-10 5.757743951e-10 5.41520928e-10 6.7540709e-10 4.120044345e-10 4.694208678e-10 3.864685115e-10 4.295783363e-10 4.418517717e-10 4.108852567e-10 4.75796753e-10 3.110357398e-10 3.139261699e-10 3.55372832e-10 2.093425841e-10 5.464388861e-14 6.456925202e-15 1.479100024e-10 7.784834995e-11 1.18998912e-10 1.315841013e-10 2.89073283e-10 3.88532669e-10 2.602129244e-10 3.88934511e-10 4.166721045e-10 3.715378024e-10 4.287126064e-10 4.876676526e-10 5.551252452e-10 4.903487164e-10 6.52708411e-10 6.92165616e-10 8.079542913e-10 3.489345973e-10 6.932462349e-10 6.410885889e-10 6.664252551e-10 3.471685307e-10 7.006435758e-10 3.012903571e-10 3.78760539e-10 6.52613208e-10 4.876072102e-10 4.03090034e-10 1.915209806e-10 2.412376245e-10 2.288158456e-10 2.292126986e-10 1.86311695e-10 3.932747863e-10 3.354721482e-10 3.887623413e-10 3.827851827e-10 3.416982801e-10 3.675973908e-10 3.044776773e-10 4.634666174e-10 4.988907272e-10 5.082570534e-10 4.15952411e-10 3.606636513e-10 4.613946858e-10 3.48203919e-10 3.933644221e-10 2.864041841e-10 3.716632524e-10 2.686197769e-10 3.281100437e-10 3.332765028e-10 2.19537333e-10 2.336549096e-10 1.994135763e-10 3.688613312e-10 3.784120577e-10 3.076011596e-10 3.012715941e-10 3.242374678e-10 3.318444318e-10 2.50371103e-10 3.131955453e-10 2.59472326e-10 1.77165154e-10 1.777166964e-10 4.031388855e-10 2.853701566e-10 3.4745599e-10 4.630672786e-10 1.051644526e-10 2.86319654e-10 2.022179784e-10 2.383578177e-10 1.999356762e-10 3.21960126e-10 2.755288877e-10 3.43982182e-10 2.630384683e-10 3.306048509e-10 2.598150401e-10 3.24944488e-10 2.231107614e-10 2.74876692e-10 3.15010384e-10 4.509418459e-10 2.478182531e-10 1.646823758e-10 2.88683671e-10 2.865796986e-10 2.136372647e-10 4.271234807e-10 2.893219762e-10 3.490749433e-10 1.089329123e-10 2.710891656e-10 2.883879087e-10 3.563686071e-10 2.362310979e-10 2.521831114e-10 1.226872828e-10 9.24852403e-11 2.960814575e-10 1.061208509e-10 1.819173071e-10 1.347755052e-10 1.460423366e-10 4.659975186e-10 1.739865315e-10 2.553861145e-10 1.789611689e-10 5.778454712e-11 2.153764587e-10 1.338318852e-10 2.303967554e-10 9.991426336e-11 1.22551513e-10 1.580512131e-10 2.226777787e-10 3.441824141e-10 8.588817165e-11 1.498711406e-10 7.016656497e-11 3.916362656e-10 2.819433532e-10 1.414058019e-10 3.455205132e-10 1.633963753e-10 1.879230076e-10 5.583140979e-11 +1.351465288e-10 1.213561557e-10 3.08415238e-10 2.360077791e-10 1.553710486e-10 3.127411649e-10 2.407247399e-10 1.441921121e-10 2.792909164e-10 3.348013997e-10 1.956512868e-10 1.463678953e-10 1.460887304e-10 2.346325236e-10 2.36553609e-10 1.822804119e-10 1.341344184e-10 3.486376993e-10 2.603704144e-10 1.769596909e-10 2.744576224e-10 2.28327687e-10 1.887820997e-10 3.867264437e-10 1.221781279e-10 2.981238864e-10 1.380240751e-10 7.335651448e-11 1.969500248e-10 1.836344051e-10 2.795156128e-10 1.192538936e-10 1.48556257e-10 2.701582292e-10 1.077796195e-10 3.788248029e-10 2.896528177e-10 2.54464567e-10 1.854365146e-10 3.511454242e-10 2.7066983e-10 8.484947479e-11 2.514329413e-10 4.935630918e-10 1.907801629e-10 3.155248576e-10 4.608793858e-10 4.416892199e-10 2.808723946e-10 5.10952217e-10 3.756275643e-10 3.312972843e-10 1.824692104e-10 3.335051948e-10 2.761171504e-10 2.346852764e-10 2.552268627e-10 2.021943975e-10 6.600971514e-11 2.598312864e-10 4.011508893e-10 3.192942e-10 2.552854146e-10 4.532646921e-10 3.376551835e-10 1.58752366e-10 2.486412593e-10 1.76995299e-10 1.677611861e-10 3.144447422e-10 3.118280555e-10 2.331846891e-10 4.578924111e-10 3.333657204e-10 3.628456304e-10 1.313962733e-10 3.287027387e-10 2.187754739e-10 3.872148176e-10 2.668637945e-10 4.92162902e-10 3.665585319e-10 3.874387506e-10 3.715400669e-10 4.527706393e-10 4.194314863e-10 5.030274935e-10 4.679069973e-10 3.514287017e-10 3.776113273e-10 4.349923628e-10 4.186688479e-10 3.272703711e-10 4.410173518e-10 3.296066183e-10 3.674264785e-10 3.781221516e-10 2.730979644e-10 2.435508012e-10 3.068120265e-10 1.520181692e-10 1.731644169e-10 2.532660632e-10 2.665278165e-10 5.090204676e-10 7.345598992e-10 6.539189853e-10 9.139459284e-10 7.072936753e-10 7.502001868e-10 6.45293339e-10 4.731608802e-10 7.19448241e-10 5.695571661e-10 7.399357411e-10 7.538488223e-10 5.643745249e-10 6.801363035e-10 4.921073242e-10 5.184580706e-10 3.825827551e-10 5.069106093e-10 3.763398008e-10 3.775792419e-10 3.628363718e-10 3.689615807e-10 3.507560987e-10 1.875244199e-10 1.28931271e-10 1.234733447e-10 1.325253004e-10 3.267644695e-11 2.297669138e-10 1.063093533e-10 3.909920832e-10 4.428959726e-10 3.485940653e-10 5.19107464e-10 4.032773966e-10 5.72811934e-10 5.307608864e-10 4.903489625e-10 4.761541711e-10 5.118607073e-10 4.280006992e-10 5.436054954e-10 4.5968272e-10 6.16915894e-10 6.02570257e-10 5.428660718e-10 6.98859893e-10 6.397766116e-10 4.991598475e-10 6.136363397e-10 6.548425773e-10 5.166208404e-10 4.275815623e-10 4.104652713e-10 4.529855132e-10 4.981004012e-10 5.091987649e-10 4.194030553e-10 4.910343949e-10 3.41235822e-10 3.131025526e-10 2.142265896e-10 9.844883984e-11 1.742575449e-10 8.870815748e-11 1.175983177e-10 1.036598054e-12 1.877554979e-11 2.154711617e-10 1.923639173e-10 4.636975545e-10 3.701643156e-10 6.440659648e-10 4.771831254e-10 3.968404566e-10 4.554992749e-10 4.071093585e-10 4.496874752e-10 6.177536567e-10 6.346435995e-10 7.211261761e-10 6.675079458e-10 5.265963665e-10 4.372022391e-10 5.869130538e-10 7.111047724e-10 6.617737722e-10 4.764688669e-10 5.521783272e-10 7.555007988e-10 8.578837018e-10 6.391555129e-10 2.943558026e-10 2.576371801e-10 2.311714589e-10 1.733405216e-10 1.309278441e-10 3.379393494e-10 3.064252242e-10 2.672437417e-10 3.977738422e-10 2.931202145e-10 2.318960916e-10 2.592565506e-10 3.463656252e-10 4.098274882e-10 3.325587711e-10 4.441521705e-10 5.621372623e-10 5.809630917e-10 3.5717498e-10 3.963884772e-10 4.370658653e-10 4.439016083e-10 4.700197585e-10 4.103253644e-10 4.389829477e-10 4.380063675e-10 2.667650539e-10 2.677556846e-10 1.837604586e-10 2.544716871e-10 3.081268268e-10 2.787785948e-10 3.48490598e-10 4.060338426e-10 4.392311183e-10 2.291927365e-10 3.460039153e-10 2.416838434e-10 1.966223118e-10 2.337504105e-10 3.186467804e-10 2.199195643e-10 2.683985627e-10 2.740312567e-10 2.382918432e-10 1.234276607e-10 2.050372496e-10 2.318484137e-10 3.88585934e-10 2.490182672e-10 1.449101354e-10 3.38995954e-10 3.047511675e-10 1.534120845e-10 3.074315233e-10 3.184667105e-10 1.585307465e-10 2.868750605e-10 2.433589102e-10 3.561496536e-10 4.462463134e-10 3.391693551e-10 2.905739909e-10 2.789312892e-10 2.040882658e-10 3.73111631e-10 2.679456531e-10 3.68899754e-10 1.221139494e-10 2.106196769e-10 1.706897917e-10 1.543431179e-10 1.95184352e-10 8.820232013e-11 1.461073158e-10 4.020456823e-10 3.696481433e-10 1.877687484e-10 2.97519004e-10 1.690471272e-10 1.205403019e-10 1.398638624e-10 2.016208307e-10 1.208281859e-10 1.631506559e-10 3.258709248e-10 1.828105765e-10 3.085168125e-10 3.489889806e-10 1.123704614e-10 1.49028784e-10 1.352352746e-10 2.335637282e-10 9.737939697e-11 2.058420218e-10 3.709186753e-10 1.651189237e-10 2.060035919e-11 1.04443697e-10 1.277769384e-10 1.215180348e-10 1.751913953e-10 2.679161811e-10 1.541919918e-10 +2.527962011e-10 2.354563097e-10 1.739672441e-10 1.857659564e-10 1.73006606e-10 2.414560728e-10 2.258321319e-10 3.213155364e-10 2.363458124e-10 1.046709878e-10 7.415345022e-11 8.678318724e-11 3.194178622e-10 4.134756605e-10 8.422974678e-11 2.115075867e-10 3.100025227e-10 2.771827207e-10 1.820194093e-10 1.010160171e-10 1.616325999e-10 2.870558883e-10 1.313964045e-10 1.496921936e-10 1.542818199e-10 1.338700702e-10 1.096775033e-10 8.835540083e-11 2.948430177e-10 2.148601409e-10 3.317992354e-10 3.388440858e-10 2.296789961e-10 1.319638895e-10 1.50653105e-10 3.272949077e-10 2.635378011e-10 3.945422594e-10 3.112158897e-10 2.0474135e-10 3.060310759e-10 2.760467134e-10 3.505311128e-10 3.378054643e-10 2.28878571e-10 2.849547318e-10 1.693059529e-10 2.456850067e-10 2.017148481e-10 1.782445875e-10 3.761127018e-10 3.065538603e-10 2.605360531e-10 2.16352092e-10 2.014114924e-10 2.597128518e-10 1.825880425e-10 3.640081998e-10 2.315365194e-10 3.69408754e-10 2.362071935e-10 2.311602975e-10 2.226416964e-10 3.131993753e-10 3.896086047e-10 2.871377734e-10 2.694731708e-10 3.417964197e-10 3.601694524e-10 4.968772701e-10 3.070030685e-10 3.320310889e-10 4.234251846e-10 2.970808101e-10 1.627254919e-10 2.431025135e-10 2.74811178e-10 2.571372017e-10 4.272865815e-10 3.366754244e-10 3.266658112e-10 4.647574399e-10 4.102489427e-10 5.089332408e-10 2.998973016e-10 3.076297014e-10 2.741515233e-10 6.141208992e-10 2.524014191e-10 3.082067493e-10 3.368944547e-10 2.441779732e-10 4.125167033e-10 4.136766946e-10 3.251045963e-10 2.643006693e-10 2.621007378e-10 2.469597262e-10 2.932210224e-10 3.530890138e-10 1.459083739e-10 2.627617294e-10 2.55972611e-10 1.761821183e-10 4.600609453e-10 5.598435256e-10 4.449570172e-10 5.607358965e-10 5.776902016e-10 6.594161141e-10 7.867563847e-10 4.968808498e-10 6.918143548e-10 4.807950101e-10 4.392535055e-10 6.433454956e-10 5.2075439e-10 5.529457097e-10 5.185584681e-10 5.634464417e-10 4.89348082e-10 4.805320073e-10 4.756454882e-10 3.556040155e-10 4.001726202e-10 3.816179122e-10 4.123823656e-10 2.692168676e-10 2.736890965e-10 1.5595733e-10 3.39085935e-18 1.277201162e-10 1.751995249e-10 1.065855939e-10 2.888583638e-10 1.575041711e-10 3.592101272e-10 5.020585839e-10 5.356324697e-10 4.960203437e-10 3.987746526e-10 4.372408133e-10 5.366482565e-10 4.078790195e-10 5.708296048e-10 5.862387703e-10 4.90774299e-10 5.554495285e-10 5.218123189e-10 5.098164965e-10 4.782488619e-10 5.383046673e-10 4.101170557e-10 4.577356249e-10 4.478307984e-10 4.823124475e-10 4.435209776e-10 5.592873412e-10 5.965773129e-10 4.707374891e-10 4.447491124e-10 4.91528356e-10 4.553864823e-10 3.952843489e-10 3.978749304e-10 2.342858911e-10 1.82946901e-10 6.486711332e-11 1.435502167e-10 1.108611443e-10 9.032578909e-11 2.340485207e-10 2.737274567e-10 3.670012859e-10 4.051407557e-10 3.591465908e-10 3.028769825e-10 3.735548351e-10 5.128796533e-10 4.307862612e-10 3.709018814e-10 3.983006067e-10 6.448918078e-10 5.159260772e-10 5.999331987e-10 5.058867005e-10 7.393250561e-10 6.307622069e-10 4.437050879e-10 6.584162995e-10 6.823800585e-10 7.092498768e-10 5.676636111e-10 7.789621309e-10 9.620805029e-10 6.650274278e-10 2.963827678e-10 2.747004986e-10 1.810917822e-10 1.765045915e-10 1.549927515e-10 4.41840188e-10 3.013994953e-10 2.561005514e-10 4.798582242e-10 4.089935594e-10 3.875024425e-10 5.388725051e-10 3.213613492e-10 3.742874458e-10 3.721008228e-10 3.134873369e-10 4.692490341e-10 5.024659012e-10 3.318980079e-10 3.601775872e-10 5.514755387e-10 4.836415598e-10 4.270176678e-10 4.793537078e-10 3.648616262e-10 3.121233846e-10 4.121168473e-10 1.840736103e-10 1.88879758e-10 2.648769481e-10 4.083105114e-10 2.882465601e-10 2.692631267e-10 4.133645902e-10 4.05075872e-10 3.753176264e-10 2.052576445e-10 2.292037874e-10 1.769856978e-10 2.089816484e-10 3.04366148e-10 2.271812909e-10 3.644698801e-10 2.188979477e-10 3.129745777e-10 3.53695822e-10 3.16264947e-10 3.270023999e-10 1.589543864e-10 3.74330801e-10 3.09033676e-10 2.947667756e-10 1.389671295e-10 5.000052878e-10 2.908831443e-10 2.397600714e-10 3.24350839e-10 1.947490096e-10 3.010970938e-10 3.649408061e-10 2.113827268e-10 1.473217347e-10 2.04173681e-10 2.512573723e-10 1.892245284e-10 4.266559903e-10 2.813386448e-10 3.161365122e-10 2.126322641e-10 2.8428872e-10 2.764987269e-10 1.394618129e-10 1.503123039e-10 1.15463953e-10 2.191192008e-10 2.325265922e-10 1.78602662e-10 9.95291649e-11 1.758232083e-10 1.321975945e-10 1.490723287e-10 1.047634287e-10 2.555917076e-10 1.388970769e-10 6.939962326e-11 3.097058496e-10 1.483554362e-10 1.248501275e-10 8.88424004e-11 2.691535148e-10 2.109894508e-10 1.504814117e-10 2.17085143e-10 4.603742569e-11 2.15085112e-10 1.877099716e-10 2.529633619e-10 4.14124149e-10 3.130753121e-10 2.008248144e-10 1.811738345e-10 2.55673795e-10 1.852431935e-10 1.38382873e-10 +3.63868672e-10 1.33051533e-10 1.10415966e-10 7.810872686e-11 2.660619893e-10 1.814441088e-10 3.850865754e-10 2.664821299e-10 1.424758447e-10 4.374460719e-10 1.730768015e-10 2.306654409e-10 8.397828802e-11 7.144925093e-11 1.34352805e-10 1.45527101e-10 6.762371674e-11 1.924012561e-10 4.179878096e-10 1.244683604e-10 2.194670912e-10 1.762001842e-10 2.459914308e-10 3.818453734e-10 2.671873371e-10 2.263848367e-10 1.10952212e-10 1.693106478e-10 1.465806198e-10 2.912994521e-10 3.340146685e-10 2.269156708e-10 3.637980633e-10 1.872096272e-10 1.899175578e-10 3.438550439e-10 2.804943092e-10 3.963290252e-10 4.341823545e-10 5.125602836e-10 5.75829559e-10 4.650572886e-10 4.483769289e-10 2.756265756e-10 4.506625551e-10 2.89992088e-10 2.459965272e-10 2.876047329e-10 2.480745206e-10 2.485765743e-10 2.372200715e-10 2.608753827e-10 1.872402268e-10 1.553162587e-10 2.193124357e-10 3.827094644e-10 1.005395965e-10 2.531116955e-10 3.862232844e-10 2.10727217e-10 1.804240551e-10 3.836802877e-10 2.694621169e-10 2.779777425e-10 2.217382729e-10 2.294711759e-10 3.073005197e-10 1.848069539e-10 2.456906404e-10 1.935575575e-10 1.619537749e-10 3.009837397e-10 4.13890812e-10 2.945357331e-10 2.771488692e-10 3.266926827e-10 3.020322899e-10 3.481134167e-10 4.623393398e-10 3.267171429e-10 3.321569913e-10 4.847770852e-10 4.212357757e-10 3.091054398e-10 5.89769387e-10 4.350400643e-10 4.391834392e-10 5.483991477e-10 3.441385872e-10 4.320593779e-10 3.996801387e-10 3.47609725e-10 2.402394308e-10 3.15761327e-10 2.384793766e-10 2.185995838e-10 2.708283112e-10 2.323936534e-10 2.286931638e-10 1.476032459e-10 1.590041979e-10 2.045186743e-10 2.730073332e-10 2.214869628e-10 5.053260802e-10 4.869539693e-10 5.208512351e-10 5.84533701e-10 4.931867829e-10 6.751375205e-10 6.55889463e-10 6.183860037e-10 9.527514618e-10 5.480496944e-10 6.089948956e-10 4.778259544e-10 7.690651188e-10 6.520493746e-10 6.011198322e-10 6.375407575e-10 3.970640832e-10 4.129161787e-10 2.888532629e-10 4.252635216e-10 3.243449659e-10 4.307610456e-10 2.850896506e-10 3.167841476e-10 2.34365159e-10 1.889099917e-10 0 1.688856871e-10 1.247671779e-10 8.999879217e-19 7.466115303e-11 1.966112547e-10 3.062903969e-10 4.197787208e-10 3.731707818e-10 4.606784931e-10 5.025152296e-10 5.208910828e-10 4.593086581e-10 5.332063263e-10 4.526368525e-10 5.158013017e-10 5.450636925e-10 6.401072304e-10 4.818532952e-10 4.518554936e-10 5.558625802e-10 4.707910634e-10 6.004947618e-10 5.124196874e-10 4.628504866e-10 4.791057663e-10 5.071930022e-10 5.315969463e-10 5.44766145e-10 4.622761573e-10 5.141355521e-10 5.018167696e-10 4.696893928e-10 3.081617346e-10 8.150325524e-11 8.561627089e-11 1.534981212e-10 1.430363685e-10 1.785198016e-15 1.36996064e-10 6.790939044e-11 2.957605367e-10 3.114662918e-10 3.806287574e-10 4.329762605e-10 3.502707459e-10 4.895952242e-10 4.329361693e-10 4.027106877e-10 3.952163049e-10 4.256376655e-10 3.76026054e-10 4.672310468e-10 6.74007511e-10 7.467186382e-10 6.186853761e-10 3.997389256e-10 5.379266253e-10 6.734326625e-10 3.982659252e-10 8.656609333e-10 3.508643416e-10 4.145024285e-10 6.668031442e-10 7.230492353e-10 5.486833073e-10 1.680171746e-10 2.148368081e-10 1.854935248e-10 1.725858397e-10 2.170930036e-10 1.930550981e-10 3.30562357e-10 4.04388884e-10 3.019145375e-10 2.540934285e-10 3.181274484e-10 4.347332749e-10 3.993620156e-10 3.497826995e-10 3.927115849e-10 5.135465275e-10 4.177345961e-10 4.237973641e-10 2.502811369e-10 4.046937424e-10 5.058728921e-10 5.33389851e-10 3.538612261e-10 3.482041762e-10 3.716447856e-10 2.731233911e-10 1.446147083e-10 2.66588176e-10 3.615529628e-10 3.481930493e-10 2.785086767e-10 2.831166298e-10 2.989538111e-10 2.385745681e-10 1.885399497e-10 3.017048952e-10 3.36051616e-10 2.468609169e-10 3.539536749e-10 2.761807691e-10 2.59824124e-10 2.795783231e-10 4.161581507e-10 2.90469292e-10 3.744966042e-10 3.105735189e-10 3.21198189e-10 1.471009118e-10 2.816327134e-10 3.275281156e-10 2.116017033e-10 4.302411073e-10 2.467516273e-10 3.043454052e-10 2.87884182e-10 3.124351343e-10 4.128551107e-10 2.217763463e-10 2.219742184e-10 2.791632443e-10 4.054973688e-10 2.131857928e-10 2.713737284e-10 3.467485283e-10 1.889438382e-10 3.76297492e-10 3.223417798e-10 2.899208568e-10 2.468391705e-10 1.809720541e-10 1.501967222e-10 1.092277947e-10 1.300483272e-10 1.489651117e-10 1.284341456e-10 2.564459115e-10 2.23136227e-10 1.622664419e-10 3.399870575e-10 1.106882117e-10 1.369479111e-10 2.975490435e-10 1.820030188e-10 2.582633661e-10 3.106914476e-10 2.180231691e-10 7.281625868e-11 9.725940772e-11 3.521106597e-10 3.384286687e-10 1.84874413e-10 3.288906059e-10 1.882757537e-10 2.150392605e-10 2.674338052e-10 2.286231905e-10 2.789249865e-10 1.631284739e-10 1.816933356e-10 1.08849958e-10 1.643060025e-10 1.978998986e-10 1.323998382e-10 9.767119103e-11 +9.055283314e-11 2.061693632e-10 1.533878798e-10 1.58946536e-10 1.0945711e-10 1.724762766e-10 3.263380839e-10 2.175161789e-10 3.645992667e-10 9.381032627e-11 1.454576646e-10 1.343596051e-10 1.311783666e-10 8.002863376e-11 1.309711644e-10 1.625130491e-10 1.61386887e-10 2.958403572e-10 9.717140286e-11 2.534740856e-10 1.66534884e-10 2.388097016e-10 2.972954137e-10 2.792365927e-10 2.40411066e-10 1.863242983e-10 8.980760366e-11 1.063480477e-10 1.090912632e-10 1.651138229e-10 7.456138885e-11 1.866739769e-10 1.742907333e-10 2.929206666e-10 1.904704046e-10 2.352516542e-10 2.218859109e-10 3.885026083e-10 3.131382782e-10 3.407009821e-10 3.570248094e-10 2.907244296e-10 3.298092066e-10 2.200470945e-10 4.019551358e-10 3.909216025e-10 2.268202635e-10 3.499833773e-10 1.783538302e-10 1.654019242e-10 2.70547326e-10 2.948383993e-10 2.632447915e-10 2.02806592e-10 2.235023319e-10 3.283350792e-10 2.757843834e-10 1.875015413e-10 1.819461619e-10 3.971149884e-10 3.700665552e-10 2.442481733e-10 1.540770988e-10 4.304613881e-10 1.516368847e-10 2.736169426e-10 2.454877339e-10 2.927108618e-10 2.779815646e-10 3.120145246e-10 3.08721234e-10 2.949217856e-10 3.909207924e-10 2.229520316e-10 2.594422956e-10 2.56986838e-10 2.590381533e-10 2.556360202e-10 4.449563359e-10 2.447536091e-10 1.631811156e-10 5.286463206e-10 4.357528035e-10 4.32393834e-10 2.961633627e-10 4.510445466e-10 3.447353078e-10 4.866788978e-10 4.466399092e-10 5.573700683e-10 3.181938402e-10 3.353342109e-10 3.455235916e-10 4.111785249e-10 4.046563594e-10 3.260512275e-10 3.719697545e-10 3.08312197e-10 2.165066052e-10 2.665038106e-10 2.94671506e-10 1.643426529e-10 2.411971005e-10 3.044600127e-10 5.797471043e-10 3.905236745e-10 5.419527597e-10 5.44465183e-10 4.336969188e-10 4.40087365e-10 5.111617542e-10 7.314137477e-10 5.764311411e-10 6.645780972e-10 5.733763087e-10 7.869094765e-10 6.213034707e-10 6.698771711e-10 5.242735248e-10 3.918876993e-10 3.847776675e-10 4.50421819e-10 4.474150347e-10 3.671953421e-10 3.722075194e-10 4.476655052e-10 4.79951758e-10 4.178064744e-10 3.161910095e-10 1.697231354e-10 1.21920475e-10 2.13701477e-10 0 1.346890672e-10 2.010601511e-10 2.082238726e-10 1.029536048e-10 1.98199051e-10 3.025500028e-10 2.585431053e-10 3.751059703e-10 4.963060313e-10 5.935737655e-10 5.173464924e-10 4.573842837e-10 3.867234478e-10 4.388221185e-10 4.887110055e-10 4.409910487e-10 4.901418068e-10 5.46873221e-10 4.226680096e-10 4.305367999e-10 3.442483083e-10 3.769813218e-10 5.405805318e-10 4.520248967e-10 4.742422591e-10 5.27775681e-10 4.711750947e-10 3.32223578e-10 2.726161624e-10 1.982930373e-10 3.067319801e-10 1.339829094e-10 9.052381587e-11 1.032895565e-10 1.731037989e-10 9.633944332e-11 1.273493318e-10 1.896302565e-10 2.851781598e-10 3.810929291e-10 2.580526587e-10 4.133410425e-10 5.005229856e-10 4.240374957e-10 4.750432305e-10 4.458991567e-10 4.55167514e-10 6.846921038e-10 6.67507813e-10 8.088577699e-10 7.445927869e-10 6.128394987e-10 5.689969737e-10 7.87085284e-10 5.689530353e-10 5.286291611e-10 6.277700183e-10 7.305566194e-10 7.635452969e-10 6.793009083e-10 4.356953617e-10 6.975250018e-10 4.211682263e-10 2.127779063e-10 2.078799393e-10 2.089271094e-10 1.910685183e-10 3.026177679e-10 2.749648008e-10 3.330983029e-10 3.3171748e-10 3.510313878e-10 3.126174082e-10 4.741807931e-10 4.032194625e-10 2.757087962e-10 2.949923417e-10 5.18263311e-10 5.288444482e-10 3.640844228e-10 3.567164397e-10 5.057817532e-10 4.6819093e-10 4.841395327e-10 3.854131771e-10 2.693295509e-10 4.827512219e-10 2.961055872e-10 4.494901193e-10 2.350541007e-10 3.603783085e-10 1.825660735e-10 2.980713321e-10 2.8613977e-10 2.85538953e-10 3.969055956e-10 2.418913771e-10 2.644519292e-10 3.56070874e-10 1.703055685e-10 3.188001159e-10 2.102544861e-10 2.655459382e-10 2.212388595e-10 3.437425864e-10 3.45139223e-10 3.142204834e-10 4.160101752e-10 2.853328726e-10 2.649004976e-10 3.760883545e-10 2.325906932e-10 2.121149619e-10 2.138993029e-10 2.949925998e-10 2.453958979e-10 3.942178969e-10 4.186239249e-10 2.133201736e-10 3.848462158e-10 4.611727518e-10 2.371466899e-10 2.465008095e-10 1.774997063e-10 2.264162661e-10 2.299485447e-10 2.377212008e-10 2.535472941e-10 4.101828376e-10 3.814915329e-10 2.345612331e-10 3.534449483e-10 1.184724248e-10 1.179682263e-10 1.422153423e-10 4.826268778e-10 1.683436473e-10 2.559855727e-10 1.336074429e-10 1.106920759e-10 9.434278665e-11 1.078068306e-10 2.070276495e-10 9.412321887e-11 8.663066759e-11 1.69252735e-10 2.683904702e-10 1.428861143e-10 8.091469933e-11 1.554093553e-10 1.043780718e-10 2.271962705e-10 1.57342213e-10 1.349990754e-10 9.281730097e-11 1.378774585e-10 1.375470726e-10 2.416733984e-10 1.151105098e-10 1.786451716e-10 2.074383092e-10 1.942566347e-10 2.391648924e-10 1.420243525e-10 4.48006176e-10 2.308111333e-10 1.582632281e-10 +2.964944741e-11 1.448887611e-10 7.637648871e-11 1.559943899e-10 1.7956449e-10 4.43083675e-10 3.285446183e-10 1.527826112e-10 2.474712414e-10 1.944776274e-10 2.582584779e-10 1.771939288e-10 2.104160094e-10 1.97950054e-10 2.852871002e-10 2.80848133e-10 1.671854207e-10 1.180726418e-10 1.045960046e-10 1.367964446e-10 9.395835909e-11 1.139846633e-10 1.279163627e-10 1.267525675e-10 3.263968984e-11 4.674715849e-10 4.772399885e-10 1.897225528e-10 6.931227657e-11 1.802048504e-10 2.425952598e-10 1.620470971e-10 1.355293489e-10 1.075179044e-10 2.924781901e-10 1.488865595e-10 1.810908248e-10 4.105823171e-10 4.134271867e-10 3.930054594e-10 3.325922129e-10 3.814363837e-10 1.520795578e-10 3.623670465e-10 3.026873524e-10 2.251335399e-10 2.160741405e-10 3.544561189e-10 3.61389262e-10 2.419343314e-10 1.654422523e-10 3.619791996e-10 1.91142602e-10 2.620688294e-10 3.141648441e-10 1.609352278e-10 2.647086818e-10 3.970430156e-10 1.988277338e-10 2.086564317e-10 2.706555489e-10 3.537957445e-10 2.359385364e-10 1.684158654e-10 4.291109479e-10 1.348961204e-10 3.688313267e-10 2.849592333e-10 5.517831829e-10 2.951149194e-10 1.437917653e-10 4.222111865e-10 3.164036585e-10 2.117154563e-10 2.084901258e-10 4.33726462e-10 3.175685568e-10 2.648113436e-10 1.822681778e-10 4.273039213e-10 3.663822366e-10 3.344270406e-10 4.110370424e-10 3.420521195e-10 2.872912432e-10 2.678054393e-10 4.463174358e-10 3.290779084e-10 4.098724949e-10 2.625551156e-10 5.379746319e-10 4.210677385e-10 3.839176402e-10 3.773424384e-10 4.275012273e-10 4.480362684e-10 3.231721987e-10 2.470626636e-10 2.042305611e-10 2.333512862e-10 1.319585191e-10 2.170926501e-10 2.495891282e-10 2.644945386e-10 6.266975633e-10 6.068533949e-10 7.251590703e-10 4.834552558e-10 7.904704257e-10 6.866623346e-10 6.661431282e-10 5.895986156e-10 7.386890551e-10 5.299200584e-10 5.814688237e-10 8.647436048e-10 5.911120271e-10 7.610373787e-10 5.268041497e-10 3.578653529e-10 3.266834432e-10 6.431202629e-10 2.992097309e-10 4.465659943e-10 4.761710986e-10 3.189356493e-10 3.898529173e-10 3.575052007e-10 4.294397686e-10 2.755591918e-10 2.161871212e-10 2.53244992e-10 1.38475676e-10 1.848898206e-10 1.162164215e-10 2.938711647e-10 1.431297597e-10 2.91452265e-10 4.05238104e-10 3.272007453e-10 3.214721658e-10 2.538091406e-10 4.382767043e-10 3.875446546e-10 4.25286359e-10 4.754441037e-10 4.065660585e-10 3.932088556e-10 4.60763142e-10 6.627069763e-10 5.676504896e-10 5.156095502e-10 4.590637549e-10 3.956902249e-10 3.727631296e-10 4.042892932e-10 5.104868942e-10 4.307108275e-10 4.042165325e-10 3.742058669e-10 3.000231141e-10 3.290414358e-10 2.670579874e-10 2.529992903e-10 2.515067865e-10 2.900458882e-10 5.162852448e-11 1.904482305e-10 1.139213886e-10 1.762985797e-10 2.291973645e-10 4.052903851e-10 4.301789049e-10 4.344077822e-10 3.948230692e-10 3.081991901e-10 3.735496914e-10 3.964633836e-10 5.422511396e-10 6.191994242e-10 3.731656508e-10 6.662224182e-10 5.649168372e-10 5.139726775e-10 7.296547577e-10 5.983351898e-10 5.306649382e-10 6.2477705e-10 5.491640313e-10 7.421580676e-10 5.415529386e-10 4.332248907e-10 6.104439407e-10 6.613032938e-10 8.38933836e-10 2.658508213e-10 2.138312264e-10 2.388418681e-10 2.78837813e-10 1.690546706e-10 2.97655215e-10 2.950847014e-10 3.575475556e-10 3.069925651e-10 3.583300686e-10 3.221975274e-10 2.770200792e-10 4.272536565e-10 3.162453471e-10 3.418979665e-10 3.961640411e-10 3.072070668e-10 4.789930136e-10 4.465966439e-10 4.087212099e-10 3.261273853e-10 5.587302919e-10 3.898044601e-10 3.259379195e-10 4.398277889e-10 2.901783679e-10 2.615889114e-10 2.839047774e-10 3.144511105e-10 2.142727329e-10 1.584679667e-10 1.45167536e-10 2.784193376e-10 2.402862805e-10 2.061524783e-10 3.215281739e-10 3.016881182e-10 3.017429063e-10 1.676528473e-10 3.048063562e-10 3.430662559e-10 2.257568499e-10 4.326307911e-10 3.096853479e-10 2.91010725e-10 2.011081666e-10 1.754182465e-10 1.706018374e-10 1.27331064e-10 2.156600834e-10 2.026348591e-10 3.028879769e-10 3.987071979e-10 2.112281793e-10 3.286511796e-10 5.122661627e-10 2.453587278e-10 2.166294229e-10 1.629596516e-10 1.397702218e-10 1.971906887e-10 1.779303789e-10 1.344543476e-10 2.960929438e-10 4.421371357e-10 3.972833688e-10 1.791230175e-10 2.220324829e-10 2.071822093e-10 3.083236699e-10 2.864016474e-10 2.086947141e-10 1.880354236e-10 4.058379149e-10 3.029163383e-10 7.228251252e-11 1.026655844e-10 1.007603294e-10 5.873175872e-11 5.821882564e-11 1.22078012e-10 4.104832971e-10 2.551658823e-10 2.962259206e-10 1.824510083e-10 1.20212759e-10 1.686291872e-10 5.23797543e-11 1.139216104e-10 8.359640852e-11 2.178714887e-10 1.444334417e-10 7.14733441e-11 1.391160924e-10 2.197574507e-10 2.121895144e-10 1.903543694e-10 5.410247952e-11 1.658096435e-10 2.490748314e-10 1.164815956e-10 3.759812124e-10 1.177128446e-10 1.928041179e-10 2.663223931e-10 +4.746618254e-10 7.133843816e-11 2.505363246e-10 2.60109628e-10 2.191643654e-10 1.144221151e-10 2.620963452e-10 4.089996195e-10 1.931114498e-10 2.117268121e-10 2.528310115e-10 1.666477116e-10 1.78070641e-10 4.080336556e-10 5.974672787e-11 2.24160605e-10 4.487367335e-11 2.761543491e-10 1.473812475e-10 2.573311537e-10 6.572951069e-11 2.971407819e-10 1.608383074e-10 2.126862791e-10 1.49157613e-10 1.47512828e-10 2.363910305e-10 1.076771965e-10 1.621347882e-10 1.85809891e-10 2.275846943e-10 1.746371642e-10 1.013588008e-10 3.350560109e-10 2.345749093e-10 4.786592692e-10 2.421311063e-10 2.680324091e-10 3.705997007e-10 1.982151037e-10 4.116259747e-10 2.361415155e-10 2.719710443e-10 2.071487864e-10 9.524933186e-11 2.979006023e-10 2.004980357e-10 1.230012066e-10 2.984084373e-10 1.317779391e-10 2.661241454e-10 1.564270458e-10 1.527365615e-10 3.053480042e-10 2.837590656e-10 2.000222903e-10 1.560378447e-10 1.883890448e-10 3.25076916e-10 3.075362408e-10 2.510890918e-10 3.266411385e-10 1.532182759e-10 2.629629182e-10 2.148968416e-10 2.367853966e-10 2.608790923e-10 3.056083416e-10 3.274749698e-10 2.976926219e-10 3.629008895e-10 5.596921589e-10 1.843607584e-10 1.906128868e-10 2.53551947e-10 2.461967683e-10 3.903307521e-10 1.542075388e-10 2.207568415e-10 3.676421685e-10 3.298109658e-10 4.19157445e-10 1.956615101e-10 3.278391536e-10 3.533560145e-10 3.532939923e-10 4.464327034e-10 4.768697912e-10 2.954883466e-10 4.277303146e-10 4.443202384e-10 3.910733461e-10 1.914269621e-10 3.608930186e-10 4.116760102e-10 2.787799964e-10 2.35291877e-10 2.643254044e-10 3.430216495e-10 2.1433473e-10 1.659632732e-10 1.114121604e-10 2.104195954e-10 2.209922467e-10 5.65519934e-10 5.532903479e-10 5.431005955e-10 5.960463481e-10 4.798509489e-10 4.909291854e-10 7.378999191e-10 4.948996521e-10 4.428593993e-10 5.416788423e-10 5.763416723e-10 5.722047689e-10 5.313935951e-10 6.919470574e-10 5.378665044e-10 5.004563205e-10 4.329045282e-10 3.899661623e-10 5.006245379e-10 4.129733729e-10 4.931328693e-10 2.731761937e-10 3.27452038e-10 3.965167425e-10 4.0028949e-10 3.539257295e-10 3.203276685e-10 1.751071763e-10 1.253599746e-10 8.533432791e-11 8.639927641e-11 1.046919289e-10 1.066428736e-10 1.426711231e-10 1.129819967e-15 5.060145081e-10 2.764840859e-10 4.297078257e-10 3.34624986e-10 3.717772629e-10 3.591987593e-10 5.29237132e-10 5.47892952e-10 5.312858536e-10 4.99794901e-10 4.156862498e-10 5.305590341e-10 4.429694577e-10 4.331692661e-10 3.585910742e-10 3.875247286e-10 4.038606258e-10 5.195927657e-10 3.871109876e-10 3.373660256e-10 3.48403848e-10 2.373219431e-10 4.453839585e-19 1.854442537e-10 1.078498699e-10 1.700151773e-10 2.339158645e-12 0 8.265582229e-11 1.708622563e-10 2.566653912e-10 2.713610835e-10 3.920456737e-10 3.534717779e-10 3.493411827e-10 4.972272575e-10 4.172987123e-10 3.683898764e-10 3.991636944e-10 4.91758672e-10 4.992834964e-10 5.383954359e-10 6.557356978e-10 4.790359279e-10 5.876987948e-10 6.323802516e-10 8.677335501e-10 6.80518939e-10 6.051787644e-10 4.78183583e-10 5.221706722e-10 8.111090894e-10 8.09684396e-10 3.524474426e-10 8.220910208e-10 5.830138131e-10 3.894655967e-10 1.803613929e-10 1.909071471e-10 1.359728293e-10 1.684505156e-10 3.608581762e-10 3.198923843e-10 2.801357013e-10 3.196115895e-10 3.731350296e-10 3.188637631e-10 2.033248427e-10 3.873665189e-10 3.863178509e-10 3.555123581e-10 3.787256374e-10 3.744811309e-10 5.301763652e-10 4.023265927e-10 5.159470437e-10 3.908683881e-10 5.136557961e-10 3.817805366e-10 3.865875961e-10 4.509412275e-10 3.602789831e-10 5.218564111e-10 2.28131644e-10 2.384124103e-10 3.410621588e-10 2.459441401e-10 1.97532554e-10 2.139354826e-10 3.844902541e-10 2.94414571e-10 3.525188797e-10 4.272729757e-10 3.218291924e-10 4.241662935e-10 3.493945899e-10 2.697759313e-10 2.982169634e-10 2.31971794e-10 2.489082211e-10 2.509321155e-10 2.639307283e-10 3.765080714e-10 5.617510872e-10 1.960544627e-10 1.85357529e-10 3.833653344e-10 2.679709624e-10 2.275090581e-10 1.266290609e-10 2.543368642e-10 4.210458687e-10 3.42580635e-10 2.502448293e-10 3.088585206e-10 2.623314359e-10 3.229354561e-10 2.986100306e-10 3.529204812e-10 2.288296189e-10 4.00871448e-10 4.558345471e-10 1.016404415e-10 2.724762025e-10 2.276194586e-10 2.116825628e-10 2.226365703e-10 2.358281503e-10 2.587491538e-10 2.089311702e-10 1.571509051e-10 3.041541421e-10 1.506206747e-10 4.780934009e-10 1.038357193e-10 3.176552852e-10 3.312448499e-10 1.969178684e-10 1.067804158e-10 1.820461463e-10 1.362889975e-10 1.838551046e-10 4.673172265e-10 8.563413989e-11 1.269970783e-10 2.512724972e-10 1.798639559e-10 1.64391165e-10 2.082789827e-10 3.711326602e-10 1.99025607e-10 2.1265821e-10 1.239695924e-10 1.149467412e-10 2.904112385e-10 1.750336303e-10 1.429743174e-10 1.191154779e-10 1.719403875e-10 9.314770053e-11 6.105913666e-11 +2.772306801e-10 7.013412171e-11 1.125968548e-10 1.540261643e-10 2.19362642e-10 3.51370666e-10 8.193576838e-11 3.909242748e-10 1.449651891e-10 2.584203397e-10 3.218179041e-10 3.300557308e-10 1.730725966e-10 4.820037157e-10 2.447670052e-10 1.903500438e-10 1.848792129e-10 1.855085816e-10 3.826692245e-10 1.837822936e-10 1.173093234e-10 2.152482984e-10 8.977041716e-11 8.446276381e-11 1.227529699e-10 1.688391229e-10 1.089013139e-10 2.156247649e-10 1.987256433e-10 1.334143777e-10 2.737096105e-10 2.202775006e-10 3.041775089e-10 1.830339312e-10 1.412869856e-10 1.949378305e-10 5.364084339e-10 1.7119608e-10 3.438972262e-10 2.073703425e-10 4.060313561e-10 1.33724546e-10 1.957668441e-10 2.62365057e-10 3.898701892e-10 3.318360424e-10 2.668216609e-10 3.559396466e-10 2.166274396e-10 3.551076566e-10 4.073165266e-10 2.537077872e-10 2.477960169e-10 2.488253754e-10 3.169948544e-10 1.881857308e-10 2.650273533e-10 2.599177749e-10 2.017292354e-10 3.011673577e-10 1.490438909e-10 3.632546729e-10 3.338807891e-10 2.528444695e-10 2.590425882e-10 1.808774392e-10 2.640135376e-10 1.698551296e-10 4.451781295e-10 2.931489582e-10 2.000219329e-10 1.366805211e-10 3.310880003e-10 2.843706228e-10 3.009243937e-10 2.670675991e-10 2.110636079e-10 3.17412823e-10 3.414680276e-10 4.34933366e-10 3.647795056e-10 5.075916961e-10 5.578513579e-10 5.910660865e-10 4.257233415e-10 4.304514573e-10 4.835958906e-10 4.265378655e-10 3.48091221e-10 4.988958704e-10 4.326166344e-10 3.18700831e-10 3.475457585e-10 4.332510253e-10 3.369407698e-10 4.248349992e-10 2.925979249e-10 2.676825733e-10 2.69681758e-10 2.156760667e-10 1.589702929e-10 2.715970517e-10 2.048499261e-10 1.665536399e-10 2.568270201e-10 4.549021277e-10 5.075415144e-10 5.37236467e-10 5.283270555e-10 5.921381264e-10 3.794073301e-10 6.413693047e-10 5.122674531e-10 8.01453357e-10 5.483657685e-10 4.807750864e-10 5.441504217e-10 7.725567262e-10 7.343534815e-10 5.500659551e-10 5.199508144e-10 3.327339159e-10 3.584973366e-10 4.229254035e-10 5.4783103e-10 3.289693648e-10 3.43320539e-10 3.355775196e-10 3.375219471e-10 4.512532011e-10 2.400027164e-10 2.175767082e-10 1.898617956e-10 1.226770187e-10 1.133466166e-10 1.513091747e-10 6.700842095e-11 7.728349169e-11 7.412750364e-11 1.738931351e-10 4.587656608e-10 2.928585765e-10 1.976745161e-10 4.616656386e-10 3.11354306e-10 3.673026941e-10 3.791529873e-10 3.660630494e-10 3.651619088e-10 4.58086245e-10 3.610092661e-10 4.391798747e-10 5.131949925e-10 3.039325572e-10 2.535029187e-10 3.21393587e-10 3.764245878e-10 3.100699023e-10 2.442991783e-10 1.489786947e-10 1.601618409e-10 7.64246437e-11 3.601429166e-10 1.422434267e-10 2.241752709e-13 1.088690684e-10 9.986827666e-12 2.358683234e-10 1.595824932e-10 3.732224708e-10 3.615423986e-10 4.131376254e-10 4.496533106e-10 3.204970892e-10 5.50841941e-10 3.740398028e-10 3.738031708e-10 4.998206987e-10 4.642327381e-10 3.856571765e-10 5.604381841e-10 8.236241092e-10 6.507618182e-10 7.685075378e-10 4.347337726e-10 4.392479492e-10 6.439266185e-10 4.478300502e-10 6.628093213e-10 7.434089635e-10 5.411527353e-10 4.8526017e-10 6.748995228e-10 7.589427913e-10 4.707907442e-10 2.004414634e-10 2.138156316e-10 3.037270467e-10 1.021395903e-10 1.323790561e-10 2.918611343e-10 2.420398769e-10 1.888054286e-10 3.407720466e-10 4.404552202e-10 2.614879845e-10 3.471406718e-10 3.194144366e-10 4.369940782e-10 3.963908489e-10 5.258767149e-10 5.483959057e-10 3.643938934e-10 2.899237932e-10 3.419873664e-10 3.904399386e-10 5.038880063e-10 4.172286155e-10 2.808833094e-10 3.057327626e-10 4.087089514e-10 2.818999929e-10 2.220145153e-10 2.42221891e-10 1.958122792e-10 2.557906376e-10 2.579473181e-10 2.19873166e-10 3.712850039e-10 2.229497131e-10 2.704847524e-10 2.948958195e-10 2.454855669e-10 2.995917671e-10 3.448744093e-10 2.279942918e-10 1.701531719e-10 2.383760247e-10 2.45521795e-10 2.10362829e-10 1.819073896e-10 2.165200262e-10 2.056528964e-10 1.995380551e-10 2.322670036e-10 2.20325467e-10 3.779418133e-10 3.187471251e-10 3.765081963e-10 3.995535546e-10 3.136242654e-10 1.577376426e-10 1.932045385e-10 2.976865054e-10 2.184191002e-10 2.582853359e-10 1.222156322e-10 2.781240725e-10 4.713777095e-10 2.130000476e-10 3.196406576e-10 1.630202101e-10 1.811917089e-10 1.853891923e-10 1.671202625e-10 3.707285394e-10 4.585573564e-10 4.910013124e-10 2.413997295e-10 2.511016702e-10 2.475337515e-10 2.137568639e-10 1.213217775e-10 2.991862825e-10 2.053946573e-10 3.568955327e-10 8.604209512e-11 7.978026391e-11 3.493347656e-10 2.271045019e-10 1.3351353e-10 2.199327736e-10 1.266701671e-10 2.865293338e-10 1.100229905e-10 1.060881385e-10 1.718657172e-10 1.539823744e-10 1.107894384e-10 2.901399078e-10 1.901731486e-10 2.769142895e-10 2.185257301e-10 2.279719921e-10 1.441445013e-10 1.045941856e-10 1.685627947e-10 2.357158424e-10 2.296584161e-10 1.467289649e-10 +3.042217047e-10 2.395658214e-10 1.058413658e-10 1.400803106e-10 1.054945032e-10 1.055522583e-10 1.631754598e-10 1.181497675e-10 1.939210864e-10 2.269409162e-10 6.801388383e-11 1.551649223e-10 8.818818169e-11 1.506186913e-10 2.0639358e-10 2.314723396e-10 1.084330317e-10 5.690366352e-11 1.311925375e-10 2.16739279e-10 2.404199246e-10 1.93872421e-10 3.237288809e-10 1.922042135e-10 2.409834483e-10 2.326439677e-10 4.389671723e-10 9.633924208e-11 1.990323126e-10 1.056802056e-10 1.91422419e-10 1.847387222e-10 2.566558145e-10 1.269127417e-10 2.349881952e-10 3.637485709e-10 2.706245528e-10 3.116507709e-10 2.587942022e-10 2.127201322e-10 4.75501277e-10 1.552411973e-10 1.930036151e-10 3.27177374e-10 1.885449994e-10 4.304476627e-10 2.19785401e-10 3.048685751e-10 2.121681274e-10 1.913810419e-10 2.798586275e-10 3.705318241e-10 1.681623004e-10 2.775628408e-10 1.7532165e-10 2.447968413e-10 1.952171516e-10 2.752553828e-10 2.282378013e-10 1.724950278e-10 1.890896346e-10 3.784811477e-10 2.714603327e-10 3.884617472e-10 2.343633628e-10 3.404180974e-10 2.65294609e-10 2.684043381e-10 3.907004381e-10 3.49310315e-10 1.425596915e-10 5.181905653e-10 2.244663204e-10 3.50198543e-10 2.624348808e-10 4.142407596e-10 3.256789789e-10 2.31850297e-10 4.72121376e-10 4.124474774e-10 4.903664062e-10 6.2650253e-10 4.605699685e-10 5.423789563e-10 4.439449016e-10 5.224678298e-10 4.554498275e-10 4.798673907e-10 3.038230542e-10 4.867073122e-10 2.818864624e-10 3.775737952e-10 3.886650147e-10 5.021007202e-10 3.368180025e-10 2.074926646e-10 2.864977898e-10 1.778343078e-10 2.472524358e-10 1.663798792e-10 1.522353131e-10 2.33870536e-10 2.342180989e-10 1.87008291e-10 1.979751139e-10 2.281422787e-10 6.395269892e-10 6.002149972e-10 6.02444911e-10 6.191442825e-10 7.836775393e-10 4.719584389e-10 5.90555153e-10 7.802103314e-10 5.720108602e-10 4.316234615e-10 6.500303272e-10 5.275403506e-10 6.124791981e-10 5.855902353e-10 6.099738536e-10 4.438504137e-10 3.445590282e-10 4.11780761e-10 3.753108808e-10 4.252219178e-10 3.314266912e-10 3.470860584e-10 2.729381471e-10 3.529642655e-10 4.003138468e-10 3.32075476e-10 1.920869416e-10 2.123086818e-10 2.854597684e-10 6.224581205e-11 1.338190342e-10 6.212980347e-11 8.889545976e-11 1.302876328e-10 1.115804638e-10 1.057384624e-10 1.778526229e-10 3.523248464e-12 2.831171409e-10 2.11200338e-10 4.002344925e-10 3.272553334e-10 3.309158425e-10 4.644929887e-10 3.92869675e-10 3.141921982e-10 1.247098079e-10 2.639647081e-10 3.840514886e-10 2.997102342e-10 3.175644968e-10 1.958773327e-10 2.077742737e-10 8.716597637e-11 8.252628095e-11 9.174494692e-11 1.579439342e-10 1.19983271e-10 8.105405615e-11 1.558658929e-10 2.677239621e-13 1.972467811e-10 3.864058879e-10 3.009001793e-10 3.024967298e-10 3.456634648e-10 3.131970109e-10 3.52247233e-10 3.117854729e-10 4.47306865e-10 4.377341064e-10 4.273627832e-10 5.175519896e-10 3.922883582e-10 5.512804368e-10 6.288464097e-10 5.282688075e-10 5.182731808e-10 6.239102656e-10 4.987321262e-10 4.317475788e-10 5.20846782e-10 5.700133938e-10 4.439255774e-10 6.915884145e-10 4.193067609e-10 5.932568802e-10 4.686829045e-10 1.847389949e-10 1.958869008e-10 2.17077852e-10 1.26383062e-10 2.145589878e-10 2.779271756e-10 2.261790137e-10 2.602931006e-10 2.025902018e-10 3.991226519e-10 3.475214564e-10 3.363530619e-10 3.597446504e-10 3.992154318e-10 4.783824895e-10 4.335946503e-10 4.645835634e-10 3.532580185e-10 2.112914616e-10 3.449786558e-10 3.798145325e-10 5.077009965e-10 2.928052023e-10 5.356332468e-10 4.744295854e-10 3.984925565e-10 2.573736648e-10 2.098436152e-10 8.607932828e-11 3.033315778e-10 2.010314773e-10 2.037114144e-10 3.042703767e-10 3.256294756e-10 3.555290524e-10 3.147094985e-10 3.462130273e-10 3.372974885e-10 2.388540059e-10 3.06886597e-10 3.412557176e-10 3.307071388e-10 2.533494705e-10 2.767050099e-10 2.437039093e-10 2.639665276e-10 3.469689054e-10 2.301783712e-10 5.055771447e-10 3.329595091e-10 2.009935163e-10 1.82435886e-10 3.362612048e-10 3.995868694e-10 4.436296115e-10 2.818103147e-10 1.325215379e-10 4.453706623e-10 1.923462343e-10 3.128499062e-10 3.332086952e-10 4.716307468e-10 2.682151594e-10 3.19114627e-10 3.090890328e-10 3.669651288e-10 3.256222111e-10 4.055866556e-10 1.82307542e-10 4.838255541e-10 4.66409311e-10 2.84720717e-10 3.228948762e-10 1.253458676e-10 3.345657488e-10 3.3528453e-10 3.12044097e-10 2.457132686e-10 1.057571723e-10 1.372724955e-10 1.080844995e-10 2.488913462e-10 1.560741709e-10 8.438424603e-11 1.808401355e-10 9.258203602e-11 1.025190816e-10 1.249260663e-10 3.915689512e-10 4.253075708e-10 1.359524818e-10 3.198753904e-10 3.108923459e-10 1.53268301e-10 1.242822325e-10 1.332655617e-10 1.551532064e-10 1.090568773e-10 1.822013164e-10 1.113665364e-10 1.336571863e-10 1.303784266e-10 1.939696903e-10 2.550948102e-10 2.31528037e-10 3.504059418e-10 +1.503799401e-10 1.492134075e-10 1.962011817e-10 2.341872885e-10 3.71066885e-10 1.134702965e-10 5.551632816e-11 2.202436856e-10 2.120185403e-10 2.823958419e-10 1.826037667e-10 1.224944615e-10 1.195220877e-10 2.124360521e-10 1.599238109e-10 2.735367691e-10 2.03491178e-10 1.148032089e-10 1.079630188e-10 1.363174083e-10 3.050445134e-10 1.187777206e-10 3.117654538e-10 1.808882874e-10 2.044141602e-10 2.22116871e-10 2.96787619e-10 4.948312752e-10 1.762584434e-10 1.975147427e-10 2.900396424e-10 2.634960757e-10 2.080851905e-10 8.300507385e-11 1.849569301e-10 2.750703624e-10 1.857737725e-10 5.200451673e-10 2.411716087e-10 2.372951886e-10 1.632932505e-10 2.177976737e-10 2.885613345e-10 2.286848449e-10 3.143378766e-10 2.093423231e-10 2.693826352e-10 2.087072183e-10 4.011237819e-10 1.351895892e-10 2.529649016e-10 2.776696311e-10 3.317547509e-10 2.829024193e-10 3.111540116e-10 1.654881527e-10 1.67531257e-10 3.249809225e-10 4.012338984e-10 2.682352878e-10 3.668562012e-10 1.819518966e-10 3.178099408e-10 1.775575076e-10 2.553595042e-10 3.244264725e-10 2.746981649e-10 3.532744017e-10 2.003479748e-10 2.864981175e-10 3.18275624e-10 3.244236946e-10 3.1726896e-10 2.173213567e-10 3.167745336e-10 2.304529844e-10 1.580491308e-10 2.228379952e-10 4.030918291e-10 2.726539726e-10 4.400398446e-10 2.833404438e-10 3.364267712e-10 5.518462236e-10 2.910335422e-10 5.424323246e-10 4.376171441e-10 4.944590258e-10 2.90768703e-10 3.972738483e-10 4.223887235e-10 3.197048666e-10 3.654008094e-10 3.199938662e-10 3.644500327e-10 5.341567222e-10 2.924123746e-10 2.894776867e-10 2.296870562e-10 1.767161265e-10 8.330902983e-11 1.965980595e-10 2.515128806e-10 2.272671495e-10 2.408445776e-10 2.227692786e-10 4.791663335e-10 3.72154375e-10 5.888165353e-10 5.732156684e-10 6.204897414e-10 7.504379277e-10 5.576584234e-10 8.434784839e-10 5.204117196e-10 5.179801038e-10 5.345097639e-10 6.047559737e-10 5.278777265e-10 4.620508816e-10 5.696736581e-10 5.084225454e-10 3.831225837e-10 4.107770559e-10 6.26782091e-10 4.404331201e-10 4.590933763e-10 3.683675997e-10 2.991446115e-10 5.139656343e-10 2.968892113e-10 3.904698965e-10 3.617085079e-10 1.809970208e-10 1.190765489e-10 9.019979845e-11 6.323991862e-11 1.520558884e-10 2.454843225e-10 9.191433058e-11 1.453930422e-10 1.080439493e-10 2.361946269e-10 1.150329681e-10 1.694921423e-10 3.252706642e-10 1.335129513e-10 1.800706198e-10 3.040964709e-10 2.023679448e-10 2.477034678e-10 1.86888645e-10 4.028277221e-10 1.990463046e-10 1.857603172e-10 0 8.620638164e-11 5.336320499e-11 1.775041563e-12 9.374130112e-11 1.194268098e-10 0 1.835242719e-10 9.84396789e-11 1.186914769e-10 1.454449044e-10 2.705607996e-10 3.248286299e-10 2.420617055e-10 4.331177401e-10 4.586541042e-10 5.114951886e-10 2.211939834e-10 4.206925328e-10 3.994162795e-10 4.519598215e-10 4.010717858e-10 5.051475319e-10 5.693296405e-10 5.551641675e-10 7.821383266e-10 6.870166744e-10 5.485332633e-10 6.993566616e-10 3.240965454e-10 6.021259552e-10 6.671254803e-10 5.142523049e-10 5.92955404e-10 5.214089248e-10 6.208974853e-10 5.369579712e-10 7.359934554e-10 5.366610226e-10 1.870473063e-10 1.973106096e-10 1.862928631e-10 1.283109901e-10 1.800302561e-10 1.667252055e-10 1.728112999e-10 3.175582766e-10 3.069806073e-10 3.721010102e-10 3.867664716e-10 5.518408772e-10 2.433496651e-10 3.349414678e-10 3.775355938e-10 4.715732598e-10 3.127424575e-10 4.401195465e-10 2.257733535e-10 5.668708008e-10 5.467314733e-10 4.462791628e-10 3.532264727e-10 6.518201859e-10 4.059890778e-10 3.287759368e-10 3.651288036e-10 3.671121846e-10 2.794151012e-10 3.054717131e-10 3.404184884e-10 3.371409947e-10 3.316148215e-10 4.389139881e-10 2.286341538e-10 2.99118393e-10 4.213690902e-10 2.583376077e-10 1.690129772e-10 2.224304314e-10 3.325032838e-10 1.968503278e-10 5.04320673e-10 4.030013597e-10 2.140689329e-10 3.383169876e-10 2.781951855e-10 3.154019583e-10 3.3786909e-10 2.156876009e-10 3.314398356e-10 1.804645789e-10 3.166323562e-10 2.325449787e-10 2.72683887e-10 1.889880002e-10 1.880039836e-10 3.28287248e-10 3.74010128e-10 2.881115892e-10 3.998751135e-10 1.73490124e-10 1.872621556e-10 2.262495351e-10 1.390733314e-10 3.61478359e-10 2.813322026e-10 3.17055914e-10 4.078105584e-10 3.319880909e-10 2.479095381e-10 3.215351506e-10 2.062484044e-10 2.038755632e-10 1.611334318e-10 2.617202425e-10 1.744799523e-10 2.739408831e-10 1.706331784e-10 8.702542073e-11 1.515345513e-10 1.353443287e-10 2.184703025e-10 9.934177974e-11 1.299379576e-10 3.955689684e-10 1.686773191e-10 3.148346147e-10 1.084483065e-10 1.746698814e-10 1.853905573e-10 3.303041146e-10 1.448636995e-10 2.428100305e-10 1.626363402e-10 1.776863121e-10 1.354855266e-10 9.653336e-11 1.60694602e-10 9.775006837e-11 6.534982821e-11 1.572045234e-10 2.320065891e-10 1.816323097e-10 8.000792301e-11 2.142165749e-10 +1.00148633e-10 5.083497418e-11 2.588221647e-10 1.358440437e-10 4.582134373e-10 2.651590171e-10 2.915101079e-10 1.289810947e-10 2.10167928e-10 2.499335499e-10 2.969113556e-10 1.80348998e-10 7.218450109e-11 8.267048267e-11 3.319730844e-10 1.465594279e-10 9.940917479e-11 1.288514955e-10 2.027497781e-10 6.399969049e-11 2.687441078e-10 1.620292616e-10 1.952895074e-10 4.852338945e-10 2.425987274e-10 1.874606143e-10 6.28004285e-11 1.708050962e-10 1.897058564e-10 2.177940873e-10 2.490835363e-10 2.267459865e-10 3.089743431e-10 4.452600639e-10 2.945596301e-10 3.387361882e-10 3.645080969e-10 2.291134073e-10 3.54717316e-10 2.508366605e-10 2.177071488e-10 2.525015559e-10 4.304350272e-10 1.538549836e-10 4.347769852e-10 2.571285274e-10 3.617980176e-10 5.597976836e-10 1.622981498e-10 3.279833767e-10 3.007568261e-10 1.923553157e-10 1.331938844e-10 3.079562744e-10 3.335683621e-10 1.807948066e-10 2.808292207e-10 2.540757903e-10 2.239568157e-10 3.303039449e-10 3.034981979e-10 2.833193722e-10 1.882258524e-10 3.008897655e-10 3.157613041e-10 2.333848184e-10 1.867499204e-10 2.369016643e-10 4.476525871e-10 4.676540783e-10 2.777516783e-10 3.026123912e-10 3.194701604e-10 1.986137989e-10 4.188094351e-10 2.559678512e-10 2.628210528e-10 1.164546221e-10 3.21932949e-10 3.639658052e-10 3.746066701e-10 4.453045497e-10 3.708410436e-10 4.151077306e-10 5.702655164e-10 4.283198352e-10 2.837162185e-10 4.154252794e-10 3.781584892e-10 4.501732731e-10 3.016203844e-10 3.081647176e-10 2.882932872e-10 2.678308231e-10 3.515781197e-10 3.978813485e-10 3.688441226e-10 3.276001861e-10 2.266742675e-10 2.63051361e-10 1.652224696e-10 1.406085877e-10 1.38331609e-10 2.240694425e-10 1.571332359e-10 2.428698975e-10 2.024871174e-10 4.875777511e-10 4.452140424e-10 6.484284936e-10 5.369421199e-10 5.87700251e-10 3.791062915e-10 5.659747651e-10 5.363589269e-10 2.729051655e-10 6.255770824e-10 4.888334967e-10 5.67707894e-10 6.093230069e-10 5.161037155e-10 5.379837081e-10 5.099899916e-10 5.421183608e-10 5.136145694e-10 1.59503982e-10 4.314304763e-10 4.517462713e-10 3.516364276e-10 3.729362638e-10 5.774972277e-10 4.267345666e-10 3.273539287e-10 2.80982262e-10 2.046973911e-10 2.11374624e-10 1.186759452e-10 0 8.310838625e-28 1.338042105e-15 1.668207837e-10 1.809531574e-10 4.22455398e-11 1.520321544e-10 0 1.580722471e-10 1.012143709e-10 7.482277542e-16 1.444362421e-10 1.575744443e-10 1.462667706e-10 9.858586116e-11 1.574360561e-10 4.344711318e-13 1.354885957e-10 1.85045055e-10 6.159899476e-12 8.41256522e-11 1.057870337e-10 1.913164512e-10 1.045068697e-10 1.351525939e-10 1.8390145e-10 1.379575471e-10 2.187065698e-10 2.419171849e-10 2.865380695e-10 2.815630032e-10 3.983054956e-10 3.906869997e-10 3.011315152e-10 2.664768176e-10 5.106777543e-10 4.350361705e-10 5.068574579e-10 4.906234478e-10 4.762240183e-10 5.643226171e-10 5.1437997e-10 5.246256234e-10 6.178140806e-10 5.871701682e-10 4.92413311e-10 7.216526714e-10 5.23788973e-10 5.712480639e-10 4.093149584e-10 5.25340189e-10 4.003019836e-10 5.976457912e-10 4.68470235e-10 4.400797678e-10 4.924687468e-10 6.008341098e-10 2.043554888e-10 1.640893066e-10 3.251407211e-10 2.918637301e-10 8.649724392e-11 2.799340881e-10 1.994622562e-10 2.783321176e-10 3.368058304e-10 2.867562405e-10 3.551356962e-10 3.429180059e-10 2.825794526e-10 1.980285138e-10 4.455186747e-10 4.019261729e-10 4.630605511e-10 4.337037152e-10 3.051721743e-10 4.180888671e-10 3.857057977e-10 4.544646635e-10 5.65350468e-10 2.73553656e-10 5.389233132e-10 2.948170443e-10 3.761449034e-10 3.908341455e-10 4.615563345e-10 3.86234616e-10 2.181087991e-10 2.419050701e-10 1.424106385e-10 2.841362437e-10 3.331838058e-10 2.102024631e-10 1.489247076e-10 4.031135887e-10 2.963240403e-10 2.520083584e-10 3.185886862e-10 2.141542776e-10 2.592957046e-10 2.190639077e-10 2.651999011e-10 2.182867155e-10 2.315259663e-10 3.662643112e-10 1.717282501e-10 1.900607574e-10 1.860604659e-10 1.891853296e-10 3.743340343e-10 2.644614429e-10 1.847208644e-10 2.352977078e-10 1.913087512e-10 1.152467342e-10 3.415571542e-10 1.326082469e-10 2.027114341e-10 4.051205288e-10 3.045615558e-10 2.745299239e-10 1.587850259e-10 3.963683895e-10 3.110198201e-10 3.39528756e-10 4.237930198e-10 1.696626069e-10 3.486027114e-10 4.442704783e-10 2.23195661e-10 7.67817097e-11 1.74122407e-10 2.707060862e-10 2.281163158e-10 1.585724073e-10 2.122906233e-10 2.988844975e-10 3.48639004e-10 6.0982905e-11 2.180741326e-10 2.562302171e-10 4.962466051e-11 1.398651185e-10 9.71804718e-11 1.782340426e-10 1.353801133e-10 1.334594196e-10 4.341229322e-10 1.537134286e-10 1.368794442e-10 3.083516798e-10 1.541561278e-10 4.138229208e-10 1.759953461e-10 1.496992283e-10 1.362247598e-10 4.589099303e-11 3.563467723e-10 2.658448493e-10 4.927103092e-10 1.024128332e-10 1.307524617e-10 1.662052759e-10 +8.815589529e-11 1.344197223e-10 2.267939047e-10 1.489150476e-10 1.018741469e-10 1.84589815e-10 1.541984301e-10 7.970221187e-11 1.162192825e-10 2.354778269e-10 2.294357541e-10 9.512959486e-11 2.859575917e-10 4.016424429e-10 2.118889514e-10 3.228842759e-10 2.75654213e-10 1.366606071e-10 1.339700054e-10 2.027462944e-10 1.700896376e-10 1.42855841e-10 1.198445634e-10 1.605671485e-10 3.920287271e-10 2.205774622e-10 1.701546618e-10 1.598940851e-10 3.439311596e-10 3.734717465e-10 2.802377275e-10 2.164704485e-10 1.492604206e-10 4.319219116e-10 3.311829566e-10 1.219621985e-10 2.045369816e-10 3.197326526e-10 2.41992238e-10 1.536848742e-10 2.68534244e-10 2.018832091e-10 3.523592864e-10 1.35486889e-10 3.02011715e-10 3.067561235e-10 2.694699651e-10 2.821220404e-10 1.455949651e-10 3.518287236e-10 1.981035974e-10 2.426331815e-10 2.487560426e-10 3.601805472e-10 2.444933542e-10 8.267718806e-11 3.548218573e-10 2.10788514e-10 2.833344361e-10 2.281374495e-10 2.622401162e-10 4.784767152e-10 2.832672424e-10 2.725549999e-10 3.739872216e-10 2.682124519e-10 2.243327439e-10 2.875937327e-10 4.332555566e-10 2.201675133e-10 2.737181608e-10 1.933680468e-10 2.249537658e-10 2.127697782e-10 1.47860682e-10 1.240066942e-10 2.530854829e-10 1.902981598e-10 1.951796055e-10 3.519754752e-10 2.743957137e-10 3.076878993e-10 5.75989804e-10 5.992637661e-10 7.210499619e-10 3.619696141e-10 2.493245131e-10 5.068534436e-10 4.568004665e-10 4.181817965e-10 5.211667988e-10 3.279812595e-10 3.087329634e-10 3.226074441e-10 3.703910808e-10 2.801198899e-10 3.314907602e-10 2.758726443e-10 3.270884742e-10 2.506720019e-10 1.384794547e-10 1.500675705e-10 1.734113739e-10 1.772946863e-10 2.670340101e-10 2.579296996e-10 4.876874367e-10 5.361893771e-10 6.23411095e-10 3.89015696e-10 7.173356067e-10 5.333749356e-10 7.530758518e-10 7.261317729e-10 4.949957453e-10 5.657866492e-10 5.444320754e-10 6.94035032e-10 5.552487582e-10 6.950943186e-10 8.090267645e-10 4.941158731e-10 5.935593118e-10 3.995230159e-10 3.787259026e-10 4.413778528e-10 5.168002458e-10 4.618398741e-10 3.730547886e-10 3.871503078e-10 2.878953876e-10 3.203637938e-10 4.233417759e-10 3.657169791e-10 2.989361176e-10 1.425639685e-10 1.13193039e-10 1.024880481e-10 0 2.28820347e-10 1.461510313e-10 9.087251021e-11 1.358491929e-10 1.298496711e-15 2.009883204e-10 1.062650103e-10 1.442558039e-10 1.585648067e-10 1.084130079e-10 8.196589646e-11 1.347913205e-10 6.413444322e-11 1.506850288e-10 2.520573567e-12 1.733158292e-10 1.132590363e-29 1.883531681e-10 2.079225886e-10 1.65287835e-10 1.373686797e-10 9.258175737e-11 8.6913697e-11 9.078341636e-11 1.917333883e-10 2.21336501e-10 3.218002173e-10 2.669151537e-10 2.804321126e-10 2.336696483e-10 4.531208682e-10 5.800768839e-10 5.643315327e-10 4.44098836e-10 3.645883418e-10 4.218991637e-10 4.091213237e-10 4.210772634e-10 3.847303862e-10 6.308211255e-10 5.432925132e-10 7.753731122e-10 5.891333576e-10 6.214207557e-10 5.878937838e-10 5.306763316e-10 5.279659573e-10 5.659672916e-10 5.709726909e-10 7.966394468e-10 5.628249005e-10 5.776853844e-10 7.57686095e-10 6.93877334e-10 5.7760662e-10 3.244090766e-10 2.186184904e-10 1.861616113e-10 1.219765042e-10 3.102226093e-10 3.808863428e-10 4.171206741e-10 3.36474047e-10 2.453772143e-10 4.09680385e-10 3.330701604e-10 4.021051594e-10 3.510774259e-10 4.738172126e-10 5.232426472e-10 2.368786643e-10 2.740766629e-10 1.968344638e-10 5.339614778e-10 3.411307256e-10 3.270034367e-10 3.534898434e-10 5.138947254e-10 3.737398025e-10 2.634831169e-10 3.109081646e-10 1.943824257e-10 1.67197456e-10 2.767390159e-10 2.375906887e-10 2.17194808e-10 3.284992872e-10 3.234914943e-10 4.130856704e-10 2.621151741e-10 3.012647491e-10 2.988967284e-10 3.109910244e-10 2.602091746e-10 2.190799914e-10 2.947966542e-10 3.365164043e-10 2.676451533e-10 2.79727504e-10 3.376555867e-10 2.573784503e-10 3.900244981e-10 2.574874322e-10 2.519720395e-10 3.179328421e-10 2.007489007e-10 5.237141871e-10 2.617698176e-10 1.967679609e-10 2.188877e-10 3.57261391e-10 2.615554831e-10 3.779757807e-10 2.489975631e-10 2.224604257e-10 3.520993012e-10 2.296448999e-10 3.485346328e-10 2.117925296e-10 2.193343083e-10 3.887933237e-10 1.856182858e-10 2.543673433e-10 2.350202823e-10 2.777863595e-10 1.317586386e-10 3.663397851e-10 3.177177375e-10 2.849061561e-10 3.226176875e-10 1.098447494e-10 1.468741229e-10 1.985883255e-10 1.348268493e-10 1.846050276e-10 1.105446835e-10 3.405758797e-10 3.276528307e-10 1.427095611e-10 2.127349966e-10 1.163994789e-10 1.56546527e-10 2.199973916e-10 1.061419409e-10 1.839671526e-10 1.317332526e-10 2.659943087e-10 2.006466762e-10 8.962511803e-11 1.443933492e-10 2.734395945e-10 1.313841731e-10 3.293165906e-10 1.417208507e-10 1.067460541e-10 1.527200699e-10 2.516506448e-10 2.949567668e-10 1.598392837e-10 2.837435432e-10 2.442780913e-10 +1.154461363e-10 1.541759636e-10 1.995730867e-10 1.047366533e-10 2.19087773e-10 1.548827065e-10 2.551262182e-10 2.035330857e-10 6.018051039e-11 1.432858921e-10 2.67306835e-10 1.116056861e-10 1.585605402e-10 2.842124665e-10 1.501234027e-10 2.409694537e-10 1.70567599e-10 2.747638908e-10 1.205364258e-10 1.910715698e-10 1.582998582e-10 1.693906228e-10 1.318221392e-10 1.192506191e-10 1.020223653e-10 2.306569694e-10 1.092118158e-10 1.223692775e-10 9.739017819e-11 3.109734642e-10 2.071139897e-10 4.081553989e-10 2.874557917e-10 3.958982943e-10 3.57529224e-10 4.572134746e-10 3.431924214e-10 1.661115372e-10 2.357918566e-10 2.803812923e-10 3.311520449e-10 3.280656319e-10 2.879405427e-10 2.442440158e-10 3.107677227e-10 2.355481915e-10 3.004925693e-10 2.007250933e-10 3.062571133e-10 1.884314783e-10 3.914930798e-10 3.386673164e-10 3.222491656e-10 2.551461433e-10 1.713829656e-10 1.637745227e-10 2.210463032e-10 2.290628979e-10 2.859944878e-10 3.259030278e-10 4.979733665e-10 3.799718876e-10 2.072302865e-10 2.97348437e-10 3.10182471e-10 1.853896442e-10 3.640450992e-10 1.530406401e-10 2.893338859e-10 4.705768495e-10 2.658175223e-10 2.789045189e-10 4.644258806e-10 2.329731027e-10 4.107073367e-10 1.858612832e-10 2.263699835e-10 2.168818024e-10 2.330314442e-10 2.526715369e-10 3.736657498e-10 2.326709582e-10 3.096677886e-10 3.39161705e-10 4.167684927e-10 3.709353238e-10 4.059796678e-10 3.672759009e-10 5.18353466e-10 3.880143553e-10 5.113741536e-10 3.974413431e-10 3.14122837e-10 3.66863099e-10 2.2830782e-10 2.891796284e-10 3.757699925e-10 2.383473985e-10 3.234322009e-10 2.838998593e-10 2.087856217e-10 1.474457552e-10 5.750631799e-11 2.232379708e-10 1.734776281e-10 1.62884011e-10 4.012500116e-10 4.820558579e-10 5.556109014e-10 5.847512074e-10 3.626190774e-10 4.345261258e-10 4.305578474e-10 7.081945072e-10 6.920646938e-10 4.996595249e-10 4.032315135e-10 6.62611146e-10 4.522452879e-10 8.568343365e-10 6.389677126e-10 7.386216507e-10 4.220471465e-10 4.610527454e-10 5.684218961e-10 4.383396425e-10 3.978392688e-10 4.477340672e-10 5.18733104e-10 4.365205314e-10 5.126207116e-10 4.248068678e-10 3.511466108e-10 3.858048556e-10 3.953263121e-10 2.93184495e-10 2.530060157e-10 2.95290089e-10 2.296688551e-10 2.956748389e-10 1.371383753e-10 5.544144937e-11 2.07972357e-10 3.711803806e-11 1.134997622e-12 1.249134956e-10 3.126391201e-28 1.011136065e-10 1.451319007e-10 1.274648459e-10 1.001647126e-10 1.473560352e-10 2.215282417e-10 2.246345131e-10 1.366798619e-25 1.583773022e-10 4.541103275e-11 3.928170026e-17 1.095404596e-10 1.31885852e-10 1.685185146e-10 2.304984441e-10 1.76686619e-10 3.08921765e-10 3.423526009e-10 2.917930962e-10 3.179262088e-10 3.542811432e-10 3.491148234e-10 3.537218839e-10 2.833778419e-10 4.025124826e-10 3.310168709e-10 4.174767515e-10 5.082458971e-10 4.807101856e-10 4.099283196e-10 5.436124393e-10 6.43045175e-10 4.199166416e-10 5.323875364e-10 4.126961158e-10 4.452568332e-10 5.872342782e-10 5.80374304e-10 6.206355239e-10 6.223471084e-10 5.224687924e-10 5.140617585e-10 6.971705583e-10 8.922521429e-10 3.893319054e-10 6.25495077e-10 2.781183262e-10 2.356168657e-10 2.575240145e-10 1.946321508e-10 1.083181823e-10 2.420880414e-10 2.071655511e-10 2.873131414e-10 3.439239942e-10 3.037855859e-10 3.330114074e-10 3.978798e-10 3.670567445e-10 4.860215863e-10 3.683142467e-10 3.242132876e-10 4.182091762e-10 4.009597755e-10 3.825763505e-10 4.829220801e-10 3.967191712e-10 3.631458179e-10 3.223671488e-10 5.783826898e-10 3.390168122e-10 4.103407635e-10 3.38609547e-10 3.048688565e-10 3.235651571e-10 1.557006344e-10 3.446536556e-10 3.513483935e-10 3.561118284e-10 2.143112661e-10 2.775767071e-10 3.161494885e-10 2.575862134e-10 3.09034295e-10 2.845287846e-10 3.171779781e-10 2.813756835e-10 1.827012084e-10 2.274659887e-10 2.456084078e-10 1.973017708e-10 3.367871542e-10 2.65596094e-10 4.143610146e-10 1.747678708e-10 2.535933133e-10 2.021469675e-10 2.653701849e-10 1.948721454e-10 1.390351195e-10 2.433218408e-10 2.095481417e-10 3.634240511e-10 4.852811615e-10 3.246397367e-10 3.612270931e-10 2.636427215e-10 2.027687495e-10 2.454774506e-10 2.864997095e-10 2.366689242e-10 3.635535556e-10 1.65906673e-10 1.805348687e-10 5.634393841e-10 2.220021037e-10 3.214242469e-10 3.955639323e-10 2.239728976e-10 3.184320285e-10 1.931157776e-10 1.6584337e-10 3.606174395e-10 1.711741937e-10 2.55771459e-10 2.022876837e-10 2.744638816e-10 2.47228096e-10 8.968394989e-11 2.784532179e-10 4.067990098e-10 9.107681458e-11 1.340110002e-10 2.308064845e-10 3.140682693e-10 8.63787708e-11 1.637175821e-10 8.193622118e-11 2.694063167e-11 1.206703648e-10 1.551416663e-10 3.880231455e-10 1.539342602e-10 2.234277175e-10 3.403810861e-10 3.487636787e-10 2.184176032e-10 4.109078029e-10 1.738726323e-10 1.292940461e-10 1.820735229e-10 2.231290935e-10 1.974749559e-10 +2.707382555e-10 1.824667885e-10 2.17714293e-10 3.09580236e-10 1.281020407e-10 1.646997524e-10 1.437877349e-10 1.584748128e-10 1.661058666e-10 9.660333909e-11 7.375485449e-11 2.561285222e-10 1.056257932e-10 1.693534785e-10 5.910595453e-11 8.198365308e-11 2.192921059e-10 2.072425611e-10 7.546837597e-11 1.241963274e-10 8.775934089e-11 1.695115608e-10 2.878924222e-10 1.230455923e-10 1.288945297e-10 1.607660295e-10 2.13067719e-10 1.310624567e-10 1.918723278e-10 3.056523829e-10 1.561500001e-10 1.876944507e-10 1.992558799e-10 1.682872127e-10 2.451153326e-10 2.737787954e-10 5.210493268e-10 2.086975147e-10 1.978007014e-10 3.143688607e-10 4.351502969e-10 1.919984826e-10 3.098366523e-10 2.966131409e-10 3.78394403e-10 3.429055118e-10 1.783091186e-10 3.987283904e-10 1.639614538e-10 3.111315671e-10 3.449815143e-10 3.038060505e-10 2.599831809e-10 2.620758773e-10 1.767310861e-10 3.954325971e-10 2.422098599e-10 4.015101557e-10 1.975556992e-10 2.284245007e-10 1.650699403e-10 2.875912176e-10 2.500193085e-10 2.61156798e-10 1.934977602e-10 2.602642495e-10 1.687283679e-10 2.473016474e-10 3.000627521e-10 1.758465161e-10 4.10154295e-10 2.933157164e-10 2.755508137e-10 3.835357353e-10 4.398720247e-10 1.394800601e-10 2.137408526e-10 1.815153214e-10 2.958060464e-10 3.273329893e-10 3.979703736e-10 3.574959861e-10 2.528373223e-10 4.655662854e-10 4.543651377e-10 3.690368445e-10 3.678595333e-10 4.802684014e-10 4.209573848e-10 4.761913478e-10 3.592926922e-10 2.563429572e-10 2.362164867e-10 3.482815834e-10 5.773888961e-10 3.333879729e-10 4.065380655e-10 3.167541238e-10 3.361641634e-10 2.622514336e-10 2.106781208e-10 2.199721063e-10 1.962145077e-10 1.895831293e-10 2.865868692e-10 2.012993507e-10 2.147235741e-10 5.233644088e-10 4.699269795e-10 5.073846378e-10 4.927002358e-10 6.642812316e-10 5.995030717e-10 6.470578452e-10 4.404582471e-10 3.642899807e-10 4.614263926e-10 3.987334653e-10 4.459632772e-10 6.299145391e-10 6.856643238e-10 4.799261103e-10 6.251587641e-10 5.304369684e-10 3.737540752e-10 5.035194738e-10 3.731641571e-10 3.794611917e-10 5.40550707e-10 6.101679355e-10 4.359288117e-10 5.644162658e-10 5.229188961e-10 3.746902079e-10 3.757976841e-10 3.500376916e-10 4.10507114e-10 3.670370706e-10 1.835351858e-10 2.046992369e-10 1.720145472e-10 1.687515597e-11 0 1.022137667e-15 1.268023795e-10 1.521871264e-10 1.721267922e-19 1.264808186e-10 0 2.7526159e-11 1.063101563e-10 1.548680162e-10 3.827567396e-25 4.923635265e-11 1.050253134e-10 4.130791038e-12 1.823986541e-10 1.234868294e-10 1.249834306e-10 1.216674189e-10 2.245069684e-10 1.690604651e-10 2.962774454e-10 3.420622205e-10 2.694587025e-10 2.786608196e-10 3.410410123e-10 3.585374433e-10 4.465950364e-10 4.193494189e-10 2.742686395e-10 4.043405786e-10 4.966383241e-10 3.504225415e-10 3.675955964e-10 5.706639061e-10 4.119014605e-10 5.389836209e-10 5.599841197e-10 8.595401641e-10 7.951870424e-10 4.849639072e-10 7.633973653e-10 4.817103778e-10 4.245683741e-10 3.4316362e-10 5.013200036e-10 9.736378101e-10 5.463363506e-10 3.110383891e-10 6.501060807e-10 6.755116395e-10 5.234142654e-10 1.376608832e-10 2.006339756e-10 9.58701106e-11 2.562607515e-10 1.146509798e-10 1.955012189e-10 1.307435087e-10 3.023941645e-10 3.331861675e-10 2.976773666e-10 3.671677051e-10 3.193114069e-10 2.40876464e-10 5.30902575e-10 2.924881071e-10 3.580583009e-10 4.340480666e-10 4.991090053e-10 4.062189957e-10 5.333265921e-10 4.24126147e-10 4.556599178e-10 2.793283427e-10 3.907657539e-10 3.82316047e-10 3.653612738e-10 3.428547253e-10 3.314297188e-10 2.743805099e-10 2.673882517e-10 2.2875348e-10 1.552421817e-10 1.600803529e-10 3.492355733e-10 2.951312404e-10 2.891163183e-10 3.366373217e-10 2.846839279e-10 1.805962652e-10 3.829010841e-10 3.225322424e-10 2.449419992e-10 2.170332089e-10 4.210388375e-10 3.095015549e-10 3.672349811e-10 4.084368149e-10 1.989893582e-10 2.926047156e-10 1.568941609e-10 4.640504598e-10 3.028883367e-10 2.803427182e-10 3.545573468e-10 3.743936913e-10 2.228303388e-10 2.161757019e-10 2.073565776e-10 2.717039994e-10 2.16808141e-10 1.447012417e-10 2.886057512e-10 2.916395607e-10 2.938886857e-10 2.156180445e-10 1.243227626e-10 3.039422795e-10 1.064581802e-10 1.985716791e-10 4.033654067e-10 1.602102881e-10 1.190492201e-10 2.259743692e-10 2.804652182e-10 2.852430541e-10 1.210520421e-10 2.240648209e-10 2.573723594e-10 3.604483009e-10 2.808574734e-10 2.371890079e-10 1.598014713e-10 2.550452828e-10 1.607528159e-10 1.786597113e-10 2.18979996e-10 1.186924099e-10 1.57257868e-10 1.044344126e-10 2.516533047e-10 1.386009867e-10 2.381164459e-10 2.677130849e-10 1.284384292e-10 2.539108849e-10 7.152080133e-11 2.321452155e-10 1.778561962e-10 3.004392802e-10 1.338762043e-10 3.602851195e-10 1.288814403e-10 1.828113937e-10 1.464138302e-10 1.365794381e-10 2.657074894e-10 1.151155968e-10 +2.283672536e-10 1.518165182e-10 1.151787844e-10 9.130279048e-11 1.467316091e-10 1.487346592e-10 1.866051717e-10 1.598470545e-10 1.801372593e-10 5.873029595e-11 1.557160894e-10 2.596972112e-10 1.139029215e-10 3.410326258e-10 1.205258456e-10 4.301914911e-10 1.22420472e-10 1.685350743e-10 3.21150378e-10 4.069134589e-10 1.103090408e-10 1.293849276e-10 1.032254271e-10 3.520299805e-10 6.737447617e-11 2.132229222e-10 2.601711747e-10 2.567825942e-10 9.628737022e-11 1.654092602e-10 1.20570592e-10 2.79801158e-10 2.067272622e-10 4.149693327e-10 4.291355144e-10 2.120511688e-10 2.154258602e-10 1.604210834e-10 2.916603122e-10 3.825310092e-10 2.319415745e-10 3.559095893e-10 2.784861757e-10 1.612462043e-10 2.869262918e-10 3.002109036e-10 2.720833064e-10 3.132897243e-10 2.585644336e-10 2.431944953e-10 2.734972057e-10 3.807094699e-10 1.946279033e-10 2.284286268e-10 3.111293655e-10 1.825158362e-10 3.302821912e-10 2.00439249e-10 2.393195571e-10 2.674842802e-10 1.72854081e-10 1.658212521e-10 2.893375235e-10 4.698674098e-10 2.561131296e-10 1.949098334e-10 2.1404272e-10 2.589682669e-10 2.626519976e-10 2.738798901e-10 3.362170181e-10 1.893957712e-10 1.984725045e-10 1.829454254e-10 1.531658816e-10 1.577258206e-10 3.92440555e-10 3.01124451e-10 1.895129942e-10 3.869291734e-10 5.560183977e-10 3.464075649e-10 2.028529504e-10 4.47797224e-10 4.034606505e-10 4.033272799e-10 3.045799808e-10 3.75816101e-10 4.269321125e-10 4.850340362e-10 4.674888223e-10 3.00233938e-10 5.039883075e-10 2.881516576e-10 2.608744466e-10 3.630532324e-10 2.879844617e-10 3.386189302e-10 4.62793586e-10 3.191737731e-10 3.093005498e-10 1.62503127e-10 1.299670301e-10 8.515250103e-11 2.605538e-10 2.295674134e-10 1.595693972e-10 6.836082435e-10 4.128136841e-10 6.788745843e-10 6.928302045e-10 6.480789183e-10 5.107198477e-10 4.519389104e-10 4.919760898e-10 3.539279601e-10 5.215541687e-10 4.088356658e-10 3.997152867e-10 5.975411331e-10 5.437156465e-10 5.749992893e-10 4.891044185e-10 6.522243463e-10 5.172124204e-10 4.036469682e-10 4.801023717e-10 4.881405892e-10 2.488605118e-10 4.045556309e-10 4.579525819e-10 2.993790038e-10 4.157149815e-10 4.161701093e-10 3.472321408e-10 5.172299951e-10 3.494819052e-10 3.286411309e-10 2.558628842e-10 2.414771795e-10 1.937055523e-10 6.903110828e-11 2.58438641e-10 1.020781802e-10 9.66249911e-11 9.115310129e-11 1.294906514e-10 3.383515176e-19 1.137606078e-10 6.634699774e-11 1.274802719e-10 8.407925174e-11 9.124609348e-11 1.083611794e-14 1.620411495e-10 1.963839624e-10 2.693323775e-28 1.926954014e-10 1.831871747e-10 2.040545837e-10 2.602517115e-10 3.150271086e-10 2.34818507e-10 3.353852967e-10 4.408578074e-10 3.420137066e-10 4.482185187e-10 5.328757387e-10 3.745156928e-10 3.498810864e-10 3.257046647e-10 4.963504825e-10 3.771446144e-10 4.378441818e-10 3.050870987e-10 4.80335192e-10 7.4270327e-10 6.876707633e-10 5.58563651e-10 5.586576237e-10 6.422684337e-10 3.445032898e-10 3.9141781e-10 3.597797911e-10 5.709599624e-10 3.45465229e-10 5.752220007e-10 6.36660807e-10 4.899783688e-10 6.358769031e-10 5.83501088e-10 7.924890741e-10 4.005601526e-10 2.258835542e-10 2.797160059e-10 8.997574072e-11 1.507613431e-10 2.440554017e-10 2.0082921e-10 2.923264373e-10 2.92791708e-10 1.844693763e-10 2.552639974e-10 3.649207804e-10 3.182608643e-10 4.378843535e-10 3.097891944e-10 2.323728549e-10 4.936445715e-10 2.437194568e-10 4.513738843e-10 4.533338001e-10 4.858423009e-10 5.021221592e-10 3.069346789e-10 4.89512316e-10 4.899522238e-10 4.160153009e-10 2.311111605e-10 3.634493518e-10 2.874782235e-10 2.800796393e-10 3.767547239e-10 1.312683068e-10 2.617542266e-10 2.730429281e-10 2.554600028e-10 2.669009105e-10 2.681581089e-10 3.186595211e-10 2.699949824e-10 2.851461989e-10 2.706589201e-10 1.311923811e-10 2.878061668e-10 3.125722552e-10 2.499064524e-10 2.80046935e-10 2.010019193e-10 3.524157873e-10 2.931324117e-10 2.67443058e-10 2.116850362e-10 2.261618504e-10 2.677766077e-10 1.810386744e-10 4.668272465e-10 2.732440726e-10 2.152229372e-10 1.927518101e-10 1.473963709e-10 2.608860334e-10 1.727624619e-10 3.994063097e-10 3.519004648e-10 2.240262679e-10 1.263897964e-10 1.499323367e-10 2.027858604e-10 2.570787027e-10 1.247344147e-10 3.413572011e-10 2.690559737e-10 3.317889697e-10 2.134152295e-10 3.058957238e-10 2.54423329e-10 2.433814295e-10 3.091945093e-10 3.505893061e-10 2.513376908e-10 3.576448775e-10 3.006221149e-10 3.669518029e-10 1.420636154e-10 1.659034146e-10 1.738891264e-10 3.11035987e-10 1.64742735e-10 8.018716808e-11 2.990351515e-10 2.017688104e-10 7.349455817e-11 1.64533969e-10 1.61857926e-10 1.265307812e-10 1.639286112e-10 2.732022471e-10 9.051350345e-11 7.928226519e-11 2.219726734e-10 1.570063183e-10 9.327915757e-11 1.539327771e-10 1.92856133e-10 1.377308093e-10 1.628709991e-10 3.222135424e-10 2.517698717e-10 1.102280058e-10 +7.63282727e-11 1.555695673e-10 1.805364825e-10 1.537245621e-10 1.201711918e-10 2.451422839e-10 2.005189381e-10 9.659469406e-11 1.256253162e-10 1.034813204e-10 1.659996477e-10 2.896695408e-10 2.097014086e-10 3.142842536e-10 3.524967635e-10 1.718461138e-10 8.004930592e-11 1.537055446e-10 2.033307655e-10 3.318797311e-10 1.544048935e-10 7.620545149e-11 1.656224901e-10 1.351361546e-10 2.100456211e-10 2.241103607e-10 1.668727673e-10 1.561520084e-10 1.865406418e-10 2.515261614e-10 2.34813757e-10 2.78287187e-10 2.589379502e-10 2.915420778e-10 3.716564165e-10 3.094762767e-10 3.036911986e-10 2.128111636e-10 2.63960345e-10 2.626577899e-10 3.036934787e-10 1.792702275e-10 4.395725258e-10 2.722749198e-10 1.605968035e-10 3.75740597e-10 3.901928154e-10 2.047311314e-10 1.580499553e-10 2.265205942e-10 2.370211074e-10 4.060121828e-10 1.921654007e-10 1.468032529e-10 2.839107306e-10 2.505997038e-10 1.782061104e-10 1.625444248e-10 3.334323787e-10 2.392215366e-10 2.478910137e-10 2.008565832e-10 1.467032733e-10 2.571835222e-10 1.73253061e-10 3.472674522e-10 2.326378229e-10 2.763447439e-10 2.935755079e-10 3.890403846e-10 2.90301721e-10 2.384641189e-10 2.545198278e-10 7.987451555e-11 2.637500556e-10 2.143818229e-10 2.485721476e-10 2.258798175e-10 3.193670401e-10 3.948880798e-10 3.360331816e-10 3.371177981e-10 3.267297702e-10 2.822697271e-10 4.464964534e-10 3.535184481e-10 2.928094953e-10 3.976725503e-10 5.172262591e-10 3.818861075e-10 4.039679758e-10 4.513486679e-10 2.774820991e-10 3.119728817e-10 2.933408367e-10 2.224533768e-10 2.483518799e-10 3.068723984e-10 3.50130073e-10 1.879333678e-10 2.88866734e-10 2.397769172e-10 1.337450358e-10 1.388135182e-10 2.02129577e-10 1.104985375e-10 3.158422735e-10 5.789884463e-10 7.089465323e-10 3.406889823e-10 6.382733019e-10 7.348590005e-10 4.259657655e-10 3.339830904e-10 8.179214712e-10 6.443833211e-10 3.230369475e-10 6.607897229e-10 5.175957096e-10 3.758899273e-10 5.326492976e-10 6.798371413e-10 7.231089045e-10 4.869123254e-10 7.535738412e-10 5.196643566e-10 3.597913946e-10 4.964536595e-10 4.769570977e-10 3.448734698e-10 4.175629497e-10 2.916799107e-10 4.112469161e-10 3.360781145e-10 5.582187851e-10 3.291444835e-10 2.781757243e-10 4.98862755e-10 4.085958812e-10 3.16644896e-10 3.097901676e-10 2.596085123e-10 2.010207925e-10 2.760644079e-10 1.046239641e-10 2.889548578e-10 1.924161469e-10 1.384095382e-10 2.622242881e-10 1.324868867e-10 1.313317432e-10 2.329936815e-10 1.502203814e-10 1.599664366e-10 1.92784529e-10 2.746103669e-10 1.791867589e-10 2.453061522e-10 3.059621779e-10 3.104294738e-10 1.912693723e-10 3.991935941e-10 3.12514047e-10 4.017276607e-10 4.474895206e-10 3.652485339e-10 5.619687604e-10 3.913908397e-10 3.379418962e-10 4.311700912e-10 4.20319565e-10 4.786932053e-10 4.944501309e-10 4.322317979e-10 6.121982589e-10 5.673617348e-10 5.000971192e-10 6.00848248e-10 5.789641368e-10 6.211846874e-10 5.728733207e-10 5.075277565e-10 2.810666403e-10 5.289042866e-10 5.507893475e-10 5.53573609e-10 6.535674895e-10 4.100898697e-10 4.584614866e-10 8.832395621e-10 2.714392875e-10 7.52094502e-10 3.511168072e-10 2.23202446e-10 2.063414681e-10 1.924464101e-10 1.151707939e-10 1.704440326e-10 2.170823914e-10 2.071872203e-10 2.589297961e-10 2.806053603e-10 3.184658669e-10 2.434738091e-10 4.123811177e-10 2.474995278e-10 3.132282713e-10 4.037459232e-10 3.546315256e-10 4.098797712e-10 4.946841394e-10 3.37343027e-10 4.418602366e-10 4.287572213e-10 3.691489644e-10 3.898901484e-10 4.626371626e-10 4.731303898e-10 2.739546591e-10 3.983617153e-10 2.384899745e-10 2.939711944e-10 3.278819375e-10 2.960952446e-10 2.379896814e-10 1.601536014e-10 1.682031924e-10 3.349321975e-10 1.516625469e-10 2.180894159e-10 2.638925609e-10 2.264594125e-10 2.8251259e-10 1.617234269e-10 2.508970508e-10 2.340240942e-10 2.364605433e-10 2.78063344e-10 2.500912572e-10 3.139037142e-10 2.507997942e-10 1.814812876e-10 4.597578256e-10 2.97527075e-10 2.963304358e-10 2.46614294e-10 2.474429913e-10 1.527219622e-10 3.369712348e-10 1.690099488e-10 2.707548834e-10 3.478724453e-10 3.198842497e-10 2.888371528e-10 1.605342677e-10 2.584747672e-10 3.29875872e-10 2.582262954e-10 2.326649735e-10 5.120379274e-10 2.081259505e-10 3.144064268e-10 2.136328496e-10 2.192394102e-10 2.926798082e-10 1.36679509e-10 3.010419233e-10 2.87081721e-10 3.38377113e-10 2.181847663e-10 3.357015429e-10 2.189730749e-10 1.173091961e-10 2.661207162e-10 2.052359495e-10 2.219352337e-10 1.656936369e-10 2.021305011e-10 9.83538626e-11 1.966870059e-10 1.389705778e-10 1.367976072e-10 2.794550947e-10 1.607951005e-10 1.520941724e-10 1.107347001e-10 1.797908292e-10 1.954961476e-10 1.585002011e-10 1.571927179e-10 5.387382038e-11 1.654222261e-10 1.551354213e-10 1.174534889e-10 2.585877958e-10 1.221151819e-10 1.593035193e-10 1.720831319e-10 2.772320833e-10 2.370388037e-10 +2.586531286e-10 1.028323825e-10 1.879487321e-10 1.431102165e-10 2.855950286e-10 2.105990643e-10 1.609839531e-10 1.054135379e-10 8.450537693e-11 1.388051866e-10 2.037651019e-10 2.967329184e-10 2.542690788e-10 2.771599475e-10 3.772625206e-10 4.142745245e-11 2.031870577e-10 1.575253503e-10 3.424601973e-10 2.997391696e-10 1.345325471e-10 1.682147059e-10 1.066728332e-10 3.685360393e-10 5.809250959e-11 1.026376335e-10 1.676851017e-10 1.222608454e-10 9.402763135e-11 3.725843408e-10 2.751168771e-10 1.7324305e-10 3.361211841e-10 1.295706174e-10 5.359120903e-10 2.411104585e-10 1.597491106e-10 2.394488526e-10 1.888956055e-10 1.723563328e-10 2.454299971e-10 4.080229288e-10 4.204640054e-10 1.645858128e-10 3.165029179e-10 2.431211709e-10 2.139047079e-10 1.803271519e-10 2.838366341e-10 3.312311108e-10 2.892499774e-10 3.441851585e-10 3.134086565e-10 3.884649054e-10 1.872950379e-10 3.492176214e-10 1.837312056e-10 2.404832815e-10 3.380027434e-10 3.483683565e-10 4.171724021e-10 3.594433943e-10 2.706430411e-10 1.930698059e-10 2.094645981e-10 2.507905872e-10 1.685204182e-10 2.921232883e-10 1.837405745e-10 2.974073038e-10 3.246967757e-10 1.854104474e-10 3.077410332e-10 3.417015003e-10 3.455253295e-10 3.57554613e-10 2.880666752e-10 3.611994505e-10 3.290201782e-10 4.359060911e-10 3.818201218e-10 3.579486625e-10 6.134517853e-10 3.423112432e-10 3.003064069e-10 4.014242132e-10 3.79991456e-10 4.300975416e-10 2.825852243e-10 3.671752029e-10 3.795597477e-10 2.066279056e-10 4.315027275e-10 2.12326009e-10 3.971746946e-10 2.403431058e-10 3.377973901e-10 3.516578013e-10 3.442353413e-10 1.73695626e-10 3.700854223e-10 2.95865464e-10 1.117708983e-10 1.124065852e-10 2.783624032e-10 2.458954426e-10 2.332979777e-10 4.062677818e-10 5.3516364e-10 4.498381242e-10 4.956867012e-10 5.614827679e-10 4.303745191e-10 6.308661617e-10 5.499735742e-10 7.947792105e-10 4.553838957e-10 4.098246308e-10 6.281272341e-10 3.909379776e-10 4.707205655e-10 4.569161152e-10 5.658287114e-10 4.901956879e-10 5.056251376e-10 4.928775228e-10 4.417545991e-10 4.417732201e-10 4.324516401e-10 5.037570682e-10 3.996643722e-10 4.636973839e-10 4.445498603e-10 4.567365465e-10 2.965635878e-10 3.60590464e-10 4.989637003e-10 4.331320862e-10 4.794091562e-10 3.311537905e-10 3.958691779e-10 2.723864739e-10 3.461760148e-10 2.65087942e-10 1.888115325e-10 2.50869521e-10 2.400193698e-10 2.215257593e-10 1.494096911e-10 2.473441713e-10 1.851301396e-10 2.171604986e-10 2.639501358e-10 2.998066883e-10 3.085706498e-10 3.406782012e-10 2.667107219e-10 2.583050535e-10 3.00189735e-10 3.907859389e-10 4.144312125e-10 3.551958114e-10 3.563417303e-10 5.587397005e-10 4.484459135e-10 2.961287315e-10 5.35205648e-10 2.579185637e-10 2.682257996e-10 5.28331024e-10 3.647414019e-10 3.726195164e-10 3.944686875e-10 2.244074682e-10 4.656932724e-10 5.288388097e-10 5.745702077e-10 6.523501634e-10 6.157832564e-10 5.166895887e-10 6.189931104e-10 4.742722156e-10 4.880430253e-10 5.870607932e-10 5.86758181e-10 5.960165113e-10 5.413759515e-10 7.366090203e-10 5.555629506e-10 6.411383984e-10 3.990928193e-10 4.573129421e-10 2.187255092e-10 3.230790164e-10 2.410663286e-10 1.139011354e-10 1.346637538e-10 1.918989645e-10 2.9235478e-10 1.770230399e-10 2.409648301e-10 3.343998968e-10 3.148804982e-10 2.540937393e-10 3.542463762e-10 4.006493361e-10 3.164948558e-10 3.801180673e-10 3.826626714e-10 3.597536494e-10 3.129133662e-10 3.234507253e-10 4.317769266e-10 4.988221433e-10 4.586158111e-10 3.505108267e-10 3.6727929e-10 3.871979621e-10 2.550065986e-10 5.606057631e-10 4.137140134e-10 3.492699249e-10 3.084401162e-10 2.697759499e-10 2.200410366e-10 3.660775094e-10 2.275781776e-10 3.744944713e-10 3.01421254e-10 2.933832837e-10 3.880510588e-10 2.753364014e-10 3.305528734e-10 2.066152389e-10 2.748607825e-10 2.296752939e-10 3.821183396e-10 1.675591062e-10 2.600380074e-10 2.63380111e-10 3.352585576e-10 1.356473919e-10 6.740053175e-11 2.649357528e-10 3.479194445e-10 2.347165498e-10 3.906388743e-10 3.131933324e-10 2.033584847e-10 1.671187662e-10 2.741313783e-10 2.442096928e-10 2.569232188e-10 1.85656874e-10 2.077106943e-10 1.700954521e-10 1.274913022e-10 3.03999284e-10 2.052123165e-10 1.624538743e-10 3.268544746e-10 1.61651986e-10 2.83184506e-10 2.497341378e-10 2.704979849e-10 2.201359042e-10 2.438260588e-10 3.735079745e-10 2.401461353e-10 2.028818599e-10 2.343636126e-10 2.066930365e-10 1.615680857e-10 2.554998158e-10 1.969571811e-10 1.286970441e-10 1.197833767e-10 1.370542078e-10 2.235698792e-10 2.100542746e-10 1.594409704e-10 1.25267466e-10 1.411668572e-10 2.648344306e-10 2.697191972e-10 9.773581995e-11 1.538694243e-10 1.673459684e-10 1.763541148e-10 9.688352431e-11 9.751992161e-11 3.752514033e-10 1.777902654e-10 1.089527937e-10 1.625983459e-10 1.928685532e-10 1.428630802e-10 2.533733518e-10 2.503083083e-10 2.611804174e-10 +1.247200203e-10 1.656011021e-10 1.422945683e-10 1.507685307e-10 3.733517333e-10 9.544073633e-11 2.131044597e-10 2.911051908e-10 9.868384246e-11 2.389056917e-10 1.121868159e-10 2.140253258e-10 9.237398732e-11 1.917399477e-10 1.346154758e-10 1.715093537e-10 4.081242997e-11 1.184310734e-10 1.620883692e-10 2.368979361e-10 1.879331187e-10 1.958734403e-10 1.867423885e-10 3.684292511e-10 1.585873686e-10 1.164614674e-10 2.374315969e-10 3.314338408e-10 1.627557627e-10 4.24830273e-10 3.189938937e-10 1.562962762e-10 2.616310408e-10 1.968155877e-10 2.67878413e-10 3.548196383e-10 2.479472141e-10 4.339615816e-10 4.439401569e-10 3.516926645e-10 3.496877744e-10 2.125717898e-10 4.501162822e-10 2.452475933e-10 4.266104947e-10 1.935025781e-10 3.685944474e-10 2.058156812e-10 1.42343116e-10 1.542572171e-10 2.579362512e-10 3.401734581e-10 1.834195432e-10 1.558179157e-10 2.861242673e-10 2.589496182e-10 2.750671246e-10 2.419940344e-10 3.182436186e-10 3.955056075e-10 1.8688225e-10 2.935254773e-10 3.078447665e-10 2.236652755e-10 1.764922386e-10 2.358261413e-10 2.595814203e-10 2.575984891e-10 2.719136804e-10 1.41937444e-10 1.972293134e-10 4.105419862e-10 2.048193012e-10 2.295015678e-10 3.656710719e-10 3.307521619e-10 2.255919702e-10 1.731394157e-10 4.217871812e-10 2.714645571e-10 2.238378851e-10 1.737150644e-10 4.389690069e-10 3.761663597e-10 3.732425954e-10 4.009726105e-10 3.961290659e-10 2.689259109e-10 4.749492042e-10 4.125215532e-10 3.444786517e-10 3.34141097e-10 3.326868141e-10 3.249508801e-10 3.328432978e-10 3.420840681e-10 3.064990039e-10 1.925013723e-10 3.569812429e-10 2.438608708e-10 2.957231966e-10 2.75886826e-10 1.607701347e-10 8.310632258e-11 1.806341721e-10 9.855100599e-11 2.08472052e-10 2.375052439e-10 7.326386014e-10 4.853328713e-10 6.115941566e-10 6.836070316e-10 5.465056994e-10 5.839685725e-10 5.175734468e-10 4.592728892e-10 6.142338137e-10 6.300773599e-10 5.664882563e-10 6.037820617e-10 3.60942213e-10 5.124175721e-10 6.93420662e-10 4.594254233e-10 5.155666876e-10 4.845160169e-10 4.918598842e-10 2.808842038e-10 3.313402417e-10 4.973278877e-10 3.917265747e-10 4.291417696e-10 2.440747033e-10 4.711915205e-10 4.030491082e-10 3.494590126e-10 4.256121334e-10 3.415925233e-10 3.295481918e-10 3.658846771e-10 2.975914301e-10 3.932517082e-10 2.383148377e-10 3.12675036e-10 2.943028565e-10 2.652224579e-10 1.713090098e-10 2.547797432e-10 2.158774955e-10 3.119131587e-10 2.159485925e-10 2.148280639e-10 2.786837713e-10 2.810594799e-10 2.816937798e-10 2.715867565e-10 3.42226806e-10 1.754202944e-10 2.715742406e-10 3.641677821e-10 3.996579123e-10 3.948393625e-10 4.959486154e-10 3.800780845e-10 4.869949291e-10 3.721220706e-10 3.548362759e-10 5.26803204e-10 3.559757227e-10 3.655333158e-10 4.774655717e-10 5.612747405e-10 3.190946143e-10 4.419979985e-10 5.868926034e-10 5.785905713e-10 5.868434793e-10 6.221242409e-10 5.649151536e-10 3.627818593e-10 4.114083123e-10 3.738295145e-10 4.821175916e-10 6.178809491e-10 5.666817766e-10 7.444543777e-10 4.782852472e-10 7.331826818e-10 6.557579643e-10 8.215556891e-10 5.500544137e-10 5.389736597e-10 1.33606853e-10 2.363229172e-10 2.436260642e-10 1.287510744e-10 8.911506615e-11 1.315703988e-10 3.867553149e-10 2.659078668e-10 4.343795361e-10 3.548395776e-10 5.165482327e-10 3.340755996e-10 2.862545838e-10 2.869340207e-10 2.073516364e-10 4.137312019e-10 3.108053951e-10 3.125242669e-10 4.584985499e-10 3.692778555e-10 3.856906479e-10 4.915891554e-10 6.606542355e-10 3.526665609e-10 3.531371002e-10 5.326524875e-10 4.624212449e-10 2.877163367e-10 1.092502904e-10 1.544411456e-10 1.602648572e-10 3.186451802e-10 1.917859701e-10 2.500331406e-10 2.591083473e-10 2.933944577e-10 3.376119358e-10 2.016497998e-10 3.995407781e-10 2.444262096e-10 2.734281859e-10 1.342177429e-10 3.041598617e-10 2.30488048e-10 2.660444801e-10 2.607016202e-10 2.984130701e-10 2.819772488e-10 1.668401493e-10 2.942002347e-10 4.294823988e-10 2.523243763e-10 1.58013736e-10 1.695786296e-10 2.681047333e-10 2.285910931e-10 3.247192552e-10 4.548180219e-10 2.732979835e-10 2.701859785e-10 1.533116011e-10 2.726261538e-10 2.040742767e-10 2.630049499e-10 1.129950887e-10 3.468046517e-10 1.309918772e-10 2.926511429e-10 1.634859749e-10 3.584574079e-10 3.655130514e-10 2.779233094e-10 1.910821907e-10 2.461603026e-10 2.227426658e-10 2.991141478e-10 2.502697244e-10 4.700637728e-10 3.501226185e-10 2.160652275e-10 3.700996133e-10 2.169406649e-10 3.01815308e-10 2.043136906e-10 1.791811268e-10 3.764328231e-10 1.390268009e-10 3.565089485e-10 1.083650902e-10 8.862451969e-11 1.379528424e-10 2.341588786e-10 1.632824044e-10 1.839277454e-10 1.177437623e-10 1.60577428e-10 3.381777938e-10 1.272129512e-10 1.614135639e-10 9.179578079e-11 8.331774169e-11 9.693174227e-11 3.004561056e-10 1.764762945e-10 1.126240327e-10 2.824187705e-10 1.171388711e-10 3.905878756e-10 +1.250160388e-10 1.423498925e-10 2.468332212e-10 1.83803744e-10 4.804386546e-10 1.27915348e-10 1.332035421e-10 8.130259819e-11 2.724138611e-10 1.274896305e-10 9.51081455e-11 2.463231118e-10 4.174235586e-11 9.928919547e-11 7.733636038e-11 1.234812699e-10 1.724015006e-10 1.441143781e-10 8.955584714e-11 2.103866111e-10 3.23548886e-10 1.509430431e-10 1.291554061e-10 3.678760996e-10 1.63925239e-10 3.10798098e-10 1.64608582e-10 1.712171908e-10 5.029169684e-10 2.471647234e-10 2.340998561e-10 2.704911716e-10 1.853444552e-10 2.766908996e-10 3.920578023e-10 3.043785762e-10 1.378697531e-10 1.92197522e-10 3.839443047e-10 1.612902748e-10 2.991839128e-10 1.721059625e-10 3.018750044e-10 1.024222151e-10 3.281767457e-10 4.008069098e-10 3.436649173e-10 1.584399829e-10 1.587612394e-10 2.352034643e-10 2.451485681e-10 2.682984984e-10 2.420143996e-10 1.985285329e-10 3.286250878e-10 1.885979069e-10 3.899866795e-10 2.864298351e-10 2.375739462e-10 2.832481026e-10 3.012297964e-10 2.536519802e-10 2.610817973e-10 1.167653384e-10 3.296287034e-10 2.151861291e-10 3.251091446e-10 2.737215769e-10 2.585493905e-10 2.238083072e-10 2.900301469e-10 3.633269385e-10 2.964884697e-10 2.678188617e-10 2.23742026e-10 3.118774153e-10 4.004664313e-10 3.466135474e-10 2.39454797e-10 1.847750507e-10 3.915884098e-10 3.984486372e-10 3.786725471e-10 4.951309418e-10 5.26309221e-10 3.510488366e-10 4.157206484e-10 4.531442821e-10 3.607476834e-10 4.18760801e-10 2.236898342e-10 4.33649084e-10 3.12454237e-10 2.339020173e-10 3.426087521e-10 3.767323711e-10 3.574494517e-10 2.578751798e-10 3.071069603e-10 3.29125871e-10 3.376479036e-10 2.800638978e-10 2.012578802e-10 1.094640483e-10 1.712894517e-10 1.521635933e-10 3.090290396e-10 2.767560194e-10 1.393496528e-10 6.622073107e-10 9.055002059e-10 5.279294119e-10 4.493355642e-10 6.833102598e-10 5.010468502e-10 5.168006574e-10 6.344338143e-10 5.447958144e-10 3.052729891e-10 4.650272105e-10 5.962065803e-10 4.06958101e-10 7.412332202e-10 5.30812328e-10 6.543851583e-10 8.271806273e-10 5.577658258e-10 5.807784464e-10 4.923946189e-10 3.93723848e-10 3.758471272e-10 5.609440692e-10 3.707651792e-10 4.1203583e-10 3.262892946e-10 3.69587571e-10 3.256480798e-10 3.922108971e-10 3.403971719e-10 2.893342275e-10 4.324424253e-10 2.210830919e-10 3.395587354e-10 3.888218389e-10 3.727948168e-10 4.57443383e-10 3.347122122e-10 3.527755151e-10 2.667765707e-10 4.12370272e-10 2.357543783e-10 3.150380083e-10 2.788092554e-10 3.590508702e-10 2.993661336e-10 3.300836758e-10 2.593536034e-10 4.333898703e-10 3.428454633e-10 4.377445818e-10 3.113088316e-10 5.16859059e-10 3.483621273e-10 5.383399479e-10 5.326632997e-10 4.48667062e-10 3.228654373e-10 4.813953349e-10 4.580325311e-10 3.94745256e-10 3.332556476e-10 3.12649935e-10 5.287078163e-10 5.332394668e-10 4.925974164e-10 6.926766568e-10 4.55244382e-10 4.175876802e-10 6.02562995e-10 4.240304613e-10 6.457898503e-10 4.621479972e-10 4.79813569e-10 5.757399395e-10 5.938116892e-10 5.977536821e-10 6.326090763e-10 5.032079804e-10 4.60382447e-10 3.853429051e-10 7.097982984e-10 3.946423068e-10 1.633089807e-10 1.405025123e-10 1.468266089e-10 5.37993485e-11 1.70627971e-10 1.906473749e-10 1.639012193e-10 2.980522531e-10 1.88717409e-10 2.343755116e-10 3.70562649e-10 3.110130669e-10 3.356202096e-10 2.065155666e-10 2.930793848e-10 4.320217735e-10 4.42922733e-10 3.732066295e-10 3.530059919e-10 3.019562414e-10 3.141006113e-10 3.624273739e-10 4.264481868e-10 5.259156156e-10 2.959071392e-10 3.416880173e-10 2.945393167e-10 3.226767199e-10 2.383384523e-10 2.768852002e-10 3.154870067e-10 1.047290465e-10 2.113003562e-10 2.778070446e-10 2.719850539e-10 2.187350674e-10 1.294438013e-10 2.310091259e-10 2.22090745e-10 3.166257086e-10 2.246655405e-10 1.414938584e-10 3.276137239e-10 4.039984658e-10 1.911364101e-10 1.981020263e-10 3.429621249e-10 2.134864433e-10 3.073872875e-10 4.977396872e-10 2.282107758e-10 1.607268559e-10 1.360135098e-10 2.490440271e-10 4.102558752e-10 1.648703202e-10 1.806210532e-10 4.129951559e-10 1.235585762e-10 3.18204071e-10 1.835239675e-10 2.532649879e-10 2.069960954e-10 2.720523882e-10 3.107899901e-10 1.447692542e-10 2.275570684e-10 1.808486035e-10 2.645431949e-10 3.555230883e-10 5.258529745e-11 3.369778633e-10 2.179448269e-10 4.178539539e-10 3.978902291e-10 2.124382336e-10 2.200014445e-10 2.238089044e-10 4.430882352e-10 2.561143999e-10 2.077864076e-10 1.906124978e-10 3.260590955e-10 8.570086608e-11 1.268613647e-10 2.133058051e-10 2.45719049e-10 6.243082769e-11 1.354113094e-10 1.2946642e-10 2.434248273e-10 4.995955436e-11 1.395337364e-10 3.410591771e-10 1.533659689e-10 1.154556862e-10 1.038569883e-10 1.090441708e-10 2.956619858e-10 9.075152981e-11 1.456681942e-10 1.167089156e-10 1.410673519e-10 1.268774276e-10 2.227286253e-10 8.802298645e-11 3.163937353e-10 1.178105386e-10 +1.143444646e-10 1.749539902e-10 3.72985299e-10 1.314536777e-10 1.088904941e-10 1.843706622e-10 1.926771297e-10 1.371613281e-10 1.314561975e-10 1.036267983e-10 4.031706942e-10 1.360585781e-10 1.743264326e-10 1.373542298e-10 8.437487313e-11 8.629454085e-11 6.460737638e-11 3.034742209e-10 3.019167632e-10 1.762729985e-10 2.87375537e-10 1.321485538e-10 3.147303631e-10 2.483766949e-10 3.050806747e-10 1.691466364e-10 4.447581651e-10 2.343473596e-10 3.103551721e-10 2.881525567e-10 3.143994582e-10 2.909740829e-10 1.870698273e-10 3.778032188e-10 2.047817123e-10 1.106771508e-10 3.108937717e-10 1.447155718e-10 2.053804795e-10 2.118839859e-10 3.616183859e-10 3.077117173e-10 3.150299454e-10 2.818117023e-10 3.380704894e-10 3.302636342e-10 4.885493827e-10 3.503500493e-10 3.231109698e-10 2.575978704e-10 1.735065712e-10 1.260127081e-10 2.254228473e-10 1.603792092e-10 2.673756599e-10 2.817080289e-10 1.661263456e-10 3.502436942e-10 2.906529067e-10 1.350367705e-10 2.004765608e-10 2.637334281e-10 3.710513569e-10 1.950931753e-10 3.556095841e-10 4.055579901e-10 2.118588396e-10 4.683313402e-10 2.960962216e-10 2.752336133e-10 3.559586537e-10 3.187289622e-10 2.351452939e-10 2.569943869e-10 3.987809926e-10 3.113939468e-10 2.55860858e-10 2.822034998e-10 1.312903978e-10 1.235318684e-10 2.27431385e-10 2.796166383e-10 4.508958885e-10 4.935547499e-10 4.379574905e-10 4.466339015e-10 4.982241476e-10 5.528690947e-10 3.439649063e-10 3.060292254e-10 4.515896179e-10 3.240189727e-10 5.311200553e-10 2.841596867e-10 3.213297846e-10 3.22507609e-10 2.805909409e-10 2.649667953e-10 4.206730738e-10 3.430935447e-10 3.051569545e-10 1.278690555e-10 2.851569005e-10 1.805130657e-10 6.835447388e-11 1.478846786e-10 1.994295604e-10 2.473236548e-10 1.55552325e-10 5.760661766e-10 6.34895028e-10 5.987286984e-10 4.091233945e-10 4.241351749e-10 6.490157232e-10 5.525904145e-10 5.431482003e-10 6.497094328e-10 3.883193334e-10 5.768234329e-10 4.855411074e-10 3.813543586e-10 5.725011043e-10 4.969414162e-10 6.199384207e-10 6.503695644e-10 5.111856212e-10 5.715012379e-10 5.485164159e-10 5.489794486e-10 4.424683798e-10 4.904508882e-10 3.979603401e-10 2.828728671e-10 4.209718057e-10 3.590228716e-10 4.111011499e-10 3.908158334e-10 3.805935624e-10 3.165268e-10 3.270599169e-10 4.037789814e-10 2.51772793e-10 3.364119305e-10 3.899764076e-10 3.249734833e-10 4.108596763e-10 3.255923403e-10 3.9840405e-10 3.753250179e-10 3.317406902e-10 4.133300353e-10 2.88305092e-10 3.744905907e-10 4.527506317e-10 4.096790848e-10 2.964179714e-10 2.364097914e-10 4.852433945e-10 4.662353571e-10 3.459623837e-10 5.088848782e-10 3.786584759e-10 3.603683838e-10 4.565753013e-10 3.57774659e-10 4.32444153e-10 3.73144411e-10 3.410370045e-10 6.672364098e-10 4.160183289e-10 4.069960179e-10 4.620127399e-10 6.473358665e-10 6.777217554e-10 6.985519885e-10 6.856382562e-10 6.635998528e-10 5.296700551e-10 5.373204963e-10 5.406501343e-10 5.424164751e-10 4.365330255e-10 5.680650482e-10 5.268625472e-10 5.412783088e-10 5.381461933e-10 5.023481663e-10 7.118055462e-10 8.825449928e-10 4.489610879e-10 2.499546528e-10 2.669774311e-10 3.09282537e-10 2.792040294e-10 1.692505803e-10 1.01818941e-10 3.231807569e-10 3.284658323e-10 2.051568134e-10 3.519513229e-10 2.387473482e-10 3.304943201e-10 2.7320347e-10 2.721817813e-10 3.236266662e-10 4.44587312e-10 3.69894147e-10 3.943973719e-10 3.602145561e-10 4.256751762e-10 3.693609612e-10 4.034284966e-10 4.521017172e-10 3.968379097e-10 2.950170471e-10 4.052472769e-10 2.879010163e-10 1.239502198e-10 3.090114766e-10 3.863572298e-10 4.421522965e-10 3.690319477e-10 1.997799541e-10 3.27724974e-10 2.026042852e-10 3.649870268e-10 2.843838338e-10 3.035280541e-10 1.730272777e-10 2.910041797e-10 2.17010296e-10 2.440376547e-10 3.55869102e-10 3.625853919e-10 3.962663506e-10 2.526145008e-10 2.35863264e-10 2.939510052e-10 1.718405493e-10 1.534031143e-10 3.021283607e-10 3.034183394e-10 1.214766221e-10 2.086477249e-10 3.09103598e-10 2.236586217e-10 4.182244911e-10 1.350407412e-10 2.597728637e-10 2.344899961e-10 1.804218702e-10 1.908340968e-10 3.920475451e-10 1.150636028e-10 2.962551672e-10 2.616661764e-10 4.595860744e-10 1.293898168e-10 3.744694851e-10 2.796690639e-10 3.432827867e-10 3.546821352e-10 3.972206425e-10 9.811468935e-11 3.502391458e-10 3.051677777e-10 3.37550943e-10 2.66212693e-10 1.678478215e-10 3.651852903e-10 2.81518639e-10 1.928408599e-10 1.141370855e-10 1.63326039e-10 1.259224938e-10 1.682065874e-10 2.396014943e-10 1.582790377e-10 1.03454855e-10 1.97922312e-10 3.504445003e-10 9.646406038e-11 2.521244336e-10 1.769345606e-10 1.892994901e-10 1.567002022e-10 1.063906214e-10 3.072212706e-10 1.739159293e-10 1.345728572e-10 1.507511231e-10 2.258472445e-10 1.904720313e-10 2.830120745e-10 1.000240796e-10 1.254049994e-10 3.349797161e-10 2.127425158e-10 1.922147048e-10 +1.500793416e-10 2.053776753e-10 2.085809845e-10 2.297867898e-10 1.420649643e-10 1.421847979e-10 1.186106311e-10 2.83057342e-10 7.035626014e-11 2.13843204e-10 1.615753097e-10 2.549888006e-10 9.82164838e-11 1.396104049e-10 1.890972663e-10 1.420268187e-10 1.733891554e-10 1.875304542e-10 2.300957879e-10 1.82825899e-10 1.496585585e-10 1.944519676e-10 1.380716395e-10 2.996796641e-10 4.612981895e-10 2.585787791e-10 2.519441089e-10 1.682690443e-10 2.671442914e-10 1.566441303e-10 2.064291581e-10 3.168277752e-10 2.451918716e-10 3.404654338e-10 2.411366165e-10 3.731752408e-10 2.411926412e-10 3.164996085e-10 4.404889673e-10 1.493861433e-10 3.449212057e-10 2.00323424e-10 2.367690184e-10 2.399828601e-10 2.498474948e-10 3.153067106e-10 1.80038279e-10 4.432834118e-10 2.38500615e-10 1.665121979e-10 1.322369638e-10 2.030074593e-10 7.496279117e-11 3.146714188e-10 3.710140868e-10 2.774023645e-10 2.287671287e-10 2.297297798e-10 3.252223772e-10 3.331728122e-10 3.397119933e-10 1.966349629e-10 3.444061636e-10 3.222757744e-10 1.247863349e-10 2.639244917e-10 2.879997169e-10 3.540497013e-10 4.360521814e-10 2.746037714e-10 2.712651843e-10 2.808694722e-10 3.263459237e-10 3.100821589e-10 3.785223015e-10 2.131383615e-10 2.034674903e-10 1.955033906e-10 1.603645743e-10 2.513515054e-10 4.368754443e-10 3.39168309e-10 4.487099039e-10 3.165258384e-10 5.394218918e-10 3.409374259e-10 4.120853588e-10 3.235952104e-10 5.489192893e-10 3.76697522e-10 4.05751776e-10 3.671015633e-10 2.388830503e-10 3.330601893e-10 2.748465952e-10 3.181611459e-10 3.804038229e-10 3.165205934e-10 4.114481956e-10 3.934774161e-10 2.802025025e-10 2.110796482e-10 2.066589855e-10 1.55497241e-10 1.675242554e-10 1.145557161e-10 2.208863913e-10 2.497901001e-10 1.713829818e-10 7.547616111e-10 5.000927386e-10 4.919652684e-10 5.114120662e-10 4.945398325e-10 6.251654012e-10 3.894714766e-10 3.498252981e-10 7.961101844e-10 5.787007821e-10 4.298061831e-10 4.526140063e-10 5.528776941e-10 3.148036082e-10 8.611407853e-10 4.789242526e-10 5.903416682e-10 5.823554377e-10 5.495607722e-10 3.29198377e-10 4.698989636e-10 3.518973631e-10 4.011839676e-10 3.067695637e-10 3.075922113e-10 4.035558797e-10 3.883784602e-10 3.394586258e-10 4.027614551e-10 3.940521214e-10 3.474142069e-10 4.233127112e-10 3.677236616e-10 2.724522783e-10 4.049834217e-10 2.442028462e-10 5.110148859e-10 2.372169508e-10 4.285245771e-10 4.641482195e-10 4.159609353e-10 3.736210247e-10 4.692026029e-10 4.546008981e-10 4.140112762e-10 3.190429034e-10 3.724986703e-10 2.674804518e-10 3.856045852e-10 4.936429596e-10 2.310847657e-10 5.09332746e-10 3.783232614e-10 3.033856118e-10 3.923197876e-10 3.71073846e-10 5.247926794e-10 5.161147626e-10 3.708616726e-10 3.988775243e-10 6.745835607e-10 5.146963934e-10 6.247269322e-10 6.126825362e-10 5.416942639e-10 6.692788614e-10 6.748143013e-10 5.427521491e-10 4.880288402e-10 4.559961463e-10 4.745022835e-10 4.167929868e-10 6.899454401e-10 4.418105642e-10 2.867666218e-10 7.484561456e-10 5.534998738e-10 4.428453522e-10 6.210400065e-10 5.844665838e-10 4.212524505e-10 3.239803168e-10 2.149832179e-10 1.787365069e-10 2.275832868e-10 6.524879278e-11 3.339748125e-11 2.246449928e-10 1.689601673e-10 2.351150465e-10 2.503223289e-10 3.459543293e-10 3.53689262e-10 2.630308882e-10 3.303322834e-10 4.402682228e-10 2.936118808e-10 4.015907699e-10 2.576035319e-10 3.380427317e-10 4.480467781e-10 3.473451406e-10 5.038843522e-10 2.611673478e-10 2.901102756e-10 3.888753082e-10 5.617202895e-10 2.124753403e-10 4.117396645e-10 3.726736083e-10 2.769658903e-10 2.524808049e-10 2.69403744e-10 2.627063518e-10 2.897184844e-10 1.800459809e-10 2.711521485e-10 2.044089756e-10 3.448955973e-10 2.159507646e-10 3.49275049e-10 2.689272241e-10 2.71054311e-10 2.684230646e-10 3.923672305e-10 2.091151463e-10 3.346837977e-10 2.339057806e-10 1.945278173e-10 1.899754798e-10 1.45498903e-10 2.46152625e-10 3.027339122e-10 2.173272206e-10 1.458703687e-10 4.514719836e-10 3.881022842e-10 2.325485816e-10 3.891482539e-10 1.762545884e-10 2.62641034e-10 1.132522653e-10 3.881709723e-10 1.93793866e-10 2.052749533e-10 3.582645141e-10 2.625731629e-10 1.217183967e-10 1.783728216e-10 2.474818421e-10 1.414479333e-10 3.431454489e-10 1.64410345e-10 3.001335251e-10 4.829924609e-10 2.499839387e-10 4.168563236e-10 2.046890198e-10 2.453818203e-10 3.478311855e-10 3.677682203e-10 2.050922252e-10 4.679007971e-10 2.779216397e-10 2.246641178e-10 8.98732947e-11 1.486230413e-10 1.545791025e-10 2.072462204e-10 1.212085714e-10 6.047823282e-11 1.47271191e-10 1.144391983e-10 1.738198862e-10 1.517481039e-10 1.858262907e-10 2.651760829e-10 1.092629274e-10 1.784730954e-10 6.970023742e-11 3.270604446e-10 8.357279092e-11 2.359290355e-10 4.591439054e-11 2.033022204e-10 1.886570245e-10 2.204168537e-10 2.198800835e-10 1.500570507e-10 1.644208199e-10 1.152952737e-10 +1.085422932e-10 1.239411644e-10 1.142526541e-10 4.424734004e-11 1.983749442e-10 2.043424018e-10 1.858926841e-10 2.625856032e-10 1.332711289e-10 1.785868308e-10 2.362822642e-10 1.173555583e-10 2.348022855e-10 1.106410869e-10 7.377776e-11 1.440059857e-10 1.647708976e-10 9.746144236e-11 6.704067712e-11 1.904717061e-10 8.091084551e-11 1.881185556e-10 1.196200088e-10 2.965702476e-10 1.525413218e-10 1.629293438e-10 4.810930358e-10 3.449484355e-10 2.48323761e-10 1.36557314e-10 1.679587897e-10 3.103785457e-10 2.276815712e-10 3.203016217e-10 2.149187141e-10 3.435750872e-10 1.661938895e-10 1.909478493e-10 2.162065933e-10 2.920635787e-10 3.206278678e-10 4.233384909e-10 1.850482663e-10 3.796475068e-10 3.410902038e-10 2.500116582e-10 1.031214161e-10 3.089333567e-10 2.391411403e-10 1.591006664e-10 3.521055329e-10 1.110678614e-10 2.228794248e-10 2.246850964e-10 2.490455393e-10 2.249133974e-10 1.567067076e-10 1.780522502e-10 1.851577845e-10 3.048016835e-10 1.673495575e-10 1.480245174e-10 2.735072068e-10 2.037850092e-10 2.771231528e-10 1.879565413e-10 1.770254769e-10 3.772211106e-10 3.172929726e-10 2.45498699e-10 2.226978939e-10 2.12232088e-10 1.904211388e-10 1.638402952e-10 1.57482095e-10 3.14496874e-10 2.498058935e-10 2.931023774e-10 3.565665122e-10 1.576541466e-10 3.359938892e-10 3.986016534e-10 3.470802534e-10 5.282004017e-10 3.81319472e-10 4.679711618e-10 3.693423459e-10 3.340898114e-10 4.618388193e-10 3.624397938e-10 4.526390086e-10 4.245631177e-10 3.52334974e-10 3.200577175e-10 4.577730543e-10 2.373111553e-10 3.591216308e-10 2.702863002e-10 2.458968883e-10 2.691086357e-10 2.513878181e-10 2.27347079e-10 2.719992278e-10 2.076591434e-10 1.377796447e-10 1.850440351e-10 1.275212816e-10 1.816801185e-10 1.879689032e-10 7.17432274e-10 4.309902828e-10 3.811418948e-10 4.404768838e-10 2.29823394e-10 6.171637548e-10 4.353357036e-10 3.852844241e-10 7.000868232e-10 4.634786325e-10 4.800676584e-10 6.241807509e-10 4.454893541e-10 4.265598262e-10 5.011555524e-10 6.041051257e-10 5.45419118e-10 5.260832509e-10 6.474374202e-10 5.412504943e-10 5.292279737e-10 5.488347187e-10 3.119445776e-10 4.070544343e-10 4.53099918e-10 5.791495041e-10 3.449278768e-10 4.306439275e-10 3.844929514e-10 4.857338794e-10 2.92575583e-10 3.385965922e-10 3.808810854e-10 3.448465509e-10 5.281973772e-10 2.573468135e-10 3.295781751e-10 4.87954861e-10 2.911544075e-10 3.658348743e-10 4.02775514e-10 5.834352766e-10 3.481624666e-10 4.226329563e-10 3.798331577e-10 3.89067191e-10 3.85442642e-10 4.297180151e-10 2.764185634e-10 2.886628189e-10 4.403436702e-10 4.323360792e-10 3.975742732e-10 3.492284996e-10 4.191480779e-10 3.366268496e-10 6.283224866e-10 3.4014046e-10 5.054261596e-10 3.678984009e-10 4.819631144e-10 4.141035903e-10 5.400505828e-10 5.888903921e-10 6.475400317e-10 7.475367064e-10 6.841821534e-10 5.918530806e-10 3.719031148e-10 5.175808429e-10 4.406408035e-10 5.521313971e-10 5.552978977e-10 6.884727903e-10 2.101504148e-10 5.662098635e-10 7.558049095e-10 4.48196399e-10 4.774940667e-10 5.221475152e-10 4.040538141e-10 1.472634709e-10 1.660312383e-10 2.359884007e-10 1.650109714e-10 1.384914914e-10 1.140899605e-10 1.842777878e-10 1.78956881e-10 2.07777559e-10 2.956949536e-10 3.251988284e-10 2.906931798e-10 2.35841581e-10 2.48874955e-10 2.766350759e-10 3.520446698e-10 3.028142142e-10 3.140456378e-10 2.851100854e-10 2.980918679e-10 4.351411117e-10 4.065214457e-10 3.522343317e-10 2.722320287e-10 3.968576097e-10 3.364579417e-10 3.454356666e-10 2.572442835e-10 3.517194481e-10 3.544635928e-10 5.260706678e-10 1.962967454e-10 1.417149184e-10 1.496842571e-10 2.901057776e-10 2.421613263e-10 2.708090365e-10 2.503323375e-10 4.425399934e-10 2.009508366e-10 1.211117527e-10 3.869621949e-10 2.2591764e-10 1.678397914e-10 1.314529255e-10 1.63970638e-10 3.130833011e-10 2.495748874e-10 1.942385471e-10 3.349254825e-10 2.770986903e-10 3.136354294e-10 1.836261398e-10 1.966919298e-10 1.691415348e-10 2.794711592e-10 3.137031761e-10 2.499686288e-10 2.93650368e-10 2.227646783e-10 2.130650722e-10 2.65191172e-10 2.840098189e-10 3.167388568e-10 2.814233613e-10 2.79999985e-10 2.821164699e-10 3.368585212e-10 4.262795548e-10 3.360233279e-10 2.980703621e-10 2.920812033e-10 2.202663384e-10 2.445506131e-10 1.799313695e-10 2.202310585e-10 1.829726931e-10 5.22746223e-10 2.454728126e-10 1.903977657e-10 1.404565329e-10 2.242762884e-10 1.819866645e-10 2.145833717e-10 3.388863294e-10 3.932716358e-10 2.007734386e-10 1.078029484e-10 9.884014606e-11 2.198291598e-10 1.377548988e-10 4.829278555e-11 1.790953105e-10 2.49889949e-10 3.015943442e-10 6.437252124e-11 2.710686591e-10 6.371761024e-11 1.927139143e-10 9.981703997e-11 1.882637069e-10 3.299344364e-11 7.847585789e-11 1.370907585e-10 1.699292602e-10 2.502856975e-10 3.81848167e-10 3.778773896e-10 3.21264409e-10 1.873822295e-10 +1.327033071e-10 1.70922908e-10 2.108836417e-10 2.407437725e-10 1.72974103e-11 1.930427606e-10 9.18512765e-11 4.198392239e-11 1.710060669e-10 3.329478109e-10 1.420579104e-10 1.879449876e-10 1.188344819e-10 2.519322614e-10 2.102773824e-10 1.65828212e-10 3.911223307e-10 1.703971534e-10 1.302738425e-10 2.089982429e-10 3.347140014e-10 5.854272708e-11 2.624909436e-10 1.212926144e-10 1.307502692e-10 2.880150065e-10 1.126521572e-10 1.83373035e-10 2.634021098e-10 4.42876072e-10 2.267497933e-10 2.514704111e-10 3.777187374e-10 1.621321136e-10 2.522939199e-10 2.682936398e-10 1.79438175e-10 2.485233973e-10 2.905893166e-10 1.811653336e-10 3.128002758e-10 1.341416437e-10 2.94057822e-10 1.848118087e-10 2.798658154e-10 4.517387868e-10 1.840528529e-10 2.331132697e-10 2.799021435e-10 2.709664518e-10 1.945146219e-10 7.026414829e-11 2.041587689e-10 2.38587594e-10 2.260933632e-10 1.850522759e-10 1.925287518e-10 2.18326693e-10 3.252247438e-10 2.881799448e-10 2.554988443e-10 2.516682037e-10 3.149020858e-10 2.03700364e-10 1.562964505e-10 2.476432876e-10 1.552894744e-10 3.791086708e-10 4.031753115e-10 3.057260995e-10 2.926507446e-10 3.361500863e-10 3.937632693e-10 1.952607904e-10 1.830747977e-10 2.429965735e-10 2.324705434e-10 1.67091519e-10 1.749810223e-10 2.080395398e-10 2.777482874e-10 4.242686638e-10 3.936759553e-10 3.839265e-10 3.357284007e-10 3.51385393e-10 2.584148359e-10 4.74535066e-10 4.867293626e-10 2.858632824e-10 4.667036116e-10 2.047705693e-10 3.432397821e-10 3.114493934e-10 1.793814272e-10 4.132022458e-10 2.534160118e-10 2.367567743e-10 2.142874741e-10 3.025134384e-10 2.376958089e-10 3.646861876e-10 3.14089366e-10 2.883987902e-10 2.218326577e-10 1.575475918e-10 2.009703477e-10 1.459812869e-10 2.586790093e-10 6.186165694e-10 4.192239577e-10 6.075451136e-10 4.951208749e-10 7.087284103e-10 3.59532546e-10 4.026368697e-10 4.522609325e-10 5.758750533e-10 4.303026749e-10 5.208360649e-10 5.842822234e-10 5.453133362e-10 5.539132999e-10 3.780032241e-10 7.692482086e-10 5.720620522e-10 4.637240039e-10 7.542989204e-10 7.60132903e-10 7.450012708e-10 3.126107692e-10 6.120978122e-10 3.177226954e-10 4.049709421e-10 4.872021996e-10 3.141251648e-10 3.971900611e-10 4.068459707e-10 3.232306462e-10 3.218318324e-10 3.446633189e-10 3.82517923e-10 3.526741019e-10 3.875528949e-10 3.527344397e-10 4.373395839e-10 4.296540072e-10 5.08550135e-10 3.904421603e-10 2.561027687e-10 3.542406022e-10 3.434195422e-10 2.981116529e-10 4.534742175e-10 4.877870978e-10 4.295631488e-10 3.782121968e-10 4.108212605e-10 4.21880627e-10 3.085665324e-10 2.905804737e-10 5.320474533e-10 4.994472996e-10 3.38420076e-10 3.473526606e-10 3.712840644e-10 4.245594357e-10 4.89025348e-10 5.80556533e-10 4.746129318e-10 5.840944196e-10 4.479364142e-10 4.181857213e-10 5.445010289e-10 4.987364084e-10 3.844576875e-10 3.975639253e-10 5.274407209e-10 3.322943013e-10 4.810681013e-10 5.687057697e-10 4.443473774e-10 5.356318097e-10 5.944044563e-10 6.423060491e-10 5.541702162e-10 5.39144472e-10 5.817259487e-10 3.677443324e-10 1.388741185e-10 1.835778855e-10 3.009188802e-10 1.848648758e-10 1.730602757e-10 1.269028398e-10 1.271115824e-10 1.821983588e-10 2.639370464e-10 1.602683011e-10 2.938405179e-10 3.361564646e-10 2.303431043e-10 3.12811084e-10 4.381912883e-10 3.266705856e-10 3.262469589e-10 3.495313591e-10 2.626624146e-10 3.222770592e-10 4.041199581e-10 5.039558583e-10 2.452727994e-10 2.697029524e-10 4.658117401e-10 4.490083701e-10 5.133629131e-10 4.136003943e-10 3.146397024e-10 4.299297868e-10 4.352878419e-10 2.405393703e-10 3.455936321e-10 3.014917665e-10 1.899550664e-10 3.434287536e-10 1.921566587e-10 1.521487375e-10 4.51065496e-10 2.419946327e-10 2.228754325e-10 2.493477399e-10 1.262846382e-10 3.664493726e-10 9.080931005e-11 2.042378515e-10 2.796344261e-10 4.141164701e-10 3.037824594e-10 2.607953313e-10 2.188593581e-10 2.032473601e-10 1.740789373e-10 2.123348998e-10 2.362327924e-10 1.267296413e-10 1.923400788e-10 2.32297444e-10 2.289066346e-10 2.630481895e-10 1.343103809e-10 2.130803722e-10 1.353350181e-10 1.658863891e-10 3.640805149e-10 2.702664263e-10 1.260341141e-10 3.90212294e-10 2.212143904e-10 1.875947464e-10 1.46049779e-10 1.557369108e-10 1.650585214e-10 2.255133056e-10 1.809396239e-10 2.645428268e-10 2.937771576e-10 1.796853581e-10 3.230617751e-10 1.723143575e-10 3.655202345e-10 4.51970391e-10 3.154483871e-10 2.388924907e-10 4.042586158e-10 3.446684619e-10 1.14519015e-10 1.081212828e-10 3.851319674e-10 1.874414564e-10 3.408173412e-10 9.533403359e-11 2.019357434e-10 1.214560116e-10 1.72878044e-10 2.659828789e-10 2.126344728e-10 1.42832743e-10 1.999409541e-10 3.518527502e-10 1.002560326e-10 3.779734726e-10 1.743254438e-10 4.140105169e-10 1.023493739e-10 5.192932116e-11 1.082421135e-10 1.645598498e-10 2.276799221e-10 1.316215876e-10 3.976663145e-10 +7.182233113e-11 1.391840788e-10 1.523954929e-10 1.324076151e-10 1.333987902e-10 1.759259981e-10 2.275861314e-10 2.065806759e-10 2.773821388e-10 1.416198522e-10 1.995709757e-10 1.017142974e-10 1.45377003e-10 1.132634144e-10 1.843849416e-10 1.683593684e-10 1.540120006e-10 1.835266912e-10 1.591796396e-10 2.475357703e-10 2.392015365e-10 1.169293861e-10 2.149403469e-10 2.434010474e-10 2.512425013e-10 1.65896876e-10 2.771631056e-10 4.155149596e-10 3.965062802e-10 2.763201451e-10 2.159606185e-10 2.03211029e-10 1.822094724e-10 2.805990689e-10 1.878633315e-10 2.881157153e-10 3.045554441e-10 1.626508518e-10 1.840439531e-10 3.415220671e-10 2.723930032e-10 1.213560315e-10 3.150889641e-10 2.011782499e-10 2.25423522e-10 1.452167636e-10 3.334305346e-10 1.511278953e-10 1.973168557e-10 2.577729247e-10 2.420214401e-10 2.660649265e-10 2.003268012e-10 2.936086732e-10 3.028748677e-10 6.164956635e-11 2.855201971e-10 2.927759852e-10 3.229678981e-10 1.247588007e-10 2.38815149e-10 2.41777056e-10 2.456568117e-10 2.382400507e-10 1.891116548e-10 1.601541067e-10 3.532600383e-10 3.40034568e-10 3.422786797e-10 4.089469599e-10 3.4126515e-10 2.136694957e-10 1.625526066e-10 2.175077543e-10 2.832677593e-10 1.710182772e-10 2.496178037e-10 2.816691621e-10 1.54828946e-10 1.900274043e-10 3.920861053e-10 2.241359226e-10 5.325031123e-10 4.250792007e-10 5.017214214e-10 4.773090303e-10 3.311599955e-10 2.71340521e-10 4.966524795e-10 3.708610135e-10 3.790937132e-10 2.094281914e-10 3.064239567e-10 3.06425712e-10 4.328747656e-10 2.172940145e-10 3.355270253e-10 3.143961295e-10 3.662536861e-10 2.876297078e-10 1.471066413e-10 1.80214847e-10 3.079018058e-10 1.810952399e-10 1.736118435e-10 9.215049042e-11 1.187827178e-10 2.736113812e-10 1.699869588e-10 3.234561723e-10 2.614561205e-10 5.723308932e-10 6.267377322e-10 4.962541843e-10 5.724373375e-10 4.113393859e-10 3.956928821e-10 4.462082583e-10 4.352053969e-10 4.60311906e-10 3.031094386e-10 5.804907422e-10 4.610972882e-10 5.188723743e-10 3.182787998e-10 4.616661815e-10 6.436209607e-10 4.358084714e-10 5.396260848e-10 4.945145101e-10 5.203959712e-10 4.908368961e-10 3.734941036e-10 4.296312308e-10 3.27242951e-10 3.512454887e-10 3.657352697e-10 3.679687926e-10 4.48374945e-10 3.453740727e-10 2.891611982e-10 2.431644197e-10 3.720868195e-10 4.123038475e-10 2.777257879e-10 4.033767907e-10 3.348274424e-10 3.357334849e-10 4.265972477e-10 4.837079361e-10 3.650170054e-10 2.89112547e-10 4.235902691e-10 2.515113082e-10 4.013891072e-10 4.007415316e-10 3.220161712e-10 3.963344324e-10 5.118429026e-10 4.232211006e-10 3.552806576e-10 4.269956329e-10 2.562982523e-10 3.491848622e-10 3.762481593e-10 3.911719309e-10 4.90087007e-10 5.737138819e-10 6.324802575e-10 5.637323616e-10 5.144309195e-10 5.148156949e-10 6.776406329e-10 7.866327724e-10 5.154214684e-10 4.710760328e-10 5.899679302e-10 6.806224517e-10 4.350793625e-10 5.626144769e-10 5.304176123e-10 5.40614726e-10 6.886464104e-10 3.923307749e-10 5.283713655e-10 6.258831687e-10 9.161135154e-10 4.97127291e-10 4.451658191e-10 3.108972148e-10 2.346725869e-10 1.892831462e-10 1.754438614e-10 1.167815557e-10 2.127522541e-10 2.53748655e-10 2.984173076e-10 3.263744032e-10 2.467907814e-10 3.864069849e-10 2.593117517e-10 2.992611624e-10 3.706849082e-10 2.914494158e-10 1.734035399e-10 3.466387734e-10 2.366394163e-10 3.710076559e-10 4.800312653e-10 3.992125005e-10 3.802245432e-10 1.921845008e-10 3.360099225e-10 3.236776345e-10 2.909509273e-10 4.067648652e-10 3.83085206e-10 3.272705677e-10 4.077739688e-10 1.839325801e-10 2.721803701e-10 2.376228437e-10 2.050972901e-10 2.328305613e-10 1.486170878e-10 4.335398111e-10 2.685745747e-10 3.547759415e-10 2.810051288e-10 2.852949019e-10 2.491765315e-10 3.387526043e-10 3.138892665e-10 1.606778811e-10 2.060374707e-10 3.221724801e-10 1.885899282e-10 2.394115977e-10 9.767739058e-11 2.961330757e-10 1.869659469e-10 3.140326091e-10 2.099421553e-10 2.324758214e-10 2.193118549e-10 2.790544455e-10 2.60114724e-10 1.835320227e-10 1.863959695e-10 3.002796922e-10 1.289353872e-10 1.873084347e-10 1.769773456e-10 1.723841078e-10 3.175261753e-10 4.256708794e-10 2.796382477e-10 2.714322197e-10 2.12727571e-10 5.496526553e-10 3.977543059e-10 2.477466366e-10 3.279729718e-10 1.537316019e-10 1.700879882e-10 1.394530231e-10 2.891651163e-10 2.467718798e-10 2.173730394e-10 2.596501119e-10 1.844635298e-10 3.125359789e-10 4.14511013e-10 2.526985106e-10 2.121397028e-10 3.14246321e-10 3.754409659e-10 3.296967062e-10 1.650350406e-10 3.879856999e-10 1.325982042e-10 2.849966326e-10 1.396629275e-10 1.985294512e-10 1.524251107e-10 1.268787329e-10 2.930351071e-10 3.256412244e-10 1.388736668e-10 3.357265795e-10 1.098032801e-10 2.185268403e-10 1.851059739e-10 1.425059113e-10 1.285761106e-10 3.938236101e-10 1.225948805e-10 2.024806117e-10 1.57874107e-10 8.321576141e-11 +1.297762412e-10 1.332995585e-10 1.412900988e-10 3.472648578e-10 6.020738215e-11 9.509464832e-11 7.486503318e-11 1.266947475e-10 1.134651085e-10 1.986750417e-10 8.024141176e-11 3.224497487e-10 2.097061843e-10 1.677646125e-10 2.160987396e-10 2.043481384e-10 1.194811789e-10 1.068749746e-10 3.577358272e-10 3.290020616e-10 1.778668264e-10 2.61948988e-10 3.893237633e-10 1.776419937e-10 2.029872813e-10 2.026649522e-10 4.299331983e-10 3.807038317e-10 3.037073981e-10 2.180204282e-10 1.939650322e-10 2.903201106e-10 2.086545435e-10 4.601944544e-10 2.435167848e-10 2.236945228e-10 3.67240889e-10 3.364323996e-10 2.284208964e-10 2.195915522e-10 2.832297478e-10 4.908395066e-10 2.736143024e-10 2.10341422e-10 2.216583892e-10 2.424146734e-10 1.634558028e-10 3.498263997e-10 1.993230924e-10 4.130072027e-10 2.534915841e-10 1.294059121e-10 1.999677538e-10 1.933261056e-10 1.982947095e-10 3.563132322e-10 2.381271417e-10 2.373338295e-10 2.674133202e-10 2.845741994e-10 2.513620577e-10 3.824479091e-10 1.882581336e-10 2.402473777e-10 1.890920251e-10 2.207372031e-10 3.208632272e-10 2.810999554e-10 1.682727554e-10 2.255567505e-10 2.182495723e-10 3.354859926e-10 4.630734596e-10 2.43352081e-10 9.232889466e-11 4.628057611e-10 2.48240264e-10 3.769023504e-10 2.036315261e-10 3.548577666e-10 2.846012805e-10 2.248085883e-10 3.883762867e-10 4.733363545e-10 3.209015263e-10 4.800756238e-10 4.592668092e-10 3.690825816e-10 3.636658695e-10 3.698883689e-10 3.756085789e-10 2.854152508e-10 3.989335924e-10 1.858095632e-10 1.94239067e-10 3.12402861e-10 1.952636088e-10 4.040867626e-10 3.788929861e-10 3.015814807e-10 2.961665821e-10 2.949958346e-10 2.120414093e-10 2.203091354e-10 1.588932448e-10 5.52109655e-11 1.358618458e-10 2.002372833e-10 1.513947728e-10 2.141069856e-10 2.345669058e-10 8.029814564e-10 3.446218821e-10 4.038739899e-10 5.329800354e-10 6.041827898e-10 5.549035703e-10 7.164527808e-10 5.277240851e-10 3.603997875e-10 8.025241886e-10 5.52416919e-10 5.406011181e-10 5.158545153e-10 4.618175477e-10 5.725511744e-10 4.992689234e-10 6.043758234e-10 5.698316553e-10 6.204757139e-10 5.347131327e-10 6.143677624e-10 5.91951557e-10 4.708557495e-10 4.331214588e-10 3.842868392e-10 3.113182588e-10 3.709666626e-10 4.821154202e-10 3.883545744e-10 3.540681387e-10 4.708131128e-10 4.116119693e-10 3.413624402e-10 2.701203463e-10 4.698277624e-10 4.252748258e-10 4.173568101e-10 3.256609298e-10 4.790521143e-10 3.611274213e-10 4.389912257e-10 4.53197659e-10 3.699246501e-10 3.481533137e-10 3.573141145e-10 4.00540742e-10 4.382224757e-10 3.243227868e-10 4.866765224e-10 4.039212554e-10 3.482278588e-10 4.689269983e-10 4.977877245e-10 3.844690758e-10 6.084569889e-10 4.950762265e-10 6.38604506e-10 7.151619149e-10 4.617312971e-10 4.526803466e-10 3.957480368e-10 4.554067271e-10 4.682673637e-10 4.689065348e-10 5.554282985e-10 3.157039585e-10 6.15215936e-10 4.890122122e-10 4.879579829e-10 5.602771084e-10 5.781487842e-10 4.540859985e-10 3.27793953e-10 3.965507707e-10 3.326503737e-10 5.658944595e-10 5.659985087e-10 2.6566325e-10 2.499362313e-10 1.825818544e-10 1.96541868e-10 3.616810167e-10 2.754832852e-10 1.213051303e-10 2.851426284e-10 2.52531558e-10 3.320362918e-10 3.432385282e-10 3.222199382e-10 3.176777262e-10 2.969663481e-10 2.290147281e-10 4.480588165e-10 2.085668039e-10 2.452227797e-10 3.043164777e-10 2.457673375e-10 1.965822602e-10 4.023182108e-10 5.315775831e-10 4.219047153e-10 3.607008208e-10 4.347058346e-10 4.294081009e-10 2.747268882e-10 3.705515889e-10 6.38962139e-10 3.081833573e-10 3.56164137e-10 4.800442727e-10 3.226845936e-10 1.704896477e-10 2.539642184e-10 2.435639617e-10 2.128350209e-10 2.605592044e-10 2.643211796e-10 1.970271071e-10 2.564323422e-10 4.966869494e-10 4.069220704e-10 4.107887614e-10 2.352528434e-10 2.348196154e-10 1.938185642e-10 1.795255765e-10 1.94746329e-10 1.591347816e-10 2.662765989e-10 2.503451279e-10 2.258130282e-10 2.681237629e-10 1.254055114e-10 2.32553031e-10 3.132101366e-10 3.824610747e-10 2.349945045e-10 1.800442952e-10 2.300777097e-10 2.904512895e-10 3.909112263e-10 1.815657273e-10 2.214437094e-10 2.329629663e-10 2.464055053e-10 4.070097746e-10 2.260956853e-10 3.091539116e-10 1.969095787e-10 1.538173381e-10 1.914667237e-10 2.504046212e-10 2.725689197e-10 3.180437527e-10 3.697285083e-10 2.228385075e-10 1.598530428e-10 2.577898741e-10 1.939975776e-10 2.210424467e-10 2.11828085e-10 1.879412504e-10 1.186739089e-10 2.635582949e-10 1.374570499e-10 1.561189107e-10 1.143238484e-10 1.953019106e-10 1.74624242e-10 1.578174724e-10 3.856535129e-10 3.247144958e-10 2.350932537e-10 3.479538855e-10 1.768044266e-10 2.697721258e-10 9.128662856e-11 5.379235644e-11 2.075567306e-10 8.875909508e-11 1.287815521e-10 4.926990852e-11 2.000242106e-10 6.852506582e-11 5.195833655e-11 1.630439909e-10 3.444281398e-10 3.410660785e-10 1.971061103e-10 +3.323361867e-10 2.207261657e-10 6.205358184e-11 1.426593996e-10 9.971870146e-11 6.631213161e-11 3.454895242e-10 1.144877166e-10 1.256469722e-10 1.778616349e-10 1.400000569e-10 2.9012865e-10 1.961545557e-10 1.629631335e-10 1.966633319e-10 2.018854946e-10 2.293396268e-10 3.270444875e-10 1.923937747e-10 1.465659004e-10 1.197528351e-10 2.435611057e-10 2.144745159e-10 1.352703387e-10 4.013804537e-10 2.460782329e-10 3.179907375e-10 1.381318552e-10 1.758269219e-10 3.813875999e-10 2.052799578e-10 2.987561314e-10 1.606434064e-10 2.577674836e-10 3.048431704e-10 2.292364452e-10 2.443950129e-10 1.431493815e-10 1.682342672e-10 2.39122985e-10 2.443436896e-10 3.950957184e-10 2.819007968e-10 2.136943453e-10 3.058185422e-10 3.581679147e-10 1.991158633e-10 2.135613934e-10 3.590815965e-10 3.268902012e-10 2.27551843e-10 3.60126167e-10 9.015723641e-11 1.541992665e-10 2.562361196e-10 2.021002356e-10 2.545680718e-10 2.874680372e-10 2.821518414e-10 2.097709155e-10 1.320248078e-10 2.282754391e-10 2.294070851e-10 2.207179046e-10 3.007135977e-10 1.62424844e-10 2.514226023e-10 4.282005996e-10 3.58997671e-10 2.467132794e-10 2.951907123e-10 4.977022475e-10 1.66803231e-10 3.402362318e-10 1.680878045e-10 3.010780467e-10 3.000019416e-10 2.888969278e-10 1.975060888e-10 3.331100698e-10 2.391010603e-10 5.308261896e-10 3.214304416e-10 4.293161754e-10 3.876889279e-10 2.589255757e-10 4.949188041e-10 2.706985218e-10 3.364935712e-10 2.402842382e-10 3.163094848e-10 2.886142004e-10 3.122587127e-10 2.582929154e-10 2.570231429e-10 3.395386297e-10 3.131826163e-10 2.434634191e-10 2.927041675e-10 1.572797999e-10 2.932545602e-10 3.860585587e-10 1.392032834e-10 2.745344721e-10 1.090546104e-10 1.702724691e-10 1.316473113e-10 1.639897405e-10 2.807175144e-10 1.895100309e-10 1.396424374e-10 3.10231024e-10 5.648645296e-10 4.161989818e-10 5.104683737e-10 5.732118822e-10 3.444876667e-10 4.973260047e-10 4.754451563e-10 6.255974124e-10 4.770856719e-10 7.051031836e-10 5.763815981e-10 5.189326412e-10 7.243300544e-10 4.475946812e-10 5.145213609e-10 5.021384375e-10 5.474911467e-10 4.424626155e-10 6.548992057e-10 6.182776884e-10 5.65926872e-10 6.507613597e-10 4.557971743e-10 3.298508168e-10 4.448952056e-10 3.42023877e-10 3.602034842e-10 4.352585193e-10 3.311003112e-10 2.350351687e-10 3.8696907e-10 3.032571415e-10 3.777469295e-10 3.691275893e-10 3.375543111e-10 4.071217261e-10 3.641266709e-10 4.553681356e-10 1.69904281e-10 3.674149225e-10 3.809470726e-10 4.972381357e-10 3.674044187e-10 2.353404561e-10 3.914911269e-10 4.142388826e-10 4.100300475e-10 3.503596834e-10 4.262117372e-10 3.28154504e-10 5.145150054e-10 4.391244854e-10 3.943850079e-10 5.5709672e-10 5.758286136e-10 5.323269427e-10 6.952913942e-10 6.658431939e-10 4.744530982e-10 4.957676908e-10 6.413226665e-10 4.286010731e-10 5.87039149e-10 5.118116968e-10 6.815505762e-10 5.355979659e-10 5.889890474e-10 4.61577787e-10 3.801421775e-10 5.024049173e-10 3.846374962e-10 3.506887417e-10 6.826393874e-10 4.800762743e-10 5.019932743e-10 2.542158574e-10 5.413988389e-10 1.634968382e-10 1.18681482e-10 1.785879877e-10 8.389910431e-11 1.051676516e-10 1.793928333e-10 2.013194064e-10 2.197578301e-10 1.75285072e-10 2.793751169e-10 3.407908593e-10 3.932702975e-10 2.515599306e-10 3.674985935e-10 1.750782682e-10 2.462488306e-10 3.482368885e-10 2.658036869e-10 3.20949423e-10 2.137364356e-10 3.132299302e-10 4.629383909e-10 3.952858919e-10 3.753850161e-10 4.383241221e-10 4.133724713e-10 5.159504339e-10 4.88882581e-10 1.847845886e-10 2.615634251e-10 4.214755661e-10 2.318990536e-10 2.055661284e-10 3.149143689e-10 2.660129903e-10 2.833466115e-10 3.473068544e-10 1.315150826e-10 3.734515269e-10 1.965864669e-10 1.336776863e-10 2.568185223e-10 2.978097474e-10 2.915823702e-10 2.010770606e-10 1.886677522e-10 2.306651842e-10 1.571805518e-10 2.514500948e-10 1.333027286e-10 2.85632965e-10 2.384291056e-10 3.028973135e-10 2.36987806e-10 2.721705616e-10 2.409556001e-10 3.137577226e-10 2.599403278e-10 2.365468073e-10 4.165541734e-10 1.297506087e-10 3.494538911e-10 2.934539206e-10 1.291144623e-10 1.343351579e-10 3.904520668e-10 2.230603293e-10 1.821433307e-10 2.463930194e-10 2.932547673e-10 2.337364259e-10 1.925096863e-10 3.040368662e-10 9.447397317e-11 2.753248608e-10 3.763619464e-10 2.411249081e-10 2.45226174e-10 1.468480957e-10 2.367902159e-10 1.999154192e-10 1.92674191e-10 3.756449264e-10 1.211732022e-10 3.94532168e-10 4.001506446e-10 1.768810992e-10 2.388047841e-10 2.505453368e-10 1.378276951e-10 1.150446508e-10 1.186865158e-10 9.872509755e-11 3.417672461e-10 1.261425755e-10 1.330017236e-10 2.117105303e-10 1.487058022e-10 4.19678047e-10 9.327432643e-11 1.729415781e-10 1.810802278e-10 1.481434204e-10 5.593435826e-11 1.329406374e-11 4.462471723e-11 1.224426595e-10 5.955189541e-11 1.522001719e-10 1.695696795e-10 2.610829498e-10 +1.474217622e-10 3.206953218e-10 1.215374746e-10 1.202452752e-10 2.489705753e-10 1.431220871e-10 1.624529458e-10 1.681923126e-10 8.332347866e-11 1.99059631e-10 1.552678555e-10 8.887269113e-11 1.366444398e-10 1.799021708e-10 1.094412705e-10 1.213411721e-10 1.56555719e-10 1.512596773e-10 1.985666043e-10 2.532889156e-10 2.944031387e-10 3.830065609e-10 4.058283163e-10 2.592041437e-10 2.928053062e-10 3.709815455e-10 2.798140061e-10 2.189613231e-10 2.267608938e-10 3.064018098e-10 1.738676715e-10 4.54697986e-10 1.752497173e-10 2.253622352e-10 1.185007514e-10 2.94811487e-10 1.489668633e-10 2.006611513e-10 3.603195949e-10 2.487371873e-10 4.094009294e-10 2.414311131e-10 9.262390168e-11 1.595582389e-10 4.021895328e-10 4.988185462e-10 2.668428843e-10 2.447848971e-10 1.348678719e-10 3.005152713e-10 2.350734372e-10 9.535540298e-11 1.374842581e-10 1.866257611e-10 3.05158839e-10 3.041426321e-10 1.638333491e-10 3.274104311e-10 3.734552337e-10 2.064248006e-10 2.125392889e-10 3.047623176e-10 1.411345581e-10 3.361906662e-10 3.309600677e-10 1.727775034e-10 2.218868409e-10 2.11821674e-10 4.214237759e-10 2.038475537e-10 2.423470836e-10 2.146205014e-10 2.556005552e-10 2.862591416e-10 1.289282936e-10 3.422893132e-10 2.993474957e-10 2.218054944e-10 3.480929362e-10 2.485899125e-10 2.633344976e-10 1.46284058e-10 2.653061721e-10 3.113865483e-10 5.321089029e-10 3.331822441e-10 4.397220872e-10 3.856085201e-10 2.759982979e-10 2.895497474e-10 2.90238854e-10 2.806282655e-10 4.249698721e-10 2.445792576e-10 3.078480144e-10 3.537238199e-10 1.790932771e-10 2.549182509e-10 3.501756959e-10 4.163872173e-10 3.664230222e-10 3.098064577e-10 1.618764432e-10 2.421536927e-10 2.840076102e-10 1.65381588e-10 1.589660788e-10 6.889494936e-11 1.752136073e-10 1.726431965e-10 2.004229424e-10 3.287041721e-10 6.439411162e-10 4.197145931e-10 3.956252949e-10 5.083714658e-10 4.683846181e-10 4.740127036e-10 7.911039488e-10 4.022403437e-10 5.441782284e-10 3.918726092e-10 7.694031157e-10 5.830871169e-10 4.516755715e-10 5.195858328e-10 4.409610867e-10 3.966906124e-10 5.365433795e-10 4.519587588e-10 4.379741222e-10 4.84906135e-10 5.848007623e-10 5.128777467e-10 4.181678968e-10 6.133936089e-10 4.321708422e-10 5.779979722e-10 3.092138094e-10 4.980500956e-10 3.639022675e-10 3.557534122e-10 2.885639864e-10 4.141791975e-10 3.181041854e-10 3.026586247e-10 4.308968987e-10 5.30132989e-10 4.724117352e-10 5.904975987e-10 4.159957711e-10 3.46926072e-10 4.626262309e-10 2.741414948e-10 4.890207955e-10 2.75386293e-10 4.495539734e-10 3.228000449e-10 4.782091155e-10 3.212400327e-10 4.518793296e-10 3.96945918e-10 4.527422841e-10 5.150125727e-10 4.46461938e-10 5.59113491e-10 4.310764826e-10 5.9451099e-10 6.243377845e-10 5.334690989e-10 5.314323025e-10 4.604370957e-10 3.868312256e-10 3.916377657e-10 6.811838752e-10 5.880616201e-10 5.641615944e-10 3.786790984e-10 4.597922016e-10 8.174567133e-10 5.53357542e-10 5.596992417e-10 5.07350165e-10 5.942209692e-10 4.305696041e-10 5.035655994e-10 3.930440489e-10 6.345628823e-10 2.398980638e-10 1.207673543e-10 1.703895551e-10 1.602002056e-10 8.345039002e-11 1.874697183e-10 1.574490165e-10 3.019577219e-10 2.227897942e-10 2.872857508e-10 2.578862514e-10 3.727344873e-10 2.878078677e-10 2.96897612e-10 3.119752328e-10 4.713262459e-10 3.312879667e-10 3.767908298e-10 1.781204868e-10 2.420077616e-10 3.167940407e-10 3.100067553e-10 3.366852773e-10 2.514910272e-10 2.776382806e-10 2.225321397e-10 3.482339937e-10 2.077663947e-10 3.47138868e-10 2.963520697e-10 2.33275438e-10 2.51962612e-10 1.593865197e-10 2.18492632e-10 2.67329542e-10 3.20921431e-10 1.417836817e-10 2.883016856e-10 1.651723284e-10 2.583710754e-10 3.577765155e-10 2.002218794e-10 2.106262376e-10 2.090569619e-10 3.483662313e-10 4.073639382e-10 2.240631592e-10 1.683864707e-10 2.247906909e-10 2.509085406e-10 3.005790023e-10 3.020145695e-10 4.234128633e-10 3.271560842e-10 3.669307218e-10 1.899837826e-10 1.461905312e-10 4.487604214e-10 1.593156158e-10 1.750567847e-10 2.20350627e-10 1.347942256e-10 2.845762689e-10 2.922514327e-10 2.129700827e-10 2.885364849e-10 1.475205572e-10 2.122347126e-10 2.780180049e-10 1.600015888e-10 2.319431638e-10 1.707200159e-10 2.357818829e-10 2.362036558e-10 1.559862333e-10 3.019854879e-10 4.09258207e-10 9.567206265e-11 2.322031443e-10 2.750040577e-10 2.822537518e-10 2.659369324e-10 2.110342993e-10 1.046225769e-10 3.132452544e-10 1.320652931e-10 1.531053637e-10 1.398374534e-10 1.427298647e-10 1.324253494e-10 3.740727849e-10 1.128032792e-10 2.937836079e-10 3.730762824e-10 1.716733185e-10 6.254583504e-11 2.385124722e-10 2.425843928e-10 3.31329495e-10 3.2507853e-10 7.480818996e-11 1.842874129e-10 1.835213092e-10 1.438711185e-10 3.932174544e-10 1.693479783e-10 1.717105082e-10 3.834844358e-11 7.05609966e-11 2.087229197e-10 2.270769416e-10 1.40317941e-10 +8.339742005e-11 1.829734028e-10 1.404856519e-10 2.543075018e-10 9.108137458e-11 7.752463044e-11 1.55229107e-10 1.686711049e-10 1.712193917e-10 1.235809586e-10 8.123349625e-11 9.999310116e-11 2.044661886e-10 3.372608157e-10 1.658508407e-10 1.445379592e-10 2.267225104e-10 1.139606713e-10 2.650455301e-10 9.324149942e-11 2.737026606e-10 3.188601405e-10 3.152164162e-10 2.620295582e-10 1.366145375e-10 3.028812827e-10 3.50782466e-10 1.404346167e-10 2.727715702e-10 2.810251871e-10 2.36830279e-10 2.264532062e-10 2.690033541e-10 1.850085474e-10 4.360463286e-10 3.837379366e-10 3.027825199e-10 4.094810865e-10 2.387054261e-10 1.664866248e-10 2.362524414e-10 1.992908832e-10 3.578051028e-10 2.201593608e-10 1.431825559e-10 2.956377391e-10 2.563463875e-10 2.529459078e-10 2.272754561e-10 2.915092464e-10 1.621723074e-10 2.520569771e-10 1.528224206e-10 1.213944e-10 1.172070581e-10 3.609304596e-10 1.643143978e-10 2.363458544e-10 1.992807129e-10 2.625286103e-10 1.210245983e-10 3.656910635e-10 2.973854776e-10 1.687211858e-10 1.048164745e-10 3.666065418e-10 1.79826948e-10 3.143852124e-10 2.969284404e-10 2.372075099e-10 3.704633017e-10 2.68118596e-10 3.044573324e-10 3.363473292e-10 1.511828561e-10 2.222909871e-10 1.315437537e-10 2.622266991e-10 2.970008915e-10 3.813292354e-10 3.507640371e-10 3.224801841e-10 3.925612896e-10 3.929636949e-10 4.607169299e-10 4.413502934e-10 1.697576733e-10 1.778739953e-10 4.594257543e-10 2.925400982e-10 3.180544235e-10 4.409009393e-10 4.316287668e-10 2.494436689e-10 3.01684704e-10 3.517437441e-10 2.342876481e-10 3.837667844e-10 3.044015637e-10 2.931169475e-10 3.841229876e-10 2.256341166e-10 3.925086552e-10 2.379719281e-10 2.235793085e-10 1.750672689e-10 6.597886924e-11 2.73425745e-10 1.320795175e-10 2.20157236e-10 1.296622615e-10 1.925939767e-10 3.898861652e-10 6.302364261e-10 4.414838985e-10 6.970990045e-10 3.315217726e-10 4.645991579e-10 6.14243262e-10 4.875902654e-10 4.717856345e-10 4.410559695e-10 3.928230292e-10 4.384526518e-10 4.496908784e-10 4.77528035e-10 6.84679685e-10 4.866318358e-10 3.052970345e-10 4.230521141e-10 4.405613126e-10 5.682832712e-10 6.237008657e-10 5.657937993e-10 6.028715119e-10 5.57786493e-10 4.84427977e-10 4.728167252e-10 5.135916513e-10 6.345730776e-10 4.104013877e-10 4.944577114e-10 4.664971128e-10 3.458873681e-10 2.553525272e-10 4.165014454e-10 3.746595781e-10 4.875226979e-10 4.915947645e-10 3.99913395e-10 4.60543838e-10 3.695939903e-10 4.036340241e-10 4.002818794e-10 4.025033716e-10 3.573878473e-10 4.246278153e-10 4.668825834e-10 3.414719344e-10 4.345243303e-10 3.716808166e-10 3.654504286e-10 5.353505615e-10 4.696504032e-10 6.132525218e-10 6.300564664e-10 5.929834373e-10 5.892318414e-10 4.273167662e-10 4.596355745e-10 6.222076413e-10 5.81358846e-10 3.937970149e-10 5.67932792e-10 6.50281202e-10 5.844240361e-10 3.244924806e-10 2.98215107e-10 5.378818741e-10 4.404425472e-10 4.837400165e-10 3.86844571e-10 4.599797325e-10 5.726063955e-10 5.575085282e-10 4.595672136e-10 4.936960449e-10 2.022453676e-10 2.45668309e-10 9.379660012e-11 1.976531729e-10 1.368231263e-10 1.840413259e-10 9.756455911e-11 5.94613465e-11 3.292703274e-10 2.699997788e-10 2.849263035e-10 2.891648675e-10 2.905818376e-10 3.128605183e-10 3.195421776e-10 4.033334113e-10 2.502743857e-10 1.957238327e-10 3.783094847e-10 2.708851516e-10 3.62336809e-10 3.387506473e-10 3.307117856e-10 3.930353309e-10 3.761619862e-10 2.929865979e-10 2.648251084e-10 2.877643021e-10 5.101242889e-10 3.313297379e-10 3.753804107e-10 3.599399073e-10 2.667120293e-10 2.087067347e-10 2.830028345e-10 1.193517371e-10 3.479588908e-10 2.126530267e-10 1.172859539e-10 2.389627231e-10 2.503139082e-10 2.753346536e-10 1.358855935e-10 3.372639263e-10 2.625160211e-10 1.77391366e-10 2.967431783e-10 2.04368709e-10 2.012953488e-10 2.383654024e-10 2.541061379e-10 3.233824376e-10 1.898412199e-10 2.295151841e-10 1.98159822e-10 8.359825658e-11 2.645086988e-10 1.029542204e-10 3.463288449e-10 1.692171423e-10 2.246076758e-10 1.394319848e-10 2.194052182e-10 2.77414778e-10 1.241298351e-10 3.200549355e-10 1.709443784e-10 3.77025065e-10 2.250739122e-10 3.630909604e-10 2.607879358e-10 2.617901954e-10 3.55307652e-10 2.228322138e-10 3.908358766e-10 3.657661101e-10 4.234325539e-10 1.411419873e-10 2.998562928e-10 1.415980539e-10 2.327336673e-10 1.279170872e-10 2.18276363e-10 3.515364045e-10 2.370310758e-10 2.488096699e-10 3.240114698e-10 1.900585315e-10 2.242197993e-10 1.977298206e-10 2.474093229e-10 3.764073603e-10 1.270249105e-10 1.932545118e-10 2.231770362e-10 2.843258675e-10 1.855624466e-10 7.135426823e-11 8.587196931e-11 3.407150552e-10 8.954728024e-11 9.012317739e-11 3.410564921e-10 1.37342433e-10 1.403569071e-10 1.667815428e-10 4.148617671e-11 8.19736806e-11 6.606192171e-11 4.134413847e-11 1.666067825e-10 2.158279569e-10 1.577280005e-10 +6.488065569e-11 2.059121347e-10 8.841412358e-11 2.982732061e-10 1.539091297e-10 1.196418082e-10 1.678785494e-10 3.358504731e-10 1.457944629e-10 1.504384167e-10 1.421110329e-10 1.272845736e-10 1.610866307e-10 2.285727067e-10 8.124006843e-11 1.922277319e-10 1.713007309e-10 1.542806051e-10 2.277872512e-10 1.764628372e-10 3.32206087e-10 4.246454136e-10 1.735572008e-10 1.590503242e-10 2.342779937e-10 2.210252845e-10 3.339470724e-10 1.586225832e-10 4.017517243e-10 2.749236058e-10 2.51799529e-10 1.45496299e-10 2.026483894e-10 3.946373441e-10 2.570083944e-10 1.543714748e-10 1.645869753e-10 2.632427425e-10 3.205533358e-10 1.523754246e-10 3.03742839e-10 3.654084263e-10 2.106547545e-10 2.688347478e-10 2.1184879e-10 3.515361553e-10 2.149952143e-10 1.442096636e-10 4.476142811e-10 2.371732307e-10 2.749923598e-10 1.209712548e-10 1.379808987e-10 1.586088956e-10 1.799000658e-10 1.931133009e-10 2.446285239e-10 3.837127621e-10 2.355543154e-10 3.891116701e-10 1.351024765e-10 3.602946676e-10 2.766078945e-10 1.894094771e-10 2.555401312e-10 3.577435188e-10 2.088801775e-10 2.167608143e-10 3.110135654e-10 3.668481358e-10 3.672550505e-10 3.215467969e-10 2.191434718e-10 3.211013545e-10 1.857091208e-10 2.094385701e-10 3.780080733e-10 2.929146635e-10 3.040033408e-10 1.828188703e-10 4.436270657e-10 3.136107422e-10 4.8963669e-10 2.158746583e-10 3.955496635e-10 4.062933711e-10 1.994537253e-10 3.682578936e-10 4.700396581e-10 4.309082776e-10 3.2435614e-10 5.222841295e-10 1.891700867e-10 2.705910795e-10 2.944730466e-10 2.85745068e-10 3.851849565e-10 3.875649832e-10 3.376167354e-10 2.005802633e-10 2.844179082e-10 2.963922878e-10 2.644872658e-10 1.623352606e-10 1.877459656e-10 1.810403442e-10 1.822811597e-10 1.367511626e-10 3.120820666e-10 2.275930656e-10 1.891288589e-10 2.744995151e-10 1.535470124e-10 8.977256892e-10 5.642533315e-10 6.97435479e-10 5.068815297e-10 4.476064301e-10 3.410071638e-10 8.66532283e-10 5.082683346e-10 6.261640849e-10 5.887803568e-10 5.909723664e-10 5.926722832e-10 4.485622024e-10 4.543000386e-10 4.180513618e-10 4.611189884e-10 5.510472994e-10 5.598534806e-10 4.171927084e-10 5.690420172e-10 5.930770373e-10 4.798089625e-10 6.413089179e-10 6.251640123e-10 5.507266082e-10 6.229689824e-10 5.730954111e-10 4.031729681e-10 5.461078035e-10 3.301387891e-10 4.468705484e-10 3.647940186e-10 4.885229441e-10 3.505857722e-10 3.530225656e-10 4.559151876e-10 3.979679052e-10 4.364683275e-10 4.676914291e-10 4.119731044e-10 2.766978546e-10 4.307834665e-10 4.108851148e-10 5.00855248e-10 4.903276667e-10 3.904126362e-10 6.671308673e-10 4.974325237e-10 4.451505844e-10 4.628025158e-10 5.862832989e-10 4.35075015e-10 5.445492325e-10 2.864588227e-10 5.377710426e-10 6.585381988e-10 3.852529526e-10 4.84730007e-10 3.889190669e-10 3.288183961e-10 4.447465289e-10 3.817962243e-10 4.321396443e-10 6.238001765e-10 4.164101486e-10 5.193033346e-10 5.719216924e-10 7.049452723e-10 6.38992998e-10 5.218928276e-10 4.539990188e-10 8.373225122e-10 6.332265169e-10 1.872809684e-10 2.429702782e-10 2.604757822e-10 1.29904654e-10 1.051500424e-10 1.434154141e-10 1.785765037e-10 1.812752459e-10 3.034607049e-10 3.246890046e-10 2.514417009e-10 1.300188309e-10 2.074784165e-10 2.91940079e-10 3.177227905e-10 2.899215888e-10 3.150444708e-10 2.866415063e-10 3.804383974e-10 2.857871832e-10 3.16728169e-10 3.213068577e-10 3.899019206e-10 4.533455517e-10 4.04125031e-10 4.219307729e-10 3.381120134e-10 3.756451238e-10 3.026970212e-10 4.184319036e-10 2.503307204e-10 3.350154005e-10 2.655368363e-10 2.499455453e-10 1.987488971e-10 4.172910594e-10 1.392256922e-10 1.393875536e-10 1.559859046e-10 2.471976067e-10 2.387361182e-10 3.639051004e-10 3.19389474e-10 3.6826504e-10 2.270005743e-10 3.570560889e-10 3.302733237e-10 2.704150962e-10 2.67610023e-10 3.633994429e-10 3.196941734e-10 1.337876247e-10 3.080259496e-10 2.488985466e-10 3.806731483e-10 3.059931095e-10 2.562789858e-10 2.564302766e-10 1.399059111e-10 2.803901202e-10 2.366693755e-10 2.314619536e-10 2.145874859e-10 2.249662539e-10 1.590187996e-10 1.950029329e-10 2.614310301e-10 2.691083512e-10 1.615589064e-10 2.469410944e-10 1.353080973e-10 1.08560468e-10 3.578563764e-10 1.27847135e-10 1.484489686e-10 3.690373756e-10 4.314042318e-10 4.484746486e-10 5.34909993e-10 2.519590377e-10 2.056198061e-10 3.286359687e-10 3.692854399e-10 3.141863526e-10 1.191613996e-10 2.113618374e-10 1.727297339e-10 3.834368129e-10 5.581855537e-11 2.425256572e-10 2.266581455e-10 2.281691661e-10 2.166865299e-10 1.528009518e-10 7.913778062e-11 2.385576579e-10 2.651319022e-10 3.380011451e-10 2.880474747e-10 3.396645075e-10 1.785817635e-10 1.547113342e-10 2.840477168e-10 1.086734211e-10 1.222645293e-10 3.306751493e-10 3.806074195e-10 1.257498689e-10 3.670176618e-10 6.80251759e-11 1.825656368e-10 2.955373986e-10 2.576495409e-10 2.332459516e-10 +2.831383152e-10 1.3891656e-10 1.928655172e-10 2.377385953e-10 3.969493155e-10 2.614320866e-10 2.130964944e-10 8.487246097e-11 1.727535352e-10 1.141313073e-10 9.520222148e-11 1.400957105e-10 1.324754533e-10 1.290352351e-10 7.584807093e-11 1.459893508e-10 4.172909818e-10 1.604515709e-10 1.37517659e-10 4.798144793e-10 3.17805044e-10 3.795442202e-10 1.549615751e-10 3.273144037e-10 2.37639376e-10 1.060179616e-10 1.254663879e-10 5.480053389e-11 1.569088672e-10 4.704118544e-10 1.536657504e-10 1.320158612e-10 2.356987613e-10 1.422684639e-10 3.78477423e-10 1.906463692e-10 4.515696622e-10 2.491103414e-10 2.180163856e-10 1.485568868e-10 1.780844723e-10 2.996054365e-10 1.243322684e-10 4.024146911e-10 9.858406595e-11 3.999585888e-10 2.415874012e-10 3.068413837e-10 1.573946373e-10 1.267153624e-10 2.333199062e-10 1.419093052e-10 1.05876808e-10 3.184320988e-10 1.799214789e-10 1.824643026e-10 3.172479455e-10 2.478765128e-10 4.175619728e-10 3.432592437e-10 1.578871759e-10 1.771057739e-10 2.267571322e-10 1.539287562e-10 3.569797511e-10 7.574481116e-11 2.232341609e-10 2.983641419e-10 3.384222718e-10 3.206322503e-10 2.490111205e-10 2.344265072e-10 2.458721069e-10 2.155712844e-10 1.632398778e-10 1.503563123e-10 2.416681613e-10 1.377753136e-10 1.473685755e-10 2.365711262e-10 2.942763796e-10 2.900737753e-10 4.686372012e-10 4.320171951e-10 5.67919324e-10 2.480163111e-10 3.196125549e-10 3.646685344e-10 3.115643202e-10 3.419066033e-10 4.005466068e-10 3.416524422e-10 5.209815441e-10 2.930499976e-10 2.616538612e-10 3.144441783e-10 3.025192289e-10 2.667339907e-10 1.720593725e-10 3.01102499e-10 3.795283527e-10 1.715782319e-10 2.342362992e-10 2.909451102e-10 2.613591429e-10 2.452946327e-10 1.7119632e-10 1.313371482e-10 8.766316287e-11 1.501211848e-10 1.708333511e-10 2.858869696e-10 2.840036314e-10 2.082157875e-10 3.553834495e-10 6.288333315e-10 6.656243863e-10 5.767152603e-10 6.152306051e-10 6.57320646e-10 5.778633939e-10 4.221999877e-10 5.817769294e-10 4.550853324e-10 5.406786743e-10 5.564890367e-10 4.267277105e-10 4.358726818e-10 3.512739507e-10 3.614551534e-10 3.044442766e-10 4.565260196e-10 3.853700272e-10 5.197119505e-10 6.776800712e-10 4.251658684e-10 6.869407653e-10 3.734071148e-10 7.18033608e-10 4.349337319e-10 3.725385774e-10 4.789298342e-10 4.836313611e-10 6.048820995e-10 4.022163915e-10 4.01438668e-10 4.777873178e-10 4.171621311e-10 4.266978356e-10 4.008755641e-10 4.822285271e-10 3.954387462e-10 4.360597619e-10 3.303058087e-10 4.1037619e-10 4.717613105e-10 6.612762027e-10 4.399981695e-10 5.548104565e-10 4.768101024e-10 5.258553864e-10 5.581287944e-10 3.793990662e-10 4.388481553e-10 6.083287004e-10 4.566220731e-10 4.856548136e-10 6.363713699e-10 2.905945237e-10 3.134553098e-10 5.938831397e-10 6.384592166e-10 3.438861264e-10 4.7644481e-10 6.035621134e-10 6.536729335e-10 6.71128868e-10 7.524160914e-10 5.789194574e-10 3.542108949e-10 6.854160992e-10 6.870731981e-10 3.14514506e-10 4.618100179e-10 4.597013598e-10 7.623309948e-10 1.382820662e-10 2.356920989e-10 2.602407909e-10 1.400236604e-10 1.463349833e-10 9.023521093e-11 3.515512523e-11 1.737565647e-10 1.681276727e-10 2.741866595e-10 2.29443379e-10 2.998617197e-10 3.725014278e-10 2.832178832e-10 2.135994914e-10 2.40489587e-10 3.534581638e-10 2.709744624e-10 3.434786265e-10 3.143316793e-10 3.19978037e-10 2.633299533e-10 3.624550122e-10 3.471616688e-10 2.710727642e-10 3.413956436e-10 4.930289697e-10 3.542106049e-10 3.662036506e-10 3.678095835e-10 3.277870962e-10 2.949611151e-10 2.706530618e-10 3.991389121e-10 1.511214907e-10 3.792350787e-10 1.97019816e-10 2.198200117e-10 2.726740647e-10 1.672498048e-10 2.02052493e-10 1.833978523e-10 1.860961295e-10 2.760062918e-10 1.924443048e-10 2.998902277e-10 2.295121397e-10 3.385626801e-10 1.762879737e-10 2.340498153e-10 1.437932012e-10 2.620623236e-10 2.03344991e-10 1.989675217e-10 2.3311725e-10 2.734415054e-10 2.924773931e-10 2.013716542e-10 2.15983283e-10 2.573328356e-10 3.891394482e-10 2.515453566e-10 3.689744745e-10 2.586927059e-10 2.982762371e-10 2.860281453e-10 3.212633938e-10 3.058202637e-10 3.725857613e-10 1.925010367e-10 6.678131861e-11 1.512891714e-10 2.968991522e-10 2.51969897e-10 2.789149397e-10 4.185342915e-10 1.341616651e-10 2.73089335e-10 2.301952576e-10 3.107619144e-10 2.314487002e-10 2.320623926e-10 1.731451832e-10 2.122641501e-10 2.509910752e-10 1.454880606e-10 2.091463684e-10 3.062335488e-10 2.117681768e-10 2.817711793e-10 3.883568474e-10 5.114043218e-10 2.428476554e-10 1.517137681e-10 8.281087912e-11 2.531663748e-10 1.245069921e-10 1.379833682e-10 1.894940548e-10 2.130288968e-10 1.363105583e-10 1.652340971e-10 1.240336274e-10 1.369072267e-10 1.822230241e-10 1.624737639e-10 1.789658883e-10 1.78875553e-10 1.310914052e-10 9.634367598e-11 1.268536028e-10 1.653275705e-10 4.020269517e-10 1.370914181e-10 +1.264572887e-10 1.224236012e-10 1.444438403e-10 1.830070797e-10 1.823513103e-10 1.614999971e-10 1.712816972e-10 1.852442809e-10 1.030113807e-10 1.309584429e-10 1.123078111e-10 1.213855791e-10 1.228341591e-10 1.760544334e-10 2.241197444e-10 1.555053075e-10 2.08903978e-10 4.003444189e-10 1.680034669e-10 4.534606148e-10 2.279764627e-10 2.616701741e-10 2.157414285e-10 3.561212353e-10 1.496796625e-10 2.673100104e-10 3.667147692e-10 2.069926509e-10 2.103384227e-10 2.103148033e-10 1.219206598e-10 1.517805408e-10 1.87236922e-10 3.063841583e-10 1.632207131e-10 2.615135826e-10 2.034875883e-10 4.322901829e-10 2.30883452e-10 2.71331604e-10 3.122677959e-10 2.708784209e-10 1.856880914e-10 1.846338529e-10 1.75727743e-10 4.496669903e-10 3.126796414e-10 3.223237401e-10 3.389413201e-10 1.546156827e-10 2.344443836e-10 2.657168058e-10 3.310460185e-10 1.713848985e-10 3.876673946e-10 1.479145867e-10 3.187149274e-10 1.88851418e-10 2.788277548e-10 3.905376366e-10 2.50538647e-10 1.484195675e-10 1.364143946e-10 3.849805437e-10 2.448333491e-10 3.017655909e-10 2.950519325e-10 2.138635941e-10 2.161493314e-10 2.472464009e-10 7.680530588e-11 3.603837558e-10 2.538995008e-10 2.664361306e-10 1.851565369e-10 9.685984076e-11 2.034122284e-10 3.600056713e-10 2.163609237e-10 3.131621087e-10 3.409309358e-10 3.073144666e-10 5.050294962e-10 5.017031193e-10 2.685664037e-10 4.62938871e-10 3.83800671e-10 2.40833232e-10 3.680660518e-10 4.31487241e-10 4.035777351e-10 2.100695437e-10 3.306762389e-10 3.42083496e-10 3.619239952e-10 3.016868807e-10 3.370764089e-10 3.975021422e-10 2.855983384e-10 2.997113438e-10 1.879844415e-10 2.509893289e-10 3.086989108e-10 2.340504707e-10 1.897128689e-10 1.681031378e-10 2.46285504e-10 1.252404843e-10 1.512087698e-10 9.994848697e-11 1.725355932e-10 2.460880487e-10 1.930043396e-10 2.095763841e-10 4.401137796e-10 2.755417934e-10 4.598624271e-10 8.400340217e-10 4.098612245e-10 4.248343599e-10 3.972154884e-10 7.119753235e-10 5.381072465e-10 2.947233259e-10 6.563815406e-10 6.111442873e-10 4.960052583e-10 6.364391313e-10 5.250880096e-10 3.250881501e-10 5.032639795e-10 4.775995971e-10 4.887312622e-10 2.894781808e-10 5.342703093e-10 4.627851314e-10 7.269316837e-10 5.232258616e-10 7.616048373e-10 4.795840794e-10 5.822221847e-10 3.907705521e-10 3.790430474e-10 5.749778267e-10 5.571409603e-10 5.207910285e-10 5.604913462e-10 3.411168903e-10 5.269140366e-10 4.342181646e-10 6.040083937e-10 3.49940018e-10 5.022426045e-10 4.519130507e-10 3.691499388e-10 3.693143892e-10 6.793644185e-10 5.641581498e-10 4.590116436e-10 5.870063029e-10 7.522420899e-10 5.600259029e-10 4.594214696e-10 5.884376516e-10 4.836931849e-10 4.428795497e-10 3.10937965e-10 5.314599339e-10 4.89993215e-10 3.124690857e-10 4.091416016e-10 4.003154225e-10 2.58685273e-10 5.380389607e-10 2.781109784e-10 4.522013842e-10 4.633998145e-10 6.620562589e-10 4.88191512e-10 5.949286078e-10 6.014820453e-10 4.592750253e-10 6.354372721e-10 4.816144615e-10 3.84034194e-10 4.645084114e-10 1.851611587e-10 2.82311215e-10 2.900840746e-10 1.508896781e-10 1.226249733e-10 5.513589812e-11 1.04259225e-10 1.952626129e-10 2.514788309e-10 2.557202031e-10 2.042898504e-10 3.379720546e-10 2.734049738e-10 4.598538084e-10 2.819143804e-10 2.492146885e-10 3.212948735e-10 2.962501401e-10 3.760045657e-10 3.749070244e-10 2.178593883e-10 3.210991017e-10 3.3515606e-10 3.484204492e-10 2.908443395e-10 2.961031927e-10 2.371508841e-10 5.52478044e-10 2.770866899e-10 2.403522296e-10 3.555328053e-10 3.258153791e-10 2.333808493e-10 2.977968e-10 1.203449016e-10 3.085353005e-10 1.392393812e-10 1.962919697e-10 3.84231405e-10 1.678680763e-10 2.232204163e-10 1.804684981e-10 2.89727674e-10 3.167962066e-10 3.182724603e-10 2.785144337e-10 4.385107275e-10 1.549440336e-10 3.284697544e-10 2.09155156e-10 2.02371048e-10 2.368549866e-10 1.740496285e-10 3.223298271e-10 3.249638045e-10 2.516279972e-10 1.250050997e-10 2.714425562e-10 3.803088782e-10 3.626030761e-10 1.28130744e-10 3.949056003e-10 2.891341028e-10 2.24826322e-10 2.828451608e-10 2.189798534e-10 1.867633188e-10 6.390584797e-11 9.828949616e-11 1.085659686e-10 2.490878856e-10 9.014738447e-11 4.585998327e-10 3.037309404e-10 1.749430543e-10 3.059263043e-10 2.753649642e-10 2.096814024e-10 2.534289979e-10 2.960083617e-10 2.73450457e-10 2.384368506e-10 3.020370104e-10 3.08777104e-10 2.357414402e-10 1.987344623e-10 4.604210967e-10 2.520533794e-10 3.305234264e-10 4.800313297e-10 5.983696734e-11 1.968869934e-10 2.426277813e-10 2.84664955e-10 2.200518242e-10 2.385956933e-10 4.094037478e-10 1.643766977e-10 2.67054438e-10 2.181821868e-10 7.700923337e-11 2.013197144e-10 4.053309834e-10 1.888735549e-10 2.287868604e-10 1.939035886e-10 2.504758738e-10 1.522877198e-10 1.506856721e-10 3.362176019e-10 1.554955683e-10 1.856974866e-10 3.557654796e-10 2.584312634e-10 +1.553931707e-10 1.33460433e-10 1.89989653e-10 3.048111888e-10 9.096748592e-11 2.995771131e-10 7.593193332e-11 3.097410824e-10 7.788217613e-11 9.680965146e-11 2.82336712e-10 2.082761924e-10 2.776493565e-10 2.03088966e-10 3.666366982e-10 3.180142787e-10 3.303657938e-10 2.318366742e-10 6.922836871e-11 1.78287793e-10 3.435715444e-10 2.38399537e-10 2.73886109e-10 1.8552938e-10 2.569025616e-10 1.965387732e-10 1.97973487e-10 2.729541386e-10 2.374948238e-10 2.850594496e-10 1.423013992e-10 1.975323373e-10 3.250649415e-10 1.684664173e-10 1.160423215e-10 2.373572234e-10 1.788692138e-10 3.931048984e-10 2.639841978e-10 2.474641116e-10 2.946224704e-10 1.726939541e-10 2.588609152e-10 2.138948159e-10 4.063583857e-10 2.017472806e-10 3.41472785e-10 2.17786345e-10 2.965954301e-10 4.0419611e-10 2.702254553e-10 3.009418384e-10 6.208136992e-11 9.721426463e-11 3.689333094e-10 2.586159713e-10 3.099532581e-10 3.344768676e-10 2.614750076e-10 2.435558271e-10 3.471992503e-10 1.964529038e-10 1.584399886e-10 2.348731874e-10 2.946891078e-10 2.302773208e-10 2.604937731e-10 3.290722122e-10 9.937224198e-11 1.388560682e-10 2.070456124e-10 2.322029862e-10 3.656104382e-10 2.106710635e-10 1.581702638e-10 2.371537237e-10 2.569702033e-10 1.752411083e-10 2.914597771e-10 1.773837859e-10 2.033332497e-10 2.880312946e-10 3.886946857e-10 4.225155434e-10 4.557880869e-10 4.628411028e-10 3.069960701e-10 3.563161631e-10 2.449999555e-10 2.39653367e-10 4.102139461e-10 2.547834007e-10 2.62510003e-10 3.999161724e-10 2.729824349e-10 2.219233693e-10 3.299586896e-10 3.822193179e-10 3.486510519e-10 4.522033168e-10 4.288349006e-10 3.113601499e-10 3.010812651e-10 3.98355751e-10 2.217935446e-10 2.672980458e-10 1.63185072e-10 1.076477783e-10 1.404884523e-10 1.394143787e-10 1.794775508e-10 1.519586491e-10 2.26758348e-10 1.705251799e-10 1.738229655e-10 2.386358785e-10 3.351653043e-10 6.647334947e-10 5.478057435e-10 5.75960477e-10 4.132764111e-10 3.822440831e-10 5.403341789e-10 4.497524483e-10 6.49891364e-10 3.745400368e-10 5.557044101e-10 4.424173727e-10 4.431748899e-10 5.157989069e-10 4.153553274e-10 5.268183069e-10 6.082863865e-10 4.592071451e-10 4.081275781e-10 3.908960934e-10 4.962568034e-10 5.991373157e-10 7.221624391e-10 4.87429868e-10 6.860432141e-10 8.684311099e-10 6.202428473e-10 5.282384754e-10 4.686676096e-10 4.661077272e-10 4.386022756e-10 4.651249729e-10 4.670833029e-10 5.222422838e-10 5.149724118e-10 4.287346901e-10 4.215671719e-10 5.638342295e-10 4.646877028e-10 5.673418549e-10 3.974183662e-10 5.57593425e-10 5.628356379e-10 6.54704442e-10 6.728814484e-10 5.513687564e-10 4.167019913e-10 7.059761324e-10 1.35212275e-10 4.953279644e-10 5.482601454e-10 5.740123249e-10 5.083719738e-10 5.362354887e-10 4.235453966e-10 4.148009425e-10 4.127684696e-10 3.593398903e-10 7.740535746e-10 3.393639843e-10 3.596098111e-10 4.300832969e-10 5.632947491e-10 3.540865925e-10 3.443503279e-10 5.073860204e-10 4.774462467e-10 4.710028024e-10 4.130419044e-10 2.510423243e-10 1.908663053e-10 2.12518956e-10 2.025708563e-10 1.521360563e-10 7.717385369e-11 3.118297981e-10 9.954846679e-11 2.36296195e-10 1.999186286e-10 1.860554754e-10 2.650078177e-10 2.93538737e-10 2.303744342e-10 4.128124316e-10 2.139218221e-10 1.702835962e-10 1.938796754e-10 4.321472739e-10 4.806058154e-10 3.793567421e-10 2.555414003e-10 3.785517318e-10 4.284494569e-10 3.282272869e-10 4.639438914e-10 4.413332956e-10 2.723917535e-10 2.452050547e-10 4.629331133e-10 2.879347342e-10 3.058527748e-10 3.770731414e-10 3.677795265e-10 1.47552704e-10 1.946408145e-10 1.224443769e-10 2.377996129e-10 2.821213438e-10 1.981602629e-10 1.129412489e-10 1.323128055e-10 1.347707597e-10 2.778749778e-10 2.55780856e-10 2.445141999e-10 2.888501734e-10 3.156291259e-10 3.49169809e-10 1.796830935e-10 8.800152099e-11 2.186030232e-10 2.053461874e-10 3.277986434e-10 2.810222686e-10 2.342225483e-10 1.670658461e-10 2.599625154e-10 3.429207982e-10 1.836871597e-10 2.363205937e-10 1.53860369e-10 3.012353566e-10 3.602456615e-10 3.674691866e-10 3.364771448e-10 3.464376011e-10 2.704622841e-10 1.63610294e-10 2.137484265e-10 2.876543311e-10 2.478615004e-10 2.071006647e-10 2.212085797e-10 2.451593811e-10 9.468960532e-11 2.383161777e-10 1.020852504e-10 9.348131444e-11 2.078835154e-10 2.051204369e-10 1.344772424e-10 2.749556084e-10 2.867171886e-10 3.519841629e-10 1.563932101e-10 2.813434692e-10 1.725283052e-10 3.573687005e-10 1.810991211e-10 3.985914604e-10 2.337031279e-10 2.005708685e-10 2.213862678e-10 2.917764631e-10 3.592754212e-10 2.20412147e-10 3.005343178e-10 3.15595037e-10 2.727513384e-10 2.902117519e-10 1.29630679e-10 1.377497418e-10 8.640059372e-11 1.644802229e-10 1.029046455e-10 1.373134545e-10 1.242346852e-10 1.83439937e-10 2.154412471e-10 1.846179926e-10 4.035722497e-10 1.071250475e-10 2.187238917e-10 1.091882838e-10 +1.864405502e-10 3.112965243e-10 2.132701028e-10 7.737566316e-11 3.691335769e-10 1.191719993e-10 2.347452136e-10 2.032645531e-10 4.099490842e-10 1.326085326e-10 2.400860297e-10 3.012577975e-10 1.785957982e-10 2.311320896e-10 2.774296404e-10 2.190729765e-10 2.703967452e-10 2.369236912e-10 1.464326587e-10 1.515990361e-10 2.36916318e-10 2.3299173e-10 1.636618996e-10 1.976955752e-10 1.184376335e-10 2.26075607e-10 2.448022925e-10 2.99066612e-10 3.063217493e-10 3.118810361e-10 2.602800785e-10 4.739913369e-10 1.828358774e-10 4.313894733e-10 1.717770825e-10 1.21228076e-10 1.859750885e-10 1.818760649e-10 3.418336274e-10 2.907020087e-10 2.580125549e-10 3.188460588e-10 2.081850495e-10 4.0437982e-10 7.906194655e-11 2.123458277e-10 1.496879014e-10 3.592373939e-10 1.040372606e-10 2.623079168e-10 1.428442576e-10 3.014270779e-10 2.154983393e-10 1.682803177e-10 2.913142098e-10 2.565058399e-10 1.692325876e-10 3.448521422e-10 1.478292896e-10 2.121201055e-10 2.907717801e-10 2.916820208e-10 3.479932972e-10 4.335817004e-10 2.661152456e-10 3.468307302e-10 2.910465897e-10 3.052603434e-10 3.46068428e-10 2.212987733e-10 1.769652957e-10 3.156741709e-10 1.598538488e-10 2.720655548e-10 2.596264353e-10 1.803875181e-10 1.272216204e-10 2.069313165e-10 2.088539434e-10 2.60287493e-10 3.3574936e-10 2.326273527e-10 2.742368479e-10 3.686563502e-10 4.360493594e-10 3.2636874e-10 3.216272032e-10 3.3439437e-10 3.044952922e-10 4.107859639e-10 2.698829219e-10 3.305207672e-10 3.776850991e-10 4.395770159e-10 3.546168301e-10 2.675483279e-10 2.344962522e-10 2.400168566e-10 2.031208214e-10 2.734332284e-10 2.981168466e-10 2.838761644e-10 3.785460218e-10 3.728593317e-10 2.750251135e-10 2.127397694e-10 1.48255694e-10 1.428337907e-10 1.753956433e-10 1.231323935e-10 1.316740565e-10 1.304371513e-10 2.042829495e-10 2.440713916e-10 1.719278422e-10 1.258410986e-10 7.527363138e-10 4.462883366e-10 5.573099902e-10 4.957609564e-10 5.207822026e-10 5.512348957e-10 7.4289117e-10 5.927217506e-10 3.704335035e-10 6.244961823e-10 3.865717317e-10 4.811159926e-10 4.986770256e-10 5.848692865e-10 3.772037426e-10 3.449175557e-10 5.210736992e-10 3.443552394e-10 5.41838917e-10 4.087774525e-10 4.336131759e-10 5.924960378e-10 3.713023431e-10 5.881670098e-10 5.426952575e-10 5.211867747e-10 3.118386067e-10 4.8368867e-10 5.652542815e-10 4.06152186e-10 3.105445544e-10 7.506657697e-10 4.821148054e-10 5.954013637e-10 5.979790675e-10 4.647527787e-10 5.060541088e-10 4.663130692e-10 4.994712217e-10 6.631088818e-10 5.506073551e-10 5.232549672e-10 4.151446039e-10 5.400879035e-10 6.934542713e-10 7.480690988e-10 4.375991962e-10 5.143048788e-10 3.395451711e-10 2.819241684e-10 4.557717407e-10 4.348017158e-10 4.998875427e-10 4.413709313e-10 4.641869201e-10 2.944303605e-10 3.718883246e-10 6.65350898e-10 4.972338135e-10 5.89974955e-10 4.632556264e-10 8.447385488e-10 8.387252041e-10 4.924929143e-10 3.385275652e-10 4.405100642e-10 4.446919997e-10 2.936922667e-10 5.308727091e-10 1.8974264e-10 1.838139313e-10 2.77199466e-10 2.01066347e-10 3.69754429e-11 5.067023095e-11 2.038830215e-10 1.905213272e-10 2.434788514e-10 2.247446026e-10 3.335482383e-10 3.02525133e-10 2.142646732e-10 3.091350842e-10 2.835218535e-10 3.797320994e-10 2.714625867e-10 3.873009933e-10 2.61538923e-10 3.057052515e-10 3.347102716e-10 4.131033963e-10 4.185014172e-10 2.480312949e-10 2.633593973e-10 3.497467256e-10 3.342640394e-10 3.899836247e-10 3.018800948e-10 3.633574339e-10 3.815004835e-10 2.991246722e-10 2.801302344e-10 4.347714696e-10 2.913643327e-10 1.91799254e-10 1.913450843e-10 2.77295909e-10 3.345735371e-10 2.404271645e-10 2.364764556e-10 2.76677981e-10 2.348362521e-10 2.1540111e-10 1.631003706e-10 4.303459967e-10 2.607039205e-10 3.237048166e-10 3.380210726e-10 1.985932648e-10 2.119699708e-10 1.665068175e-10 2.152882018e-10 1.349647824e-10 2.669272178e-10 4.180118199e-10 4.106493035e-10 2.697172478e-10 1.546727561e-10 1.523498459e-10 3.325694176e-10 4.17726911e-10 2.49014016e-10 2.855761745e-10 1.165425844e-10 1.717545143e-10 4.206701325e-10 2.111823824e-10 3.083246493e-10 1.351357635e-10 3.438321577e-10 1.583470214e-10 3.71329003e-10 1.629152991e-10 4.13199967e-10 2.218311839e-10 4.013414258e-10 1.936613272e-10 2.393655352e-10 3.82001664e-10 3.321835151e-10 2.292102774e-10 3.192495949e-10 4.286767376e-10 3.487289896e-10 3.514554575e-10 2.194841329e-10 2.417261335e-10 3.164671189e-10 2.063460562e-10 2.235978701e-10 4.747515033e-10 1.975057693e-10 4.214237655e-10 4.334828244e-10 2.326473268e-10 1.90976524e-10 1.623655027e-10 1.733707797e-10 1.249606882e-10 1.068364035e-10 1.904328812e-10 2.185760495e-10 3.168102337e-10 3.860228475e-10 2.876048398e-10 2.608760322e-10 2.809226413e-10 1.626260405e-10 2.646927714e-10 1.080728532e-10 1.249755717e-10 2.86597392e-10 2.029266676e-10 3.534816959e-10 +1.033523597e-10 1.691153723e-10 2.525666657e-10 2.077820701e-10 3.384851547e-10 1.76996383e-10 1.509546216e-10 9.044086773e-11 3.089784378e-10 1.846748061e-10 2.770802578e-10 3.201081071e-10 3.095395724e-10 2.625285238e-10 2.161577721e-10 1.197356472e-10 1.679291681e-10 1.39915384e-10 1.426860964e-10 3.536327431e-10 2.30233076e-10 2.064738472e-10 3.739414997e-10 3.648459999e-10 1.037566457e-10 2.78068446e-10 1.997450519e-10 2.513389145e-10 2.496172043e-10 3.746155766e-10 2.814456205e-10 2.874170288e-10 2.519287517e-10 2.255963437e-10 2.168585886e-10 2.63263687e-10 3.10311675e-10 1.551204279e-10 2.532555231e-10 4.330537549e-10 2.982041496e-10 3.308932383e-10 2.621456414e-10 2.884951101e-10 2.213163492e-10 1.10186549e-10 1.329091587e-10 9.147982892e-11 1.661782243e-10 2.19349309e-10 1.390805711e-10 2.163869553e-10 2.279440239e-10 4.276669145e-10 1.3678687e-10 1.555495921e-10 9.618751256e-11 2.714683012e-10 1.938488771e-10 1.726159692e-10 3.129636681e-10 2.138036311e-10 2.069426049e-10 2.228179321e-10 2.545183368e-10 2.907388864e-10 3.972658352e-10 2.441080883e-10 2.515236259e-10 4.536448386e-10 1.784661259e-10 2.91812547e-10 1.389450534e-10 2.069324956e-10 2.304287913e-10 2.653103279e-10 2.066114305e-10 1.39563374e-10 2.780852506e-10 2.469328976e-10 3.474612639e-10 1.546697529e-10 3.011090508e-10 2.933701262e-10 2.49090547e-10 3.521534455e-10 3.447094889e-10 4.526759409e-10 3.94826935e-10 3.713929438e-10 4.498673555e-10 4.4018606e-10 4.754879202e-10 4.064954549e-10 3.298990316e-10 2.353085539e-10 3.730732403e-10 3.469535065e-10 4.255099864e-10 2.371229341e-10 2.709347889e-10 2.167311465e-10 3.387408075e-10 3.404188143e-10 2.256375854e-10 2.873229563e-10 8.161490833e-11 1.998246024e-10 1.710673578e-10 9.626411727e-11 4.532214644e-11 2.048568086e-10 1.695573608e-10 2.372824216e-10 1.579286568e-10 3.11442347e-10 2.216652793e-10 4.909702719e-10 3.947867289e-10 5.225326939e-10 4.456137012e-10 6.676531433e-10 4.671001856e-10 4.519537937e-10 7.326017741e-10 3.973342594e-10 4.968286202e-10 7.163235101e-10 3.911963796e-10 3.626741817e-10 4.529744401e-10 3.612160756e-10 4.285867462e-10 6.964458314e-10 3.092039284e-10 4.098743766e-10 4.238232414e-10 5.175544241e-10 4.493297945e-10 5.77876854e-10 6.230261701e-10 4.261251266e-10 4.326673615e-10 6.017373922e-10 5.817294919e-10 5.92301353e-10 5.657091881e-10 4.910987112e-10 6.731150257e-10 4.377849209e-10 4.158358796e-10 6.172868043e-10 4.358572702e-10 4.927375867e-10 4.450683747e-10 5.74592818e-10 5.506764176e-10 4.619034597e-10 4.237890611e-10 4.083715077e-10 5.579295855e-10 3.361108472e-10 4.292255107e-10 3.800216982e-10 3.15900816e-10 3.615976778e-10 7.740599525e-10 5.856670325e-10 3.77822553e-10 4.727700611e-10 4.616720784e-10 3.59041666e-10 4.79987664e-10 6.550113412e-10 5.49506256e-10 5.881639853e-10 4.534753932e-10 5.838884271e-10 4.791693479e-10 5.241164285e-10 4.511200807e-10 4.649563867e-10 2.636742401e-10 8.586950428e-10 1.680461647e-10 1.833399026e-10 2.610283968e-10 2.716939676e-10 1.338127542e-10 1.083105144e-10 2.275059427e-10 2.666791958e-10 2.785128824e-10 2.774855913e-10 1.726262182e-10 3.529163714e-10 2.684778144e-10 2.633610716e-10 1.726204397e-10 2.832821007e-10 2.59538716e-10 2.699727284e-10 2.677742543e-10 2.655943352e-10 3.637283602e-10 3.211386135e-10 3.088391759e-10 3.884541362e-10 3.66999252e-10 3.287252979e-10 2.601629774e-10 3.19856071e-10 2.540625238e-10 2.563750951e-10 3.09216754e-10 2.912146176e-10 2.55357196e-10 3.784728197e-10 3.343793905e-10 2.218364391e-10 1.188361241e-10 1.871842063e-10 1.668856338e-10 1.482168739e-10 2.079437329e-10 1.089995499e-10 1.964040878e-10 1.468324812e-10 1.27518955e-10 3.409568344e-10 2.346649607e-10 3.817142463e-10 3.513766661e-10 3.437565624e-10 3.571271151e-10 2.791046516e-10 1.72790712e-10 2.500214114e-10 2.156529947e-10 1.487014432e-10 1.776612818e-10 1.934862647e-10 2.476909066e-10 7.16084093e-11 1.338588777e-10 2.05235126e-10 3.536389118e-10 2.170346705e-10 1.770827004e-10 2.287495983e-10 1.120675699e-10 1.892582087e-10 2.402348114e-10 1.796101383e-10 2.826133613e-10 3.829666453e-10 1.70846284e-10 2.511632376e-10 1.560148191e-10 1.226063994e-10 1.459192543e-10 1.783346583e-10 2.403455727e-10 3.191471771e-10 2.496998848e-10 4.133264992e-10 2.211790516e-10 2.321329418e-10 2.457581815e-10 2.676616268e-10 2.768892247e-10 2.474530329e-10 1.174881046e-10 1.682509902e-10 2.588438501e-10 1.19411741e-10 4.796692523e-10 2.919858318e-10 2.919874932e-10 3.436973763e-10 1.306224075e-10 4.169956373e-10 4.277478817e-10 2.792916622e-10 3.188548868e-10 1.896557438e-10 2.414812804e-10 1.237676402e-10 1.218679713e-10 8.486213873e-11 2.665927768e-10 4.275405401e-10 2.538609502e-10 2.489668837e-10 1.665853571e-10 1.547445839e-10 1.817052949e-10 2.002899937e-10 3.665486605e-10 4.485229371e-11 +2.483605843e-10 2.819129201e-10 2.389734308e-10 3.272951217e-10 1.793223101e-10 3.213731141e-10 2.044617903e-10 3.441320608e-10 2.165000378e-10 2.751973694e-10 2.329593853e-10 1.369358041e-10 3.071635976e-10 3.617817279e-10 2.889838976e-10 1.483760888e-10 3.126452066e-10 3.297308462e-10 3.516664028e-10 2.429294912e-10 1.364908665e-10 2.099238186e-10 2.805091997e-10 3.938183214e-10 2.946430595e-10 2.67911369e-10 2.114726118e-10 1.250030678e-10 2.268998294e-10 2.161578342e-10 2.06250226e-10 3.578978593e-10 8.987383242e-11 1.818996732e-10 4.426418977e-10 2.953286755e-10 1.058307686e-10 1.535120147e-10 3.84525677e-10 2.163566887e-10 3.1038979e-10 2.249902497e-10 1.820905719e-10 1.426518542e-10 1.018291045e-10 7.842359549e-11 1.493228118e-10 1.917791152e-10 2.049149674e-10 1.137298029e-10 2.813635127e-10 2.367530167e-10 2.338783181e-10 1.436173588e-10 1.597250419e-10 8.682916669e-11 2.091952075e-10 1.366200843e-10 2.632071444e-10 4.57995055e-10 3.054243358e-10 2.393527009e-10 2.065091718e-10 2.070071667e-10 1.225202497e-10 1.092735287e-10 3.350581358e-10 2.640833226e-10 4.611122064e-10 1.527839014e-10 2.401457932e-10 2.953680666e-10 4.062103368e-10 2.295736778e-10 1.319236829e-10 1.881520295e-10 1.867916563e-10 1.864856098e-10 3.063544921e-10 2.1013892e-10 2.420386792e-10 2.448023001e-10 4.931670242e-10 3.365558429e-10 4.305600744e-10 5.455340785e-10 3.68648093e-10 3.379087611e-10 3.288836488e-10 4.756512779e-10 4.195355559e-10 4.438647342e-10 2.671640226e-10 3.221329228e-10 3.92855385e-10 2.678477485e-10 3.38425355e-10 2.772621629e-10 3.789749618e-10 2.23895083e-10 2.868669759e-10 2.399603936e-10 3.729183521e-10 2.378482887e-10 2.114930313e-10 3.183138342e-10 2.899634704e-10 1.776134986e-10 2.014411363e-10 2.370156587e-10 2.29530008e-10 2.544356159e-10 2.499043811e-10 1.230256882e-10 1.720734483e-10 1.299716543e-10 4.145906777e-10 1.216208358e-10 3.90125703e-10 3.424251769e-10 4.046215852e-10 3.494511528e-10 5.551053537e-10 6.183019801e-10 4.194421588e-10 4.014151776e-10 2.979008743e-10 3.62091206e-10 5.043966749e-10 5.713242284e-10 3.765788002e-10 4.957862709e-10 2.064597326e-10 4.198465322e-10 4.379647346e-10 5.267073141e-10 4.273291799e-10 5.592705858e-10 3.120791238e-10 5.430174405e-10 7.407203396e-10 6.478335311e-10 5.849792787e-10 4.403082422e-10 6.09591896e-10 2.871090441e-10 3.6699265e-10 3.743346394e-10 3.671630919e-10 3.279182427e-10 5.457486167e-10 2.525380307e-10 6.172247378e-10 6.082019576e-10 5.862178054e-10 6.296014951e-10 4.22014373e-10 4.135270706e-10 4.034431109e-10 3.927623647e-10 2.847301529e-10 3.740810628e-10 3.292329456e-10 5.234541818e-10 4.70050528e-10 3.456946939e-10 5.455039961e-10 3.843003287e-10 4.866677369e-10 3.692606534e-10 4.820752728e-10 4.395227131e-10 5.106679485e-10 3.384686533e-10 5.210762803e-10 3.873456153e-10 4.659874835e-10 3.629150197e-10 5.710630946e-10 4.589966262e-10 4.820996222e-10 2.327482884e-10 1.904623578e-10 1.66410511e-10 3.530800178e-10 2.091056442e-10 1.088856279e-10 1.189691431e-10 8.425964768e-11 1.029249196e-10 1.605910749e-10 2.421702718e-10 1.761897151e-10 3.434667017e-10 2.163908192e-10 2.331280803e-10 2.56067534e-10 1.968585734e-10 3.473300283e-10 2.301088808e-10 3.39349985e-10 3.472033557e-10 2.275374684e-10 3.689441859e-10 2.666732781e-10 2.700725323e-10 3.80156785e-10 1.50244432e-10 4.072748128e-10 3.21923376e-10 4.556282336e-10 3.517417091e-10 3.078060607e-10 4.244882627e-10 3.465321677e-10 3.490844046e-10 2.763698841e-10 3.161416112e-10 3.166953613e-10 1.672051417e-10 1.365841938e-10 2.49745523e-10 2.25021516e-10 1.633082783e-10 3.309278009e-10 2.776285068e-10 1.680834111e-10 3.786956612e-10 2.889690744e-10 1.372208092e-10 2.805721777e-10 2.379796206e-10 3.510973416e-10 2.405444467e-10 2.015720446e-10 2.953851343e-10 2.601303287e-10 1.864984377e-10 2.158750603e-10 1.737532939e-10 3.648692455e-10 2.449520267e-10 1.519516292e-10 2.021638165e-10 2.226257546e-10 1.468193378e-10 2.998471058e-10 1.835998167e-10 4.89495911e-11 1.517322185e-10 2.945506017e-10 2.478510593e-10 1.540927348e-10 1.485806853e-10 1.424691689e-10 1.651852382e-10 1.436101656e-10 1.598396952e-10 2.041446177e-10 1.429875665e-10 1.517233794e-10 2.29226682e-10 1.716317719e-10 3.177758119e-10 1.509165012e-10 2.51320348e-10 1.92571332e-10 1.276099375e-10 5.446255974e-11 1.179491481e-10 2.403011781e-10 1.44999659e-10 1.338735564e-10 1.416904312e-10 3.380082789e-10 2.19221592e-10 1.940356878e-10 2.285058311e-10 1.380746913e-10 1.122348053e-10 2.36220854e-10 1.822869468e-10 1.448866126e-10 1.510791881e-10 2.289828083e-10 1.954972652e-10 1.606182253e-10 2.361437817e-10 1.574495466e-10 1.398948165e-10 1.69263845e-10 2.469447961e-10 4.923754414e-10 3.089546831e-10 2.150615417e-10 1.523259416e-10 2.746394368e-10 2.555475703e-10 2.750809094e-10 3.455707315e-10 +2.097835198e-10 1.194984062e-10 1.83871732e-10 1.211532784e-10 1.351279608e-10 3.515182445e-10 1.149465473e-10 2.32996682e-10 2.211852417e-10 2.041038932e-10 4.094310925e-10 1.309814399e-10 1.649559759e-10 2.272853368e-10 2.434492452e-10 2.421350107e-10 3.223398226e-10 1.814255479e-10 5.613866744e-10 1.197414171e-10 2.911649452e-10 2.409890691e-10 1.881747385e-10 1.260355898e-10 4.547406477e-10 1.898492044e-10 3.935014264e-10 7.795438129e-11 2.294839313e-10 1.571989197e-10 3.892205937e-10 1.240599162e-10 2.976368923e-10 2.024543103e-10 1.18748892e-10 2.639526117e-10 2.734079691e-10 1.18090863e-10 1.586631617e-10 2.022345998e-10 1.378936469e-10 1.596574799e-10 1.513218508e-10 2.362998207e-10 3.289892373e-10 2.79159068e-10 1.475206146e-10 2.331471436e-10 3.715744014e-10 1.708093065e-10 3.835448936e-10 8.382288521e-11 3.408404032e-10 2.469779019e-10 2.130482126e-10 1.751925623e-10 1.8090497e-10 1.898102937e-10 1.849768011e-10 3.120213314e-10 2.758621247e-10 3.143591928e-10 4.599350549e-10 4.225693624e-10 1.989112096e-10 2.691223355e-10 2.393324432e-10 2.501789763e-10 1.792123005e-10 3.844412619e-10 1.611644271e-10 1.874150476e-10 2.056200021e-10 2.589970668e-10 1.233905664e-10 1.03680773e-10 3.123252821e-10 3.800172214e-10 1.670868579e-10 3.38002321e-10 2.618213129e-10 1.510485793e-10 3.00346698e-10 1.96407113e-10 3.382652509e-10 3.10854715e-10 2.867415594e-10 4.214727504e-10 4.205018254e-10 2.799156124e-10 2.968570688e-10 2.453363762e-10 2.936708011e-10 3.451655656e-10 2.625733654e-10 2.237442284e-10 2.419030478e-10 2.379286602e-10 3.287489966e-10 2.169427291e-10 2.185623742e-10 2.061536065e-10 2.824677828e-10 1.663736335e-10 2.212979215e-10 1.468030999e-10 1.798720072e-10 2.865473842e-10 2.107336079e-10 8.244428041e-11 1.348620679e-10 2.079589986e-10 1.47982153e-10 1.428802309e-10 1.559547443e-10 1.256150997e-10 1.471954116e-10 4.319389131e-10 1.877741495e-10 7.62475417e-10 3.988167882e-10 5.855534648e-10 3.932715388e-10 5.878369383e-10 4.900887092e-10 3.826506038e-10 2.445085132e-10 4.448079063e-10 5.698135059e-10 3.980649365e-10 2.566759905e-10 4.083759682e-10 3.30356023e-10 5.510302741e-10 3.154635033e-10 3.743472986e-10 3.467159527e-10 3.717061743e-10 3.401120165e-10 4.915397701e-10 3.649883953e-10 4.715708027e-10 4.007510496e-10 3.27171332e-10 5.209345984e-10 3.732422332e-10 5.522656173e-10 6.062847931e-10 4.70800301e-10 5.203714563e-10 4.46420106e-10 5.261333855e-10 4.400282048e-10 3.609810852e-10 5.528743447e-10 3.577941289e-10 5.608721533e-10 5.401390426e-10 4.65590539e-10 3.599084899e-10 4.790709445e-10 3.295953572e-10 4.218265427e-10 4.31657253e-10 3.890388968e-10 4.308571714e-10 4.346792891e-10 5.377843584e-10 5.450928446e-10 4.930021593e-10 4.353467151e-10 3.872569534e-10 6.415575862e-10 5.363800695e-10 6.19075274e-10 3.446572438e-10 4.368550709e-10 5.136616952e-10 4.495668996e-10 4.976322134e-10 7.026787614e-10 1.604100485e-10 1.76233393e-10 1.986563538e-10 1.117151434e-10 1.159337e-10 1.797653143e-10 8.049368116e-11 1.120941569e-10 1.781673762e-10 1.088776745e-10 1.76413357e-10 1.412471221e-10 1.38414106e-10 2.518742542e-10 2.301700781e-10 2.653504818e-10 1.993751854e-10 2.326652026e-10 3.317378626e-10 1.560897268e-10 2.213670838e-10 2.644736169e-10 2.099608101e-10 3.157209335e-10 3.029197431e-10 2.513129816e-10 5.316890508e-10 3.559720006e-10 3.31422045e-10 3.134866885e-10 3.431350435e-10 3.716533368e-10 1.803181371e-10 2.984755791e-10 3.737662353e-10 1.441454542e-10 3.287597775e-10 3.342201927e-10 2.741562921e-10 3.363272183e-10 1.963338394e-10 1.653828322e-10 2.663619279e-10 2.181705913e-10 2.616171191e-10 1.916306154e-10 1.076453595e-10 2.61951097e-10 2.308891442e-10 2.464850589e-10 2.060407021e-10 2.924051731e-10 3.128763632e-10 2.380432745e-10 2.718553136e-10 3.506973587e-10 1.842252421e-10 1.857299626e-10 3.366070354e-10 1.176897188e-10 9.822624243e-11 1.836594759e-10 2.426245612e-10 2.947656015e-10 3.009217359e-10 2.281747045e-10 1.261838365e-10 2.143037149e-10 1.606876257e-10 2.025437326e-10 8.054379823e-11 2.456884944e-10 1.41409618e-10 1.668850051e-10 1.354929729e-10 3.793674934e-10 1.534668346e-10 4.209952714e-10 1.43539534e-10 2.036137836e-10 1.037953847e-10 2.530553997e-10 7.689613833e-11 4.231133523e-10 2.121806178e-10 2.269750594e-10 2.2503705e-10 2.169771422e-10 2.830637684e-10 2.250436047e-10 1.654419772e-10 2.615504477e-10 1.238677615e-10 1.576639328e-10 2.474726207e-10 2.083819916e-10 9.295732617e-11 4.003619038e-10 2.187282421e-10 3.72697724e-10 1.814937485e-10 2.086143723e-10 2.042298168e-10 2.702843578e-10 4.266814711e-10 2.393890127e-10 1.775444576e-10 1.297758172e-10 2.803255251e-10 3.782744384e-10 2.415764699e-10 1.097652283e-10 3.233092716e-10 1.31243048e-10 1.94198941e-10 3.285367884e-10 2.14891793e-10 1.617358992e-10 4.31366164e-10 +2.561809706e-10 3.552750197e-10 4.176400601e-10 3.87018533e-10 3.889778587e-10 5.582639709e-11 1.073424524e-10 1.949511405e-10 2.359840276e-10 2.98438694e-10 3.363414942e-10 2.499697688e-10 3.244780682e-10 2.723630394e-10 2.721370815e-10 1.339645772e-10 1.840012483e-10 2.383562915e-10 3.04454034e-10 3.481192556e-10 1.634878852e-10 1.931365926e-10 2.614535122e-10 5.007347148e-10 2.653949271e-10 4.881114975e-10 3.321873347e-10 4.118802807e-10 2.674764039e-10 1.218429626e-10 3.836962869e-10 2.433581988e-10 4.588245508e-10 2.047199061e-10 9.711735619e-11 1.900598245e-10 8.300378427e-11 1.933876947e-10 2.108192242e-10 2.890564378e-10 2.693302208e-10 3.527833262e-10 2.279511259e-10 2.917023067e-10 1.546811585e-10 6.544121052e-11 1.75715144e-10 1.494586321e-10 2.390346323e-10 1.457107552e-10 2.092282342e-10 1.326193951e-10 1.193736049e-10 2.449081937e-10 1.577869547e-10 2.813049808e-10 2.947946846e-10 3.167134408e-10 2.730035122e-10 2.744159239e-10 2.212682187e-10 2.686088791e-10 3.292503078e-10 2.292403973e-10 1.174822173e-10 2.743371366e-10 2.811452322e-10 1.211096369e-10 2.761896053e-10 2.879250864e-10 2.121300822e-10 1.583069023e-10 1.568432252e-10 1.465995646e-10 3.941694751e-10 2.322472019e-10 1.815220135e-10 9.583791604e-11 3.247548753e-10 1.825778372e-10 1.673759562e-10 2.86230644e-10 2.17309325e-10 3.327207267e-10 3.522629619e-10 3.101330742e-10 2.847641403e-10 4.329297834e-10 4.541747254e-10 2.531908283e-10 2.560750121e-10 4.086455407e-10 3.228866808e-10 3.547816255e-10 2.340891112e-10 2.437956376e-10 3.36962692e-10 2.618073328e-10 2.304650074e-10 2.880813103e-10 2.923974084e-10 3.489881732e-10 3.066204641e-10 2.465035621e-10 2.86795149e-10 3.711574723e-10 2.365559431e-10 1.763622619e-10 2.3754895e-10 3.250812558e-10 1.404083779e-10 1.110329895e-10 1.815451454e-10 1.045932277e-10 2.348770148e-10 2.263341458e-10 1.654353048e-10 1.217876796e-10 2.655747476e-10 3.029770022e-10 3.949965775e-10 2.774477336e-10 3.91498412e-10 2.737995475e-10 6.540805264e-10 5.093419459e-10 4.553855526e-10 3.181636103e-10 2.61096732e-10 6.718625555e-10 4.057012284e-10 3.944989586e-10 2.844741444e-10 4.529279227e-10 5.331002311e-10 3.196561899e-10 5.770444013e-10 4.584575979e-10 4.605871614e-10 2.961546943e-10 3.947899528e-10 3.498021035e-10 4.531536662e-10 3.426695476e-10 4.254110791e-10 2.829573812e-10 4.103718293e-10 4.04186939e-10 3.378659101e-10 6.876333076e-10 6.538614431e-10 5.25479877e-10 4.239840833e-10 3.777752606e-10 3.207209516e-10 5.997988405e-10 4.815779786e-10 3.244841454e-10 3.867288285e-10 3.393174094e-10 3.697425746e-10 4.888591451e-10 4.285966644e-10 5.748381637e-10 4.45478939e-10 4.429702522e-10 4.697472487e-10 4.921224812e-10 6.204485016e-10 5.294621533e-10 7.055430004e-10 5.383530265e-10 4.401663317e-10 5.910244821e-10 5.460126505e-10 5.678623796e-10 4.050962499e-10 3.774410209e-10 3.444226365e-10 4.806231294e-10 2.433797274e-10 5.274867662e-10 2.481974242e-10 2.069617328e-10 1.679164896e-10 1.596353337e-10 1.102311895e-10 1.963523519e-10 1.606973925e-10 2.066531241e-10 2.286262122e-10 2.30731416e-10 2.509842791e-10 2.703741684e-10 1.709483361e-10 2.565684403e-10 2.695131675e-10 2.719607312e-10 2.916530008e-10 2.60462385e-10 3.718926901e-10 3.701728805e-10 3.003564052e-10 2.742317681e-10 3.15007332e-10 3.297791577e-10 2.81640813e-10 2.47953506e-10 3.819435944e-10 2.714470503e-10 3.210276227e-10 2.644991355e-10 3.409615837e-10 3.191986455e-10 3.493762762e-10 2.465674557e-10 2.108550117e-10 3.111358982e-10 2.955304182e-10 2.107731931e-10 1.82216594e-10 2.142178889e-10 2.341634685e-10 1.753885936e-10 1.251540682e-10 3.88069514e-10 3.732151625e-10 1.442991576e-10 1.561506538e-10 2.886876572e-10 1.541171553e-10 1.415656715e-10 3.386961521e-10 1.674212778e-10 1.664661977e-10 3.51643063e-10 1.024478345e-10 2.676918131e-10 1.664493576e-10 2.936413046e-10 1.618588325e-10 2.035570637e-10 3.722414971e-10 4.124660969e-10 2.803784947e-10 1.764492832e-10 2.55427475e-10 3.271262649e-10 4.253404409e-11 3.352197647e-10 2.731554095e-10 3.52059189e-10 1.777321521e-10 2.507265845e-10 1.71455567e-10 1.60996337e-10 2.843358081e-10 2.400681409e-10 1.569000557e-10 1.566531521e-10 1.085576515e-10 1.14336418e-10 1.757993898e-10 1.84960118e-10 3.02401482e-10 1.881334632e-10 1.65485705e-10 2.08199687e-10 3.329002245e-10 3.065152879e-10 1.659281297e-10 1.743656153e-10 2.334892559e-10 1.535531545e-10 1.893672335e-10 9.381430343e-11 2.829823091e-10 2.667406685e-10 4.103773892e-10 2.450762012e-10 1.832934975e-10 1.457022296e-10 1.859448401e-10 3.041085556e-10 2.410350414e-10 2.993642017e-10 3.519246077e-10 1.769463131e-10 1.74000959e-10 3.91323236e-10 2.230784422e-10 1.225903625e-10 3.053752534e-10 1.976865289e-10 1.459293171e-10 8.269290673e-11 2.233867177e-10 3.499098224e-10 2.055205165e-10 9.826027914e-11 +1.182326725e-10 4.128195902e-10 3.94975434e-10 3.380583009e-10 1.650488642e-10 3.203196579e-10 4.563277246e-10 1.623589969e-10 1.993043681e-10 2.246245303e-10 2.530042042e-10 2.335086523e-10 2.51925429e-10 1.932427862e-10 2.150632913e-10 1.53024591e-10 1.065774547e-10 2.404154817e-10 9.02149775e-11 4.428155537e-10 9.311323006e-11 3.714210157e-10 1.936266318e-10 1.042493943e-10 1.905584403e-10 2.280971031e-10 1.529422811e-10 2.778589572e-10 1.111845942e-10 1.923629277e-10 1.476292157e-10 1.951742552e-10 1.83973438e-10 3.615360475e-10 2.481545808e-10 2.299877712e-10 3.263898923e-10 1.580311726e-10 1.728096948e-10 2.764232706e-10 2.07916199e-10 3.687601e-10 1.243924984e-10 2.492597362e-10 3.928994017e-10 3.518023821e-10 2.12223814e-10 2.83412096e-10 3.55626921e-10 1.524348357e-10 3.609445795e-10 3.306332479e-10 2.333383941e-10 1.812320095e-10 2.994961273e-10 2.410348137e-10 2.636951355e-10 2.300857743e-10 3.139208522e-10 1.960942172e-10 1.835038719e-10 2.870770632e-10 2.063390029e-10 1.460924776e-10 2.513795714e-10 3.12673638e-10 2.416238983e-10 2.384222493e-10 3.327663413e-10 2.073354195e-10 1.514939583e-10 2.711581676e-10 2.594180659e-10 2.607427055e-10 3.700587318e-10 1.827688889e-10 1.182396245e-10 3.347253577e-10 1.585010651e-10 1.921809755e-10 9.745211282e-11 4.160976232e-10 2.133929472e-10 2.923314458e-10 3.371171121e-10 4.5410906e-10 3.889765346e-10 2.316556966e-10 3.395654994e-10 2.192159212e-10 4.862601693e-10 2.788120224e-10 3.462657265e-10 2.71664623e-10 2.808035877e-10 2.182224563e-10 1.645494821e-10 3.299107902e-10 4.18435924e-10 3.845525678e-10 2.256731771e-10 3.446940144e-10 2.742304622e-10 2.718922387e-10 3.257128194e-10 3.161249536e-10 3.382846677e-10 2.934506029e-10 1.830071249e-10 2.234385016e-10 1.359832558e-10 6.042216814e-11 4.451294134e-11 1.033282245e-10 1.062212742e-10 2.770671613e-10 2.010743296e-10 2.882763372e-10 1.998894327e-10 1.828249114e-10 4.164483881e-10 4.900321881e-10 5.974074208e-10 4.577884836e-10 3.827482636e-10 4.708000496e-10 2.634376647e-10 3.542622857e-10 7.148828313e-10 6.127002804e-10 3.20203925e-10 3.722600042e-10 5.038991112e-10 6.251869787e-10 3.025831849e-10 6.16871723e-10 4.464277727e-10 3.053671395e-10 4.409902408e-10 4.174208607e-10 6.143559776e-10 5.938478906e-10 4.261617851e-10 2.419928833e-10 3.278426662e-10 3.33674032e-10 4.338837423e-10 3.893019948e-10 8.645255838e-10 2.000218769e-10 4.389175287e-10 4.847586902e-10 4.376743504e-10 3.634185991e-10 5.397940693e-10 5.773996727e-10 4.712331402e-10 5.368639583e-10 4.722531588e-10 4.999900094e-10 4.414156871e-10 5.361172495e-10 5.547877777e-10 2.926194278e-10 7.955452607e-10 4.381574237e-10 2.854573379e-10 4.876956299e-10 4.682545784e-10 4.146265715e-10 4.585837017e-10 4.299189129e-10 6.674393273e-10 4.777278446e-10 3.617663237e-10 3.625152395e-10 4.836965404e-10 5.024310051e-10 4.04758364e-10 4.402849417e-10 5.095499639e-10 1.151931571e-10 2.207717988e-10 1.691949985e-10 7.569835132e-11 1.668840976e-10 1.759165995e-10 2.637546378e-10 1.802176156e-10 1.319860626e-10 3.039144655e-10 1.300114137e-10 2.565998195e-10 1.446601055e-10 1.989872573e-10 2.425096617e-10 2.491057984e-10 3.199793597e-10 2.385759914e-10 3.62857172e-10 2.839062955e-10 3.029051056e-10 2.551204065e-10 2.933675626e-10 3.824258395e-10 2.74129971e-10 1.933956047e-10 2.917067751e-10 3.78839886e-10 2.79606404e-10 2.823002104e-10 2.494519919e-10 3.923044871e-10 2.527101409e-10 2.898132672e-10 2.18506052e-10 2.080889661e-10 3.013011173e-10 2.453153259e-10 2.213961108e-10 3.106145082e-10 1.365332598e-10 2.292674472e-10 1.288900403e-10 2.686193099e-10 1.258399781e-10 1.570948216e-10 9.77601559e-11 2.877288231e-10 3.496305061e-10 2.788175489e-10 3.186762079e-10 2.552267351e-10 1.050333718e-10 1.932502569e-10 8.970769205e-11 1.806826283e-10 2.478447356e-10 2.621975987e-10 1.134150773e-10 2.635294345e-10 1.769571379e-10 2.988665292e-10 1.661550623e-10 2.835385038e-10 2.263039641e-10 2.289521128e-10 2.411623686e-10 5.182866659e-10 2.218133798e-10 3.012065307e-10 2.635724911e-10 1.19922787e-10 3.184550431e-10 1.154571126e-10 8.636114093e-11 1.542733624e-10 1.740973806e-10 2.082161368e-10 1.772753953e-10 3.11763716e-10 1.303934706e-10 2.021049219e-10 1.684306337e-10 1.565136867e-10 1.55460086e-10 3.080299717e-10 2.348605817e-10 3.840238925e-10 1.272484148e-10 1.532780931e-10 3.564006124e-10 1.274613289e-10 1.268557953e-10 1.79724801e-10 1.247611035e-10 9.597887654e-11 1.682246703e-10 2.233716536e-10 2.919060652e-10 1.013782768e-10 4.513331029e-10 4.247178588e-10 2.991122455e-10 1.005119187e-10 9.780373317e-11 1.109819052e-10 2.769816044e-10 8.136292142e-11 3.064221071e-10 2.179662413e-10 1.385239428e-10 3.173138661e-10 2.624085335e-10 1.711259804e-10 2.3741439e-10 4.274225419e-10 4.238534351e-10 1.726213746e-10 3.036075573e-10 +1.821254413e-10 3.093222922e-10 1.307889961e-10 2.212926603e-10 1.441028813e-10 3.883149932e-10 1.885540983e-10 3.11054359e-10 2.486180122e-10 2.208416268e-10 4.168970879e-10 9.03391177e-11 1.592035385e-10 1.881718306e-10 2.006303567e-10 1.412158078e-10 8.250462141e-11 2.441929125e-10 1.337802533e-10 1.217667576e-10 2.030499535e-10 2.824246972e-10 1.753104454e-10 4.252792945e-10 6.388046582e-11 1.004891892e-10 2.147527584e-10 1.481316352e-10 1.532438326e-10 3.472864938e-10 1.600477209e-10 1.778475505e-10 8.017907416e-11 2.207614747e-10 1.465114429e-10 4.270136144e-10 2.86134816e-10 2.525744168e-10 1.866725892e-10 1.949860995e-10 2.038829672e-10 1.67925697e-10 3.358063036e-10 1.583195192e-10 1.980688672e-10 1.498796963e-10 3.169521303e-10 1.058666477e-10 2.189508056e-10 1.405150752e-10 2.468920559e-10 2.332702028e-10 3.374321479e-10 3.553196408e-10 1.64897235e-10 9.970705509e-11 3.034285586e-10 1.707741731e-10 1.341419606e-10 1.636725341e-10 2.645262486e-10 1.505053807e-10 2.186122112e-10 2.107677938e-10 1.717587872e-10 2.275045493e-10 2.911870305e-10 2.391168785e-10 3.216674583e-10 3.537212378e-10 3.244605532e-10 1.079837494e-10 2.531358063e-10 2.030576716e-10 2.836973347e-10 2.102965457e-10 2.212578002e-10 1.805432685e-10 2.615848315e-10 1.707205076e-10 1.729591272e-10 1.899307214e-10 4.29590032e-10 3.306644886e-10 2.325868402e-10 4.708547054e-10 4.152000377e-10 4.148856954e-10 3.057950469e-10 1.899098437e-10 4.37387102e-10 1.72678919e-10 2.728505398e-10 3.445227269e-10 2.33771169e-10 2.161853287e-10 2.432108802e-10 3.524779873e-10 3.351300102e-10 3.326662766e-10 2.216138578e-10 2.914671869e-10 2.768951861e-10 2.064528323e-10 1.961513332e-10 2.365381008e-10 2.453936435e-10 2.275817572e-10 3.700869679e-10 1.85474607e-10 1.499263142e-10 1.203007995e-10 1.310212119e-10 1.76810406e-10 1.201122602e-10 1.561661425e-10 9.295979278e-11 2.082219379e-10 1.603993103e-10 1.329736114e-10 3.350650672e-10 5.314623973e-10 3.48011766e-10 4.565683325e-10 3.930299497e-10 5.594509729e-10 8.059144918e-10 3.569706545e-10 3.773349111e-10 4.86077713e-10 7.571022765e-10 3.502841406e-10 3.916818171e-10 4.30001753e-10 4.008928791e-10 2.674473399e-10 4.21148256e-10 4.308946083e-10 3.071605058e-10 2.684520554e-10 6.088402215e-10 2.58660208e-10 2.798159651e-10 3.629180034e-10 3.467547102e-10 3.662544732e-10 3.135909332e-10 4.272254773e-10 4.137719418e-10 4.661907842e-10 3.947477377e-10 4.873743281e-10 3.985786446e-10 5.739832518e-10 2.86329398e-10 5.324658736e-10 3.10953541e-10 3.268508471e-10 2.975504329e-10 3.760718651e-10 3.698564733e-10 5.183847024e-10 5.042497488e-10 3.375995589e-10 5.206295224e-10 4.063599694e-10 3.680327092e-10 4.649771146e-10 2.97717132e-10 4.40749725e-10 6.709613108e-10 7.064036698e-10 2.936318451e-10 5.218772688e-10 3.202424345e-10 7.479644467e-10 3.15034065e-10 6.202477051e-10 4.057644136e-10 1.573230075e-10 1.530150602e-10 1.101040622e-10 1.71882956e-10 1.22258794e-10 1.364455517e-10 1.096290701e-10 2.987291148e-10 1.405946396e-10 9.97332363e-11 1.353564169e-10 5.595652547e-11 1.758677359e-10 3.365901132e-10 2.32682866e-10 2.324184684e-10 3.091591004e-10 2.561256036e-10 2.56243206e-10 1.825101722e-10 2.787924957e-10 3.19455803e-10 2.99708884e-10 2.103907104e-10 3.341081662e-10 3.246868022e-10 1.515414551e-10 3.884819136e-10 2.820271894e-10 2.540504287e-10 4.23919733e-10 4.162536556e-10 3.099604526e-10 3.349631891e-10 3.765577032e-10 3.950897136e-10 3.575571752e-10 1.18799812e-10 1.566714912e-10 2.650203873e-10 1.95707185e-10 1.906349162e-10 2.056188499e-10 2.981220729e-10 2.483319503e-10 2.449128629e-10 1.904321536e-10 2.757767498e-10 1.295856293e-10 2.380836002e-10 1.725802241e-10 1.964348276e-10 2.051007619e-10 2.876358947e-10 3.642741746e-10 1.710632258e-10 1.254369603e-10 2.867484578e-10 1.568431125e-10 1.465225595e-10 2.48997281e-10 3.596785035e-10 2.661897786e-10 2.217788552e-10 1.604440707e-10 2.606434506e-10 1.380559553e-10 2.296147752e-10 1.792134437e-10 2.146406009e-10 1.2923827e-10 1.937342228e-10 1.056587695e-10 1.658249318e-10 4.501471699e-10 1.412243695e-10 1.75799117e-10 1.670948332e-10 1.869690032e-10 1.624926079e-10 2.172560063e-10 2.811024424e-10 1.629594928e-10 1.5553042e-10 2.284525037e-10 1.756207922e-10 1.390292825e-10 4.700975595e-10 1.614478822e-10 2.801491611e-10 1.428051132e-10 5.005911127e-10 1.341894655e-10 2.186591385e-10 1.075583428e-10 2.251058588e-10 1.579213473e-10 1.524940149e-10 3.497328632e-10 2.68627753e-10 2.587577385e-10 3.665914594e-10 2.199280511e-10 2.182690832e-10 1.229720655e-10 3.057224145e-10 3.412892047e-10 2.246740873e-10 1.327073809e-10 3.658906308e-10 3.16674085e-10 2.607779578e-10 9.67279804e-11 3.57185923e-10 1.709096276e-10 2.64392703e-10 1.20066281e-10 3.227990244e-10 2.82895366e-10 2.355763151e-10 1.152745066e-10 +1.383236883e-10 3.371981513e-10 2.625876894e-10 3.364354465e-10 3.635144945e-10 9.617657718e-11 1.784926126e-10 1.258557663e-10 2.067248345e-10 2.683554865e-10 1.300492208e-10 2.647665586e-10 1.778295885e-10 1.798870377e-10 2.231432755e-10 1.049162153e-10 1.91227051e-10 1.026960411e-10 7.552073735e-11 1.715450383e-10 1.700429004e-10 1.465750625e-10 1.368982258e-10 1.652539715e-10 3.896279052e-10 1.296204569e-10 1.099048869e-10 2.573751702e-10 2.93775877e-10 3.389236978e-10 2.337573959e-10 2.211502243e-10 2.598184e-10 2.102296725e-10 5.149898634e-11 2.882931632e-10 2.781968151e-10 2.987556615e-10 1.7918863e-10 2.840818546e-10 3.081502143e-10 1.801678793e-10 1.131039311e-10 2.044478765e-10 1.539557737e-10 1.411817836e-10 3.62400918e-10 1.806393362e-10 2.081200311e-10 1.591476666e-10 1.169047481e-10 2.371012315e-10 2.728086348e-10 2.124126279e-10 3.397916529e-10 2.114490125e-10 2.567867877e-10 2.347539985e-10 1.046083859e-10 2.43413697e-10 1.823973989e-10 1.870772462e-10 4.155727851e-10 9.309681096e-11 1.255882108e-10 7.904773763e-11 2.546202437e-10 2.740676117e-10 2.390740181e-10 2.03562999e-10 1.839778479e-10 2.786498189e-10 1.430066286e-10 1.840701777e-10 3.343454111e-11 7.585931757e-11 1.907421287e-10 1.840717117e-10 2.464402292e-10 1.022305912e-10 3.074121835e-10 2.209141172e-10 3.274377523e-10 3.498163608e-10 6.291955891e-11 2.931289057e-10 2.98547309e-10 2.509726573e-10 2.384472162e-10 3.134607184e-10 3.262323096e-10 2.973594218e-10 4.000138583e-10 2.813819142e-10 2.182122629e-10 4.147346418e-10 2.501681139e-10 3.920946613e-10 2.449698205e-10 3.549770516e-10 1.633947218e-10 2.733521091e-10 2.334551649e-10 2.129660965e-10 2.473676731e-10 2.135498119e-10 2.882241775e-10 3.357210038e-10 2.163584665e-10 1.42888837e-10 1.641924841e-10 2.589016511e-10 1.070548122e-10 1.741791377e-10 2.395414388e-10 1.104636025e-10 1.84833746e-10 1.621648361e-10 9.151343136e-11 2.084384296e-10 2.114039818e-10 1.128048033e-10 3.828726587e-10 3.623485123e-10 4.026960154e-10 4.84902824e-10 3.35581256e-10 6.56122541e-10 7.390592357e-10 5.327467212e-10 5.620820333e-10 3.25033883e-10 2.730042055e-10 5.183510855e-10 5.095560284e-10 3.523450902e-10 6.363097052e-10 4.302092466e-10 3.094831087e-10 6.041240959e-10 5.116793175e-10 4.336689678e-10 4.306833778e-10 4.042615358e-10 3.453108442e-10 4.046491764e-10 3.201078522e-10 4.32714724e-10 3.718313016e-10 4.15813001e-10 3.588281154e-10 4.083092382e-10 3.049852745e-10 2.806948956e-10 5.893121025e-10 3.76060205e-10 4.528080456e-10 3.376744759e-10 3.452989793e-10 5.007565824e-10 5.924525729e-10 6.717239923e-10 4.292969209e-10 2.260007648e-10 4.565011934e-10 6.555787396e-10 5.003047851e-10 6.902316465e-10 2.37916446e-10 4.277197145e-10 7.40408381e-10 3.304482834e-10 5.024640513e-10 3.674201329e-10 4.213129785e-10 3.157645588e-10 4.776635309e-10 2.928410003e-10 2.271115738e-10 1.876066767e-10 2.663741046e-10 1.679635158e-10 1.807347697e-10 1.538941193e-10 2.634782078e-10 8.462584789e-11 1.40124212e-10 1.309886311e-10 2.801203203e-10 9.40893463e-11 1.972113336e-10 2.353993838e-10 2.592870009e-10 1.23638987e-10 3.373882814e-10 2.78126362e-10 3.441795429e-10 2.815730139e-10 1.726903816e-10 3.421582219e-10 2.766111563e-10 3.096399951e-10 3.64192776e-10 4.205502877e-10 2.38728148e-10 4.761762859e-10 2.747686488e-10 4.009092839e-10 3.211423731e-10 3.280732654e-10 2.272333935e-10 3.1120949e-10 3.086853774e-10 3.877713172e-10 3.06558558e-10 4.637736719e-10 1.796927456e-10 2.717527744e-10 1.691890216e-10 3.766474835e-10 2.563583349e-10 2.130319462e-10 1.484434324e-10 3.671459238e-10 9.149093638e-11 2.15809434e-10 3.157710604e-10 2.05229536e-10 2.438735066e-10 2.052988815e-10 2.873771204e-10 3.315280136e-10 2.520802661e-10 2.177772498e-10 2.6885627e-10 1.829592002e-10 3.418262851e-10 2.474259663e-10 2.847410011e-10 2.17483189e-10 2.426674595e-10 3.241644531e-10 1.99799215e-10 2.932315195e-10 2.70983554e-10 3.342230197e-10 1.63350806e-10 1.809939727e-10 1.389670517e-10 2.628739374e-10 1.855064604e-10 2.087164418e-10 1.306346313e-10 1.570674752e-10 2.401116689e-10 1.31531849e-10 3.767365534e-10 2.099568051e-10 1.052234385e-10 1.067096763e-10 4.294025339e-10 1.928754796e-10 1.61916055e-10 1.49777435e-10 2.264598314e-10 1.733077843e-10 1.269454721e-10 2.013698373e-10 1.801010235e-10 3.202208746e-10 3.369201598e-10 2.664068977e-10 1.562383688e-10 1.287093748e-10 3.421968733e-10 1.286415654e-10 1.752097453e-10 2.707574118e-10 5.752851656e-10 1.483189908e-10 1.94291424e-10 1.840885545e-10 2.370812735e-10 2.641473461e-10 2.497162996e-10 9.118089958e-11 1.090963553e-10 3.775106106e-10 3.606190429e-10 2.375261099e-10 2.393843802e-10 2.793129287e-10 2.483079738e-10 1.131384525e-10 2.337437546e-10 4.291375254e-10 3.155958155e-10 6.194244629e-11 1.38506589e-10 2.97451007e-10 +2.791169894e-10 2.579253474e-10 1.526911889e-10 3.05160529e-10 1.52631075e-10 1.20936947e-10 2.249592223e-10 4.538742795e-10 2.904416614e-10 3.729157106e-10 1.312990402e-10 2.060407857e-10 1.456587885e-10 3.773629407e-10 2.729452759e-10 1.418267449e-10 1.315677915e-10 1.453101183e-10 2.787793689e-10 2.220119403e-10 5.069364744e-10 2.382471035e-10 1.806064049e-10 2.092436838e-10 1.312659607e-10 1.908727435e-10 1.641279601e-10 1.525471716e-10 1.39527719e-10 3.062801035e-10 1.778089498e-10 1.679611488e-10 2.566809603e-10 2.690709682e-10 2.001390756e-10 5.415219112e-11 2.287944984e-10 1.782376274e-10 1.651632537e-10 1.211396866e-10 3.665826146e-10 1.675824165e-10 3.032361267e-10 1.695205739e-10 2.16352768e-10 1.477845459e-10 1.822525649e-10 3.052420137e-10 1.996302377e-10 1.52171254e-10 1.240452482e-10 1.685637199e-10 2.494528441e-10 1.406608759e-10 2.47529527e-10 1.885754923e-10 2.062338221e-10 2.134361566e-10 1.897037512e-10 1.690256845e-10 2.102695826e-10 1.225033412e-10 3.483654626e-10 1.947360864e-10 1.130520047e-10 2.491948786e-10 2.364925734e-10 2.795628941e-10 2.2480485e-10 2.596892345e-10 3.541061852e-10 1.498398769e-10 1.906848271e-10 4.473054939e-10 1.259788458e-10 2.628456056e-10 1.895964875e-10 1.557395432e-10 2.359047017e-10 2.094327145e-10 2.159199183e-10 2.676909242e-10 3.461998364e-10 3.280904421e-10 2.024638999e-10 3.686204317e-10 2.45991009e-10 3.821112229e-10 2.735723371e-10 4.599984984e-10 2.420336942e-10 3.004114883e-10 4.947796723e-10 3.053285037e-10 2.079610291e-10 2.724817888e-10 3.565435202e-10 3.330572325e-10 3.583137292e-10 2.480059268e-10 2.415839002e-10 3.524732422e-10 2.182542996e-10 1.893249322e-10 2.951435472e-10 2.875357132e-10 3.234536186e-10 2.502228812e-10 2.082679823e-10 1.21967769e-10 1.204723251e-10 1.208156655e-10 1.321314423e-10 3.387647938e-11 8.672785638e-11 1.881644545e-10 2.409155678e-10 1.999761232e-10 1.892148978e-10 1.529764135e-10 1.942011544e-10 4.689301007e-10 2.499390862e-10 2.138106646e-10 6.250024815e-10 4.666533169e-10 4.282730012e-10 6.668507589e-10 4.345278573e-10 4.063683021e-10 3.162091152e-10 4.545797084e-10 3.800791324e-10 4.540437351e-10 2.489517121e-10 4.840329448e-10 4.192224592e-10 6.339582691e-10 4.59182913e-10 3.649105608e-10 4.709517957e-10 2.51774535e-10 3.963188986e-10 5.691538655e-10 3.708463897e-10 3.596773653e-10 4.643112409e-10 2.570935172e-10 6.891831052e-10 4.702030928e-10 5.288474645e-10 4.020454451e-10 4.112098739e-10 3.01128765e-10 8.212250994e-10 3.615673935e-10 3.111316635e-10 6.831834947e-10 3.970431587e-10 4.51583948e-10 2.970134218e-10 4.614932231e-10 4.952160764e-10 2.770172715e-10 5.044312564e-10 5.052255244e-10 5.001536564e-10 4.362861706e-10 7.656926915e-10 2.336158246e-10 4.729589008e-10 4.051182094e-10 7.676098114e-10 3.776944222e-10 4.96260718e-10 4.167701707e-10 1.83908457e-10 4.130363148e-10 1.382914393e-10 1.683943822e-10 1.70731652e-10 1.045957453e-10 1.883311193e-10 2.383749315e-10 1.070860761e-10 1.335336061e-10 2.684323391e-10 1.511514238e-10 1.195995725e-10 2.514225159e-10 1.94935778e-10 3.283393849e-10 1.575511866e-10 3.062781827e-10 3.160204112e-10 2.082968699e-10 3.248439807e-10 3.018546645e-10 1.636893281e-10 2.350342711e-10 2.361786158e-10 3.103358694e-10 2.881921694e-10 2.725617702e-10 2.473274836e-10 2.718569148e-10 4.808381043e-10 3.620594052e-10 4.506137155e-10 2.112722335e-10 3.224487814e-10 3.986821931e-10 4.756992788e-10 3.256940292e-10 4.206428997e-10 2.983552836e-10 3.688323816e-10 2.494834437e-10 2.895768008e-10 1.193598159e-10 2.903294927e-10 3.081667005e-10 1.842001026e-10 2.23123888e-10 1.53418174e-10 1.505953177e-10 3.348131031e-10 1.315629911e-10 1.560206839e-10 3.465240238e-10 1.625640027e-10 1.778648398e-10 2.141433171e-10 2.00602692e-10 2.701996082e-10 1.736149144e-10 4.206496826e-10 2.786826666e-10 1.409989613e-10 3.120045391e-10 1.29958606e-10 1.509825405e-10 1.790508428e-10 2.652907594e-10 2.030940836e-10 9.698716834e-11 3.323505893e-10 1.929917461e-10 2.628370471e-10 1.216778796e-10 2.520276591e-10 2.40790074e-10 1.177554684e-10 2.56620916e-10 7.17962848e-11 1.687789355e-10 1.268770119e-10 1.757210691e-10 2.531563429e-10 4.503433327e-10 1.543851915e-10 1.31639428e-10 1.834119698e-10 2.256570123e-10 1.847092937e-10 2.83411276e-10 2.777385822e-10 1.409941474e-10 1.362034644e-10 2.505779207e-10 2.195931144e-10 3.307213156e-10 3.972105712e-10 1.77408556e-10 4.148856404e-10 1.441616292e-10 2.433513549e-10 1.56777315e-10 2.005936441e-10 4.900265842e-10 3.35679383e-10 2.053687841e-10 2.51012948e-10 1.176674142e-10 2.097025776e-10 2.01784233e-10 1.151940422e-10 1.527734363e-10 2.106749949e-10 1.995261922e-10 1.219461421e-10 2.324865873e-10 1.847955484e-10 2.426615968e-10 2.760067689e-10 3.413015684e-10 1.989626065e-10 1.088088546e-10 3.142272355e-10 3.691175491e-10 +1.431039891e-10 4.094395645e-10 3.357780916e-10 1.853496126e-10 2.319674815e-10 1.425655908e-10 1.548092654e-10 2.044498224e-10 2.543752934e-10 1.394356104e-10 2.987805121e-10 1.726057086e-10 3.011166418e-10 3.324792345e-10 3.631066342e-10 3.404790277e-10 2.67900666e-10 1.892053108e-10 1.724183992e-10 1.838814391e-10 2.394760075e-10 3.294697906e-10 2.288173735e-10 2.933204224e-10 1.063251368e-10 1.202698496e-10 2.169563021e-10 2.888688554e-10 1.709628097e-10 1.468319196e-10 8.7373401e-11 3.575887296e-10 1.644435125e-10 1.514995051e-10 1.134809274e-10 1.647417056e-10 2.166663279e-10 1.156987902e-10 1.7802283e-10 1.011061978e-10 2.467512712e-10 2.938742297e-10 1.555339007e-10 1.61419911e-10 2.165054846e-10 2.857516367e-10 2.347875853e-10 1.518455063e-10 2.360742154e-10 1.743266629e-10 1.428398637e-10 2.533683097e-10 1.897657886e-10 1.735569537e-10 2.528536663e-10 1.590159809e-10 1.09671886e-10 1.750389969e-10 2.404405507e-10 2.023485461e-10 2.444340265e-10 2.577330367e-10 2.037131365e-10 1.86674915e-10 1.437620398e-10 2.756984227e-10 2.40947128e-10 2.354755525e-10 2.203837071e-10 3.726046057e-10 2.246978634e-10 1.132050603e-10 2.254605045e-10 1.196958047e-10 2.245696044e-10 1.575792663e-10 2.468838519e-10 1.895093868e-10 2.859701528e-10 2.326509672e-10 3.094945955e-10 2.987293611e-10 2.585853407e-10 2.851369825e-10 1.510260383e-10 2.794846544e-10 1.90364584e-10 2.025755419e-10 2.729673382e-10 3.448367366e-10 4.810923646e-10 2.332337885e-10 1.993992631e-10 4.249061866e-10 3.850748169e-10 4.742379773e-10 3.748921771e-10 3.937979208e-10 2.388689193e-10 1.91479017e-10 3.05158445e-10 3.050380975e-10 3.39762523e-10 2.340303729e-10 2.601941039e-10 1.555257723e-10 3.912142576e-10 2.779684859e-10 2.711494711e-10 1.78497438e-10 1.301378323e-10 1.743634792e-10 3.760936285e-11 2.485390358e-10 1.410982985e-10 2.193471828e-10 1.169934225e-10 2.399773409e-10 1.458892006e-10 2.273274807e-10 1.575399232e-10 1.977606717e-10 1.765112758e-10 2.420656093e-10 1.898945157e-10 4.881060897e-10 2.004575121e-10 3.293190842e-10 4.858713599e-10 7.153401221e-10 7.193163466e-10 6.251932287e-10 3.366912714e-10 4.802122441e-10 4.388413007e-10 2.334009055e-10 4.305158528e-10 2.365047139e-10 4.808773216e-10 3.472839914e-10 3.698240463e-10 3.040023888e-10 4.716228051e-10 2.814229052e-10 3.883505228e-10 4.968329083e-10 4.035539683e-10 3.41825953e-10 3.272924485e-10 4.392960208e-10 4.520238721e-10 1.442049016e-10 3.442493059e-10 4.582978945e-10 4.720764313e-10 3.99766963e-10 6.257448687e-10 2.741232669e-10 3.94233444e-10 3.366875116e-10 3.012583174e-10 4.482895468e-10 1.051507845e-10 3.545814083e-10 4.917617483e-10 6.741002041e-10 4.762243227e-10 4.585494156e-10 4.171825883e-10 4.709582512e-10 3.798466516e-10 3.87051418e-10 3.494442213e-10 2.661627645e-10 3.562767074e-10 1.483614024e-10 2.147480766e-10 1.644977841e-10 2.682302355e-10 1.303503234e-10 1.79671793e-10 7.600929986e-11 1.702029908e-10 9.995248194e-11 1.21357436e-10 1.033740692e-10 1.062753511e-10 1.88816393e-10 1.487232459e-10 1.211125905e-10 2.088861579e-10 2.216783651e-10 2.397619212e-10 3.536672521e-10 1.632241449e-10 2.776309543e-10 2.291675837e-10 2.434892627e-10 3.022731549e-10 2.680915127e-10 2.978184231e-10 1.714972822e-10 2.508724667e-10 1.921558949e-10 3.823834924e-10 3.476522993e-10 2.475666899e-10 3.693261931e-10 3.888685702e-10 2.885002882e-10 4.734063752e-10 2.856020509e-10 3.506680972e-10 3.796859522e-10 3.376099397e-10 2.953708658e-10 3.149237223e-10 3.775870319e-10 2.002788746e-10 1.514067286e-10 3.708449152e-10 1.801771715e-10 3.494139726e-10 2.822016613e-10 1.741684891e-10 2.457808231e-10 1.709159432e-10 1.953762284e-10 2.543038293e-10 2.852580978e-10 3.274493991e-10 1.696220996e-10 2.232364661e-10 1.435975048e-10 1.61366037e-10 3.46702117e-10 1.642269448e-10 2.254631462e-10 2.93851463e-10 3.112398108e-10 1.481393955e-10 1.968257131e-10 1.430120756e-10 1.861584562e-10 1.771115941e-10 3.146254013e-10 1.414816164e-10 1.226251091e-10 1.658821871e-10 1.412509201e-10 4.178037043e-10 1.599744447e-10 1.730213394e-10 3.23110517e-10 2.024654671e-10 1.765636634e-10 9.240464517e-11 3.30743942e-10 1.482182422e-10 1.867677648e-10 2.066974027e-10 1.423895566e-10 2.524516897e-10 8.703653916e-11 3.342955758e-10 3.125578303e-10 1.71018512e-10 2.264038947e-10 1.806955461e-10 2.278080583e-10 1.695803703e-10 1.482213468e-10 2.749930177e-10 3.87954443e-10 2.328730893e-10 2.475463516e-10 1.366707752e-10 4.310300047e-10 2.272038801e-10 3.157083697e-10 1.623671249e-10 2.545031024e-10 1.889049326e-10 2.275502886e-10 1.347046898e-10 1.850088021e-10 3.937507521e-10 9.094387226e-11 2.30040662e-10 2.72274515e-10 3.580116559e-10 1.689098844e-10 1.725536547e-10 4.413200643e-10 1.137092698e-10 1.253767693e-10 1.391835774e-10 1.395020485e-10 1.427026051e-10 4.02752821e-10 +1.726543981e-10 4.814168834e-10 2.61338091e-10 2.289033535e-10 2.441191225e-10 8.787595122e-11 1.36172404e-10 1.950421902e-10 2.716255312e-10 3.347692392e-10 2.057291584e-10 2.578879658e-10 1.225746326e-10 3.749729351e-10 2.08103514e-10 1.478921798e-10 1.575402913e-10 3.396175585e-10 2.260371406e-10 2.096440308e-10 2.479829389e-10 1.026459679e-10 3.087903069e-10 1.330545313e-10 5.438819683e-11 1.648485053e-10 2.453063795e-10 1.879196389e-10 1.838414679e-10 8.169674362e-11 2.42882757e-10 3.494388041e-10 2.674972453e-10 2.627402733e-10 2.822366957e-10 2.24212283e-10 2.924048412e-10 2.834781253e-10 2.006240904e-10 1.308953951e-10 1.924747639e-10 1.103270201e-10 2.231266276e-10 3.766602475e-10 1.34574228e-10 1.336588944e-10 1.436697239e-10 1.6780278e-10 1.452958072e-10 9.239543329e-11 2.523733217e-10 2.575091215e-10 1.629120587e-10 1.817860952e-10 1.78932077e-10 1.379841853e-10 2.859561202e-10 1.573639241e-10 3.115736193e-10 3.327084506e-10 2.809288792e-10 1.076197148e-10 1.562570356e-10 1.133333262e-10 1.874075682e-10 3.174086488e-10 2.179570327e-10 1.670386113e-10 1.61821027e-10 2.51395414e-10 1.931033441e-10 2.873320151e-10 2.037950673e-10 1.463569297e-10 1.626081954e-10 1.050880341e-10 1.69063995e-10 2.220147493e-10 2.423982843e-10 2.853878046e-10 3.109539163e-10 2.704271855e-10 2.892184341e-10 3.27787073e-10 2.855734819e-10 3.295978873e-10 3.781126148e-10 2.855331108e-10 2.681469392e-10 2.029836522e-10 2.411263979e-10 3.265665951e-10 4.83357977e-10 3.364955171e-10 4.270477597e-10 2.195181491e-10 2.208612529e-10 2.306380758e-10 3.192565845e-10 2.975564041e-10 2.843500765e-10 3.879870134e-10 2.313336763e-10 3.188606064e-10 2.132235463e-10 2.555192878e-10 2.845563904e-10 1.556667291e-10 9.114000038e-11 3.051264101e-10 1.602885865e-10 2.536967415e-10 1.931728898e-10 1.814166449e-10 1.248673526e-10 1.84390818e-10 1.04806833e-10 1.149610374e-10 1.030449346e-10 2.063072466e-10 1.788626406e-10 1.74909525e-10 1.671874065e-10 1.920885267e-10 1.818318303e-10 4.912304703e-10 3.080957964e-10 4.140420682e-10 4.215300833e-10 3.841046397e-10 3.218921525e-10 7.394800432e-10 5.415170556e-10 4.770474369e-10 3.788497242e-10 2.913818196e-10 4.023736196e-10 2.94007645e-10 2.812237392e-10 2.466914307e-10 3.325075301e-10 6.084146168e-10 4.006119204e-10 3.204690789e-10 3.650463624e-10 4.54431582e-10 2.189180519e-10 4.842181943e-10 6.004260291e-10 2.606325731e-10 3.874183066e-10 3.906063414e-10 2.106404321e-10 5.706582276e-10 4.260027697e-10 5.49493271e-10 4.479332497e-10 3.932732358e-10 4.221418186e-10 5.610333623e-10 3.022236095e-10 6.695793706e-10 3.402386102e-10 3.034571386e-10 5.077973895e-10 7.288328031e-10 3.860605584e-10 5.010023695e-10 3.670139524e-10 5.69349601e-10 3.869918044e-10 4.857704861e-10 3.584331145e-10 6.185551935e-10 4.847338997e-10 1.870866098e-10 1.013521638e-10 1.398284046e-10 1.354211772e-10 1.626047533e-10 1.120373198e-10 5.760891395e-11 1.134831708e-10 1.036558544e-10 1.443617143e-10 1.614254558e-10 1.834148951e-10 1.303222768e-10 2.291378659e-10 2.285847525e-10 2.219903566e-10 2.977693976e-10 2.009578295e-10 2.079418672e-10 2.931637265e-10 3.143426015e-10 2.005067072e-10 2.566073124e-10 3.373336498e-10 2.983015904e-10 3.647223659e-10 3.212130068e-10 2.715518675e-10 3.575679508e-10 2.684657124e-10 2.419473605e-10 2.957437969e-10 2.384404031e-10 3.342523453e-10 3.472062343e-10 3.833793565e-10 2.947832969e-10 2.030488797e-10 4.915984642e-10 2.874901825e-10 2.630090411e-10 4.156412043e-10 3.074054085e-10 1.763853856e-10 1.630316908e-10 1.523334741e-10 2.796177732e-10 1.120695432e-10 2.433304863e-10 1.69780513e-10 1.894530999e-10 1.303318177e-10 3.149550334e-10 1.430801915e-10 2.997909891e-10 2.515319442e-10 1.149055146e-10 1.578927683e-10 1.163386844e-10 2.508165657e-10 3.497280252e-10 3.675881866e-10 1.647932439e-10 3.201116455e-10 1.990407411e-10 1.215340321e-10 2.335071334e-10 2.507338205e-10 2.368813124e-10 1.648645612e-10 2.382810705e-10 3.193409927e-10 2.86017002e-10 1.46828284e-10 1.451544848e-10 1.613467618e-10 4.993608972e-11 3.555854012e-10 3.125572427e-10 3.669251675e-10 2.644463622e-10 1.52633909e-10 3.560580644e-11 2.099000316e-10 2.617888763e-10 1.571687312e-10 3.898327583e-10 3.275489901e-10 8.358133974e-11 2.075244623e-10 1.958053738e-10 1.627854507e-10 9.958021579e-11 1.543478909e-10 2.660920024e-10 3.746898363e-10 1.251704519e-10 4.303183581e-10 1.691101955e-10 1.923900654e-10 5.609570385e-11 3.876194554e-10 2.211209737e-10 2.124675081e-10 3.305118441e-10 2.827042978e-10 1.778300687e-10 1.508157245e-10 3.594214884e-10 2.054248594e-10 2.150166365e-10 6.013649094e-11 2.570331297e-10 1.155670124e-10 3.09571332e-10 3.057469012e-10 1.264995849e-10 1.452757669e-10 3.6819793e-10 3.172463381e-10 4.13515404e-10 3.826817133e-10 2.877056384e-10 3.582968669e-10 1.900112723e-10 +2.709303923e-10 1.910799605e-10 1.675208455e-10 2.192967618e-10 3.038163027e-10 1.772534977e-10 1.48897629e-10 1.819131657e-10 2.605691224e-10 8.340861379e-11 7.072442804e-11 2.176956922e-10 1.191603328e-10 4.106768159e-10 1.554678786e-10 1.510598482e-10 2.344282694e-10 1.174188633e-10 1.199732074e-10 2.147496537e-10 2.923092373e-10 2.650903137e-10 1.614684208e-10 1.810212599e-10 2.292908333e-10 1.806720547e-10 2.017197789e-10 6.318672817e-11 2.054889205e-10 1.18445891e-10 4.288926128e-10 2.240012396e-10 4.431959201e-10 1.687703135e-10 2.007786965e-10 1.833601862e-10 1.612739585e-10 2.324397255e-10 2.002489791e-10 2.387279545e-10 1.530071669e-10 1.647555297e-10 1.017052321e-10 1.648348321e-10 2.906992086e-10 1.700857183e-10 1.347912944e-10 1.736663539e-10 1.094545367e-10 7.018043374e-11 2.660083012e-10 2.927034094e-10 1.90505056e-10 2.815284592e-10 1.330665308e-10 2.532460592e-10 9.021628331e-11 2.304223599e-10 1.166472769e-10 2.45086037e-10 2.853533355e-10 3.115878249e-10 1.375034353e-10 2.682343217e-10 1.834979931e-10 3.253748195e-10 3.261319122e-10 2.338795561e-10 2.995483885e-10 2.935675597e-10 2.949600829e-10 1.253439319e-10 3.800842393e-10 1.749584809e-10 1.746005494e-10 1.496211193e-10 2.560998218e-10 2.776639253e-10 2.657114069e-10 1.535217954e-10 3.158574505e-10 1.087058178e-10 2.408781959e-10 3.254011812e-10 2.741985117e-10 3.033558028e-10 2.562335887e-10 4.00493305e-10 3.412775742e-10 3.170544414e-10 1.870081201e-10 2.301909964e-10 3.192186599e-10 3.657268145e-10 1.823357678e-10 2.626856664e-10 2.345927558e-10 2.894231806e-10 1.807171284e-10 1.579496043e-10 2.488500036e-10 3.312348785e-10 3.407914457e-10 2.659238966e-10 3.38737374e-10 1.924714141e-10 3.075043498e-10 3.217553301e-10 2.59271497e-10 2.078433054e-10 2.970432646e-10 2.348564404e-10 2.089712779e-10 1.966295853e-10 2.371583731e-10 1.065931022e-10 1.241662699e-10 1.095066132e-10 1.530182083e-10 1.015193486e-10 1.089083447e-10 1.716735846e-10 1.207942888e-10 1.22622601e-10 1.55375953e-10 2.339687232e-10 2.481492392e-10 1.813303683e-10 6.414079339e-10 4.903578799e-10 4.585681974e-10 4.142026824e-10 3.774501765e-10 2.994585948e-10 4.455174018e-10 3.071783814e-10 5.349161284e-10 4.264288596e-10 3.314859885e-10 5.445083574e-10 5.408583917e-10 5.382403016e-10 2.761820666e-10 6.904382232e-10 4.26909453e-10 6.257855025e-10 3.630661878e-10 3.453522032e-10 6.014136935e-10 3.327847571e-10 3.13217566e-10 2.903589557e-10 3.570929719e-10 3.199027291e-10 5.666215471e-10 3.890906313e-10 3.835317594e-10 3.775496305e-10 3.14963716e-10 4.264775868e-10 3.748661165e-10 3.94482872e-10 2.970807074e-10 4.111121145e-10 3.594276241e-10 2.851101395e-10 6.557014711e-10 4.158673305e-10 2.048371171e-10 2.455302432e-10 4.55933412e-10 3.717295103e-10 2.027366204e-10 1.101559019e-10 1.121124034e-10 3.061375132e-10 1.009676825e-10 1.648869239e-10 1.573390941e-10 1.569978116e-10 1.04315881e-10 1.270351498e-10 2.487478846e-11 2.138096433e-10 1.327166099e-10 1.294359391e-10 2.556847003e-10 1.470869547e-10 2.624429181e-10 3.0092065e-10 2.017163008e-10 1.695268024e-10 2.285454255e-10 4.022201887e-10 2.806088884e-10 2.783705489e-10 2.360291948e-10 2.682403073e-10 4.012978283e-10 2.750610767e-10 2.23206204e-10 3.379333005e-10 3.009441949e-10 2.851972105e-10 2.14107204e-10 2.686378287e-10 2.073207744e-10 2.999535632e-10 1.512981996e-10 1.991754191e-10 1.83536032e-10 2.971805018e-10 2.79355897e-10 2.401403874e-10 2.929877677e-10 2.398250286e-10 2.622115587e-10 1.894951925e-10 1.20015524e-10 2.529943381e-10 1.687038407e-10 2.209311127e-10 1.006562238e-10 2.233216503e-10 2.277086637e-10 2.909655123e-10 1.982526803e-10 3.018951952e-10 1.087883585e-10 7.164551654e-11 1.255519764e-10 2.335176592e-10 1.980339293e-10 2.523200873e-10 1.95072324e-10 2.217117146e-10 2.190859703e-10 2.201650118e-10 2.230101441e-10 2.109339495e-10 2.407431079e-10 3.326499475e-10 1.649825643e-10 1.638697322e-10 2.289567404e-10 2.056702752e-10 2.560526578e-10 3.403449289e-10 2.656250324e-10 1.236356144e-10 3.298262628e-10 5.616315676e-11 2.402284815e-10 1.791219527e-10 1.357260738e-10 2.176521468e-10 1.834444552e-10 1.350908183e-10 2.2623918e-10 1.458028603e-10 1.945087761e-10 3.090750332e-10 2.214833788e-10 2.973742587e-10 2.216686983e-10 5.117614563e-10 1.106751276e-10 1.266653849e-10 2.267409869e-10 1.66010144e-10 1.373402958e-10 2.098990878e-10 2.284669096e-10 1.809801051e-10 3.653730352e-10 2.691075475e-10 1.551768898e-10 1.38392361e-10 3.410703594e-10 9.183647022e-11 2.636978284e-10 2.819543078e-10 1.397069592e-10 1.658695179e-10 2.44703466e-10 1.80166872e-10 2.879057701e-10 2.927628396e-10 3.316792588e-10 2.587538228e-10 1.967965007e-10 1.98622306e-10 1.431022622e-10 3.438637426e-10 3.390773332e-10 2.467897468e-10 2.659702538e-10 2.531555864e-10 2.659543467e-10 2.381429487e-10 +2.131674029e-10 1.284140562e-10 1.672347659e-10 1.737451143e-10 1.126935017e-10 1.603932316e-10 3.325607414e-10 1.368350495e-10 3.013871002e-11 2.177912141e-10 1.881797176e-10 1.929029753e-10 1.985060051e-10 2.135712941e-10 1.268305432e-10 2.226651098e-10 3.004037703e-10 2.332134156e-10 5.379405473e-11 1.286656431e-10 1.958609264e-10 3.598141163e-10 2.272124297e-10 8.997855988e-11 1.246538825e-10 2.93312892e-10 1.329328934e-10 9.061580794e-11 3.397926568e-10 2.324970842e-10 1.149253975e-10 2.719985403e-10 3.236755044e-10 1.401356866e-10 1.274073378e-10 1.22900363e-10 1.396476351e-10 1.650727235e-10 2.552696319e-10 9.550210318e-11 3.083523822e-10 2.302578937e-10 5.895768972e-11 5.716640343e-11 1.634219774e-10 2.918256187e-10 2.77976341e-10 1.37675562e-10 1.614341662e-10 7.707033426e-11 1.653725297e-10 1.670535233e-10 2.638872099e-10 3.044793901e-10 3.4315805e-10 3.045017854e-10 1.459861308e-10 2.72894498e-10 1.737943945e-10 2.070107694e-10 2.50745834e-10 1.993924627e-10 7.807502335e-11 2.362362566e-10 1.528143416e-10 1.326946909e-10 2.253819375e-10 2.033458856e-10 2.508277312e-10 2.625984787e-10 9.443150372e-11 2.175949643e-10 1.682787048e-10 1.265097264e-10 3.782100845e-10 2.399001855e-10 1.669856933e-10 2.067917264e-10 1.894994654e-10 1.157335758e-10 3.455401099e-10 2.671331812e-10 2.190717281e-10 1.578153803e-10 2.809613699e-10 2.632306573e-10 3.601320333e-10 4.223105235e-10 2.88363743e-10 4.375729349e-10 3.66830808e-10 2.150054212e-10 2.93805406e-10 3.028382893e-10 2.362877895e-10 2.384683288e-10 3.257952611e-10 3.946650109e-10 2.933322945e-10 2.43553193e-10 1.220198469e-10 1.103860546e-10 1.944807664e-10 1.480489421e-10 2.867911548e-10 3.509283797e-10 2.217486066e-10 2.07143546e-10 2.283715776e-10 2.3025186e-10 1.62685125e-10 2.064712937e-10 2.853856169e-10 3.039244386e-10 1.583889817e-10 2.346989942e-10 9.224807903e-11 1.179196835e-10 1.008504499e-10 1.19661799e-10 2.536450854e-10 1.422442728e-10 1.346822883e-10 2.193248324e-10 1.02842631e-10 1.33374455e-10 1.637506594e-10 1.614146025e-10 4.631504902e-10 2.89455686e-10 1.823967896e-10 2.983218828e-10 3.755444856e-10 4.306407385e-10 5.995630661e-10 5.573460776e-10 4.554530799e-10 2.617378517e-10 1.877306678e-10 3.43136086e-10 2.252980093e-10 4.653254948e-10 3.72620656e-10 6.486375852e-10 3.480384243e-10 4.431800634e-10 3.077470508e-10 3.194074021e-10 4.059737709e-10 3.007564704e-10 4.52127461e-10 3.48357683e-10 3.36258517e-10 3.413586886e-10 3.186203972e-10 4.170249483e-10 6.617114961e-10 3.025866105e-10 5.939249415e-10 4.155667751e-10 4.342461186e-10 5.498828917e-10 4.068703609e-10 6.04481672e-10 2.551021066e-10 4.186478225e-10 7.899809845e-10 4.390074127e-10 3.048566197e-10 3.614439309e-10 6.48233616e-10 4.145409934e-10 2.45977588e-10 2.425884096e-10 1.976244745e-10 1.702890405e-10 1.469742177e-10 1.580518859e-10 1.521600033e-10 1.339916486e-10 1.118971679e-10 7.701620577e-11 7.851443883e-11 1.213707169e-10 1.659423304e-10 1.384582394e-10 1.9387707e-10 1.589287705e-10 1.95104052e-10 1.538603538e-10 2.296159711e-10 1.072882921e-10 1.932611941e-10 2.595815313e-10 2.837998088e-10 2.635859833e-10 2.627226661e-10 4.17609333e-10 2.082171123e-10 1.40944458e-10 3.439727459e-10 2.498343898e-10 4.004763296e-10 3.194782405e-10 2.569455728e-10 1.885959059e-10 3.222782732e-10 4.282957026e-10 3.095083577e-10 3.767818151e-10 2.396576625e-10 2.361916869e-10 3.144322557e-10 3.269721642e-10 3.852995119e-10 3.188956973e-10 2.212057872e-10 2.223469436e-10 2.457653102e-10 1.809430004e-10 2.373191164e-10 1.403463495e-10 2.992534982e-10 1.999114565e-10 1.64234362e-10 1.71049491e-10 2.405369034e-10 3.354833477e-10 2.144487898e-10 1.422272379e-10 1.777456667e-10 2.042222121e-10 1.991984926e-10 1.992102257e-10 3.827549033e-10 2.314692836e-10 4.544824185e-10 1.041630601e-10 2.389905388e-10 2.182876383e-10 2.131240254e-10 3.071775219e-10 3.368046926e-10 1.646027388e-10 1.324711637e-10 2.559329618e-10 2.050093676e-10 7.03235449e-11 1.808824255e-10 2.424936602e-10 2.378452483e-10 2.477637183e-10 3.069704612e-10 2.292856381e-10 1.412125165e-10 2.309603782e-10 2.399417186e-10 8.770591908e-11 2.304176378e-10 2.899965225e-10 1.084283226e-10 1.910117435e-10 3.731314999e-10 1.158470149e-10 1.738340805e-10 1.867621793e-10 1.048138381e-10 1.235158307e-10 1.91153451e-10 1.883730201e-10 2.171365254e-10 3.326631964e-10 2.715642877e-10 9.895638874e-11 2.377874762e-10 1.037223252e-10 1.711685465e-10 3.236092913e-10 1.554650092e-10 3.116162977e-10 3.880044943e-10 2.651306176e-10 1.844980887e-10 7.195741603e-11 4.505279749e-10 1.16478037e-10 2.144910521e-10 1.668175764e-10 3.279363896e-10 3.472827535e-10 3.696854469e-10 1.865155625e-10 2.336644669e-10 9.356738376e-11 9.253094896e-11 4.448347553e-10 2.137420376e-10 1.680943596e-10 1.451281925e-10 2.540744429e-10 +2.815686974e-10 3.606404455e-10 2.258471302e-10 2.04601233e-10 2.460763203e-10 2.254780677e-10 1.407700941e-10 1.813318717e-10 1.848422342e-10 8.834017786e-11 3.02372242e-10 1.456795926e-10 1.537304416e-10 2.315987756e-10 3.104050056e-10 1.959309853e-10 4.268176813e-10 2.582129105e-10 1.371827253e-10 3.643467549e-10 1.545750973e-10 3.506163468e-10 8.910601128e-11 9.051892271e-11 2.936529118e-10 9.607374375e-11 1.553285223e-10 1.977259694e-10 1.666851694e-10 1.864001181e-10 1.166920294e-10 3.605098178e-10 2.130889438e-10 3.014078121e-10 3.119527959e-10 1.291384892e-10 1.597333536e-10 1.409776876e-10 1.458448046e-10 1.84534966e-10 2.401313778e-10 9.964689268e-11 8.734287446e-11 1.211585527e-10 2.434746749e-10 1.567880349e-10 1.818459914e-10 1.598511826e-10 1.369750969e-10 1.737793088e-10 2.727141188e-10 1.357815659e-10 2.209696896e-10 1.394996924e-10 1.147090499e-10 2.582859452e-10 2.176564073e-10 2.14614469e-10 1.250436443e-10 1.586893527e-10 1.847860496e-10 2.432472401e-10 1.272525549e-10 2.660249029e-10 2.070016659e-10 2.31508962e-10 1.915286906e-10 1.25891497e-10 2.007617335e-10 1.943573913e-10 1.096118634e-10 2.568773645e-10 1.781979786e-10 1.669412509e-10 1.226598911e-10 2.892606724e-10 1.90983428e-10 1.390526764e-10 1.982647191e-10 1.483958803e-10 3.393775727e-10 4.690567069e-10 2.316036974e-10 2.739245805e-10 2.332993861e-10 1.930017219e-10 3.627900058e-10 3.569431752e-10 2.206146664e-10 2.777457652e-10 2.29010669e-10 3.127641891e-10 2.656559229e-10 2.447742663e-10 2.768087211e-10 4.215348873e-10 3.474017863e-10 2.771247025e-10 1.949484416e-10 3.119863192e-10 2.461560191e-10 2.207897006e-10 2.479498883e-10 2.493740699e-10 2.211785347e-10 1.9147666e-10 2.212083752e-10 1.340266513e-10 3.210231647e-10 2.86670915e-10 2.298894591e-10 2.476124746e-10 1.811614949e-10 2.395654893e-10 2.608424285e-10 2.172752652e-10 1.645344957e-10 1.423360101e-10 1.324949138e-10 4.399590611e-11 2.029550778e-10 1.206613892e-10 1.344719859e-10 1.731930184e-10 1.694253425e-10 1.675325802e-10 1.510356496e-10 1.130748636e-10 3.573939305e-10 2.564561243e-10 5.647164818e-10 1.995013916e-10 2.477158318e-10 2.077536962e-10 5.471594841e-10 4.471930127e-10 3.691085424e-10 2.594917568e-10 3.581932844e-10 3.401757991e-10 2.971151312e-10 5.174006101e-10 3.539835088e-10 5.248444142e-10 4.521664605e-10 6.952259618e-10 4.231748354e-10 4.481563048e-10 2.621555531e-10 3.597313026e-10 5.264854052e-10 2.256588174e-10 2.451074574e-10 6.073445096e-10 3.362479572e-10 2.663616387e-10 4.171564167e-10 2.989630357e-10 3.327788668e-10 5.307325932e-10 3.48652938e-10 2.685665421e-10 2.769362613e-10 3.779205509e-10 5.825885167e-10 4.857141812e-10 5.345081989e-10 2.842458318e-10 1.629811204e-10 2.680320487e-10 8.741398493e-11 5.651197422e-10 2.172376651e-10 1.94635745e-10 2.002479161e-10 1.669082561e-10 1.108059902e-10 9.645039217e-11 1.526522879e-10 5.374599992e-11 5.253699523e-11 1.212275102e-10 1.277473831e-10 2.070521285e-10 1.0757689e-10 1.402478536e-10 1.75291882e-10 1.720672454e-10 1.907394932e-10 2.839680346e-10 3.920007852e-10 2.745151499e-10 1.781189615e-10 3.185633232e-10 3.865171636e-10 3.26654248e-10 3.846288154e-10 2.193076674e-10 2.312629839e-10 3.102407961e-10 9.990305577e-11 3.266858266e-10 2.693376897e-10 3.779457499e-10 2.801961128e-10 4.595076812e-10 2.986604863e-10 1.799333805e-10 3.489431415e-10 1.911752354e-10 1.902266245e-10 2.034988425e-10 2.767697615e-10 3.074625216e-10 1.98546459e-10 2.771636449e-10 2.657350302e-10 1.967908392e-10 1.512054422e-10 2.102411352e-10 3.590445308e-10 1.856334393e-10 1.754832499e-10 1.745535916e-10 1.091340379e-10 1.838922569e-10 3.372290799e-10 9.301186082e-11 2.692089978e-10 3.520702096e-10 3.331815418e-10 3.067268545e-10 1.748818957e-10 2.647572488e-10 2.196241433e-10 2.311038597e-10 1.755308839e-10 1.222341789e-10 9.791842827e-11 1.432784848e-10 1.799510626e-10 1.458118953e-10 2.120062842e-10 1.959958627e-10 2.149082014e-10 2.421883804e-10 1.223264481e-10 1.102829809e-10 1.381101242e-10 2.536868999e-10 2.428533198e-10 1.914855791e-10 2.528347564e-10 2.130801018e-10 2.273094277e-10 3.147203739e-10 2.889010687e-10 2.242905096e-10 1.466266944e-10 2.417534694e-10 1.938245695e-10 1.781533483e-10 1.535453507e-10 1.822167235e-10 2.923342934e-10 2.036849959e-10 1.622999518e-10 1.964105469e-10 1.473436588e-10 3.933934181e-10 7.192388089e-11 1.60941171e-10 3.042750517e-10 2.839692433e-10 2.51816536e-10 1.495996043e-10 2.071515271e-10 1.226947644e-10 9.430831738e-11 2.38679038e-10 2.8596924e-10 2.807759519e-10 3.384005394e-10 1.358785416e-10 1.737421126e-10 3.991418332e-10 3.126670919e-10 2.934614478e-10 2.86159093e-10 2.145349883e-10 1.403962146e-10 4.428834044e-10 9.609916229e-11 2.091605762e-10 2.997811702e-10 2.368584956e-10 2.065190599e-10 2.490266086e-10 2.211343646e-10 1.783266292e-10 +2.681617361e-10 3.066803761e-10 2.420194943e-10 4.032750685e-10 1.577098191e-10 1.050280897e-10 1.290843643e-10 3.261198127e-10 1.936710476e-10 1.269999487e-10 1.846721075e-10 3.515454299e-10 1.770844485e-10 1.145135923e-10 2.564182909e-10 1.21539209e-10 1.902853966e-10 1.362987068e-10 1.057338826e-10 1.958982196e-10 9.67902777e-11 9.374127566e-11 2.148223354e-10 1.795077262e-10 1.82413782e-10 3.382088646e-10 1.15952142e-10 2.372118302e-10 1.343003643e-10 1.867275598e-10 1.121668587e-10 6.018991117e-11 1.662976143e-10 9.246361457e-11 1.001549242e-10 2.116334762e-10 2.033829004e-10 2.869455782e-10 1.385220792e-10 2.027631965e-10 1.322114237e-10 1.108317339e-10 2.38785243e-10 1.378852194e-10 2.677078757e-10 9.153120056e-11 1.610781472e-10 8.222347193e-11 1.32069041e-10 1.754621184e-10 2.731692671e-10 8.781001026e-11 2.148673387e-10 3.044883825e-10 2.331602503e-10 2.403608989e-10 1.607745192e-10 1.927661753e-10 1.824182302e-10 1.423873444e-10 1.950334295e-10 2.305049862e-10 2.265955208e-10 3.790402847e-10 6.888879259e-11 2.691447223e-10 2.60170401e-10 2.135253341e-10 9.002948096e-11 1.366793217e-10 1.675416178e-10 2.333357779e-10 3.083595371e-10 3.478751946e-10 2.837860327e-10 6.411389089e-11 3.015260492e-10 2.116653724e-10 1.583621657e-10 2.080500259e-10 2.946534025e-10 3.389610974e-10 1.61031155e-10 1.757791652e-10 3.05626462e-10 3.426989472e-10 4.372275691e-10 3.463354824e-10 3.321404999e-10 4.362116108e-10 2.38508961e-10 3.10845014e-10 3.474977099e-10 2.505956668e-10 3.180900642e-10 4.170686697e-10 1.375808378e-10 2.885812424e-10 2.246262655e-10 3.376328486e-10 2.636700225e-10 1.984640877e-10 1.95100621e-10 2.175919332e-10 2.393310501e-10 3.487583924e-10 2.963392232e-10 1.75934912e-10 1.82042496e-10 1.065412371e-10 1.652679885e-10 2.934689087e-10 2.214221978e-10 2.363906214e-10 3.974190238e-10 1.557576122e-10 1.334155158e-10 1.326367754e-10 1.07392478e-10 1.545181053e-10 1.148762556e-10 2.238323795e-10 2.697875783e-10 8.007237307e-11 1.01537134e-10 9.501054884e-11 2.223605879e-10 1.779083962e-10 2.887278792e-10 1.619260219e-10 6.688648173e-10 2.890982046e-10 3.817672835e-10 2.834711422e-10 3.778562284e-10 1.664220292e-10 5.120356514e-10 3.274774151e-10 3.37720458e-10 3.096494409e-10 5.140524838e-10 2.917214313e-10 6.700776764e-10 4.847955059e-10 3.946280499e-10 2.917732509e-10 6.868744144e-10 4.721674429e-10 4.417826259e-10 4.468334407e-10 5.839068087e-10 5.104801615e-10 5.623375184e-10 2.616961906e-10 3.25524173e-10 2.935912705e-10 4.35642812e-10 4.972310231e-10 6.045362196e-10 3.441413795e-10 3.000211991e-10 6.326367709e-10 4.801254775e-10 3.329075327e-10 4.708072359e-10 4.786886057e-10 3.526513298e-10 2.182808467e-10 1.758357835e-10 1.861044267e-10 3.507327181e-10 2.175642371e-10 1.572609445e-10 2.61525086e-10 1.998692085e-10 2.170635114e-10 1.360344231e-10 7.402785501e-11 1.033016181e-10 1.271865166e-10 3.193045688e-11 1.546051689e-10 3.538204278e-10 1.063088176e-10 2.612520177e-10 1.257556969e-10 1.784200338e-10 2.20656739e-10 1.588450891e-10 1.644088618e-10 2.972035755e-10 2.475902584e-10 3.369660674e-10 2.171769074e-10 2.438734967e-10 2.381326143e-10 2.619205479e-10 3.931581696e-10 2.522973642e-10 2.418377512e-10 1.661699334e-10 2.907898758e-10 1.915094216e-10 2.98512702e-10 3.435729215e-10 2.388490523e-10 2.967980174e-10 3.151417783e-10 3.190395286e-10 3.955563887e-10 2.443720372e-10 3.149735009e-10 4.623206233e-10 2.820268722e-10 4.129788461e-10 2.002673023e-10 2.766187121e-10 3.849990481e-10 3.77170626e-10 1.143897529e-10 2.621184497e-10 2.42209233e-10 1.663700871e-10 2.263189004e-10 1.884709404e-10 3.630458884e-10 1.137008101e-10 2.307907741e-10 1.144830281e-10 2.443962253e-10 3.547384639e-10 1.839787471e-10 2.902016371e-10 1.98929651e-10 3.34250796e-10 3.041508906e-10 2.151830775e-10 1.489774433e-10 1.895064418e-10 1.332516702e-10 2.7747401e-10 2.142433148e-10 1.091220612e-10 1.488867483e-10 2.511019628e-10 1.747579297e-10 1.901132448e-10 1.963363019e-10 1.040858153e-10 1.112545653e-10 2.017294516e-10 1.17840877e-10 2.682185067e-10 1.493662982e-10 1.221852301e-10 5.987562681e-11 1.113524627e-10 5.987377493e-11 2.781249888e-10 2.252216304e-10 2.021106797e-10 1.4951438e-10 1.242762231e-10 3.600059562e-10 2.996495565e-10 2.310081377e-10 2.779196014e-10 2.693734633e-10 1.16940295e-10 1.285929367e-10 1.76683994e-10 1.912304411e-10 2.911679185e-10 1.756542925e-10 2.237295474e-10 1.739833872e-10 1.218650153e-10 2.486950382e-10 3.471170057e-10 2.054818837e-10 1.00339474e-10 2.224372738e-10 1.221259379e-10 2.505413683e-10 1.915105536e-10 1.441241519e-10 7.290442846e-11 2.776501912e-10 1.426084647e-10 1.316037676e-10 4.098231751e-10 1.428636808e-10 3.530662961e-10 2.251735804e-10 1.71212049e-10 1.215369145e-10 2.201445339e-10 1.89628901e-10 1.626138821e-10 2.614221473e-10 +3.297586302e-10 7.937504381e-11 1.877856232e-10 2.743812174e-10 1.248724223e-10 1.591870589e-10 2.483198799e-10 2.043254495e-10 1.022063654e-10 3.275539941e-10 2.584783705e-10 1.456389158e-10 6.825807738e-11 2.004563447e-10 1.975154428e-10 2.279765491e-10 1.49889105e-10 2.322563967e-10 1.788863655e-10 1.300753704e-10 1.335786045e-10 2.859260272e-10 2.442088019e-10 1.837047267e-10 9.214078068e-11 2.950276896e-10 9.430266284e-11 1.357550978e-10 2.30979507e-10 3.575370489e-10 2.309762e-10 1.551389126e-10 2.398250235e-10 3.296411113e-10 7.377651944e-11 3.18871437e-10 2.21586924e-10 2.665108826e-10 1.109153401e-10 1.14101738e-10 2.514917192e-10 9.068817798e-11 1.418382631e-10 1.558549889e-10 1.975692511e-10 1.608692928e-10 7.501342966e-11 3.326745568e-10 8.516201397e-11 2.906034945e-10 2.640131187e-10 2.418979465e-10 2.278352257e-10 2.433262065e-10 1.795730742e-10 2.781147117e-10 1.620164124e-10 1.811797942e-10 2.189523133e-10 1.496197817e-10 3.524833725e-10 6.758299822e-11 2.16982348e-10 2.574341736e-10 2.502884902e-10 1.92978831e-10 1.358275913e-10 2.069187747e-10 2.824695637e-10 2.098430076e-10 2.830980106e-10 2.756085776e-10 1.440424077e-10 2.538557461e-10 6.37763596e-11 2.851309075e-10 1.872273522e-10 2.810815733e-10 1.517657447e-10 1.99451403e-10 2.094995119e-10 2.875526794e-10 3.019941123e-10 2.205051491e-10 2.573357936e-10 4.381729836e-10 2.784605888e-10 2.507321101e-10 2.54849553e-10 3.4195484e-10 1.710946862e-10 3.41093808e-10 2.492559489e-10 3.622449387e-10 3.112674419e-10 2.789818903e-10 1.801273532e-10 3.601700915e-10 2.104638323e-10 3.12115768e-10 2.914724644e-10 2.257448149e-10 2.790160841e-10 1.747283637e-10 2.770540041e-10 3.098938259e-10 2.738736968e-10 2.495503031e-10 3.63706344e-10 1.645888618e-10 1.894004464e-10 2.207615273e-10 2.745294504e-10 1.863799208e-10 1.587310543e-10 2.046382152e-10 2.707246723e-10 2.113425055e-10 9.543713389e-11 1.410373033e-10 2.33001367e-10 1.282101865e-10 7.853670589e-11 8.506509519e-11 1.643680553e-10 8.2012302e-11 1.25315275e-10 1.540061963e-10 2.607922202e-10 1.179936562e-10 2.235935807e-10 2.842533066e-10 1.661333888e-10 1.386969321e-10 1.603040915e-10 4.689550945e-10 3.373977592e-10 1.806560705e-10 2.910045374e-10 3.860512499e-10 4.537218973e-10 3.968312592e-10 2.331905783e-10 3.931039583e-10 2.537456473e-10 2.317346614e-10 3.824221957e-10 5.307783901e-10 3.256737402e-10 2.561272709e-10 1.644276425e-10 2.667865711e-10 5.750839132e-10 4.9130212e-10 4.712199375e-10 2.391184244e-10 4.128549313e-10 3.840416358e-10 3.441759757e-10 3.958433279e-10 5.704404196e-10 8.386759152e-10 4.383202028e-10 3.739152888e-10 4.418003342e-10 1.420010455e-10 4.270332554e-10 5.403343721e-10 2.992922351e-10 1.039963278e-10 1.76853483e-10 3.097284024e-10 2.500621321e-10 1.524974426e-10 1.323458662e-10 8.263772446e-11 5.945927345e-11 6.631537037e-11 8.608371437e-11 8.498583787e-11 1.438334652e-10 1.146228111e-10 1.39566701e-10 2.889352469e-10 1.451880007e-10 1.736079401e-10 2.141629893e-10 2.186691764e-10 1.120026312e-10 1.439441774e-10 3.378903649e-10 1.432554947e-10 3.848826118e-10 1.969122853e-10 6.431336551e-11 3.696983362e-10 2.667055148e-10 1.647851982e-10 2.955635273e-10 3.313300125e-10 2.207772717e-10 2.59243372e-10 1.609627965e-10 2.930919434e-10 2.850477602e-10 2.106461575e-10 3.328242011e-10 3.215866162e-10 3.104427909e-10 3.812501807e-10 3.166309113e-10 4.409432583e-10 2.929189643e-10 2.655375245e-10 3.409535237e-10 1.810824416e-10 2.660061821e-10 4.688893933e-10 1.714995793e-10 2.3439166e-10 3.033613489e-10 1.345189226e-10 4.029129315e-10 1.037953939e-10 2.985882501e-10 1.294272343e-10 1.432861303e-10 2.691749045e-10 1.949597603e-10 2.65312462e-10 3.938625074e-10 3.645221551e-10 1.42657407e-10 2.314706292e-10 1.697198318e-10 3.396994855e-10 9.997331859e-11 2.457300532e-10 2.127921195e-10 1.774443652e-10 1.086290028e-10 1.320448117e-10 1.50110532e-10 1.02304534e-10 2.668228603e-11 2.43065317e-10 2.37723792e-10 2.055058349e-10 8.24370038e-11 2.561223152e-10 2.525567718e-10 1.382682388e-10 2.864231796e-10 1.65803656e-10 9.370522888e-11 1.759914922e-10 2.088504646e-10 1.852779573e-10 1.573061608e-10 2.152197758e-10 3.1205247e-10 1.315209576e-10 1.663214583e-10 1.302448713e-10 2.770781601e-10 1.282984102e-10 1.329654243e-10 2.815654634e-10 3.049121891e-10 9.999811745e-11 3.222900958e-10 2.40618352e-10 1.763006962e-10 7.813207865e-11 2.120791761e-10 2.053522928e-10 3.417916598e-10 2.03972171e-10 1.293887484e-10 1.589023734e-10 1.375156835e-10 3.630519309e-10 1.471059607e-10 1.827076678e-10 1.625087147e-10 1.541015772e-10 1.948909677e-10 2.576632989e-10 1.288774685e-10 4.434983326e-10 2.356976925e-10 1.462380657e-10 3.826122019e-10 2.443055052e-10 3.014990753e-10 1.163448952e-10 1.158377132e-10 2.138346349e-10 4.319041766e-10 2.342187479e-10 +2.155349228e-10 1.538766216e-10 1.879823462e-10 1.731185517e-10 9.983990201e-11 1.195086275e-10 2.725326943e-10 1.303888945e-10 4.333562978e-10 1.525225089e-10 1.847077959e-10 4.208365522e-10 2.459990656e-10 1.562036399e-10 2.697874796e-10 1.740549528e-10 1.498361858e-10 3.691798671e-10 2.129169416e-10 1.440761996e-10 2.353365685e-10 3.115789039e-10 1.973711096e-10 1.078657106e-10 1.669973408e-10 2.075620868e-10 4.673856779e-10 2.837132969e-10 1.400811522e-10 2.686523907e-10 2.487224636e-10 1.464040451e-10 1.935241871e-10 2.834858941e-10 2.183752198e-10 8.399526689e-11 1.642619123e-10 1.343490106e-10 2.262929012e-10 1.028144274e-10 1.103705683e-10 2.275979442e-10 2.360569373e-10 2.059465638e-10 2.246409027e-10 9.145881036e-11 2.842979373e-10 1.802613945e-10 1.86790158e-10 2.554739682e-10 2.360236609e-10 2.619576775e-10 7.189400643e-11 3.701402433e-10 2.790838998e-10 2.627623599e-10 1.034583509e-10 1.112520999e-10 9.910328526e-11 1.388362837e-10 2.234488353e-10 1.841972118e-10 2.765442691e-10 9.311552037e-11 1.866381937e-10 2.320065809e-10 2.058173545e-10 2.272206497e-10 1.371780037e-10 1.690659615e-10 2.443863369e-10 8.229633004e-11 3.099920949e-10 1.738387381e-10 2.934342868e-10 1.893456424e-10 1.944065652e-10 1.995961658e-10 1.003394593e-10 2.464053986e-10 2.682492588e-10 1.126210575e-10 2.642010345e-10 2.428619374e-10 1.656903337e-10 2.673653177e-10 3.658774625e-10 3.506232258e-10 4.588785374e-10 2.140231977e-10 2.694469392e-10 2.987255483e-10 2.826714156e-10 2.557178746e-10 3.209148075e-10 3.290358171e-10 2.985336335e-10 3.114122801e-10 1.836234198e-10 1.965419294e-10 2.77840347e-10 3.150297665e-10 2.302357003e-10 4.081955865e-10 2.471906808e-10 2.057482364e-10 2.823512941e-10 2.044534824e-10 2.944884017e-10 2.014450369e-10 2.401494042e-10 2.531518873e-10 2.305536636e-10 1.850972597e-10 2.12413316e-10 3.181024332e-10 2.261894236e-10 1.571902788e-10 1.565618298e-10 1.918880184e-10 1.05699182e-10 1.818697975e-10 1.378950223e-10 6.38278281e-11 2.302504345e-10 1.090730867e-10 1.428586615e-10 2.558582561e-10 1.825757305e-10 1.720505176e-10 1.986491057e-10 1.205757699e-10 7.463822594e-11 1.407120673e-10 1.245355005e-10 8.53302129e-11 6.340308217e-10 3.726578021e-10 1.589145675e-10 1.645212361e-10 1.607122204e-10 4.431810285e-10 2.856876931e-10 1.620890712e-10 2.219690464e-10 3.803658369e-10 4.800283439e-10 5.398085243e-10 3.496441105e-10 2.087611532e-10 4.590308033e-10 5.474349733e-10 8.710058421e-10 5.805479477e-10 3.389195641e-10 6.49203763e-10 2.200377653e-10 1.29904679e-10 4.680688507e-10 2.175054867e-10 1.868089682e-10 2.654462891e-10 1.323948705e-10 4.354340685e-10 4.593602463e-10 1.949419141e-10 1.468885765e-10 1.51362938e-10 1.322300362e-10 9.132240169e-11 1.527601685e-10 1.828424795e-10 1.53898013e-10 9.487284807e-11 1.231832052e-10 1.11244099e-10 1.109990306e-10 1.449799729e-10 1.097648348e-10 1.982564419e-10 1.58487552e-10 1.573813688e-10 3.4407932e-10 3.677955652e-10 2.369710622e-10 2.341334218e-10 1.984548737e-10 2.754666072e-10 2.353801972e-10 1.917917262e-10 2.123019521e-10 2.808998541e-10 1.986781699e-10 2.77632565e-10 2.926474627e-10 3.23122257e-10 2.992042881e-10 3.836951471e-10 2.554834447e-10 2.37625756e-10 3.37646392e-10 3.986431353e-10 2.483081237e-10 3.785668874e-10 2.704892496e-10 3.264329005e-10 2.468458202e-10 2.9900318e-10 4.436246268e-10 4.001107099e-10 3.411566531e-10 2.514392939e-10 2.908841045e-10 2.606482938e-10 2.48957108e-10 3.892807292e-10 3.65749356e-10 2.446147446e-10 2.205325591e-10 1.258367315e-10 1.606113739e-10 1.854741146e-10 1.954107128e-10 8.046596324e-11 2.75622185e-10 3.074229093e-10 1.947667471e-10 2.373981716e-10 1.140121508e-10 7.399019959e-11 2.672854537e-10 1.812366986e-10 2.102045831e-10 1.649603197e-10 3.0240993e-10 3.577102007e-10 2.519987083e-10 1.698473737e-10 1.957788474e-10 1.688137578e-10 1.762668993e-10 1.57120259e-10 1.758305541e-10 1.261028586e-10 1.378857643e-10 1.653194258e-10 1.645190349e-10 1.44522961e-10 1.851755904e-10 1.345013957e-10 1.49428741e-10 1.307951071e-10 2.061828117e-10 3.178125947e-10 2.78748361e-10 3.88327052e-10 1.051867014e-10 7.908004583e-11 8.322250528e-11 1.293515961e-10 1.476359334e-10 1.351069988e-10 1.341037342e-10 3.333815146e-10 1.405893402e-10 2.881737755e-10 1.128392336e-10 2.944713849e-10 1.897768733e-10 1.752042623e-10 1.080443135e-10 3.507168392e-10 9.552931411e-11 2.596150567e-10 2.907244529e-10 2.07391945e-10 3.544235128e-10 1.558291995e-10 1.360056257e-10 2.028682631e-10 2.699985483e-10 2.753419018e-10 9.45671776e-11 2.219806771e-10 8.869937824e-11 1.118508672e-10 1.984646335e-10 1.383357357e-10 3.349734976e-10 1.091231785e-10 1.158737705e-10 1.098760085e-10 2.734718035e-10 3.600104665e-10 8.804793091e-11 1.271900429e-10 2.611033534e-10 1.780879854e-10 3.77734739e-10 1.646498883e-10 +2.717082729e-10 4.726644039e-10 2.741566167e-10 1.550315296e-10 2.123002178e-10 2.961076796e-10 3.087447181e-10 8.2966861e-11 2.172776376e-10 2.102215052e-10 1.491587382e-10 2.25544872e-10 3.256270309e-10 1.734641797e-10 3.533950857e-10 2.136457409e-10 1.083736275e-10 2.530239406e-10 1.288404461e-10 9.982293653e-11 3.565706186e-10 1.744137613e-10 2.210192443e-10 1.792957473e-10 1.504428105e-10 1.901564272e-10 2.307090455e-10 2.646804425e-10 6.80542003e-11 1.313896247e-10 2.807795984e-10 3.637991075e-10 1.625667407e-10 9.274960314e-11 2.85086068e-10 7.133208864e-11 8.670810709e-11 1.248619359e-10 2.119077437e-10 4.24627731e-10 2.622262007e-10 1.143092643e-10 1.198966639e-10 1.755814093e-10 3.192250546e-10 2.857978859e-10 2.7368355e-10 2.333999037e-10 1.106247351e-10 2.384497206e-10 2.525556104e-10 2.345974443e-10 2.030421877e-10 2.262921796e-10 1.122174125e-10 1.508030344e-10 7.246974582e-11 3.520186504e-10 1.243865042e-10 2.003381023e-10 1.622694156e-10 1.761921521e-10 1.362603516e-10 1.664601723e-10 1.536891026e-10 3.211968277e-10 1.605950365e-10 2.26435246e-10 1.583352437e-10 2.452221394e-10 2.05838691e-10 1.476437211e-10 1.250622041e-10 1.78899046e-10 1.170825455e-10 1.78550538e-10 1.681651661e-10 1.352511237e-10 1.434623146e-10 2.670934412e-10 1.39883482e-10 1.388640381e-10 3.349176321e-10 2.84306303e-10 2.135581667e-10 2.945207507e-10 1.542969649e-10 3.700280391e-10 4.044784112e-10 2.190371027e-10 3.55932517e-10 2.659139535e-10 3.270949507e-10 2.723208501e-10 2.171525365e-10 1.894771069e-10 1.593540816e-10 3.05080858e-10 2.106862636e-10 1.717231957e-10 3.442271444e-10 2.947534113e-10 3.857343206e-10 2.427245906e-10 3.042767413e-10 3.001327839e-10 1.301397756e-10 1.512882882e-10 3.209801122e-10 2.71640958e-10 2.410634127e-10 1.597995131e-10 2.655211421e-10 2.460098442e-10 2.638126295e-10 2.272924941e-10 3.700113436e-10 1.492869212e-10 1.987615748e-10 2.243764906e-10 1.122544529e-10 1.739217803e-10 8.601213839e-11 1.246596772e-10 4.754474893e-11 1.100414234e-10 5.347618012e-11 1.277682986e-10 8.933831884e-11 1.886428677e-10 1.68535517e-10 1.89484151e-10 1.30009514e-10 1.500089619e-10 6.135081701e-10 1.312390323e-10 8.436062859e-11 1.863591798e-10 1.239129356e-10 2.925415342e-10 2.263605856e-10 4.913089243e-10 3.161162752e-10 2.69688131e-10 5.10758551e-10 1.695304929e-10 5.958318363e-10 3.254353159e-10 2.609932633e-10 4.913253237e-10 3.849195047e-10 4.253276566e-10 4.534252636e-10 5.425113173e-10 4.854828454e-10 1.354150968e-10 1.504571522e-10 3.083004935e-10 3.31580059e-10 1.565999085e-10 9.497959145e-11 9.526765477e-11 1.929133678e-10 9.501866246e-11 1.50703409e-10 1.865459018e-10 1.076258652e-10 1.260816972e-10 1.802288651e-10 1.216821302e-10 9.609157227e-11 1.343174646e-10 1.725739109e-10 8.867879282e-11 6.010204707e-11 1.267895376e-10 8.455985159e-11 1.044988339e-10 1.743598058e-10 9.928604899e-11 1.966816268e-10 2.855165897e-10 2.209383614e-10 1.979709335e-10 2.661230891e-10 2.826826084e-10 2.931872624e-10 2.813712993e-10 2.023335454e-10 1.999212218e-10 3.058107395e-10 1.943362266e-10 2.12570632e-10 3.899583757e-10 2.64649339e-10 2.61926758e-10 2.511844111e-10 2.090719768e-10 2.167839812e-10 2.520049346e-10 3.021919794e-10 4.274142898e-10 3.239937651e-10 2.830049431e-10 3.158317054e-10 2.505205969e-10 1.140795582e-10 3.706395232e-10 2.817122203e-10 1.999872292e-10 1.443611706e-10 4.012843347e-10 1.559166054e-10 2.488173513e-10 2.471404098e-10 1.910315534e-10 2.364608226e-10 2.62268126e-10 3.941265686e-10 1.572998647e-10 2.214540749e-10 2.181232809e-10 3.30328855e-10 1.131503296e-10 1.945686493e-10 4.232010911e-10 1.157407683e-10 1.999071031e-10 2.83516092e-10 2.075080482e-10 1.596264464e-10 2.840490242e-10 2.663057935e-10 8.86645146e-11 1.295880394e-10 1.858808686e-10 2.783778118e-10 2.164069726e-10 2.782600669e-10 2.059711023e-10 2.239154182e-10 1.429909905e-10 2.243595863e-10 9.896921215e-11 2.353771212e-10 1.839493576e-10 1.78746257e-10 1.770925961e-10 2.484589682e-10 1.390171721e-10 1.664410985e-10 9.018343959e-11 1.789664916e-10 3.454689956e-10 4.115504164e-11 2.998146982e-10 1.744309774e-10 2.241609183e-10 1.037593931e-10 1.281305857e-10 1.715366698e-10 2.861982877e-10 1.07213617e-10 5.660119742e-11 1.526090139e-10 2.23619314e-10 1.386170535e-10 3.717999582e-10 1.269142218e-10 1.644472443e-10 1.35312146e-10 1.593433702e-10 1.235374261e-10 1.580160495e-10 1.951635567e-10 1.798055389e-10 2.932155601e-10 1.58410126e-10 8.619181088e-11 1.064231924e-10 2.420623926e-10 1.815241205e-10 1.647172761e-10 8.122878934e-11 8.233056375e-11 1.14921827e-10 1.272769632e-10 2.549085751e-10 1.969688258e-10 1.902617235e-10 3.415120756e-10 3.669695196e-10 6.586572569e-11 1.232039946e-10 2.290949357e-10 1.809831888e-10 1.000995688e-10 1.330911949e-10 2.302318977e-10 3.138766243e-10 +1.632620801e-10 1.324161373e-10 2.979193168e-10 2.147173926e-10 3.430540351e-10 1.133863181e-10 2.354310949e-10 1.639029793e-10 1.29682719e-10 2.412191239e-10 1.801961404e-10 1.333881521e-10 1.159226189e-10 1.241076254e-10 1.992231254e-10 5.965632338e-11 4.032228955e-10 2.923399004e-10 1.909194889e-10 3.391921558e-10 2.890311232e-10 1.817179619e-10 2.703046519e-10 1.520935437e-10 2.35669474e-10 2.090681704e-10 2.458807933e-10 1.527348749e-10 3.618361881e-10 2.568842832e-10 1.226593114e-10 4.000078139e-11 1.635633271e-10 1.40300121e-10 6.9673326e-11 8.863328162e-11 1.135930964e-10 1.410181688e-10 7.231335798e-11 1.13914965e-10 2.078660249e-10 1.399876965e-10 2.543035056e-10 1.804274279e-10 2.043797243e-10 1.036016034e-10 1.304755868e-10 1.328074034e-10 1.755623455e-10 1.411391994e-10 1.835230893e-10 2.202323139e-10 2.047500068e-10 1.858221302e-10 3.045140961e-10 1.116813417e-10 1.128663497e-10 4.691919663e-10 3.801097187e-10 2.100904464e-10 1.932629906e-10 2.165357059e-10 1.319620866e-10 1.073085288e-10 2.806361005e-10 1.968332201e-10 2.314379226e-10 2.880805069e-10 1.733501501e-10 2.645621294e-10 8.423765733e-11 1.783146008e-10 2.589931939e-10 1.71451727e-10 2.444924968e-10 3.050281609e-10 3.12025696e-10 1.669460711e-10 9.007327241e-11 1.840494937e-10 1.570576505e-10 2.633434966e-10 1.432851735e-10 1.439091089e-10 2.832220117e-10 2.908900474e-10 2.503607236e-10 4.382022643e-10 3.069361354e-10 2.178361255e-10 2.438518441e-10 2.876029e-10 2.211015676e-10 2.961796734e-10 3.358529106e-10 1.151391899e-10 4.620494584e-10 2.265227913e-10 3.199119398e-10 2.46669523e-10 1.602899084e-10 1.953035357e-10 2.163948739e-10 2.669514462e-10 3.35375898e-10 2.590796915e-10 2.905702742e-10 2.204889201e-10 1.834940027e-10 2.659424792e-10 3.455226863e-10 1.983762898e-10 2.478745744e-10 2.03901446e-10 2.752474423e-10 1.850766258e-10 3.51032983e-10 2.096477196e-10 1.180969252e-10 2.077777872e-10 1.296419262e-10 1.522975137e-10 2.917262188e-10 2.170241829e-10 1.3525383e-10 1.39056575e-10 1.503689293e-10 7.762342927e-11 2.217956373e-10 1.420215744e-10 9.871788606e-11 1.574941484e-10 5.743526266e-11 1.546858754e-10 1.802360119e-10 4.160558604e-11 1.099926943e-10 1.117907998e-10 1.545703048e-10 2.566407048e-10 9.699439544e-11 2.274025421e-10 5.374019177e-10 3.254609094e-10 7.209924008e-11 2.565592456e-10 1.164452728e-10 3.541488048e-10 1.407501686e-10 5.789407051e-10 3.932412355e-10 1.402801788e-10 2.290861623e-10 2.09332286e-10 2.582838477e-10 2.996427143e-10 3.38596397e-10 1.409967889e-10 1.413446315e-10 9.039112716e-11 1.237344331e-10 1.135686848e-10 8.28581152e-11 1.079665997e-10 1.192774847e-10 1.009399856e-10 1.989860492e-10 1.579677115e-10 1.504071968e-10 1.973187467e-10 8.115472836e-11 1.495010647e-10 8.602892815e-11 1.106146393e-10 1.103162096e-10 1.17008533e-10 9.663420673e-11 1.030734987e-10 6.757915066e-11 1.854525287e-10 1.309818452e-10 1.29381401e-10 1.940954571e-10 1.106868367e-10 1.964733584e-10 2.152479836e-10 2.103141876e-10 2.907053936e-10 2.970811421e-10 1.422415614e-10 2.92230991e-10 2.48739926e-10 2.464006824e-10 2.436357368e-10 1.952136383e-10 3.009461263e-10 3.811056952e-10 1.25882818e-10 2.849504137e-10 3.389317454e-10 2.831682081e-10 2.584354798e-10 2.775943561e-10 2.531946802e-10 2.242671047e-10 2.916413232e-10 2.593996285e-10 3.057974829e-10 3.104335842e-10 4.048011163e-10 3.556559249e-10 2.479319257e-10 2.878997312e-10 3.160719357e-10 2.271863501e-10 2.825837217e-10 2.075956233e-10 2.539769257e-10 2.075148264e-10 1.606684397e-10 2.979283301e-10 1.247678926e-10 2.047211841e-10 2.515724728e-10 2.791074205e-10 2.018659551e-10 1.361495255e-10 1.161447557e-10 1.291950449e-10 1.358131228e-10 1.965464236e-10 1.747273646e-10 1.216001146e-10 2.386394629e-10 1.970968803e-10 1.011930816e-10 2.299015993e-10 1.816091102e-10 2.716550598e-10 2.582543579e-10 3.047136169e-10 5.113084214e-11 4.836701075e-10 8.684058435e-11 2.881011315e-10 1.655537516e-10 1.61671122e-10 3.571488865e-10 5.922684666e-11 1.563638064e-10 1.69908818e-10 2.621166624e-10 2.078339762e-10 1.186813734e-10 1.204327402e-10 1.365374502e-10 1.47951769e-10 2.927308432e-10 2.045149146e-10 2.333389808e-10 1.690502548e-10 1.277210062e-10 1.825898844e-10 1.774920552e-10 1.62883587e-10 1.265982952e-10 1.473100261e-10 1.542689137e-10 1.633547611e-10 1.495877347e-10 2.461300532e-10 1.311855741e-10 1.542821925e-10 1.497199284e-10 2.767371107e-10 1.376071993e-10 2.9600192e-10 1.956198971e-10 3.022059031e-10 1.646091607e-10 2.441738818e-10 1.660995796e-10 3.021873297e-10 1.224011533e-10 1.79678072e-10 2.723857324e-10 1.49814816e-10 1.967541781e-10 8.179650563e-11 1.887166252e-10 2.680681447e-10 1.768399973e-10 2.269090056e-10 1.501712237e-10 1.949717682e-10 2.036997209e-10 1.330527063e-10 1.926843451e-10 1.734194562e-10 1.059782607e-10 +1.098380111e-10 8.980411431e-11 2.554524244e-10 5.946683009e-11 3.193805107e-10 1.554473677e-10 2.568278365e-10 2.328525022e-10 3.57264678e-10 3.238320602e-10 1.957198753e-10 7.84620089e-11 1.224731874e-10 1.479498576e-10 3.080475791e-10 1.414839485e-10 2.547715249e-10 1.611138035e-10 2.079450924e-10 9.2889143e-11 2.996634973e-10 1.497305635e-10 1.433173788e-10 1.540095749e-10 1.099977461e-10 1.461086081e-10 1.519048348e-10 1.131772678e-10 2.52140927e-10 1.113801305e-10 4.919813327e-10 1.537653142e-10 2.534084873e-10 3.400206052e-10 2.326450144e-10 2.323332975e-10 1.422359103e-10 2.082479906e-10 6.209986406e-11 1.016985719e-10 1.499821273e-10 2.000941551e-10 2.287899813e-10 2.108909803e-10 3.020578947e-10 3.526374469e-10 1.489259532e-10 3.622798102e-10 2.211890197e-10 2.629880059e-10 2.580719178e-10 2.523643787e-10 1.915438996e-10 2.523475878e-10 1.900845769e-10 2.585147441e-10 3.589385852e-10 1.577800426e-10 9.899511198e-11 3.640180838e-10 2.567241772e-10 1.754459513e-10 1.465306883e-10 2.362109939e-10 1.356810782e-10 3.062093692e-10 1.123384936e-10 2.949998577e-10 3.368611306e-10 1.967604934e-10 1.685765765e-10 1.385688676e-10 9.728142571e-11 2.600416343e-10 2.34000803e-10 2.995859818e-10 1.13132717e-10 1.397903332e-10 1.721036496e-10 1.889327109e-10 2.515980929e-10 1.582931869e-10 3.305235945e-10 2.190126275e-10 2.372294523e-10 3.488156047e-10 1.343010692e-10 3.714187146e-10 2.47670656e-10 3.215295364e-10 2.551692499e-10 2.659510609e-10 3.547643169e-10 3.919547213e-10 2.76980617e-10 1.879876361e-10 3.002589928e-10 2.772934852e-10 1.505727775e-10 3.679786018e-10 3.841300747e-10 3.695968771e-10 2.66188784e-10 2.83151449e-10 4.084345253e-10 2.680137612e-10 1.821242698e-10 3.020324175e-10 2.524745379e-10 2.185313049e-11 2.171471589e-10 1.690527342e-10 2.216955882e-10 2.615723979e-10 2.142690258e-10 3.273343427e-10 1.445879355e-10 1.98990882e-10 2.28299919e-10 1.767308167e-10 1.516215883e-10 1.649790264e-10 1.888444536e-10 1.250500016e-10 1.00782031e-10 6.390366233e-11 5.405439744e-11 1.290635483e-10 1.470079515e-10 1.144418452e-10 1.053125318e-10 4.231752848e-11 8.911422259e-11 1.074398485e-10 2.126333955e-10 1.311823583e-10 1.389670917e-10 1.596146301e-10 1.532837532e-10 1.518799525e-10 2.194535007e-10 1.396580523e-10 1.512130698e-10 1.618829962e-10 1.217542263e-10 1.904872303e-10 1.800744934e-10 1.440318841e-10 5.435539667e-10 1.357812399e-10 1.377114328e-10 1.551962696e-10 1.020091159e-10 4.04142281e-10 1.827652874e-10 2.909055702e-10 1.700407448e-10 1.882393116e-10 1.876179026e-10 1.875036759e-10 1.193392704e-10 1.297025322e-10 1.010866186e-10 2.336792067e-10 3.459895744e-10 1.14855855e-10 1.266180297e-10 3.669417999e-11 6.456562437e-11 1.814601258e-10 8.480641365e-11 1.476640452e-10 1.291877999e-10 1.177092915e-10 1.319765566e-10 1.146279931e-10 1.232294568e-10 2.417475824e-10 1.500016497e-10 1.982664932e-10 1.363025399e-10 1.590400487e-10 2.091937227e-10 1.716230438e-10 1.097661831e-10 1.188032717e-10 1.777554922e-10 1.94453663e-10 2.500870662e-10 1.546224951e-10 1.490987178e-10 1.576378603e-10 1.767798879e-10 2.311332503e-10 2.297368815e-10 2.713589649e-10 2.436099725e-10 2.073251491e-10 2.907998671e-10 2.748845392e-10 2.229968667e-10 1.43433474e-10 2.981035249e-10 1.620913477e-10 2.972400793e-10 3.065673541e-10 3.379972544e-10 4.239878297e-10 3.158195738e-10 3.020300068e-10 3.345194734e-10 2.115331405e-10 2.63390121e-10 2.490805963e-10 3.665756156e-10 2.549057772e-10 1.123469377e-10 3.099036174e-10 2.193850776e-10 1.917822583e-10 2.524408531e-10 2.83182267e-10 2.642955659e-10 6.642157578e-11 3.231120575e-10 2.082163107e-10 1.516175485e-10 1.697886361e-10 4.158242136e-10 3.32831852e-10 4.666782321e-11 1.947795366e-10 1.47407092e-10 2.729218157e-10 3.775091858e-10 1.883020404e-10 2.938427701e-10 2.095109183e-10 1.298593905e-10 1.142447081e-10 7.671688145e-11 1.858349619e-10 2.163183951e-10 1.671926472e-10 2.081021283e-10 1.16462572e-10 5.215858569e-11 1.988636347e-10 1.519192131e-10 1.097586828e-10 1.516658451e-10 3.355603052e-10 1.141374972e-10 2.01549929e-10 2.073270134e-10 1.473819087e-10 1.517824232e-10 2.751358753e-10 8.837943534e-11 1.242706864e-10 1.03745536e-10 1.815241497e-10 1.726187776e-10 2.92384742e-10 1.859188356e-10 2.525339004e-10 8.584372674e-11 7.667469232e-11 1.717484055e-10 2.153367742e-10 9.238439478e-11 1.125056113e-10 1.604433865e-10 1.660092704e-10 1.049129219e-10 1.695659919e-10 2.390334881e-10 1.956590842e-10 3.495973831e-10 2.877387107e-10 2.14397971e-10 1.37527343e-10 1.113999316e-10 2.18849375e-10 1.30329769e-10 8.46810783e-11 2.463923008e-10 2.036445217e-10 1.619910731e-10 1.092004671e-10 2.102079513e-10 1.581481961e-10 5.921752076e-11 6.116222767e-11 1.601427206e-10 9.460234368e-11 8.61645757e-11 7.425525507e-11 1.290404939e-10 2.381352018e-10 +1.297745379e-10 1.50464506e-10 2.009227192e-10 2.212047602e-10 1.594918591e-10 3.018309476e-10 9.041002672e-11 2.141747765e-10 3.330334668e-10 1.400414273e-10 6.729812234e-11 1.630978033e-10 2.407501608e-10 1.318293919e-10 1.339330739e-10 1.186087234e-10 2.498828002e-10 1.538416889e-10 1.684240234e-10 8.608875228e-11 1.81369252e-10 3.259054229e-10 3.965806464e-10 1.225692462e-10 2.50997294e-10 1.170621748e-10 2.340678034e-10 1.817257125e-10 1.300534191e-10 6.039247504e-11 1.647150631e-10 1.335333627e-10 9.860339678e-11 2.955709983e-10 6.993894729e-11 7.772394853e-11 1.791199724e-10 2.181190101e-10 2.631159513e-10 1.90662509e-10 7.279227335e-11 2.712166301e-10 2.977985594e-10 1.023120653e-10 1.436924067e-10 2.305894397e-10 2.076593526e-10 1.648629303e-10 1.494674362e-10 1.612018263e-10 2.454180298e-10 1.602813934e-10 2.170416879e-10 2.360686205e-10 2.704382801e-10 1.426770591e-10 1.479184937e-10 2.658420629e-10 1.382376993e-10 1.868360477e-10 1.282457453e-10 1.460590249e-10 2.853552277e-10 2.456090501e-10 2.031031534e-10 1.990868994e-10 1.668614982e-10 1.756523504e-10 3.890548151e-10 1.171050756e-10 1.704299401e-10 3.138437005e-10 1.701413661e-10 1.857468096e-10 1.454331746e-10 2.347630747e-10 3.003985676e-10 1.488126874e-10 1.687384966e-10 6.994416562e-11 2.509168237e-10 2.115124148e-10 1.714550383e-10 3.407352371e-10 4.191345415e-10 2.246774104e-10 2.880228493e-10 1.948543466e-10 3.774947996e-10 1.595417887e-10 3.585527895e-10 3.221440048e-10 3.918677861e-10 2.573502788e-10 1.912858284e-10 1.139965936e-10 1.735081814e-10 2.264183867e-10 1.948932579e-10 2.694164581e-10 1.736436354e-10 4.167299459e-10 2.913028207e-10 2.30430432e-10 1.902319728e-10 3.828839703e-10 2.500256141e-10 2.453099588e-10 1.962977771e-10 1.327287188e-10 2.359417679e-10 2.24251019e-10 3.208964474e-10 3.01768139e-10 1.301498919e-10 2.848443438e-10 2.048735955e-10 2.447038468e-10 2.736492953e-10 2.005826377e-10 1.406310671e-10 1.184118826e-10 6.534177569e-11 2.217811797e-10 1.380866903e-10 1.530552676e-10 1.59313999e-10 9.732243657e-11 2.115787377e-10 1.27820248e-10 5.732949711e-11 1.126165985e-10 3.229209444e-11 1.096441396e-10 1.885907606e-10 5.473381109e-11 7.704097252e-11 1.723860816e-10 7.546246089e-11 1.458171856e-10 1.447541092e-10 6.048153554e-11 9.290512408e-11 1.611248411e-10 1.133176926e-10 9.853973058e-11 1.638465297e-10 9.99795556e-11 1.016640007e-10 1.177890584e-10 1.856556436e-10 1.590495357e-10 1.277329106e-10 1.907107462e-10 2.275193003e-10 1.732455095e-10 8.154381892e-11 1.128250707e-10 1.807936603e-10 1.289765188e-10 1.276025361e-10 1.195411571e-10 1.986763452e-10 1.20573424e-10 9.780660011e-11 1.0557483e-10 1.142188641e-10 2.167220697e-10 5.998444194e-11 1.131893063e-10 1.386646957e-10 1.330075521e-10 1.00143534e-10 5.062402449e-11 1.548561301e-10 1.295823856e-10 1.827836664e-10 1.134765748e-10 1.48967001e-10 1.287518482e-10 9.813174668e-11 3.074016229e-10 2.363006562e-10 2.618013855e-10 1.819251305e-10 1.054851128e-10 2.870717436e-10 3.228855501e-10 2.499675186e-10 2.194970221e-10 2.535448928e-10 4.170716738e-10 2.757509659e-10 1.169656087e-10 1.973636461e-10 2.769334551e-10 2.079058383e-10 1.149084141e-10 2.185480337e-10 1.525165007e-10 9.205365774e-11 3.434700256e-10 1.786354485e-10 2.263592845e-10 3.066976278e-10 2.837101034e-10 2.980496541e-10 2.369171511e-10 3.950639697e-10 2.891694463e-10 5.479430737e-10 3.424079896e-10 5.095877756e-10 2.335399876e-10 1.90598022e-10 2.937843214e-10 1.891130937e-10 3.607894918e-10 2.37609922e-10 2.547600262e-10 2.148413288e-10 1.237008613e-10 1.853443167e-10 1.930774601e-10 2.350211246e-10 1.991723194e-10 7.026657706e-11 3.225344424e-10 1.540367615e-10 2.010291291e-10 1.273125094e-10 1.713729428e-10 3.309055867e-10 3.259558806e-10 1.835276435e-10 1.785247336e-10 2.362717173e-10 2.440740734e-10 8.945335176e-11 1.837621087e-10 1.284069276e-10 1.19297518e-10 2.262707516e-10 2.463143498e-10 2.609946507e-10 1.898603871e-10 3.428064492e-10 9.915974561e-11 1.139223894e-10 1.745645163e-10 1.723372827e-10 1.471022179e-10 1.678605274e-10 1.271692995e-10 1.645056481e-10 1.63318528e-10 9.613510185e-11 1.520513154e-10 6.539592737e-11 2.628238896e-10 1.727541748e-10 7.406677361e-11 1.941141949e-10 8.293205488e-11 1.490511465e-10 2.408605075e-10 8.047473741e-11 2.636326189e-10 2.867946614e-10 1.435040706e-10 3.287011749e-10 1.847417398e-10 6.811983123e-11 1.589008667e-10 7.548055961e-11 1.396238422e-10 2.119382087e-10 2.040570759e-10 2.5212432e-10 2.205517222e-10 1.338978964e-10 2.924842662e-10 3.529905382e-10 3.438610308e-10 2.297115546e-10 3.195489313e-10 1.251884056e-10 6.555186362e-11 2.314902641e-10 3.238358924e-10 1.125573083e-10 1.609362267e-10 1.932248334e-10 2.963754564e-10 2.620896417e-10 3.831506934e-11 1.587151731e-10 9.181306333e-11 1.286454353e-10 9.719391037e-11 +2.328247659e-10 1.629795796e-10 1.320914266e-10 1.552456915e-10 1.521358307e-10 1.937728392e-10 8.007991594e-11 2.445796562e-10 8.710227847e-11 2.826979943e-10 4.078758834e-10 1.773003128e-10 1.451002894e-10 1.641419888e-10 1.959429229e-10 1.644740866e-10 4.631330092e-10 1.162256997e-10 1.230375852e-10 1.597232932e-10 6.499997991e-11 2.074339167e-10 1.986913508e-10 2.530277708e-10 2.399350912e-10 1.375196134e-10 1.214452723e-10 1.52624442e-10 1.084151505e-10 7.030755028e-11 1.011266455e-10 1.302615632e-10 1.362268951e-10 2.719563667e-10 3.212772889e-10 1.011453888e-10 1.003600486e-10 8.126661509e-11 1.150534752e-10 1.111249394e-10 7.758897508e-11 1.682962439e-10 2.807006795e-10 1.223133777e-10 3.06834305e-10 2.126267323e-10 1.852498873e-10 3.043575784e-10 1.460013671e-10 1.360001085e-10 2.42587986e-10 2.416346089e-10 3.05005485e-10 2.51582941e-10 1.271466989e-10 1.538768745e-10 2.100774786e-10 2.259583851e-10 1.893656228e-10 1.342025411e-10 1.626430166e-10 2.523326771e-10 1.75259591e-10 3.139081433e-10 1.898959121e-10 2.19594402e-10 2.598648583e-10 1.901577316e-10 1.453024645e-10 2.920171559e-10 7.715651667e-11 1.368113843e-10 2.150249696e-10 1.407385343e-10 2.161518375e-10 1.016413026e-10 1.097942771e-10 1.557027629e-10 1.338441932e-10 2.307756821e-10 1.933754573e-10 2.592531082e-10 2.121199183e-10 1.064803398e-10 2.436127541e-10 2.859525111e-10 4.567266638e-10 8.24056046e-11 3.966841483e-10 2.843727859e-10 2.448433381e-10 4.171185821e-10 2.072559786e-10 3.99510641e-10 1.708859486e-10 1.598917669e-10 2.756481885e-10 2.659181424e-10 2.024271131e-10 2.197509044e-10 2.020520494e-10 2.051222197e-10 2.575181662e-10 1.708405787e-10 1.89827494e-10 2.255314804e-10 3.655719407e-10 1.755103421e-10 2.015142008e-10 2.484883328e-10 1.923385511e-10 2.419058629e-10 3.307147056e-10 1.993121004e-10 2.139204501e-10 2.001712743e-10 2.039118186e-10 2.24559394e-10 3.716747035e-10 2.068498413e-10 1.880280734e-10 2.690771962e-10 1.462115172e-10 2.033747192e-10 2.151627659e-10 1.261034353e-10 1.932351394e-10 1.172577168e-10 1.809639171e-10 1.582844206e-10 1.142117463e-10 8.019402399e-11 1.394693777e-10 1.261558468e-10 8.894570101e-11 3.177990267e-10 9.084803728e-11 1.243309726e-10 1.744295511e-10 3.561679753e-10 1.235390842e-10 8.748696508e-11 2.157296966e-10 6.958103951e-11 1.290406624e-10 2.459048642e-10 2.389004506e-10 1.301055539e-10 1.652616545e-10 1.363669948e-10 1.30874846e-10 1.01904961e-10 2.288862432e-10 2.208249546e-10 2.332067061e-10 2.426809391e-10 1.337350354e-10 1.465531039e-10 3.062177746e-10 2.022545593e-10 2.452780833e-10 1.717849052e-10 1.373466929e-10 1.487592453e-10 9.858298233e-11 1.76857574e-10 1.537501463e-10 1.120708552e-10 5.674436415e-11 1.055346233e-10 6.019730596e-11 1.18534143e-10 1.133928532e-10 1.66818527e-10 1.257206295e-10 8.736244167e-11 2.464273564e-10 1.931200727e-10 1.643801245e-10 2.185973566e-10 1.646104394e-10 3.069127343e-10 2.091931243e-10 8.126911801e-11 2.417754805e-10 2.861463598e-10 1.102501878e-10 1.922275892e-10 3.533632274e-10 1.383316605e-10 2.652389544e-10 1.513002288e-10 1.799021504e-10 1.739697633e-10 3.128008135e-10 1.784148694e-10 3.419131062e-10 2.041152963e-10 3.133992321e-10 2.71468731e-10 2.652237156e-10 2.383239235e-10 1.712463839e-10 4.458938438e-10 4.34645121e-10 3.14887683e-10 2.076957282e-10 2.890948889e-10 2.44554895e-10 2.9790256e-10 3.42219895e-10 3.918317853e-10 3.252941357e-10 2.314041665e-10 3.133413358e-10 3.422593958e-10 2.949230069e-10 2.38338346e-10 3.144556725e-10 2.034227106e-10 1.982655938e-10 1.482149117e-10 2.749074383e-10 2.360193105e-10 1.116113332e-10 1.231068211e-10 2.164592766e-10 1.922872235e-10 1.611412281e-10 1.988460875e-10 2.750131331e-10 1.097012369e-10 1.2071699e-10 2.950321674e-10 1.377598572e-10 2.426310274e-10 9.241553597e-11 1.973389743e-10 2.194278695e-10 9.398653079e-11 3.994298754e-10 2.231500772e-10 1.816825507e-10 1.509804171e-10 2.543992985e-10 1.291425705e-10 2.41169338e-10 1.516353901e-10 2.579503859e-10 1.117744879e-10 2.980936796e-10 1.350332161e-10 1.639836763e-10 3.142975337e-10 1.693862369e-10 9.347328901e-11 1.576182949e-10 1.160378946e-10 1.683610718e-10 2.486788812e-10 3.318603893e-11 1.54154563e-10 2.109156813e-10 1.298055445e-10 1.077817867e-10 2.110911792e-10 9.16188827e-11 3.249226335e-10 7.432443918e-11 8.987151843e-11 1.642151332e-10 2.270254535e-10 1.452874997e-10 2.255023076e-10 1.027433301e-10 7.681340008e-11 1.433247753e-10 4.508969011e-10 1.605857658e-10 6.345212191e-11 2.905201519e-10 1.617157186e-10 2.111527042e-10 2.459902089e-10 3.504733612e-10 1.080685824e-10 1.000163589e-10 5.919788559e-11 1.769640479e-10 1.741393493e-10 1.948423609e-10 1.075037901e-10 8.28387282e-11 1.597048625e-10 1.754741981e-10 1.332452456e-10 2.515177456e-10 2.632236987e-10 2.171185649e-10 1.440806986e-10 +1.776721939e-10 1.066035239e-10 7.211711204e-11 1.672159535e-10 2.362871091e-10 1.070526115e-10 1.091387553e-10 1.190373024e-10 1.129944074e-10 6.59708539e-11 3.212485847e-10 1.415848302e-10 1.389405063e-10 1.888487251e-10 1.877224107e-10 2.051457276e-10 2.342852761e-10 9.734212064e-11 1.713452714e-10 8.086317254e-11 1.212350592e-10 1.760324199e-10 2.808292885e-10 9.132901229e-11 2.29635529e-10 1.318625198e-10 9.06673954e-11 1.237911179e-10 1.54505216e-10 1.640388882e-10 1.162708731e-10 1.317964623e-10 1.163991512e-10 2.092824367e-10 1.181826146e-10 2.457850198e-10 2.667914619e-10 1.511201787e-10 1.304934776e-10 4.8398574e-11 1.037056949e-10 2.388283117e-10 2.893954459e-11 1.582228241e-10 1.247652807e-10 1.347182569e-10 1.105181679e-10 2.649734563e-10 2.327949481e-10 1.140760625e-10 2.060876589e-10 2.698092579e-10 1.270389661e-10 3.123295936e-10 1.434531932e-10 1.098634505e-10 1.834596005e-10 1.00672081e-10 2.357281462e-10 8.726629798e-11 4.786546565e-11 1.661786558e-10 3.178223348e-10 2.178083791e-10 1.768495379e-10 1.312058884e-10 1.837017712e-10 2.658687064e-11 1.960099094e-10 1.319586658e-10 1.44941946e-10 2.380560327e-10 2.321009717e-10 2.233713019e-10 4.056520439e-10 1.680841031e-10 1.720448261e-10 2.093212004e-10 1.452780905e-10 1.286063066e-10 1.050470664e-10 2.673857607e-10 2.726103567e-10 2.263029213e-10 2.47114891e-10 1.596895834e-10 2.304441064e-10 2.501798561e-10 3.218056855e-10 2.704253189e-10 3.511432432e-10 3.04580483e-10 2.013587002e-10 1.742199318e-10 3.405025263e-10 4.43296541e-10 3.714544706e-10 2.948508098e-10 2.970524414e-10 4.311718952e-10 3.287355704e-10 2.86919697e-10 2.723676507e-10 2.025732356e-10 2.520796835e-10 1.637050932e-10 1.783200475e-10 2.321525799e-10 1.696533915e-10 2.872496242e-10 2.78717173e-10 1.925341946e-10 1.93270694e-10 2.511942719e-10 1.797228028e-10 3.327673397e-11 3.302498896e-10 2.751008913e-10 3.207738609e-10 1.892970599e-10 2.583498247e-10 2.547009712e-10 1.326148886e-10 3.592895953e-10 2.351829047e-10 1.109898185e-10 1.49626693e-10 5.317139944e-11 1.819631631e-10 1.081307408e-10 1.445730649e-10 6.47896644e-11 1.018082028e-10 1.464972764e-10 1.221118158e-10 1.48006678e-10 2.117046621e-10 2.344397634e-11 2.248887398e-10 1.644211345e-10 1.366776246e-10 2.194698033e-10 1.419739841e-10 1.451007973e-10 8.784679694e-11 1.235412163e-10 1.876887754e-10 2.088725827e-10 1.216217627e-10 1.46867293e-10 1.692871754e-10 1.451018817e-10 4.283712169e-11 1.490100235e-10 1.522603618e-10 1.461724781e-10 9.113399194e-11 1.475800967e-10 2.553395586e-10 1.129447435e-10 8.780392117e-11 1.31897505e-10 6.277364482e-11 1.414204316e-10 9.920440436e-11 5.095554121e-11 9.708669341e-11 7.740494462e-11 9.583407414e-11 9.255381329e-11 1.784788583e-10 7.917669462e-11 1.119382089e-10 1.119128339e-10 1.486577965e-10 1.242373826e-10 1.367280122e-10 1.992541277e-10 1.588520671e-10 2.724115845e-10 3.341323467e-10 1.981832134e-10 1.610008794e-10 1.164730783e-10 1.997047703e-10 2.847059146e-10 3.106882401e-10 1.148672453e-10 1.823287116e-10 1.79841904e-10 2.755888875e-10 1.153435731e-10 3.412638402e-10 2.143837259e-10 2.25690552e-10 4.357850968e-10 2.239659121e-10 2.895103375e-10 2.899778191e-10 2.254484195e-10 1.585070165e-10 3.082923038e-10 1.354661916e-10 1.59392668e-10 3.600196454e-10 2.660573422e-10 1.657034595e-10 1.291314696e-10 2.824266258e-10 2.967156262e-10 1.54972607e-10 2.860118438e-10 1.317392749e-10 2.455171845e-10 4.097581864e-10 4.162743852e-10 1.714293671e-10 1.421177081e-10 1.680933714e-10 9.137789676e-11 1.53186959e-10 2.496199494e-10 1.550631749e-10 2.595688145e-10 1.707678568e-10 1.495924396e-10 3.379291092e-10 2.945392286e-10 3.570744173e-10 5.364701148e-11 1.932360783e-10 1.604734697e-10 1.00489581e-10 8.644649213e-11 2.245030465e-10 1.044088755e-10 1.301434912e-10 2.445198147e-10 1.957590771e-10 1.245580807e-10 1.881544375e-10 2.624636184e-10 1.106992292e-10 2.636494772e-10 1.027888932e-10 2.495231174e-10 2.243931949e-10 9.260329605e-11 1.909954861e-10 2.440864504e-10 1.04511875e-10 9.421865076e-11 1.975999707e-10 3.361358136e-10 1.786793542e-10 1.818822929e-10 2.276805528e-10 5.226391401e-11 7.19860879e-11 1.41455755e-10 1.916565845e-10 1.456129227e-10 1.679826462e-10 2.34354164e-10 2.660651226e-10 7.899010868e-11 2.622753831e-10 2.046969409e-10 1.431843093e-10 3.507035018e-10 3.271637955e-10 1.254241957e-10 1.84418389e-10 2.231867737e-10 1.140341541e-10 8.942608336e-11 2.833753094e-10 1.304579618e-10 1.501687489e-10 2.253016831e-10 2.40096045e-10 2.461107181e-10 3.607835196e-11 2.804801953e-10 1.284758173e-10 2.591697007e-10 8.43178238e-11 7.525431602e-11 2.584777593e-10 1.702713084e-10 2.681799525e-10 9.817355942e-11 9.363271107e-11 1.579999219e-10 7.598457491e-11 2.359997729e-10 1.329794251e-10 1.399914714e-10 1.402236811e-10 2.228237581e-10 +1.189118649e-10 1.662103855e-10 2.120248002e-10 2.244788707e-10 1.700528262e-10 8.404246232e-11 2.228030066e-10 1.363172979e-10 5.250861333e-11 1.134611254e-10 2.134561339e-10 3.674703317e-10 4.444450851e-11 2.089200803e-10 3.375278241e-10 6.924596285e-11 2.718802847e-10 2.255191256e-10 2.029335846e-10 5.604236248e-11 8.435308426e-11 1.539430061e-10 1.664396129e-10 8.552626376e-11 9.715839868e-11 2.391803562e-10 8.420490538e-11 5.627540235e-11 2.151973525e-10 2.390890705e-10 1.554802685e-10 1.833314757e-10 1.930861384e-10 1.496878687e-10 8.736370384e-11 2.041434207e-10 1.570800645e-10 1.390360941e-10 7.573305856e-11 1.076055575e-10 6.396876154e-11 3.382759058e-10 1.181307135e-10 1.136709115e-10 1.860522174e-10 1.292971213e-10 2.593845224e-10 2.112003927e-10 1.364330257e-10 9.229268228e-11 1.872502142e-10 2.961899567e-10 1.938223665e-10 2.222574855e-10 1.170012342e-10 2.113400159e-10 1.08746524e-10 1.904487154e-10 1.459163487e-10 2.521226902e-10 1.854934969e-10 2.585197989e-10 2.679376017e-10 9.671579562e-11 3.51521095e-10 3.80456149e-10 3.040657063e-10 3.231341277e-10 1.776332184e-10 2.372612834e-10 2.50494314e-10 2.515958339e-10 2.142032529e-10 5.955984181e-11 2.166239176e-10 1.076571056e-10 1.889274125e-10 1.936300376e-10 1.110138309e-10 1.110872322e-10 2.3102278e-10 1.223560327e-10 8.309797589e-11 2.519070458e-10 1.505628103e-10 2.293756681e-10 3.116944314e-10 3.403971793e-10 3.027800945e-10 1.450275479e-10 2.503728182e-10 2.456576055e-10 2.819006094e-10 2.536518343e-10 2.17998481e-10 2.936335495e-10 1.660236727e-10 2.618253225e-10 3.468986894e-10 3.002701104e-10 2.609513416e-10 4.175854992e-10 3.640967012e-10 4.44281495e-10 2.486388623e-10 2.435862002e-10 2.154172869e-10 2.829985368e-10 2.071272145e-10 2.420822188e-10 2.520712307e-10 2.385066137e-10 2.355824326e-10 8.296257573e-11 2.019125827e-10 2.101789335e-10 1.203781689e-10 1.154962027e-10 3.544679432e-10 2.485692713e-10 1.88777961e-10 2.22312604e-10 1.965306992e-10 2.448947174e-10 1.748558525e-10 2.152501006e-10 1.185307784e-10 1.270055256e-10 1.573659985e-10 1.583146241e-10 6.765031807e-11 2.448850891e-10 1.301415928e-10 4.193993942e-11 8.05751027e-11 1.166330831e-10 4.018518463e-11 1.452296617e-10 1.246155533e-10 1.668102643e-10 1.468991687e-10 6.399681477e-11 2.620129907e-10 1.388493642e-10 3.407618181e-11 3.049117607e-10 1.340950092e-10 8.213516354e-11 1.033871113e-10 8.207318687e-11 5.034982925e-11 1.144681896e-10 1.024895982e-10 1.480243737e-11 6.572462302e-11 1.703514081e-10 5.019929579e-11 1.089149529e-10 3.788107104e-11 1.941129264e-10 8.237140477e-11 5.756957776e-11 8.000364329e-11 1.249667191e-10 1.266071861e-10 1.147973254e-10 1.572562402e-10 1.280642576e-10 1.648958154e-10 2.08048004e-10 1.431229228e-10 1.450918093e-10 1.262547254e-10 1.219445914e-10 1.1216463e-10 2.299002119e-10 1.457745103e-10 1.99896399e-10 1.955897072e-10 2.130995918e-10 2.532430136e-10 2.625675128e-10 1.700808296e-10 1.494355912e-10 1.965765331e-10 2.185776588e-10 2.783773011e-10 3.152211621e-10 1.61431086e-10 2.311222729e-10 2.563503649e-10 4.362341711e-10 2.188830108e-10 1.838203517e-10 3.042484447e-10 2.012406824e-10 2.72732228e-10 3.944366644e-10 2.987023348e-10 1.349726524e-10 2.316774987e-10 2.375160804e-10 3.337259172e-10 2.060075792e-10 1.822332937e-10 1.321045639e-10 3.077166131e-10 2.01415249e-10 3.364914411e-10 2.567864759e-10 3.784745718e-10 9.433209792e-11 2.816248039e-10 3.457275062e-10 1.448829308e-10 2.240291317e-10 1.852117296e-10 9.421009253e-11 1.43816488e-10 2.212874169e-10 1.754670809e-10 2.086484852e-10 1.762156688e-10 3.275805395e-10 1.989938327e-10 1.485544224e-10 1.95053667e-10 1.128312214e-10 1.031042562e-10 3.294784517e-10 1.081132088e-10 2.056670172e-10 1.772379985e-10 1.318481798e-10 1.082261307e-10 1.43194856e-10 2.434203381e-10 2.509641114e-10 3.161511481e-10 1.627113836e-10 3.505479564e-10 1.133894276e-10 2.185146007e-10 2.120289436e-10 1.929276582e-10 1.957347272e-10 1.579123908e-10 2.200912088e-10 1.829603853e-10 2.284522357e-10 1.360112362e-10 1.990242829e-10 1.527381689e-10 1.227999915e-10 2.672743966e-10 1.670794767e-10 1.107050737e-10 2.616518613e-10 5.571307991e-11 2.001947768e-10 2.859533394e-10 9.533673625e-11 2.040969284e-10 2.982553705e-10 3.150207552e-11 2.012173891e-10 2.834671506e-10 9.888998796e-11 1.926756599e-10 8.846883672e-11 2.205282652e-10 2.102527272e-10 2.961793789e-10 2.530971613e-10 1.045302245e-10 1.120974196e-10 1.837098902e-10 7.112701244e-11 2.853498544e-10 1.776786624e-10 1.814235305e-10 3.182420245e-10 3.654025058e-10 1.549969012e-10 1.00064627e-10 1.127428609e-10 1.069509277e-10 1.693091986e-10 1.95569415e-10 1.020756726e-10 3.07049045e-10 2.69008437e-10 1.858135679e-10 1.169268487e-10 1.097987931e-10 1.007857095e-10 1.868254834e-10 1.109654644e-10 4.995624485e-11 2.915460415e-10 +2.069074372e-10 3.317447985e-10 1.661270589e-10 1.233239736e-10 1.541089887e-10 1.898367802e-10 2.810309526e-10 3.210005539e-10 7.503514163e-11 2.036361003e-10 7.979100149e-11 1.786728359e-10 1.010985533e-10 3.833795761e-10 1.360645561e-10 9.370092023e-11 3.162234377e-10 8.201160454e-11 2.625902157e-10 1.210998049e-10 2.127006535e-10 1.03961156e-10 1.276542173e-10 1.989837205e-10 5.286083301e-11 1.009696957e-10 7.947402758e-11 1.527693181e-10 7.107060891e-11 3.191577357e-10 2.367366802e-10 2.034089704e-10 1.500125777e-10 1.805006733e-10 1.487727669e-10 1.289931752e-10 2.575490268e-10 1.239350708e-10 1.039280303e-10 1.812182409e-10 3.082648868e-10 1.702123292e-10 2.656991814e-10 5.98235838e-11 1.589475202e-10 1.150100912e-10 1.539614258e-10 9.768336904e-11 2.446244701e-10 1.892216332e-10 2.590616509e-10 1.550775521e-10 1.658753397e-10 2.86612373e-10 1.826690392e-10 4.705526685e-11 9.997637599e-11 1.406403332e-10 1.586659977e-10 1.205640915e-10 1.333327963e-10 2.348374496e-10 2.547235023e-10 2.018830225e-10 4.03104719e-10 2.150501602e-10 1.790181308e-10 2.871195617e-10 2.5066353e-11 2.092036508e-10 9.523306299e-11 1.072610688e-10 1.775043744e-10 2.043026724e-10 1.405684195e-10 1.184716136e-10 1.442658579e-10 2.350501649e-10 1.542426496e-10 1.189141964e-10 1.878236495e-10 2.467800479e-10 3.958595465e-10 1.378564786e-10 2.607370248e-10 2.004353565e-10 2.151417194e-10 2.082108165e-10 6.865077265e-11 2.77955366e-10 2.724834645e-10 1.778869779e-10 2.527968159e-10 2.828630886e-10 1.514418738e-10 2.187204099e-10 1.551345618e-10 3.115364521e-10 3.829089405e-10 3.129915859e-10 2.187689011e-10 2.91504727e-10 2.035194905e-10 3.030623008e-10 1.744357539e-10 1.38626828e-10 1.492074809e-10 3.344687835e-10 2.513050915e-10 3.145396343e-10 1.464111801e-10 2.234108715e-10 2.836509216e-10 2.092552501e-10 2.132840008e-10 1.739207445e-10 2.428899492e-10 1.631228128e-10 1.72016946e-10 3.600915238e-10 1.236875028e-10 3.144193235e-10 1.959944917e-10 1.02303186e-10 1.905561593e-10 2.168143252e-10 1.920466627e-10 1.150156648e-10 1.244764484e-10 2.99206988e-10 2.366075639e-10 2.203413175e-10 1.185223754e-10 1.476090803e-10 9.275493156e-11 4.724440675e-11 1.255830869e-10 2.02819241e-10 1.655986601e-11 1.081142e-10 5.126071246e-11 7.126274927e-11 2.233157217e-10 5.592196795e-11 7.182927715e-11 6.706210257e-11 8.399971595e-11 3.084253355e-11 7.069384458e-11 1.420207493e-10 2.333706263e-10 8.555553864e-11 1.230683754e-10 4.838294265e-11 8.908337911e-11 1.381248156e-10 3.426570315e-11 4.437323707e-11 9.245351674e-11 8.423976518e-11 3.158075774e-10 1.816172044e-10 6.429404798e-11 1.32945459e-10 1.53920218e-10 1.808041252e-10 1.230266305e-10 1.314609756e-10 8.010513184e-11 8.239282454e-11 1.706972496e-10 1.258588209e-10 2.466978588e-10 2.119779803e-10 8.218000342e-11 1.781121825e-10 1.536665923e-10 3.367931854e-10 2.220481303e-10 3.224206201e-10 1.870527419e-10 2.014734397e-10 1.51527597e-10 2.430092274e-10 3.090033875e-10 2.136626054e-10 2.109806919e-10 1.981467657e-10 1.835281026e-10 3.965661199e-10 2.542470003e-10 2.607784169e-10 1.576957359e-10 2.340402456e-10 1.028420776e-10 2.172437557e-10 2.811789659e-10 2.618334912e-10 1.447718231e-10 1.752074258e-10 2.704260743e-10 3.063164224e-10 3.418797793e-10 2.49308339e-10 1.330101604e-10 2.010139083e-10 1.473899667e-10 2.984330087e-10 3.905632095e-10 2.100260137e-10 2.953290485e-10 2.408275029e-10 3.427487373e-10 1.60284232e-10 2.069994738e-10 2.416706531e-10 1.063894826e-10 1.768075482e-10 2.454565503e-10 2.634111392e-10 1.423632246e-10 1.796445459e-10 1.774949257e-10 9.593930901e-11 1.251622148e-10 1.750231389e-10 1.533973062e-10 1.838169162e-10 9.066126236e-11 1.657410804e-10 1.409736968e-10 2.025430349e-10 3.404449362e-10 1.095346132e-10 1.632602698e-10 2.684036753e-10 2.951423579e-10 1.744500097e-10 2.064036193e-10 2.047699662e-10 1.440109183e-10 1.248635159e-10 2.331757251e-10 9.141653757e-11 9.885584321e-11 1.781541972e-10 1.328436968e-10 1.774922213e-10 2.565956512e-10 3.504857621e-10 6.091122188e-11 9.213952869e-11 1.814901525e-10 3.009757128e-10 1.696826764e-10 2.3347868e-10 8.485074331e-11 1.911053527e-10 2.177404913e-10 1.579422304e-10 2.970250733e-10 1.77423975e-10 2.631807483e-10 3.295318908e-10 1.614140559e-10 2.295916639e-10 2.378293254e-10 1.118154396e-10 1.139968395e-10 7.479593704e-11 2.647082669e-10 2.052296376e-10 2.520358738e-10 6.014910225e-11 1.743431881e-10 1.797007613e-10 2.642890851e-10 1.94317735e-10 1.581891792e-10 1.626508023e-10 8.844527463e-11 1.555761528e-10 1.691670142e-10 1.776024957e-10 2.036198206e-10 1.024100751e-10 1.315920421e-10 3.481276812e-10 1.370299713e-10 1.201929526e-10 9.586445527e-11 8.287939518e-11 3.004635113e-10 2.872632108e-10 2.226482512e-10 2.765981867e-10 2.441837255e-10 8.01897685e-11 2.301813735e-10 1.730556522e-10 +1.326596397e-10 1.851747146e-10 2.260130196e-10 2.549508848e-10 1.871338074e-10 1.637239598e-10 1.183353428e-10 3.321321386e-10 1.65581276e-10 3.883171119e-10 1.74350666e-10 1.213576111e-10 1.482284316e-10 1.288494716e-10 2.747031569e-10 2.976102211e-10 1.162496502e-10 1.035127032e-10 2.850601323e-10 2.218112666e-10 1.738727767e-10 1.911251572e-10 1.024489175e-10 9.586403715e-11 8.903457862e-11 1.372162899e-10 5.745959393e-11 1.892899564e-10 8.705694849e-11 2.317408254e-10 1.468583507e-10 1.804581189e-10 1.661594617e-10 9.98568586e-11 2.583526134e-10 2.693234769e-10 2.945024314e-10 2.148400357e-10 1.011590777e-10 2.213665687e-10 1.564626134e-10 1.142704237e-10 1.658187479e-10 1.513987515e-10 1.549232898e-10 2.573096955e-10 1.156069743e-10 1.679589981e-10 2.127135351e-10 5.038388794e-11 9.479619512e-11 1.242963578e-10 1.690875527e-10 2.558243147e-10 1.527073024e-10 1.000436649e-10 1.280221939e-10 2.249592059e-10 1.128682409e-10 7.098658938e-11 1.558674881e-10 1.652845149e-10 1.997847641e-10 1.3432191e-10 1.600252423e-10 1.118991431e-10 6.851515348e-11 1.82007988e-10 5.668858763e-11 1.950391606e-10 1.751137022e-10 1.524637416e-10 2.232149437e-10 2.260333327e-10 2.230195663e-10 1.339734251e-10 1.164776882e-10 1.950524269e-10 2.685761666e-10 2.050718867e-10 2.069219306e-10 1.105524394e-10 2.423989752e-10 2.226104992e-10 1.953704525e-10 1.939295384e-10 1.364531769e-10 1.988255034e-10 2.243572353e-10 1.879526344e-10 2.936507878e-10 3.376635672e-10 1.981118059e-10 2.88895546e-10 2.470640141e-10 2.37977102e-10 1.679173062e-10 1.655289435e-10 2.978987082e-10 2.199725636e-10 1.123754331e-10 1.50051227e-10 2.825302218e-10 1.557644807e-10 2.370887854e-10 2.114677637e-10 1.481379965e-10 2.095861189e-10 1.338509308e-10 2.28233757e-10 1.972367473e-10 2.816646282e-10 2.316110507e-10 1.497884537e-10 2.291775259e-10 2.227353744e-10 1.785535948e-10 1.353245482e-10 2.879760767e-10 1.163979969e-10 2.073120647e-10 1.724674072e-10 1.811429475e-10 1.48094552e-10 1.975248456e-10 2.453326085e-10 2.347607289e-10 1.449572496e-10 1.006088079e-10 1.941378947e-10 8.469225674e-11 2.794620091e-10 1.264004999e-10 2.381898099e-10 1.650537778e-10 2.220628711e-10 1.737650881e-10 1.000304158e-10 9.76066402e-11 3.222501475e-11 9.770020048e-11 1.384014957e-10 2.010299677e-10 1.308014467e-10 1.162078422e-10 7.589254902e-11 2.206344691e-11 1.246626479e-10 1.239996166e-10 1.297229732e-10 8.20952448e-11 1.622030566e-10 2.384014803e-10 5.526003967e-11 1.114256002e-10 8.071238407e-11 1.077298042e-10 7.771187927e-11 8.561768144e-11 5.593760437e-11 1.39809319e-10 1.012856904e-10 1.100674101e-10 3.803942037e-11 1.153205767e-10 1.416890249e-10 2.243132202e-10 1.219162796e-10 3.49930448e-10 9.734112302e-11 1.549551431e-10 8.200946958e-11 2.158649141e-10 2.608558861e-10 1.029414592e-10 1.526218004e-10 2.428547137e-10 2.867416954e-10 1.394177348e-10 1.492221216e-10 2.225908035e-10 1.92590991e-10 1.391991259e-10 1.031166676e-10 1.991130782e-10 2.976589988e-10 1.803228226e-10 1.660472045e-10 2.215980458e-10 1.346011178e-10 2.402811108e-10 2.800099456e-10 4.052316009e-10 2.584925033e-10 3.380796575e-10 2.126943321e-10 1.925479027e-10 1.177997484e-10 1.829074652e-10 1.584215727e-10 3.358941538e-10 2.291623854e-10 2.213785192e-10 3.593203878e-10 3.601279651e-10 2.408518447e-10 2.88604514e-10 3.386831001e-10 3.033287257e-10 2.012310742e-10 1.266193224e-10 2.216374508e-10 1.434360911e-10 2.532519021e-10 2.89380242e-10 1.610067463e-10 2.738148219e-10 1.216876584e-10 4.353611686e-11 2.938331895e-10 6.814063123e-11 1.51188672e-10 1.360360483e-10 2.004756668e-10 1.828230667e-10 1.502820764e-10 1.197140746e-10 6.868685421e-11 3.766277099e-10 1.051821274e-10 2.447741301e-10 2.037291204e-10 2.559044912e-10 2.1891879e-10 2.745187081e-10 2.078853024e-10 2.697797788e-10 3.507714291e-10 1.500556955e-10 2.00157724e-10 1.325413947e-10 1.781709727e-10 1.212222036e-10 1.889246971e-10 4.249436908e-11 8.052310543e-11 1.839213452e-10 9.019968697e-11 5.508016721e-11 2.223041226e-10 1.140220888e-10 3.483229733e-10 5.402478414e-11 1.337333759e-10 1.213827274e-10 2.121378442e-10 1.610616725e-10 9.015119901e-11 7.58033293e-11 1.442181879e-10 2.09567588e-10 1.031224204e-10 1.194953772e-10 1.677401731e-10 2.467237941e-10 2.492809754e-10 9.714044722e-11 1.605214688e-10 2.605081189e-10 6.657933909e-11 3.175717505e-10 2.945716495e-10 1.365960028e-10 1.664708169e-10 2.854029723e-10 3.501955388e-10 2.974712603e-10 1.131530367e-10 7.819989731e-11 1.612034691e-10 1.171196717e-10 1.265044862e-10 3.356372206e-10 1.50174496e-10 1.539328379e-10 1.370414256e-10 1.079905103e-10 2.331879373e-10 1.619113349e-10 2.368790436e-10 1.426339365e-10 2.365809564e-10 1.45238585e-10 2.065389584e-10 1.433648861e-10 2.106752579e-10 1.402123284e-10 1.487975755e-10 1.112471579e-10 2.549499427e-10 +1.585779799e-10 2.627354652e-10 1.154669357e-10 2.604635861e-10 2.252976989e-10 4.026992464e-10 3.715773519e-10 1.299602886e-10 1.39532547e-10 1.271942091e-10 2.123230798e-10 1.193483326e-10 5.41174352e-11 2.851434317e-10 2.964376677e-10 2.27951868e-10 1.987697294e-10 2.561478856e-10 2.389250421e-10 1.273687374e-10 3.586963373e-10 5.005465826e-11 8.812658583e-11 9.500415785e-11 1.208120664e-10 2.59128794e-10 1.120167175e-10 7.023402308e-11 1.14073901e-10 2.896633245e-10 1.611544954e-10 2.090294236e-10 1.234652217e-10 9.849224975e-11 1.244554934e-10 6.910026399e-11 1.477611539e-10 8.424979619e-11 1.300412801e-10 3.812785188e-10 2.305763591e-10 2.234256609e-10 1.157226091e-10 1.090250848e-10 1.414486048e-10 2.071668264e-10 2.807633932e-10 2.500955998e-10 2.83075813e-10 9.377769131e-11 1.537587352e-10 1.735387086e-10 2.145726391e-10 1.410775031e-10 1.585972371e-10 8.612285307e-11 1.903652906e-10 3.068154236e-10 4.128787941e-10 1.491732409e-10 1.27051298e-10 2.382555536e-10 1.57286343e-10 1.387134952e-10 1.384068926e-10 9.623260465e-11 1.756615533e-10 1.649052872e-10 1.644423706e-10 2.017932929e-10 9.591670463e-11 1.461821912e-10 1.060573852e-10 2.374575359e-10 1.391307868e-10 2.927573553e-10 1.775376046e-10 7.104643068e-11 1.655808942e-10 1.576042612e-10 5.887020797e-11 1.99876127e-10 3.763516672e-10 7.426932231e-11 2.008452275e-10 1.837780482e-10 1.463689205e-10 2.586208162e-10 3.155405527e-10 3.388170922e-10 2.754596327e-10 2.529885444e-10 1.692978191e-10 2.980786567e-10 3.301651883e-10 1.995160325e-10 3.465655511e-10 3.503951767e-10 3.108303782e-10 1.037850878e-10 3.521293832e-10 2.325555372e-10 1.90951774e-10 2.642148733e-10 2.78591554e-10 2.180991656e-10 2.957730781e-10 6.730621815e-11 2.124197102e-10 1.53291434e-10 2.202195259e-10 2.190769497e-10 1.186123274e-10 2.749716205e-10 2.937359042e-10 2.241767887e-10 1.412687252e-10 2.67778563e-10 3.40420742e-10 2.139139596e-10 1.629773486e-10 1.935378627e-10 2.059338939e-10 1.491366559e-10 1.673049402e-10 1.865906346e-10 2.644663237e-10 1.835572794e-10 2.601597947e-10 2.181803241e-10 1.543570763e-10 2.854964139e-10 2.457092075e-10 1.033848802e-10 9.845568411e-11 7.624877398e-11 2.287251318e-10 1.930516899e-10 1.265530438e-10 1.702849463e-10 1.213617528e-10 1.729514972e-10 4.796718194e-11 1.953779652e-10 1.101099919e-10 1.28610185e-10 2.40076021e-10 1.578284743e-10 1.293447748e-10 1.236782743e-10 1.248358813e-10 8.241934112e-11 1.03435733e-10 9.369670401e-11 6.848608039e-11 6.023275955e-11 1.300563019e-10 1.04183837e-10 1.129828607e-10 1.701903032e-10 1.765420246e-10 1.925211708e-10 1.319278749e-10 9.703870079e-11 1.462551333e-10 9.902136215e-11 1.683142034e-10 1.982400315e-10 1.331727919e-10 1.146799269e-10 2.555795478e-10 2.925165469e-10 1.838920532e-10 1.657900712e-10 2.566705589e-10 2.45547809e-10 8.752929049e-11 3.826209826e-10 3.089423296e-10 1.365511932e-10 2.237575169e-10 2.96252502e-10 2.487663205e-10 1.62242658e-10 1.958382599e-10 2.528986638e-10 1.132868818e-10 2.11149592e-10 2.009183729e-10 1.622902985e-10 1.089642433e-10 1.918021327e-10 2.052485543e-10 3.379206697e-10 1.970629885e-10 1.847475149e-10 2.615587118e-10 2.459505292e-10 2.194649144e-10 2.637579773e-10 2.530165522e-10 2.827698407e-10 1.940303089e-10 2.063023647e-10 1.722477738e-10 2.350033745e-10 4.128401134e-10 3.277107158e-10 2.630681026e-10 1.649989691e-10 2.184740261e-10 1.808625893e-10 1.725133902e-10 2.354980426e-10 1.515135063e-10 2.622995466e-10 2.376871503e-10 1.292197468e-10 3.328778142e-10 1.088011321e-10 6.225468927e-11 1.267598619e-10 1.600137291e-10 1.257786813e-10 9.799610368e-11 1.003186964e-10 1.595877874e-10 1.078997754e-10 1.258753664e-10 1.911283072e-10 2.061934362e-10 2.759032872e-10 2.356531584e-10 1.472120115e-10 2.746994284e-10 2.684911137e-10 2.490561909e-10 1.004420415e-10 2.191654581e-10 3.193818494e-10 2.284699695e-10 3.359863707e-10 1.650497531e-10 1.235750885e-10 1.56012696e-10 1.066703223e-10 2.754933446e-10 9.559326275e-11 2.291229619e-10 3.799004644e-10 1.96435025e-10 2.979415339e-10 3.768356814e-10 8.625462324e-11 2.001446031e-10 1.995865194e-10 1.517684686e-10 9.792208878e-11 8.596482463e-11 7.56313912e-11 7.955221368e-11 6.079831925e-11 9.430779216e-11 1.061938122e-10 1.167477286e-10 7.630813553e-11 2.400271478e-10 8.669099986e-11 1.357561932e-10 3.416793346e-10 3.199781323e-10 1.646311831e-10 2.004165817e-10 1.813276716e-10 1.345409582e-10 1.419962991e-10 1.980627263e-10 1.193521929e-10 8.336229853e-11 9.287249386e-11 7.95667508e-11 2.470545704e-10 3.213180108e-10 2.184706231e-10 1.416744787e-10 7.876391806e-11 2.178428647e-10 7.222400997e-11 2.247717812e-10 8.29693816e-11 1.822416614e-10 1.211115165e-10 1.946447547e-10 2.041587874e-10 2.8730895e-10 1.548669747e-10 7.995020302e-11 1.142576043e-10 2.218514581e-10 1.694317685e-10 +1.040043953e-10 1.041213134e-10 1.052531799e-10 1.586266223e-10 1.625129956e-10 1.156643747e-10 9.204571868e-11 6.875527051e-11 1.341284634e-10 1.523847162e-10 1.63044468e-10 1.186172866e-10 1.168340033e-10 1.825277832e-10 2.748581268e-10 1.990425731e-10 1.461675878e-10 1.470246095e-10 1.114047533e-10 5.187566975e-11 1.633581172e-10 2.571184103e-10 1.812562237e-10 1.474071877e-10 1.166183204e-10 6.291911587e-11 6.343892097e-11 1.656160022e-10 9.734526236e-11 6.375709588e-11 1.530862416e-10 3.064052811e-10 3.21803848e-10 1.284704397e-10 1.470953387e-10 1.348419047e-10 1.802164613e-10 2.848190068e-10 3.412643915e-10 1.505953167e-10 3.265483032e-11 1.022136394e-10 2.648262461e-10 1.972723151e-10 6.975323147e-11 3.248327078e-10 1.445143337e-10 3.289962713e-10 2.289597633e-10 1.310251135e-10 2.515390065e-10 1.527682266e-10 2.6862243e-10 1.175405531e-10 4.339707131e-10 2.804836605e-10 1.687355672e-10 5.679944846e-11 1.555967629e-10 8.780558889e-11 7.64789877e-11 4.322234125e-10 1.199786182e-10 9.72794456e-11 1.996432569e-10 2.277492276e-10 9.006257575e-11 2.533577932e-10 1.951361694e-10 9.250469772e-11 1.445626798e-10 1.296041264e-10 1.457990266e-10 1.124997144e-10 2.912431957e-10 1.661513768e-10 3.656898146e-11 1.62389517e-10 1.179653636e-10 2.761531658e-10 6.17950472e-11 1.570247904e-10 2.752406271e-10 9.658166588e-11 2.60677508e-10 2.667790102e-10 1.279229421e-10 3.458556499e-10 1.891879893e-10 2.875634374e-10 7.693434589e-11 2.982731493e-10 3.955039651e-10 3.546384613e-10 2.693134493e-10 2.270735459e-10 2.438001953e-10 4.360266937e-10 2.983571037e-10 2.542238954e-10 2.787242008e-10 2.853346195e-10 1.70608663e-10 1.916974467e-10 3.303682059e-10 1.878760271e-10 2.192815203e-10 2.756018642e-10 2.667706194e-10 2.268607759e-10 2.345362489e-10 1.631386037e-10 1.319327558e-10 2.421544168e-10 2.392863144e-10 3.180699753e-10 2.217213117e-10 1.765434851e-10 1.363035736e-10 1.873801915e-10 2.343796791e-10 1.680507806e-10 1.730444231e-10 1.597909895e-10 1.886475638e-10 2.076566005e-10 1.848700662e-10 2.56238173e-10 1.155866323e-10 1.604526053e-10 2.534674245e-10 1.704054341e-10 1.945227792e-10 1.953764676e-10 2.30637633e-10 1.415605645e-10 1.952667638e-10 1.36143413e-10 1.597138741e-10 1.857267728e-10 1.824477784e-10 2.455704508e-10 9.355094136e-11 7.768012144e-11 1.485732773e-10 1.598467889e-10 7.503965696e-11 1.554781524e-10 1.481209951e-10 8.177226333e-11 1.09950451e-10 1.634434361e-10 2.486652485e-10 7.238304139e-11 1.284018605e-10 1.043370475e-10 2.203265506e-10 2.030106993e-10 1.656444245e-10 8.550752522e-11 1.465980002e-10 9.505725504e-11 2.251717752e-10 2.065582238e-10 1.152734828e-10 5.411500235e-11 2.788321145e-10 6.80630851e-11 1.869805151e-10 1.830324908e-10 1.994595392e-10 1.531972657e-10 1.715159311e-10 1.435314552e-10 2.534414228e-10 1.22900318e-10 1.101242272e-10 3.247413606e-10 2.495987869e-10 2.139916038e-10 2.02350476e-10 2.273593729e-10 2.258698989e-10 2.640295035e-10 2.226000862e-10 2.819695635e-10 3.661857197e-10 1.994721454e-10 3.022564495e-10 1.408766567e-10 2.682345777e-10 2.73677846e-10 2.252382532e-10 1.920676278e-10 1.717664823e-10 3.688990335e-10 3.191631674e-10 1.1154445e-10 2.820750956e-10 2.955235728e-10 2.68294406e-10 1.570916982e-10 2.576549457e-10 2.210946578e-10 3.954456962e-10 2.346069958e-10 2.984147547e-10 2.257999659e-10 2.952726279e-10 3.268076749e-10 3.474041276e-10 1.321882397e-10 1.664572048e-10 2.872029623e-10 2.401187196e-10 1.725980906e-10 2.327408375e-10 2.761243712e-10 2.415597898e-10 1.311220785e-10 2.507822313e-10 9.139735641e-11 2.532781652e-10 1.529384977e-10 1.770562692e-10 2.907141446e-10 1.320201842e-10 1.77400124e-11 1.317273568e-10 9.6264312e-11 9.202681115e-11 1.078449278e-10 2.112064272e-10 1.683079027e-10 2.551021865e-10 1.758121269e-10 2.308986086e-10 1.290942957e-10 2.462784696e-10 1.352689793e-10 5.803404332e-11 1.16671327e-10 1.386177155e-10 1.184169815e-10 1.11164254e-10 1.762111581e-10 1.12971517e-10 1.87815648e-10 3.56918895e-10 5.370797915e-11 1.847188756e-10 1.08781088e-10 2.749908393e-10 2.310772848e-10 1.163089924e-10 9.968401312e-11 1.688262572e-10 2.507888708e-10 1.63494936e-10 8.917334127e-11 1.462969547e-10 1.651000309e-10 1.828752371e-10 1.41738636e-10 2.530225048e-10 1.10794256e-10 1.951134211e-10 3.928563712e-10 3.679406928e-10 1.706233364e-10 1.311362358e-10 1.734779209e-10 9.855809323e-11 3.501238391e-10 6.033583217e-11 2.14090768e-10 1.838224211e-10 1.149592919e-10 1.444617225e-10 4.887655228e-11 1.268955153e-10 6.993883478e-11 1.783937278e-10 2.111959227e-10 3.670682177e-10 1.329035039e-10 1.092542474e-10 3.773940118e-10 9.137623606e-11 2.98275891e-10 2.129058938e-10 1.951775806e-10 3.184635168e-10 1.397414147e-10 7.924314502e-11 1.179642985e-10 1.225105059e-10 2.171577665e-10 1.322694627e-10 1.349170128e-10 +1.040058457e-10 7.538909088e-11 1.930323877e-10 1.449891601e-10 2.305127917e-10 3.294829593e-10 8.271797303e-11 1.102149287e-10 2.874099567e-10 8.44789351e-11 3.66862715e-10 1.580743128e-10 2.11919457e-10 1.678628069e-10 3.645505882e-10 2.062706264e-10 3.118379859e-10 1.08973023e-10 4.376354306e-11 8.995615932e-11 1.279720422e-10 1.279243283e-10 1.517182046e-10 3.149278012e-10 1.169861992e-10 3.155627554e-11 1.854420639e-10 1.163842514e-10 1.778796255e-10 3.087606194e-10 2.422922617e-10 9.388565901e-11 1.747606409e-10 1.352376163e-10 3.079646495e-10 1.317097185e-10 1.636281771e-10 7.356120305e-11 1.538776849e-10 1.473887975e-10 2.747734057e-10 1.115377852e-10 1.996941996e-10 1.479141096e-10 1.556358881e-10 1.1605262e-10 3.049944327e-10 2.836973363e-10 1.089667569e-10 1.327903764e-10 1.357461753e-10 1.032324479e-10 1.592952926e-10 9.634865572e-11 1.164618465e-10 1.121041307e-10 2.403286259e-10 1.171599277e-10 2.404512184e-10 1.268308528e-10 8.576038027e-11 2.92720854e-10 1.930008402e-10 1.600607275e-10 9.506152953e-11 1.105234402e-10 9.456414921e-11 1.708407426e-10 1.268071377e-10 1.449220674e-10 1.518334806e-10 1.833515254e-10 2.140884342e-10 2.23632404e-10 9.771500198e-11 1.846477521e-10 1.485216377e-10 5.948663988e-11 1.50281094e-10 2.42161619e-10 1.569749992e-10 6.601636289e-11 1.881788076e-10 3.290389247e-10 7.317481611e-11 2.545857707e-10 3.150222445e-10 1.715376419e-10 2.19389506e-10 2.298889845e-10 3.558889854e-10 3.304454809e-10 2.184321764e-10 3.46485164e-10 2.582677335e-10 1.905063187e-10 2.491655023e-10 1.71598116e-10 2.764085376e-10 3.073564733e-10 2.146443036e-10 3.267693514e-10 6.378877143e-11 1.363803645e-10 1.748728623e-10 2.132067405e-10 2.380723361e-10 2.108318911e-10 2.675924831e-10 2.526240341e-10 1.921660457e-10 3.792762918e-10 3.084915268e-10 2.54729584e-10 2.271557879e-10 1.949298941e-10 1.895782186e-10 3.381381809e-10 1.423009575e-10 2.519356048e-10 2.68410661e-10 3.377448867e-10 2.024275608e-10 2.206362151e-11 3.204749043e-10 2.179018977e-10 1.733362922e-10 1.29766504e-10 7.858159336e-11 1.039400068e-10 1.753952679e-10 1.761593043e-10 3.94735028e-10 1.697043252e-10 1.671701241e-10 1.257767503e-10 1.518324085e-10 1.292144384e-10 1.523835107e-10 1.447120064e-10 1.185268521e-10 1.105926453e-10 1.302668525e-10 1.060173913e-10 9.453735547e-11 1.772453046e-10 1.733924676e-10 2.417025939e-10 1.386082774e-10 9.325221633e-11 3.051335211e-10 2.524714644e-10 1.202113565e-10 2.779324589e-10 1.44907608e-10 1.920731307e-10 1.183254774e-10 2.36279777e-10 1.593630141e-10 1.315111897e-10 1.355732353e-10 2.023645267e-10 3.476063328e-10 1.326719669e-10 2.9304923e-10 1.084869284e-10 2.126520073e-10 1.743915163e-10 2.246383912e-10 1.823888719e-10 1.362027763e-10 1.842218494e-10 1.272818496e-10 3.143101845e-10 1.536474878e-10 3.912366979e-10 1.651805454e-10 2.80815523e-10 7.101803111e-11 1.716024767e-10 2.743684327e-10 1.213588676e-10 2.007808432e-10 1.873857856e-10 3.195121762e-10 2.569509418e-10 2.855033788e-10 1.010386862e-10 1.997380228e-10 1.914358141e-10 1.935468352e-10 1.078922311e-10 1.460996637e-10 2.157425018e-10 1.684073763e-10 2.059283777e-10 1.749834069e-10 1.85181793e-10 3.774590744e-10 1.615725485e-10 1.959486404e-10 2.474869479e-10 2.687921865e-10 3.412151664e-10 2.096660074e-10 2.155832105e-10 1.986552098e-10 2.14748513e-10 1.855152821e-10 2.352973907e-10 3.015837164e-10 3.461621049e-10 2.151785046e-10 2.539807594e-10 1.562969823e-10 1.309675023e-10 2.573093158e-10 1.341316021e-10 1.562512881e-10 1.550299389e-10 1.499578106e-10 1.022508192e-10 2.201848214e-10 2.083877397e-10 1.499585265e-10 2.03670689e-10 7.151872694e-11 1.701732867e-10 2.294484376e-10 2.71719003e-10 1.411627888e-10 2.921349393e-10 9.677771281e-11 6.596996717e-11 2.172997544e-10 1.277661427e-10 1.53263186e-10 3.768649386e-10 1.376615722e-10 9.437816314e-11 2.044706896e-10 2.069179894e-10 2.54194667e-10 2.047825994e-10 1.857361924e-10 2.643324024e-10 1.65721772e-10 1.813743208e-10 1.473620134e-10 2.315852832e-10 2.335893462e-10 2.09535265e-10 1.886656773e-10 3.233796907e-10 9.17201892e-11 1.622147714e-10 2.212634107e-10 8.423751698e-11 2.292150543e-10 3.527764798e-10 2.744484119e-10 2.708607024e-10 2.603505651e-10 8.280528605e-11 1.544236504e-10 1.622784307e-10 2.640273927e-10 2.571037786e-10 1.569665151e-10 1.499564816e-10 9.959968775e-11 1.131770474e-10 2.101022413e-10 1.266448739e-10 1.513216808e-10 1.031197235e-10 2.739405285e-10 1.492550038e-10 1.017392679e-10 3.475614728e-10 8.793389661e-11 7.555781261e-11 7.992124418e-11 1.67466913e-10 1.682158267e-10 1.909883404e-10 1.239048088e-10 1.087220852e-10 1.070826774e-10 8.710287798e-11 3.667877251e-11 1.218461659e-10 1.210487705e-10 1.665976732e-10 6.034031704e-11 9.77859666e-11 8.061631951e-11 1.681602128e-10 1.237609662e-10 9.354932035e-11 +1.846369036e-10 1.449737815e-10 2.712365178e-10 1.32829891e-10 2.011167495e-10 9.422112657e-11 2.650656657e-10 1.027367648e-10 1.744199277e-10 1.044346663e-10 2.729919788e-10 1.38320804e-10 6.755828079e-11 2.657515668e-10 1.579812224e-10 1.021019549e-10 2.245253455e-10 8.579893609e-11 1.393349716e-10 5.570135891e-11 1.430471995e-10 2.418104317e-10 1.004162047e-10 9.948693679e-11 1.008988056e-10 1.46467249e-10 6.002084791e-11 5.616393446e-11 1.278023526e-10 5.249057656e-11 1.303776822e-10 1.458828309e-10 6.536163553e-11 1.004142323e-10 1.027065438e-10 2.512171051e-10 2.972029245e-10 2.93612525e-10 2.692646523e-10 1.660400211e-10 1.414805769e-10 9.892068337e-11 3.043365138e-10 1.73839207e-10 7.44314343e-11 2.668472287e-10 2.211531894e-10 1.607878458e-10 3.139726704e-10 2.130436809e-10 9.4151096e-11 1.217902312e-10 2.286332309e-10 1.66188618e-10 4.269788002e-10 1.893916076e-10 1.845195808e-10 1.43384855e-10 6.647432389e-11 9.500888952e-11 7.970527201e-11 4.015220876e-11 2.134424475e-10 1.770328471e-10 1.28682994e-10 5.281981515e-11 1.192341363e-10 2.688509794e-10 1.797863743e-10 1.075541871e-10 1.014416912e-10 2.067937238e-10 1.614188948e-10 1.876809341e-10 1.287912319e-10 1.504405459e-10 2.200050652e-10 2.972440156e-10 2.046594502e-10 1.34112218e-10 7.811761851e-11 2.402610317e-11 9.45496934e-11 1.733534034e-10 3.044831646e-10 1.997925446e-10 1.485730348e-10 1.807912634e-10 1.273681459e-10 2.62328138e-10 1.804538915e-10 2.56797533e-10 2.169894806e-10 2.681396627e-10 3.074837102e-10 2.300099092e-10 2.228345855e-10 3.281263073e-10 2.423501438e-10 2.656750801e-10 2.363499386e-10 1.905682446e-10 2.63646647e-10 1.371992962e-10 2.579042364e-10 1.695730282e-10 2.543120826e-10 2.310882064e-10 4.630271366e-11 1.932168676e-10 1.702699239e-10 1.584153445e-10 1.480307419e-10 1.693102762e-10 1.814017738e-10 1.209265096e-10 3.770021777e-10 1.636384879e-10 3.232956392e-10 1.363117219e-10 2.008273835e-10 2.753092326e-10 2.062639023e-10 2.487341672e-10 1.579091257e-10 4.86001391e-11 3.269290717e-10 2.210279429e-10 2.75754803e-10 1.74588297e-10 1.969747333e-10 1.612961762e-10 1.508270565e-10 2.631339649e-10 2.126831612e-10 2.472103718e-10 1.765915062e-10 1.303914353e-10 1.209430605e-10 1.909312731e-10 2.316337692e-10 1.479690759e-10 1.946632917e-10 2.597189224e-10 3.47006667e-10 1.807651913e-10 1.299656765e-10 2.200198221e-10 1.522415845e-10 4.894739293e-10 2.655892101e-10 9.471886646e-11 2.085177744e-10 7.19882966e-11 1.512336429e-10 8.188657575e-11 9.045884906e-11 1.177045338e-10 1.515047362e-10 2.014750533e-10 9.792798315e-11 9.848992773e-11 2.238551432e-10 2.901355408e-10 1.139312495e-10 1.873547891e-10 1.61723529e-10 1.724254419e-10 2.027995409e-10 2.035365665e-10 1.907840297e-10 1.177659493e-10 2.291428756e-10 9.280900689e-11 1.693032024e-10 2.035684354e-10 1.884299927e-10 8.728182295e-11 2.365738828e-10 2.193045432e-10 2.301094685e-10 3.883327043e-10 2.566846877e-10 1.873386256e-10 1.816226351e-10 2.124623507e-10 1.972215895e-10 2.044497237e-10 3.015161949e-10 2.043985439e-10 1.10235664e-10 2.161569719e-10 1.175901187e-10 2.494984438e-10 3.034755902e-10 1.860010362e-10 3.339499253e-10 1.8773386e-10 1.775280932e-10 1.580249404e-10 2.10195125e-10 4.556221479e-10 2.811308236e-10 2.24532408e-10 3.553237669e-10 2.278281118e-10 3.934396302e-10 2.664990828e-10 2.228463681e-10 1.093230968e-10 1.559896756e-10 9.672087482e-11 2.833393913e-10 1.389697664e-10 1.258356181e-10 2.009301951e-10 1.099063198e-10 4.607099642e-11 1.117392965e-10 8.766090826e-11 2.36199387e-10 1.902826438e-10 1.596245127e-10 1.689393707e-10 1.182754082e-10 1.903916212e-10 2.65516287e-10 1.71624811e-10 2.455872831e-10 1.814132177e-10 1.623342253e-10 9.886507916e-11 2.186272622e-10 1.384428045e-10 1.633339712e-10 1.651239063e-10 9.320302696e-11 3.070609271e-10 1.142805205e-10 1.585786628e-10 1.545596108e-10 1.044891663e-10 2.242433282e-10 1.888233739e-10 1.659226466e-10 2.220103821e-10 1.076623745e-10 1.756051779e-10 2.01888983e-10 1.037619546e-10 8.740068517e-11 2.488227653e-10 3.157256321e-10 1.927322864e-10 1.437592788e-10 1.491822841e-10 2.257940643e-10 9.723963965e-11 8.324590122e-11 7.283704064e-11 9.184365107e-11 7.62739952e-11 7.0654694e-11 8.698998169e-11 1.506101875e-10 1.020488768e-10 8.644908464e-11 7.253711628e-11 1.004487482e-10 3.027864001e-10 1.827907073e-10 1.960973165e-10 1.187385898e-10 1.911239044e-10 9.461071751e-11 2.530388589e-11 1.703544398e-10 7.533299901e-11 3.047060416e-10 6.990929314e-11 2.480466234e-10 1.295903842e-10 1.583914425e-10 3.176138902e-10 9.599862038e-11 1.382277848e-10 2.771595849e-10 3.873972986e-10 2.461160917e-10 6.799657445e-11 8.535085682e-11 1.158950758e-10 2.841058867e-10 1.30114424e-10 1.817047151e-10 8.759619431e-11 1.00841714e-10 2.023533434e-10 1.784048759e-10 1.168215411e-10 +1.365447134e-10 1.235193937e-10 1.199133998e-10 1.509537154e-10 2.161875725e-10 6.014291907e-11 8.576774536e-11 6.334147572e-11 6.951044964e-11 8.25772515e-11 1.46700612e-10 3.376508008e-10 1.292683621e-10 1.615392854e-10 6.213979753e-11 1.295871244e-10 1.069612691e-10 3.278725046e-10 3.572637513e-10 8.6270068e-11 1.225026528e-10 1.693054374e-10 1.787707331e-10 3.487414858e-10 5.741894953e-11 1.173644838e-10 7.587602843e-11 2.099720114e-10 1.113344071e-10 3.075585799e-10 3.214794031e-11 1.663119614e-10 2.735401601e-10 1.255394434e-10 1.599456808e-10 1.819873417e-10 6.189774092e-11 1.851008189e-10 1.336341361e-10 1.88217632e-10 1.237366201e-10 2.532498907e-10 2.671509106e-10 2.615659185e-10 1.464237541e-10 9.635864158e-11 1.150452477e-10 1.027786324e-10 2.428941872e-10 1.361897792e-10 2.392242679e-10 9.694328777e-11 1.297787743e-10 2.726647641e-10 1.080328762e-10 2.274456583e-10 6.530837858e-11 1.964662832e-10 2.07459557e-10 1.353904246e-10 1.598419632e-10 1.124826069e-10 2.553740515e-10 1.551969174e-10 1.340157676e-10 2.169133321e-10 1.373534669e-10 1.234841207e-10 1.915904785e-10 2.0913342e-11 8.612429798e-11 1.386981253e-10 8.745405458e-11 1.985071556e-10 3.099088638e-10 1.814210658e-10 2.441774676e-10 1.542866136e-10 2.473152832e-10 1.160352684e-10 1.457158106e-10 1.981731413e-10 1.42422319e-10 2.724865366e-10 1.302378511e-10 3.208110657e-10 3.09117612e-10 8.778688935e-11 1.553521358e-10 1.832484941e-10 1.613407946e-10 1.752995942e-10 2.501386156e-10 2.07674812e-10 1.795483444e-10 1.561328095e-10 3.040783176e-10 3.52475946e-10 2.264737931e-10 2.257991241e-10 1.352320009e-10 2.998019827e-10 1.724887511e-10 2.417735876e-10 2.833385665e-10 3.184310676e-10 1.886678815e-10 9.045781613e-11 2.869382769e-10 1.799706104e-10 3.684226064e-10 1.638236092e-10 2.441146633e-10 1.915467066e-10 1.663166548e-10 1.525815525e-10 2.548912182e-10 2.209995811e-10 1.947281077e-10 2.862403247e-10 1.843811847e-10 1.9404632e-10 2.644311336e-10 3.217104607e-10 2.55696002e-10 1.784472899e-10 1.812466832e-10 1.193999257e-10 1.916731122e-10 1.488342862e-10 1.673189172e-10 1.990057541e-10 1.886765519e-10 2.358798129e-10 2.315265974e-10 1.743897104e-10 1.297814818e-10 1.429480284e-10 2.444042968e-10 2.087433281e-10 1.804348775e-10 1.107193682e-10 1.689971069e-10 1.28502307e-10 2.715098623e-10 2.431007507e-10 2.501967287e-10 1.237690834e-10 1.230584566e-10 1.633735683e-10 3.104142409e-10 1.57092839e-10 1.702063551e-10 1.095228063e-10 1.636889984e-10 1.481212064e-10 1.336914419e-10 2.402793607e-10 1.235050989e-10 2.41927338e-10 1.729957506e-10 2.74276961e-10 2.746163752e-10 2.78729248e-10 2.012378752e-10 2.037448318e-10 1.559496873e-10 3.250421823e-10 1.304475464e-10 2.123363527e-10 1.90846408e-10 2.167280754e-10 3.462005431e-10 2.060425587e-10 1.02293118e-10 1.203420798e-10 1.320679247e-10 2.280324375e-10 1.489441719e-10 2.684669408e-10 2.656562535e-10 1.122771741e-10 1.189776488e-10 1.991533002e-10 1.767488233e-10 2.430466288e-10 1.584263669e-10 1.456649638e-10 1.02405574e-10 2.77236332e-10 2.22940093e-10 1.103289052e-10 1.728646297e-10 2.825879182e-10 1.52222182e-10 2.236417615e-10 2.233662778e-10 2.47122215e-10 2.090956566e-10 1.901135275e-10 2.763993962e-10 2.478116492e-10 2.116268745e-10 2.900312117e-10 3.047054664e-10 1.812893818e-10 2.695124046e-10 1.177894575e-10 9.259118466e-11 1.402275913e-10 1.671051914e-10 1.435344493e-10 1.344176668e-10 2.367013121e-10 2.721087255e-10 2.697032425e-10 2.77931073e-10 1.564968323e-10 1.376326771e-10 1.991982465e-10 7.445975685e-11 1.152152464e-10 2.44678395e-10 2.143709489e-10 1.855120195e-10 1.209773509e-10 1.282836303e-10 7.030666081e-11 2.102774855e-10 2.621921995e-10 2.777347842e-10 1.257849385e-10 1.387763262e-10 7.459491692e-11 8.935623649e-11 1.967846747e-10 1.35320587e-10 1.110451807e-10 2.184842148e-10 3.036685886e-10 1.120330947e-10 2.39204889e-10 2.972256658e-10 2.294838834e-10 9.630412668e-11 1.922327821e-10 1.203954663e-10 1.925089123e-10 3.537633617e-10 1.678071439e-10 9.916903931e-11 2.625708089e-10 1.413110568e-10 1.283605108e-11 2.0473591e-10 1.686785881e-10 4.349696875e-10 1.21250417e-10 1.929374957e-10 2.484608286e-10 5.869825585e-11 9.910644965e-11 1.325314642e-10 2.760494193e-10 2.189333081e-10 1.560130092e-10 2.083050564e-10 1.618010723e-10 1.24887377e-10 1.181314892e-10 1.645817687e-10 4.637113407e-11 1.027850939e-10 9.425574311e-11 1.315792467e-10 1.412389845e-10 5.001343849e-11 1.228633316e-10 9.562950681e-11 9.122625544e-11 1.589846642e-10 9.073020002e-11 1.773464419e-10 1.201733406e-10 2.079613842e-10 1.002794614e-10 1.033584243e-10 7.644590354e-11 9.284486835e-11 1.513821636e-10 1.388215909e-10 5.068818437e-11 6.681418401e-11 2.815428761e-10 6.543727644e-11 1.592812825e-10 5.198332438e-11 1.0649934e-10 3.41961404e-10 2.427541535e-10 +7.140677198e-11 2.490493486e-10 2.001094004e-10 6.343762477e-11 1.541838679e-10 1.883017315e-10 5.786962164e-11 6.490987144e-11 7.40793291e-11 4.935592145e-10 3.952553245e-10 3.883834911e-10 2.14361238e-10 1.206437629e-10 1.384558382e-10 1.576997782e-10 1.504221619e-10 1.775636551e-10 1.730219944e-10 1.327112402e-10 2.276559758e-10 1.618264562e-10 2.234667574e-10 6.081962327e-11 1.592442437e-10 4.113875011e-11 1.895432825e-10 1.001560646e-10 5.53738518e-11 8.922395647e-11 1.44394269e-10 1.416589942e-10 1.226817669e-10 1.307830333e-10 2.023217722e-10 4.923367957e-11 2.152958022e-10 1.003457556e-10 1.352839821e-10 2.105774124e-10 1.310445338e-10 2.890811006e-10 2.470340246e-10 1.060526225e-10 2.062586023e-10 1.439102929e-10 1.18568627e-10 8.843151863e-11 1.897632173e-10 2.004641699e-10 1.589789746e-10 1.157653363e-10 2.056077585e-10 1.84043696e-10 1.065904526e-10 1.074314274e-10 1.446834392e-10 1.847705524e-10 9.954582813e-11 9.936833321e-11 1.555087597e-10 5.807868952e-11 1.994375619e-10 2.023669359e-10 2.346734209e-10 2.333658979e-10 3.628783136e-11 5.040259509e-11 1.325531508e-10 7.652222527e-11 1.443856817e-10 9.281331525e-11 2.308794467e-10 1.485166796e-10 4.010298326e-11 1.549870138e-10 1.683033073e-10 2.346090749e-10 1.062476917e-10 1.408693065e-10 2.140911671e-10 9.653510608e-11 2.575674189e-10 2.254608015e-10 1.914185531e-10 1.131247696e-10 2.590414995e-10 2.626827929e-10 1.307145365e-10 2.212111577e-10 2.356650459e-10 2.143438265e-10 2.244111455e-10 2.484716801e-10 3.428678305e-10 2.004447193e-10 4.006128669e-10 2.172473855e-10 2.975145653e-10 2.649399607e-10 8.317018599e-11 2.404172542e-10 8.640945106e-11 2.147070929e-10 2.139146999e-10 3.219097939e-10 2.518446325e-10 1.843811499e-10 2.368291935e-10 2.411060664e-10 3.478715158e-10 1.458354157e-10 1.629036521e-10 2.71392821e-10 1.776374096e-10 2.340144281e-10 1.004235845e-10 1.635571464e-10 1.22616371e-10 2.255592786e-10 2.465561471e-10 1.380210752e-10 1.530580101e-10 1.683513571e-10 1.929128061e-10 1.622003567e-10 1.977772695e-10 1.627675943e-10 1.104398479e-10 2.11174387e-10 3.207015103e-10 1.76671462e-10 1.311971559e-10 1.958672461e-10 1.853373331e-10 1.161697726e-10 7.899568762e-11 1.74178475e-10 1.61161959e-10 1.685880563e-10 1.584122686e-10 1.435573806e-10 2.765836399e-10 1.114032125e-10 7.676170874e-11 1.464317445e-10 1.96192989e-10 2.009332314e-10 1.562594732e-10 1.282696237e-10 1.597707766e-10 2.500505538e-10 1.584679047e-10 9.479615759e-11 1.22368934e-10 1.983059036e-10 2.967844349e-10 1.475300723e-10 1.578520931e-10 1.68211938e-10 1.687879891e-10 1.683235303e-10 1.640729507e-10 1.246204857e-10 1.149595735e-10 1.925988653e-10 2.180804577e-10 1.465753613e-10 3.213219516e-10 2.178882524e-10 1.555834124e-10 2.583608149e-10 1.199705095e-10 1.16063664e-10 2.405845961e-10 2.442331208e-10 2.405402398e-10 2.156578275e-10 1.180726864e-10 1.712895863e-10 1.934757701e-10 1.586337002e-10 1.632717962e-10 2.06191809e-10 1.330890971e-10 2.612612715e-10 1.831517598e-10 2.321666759e-10 2.563623258e-10 2.486762085e-10 2.68298142e-10 1.533181296e-10 8.861841036e-11 2.958577998e-10 2.233079515e-10 3.08538964e-10 2.928412871e-10 1.011363441e-10 2.028006776e-10 3.820340699e-10 6.8610429e-11 2.09103479e-10 2.095071615e-10 1.782637456e-10 1.745968721e-10 2.380745268e-10 2.836953197e-10 1.801022918e-10 2.281256295e-10 1.845014688e-10 2.32095457e-10 7.687274309e-13 1.55606403e-10 1.810090818e-10 2.68725258e-10 4.879920799e-11 3.037012927e-10 8.379842003e-11 1.545179205e-10 1.643806196e-10 1.970945395e-10 3.065552564e-10 1.743939377e-10 6.396068184e-11 1.176958151e-10 1.195536797e-10 2.245325304e-10 6.283332072e-11 2.482897948e-10 3.082050148e-10 1.071817332e-10 1.870350278e-10 1.180460872e-10 2.252621545e-10 4.467799958e-11 1.64676449e-10 2.481799738e-10 1.618532495e-10 2.262714508e-10 1.737122406e-10 1.068688342e-10 2.416523754e-10 2.078461487e-10 1.124840445e-10 1.166936403e-10 9.126835693e-11 8.448754005e-11 1.003250838e-10 9.083622999e-11 2.310742446e-10 1.170539487e-10 1.563064715e-10 2.100206242e-10 9.801839036e-11 1.922184869e-10 7.096767678e-11 1.365559038e-10 1.703279444e-10 8.358077862e-11 1.237858875e-10 1.319492424e-10 1.043805704e-10 8.520411168e-11 2.485258507e-10 6.008342106e-11 6.173152621e-11 2.11847835e-10 1.722213914e-10 1.206343995e-10 2.775915644e-10 7.883333781e-11 1.75988714e-10 1.762417642e-10 8.684070149e-11 3.549763198e-10 1.410657513e-10 1.719440483e-10 2.223055251e-10 1.215597687e-10 1.189624672e-10 1.392889025e-10 9.317674233e-11 1.864054691e-10 8.081479268e-11 3.033977039e-10 7.031802186e-11 9.46160258e-11 2.006769001e-10 1.038254133e-10 1.349977312e-10 8.459115165e-11 1.0245681e-10 2.651609166e-10 1.067658e-10 2.28840662e-10 2.217999002e-10 8.699300225e-11 1.005972329e-10 1.314713432e-10 6.362617187e-11 +2.761448305e-10 1.982536178e-10 8.610973855e-11 2.214913891e-10 9.806594741e-11 6.265454873e-11 1.768377249e-10 1.23746447e-10 2.279215861e-10 1.760400887e-10 5.86372213e-11 1.687445886e-10 1.442868245e-10 2.27528297e-10 6.457037871e-11 4.911225789e-11 1.290656848e-10 1.171774211e-10 1.394858696e-10 4.071793036e-11 1.010676526e-10 6.515568538e-11 1.53267443e-10 1.697139521e-10 1.573211034e-10 1.323266341e-10 2.060814008e-10 3.835604551e-11 1.220473654e-10 1.595337091e-10 1.047091418e-10 2.272257615e-10 6.016038376e-11 8.133366684e-11 1.140266118e-10 8.881173827e-11 9.562842319e-11 2.120228502e-10 8.001640313e-11 7.985413221e-11 2.533651078e-11 1.443865e-10 1.362382777e-10 2.358409348e-10 1.486422546e-10 3.444059405e-11 1.533735622e-10 1.161296951e-10 1.224277077e-10 2.105137503e-10 1.186106642e-10 8.968044988e-11 1.340678801e-10 1.435097871e-10 3.088775322e-11 7.137868361e-11 1.677015273e-10 2.01676587e-10 2.963060643e-10 2.656392512e-10 1.327437913e-10 9.402036687e-11 6.345995226e-11 7.4104487e-11 1.602069235e-10 2.326109524e-10 2.209605601e-10 1.433779157e-10 1.383058347e-10 1.425767864e-10 1.020948766e-10 1.588438628e-10 1.293983519e-10 2.163479496e-10 6.034728734e-11 8.820545241e-11 2.37094601e-10 1.246039028e-10 1.990708236e-10 1.109389134e-10 6.260686765e-12 2.803658162e-10 9.246283244e-11 7.889527484e-11 9.431909787e-11 2.297070232e-10 3.257423539e-10 3.477179489e-10 1.777495212e-10 1.95486787e-10 2.577400709e-10 1.128738557e-10 9.002657767e-11 2.097633121e-10 3.138362403e-10 1.954925377e-10 3.083287008e-10 2.014683081e-10 1.866489799e-10 3.731322942e-10 2.834285992e-10 2.440366798e-10 4.696880917e-10 3.246573689e-10 2.071840779e-10 9.867517953e-11 1.372847372e-10 2.245422393e-10 2.080294395e-10 1.71948102e-10 2.146706978e-10 2.379992338e-10 1.253443693e-10 1.575573999e-10 3.086754833e-10 1.718606122e-10 1.210570862e-10 2.22512661e-10 1.929788571e-10 2.015945185e-10 1.038461836e-10 1.558752772e-10 2.778461428e-10 1.40440994e-10 1.213004951e-10 5.636049143e-11 1.711025597e-10 3.014826612e-10 3.78630807e-10 1.225282538e-10 9.493918494e-11 3.064535411e-10 1.220316028e-10 2.846069903e-10 1.572332801e-10 2.015203968e-10 1.499121365e-10 8.694364222e-11 1.225186943e-10 1.504435232e-10 2.852951161e-10 1.287641025e-10 2.113434951e-10 9.181754576e-11 1.46608481e-10 1.422554415e-10 1.196496535e-10 1.460938109e-10 1.491987967e-10 2.055295559e-10 1.572003068e-10 9.90132732e-11 2.803675097e-10 1.33898932e-10 1.174538113e-10 1.934573685e-10 1.853629969e-10 1.937791341e-10 1.654115233e-10 1.552263024e-10 1.303929319e-10 2.375698025e-10 1.310322036e-10 1.334163712e-10 1.09305683e-10 1.210610494e-10 1.904211328e-10 1.864003597e-10 1.679303181e-10 2.265877895e-10 3.722475404e-10 1.738004523e-10 1.594436056e-10 2.625972624e-10 1.779726895e-10 1.344191314e-10 2.450957673e-10 2.459325171e-10 2.381707909e-10 2.871045517e-10 1.724297201e-10 1.732727537e-10 2.317707308e-10 2.221270932e-10 1.405194109e-10 2.55763048e-10 2.12139877e-10 1.493610901e-10 1.934520511e-10 2.382358172e-10 1.743795171e-10 2.04628365e-10 2.815637964e-10 2.945435641e-10 1.899524389e-10 2.352333392e-10 3.036670671e-10 2.180045954e-10 1.777812798e-10 2.602428015e-10 2.173194943e-10 3.344513984e-10 2.861285013e-10 1.515833424e-10 3.029878409e-10 2.197053954e-10 2.883230123e-10 2.191842803e-10 2.509821844e-10 2.276010427e-10 2.497571758e-10 1.474382794e-10 1.907272995e-10 1.9465065e-10 2.132661454e-10 1.488118545e-10 1.836832522e-10 1.083091408e-10 4.036842462e-11 1.75629852e-10 4.399649644e-11 2.865104168e-10 1.254296545e-10 6.090456839e-11 1.503682209e-10 3.06519954e-10 1.041140358e-10 1.751478929e-10 1.417710606e-10 1.273338824e-10 8.68885313e-11 7.133459781e-11 1.991435821e-10 1.362897887e-10 1.331048554e-10 1.247762149e-10 5.682808426e-11 1.432405333e-10 2.126786716e-10 7.844358447e-11 1.705427234e-10 2.035432246e-10 7.500437744e-11 9.596700057e-11 1.66289332e-10 1.220828866e-10 1.409296254e-10 8.421709405e-11 1.766734767e-10 7.393417691e-11 1.142007542e-10 1.534254041e-10 1.123683859e-10 1.464557131e-10 9.059235117e-11 9.723185856e-11 9.750244067e-11 1.388957788e-10 1.9907464e-10 1.934856241e-10 3.339986946e-10 1.347497325e-10 1.159540734e-10 6.073481898e-11 2.2738382e-10 2.927556171e-10 9.384148367e-11 3.580673259e-10 3.00054362e-10 1.088171928e-10 8.150485134e-11 7.862986454e-11 9.064961156e-11 1.500278368e-10 8.841356786e-11 2.097832812e-10 5.776533625e-11 1.748822141e-10 2.826874291e-10 4.541595654e-11 9.412515323e-11 9.851208773e-11 6.870843253e-11 1.005317374e-10 5.535740149e-11 2.181106388e-10 8.758218342e-11 1.131879192e-10 1.562105104e-10 1.525230389e-10 1.683529631e-10 1.44583651e-10 1.090860594e-10 1.622947634e-10 1.508412643e-10 3.233553787e-10 1.224720592e-10 2.81920374e-11 5.454374513e-11 1.833256892e-10 +9.689247127e-11 1.206972063e-10 2.591281536e-10 1.527690841e-10 1.378237711e-10 1.152143425e-10 5.094757662e-11 3.447662822e-11 3.084907706e-10 3.299616761e-11 6.478920494e-11 1.164063575e-10 3.651573555e-11 1.84757338e-10 1.3327637e-10 1.782438896e-10 3.790858806e-11 1.96230506e-10 1.471684059e-10 2.675186348e-10 1.222639681e-10 1.731229414e-10 9.942239638e-11 9.68191344e-11 2.352790787e-10 1.175054247e-10 2.068196692e-10 1.91401723e-11 1.504362886e-10 1.132153359e-11 2.451484058e-11 2.166771774e-10 1.357597008e-10 1.288178271e-10 1.478824444e-10 2.251288039e-10 1.872110391e-10 9.390251252e-11 2.268820265e-10 1.898908459e-10 9.439263999e-11 7.156186635e-11 9.572940956e-11 7.191703724e-11 1.984304284e-10 9.266596113e-11 1.270417611e-10 1.83080621e-10 1.048840093e-10 1.143420087e-10 2.514938927e-10 8.55944564e-11 1.335491967e-10 1.67016992e-10 2.376336865e-10 1.663540013e-10 1.020739725e-10 1.798947526e-10 2.956781103e-10 1.775638706e-10 9.164245614e-11 1.583018148e-10 5.749280391e-11 1.20649837e-10 2.159796752e-10 7.442071943e-11 7.997831235e-11 6.651858775e-11 1.647499359e-10 2.020811848e-10 1.514192217e-10 1.683763023e-10 1.803438211e-10 2.086560146e-10 2.47137708e-10 8.6369405e-11 1.107158675e-10 5.689239262e-11 6.773123061e-11 1.357934772e-10 2.299747694e-10 7.25322193e-11 1.548633094e-11 6.985933258e-11 7.749583747e-11 2.417435791e-10 1.992721316e-10 2.919288436e-10 2.123723217e-10 1.249477957e-10 1.775003072e-10 2.532517667e-10 2.226330087e-10 2.489232841e-10 1.404613986e-10 3.425540141e-10 2.496746297e-10 3.027752121e-10 1.545150678e-10 2.975692829e-10 1.029843908e-10 9.406487422e-11 2.843216511e-10 1.671787543e-10 1.189191733e-10 1.56133809e-10 1.710362816e-10 2.216413148e-10 2.468550341e-10 1.195467869e-10 2.891029188e-10 8.627051993e-11 1.905973113e-10 2.165100968e-10 3.838616483e-10 2.90974467e-10 1.421021225e-10 5.392506614e-11 1.943782502e-10 1.97842141e-10 2.624320068e-10 3.81960274e-10 1.811410681e-10 2.04407028e-10 1.12902121e-10 3.402251547e-10 1.021227053e-10 3.332726598e-10 1.864255166e-10 1.540461114e-10 1.454991446e-10 2.167393111e-10 1.503598091e-10 1.492155044e-10 1.485246304e-10 2.724279112e-10 1.675419117e-10 1.94691257e-10 1.923375214e-10 1.048911864e-10 1.314488591e-10 1.405555468e-10 1.499151475e-10 2.624264194e-10 2.839539717e-10 1.869392811e-10 9.093760568e-11 2.198495416e-10 7.802527671e-11 2.376580704e-10 2.063415345e-10 9.870919447e-11 8.434395519e-11 1.312530094e-10 1.901684819e-10 2.245151895e-10 1.173308187e-10 2.23482228e-10 2.041230174e-10 1.846636609e-10 2.616216027e-10 9.997198024e-11 1.093827912e-10 1.960020608e-10 2.259763126e-10 9.342095252e-11 2.3340646e-10 2.03235187e-10 1.25113247e-10 4.057112725e-10 1.36418642e-10 1.781679632e-10 2.775806592e-10 2.197394687e-10 2.327213778e-10 1.275256506e-10 1.5595353e-10 2.888826616e-10 1.137523498e-10 1.84606465e-10 8.400723815e-11 1.155384782e-10 1.334984762e-10 1.409552364e-10 1.7408456e-10 1.50166191e-10 1.393154222e-10 2.038027653e-10 3.435417169e-10 1.347645549e-10 1.503816819e-10 3.475616933e-10 1.455080048e-10 1.945168406e-10 2.453620838e-10 2.043558966e-10 1.667459305e-10 2.558298081e-10 2.247875485e-10 3.581031251e-10 1.992349156e-10 3.50995438e-10 1.787301054e-10 3.114620575e-10 1.403382085e-10 1.940422163e-10 3.546011771e-10 1.657267242e-10 8.286304694e-11 1.3700695e-10 2.217084225e-10 7.445694826e-11 2.064588133e-10 1.537522726e-10 2.330866132e-10 2.063931712e-10 1.228850368e-10 1.815709251e-10 2.424937909e-10 7.915775794e-11 1.708359253e-10 7.543075419e-11 9.302552425e-11 1.861970459e-10 1.713870289e-10 1.34921579e-10 9.929822928e-11 1.00433392e-10 2.731787357e-10 1.716137478e-10 1.389439187e-10 2.410553754e-10 1.185969985e-10 2.562344055e-10 6.211026772e-11 9.492559014e-11 1.912871573e-10 1.944842444e-10 2.487679682e-10 3.281419182e-10 7.956660741e-11 1.705931709e-10 1.293805586e-10 1.411584664e-10 1.207429529e-10 2.835080706e-10 2.412773011e-10 2.051682341e-10 1.47199082e-10 1.432857608e-10 2.696731606e-10 1.550055599e-10 2.172756086e-10 2.332712381e-10 2.00926099e-10 7.57309735e-11 1.351785046e-10 8.508824617e-11 1.975642714e-10 1.831115128e-10 2.022462674e-10 1.187535347e-10 1.037989081e-10 1.056389534e-10 9.049456204e-11 1.278907475e-10 1.546390214e-10 2.291313824e-10 9.27069032e-11 1.233936518e-10 5.167290041e-11 6.016181314e-11 2.170479246e-10 1.880856672e-10 4.03776553e-11 6.666987499e-11 9.377479143e-11 8.916658016e-11 1.340602465e-10 7.615125761e-11 8.963127812e-11 8.14965103e-11 4.849861365e-11 8.261323538e-11 1.732451176e-10 3.60063543e-10 1.402460667e-10 2.307846991e-10 1.313030578e-10 2.627918894e-10 5.810313849e-11 1.139799497e-10 1.115239066e-10 5.639639092e-12 1.028605789e-10 2.040354602e-10 1.199743573e-10 2.51372302e-10 1.921730719e-10 5.161616239e-11 +2.388299542e-10 1.253170101e-10 5.404454846e-11 1.209080161e-10 2.43444288e-10 1.1984104e-10 1.687889219e-10 2.757308867e-10 1.595598982e-10 2.663682496e-11 1.34278629e-10 2.673205867e-10 2.902397488e-11 2.44542295e-11 1.159909969e-10 1.148101664e-10 2.179672078e-10 1.787196007e-10 4.80042587e-11 5.585594314e-11 4.205113277e-10 6.662897272e-11 1.06208088e-10 1.220896993e-10 7.50792003e-11 1.176153799e-10 2.292940106e-10 1.081116544e-10 4.700575628e-11 5.082379237e-10 1.452992572e-10 5.564348485e-11 1.413279019e-10 2.80459453e-10 9.620519211e-11 1.308342113e-10 1.894959226e-10 1.494199814e-10 1.500366362e-10 2.363018584e-10 1.081734428e-10 1.085188667e-10 7.528450207e-11 8.665884386e-11 1.759537959e-10 6.853161649e-11 9.646354185e-11 2.640748224e-10 4.235032859e-11 1.3975446e-10 9.452796035e-11 3.797090672e-11 2.703520048e-10 1.767275548e-10 3.516269274e-10 2.254174574e-10 2.927727376e-10 2.563546507e-10 2.000372871e-10 2.049062395e-10 1.238319501e-10 1.195960208e-10 1.078029057e-10 2.378852289e-10 1.132691033e-10 9.724990604e-11 9.765197623e-11 2.363347947e-10 1.570027202e-10 2.584139987e-10 7.541926574e-11 1.483036316e-10 1.55966919e-10 1.993059679e-10 4.778121661e-11 1.242617544e-10 1.149697522e-10 1.554771937e-10 1.695166512e-10 1.465302823e-10 4.114384966e-11 1.800286967e-10 1.485878704e-10 1.775593979e-10 2.297296024e-10 2.985511931e-10 1.093774298e-10 2.081366805e-10 2.022605834e-10 3.972819734e-10 1.590368682e-10 1.352132665e-10 3.919497211e-10 1.860220802e-10 2.455485392e-10 1.425770689e-10 1.955578585e-10 1.635327649e-10 1.149292978e-10 1.648047397e-10 2.251098616e-10 2.282026446e-10 1.062060708e-10 2.357743814e-10 2.212438708e-10 2.513082847e-10 2.08268348e-10 1.91028656e-10 1.49509792e-10 1.156238922e-10 1.809233085e-10 2.932093871e-10 1.110184308e-10 2.156438321e-10 1.886562905e-10 2.734634431e-10 2.060375902e-10 3.015696988e-10 3.309282239e-10 1.62548807e-10 1.621164724e-10 1.631275727e-10 1.333395048e-10 1.699644404e-10 1.230904024e-10 1.11831221e-10 2.273354818e-10 3.119029897e-10 2.865055547e-10 2.132704431e-10 1.363660543e-10 1.46007756e-10 1.652984564e-10 1.913583477e-10 2.074693706e-10 1.236838329e-10 2.570239472e-10 9.009111436e-11 4.251766205e-11 2.245852232e-10 1.727392161e-10 1.236766942e-10 1.301532523e-10 2.586748042e-10 1.309013887e-10 1.177352022e-10 9.731783587e-11 2.016893848e-10 1.631263594e-10 6.888062152e-11 1.930330877e-10 1.89090951e-10 1.505675224e-10 2.364334052e-10 1.403681926e-10 2.0128468e-10 2.644901202e-10 1.581472929e-10 8.023872371e-11 2.318538424e-10 1.766026582e-10 2.791132229e-10 2.484931502e-10 1.083458995e-10 8.131782502e-11 1.615987235e-10 3.063103969e-10 1.62621005e-10 2.102991919e-10 1.343179365e-10 1.591629256e-10 8.552050985e-11 1.542835012e-10 1.691418613e-10 2.275812968e-10 1.647541634e-10 1.285463174e-10 2.176321872e-10 2.436045972e-10 2.212954467e-10 1.771440392e-10 1.423014526e-10 1.687446945e-10 7.850505145e-11 2.512360405e-10 1.601032988e-10 2.058874894e-10 1.341991928e-10 2.144435321e-10 1.072497831e-10 1.767389209e-10 1.826411293e-10 3.525816196e-10 1.065765227e-10 1.884082837e-10 3.245689324e-10 2.118346412e-10 2.736481034e-10 1.512540277e-10 2.905662975e-10 2.121232665e-10 1.478447363e-10 3.032965928e-10 2.693401e-10 2.100805519e-10 2.261660679e-10 2.499151698e-10 2.672633843e-10 1.648232692e-10 2.064446696e-10 2.25150477e-10 1.934458411e-10 2.004093466e-10 1.143705992e-10 1.547545682e-10 5.07562615e-11 1.048898987e-10 3.753979302e-11 7.324771812e-11 1.352529649e-10 2.46688555e-10 1.585051685e-10 1.996929386e-10 1.02089823e-10 1.408889103e-10 1.472333809e-10 1.331873812e-10 1.071189956e-10 9.807143966e-12 1.95557812e-10 1.970205459e-10 3.71476087e-10 1.382933012e-10 1.127946325e-10 1.204557943e-10 1.651100785e-10 1.208378563e-10 1.657039117e-10 2.305637691e-10 1.744095183e-10 2.287563206e-10 2.420084032e-10 1.987442043e-10 1.379842435e-10 9.123418e-11 9.789804369e-11 9.054520552e-11 2.269723655e-10 1.06519089e-10 1.91589596e-10 1.509119916e-10 1.447806408e-10 6.280338705e-11 5.827092775e-11 4.148286207e-10 2.370223433e-10 7.140285597e-11 1.544876479e-10 1.464342041e-10 1.572161975e-10 1.475413473e-10 1.907194686e-10 1.009029347e-10 1.444310952e-10 1.852139188e-10 2.793507722e-11 1.850402478e-10 1.5323816e-10 1.481636049e-10 2.446588918e-10 2.24239795e-10 1.332020926e-10 1.780147312e-10 3.176961178e-11 1.420726001e-10 1.31741088e-10 9.42169078e-11 1.617506555e-10 1.052131119e-10 3.255029169e-10 8.192412057e-11 1.368758932e-10 2.347819953e-10 1.383714675e-10 3.331013161e-11 5.554207462e-11 1.931085113e-10 2.709314331e-10 5.689047926e-11 1.518767019e-10 6.251165385e-11 1.798997559e-10 1.687186104e-10 2.329522127e-10 1.007097296e-10 6.436620134e-11 7.835294991e-11 1.199918277e-10 1.402960918e-10 2.661355185e-10 +1.777483405e-10 7.599619671e-11 4.678227564e-10 1.209145137e-10 1.698352578e-10 3.26533154e-11 3.454392299e-10 1.999066147e-10 3.927908107e-11 1.555493138e-10 1.84070925e-10 6.572092884e-11 2.415471594e-11 7.867842684e-11 8.714298194e-11 9.16471987e-11 1.548864033e-10 1.01921796e-10 2.481546896e-10 3.18568843e-11 8.928535434e-11 4.584053179e-11 7.700429765e-11 1.77371398e-10 2.148383505e-10 4.624344087e-11 1.28087954e-10 3.509149666e-10 8.980987355e-11 1.073578334e-10 3.526917586e-10 5.118398912e-11 1.48801138e-10 1.37927509e-10 3.318376686e-10 1.498692428e-10 2.303940162e-10 2.343597043e-10 1.764115324e-10 1.711898251e-10 5.325401476e-11 2.089151261e-10 1.813735887e-10 1.778839737e-10 2.10377044e-10 1.322339329e-10 1.349832654e-10 2.019710557e-10 2.506012081e-10 2.825408578e-10 9.93814204e-11 1.308296475e-10 1.374502932e-10 4.647039704e-11 1.281570905e-10 1.845732615e-10 7.009553229e-11 1.178385727e-10 1.141182566e-10 1.237468033e-10 1.900334884e-10 3.468277608e-10 1.111038323e-10 2.117227961e-10 7.727544019e-11 8.66422739e-11 1.043964726e-10 1.955211061e-10 1.972390153e-10 1.693709714e-10 1.453212972e-10 1.194722146e-10 1.515111084e-10 1.901935849e-10 1.288830847e-10 8.651655347e-11 1.526574133e-10 1.201531356e-10 1.513877489e-10 1.727113288e-10 8.188922668e-11 9.870489545e-11 1.944261155e-10 3.927163268e-11 1.82490963e-10 1.239067674e-10 8.281553936e-11 1.999769491e-10 1.919482396e-10 1.543614764e-10 2.437732552e-10 1.873657068e-10 2.151488117e-10 2.22041737e-10 3.640466234e-10 3.840755337e-10 2.286849198e-10 1.064590003e-10 7.80006781e-11 5.608107718e-11 1.880618143e-10 2.352279469e-10 2.928691269e-10 3.01911757e-10 2.65221775e-10 3.022203162e-10 1.858988545e-10 3.142158331e-10 1.579785939e-10 1.831908204e-10 1.525644116e-10 2.452985037e-11 3.241466052e-10 1.983651996e-10 2.722956091e-10 2.498836736e-10 1.074630389e-10 2.723629332e-10 3.596682604e-10 2.313200074e-10 1.992134282e-10 1.357626352e-10 2.310516412e-10 1.878278781e-10 2.398703749e-10 1.332692496e-10 2.218148447e-10 1.976059255e-10 1.083299451e-10 1.189200403e-10 2.748733943e-10 2.35237852e-10 2.00597164e-10 1.530481469e-10 1.72053594e-10 1.50454811e-10 1.022056445e-10 1.770547159e-10 6.372478911e-11 1.643731986e-10 1.438292995e-10 1.406801699e-10 1.113325119e-10 5.408193571e-11 1.0500817e-10 1.310758199e-10 2.034184756e-10 1.161595054e-10 2.358538253e-10 1.990418662e-10 1.718921821e-10 9.430240996e-11 1.474766571e-10 1.852337456e-10 3.37327912e-10 1.330552796e-10 2.817256534e-10 1.337313807e-10 1.15746292e-10 2.181314723e-10 1.448973096e-10 2.290183755e-10 2.150606469e-10 1.87768529e-10 2.122842296e-10 2.009665027e-10 2.264023892e-10 1.590569923e-10 2.236411928e-10 2.73379806e-10 9.077917481e-11 1.767820875e-10 3.39928267e-10 1.723998373e-10 1.825762199e-10 2.598266952e-10 9.374145616e-11 1.675767133e-10 3.011541634e-10 2.398670317e-10 2.685346576e-10 2.603202177e-10 2.052640249e-10 1.684951656e-10 1.484193648e-10 1.373338162e-10 1.145014493e-10 1.407281728e-10 1.378088369e-10 6.458945767e-11 7.347611866e-11 5.265036966e-11 2.697949583e-10 3.135264013e-10 3.183873429e-10 1.021303715e-10 2.025445418e-10 1.830612315e-10 3.853192289e-10 2.653682731e-10 2.191868202e-10 1.959086569e-10 1.485469156e-10 1.791008618e-10 1.754042475e-10 1.892752187e-10 3.18841209e-10 1.535498526e-10 1.309022503e-10 2.803643873e-10 2.085184276e-10 4.192784869e-11 9.834219403e-11 1.137285841e-10 2.653283852e-10 1.544501069e-10 6.083036003e-11 8.517138182e-11 1.976097057e-10 2.049383678e-10 2.014508486e-10 1.718437771e-10 1.225710021e-10 2.234795307e-10 3.181691583e-11 1.465770882e-10 2.099978271e-10 1.605306359e-10 1.700990799e-10 3.147438537e-10 5.093911734e-11 2.831602935e-10 1.45533267e-10 1.617452235e-10 7.50824101e-11 1.882427797e-10 7.757867904e-11 8.198083326e-11 8.960391046e-11 5.600499397e-11 1.714500234e-10 2.130152658e-10 2.473560704e-10 7.635115613e-11 1.475138224e-10 1.845674025e-10 2.153322955e-10 6.517220265e-11 1.472272218e-10 3.17247284e-10 2.073875855e-10 9.786793833e-11 4.916671137e-11 5.327761768e-11 1.361781097e-10 2.310266557e-10 2.478102537e-10 1.291852064e-10 1.96859203e-10 1.655289874e-10 2.066733257e-10 1.473432552e-10 1.170486251e-10 1.844781114e-10 3.158304106e-10 1.624531237e-10 6.784934412e-11 4.863160244e-11 8.569831808e-11 1.856276739e-10 1.532177561e-10 1.760839322e-10 2.449158013e-10 7.075903777e-11 1.024438741e-10 8.086837437e-11 1.598114672e-10 6.320929215e-11 6.528874952e-11 8.835427897e-11 1.319918638e-10 1.687518749e-10 1.607226494e-10 1.350523949e-10 6.183491254e-11 2.877376626e-11 1.878447381e-10 1.909193113e-10 1.228296368e-10 1.369428508e-10 1.217550831e-10 2.57564927e-11 2.604688242e-10 5.947094855e-11 9.121678424e-11 1.096851754e-10 1.577622982e-10 5.426393381e-11 5.931699545e-11 5.906931927e-11 +6.802318874e-11 8.080825415e-11 1.642381048e-10 2.555347439e-10 5.556051229e-11 6.318576418e-11 9.380871484e-11 1.301955848e-10 1.139657992e-10 2.391914295e-10 9.612500651e-11 6.604230333e-11 8.24040636e-11 5.849802186e-11 4.228896359e-11 1.440019671e-10 2.900666548e-10 2.000729176e-10 1.167728549e-10 6.598152159e-11 1.905089933e-10 2.89952202e-10 2.748370103e-10 3.885879674e-11 1.382173594e-11 3.24074789e-10 1.582522522e-10 1.83058997e-10 1.438556301e-10 1.858459931e-10 2.12077232e-10 6.430707763e-11 1.053640143e-10 1.67832904e-10 1.350998458e-10 1.980920716e-10 1.031403332e-10 2.233291055e-10 1.491301536e-10 1.100109043e-10 1.291833439e-10 8.79632664e-11 7.377790057e-11 2.189128312e-10 1.278616834e-10 9.512053883e-11 1.501407502e-10 1.352315958e-10 4.247875316e-11 1.157512608e-10 1.784191592e-10 3.164396163e-10 1.496211808e-10 1.073447817e-10 3.473000826e-11 1.001218103e-10 1.961974571e-10 1.947295991e-10 1.952538573e-10 2.311615818e-10 1.294589079e-10 6.590548312e-11 2.612059119e-10 2.159091093e-11 1.186352101e-10 5.75387741e-11 1.215920427e-10 6.844636011e-11 2.018675625e-10 1.256763908e-10 4.397692308e-11 3.015827565e-10 7.019054232e-11 2.982063612e-10 5.759858789e-11 8.98480375e-11 1.67396903e-10 1.530776151e-10 8.274498483e-11 1.381687778e-10 9.68795466e-11 4.36609041e-11 2.202549198e-10 1.385947275e-10 1.937726237e-10 2.295320224e-10 2.778187327e-10 2.782210043e-10 3.396561118e-10 1.237574824e-10 1.824021769e-10 1.54661516e-10 1.595232552e-10 1.026221438e-10 1.971309844e-10 2.589487973e-10 3.173914813e-10 2.541453185e-10 1.953330168e-10 7.865098587e-11 1.823491045e-10 1.861089323e-10 2.599190417e-10 1.36953096e-10 2.774989179e-10 1.357231541e-10 1.793661152e-10 1.972529402e-10 2.056583887e-10 1.818812634e-10 2.844185723e-10 1.616977051e-10 4.079304438e-10 2.532329367e-10 2.059890038e-10 2.026635518e-10 2.069086311e-10 1.054085462e-10 1.861335892e-11 1.136542845e-10 8.413349836e-11 1.75759436e-10 1.113892845e-10 4.626980151e-11 1.728332235e-10 1.322791439e-10 1.54696926e-10 1.224867874e-10 1.133971473e-10 3.909258628e-10 1.357322379e-10 3.501675232e-10 1.681641203e-10 1.310992344e-10 1.560773038e-10 1.812874846e-10 1.543224493e-10 2.43245453e-10 1.154512413e-10 1.635642834e-10 2.213170934e-10 1.909154124e-10 1.734688508e-10 1.725570499e-10 1.00343813e-10 2.375994784e-10 1.843797973e-10 2.533066073e-10 2.687689389e-10 2.085116797e-10 2.298289347e-10 1.392699123e-10 1.676044547e-10 1.670483951e-10 8.467583794e-11 1.186483129e-10 1.845512689e-10 2.182187572e-10 7.505421768e-11 2.890927358e-10 2.367656444e-10 1.481387679e-10 2.138180258e-10 2.46312316e-10 4.87560152e-11 2.109350129e-10 2.536253531e-10 1.698452989e-10 1.151589363e-10 3.842800434e-11 3.010227371e-10 2.208907824e-10 2.220936182e-10 1.353066519e-10 1.476194031e-10 2.097760711e-10 1.732256944e-10 2.066947528e-10 1.776246528e-10 1.141625115e-10 2.001046479e-10 1.766079651e-10 2.054453641e-10 2.25129927e-10 1.836804737e-10 1.248667037e-10 2.704353209e-10 2.155702633e-10 9.497906691e-11 2.108345976e-10 2.85920705e-10 1.043219079e-10 2.425174767e-10 1.950753466e-10 1.897699351e-10 1.879014273e-10 2.076536757e-10 2.833108832e-10 1.851591302e-10 2.799046394e-10 3.401632841e-10 1.057187476e-10 2.271117764e-10 3.655345124e-10 2.627721669e-10 2.761736671e-10 1.341218095e-10 2.46689184e-10 1.542202787e-10 3.186444895e-10 2.723993431e-10 1.816939442e-10 1.773803971e-10 1.405341269e-10 1.224310578e-10 1.043873518e-10 2.171838385e-10 1.962867876e-10 1.138442096e-10 1.048553544e-10 5.797054279e-11 2.120675247e-10 6.838218926e-11 2.134396629e-11 1.827652276e-10 2.72268772e-10 9.690140626e-11 7.772070977e-11 4.794929965e-11 2.306188966e-11 1.550580994e-10 4.959604361e-11 1.658096701e-10 1.780922637e-10 1.33512972e-10 6.900963503e-11 1.495006621e-10 2.617181158e-10 1.804826733e-10 1.703460279e-10 9.609437857e-11 1.213773798e-10 3.311239492e-10 1.052773267e-10 1.359847067e-10 5.211343786e-11 5.867085933e-11 1.436338384e-10 2.560215423e-10 9.462034109e-11 1.313760774e-10 1.201670457e-10 2.412141229e-10 1.242619727e-10 1.36578584e-11 1.013259602e-10 1.881165297e-10 1.454027031e-10 2.593778826e-10 1.21040204e-10 2.756105242e-10 1.170376438e-10 7.695813509e-11 2.162092081e-10 4.006684026e-11 3.144101037e-10 3.669448353e-11 1.120757443e-10 1.50377529e-10 1.860737132e-10 1.252019904e-10 1.758773942e-10 1.174780887e-10 1.75902226e-10 1.433658399e-10 2.348235843e-10 7.714996442e-11 1.10635469e-10 1.039550665e-10 4.682886201e-11 1.264386775e-10 3.138014281e-10 3.105454403e-11 1.360470661e-10 1.918099944e-10 1.228911186e-10 6.827412039e-11 2.222403714e-10 1.418421546e-10 3.046978132e-10 1.164294181e-10 1.810521784e-10 1.70586205e-10 4.439242903e-11 8.193812501e-11 1.641948371e-10 3.610925482e-11 9.344337982e-11 9.924924226e-11 1.543203206e-10 +1.756830924e-10 1.354992922e-10 3.976902523e-10 1.395290736e-10 4.521619356e-11 2.587384653e-10 2.368229586e-10 3.761197812e-11 5.02202096e-11 1.124115501e-10 6.082320706e-11 1.379029526e-10 7.305196833e-11 1.11712513e-10 6.582896065e-12 1.565337909e-10 2.279973129e-11 3.742882287e-11 1.304064505e-10 8.676617587e-11 4.432791942e-11 2.62566661e-10 2.107081402e-10 6.332849308e-11 1.568294152e-10 2.815947819e-10 2.660062266e-10 8.864352107e-11 9.581292503e-11 2.470562965e-11 7.623371384e-11 1.871865186e-10 6.218783545e-11 3.107896552e-10 1.262614143e-10 3.433491984e-11 2.760544169e-10 7.524689822e-11 1.236164092e-10 7.941529311e-11 2.410560516e-10 1.62529056e-10 6.899618672e-11 1.202803999e-10 1.497339772e-10 1.134368975e-10 7.914269881e-11 1.886443229e-10 3.544112056e-10 1.988056138e-10 8.430961388e-11 1.095888097e-10 9.24771164e-11 2.010195324e-10 1.595880896e-10 2.775310055e-10 1.759132267e-10 3.211756085e-10 1.173110626e-10 1.216073044e-10 1.539382916e-10 1.262098081e-10 2.57687187e-10 1.961323869e-10 8.646370331e-11 9.316842589e-11 1.06003061e-10 2.209631451e-10 2.043885265e-10 2.840494718e-10 7.594040779e-11 8.994846708e-11 2.74056235e-11 8.255264282e-11 5.395008331e-11 6.261146493e-11 1.979122048e-10 1.270945696e-10 1.035726162e-10 2.597653546e-10 2.09179577e-10 4.802307224e-11 1.018519626e-10 9.7070152e-11 4.329682564e-11 1.288377119e-10 1.802057244e-10 8.151125083e-11 1.306230221e-10 1.36360802e-10 2.130423785e-10 3.064185812e-10 1.627887478e-10 2.857062522e-10 2.82384409e-10 2.970226787e-10 1.329426268e-10 1.946305797e-10 1.721109895e-10 1.395284684e-10 1.446171203e-10 2.434725524e-10 2.906222667e-10 1.840846754e-10 2.610714815e-10 2.405273419e-10 1.355657123e-10 2.306013795e-10 2.462720233e-10 2.031221971e-10 3.77526648e-10 1.636654592e-10 2.199437118e-10 1.577733116e-10 2.62904683e-10 1.878787272e-10 1.336696461e-10 1.125712155e-10 1.433780441e-10 9.558703007e-11 2.340108428e-10 2.72915258e-10 2.217047761e-10 1.618657274e-10 1.098731674e-10 3.636843397e-10 5.532046284e-11 9.942846676e-11 2.71358461e-10 1.255024428e-10 1.904444937e-10 1.398784855e-10 7.557351341e-11 2.912826275e-10 1.534006914e-10 1.238800008e-10 2.138859864e-10 1.810933926e-10 1.939222113e-10 1.109876229e-10 1.022971226e-10 9.357310574e-11 8.085470561e-11 9.963329815e-11 1.24216917e-10 9.48501552e-11 3.128067407e-10 1.155994968e-10 1.84869649e-10 8.469101804e-11 1.084221231e-10 1.54400858e-10 3.819689776e-10 1.806491187e-10 1.639656592e-10 1.939360295e-10 1.274562748e-10 1.010596057e-10 1.181553658e-10 3.009173141e-10 2.885675151e-10 2.044643648e-10 1.267746072e-10 1.873010245e-10 1.084030533e-10 1.390457352e-10 2.621148027e-10 2.197244416e-10 1.649001483e-10 6.294759964e-11 1.548489319e-10 2.475252424e-10 2.215328667e-10 3.147929676e-10 1.362596013e-10 1.427955528e-10 1.362441765e-10 1.246758673e-10 2.395167465e-10 2.002936766e-10 2.374290482e-10 1.317159134e-10 1.446318287e-10 2.566757162e-10 2.652487946e-10 1.968585756e-10 2.786052257e-10 1.503897346e-10 1.176816493e-10 1.697851107e-10 9.194741723e-11 6.633029817e-11 8.751061022e-11 9.909458009e-11 2.34293683e-10 1.416530683e-10 2.188859081e-10 1.689203635e-10 1.875295264e-10 2.097187076e-10 2.278565324e-10 2.140265815e-10 2.778153984e-10 1.76760517e-10 3.316221013e-10 2.714822424e-10 2.245118791e-10 2.542707484e-10 2.913127909e-10 5.348225776e-13 1.503102234e-10 1.243237117e-10 2.076925665e-10 2.419722675e-10 2.8104296e-11 1.280577009e-10 1.710260851e-10 2.28736742e-10 3.367307148e-11 3.111842793e-11 1.265942632e-10 1.146202184e-10 1.737649911e-10 3.333464075e-11 9.164005324e-11 2.439611007e-10 1.198613821e-10 3.434567184e-11 1.399653077e-10 1.049387262e-10 1.025917424e-10 4.038448933e-11 9.893079706e-11 4.061311217e-10 1.538529056e-10 1.141423828e-10 1.141298988e-10 2.159216865e-10 2.567632573e-10 2.353738048e-10 2.947693669e-10 1.631742738e-10 6.53855582e-11 1.429231906e-10 5.035736146e-11 1.266571698e-10 1.382599123e-10 1.641639476e-10 5.037226916e-11 1.599613779e-10 8.985314269e-11 6.830545907e-11 1.324636228e-10 1.229724847e-10 1.108108114e-10 1.889116149e-10 1.552379144e-10 8.006121674e-11 1.031817938e-10 1.84190516e-10 1.063793029e-10 1.445568552e-10 2.075958945e-11 9.174796125e-11 2.668049961e-10 9.586243983e-11 1.434486385e-10 6.053496314e-11 1.46606856e-10 1.342479314e-10 4.657693234e-11 2.018520627e-10 1.293224696e-10 1.454228085e-11 1.263972179e-10 1.542931502e-10 1.091708654e-10 4.890640084e-11 3.234410308e-11 6.438920396e-11 1.418775918e-10 1.069130564e-10 1.633908229e-10 6.668781099e-11 3.725494349e-11 1.054628067e-10 5.368751396e-11 3.657726453e-10 6.17315745e-11 1.595872425e-10 2.948557142e-10 5.843521397e-11 5.283469142e-11 7.253355938e-11 1.137340983e-10 4.175052594e-11 2.288051832e-10 3.904095252e-11 5.351618985e-11 9.14290071e-11 +1.550999872e-10 1.099521664e-10 6.749392228e-11 1.73869818e-10 7.014415296e-11 1.822833417e-10 1.5263828e-10 2.257261236e-10 9.020877186e-11 5.603332396e-11 1.295167623e-10 6.57147043e-11 8.792181358e-11 9.25650583e-11 1.124589131e-11 8.038805873e-11 2.215674974e-10 9.738482337e-11 2.494257314e-10 6.260419948e-11 8.715747481e-11 2.021965565e-10 1.232216211e-10 6.559942901e-11 9.845462444e-11 4.897916157e-11 1.456760167e-10 1.871763061e-10 1.25061676e-10 1.563969809e-10 1.728764789e-10 1.76452153e-10 3.274720083e-10 2.03833651e-10 7.256191377e-11 7.861043709e-11 2.591898798e-10 1.130711867e-10 3.424987678e-10 1.707530695e-10 9.46018977e-11 7.656756632e-11 1.123377324e-10 2.723290137e-10 7.604265506e-11 1.287814009e-10 1.897534124e-10 1.539614334e-10 4.050981328e-10 9.428192502e-11 1.018981961e-10 1.06818905e-10 3.161560153e-10 1.913402546e-10 2.413248292e-10 1.786098007e-10 4.471495828e-11 1.067676212e-10 1.680809328e-10 1.674369616e-10 1.7119549e-10 1.450259291e-10 2.829265348e-10 9.632617497e-11 1.545441286e-10 8.534257519e-11 1.99825592e-10 3.036264743e-11 4.530017126e-11 9.921059944e-11 1.210020871e-10 6.734150557e-11 2.098886985e-10 1.050296197e-10 1.032179582e-10 1.036523714e-10 1.4278898e-10 1.273973203e-10 1.712074704e-10 1.711240827e-10 3.058125965e-10 1.864585706e-10 1.398027398e-10 1.568276566e-10 1.7736626e-11 7.853371783e-11 1.086471802e-10 9.519034449e-11 2.273535908e-10 1.036449041e-10 1.264181247e-10 4.151698573e-10 1.607077926e-10 1.648238242e-10 9.796446377e-11 2.486451928e-10 1.751793108e-10 3.451828068e-10 3.148701386e-10 1.788007632e-10 1.613881648e-10 1.592883252e-10 2.34117171e-10 2.130106428e-10 2.707651963e-10 1.582273979e-10 1.774533469e-10 1.700658632e-10 1.427078391e-10 1.504687684e-10 5.728883615e-11 8.464450238e-11 1.838699452e-10 1.434597352e-10 1.551302648e-10 1.60720136e-10 2.635321807e-10 2.436830958e-10 1.942761018e-10 1.778328948e-10 1.225544322e-10 2.115094141e-10 1.608518527e-10 4.927423125e-11 1.072663361e-10 1.337329979e-10 8.278189863e-11 2.452987522e-10 2.22997534e-10 1.610210432e-10 1.709873793e-10 6.593214824e-11 1.269619264e-10 1.225404023e-10 1.847253527e-10 1.68438067e-10 1.948541923e-10 1.122743553e-10 1.745390407e-10 1.874859704e-10 2.256235847e-10 1.042791674e-10 1.889300675e-10 9.745830962e-11 1.594113638e-10 8.288025777e-11 1.484783702e-10 2.185471836e-10 2.307811571e-10 1.338611011e-10 1.229454558e-10 5.366842009e-11 1.975422677e-10 1.890359931e-10 1.225803509e-10 1.829129521e-10 5.120113338e-11 1.97738988e-10 1.78074895e-10 1.4651714e-10 2.114122187e-10 1.433813249e-10 2.023682e-10 2.973217967e-10 1.271891768e-10 1.429364855e-10 1.616855356e-10 1.814618201e-10 2.109969853e-10 1.735698486e-10 1.740476554e-10 3.385890785e-10 1.450591076e-10 1.13595889e-10 1.277826735e-10 1.392557395e-10 3.3358891e-10 1.130605458e-10 1.361435824e-10 1.028544014e-10 2.311786148e-10 1.455992273e-10 1.952591749e-10 1.38095638e-10 1.298367201e-10 1.900676996e-10 2.140799734e-10 3.360606815e-10 1.846145558e-10 1.677472073e-10 1.848317655e-10 1.061091285e-10 1.303675783e-10 3.08996552e-10 2.09695229e-10 2.616305509e-10 1.615655716e-10 1.583713183e-10 1.818033649e-10 1.592012266e-10 2.122082382e-10 3.164817972e-10 1.754805952e-10 2.369163089e-10 2.398139781e-10 1.53573383e-10 1.98165407e-10 2.419342949e-10 2.59069118e-10 8.545521432e-11 3.456199939e-10 2.436919939e-10 3.642425103e-10 1.370882497e-10 2.891643359e-10 7.601728608e-11 2.549684963e-10 7.761078808e-11 1.96486387e-10 8.207293224e-11 1.608917022e-10 1.489127463e-10 1.984550286e-10 1.333560054e-10 4.149870996e-11 1.438749579e-10 1.446130628e-10 3.986416205e-11 2.399442343e-10 1.40098171e-10 1.522437393e-10 5.829879453e-11 9.036602729e-11 3.735397905e-10 4.721573514e-11 1.481030703e-10 7.850711506e-11 8.449607674e-11 2.022920049e-10 1.275505685e-10 2.475328833e-10 4.211711928e-11 1.341418561e-10 2.860275432e-10 2.01463754e-10 2.097206609e-10 6.673482397e-11 1.793130574e-10 7.158185918e-11 1.159862245e-10 1.290653523e-10 8.920249535e-11 4.46681893e-11 1.032410132e-10 1.018277272e-10 1.297096034e-10 2.764332281e-10 2.712516732e-10 2.705472566e-10 1.198570575e-10 9.552842723e-11 2.061000048e-10 7.99003467e-11 2.427510931e-10 1.289319495e-10 8.619082669e-11 1.336858796e-10 8.975199734e-11 1.829625743e-10 9.155020145e-11 8.994615689e-11 1.806208016e-10 1.580124636e-10 1.777998995e-10 9.843488602e-11 2.265077078e-10 8.065828119e-11 7.538978463e-11 1.652744909e-10 1.929496564e-10 3.115516286e-11 1.250798897e-10 2.125580937e-10 1.814503002e-10 1.269389007e-10 1.235987995e-10 4.365918738e-11 2.220834332e-10 1.886277144e-11 4.673336197e-11 8.258829163e-11 2.234722371e-10 1.295578887e-10 1.262847009e-10 1.358662672e-10 4.502410209e-10 1.207102935e-10 2.550542412e-10 1.389627902e-10 1.929981289e-11 +2.317808077e-10 3.48623521e-11 1.170507409e-10 2.211836228e-10 3.217476913e-10 3.899486689e-10 8.866026249e-11 2.405081424e-10 1.397642024e-10 6.143466245e-11 9.787905365e-11 1.566993883e-10 5.071556084e-11 1.044077464e-10 6.547759624e-11 1.507513308e-10 1.998230572e-11 1.15091946e-10 6.125317591e-11 2.160980535e-10 8.447710221e-11 1.768256034e-10 7.76926206e-11 1.665405359e-10 1.28251331e-10 1.057653777e-10 9.666979122e-11 2.277931898e-11 2.780231727e-10 8.000135481e-11 1.370417719e-10 9.453007973e-11 9.325957211e-11 1.928167026e-10 1.855323466e-10 1.604409456e-10 6.619966547e-11 3.091131249e-10 1.539076222e-10 1.470736502e-10 7.140058731e-11 1.692890561e-10 9.088494117e-11 6.538712814e-11 2.579877182e-10 1.987824383e-10 1.977182272e-10 6.640433538e-11 8.430349221e-11 1.352902347e-10 1.426296304e-10 5.487123192e-11 1.521588578e-10 1.956967582e-10 3.070472239e-10 1.057268983e-10 1.378036164e-10 1.266163359e-10 7.189072384e-11 1.20881711e-10 1.813344041e-10 1.19018592e-10 1.915008229e-10 1.858844554e-10 2.384211041e-10 2.678745205e-10 2.613953611e-10 6.083919877e-11 1.943196605e-10 1.432365617e-10 8.764445053e-11 1.957477715e-10 1.498061253e-10 1.472378828e-10 5.646146014e-11 8.323219865e-11 1.569476241e-10 7.762899378e-11 1.854900603e-10 1.965022774e-10 1.925453717e-10 1.39822789e-10 8.984653282e-11 1.050338383e-10 3.684769655e-11 1.156135855e-10 9.126655432e-11 2.246585055e-10 3.721370055e-10 3.130256063e-11 1.992707783e-10 1.035706556e-10 2.845387378e-11 1.673140934e-10 7.76728495e-11 1.960132253e-10 1.81514901e-10 2.194766704e-10 2.776104795e-10 8.861671046e-11 1.456341019e-10 1.499689096e-10 2.077320534e-10 2.886231602e-11 1.804678981e-10 1.34880868e-10 2.476288068e-10 1.947804602e-10 1.580709924e-10 1.519950124e-10 1.900456891e-10 1.363149585e-10 1.936327883e-10 1.102411873e-10 2.254243338e-10 1.495461575e-10 5.024734526e-11 7.134482786e-11 2.07727925e-10 1.239313726e-10 9.595634779e-11 1.173390786e-10 3.35048338e-10 7.017387394e-11 2.153771338e-10 1.510477828e-10 1.756808985e-10 1.722052844e-10 1.45490396e-10 1.32218796e-10 2.283692146e-10 1.879351029e-10 1.749302985e-10 7.950547596e-11 8.841275116e-11 2.036585644e-10 1.502413149e-10 1.08551038e-10 1.588920913e-10 1.703518687e-10 8.417556016e-11 1.364148543e-10 1.268252524e-10 1.771938378e-10 1.178814581e-10 1.446364419e-10 2.532573735e-10 1.624322793e-10 1.594853915e-10 1.174770088e-10 1.199970461e-10 7.946554366e-11 1.121026572e-10 3.24975222e-10 6.277572835e-11 5.738514929e-11 2.073084354e-10 1.523946123e-10 1.17780996e-10 5.597083557e-11 7.851149672e-11 1.466273939e-10 1.151993679e-10 9.51628372e-11 2.051540728e-10 1.520864936e-10 1.864363718e-10 8.470623296e-11 2.466237868e-10 1.110901019e-10 1.551126186e-10 2.273422684e-10 2.357795917e-10 1.729170554e-10 2.704287085e-10 1.393132306e-10 1.288419485e-10 1.445529262e-10 2.780506363e-10 1.471290717e-10 7.969120141e-11 2.129025436e-10 1.764941389e-10 1.046932958e-10 2.343980012e-10 9.655059397e-11 7.491836902e-11 3.494640904e-10 1.541419794e-10 1.552071988e-10 2.565809042e-10 2.205460733e-10 8.521970285e-11 2.648952284e-10 1.342979334e-10 1.792141272e-10 1.19454629e-10 2.501253711e-10 2.183713548e-10 1.856318313e-10 2.874132061e-10 3.239796338e-10 1.975685557e-10 2.38803737e-10 1.354415618e-10 1.081100791e-10 2.27233208e-10 1.358159774e-10 2.394964851e-10 2.41972868e-10 1.596561521e-10 7.367823389e-11 8.288950446e-11 1.827454441e-10 1.690622595e-10 6.603492874e-11 5.669584213e-11 3.994192925e-11 8.647569111e-11 1.518248262e-10 1.340097172e-10 5.407178453e-11 1.406627976e-11 6.134465951e-11 2.300945369e-10 1.437452121e-10 7.987156694e-11 1.339196728e-10 1.212528742e-10 5.383779397e-11 8.91484298e-11 1.469881693e-10 7.293859557e-11 7.953012094e-11 2.043873956e-10 3.459888225e-10 1.871614591e-10 1.677311092e-10 4.695392956e-11 2.837428805e-11 6.747799402e-11 9.468218182e-11 1.574155851e-10 1.878787375e-10 1.206559529e-10 1.399778341e-10 1.089319618e-10 7.954188032e-11 1.175399327e-10 1.265959952e-10 3.932937646e-10 1.767776503e-10 1.597989946e-10 1.849550096e-10 1.091624972e-10 2.131647175e-10 1.491506887e-10 1.642487592e-10 1.092458679e-10 7.481008938e-11 4.389931787e-11 3.167027497e-10 1.933772089e-10 6.213265869e-11 1.505676716e-10 9.349254443e-11 6.318623782e-11 3.62547815e-10 2.211393823e-10 3.029231913e-11 1.228931925e-10 1.737886448e-10 1.544243463e-10 3.805487982e-11 8.033635492e-11 1.491382051e-10 9.77209809e-11 5.105587068e-11 5.356425988e-11 4.753739993e-11 2.67900471e-10 1.316672322e-10 4.108446952e-11 2.883811729e-10 2.458739299e-10 9.273245569e-11 2.131927577e-10 3.975875742e-11 9.912448873e-11 1.285409507e-10 9.807637868e-11 1.302847059e-10 2.622135134e-10 7.437052015e-11 1.683913356e-10 9.258802942e-11 1.578846705e-10 1.990358402e-10 1.109718394e-10 3.059825696e-10 +2.393650964e-11 7.517064737e-11 1.361684679e-11 1.135360496e-10 6.383213649e-11 3.290455106e-10 1.479797074e-10 2.377119197e-11 1.819519818e-10 2.223333829e-10 1.54421406e-10 3.269106821e-11 7.094949941e-11 1.32500637e-10 1.219218183e-10 7.330791136e-11 2.975754411e-10 2.246065594e-10 1.123884656e-10 3.612770595e-11 1.418990963e-10 1.13122416e-10 9.218298723e-11 1.220515629e-10 8.926421544e-11 9.966533495e-11 1.081728657e-10 1.518985139e-10 9.810441535e-11 5.529990003e-11 5.997547034e-11 1.856863111e-10 1.110229289e-10 1.523555861e-10 1.035777587e-10 1.985286326e-10 7.908232267e-11 1.293327727e-10 8.492188681e-11 4.416239254e-11 2.198338913e-10 1.522852462e-10 7.226714209e-11 1.68301586e-10 1.021608966e-10 7.519028013e-11 2.314684518e-10 2.875143014e-10 1.108624775e-10 5.783533767e-11 1.1579296e-10 1.305024657e-10 1.069237309e-10 1.512590864e-10 1.057125844e-10 2.072421523e-10 6.722858766e-11 1.422271539e-10 1.267114079e-10 1.224968939e-10 2.391255029e-10 1.536022358e-10 1.375173465e-10 1.686472182e-10 4.52369431e-11 1.223952469e-10 1.636688091e-10 9.898098056e-11 1.543008365e-10 7.599143931e-11 1.268492331e-10 1.308974368e-10 1.188786187e-10 1.181713444e-10 1.507232623e-10 5.184525844e-11 5.604890883e-11 7.512598909e-11 1.227245452e-10 2.107651951e-10 9.69055576e-11 1.027338768e-10 8.414542304e-11 1.590964965e-10 4.974559307e-11 1.502823391e-10 2.804682441e-10 7.586898498e-11 1.076485658e-10 1.213278718e-10 2.073952898e-10 5.54729635e-11 2.09649724e-10 1.570644501e-10 2.280105066e-10 2.240790169e-10 2.156769784e-10 1.349860581e-10 1.375869978e-10 8.248738736e-11 1.396914809e-10 2.434704538e-10 1.996863199e-10 2.518570373e-10 1.632869926e-10 2.891783029e-10 1.812123737e-10 1.993454825e-10 3.498769007e-10 3.583308702e-10 1.81744291e-10 6.811382978e-11 3.157233354e-10 2.069972851e-10 6.152176387e-11 1.685049614e-10 6.686164366e-11 2.583157254e-10 2.013084128e-10 2.107952235e-10 3.261047693e-10 1.466388267e-10 2.238284498e-10 1.254063131e-10 2.45146491e-10 1.274919307e-10 1.267899512e-10 1.446137308e-10 1.689933415e-10 1.903164276e-10 1.284156984e-10 8.906069405e-11 1.677954898e-10 2.640493731e-10 1.877030935e-10 1.434914584e-10 1.849366451e-10 1.659458624e-10 2.589145885e-10 8.556940226e-11 1.713170961e-10 1.740547714e-10 1.082944453e-10 1.345509648e-10 1.218687862e-10 1.08918616e-10 2.474842469e-10 1.152481737e-10 1.35615657e-10 1.010733874e-10 1.332724874e-10 2.691899182e-10 2.134155903e-10 3.476750062e-10 8.228825181e-11 2.71961263e-10 1.49761755e-10 1.940871698e-10 1.62774669e-10 7.580272306e-11 1.603316768e-10 2.693385338e-10 2.747319122e-10 2.757871298e-10 1.820265516e-10 1.22859682e-10 2.509272284e-10 1.637239532e-10 1.724544744e-10 2.949085351e-10 2.296621409e-10 1.729906922e-10 8.789186533e-11 2.124615977e-10 1.429241787e-10 2.982233704e-10 1.093614937e-10 1.335722015e-10 2.858322337e-10 2.204560931e-10 3.524783048e-10 1.603778647e-10 1.64793042e-10 2.075996964e-10 3.140038911e-10 1.095405463e-10 1.234878543e-10 2.173052209e-10 3.460255586e-10 1.317236503e-10 2.355318492e-10 9.070064335e-11 2.481521171e-10 2.728453469e-10 2.318789663e-10 2.577445214e-10 3.584693307e-10 1.873426107e-10 1.418394843e-10 2.615267617e-10 1.002318364e-10 1.703261189e-10 2.228844336e-10 1.478572571e-10 2.194994596e-10 1.355231731e-10 1.899817587e-10 2.234983007e-10 1.294840437e-10 1.946952984e-10 1.315255515e-10 8.494772426e-11 2.849032836e-10 1.227381862e-10 1.35373702e-10 6.907708238e-11 3.32251929e-11 9.350089809e-11 9.711779064e-11 1.454191684e-10 1.446948235e-10 6.390917185e-11 9.174762131e-11 8.01308537e-11 1.229867728e-10 7.642917215e-11 3.100656755e-11 9.213269819e-11 1.204857364e-10 8.894333918e-11 1.633801846e-10 3.496592003e-11 2.308688168e-10 1.386109418e-10 2.134137978e-10 7.534345485e-11 3.196447365e-11 4.350086687e-10 2.643054618e-10 1.009588561e-10 2.425421085e-10 1.034502488e-10 6.311363503e-11 1.680253603e-10 2.161809276e-10 1.762773477e-10 2.062792689e-10 3.277100831e-10 1.800938988e-10 9.07144871e-11 1.034306616e-10 1.805792454e-10 2.614905594e-10 1.190260196e-10 6.373236578e-11 8.30709224e-11 1.149197304e-10 1.877383324e-10 1.166770384e-10 6.509436429e-11 1.228360527e-10 4.511628919e-11 2.332811971e-10 2.768645984e-10 1.945180042e-10 1.187944325e-10 1.752275348e-10 3.093105368e-10 2.650802993e-10 1.428895245e-10 1.573002338e-10 1.274813474e-10 2.762232223e-10 1.539112605e-10 1.319102969e-10 9.940732887e-11 1.407265264e-10 7.0282216e-11 6.422879714e-11 6.839485002e-11 1.244358205e-10 8.948187528e-11 1.288157989e-10 2.277312533e-10 3.485287763e-11 6.284288465e-11 1.131061797e-10 1.449856024e-10 1.085947665e-10 8.086992327e-11 3.855777882e-10 5.490308198e-11 3.715330022e-11 1.904639646e-10 2.382015132e-10 1.80505024e-10 5.116964174e-11 1.93638154e-10 1.61472016e-10 1.338642996e-10 +1.007466217e-10 7.322222159e-11 2.312393519e-10 1.908273161e-10 1.988650317e-10 1.119131617e-10 3.831377173e-11 3.16029205e-11 2.358217219e-10 1.095780557e-10 1.616154958e-11 1.382119503e-10 1.472358216e-10 2.14283221e-10 8.210681903e-11 1.21658448e-10 2.533134849e-10 8.945373466e-11 1.740367878e-10 2.036036788e-10 1.218279171e-10 6.177795466e-11 1.233552088e-10 7.532867924e-11 4.828400279e-11 1.642271828e-11 1.101792029e-10 2.245688474e-10 4.07336191e-11 4.988532757e-11 2.242126441e-10 6.940217798e-11 7.988017865e-11 4.656380616e-11 1.367785842e-10 1.421055981e-10 1.73556037e-10 1.185637679e-10 1.609350568e-10 1.423318496e-10 1.822689255e-11 4.915330909e-11 2.017622604e-10 9.370633934e-11 1.266211448e-10 1.0990393e-10 1.04811958e-10 6.20956967e-11 8.378454394e-11 1.359202152e-10 5.574862209e-11 7.357459812e-11 1.202281082e-10 1.544004728e-10 1.514783272e-10 9.826034116e-11 5.617226581e-11 7.916079942e-11 2.337321257e-10 2.24710754e-10 1.465805861e-10 1.769540565e-10 1.484584323e-10 1.804451716e-10 1.708422678e-10 8.488759158e-11 1.791398182e-10 1.652093134e-10 1.728623227e-10 8.927851031e-11 2.303675846e-10 1.840181798e-10 1.451106166e-11 1.386684605e-10 2.85398289e-10 2.001469373e-10 1.401960616e-10 5.034244184e-11 1.008276774e-10 2.324356504e-10 7.27479346e-11 1.350705544e-10 1.259500437e-10 5.371208698e-11 3.686832221e-11 3.403354462e-10 1.083232158e-10 2.075801234e-10 1.26137189e-10 1.264132681e-10 9.78039547e-11 2.138972183e-10 1.588375866e-10 1.920824735e-10 2.32492939e-10 4.285049831e-11 3.730386817e-10 3.388854055e-10 1.117099983e-10 1.345293011e-10 2.151510541e-10 3.458836305e-10 2.761585668e-10 2.110106725e-10 1.282405724e-10 1.495241095e-10 9.123722138e-11 2.45235144e-10 1.556351296e-10 9.587626437e-11 2.071686595e-10 1.211137156e-10 2.188255611e-10 1.54507796e-10 1.603982448e-10 3.689271186e-10 4.827248714e-11 1.956503261e-10 2.096215519e-10 3.177317316e-10 1.916488911e-10 1.51163045e-10 1.41710706e-10 1.954504624e-10 7.134962357e-11 1.891851247e-10 3.096318364e-10 2.109297108e-10 2.244167135e-10 3.609498436e-10 1.016151729e-10 1.850788763e-10 2.418659443e-10 9.198278104e-11 1.860981797e-10 1.101716242e-10 1.457315596e-10 1.317881178e-10 1.563928432e-10 1.204996181e-10 3.079134677e-10 1.306478548e-10 1.358696377e-10 1.28471345e-10 7.635692074e-11 2.467029918e-10 1.156020566e-10 1.250806756e-10 2.529565341e-10 2.438206624e-10 8.004518407e-11 5.437243725e-11 2.434231114e-10 1.166109093e-10 1.155921387e-10 8.768093381e-11 1.855975326e-10 4.476830855e-11 2.328995922e-10 1.760714499e-10 1.021513346e-10 9.134166917e-11 2.197596659e-10 1.677105056e-10 2.567159891e-10 1.366478662e-10 2.262901586e-10 1.53130151e-10 1.51081313e-10 1.412700014e-10 1.25831762e-10 1.570606806e-10 1.238748235e-10 1.253230248e-10 3.634234848e-11 1.866035651e-10 1.657543577e-10 4.007592093e-10 1.80299904e-10 4.468927843e-10 3.341898279e-10 1.185841155e-10 1.689119811e-10 1.813495894e-10 1.221276794e-10 1.893149819e-10 2.54272091e-10 8.97013678e-11 2.363392989e-10 2.112746029e-10 1.331503435e-10 2.190948915e-10 1.431535962e-10 6.629985702e-11 1.851193525e-10 2.740063695e-10 2.441815517e-10 7.65705659e-11 2.537432636e-10 2.308181795e-10 2.369192482e-10 1.769308428e-10 1.393863452e-10 1.843476063e-10 8.973189457e-11 1.394874108e-10 2.473579974e-10 1.156253495e-10 1.442252848e-10 2.08903088e-10 1.626474e-10 1.361632118e-10 1.362458143e-10 9.731413603e-11 1.202393852e-10 1.637865171e-10 2.136250656e-10 3.061465399e-11 1.547247379e-10 8.289866355e-11 5.834984478e-11 1.085450432e-10 9.885027078e-11 1.41545391e-10 3.676795198e-11 2.069421559e-10 1.157107353e-10 1.714663082e-10 6.01269179e-11 7.595730107e-11 4.436435492e-11 1.400940083e-10 4.56874922e-11 1.284933015e-10 1.185892711e-10 1.403874491e-10 8.462557638e-11 8.291293831e-11 1.078339493e-10 1.550539238e-10 1.809908023e-11 1.080650252e-10 3.921420462e-11 6.187049555e-11 2.317888275e-10 1.067325889e-10 5.83017673e-11 1.201477491e-10 1.973892909e-10 5.54371326e-12 5.808104109e-11 1.371449486e-10 1.366171e-10 9.14563247e-11 1.347203666e-10 6.625401238e-11 2.50111171e-10 1.996510178e-11 1.021822639e-10 2.180330704e-10 9.491101633e-11 2.536102837e-10 1.844861512e-10 4.306725458e-11 4.961292615e-11 2.224591103e-10 6.151583628e-11 1.536791186e-10 1.074406305e-10 1.092188428e-10 3.222962974e-10 8.488484225e-11 1.932516163e-10 1.168452698e-10 1.181863989e-10 1.394755595e-10 1.029741129e-10 3.363170172e-11 1.63171221e-10 1.027626588e-10 1.193746423e-10 7.587766051e-11 2.140253351e-10 1.368764103e-10 1.297581692e-10 9.351719436e-11 8.573221346e-11 1.144643656e-10 8.611259875e-11 2.272212015e-10 2.347031158e-10 2.836080513e-10 1.173865865e-10 1.82613329e-10 2.242434464e-10 1.174443982e-11 1.48200753e-10 8.522223304e-11 2.370648851e-10 3.240690749e-10 +8.006199018e-11 1.611699997e-11 5.261849213e-11 2.291998245e-10 1.591456421e-10 1.699944823e-10 7.256837388e-12 8.879398687e-11 1.635936634e-10 1.831045315e-10 1.913358275e-10 1.214405478e-10 8.28909003e-11 1.057104113e-10 1.130390535e-10 4.592873061e-11 2.874009464e-10 5.034502043e-11 1.57052834e-10 3.631754309e-11 2.657645292e-10 1.025876743e-10 7.125946535e-11 4.434928588e-11 2.122184658e-10 1.369276748e-10 1.888147054e-10 2.82903342e-10 9.371795572e-11 1.190097084e-10 2.665617079e-10 7.172512752e-11 9.159186262e-11 1.175954731e-10 8.873510635e-11 2.159873408e-10 1.488868328e-10 2.608446995e-10 1.305197494e-10 2.060809889e-11 1.428925902e-11 7.996937857e-11 8.911956697e-11 1.578474377e-10 2.063164054e-11 2.4529168e-11 7.978921514e-11 1.288319747e-10 7.529664194e-11 2.046582301e-10 4.725270675e-11 2.497873482e-10 2.237215423e-10 1.746987262e-10 1.315886638e-10 2.409730197e-10 1.885999052e-10 1.430804353e-10 7.642360482e-11 8.832924534e-11 1.078770755e-10 1.581255351e-10 6.950335058e-11 2.248227405e-10 2.260385998e-10 5.374793269e-11 9.885785962e-11 1.594604653e-11 1.906078534e-10 1.248748363e-10 7.861840654e-11 2.148189594e-10 7.943686995e-11 5.342988554e-11 8.346893925e-11 1.47642338e-11 2.562407902e-10 4.006735132e-11 1.113149284e-10 1.894518006e-10 1.714734958e-10 1.147004223e-10 8.415114016e-11 1.049120013e-10 4.077175396e-14 9.814827336e-11 1.481407185e-10 1.161721985e-10 2.626678425e-10 8.737115608e-11 2.48920124e-10 8.742512681e-11 1.214949229e-10 2.009541265e-10 2.412254073e-10 9.428526861e-11 2.799040595e-10 2.058939974e-10 2.271155289e-10 2.144842018e-10 1.149764152e-10 8.315534588e-11 6.132858269e-11 3.14963593e-10 2.418012415e-10 9.011794211e-11 1.55160639e-10 1.819660973e-10 2.848494803e-10 3.49426806e-10 1.387812765e-10 1.661442122e-10 4.207659496e-11 1.254255012e-10 1.765088027e-10 2.262375886e-10 1.644208373e-10 3.477212185e-10 1.222819819e-10 1.683052044e-10 2.43170994e-10 1.936244103e-10 1.41709997e-10 2.088698578e-10 1.179678623e-10 5.656694586e-11 1.625231807e-10 3.098341917e-10 9.329097201e-11 1.745930556e-10 1.12562224e-10 1.277860613e-10 1.655232249e-10 9.596325942e-11 3.623155048e-10 1.208407706e-10 1.310857296e-10 2.138799e-10 3.491642418e-10 1.946374859e-10 1.355080159e-10 2.830303777e-10 1.273993052e-10 2.066063845e-10 7.526505871e-11 7.817344586e-11 1.681617683e-10 1.114810815e-10 1.516123366e-10 1.518065032e-10 1.281394502e-11 2.099148515e-10 6.507540003e-11 1.937163821e-10 2.241530997e-10 1.054337678e-10 1.842698798e-10 2.085198731e-10 4.352729402e-11 5.492909895e-11 1.036024034e-10 1.813003342e-10 1.577550763e-10 9.299758164e-11 1.804792608e-10 2.173707902e-10 2.033566711e-10 2.239254256e-10 2.252061218e-10 1.483348441e-10 1.197244419e-10 2.162975215e-10 2.714553101e-10 1.837732555e-10 1.957389734e-10 2.012276727e-10 1.159031976e-10 1.104937235e-10 1.669748e-10 2.084479131e-10 8.367272087e-11 2.150099369e-10 2.308033034e-10 1.469015711e-10 2.142998771e-10 3.287648023e-10 9.439381025e-11 1.151802813e-10 2.045098934e-10 1.508886941e-10 1.861970331e-10 1.861251175e-10 1.156028915e-10 3.44725146e-10 1.501816018e-10 2.309252644e-10 1.726068786e-10 1.324061074e-10 1.41501038e-10 1.513819503e-10 1.213172461e-10 5.915529182e-12 1.844770159e-10 8.66625006e-11 1.229889937e-10 5.097272327e-11 1.425877912e-10 1.253887568e-10 9.037510559e-11 7.105647166e-11 1.423438301e-10 1.922249125e-10 1.667273632e-10 1.019339158e-10 3.885762277e-11 1.268843474e-10 8.066826179e-11 1.025103932e-10 1.605049534e-10 1.946582149e-10 6.894579757e-11 1.372752535e-10 3.469912518e-11 1.871769041e-10 8.100203575e-11 4.820506693e-11 9.185796834e-11 2.425660007e-10 7.866830668e-11 3.889517316e-11 5.292063969e-11 1.165261015e-10 2.139522885e-11 1.12460889e-10 1.284477152e-10 2.114608904e-10 6.229537754e-11 1.527726788e-10 1.190894784e-10 1.531116444e-10 1.09122223e-10 1.124018312e-10 1.408625191e-10 3.958590941e-11 2.171075279e-10 1.131873392e-10 2.134069093e-10 1.02298528e-10 2.069838274e-10 1.200893013e-10 1.04675181e-10 2.748456764e-10 1.333195335e-10 9.956696188e-11 1.308809503e-10 1.156604419e-10 1.334853106e-10 8.43163321e-11 2.076960349e-10 8.875669518e-11 1.98210686e-10 6.938816143e-11 1.854919499e-10 1.953515027e-10 1.972896474e-10 1.161847982e-10 2.530525134e-10 5.280215014e-11 1.388209364e-10 1.27316362e-10 1.171913764e-10 2.550176928e-10 2.362310715e-10 2.017182402e-10 4.415239606e-11 2.157548203e-10 1.594543753e-10 3.392474739e-10 2.114244532e-10 2.80880515e-11 6.595698036e-11 2.128167346e-10 1.451841859e-10 7.396094862e-11 7.128539967e-11 2.032186592e-10 1.370611121e-10 1.827632342e-10 2.221956434e-10 8.447312926e-11 1.966259791e-11 1.861645335e-10 1.129949452e-10 6.224457494e-11 2.338668581e-10 9.333828792e-11 7.271917281e-11 1.052310443e-10 6.420584381e-11 2.393725452e-10 +1.292329997e-10 1.545638481e-10 1.049191887e-10 4.699714805e-11 1.252237007e-10 1.390465522e-11 1.652971038e-10 2.783872243e-11 1.62231563e-10 6.066350428e-11 2.087833338e-10 2.539151975e-10 1.080807151e-10 1.122631125e-10 1.197444445e-10 1.932222544e-10 9.624756482e-11 1.118659926e-10 4.460902581e-11 1.25330708e-10 9.266802869e-11 3.071748334e-11 1.169763279e-10 1.576497655e-10 6.056456198e-11 4.052088609e-11 9.583076764e-11 1.186320183e-10 1.259242551e-10 7.104666784e-11 1.375121156e-10 1.862730222e-10 2.443506511e-11 4.029404205e-11 1.216917716e-10 3.460835816e-11 1.57064325e-10 1.964211519e-10 3.718598728e-10 2.793666376e-11 1.370063161e-10 2.157940946e-10 1.131735518e-10 1.07741794e-10 5.734534004e-11 7.415871822e-11 3.289148769e-10 1.577070422e-10 9.528800833e-11 2.262730262e-10 2.5640685e-10 1.348977326e-10 7.089100301e-11 1.637395225e-10 2.302612309e-10 1.201209821e-10 2.086097449e-10 6.51737878e-11 5.311448767e-11 8.878249094e-11 1.329268047e-10 2.905641217e-11 8.20836339e-11 1.034279589e-10 1.487442274e-10 6.75039477e-11 1.119830231e-10 6.696709729e-11 8.123697482e-11 1.154663875e-10 1.279651015e-10 2.12568733e-10 3.468268917e-11 1.049004566e-10 1.540960071e-10 1.658981761e-10 4.777414965e-11 3.339861277e-11 4.125897164e-11 1.670330261e-10 1.055096062e-10 9.517105391e-11 7.857494217e-11 9.844599148e-11 1.471306668e-10 9.561388471e-11 9.47571961e-11 6.198427018e-11 1.780999596e-10 2.488894929e-10 2.082754963e-10 1.580896827e-10 1.017722243e-10 3.345672589e-10 1.408696586e-10 4.814498677e-11 3.822150809e-10 9.240052582e-11 1.921682234e-10 1.062961135e-10 8.639572712e-11 2.023510888e-10 1.373623083e-10 9.840667569e-11 1.812810199e-10 1.067161505e-10 3.208980145e-10 1.731470348e-10 1.353210455e-10 1.491180863e-10 1.589808113e-10 1.921135002e-10 1.600278143e-10 7.357955175e-11 1.164371564e-10 9.539846996e-11 1.293422973e-10 2.09177777e-10 1.654524731e-10 1.752017689e-10 1.620006928e-10 1.452542765e-10 1.086093373e-10 1.466150602e-10 1.6037245e-10 1.298498526e-10 2.113086132e-10 2.096100412e-10 2.649684293e-10 1.126338771e-10 8.010912426e-11 1.094327708e-10 4.135941712e-11 1.599073845e-10 9.083428163e-11 1.561498643e-10 1.338433018e-10 2.759594307e-10 1.233015933e-10 1.63314496e-10 2.597520659e-14 1.527467106e-10 1.648378923e-10 8.498346297e-11 6.641572292e-11 7.629222655e-11 1.445419542e-10 2.324137423e-10 1.812819211e-10 1.820556565e-10 1.697061961e-10 2.81259459e-10 1.399018396e-10 2.331205805e-10 2.499099447e-10 5.01111037e-11 1.628542609e-10 2.54270513e-10 9.710554649e-11 1.768970679e-10 1.283460623e-10 2.352166658e-10 7.263667902e-11 1.258688686e-10 2.172046114e-10 1.754704081e-10 1.207717647e-10 2.108649822e-10 7.725621743e-11 1.251773352e-10 1.115998514e-10 7.829808053e-11 2.018992499e-10 2.621081305e-10 8.679156328e-11 1.268540776e-10 2.063093305e-10 1.617686548e-10 3.07959745e-10 1.726103373e-10 1.746819928e-10 2.12526213e-10 3.331698148e-10 2.53750861e-10 2.346666928e-10 1.425469079e-10 3.255170386e-10 1.028533368e-10 1.738270693e-10 1.439326711e-10 2.174564368e-10 2.343766514e-10 1.922841916e-10 1.846767151e-10 1.233650239e-10 2.269637222e-10 1.611133301e-10 1.643414192e-10 1.463704046e-10 5.889523155e-11 1.428608406e-10 1.511032688e-10 8.432134094e-11 2.3048e-10 7.468848832e-11 1.289145091e-10 1.047284557e-10 2.276119339e-10 2.440919945e-10 2.480156066e-10 1.29329485e-10 6.73383873e-11 2.663725846e-10 1.048177687e-10 2.036094132e-10 1.270461426e-10 1.193695343e-10 2.285546162e-11 1.378808469e-10 3.438001795e-11 1.004941752e-10 3.634975981e-11 1.155243096e-10 1.393917719e-10 1.377013224e-10 9.402297631e-11 6.52733773e-11 9.666810176e-11 1.645141781e-10 2.67375227e-10 1.075083036e-10 1.320407495e-10 3.06355983e-11 1.166594881e-10 3.962404543e-11 3.434800532e-11 9.786876615e-11 1.117874471e-10 1.490135866e-10 1.648897535e-10 7.870299081e-11 1.420963167e-10 2.428657637e-10 8.373387296e-11 7.262096293e-11 1.088031584e-10 8.583532866e-11 5.110470771e-11 5.753800736e-11 2.478955544e-10 1.142909452e-10 1.563799051e-10 2.829860629e-10 8.997468006e-11 7.625100817e-11 3.816229568e-11 2.125495106e-10 1.989430401e-10 1.250631708e-10 7.323848829e-11 7.189958444e-11 3.61459377e-11 1.831731776e-10 1.621483424e-10 6.260864465e-11 2.153427854e-10 3.280676779e-10 1.589199292e-10 5.430131344e-11 4.388455362e-11 1.095521965e-10 1.164264802e-10 4.169588049e-11 2.528892233e-10 1.301183001e-10 1.336055654e-10 1.204526347e-10 8.603804109e-11 1.16570394e-10 9.342016114e-11 1.016756327e-10 2.004013503e-10 1.155914227e-10 1.170977739e-10 5.979718542e-11 9.940530248e-11 5.498241401e-11 2.279326782e-10 6.959435955e-11 1.607927106e-10 1.137913788e-10 6.274040821e-11 1.945399224e-10 1.109560577e-10 1.45569816e-10 1.250020895e-10 9.48640474e-11 6.239135957e-11 1.662723707e-10 1.731994201e-10 +7.214779647e-11 7.056769527e-11 2.064408243e-10 1.733966705e-10 1.016438403e-10 4.724003998e-11 1.421254524e-10 1.250277429e-10 1.028213703e-10 8.174872706e-11 1.359735494e-10 1.09130675e-10 1.509959333e-10 2.717716553e-10 2.271515173e-10 3.046294337e-11 1.176508218e-10 1.498487877e-10 1.850602704e-10 7.77953045e-11 2.192385225e-10 2.522234248e-10 9.305652161e-11 1.084076748e-10 7.713602634e-11 7.658939877e-11 3.961476279e-11 9.141347565e-11 3.576759875e-11 2.015282849e-10 1.401384199e-10 3.214363324e-10 4.260411423e-11 4.962784146e-11 5.811738344e-11 1.481542512e-10 3.89319978e-11 2.388703296e-10 1.398613983e-10 5.66488962e-11 4.225951691e-11 2.871743351e-11 8.937297845e-11 3.459730677e-11 8.261491763e-11 6.949834964e-11 3.630936708e-11 1.020115594e-10 4.062428192e-11 2.155766091e-10 1.711503456e-11 2.398496534e-10 2.086652874e-10 1.356276896e-10 4.516423634e-11 3.42818031e-11 1.688698057e-10 2.120497707e-10 8.832437132e-11 6.611309081e-11 1.044344632e-10 1.062164261e-10 7.858559598e-11 1.092020659e-10 6.538759986e-11 1.908997874e-10 8.2146982e-11 9.41298374e-11 1.708022959e-10 4.940907275e-11 2.078202818e-10 1.887486393e-10 1.053064316e-10 8.521957156e-11 1.23816468e-10 1.817182806e-11 1.520954339e-10 1.205373768e-10 1.542588005e-10 3.656320057e-11 1.600612743e-10 6.012609658e-11 1.21801615e-10 1.599602553e-10 1.713574506e-10 1.025963807e-10 1.408743801e-10 1.361872079e-10 3.135294785e-11 8.740794676e-11 4.625667274e-11 1.984050511e-10 1.014437203e-10 1.119532063e-10 4.87847303e-11 2.544678998e-10 1.787207615e-10 6.591632164e-11 7.194967025e-11 5.206610515e-11 1.413772796e-10 2.237514525e-10 1.923265892e-10 5.608481327e-11 1.601855476e-10 1.828710392e-10 2.622497105e-10 1.079517692e-10 1.364933593e-10 1.242871028e-10 1.901356817e-10 8.279203678e-11 1.175507558e-10 1.459444416e-10 1.274140901e-10 1.793512972e-10 8.848512746e-11 1.511759308e-10 7.846276135e-11 1.496900877e-10 2.842039286e-10 1.229623267e-10 1.246463256e-10 1.31974798e-10 1.439607715e-10 2.416703632e-10 2.116742402e-10 5.763932514e-11 2.588675691e-10 1.260712119e-10 1.238489388e-10 1.969356825e-10 1.294604642e-10 2.355293994e-10 1.129895565e-10 2.787159812e-10 2.759606105e-11 1.224978013e-10 2.654546165e-10 8.64757361e-11 1.517385307e-10 3.71102591e-11 3.123580233e-10 2.156779226e-10 1.705895411e-10 2.491699725e-10 1.421793246e-10 2.442910891e-10 1.050031864e-10 2.401359128e-10 2.023961222e-10 5.808561677e-11 5.36809807e-11 5.604013061e-11 1.838195097e-10 9.021685488e-11 2.196509197e-10 1.172125057e-10 1.052453864e-10 2.613085334e-10 1.012240827e-10 2.108483642e-10 2.17867931e-10 2.274829739e-10 2.033211225e-10 9.87983382e-11 2.05424799e-10 2.461417109e-10 1.617497253e-10 1.822347205e-10 1.805456936e-10 1.757309748e-10 1.573111837e-10 1.598433805e-10 1.181670455e-10 1.075875813e-10 9.231952428e-11 5.822028731e-11 1.232956399e-10 1.729983425e-10 7.619041074e-11 1.245242823e-10 7.801981571e-11 1.812252518e-10 1.521029792e-10 1.26759701e-10 1.801134081e-10 1.888895979e-10 1.346342881e-10 1.183670046e-10 3.853856382e-10 1.047774568e-10 1.256810431e-10 1.130677193e-10 1.326592942e-10 1.675609017e-10 2.559748283e-10 3.020690386e-10 2.620774602e-10 1.022675452e-10 1.034422383e-10 1.600028729e-10 9.570395286e-11 2.549778662e-10 1.567004409e-10 1.419953391e-10 2.924253809e-10 6.57665075e-11 1.754885958e-10 7.289050544e-11 1.525793391e-10 3.095520923e-10 3.000878206e-11 4.69156073e-11 1.662886614e-10 1.498185524e-10 9.615219779e-11 4.370521362e-11 1.03115722e-10 1.888546752e-10 1.442894282e-10 1.639776612e-10 9.913840529e-11 7.521966352e-11 1.100562037e-10 1.242424893e-10 1.658156696e-10 6.846269724e-11 2.117754354e-10 7.859049107e-11 1.982756287e-10 1.402546366e-10 8.750393557e-11 9.602320915e-11 8.439635775e-11 1.904975838e-10 3.866656911e-11 1.509940437e-10 1.03579956e-10 6.482709754e-11 1.186702002e-10 5.068601538e-11 7.348785917e-11 8.269349955e-11 1.343077518e-10 2.463745617e-10 1.827314563e-10 9.389499194e-11 5.234485727e-11 6.678225764e-11 2.422887639e-10 1.053519586e-10 1.300045562e-10 3.31079589e-11 3.980151918e-13 3.909779443e-11 1.792179975e-10 2.601794732e-10 9.439864768e-11 1.562954738e-10 1.372866718e-10 8.710316015e-11 7.48124387e-11 1.052880977e-10 5.840612773e-11 1.260799001e-10 1.544207584e-10 1.845883769e-10 2.274889956e-10 6.590505618e-11 1.448851716e-10 4.535102221e-11 4.454906029e-11 1.369961082e-10 1.200265416e-10 9.498244265e-11 1.157915453e-10 6.603772864e-11 2.368060097e-10 3.061650256e-10 3.54153679e-11 1.283317181e-10 6.177309004e-11 1.701071226e-10 3.252436476e-11 1.349418144e-10 5.626882895e-11 3.996695359e-12 1.825597687e-10 9.557405085e-11 1.122644171e-10 3.402158378e-11 2.576279532e-10 5.077274392e-11 5.512687663e-11 1.170938898e-10 1.134247651e-10 6.212532147e-11 2.588548981e-11 1.852355398e-10 +3.417309821e-11 8.084742217e-11 5.102619784e-11 4.843415191e-11 2.486246682e-10 1.326198577e-10 4.299914295e-11 1.800464684e-11 6.769418264e-11 2.856155644e-10 2.438719445e-10 9.841101036e-11 1.111347717e-10 8.915845988e-11 9.553157676e-11 2.377814299e-10 5.873183449e-11 5.12421429e-11 3.395206981e-10 7.150345224e-11 3.065602848e-10 8.88720718e-11 6.160788274e-11 3.981025215e-11 6.04926788e-11 7.275287806e-11 2.456156417e-10 7.729527614e-11 6.037272122e-11 2.474235429e-10 6.722424921e-11 2.626182299e-11 1.578910889e-10 2.195331946e-10 7.402541001e-11 8.024934846e-11 5.928172615e-11 7.908443768e-11 2.008879993e-10 1.456212915e-10 2.412388521e-10 1.307057047e-10 6.031858585e-11 9.342955968e-11 2.711101531e-11 1.106438033e-10 1.599074294e-10 2.466422169e-10 9.013758298e-11 1.418885995e-10 1.10554661e-10 7.307050946e-11 1.159190312e-10 7.29824786e-11 3.825985258e-11 1.837569846e-10 1.064813194e-10 4.298745325e-11 1.122490458e-10 1.854388865e-10 5.350150788e-11 5.658040197e-11 2.43932988e-10 8.814855483e-11 8.023720018e-11 2.030568289e-11 1.36659341e-10 2.175431142e-10 1.054149386e-10 8.364186909e-11 2.582289598e-10 2.148137388e-10 1.675758515e-10 8.103898221e-11 6.313787112e-11 1.899520845e-10 1.200297131e-10 1.067159741e-11 1.766216672e-10 1.651687604e-10 8.039613492e-11 5.575670759e-11 8.408777872e-11 1.325310083e-10 5.551648547e-11 1.28281656e-10 9.390108413e-11 2.860851348e-15 1.007607212e-10 1.521668895e-10 1.48986342e-10 1.618965082e-10 1.343904339e-10 2.169412333e-10 1.963504697e-10 2.695390727e-10 1.813750979e-10 7.980132266e-11 1.496046798e-10 1.889130374e-10 9.797465052e-11 1.724585698e-10 1.873147393e-10 1.120483061e-10 6.873071567e-11 1.382920949e-10 9.707750897e-11 2.088497779e-10 1.645612113e-10 2.793418703e-11 2.545514485e-10 2.987645251e-10 2.198244057e-10 9.720110266e-11 1.292395832e-10 1.868615829e-10 8.033468057e-11 1.178390672e-10 2.089410602e-10 9.287804106e-11 2.568837354e-10 7.722253514e-11 2.477049602e-10 6.841711448e-11 1.571957099e-10 1.995400205e-10 2.040632789e-10 1.795888136e-10 4.213871212e-11 1.183738959e-10 1.021071822e-10 1.569525761e-10 7.521798447e-11 2.002052366e-10 1.671644179e-10 7.823083882e-11 2.555297457e-10 3.200096555e-10 3.129608626e-10 1.119556769e-10 3.656916817e-11 2.104055752e-10 1.894765942e-10 1.624492419e-10 1.816991019e-10 4.780252433e-11 1.315900467e-10 2.451481333e-10 1.676965045e-10 9.309470695e-11 1.111241349e-10 1.41075265e-10 1.55034303e-10 2.265244803e-10 1.479548467e-10 1.544106033e-10 2.654524191e-10 9.061688744e-11 1.003796895e-10 1.899402171e-10 2.245677194e-10 1.239070498e-10 1.287098028e-10 1.3799043e-10 2.856126131e-10 1.486210973e-10 8.124812216e-11 2.414137242e-10 1.050422175e-10 1.96677928e-10 8.158712172e-11 2.051254937e-10 2.736354221e-10 1.42702251e-10 7.975627297e-11 5.535430407e-11 1.505562174e-10 1.19115993e-10 1.681041594e-10 2.181294649e-10 1.196009623e-10 2.744419069e-10 1.940490223e-10 1.047075771e-10 1.532019105e-10 9.88239859e-11 2.097959429e-10 1.525017769e-10 8.230471144e-11 1.83216319e-10 2.297623675e-10 2.01903643e-10 2.147928957e-10 1.24317033e-10 9.487169535e-11 1.748446943e-10 4.685320419e-11 1.24851831e-10 1.746044191e-10 1.823412441e-10 1.380794296e-10 1.267295246e-10 9.02386339e-11 1.406384436e-10 1.821701868e-10 2.137344276e-10 3.682114248e-11 1.370360831e-10 1.060168607e-10 2.524677487e-11 1.470135127e-10 2.171948081e-10 6.343206527e-11 2.171759675e-10 5.521673721e-11 2.068134392e-10 1.450080761e-10 1.139865581e-10 1.169721604e-10 8.21927101e-11 9.282936542e-11 1.129975703e-10 1.275989323e-10 3.470386441e-11 1.399438553e-10 3.161234075e-11 1.121200097e-10 6.87924633e-11 1.932820543e-10 1.444671913e-11 8.106482863e-11 1.827311239e-10 9.318897755e-12 1.206411784e-10 2.068726611e-10 1.610102184e-10 1.41799082e-10 9.544499305e-11 7.277317824e-11 1.16673781e-10 4.607974145e-11 8.496983073e-11 4.525519021e-11 4.38831747e-11 1.504534022e-10 2.497954983e-10 1.236458572e-10 1.014540659e-10 1.260737582e-10 1.363596505e-10 1.583194342e-10 3.914746389e-11 5.876057536e-11 1.569604171e-10 4.130125998e-10 1.5237303e-10 1.866698175e-11 9.038111841e-11 6.566699051e-11 9.800810869e-11 8.216910563e-11 1.765305419e-10 1.004150515e-10 2.112473284e-10 5.233674363e-11 1.248436592e-10 8.557394706e-11 1.814029601e-10 8.622086908e-11 2.707156213e-10 8.944323268e-11 8.285163651e-11 1.029907512e-10 3.497328978e-11 5.707446386e-11 8.498078822e-11 9.478464901e-11 9.862791426e-11 1.916076196e-10 1.635261264e-10 1.581243487e-10 2.612798912e-11 2.832474917e-10 3.898361626e-10 7.790969047e-11 5.714965041e-11 9.097539341e-11 1.657282039e-10 4.549375281e-11 1.530553718e-10 1.473532944e-10 1.639505039e-10 1.689013666e-10 1.178689254e-10 1.240364383e-10 1.143068176e-10 8.569431122e-11 2.212085545e-11 6.009253544e-11 1.12488666e-10 +2.679086125e-11 3.810386028e-11 1.386329604e-10 1.16367601e-10 9.78697747e-11 8.845931354e-11 7.447077538e-11 6.887816295e-11 4.732958831e-11 1.995338046e-10 1.611921071e-10 1.331159493e-10 1.884867529e-10 1.522582301e-10 1.361092825e-10 9.178325549e-12 1.849313149e-10 8.390043502e-11 6.755694712e-11 8.863138869e-11 7.175926684e-11 3.312688896e-11 4.048472742e-11 3.304681731e-10 1.023175747e-10 1.001601379e-10 5.1474007e-11 1.194974972e-10 1.763424393e-10 7.936061232e-11 2.083235439e-10 4.419897965e-11 1.649467728e-10 1.576734652e-10 6.955099582e-11 1.322301444e-10 5.852988357e-11 9.451833841e-11 1.162610416e-10 1.307057141e-10 8.188397007e-11 2.960239206e-11 5.216437834e-11 1.928675787e-10 4.996123017e-11 9.294278885e-11 2.096179353e-10 1.2864787e-10 9.875924391e-12 2.358916094e-10 1.869005244e-10 4.068102771e-11 5.750142062e-11 9.800502357e-11 1.557029292e-10 1.257517144e-10 5.877346017e-11 2.101995992e-10 6.433291638e-11 1.307027116e-10 8.383804927e-11 2.327929964e-10 1.654538399e-10 1.047475908e-10 2.99908615e-10 1.343802498e-10 1.395066238e-10 2.566110861e-11 8.810749878e-11 2.126698648e-11 1.039313118e-10 1.077376755e-10 1.130423234e-10 1.148832613e-10 2.060852775e-11 7.028961791e-11 1.182534149e-12 7.685407328e-11 2.81586417e-10 1.074572269e-10 1.166679204e-10 1.371470579e-10 1.967253737e-10 1.13198384e-10 1.18646209e-10 2.555158571e-11 5.28148553e-11 4.012177669e-11 4.661549516e-11 1.578506975e-10 1.498427382e-10 2.74716547e-10 1.919852284e-10 1.05706653e-10 2.65598008e-11 7.349213498e-11 9.552623662e-11 7.825779339e-11 1.130282529e-10 2.024480981e-10 1.339547055e-10 1.245668231e-10 1.271861886e-10 1.118512325e-10 2.100599508e-10 1.817839782e-10 3.296794231e-11 4.677682085e-11 2.570827535e-10 1.849355384e-10 2.679048999e-10 9.220045171e-11 1.473345472e-10 1.492732385e-10 2.18697915e-10 2.269068421e-10 1.124046098e-10 1.282365172e-10 1.386511773e-10 1.181434077e-10 2.26670204e-10 9.132137037e-11 3.912227747e-10 9.300658633e-11 1.78764991e-10 2.157084329e-10 1.576454557e-10 1.430745411e-10 1.594414826e-10 1.448921513e-10 1.024797044e-10 2.415372643e-10 1.319630584e-10 1.585618595e-10 9.205297261e-11 2.83300828e-10 1.757060244e-10 6.379315438e-11 1.505469781e-10 2.279497874e-11 1.588999893e-10 1.836704903e-10 2.374542346e-10 1.394073494e-10 1.235513936e-10 3.662580529e-11 1.556935297e-10 1.32904505e-10 9.948519156e-11 1.651606199e-10 9.017752266e-13 8.607714103e-11 6.572781352e-11 1.905785265e-10 2.212116406e-10 1.166758366e-10 1.342792328e-10 1.633512867e-16 1.983069096e-10 1.200349435e-10 1.600370865e-10 1.781622558e-10 1.488119817e-10 2.821101246e-10 3.942545045e-23 2.725198497e-10 2.106001726e-10 1.628310067e-10 1.354262092e-10 1.76853306e-10 1.56801695e-10 2.556289307e-10 1.122910482e-10 2.659376555e-10 9.569306854e-11 7.421239066e-11 2.393268838e-10 3.513361169e-11 5.045666879e-11 6.958374183e-11 4.054668302e-10 1.553794463e-10 2.472552436e-11 6.104162444e-11 3.784631965e-10 2.204011909e-10 6.981714019e-11 1.038423961e-10 1.295622345e-10 3.020490302e-10 1.844215379e-10 3.645259393e-10 1.416846551e-10 1.643371091e-10 1.886977903e-10 2.028349792e-10 1.349807395e-10 1.224463829e-10 8.619194469e-11 1.35639823e-10 1.542792391e-10 1.412362135e-10 7.530064714e-11 3.35421816e-10 7.259563216e-11 2.189548943e-10 1.57236538e-10 1.76622567e-10 1.016325448e-10 1.243462666e-10 1.376974836e-10 1.499468561e-10 1.833178224e-10 5.079891662e-11 1.435430779e-10 2.699734096e-11 6.067736896e-11 4.840781044e-11 5.794142786e-11 5.296028669e-11 5.33791437e-11 2.131558691e-10 2.557551158e-10 9.851001215e-11 1.359316433e-10 4.704463328e-11 6.29831089e-12 2.886442017e-11 1.450325617e-10 1.847565859e-10 7.73123601e-11 4.585141882e-11 2.093728582e-10 1.541756002e-10 1.761412908e-10 5.889675103e-11 1.346634905e-10 6.92171356e-11 6.794835995e-11 1.14802072e-10 9.713106237e-11 7.749765875e-11 1.784071675e-10 1.6027161e-10 9.843115373e-11 2.594638086e-10 1.756272139e-11 2.466620487e-10 1.194684771e-10 7.412264992e-11 1.338353329e-10 2.851142155e-10 1.209790877e-10 7.144788796e-11 1.46080971e-10 6.355351894e-11 6.857109496e-11 1.528440585e-10 1.106005489e-10 7.568415558e-11 1.2173777e-10 2.23364153e-10 4.734976569e-11 1.905252209e-10 6.96057977e-11 1.798965176e-10 1.175287972e-10 4.552595868e-11 1.083462054e-10 4.325031332e-11 7.910136761e-11 1.751191368e-10 1.355052791e-10 8.280385894e-11 4.989031933e-11 1.407141949e-10 7.56587786e-11 9.878002351e-12 9.120748597e-11 1.381595697e-10 5.508192003e-11 2.578788469e-10 1.452080398e-10 6.452078158e-11 1.054869627e-10 1.959709882e-10 2.047398568e-10 2.170329647e-10 1.246546414e-10 1.086342411e-10 7.383996479e-11 1.310032772e-10 1.418735695e-10 2.722644595e-11 6.672797142e-11 4.685345715e-11 6.159062827e-12 1.607945385e-10 6.388437569e-11 9.673417805e-11 +1.054831006e-10 1.723671101e-10 1.081170498e-10 1.585713739e-11 7.572513987e-11 5.18757834e-11 5.721443361e-11 7.78505247e-11 3.713657936e-11 4.166143956e-11 1.520132509e-10 6.295108507e-11 2.456674649e-11 4.341212516e-11 1.829707728e-10 5.151055456e-11 1.037281983e-10 2.074754196e-11 2.94096612e-10 6.584157865e-11 1.943291947e-10 4.013200679e-11 8.865882527e-11 1.282176099e-10 1.50397348e-10 9.433668625e-11 9.810409166e-11 1.269324142e-10 1.434364043e-11 8.999632847e-11 3.641540194e-11 7.188781805e-11 6.232366669e-11 1.584134288e-10 2.605915338e-10 1.949173102e-10 9.725155175e-11 8.516874774e-11 1.557571456e-10 1.627865775e-10 1.418642072e-10 6.085032835e-11 1.031017908e-10 9.473775515e-11 9.702920883e-11 4.447380395e-11 1.876796596e-10 1.118215654e-10 4.054201701e-10 4.459173308e-11 1.048246084e-10 5.40958396e-11 5.489204356e-11 1.069026477e-10 6.967842388e-11 2.393512172e-10 5.349910321e-11 2.84016171e-10 4.205783275e-11 8.237873269e-11 3.413468861e-11 1.102611465e-10 8.712470101e-21 1.318019475e-10 5.046236769e-11 8.897785842e-11 5.386961554e-11 1.353511929e-10 2.632458675e-11 5.048939695e-11 1.660915551e-10 6.168300878e-11 1.287754011e-11 2.779099408e-11 2.316792429e-10 1.407453303e-10 9.968193875e-11 3.023520109e-11 1.468748359e-10 1.64444711e-10 6.222852699e-11 3.790440304e-11 1.311338501e-10 7.74268104e-11 1.191777043e-10 1.178139849e-10 1.2806683e-10 8.865623438e-11 1.166862719e-10 8.645495387e-11 5.24767691e-11 1.384371814e-10 5.565619842e-11 9.207467275e-11 1.165728288e-10 2.207550224e-10 1.268263903e-10 6.440386991e-11 7.3107372e-11 3.084738565e-10 9.643940904e-11 9.421785502e-11 2.160560331e-10 4.005320932e-10 2.125292981e-10 1.699407293e-10 1.034069654e-10 6.980440431e-11 9.316207762e-11 2.427709453e-10 1.468659449e-10 7.47677308e-11 2.29180947e-10 1.108824853e-10 1.541972387e-10 1.891930306e-10 1.737866195e-10 5.256130862e-11 2.146276111e-10 2.611658317e-10 3.64062723e-13 1.026308773e-10 1.004039894e-10 1.013469358e-10 1.702859302e-10 1.156774069e-10 3.280547019e-10 2.074961658e-10 1.884289921e-10 6.944134468e-11 1.421849487e-10 1.219441579e-10 1.589343074e-10 2.031709142e-10 9.778937397e-11 7.476111517e-11 1.960358993e-10 7.280535052e-11 3.550526806e-10 1.07394583e-10 1.024080746e-10 1.971898357e-16 1.099939216e-10 1.718987744e-10 1.232203905e-10 1.648473296e-10 2.095915567e-10 7.288691017e-11 1.852730879e-10 1.0103825e-10 8.16871583e-11 1.162159034e-10 6.851806801e-11 1.335558162e-10 7.600723806e-11 7.862602572e-11 7.639630153e-11 8.103702819e-11 2.40399506e-10 2.616000772e-10 1.035244325e-10 1.16558638e-10 2.35957527e-10 2.03330129e-10 6.551230651e-11 1.050542709e-10 9.970810769e-11 1.56979078e-10 1.872510908e-10 2.605563353e-10 7.926595033e-11 0 1.526368547e-10 1.638506306e-10 2.519610471e-10 1.531533006e-10 1.59272631e-10 1.64425178e-10 1.534533906e-10 1.455390778e-10 8.719136154e-11 3.117706026e-10 2.037950356e-10 2.965017837e-10 1.611005133e-10 2.468815786e-10 4.05898416e-10 1.417766827e-10 1.582136764e-10 5.284482591e-11 1.06394958e-10 2.18649489e-10 1.735906897e-10 1.133679489e-10 1.440555325e-10 1.435800966e-10 1.162194468e-10 6.215252772e-11 1.349121868e-10 5.480303032e-11 8.07628342e-11 1.219870661e-10 3.761911875e-11 8.470991219e-11 2.471934713e-10 5.661361469e-11 2.187027571e-10 1.332185027e-10 7.458749e-11 1.270700098e-10 1.520636433e-11 8.945893012e-11 7.39140091e-11 6.076554014e-11 8.368463634e-11 1.505410324e-10 1.858741705e-10 4.394285928e-11 2.219900549e-10 8.450899092e-11 5.25409288e-11 5.771775304e-11 8.554234427e-14 1.22827853e-11 8.035773569e-11 1.591277616e-10 6.359496021e-12 8.752772875e-12 1.683693468e-10 5.050398196e-11 5.648642498e-11 1.02326252e-10 6.014434314e-11 9.952406221e-11 1.078389128e-10 3.473498471e-11 6.325370914e-11 1.22793359e-10 1.265212686e-10 4.629303176e-11 1.024767e-10 2.008358385e-11 1.016553602e-10 1.816689108e-10 9.337214579e-11 6.255625661e-11 1.156718505e-10 2.531282873e-10 5.01113216e-11 2.544083125e-10 1.768796579e-10 4.392633827e-11 1.257762377e-10 5.949231365e-11 1.210914629e-10 1.893340168e-10 1.132345111e-10 7.426231793e-11 7.158577347e-11 7.144559171e-11 7.213129427e-11 1.049167545e-10 7.6332544e-11 1.925337203e-10 6.999989304e-11 6.381781855e-11 1.986601299e-11 3.608816019e-11 7.178585134e-11 9.306991724e-11 1.119662485e-10 7.16338145e-11 1.681030499e-10 2.407395966e-10 2.843654321e-11 1.192040989e-11 1.518773542e-10 6.32795269e-11 1.698752212e-10 1.725346622e-11 4.634469912e-11 7.319775676e-11 1.054449662e-10 1.309370741e-10 8.982725343e-11 2.846968229e-10 1.393424291e-10 1.880484923e-10 1.71778909e-10 6.504837421e-11 5.397155555e-11 3.345640304e-11 2.948709728e-11 1.431301912e-10 7.52529863e-11 7.318983201e-11 1.735621503e-10 7.327619457e-11 1.879963751e-11 2.605404054e-11 +6.261687318e-11 1.226275747e-10 3.029787681e-11 1.071697871e-10 4.735267416e-12 1.551358762e-10 6.458539584e-11 6.931000422e-11 1.301072114e-10 1.873077207e-11 4.903950807e-11 2.44964387e-11 6.315105304e-11 3.182995137e-11 8.718828321e-11 1.163806306e-10 9.908126794e-11 7.66704085e-11 1.215483104e-10 1.066970596e-10 1.207355448e-10 1.866840249e-11 6.639706001e-11 1.295611381e-10 3.744235746e-10 6.094316383e-11 4.506940556e-11 4.514511067e-11 1.663172176e-10 1.070747142e-10 3.000994193e-10 1.412379594e-11 5.262436202e-11 9.772183295e-11 1.413877212e-10 6.238045412e-11 5.151261299e-11 8.418081691e-11 4.287559804e-11 8.20401131e-11 2.894859805e-11 1.397296533e-11 1.92058639e-10 1.0068421e-10 6.859320354e-11 9.182597972e-11 1.534739607e-10 2.45174461e-11 9.674710493e-11 5.056935135e-11 2.872777421e-10 3.420914541e-11 8.201942177e-11 2.155250014e-10 1.541450445e-10 2.34725701e-10 5.826452893e-11 2.163868257e-10 1.71251723e-10 1.164048784e-11 5.509809979e-11 5.072069118e-11 3.123802495e-10 6.449045981e-11 5.404423635e-11 1.595643599e-10 2.765165256e-11 8.443424973e-11 1.017043555e-10 2.413614549e-11 1.33477745e-10 1.694574113e-10 4.565602577e-11 8.343505391e-11 1.676604185e-10 4.252846796e-11 5.399809195e-11 3.593489068e-11 1.570830927e-10 4.227342029e-11 2.468403115e-11 6.621367422e-11 4.095382445e-11 7.924841442e-11 4.946139244e-11 3.318239875e-10 6.741179903e-11 1.491675623e-10 6.923470549e-11 4.370495807e-11 1.095583457e-12 8.970811278e-11 1.707960063e-10 7.845720468e-11 1.305826282e-10 1.238162728e-10 1.01435626e-11 1.52662993e-10 1.119815689e-10 1.845117962e-10 2.954886813e-11 7.626079086e-11 6.114665729e-11 1.292603711e-10 7.859001054e-11 6.296474044e-11 1.774781303e-10 1.561305602e-10 1.345885684e-10 1.649826584e-10 1.990648431e-10 1.094939956e-10 1.888263038e-10 1.183190159e-10 1.33561202e-10 2.84231688e-10 2.300973683e-10 2.073685824e-10 1.093489976e-10 1.057577802e-10 1.559768221e-10 2.152924907e-10 1.557655323e-10 1.118294754e-10 1.659041457e-10 1.694708252e-10 1.227548817e-10 2.020812142e-10 1.795264014e-10 1.406580176e-11 2.8431094e-10 1.452438161e-10 2.684760743e-10 1.545738035e-10 8.960618472e-11 1.314512775e-10 8.805371917e-11 2.440181306e-10 1.567923202e-10 1.307079777e-10 3.44940042e-10 1.507437209e-10 1.977557072e-10 1.428438372e-10 1.497938752e-10 2.688896047e-10 1.486001353e-10 3.635818451e-10 8.514844034e-11 2.14519553e-10 1.64350657e-10 2.230207258e-10 2.24338862e-10 1.558248989e-10 1.840002988e-10 2.570726832e-10 2.186580368e-10 2.010449601e-10 1.667092202e-10 1.857033216e-10 1.40560065e-10 2.764661443e-10 1.480529481e-10 1.387908158e-10 2.796233903e-10 6.528762685e-11 6.256523623e-11 7.86120171e-11 2.684329631e-10 1.887462111e-10 1.163609295e-10 9.060803678e-11 2.25140901e-10 5.241684221e-11 1.569031824e-10 6.71019206e-11 2.357424147e-10 7.254657134e-11 9.652420756e-11 1.614804655e-10 2.395397774e-10 9.254572779e-11 2.607183222e-10 3.145042714e-10 1.790312877e-10 9.187981418e-11 1.698444989e-10 1.31798998e-10 2.849637559e-10 2.886116714e-11 5.177255231e-11 1.327288163e-10 1.051778998e-10 1.06495073e-10 2.74739375e-11 9.91637071e-11 1.146238179e-10 1.876758398e-10 3.662003317e-11 8.296524467e-11 5.474507673e-11 9.284302023e-11 2.30461541e-10 7.623741853e-11 1.772617017e-10 8.999399417e-11 3.157982726e-11 4.555430808e-11 5.924436961e-12 3.437328378e-11 9.628412312e-11 1.331854035e-10 5.855553385e-11 1.108500954e-10 2.99734406e-10 9.456075968e-11 7.593769041e-11 1.321493073e-10 6.231811424e-11 1.248330699e-10 7.024911154e-11 1.148447954e-10 1.649361486e-10 2.109920599e-11 4.907737557e-11 7.294590651e-12 8.144602104e-11 4.691712909e-11 2.375845403e-10 5.943665846e-11 6.563040384e-11 1.014155858e-10 1.073109295e-10 5.806093124e-11 1.327829928e-10 4.102336396e-11 1.082378487e-16 9.681167621e-11 8.68254554e-11 2.446333337e-10 2.212704735e-10 1.547777349e-10 6.120546605e-11 5.017973707e-11 7.88825551e-11 2.964137994e-10 9.375720233e-11 1.038773126e-10 7.906222297e-11 1.087483679e-10 8.399938104e-11 9.164100068e-11 1.550824353e-10 1.528013879e-10 1.225790773e-11 1.77234485e-10 7.257330295e-11 9.159333665e-11 7.352088898e-11 4.538494835e-11 8.338676147e-11 1.011527137e-10 8.010358444e-11 3.020338646e-10 6.514459159e-11 8.148382905e-11 4.877137567e-11 4.842049877e-11 2.036113928e-10 5.429943189e-11 5.20646111e-11 1.420356881e-10 1.873147944e-11 8.887882408e-11 6.731869564e-11 3.926022074e-11 8.612664915e-11 1.818462504e-10 4.584647662e-11 7.791040072e-11 5.292097993e-11 1.488371224e-10 1.157534219e-10 3.741238907e-11 9.80652995e-11 7.130796056e-11 2.281235811e-11 2.72914804e-10 1.033429864e-10 2.8207808e-10 7.912043053e-11 1.420168379e-10 1.506895291e-10 9.328100621e-11 1.175514175e-10 9.325248274e-11 3.524206774e-11 9.462649098e-11 1.061038808e-10 1.143037811e-10 +1.52006012e-10 1.414170433e-10 1.20489514e-10 2.117535991e-10 2.080682967e-11 3.281728859e-11 8.06253217e-11 2.041030073e-10 7.691201523e-11 1.416541611e-10 1.437745672e-10 2.991368136e-10 6.509466307e-11 7.195263181e-11 1.31701008e-10 4.154961885e-11 1.213114359e-10 4.130369973e-11 8.716204992e-11 9.024214212e-11 1.225131611e-10 6.627786218e-11 2.679552505e-11 2.263683222e-10 3.266997226e-11 2.506894288e-10 6.194871344e-11 9.567407078e-11 1.871658431e-10 5.206649626e-11 4.313238065e-11 4.563558038e-11 1.074519594e-11 7.800673993e-11 6.380866294e-11 2.554841676e-11 8.612183578e-11 2.441042628e-10 6.497484877e-11 1.631564201e-10 7.303373583e-11 4.910599261e-11 1.40778165e-10 1.021053532e-10 7.543805703e-11 2.14494205e-10 7.914852216e-11 1.495446825e-10 2.98682773e-11 1.159713091e-10 2.481046635e-10 8.96664901e-11 1.351988268e-11 7.821775181e-11 1.111705308e-10 8.086822424e-13 3.139498009e-10 1.046532222e-10 1.076711225e-10 3.106137727e-11 3.382515118e-10 1.312431786e-10 1.04008521e-10 1.729528589e-10 5.380245595e-11 5.860561435e-11 4.718136847e-11 1.085210945e-10 5.313519399e-11 1.31002591e-10 3.178747023e-11 8.675040319e-11 5.527660562e-11 7.888754091e-11 8.510702277e-12 1.841108072e-10 1.370448567e-11 6.251452787e-30 8.96087223e-11 1.379909644e-10 1.350798583e-10 9.063524857e-11 6.808582048e-11 5.892217543e-11 1.144203142e-10 1.430649201e-10 1.703028403e-11 6.399074553e-11 3.008429908e-10 1.247710642e-10 8.988255815e-11 6.990581712e-11 2.622034085e-11 2.029921347e-10 1.932012244e-10 3.663017551e-11 1.422611562e-10 6.595132168e-11 1.521167137e-10 7.735554017e-11 9.600635727e-11 1.63437887e-10 1.104409272e-10 1.195731917e-10 5.415536794e-11 9.941245823e-11 2.224210132e-10 2.312228169e-10 1.46659147e-10 8.049589362e-11 2.483347422e-10 7.365641793e-11 1.930262714e-10 1.787046717e-10 1.202023813e-10 1.6980859e-10 2.131786489e-10 2.455307469e-10 6.150578887e-11 2.032351224e-10 6.779782261e-11 8.884580438e-11 1.191546217e-10 1.146886443e-10 1.953602852e-10 1.77174412e-10 1.043914748e-10 1.361285798e-10 1.063206073e-10 3.627093155e-10 7.528771419e-11 6.064289775e-11 1.690690416e-10 7.901810562e-11 7.427299949e-11 1.298922712e-10 1.101829546e-10 1.191031138e-10 1.512183763e-10 1.785348171e-10 3.238647851e-11 5.872323624e-11 1.411133028e-10 1.985395762e-10 1.581103954e-10 6.4092826e-11 1.852971244e-10 2.052671872e-10 7.666850371e-11 1.96016651e-10 1.702419807e-10 2.419451095e-10 1.565850511e-10 8.204117956e-11 1.885101098e-10 3.134926444e-11 1.564517047e-10 1.829133811e-10 1.328205699e-19 9.000878595e-11 1.095671228e-10 2.698930638e-10 3.099624194e-10 1.484928318e-10 1.628575668e-10 1.943632362e-10 5.446102607e-11 1.056082554e-10 8.670772795e-11 1.224692285e-10 2.247115157e-10 2.01541581e-10 1.173279188e-10 2.21118292e-10 1.959433276e-10 1.367725863e-10 1.607711282e-10 9.025160482e-11 2.917714271e-10 1.927932679e-10 1.973590848e-10 1.778649035e-10 2.949089329e-10 1.531493417e-10 2.215893363e-10 9.399761246e-11 7.55755921e-11 1.916274911e-10 1.494296746e-10 3.611708325e-10 8.283500221e-11 1.2348133e-10 1.212515968e-10 3.692270666e-10 1.46368044e-10 1.435685363e-10 8.089009039e-11 1.27661008e-10 5.60190867e-11 6.599914857e-11 6.854498832e-11 1.699268699e-10 2.222334397e-10 1.316440217e-10 1.434436806e-10 1.264838823e-10 1.357164864e-10 1.162550234e-10 5.610062804e-11 1.122034068e-10 7.899876201e-11 2.982443088e-11 6.517096863e-11 8.75747187e-11 3.289488453e-11 1.828581213e-10 9.15369309e-11 4.766046859e-11 4.420962892e-13 2.259990315e-11 6.774023638e-11 4.540171927e-11 1.072651885e-10 5.524075245e-11 5.746518776e-11 1.59649101e-10 6.687607554e-12 6.479309889e-11 5.483667629e-11 1.815554309e-10 7.208759536e-11 1.100846598e-11 4.221944238e-11 4.518650258e-11 9.522469992e-11 2.245308987e-10 4.725400447e-11 4.134216574e-11 2.146701875e-10 1.664427648e-10 9.307816231e-11 2.997010791e-10 1.212812641e-11 1.854623379e-10 6.437646672e-11 1.071486222e-10 6.798422644e-11 9.225515513e-11 1.35579387e-10 8.598382222e-11 5.393700507e-11 7.379555861e-11 1.438794343e-10 8.48112003e-11 4.409930232e-11 1.291091798e-10 6.89268254e-11 2.471811657e-11 3.971658962e-11 7.608742238e-11 3.606812848e-10 8.588169688e-11 3.088024349e-11 6.240518265e-11 1.024263056e-10 8.217624221e-11 6.959504098e-11 1.685143542e-10 1.304279925e-10 4.52574407e-11 2.275617466e-10 3.634067142e-11 2.585052003e-11 2.651156461e-10 1.959015116e-11 2.964050554e-11 1.574910357e-10 9.652573564e-11 1.489586906e-10 3.6680585e-11 2.143842349e-11 9.298783194e-11 1.66569824e-10 1.128744636e-10 8.871479375e-11 1.286515036e-10 3.924653084e-11 1.136838909e-10 8.277480424e-11 1.278493226e-11 1.849325377e-10 2.23205774e-10 1.430520173e-10 8.254700526e-11 4.31601353e-11 2.881398931e-11 2.410454021e-10 2.274506715e-10 1.30558042e-10 1.409382606e-10 +5.012618393e-11 1.014057584e-10 1.783146505e-10 5.896438957e-11 1.001650861e-10 2.819744068e-11 1.879302681e-10 5.827668302e-11 1.509847447e-10 6.499006645e-11 5.336584708e-11 9.361860251e-11 2.329132537e-10 6.669193352e-11 4.495498744e-11 1.84701868e-10 2.319816531e-11 9.032366372e-11 8.219791204e-11 5.334516017e-11 4.23426028e-11 5.897310145e-11 1.000618453e-10 8.201641837e-11 2.512274878e-11 1.974141096e-10 3.707373771e-11 1.492476526e-10 7.926449852e-11 8.530416047e-11 1.935372114e-10 7.810231224e-11 8.14614496e-11 1.687922272e-10 5.646142088e-11 3.817816565e-11 2.00138189e-10 3.702672868e-11 1.089648927e-10 7.715849825e-11 2.535089154e-10 2.26949967e-10 4.663240728e-11 1.709250554e-10 1.132210617e-10 2.545222137e-10 2.139610422e-10 8.295307939e-11 5.980806026e-11 4.190638053e-11 3.5138478e-11 2.309415919e-11 5.030471266e-11 1.284586114e-11 2.176769556e-11 9.567001046e-11 1.102014683e-10 6.137323026e-11 3.323048418e-10 1.592094275e-11 1.062083879e-10 7.186962214e-11 1.088335835e-10 5.895059693e-11 5.112392845e-11 1.433451543e-10 6.304039556e-11 5.359378882e-11 1.508464585e-10 1.161917002e-10 8.571862154e-12 1.078325972e-10 8.066495004e-11 1.120960364e-10 3.834806329e-11 1.264645138e-10 3.96955638e-11 5.705068584e-11 3.57263671e-11 1.210653699e-10 1.226215166e-10 1.991734338e-10 5.731213899e-11 1.494671569e-11 4.684148637e-11 1.825590082e-10 1.12350914e-10 9.577015768e-11 6.3065638e-11 9.766328992e-11 1.454438295e-11 8.854169881e-12 1.607130614e-10 1.369675279e-10 1.205809662e-10 4.878742581e-11 9.826531324e-11 1.311911162e-10 9.860164937e-11 1.367105412e-10 1.786198425e-10 4.599369285e-11 1.22941742e-10 9.094036832e-11 2.764138413e-10 1.506204292e-10 1.323910979e-10 3.501490456e-11 4.001436228e-11 1.500425794e-10 6.461697962e-11 1.01595998e-10 9.051115438e-11 1.166855077e-10 1.464923938e-10 1.587627949e-10 2.450399768e-10 1.142880612e-10 1.451937703e-10 1.686063956e-10 3.177452966e-11 9.862248775e-11 2.335146133e-11 1.161286723e-10 2.075847885e-10 1.779343607e-10 1.88188323e-10 4.489215406e-11 2.29262875e-10 2.907315181e-11 1.706265451e-10 4.88786962e-11 9.760895647e-11 2.245589778e-10 1.399431249e-10 1.182146443e-10 2.061579349e-10 1.183237993e-10 1.332779488e-10 3.122842875e-11 5.979414798e-11 2.240105122e-10 2.22317183e-11 1.259493318e-10 1.335046259e-10 1.37151872e-10 1.223560509e-10 2.0496259e-10 4.161128945e-11 1.067036701e-10 7.431294938e-11 2.206873071e-10 1.599278784e-10 1.657008247e-10 2.219566897e-10 9.080578697e-11 1.11537152e-10 2.480479544e-10 4.200537837e-11 1.106155086e-10 1.028188799e-10 9.747940776e-11 5.372814847e-12 1.758856164e-10 5.016820313e-11 5.798312369e-11 1.388480273e-10 1.553188547e-10 1.183925785e-10 1.154888049e-10 2.129630377e-10 1.406530836e-10 1.783200664e-10 3.11285309e-10 5.101973093e-11 1.177010241e-10 1.772601931e-10 1.398678225e-10 1.483435329e-10 8.125450407e-11 1.553924163e-10 3.929252405e-11 1.623173894e-10 2.583696246e-11 1.382707361e-10 3.049291897e-11 9.323963363e-11 1.235494101e-10 1.311228068e-10 2.234389832e-10 1.722517976e-10 1.329497051e-10 3.422461102e-11 1.21571224e-10 1.049932589e-10 3.426982867e-11 7.611532336e-11 1.129985955e-10 1.24075666e-10 4.682190953e-11 1.014427484e-10 9.531297965e-11 8.15421191e-11 1.140099161e-11 1.729612382e-10 1.347560074e-10 1.329730382e-10 5.59136418e-11 2.449273059e-14 4.897998751e-11 1.57371922e-10 2.093602639e-11 1.733471676e-10 1.008821766e-10 9.979167143e-11 4.896219787e-11 3.484058289e-11 1.106934607e-10 1.94862861e-10 5.06401628e-11 4.884016402e-11 2.297354248e-10 2.253617173e-10 3.165240235e-11 7.626488486e-11 8.896929379e-11 4.694008087e-11 5.577968017e-16 1.198254039e-10 2.71743824e-11 7.223577157e-11 8.35705819e-11 4.46032443e-11 7.019735919e-11 2.15332156e-10 6.507761473e-11 5.056428069e-12 1.824759652e-11 1.065414889e-10 5.895024398e-11 2.415992225e-25 2.605232868e-11 1.093783897e-10 8.364597144e-11 9.134560553e-11 4.98259529e-11 3.716575515e-11 7.087083508e-11 1.203067218e-10 8.152356971e-11 1.647591141e-10 1.975929066e-10 3.207607916e-10 1.83439055e-10 2.06519781e-10 6.719079826e-11 9.9104835e-11 1.129048174e-10 2.641869733e-10 1.438852372e-11 1.216361194e-10 7.574222188e-11 3.430617805e-11 9.57914443e-11 1.598337048e-10 3.034425263e-11 1.405837514e-10 5.066223464e-11 6.935637252e-11 1.132332707e-10 2.700977274e-11 1.796153614e-10 2.353210272e-10 8.335854836e-11 1.600849992e-10 6.721490732e-12 1.5104236e-10 5.47056679e-11 1.006810635e-10 3.016743247e-11 1.342257161e-10 3.661837476e-12 4.921313433e-11 6.841950541e-11 1.551494412e-11 8.393861945e-12 1.201454675e-10 5.178224034e-11 7.810659905e-11 6.098022717e-11 1.208528275e-10 5.806681315e-11 4.637076699e-11 3.268813624e-11 1.105407131e-10 6.545845427e-11 2.914969734e-11 6.443693137e-11 2.07166453e-11 4.835043418e-12 +6.696662876e-11 1.676439872e-11 1.38661782e-10 9.940070804e-11 8.84712758e-12 3.055903095e-11 4.818834273e-11 7.23489015e-11 1.592362602e-10 1.236272207e-10 9.171690154e-11 1.149241087e-10 2.365424746e-11 6.655603338e-11 1.207686422e-10 4.259153282e-11 4.641007869e-11 6.214992653e-11 2.397355073e-11 1.394720749e-10 1.760398686e-10 3.465531695e-11 5.455601161e-11 2.851396312e-11 1.050164818e-10 6.87974089e-11 1.88263396e-11 1.727821545e-10 8.67547275e-11 1.183740577e-10 5.888617478e-11 3.772938029e-11 8.620804552e-11 3.59112549e-11 1.510781363e-10 1.777492332e-10 2.051261257e-10 2.598730977e-10 8.146907982e-11 1.117644555e-10 1.892637191e-10 1.111594096e-11 7.404733103e-11 6.860789265e-11 1.638379862e-10 1.096378836e-10 7.844803663e-11 7.771177992e-11 6.014589731e-11 1.535400421e-11 1.414636035e-10 3.493232413e-11 6.892671712e-11 1.424727663e-10 1.472861953e-10 5.807112218e-11 2.38808996e-10 1.976298223e-11 1.077879557e-10 2.343902263e-10 4.547432031e-11 6.152905847e-11 6.376837833e-11 3.701941764e-11 9.271891558e-11 1.015758138e-10 1.3983455e-10 3.598374423e-14 2.780987004e-10 1.563016556e-10 3.073619646e-11 4.383071975e-11 1.34651013e-10 2.694665132e-11 2.734955738e-10 8.25260117e-11 2.492177154e-11 4.658591825e-11 5.542022707e-11 4.805792947e-11 1.172411785e-10 1.619629448e-11 1.03908408e-11 9.403839725e-11 9.013691286e-11 4.631878764e-11 3.943974172e-11 1.47634312e-10 4.45040719e-11 9.027708187e-11 8.182686237e-11 9.683002548e-11 2.086053582e-23 1.370966659e-10 6.432845046e-12 7.441440154e-11 4.283094307e-11 1.040998192e-10 2.145126466e-10 6.03573815e-11 7.996439458e-11 3.71265899e-11 6.596370408e-11 1.561532772e-10 1.810960898e-11 6.927777614e-11 6.749363689e-11 7.078528794e-11 2.195763539e-11 4.73908778e-11 1.959961114e-10 1.646725599e-11 1.576167226e-10 8.52569363e-11 1.771563074e-10 5.346265886e-11 1.883650022e-10 5.504352001e-11 1.442773972e-10 6.39684053e-11 1.234290635e-10 1.892440491e-10 1.523640154e-10 9.78781671e-11 7.987336076e-11 8.44546146e-11 2.361772535e-10 1.050513254e-10 1.480650992e-10 1.062599216e-10 2.599921052e-11 1.502421213e-10 8.121349117e-11 5.03693583e-11 7.866286809e-11 1.608592925e-10 1.118217246e-10 2.803913179e-11 6.263594361e-11 1.190352468e-10 9.344137829e-11 2.615429237e-10 1.187120497e-10 1.940515981e-10 7.442326726e-11 1.844176127e-11 1.765391122e-10 6.324760954e-11 6.671692739e-11 4.868844048e-11 2.664617409e-10 1.964894651e-10 1.533329935e-10 1.116816528e-10 1.603146745e-10 2.940999626e-10 2.483735587e-10 1.687419202e-10 1.424566845e-10 6.34981856e-11 1.137785643e-10 1.519052246e-10 1.742017721e-10 1.46633435e-10 9.409129648e-11 5.034575167e-11 5.426681717e-11 8.648633091e-11 9.218848347e-11 1.638378012e-10 8.405140517e-11 2.29918062e-10 4.467518631e-11 1.961084751e-10 1.220677088e-10 4.67564806e-11 9.643448688e-11 1.898354784e-10 9.335005564e-11 2.619758955e-10 1.845717598e-10 1.366665965e-10 2.1060121e-11 4.232115743e-11 1.469677066e-10 1.082019667e-10 1.499925288e-10 1.332661407e-10 1.090761699e-10 5.724746711e-11 9.326240888e-11 2.543950471e-11 1.320764692e-10 5.725361303e-11 7.554157026e-11 1.691968679e-10 9.552431752e-11 1.02420836e-10 5.674976048e-11 3.247096127e-13 7.25198245e-11 8.368385342e-11 6.572877402e-11 4.481720311e-11 3.19411252e-11 6.096471511e-11 1.287925593e-11 7.459648569e-11 1.887514469e-10 7.335548757e-11 3.302202506e-11 4.83411059e-11 8.436810806e-11 3.240561441e-11 7.666760263e-11 1.107823079e-10 1.858640182e-10 1.457272004e-10 1.190481913e-10 8.469181984e-11 1.197277166e-10 3.728393053e-11 1.140871894e-10 5.283192879e-11 1.477148891e-10 1.130136963e-10 3.500490347e-11 8.939585525e-11 2.457484967e-11 1.71911285e-10 1.554713521e-10 1.067209224e-10 4.62934281e-11 1.084576712e-10 1.932883158e-11 2.193038891e-11 1.180473695e-10 5.51588761e-15 3.340673232e-11 0 3.198025416e-10 1.230977657e-11 1.714050022e-10 2.159458341e-10 7.751508535e-11 3.249050031e-11 1.040672189e-11 0 1.237394809e-10 1.593972144e-10 1.312290756e-10 5.458694252e-11 6.133808516e-11 2.453702489e-10 1.02970186e-10 1.763020109e-10 2.204599057e-10 9.234427204e-11 2.238727322e-10 3.876404195e-11 2.538276162e-10 9.752402389e-11 1.340493562e-10 5.466711969e-11 1.038662962e-10 1.194523897e-10 8.87650266e-11 2.147700515e-10 4.812950816e-11 2.046458695e-11 1.254413423e-10 8.806545745e-11 2.323082753e-11 5.415982261e-11 4.962811719e-11 4.58499531e-11 4.579011915e-11 3.510410559e-11 6.522970076e-11 4.973025668e-11 2.095089702e-10 4.142765574e-11 1.14347801e-10 1.133995316e-10 2.251496514e-10 7.051560064e-11 1.777541459e-11 1.450269927e-10 1.069658598e-10 5.292240626e-11 9.697415443e-11 1.320218759e-10 3.253688776e-11 7.191182481e-11 8.998571129e-11 5.433872482e-11 2.735846081e-11 2.894389171e-11 1.80169373e-10 7.980704236e-11 +5.559061078e-11 5.596520914e-11 2.074248452e-10 1.407999085e-11 8.926395919e-11 1.769090871e-11 1.332570755e-10 2.633791173e-10 1.349799418e-10 2.117135737e-10 1.298399697e-10 3.748903023e-11 3.827172828e-11 8.790616858e-12 1.849283581e-10 3.915311663e-11 1.262106229e-10 6.320267251e-11 1.807779913e-11 9.600491758e-11 1.275930304e-10 6.808471132e-11 7.164421299e-11 5.353921732e-11 7.928110645e-11 3.962620901e-11 2.19049618e-10 1.566126896e-10 1.841422057e-10 3.205664721e-11 5.602271515e-11 1.289070549e-10 9.890280588e-11 8.150662986e-11 1.226570042e-10 3.658233792e-11 6.232131546e-11 1.403742441e-10 3.155255424e-11 1.330768048e-10 1.321083352e-10 1.182793124e-10 1.207800533e-10 2.173446601e-10 5.011096032e-11 9.919399161e-11 1.613992324e-10 1.232507204e-10 6.445625135e-11 2.488502175e-10 2.462994821e-11 3.869666435e-11 5.212120009e-11 3.818163002e-11 2.305065749e-10 1.105821069e-10 5.758004727e-11 1.088325302e-10 1.223825757e-10 9.967608241e-11 1.069147232e-11 1.450956918e-10 1.747289899e-11 4.639251396e-11 6.017359108e-11 5.62182758e-11 1.971184945e-11 8.870312301e-11 6.698570431e-11 1.375025211e-10 1.133178677e-10 8.860650933e-11 1.101782147e-10 1.179742125e-10 1.152476977e-10 1.723652237e-11 6.552259204e-11 5.845236735e-11 2.159784984e-11 6.902658814e-11 1.663272631e-10 4.568524634e-11 4.070027735e-11 1.191957872e-10 1.10084339e-10 8.712278825e-11 4.853698491e-11 3.97249206e-13 4.564930836e-11 8.544188826e-12 7.110107811e-11 4.372675693e-11 2.463933012e-10 7.158458897e-11 8.082749572e-11 1.441644112e-10 1.114116395e-10 7.110476961e-11 7.840815396e-11 3.900380846e-11 1.930219136e-10 1.542100644e-10 7.347010615e-11 5.841362315e-11 6.764064866e-11 6.087842255e-11 1.471322735e-10 2.797336619e-10 1.539226769e-10 6.213450475e-11 1.512078306e-11 1.444874245e-10 4.67048457e-11 4.864849831e-11 2.680877746e-10 8.835108613e-11 2.375446266e-10 3.330596462e-11 1.968140087e-10 7.596614308e-11 1.606395081e-10 1.106712929e-10 1.750381077e-10 7.940457155e-11 7.828031007e-11 1.244756507e-10 1.233540799e-10 2.552138334e-10 1.956947268e-10 4.72988784e-11 1.230959754e-10 1.13727464e-10 5.668823106e-11 1.744833164e-10 3.294562315e-10 1.83327015e-10 6.816971509e-11 1.339852993e-10 1.143675278e-10 1.017510819e-10 3.344238242e-10 1.398284485e-10 5.32611567e-11 1.283753733e-10 1.729857738e-10 8.897294385e-11 1.058796504e-10 5.950138274e-11 8.100867585e-11 2.383832615e-10 3.20814899e-10 1.883431558e-10 1.099287771e-10 2.29625469e-10 7.678665705e-11 1.245109521e-10 3.083801621e-10 3.143152297e-10 2.60546702e-10 2.161941025e-10 1.915337025e-10 1.075778831e-10 4.267204788e-11 2.127372341e-10 2.874368194e-10 8.899731948e-11 1.761342368e-10 1.187495728e-10 1.380620541e-10 1.91211022e-10 7.092945175e-11 8.553812133e-11 8.900072639e-11 7.680923555e-12 3.771202433e-11 1.83188005e-10 3.106550299e-10 2.155438641e-10 2.60511132e-10 1.237520002e-10 1.972343622e-10 1.302323245e-10 8.028548326e-11 1.757199617e-10 9.41604159e-12 9.30581265e-11 5.951775895e-11 1.070081083e-10 1.694006053e-10 3.242249074e-11 1.035710406e-10 4.226997083e-11 9.367247298e-11 1.532166075e-10 7.127786267e-11 3.148282998e-11 1.990484176e-10 1.135497843e-11 1.095518758e-10 2.036580616e-11 1.740586723e-10 2.81273324e-11 1.319223965e-13 2.536431135e-11 2.440845837e-10 4.511095846e-11 0 3.936422979e-12 1.922418667e-11 1.271179681e-10 4.546157966e-11 5.14094445e-11 5.476176169e-11 3.215150843e-10 0 2.946821389e-11 2.11472669e-11 7.382755571e-11 1.165423065e-10 1.269178545e-10 3.233041184e-11 8.460561026e-11 5.311734618e-11 7.405692472e-11 1.4194398e-10 2.534567744e-16 4.888866577e-11 4.238175756e-11 9.524858821e-11 2.098199786e-10 6.740927782e-11 5.327713328e-11 5.453259396e-11 8.038069348e-11 5.409677546e-11 1.120770134e-10 7.055892931e-11 6.081240124e-11 1.573465277e-10 2.275150837e-10 1.955982421e-10 2.20001168e-11 3.319004245e-11 2.253466557e-10 3.636188242e-11 1.018434858e-11 9.768555193e-11 2.141864338e-10 9.476216583e-11 4.071628302e-11 2.314639603e-10 1.684687574e-10 1.955835982e-10 8.390733321e-11 5.898299766e-11 2.202852523e-10 1.333160651e-10 6.589206206e-11 2.984374007e-10 1.212350188e-10 6.668249812e-11 1.10893256e-10 7.988317728e-11 7.242539131e-11 5.913196126e-11 2.375755778e-11 1.691179032e-10 3.172161922e-11 4.712574361e-11 2.354401165e-10 1.405897336e-10 8.948738122e-11 9.63271716e-11 1.057797935e-10 2.570542161e-10 1.110504845e-10 2.091597185e-10 1.050460107e-10 1.326729461e-10 6.281123924e-11 2.76752827e-11 2.382451844e-10 1.755002266e-10 6.879722061e-11 4.448278252e-11 8.946996744e-11 2.69498325e-11 1.036565927e-11 8.006082155e-11 5.847881574e-11 1.772099852e-10 1.459234963e-10 3.974984444e-11 3.103017609e-12 1.45469067e-10 6.897382462e-11 2.79460776e-11 1.752191659e-11 4.644242171e-11 1.802862113e-10 +2.623575861e-11 5.586570439e-11 4.001448782e-11 3.836029997e-11 1.497510124e-10 5.667972057e-11 1.054277416e-10 1.053310563e-10 5.55990438e-11 2.391346191e-10 1.102832603e-10 2.261015354e-11 3.906850252e-11 9.783764563e-12 1.130769884e-10 4.841633725e-11 1.468962047e-10 1.703021169e-11 3.387318888e-11 1.330210048e-10 3.851167862e-11 1.051002586e-10 8.25644782e-12 4.919833929e-11 1.207361e-11 1.458270009e-11 3.311510431e-11 8.355347295e-11 4.072883119e-11 1.284928248e-10 9.703381446e-11 7.364542325e-11 1.377003476e-10 1.89996962e-11 7.045429979e-11 2.272312265e-11 9.336690901e-11 7.988684287e-11 1.410724176e-10 2.800564323e-11 5.162275924e-11 1.667238388e-10 5.910596181e-11 9.29159752e-11 3.738581756e-11 2.150021071e-10 1.648568926e-11 9.108608731e-11 8.264609667e-11 9.039072173e-12 3.921730599e-13 1.918945241e-11 6.112047107e-11 2.461852062e-11 3.82465019e-11 1.780124207e-10 6.398319912e-11 7.140719363e-11 3.693883014e-11 8.213660051e-11 2.854213213e-11 2.889177466e-11 1.531875803e-10 2.017269138e-10 4.54244067e-11 3.981531224e-11 2.202416638e-11 1.060707583e-10 1.289556834e-10 5.656511832e-11 2.071115772e-10 9.271664261e-11 8.775088224e-11 6.575487715e-11 1.071202406e-10 7.946931746e-11 2.354287867e-11 1.111842854e-10 1.007687336e-10 4.819082012e-11 1.841360966e-10 1.273472615e-10 3.844108134e-11 2.305993467e-10 9.177832999e-11 3.77703143e-11 0 1.196134182e-16 4.089196956e-11 1.651283763e-10 4.800862087e-11 6.281899326e-11 0 5.499334378e-11 7.409205086e-11 8.330501896e-11 8.930866945e-11 7.273980231e-12 5.541151375e-11 5.262872377e-11 1.646363996e-10 1.474622297e-10 8.658035216e-11 1.452969971e-10 1.044778947e-10 1.040759537e-10 5.533930669e-11 3.374256876e-11 1.413390231e-10 1.869462908e-10 1.199105103e-10 1.675241725e-10 1.759937218e-10 1.195346559e-10 9.79408069e-11 1.148250696e-10 9.941338034e-11 5.691003126e-11 3.372139968e-11 1.073205498e-10 1.614298802e-11 3.107307109e-11 1.805270257e-10 1.357272473e-10 3.520157814e-10 8.542775009e-11 7.114341682e-11 1.161931855e-10 1.40679876e-10 1.221763784e-10 7.394484274e-11 7.481743528e-11 1.383631527e-10 1.909556282e-10 1.004321034e-10 5.949504996e-11 1.123607331e-10 1.436342222e-10 1.171113332e-10 1.940308917e-10 7.138341825e-11 4.858183704e-11 1.106073163e-10 1.128257508e-10 1.496336446e-10 1.704641588e-10 0 4.916391031e-19 1.130830708e-10 1.402634394e-10 2.158694289e-10 1.604911083e-10 8.214273844e-11 6.977799779e-11 6.433734038e-11 5.444950985e-11 2.322651208e-10 1.608923845e-10 2.253143514e-10 1.254481503e-10 1.495724696e-10 1.287752873e-10 1.146178617e-10 2.025230454e-11 4.310109069e-16 3.766733669e-11 3.090036165e-10 3.822479649e-11 9.10879593e-12 9.239453778e-11 4.215064706e-11 2.134168884e-10 3.16332513e-11 4.185553439e-11 1.011943543e-10 1.181446597e-10 3.906476665e-11 7.651317422e-11 1.486885388e-10 9.112372571e-11 1.979107808e-11 3.741682031e-10 6.665489714e-11 8.767849409e-11 5.37643492e-12 1.633720849e-10 2.384839435e-11 1.233313284e-10 3.066952327e-19 1.947356225e-10 5.543745927e-11 1.548984707e-10 1.179905479e-10 3.992774904e-11 8.534116387e-11 2.241190318e-11 3.728932586e-11 1.913654013e-11 3.923903138e-10 2.600981835e-10 1.242137121e-10 5.910976944e-16 1.081184474e-10 7.704980501e-20 7.54263688e-11 5.698742415e-11 1.514152336e-10 9.790970207e-11 1.577252239e-10 6.595963034e-11 9.71386683e-11 1.580900305e-10 8.035348097e-11 9.836229905e-11 1.169817375e-10 1.961268139e-11 4.502304622e-11 1.416208376e-10 2.169519597e-11 3.032650637e-10 1.236204736e-10 1.019936964e-10 1.823548077e-10 2.336113509e-11 1.538365993e-10 3.005884284e-16 9.855115709e-11 1.526384025e-10 3.498842008e-11 5.553647584e-11 3.592093665e-11 7.612156947e-11 1.007072923e-10 9.826168702e-11 2.102961814e-10 1.382622607e-10 1.426190042e-11 9.926681775e-11 6.791169944e-11 9.570997756e-11 2.053999783e-10 2.86913016e-11 7.609919604e-11 7.004533799e-11 8.13446659e-11 6.001448132e-11 1.085453376e-11 2.397771908e-26 1.826230265e-11 7.891339144e-11 4.90557563e-11 7.266159566e-11 2.869449735e-11 9.406699294e-11 5.060024042e-11 2.619908423e-11 2.539412973e-11 1.908188944e-11 1.245946373e-10 1.084237928e-10 7.995763871e-11 6.849796852e-11 8.503886571e-11 3.638078824e-11 1.16703345e-11 7.134493321e-11 1.700739326e-10 1.293491535e-10 2.169029688e-10 3.09554068e-11 3.161489095e-10 2.626537879e-11 6.478934067e-11 6.9960798e-11 6.617336738e-11 9.218857397e-11 1.580792327e-10 2.019459573e-10 8.130249051e-11 3.814917287e-11 3.195684734e-11 3.074858638e-12 6.361699883e-11 3.232832533e-11 2.494506971e-11 1.250032178e-10 1.521621397e-11 2.366980238e-11 7.338137782e-11 1.715770487e-10 2.080529806e-10 1.157687951e-10 2.292826546e-11 1.01789363e-10 7.244756286e-11 1.064298977e-10 1.016399239e-11 9.249736982e-11 8.54565668e-11 2.944883992e-11 +2.872316125e-10 6.581505847e-11 1.613911997e-10 6.985984184e-11 6.750299341e-11 1.861968526e-10 0 5.653762854e-11 5.76234379e-11 3.998231918e-11 3.081193242e-11 1.526106635e-12 2.043824237e-10 9.335954129e-11 1.46120519e-10 1.112254448e-10 5.606032547e-11 7.247331233e-11 3.004930127e-11 8.171903515e-11 7.59425051e-11 2.25777318e-10 8.441281785e-11 3.887048545e-11 2.937914008e-11 6.450243629e-11 2.82397075e-11 1.750637145e-10 1.39299773e-10 2.481545396e-11 2.241728094e-10 1.913170312e-10 1.090376688e-10 9.207496927e-11 1.700640343e-11 2.418731998e-10 7.366204567e-12 1.142733105e-10 4.931668925e-11 1.582808264e-11 1.288609858e-10 1.79178851e-11 9.899189569e-11 1.631047567e-10 5.747678075e-11 1.245265426e-10 1.252830178e-11 9.602822006e-11 6.021533145e-12 2.40540992e-11 2.290466191e-11 1.077893847e-10 3.009298201e-11 1.421193656e-10 9.788731424e-11 2.276702742e-11 1.10869412e-10 3.398571528e-11 3.55127787e-11 1.857597502e-10 1.947984656e-11 3.463658746e-11 7.989990499e-12 7.722766438e-11 9.086051793e-11 1.486787838e-10 2.036816488e-10 6.566054058e-19 6.323627311e-12 4.076397635e-11 9.836445885e-11 1.037456908e-10 1.431171638e-10 1.088154347e-11 3.796604418e-14 3.623158178e-11 1.905196618e-10 1.41997958e-11 7.977882294e-11 4.713215326e-11 1.933705382e-10 1.40731034e-11 3.598158163e-11 1.367009647e-18 1.654732092e-10 7.563761502e-11 6.570595939e-11 0 0 4.443840881e-11 5.655594535e-11 1.53075369e-11 9.314027563e-11 5.219873814e-11 2.234618735e-21 3.276987475e-11 9.730525824e-11 5.764932331e-11 5.985523779e-11 0 9.295981142e-11 7.136903102e-11 1.943302113e-11 8.541906585e-11 6.925817081e-11 1.304122479e-11 1.552375464e-10 1.605861672e-10 2.795195281e-13 6.374736367e-11 7.135277579e-11 7.082002324e-11 1.827459091e-10 3.685258249e-11 3.168370726e-11 1.618120702e-10 1.013984936e-10 1.57165783e-10 2.637763431e-10 1.30298992e-10 3.550696936e-11 7.189603089e-11 1.225746771e-10 1.88766273e-10 5.799432803e-11 9.142034425e-11 3.748775421e-11 4.793109257e-11 5.69963981e-13 8.562087836e-11 8.823717369e-11 4.912547321e-11 2.45820858e-10 1.054886316e-10 1.462689417e-10 2.152947214e-10 1.197039792e-10 1.136356828e-10 1.130713733e-10 1.939061788e-10 1.586459551e-10 1.926207205e-10 1.77605135e-10 6.317732648e-11 2.069914081e-10 3.219436007e-10 9.709545458e-11 1.972871462e-10 3.340747254e-11 1.869055801e-10 5.576458959e-11 1.470023726e-10 1.807047599e-10 6.973181592e-11 5.311323134e-11 8.830793876e-11 1.565109724e-10 5.831931794e-11 2.628773445e-11 1.412172795e-11 2.906518182e-10 5.757813585e-11 3.08336317e-11 6.45391265e-11 1.401462818e-10 2.035440065e-10 4.137745469e-11 1.941434685e-10 1.162132787e-10 1.998663803e-10 2.297817649e-11 3.472378543e-11 2.182420253e-10 4.970304756e-11 7.963135749e-11 1.473062545e-10 9.522899426e-11 6.749214599e-11 4.838564011e-11 3.324780059e-11 1.843469321e-10 1.69251174e-10 7.106092969e-11 3.296720674e-11 1.35585219e-10 1.029164161e-10 4.451512717e-11 1.126241151e-10 6.598278967e-11 1.932213007e-10 4.184306561e-11 1.215966068e-10 1.369758812e-10 6.649209424e-11 5.909798048e-11 1.065190204e-10 3.076780263e-11 7.831767412e-11 4.39383474e-11 1.070333306e-10 4.534358355e-11 6.512556772e-11 4.896913517e-11 4.85055187e-12 4.979080172e-11 4.418272459e-11 1.035194553e-11 3.633736151e-11 2.445087101e-10 1.058705639e-10 6.149206979e-11 1.228022387e-15 1.580924625e-11 9.060536728e-11 2.609397785e-11 3.486909193e-11 1.199922826e-11 1.440482151e-10 8.466321477e-11 3.818090891e-11 5.964853701e-11 3.265218066e-11 9.011630716e-11 9.795326233e-11 4.915047618e-12 5.468838484e-11 4.399854597e-11 2.538137424e-10 1.133497672e-10 5.693073344e-11 1.852832851e-10 6.40387571e-11 2.260387432e-10 7.153165484e-11 3.396990475e-10 1.133069304e-10 1.29777052e-11 1.361895927e-10 7.384997356e-11 7.706422845e-11 1.279359754e-10 5.607151426e-11 6.317748828e-11 1.098604098e-10 8.970302844e-12 7.706920183e-11 1.383126303e-10 6.205371958e-11 8.074208714e-12 3.749857938e-11 5.810305476e-11 3.129167994e-10 3.167309247e-11 2.669205121e-11 5.265954997e-11 1.749245097e-10 1.970274545e-10 5.39737824e-11 8.38294346e-11 1.470674006e-10 7.953007667e-11 3.050442914e-11 2.198566906e-11 2.57034655e-11 2.905309e-11 9.322974577e-11 1.127286713e-10 1.646935959e-10 6.729422667e-11 1.463561523e-10 6.292392071e-11 1.113458878e-10 2.013171842e-10 6.358343323e-11 1.093488484e-10 3.746689548e-11 6.747491776e-11 7.870952142e-11 4.605759075e-11 1.356340148e-10 8.510570894e-11 5.110080292e-11 5.637339388e-11 1.840828921e-10 3.485477628e-11 5.663591055e-13 1.032210297e-10 2.678341825e-11 2.332122976e-11 8.304312973e-11 1.063251187e-10 5.318515222e-11 4.417235477e-11 5.104849536e-11 4.058797304e-11 1.403559638e-10 7.241033704e-18 5.403156177e-11 5.741201348e-11 6.789113979e-11 +9.706381087e-11 1.543337286e-10 1.654914239e-10 2.014151724e-12 1.082138393e-10 6.818849328e-11 1.800178777e-11 2.136230651e-11 1.366481445e-10 1.291620576e-10 4.603281129e-11 4.097568782e-11 1.26182471e-10 3.723353602e-11 5.613397353e-11 7.11695158e-11 4.875221076e-11 2.019728828e-10 5.81282928e-11 6.924804065e-11 2.30567294e-11 9.151284587e-11 1.015749495e-10 4.066251664e-12 1.386335585e-10 4.402231968e-11 1.844193218e-11 3.395041192e-11 1.608692639e-11 7.696415336e-11 5.919153935e-12 1.413760728e-10 8.016658982e-11 8.263069793e-11 2.084583777e-11 8.046214954e-11 3.130565534e-11 1.173401725e-10 1.813959663e-10 6.029593958e-11 9.196340245e-11 8.124327306e-11 3.584817098e-11 1.868969027e-10 2.524610285e-10 6.838174417e-20 5.119461767e-11 5.977588737e-11 4.55355985e-11 2.205761742e-10 2.852271445e-11 3.924779221e-11 2.792026576e-23 4.3808268e-11 4.331818403e-11 7.920305038e-11 6.475425585e-11 9.119459957e-11 6.462344928e-11 1.664094511e-10 2.064974958e-13 4.809705134e-11 1.412203124e-10 5.717381145e-11 7.23669445e-11 1.177710055e-10 8.802925235e-11 7.985398684e-11 3.186513414e-11 1.058402618e-10 2.307389974e-11 6.566754017e-11 6.161935619e-11 1.007788102e-10 2.560566679e-11 2.792930267e-11 3.162199405e-11 6.095631355e-12 2.224150845e-10 2.458790711e-11 1.308735663e-11 5.466778784e-11 3.392727343e-11 8.659038627e-11 0 2.365855126e-11 5.655350604e-11 2.720442971e-11 5.013801032e-15 6.715086428e-11 4.080307619e-11 5.410123496e-11 3.682358982e-11 1.991221651e-18 3.242098097e-11 3.468113759e-11 1.320933665e-10 1.297293294e-10 9.306014208e-16 1.027331351e-10 1.459861376e-10 7.691426205e-11 8.104620853e-11 4.996737333e-11 7.182020552e-11 1.902835059e-10 2.578026667e-11 1.440986107e-11 1.154523312e-11 6.998206749e-11 2.010618952e-11 1.09517238e-10 6.578321761e-13 5.402960373e-11 9.423734134e-11 1.674121086e-10 8.967658433e-12 2.498393695e-10 7.525433894e-11 6.965898226e-11 8.496512672e-11 3.370431772e-11 1.158301575e-10 8.711829457e-11 1.220408847e-10 1.379552819e-10 4.836700912e-11 1.88459944e-11 1.597764413e-10 3.126232289e-12 3.969511021e-11 4.543364158e-11 1.61838494e-11 2.126405183e-10 9.457838143e-11 3.055552783e-11 1.5503054e-11 1.112598889e-10 1.111159004e-10 0 1.607397783e-10 2.687952045e-10 6.021849217e-11 5.027023533e-11 6.023921611e-11 9.335062329e-11 6.793395736e-11 1.068190496e-10 1.381754575e-10 1.827328286e-11 1.356077764e-10 1.273447519e-10 1.011375307e-10 1.144123672e-10 9.172963233e-11 1.024460046e-10 2.29757029e-10 3.996417605e-11 5.633020272e-11 7.433413576e-11 3.029093324e-10 4.806591242e-11 2.38964995e-11 8.833065451e-11 1.996541419e-11 3.667340216e-10 1.668894038e-11 2.422008883e-10 2.764325543e-11 9.843856938e-11 4.493479867e-11 1.37975858e-10 9.087161798e-11 1.795863077e-10 1.204508646e-10 1.429156219e-10 1.481674048e-11 6.893583019e-12 6.604801949e-11 1.223333187e-10 1.028942679e-10 2.409521473e-11 4.901920568e-11 1.117507041e-10 1.330663773e-10 1.383320839e-10 1.572215376e-18 7.430335966e-11 9.991818235e-11 7.306803313e-11 1.128863798e-10 9.197784664e-11 1.78029003e-10 3.691197435e-11 9.616035426e-11 7.562324516e-11 1.529708836e-10 1.405844022e-10 3.109027491e-19 4.329968878e-11 6.229653265e-12 1.575977596e-11 8.499450037e-11 3.432341567e-11 9.614355193e-11 0 3.388169785e-11 0 4.161879314e-11 7.628397147e-11 9.014297054e-11 2.550327901e-11 1.202804562e-10 2.536674809e-11 4.865905785e-11 1.460152888e-11 6.144887164e-11 1.252925826e-10 3.230525108e-11 1.172535647e-10 2.678020947e-11 1.312144388e-10 4.3488128e-11 1.985700492e-10 4.286812451e-12 7.788378061e-11 7.841965204e-11 9.718197625e-12 5.720955103e-11 3.519679962e-11 1.426536001e-11 2.379080931e-11 3.001003277e-11 1.231101149e-10 0 1.075455871e-12 7.342264799e-11 2.86644001e-10 8.095190278e-11 2.088492452e-10 5.262467221e-11 2.692947216e-11 1.157557042e-10 8.042434463e-12 1.550216083e-12 1.901408806e-10 8.071102648e-11 3.153650811e-11 5.882564948e-11 1.066874835e-11 1.007234125e-10 7.36896047e-11 1.821082039e-11 3.701213013e-11 2.038509534e-13 9.722107735e-11 7.11677636e-11 7.299697763e-11 1.101370341e-10 2.008340215e-10 9.116247465e-11 1.160683091e-10 1.188958645e-10 5.92175278e-11 1.03883878e-11 2.003660906e-10 1.64340366e-10 1.056193844e-10 4.403164269e-11 3.219885506e-11 1.519090447e-10 1.226386871e-10 1.030455093e-10 5.188801076e-11 2.625002839e-11 5.603202947e-12 6.542042867e-11 1.219942078e-10 2.642593701e-14 9.050301135e-11 1.358546398e-10 6.296913898e-11 1.31631146e-10 4.851523944e-11 1.534024e-11 8.220894608e-11 2.060789077e-11 4.064316661e-11 2.548217511e-11 1.121151788e-10 3.910376023e-11 7.23741581e-11 5.02486758e-12 2.895569125e-11 5.994174421e-11 2.242488088e-11 3.080918085e-11 8.893166665e-11 1.03576358e-10 1.140813127e-10 +3.327015839e-11 2.846651724e-10 5.781361825e-14 2.827468398e-11 7.086403122e-11 8.522793199e-11 4.714812237e-11 1.173497197e-31 1.395081281e-12 2.706151367e-11 6.612411883e-11 3.330758419e-11 3.444635333e-11 1.648590311e-10 1.197691949e-10 4.091349334e-11 1.160486318e-10 1.36968174e-10 1.178681848e-10 1.428033828e-10 1.534285143e-11 1.078526662e-10 5.714381654e-11 1.864412904e-21 8.004388433e-11 3.171318076e-11 7.462875554e-11 7.316111478e-11 1.749820991e-11 4.471394493e-11 9.830664597e-11 7.396451711e-11 6.941352229e-12 6.692512437e-11 5.422332291e-11 2.661828633e-10 1.393366889e-10 3.921890098e-11 1.731977034e-12 1.614336586e-10 6.08612961e-11 5.798059696e-12 3.301168313e-11 1.546148366e-10 2.164906975e-11 3.565788727e-11 9.715060587e-11 1.281655201e-16 1.548568481e-10 1.050926978e-10 1.57299388e-11 1.793874126e-10 3.312110245e-11 1.178427233e-10 9.957802306e-11 1.602667296e-10 3.431713011e-11 3.41429392e-11 2.863569175e-11 8.984418581e-11 2.351790124e-11 2.837463727e-11 3.323708966e-11 6.733161476e-11 7.384893818e-11 4.456691933e-11 1.603091546e-11 3.013822796e-11 8.975536337e-11 4.743879536e-16 1.780302716e-10 6.404720328e-11 1.017251883e-12 4.594239414e-11 2.903938359e-11 3.686106871e-11 5.567885154e-11 7.627425375e-11 3.003767043e-10 3.838428326e-11 3.985001273e-11 1.305020444e-11 5.370789405e-11 1.425910447e-10 4.87180868e-12 8.149647268e-18 7.379190726e-11 2.662207316e-11 4.658412885e-11 1.967996619e-11 1.855987234e-11 2.223036031e-10 3.070306754e-11 9.7855419e-11 6.31998317e-11 6.918929071e-11 4.688549405e-11 4.557168625e-11 2.278545743e-11 6.751491924e-11 1.703580186e-10 0 8.925354746e-11 2.984883877e-10 1.353092323e-10 8.782906804e-12 5.455653947e-11 1.867549355e-11 9.372902308e-12 2.637225331e-11 8.201896807e-11 8.618760097e-11 9.981966944e-11 3.778498783e-11 1.215894794e-15 1.032892609e-11 4.265930215e-11 1.253793229e-10 5.234848075e-11 5.154572658e-11 1.260992583e-10 3.991635457e-11 7.075511968e-11 2.143620082e-10 6.464717836e-11 5.327205029e-11 1.704749557e-10 9.563279609e-11 3.487983227e-13 6.172497376e-11 2.684349626e-10 1.041077345e-10 1.437831427e-10 2.690648548e-11 2.089150465e-10 2.516216833e-11 5.272710798e-11 5.830745685e-11 1.353561595e-10 1.33841614e-10 1.055682032e-10 1.300864213e-10 1.834601869e-10 1.599639238e-11 1.073301784e-10 4.309757266e-12 2.231797594e-10 5.999796899e-11 2.413038041e-11 6.740245307e-11 1.892205235e-11 9.752964424e-11 0 6.288949753e-11 4.783307116e-11 1.950361829e-11 1.484342334e-11 7.435161325e-15 8.074638365e-11 3.643160351e-12 6.756701776e-11 7.921580736e-11 9.543583117e-11 2.362939289e-11 6.161863205e-11 6.937105226e-11 4.300162323e-11 1.355746949e-11 3.2770787e-11 5.9973067e-11 3.677058535e-11 9.625345335e-11 1.380981159e-10 1.497705545e-10 7.755500732e-11 0 1.261369406e-10 8.147041249e-12 6.124368806e-11 2.312826832e-10 2.092546851e-10 1.139192072e-10 7.54604677e-11 9.19590603e-11 7.036579356e-11 9.874268421e-11 0 1.251070364e-10 6.726807367e-11 2.691041016e-11 1.654590317e-14 1.510447029e-16 0 1.337266451e-10 8.027493085e-11 5.956152928e-11 8.566671526e-11 3.246856372e-11 8.780519837e-12 5.043980863e-11 1.480441652e-10 4.136057211e-11 7.159613329e-12 9.812503102e-11 1.561389923e-11 5.69961931e-11 6.589778231e-11 2.356994576e-11 6.713507562e-11 8.378314793e-11 2.60880377e-11 4.394707391e-11 1.660673925e-11 4.968286687e-11 1.410413252e-10 7.339442388e-11 1.595105478e-11 1.063811326e-10 2.541509432e-10 2.260630509e-11 8.13888749e-11 1.35055775e-10 7.552263294e-11 3.801852704e-11 8.326351267e-11 2.303986259e-10 1.047697374e-10 3.433835251e-11 5.433046912e-11 1.303399842e-10 6.488956855e-11 9.665572748e-11 4.405688543e-11 8.269914087e-11 2.992785404e-11 0 4.062641197e-11 1.446836381e-10 8.366235791e-11 1.19951547e-11 1.349842729e-11 4.394270053e-11 2.21863708e-12 3.260793264e-11 0 3.747343274e-12 7.38267395e-11 2.402436175e-11 2.675235776e-11 5.673484414e-11 6.942002756e-11 9.796217353e-11 2.108028664e-11 1.614150051e-10 8.12870612e-11 1.76475284e-11 8.284078371e-11 7.013080342e-11 3.051488206e-11 5.787311685e-11 0 5.198101101e-11 1.37146052e-10 3.440733048e-11 1.345735267e-10 1.09296079e-11 1.190806496e-11 9.990055054e-12 6.392599625e-11 1.49765269e-10 1.33854809e-10 8.24623022e-11 9.873811947e-11 4.062777147e-11 2.754763281e-11 8.395718971e-11 1.656882374e-11 3.170251963e-11 2.112425937e-10 1.012559953e-10 1.052619157e-10 1.642258358e-10 6.620839783e-11 3.140802253e-11 3.813251949e-11 4.490132372e-12 1.482999177e-10 9.499326721e-11 2.960113003e-11 1.036450905e-10 1.183946781e-10 5.60906148e-11 2.280570115e-10 1.548487801e-10 3.90131522e-11 2.479705269e-11 4.805598047e-11 6.95841e-11 3.167257101e-11 2.878852242e-11 +1.94524897e-10 1.711147708e-10 2.812926551e-10 3.908550432e-11 7.073698612e-11 3.014535032e-11 6.098721118e-11 1.160372915e-22 2.216734705e-12 4.164781188e-11 1.400373381e-10 9.642295503e-11 9.835860263e-11 1.057502853e-13 1.045155413e-10 3.80024923e-11 1.583845354e-18 7.224409793e-11 2.581808203e-12 3.10597348e-11 8.373749951e-12 1.017109807e-10 6.566319107e-11 1.769418956e-10 1.954941908e-11 1.26720099e-11 4.62563553e-11 2.245816127e-10 5.111855954e-11 1.321537022e-10 4.495836544e-11 1.812443672e-10 1.599176747e-10 2.613057902e-11 5.699187674e-11 4.427261197e-11 7.318913934e-11 1.535526161e-10 1.039344968e-10 9.981905683e-12 1.5324162e-10 3.09935498e-13 7.845631595e-12 2.246626868e-11 1.165973385e-10 3.144650321e-11 6.460717912e-11 2.538568925e-11 7.816031927e-11 3.960706915e-11 2.989177649e-11 1.512499399e-10 1.192869639e-10 1.198748177e-10 2.408093866e-11 1.515710736e-10 7.806282097e-11 1.724971168e-10 1.324469177e-10 1.429822303e-11 6.68995232e-11 8.606166829e-11 7.696418025e-11 3.231047903e-11 7.375272574e-11 4.755346036e-11 6.681770693e-12 3.415627803e-11 2.838299159e-11 2.82247544e-10 8.241432928e-27 9.785147808e-14 3.605085187e-11 3.499258295e-11 7.537264893e-15 3.411586723e-11 6.601424361e-12 2.660962438e-10 4.736080337e-11 3.764212305e-11 4.303467106e-12 6.286765668e-11 3.296919357e-11 2.645848191e-11 3.106215113e-11 0 8.308002092e-11 6.012081747e-11 0 9.183094435e-11 4.353824276e-11 1.084077556e-10 4.417381178e-11 7.336914702e-11 3.447184063e-11 2.002918711e-12 1.306811198e-10 9.438519447e-11 4.029804687e-11 1.304691372e-11 5.880954578e-11 9.675809981e-11 1.584809523e-11 2.495643656e-10 1.05510753e-10 0 8.950515271e-11 1.222668549e-10 4.264310205e-11 5.621754015e-11 2.445742353e-11 4.300800902e-11 2.744187346e-10 6.543494642e-12 1.085884738e-11 7.128040365e-11 9.82103313e-11 8.137649324e-12 9.05429116e-11 2.201885849e-13 1.822954159e-11 4.366391341e-11 1.04618758e-11 1.822031693e-10 2.068952586e-11 1.391560541e-10 1.159729119e-10 1.505228562e-10 6.008135544e-13 1.080348442e-11 8.883830228e-11 5.908143992e-11 9.877010344e-11 4.043028743e-11 0 3.014469248e-11 2.268589633e-10 3.099698517e-15 5.962223406e-11 1.313590612e-10 2.528514887e-10 7.928101798e-11 1.04198339e-10 1.155862755e-10 2.380916099e-10 8.827387703e-11 4.969350502e-11 4.445499565e-11 2.227875274e-11 8.0984003e-11 1.320426171e-10 4.305528384e-11 4.183288223e-12 5.609146409e-11 1.069162395e-10 2.745363959e-11 3.992030091e-11 9.149014331e-11 1.001471476e-10 7.651809533e-11 1.302699176e-29 2.161965738e-11 2.283829825e-10 5.879880175e-11 9.705340247e-11 2.131921018e-11 7.11452403e-11 2.711046271e-11 1.109963856e-10 1.247917247e-10 4.481494055e-11 8.625290371e-14 1.10907358e-10 8.99965092e-11 1.027966474e-10 3.702896167e-11 3.433657587e-11 1.081973126e-11 1.152361222e-10 0 3.11037505e-11 3.35278316e-12 3.798715274e-11 1.671891398e-26 1.174925177e-11 0 1.474306974e-11 1.281648299e-11 3.538184521e-10 1.893276027e-16 3.913160429e-11 8.597515835e-12 2.498106712e-11 6.639784278e-11 1.192185748e-10 3.438769707e-11 2.474716854e-10 1.085934488e-10 6.904171213e-12 2.477711575e-11 3.920503623e-11 8.395338051e-11 2.80207461e-19 6.356252914e-11 2.843935929e-11 1.150263165e-10 9.324280654e-11 1.355539557e-27 0 4.563368952e-15 1.43063325e-11 1.070860207e-10 0 1.181231356e-10 2.299674123e-11 2.666239219e-11 4.768980806e-11 9.550640417e-11 1.278408801e-19 2.068805395e-12 4.119085177e-11 1.580460038e-11 1.019565804e-10 2.527747223e-11 3.88095588e-11 0 3.828991461e-11 1.741742282e-10 3.739691978e-11 2.33242577e-11 1.428561949e-11 2.978667156e-11 2.765945074e-11 5.993271083e-11 4.682321908e-26 6.256331107e-11 2.797411378e-11 1.397208176e-10 8.976346986e-11 1.565185344e-10 0 6.764144934e-11 1.052626983e-11 1.439109375e-10 1.081807346e-10 1.858157319e-11 1.088752791e-11 4.188405995e-11 1.099902038e-10 5.142482737e-11 2.589408328e-11 1.059187947e-12 5.384675777e-11 0 1.776317121e-10 2.160857287e-11 3.552901268e-11 3.793486827e-11 1.196778946e-10 6.916328296e-11 3.80223127e-29 8.106437173e-11 1.3481844e-11 1.901251223e-11 4.624242474e-16 1.477761142e-10 2.155174645e-12 0 3.092540501e-11 1.129250398e-10 8.424981915e-11 4.656509295e-11 1.271443588e-10 1.028229239e-10 6.970993617e-11 7.527491384e-11 9.166373183e-11 5.281294899e-11 1.00572659e-10 1.190331112e-10 2.937807928e-11 2.822410081e-11 7.388357555e-11 1.630333545e-11 2.853939742e-11 5.509377249e-11 1.042150832e-10 8.537576657e-11 3.814111407e-28 6.833528632e-11 5.776476343e-11 2.425385783e-11 1.029413457e-12 5.94528968e-11 1.062551057e-10 1.418346761e-10 8.518808351e-11 1.107708844e-10 4.739518491e-11 2.827988672e-11 +3.34005118e-10 2.886826433e-11 3.581809998e-11 3.246001006e-11 4.582164771e-11 7.571167048e-11 8.410378291e-11 2.883766881e-28 1.767269589e-10 1.68877958e-10 0 4.183173241e-11 0 4.561794811e-11 2.242238128e-11 7.994009467e-11 1.767766727e-10 4.77790972e-11 7.579372528e-15 5.425582377e-11 4.353359206e-11 9.09018057e-12 9.191282514e-14 1.921332269e-10 2.99955411e-19 6.542720415e-11 3.946812179e-26 4.429240099e-12 1.34850644e-10 3.377366712e-11 4.967089035e-11 1.52821113e-11 1.902147064e-10 1.940976054e-11 1.897475102e-11 0 1.510508947e-11 6.841959047e-11 1.306728115e-10 8.630748212e-11 3.209498425e-16 1.817523654e-11 1.943309091e-11 4.09499931e-11 5.348020369e-11 1.14956793e-10 1.406859789e-11 1.468019227e-11 6.34970318e-11 7.13860513e-11 6.468384926e-12 6.067454144e-11 9.971414407e-24 8.582895143e-11 2.724220022e-11 6.413572603e-13 3.636887625e-11 1.241169251e-10 3.952616685e-11 9.866352587e-12 5.403579021e-11 1.510674272e-11 2.65639364e-11 0 6.816047991e-22 1.557055173e-10 5.145364524e-11 1.223989909e-11 6.909897246e-11 8.433334321e-11 5.819487714e-11 4.354484822e-13 2.533658409e-11 1.897521534e-10 1.890119595e-11 8.073901251e-11 3.654826769e-23 1.045557732e-11 1.169853969e-10 8.446649139e-12 5.026707052e-11 6.953785466e-11 6.40081649e-11 2.082466446e-10 4.007935968e-11 7.874066698e-12 3.444079886e-15 3.539096589e-11 2.967919094e-10 3.873255204e-14 1.409697693e-10 1.724128456e-11 1.101806469e-10 2.39330467e-11 8.035466815e-11 2.852055932e-10 2.283982593e-11 4.859851527e-11 5.960803749e-11 2.309623799e-11 6.881243569e-12 8.641645983e-11 2.978235107e-14 2.306625527e-11 1.022132494e-10 5.922015582e-12 6.393594217e-11 3.070383996e-11 7.692802115e-11 0 7.929345294e-11 1.123079076e-11 0 2.158186851e-11 6.388945748e-11 9.553786142e-12 2.385370035e-10 4.303038126e-11 2.944751834e-11 1.197388514e-11 1.615168594e-19 3.422603417e-12 0 1.246169588e-10 7.019588736e-11 1.161347921e-10 3.999332219e-12 4.640677042e-11 2.632453075e-11 2.589310264e-13 7.897417526e-11 4.238822007e-11 7.060240239e-11 9.700049346e-11 1.625237184e-11 1.031360032e-10 1.08603634e-10 3.317055954e-11 3.566782241e-11 4.808882767e-11 1.448486539e-10 3.422888212e-11 1.201268591e-10 8.018311434e-21 2.473614742e-11 1.748653261e-10 1.074517433e-10 1.262449514e-10 1.392249417e-11 4.323730487e-11 0 3.466058098e-11 1.390483532e-10 1.695394481e-10 5.860252076e-11 2.904046662e-11 3.968113864e-11 1.479531714e-11 2.553910517e-11 9.12155962e-11 6.299625928e-11 8.778308922e-11 1.147972558e-11 4.214623e-11 3.463829075e-11 0 2.442501893e-11 1.521657393e-11 2.261149449e-11 1.711774345e-10 6.67808155e-12 1.658929632e-10 8.825805323e-11 5.876598249e-11 2.945704832e-20 1.024067402e-10 1.111522654e-13 1.107226541e-10 2.031672647e-11 3.044400435e-12 8.157120358e-11 8.722705023e-11 4.46742298e-11 1.105396165e-11 3.537163393e-11 5.594300562e-11 1.052736081e-10 1.030127433e-10 0 7.986711876e-11 6.643681833e-11 5.12768493e-11 6.52063336e-11 6.727745823e-11 0 9.227187181e-11 3.842860051e-12 8.282420808e-27 6.84764956e-11 3.62978621e-11 6.850119789e-11 3.679300099e-11 4.329616386e-11 3.623518507e-11 1.491443916e-10 2.033802692e-17 3.984885553e-11 0 5.709201259e-11 1.564158011e-18 3.503323478e-11 5.628757042e-11 9.422618284e-11 8.577191131e-11 3.61561092e-11 0 1.141580268e-11 4.22685569e-11 0 5.059625524e-16 4.007899945e-11 2.027370521e-11 8.355763919e-11 2.085573134e-10 3.880557248e-11 2.202168333e-11 1.763286234e-15 5.386899571e-11 2.70606191e-11 1.639972913e-11 4.877996635e-11 2.380135545e-17 4.892245208e-11 3.986937794e-11 8.33623233e-11 2.803868615e-11 3.451597349e-11 5.785687348e-11 1.070809196e-10 1.479822116e-11 1.003780939e-10 2.931998892e-11 4.311539668e-15 5.248838144e-11 7.364208367e-13 1.411467779e-10 1.549599425e-10 5.946183499e-11 7.624655766e-11 1.601709319e-11 4.434207083e-20 1.166410615e-10 5.13195074e-11 2.607465924e-11 2.534508735e-11 9.688412427e-11 5.888604873e-12 8.477112212e-12 1.092921163e-14 4.950161281e-11 1.076767244e-10 4.40622946e-14 2.343748623e-10 0 1.17340529e-10 5.000806573e-12 1.975139868e-11 5.544026299e-11 2.949771485e-11 4.738033066e-11 1.708984517e-10 1.190083536e-11 1.35879607e-10 2.643344158e-11 4.530796643e-11 1.089379792e-10 8.478006708e-11 1.310714528e-10 8.192800575e-11 3.424235662e-11 4.356459328e-11 7.740985275e-11 4.169177498e-14 1.017112696e-11 1.759199488e-10 8.908058497e-11 9.347936502e-11 1.910945887e-11 5.734697689e-11 9.4578315e-12 2.228213723e-24 5.79625303e-11 1.169283168e-10 3.033504889e-11 1.803959935e-11 9.080522289e-12 0 1.04661648e-11 6.925025074e-11 2.041921508e-11 +2.472646958e-11 1.86727261e-10 2.385518268e-27 1.626973314e-11 1.391721988e-11 7.291664504e-11 3.810394369e-11 1.042540236e-10 0 0 1.02085408e-10 2.850220203e-20 9.91900184e-21 3.591842857e-11 1.228771122e-10 1.280454421e-10 3.592126134e-11 1.422895873e-11 6.76627557e-11 9.3849425e-11 7.12515258e-11 0 1.746348479e-10 2.825382887e-16 7.986482367e-12 6.371621262e-11 9.44555266e-11 7.987803414e-12 1.993930496e-11 3.62119346e-11 9.042079047e-12 1.496376918e-10 4.5421731e-12 2.630538091e-11 1.163192886e-11 7.273849587e-21 1.042346369e-10 1.209974576e-10 3.905778568e-11 2.244825129e-11 1.13876998e-11 5.148217828e-12 1.02069287e-15 1.803508303e-11 7.86543579e-12 4.009289806e-11 2.146251693e-26 1.678126704e-10 9.739464242e-14 9.501368058e-11 4.560274768e-12 3.824707711e-11 7.234202407e-12 0 0 7.587944515e-11 2.342128468e-11 5.291920706e-11 4.663130841e-14 1.892998417e-11 4.172272819e-14 2.37994103e-11 1.423377275e-11 9.268669271e-12 4.749106456e-11 1.393840293e-11 2.101620609e-11 2.616802432e-13 1.09408411e-11 1.638317148e-11 6.300641879e-11 7.679279806e-12 2.964405039e-11 3.821622507e-13 0 3.1521963e-11 7.336171779e-11 2.765396992e-11 1.678250821e-10 2.679936059e-10 5.647591648e-12 4.075070512e-13 0 3.078145093e-11 1.892840442e-11 1.643675884e-12 2.272272474e-10 1.107389654e-10 1.376202361e-10 1.703993961e-11 1.167698215e-11 5.235273129e-35 7.989913935e-11 1.362351923e-11 3.184036812e-11 7.36242165e-11 7.122618518e-11 5.580501516e-11 3.533685298e-11 6.310546277e-13 3.131627214e-11 0 1.498185179e-11 3.023692329e-11 4.117305573e-11 4.625474353e-11 3.256738698e-11 4.492242274e-12 1.170077283e-10 3.313671203e-12 1.88633738e-11 1.695694933e-11 7.385830969e-11 3.022699136e-11 4.216224437e-11 1.294867472e-11 3.670893527e-11 3.484177607e-22 0 0 3.590122663e-11 6.51836671e-11 1.696770268e-11 1.9582278e-10 2.01513549e-11 7.574667578e-11 1.346439628e-11 3.990075867e-11 6.289900099e-11 1.280296564e-10 7.451714592e-11 9.385207327e-11 2.189439712e-10 1.690923445e-19 9.814267461e-11 2.271108952e-10 1.137506847e-10 4.636009497e-15 3.969420309e-11 1.850008671e-11 9.444375877e-11 5.256940164e-11 8.835921415e-11 1.257591457e-11 8.446360648e-12 3.153000258e-28 1.845197609e-10 8.389964013e-11 1.402358569e-11 1.292306461e-10 1.767532697e-11 9.174315795e-11 1.057160385e-10 1.047401463e-10 3.050035645e-12 8.269112319e-11 9.594563075e-11 6.026009532e-12 6.753938732e-11 6.961642978e-11 4.491280134e-11 1.032467145e-10 1.783786589e-11 9.673207088e-12 2.561760317e-11 2.389363385e-11 4.806408006e-11 3.41587234e-26 0 4.436145675e-11 2.732039896e-11 3.441122217e-11 9.281733009e-11 3.329189801e-11 3.300816045e-11 4.307309505e-16 1.128446594e-11 0 6.694991221e-12 4.516998963e-11 0 1.33018465e-10 7.730332232e-11 5.367230473e-11 1.463482879e-11 1.300681706e-32 8.395587734e-11 0 1.613202525e-11 2.454948324e-10 1.954341006e-11 3.823155919e-11 3.056421087e-11 2.93459931e-11 2.985579249e-11 1.982790651e-11 3.310026592e-11 1.225827486e-11 3.607695148e-11 4.6588108e-11 2.601568184e-10 7.925649684e-15 1.846986918e-11 4.293629171e-12 0 1.895472444e-10 4.862375715e-11 2.813293417e-16 8.764333223e-18 0 3.406190487e-12 6.441602823e-13 2.581092588e-11 9.731295135e-11 2.372637951e-10 6.313353237e-11 4.964673697e-11 3.66438727e-11 3.186975978e-11 8.98353578e-11 1.29462926e-10 8.12215917e-11 1.321885437e-10 7.68179407e-12 1.352503003e-10 5.560543081e-11 7.566065099e-11 4.624635069e-11 3.699449279e-12 6.29280899e-11 4.65661274e-14 1.102127242e-11 2.562066199e-11 1.864136611e-11 2.658050762e-22 1.489861327e-11 0 3.851391461e-11 8.266669321e-12 0 3.109636436e-11 9.08857139e-11 7.625563521e-11 1.331162344e-10 3.154302252e-11 3.565037037e-16 3.22330741e-11 1.290568893e-10 4.70552507e-11 3.511515183e-11 2.211833272e-11 1.006629016e-10 3.718152202e-11 1.111707934e-11 9.238753611e-16 4.406546865e-12 6.584181061e-11 1.779677784e-11 7.873182972e-11 3.129553678e-10 1.862861251e-10 4.532120347e-11 5.74066305e-19 1.786850901e-10 7.584091129e-12 4.824565309e-11 5.128112802e-11 6.589682751e-11 5.361679809e-11 2.066805795e-11 3.654237512e-11 2.110284835e-11 1.380901825e-11 0 6.769678606e-20 1.452398808e-15 0 3.216659795e-27 2.193935887e-11 6.761379864e-12 1.171296128e-11 8.147414979e-11 3.911713807e-12 5.719636594e-12 1.354688787e-11 0 1.181630014e-12 4.014330465e-11 5.269762646e-12 2.16441795e-11 4.756692816e-22 6.275286289e-11 8.56187779e-12 2.137019679e-14 5.824216743e-11 1.018072601e-10 1.958313992e-11 3.708478872e-11 2.837324073e-11 1.866705942e-10 +8.302967723e-11 3.70192013e-11 3.989780347e-11 3.250286111e-11 1.626661172e-13 9.706547387e-11 3.972376968e-11 9.317017292e-12 1.990441532e-11 2.286359152e-11 5.578434815e-11 1.145274375e-11 6.300642462e-11 2.024844868e-11 2.799260774e-12 2.339879303e-11 4.380036114e-31 3.597372654e-11 8.660496492e-11 1.126935197e-10 6.251442742e-11 9.008532774e-17 3.926527967e-11 2.589227365e-12 2.544856375e-11 1.443237856e-19 1.528948952e-11 1.933881027e-11 2.210495459e-11 1.38976811e-11 4.349478531e-11 8.222808764e-11 2.25484435e-11 1.692412472e-13 3.913508588e-11 1.526212706e-10 1.063973623e-10 1.565455344e-10 1.350345193e-10 1.112536517e-10 4.508202243e-11 2.084719719e-16 1.73375631e-11 5.419696179e-11 5.860034836e-20 5.228141694e-11 1.775742987e-10 2.456860523e-11 1.004540324e-10 6.368305205e-11 3.811654846e-11 1.010980719e-10 4.849723079e-11 1.020485286e-11 7.305962697e-11 5.232213736e-11 4.635712697e-11 3.542777163e-14 2.663139889e-11 7.322668782e-11 6.622868144e-11 1.313384936e-10 6.690999712e-11 2.004222279e-10 1.008557125e-10 7.26551836e-11 0 8.220927938e-11 1.343116728e-11 6.440836607e-11 5.42035929e-11 1.249372544e-11 1.466478561e-10 2.508518517e-16 3.618266009e-11 4.941491544e-11 4.71140587e-11 4.300261589e-11 0 2.247490877e-17 7.18867775e-11 2.873636692e-13 5.016653531e-11 7.069551457e-12 1.787372032e-10 7.322028794e-11 0 5.183819936e-11 2.165886969e-11 1.252418035e-10 1.494120697e-10 1.117593012e-14 4.897151928e-11 5.941811186e-12 1.494657479e-10 1.134213309e-15 5.44593671e-11 7.60576342e-11 2.201611742e-11 0 0 6.097094124e-11 0 3.840371907e-11 7.348083431e-12 8.596784706e-11 6.092567977e-11 1.208323033e-11 1.323766089e-10 1.312917434e-13 1.204796865e-11 1.325811977e-10 6.682799716e-11 1.492419636e-10 0 0 0 7.415487641e-12 1.753747414e-15 7.641681902e-11 6.921382335e-11 0 3.039927961e-11 0 2.530260899e-11 1.07806776e-10 6.414312046e-11 6.958746384e-12 1.242318648e-11 5.346273124e-11 2.52902441e-12 0 1.125431731e-11 4.314640853e-13 3.321256499e-11 8.037039324e-11 1.885948168e-12 9.216488217e-11 3.076826288e-11 1.267273228e-10 5.259811572e-11 1.412501512e-10 9.358430022e-12 7.762805467e-11 7.297755534e-27 0 3.533606102e-11 2.217307512e-11 8.43192216e-11 3.580319066e-11 0 1.869329431e-16 5.046862689e-14 8.389511612e-11 3.509929279e-11 0 1.084352531e-11 7.071365113e-11 6.549773358e-11 7.017303495e-11 2.962184159e-11 9.762146131e-11 1.171822482e-25 6.296803366e-12 5.28345028e-12 0 0 1.009938678e-10 8.372233934e-11 2.275896515e-10 7.085602457e-11 2.69494137e-11 6.817317218e-11 2.789193124e-10 0 4.551446474e-11 3.923638842e-11 4.738275383e-14 1.56865682e-19 6.102518023e-11 0 2.080538614e-11 1.279553354e-16 1.931448624e-13 2.509628793e-11 1.765094443e-17 5.964322037e-16 1.531102192e-11 0 0 1.237033703e-11 1.147739015e-10 4.527618656e-11 1.540577263e-11 5.583362372e-25 2.035628994e-11 0 1.643984316e-12 6.049399864e-11 1.146221405e-11 1.859643215e-10 3.650714389e-11 3.075225825e-11 3.861070639e-11 2.126970944e-10 4.31537564e-17 7.848554181e-11 1.7349838e-11 3.350396053e-11 1.611177662e-19 2.374570194e-25 1.142335776e-11 2.34039963e-14 1.191650499e-12 3.907900336e-11 3.349635208e-19 1.433635953e-15 5.070825504e-11 1.263034045e-11 8.936714473e-11 9.733504539e-12 6.580399969e-12 2.247407116e-11 1.996077994e-10 6.385621181e-11 2.534927775e-11 5.493442622e-14 7.340781182e-12 7.602638488e-11 1.709651922e-11 6.702204049e-11 1.759704415e-14 1.389701723e-10 9.937874846e-15 4.470162103e-11 3.550383621e-11 3.625550656e-11 1.856244934e-11 1.173335053e-11 2.149172231e-11 6.798278608e-11 5.477683272e-11 5.713458024e-11 0 0 0 1.844097075e-11 9.43055167e-12 1.503612779e-16 9.194772213e-12 3.551810219e-11 6.249113991e-11 5.713544068e-11 0 1.652481733e-10 0 1.520905528e-11 7.891940599e-11 4.482253942e-11 3.027698821e-11 1.718014439e-10 5.375363435e-11 6.526694641e-11 4.60296814e-11 1.952695618e-10 7.100380631e-11 2.557707331e-10 6.961385295e-12 4.097033832e-11 2.536333751e-11 1.349860003e-10 0 9.20530627e-11 1.438788673e-12 7.404178392e-29 1.388511242e-11 0 4.047132848e-11 0 0 1.14730774e-11 3.525175188e-10 1.866268278e-11 3.431125993e-11 2.013623734e-10 4.018552316e-11 1.364276877e-10 1.470372639e-11 1.149750939e-10 3.152544642e-11 1.965608633e-23 0 9.077070354e-11 9.269702439e-11 1.02104583e-11 4.106642075e-11 1.040192943e-11 1.40926313e-10 4.021160354e-11 3.033785652e-11 +1.489580648e-20 6.059904683e-12 6.462118078e-11 9.35952301e-11 1.386025063e-11 0 1.004038001e-11 2.438680984e-11 2.765963435e-12 4.833048026e-12 1.646504913e-10 2.574503549e-11 5.1554249e-11 1.700731857e-11 3.172636297e-28 0 1.35858855e-11 1.26895107e-15 1.394128296e-10 8.193022104e-11 0 5.97330599e-11 5.593852804e-11 4.767938367e-11 9.539989504e-13 2.111074316e-11 4.325596769e-11 1.085926973e-11 0 1.988234268e-11 2.319417586e-11 1.236773257e-10 1.924767357e-11 2.557122941e-11 2.756970774e-11 1.263466368e-17 1.187460352e-11 1.897672102e-11 6.737908245e-11 2.475748605e-11 1.628994605e-11 0 9.721217433e-12 4.868026122e-11 1.058460933e-10 2.893853737e-11 3.769939358e-11 8.280939777e-11 7.633914447e-11 7.148294317e-11 1.76001388e-11 3.657530174e-11 2.713094518e-11 1.050041972e-10 2.539568404e-11 1.002969654e-10 0 3.63651214e-11 9.179453016e-11 1.750788312e-11 1.32744783e-11 4.129536714e-11 0 4.902044177e-11 7.892411069e-11 3.877800372e-11 1.068569868e-10 1.427076209e-10 1.217346357e-11 2.792450178e-11 4.761138517e-11 0 5.962125584e-11 1.154606883e-11 8.47265829e-11 1.246506316e-11 1.712337734e-14 3.561731953e-11 2.372849449e-11 4.492842423e-11 0 1.559145655e-11 6.001480526e-11 1.201846659e-11 5.132502941e-11 7.769865526e-11 2.544557407e-10 1.708969769e-11 0 2.137605029e-11 4.736581482e-11 9.687439351e-11 2.34536983e-11 7.145930475e-11 5.725392487e-12 0 2.571327347e-11 3.484477111e-11 0 3.337008169e-11 2.383478056e-11 0 1.424316585e-11 0 2.943194329e-11 2.09517379e-11 0 3.211373603e-11 0 4.08987902e-12 2.251775853e-10 1.749699622e-11 7.816809219e-11 3.546516582e-14 0 2.374585233e-11 1.266370175e-11 2.787462971e-19 1.95904612e-11 1.409373011e-11 6.869764877e-11 0 0 2.000080276e-15 2.421477237e-11 8.851878928e-11 0 5.416374082e-12 5.584707171e-11 0 4.210621941e-11 0 9.309708388e-12 2.844998395e-14 1.602076855e-11 1.565896023e-11 0 2.480546819e-28 6.220652451e-11 1.297522741e-14 2.721842514e-11 3.238044723e-11 1.117388307e-11 5.364571188e-13 2.424591271e-11 2.043862878e-11 3.917605518e-14 1.094037793e-11 8.202884517e-11 7.421734387e-14 6.336644166e-11 2.439004163e-11 2.00370155e-11 7.469177024e-11 4.965782758e-11 9.332207591e-11 0 1.781642072e-11 3.373932487e-11 2.860725735e-11 2.231582365e-11 1.672134802e-11 0 4.92439971e-19 6.188426803e-12 0 1.617728438e-11 0 3.335712875e-19 3.566072212e-11 2.502197712e-11 9.5702766e-20 2.539838714e-11 5.733879719e-11 0 4.560115746e-12 0 2.315242619e-11 8.444004104e-12 5.483026209e-11 0 0 5.735481338e-13 1.198887791e-11 3.066838354e-11 2.47264977e-12 0 0 2.600107158e-11 4.235437446e-11 7.804534113e-11 0 1.764294239e-10 8.210032765e-11 4.207767898e-11 2.310557634e-18 1.672757948e-15 3.649905412e-12 4.876831353e-12 4.19443769e-26 8.914381402e-11 6.454416657e-11 0 0 6.545048231e-11 5.247202973e-11 0 3.684603457e-11 1.529598141e-11 3.530768979e-22 5.466845453e-11 5.52252069e-11 1.465048967e-26 0 0 1.279906161e-11 5.803384075e-14 5.057175765e-12 2.482218822e-11 0 0 3.214816954e-11 0 3.83865821e-12 1.484572083e-10 7.049319459e-20 0 0 1.751045243e-11 2.706648662e-11 9.72644063e-12 0 5.19342477e-11 2.968362067e-11 7.970816651e-11 8.795091173e-11 3.954119773e-12 1.339145938e-15 7.76026464e-14 3.955677935e-11 4.062449938e-11 4.325077366e-11 9.834756857e-13 3.59126916e-11 8.498388249e-11 3.568353111e-11 0 1.193537764e-10 1.353735869e-11 1.040640838e-28 1.370071468e-16 0 1.818709098e-11 7.822434865e-12 3.272295302e-10 3.931165086e-11 1.950952627e-11 1.466864807e-11 9.715798889e-13 4.393820224e-11 0 2.703629851e-11 1.568343406e-11 3.919950392e-22 2.135053501e-11 4.556867503e-11 1.003151643e-12 5.309766769e-11 8.083658525e-17 7.670325588e-17 3.378834908e-11 1.840054196e-11 2.845650174e-11 6.613538013e-14 1.500847972e-11 3.352481873e-11 0 6.446997668e-15 8.074744618e-12 2.168473929e-10 1.587473163e-15 0 4.428356461e-11 4.38617035e-17 4.051702172e-11 0 2.181638484e-11 9.597263838e-12 2.228465471e-11 1.336331981e-11 5.906670963e-19 0 2.722834522e-11 9.430130798e-12 5.33910252e-11 6.221180655e-11 1.137086673e-11 7.890131137e-12 1.066230842e-10 6.309368687e-12 +8.16727216e-12 9.013387381e-12 6.85190977e-11 0 4.288090201e-12 7.958177074e-18 6.803216353e-11 2.200344249e-11 1.80123704e-11 6.105414303e-11 4.893689784e-11 1.201566666e-11 3.747844228e-11 1.045503663e-10 3.177065628e-11 0 2.457542605e-11 2.553461293e-11 9.025880906e-11 0 9.664426524e-12 1.406517184e-11 1.429919803e-10 2.253005784e-11 0 2.14608222e-12 3.042175232e-13 2.564286595e-11 0 0 0 0 1.216715658e-10 3.432030012e-11 0 6.342022834e-11 0 1.562877926e-11 3.684625913e-11 1.573642329e-11 4.64240044e-11 8.816497362e-11 1.258287318e-11 1.127625683e-14 3.179072888e-11 2.617990835e-11 4.909602464e-11 1.283562556e-11 0 6.807263748e-11 4.352094441e-11 8.303337844e-12 0 6.62325988e-18 0 4.101335438e-11 9.10986128e-12 0 2.110395522e-11 0 0 1.180909571e-14 0 5.424228474e-11 3.697504929e-11 0 6.372592177e-11 7.286728712e-12 2.242450546e-11 2.787160442e-16 6.874745443e-12 1.058765505e-10 2.159561379e-11 5.647272392e-11 0 4.455607639e-12 2.944463327e-11 0 1.463631688e-11 1.97393235e-10 0 2.749176439e-11 1.176899034e-10 1.473836151e-11 4.946471157e-39 4.243900149e-11 1.15445988e-11 3.666010828e-11 1.099339056e-15 2.047124419e-11 1.09904929e-11 2.775338809e-11 3.218862793e-11 4.200015476e-13 0 0 0 1.089146422e-25 8.543811952e-12 0 1.112100484e-11 0 1.317305423e-10 2.273915506e-11 5.903120802e-11 1.261798224e-18 5.329471416e-22 7.936267825e-12 1.81131015e-10 9.896383597e-12 1.226693751e-11 4.48811347e-20 1.379474227e-12 1.667173041e-10 3.511543361e-11 1.206144123e-11 8.098773856e-11 1.168582849e-10 0 0 1.264875419e-10 8.289001668e-15 2.593623633e-11 1.519297589e-10 2.482518113e-15 2.822015188e-11 0 0 9.317759434e-12 8.130694459e-29 1.195760236e-10 4.017347562e-11 3.685634888e-11 5.48243088e-11 0 6.554361113e-13 4.035245492e-12 4.694448528e-11 8.217863454e-12 0 1.206879896e-10 3.300505457e-11 0 9.393605436e-11 1.396675596e-10 0 5.724686669e-11 1.894344231e-12 0 3.42078086e-12 1.523963613e-11 0 3.132498745e-11 2.683742527e-11 3.046959516e-11 0 4.169428391e-11 8.439200475e-29 2.191615468e-11 4.83080782e-11 8.757103816e-11 1.49620972e-11 2.042659784e-11 8.630330128e-11 3.050396297e-11 4.38812978e-12 0 0 4.404528655e-11 8.223959613e-12 6.638185944e-14 0 9.629206001e-11 9.923444529e-27 5.667651689e-12 9.97953922e-11 3.610702093e-11 4.00263377e-11 0 1.202588912e-11 1.224142051e-15 0 3.944614242e-14 5.116329807e-11 0 2.266541104e-11 1.865509886e-11 1.272637981e-11 0 0 2.342333453e-11 1.309744516e-10 4.91584748e-11 1.217623363e-24 1.833555092e-11 2.359086787e-18 1.605376867e-11 0 2.166728925e-11 0 1.351436988e-11 0 2.627597087e-15 4.492143189e-11 1.782123211e-11 2.674997793e-10 3.163999042e-11 0 7.515609409e-11 1.317295918e-11 8.696117582e-11 0 1.632255108e-11 0 2.430830684e-11 2.716401783e-18 0 3.494825408e-11 1.593894447e-11 2.286705287e-11 1.458298184e-11 4.569110155e-17 0 5.593601119e-11 0 0 1.706023951e-11 2.439209627e-11 2.906429278e-11 9.826828263e-12 2.964645996e-11 4.603530955e-11 3.855740588e-11 1.887288506e-11 3.282639694e-24 3.407873714e-11 0 7.146126404e-12 0 1.965350378e-11 2.473986413e-25 4.513218132e-11 8.212389315e-12 7.186767775e-26 0 1.019688654e-11 6.243602909e-11 7.514227312e-16 1.152676269e-10 4.283447698e-11 0 0 0 2.526635599e-11 5.90149192e-11 4.880661685e-13 6.224221597e-11 0 2.43962897e-11 4.742936144e-11 8.340202146e-11 4.67035978e-16 5.243919608e-11 1.7402513e-11 6.61184839e-11 1.312002152e-11 2.674720533e-11 5.222510886e-11 4.623201505e-11 1.424533437e-10 2.425512579e-11 2.735900737e-11 8.519503154e-23 6.807629004e-11 0 5.450827039e-11 1.426749227e-11 0 0 2.327499776e-11 1.746045411e-11 6.469619002e-11 1.682369601e-10 5.580717357e-11 1.56038039e-10 4.250768168e-11 2.329512021e-12 3.178877105e-11 1.859002603e-11 0 6.522894431e-12 5.887748834e-19 3.385120722e-11 0 0 1.075820898e-13 0 4.514762448e-11 0 0 +2.272332163e-11 3.546906704e-18 1.305914561e-11 8.696812351e-17 4.500625999e-16 0 2.242396798e-11 1.725136802e-10 0 1.170143568e-10 1.067350095e-23 1.989831586e-11 1.473585806e-11 1.343889179e-10 2.772921519e-19 1.863570001e-11 0 5.297521529e-11 6.230478547e-11 7.709916506e-11 1.197543121e-11 0 0 0 0 6.953725703e-12 0 0 7.145733754e-14 1.093271853e-10 3.609759573e-11 2.468431379e-12 2.275904521e-11 1.303518991e-16 7.975399803e-15 0 9.895736265e-11 7.62064989e-11 7.72753963e-11 1.823146713e-12 3.627882873e-11 1.603014873e-11 9.104286588e-11 1.489407098e-11 0 5.224415553e-20 1.388380068e-12 1.56172569e-10 5.454494901e-11 6.115101141e-11 1.577268122e-11 0 1.162377879e-20 0 4.011977638e-11 8.27484088e-12 1.178299189e-11 1.859943775e-11 8.501724464e-12 1.663587814e-11 9.876270545e-12 1.844586651e-11 2.502458824e-10 0 2.068690399e-11 0 0 0 6.793529956e-18 8.575343448e-12 1.832052185e-11 1.337781297e-11 0 2.32432685e-11 1.310467511e-10 0 2.756555858e-11 8.93130786e-12 0 0 6.074409823e-11 8.572442597e-22 1.085740738e-12 2.030729422e-10 0 7.828835374e-11 1.270641484e-11 0 4.136192624e-13 5.535647635e-11 1.364432924e-12 1.676025981e-11 8.624654667e-27 0 0 0 0 0 3.376890098e-11 5.806544777e-24 1.407969873e-10 0 1.687703466e-11 0 2.641749876e-25 3.371876919e-11 0 2.744914298e-11 0 1.238548421e-11 0 6.098428803e-11 2.30227782e-11 4.864860191e-15 5.617708001e-12 0 1.87377818e-11 3.440471372e-12 0 2.0934854e-20 0 0 4.557112361e-16 0 3.592494068e-11 4.625226349e-11 1.785042863e-13 0 8.653147897e-11 5.835657019e-18 0 4.010347169e-11 0 0 2.087192742e-11 0 3.899234222e-11 5.311527186e-12 6.978625708e-11 2.530113525e-11 1.461580577e-10 3.839636437e-11 0 1.630601139e-15 8.771884844e-12 6.600796211e-11 0 2.011620366e-11 1.225242507e-11 1.19652388e-15 2.560138309e-13 0 1.154204397e-12 1.661646779e-11 0 2.824784715e-10 1.57471612e-10 0 0 0 5.714923022e-11 1.464515602e-10 0 6.184771306e-11 0 4.53645261e-11 0 1.133070473e-15 1.353871607e-11 0 1.417761447e-11 0 1.834977915e-11 1.12780819e-11 0 0 0 1.182360612e-11 7.762795125e-20 1.205258357e-10 7.9980272e-26 0 6.917119058e-17 0 2.055551627e-15 3.553517077e-21 2.622296161e-15 3.605430738e-11 0 0 0 9.785558731e-11 2.251045959e-11 0 0 0 0 4.231067604e-12 3.148666201e-11 4.132268421e-12 8.440152096e-20 8.569146891e-12 8.778880585e-12 1.385272411e-11 1.333351292e-10 4.894161967e-25 1.221625376e-10 1.046624706e-11 0 1.310554531e-11 3.035555941e-13 3.853602581e-27 0 1.766493919e-27 3.321805372e-12 9.067807318e-12 0 2.016521284e-18 0 9.825240058e-11 0 1.253056614e-11 1.166336943e-11 2.173553465e-27 0 5.988883152e-11 1.398397835e-10 4.061090177e-11 1.736825548e-11 1.104898545e-14 0 2.831912519e-11 0 9.625961398e-12 3.79245821e-11 3.53098426e-27 7.079362606e-11 0 0 3.361676368e-11 3.611578069e-15 0 5.259871409e-17 4.751772453e-22 1.109373648e-10 4.168972457e-12 1.370730241e-11 5.535677467e-15 1.22766591e-11 1.330344761e-11 0 1.375437414e-11 3.795797196e-11 0 8.936606287e-12 5.840069466e-12 1.791070819e-11 1.834146449e-11 9.980613601e-12 4.506276836e-11 0 0 0 0 1.353133342e-11 2.584959209e-10 0 0 8.066619281e-27 7.076414596e-11 4.322900161e-14 2.490373769e-10 5.205307262e-11 0 0 1.652012677e-11 0 1.12087242e-16 1.613386334e-11 1.214459347e-11 2.023813856e-11 3.940143665e-14 2.417553666e-12 7.281253343e-11 4.951365198e-11 1.359073345e-10 8.498994092e-12 0 0 4.466511503e-11 0 1.708084605e-11 3.874236844e-12 0 6.515870329e-14 7.895540656e-22 0 0 9.207761633e-11 0 +3.854143313e-11 1.026657383e-21 9.590040186e-11 5.436890206e-13 0 0 8.041393119e-11 0 1.156728519e-11 4.080787073e-13 7.209632601e-12 8.171669945e-12 0 1.186194434e-11 0 0 0 0 2.56356211e-11 1.003650928e-21 0 0 1.858357254e-11 0 5.034909855e-14 8.472066894e-11 0 1.492592093e-11 0 2.006554771e-11 1.649981048e-11 0 1.913959256e-11 0 0 3.387005092e-12 5.704758297e-17 0 0 0 3.387081462e-22 1.612691594e-22 0 4.55844431e-11 8.66059059e-11 1.635532249e-14 6.776615322e-11 8.49250912e-12 0 0 0 3.800905036e-11 0 0 1.196402897e-10 8.846363689e-15 2.143482751e-11 6.316215678e-12 0 6.342808856e-21 0 0 0 0 7.176768899e-12 0 1.360251211e-17 0 0 6.123577777e-11 2.073355886e-14 1.037369873e-13 1.124598805e-11 1.053053861e-14 1.37825923e-10 9.760141924e-12 1.058923782e-16 0 0 0 0 0 0 1.541277957e-23 5.512202366e-12 2.477484348e-11 0 5.052537321e-12 8.933247552e-11 2.117972334e-10 0 1.55019732e-10 4.040497465e-15 0 7.192940621e-11 0 0 0 0 5.417701655e-11 0 0 0 0 6.201234477e-11 0 8.544821432e-11 5.020583005e-11 0 4.927434072e-11 0 4.495621832e-11 3.905665401e-11 0 0 0 0 0 0 0 3.185107581e-12 0 1.009803637e-22 0 0 0 6.651065493e-11 0 4.932877634e-11 0 3.639828754e-11 0 1.381201342e-19 0 2.100003763e-11 7.197002219e-11 0 0 9.094947741e-12 0 0 0 0 1.458891699e-11 0 0 0 0 0 0 0 0 0 1.874045877e-11 0 0 0 3.653143614e-23 0 2.277664305e-17 0 0 0 0 4.831366603e-11 6.041245822e-11 0 0 0 0 0 4.591518198e-12 0 3.327837528e-17 0 0 0 0 0 0 3.589392133e-11 1.59251708e-11 8.426195708e-14 4.202472388e-11 0 0 0 9.48617902e-12 0 2.030177348e-11 1.064115272e-10 2.988722428e-19 2.802235245e-11 3.73076024e-11 7.213998307e-21 6.460137562e-13 0 0 0 0 4.424737302e-27 3.42278029e-11 1.382790742e-11 0 2.707759212e-11 0 7.774852329e-11 3.908566059e-12 8.246351403e-11 1.911029394e-11 5.925959101e-11 0 0 0 4.179168242e-12 9.961725581e-11 4.282908207e-11 3.361247416e-14 2.156951066e-11 0 3.110835376e-12 0 0 1.203258941e-15 2.163086408e-23 0 0 0 0 0 2.342788044e-14 0 4.733146098e-12 3.030847178e-18 0 2.892029347e-12 3.296802701e-11 6.853227803e-12 1.386051983e-13 0 6.176386499e-11 0 0 6.298175882e-12 3.48668491e-11 2.152342279e-14 4.92422175e-18 0 3.473491927e-11 0 1.39791514e-10 6.525015573e-14 1.675899802e-10 0 2.621302174e-11 4.531058077e-11 0 0 0 1.368009811e-17 4.399831008e-11 1.20898099e-18 6.845478776e-12 0 9.008422471e-12 1.080502466e-11 1.094294668e-10 1.366102611e-11 0 7.233870899e-27 4.457941667e-11 0 0 0 7.62655172e-12 1.160504387e-12 0 5.325047045e-11 0 1.985692292e-11 0 8.145303748e-12 7.359504202e-11 0 3.497885799e-11 0 0 0 2.118001682e-11 1.219121593e-10 0 0 4.48212315e-11 3.651590528e-21 6.898926758e-11 3.313222503e-13 3.155086414e-11 9.898950868e-12 0 0 +1.586978939e-11 1.319099627e-11 1.96547699e-11 0 1.736250259e-13 0 0 0 0 0 0 0 4.191338547e-11 0 8.763651858e-12 0 0 5.308245583e-11 0 2.622501613e-33 0 7.331623658e-11 0 1.683631579e-11 0 1.413867017e-11 3.464976682e-11 1.887003506e-11 0 0 0 3.142851108e-11 0 1.15220549e-19 3.431095415e-24 3.699740758e-11 0 0 0 0 8.003085878e-19 0 0 0 0 5.44481376e-11 1.227137609e-11 4.71992571e-19 1.344556206e-11 0 0 0 0 2.727825877e-11 6.341591893e-15 0 0 3.414777445e-11 8.157447888e-13 0 0 0 8.127969344e-28 0 0 0 1.201381989e-11 2.224508983e-14 0 0 1.811254881e-11 0 0 0 2.86233352e-11 4.243234681e-11 0 0 0 0 2.555977718e-14 0 3.381901564e-11 1.217989082e-11 0 0 0 0 0 0 0 6.257700724e-27 0 7.229932043e-11 0 3.20483595e-11 0 0 3.290721681e-11 0 0 5.602867648e-11 0 0 0 6.734905977e-11 0 0 5.906117316e-12 0 0 0 4.241251463e-26 2.847603158e-11 0 8.727405172e-20 0 0 0 0 1.774580597e-11 0 0 2.254105073e-11 0 2.033088131e-11 0 1.035882009e-11 0 0 0 0 3.861591415e-13 0 0 0 0 0 0 5.587858396e-12 0 3.536690334e-11 6.240006037e-14 0 0 0 1.897802023e-24 1.007665495e-11 0 3.886387306e-11 2.917768757e-21 8.305178859e-11 0 0 0 0 3.53632433e-25 0 1.453155407e-15 0 3.565260025e-11 0 2.97677064e-11 1.231086717e-16 1.23424149e-11 0 0 1.516655371e-19 8.23235104e-12 0 0 1.03520037e-41 2.085612058e-12 0 0 0 9.386284685e-12 0 0 4.6624693e-18 0 0 3.158327793e-14 1.68451955e-11 8.609770793e-11 1.100811418e-14 0 0 0 1.611128942e-26 0 1.561678094e-11 1.108033957e-11 0 0 0 0 0 0 2.712049046e-14 0 0 0 3.265212501e-19 4.121581341e-12 0 0 0 0 0 0 0 0 0 0 0 2.532721583e-14 0 0 0 3.473432651e-15 0 7.548912606e-11 0 0 0 0 0 0 0 2.032140667e-11 3.10785741e-11 2.49945868e-11 0 0 0 1.052237108e-11 0 0 0 3.651740097e-21 0 6.419349953e-12 0 0 5.008457864e-12 0 3.936186209e-11 0 0 0 0 0 0 7.93789828e-16 0 8.953613596e-12 0 2.074966985e-11 0 0 0 4.054128214e-11 0 0 0 1.460012203e-11 3.308446462e-16 0 2.102265695e-14 3.045817511e-11 0 0 0 4.863487271e-11 0 0 0 1.510245272e-11 0 4.278436831e-11 0 0 2.763536447e-11 0 1.343843331e-10 4.380489002e-11 0 0 0 0 0 0 0 0 0 0 0 0 1.021158245e-11 +# Events [PSD_4PI/PSD_4PI.dat] N: +0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 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 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 2 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 2 0 2 0 1 2 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 1 0 1 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 0 0 1 2 1 1 0 0 0 2 1 0 2 0 2 0 2 0 0 1 2 0 0 1 1 1 1 1 0 1 0 2 4 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 2 0 0 0 0 1 1 1 1 2 0 1 1 0 0 1 0 2 0 0 1 2 0 1 1 1 0 1 0 1 1 0 2 0 1 0 2 1 2 0 0 0 0 1 0 0 0 0 0 0 +2 0 0 1 0 0 2 0 1 2 0 0 1 1 0 1 0 0 2 0 2 2 2 1 0 0 0 0 1 2 1 1 1 0 0 2 0 2 1 0 2 2 1 4 0 0 0 1 0 1 3 0 0 1 2 1 0 0 2 0 0 3 1 1 0 0 3 0 0 2 0 0 1 1 3 1 0 2 0 0 1 0 2 0 0 1 0 1 0 1 0 0 1 0 1 0 0 0 2 1 1 0 1 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 4 0 0 0 1 0 1 1 0 1 2 2 0 1 1 1 0 1 0 0 1 0 0 2 1 1 0 0 2 2 0 0 1 1 0 1 1 0 0 1 1 2 1 1 1 1 0 0 0 0 0 0 0 0 1 3 0 0 0 2 2 2 0 0 1 2 0 2 1 1 0 1 1 0 0 0 2 0 1 1 2 0 4 0 0 0 1 1 0 0 0 0 1 3 3 0 0 1 1 0 1 1 0 3 0 1 0 1 0 2 0 0 0 2 1 1 2 0 2 1 1 0 0 2 1 1 0 2 0 0 0 2 0 0 0 2 2 1 1 1 0 1 2 1 1 2 1 0 3 1 0 1 1 2 0 1 1 0 1 1 1 1 3 2 0 1 0 2 0 1 1 0 1 2 +2 0 0 0 0 0 3 0 1 0 2 1 2 2 1 2 0 1 2 3 0 1 3 3 1 0 1 1 0 0 2 0 2 3 1 0 2 0 3 2 0 3 0 1 2 0 2 0 1 1 1 2 2 0 0 2 2 1 0 2 0 2 1 0 2 1 2 1 3 1 0 1 0 3 0 1 2 1 2 2 0 3 0 2 1 3 0 3 2 1 1 1 2 4 2 1 0 0 1 0 0 0 0 2 1 1 1 1 0 1 1 0 0 2 1 2 2 0 2 4 2 2 1 0 2 1 2 1 0 0 2 1 2 0 2 2 1 0 4 2 0 2 1 1 3 1 0 1 0 1 1 1 2 0 1 1 0 0 1 3 1 2 1 0 0 0 0 1 1 0 2 1 1 2 0 0 1 2 1 1 2 0 1 0 1 0 0 1 1 2 0 0 0 1 3 2 2 1 1 1 0 0 2 1 0 2 0 1 0 2 0 0 0 1 0 0 1 3 1 0 2 1 0 1 2 1 1 1 2 1 1 1 0 0 0 0 2 0 0 1 1 1 1 1 1 2 1 1 1 0 3 1 0 1 1 0 1 0 1 1 0 0 1 0 2 0 0 1 2 0 0 1 2 2 0 3 0 1 3 0 0 6 1 0 1 3 0 1 2 4 1 1 4 2 0 0 3 1 0 2 +2 4 0 1 1 3 1 1 0 1 0 4 1 1 0 0 3 2 3 1 1 1 0 1 0 3 2 1 2 3 0 2 2 1 2 1 2 1 1 2 2 5 0 0 1 0 2 1 3 0 1 1 2 0 4 3 0 2 0 2 2 3 2 3 0 1 2 0 0 4 1 3 2 2 0 2 2 0 2 1 0 0 3 3 2 4 1 2 1 0 2 1 2 4 3 2 1 0 1 1 2 1 1 2 2 2 2 2 2 0 2 0 3 1 0 2 0 2 0 0 2 2 1 2 0 2 1 3 2 0 1 0 0 0 0 4 1 1 1 1 1 1 4 2 2 4 4 3 0 1 0 1 1 0 0 0 0 2 0 2 0 0 1 3 1 0 2 1 0 2 4 3 0 2 3 1 1 2 1 0 0 2 1 1 0 0 0 1 2 2 4 0 1 0 1 2 1 1 1 0 1 2 0 2 3 0 4 2 2 0 1 0 3 1 3 1 0 0 0 2 2 0 2 2 2 1 2 1 5 1 5 1 3 3 0 3 3 1 2 2 1 3 1 1 3 3 2 0 0 3 2 0 0 2 3 1 0 2 3 2 1 0 1 2 3 2 2 2 2 1 0 2 0 0 2 1 0 0 3 1 4 2 1 4 1 3 1 3 0 2 2 0 2 4 0 2 0 1 2 2 +2 3 3 1 0 5 0 1 1 4 1 1 5 1 2 3 0 0 3 1 4 3 0 2 7 3 2 6 2 1 1 3 3 3 4 2 1 6 3 2 2 5 3 2 2 2 4 2 2 4 2 5 2 0 4 1 4 1 2 3 1 3 3 3 5 3 2 4 0 0 2 1 1 1 4 1 4 2 0 1 1 2 1 1 5 2 2 2 3 1 0 1 3 2 3 0 7 1 0 2 2 2 3 0 1 0 4 2 1 1 2 1 0 1 0 3 1 3 0 3 1 3 2 1 1 0 0 3 4 2 3 1 1 1 3 4 3 0 1 3 1 0 0 0 5 0 2 2 2 1 2 2 2 2 2 2 1 1 0 0 3 3 1 6 0 1 2 3 1 3 2 1 1 0 3 0 0 2 0 1 1 0 0 4 1 0 1 0 2 3 1 2 2 2 1 1 2 2 2 3 1 1 1 0 3 2 4 0 2 1 0 2 1 2 3 2 2 3 3 0 0 2 6 2 3 1 0 2 3 1 0 1 4 3 3 2 2 2 3 4 1 0 0 2 0 1 2 1 3 0 4 3 1 3 1 2 3 1 3 1 2 0 1 1 2 1 3 1 3 3 1 2 3 1 3 1 2 1 3 2 1 4 2 3 0 0 3 2 2 4 1 1 3 0 2 2 1 1 1 0 +5 0 0 5 3 2 3 2 7 3 2 0 1 2 0 3 3 2 2 3 3 5 0 0 3 1 3 5 1 2 1 2 4 2 2 1 5 5 4 5 0 5 4 4 2 2 3 3 1 4 3 4 1 1 3 4 0 2 6 3 0 5 1 0 2 3 3 1 3 2 3 4 1 7 1 2 1 3 0 2 4 3 6 2 3 1 2 4 1 3 2 3 2 2 4 1 4 2 0 1 0 0 2 3 3 1 2 3 1 0 1 5 0 2 4 0 2 3 3 2 0 2 0 2 1 4 0 1 0 0 0 1 1 4 1 1 3 3 1 2 0 1 1 1 5 1 2 0 1 1 1 1 1 0 1 3 0 1 0 4 0 5 5 0 1 4 2 1 2 1 2 3 2 1 4 1 1 1 2 3 2 4 1 1 1 0 1 3 4 1 1 2 1 2 1 3 4 2 4 3 1 2 3 1 3 1 1 0 1 5 2 3 3 1 0 2 4 0 3 6 1 3 0 2 3 2 2 3 3 2 2 3 3 2 1 0 3 3 2 1 3 1 2 4 4 1 6 3 2 4 0 0 4 1 3 2 2 1 3 3 2 5 4 1 3 2 0 1 4 2 4 1 1 3 2 2 1 2 2 2 3 2 6 6 2 2 4 4 1 1 4 2 1 2 0 7 0 0 2 2 +4 6 3 4 0 2 5 3 4 4 3 4 1 4 2 6 3 3 1 1 3 2 2 4 0 0 1 2 0 8 5 4 4 2 2 7 4 3 1 1 2 2 4 1 2 4 2 3 1 6 2 4 1 4 2 1 5 3 4 0 4 5 6 1 4 4 3 1 5 1 4 4 5 5 3 1 3 2 2 6 3 5 1 7 3 2 1 4 2 4 3 3 2 1 2 1 3 2 3 2 1 3 7 3 0 2 4 3 1 0 1 1 1 2 2 0 2 1 2 2 4 1 5 5 4 4 3 2 3 5 2 3 2 0 3 2 2 0 2 1 1 1 2 0 0 2 3 3 2 1 3 1 2 2 3 3 2 5 1 1 5 2 5 0 3 2 4 4 1 2 2 0 2 2 2 3 2 7 3 1 3 3 3 1 4 4 2 1 2 3 2 4 2 3 4 1 2 3 4 3 2 1 1 2 3 4 1 3 1 2 4 1 4 3 3 3 4 1 1 2 1 0 3 5 2 7 6 1 2 6 3 3 3 3 2 3 2 3 4 1 3 2 3 3 2 0 4 2 2 3 3 2 4 6 3 3 3 3 2 6 3 2 4 4 3 3 1 4 1 1 3 3 4 2 3 5 3 1 1 3 2 2 3 4 2 1 4 2 8 2 2 4 6 8 2 4 3 3 5 4 +3 6 3 7 3 9 4 2 2 6 6 3 1 7 6 5 1 6 3 5 4 4 6 5 5 6 6 2 2 2 5 7 1 3 3 1 2 1 3 2 7 3 4 3 5 1 6 2 2 4 2 3 1 3 5 3 3 5 2 5 6 4 4 2 2 3 5 5 6 0 3 0 2 3 4 3 3 2 0 4 6 0 3 3 2 2 2 3 3 2 4 2 4 2 3 2 6 2 5 2 3 3 4 1 2 4 3 2 3 5 5 3 4 2 4 7 0 4 2 4 6 0 3 2 2 2 5 2 4 2 2 4 5 6 3 3 3 0 2 1 5 5 4 2 3 5 3 7 5 2 3 2 3 2 4 3 4 3 4 2 9 8 3 3 3 6 3 1 4 2 1 2 0 3 6 2 4 3 2 2 4 5 3 0 2 2 3 3 1 2 4 1 0 2 0 3 4 3 4 1 2 3 4 1 0 2 3 3 6 3 3 4 3 4 1 5 4 3 4 5 3 3 5 1 3 3 7 4 1 2 2 6 9 4 4 3 3 3 5 0 1 5 1 4 2 4 6 0 5 1 2 2 2 1 6 6 4 4 0 6 1 5 1 2 0 2 0 1 3 3 2 1 2 4 6 4 3 1 3 3 5 4 0 5 3 8 5 4 4 4 9 6 5 4 4 5 4 5 2 4 +7 1 5 5 1 6 3 3 2 9 6 5 3 4 3 4 2 2 4 3 5 4 2 5 4 2 1 5 4 4 7 1 4 2 1 3 3 2 1 6 1 4 5 0 0 6 5 5 3 3 2 6 3 2 4 4 1 3 1 2 6 1 3 2 6 2 4 5 6 1 6 1 5 5 5 1 5 4 1 2 2 4 5 2 1 3 4 4 1 3 3 2 4 3 5 2 3 2 5 2 3 3 2 5 0 2 4 1 2 3 2 1 2 4 3 5 4 4 6 4 4 2 2 1 3 5 7 0 6 4 5 1 2 4 3 5 3 4 4 4 3 3 5 5 4 6 2 4 3 2 4 3 4 1 5 5 4 4 2 3 5 5 4 2 6 4 2 2 1 3 1 1 3 1 6 4 4 4 7 5 3 8 1 3 0 4 1 1 0 5 1 5 1 3 0 2 7 1 2 3 1 2 5 3 3 1 0 1 0 6 1 3 4 3 6 1 1 6 4 1 5 5 4 4 3 2 5 3 1 5 5 2 4 5 3 3 1 5 5 3 1 3 3 5 2 2 2 3 3 4 6 1 6 4 3 2 2 6 4 3 4 4 1 5 7 3 3 7 6 2 8 5 3 4 10 7 1 6 4 5 7 1 5 4 6 7 4 0 2 1 7 7 4 6 6 4 3 4 7 4 +6 4 4 5 3 2 4 4 4 3 6 4 7 5 5 5 3 5 4 5 5 9 3 2 5 4 6 6 3 3 0 3 4 1 6 4 9 10 6 3 5 8 1 3 4 2 2 4 3 0 2 4 2 5 6 2 4 3 7 4 4 1 4 6 3 2 2 5 1 3 3 2 3 5 4 1 1 5 4 2 3 3 3 2 4 6 7 3 7 2 1 6 5 7 1 0 3 3 3 2 4 5 1 1 5 6 1 2 2 1 3 1 5 4 2 1 6 9 5 3 7 2 3 6 3 8 2 5 9 10 4 1 6 5 4 3 5 11 4 10 7 9 3 4 2 5 1 5 7 5 5 3 8 4 6 4 3 5 4 6 4 6 3 6 4 5 3 3 4 2 3 4 9 8 2 3 2 2 5 6 2 7 6 5 0 5 4 4 3 5 2 4 7 3 2 2 1 1 2 1 3 1 7 5 3 1 1 4 3 2 1 0 5 2 2 3 5 3 1 5 3 3 4 3 4 3 4 3 4 2 2 5 3 1 3 0 6 2 3 3 6 1 4 3 2 6 1 4 3 7 7 4 2 3 4 3 5 1 3 4 7 6 3 3 8 5 10 1 6 5 6 3 3 3 3 4 4 4 4 7 7 4 4 1 9 1 5 1 3 4 6 6 6 8 2 5 5 1 3 9 +4 5 7 4 10 6 7 2 5 2 3 4 9 3 4 7 3 4 4 7 5 7 7 5 8 6 6 2 4 2 5 4 7 5 5 3 7 6 5 5 6 6 4 2 4 2 7 1 4 6 3 4 7 4 4 2 5 6 6 2 5 3 4 3 6 5 7 3 6 2 3 3 7 7 4 4 4 2 4 1 2 0 9 5 3 3 4 3 6 3 4 3 3 3 5 3 1 5 2 5 1 10 5 3 5 2 8 3 6 4 3 6 7 8 6 6 4 5 8 2 4 1 7 1 6 6 7 6 8 6 6 7 7 6 5 6 6 5 4 4 3 6 4 2 4 4 1 8 3 5 8 6 10 12 6 5 1 6 3 6 7 9 6 4 8 4 5 3 1 2 9 3 2 2 7 3 5 3 5 2 3 2 4 7 8 3 6 6 7 2 5 7 6 4 0 2 3 2 5 6 8 7 4 2 6 5 2 7 7 3 3 4 4 0 1 1 6 1 3 4 3 5 4 0 2 3 7 8 10 3 3 3 8 2 4 4 3 7 6 10 2 6 4 6 6 5 4 3 5 4 1 3 2 1 5 10 1 6 6 3 5 10 2 8 6 6 7 5 7 4 2 8 3 4 6 10 2 2 4 8 4 6 5 3 3 7 7 9 5 5 3 10 5 5 5 5 6 5 5 2 +5 3 4 2 11 6 6 7 7 6 4 6 3 9 7 10 5 4 4 7 2 7 2 3 4 9 6 4 3 3 9 6 9 4 6 7 2 7 5 3 7 6 4 6 4 4 6 4 4 4 3 3 3 3 8 6 4 8 3 3 3 4 7 4 2 1 2 6 7 6 2 8 4 7 3 5 5 2 1 6 5 4 4 5 3 3 6 2 3 1 2 5 2 3 2 5 5 5 6 2 5 2 2 5 4 1 5 2 3 6 4 8 8 4 4 7 10 8 7 5 3 4 4 4 5 2 2 8 6 9 6 5 8 7 3 6 4 5 13 8 10 4 3 6 8 8 4 9 8 4 6 5 4 12 4 4 8 4 7 6 4 8 8 11 6 11 12 7 8 7 7 5 5 7 7 4 5 5 6 3 7 9 6 6 7 5 5 7 9 4 0 3 4 4 3 7 2 3 2 4 2 2 3 3 6 4 8 3 6 3 3 5 2 9 8 2 2 4 3 4 7 3 4 3 8 5 7 2 4 9 8 4 4 6 3 4 2 2 9 10 4 1 2 3 3 4 4 6 4 5 7 4 4 6 4 4 6 4 4 2 8 4 6 2 5 3 7 7 4 5 5 4 3 4 7 3 7 7 6 3 6 7 6 7 8 4 2 3 7 8 3 4 7 8 6 3 11 7 1 9 +3 7 5 8 6 6 7 10 5 4 3 1 9 6 6 10 6 8 5 5 12 8 4 5 4 8 7 7 12 6 7 5 5 3 4 6 7 6 8 6 6 3 5 9 4 6 3 4 7 10 2 5 3 14 3 5 4 8 6 2 5 6 6 3 5 3 8 1 6 6 6 3 2 6 1 8 1 6 3 2 3 0 4 4 6 1 6 2 1 3 4 3 4 8 3 3 6 2 6 6 4 4 4 5 5 6 9 5 3 6 4 6 5 5 6 8 6 6 8 5 4 6 4 3 13 9 6 4 3 4 6 6 7 9 8 7 15 8 5 3 11 5 3 8 4 7 6 10 13 9 13 7 8 6 6 6 11 10 9 5 8 2 7 7 12 11 5 4 7 8 7 10 4 11 7 8 12 3 7 6 6 7 6 8 3 10 8 3 4 6 6 4 4 1 5 4 7 5 4 3 2 3 3 3 5 1 3 2 6 3 3 6 4 3 1 7 1 7 4 2 4 6 7 3 5 4 8 6 3 4 1 5 5 8 6 3 4 4 7 2 8 4 9 6 3 3 8 8 2 6 1 6 3 3 7 6 6 7 5 10 6 6 4 4 7 5 6 4 5 10 5 4 11 5 9 6 7 8 10 10 5 10 8 7 2 8 6 4 6 12 6 4 5 4 7 7 6 11 8 6 +10 4 7 8 6 2 7 10 12 5 9 7 8 6 9 8 9 7 2 5 2 3 4 11 10 9 4 8 5 2 10 6 4 3 10 11 6 4 4 8 5 7 5 6 10 5 6 10 9 2 4 7 5 3 4 4 7 1 5 6 7 13 3 6 7 2 3 4 3 7 5 7 4 3 5 5 3 3 5 5 4 6 8 2 3 3 4 7 9 3 5 9 5 4 4 5 4 4 5 5 4 4 9 2 2 10 13 7 2 0 2 8 6 5 4 2 11 8 10 6 8 11 9 8 9 11 6 8 7 8 6 5 10 3 10 14 11 13 6 12 10 10 8 10 6 10 5 8 7 12 8 9 7 9 9 9 5 3 8 7 8 7 11 8 9 7 12 6 7 8 7 6 8 7 9 8 7 7 4 7 8 4 5 7 9 8 5 3 5 5 7 10 7 4 12 8 2 6 9 6 5 6 4 3 1 4 4 4 7 4 7 5 3 5 5 5 2 7 7 3 3 6 1 3 3 5 4 3 9 6 4 4 5 2 2 9 7 1 8 3 7 2 10 5 5 4 6 7 5 3 6 8 6 7 5 7 7 10 5 7 3 8 8 13 5 9 5 5 6 9 5 5 2 5 2 8 7 6 6 7 10 7 7 6 6 6 8 5 9 6 4 7 5 8 6 10 6 7 3 5 +8 6 4 3 10 10 6 4 8 5 6 8 8 6 7 5 6 7 5 5 8 9 9 5 6 7 12 5 8 6 10 14 8 2 5 7 11 10 8 10 3 4 11 15 5 8 6 3 4 14 5 11 5 11 4 5 3 2 4 4 4 5 10 5 4 5 1 3 4 6 8 6 7 5 8 7 1 7 3 7 7 6 6 12 6 8 4 2 1 3 2 5 5 7 2 4 4 7 2 5 5 9 2 4 6 6 9 9 7 5 7 15 7 6 5 7 7 4 15 6 11 8 7 7 13 13 7 7 5 9 10 10 6 9 5 11 7 13 5 8 9 5 7 11 8 8 7 9 11 9 7 15 8 9 4 12 10 7 14 12 11 9 6 5 4 6 8 10 11 10 13 10 10 4 8 10 9 10 8 13 8 6 6 9 8 10 6 8 8 3 5 7 8 1 6 6 6 7 4 2 7 6 5 3 4 5 5 3 8 7 4 1 7 9 2 6 4 5 2 9 8 4 5 7 4 11 4 5 4 7 6 2 4 5 11 8 4 6 10 5 3 4 7 10 3 4 8 7 8 5 7 2 11 5 5 4 4 5 4 7 4 5 7 11 10 2 7 5 10 6 9 3 7 5 10 6 8 5 3 3 3 6 4 11 4 10 8 9 8 10 6 4 8 13 2 9 7 6 12 9 +3 8 11 10 6 11 8 12 10 8 7 8 5 8 5 11 5 11 9 8 9 7 5 6 13 12 10 13 8 8 14 10 13 6 11 11 10 4 8 8 8 11 8 10 5 10 9 10 8 11 7 4 6 5 8 8 6 4 9 5 4 9 7 5 5 5 6 3 8 6 8 8 11 10 3 5 6 5 6 1 1 5 6 6 2 2 5 5 6 7 2 6 5 4 5 8 5 4 5 9 8 6 7 7 6 8 10 8 10 11 8 12 9 4 7 12 11 8 8 8 7 11 10 6 10 9 13 9 8 9 11 3 12 10 9 7 6 8 5 6 4 7 7 5 9 7 2 9 11 7 17 9 7 6 11 9 7 7 8 7 8 8 6 7 10 10 4 7 11 5 4 6 9 8 6 7 12 8 9 21 5 15 11 6 12 13 7 7 8 7 6 2 6 10 4 6 6 4 4 2 7 8 8 7 4 1 4 7 4 5 5 4 9 3 4 3 4 3 4 7 7 8 6 7 4 6 4 10 3 5 10 9 9 6 6 4 5 10 4 6 5 2 5 11 7 4 5 3 6 10 5 7 4 6 2 8 5 8 8 7 10 7 10 4 8 5 11 6 10 5 8 5 9 4 10 8 10 9 11 7 9 6 14 4 9 7 4 8 8 7 11 7 11 6 9 7 5 10 6 9 +10 8 6 9 8 8 8 12 3 9 12 15 5 11 5 11 9 6 7 5 7 11 9 8 7 9 13 13 12 4 6 9 10 4 8 8 11 14 6 13 7 7 1 9 5 8 6 9 7 11 13 6 10 8 9 8 13 5 12 12 8 11 7 3 7 7 8 8 5 6 6 3 4 4 9 8 4 10 8 10 8 7 3 8 9 4 8 5 6 8 5 4 10 7 8 7 5 5 10 8 8 10 11 5 6 10 9 12 10 4 4 5 5 8 10 5 16 9 7 10 11 13 10 4 5 10 8 10 8 8 10 6 7 5 5 8 7 12 6 10 5 7 4 3 9 8 4 10 11 4 8 6 1 12 9 5 7 8 2 9 7 9 8 5 11 10 13 6 6 3 12 12 8 12 8 7 13 6 11 8 11 8 6 10 11 12 16 9 13 11 11 6 8 8 6 8 8 9 7 14 7 7 7 8 6 4 7 6 2 7 6 8 7 3 8 5 3 2 4 2 4 4 5 13 10 7 4 5 5 5 6 4 2 4 7 7 11 9 9 8 9 2 11 11 6 7 5 4 9 8 8 9 4 10 9 8 8 9 17 7 7 6 3 8 8 4 10 7 7 4 10 7 9 11 9 9 11 11 3 11 7 8 4 14 7 15 9 9 14 6 8 16 16 7 12 7 7 9 12 10 +9 10 9 10 6 7 12 5 4 5 4 5 12 11 9 8 12 8 12 12 8 6 11 6 14 5 6 11 9 8 6 9 6 6 9 7 7 12 6 13 13 11 10 6 11 3 8 7 10 3 10 10 5 5 6 9 10 7 8 8 10 5 7 9 5 8 10 5 12 7 10 6 7 6 6 8 10 6 6 4 7 8 5 6 10 0 6 9 4 7 8 4 10 4 8 9 4 12 10 7 5 12 8 6 11 6 5 9 11 3 14 8 11 18 13 10 6 12 9 16 9 7 13 6 6 17 8 8 7 7 9 3 4 11 6 5 11 7 11 6 5 7 4 9 8 7 4 10 10 7 6 8 6 9 2 5 3 3 8 4 9 5 5 7 7 14 9 11 4 10 10 11 9 5 4 11 9 9 5 8 12 6 6 12 8 5 12 11 11 10 13 7 6 13 7 9 8 12 9 6 8 10 8 9 2 3 6 3 4 6 6 5 7 2 5 9 1 6 5 6 7 2 5 6 3 5 4 9 9 10 4 5 3 2 5 8 8 8 7 8 4 12 3 9 8 8 7 9 5 8 11 7 10 8 10 4 13 6 10 13 13 6 13 10 7 11 8 6 6 11 10 5 14 8 4 9 9 10 7 8 6 13 8 13 9 7 9 9 4 10 10 7 9 9 5 4 8 5 11 12 +15 9 6 6 12 3 6 8 9 5 10 8 11 9 4 15 7 9 15 13 8 11 13 6 6 11 5 10 10 10 9 8 10 9 8 13 10 8 7 11 8 8 7 7 10 8 11 12 7 6 9 4 10 5 7 4 8 6 9 6 6 4 3 6 9 2 6 7 7 8 8 10 5 7 9 3 5 12 7 6 7 12 4 6 6 9 3 5 5 3 4 5 5 9 8 10 9 13 13 10 4 10 7 13 14 7 8 11 9 9 6 13 7 10 17 20 6 7 14 9 8 8 5 4 12 8 9 13 10 9 10 4 5 11 6 9 1 6 4 4 11 10 10 8 8 14 13 11 11 0 4 7 5 11 5 6 7 6 7 8 5 11 5 4 8 8 13 4 9 8 12 7 8 7 12 10 12 7 8 10 4 13 16 15 11 8 11 10 7 14 14 8 11 20 9 3 4 3 11 4 6 10 9 7 10 7 5 5 8 10 5 6 9 7 3 4 8 7 5 10 9 5 9 7 6 7 10 14 6 11 7 9 10 11 7 9 12 8 6 3 10 9 5 6 7 16 14 9 9 14 7 12 10 10 10 6 10 10 8 7 5 7 9 7 9 4 6 12 11 5 10 7 8 12 8 11 12 4 10 9 9 11 12 14 11 12 8 5 6 10 3 5 10 7 6 9 8 15 10 10 +10 10 5 4 12 9 12 7 15 14 12 10 10 3 11 12 8 7 8 10 10 8 17 6 9 10 11 13 11 9 5 9 9 5 11 12 11 12 15 14 9 9 9 11 16 16 9 7 6 12 15 6 9 13 8 8 6 18 7 6 7 10 9 7 4 7 13 9 10 2 15 5 11 9 6 8 6 7 8 9 7 4 1 4 10 5 3 5 4 6 6 7 8 4 3 7 10 8 2 8 16 14 11 15 11 14 18 9 11 10 10 15 7 12 10 9 14 8 9 12 11 11 6 7 9 5 9 8 12 10 10 5 8 12 6 10 7 10 9 7 2 9 5 9 9 2 3 11 5 11 7 7 6 8 9 8 9 9 6 8 8 9 10 2 6 8 7 8 6 14 13 6 5 10 5 4 9 11 13 11 10 8 7 16 11 11 11 17 13 7 10 11 12 18 10 14 8 8 12 12 9 11 10 11 3 7 5 9 7 6 3 7 8 5 5 7 2 5 7 3 6 2 4 7 7 11 10 9 3 6 8 4 8 8 4 6 15 5 5 12 8 6 19 14 6 8 12 13 7 10 6 8 8 6 10 8 3 10 13 6 14 10 9 9 9 4 14 8 11 8 8 10 14 11 9 10 18 5 10 8 15 11 15 7 7 7 13 5 14 11 11 11 9 16 6 13 7 8 11 9 +16 7 9 2 12 9 7 8 10 5 12 16 16 12 8 6 11 7 15 10 10 12 6 10 13 9 12 11 9 9 11 9 13 25 11 11 11 3 9 13 20 11 6 12 15 9 11 10 12 10 10 11 8 11 6 13 10 10 11 6 12 9 10 12 6 6 8 8 7 13 11 3 4 7 8 5 7 14 6 5 5 7 6 6 4 8 6 4 10 8 4 10 6 9 11 11 18 12 8 10 8 8 7 6 12 11 5 19 10 9 21 8 17 11 9 14 9 3 11 7 6 8 6 10 13 7 3 5 12 10 9 8 9 9 11 5 10 7 4 4 6 6 7 6 6 4 9 6 3 7 10 12 4 9 11 8 2 11 2 11 8 7 7 6 7 5 9 9 10 12 13 6 7 5 7 10 4 10 9 10 11 7 8 14 16 11 12 9 8 13 14 18 14 8 17 16 10 6 8 10 15 8 11 9 8 8 12 7 7 5 7 7 6 3 7 4 7 9 4 1 6 8 7 7 8 9 7 9 10 4 8 13 7 11 6 11 8 9 8 13 7 8 8 2 9 9 9 9 15 8 9 8 5 11 9 11 17 7 15 12 10 12 5 12 10 14 11 11 7 6 7 12 12 9 11 5 10 6 10 11 10 14 14 6 19 14 14 8 12 8 7 10 12 16 5 7 15 12 11 15 +13 11 7 9 9 8 4 18 19 12 15 6 10 19 10 9 5 12 10 15 12 8 13 6 13 12 9 16 7 10 13 7 13 8 13 12 11 9 12 16 13 8 7 9 14 10 7 7 6 6 10 12 14 12 6 7 2 5 10 15 9 17 6 11 8 12 4 5 8 11 7 9 6 10 12 11 12 16 6 10 8 9 5 6 7 6 5 9 5 9 7 10 8 8 11 11 5 9 11 10 11 14 6 13 15 14 14 13 19 11 12 6 11 8 11 5 10 8 10 8 10 8 8 5 8 8 7 10 4 7 7 11 6 11 8 7 9 5 7 13 7 8 12 12 9 6 12 11 10 8 10 11 4 6 11 9 7 5 11 11 10 11 7 8 7 5 5 10 8 9 9 5 3 8 7 11 10 8 7 6 9 8 7 12 7 9 10 9 6 13 8 17 12 9 10 11 10 7 6 14 4 9 16 12 12 10 8 8 14 3 11 13 6 6 8 5 5 7 7 2 8 12 5 4 3 16 12 11 9 9 4 8 6 9 11 10 8 5 4 8 8 10 10 10 9 9 8 8 11 10 5 13 12 7 10 7 11 16 13 9 16 18 11 14 5 9 10 13 9 9 6 14 13 5 12 14 8 11 16 10 10 15 6 16 13 9 10 11 10 14 7 8 9 7 9 14 7 11 13 10 +10 15 11 15 6 3 11 14 15 13 9 7 21 6 18 14 10 2 7 13 12 12 11 9 11 4 9 8 6 17 7 11 19 12 15 11 10 16 15 8 6 7 13 15 8 13 11 10 9 15 10 8 9 11 8 10 9 7 7 13 8 7 7 5 6 12 11 12 9 10 9 9 14 5 13 11 6 8 9 3 8 7 8 9 4 9 8 4 8 9 9 7 10 7 11 8 11 11 13 16 8 9 11 16 8 4 15 8 15 12 8 4 9 5 9 9 9 9 10 9 8 10 11 11 7 3 8 12 7 14 10 5 11 7 12 7 7 13 11 8 9 3 8 11 10 6 5 7 9 9 9 6 11 8 8 11 5 6 13 12 11 6 7 3 8 7 12 16 9 7 8 12 10 6 10 8 9 12 10 5 11 4 10 9 16 14 5 11 11 10 6 12 22 11 16 14 18 14 10 8 11 13 10 12 9 18 11 13 8 8 7 8 9 3 10 7 6 13 9 6 10 9 7 9 6 6 11 8 10 6 6 14 4 10 6 11 10 8 12 8 11 10 6 16 10 13 14 6 10 17 9 10 14 12 15 9 8 7 12 9 10 13 11 17 16 18 14 9 13 8 14 15 11 9 7 9 12 5 10 12 9 13 15 9 15 12 13 15 15 15 15 11 15 9 15 7 19 8 9 14 +7 12 9 20 10 12 12 16 12 16 11 10 9 10 16 12 8 13 12 12 10 17 13 16 7 13 10 17 13 6 6 12 10 10 9 7 15 12 6 12 10 5 8 13 10 14 14 15 8 10 16 10 10 18 18 7 8 11 8 5 8 7 8 7 9 11 8 10 11 6 12 15 8 5 16 8 12 4 12 9 11 5 3 7 6 9 10 7 9 7 10 12 15 13 10 19 9 10 6 6 13 6 13 13 11 13 11 11 8 7 10 7 13 10 11 9 10 14 11 11 5 7 10 11 12 8 18 12 13 7 7 8 8 6 17 7 6 5 8 9 14 12 5 8 8 12 8 5 14 8 8 5 7 11 4 9 9 10 10 8 7 8 13 11 9 12 16 7 7 7 8 16 7 10 13 5 7 4 9 11 14 9 6 7 10 11 13 10 13 11 6 12 13 13 15 11 11 15 5 12 9 14 8 13 8 12 8 8 12 14 5 9 4 7 9 6 7 7 6 11 12 8 16 9 12 8 9 9 5 8 10 9 10 8 6 12 10 13 9 10 11 11 15 14 10 13 7 11 8 15 14 12 17 8 10 12 15 8 14 9 12 11 9 15 7 19 10 16 10 9 12 10 14 20 10 16 11 17 13 10 9 14 10 19 10 16 6 16 9 11 14 4 14 12 13 13 12 7 8 9 +11 10 11 16 11 9 12 16 12 11 15 7 8 10 14 14 14 10 14 13 13 10 13 9 9 13 12 10 11 11 8 14 8 17 10 13 16 14 13 16 8 10 13 9 17 13 12 8 7 9 10 15 13 7 17 14 14 11 14 12 11 9 9 11 6 9 8 10 10 7 11 9 11 9 16 3 6 7 5 12 12 9 3 7 10 6 10 8 18 10 10 12 4 11 13 8 14 10 14 9 14 17 18 8 7 12 19 11 13 8 13 11 5 5 5 4 13 12 9 10 8 12 9 11 11 7 10 6 9 7 8 6 4 10 9 12 6 7 6 14 7 19 9 10 11 9 10 10 12 10 10 10 10 13 8 4 12 12 7 9 9 9 9 12 11 10 6 7 14 9 4 7 8 9 10 5 5 13 8 9 7 14 12 8 6 6 8 6 10 9 6 9 20 18 19 16 29 14 12 15 14 10 20 10 15 14 6 13 10 5 13 6 10 14 8 13 6 6 5 10 7 12 9 6 12 11 12 8 9 10 12 15 9 9 9 10 9 12 6 3 10 9 15 8 19 9 13 9 18 14 13 9 11 15 10 13 5 16 7 8 16 17 15 10 17 6 11 11 19 12 13 19 10 8 11 18 22 11 10 16 10 7 15 10 11 10 18 9 10 7 8 15 12 14 10 6 10 5 11 9 +11 9 9 9 11 11 12 9 10 8 4 8 10 11 10 10 13 10 13 15 11 10 11 19 18 16 10 14 12 11 6 14 21 12 13 13 13 12 21 13 14 12 12 12 12 14 14 15 15 18 12 13 12 11 10 12 17 12 16 14 5 8 11 9 14 13 7 6 17 14 7 12 11 15 6 11 6 13 9 12 11 12 8 12 7 3 9 11 9 7 13 9 10 9 7 13 16 10 8 13 14 10 13 6 11 9 15 7 11 10 13 8 13 12 9 14 15 10 17 9 16 12 16 11 8 6 11 10 5 11 12 8 8 14 12 12 13 13 9 9 7 13 7 15 8 11 10 10 8 8 13 10 11 8 12 15 10 16 10 11 12 13 18 7 9 18 13 10 7 9 6 9 13 10 12 15 13 9 12 12 9 12 8 10 14 7 9 7 7 10 8 9 16 13 10 10 11 10 15 17 16 14 18 12 20 9 15 13 17 6 12 6 12 10 9 7 7 5 9 7 13 5 11 17 6 15 10 12 7 8 13 6 6 6 11 6 13 11 9 8 12 10 8 13 9 14 13 13 6 9 16 15 14 12 19 14 13 13 12 15 12 13 17 6 16 11 11 14 8 11 18 6 19 13 16 23 9 16 13 17 16 12 8 13 8 8 7 10 5 11 14 9 10 12 15 17 4 13 13 2 +5 10 5 11 8 7 19 7 11 13 8 11 14 11 10 10 14 9 12 10 13 12 12 15 9 11 13 12 22 10 10 14 13 13 15 16 11 18 8 12 18 18 13 9 15 10 16 14 17 16 13 18 12 13 9 14 9 16 16 6 14 11 12 16 7 14 10 9 16 8 8 9 11 10 18 7 8 8 7 11 9 7 8 7 4 7 19 4 5 8 10 14 10 11 16 8 20 14 11 14 18 23 12 11 17 13 10 14 9 15 9 14 13 12 7 13 13 10 8 5 10 10 6 14 8 3 11 12 5 11 10 10 9 12 15 9 14 5 11 7 16 13 11 6 19 12 9 11 10 12 9 9 15 19 14 14 12 10 15 9 13 12 8 7 12 10 10 9 15 7 15 5 11 9 11 12 12 9 6 11 10 12 10 5 10 8 5 9 7 13 13 13 5 12 8 18 15 20 13 11 17 19 16 14 12 9 9 13 17 7 7 6 6 6 7 11 9 6 5 16 9 5 7 9 10 9 17 12 8 11 14 11 14 10 10 10 4 11 9 13 17 13 15 7 12 9 21 12 14 13 10 19 13 11 14 11 13 9 18 11 15 14 15 14 10 15 15 12 11 18 16 13 19 13 15 11 12 13 15 12 17 10 10 9 11 12 9 11 9 10 15 9 14 7 13 8 7 3 9 9 +17 16 10 11 8 15 14 13 7 15 13 10 7 19 23 9 4 7 10 8 15 10 14 8 13 17 17 20 12 15 12 16 5 7 21 13 14 15 16 15 13 13 14 19 16 10 14 15 12 16 13 13 7 23 12 8 12 12 15 11 14 14 13 11 13 6 14 12 12 8 8 12 10 8 9 8 13 10 3 4 5 5 9 8 10 15 10 13 13 11 11 10 12 20 15 14 19 17 20 20 13 20 18 15 18 11 7 12 15 11 12 12 10 13 7 16 8 16 14 10 12 12 7 7 9 14 9 17 13 17 14 13 13 20 19 13 15 18 16 20 13 19 10 13 11 15 11 7 10 17 12 13 14 13 10 18 11 8 10 9 16 9 18 10 12 11 16 14 14 11 12 10 11 11 15 10 12 11 9 12 6 12 14 14 4 11 13 14 12 13 8 9 13 15 13 9 13 12 15 13 19 14 13 21 12 19 11 11 12 15 11 14 9 8 16 8 7 12 9 5 10 9 10 13 8 7 7 8 16 13 14 14 8 13 13 12 10 17 10 14 15 6 17 23 15 11 16 12 17 15 19 14 17 11 14 17 14 17 12 12 12 9 15 15 15 11 16 9 19 15 8 13 13 12 11 7 9 10 11 12 14 8 9 11 11 8 12 13 10 16 6 7 8 9 14 16 6 11 13 10 +6 8 6 10 13 10 13 12 13 15 13 7 12 10 14 9 10 6 3 6 9 15 9 10 14 9 10 8 11 18 19 18 13 10 15 22 15 13 20 19 17 19 11 18 17 16 12 11 14 18 10 14 22 11 15 16 18 16 11 9 12 15 14 8 9 17 9 7 10 10 8 9 13 7 9 8 12 12 9 12 9 5 7 10 10 9 14 12 6 8 16 9 10 8 11 23 15 10 22 15 16 9 8 13 12 9 13 7 10 11 13 12 11 10 11 14 10 11 16 14 9 11 19 9 11 10 11 14 12 10 8 14 10 17 14 17 11 12 14 18 13 19 10 12 12 14 15 7 12 14 14 6 20 17 10 11 17 11 11 16 15 12 10 14 17 12 11 15 14 9 14 14 16 11 8 11 11 11 10 14 11 14 17 6 5 7 15 6 10 14 6 13 8 14 11 26 10 22 16 14 14 11 15 15 14 16 13 12 5 13 18 12 14 11 9 10 7 9 11 9 3 10 10 11 12 20 10 7 7 8 7 6 10 13 14 9 11 16 13 20 10 10 11 12 13 15 14 15 15 13 8 20 12 15 12 17 13 10 11 11 13 13 19 14 12 19 13 13 15 12 10 11 19 17 10 19 14 13 11 9 14 13 13 12 10 17 10 11 10 11 18 10 13 7 12 8 8 10 11 9 +8 12 16 17 12 11 14 10 6 12 11 11 17 11 9 12 16 19 9 10 7 12 13 7 4 15 10 12 16 16 26 12 9 17 12 18 21 21 19 13 11 17 16 12 14 15 20 19 9 15 13 20 17 18 13 12 9 16 11 17 17 15 14 23 17 11 12 16 11 17 12 16 9 11 14 8 13 11 9 5 6 6 3 10 6 12 13 15 15 13 17 16 11 18 14 22 16 10 18 18 26 13 6 12 16 10 11 15 14 6 9 12 9 12 8 14 9 12 10 10 18 11 11 13 11 17 20 12 15 18 11 13 13 18 13 19 11 14 10 11 15 12 14 11 10 21 8 18 9 13 18 13 12 11 17 7 13 13 16 8 10 17 9 15 9 24 11 12 9 9 15 13 16 12 10 12 16 6 13 12 9 14 20 12 11 10 9 12 12 9 11 13 10 9 16 12 11 13 14 17 19 17 18 13 17 10 17 21 10 16 12 5 14 10 7 11 11 6 9 6 7 9 18 7 20 10 9 14 13 15 11 13 15 12 13 10 9 10 18 11 15 3 13 12 15 19 18 13 17 12 16 13 13 14 21 16 11 16 13 12 14 19 22 15 18 18 24 19 23 15 10 15 16 20 7 11 8 12 13 12 13 7 13 11 7 13 13 5 16 4 6 14 12 14 10 9 13 6 22 10 +12 18 8 14 16 11 13 8 13 12 9 11 12 9 14 13 9 9 17 12 8 12 6 8 10 9 16 8 12 18 17 14 18 17 20 19 13 22 20 22 12 14 11 19 16 16 14 16 17 17 12 17 16 15 24 15 17 15 24 15 20 12 12 19 12 16 12 19 8 21 12 10 15 15 13 6 10 7 5 10 14 12 14 11 14 14 14 11 15 18 12 16 15 15 18 24 16 18 12 19 10 15 11 9 20 9 12 14 15 9 18 9 16 12 12 11 14 13 12 14 13 13 9 14 9 23 11 16 18 21 15 14 12 12 13 16 15 13 12 11 10 17 13 13 13 11 9 13 19 19 17 13 19 15 17 11 17 10 12 13 11 14 6 13 17 16 15 10 17 14 9 16 11 12 12 22 13 13 14 11 11 4 9 9 10 10 10 10 12 10 15 17 7 6 8 9 12 14 14 15 14 21 17 17 10 14 13 16 12 17 18 17 10 6 14 4 7 8 6 5 13 7 11 12 11 13 11 14 9 11 8 14 15 11 8 12 13 10 15 20 21 10 19 15 21 12 18 10 14 9 15 12 9 12 15 18 14 18 19 14 11 19 13 10 17 21 10 15 11 14 11 18 16 9 7 14 10 13 10 13 12 12 14 11 9 17 13 7 14 11 18 14 14 11 11 12 14 8 12 17 +7 11 13 14 9 14 17 12 10 16 11 14 14 7 12 7 14 9 12 11 13 11 16 11 7 17 18 9 14 5 9 13 8 16 22 15 15 12 14 10 18 11 17 14 17 19 6 16 17 14 23 11 15 22 21 13 18 9 13 15 12 10 17 13 14 12 17 10 17 23 14 24 13 9 14 11 13 13 6 9 13 9 12 11 7 9 13 18 20 12 11 10 15 13 27 22 17 19 11 20 5 15 9 15 17 19 11 15 22 14 14 15 13 17 9 10 11 9 19 10 14 11 9 10 8 13 16 12 6 13 15 18 12 21 13 15 19 11 14 14 19 16 21 16 11 17 12 11 13 12 14 14 8 16 9 19 18 12 12 13 15 10 17 19 12 20 12 17 17 14 17 16 17 12 20 11 8 17 13 11 13 16 13 16 11 10 13 13 7 9 12 9 10 12 15 10 9 12 20 25 7 16 22 16 17 12 16 16 13 7 15 21 15 11 13 13 9 13 9 10 8 7 12 10 13 15 16 9 17 14 13 15 15 10 10 5 14 12 12 8 18 17 15 10 9 12 19 10 12 16 18 24 15 16 16 19 15 11 12 18 14 15 23 17 19 14 22 10 9 13 15 11 14 8 18 5 11 14 15 11 6 19 17 8 11 12 10 10 9 9 7 13 12 13 14 14 10 14 13 11 +14 19 13 11 11 12 12 10 15 8 14 5 15 13 12 12 16 12 9 11 7 12 12 11 8 16 13 14 11 11 13 13 19 16 10 22 15 21 18 16 10 18 20 20 22 15 22 23 23 16 16 13 9 17 23 21 13 18 14 13 14 19 10 11 14 19 8 14 9 10 13 11 12 19 12 9 12 13 9 8 11 14 11 10 13 15 14 25 11 11 16 15 10 20 14 18 22 11 14 15 8 11 15 9 11 12 15 8 9 12 15 10 8 18 11 17 12 13 16 10 15 6 21 11 13 16 11 16 18 11 14 21 14 11 17 14 15 10 12 15 14 12 13 3 8 13 17 12 17 11 20 16 15 18 19 14 22 14 16 17 16 15 18 15 12 11 19 12 14 18 18 24 16 5 17 13 20 15 13 23 15 13 8 15 10 13 8 8 13 12 11 11 14 6 12 12 11 13 7 15 14 19 23 17 20 15 26 22 15 14 23 9 12 6 12 9 14 15 12 9 9 14 12 9 15 7 9 15 15 18 10 9 11 13 11 21 17 13 21 21 20 11 13 19 15 18 15 18 10 18 19 17 10 18 14 18 21 15 18 19 18 12 11 22 20 14 16 11 10 11 8 14 12 14 14 12 15 11 13 9 7 11 11 11 12 15 10 13 12 16 10 25 15 19 19 10 12 7 10 14 +10 11 25 16 16 13 15 19 12 14 20 10 12 12 12 16 11 15 12 12 22 11 15 10 12 15 6 14 16 17 13 10 7 18 11 14 13 12 16 12 22 20 12 19 21 17 21 9 19 17 18 20 13 26 16 21 21 15 10 19 16 18 11 13 11 12 16 16 13 11 10 10 15 10 12 14 11 6 8 5 8 10 11 13 8 14 12 18 12 9 22 19 21 15 17 17 18 15 15 10 20 5 18 18 14 15 11 9 13 17 8 17 14 8 11 13 19 14 13 10 17 10 17 17 20 17 16 11 17 8 11 15 20 10 11 10 14 15 12 9 11 15 14 10 15 12 22 12 15 12 8 6 18 12 12 12 17 14 3 14 13 15 11 17 14 17 14 12 22 16 11 14 15 17 16 20 16 11 18 12 16 13 14 18 14 20 11 9 14 10 16 19 14 16 24 15 16 7 11 15 10 11 19 12 18 18 11 17 19 11 19 10 20 18 14 11 11 8 11 10 12 16 6 14 10 11 7 8 10 13 11 16 18 12 14 10 5 15 20 28 11 15 24 13 19 15 13 15 21 12 16 13 18 7 21 15 24 14 22 24 18 18 18 16 14 7 12 15 9 13 16 9 12 9 16 14 9 6 13 6 8 15 6 13 10 14 16 10 19 10 16 16 13 15 12 13 12 7 14 18 +14 11 19 10 17 16 12 15 13 24 22 14 17 15 18 13 18 15 23 10 15 17 7 21 12 13 10 11 12 18 10 14 24 14 7 15 8 11 21 20 18 19 23 15 16 17 20 17 21 24 17 14 11 11 15 25 19 15 12 10 13 15 18 13 14 11 12 20 24 14 16 15 20 8 19 12 15 14 12 10 12 11 13 11 8 17 15 20 19 21 17 22 22 20 17 19 18 9 9 17 13 15 12 10 10 14 13 13 9 13 18 11 8 13 14 14 25 15 12 21 12 15 14 18 20 15 15 23 18 15 15 10 14 17 11 13 18 12 16 12 7 7 15 19 11 14 12 8 14 21 14 7 17 21 18 8 13 12 14 16 15 20 10 17 12 17 12 12 19 13 12 11 18 13 19 14 14 13 16 22 12 27 18 22 13 17 14 10 9 11 19 10 8 15 10 10 20 15 14 17 10 16 19 12 14 29 17 21 15 19 13 19 20 18 15 10 13 13 16 15 12 10 11 22 10 17 19 13 15 17 21 7 12 9 9 5 13 17 9 11 19 23 14 16 10 21 19 19 18 10 18 17 17 13 15 22 14 21 17 21 21 14 15 20 15 16 13 7 17 13 12 7 13 11 14 7 10 18 7 13 11 15 17 14 13 16 21 19 10 17 21 13 12 12 17 18 14 16 14 26 +5 17 10 22 20 17 20 10 13 14 9 9 18 11 17 18 16 13 22 13 11 18 15 12 20 14 10 12 16 8 10 17 11 10 9 16 12 9 13 14 25 19 15 16 25 17 12 16 12 14 23 8 18 15 26 15 14 25 13 16 9 19 23 18 19 13 16 12 12 20 14 19 13 19 11 9 8 11 8 18 10 9 14 14 10 19 12 17 25 18 13 16 18 16 15 17 14 15 14 9 16 15 12 9 13 19 11 11 22 11 17 13 20 17 9 6 17 11 25 12 21 16 21 14 10 23 15 19 16 28 12 19 14 18 18 18 10 10 20 17 22 12 14 15 24 17 18 13 11 20 14 14 15 13 21 20 8 13 15 24 12 17 10 20 15 17 12 13 13 18 9 20 12 15 17 19 12 9 16 12 16 11 18 17 16 12 16 14 15 14 11 14 11 15 19 15 16 13 14 14 18 20 19 16 25 19 26 18 13 21 19 16 18 12 8 17 14 9 9 14 12 14 16 15 14 9 17 13 12 14 17 14 16 12 15 15 17 13 17 15 15 12 14 23 20 26 20 20 16 13 22 17 14 23 26 18 16 19 19 25 17 12 16 7 16 14 19 13 17 9 13 17 12 17 12 10 16 19 14 15 12 11 20 18 13 21 25 19 16 13 16 17 16 15 11 18 15 18 11 12 +20 15 11 13 15 10 18 22 24 18 13 14 16 20 19 12 12 12 15 10 21 21 18 22 12 18 10 12 20 10 9 8 17 14 9 12 17 14 18 15 13 15 22 18 23 24 15 17 15 14 19 19 12 22 18 16 19 15 17 8 18 15 20 20 12 12 14 14 19 16 16 16 17 16 10 8 18 8 12 12 8 13 13 11 20 19 13 15 16 12 21 25 27 19 21 16 14 14 15 16 15 17 19 17 13 13 8 13 13 15 11 13 19 16 21 12 11 18 20 19 14 20 16 15 20 14 13 11 12 19 15 15 17 19 19 18 18 19 9 20 13 13 20 11 14 17 9 12 21 21 7 10 9 16 10 10 15 17 15 16 18 9 14 11 17 12 16 16 12 20 18 19 22 15 10 16 19 13 17 8 13 11 19 14 17 11 10 14 14 18 15 11 15 11 9 15 14 13 22 19 16 14 18 17 12 21 20 20 20 18 21 19 14 13 23 12 9 12 13 13 15 12 15 9 15 14 14 21 16 21 8 14 14 16 17 16 13 12 22 17 12 20 15 16 20 18 19 18 25 19 22 14 20 17 9 15 16 21 19 16 13 13 26 12 14 13 12 16 5 16 7 17 8 12 10 12 16 17 14 20 7 13 15 22 13 15 12 15 13 18 18 19 18 15 21 13 17 20 13 18 +18 8 21 24 22 15 19 15 21 20 20 20 20 12 23 13 21 18 19 18 12 14 19 17 18 13 13 11 11 13 18 19 12 10 16 14 18 18 12 18 13 15 15 26 16 23 22 21 20 14 28 13 20 26 28 9 15 27 17 21 16 21 16 22 16 10 11 12 16 17 17 14 18 13 12 8 12 13 13 11 19 17 15 13 13 16 10 14 18 15 19 18 23 27 21 19 13 20 14 15 13 11 14 16 15 17 9 18 9 13 14 24 16 18 21 16 17 17 17 19 16 15 15 11 19 16 20 11 16 19 19 12 18 13 17 12 14 19 18 13 16 9 11 14 12 17 10 13 10 8 15 14 14 11 18 3 12 11 13 14 9 11 9 14 10 16 27 15 16 11 14 17 13 19 18 14 24 20 16 15 19 22 15 29 13 14 18 15 13 9 12 18 15 8 13 15 12 21 11 13 11 13 14 11 30 20 23 18 11 19 22 14 18 15 17 12 12 15 11 11 9 7 15 19 8 14 17 22 18 16 8 27 11 11 11 10 24 19 19 8 23 15 19 26 21 28 28 17 14 21 17 16 17 13 16 11 23 13 23 18 13 8 11 17 14 11 12 11 13 11 11 8 13 11 15 15 19 21 14 25 14 13 18 14 17 22 21 21 17 16 14 22 18 20 21 15 21 17 25 21 +10 15 16 18 24 17 19 13 9 18 17 18 24 11 14 18 11 22 25 22 19 13 18 20 17 18 19 12 18 11 19 15 12 17 16 18 11 10 19 7 14 17 11 23 17 26 17 17 20 24 23 18 20 30 19 17 15 26 15 18 18 10 21 28 13 15 19 9 27 14 10 11 8 11 16 9 10 9 13 16 8 14 17 19 21 15 16 10 15 20 27 16 26 23 19 14 11 17 14 13 14 13 19 20 12 14 15 11 12 12 18 15 12 21 19 21 7 15 20 15 24 18 16 17 12 18 17 18 9 13 16 16 10 21 14 15 13 13 11 20 13 20 11 6 15 19 13 9 7 5 11 8 13 14 6 13 13 13 22 15 14 13 12 21 18 11 13 12 17 14 10 14 15 15 13 17 19 15 18 16 9 21 12 18 26 26 20 15 9 24 17 14 14 10 14 15 10 16 13 23 12 7 18 12 17 11 29 21 25 22 20 15 18 14 20 21 20 12 8 15 11 15 18 14 12 15 14 17 17 12 18 11 22 12 14 12 19 13 19 12 20 13 14 13 17 18 22 15 22 14 24 13 23 19 18 28 20 15 20 12 19 19 16 12 19 10 20 11 13 23 17 16 16 16 12 23 18 16 17 24 27 12 17 21 18 24 22 25 23 16 11 17 15 14 13 20 22 14 23 24 +16 16 17 16 23 18 11 30 23 19 19 19 21 22 22 22 18 21 15 20 20 15 17 12 11 21 16 19 14 18 18 21 17 11 19 15 22 19 19 17 15 18 16 14 11 17 9 14 21 18 14 18 19 18 23 18 22 15 9 18 12 18 12 20 18 17 11 14 17 17 26 20 20 23 11 13 13 11 8 14 15 12 12 9 19 12 18 19 23 22 28 24 18 33 15 16 13 14 17 10 15 14 12 14 17 10 20 13 17 23 14 14 19 12 17 15 17 16 21 22 15 10 14 22 18 22 14 20 14 13 16 16 23 10 16 8 16 13 10 9 13 10 9 10 9 13 10 9 8 14 11 9 10 11 14 13 7 8 8 16 7 12 19 15 15 11 14 18 15 14 18 17 18 11 15 15 15 15 17 16 19 19 20 17 17 23 18 17 17 19 14 22 11 18 22 19 19 11 23 9 10 16 13 26 19 26 27 27 19 18 21 16 16 15 21 13 13 13 11 12 14 9 6 15 11 18 13 13 16 16 18 14 14 13 18 17 13 17 15 10 18 16 18 19 19 20 18 15 22 20 25 26 20 16 19 13 20 13 18 22 19 15 19 11 12 18 16 16 21 12 20 16 17 20 14 10 16 25 24 23 22 9 17 21 24 19 25 18 11 14 21 18 26 19 13 20 13 11 18 22 +18 28 21 18 20 19 15 15 20 19 9 22 17 12 15 22 18 16 20 19 12 19 21 20 17 18 9 15 23 15 16 16 10 14 21 17 12 17 18 9 14 13 12 22 20 18 19 18 36 17 20 17 14 18 21 24 26 23 16 16 23 14 15 15 21 21 11 9 15 16 12 13 13 24 15 23 11 17 13 13 12 16 17 13 18 17 16 20 18 20 22 25 32 25 15 26 20 15 19 9 13 12 14 25 14 15 14 23 21 15 10 18 13 15 18 11 17 16 11 16 18 18 20 18 11 21 15 19 23 13 11 7 10 19 13 9 14 16 14 11 12 11 4 14 7 9 15 11 8 14 14 9 5 8 12 11 9 6 16 10 13 6 8 15 9 13 17 10 16 15 17 14 17 15 12 21 18 19 16 19 21 18 20 22 15 13 19 27 20 17 22 21 25 17 16 13 16 19 16 15 16 11 16 19 15 15 17 29 23 22 20 14 13 16 18 11 13 11 10 11 13 10 16 19 20 21 15 18 27 15 23 16 18 18 12 17 18 16 15 19 16 25 26 29 24 16 19 25 27 16 18 26 21 18 24 21 13 15 9 17 13 17 17 15 12 16 7 7 21 12 23 22 17 18 21 14 26 31 17 15 18 32 19 16 24 17 18 23 24 21 21 16 17 19 18 14 21 20 20 17 +18 20 10 9 20 23 19 20 33 22 28 17 30 26 25 27 17 19 21 17 18 22 17 28 27 21 21 23 13 22 17 17 20 14 14 14 9 20 19 19 14 6 18 13 19 21 27 21 27 19 20 20 19 20 28 21 16 21 21 20 19 19 21 16 18 19 14 13 18 18 19 9 18 13 18 11 14 10 12 10 16 12 13 16 19 12 16 22 20 24 21 21 26 13 10 19 16 15 21 23 17 9 13 12 12 10 20 17 10 17 24 15 24 17 16 11 20 16 17 11 13 17 17 7 18 15 12 9 17 9 11 10 10 12 12 11 11 9 14 13 11 12 11 15 11 6 14 9 4 6 6 6 4 10 11 9 6 6 16 5 7 7 13 4 17 6 16 11 11 10 8 8 19 17 16 21 8 24 16 19 22 14 21 14 13 12 14 24 15 11 17 15 18 21 11 14 13 18 16 15 19 10 17 19 14 15 21 21 28 22 23 20 18 15 20 22 13 9 13 14 22 12 12 14 12 19 13 17 12 24 16 13 11 19 21 19 26 24 18 23 20 19 20 21 24 22 23 20 20 23 16 24 22 16 12 21 16 18 17 17 19 15 12 11 18 14 16 15 15 19 10 14 14 18 20 15 13 17 14 21 20 18 18 14 24 17 19 17 15 25 16 20 15 16 23 18 25 24 26 30 +19 23 23 18 20 19 23 28 18 20 12 29 25 23 20 18 25 21 21 22 16 24 20 17 14 24 18 18 20 13 20 15 26 13 20 18 13 13 15 15 19 19 20 16 12 12 26 21 16 27 27 16 22 19 17 27 18 23 13 29 25 14 16 26 16 19 21 18 16 18 17 14 16 14 23 15 19 13 17 13 17 12 17 9 19 14 23 17 19 18 20 18 22 21 25 15 15 13 16 21 21 19 18 19 20 11 7 15 14 15 16 17 13 21 16 19 25 11 24 23 15 12 18 10 21 17 12 19 17 12 12 12 11 7 9 14 2 6 15 15 16 9 15 15 10 11 9 13 6 4 7 15 6 6 13 5 9 14 12 6 8 11 14 15 18 11 16 11 17 14 16 10 18 13 21 19 15 16 17 10 19 15 16 18 13 18 12 13 18 20 23 18 23 18 22 19 10 14 13 16 17 26 24 20 15 25 19 19 15 24 29 23 20 22 15 18 11 12 20 13 10 19 11 9 18 15 25 13 22 13 19 18 19 18 23 23 14 12 12 15 11 13 17 18 19 21 19 32 18 19 12 19 22 23 17 17 13 17 12 10 16 18 22 22 15 22 9 10 22 25 22 23 20 18 19 16 22 31 23 16 17 14 26 25 18 20 17 23 22 18 15 14 17 22 27 24 19 19 13 19 +21 20 24 18 29 13 20 29 26 23 23 19 20 23 19 24 20 25 22 25 19 30 16 17 23 23 22 19 22 19 21 22 26 13 19 24 10 14 19 14 15 15 16 14 12 14 15 14 30 25 22 18 23 19 20 27 20 19 23 25 25 24 8 27 17 28 14 15 22 31 16 15 15 27 13 19 19 17 13 16 22 11 19 20 18 17 17 25 26 18 25 21 16 17 15 15 17 15 17 15 17 15 13 29 16 21 18 19 28 26 14 11 20 15 14 16 20 14 16 12 22 15 18 21 12 18 13 14 13 18 12 9 11 7 7 13 9 8 11 7 10 12 15 13 17 4 13 12 14 9 11 7 13 15 20 14 11 11 11 4 10 11 4 5 11 8 15 6 17 14 9 13 12 10 11 16 17 16 25 21 19 26 22 25 18 26 16 16 16 17 13 17 23 14 26 18 14 10 17 20 15 21 13 12 15 14 17 28 30 17 25 29 17 15 27 15 20 12 16 17 13 20 13 15 15 17 19 10 16 21 19 20 18 17 18 19 22 17 14 22 22 24 22 27 15 23 24 24 27 16 23 17 25 23 22 23 17 16 11 22 17 14 14 15 18 19 21 23 18 21 19 16 16 15 13 20 31 23 13 30 22 19 23 14 20 26 23 24 24 18 17 15 21 28 16 25 20 26 13 25 +23 22 22 23 20 24 15 22 17 15 20 26 27 21 23 18 17 21 21 19 21 16 21 22 29 24 22 20 17 22 13 10 20 21 17 20 15 23 17 12 16 12 17 10 21 11 20 15 16 19 29 32 27 29 15 16 28 20 20 23 14 22 21 24 20 25 22 16 19 17 15 14 12 12 17 15 10 15 24 9 16 9 11 15 19 17 22 24 21 14 29 28 25 20 11 11 14 17 17 17 16 19 12 16 19 22 23 17 20 10 16 21 15 18 24 13 22 19 13 18 22 18 10 18 22 16 8 10 8 17 11 13 13 8 4 9 8 12 10 12 14 12 14 15 16 10 15 16 15 19 19 16 22 19 17 14 10 18 9 16 8 17 9 14 8 7 8 9 8 4 6 8 14 15 13 15 22 12 21 18 20 13 22 14 14 17 11 16 14 18 21 10 21 19 22 19 24 13 21 16 12 17 17 12 21 21 14 29 29 24 22 22 24 19 23 13 18 15 10 16 10 17 15 17 16 23 16 18 16 18 18 12 15 12 11 22 22 18 30 17 30 20 20 23 27 24 21 23 18 24 28 25 22 12 18 17 17 14 24 11 14 15 19 16 18 10 14 18 11 25 14 18 21 14 20 23 21 16 16 19 24 22 16 26 20 20 22 22 30 23 17 18 29 28 20 30 30 23 16 28 +14 28 19 19 23 24 16 23 20 17 35 12 22 19 20 19 20 24 15 17 23 25 26 26 24 22 21 25 23 16 18 16 18 17 26 10 18 17 14 17 13 16 17 16 22 21 13 16 23 13 27 23 28 30 30 25 24 21 21 29 22 18 20 24 17 19 16 16 22 21 11 14 15 15 14 21 12 10 10 10 7 14 20 17 25 23 20 29 31 32 22 19 27 24 19 17 14 12 19 16 16 17 15 22 28 20 23 20 28 17 20 27 16 23 25 17 25 19 20 19 17 19 13 16 13 11 14 13 10 7 6 6 14 10 12 4 17 14 16 12 17 16 30 17 23 18 19 21 9 22 20 15 18 15 14 26 13 16 15 13 18 9 16 17 21 5 4 7 11 10 12 8 13 14 12 24 20 12 12 26 22 16 20 19 19 19 20 26 32 21 19 16 19 27 19 19 15 18 20 25 14 16 11 18 12 25 18 19 31 24 23 24 25 25 18 18 15 25 15 11 16 14 10 10 20 17 16 22 24 22 14 19 17 24 9 22 19 23 13 22 23 18 27 28 23 16 20 27 23 18 23 34 18 18 13 16 14 18 17 9 7 21 12 23 22 17 20 22 19 18 27 21 35 14 19 25 20 17 29 20 26 16 23 27 27 19 24 18 23 30 15 19 22 25 19 22 21 14 17 28 +12 24 22 17 24 19 29 24 28 19 22 8 30 12 27 20 26 22 26 12 22 32 30 12 26 27 17 29 20 15 20 20 27 22 26 22 30 12 20 22 12 15 10 18 18 20 25 20 25 29 23 18 19 23 19 18 24 13 15 29 21 22 18 17 22 27 16 16 14 17 30 23 17 22 17 20 18 9 18 16 11 14 12 24 14 20 26 21 23 29 28 24 12 26 12 20 25 22 16 21 15 23 21 23 32 22 19 25 22 16 17 20 19 22 15 12 19 19 14 22 24 17 15 12 8 11 9 12 15 6 10 12 15 9 9 12 23 13 16 22 20 15 15 17 19 23 11 23 17 15 21 18 19 13 16 21 25 20 23 15 20 14 14 21 14 10 15 8 14 8 6 6 11 7 17 15 20 11 7 17 10 14 11 17 19 28 23 23 12 21 19 22 27 14 18 15 19 15 7 21 16 17 15 19 23 17 15 26 18 20 19 31 26 28 19 17 15 20 13 15 18 16 21 17 11 19 23 18 18 19 17 18 15 22 29 22 22 15 25 32 22 18 17 25 17 20 24 26 21 18 24 26 13 19 23 19 22 13 15 24 15 22 17 11 13 19 26 13 24 24 21 22 20 23 20 15 23 23 24 30 23 23 17 16 18 24 29 21 20 22 20 25 23 16 30 12 31 16 18 23 +23 22 30 23 19 22 24 28 24 24 24 17 25 14 17 19 17 22 23 29 16 17 35 20 23 25 18 24 27 20 14 30 16 19 21 15 20 13 21 14 25 18 16 16 15 12 16 20 22 21 15 18 36 23 13 16 24 20 35 22 25 22 25 23 23 16 18 26 20 20 16 25 20 18 21 13 12 16 14 12 17 14 22 19 20 20 22 31 27 24 31 29 16 14 20 18 17 14 14 22 19 20 25 21 21 16 22 18 21 27 25 18 24 20 11 29 21 17 22 14 13 15 16 6 7 11 13 15 7 19 20 17 17 18 21 25 20 13 17 18 19 16 16 17 20 28 13 17 20 22 19 20 14 13 22 28 31 20 12 27 21 25 22 14 15 15 14 16 13 14 9 13 6 7 7 14 11 18 6 15 15 11 16 11 18 19 22 23 16 17 16 16 28 20 22 21 28 10 15 23 28 11 18 22 20 19 12 15 16 21 25 26 40 28 26 21 19 22 11 13 25 8 11 18 15 18 18 18 19 17 19 25 18 16 20 17 20 27 17 22 30 29 26 33 27 24 26 23 27 23 28 17 15 17 14 18 27 23 19 15 26 16 18 25 26 20 28 20 23 23 17 18 21 19 19 13 16 26 23 18 31 18 15 21 31 20 21 19 16 26 28 34 17 13 22 19 18 18 28 22 +23 14 24 19 22 24 21 21 20 23 25 29 23 20 21 28 21 20 21 16 22 21 20 26 24 25 24 19 22 23 23 26 18 15 29 19 15 10 23 20 16 23 19 20 16 16 15 21 23 19 22 27 15 20 21 25 27 15 22 20 27 31 20 20 27 21 21 19 27 31 19 22 15 19 28 15 16 13 16 20 14 11 24 20 22 17 16 36 25 32 24 25 25 15 16 13 23 18 22 28 13 18 23 20 26 31 25 22 12 22 34 15 17 19 27 14 23 12 11 18 18 16 10 10 15 11 13 15 16 14 18 20 15 22 22 28 14 18 13 12 25 17 25 21 26 29 20 26 26 34 21 26 28 29 20 19 22 28 21 20 17 20 19 21 22 18 14 15 20 15 10 10 14 13 7 9 10 9 16 9 22 22 16 19 16 12 20 23 24 6 14 24 26 23 17 24 36 21 11 24 13 23 20 19 25 18 20 15 18 26 30 31 26 27 31 19 19 13 15 20 10 13 8 16 27 25 17 28 12 22 20 18 23 27 21 18 21 27 30 26 22 23 29 15 27 24 18 16 21 25 20 20 13 13 19 18 13 23 17 14 12 15 22 25 18 21 26 29 33 20 25 24 20 20 17 21 22 22 26 18 28 22 25 16 28 33 17 25 26 26 24 23 23 26 21 30 12 22 28 20 +22 20 12 27 22 28 31 18 25 23 15 27 16 22 24 24 17 16 18 18 22 28 28 24 26 19 23 23 15 26 28 30 19 26 20 24 21 19 20 20 17 18 21 26 25 22 14 18 17 13 16 26 19 23 19 22 26 31 24 30 24 12 26 23 24 18 26 13 28 12 18 21 23 21 27 16 14 14 10 10 17 17 16 22 23 33 30 33 36 23 22 17 22 17 17 21 19 13 10 14 22 20 21 16 37 17 22 21 23 25 15 13 18 21 14 20 18 12 11 14 10 11 11 11 8 8 13 13 17 24 20 13 16 18 18 18 20 28 31 33 24 29 13 24 24 24 25 27 21 23 29 24 30 30 23 25 26 30 19 25 29 24 24 19 23 14 20 23 15 13 15 17 18 18 5 15 6 7 10 12 15 9 13 13 19 23 20 21 28 28 13 24 22 19 18 26 16 20 25 16 16 12 14 11 15 21 12 22 16 22 25 25 29 29 11 22 22 18 18 15 11 14 18 12 15 14 17 15 27 19 14 17 25 28 18 21 27 29 16 16 38 17 30 31 23 18 21 22 16 21 26 22 27 16 16 24 16 17 15 20 21 25 24 25 23 21 21 18 28 20 19 27 21 23 21 36 24 24 24 22 26 20 27 18 13 23 16 21 14 24 19 22 11 16 22 16 26 30 27 18 +15 24 25 25 19 29 23 25 23 12 25 15 18 22 20 34 27 22 22 23 20 36 27 27 20 22 31 21 22 23 23 22 20 31 19 18 18 22 21 17 23 19 27 17 11 22 23 23 22 24 27 23 19 30 28 24 23 22 18 28 22 17 20 25 24 18 15 23 19 19 25 20 20 19 20 17 21 12 13 18 15 16 26 28 22 19 22 32 26 37 20 14 16 17 17 24 23 16 19 17 27 17 15 22 20 20 21 18 16 31 22 26 17 20 27 18 18 18 11 17 13 10 9 10 11 18 19 10 18 25 31 21 19 22 12 29 23 30 31 21 29 39 25 34 23 26 20 24 36 31 31 24 22 22 33 16 20 28 28 29 29 31 19 32 17 29 24 14 12 11 24 21 22 20 19 12 11 11 13 12 14 14 6 15 16 16 18 26 15 14 26 20 20 28 21 26 32 19 23 21 22 15 17 25 12 16 23 29 17 36 15 30 32 21 19 14 26 19 20 19 16 13 26 17 15 22 17 19 17 18 17 14 18 25 22 25 18 16 30 28 22 27 28 33 27 30 20 24 21 26 20 18 12 14 19 13 16 17 20 20 23 21 22 26 25 20 18 32 33 31 17 19 27 18 22 23 28 14 19 22 23 24 22 20 26 23 16 22 27 20 25 23 19 34 22 26 17 25 26 18 +16 28 24 23 24 18 27 20 37 33 25 26 22 14 29 25 31 28 20 19 35 25 23 34 20 27 31 21 20 25 23 24 19 25 20 18 18 27 25 20 19 12 20 8 8 11 15 18 17 22 36 24 21 32 16 32 26 22 30 28 32 23 35 22 16 29 17 23 12 15 14 26 24 21 23 13 15 12 13 13 23 14 25 23 26 24 35 31 28 30 23 19 23 18 13 15 19 18 24 19 21 20 22 18 23 20 19 20 27 22 21 20 18 15 21 17 13 14 15 11 11 12 15 5 12 15 17 20 19 22 21 19 20 31 30 31 37 37 23 23 29 23 24 29 12 26 28 22 16 26 26 25 15 21 30 21 22 27 31 20 28 32 33 25 30 29 28 23 22 15 18 18 17 18 25 12 13 10 8 8 10 12 17 11 7 20 23 24 22 22 24 23 22 23 20 22 25 24 23 24 18 15 16 16 15 11 22 24 15 29 32 20 18 27 24 25 24 19 18 19 19 20 15 13 29 24 29 11 16 16 20 18 19 14 20 25 24 32 23 20 33 17 30 18 21 33 25 17 31 31 25 30 20 17 13 20 21 15 16 18 19 17 20 25 25 30 29 20 30 23 28 20 27 32 22 25 17 23 23 25 28 18 20 25 22 24 17 24 20 21 24 28 27 23 27 27 24 29 19 17 +21 28 22 30 30 23 32 20 26 19 27 21 27 21 24 26 21 30 28 32 25 22 28 31 24 30 35 35 26 26 16 21 18 19 28 34 23 25 29 24 13 12 24 13 14 25 19 17 21 23 19 21 24 18 25 22 32 38 24 23 24 20 30 19 21 26 24 24 22 25 17 22 22 20 21 16 14 19 16 22 21 13 19 26 28 18 16 29 26 21 11 19 16 26 26 18 17 26 9 15 19 21 22 22 25 18 25 19 16 19 14 23 14 26 23 15 17 8 10 9 5 10 11 15 20 24 17 24 22 23 24 24 21 27 23 28 25 18 20 20 19 26 24 17 35 18 26 25 19 22 29 34 27 24 26 27 32 18 18 25 27 29 26 21 35 27 26 26 24 23 18 23 24 22 22 14 16 11 10 5 8 8 7 10 7 9 10 10 23 22 22 30 26 25 21 24 12 24 29 20 13 21 20 16 23 22 19 19 27 24 26 27 31 19 19 24 20 16 19 17 11 13 11 18 26 12 24 21 24 18 25 23 21 22 25 24 23 20 28 32 30 30 26 20 21 26 28 23 16 34 19 18 20 22 14 14 23 16 27 27 29 34 17 27 25 18 30 32 19 16 28 28 30 26 23 21 20 24 28 25 24 21 29 20 15 33 22 20 17 24 31 19 22 31 20 14 23 22 30 24 +19 23 28 21 27 19 22 25 19 28 27 23 26 21 16 20 26 25 25 16 26 27 26 15 27 25 30 25 22 27 21 29 25 19 20 22 21 22 28 27 23 20 25 13 19 21 25 17 19 29 19 22 22 36 28 36 27 24 28 21 18 16 28 28 19 20 28 21 26 20 25 19 17 12 19 18 22 17 17 12 14 19 15 27 25 29 32 33 25 24 30 24 15 23 24 15 20 21 16 12 19 28 17 20 24 16 16 17 19 20 25 22 24 24 11 13 15 12 6 13 9 13 21 23 14 10 25 14 18 27 30 23 27 27 32 20 22 20 28 25 21 21 28 26 24 31 24 22 18 33 15 21 13 30 25 24 20 26 22 18 25 21 25 25 36 28 24 19 30 26 28 29 27 20 19 22 22 14 15 15 7 11 8 13 15 19 27 18 20 23 26 24 24 21 24 22 23 30 18 29 19 18 16 17 27 17 27 21 19 17 30 29 31 32 28 26 24 23 17 11 12 17 12 11 16 19 21 21 18 22 16 16 20 24 12 28 33 25 25 28 22 20 24 25 33 23 23 33 12 17 22 17 15 18 23 14 16 24 27 15 24 19 32 27 30 25 23 26 29 20 22 28 31 28 20 32 37 22 25 26 15 32 16 19 24 27 14 27 20 19 25 25 22 23 27 24 31 34 19 25 +31 28 26 21 27 28 20 23 20 23 20 29 16 27 33 24 31 26 20 22 21 29 29 24 24 27 21 30 30 27 17 24 19 27 15 27 25 31 22 22 27 27 27 20 23 27 14 18 23 22 22 25 25 28 34 31 27 31 32 29 37 24 23 27 23 30 20 25 21 24 20 18 18 23 25 23 15 21 13 11 19 19 23 25 20 30 33 29 24 26 33 25 18 14 23 20 26 15 17 21 22 26 21 16 21 17 30 26 20 15 19 17 26 14 10 17 16 13 11 12 18 18 26 20 19 28 21 28 33 31 30 19 28 26 22 23 22 15 23 33 27 30 15 28 22 30 15 26 34 15 26 18 25 25 27 26 21 26 25 26 23 17 22 19 24 23 35 21 25 25 35 26 24 24 28 26 15 26 16 14 7 9 7 19 15 16 17 18 19 15 28 18 25 17 23 17 25 22 19 28 17 17 18 13 28 16 13 21 19 17 28 31 25 31 17 21 22 20 22 14 19 19 24 25 21 22 14 26 15 21 26 24 20 20 21 20 31 19 21 20 28 22 29 23 27 23 32 28 22 17 14 16 24 18 18 21 26 20 30 26 38 20 23 26 20 26 20 31 28 14 22 24 33 22 30 31 21 27 26 27 18 18 25 24 27 34 22 23 18 23 24 16 26 23 30 19 29 27 20 24 +20 26 31 27 33 31 27 24 22 20 31 22 24 27 26 19 25 32 29 24 15 20 33 26 24 27 27 29 22 28 26 30 23 23 23 26 28 31 26 26 27 26 24 22 28 17 25 31 14 12 17 11 15 30 30 18 21 21 32 39 28 25 23 35 28 27 31 29 19 15 19 14 19 21 23 18 23 21 9 17 20 30 25 29 23 34 23 25 30 34 19 14 16 20 24 19 17 29 24 32 33 26 41 20 15 19 25 28 24 28 16 16 18 21 16 8 8 6 12 19 10 18 19 18 32 23 27 27 26 29 24 21 34 21 23 27 35 28 34 22 19 22 25 17 21 30 21 20 21 19 26 24 26 28 19 28 21 20 23 29 36 27 27 26 25 27 32 23 28 25 36 27 30 35 26 29 21 27 22 17 16 4 6 10 10 17 17 17 18 24 23 21 21 21 20 24 28 23 30 29 20 21 20 26 23 15 21 18 25 17 33 29 35 36 23 26 29 23 19 19 17 23 11 22 24 23 23 19 16 28 15 23 21 13 25 22 26 24 26 24 16 25 15 23 27 25 28 16 21 14 22 19 26 16 22 23 27 16 27 35 27 20 20 37 33 24 27 21 30 25 33 32 30 20 20 31 28 31 29 27 24 20 15 23 30 19 15 24 26 28 24 20 30 20 27 23 23 25 25 35 +25 25 27 27 26 21 45 23 23 26 27 26 24 19 26 31 29 14 24 23 21 36 23 25 32 14 24 26 22 23 24 32 32 27 23 33 20 28 26 27 30 26 24 26 26 20 21 17 27 16 17 17 23 37 19 29 34 29 34 25 35 32 27 30 20 18 21 24 13 31 19 22 20 19 28 28 16 11 17 20 24 17 14 20 24 30 36 25 27 27 19 13 30 18 28 28 19 28 19 26 27 21 27 25 23 22 27 26 28 17 18 19 11 8 10 6 10 10 16 18 22 27 23 26 24 32 29 32 35 32 26 27 17 29 31 17 31 24 25 16 30 25 25 24 26 25 27 29 27 28 35 19 26 13 24 24 26 25 21 34 32 26 23 19 21 21 18 24 32 17 27 25 24 17 28 29 22 25 29 17 20 17 21 11 16 9 18 17 15 15 22 24 21 23 17 20 21 15 20 25 19 17 20 18 24 22 19 28 22 19 26 22 24 32 30 19 16 24 28 19 19 14 24 19 14 19 25 29 15 23 23 17 21 27 31 28 31 30 39 25 29 25 29 45 23 28 20 26 23 12 19 17 20 23 26 28 30 17 18 22 28 30 26 28 31 29 21 29 31 19 25 28 19 28 26 18 22 33 20 33 28 29 20 19 22 19 27 21 25 31 29 16 19 31 23 32 19 27 23 23 +19 25 27 22 25 22 25 28 25 21 19 31 25 25 16 21 25 30 23 26 22 33 26 20 24 26 21 20 24 30 33 32 27 25 25 31 33 28 31 38 25 18 22 28 27 20 16 18 20 25 22 18 23 29 21 27 25 23 32 19 30 28 21 21 21 28 34 22 24 28 24 23 22 18 26 24 20 18 19 21 15 18 17 23 27 30 30 27 28 21 21 18 22 18 19 20 22 15 26 26 24 32 23 31 15 20 17 33 25 19 18 12 16 17 10 11 14 22 19 22 15 19 18 28 22 30 24 35 32 31 16 20 17 25 27 25 16 29 25 18 20 35 32 20 27 28 33 37 21 21 17 31 17 25 12 26 26 20 19 33 24 20 23 33 17 22 22 27 30 26 23 23 27 41 23 31 26 22 25 21 13 18 14 18 11 16 11 6 22 18 29 23 23 22 25 34 24 26 25 20 22 28 20 18 19 19 19 19 21 15 18 32 24 31 25 20 35 17 14 20 22 16 25 19 14 19 18 23 20 20 19 24 19 28 11 27 27 29 27 28 20 38 25 33 30 29 22 31 29 18 21 21 15 17 15 24 17 23 27 22 26 16 25 20 23 33 24 26 19 32 27 17 20 34 24 22 27 24 20 20 18 19 19 29 30 25 29 31 31 26 17 26 24 22 33 34 28 24 21 22 +32 30 15 26 24 31 30 23 25 30 30 26 23 21 31 20 24 22 40 26 24 24 27 40 26 18 28 25 30 33 28 36 22 27 37 27 33 34 30 28 32 19 15 18 37 32 26 13 19 17 19 17 22 31 27 18 27 31 31 32 30 25 24 31 23 24 21 24 27 26 28 32 26 22 20 22 20 18 15 16 17 19 31 29 19 37 34 29 25 24 18 18 16 16 17 15 25 20 22 27 30 32 22 17 29 27 17 23 24 20 14 12 8 11 15 11 14 18 21 22 19 23 23 33 36 44 28 28 22 18 18 22 24 20 23 21 22 22 22 20 26 23 25 25 32 23 24 29 33 19 22 27 21 28 33 35 30 26 29 21 27 19 25 27 21 18 24 19 22 25 33 36 38 27 34 27 31 22 23 18 18 21 19 14 12 10 10 22 19 18 19 32 20 22 24 20 29 22 28 32 26 17 20 18 25 29 22 24 15 25 34 31 40 31 21 30 20 28 19 18 27 16 20 13 18 21 20 32 26 25 25 23 17 30 23 27 36 20 23 19 32 31 24 45 33 24 23 21 25 21 24 17 24 19 22 22 26 12 27 31 24 28 20 26 29 31 21 35 29 31 39 33 29 28 21 29 25 28 21 34 24 25 34 23 26 29 21 24 27 27 22 34 32 32 15 25 20 41 21 21 +30 35 29 30 24 31 19 30 15 28 23 22 21 27 27 35 26 29 28 26 25 21 30 20 17 39 30 26 22 24 24 21 26 29 26 26 27 30 34 25 32 26 33 24 20 20 22 23 16 24 21 30 23 22 15 26 37 33 34 24 36 23 34 27 22 20 34 33 22 19 20 25 22 23 13 11 26 19 11 17 21 25 25 33 36 24 30 34 33 22 23 18 22 21 19 19 20 22 30 28 24 28 34 19 21 20 22 27 30 17 18 15 14 11 10 18 12 17 30 24 27 22 21 29 36 39 24 33 29 32 34 27 20 23 29 28 31 21 23 29 28 22 29 17 30 27 22 22 19 23 27 18 26 37 34 33 21 25 26 27 20 25 31 21 34 23 26 28 16 25 25 33 19 20 25 32 29 26 30 25 24 15 21 18 20 13 11 11 20 21 14 23 27 22 19 26 20 25 22 29 30 20 20 30 24 25 18 24 27 20 14 36 37 44 29 27 30 26 26 25 22 22 17 16 25 15 22 16 29 25 28 27 33 21 27 20 38 34 33 34 24 32 21 41 22 28 22 19 21 21 26 22 21 27 21 22 29 32 31 35 20 22 31 30 33 22 31 32 28 25 22 30 24 17 35 24 27 33 34 26 35 32 23 16 25 20 26 33 21 20 25 26 33 28 23 21 26 22 23 36 +26 24 29 24 30 20 21 16 25 40 24 21 29 36 24 33 26 22 17 23 37 19 26 32 28 24 26 17 22 33 22 31 31 25 37 25 32 36 31 22 28 39 39 27 27 30 15 24 21 22 20 12 29 25 23 30 35 28 35 32 26 29 36 28 29 27 27 29 28 20 11 24 26 22 15 15 11 13 18 16 14 28 18 21 33 32 25 23 24 23 29 21 17 22 25 17 16 23 32 32 26 20 28 25 15 20 27 16 18 18 8 17 10 9 17 21 24 24 24 25 31 33 30 30 31 33 40 31 17 19 34 37 19 24 34 26 39 26 23 32 22 25 34 24 26 26 17 17 27 21 31 15 24 24 29 27 15 23 28 31 27 21 26 13 21 27 33 31 28 24 25 27 28 30 33 32 37 27 31 27 25 17 29 16 26 13 14 14 13 20 20 19 27 34 22 22 22 33 28 26 23 27 27 30 26 19 20 22 28 20 21 26 33 28 33 27 29 26 30 17 13 16 7 19 18 27 22 24 21 25 29 26 26 23 33 17 31 27 37 36 35 31 20 36 32 26 27 14 22 27 24 21 27 20 23 28 23 33 32 23 39 27 36 27 25 30 24 33 31 24 26 30 20 27 33 24 31 37 26 24 33 28 31 23 27 37 31 28 26 24 28 32 23 32 33 24 28 21 34 38 +20 30 23 23 26 27 25 28 31 38 21 35 25 31 29 32 29 28 34 27 35 18 37 27 31 28 27 26 33 28 31 30 34 27 25 24 18 29 29 23 32 29 24 24 24 28 34 35 25 21 35 14 26 26 25 22 26 18 33 26 23 42 30 25 41 28 32 30 21 25 30 18 20 30 21 15 18 18 15 14 20 25 27 26 30 38 31 23 29 19 32 17 20 20 28 22 29 33 12 27 28 20 30 31 23 25 19 30 21 15 17 14 11 12 22 25 15 21 25 21 30 48 42 37 26 30 33 23 31 26 25 21 20 26 31 24 32 41 29 24 34 24 28 28 21 20 29 27 17 29 19 25 23 24 35 17 23 20 23 34 15 28 28 20 18 29 36 29 21 23 29 33 21 30 25 37 27 38 21 27 31 19 24 14 25 18 20 14 8 18 20 27 23 28 19 24 24 33 21 23 22 36 32 22 23 19 20 14 15 21 19 32 30 38 29 34 33 34 23 26 17 15 26 14 21 23 19 33 26 18 21 30 21 24 18 37 38 35 28 30 29 27 30 26 29 22 23 22 22 22 24 27 22 18 37 33 25 39 24 28 27 34 22 22 26 28 34 26 32 21 29 25 32 31 35 28 29 24 28 20 26 21 27 23 28 17 28 32 22 31 34 31 17 32 27 26 31 32 25 23 +31 32 20 28 30 19 28 27 24 36 24 34 26 37 27 35 24 26 33 42 22 25 24 22 30 25 13 22 28 22 27 25 29 34 37 32 26 28 21 31 28 25 29 33 20 20 24 24 20 11 25 26 11 27 31 33 35 25 26 39 22 42 27 26 30 24 21 30 22 26 23 24 28 26 32 22 14 20 16 12 22 24 23 23 25 26 38 31 20 22 26 30 22 17 22 16 25 22 23 13 28 28 27 28 26 24 23 23 15 22 14 7 16 15 20 29 27 20 32 30 38 37 38 24 35 32 25 32 28 35 23 33 29 35 35 30 25 33 25 30 25 32 21 25 27 23 30 25 28 24 32 23 27 32 26 28 13 24 37 30 22 31 26 21 24 20 34 24 27 24 35 28 25 29 33 33 32 26 36 33 33 28 22 23 14 21 14 9 19 16 16 11 25 17 18 18 25 24 29 35 30 24 26 29 31 17 16 17 18 20 20 29 35 37 36 35 29 28 25 20 21 21 25 29 17 29 14 20 21 22 29 26 41 29 31 28 21 35 32 17 34 36 24 25 30 29 19 20 15 22 29 27 21 24 28 27 24 25 26 23 21 40 22 16 40 39 32 27 29 27 27 26 32 33 26 29 27 20 27 16 28 31 30 24 37 30 24 20 32 36 30 28 33 23 28 24 29 28 34 30 +25 22 27 21 43 25 39 27 26 34 35 37 25 22 22 30 31 32 30 30 24 34 27 29 31 20 46 40 20 26 30 26 28 23 28 27 33 24 27 36 30 23 33 29 20 30 22 23 23 13 18 24 27 22 20 19 31 37 26 35 22 23 31 29 33 37 26 25 12 25 26 29 23 19 25 19 10 15 14 23 17 24 28 41 26 38 29 19 29 14 21 24 29 26 21 25 31 28 21 33 26 32 28 31 27 21 18 15 18 15 13 13 13 20 28 18 20 26 34 35 32 35 22 27 37 28 26 23 37 22 27 23 28 35 32 28 34 26 19 29 28 21 29 16 41 24 22 28 25 18 21 23 21 37 28 25 29 25 35 31 35 24 25 30 25 21 23 26 26 26 25 27 31 35 23 25 34 35 27 35 26 39 27 22 23 28 23 18 18 8 9 17 14 23 22 20 29 23 25 30 27 41 30 15 22 26 29 23 21 26 26 22 28 29 38 32 35 26 24 25 19 23 15 24 23 17 30 23 33 17 26 22 23 23 33 23 30 35 26 25 32 31 35 24 29 22 26 23 19 21 22 24 26 26 28 21 24 26 34 20 25 30 32 30 34 28 37 30 32 22 23 32 29 29 30 36 36 27 29 36 28 37 27 26 29 25 28 31 32 21 35 35 27 33 25 39 24 35 31 25 +23 22 29 23 26 28 38 29 23 30 44 28 32 25 22 28 30 32 23 27 34 33 27 31 24 23 34 22 29 28 42 26 31 27 27 28 39 26 32 21 28 24 22 30 26 32 20 33 27 16 22 19 24 21 18 34 22 27 27 32 35 38 27 25 32 17 23 28 19 25 30 21 16 29 20 17 14 19 20 23 23 36 21 31 23 32 27 37 32 21 20 21 24 23 25 27 29 24 33 28 18 25 27 23 30 22 29 17 22 11 9 15 17 18 18 19 21 28 40 31 35 17 35 37 32 30 16 21 28 27 32 25 27 25 33 28 21 19 28 26 30 24 19 23 26 35 33 31 26 40 26 33 24 36 34 29 26 34 26 30 33 26 35 21 25 24 37 24 26 37 22 27 34 25 38 21 20 28 37 23 32 29 28 27 22 27 27 14 13 13 15 17 22 23 12 29 20 28 24 31 32 17 31 30 25 22 33 24 20 23 16 26 32 26 38 43 19 18 32 23 12 16 13 22 18 24 29 19 28 26 21 24 24 25 31 34 28 25 23 29 36 36 29 35 29 18 29 21 25 18 20 24 19 26 37 21 28 25 28 25 31 21 22 27 28 32 28 27 32 37 26 32 24 22 29 40 29 31 33 34 30 25 29 27 36 32 31 30 27 26 31 24 36 28 22 30 37 29 22 18 +26 21 32 25 15 18 21 19 30 24 28 35 25 28 34 35 26 35 32 29 35 36 26 28 35 38 29 29 23 33 21 30 30 33 30 42 27 23 28 29 31 32 41 27 36 30 33 34 25 19 24 29 34 34 21 27 28 23 33 32 30 24 33 28 34 29 31 30 36 20 19 23 20 17 33 15 23 18 18 15 14 18 26 20 29 46 33 21 20 21 21 28 17 27 22 28 23 32 33 37 28 22 21 17 19 15 21 13 14 8 15 18 18 25 28 28 37 48 34 32 33 30 36 20 16 22 21 28 27 26 26 28 35 28 29 28 23 28 26 40 33 25 34 26 33 27 37 31 28 39 47 40 26 31 35 33 26 31 36 30 25 28 38 23 29 27 38 23 24 27 20 30 24 18 32 27 30 31 25 34 30 36 25 33 24 24 24 19 9 4 13 16 18 24 21 18 24 29 27 26 24 30 31 26 30 19 17 29 21 30 23 26 29 26 32 28 40 38 21 28 14 16 17 21 21 13 28 26 25 19 19 29 28 33 26 38 31 43 33 38 28 33 38 32 27 22 27 27 37 25 26 23 31 28 28 25 38 27 26 30 31 36 26 33 27 33 31 21 21 36 29 21 34 37 47 34 26 40 31 30 34 35 33 28 32 25 33 35 29 22 19 31 21 27 25 23 31 28 29 16 +27 22 20 27 26 30 28 27 17 29 20 26 27 25 24 26 27 32 36 24 29 24 28 26 23 25 22 28 36 34 23 25 39 29 36 28 36 31 29 30 35 38 38 28 27 27 27 29 30 28 28 16 20 18 26 31 38 41 37 23 23 30 32 37 29 41 27 26 32 27 26 22 29 19 35 23 12 29 15 17 27 23 31 30 27 32 27 20 20 22 18 20 22 16 21 20 33 29 40 26 23 21 31 33 23 23 10 19 17 8 11 18 25 25 22 22 27 31 26 38 21 27 31 29 31 26 25 32 25 23 37 29 25 30 35 22 35 34 29 34 36 27 29 30 37 20 20 32 35 39 29 37 39 32 34 32 34 35 34 35 26 37 22 25 30 27 34 18 23 31 32 21 25 35 30 26 26 35 20 25 32 26 18 30 44 23 17 23 21 15 12 13 13 19 22 32 27 25 21 19 20 33 29 31 20 21 20 32 31 20 37 25 27 45 37 33 27 30 26 23 10 27 12 15 30 19 26 31 25 18 22 34 33 23 37 28 35 31 25 29 29 29 36 27 24 24 21 24 32 18 20 25 21 29 27 32 27 34 32 32 20 28 37 22 39 27 28 24 25 30 29 29 21 23 26 27 29 37 31 26 26 28 27 27 40 24 32 33 33 23 31 32 27 26 30 29 24 27 36 22 +27 24 20 19 27 27 22 20 22 27 28 16 18 25 30 36 25 33 27 37 28 29 23 28 40 20 19 22 31 31 43 27 31 28 31 29 41 32 26 27 31 31 27 40 29 29 30 31 23 21 32 26 15 17 26 29 27 26 28 36 34 27 25 32 31 25 29 31 34 30 28 35 18 25 17 27 25 20 11 31 26 34 27 36 36 29 35 22 25 26 22 23 29 23 30 25 24 23 30 21 30 17 19 25 22 21 19 10 11 9 16 23 26 20 27 32 36 25 39 34 36 25 24 30 32 34 40 19 32 31 25 31 31 32 22 28 35 22 31 35 31 34 31 25 44 45 37 23 28 23 34 29 25 36 33 23 37 41 40 38 36 24 32 36 26 19 34 37 33 25 34 24 25 30 34 29 39 32 26 29 27 25 35 30 25 24 24 24 21 16 13 12 15 18 24 22 26 30 33 35 24 35 27 32 25 36 23 24 23 23 34 35 36 33 37 31 30 40 32 16 25 24 19 21 23 30 24 20 26 16 33 30 26 19 25 25 21 32 37 26 30 24 34 23 23 18 27 28 24 31 27 24 15 38 40 31 28 23 34 27 33 30 27 16 38 26 28 23 26 28 21 28 42 31 34 33 21 43 22 28 31 23 30 31 24 28 34 28 23 25 28 26 24 26 30 24 23 24 32 31 +25 21 20 22 25 21 27 17 23 26 21 27 15 20 30 25 34 29 23 26 33 39 25 23 30 32 30 21 27 25 20 29 24 30 21 32 31 28 26 30 36 34 44 30 28 25 30 30 32 17 27 16 17 21 18 32 30 32 41 37 32 36 31 29 31 24 39 34 32 26 16 21 24 24 29 24 19 14 16 34 23 27 21 29 34 42 32 17 20 21 23 32 20 34 29 25 32 17 26 25 28 26 17 31 19 20 19 13 17 18 18 22 32 33 24 29 29 35 29 27 38 36 26 29 39 24 24 28 22 27 33 25 26 34 34 22 29 34 34 40 27 32 38 37 26 24 27 22 26 39 31 32 28 27 26 40 32 36 35 39 30 32 43 43 32 28 30 24 21 26 21 26 28 36 30 26 33 25 26 35 28 29 32 34 34 27 20 26 24 23 13 13 10 12 19 14 27 27 22 23 27 27 18 29 35 21 27 22 31 28 19 32 19 34 41 34 38 24 20 25 24 16 21 17 19 19 28 24 23 19 28 23 25 39 31 38 39 33 36 23 28 30 28 32 27 27 29 28 24 20 21 22 31 29 28 29 29 26 27 33 37 23 26 40 32 25 29 27 33 33 41 34 23 31 36 30 37 32 33 38 29 34 31 36 25 29 22 29 24 29 25 17 23 26 20 22 22 27 22 19 +26 20 34 19 23 25 13 27 32 25 23 24 23 23 26 25 23 35 34 31 26 26 35 29 37 31 27 29 36 35 34 36 30 34 30 34 31 27 28 27 27 33 31 30 25 27 28 45 35 25 32 24 28 20 21 26 27 35 42 33 28 37 38 42 37 30 30 25 36 24 24 22 34 25 29 22 26 20 19 15 27 13 31 25 36 39 26 27 20 22 24 26 18 26 25 32 27 30 20 34 33 36 14 30 22 31 9 14 12 20 21 18 18 33 31 29 31 40 32 36 35 32 35 31 26 23 29 21 31 32 28 34 41 34 32 34 30 40 42 24 39 27 32 28 38 22 22 29 27 23 28 32 20 20 24 24 21 33 38 30 36 44 39 36 33 28 34 24 24 23 24 27 19 23 18 33 22 45 29 26 33 28 27 31 30 36 24 25 24 27 23 12 17 12 23 23 28 31 34 31 29 25 26 19 20 34 16 29 26 25 23 25 22 33 39 39 27 27 34 27 17 18 21 21 11 34 28 23 26 21 19 28 31 32 35 25 37 29 30 36 26 32 36 18 17 28 26 31 30 25 49 21 41 34 34 27 32 36 36 33 30 28 35 28 22 34 23 33 29 33 35 28 34 31 24 36 44 26 20 34 23 21 28 27 25 21 17 46 20 22 26 20 23 24 13 27 25 18 20 25 +13 12 22 14 20 19 12 26 27 25 25 32 38 39 22 30 31 28 30 26 27 29 35 35 37 31 33 30 22 27 29 34 32 38 32 33 32 33 31 31 44 37 28 35 33 34 28 29 35 24 20 32 20 24 19 18 17 30 31 40 38 37 33 27 25 32 35 24 30 26 27 20 31 27 20 23 27 22 12 23 32 24 32 42 35 40 40 29 27 33 16 23 22 23 21 40 33 25 40 35 24 34 38 26 18 19 12 16 15 22 25 22 21 31 46 35 31 32 28 39 26 26 22 18 22 37 46 37 28 39 31 34 28 31 50 37 37 41 30 29 30 25 25 20 18 23 37 23 20 29 32 19 27 17 12 18 19 24 32 29 31 34 29 45 33 38 55 27 25 27 36 32 26 27 34 39 32 21 23 37 20 29 29 35 31 36 28 21 18 25 22 22 16 12 22 19 27 28 24 28 22 26 34 22 32 17 27 30 20 34 22 23 36 39 38 40 25 25 23 18 24 22 20 20 18 26 23 30 35 24 29 29 32 29 25 32 29 36 34 33 33 36 29 28 20 23 30 18 21 32 43 38 27 34 23 32 23 30 20 35 23 32 32 28 31 27 38 35 38 26 37 30 29 31 32 34 32 42 26 25 27 27 28 28 29 29 26 17 29 26 23 27 14 18 19 17 21 13 26 21 +20 15 19 18 17 16 17 16 20 14 26 27 27 20 25 22 32 21 24 25 28 29 25 22 30 33 27 35 24 35 29 28 35 29 32 35 33 28 28 37 37 41 32 36 27 23 28 27 20 27 18 27 35 27 22 30 22 33 39 43 41 31 30 27 40 34 29 26 27 31 18 24 29 25 27 17 19 23 25 12 25 18 33 25 42 29 42 23 18 20 18 26 13 27 20 20 30 26 24 24 27 41 18 26 26 19 7 16 10 14 31 23 34 34 34 32 43 28 26 30 48 17 28 33 35 30 31 28 30 34 28 38 43 42 25 33 37 36 20 34 27 24 18 21 22 23 22 26 17 20 28 28 23 25 21 18 28 22 16 34 25 25 33 41 39 37 36 43 36 39 25 29 20 32 18 37 23 24 23 30 30 33 40 27 32 36 35 23 34 24 24 14 11 17 21 18 24 25 24 27 24 32 33 24 37 22 22 23 21 21 21 22 32 27 51 28 40 29 31 31 13 21 25 24 21 24 23 19 20 32 27 38 25 31 35 42 51 28 42 37 29 32 32 25 20 29 13 21 25 36 32 29 31 30 24 33 37 27 34 26 39 29 35 21 26 22 42 22 23 33 31 34 25 43 19 31 36 42 26 28 33 26 25 22 28 32 22 23 26 15 27 16 15 18 23 16 27 17 14 17 +19 8 15 19 18 17 11 23 16 11 21 30 22 24 20 24 27 26 17 26 19 27 29 29 21 40 36 35 33 38 33 33 42 33 33 29 19 25 27 29 37 25 32 31 33 24 23 29 27 19 20 23 30 18 28 21 26 32 30 35 32 37 37 35 32 37 24 33 25 38 22 30 32 27 23 21 16 24 15 22 31 33 29 31 33 35 39 30 21 26 31 29 23 30 27 33 32 32 27 32 18 28 22 18 14 17 12 17 26 19 21 18 46 38 31 29 42 34 24 25 32 28 31 22 34 26 23 27 35 36 33 37 39 34 37 27 18 25 28 19 26 27 21 23 22 28 25 15 22 26 28 16 23 23 19 21 18 20 18 33 15 19 23 19 25 36 42 39 30 34 42 36 27 25 30 36 22 34 22 32 27 38 30 34 28 47 27 32 29 32 27 19 17 14 11 20 21 32 32 32 28 29 28 30 26 26 30 24 21 25 34 34 30 35 30 36 25 29 29 13 27 19 20 29 21 26 27 33 18 26 34 34 33 38 41 35 40 32 33 33 33 32 30 17 28 21 24 18 30 26 26 27 31 46 35 36 39 29 39 29 41 33 24 35 38 30 27 34 29 31 25 28 43 27 23 30 22 26 28 23 39 26 36 17 28 25 27 32 21 24 25 11 24 16 14 16 12 20 15 15 +17 20 21 13 14 10 23 17 17 13 20 15 13 27 20 28 30 28 22 28 25 23 25 30 30 30 27 29 26 29 34 29 30 47 37 31 37 34 28 33 33 28 29 44 36 34 24 29 35 35 33 33 34 26 36 22 24 38 27 32 36 25 31 32 28 40 34 26 22 20 25 28 21 26 30 22 23 21 22 19 25 38 41 37 47 36 35 35 28 25 23 26 17 30 31 35 26 32 21 31 26 26 26 17 19 12 14 21 23 23 28 32 42 42 31 34 30 25 28 25 26 43 21 31 38 21 43 42 35 24 47 34 32 34 28 28 26 19 27 20 22 25 18 21 29 26 30 18 24 19 30 26 19 28 19 15 24 17 24 26 26 33 30 31 23 25 26 40 32 42 32 37 18 42 24 19 31 21 25 32 36 29 24 35 37 44 25 42 24 23 15 30 16 21 15 15 18 25 26 28 28 26 25 30 24 29 26 28 26 21 14 35 28 20 30 34 30 24 29 21 30 18 24 17 24 25 23 28 37 24 30 30 28 33 33 35 36 32 40 35 29 28 40 22 34 27 23 24 28 27 32 30 33 31 37 36 37 36 37 29 34 35 27 40 34 31 37 39 31 42 35 39 31 36 27 28 35 33 21 30 36 27 33 21 21 22 25 13 17 11 23 23 9 15 16 15 26 17 20 18 +23 18 7 23 13 17 14 15 26 20 17 20 15 17 15 20 25 28 29 32 28 27 30 27 32 27 40 23 26 39 28 31 34 32 30 21 29 37 33 33 25 40 25 22 28 30 34 25 17 35 33 20 19 23 24 19 32 27 45 39 41 39 43 38 28 24 23 34 28 23 34 33 29 32 31 30 19 22 15 20 41 41 31 29 28 36 24 28 26 21 23 21 24 35 24 34 37 26 27 27 33 35 21 27 11 18 13 25 17 33 24 37 30 30 25 33 37 29 26 28 27 45 35 20 26 31 29 36 33 39 42 35 32 32 24 23 14 22 17 22 20 26 20 22 22 18 23 20 27 16 16 18 26 22 22 25 27 22 24 18 23 20 25 25 25 25 26 31 36 25 29 33 33 30 36 23 28 29 25 31 39 34 28 29 31 26 32 35 34 22 26 27 16 13 13 15 24 20 21 31 32 33 22 25 25 29 32 28 17 28 30 27 23 30 32 42 44 32 28 29 21 19 17 30 37 21 22 23 25 38 23 35 27 31 27 31 34 27 49 39 31 27 21 29 23 24 23 25 26 36 30 21 36 26 43 38 30 33 33 29 33 29 36 32 30 36 28 31 36 34 27 30 30 34 32 27 33 36 34 23 23 23 33 25 30 19 21 18 18 19 25 16 17 27 22 27 22 24 22 20 +20 11 25 19 14 14 21 12 13 20 15 17 17 17 22 13 20 17 20 27 33 21 32 26 32 26 32 25 33 39 38 31 39 33 30 32 41 23 38 29 35 39 29 36 34 27 29 32 31 30 41 26 29 28 19 22 17 30 29 33 26 23 28 33 34 54 43 26 28 23 25 25 28 30 31 27 14 16 16 21 23 33 29 40 24 27 39 23 19 24 20 29 25 36 24 18 35 31 31 37 30 25 25 21 17 10 19 36 33 19 33 35 31 41 33 35 32 34 23 32 23 32 19 28 29 28 24 31 41 32 44 22 27 30 25 24 28 18 25 30 23 30 21 30 21 20 28 16 21 26 21 24 24 26 27 25 23 26 35 27 31 21 23 26 20 21 25 25 26 29 32 36 42 39 34 24 26 31 26 38 21 30 21 34 23 35 29 39 34 33 29 23 27 18 15 17 18 22 20 28 31 20 27 41 33 25 22 23 22 28 19 18 21 27 43 34 38 45 26 26 25 24 23 22 21 45 27 38 31 31 32 31 31 41 44 33 40 31 32 27 34 38 28 32 25 27 25 20 27 35 20 34 33 32 27 32 43 37 30 37 24 39 30 29 20 28 37 32 35 32 31 32 27 38 33 41 27 34 25 35 32 25 29 20 23 14 21 22 22 20 15 11 19 21 14 22 15 20 24 31 +19 11 18 22 16 19 16 22 17 16 23 15 19 16 23 29 20 23 20 19 35 24 27 33 29 30 30 33 42 34 37 35 34 35 31 27 35 32 28 31 40 32 32 31 23 26 41 38 35 36 40 26 22 24 26 23 29 25 32 31 36 37 26 32 34 42 23 42 28 32 28 30 38 19 25 24 23 17 29 22 32 30 32 39 40 24 32 32 33 23 30 33 27 27 28 39 46 30 32 28 30 22 19 19 11 14 14 35 26 22 32 44 33 32 28 46 32 25 39 28 34 33 25 38 23 34 34 29 29 31 33 27 27 27 13 23 20 23 23 20 28 24 28 20 27 26 25 26 26 27 26 18 22 26 27 28 32 18 23 26 27 22 25 28 29 20 29 19 19 30 42 45 40 36 42 28 29 34 31 38 38 40 31 32 41 38 42 28 37 24 22 31 26 14 12 19 17 17 25 30 39 24 32 30 30 29 35 34 24 29 22 23 38 31 36 47 37 34 37 36 27 18 25 9 22 23 21 30 26 24 25 39 27 33 29 33 37 30 48 39 39 33 30 24 15 26 23 24 31 30 36 27 33 28 32 38 42 44 27 29 27 37 40 24 31 32 30 33 33 26 34 28 32 32 36 29 31 28 41 22 25 28 22 15 13 22 17 21 15 27 17 18 25 22 24 17 15 18 16 20 +22 16 7 10 14 16 20 19 17 23 21 15 21 16 15 17 16 17 19 17 34 26 32 29 28 40 32 31 44 36 50 37 48 31 34 38 19 37 32 33 46 32 27 35 37 27 29 31 39 31 38 43 28 33 28 24 28 27 33 36 41 32 39 28 34 36 34 34 26 33 27 21 28 28 28 25 23 26 20 18 34 33 35 37 38 42 29 26 24 34 24 23 26 35 36 33 24 30 41 28 33 27 14 17 19 12 24 18 26 25 38 29 28 39 29 42 21 28 25 43 24 24 41 25 32 35 45 34 43 25 32 21 33 19 28 23 30 20 21 24 31 21 20 22 24 23 33 19 23 22 18 25 21 26 20 19 20 23 24 28 24 28 27 24 20 28 28 19 20 22 23 32 34 41 40 37 29 32 25 34 33 24 26 44 46 44 37 36 33 40 36 35 36 25 17 12 22 16 22 30 21 36 28 29 37 37 25 36 32 24 32 20 22 21 38 34 36 25 38 34 26 22 21 21 27 26 20 27 24 23 28 38 26 34 28 27 30 34 37 30 36 40 37 31 20 30 29 25 32 34 39 30 35 35 33 34 32 28 22 40 26 30 38 29 29 38 37 32 28 34 37 42 28 28 31 34 26 18 27 26 26 19 14 15 21 18 16 10 16 19 14 16 22 18 24 11 17 21 11 9 +13 24 21 22 19 16 21 28 19 12 24 21 24 17 20 27 25 16 15 23 20 21 24 19 25 33 28 36 38 35 37 26 31 33 31 41 26 30 25 40 18 28 33 31 37 39 29 44 35 26 34 21 32 27 26 21 30 23 37 43 33 46 29 28 35 39 28 44 28 40 44 31 37 32 26 22 18 19 15 26 25 30 24 44 48 33 15 25 29 31 26 22 16 23 35 28 26 30 23 34 29 25 24 15 13 13 27 21 26 36 42 41 48 39 35 32 34 31 24 23 37 27 38 34 41 35 39 26 33 25 30 18 24 21 28 25 24 25 20 21 14 16 23 19 19 35 20 27 23 25 23 18 23 28 20 23 28 22 21 28 25 23 31 20 25 31 24 21 25 15 20 36 33 44 38 36 42 24 36 27 30 29 38 26 27 42 41 40 47 34 38 31 24 21 17 8 21 19 23 32 33 23 34 36 33 35 30 30 26 25 33 30 26 24 49 40 40 41 31 23 25 16 8 29 33 30 18 32 30 24 32 39 27 33 42 40 37 33 31 36 33 33 33 26 25 23 23 30 27 31 28 35 37 35 27 31 39 44 30 34 20 31 28 35 36 29 42 39 43 42 32 23 29 22 21 19 28 32 25 19 21 19 13 17 14 8 20 18 13 20 13 16 27 16 17 12 19 11 20 13 +24 19 20 22 19 15 13 19 17 15 14 18 17 22 26 27 15 28 13 16 26 16 27 30 30 27 25 23 35 36 31 43 24 38 42 39 29 47 35 35 29 39 35 47 37 35 37 36 28 42 37 24 17 30 23 21 30 27 38 34 37 40 28 44 30 33 43 19 38 26 25 27 26 31 26 25 20 21 26 14 32 30 31 45 44 33 31 35 31 34 31 26 17 26 33 26 29 37 37 21 26 24 20 15 9 15 36 26 29 40 33 35 31 40 27 40 23 32 25 19 29 25 38 34 41 37 42 23 30 26 24 30 28 22 30 26 28 23 23 36 22 22 36 29 12 25 20 23 27 19 20 20 21 25 11 19 17 30 20 20 27 25 21 18 38 36 30 28 32 23 20 29 26 37 32 34 38 30 21 43 43 29 35 42 34 38 30 29 45 52 38 26 30 37 25 15 14 19 29 22 32 26 26 28 31 37 25 29 31 22 28 28 30 29 27 25 44 40 38 29 27 23 20 15 22 30 31 26 23 23 28 28 24 41 35 27 30 40 44 35 36 28 21 25 32 29 12 35 37 32 37 41 33 31 38 41 42 46 29 34 36 28 38 36 31 39 29 28 38 34 30 33 31 26 31 33 28 27 23 18 18 25 20 18 19 16 16 23 18 12 21 19 17 18 19 24 20 16 19 19 +19 25 18 18 27 19 11 22 17 19 16 22 21 17 14 15 26 21 26 22 21 20 27 25 31 28 29 33 29 33 29 38 25 23 35 29 34 33 33 32 27 27 32 34 31 36 42 30 36 47 29 38 38 23 19 39 22 30 27 51 33 44 29 40 39 38 37 37 30 30 23 32 20 25 29 25 28 18 23 18 34 39 42 36 43 35 17 34 33 21 24 25 34 27 32 35 33 37 37 36 35 26 10 13 14 19 26 27 18 37 35 37 40 39 28 34 23 31 32 33 29 35 34 29 43 37 34 37 19 28 29 30 24 24 25 29 34 26 23 25 27 23 20 18 20 19 10 11 17 12 6 14 25 23 18 25 20 26 23 23 18 25 23 28 19 21 26 23 25 26 27 22 24 36 39 40 28 51 43 31 38 23 33 25 34 36 20 33 33 45 44 41 29 30 23 11 14 22 21 35 29 22 31 28 28 32 20 35 35 23 30 25 24 24 36 51 45 36 40 27 24 20 18 19 29 35 31 34 29 22 39 46 35 37 28 36 31 35 32 33 34 27 19 17 35 29 28 28 43 32 30 32 37 36 32 31 33 31 35 29 42 35 31 46 40 29 38 35 38 33 33 22 25 26 34 25 23 27 29 15 18 24 20 17 23 22 17 23 11 13 30 34 15 18 21 21 16 25 26 15 +21 20 22 23 20 23 16 19 27 17 19 19 26 21 19 23 19 17 18 19 23 16 16 27 23 27 33 29 21 32 35 39 29 30 34 34 38 27 26 30 40 18 34 38 36 52 33 45 36 38 34 31 29 40 38 42 21 25 38 32 35 37 31 31 26 45 21 23 37 31 30 30 24 28 37 26 30 22 20 23 36 27 41 42 35 31 31 30 25 30 32 29 35 37 38 27 24 37 26 21 22 18 18 13 16 21 26 34 31 46 34 40 34 24 33 30 23 25 35 45 38 40 36 43 46 40 30 32 36 22 24 33 23 34 25 22 23 15 27 22 15 20 17 14 13 17 8 10 11 11 6 10 13 11 11 12 17 17 16 21 17 30 32 23 27 26 29 32 23 19 29 25 28 22 33 39 43 33 32 34 34 33 32 24 35 27 21 30 39 33 43 40 27 22 21 12 13 18 26 21 29 28 36 41 23 25 34 40 28 17 26 19 29 28 22 44 45 36 32 32 19 27 19 26 25 29 26 22 26 42 33 31 31 38 34 37 39 31 24 38 27 31 33 22 17 29 21 26 34 31 39 31 36 32 32 31 41 40 37 33 31 29 31 38 35 31 27 35 29 40 35 28 28 33 27 29 36 29 17 16 18 16 19 29 23 15 25 18 21 24 22 22 15 25 15 18 16 21 16 22 +15 16 13 23 21 19 13 22 18 15 25 20 21 21 21 18 18 27 16 21 18 14 23 27 24 33 32 32 31 29 34 33 31 41 30 49 36 29 28 40 27 30 36 45 38 34 40 35 31 41 37 35 49 23 33 25 27 33 23 46 52 41 41 39 42 28 32 40 31 37 36 25 33 28 29 25 34 23 18 24 43 20 43 40 45 37 33 32 23 26 20 37 39 34 34 31 31 26 37 26 18 18 13 15 17 20 41 36 38 40 46 41 46 36 39 31 30 43 29 40 34 35 37 37 32 36 32 30 27 19 26 19 20 21 27 26 25 34 17 25 21 18 15 10 11 8 7 4 2 10 9 4 4 8 6 7 4 10 13 9 25 12 14 28 29 25 30 27 29 25 28 23 15 21 29 33 52 32 37 32 30 39 29 38 34 43 29 43 35 44 51 37 23 34 21 30 16 18 24 16 39 35 31 33 28 37 41 43 29 31 27 23 21 29 47 42 35 40 40 34 23 20 24 20 29 25 30 38 45 35 38 36 34 38 36 35 37 43 26 35 43 42 27 21 30 20 27 34 39 35 33 41 33 39 30 21 32 44 32 41 32 40 33 32 39 41 29 37 31 44 40 43 28 16 22 24 23 20 22 11 15 22 18 22 19 22 11 20 16 13 14 25 19 23 14 15 21 15 21 12 +21 21 18 16 22 19 26 14 28 21 16 15 28 14 17 9 18 17 23 15 16 17 19 25 34 32 34 31 38 21 36 28 32 31 37 39 36 25 40 38 37 28 29 35 44 35 38 31 35 36 43 30 28 32 30 30 26 36 32 40 33 36 39 34 33 41 53 43 33 35 43 29 39 29 24 19 20 20 13 24 42 30 49 44 42 28 31 22 21 31 33 33 42 36 34 26 37 26 30 23 26 22 22 18 15 31 37 31 40 42 30 22 27 41 32 34 27 28 29 30 27 35 42 37 27 27 19 22 19 30 31 22 23 26 18 18 18 18 17 23 10 8 4 3 8 7 2 2 3 4 1 4 4 5 3 3 2 8 8 12 11 19 13 23 20 22 31 27 27 29 30 26 27 22 34 29 40 44 45 44 30 31 39 35 33 27 36 33 39 37 31 39 44 24 34 23 13 14 19 24 31 28 36 35 25 36 29 26 20 24 36 30 27 22 31 42 33 32 28 36 25 31 22 20 24 21 30 21 27 27 35 38 32 37 29 39 38 43 38 44 31 22 23 21 35 30 25 41 46 41 38 35 37 50 38 30 31 37 26 34 22 34 32 31 28 38 27 40 25 33 40 31 36 32 30 23 22 20 21 23 22 25 18 35 18 19 14 24 17 26 27 20 17 27 22 16 29 21 16 21 +15 17 9 23 13 25 12 14 20 22 12 15 19 25 22 21 13 22 17 15 19 28 25 26 26 14 30 29 31 22 32 39 26 36 43 46 36 30 41 30 36 30 26 48 39 41 41 42 48 35 31 33 45 34 21 32 32 25 26 34 45 37 39 41 44 32 39 28 29 44 37 32 25 37 24 25 22 30 32 29 43 26 52 34 34 38 26 26 21 27 29 32 36 24 31 26 34 27 25 22 19 27 17 15 33 28 28 48 42 38 36 30 29 28 32 35 36 30 30 34 41 47 41 37 34 16 36 21 22 24 34 34 21 20 23 17 20 9 6 7 10 6 4 4 2 2 4 1 1 3 2 4 3 5 2 1 9 2 6 6 5 10 14 15 19 22 24 20 22 32 26 33 28 32 23 29 33 37 39 32 34 39 23 34 38 28 42 34 30 44 31 38 39 23 24 33 16 20 26 16 24 30 39 34 36 41 35 28 23 22 29 36 33 23 27 46 32 49 41 29 35 13 25 24 30 31 38 37 34 20 30 37 37 39 40 38 42 35 40 42 40 31 26 27 25 33 39 39 36 30 35 45 35 29 33 29 41 39 35 29 28 39 38 44 34 38 39 42 37 34 33 30 30 24 26 20 19 16 22 24 12 24 25 17 19 19 23 20 19 22 19 15 15 18 23 16 20 24 20 21 +20 27 20 19 21 28 12 24 21 22 27 18 28 14 14 28 30 17 13 23 15 14 23 17 26 22 24 34 35 32 26 33 26 30 41 41 34 36 34 41 35 39 26 44 29 39 38 35 34 39 28 42 31 48 32 27 25 31 33 24 37 29 34 36 37 36 34 36 40 50 38 33 31 27 26 34 32 26 24 23 30 33 30 44 33 26 24 26 29 39 25 30 24 45 45 30 38 27 23 24 18 16 13 18 24 35 33 31 39 35 37 30 33 24 34 47 36 35 18 31 35 47 40 28 30 28 23 27 21 37 29 29 26 24 33 14 13 7 12 8 6 4 4 7 4 2 5 5 2 5 4 0 4 4 2 1 5 7 2 2 8 8 12 14 17 21 18 22 13 32 24 20 24 28 26 24 28 35 32 33 30 30 26 32 31 31 35 37 30 37 39 46 45 30 28 32 25 15 14 21 25 27 30 29 33 34 31 36 27 26 26 33 23 31 34 31 44 47 30 26 25 22 24 22 23 20 37 22 33 31 42 32 33 44 37 39 38 34 28 41 31 29 23 35 29 33 27 25 42 31 27 40 33 36 46 35 38 36 27 31 36 37 43 28 31 43 34 33 34 35 27 30 17 33 20 15 24 13 16 19 16 18 19 24 27 26 19 19 21 25 19 30 20 21 19 18 28 13 16 21 +28 27 26 18 31 19 29 24 24 21 14 19 15 20 22 23 17 20 18 18 15 18 13 12 16 25 19 36 29 30 27 24 26 48 34 29 34 32 40 33 38 38 37 34 28 39 42 29 40 43 34 36 42 35 36 27 23 30 33 43 37 35 39 43 44 44 40 48 32 35 25 31 36 27 24 21 31 28 27 29 36 34 45 52 33 34 27 40 24 23 24 33 31 38 33 41 32 38 44 25 29 24 16 18 41 31 30 45 42 39 30 31 41 40 31 48 34 35 37 39 44 35 36 35 27 26 28 19 19 34 27 20 26 23 17 13 6 8 2 6 6 4 2 4 4 3 3 2 5 2 4 2 3 2 4 2 2 4 2 3 2 3 5 9 4 18 24 29 27 21 31 24 39 19 24 25 29 45 44 34 54 33 25 32 35 25 31 40 42 39 31 32 49 48 32 32 26 14 20 23 25 30 37 34 25 31 27 28 34 33 24 35 36 32 26 45 45 35 30 18 27 28 28 27 15 35 32 17 27 30 36 35 35 26 50 46 27 38 43 35 35 35 23 33 24 33 31 28 40 33 36 34 43 38 35 34 37 39 36 40 36 36 34 33 34 44 35 31 32 35 40 31 27 22 21 22 25 18 14 15 23 19 16 14 23 16 18 28 15 25 22 11 20 17 15 19 20 14 19 31 +29 21 19 16 16 18 16 16 16 29 20 23 18 10 20 15 23 16 25 30 21 16 14 23 12 26 25 22 36 30 28 28 39 35 35 35 36 36 43 43 33 36 44 31 30 24 24 26 32 33 46 35 42 39 32 31 29 29 31 36 34 40 39 38 25 43 44 42 46 45 37 32 29 33 31 36 29 28 26 29 27 30 42 54 50 32 31 38 32 33 19 37 44 34 31 34 29 30 33 33 22 16 20 31 33 39 34 36 50 30 29 39 35 30 30 35 25 37 39 44 52 39 23 26 18 32 23 24 33 29 27 22 16 16 19 7 2 3 9 1 3 1 2 4 4 0 2 2 1 1 4 3 3 3 7 1 3 3 7 4 4 4 3 4 5 16 15 23 25 31 32 25 28 26 26 29 19 21 44 39 33 49 39 39 33 40 25 35 32 33 33 43 38 37 34 31 29 17 15 21 26 24 32 43 33 31 35 35 32 35 24 27 28 35 30 40 41 40 34 29 31 27 23 20 28 26 33 36 40 25 34 41 37 44 31 36 38 27 33 35 35 32 21 30 28 36 35 32 33 31 36 41 33 34 48 34 40 36 26 47 31 40 39 40 39 34 42 42 31 34 31 38 29 21 16 15 30 20 18 16 14 26 21 18 31 21 13 28 13 24 22 16 20 27 17 21 24 19 28 24 +18 24 23 20 16 25 27 16 19 28 23 17 21 23 21 20 16 22 21 27 24 22 29 19 17 24 23 28 31 39 40 33 49 35 35 34 41 28 39 37 38 44 40 30 40 42 32 37 38 46 35 30 34 45 35 29 26 39 26 26 42 42 40 34 32 43 44 35 37 42 24 25 21 30 21 24 23 25 21 32 38 29 50 49 43 32 21 31 33 28 27 38 31 33 36 34 27 35 30 22 15 18 18 33 39 36 40 49 41 30 43 40 30 33 24 30 39 40 40 35 32 34 22 23 20 26 22 29 26 38 16 25 19 5 7 3 4 3 3 2 5 4 3 4 8 3 4 4 6 6 4 2 6 7 3 3 4 4 4 6 2 6 7 5 5 7 8 22 30 25 25 24 31 25 24 14 24 34 33 36 47 39 37 36 35 28 46 32 41 32 38 34 49 38 34 34 24 18 11 15 20 25 37 35 36 25 29 29 30 34 23 26 34 25 28 41 45 38 34 27 29 24 21 25 32 34 28 47 39 31 33 30 32 37 46 38 35 40 41 33 23 27 38 24 27 24 29 30 40 32 36 41 30 40 43 43 38 31 45 31 36 31 42 43 53 46 36 44 30 37 25 30 19 24 17 18 13 27 26 14 30 14 19 30 15 28 23 15 19 24 24 25 14 22 21 27 15 19 20 19 +22 15 22 29 24 28 27 23 13 25 17 13 26 15 22 13 23 25 19 25 16 26 24 17 22 20 15 25 23 30 34 36 34 36 40 33 34 39 47 42 27 26 34 27 36 28 30 40 37 38 38 45 33 34 28 25 29 27 17 27 35 40 45 38 39 36 42 33 32 36 38 25 33 29 36 30 21 35 27 33 29 31 36 49 34 35 22 30 27 25 26 33 34 43 34 24 35 35 34 23 20 15 17 28 32 41 44 53 33 37 38 34 42 28 44 38 34 30 46 39 31 24 23 27 27 26 23 25 25 22 22 30 11 5 5 4 0 4 0 7 3 9 3 5 10 13 13 15 25 14 21 9 16 13 12 9 8 4 4 3 5 1 7 3 4 3 11 18 17 14 30 18 23 25 26 19 23 18 24 49 42 51 47 40 27 36 23 32 42 35 35 41 59 41 48 28 29 28 13 23 18 39 38 35 36 45 28 42 42 38 27 32 23 38 35 34 62 32 47 36 35 35 29 33 32 35 21 29 31 43 43 41 27 31 36 32 38 34 37 44 51 36 25 28 25 20 24 33 38 42 44 42 38 43 37 39 34 34 41 28 32 36 28 35 36 33 33 40 29 25 23 35 22 22 20 15 28 25 21 11 17 16 20 23 34 23 22 23 16 22 19 32 13 21 19 29 30 23 19 16 +19 21 20 23 25 22 26 19 16 25 18 24 20 25 27 23 21 26 16 30 21 23 18 27 21 17 14 19 24 29 28 28 28 39 32 43 48 25 36 43 34 36 35 40 36 56 45 32 29 39 39 35 37 38 22 33 27 33 34 29 41 29 36 41 41 36 51 35 50 32 32 28 37 35 27 20 30 17 23 33 27 40 42 46 48 29 34 26 38 32 31 44 30 40 29 26 23 29 31 22 21 17 21 29 38 33 37 28 31 29 39 45 41 23 38 29 39 50 29 44 30 29 17 23 20 39 23 30 26 26 14 13 5 3 3 4 3 4 1 5 6 9 9 16 17 17 21 27 28 36 29 33 26 29 26 9 15 15 9 4 4 4 1 6 5 6 9 6 11 16 19 34 21 35 23 29 27 27 26 40 51 41 34 39 24 37 31 41 41 39 40 37 45 47 39 33 30 33 14 18 25 27 25 28 25 44 46 32 25 20 35 26 50 35 31 47 52 31 35 39 32 19 27 16 34 34 27 18 34 44 41 38 57 41 36 37 45 51 37 54 30 28 24 16 32 39 38 42 45 45 36 37 28 37 41 30 40 31 46 40 42 34 27 34 39 42 35 35 34 31 19 24 18 22 21 21 22 27 23 20 22 20 21 21 17 20 15 31 32 17 18 16 19 17 25 20 18 25 21 22 +20 16 14 24 27 24 23 22 16 26 20 14 21 19 19 12 25 15 26 25 22 18 18 24 12 14 16 19 23 30 33 41 30 30 28 43 30 31 38 37 44 39 32 35 46 37 40 33 29 45 47 43 44 35 25 32 22 28 26 25 41 51 49 36 40 36 37 35 33 39 27 22 28 30 34 29 24 20 32 32 36 34 52 42 35 32 17 26 28 29 36 45 33 36 42 33 25 27 24 21 12 18 29 24 26 40 34 39 34 27 32 33 36 38 32 32 45 38 27 32 24 39 27 27 28 19 21 29 24 25 14 7 6 3 0 3 3 2 9 6 8 15 22 29 24 45 31 42 37 49 36 42 43 40 40 25 32 15 15 10 2 3 3 3 3 4 4 3 8 8 25 25 33 29 29 30 31 29 32 20 36 43 49 31 36 30 27 31 23 21 45 44 33 38 44 36 34 23 19 10 23 27 29 31 37 34 36 27 39 29 26 24 24 29 40 33 56 41 37 33 38 24 17 26 33 31 24 36 37 31 37 29 42 46 25 34 32 47 54 45 31 26 37 36 29 27 33 48 38 42 48 48 40 36 39 54 41 41 38 36 40 45 38 41 41 27 40 37 26 28 16 23 24 15 26 16 17 22 19 26 15 16 17 19 17 21 26 20 25 15 20 26 17 21 20 19 32 29 25 28 +29 24 24 20 17 16 17 24 19 19 22 20 16 13 22 19 32 22 23 31 20 20 29 17 29 23 14 19 23 26 33 26 43 37 44 49 47 31 45 41 29 32 42 33 51 38 41 39 39 42 41 51 32 28 29 31 29 34 27 29 31 37 42 36 35 25 34 46 34 41 30 34 40 25 26 35 25 26 23 36 39 28 48 51 46 26 24 34 22 30 36 29 35 32 37 33 37 27 20 28 15 18 21 42 32 42 47 44 34 32 53 43 30 44 43 27 47 40 44 24 22 29 22 26 21 21 21 26 22 16 14 9 2 3 3 1 5 2 8 16 25 24 33 37 41 36 48 49 53 61 49 41 43 62 45 39 46 33 34 22 8 6 4 1 1 5 1 1 3 9 15 24 19 28 22 34 33 24 34 23 32 36 49 48 44 37 35 39 36 24 45 32 33 48 46 23 42 20 14 15 16 22 34 36 23 26 27 37 31 36 27 29 26 29 28 45 45 54 45 32 34 24 21 28 28 45 30 30 31 28 33 36 48 41 37 43 36 42 46 35 28 33 28 26 36 42 38 44 35 43 36 46 38 34 35 44 37 42 37 27 39 39 38 38 38 33 30 19 40 21 18 18 24 20 15 23 14 24 23 15 18 22 28 21 29 17 14 25 18 24 19 21 25 15 19 31 17 23 25 24 +22 22 21 17 21 22 20 19 23 23 23 18 16 14 24 23 21 16 12 23 22 19 22 28 25 21 20 16 24 26 32 34 36 31 37 40 30 37 34 27 31 35 35 33 30 42 43 36 45 36 35 38 33 39 45 27 33 27 38 25 36 36 50 49 34 45 49 42 46 34 24 27 35 32 35 26 20 24 25 37 33 56 39 31 41 31 32 32 31 24 36 41 25 33 34 46 38 26 24 19 22 12 40 31 40 49 43 39 31 44 40 33 45 36 23 36 54 52 40 26 28 31 20 20 26 25 17 34 24 9 6 7 4 5 2 1 2 7 14 25 38 37 60 40 48 49 66 63 40 56 47 49 62 41 59 56 44 56 38 30 23 10 10 6 2 2 1 3 5 5 6 20 26 23 26 26 24 29 21 14 25 32 44 34 45 40 34 47 39 31 47 28 32 43 43 37 39 31 12 11 33 21 25 28 24 44 43 29 36 31 31 28 44 30 33 47 61 52 41 32 23 24 24 22 32 35 36 33 32 46 32 40 41 38 42 40 48 44 53 37 20 24 32 26 38 33 34 48 41 41 27 36 44 39 29 28 37 32 34 32 36 35 32 43 36 43 39 28 31 27 27 27 26 17 16 13 15 21 17 21 19 15 25 24 20 25 26 19 23 14 21 21 24 30 21 14 24 23 21 19 +16 21 24 24 17 18 20 23 17 23 18 20 29 24 22 23 17 26 22 22 16 22 17 24 16 19 16 22 33 16 28 31 34 31 30 35 34 42 31 43 44 35 46 38 37 39 46 48 37 39 39 39 44 40 37 28 25 28 38 24 31 33 51 45 36 44 37 42 31 34 42 26 30 27 29 24 36 20 26 27 40 44 47 44 40 38 24 26 25 43 38 43 28 27 39 31 29 38 23 14 14 22 35 41 35 34 40 28 39 41 34 37 34 31 30 37 37 42 37 26 26 29 23 24 25 36 21 10 9 10 2 4 4 3 6 6 9 18 32 34 45 56 53 58 47 51 55 62 55 44 69 45 65 43 60 53 44 50 59 38 44 45 16 16 5 2 2 4 2 2 6 8 18 26 17 23 31 24 34 30 25 40 46 44 40 37 39 43 47 38 28 31 41 53 40 38 41 32 26 16 18 19 25 32 34 36 44 30 38 43 20 29 28 32 49 30 36 38 42 31 39 37 35 15 37 28 30 37 37 37 35 34 50 43 40 40 50 38 45 46 28 21 29 28 41 30 29 35 48 39 46 43 46 32 31 31 41 41 30 38 44 36 30 39 34 31 29 33 26 29 14 20 25 26 21 31 31 17 24 19 17 23 20 30 19 18 13 15 22 16 31 18 19 19 25 23 20 40 17 18 +20 21 19 24 27 17 20 25 21 18 37 25 18 18 25 23 26 25 23 18 19 19 22 21 17 20 26 25 31 29 24 25 41 41 35 59 40 29 39 42 38 35 47 41 34 27 44 54 35 48 27 43 53 31 45 29 24 34 39 27 36 41 37 44 52 40 27 38 38 38 33 36 38 24 27 27 35 22 24 33 37 40 39 34 35 33 35 35 39 35 41 44 37 40 35 28 42 21 27 21 15 18 24 34 36 40 37 32 36 52 31 35 35 32 32 42 50 40 46 20 29 28 31 30 29 23 24 6 6 5 5 4 4 5 5 13 20 32 46 41 54 53 50 47 51 62 39 50 51 65 48 61 52 53 45 47 53 45 60 53 51 43 26 23 5 5 3 4 5 4 5 9 17 22 28 26 28 22 20 27 24 35 47 45 39 45 30 42 38 37 35 38 39 41 52 38 32 31 29 18 11 20 30 38 33 37 47 39 49 33 25 31 39 27 30 23 44 45 42 36 30 33 29 19 24 30 35 32 31 25 29 42 35 27 46 47 32 38 38 38 31 25 27 30 40 31 37 33 37 39 47 39 53 58 32 36 54 46 37 30 35 35 39 46 32 34 21 34 28 26 22 17 19 18 18 20 18 19 17 23 20 20 23 29 26 25 20 16 19 15 26 23 25 11 19 24 34 21 24 24 +19 20 15 16 13 25 21 24 22 30 16 29 25 29 18 30 25 14 15 19 24 17 23 26 16 26 20 19 15 20 15 28 25 36 31 31 48 36 39 34 41 43 41 38 33 35 46 38 33 51 43 44 40 41 28 37 29 33 38 28 35 42 50 40 37 39 40 45 33 40 29 36 29 37 32 22 26 26 34 38 33 44 49 55 32 42 32 35 18 40 30 34 26 42 48 36 35 44 20 16 19 26 32 38 42 43 43 40 44 37 27 26 37 30 47 56 40 30 32 41 19 24 26 33 27 21 11 12 4 4 4 1 4 5 8 23 29 43 70 58 57 56 42 54 49 54 60 53 61 55 59 57 49 52 54 52 54 54 49 61 52 47 48 35 18 17 3 3 6 5 7 4 9 17 17 31 35 28 28 28 36 28 34 48 40 39 28 36 35 46 38 39 28 36 40 31 43 32 22 15 11 29 27 33 47 32 33 41 35 32 30 34 32 28 32 37 31 53 45 35 34 29 18 23 26 34 33 31 35 37 34 48 35 43 29 36 36 38 33 29 35 25 24 35 42 26 30 50 42 40 37 43 43 44 37 35 41 35 38 30 37 35 31 44 34 42 38 35 20 24 20 30 27 24 17 18 13 16 23 21 29 25 10 18 19 25 23 15 18 26 17 18 23 34 24 15 31 23 18 13 +14 14 24 22 20 17 26 20 13 33 23 23 18 17 33 12 13 27 26 21 24 17 17 20 20 22 19 21 20 19 20 26 30 32 33 27 50 34 33 31 55 36 41 34 40 33 47 45 31 45 39 38 30 41 44 26 33 29 25 32 44 50 47 36 41 51 36 55 38 32 40 29 33 25 31 23 36 29 35 33 41 44 51 39 31 37 32 38 22 28 34 43 48 37 48 38 25 18 24 15 16 39 38 36 41 37 35 34 32 49 34 35 30 39 39 64 37 35 30 17 29 23 27 30 32 30 13 6 1 2 3 6 6 9 19 32 42 60 43 67 59 67 49 63 74 58 68 62 68 63 71 72 61 63 62 59 47 49 41 59 53 55 57 44 46 19 8 5 3 5 3 3 8 12 28 15 20 36 28 28 21 29 32 47 49 39 31 36 47 40 48 43 56 38 35 42 21 41 21 20 15 26 28 36 28 37 35 28 41 37 30 30 41 34 28 55 45 48 47 27 35 22 31 24 20 35 42 47 38 37 41 32 44 35 41 41 47 39 34 37 36 32 40 29 36 37 38 40 45 35 40 39 33 44 38 31 33 39 35 37 35 43 24 37 30 32 35 37 29 23 22 23 23 24 18 17 26 23 22 21 26 22 14 24 18 16 19 26 25 24 28 20 20 22 8 19 17 24 21 17 +20 14 16 28 21 19 18 16 26 20 23 20 22 19 24 20 11 27 22 18 19 21 22 28 23 17 25 25 22 17 13 30 37 32 38 29 39 37 49 38 34 42 35 39 42 36 51 43 44 48 36 45 46 43 26 44 41 33 32 49 27 32 32 41 50 47 43 31 54 41 39 36 31 32 31 38 29 26 33 36 47 35 56 40 36 34 30 34 30 25 43 37 30 41 38 28 28 16 26 16 18 42 36 35 34 37 44 40 39 42 29 37 26 30 40 33 46 36 22 17 35 26 25 29 27 17 11 6 4 4 5 5 7 22 32 50 45 63 68 43 50 66 63 72 65 89 93 90 66 87 84 104 79 84 76 79 70 63 60 43 55 59 60 42 57 47 15 6 3 1 9 2 5 5 14 21 20 20 23 28 33 30 37 31 49 46 30 35 34 37 38 40 40 29 38 54 38 30 33 19 16 20 33 38 32 35 44 35 36 30 36 35 40 26 37 43 46 51 45 38 31 40 26 26 34 44 27 37 33 40 37 42 38 33 43 38 31 35 34 36 25 14 25 31 33 45 37 37 30 43 34 28 38 41 25 48 31 33 42 39 43 47 39 27 41 39 28 28 23 21 30 18 20 17 17 17 21 20 22 16 30 23 23 27 20 21 15 23 20 31 18 18 18 30 22 11 22 21 18 18 +18 10 14 19 15 25 19 12 20 21 22 30 25 21 19 30 23 28 22 24 25 25 29 17 24 24 23 24 23 21 23 23 25 19 25 30 40 44 44 33 38 48 41 35 32 45 30 39 42 38 41 42 40 35 39 30 44 23 33 29 33 47 38 48 47 39 41 44 31 42 33 42 32 33 28 25 33 30 21 32 33 46 47 51 31 38 30 35 30 40 31 45 23 29 29 47 29 21 30 17 26 37 39 42 43 55 40 30 37 50 32 32 32 48 54 53 40 25 29 34 35 25 19 26 21 13 4 2 4 4 4 4 21 41 48 55 50 46 54 41 57 52 64 65 79 113 104 86 103 120 99 111 85 122 81 89 89 79 51 62 43 57 56 63 58 52 34 9 6 7 4 3 4 4 12 28 40 30 27 19 20 35 29 38 44 35 55 41 33 49 19 30 41 46 43 43 37 32 32 18 15 20 28 37 39 34 36 34 46 29 33 41 30 30 32 37 47 48 35 31 31 22 31 21 31 31 37 36 32 31 40 54 44 38 36 44 44 41 47 43 33 34 30 32 41 32 39 44 41 48 34 42 40 43 28 32 32 37 41 43 32 48 44 34 34 34 31 16 23 21 23 26 24 26 19 21 19 26 31 14 19 19 27 22 28 26 23 22 12 23 12 23 20 10 19 18 19 18 16 14 +16 12 20 8 21 19 13 25 20 20 22 23 32 19 24 29 28 15 17 15 26 27 17 18 28 15 26 23 27 32 12 18 28 27 42 40 45 38 38 41 48 40 35 39 31 33 38 37 43 44 43 41 47 52 33 48 25 32 45 35 24 42 52 37 36 37 33 48 43 40 28 23 34 34 32 32 24 22 23 32 43 41 43 32 39 34 32 34 31 35 33 36 29 43 42 33 25 24 18 22 24 34 42 46 48 43 43 33 43 30 34 40 46 36 37 46 23 28 42 36 29 39 26 18 20 6 3 4 1 4 9 9 23 44 52 56 60 52 45 57 57 73 75 83 99 106 90 100 120 98 88 108 94 93 104 108 89 71 77 58 61 64 71 52 46 65 43 34 12 7 5 3 2 3 5 18 29 36 24 21 30 34 26 36 42 50 54 36 25 32 42 47 51 23 39 47 43 24 39 24 19 22 29 26 33 37 36 35 32 36 32 24 36 26 32 31 44 44 45 29 37 32 17 30 34 33 35 42 30 38 37 39 40 34 57 46 32 39 34 33 42 30 35 40 37 40 46 53 50 37 48 33 40 33 26 42 26 33 49 40 45 47 39 36 37 45 34 19 20 23 32 20 20 21 19 28 25 20 18 13 22 15 30 25 20 29 27 25 16 20 20 22 26 14 12 25 18 18 21 13 +17 17 21 11 24 19 19 17 10 22 21 21 21 22 18 26 22 22 23 24 20 26 22 21 19 26 30 22 25 29 25 20 29 19 27 31 32 32 37 42 52 43 36 24 41 45 49 40 40 34 40 41 49 31 46 53 40 39 32 26 31 35 35 38 45 41 42 39 37 38 40 44 28 40 37 42 22 22 30 37 48 35 56 50 30 29 44 45 28 39 39 36 33 36 32 31 41 24 23 17 23 32 38 43 50 35 41 41 57 30 33 40 39 46 42 31 32 32 26 24 20 26 29 19 13 3 3 3 2 4 6 15 37 63 61 57 58 53 61 75 69 98 100 100 100 100 99 111 112 95 86 104 82 101 102 111 110 98 87 78 88 65 61 64 62 70 47 44 31 7 5 7 3 2 5 16 17 22 28 34 34 25 31 31 47 45 41 37 44 40 37 39 30 37 41 46 41 32 30 23 19 17 28 29 29 31 41 43 38 41 38 33 36 30 29 40 42 58 34 40 45 15 22 27 45 23 38 34 28 42 41 41 35 40 38 44 51 26 38 38 41 26 26 24 31 36 45 36 31 47 37 40 35 43 35 36 44 32 43 38 37 35 35 39 29 29 29 18 21 26 11 23 35 23 25 16 20 28 19 15 29 31 25 21 22 26 17 20 23 19 21 22 19 25 20 21 14 22 27 20 +21 22 14 13 22 23 16 22 25 20 18 21 13 35 27 17 18 27 26 28 25 20 17 15 26 21 21 31 14 33 19 29 23 27 31 31 43 28 46 39 33 33 46 40 46 29 47 35 35 42 42 38 44 46 40 45 35 39 34 40 27 36 47 46 41 44 34 41 29 41 37 29 34 32 24 33 24 28 27 38 38 46 57 40 25 46 41 48 40 30 37 37 43 46 39 39 33 21 12 17 35 34 38 49 49 35 33 36 38 35 38 44 41 49 39 41 30 23 27 31 22 29 25 27 9 5 4 2 4 9 15 26 36 51 51 41 58 70 75 90 99 119 105 97 113 88 86 100 92 69 98 86 101 87 78 101 112 102 105 89 98 58 66 49 60 52 60 47 34 17 4 4 2 5 4 8 21 13 25 35 25 30 28 32 26 52 43 46 43 30 49 37 42 46 42 42 43 35 43 29 15 22 22 34 39 34 39 40 48 36 29 29 35 32 39 39 50 49 38 35 32 27 41 32 16 32 31 23 28 42 37 39 41 36 41 47 55 47 34 32 32 27 23 22 41 41 44 43 37 50 38 51 40 41 45 35 41 54 44 39 36 44 38 43 25 29 27 29 16 19 27 20 28 22 32 21 19 18 20 31 19 23 26 25 24 26 23 14 18 20 17 18 11 15 23 16 19 17 21 15 +24 19 17 22 17 26 21 21 12 19 24 13 16 16 25 32 27 20 26 21 32 26 22 28 20 26 19 18 28 24 24 18 17 25 28 43 46 30 33 40 40 48 36 52 39 46 39 40 44 36 47 34 41 52 50 45 37 30 26 31 36 37 42 31 35 54 49 43 36 36 37 32 27 24 35 25 28 23 32 31 33 52 47 45 31 37 29 33 37 42 37 45 35 36 41 37 28 30 17 18 45 31 36 54 43 48 42 38 33 34 38 45 54 45 56 56 30 28 27 31 31 25 22 13 6 2 2 2 4 14 35 36 61 63 55 47 69 69 103 118 94 97 95 97 101 69 74 88 76 76 54 71 70 73 69 83 94 99 93 100 114 85 64 63 56 62 53 61 37 38 11 2 3 2 7 7 15 31 32 27 26 30 27 25 30 45 33 35 42 43 48 32 47 33 42 37 53 34 34 24 14 17 25 27 42 42 40 44 34 40 33 25 31 25 30 32 40 61 40 37 44 28 27 27 30 39 39 36 42 28 47 42 41 44 47 43 36 56 47 37 23 26 31 29 36 50 47 50 44 47 47 35 41 34 41 37 35 48 32 44 37 37 46 51 35 28 27 21 21 29 31 26 31 24 29 23 19 19 28 26 33 20 23 26 16 27 25 23 16 20 18 18 17 19 19 16 15 18 15 16 +19 17 17 16 20 26 16 21 15 8 15 20 23 17 26 29 20 15 17 25 24 29 22 29 19 20 30 24 21 22 29 23 21 24 28 26 38 42 37 51 32 42 44 38 45 29 37 51 32 50 43 30 55 48 53 34 36 32 24 37 27 35 54 40 48 37 41 49 31 37 39 35 35 37 32 29 25 17 35 32 35 50 50 51 38 29 34 33 40 30 31 39 39 60 35 35 24 27 18 20 39 44 54 37 36 31 31 45 31 37 27 44 40 48 46 27 33 29 33 24 26 30 20 7 4 2 5 1 6 18 40 54 58 63 46 44 72 99 94 98 98 94 92 75 71 84 82 75 64 71 66 61 78 79 63 84 77 91 93 118 117 113 97 77 47 58 65 61 56 34 15 5 7 6 6 2 17 32 30 30 27 24 30 33 39 43 41 48 38 36 34 44 39 35 36 49 41 31 39 39 18 11 17 26 36 36 34 34 50 29 31 40 30 36 34 37 51 58 37 41 35 26 25 28 25 35 39 32 30 38 43 36 45 49 51 41 43 35 36 38 23 37 31 39 33 37 38 36 38 48 41 36 48 40 47 42 40 36 46 41 38 37 43 33 22 26 21 20 16 29 16 21 24 18 22 23 24 30 34 21 25 21 18 20 21 26 20 20 23 26 18 21 20 20 13 21 20 24 21 15 +11 12 23 23 16 17 16 20 21 13 24 21 16 18 12 17 21 29 21 15 26 29 24 21 27 27 21 28 15 21 18 19 24 19 31 29 28 29 37 30 42 43 41 46 38 53 34 43 36 42 50 36 49 38 37 40 40 31 26 20 49 28 48 38 46 34 41 30 36 48 46 29 42 28 33 34 22 25 34 39 34 43 45 45 42 35 26 39 43 32 52 35 35 29 39 33 30 23 15 26 37 28 47 46 43 59 44 44 40 33 55 38 52 40 38 40 32 25 30 35 28 25 10 6 5 2 3 4 11 33 46 63 61 43 59 76 88 128 109 100 92 98 78 75 70 79 75 66 63 65 59 70 71 68 79 72 78 97 83 102 73 105 113 86 76 41 44 54 40 59 26 11 5 2 4 7 6 17 21 29 28 26 32 22 35 32 36 49 51 50 43 39 50 42 48 38 59 24 45 24 16 21 16 26 41 33 37 39 36 40 51 32 26 36 33 25 42 53 41 33 43 28 23 18 25 33 32 26 28 44 40 39 49 44 44 40 46 29 42 21 29 23 36 42 38 27 46 33 55 57 51 50 43 45 37 51 40 50 41 49 42 34 25 35 41 26 23 21 32 21 25 25 25 28 26 27 22 30 23 19 21 21 30 19 24 15 16 14 17 23 15 12 15 26 13 15 18 27 26 22 +20 24 25 10 24 13 28 18 19 21 12 22 24 17 18 40 34 23 19 30 23 30 25 21 29 15 24 25 23 19 22 27 26 19 28 41 41 26 37 39 25 44 40 40 39 36 38 48 40 48 39 47 54 45 44 43 27 35 34 37 30 29 54 52 48 50 50 49 33 38 43 31 50 32 28 25 26 21 28 36 39 43 58 43 34 34 37 27 34 37 41 30 39 43 40 44 35 30 13 16 45 35 46 43 49 26 39 31 46 31 39 41 54 40 29 29 21 30 20 28 27 35 12 9 2 3 5 14 18 58 41 51 66 40 62 72 96 112 105 98 77 83 88 82 54 61 67 44 75 41 62 63 59 69 66 68 82 60 72 97 93 99 109 110 84 76 55 58 52 62 42 22 10 4 3 2 4 12 23 26 23 30 27 22 28 29 44 43 39 34 35 49 47 35 39 52 33 50 28 31 20 20 20 39 28 44 41 43 44 39 42 25 29 49 38 33 49 53 44 40 47 29 25 37 28 39 24 43 33 45 35 45 38 40 31 49 40 53 33 38 38 29 34 29 45 37 37 46 51 49 51 46 34 37 47 31 47 43 41 50 38 41 41 42 33 20 25 25 29 28 19 22 25 25 27 18 27 31 24 16 25 21 12 22 23 16 19 13 19 17 22 11 10 25 19 16 14 16 20 20 +29 18 27 14 14 17 23 13 24 11 22 23 19 27 19 23 20 26 25 15 14 31 15 24 20 21 21 27 19 20 26 21 15 16 27 27 41 32 41 49 44 45 32 33 40 47 57 45 40 45 58 41 42 41 38 50 45 40 33 32 30 28 34 59 43 48 45 45 29 46 25 23 42 34 41 35 25 27 29 45 28 48 45 40 37 46 31 26 40 38 38 43 35 33 38 28 25 22 16 22 28 31 39 52 46 35 44 29 44 36 33 31 59 47 37 32 38 29 31 38 23 19 8 4 4 1 2 8 40 38 56 42 47 69 64 97 116 110 81 73 79 69 69 79 69 44 62 42 47 42 31 59 55 40 66 64 67 84 67 75 71 91 111 124 95 72 64 53 68 52 58 34 11 5 5 6 3 9 22 29 32 30 34 28 25 27 44 43 35 47 41 43 35 45 40 38 48 50 43 31 29 19 30 22 45 51 38 33 49 33 32 37 32 30 39 38 46 40 55 31 32 26 30 23 24 23 40 33 29 42 37 31 44 46 39 51 45 53 38 28 27 27 30 50 45 35 46 43 53 34 42 43 30 33 38 41 36 47 37 39 37 39 40 40 38 18 26 25 28 30 27 24 14 25 16 29 20 26 25 29 33 19 20 16 17 23 19 20 13 16 18 13 23 17 15 20 21 19 12 31 +19 13 14 13 19 18 29 16 14 25 12 17 15 15 25 18 18 26 28 28 25 20 19 22 23 26 21 23 32 31 15 28 24 26 19 31 30 44 42 34 35 33 50 45 40 50 53 41 52 57 35 43 37 47 27 32 28 34 26 32 35 33 47 45 45 37 46 49 47 32 43 36 38 33 40 34 29 38 31 42 49 49 38 38 38 34 29 42 48 37 41 40 46 39 37 33 22 16 13 23 35 37 63 49 44 49 42 40 37 42 36 45 44 37 26 29 32 28 30 29 23 13 3 5 5 5 5 23 40 64 54 60 63 65 96 108 100 90 62 66 63 72 73 48 44 44 38 32 40 29 28 32 33 42 51 45 50 67 73 72 76 73 109 113 123 101 79 52 45 59 60 40 20 11 4 5 2 5 23 27 21 33 26 25 31 41 34 54 41 27 41 41 44 35 35 51 29 48 33 44 25 22 15 28 34 23 35 31 46 43 38 38 26 37 35 28 48 54 38 26 44 29 21 28 25 30 34 37 22 39 40 49 39 41 47 35 48 50 40 39 39 38 42 47 47 39 39 36 46 36 39 38 41 34 27 31 51 38 46 41 40 34 37 40 42 25 15 24 25 31 27 23 20 20 15 21 17 20 22 25 26 31 23 18 20 18 23 23 28 16 14 15 15 13 15 22 19 12 16 19 +25 18 17 20 19 16 21 15 24 16 18 16 11 18 18 13 19 23 23 17 24 19 29 14 21 20 25 29 18 21 25 27 23 27 34 17 33 40 38 39 36 41 36 36 46 39 46 51 44 44 61 46 49 50 32 38 28 37 37 31 25 42 41 51 46 36 49 35 43 41 42 33 35 30 39 29 28 31 29 36 33 52 47 38 33 36 30 33 30 34 48 40 47 36 37 30 28 16 15 29 34 34 47 51 38 40 50 32 39 52 41 61 59 42 39 32 39 28 23 28 19 21 7 3 1 6 13 35 73 59 59 66 71 64 103 101 108 83 84 77 86 61 53 46 36 24 17 23 15 7 10 14 15 27 39 37 37 65 73 61 66 82 98 95 97 107 90 57 51 52 56 39 30 10 4 5 8 3 10 24 22 34 32 16 24 33 37 48 34 47 45 44 50 27 46 37 37 58 36 34 26 12 19 34 28 31 46 45 39 43 42 39 52 36 37 29 45 53 48 38 38 31 34 37 30 29 29 23 40 53 36 46 44 48 41 43 39 40 36 24 39 24 40 36 44 42 42 36 35 39 38 35 43 44 36 51 49 49 46 59 47 34 41 29 28 28 16 23 31 28 28 20 21 20 28 18 21 25 28 28 21 23 17 12 12 12 15 16 22 24 27 18 19 18 18 14 21 16 18 20 +17 17 19 11 20 20 19 25 14 14 20 19 19 21 20 20 29 17 21 27 28 31 19 37 21 24 18 28 15 24 23 24 24 22 21 27 25 32 39 43 35 33 45 32 46 43 47 33 38 36 32 37 48 36 34 39 37 32 24 26 32 29 48 42 51 48 40 37 47 47 37 34 45 33 41 31 30 29 33 27 44 35 37 38 36 35 31 29 39 31 42 36 42 34 36 29 25 19 19 26 39 50 51 44 41 38 27 39 31 50 36 45 50 31 22 28 31 39 31 28 23 5 6 2 4 9 16 36 53 67 54 61 68 98 116 98 101 67 69 64 56 44 40 14 25 12 13 4 6 11 9 4 6 15 16 15 26 38 52 59 56 76 68 92 116 115 94 65 52 54 68 60 41 15 12 2 8 8 7 23 33 35 24 41 37 33 39 47 48 43 34 46 41 43 38 44 49 52 43 40 32 23 27 23 28 40 51 33 41 54 29 33 42 34 37 46 42 47 46 34 35 34 31 36 37 24 32 32 25 34 37 40 48 46 43 46 47 52 35 27 29 25 37 44 47 34 45 53 46 36 42 44 47 29 46 41 39 42 45 43 34 43 40 38 31 23 21 22 27 30 25 23 22 32 22 27 28 25 24 27 30 24 22 15 15 17 21 30 15 14 18 12 25 17 20 14 23 15 18 18 +20 24 12 23 24 27 29 15 20 18 25 24 25 20 17 20 15 19 25 24 25 24 25 27 25 19 26 28 30 37 12 17 25 21 21 27 34 28 33 31 44 47 43 48 44 41 39 37 37 42 49 35 49 50 31 39 32 31 34 33 37 33 35 47 36 40 48 45 46 46 30 43 36 39 40 33 31 27 17 44 37 47 48 43 39 32 28 32 31 39 44 39 30 55 28 22 20 22 19 32 23 45 50 39 42 44 44 36 43 36 37 48 47 31 23 31 30 32 28 24 10 5 8 0 4 5 30 51 62 59 53 81 81 121 95 81 71 84 68 56 45 40 26 15 17 7 5 4 3 3 6 8 3 4 6 9 24 25 23 40 62 73 83 92 82 100 122 97 74 48 59 63 53 36 3 4 5 7 4 19 29 36 21 21 26 38 30 63 48 42 36 49 27 37 32 40 49 58 42 32 34 26 20 24 38 33 39 35 39 28 40 35 47 30 29 32 31 49 45 43 39 41 35 30 38 35 31 37 40 37 43 45 49 40 36 51 58 51 31 19 24 28 47 32 52 36 47 33 48 46 33 42 49 42 47 24 44 32 45 44 33 36 45 37 33 21 21 28 21 25 25 26 22 16 15 19 23 25 25 19 24 14 21 23 16 12 27 8 22 21 23 15 29 25 14 12 21 22 12 21 +32 15 19 21 19 25 17 23 19 16 18 17 19 20 28 17 19 14 15 26 23 16 25 15 18 26 27 29 24 15 20 30 26 24 21 27 29 33 38 42 48 37 49 29 57 58 48 48 37 37 57 40 51 50 37 34 41 33 28 31 30 44 32 40 50 59 43 44 41 46 36 30 26 36 26 31 24 36 35 47 49 39 59 45 28 43 33 35 44 34 40 35 36 31 37 38 27 18 21 28 24 40 59 61 41 39 28 39 36 31 36 56 46 33 20 28 23 30 28 33 17 6 4 1 4 16 43 43 63 62 57 82 98 109 112 76 68 83 66 55 39 27 6 8 7 5 5 3 4 6 2 3 3 2 5 4 5 10 20 32 58 71 79 65 70 122 111 108 96 56 60 64 49 38 13 4 3 5 8 17 30 16 25 32 27 18 42 52 56 49 43 41 34 55 43 46 43 38 42 37 32 18 16 19 22 53 54 40 46 45 35 35 35 32 26 32 51 47 52 38 40 27 21 29 36 39 23 35 40 37 32 46 37 42 42 32 50 42 35 33 31 27 33 28 30 47 49 37 53 56 51 34 37 43 39 29 48 44 48 39 39 36 32 25 15 20 22 28 25 30 32 32 19 18 26 24 22 23 23 24 23 16 24 22 22 12 13 16 10 18 20 26 18 12 23 24 20 24 24 16 +19 27 12 9 16 18 12 15 22 17 24 16 25 17 17 16 25 26 17 22 32 19 24 24 27 22 33 24 24 21 27 30 32 21 21 28 25 43 39 36 34 47 35 39 49 44 44 54 40 37 51 62 46 46 35 46 39 35 39 32 31 34 51 55 54 50 40 50 46 42 37 38 31 35 37 26 40 25 29 29 40 49 49 36 28 32 42 27 33 46 40 42 48 23 41 34 25 17 25 29 31 39 42 41 58 45 40 44 33 52 47 46 44 31 23 32 32 30 41 22 13 2 6 2 3 19 52 46 57 55 79 71 111 93 78 72 68 70 55 33 21 15 6 4 2 7 2 3 1 6 2 5 3 3 2 4 3 4 5 18 43 56 67 73 77 65 130 110 90 63 63 63 54 47 19 6 2 2 7 9 24 32 22 22 31 20 32 44 39 37 44 39 43 36 33 40 42 53 42 43 41 22 12 27 29 36 39 46 41 45 49 35 28 22 40 32 55 35 49 27 38 27 23 23 32 34 20 38 47 34 44 43 40 49 52 28 37 30 33 30 32 38 42 43 37 43 38 48 44 41 43 37 39 44 41 45 39 49 49 62 38 41 40 24 29 14 18 18 27 28 30 29 19 27 26 40 26 28 24 40 23 19 22 18 16 24 21 16 14 19 17 16 12 17 18 12 16 21 21 18 +23 23 21 20 19 22 18 19 20 18 11 13 17 15 14 20 15 18 22 23 17 23 26 24 26 29 18 20 25 19 20 32 25 21 18 23 21 29 30 44 41 42 47 40 39 42 47 48 53 42 43 42 43 45 33 41 32 33 39 24 28 32 35 47 39 47 51 23 46 31 44 43 43 32 31 29 33 29 27 42 34 65 53 39 37 49 25 39 36 26 46 34 39 36 42 20 18 21 34 36 37 53 43 36 37 50 37 57 45 45 31 48 36 42 24 32 31 25 21 27 8 3 3 7 11 26 60 56 52 67 85 104 105 95 68 81 76 51 33 21 7 5 4 3 7 4 2 7 1 6 6 6 4 9 3 3 6 4 8 9 26 35 58 70 94 78 88 112 100 77 61 61 72 72 32 7 4 2 4 6 22 32 40 32 37 34 31 40 55 54 48 32 30 37 31 42 51 52 38 42 29 24 20 26 24 39 24 32 41 48 36 31 36 23 39 50 41 54 45 45 34 30 33 32 34 39 37 34 34 49 39 42 30 73 47 43 49 49 34 26 39 27 28 39 45 39 49 46 38 45 49 30 41 40 34 42 43 55 52 39 45 33 35 25 26 27 28 18 25 22 33 23 27 22 25 26 32 28 26 24 24 14 26 19 21 24 19 17 21 15 22 20 21 8 25 21 19 23 19 21 +22 16 10 23 16 17 17 14 17 19 14 19 22 16 18 19 14 20 17 21 27 9 27 17 30 23 30 24 23 18 23 24 29 21 19 21 21 29 32 31 45 41 63 47 48 38 36 59 38 34 39 46 52 45 50 39 49 33 34 34 42 26 37 39 50 53 57 36 41 43 46 31 33 38 42 34 23 35 28 41 45 39 55 28 32 32 45 27 32 36 44 40 33 40 29 24 21 18 23 19 21 52 50 41 44 43 40 37 54 47 54 57 44 36 32 33 32 33 27 14 5 4 2 7 10 35 52 60 50 67 104 124 90 83 61 81 56 44 32 10 2 8 0 3 3 3 6 4 3 1 2 4 5 3 7 4 2 1 1 4 3 26 47 73 74 68 77 93 112 78 59 54 52 66 41 18 1 4 1 5 18 30 23 21 33 28 34 34 51 52 48 28 48 40 44 33 37 38 47 38 41 27 14 23 28 34 31 45 30 37 35 30 28 43 34 37 54 40 49 36 49 37 31 29 29 27 39 31 34 57 52 39 36 46 47 29 54 50 32 28 37 29 35 54 33 38 35 43 58 53 37 34 33 48 40 42 42 50 45 48 36 30 25 24 24 38 24 23 24 14 20 24 31 27 27 28 28 20 34 23 22 22 27 18 16 24 19 14 21 12 12 22 23 22 20 11 35 22 14 33 +16 21 23 24 20 21 20 12 23 24 19 22 28 21 17 16 23 17 14 11 17 34 24 32 25 22 24 27 29 24 19 18 31 18 22 25 16 32 47 29 44 40 38 41 49 44 45 54 35 47 42 45 46 43 34 38 38 25 32 41 39 41 53 42 35 48 53 55 44 35 31 37 42 37 33 40 29 30 34 38 43 47 57 40 34 34 34 37 25 36 36 30 31 42 46 24 26 26 37 40 38 54 51 39 40 49 44 35 34 44 47 43 31 34 36 28 30 34 32 10 4 2 7 1 18 52 56 59 42 61 99 123 89 78 71 71 54 27 15 10 4 2 2 8 3 7 6 5 2 0 3 0 2 4 6 3 2 3 4 2 3 15 42 42 77 82 79 109 109 90 73 66 49 65 43 28 6 1 3 1 11 28 27 35 39 34 33 43 39 47 38 43 46 36 38 43 45 40 57 44 41 23 16 22 24 31 51 30 39 33 41 38 44 32 37 45 46 53 50 36 35 27 35 28 38 40 39 31 35 32 45 50 47 49 41 45 62 46 24 24 36 38 29 48 35 39 41 37 41 45 40 33 42 38 42 46 40 45 41 30 35 39 34 31 32 15 26 26 24 26 23 23 29 30 23 29 33 26 22 17 20 15 18 19 13 19 16 26 17 21 20 22 22 17 28 19 23 19 24 18 +22 25 23 14 20 15 23 17 14 22 16 18 26 18 26 23 18 16 26 14 29 18 20 34 15 29 21 21 20 27 28 27 18 25 27 23 20 46 39 32 51 53 39 58 43 48 50 45 42 50 46 50 33 52 37 36 49 40 25 31 20 44 40 32 41 37 47 52 49 45 28 34 37 35 40 47 42 32 35 36 42 45 61 42 43 26 30 31 49 46 44 39 40 35 33 39 30 15 33 40 50 58 52 50 43 38 54 34 54 33 65 50 35 36 33 44 33 36 33 7 4 1 3 7 20 47 65 77 63 77 115 118 85 89 68 66 40 20 6 4 3 3 1 1 3 6 2 9 3 3 4 4 4 1 6 4 2 3 4 4 1 4 22 36 65 66 78 84 114 108 92 66 66 65 57 26 5 8 10 5 12 27 26 34 31 33 39 34 59 51 50 44 42 43 45 33 41 53 47 37 32 29 23 20 31 34 28 37 35 49 46 34 32 42 34 39 56 44 47 38 34 36 33 36 31 33 35 43 25 48 36 42 56 37 50 53 48 52 28 44 39 28 40 44 52 38 45 43 36 49 45 38 47 37 47 34 41 55 39 55 38 24 36 24 20 18 27 24 21 25 33 27 24 29 35 23 24 23 15 14 18 16 16 15 23 19 18 17 27 14 20 19 18 17 20 18 14 18 22 17 +17 13 18 17 20 23 14 21 17 21 25 22 19 16 19 21 11 15 24 18 21 29 35 23 24 25 26 26 20 28 23 29 15 20 33 17 20 22 37 27 28 49 49 44 41 43 33 35 37 41 38 38 46 51 46 48 55 39 36 39 36 37 44 54 49 58 41 60 35 46 49 36 43 40 43 35 30 26 35 45 37 55 67 39 40 22 30 33 31 38 44 41 42 42 28 32 13 11 24 41 35 54 48 45 43 35 42 48 38 45 58 38 33 35 38 29 30 23 18 2 7 3 4 11 37 46 54 46 63 88 135 118 77 67 69 57 27 13 3 1 11 1 7 3 5 7 5 3 2 5 5 1 4 3 1 4 5 5 3 6 0 5 10 17 50 62 78 84 97 105 102 66 57 54 48 30 8 5 3 3 8 19 28 30 24 21 25 29 41 52 55 49 35 44 42 40 48 42 52 38 25 22 19 23 27 36 38 26 44 40 42 47 26 34 39 33 49 48 49 45 32 41 38 38 34 22 47 47 46 49 42 56 52 39 64 37 50 49 38 27 33 39 35 38 51 65 35 56 46 44 45 36 46 45 47 33 41 39 51 40 41 40 35 26 28 23 21 31 24 20 26 29 21 33 23 20 27 27 19 23 17 16 17 13 21 21 16 15 21 35 17 19 22 22 13 24 21 17 11 24 +22 17 13 21 15 19 14 20 14 15 21 25 20 15 17 20 21 16 20 19 14 20 20 17 23 28 19 31 29 29 27 23 28 30 22 24 17 27 25 27 37 44 53 38 53 52 59 27 40 54 47 49 42 41 34 42 50 38 35 24 26 42 47 50 48 61 36 49 38 45 37 40 35 46 40 32 32 33 26 45 29 58 48 37 41 47 30 46 44 53 49 34 30 45 32 34 20 24 30 31 33 44 61 43 53 44 33 31 42 44 48 43 46 28 31 36 25 27 19 2 5 5 6 11 39 55 65 46 72 106 105 88 86 85 57 47 14 6 1 1 3 2 3 6 4 5 7 3 8 6 5 4 5 5 5 1 2 0 5 8 4 4 5 17 29 62 86 92 90 126 123 83 60 68 63 47 14 4 1 4 7 9 28 23 37 37 32 32 39 51 47 33 35 50 49 46 44 46 42 35 50 39 22 27 29 44 37 44 42 42 45 28 37 39 41 54 31 46 47 50 55 33 29 32 29 32 32 42 46 42 51 53 50 55 45 59 46 50 40 37 26 33 32 35 37 47 37 45 60 41 50 46 33 48 35 39 39 45 55 41 35 29 29 20 21 19 24 18 22 29 21 22 24 32 22 20 20 32 21 19 19 11 22 26 17 15 25 15 28 19 21 29 12 28 21 18 16 12 20 24 +20 23 12 16 18 14 14 17 20 21 25 15 19 22 20 21 23 16 19 15 25 28 22 24 24 32 29 26 18 24 23 25 27 31 15 25 26 27 33 25 43 49 33 41 59 46 44 50 42 44 55 49 43 47 53 48 39 39 34 34 37 28 50 44 45 40 55 45 50 41 48 35 39 44 36 30 34 30 38 34 41 51 54 48 44 32 50 37 40 37 47 26 37 37 37 22 12 15 28 43 54 44 43 64 53 46 51 35 43 37 43 46 40 41 33 25 47 22 22 2 2 4 3 27 54 62 66 74 103 119 95 87 60 67 54 15 8 6 5 7 3 10 3 7 1 5 4 5 5 4 5 4 4 4 4 3 1 4 4 6 5 5 5 7 19 53 72 88 91 105 119 75 49 58 63 38 15 3 5 4 6 17 26 27 32 29 27 40 50 46 53 35 39 50 48 56 46 44 54 38 37 37 20 22 24 41 39 46 40 38 22 39 27 25 36 24 35 61 38 44 39 29 29 30 31 33 36 29 40 47 46 53 48 47 52 57 43 63 26 29 29 34 34 37 43 46 40 42 48 42 41 44 43 41 45 48 59 36 45 46 26 35 33 21 21 19 27 22 27 25 24 27 27 27 23 21 23 22 21 27 12 17 14 14 19 22 15 18 15 27 24 18 23 30 15 14 28 15 24 17 +16 18 24 22 15 22 26 22 25 21 18 20 19 25 18 16 27 15 21 17 21 20 20 28 36 35 21 29 28 23 27 28 33 25 20 18 25 23 27 36 34 34 43 47 55 42 42 47 44 35 38 45 53 53 52 51 46 38 32 28 38 40 44 44 36 41 49 42 63 38 36 30 31 28 33 43 33 23 29 45 50 44 61 51 36 32 41 28 51 54 46 42 38 35 32 22 19 13 34 33 47 45 50 44 34 46 46 35 43 61 53 45 33 35 29 29 17 33 12 2 1 1 0 26 49 57 60 69 85 137 88 86 72 64 46 15 1 0 2 0 8 1 5 10 2 3 2 5 3 3 4 4 7 2 4 3 2 1 3 3 7 3 4 2 14 33 65 77 72 88 99 112 59 58 48 56 33 13 5 7 4 10 31 26 33 29 24 25 32 46 48 42 39 49 41 42 40 46 41 45 30 34 27 15 24 43 59 33 32 44 61 36 38 31 31 39 32 48 48 45 38 44 27 26 31 37 34 41 31 44 46 47 42 47 51 58 46 47 38 30 28 33 57 48 51 36 38 44 31 35 45 38 41 46 42 46 42 45 47 39 48 35 34 23 31 28 24 27 31 28 32 27 18 28 35 23 29 22 16 19 22 19 24 25 16 19 14 15 20 22 19 14 18 24 14 20 15 20 26 17 +19 14 16 24 25 22 20 17 41 25 21 22 17 27 21 15 12 16 19 12 16 16 16 21 26 21 19 25 22 20 22 21 25 18 21 16 23 10 31 39 26 49 44 30 48 41 35 46 53 43 38 57 51 48 54 49 35 41 25 29 43 38 38 49 51 53 48 37 50 49 37 38 37 36 36 41 24 21 35 32 39 66 53 43 35 28 29 49 36 40 41 35 36 44 29 37 20 13 43 40 49 50 38 34 44 48 32 41 32 46 43 39 34 27 33 35 29 26 8 1 4 4 12 49 67 72 53 83 94 126 96 88 81 51 29 2 5 4 7 1 6 4 5 3 8 1 3 4 2 3 5 3 3 3 6 3 2 8 10 9 4 6 4 2 8 23 40 61 87 72 120 103 68 67 52 60 33 9 7 5 8 7 21 21 28 32 22 30 40 47 55 48 41 38 43 47 55 46 45 49 38 45 21 16 26 24 38 34 35 40 41 50 47 32 42 30 41 59 37 44 48 26 24 26 35 31 36 29 35 32 42 55 45 49 62 48 57 47 34 29 42 44 38 40 40 26 38 46 36 51 28 48 40 47 45 47 35 42 47 40 39 43 23 18 30 21 25 28 21 33 33 20 25 20 18 31 20 15 15 20 17 17 19 17 15 28 15 21 18 16 20 10 23 24 17 23 18 15 18 22 +21 20 27 15 22 13 23 11 15 19 16 22 24 14 25 17 17 21 23 24 15 21 27 42 27 26 19 29 29 27 22 32 23 12 33 25 24 23 31 37 32 46 34 51 38 36 42 40 29 42 39 48 47 52 42 53 53 39 29 37 25 36 38 47 58 52 32 46 43 45 37 31 40 41 36 36 36 23 28 34 42 61 51 41 35 40 39 33 54 31 44 33 38 44 31 30 21 20 33 40 54 48 50 52 38 34 34 42 45 57 60 40 33 25 29 31 21 28 5 4 4 2 10 38 67 55 61 87 138 85 76 75 62 43 12 5 4 2 6 7 4 4 2 2 1 2 5 1 1 4 4 7 3 5 8 2 3 2 1 2 4 4 4 3 5 13 43 61 74 78 105 102 93 64 66 74 58 19 3 5 4 4 22 45 27 31 30 32 45 43 44 40 43 47 43 47 42 44 58 41 33 31 19 30 35 39 41 47 39 44 43 47 44 24 39 42 35 45 51 41 41 31 33 24 35 33 43 25 41 39 34 45 44 52 35 48 51 47 47 42 41 43 37 44 45 48 47 39 58 37 35 41 35 42 35 46 40 50 34 46 43 30 24 28 35 27 23 24 22 29 20 20 23 29 19 20 22 28 16 12 13 13 18 20 14 19 15 19 23 10 25 15 20 17 17 15 24 17 22 19 +15 16 20 22 11 23 23 19 17 15 20 22 25 13 26 32 22 15 18 29 18 25 22 27 27 33 27 28 22 23 25 19 34 23 27 25 24 30 35 24 46 45 43 56 45 46 55 56 25 33 39 45 55 46 59 39 37 52 32 29 30 26 51 47 54 40 37 54 41 39 38 38 29 36 40 27 23 35 42 32 40 58 43 47 46 40 30 40 36 49 49 36 43 27 37 21 17 18 29 46 40 49 52 46 34 37 32 38 37 61 47 41 35 34 30 21 25 18 5 3 6 5 15 49 70 69 64 101 129 88 73 65 63 30 14 4 5 4 7 4 1 2 5 4 4 6 4 5 2 5 4 3 3 6 4 3 3 3 1 7 0 8 5 3 3 5 43 57 73 80 99 106 99 68 56 58 53 21 6 4 4 5 11 27 27 26 36 32 38 51 46 31 45 31 44 41 48 43 54 58 34 28 21 23 22 30 37 46 51 51 45 44 36 32 34 35 39 50 64 31 35 26 34 28 30 49 33 35 40 35 37 43 50 47 41 49 51 41 34 46 36 30 37 28 48 40 40 42 41 56 47 32 54 46 40 36 34 47 50 48 37 30 22 31 21 24 29 26 21 24 23 16 28 24 34 23 33 23 19 24 14 16 18 23 13 34 20 19 28 21 18 12 24 15 17 16 24 14 25 22 +16 23 17 15 21 22 23 17 15 25 28 20 19 25 23 16 23 15 19 15 26 17 18 29 32 26 21 25 34 27 19 26 18 33 28 28 25 30 19 35 42 47 50 46 42 47 42 39 38 34 63 30 51 70 42 40 55 46 31 34 36 44 50 39 47 56 56 38 42 53 46 47 33 34 32 27 24 32 37 42 35 43 50 49 37 34 41 31 35 39 44 40 46 47 30 29 18 21 42 35 36 56 48 47 39 45 45 29 40 46 38 34 33 27 37 21 36 18 6 4 2 4 30 59 68 53 58 92 105 103 82 72 45 25 5 5 4 4 2 4 7 4 4 4 6 3 4 3 7 3 2 7 6 3 5 2 3 7 5 7 4 7 4 0 4 2 25 65 65 73 101 130 101 65 67 64 61 22 4 4 1 4 17 26 33 26 29 35 35 57 45 44 42 44 40 44 47 38 60 54 41 23 22 18 28 32 32 44 40 44 48 34 45 28 24 32 37 48 58 38 43 47 31 31 39 40 52 22 39 38 50 43 41 40 50 54 48 39 23 32 37 35 37 42 45 36 53 56 37 51 46 48 48 30 38 43 49 46 48 34 31 29 19 31 17 30 25 20 33 26 19 28 16 27 20 29 25 18 18 13 13 17 15 13 20 25 20 21 19 21 19 18 27 25 16 19 24 16 22 17 +15 21 21 26 16 22 26 17 19 21 27 32 18 20 22 13 22 17 15 24 16 23 20 26 30 27 26 24 33 29 27 27 21 28 27 23 27 32 35 32 41 30 41 43 47 50 42 45 47 43 60 42 52 42 49 48 39 38 39 24 28 32 48 39 45 61 51 38 40 47 25 48 38 48 44 29 42 26 35 44 44 60 51 47 38 40 35 38 34 39 46 50 29 44 31 23 20 27 29 50 52 34 43 32 45 47 34 35 44 41 57 29 30 35 26 29 33 8 2 4 7 3 33 53 63 63 84 119 108 91 82 84 43 21 6 5 3 5 4 0 4 3 2 6 4 2 6 3 2 3 5 2 4 2 2 4 7 0 6 5 7 6 4 5 5 6 13 31 71 83 77 128 119 83 73 57 63 40 6 3 6 3 11 35 33 27 26 33 28 41 47 44 52 46 44 29 39 46 40 55 45 32 26 18 24 27 48 38 42 38 58 35 34 35 33 44 37 50 42 45 35 39 33 29 26 39 28 39 33 34 55 56 50 49 47 60 53 49 37 33 29 30 37 46 51 57 44 45 45 50 37 45 49 39 52 55 40 61 55 35 27 26 13 29 23 22 27 17 21 11 30 20 24 46 35 35 19 21 15 14 22 21 17 21 27 27 25 22 12 14 18 22 17 27 14 18 16 27 22 22 +24 21 12 18 16 24 20 18 16 19 23 12 25 17 26 28 26 20 19 19 20 17 24 24 15 27 29 31 23 28 22 33 26 32 18 21 23 25 28 41 40 33 45 50 41 38 40 43 32 45 60 58 43 53 42 43 49 49 29 41 27 33 37 46 56 44 50 55 49 46 40 35 34 37 41 27 28 30 36 47 46 56 48 46 39 32 34 27 37 38 33 39 38 42 32 20 16 28 36 39 45 39 50 47 50 45 46 34 59 59 49 41 30 35 48 32 21 10 5 7 1 9 33 56 62 50 95 114 119 71 70 57 25 10 2 4 8 3 5 5 5 4 6 3 6 4 6 2 6 5 2 3 5 3 2 4 3 3 7 3 2 5 8 2 6 5 8 36 69 77 80 91 130 97 55 58 60 35 9 4 3 3 5 28 27 34 26 36 38 40 54 44 42 27 35 46 55 52 43 48 37 41 21 23 27 26 53 47 32 42 41 39 33 36 44 34 50 48 44 51 47 34 30 16 27 49 35 34 47 35 38 50 47 51 41 38 47 35 36 42 24 28 40 46 41 39 39 46 36 55 36 45 41 44 44 51 42 44 38 40 47 34 26 30 17 26 24 25 27 27 33 20 21 29 23 30 19 22 22 17 19 19 16 21 25 29 18 28 18 28 28 19 13 24 15 25 27 12 21 20 +19 19 27 16 20 17 12 26 24 25 22 23 22 24 23 28 24 23 19 19 12 23 19 29 24 31 28 29 29 22 32 30 19 27 27 26 19 23 19 36 36 40 51 44 39 42 50 38 44 58 54 41 49 40 52 44 38 44 49 30 32 37 38 48 52 64 40 47 45 46 35 43 43 39 36 38 26 28 32 40 44 48 53 37 42 38 35 41 45 48 41 43 42 33 32 19 22 26 31 35 40 46 45 45 48 44 42 37 40 44 34 32 34 35 35 30 25 9 3 5 7 16 48 63 55 60 84 111 91 72 72 66 20 4 8 7 2 6 3 4 5 6 5 3 3 3 0 5 7 6 5 2 3 3 6 5 4 9 4 4 6 4 3 5 4 7 4 17 58 73 92 104 162 122 66 66 59 46 14 2 5 5 14 31 18 33 33 29 29 31 53 48 44 45 38 46 60 47 44 49 47 37 25 10 37 25 36 52 44 49 34 44 50 35 32 33 38 53 56 35 40 38 30 22 33 22 35 36 31 42 56 59 59 37 45 42 39 42 32 42 45 22 46 49 42 44 52 57 49 42 56 52 49 46 44 42 49 35 44 29 36 20 25 19 22 35 24 32 25 24 32 25 25 30 29 15 23 20 17 19 24 21 16 14 20 17 19 24 16 18 19 20 19 19 21 18 16 21 22 13 +18 24 24 14 25 21 17 12 20 24 14 15 14 14 17 23 25 25 18 17 20 15 19 22 16 32 31 25 32 31 29 24 29 24 30 34 25 21 26 25 37 42 45 40 49 35 51 35 45 45 49 51 39 41 52 51 43 41 51 37 24 33 51 56 60 49 44 37 42 35 40 33 34 38 48 34 30 25 33 43 43 59 54 34 28 43 38 38 46 45 31 42 41 32 35 24 11 23 31 33 56 36 42 32 39 38 35 41 57 52 38 38 36 32 28 23 20 7 3 6 2 11 49 68 62 82 95 119 97 77 71 43 14 4 5 3 7 6 6 1 5 6 3 5 5 3 5 4 5 6 4 5 3 4 7 3 7 3 3 3 3 1 7 4 4 1 2 18 41 75 79 95 133 98 72 64 51 46 10 1 4 6 11 24 30 24 28 36 37 39 55 38 33 43 50 43 49 46 50 39 30 38 30 19 16 26 29 50 30 32 41 49 41 32 38 40 44 39 53 40 28 39 35 37 30 42 38 39 38 55 42 44 41 51 47 55 54 44 40 46 38 41 30 36 39 50 50 61 58 42 48 63 30 46 45 45 37 45 43 41 38 27 24 27 24 34 19 21 18 25 31 25 31 30 27 27 15 26 23 18 20 17 25 18 18 16 18 19 19 20 23 19 21 21 21 23 21 21 23 14 +20 20 20 14 15 27 14 14 22 20 24 20 16 20 16 16 21 15 19 14 24 24 22 18 22 29 36 34 20 32 29 28 22 20 29 21 18 22 30 42 28 41 33 49 54 43 51 36 32 38 49 47 47 47 51 40 36 40 37 41 40 30 39 39 47 40 45 52 50 38 42 35 31 32 34 27 21 38 40 38 57 43 45 49 43 35 44 39 39 46 34 48 35 37 29 21 15 29 33 32 58 42 44 36 40 45 40 32 55 45 48 33 30 30 23 45 21 4 8 7 5 24 40 77 64 70 119 93 83 87 69 36 14 2 3 3 2 4 10 4 8 0 5 5 4 4 6 0 6 2 4 3 5 7 5 11 3 4 2 8 4 3 8 4 6 5 4 8 40 70 89 83 117 97 79 52 64 60 19 5 4 2 6 26 32 32 29 27 33 34 46 52 28 39 43 41 46 37 46 57 35 23 27 10 25 26 34 38 32 40 37 44 38 34 40 32 49 40 42 32 45 38 33 31 27 37 39 41 21 40 43 57 54 52 51 51 68 38 26 28 32 38 35 44 45 54 47 43 29 42 44 46 39 52 40 46 40 39 34 27 37 21 30 19 19 33 20 35 26 26 21 27 26 36 27 21 27 22 22 17 22 19 22 15 18 21 19 27 24 25 21 18 15 26 25 15 22 11 29 18 +19 23 23 22 24 16 28 21 19 12 18 13 20 19 23 21 17 26 22 16 23 17 15 16 29 31 28 20 23 28 36 33 20 26 23 22 25 25 25 45 30 43 36 48 49 49 53 42 43 28 50 58 42 54 46 47 44 42 29 38 34 26 48 48 45 50 33 54 47 54 43 26 53 31 28 25 24 36 32 30 45 50 49 33 30 33 36 42 45 43 42 33 38 47 28 27 20 23 39 38 52 37 31 43 33 37 50 45 60 48 37 32 31 27 36 27 20 3 2 0 5 29 70 53 64 65 106 118 90 71 71 30 4 3 3 5 2 4 5 3 7 4 2 2 3 5 2 4 5 4 3 0 3 4 5 2 3 6 3 1 3 4 0 4 5 3 8 5 21 63 71 76 119 160 85 61 61 65 22 1 9 5 2 14 26 37 39 34 24 42 58 39 43 35 32 41 39 41 44 47 49 35 25 20 30 18 33 40 37 44 42 36 33 47 34 32 36 46 66 51 35 37 25 26 33 39 33 41 51 47 40 43 48 49 45 30 46 46 28 31 30 39 37 30 57 68 58 43 51 41 53 35 43 44 34 47 54 41 40 44 28 31 15 20 33 17 16 26 29 22 25 35 29 32 28 15 31 20 20 25 22 14 19 12 22 16 17 24 24 14 20 19 23 22 23 21 20 18 25 19 +23 18 21 18 15 19 33 19 14 23 23 22 16 20 15 18 17 19 24 17 22 17 18 23 24 23 36 25 28 18 30 22 19 36 26 21 26 18 33 30 34 34 41 36 37 42 49 50 40 45 52 45 47 46 45 41 31 51 30 37 27 34 42 48 45 55 49 45 50 41 43 41 35 36 38 27 31 25 33 42 44 54 44 47 46 35 48 49 43 41 46 37 42 32 34 19 15 36 33 55 57 52 41 47 45 47 47 40 41 55 50 34 45 28 33 32 21 10 4 2 8 29 74 56 61 81 109 96 65 83 58 28 4 6 2 10 3 4 5 4 6 3 3 4 4 4 4 7 2 7 5 5 5 1 1 1 4 7 4 3 3 3 3 7 1 4 4 5 13 75 73 77 108 127 79 67 54 58 37 6 7 3 2 18 41 35 40 33 36 38 49 46 52 36 43 35 62 50 41 53 53 51 31 18 27 28 35 35 45 49 45 33 35 34 46 44 44 53 45 48 43 40 31 23 32 32 37 26 47 31 33 51 43 48 49 56 58 46 42 35 37 41 41 39 45 41 49 50 41 37 51 53 40 49 50 39 39 50 34 41 39 22 27 23 30 30 19 28 22 24 25 28 26 28 26 22 21 20 18 21 30 17 15 19 24 26 25 17 13 19 16 21 16 17 17 25 25 12 18 17 +15 22 27 24 25 19 19 25 26 24 24 11 23 19 17 17 25 17 16 22 14 21 20 21 19 25 25 30 17 28 16 23 20 20 18 21 26 30 36 32 24 41 32 45 50 32 39 41 46 42 51 55 33 44 49 35 46 41 37 35 45 24 35 41 41 53 46 57 48 37 43 47 35 41 30 24 36 24 38 31 44 49 54 47 31 38 32 46 42 48 39 48 39 39 34 20 18 40 28 42 55 40 41 54 37 46 50 41 59 52 38 34 38 32 27 33 14 8 5 3 10 44 57 52 61 95 125 87 85 83 44 10 5 2 3 6 7 5 1 8 4 5 6 6 2 1 3 4 8 3 5 2 8 7 4 6 6 4 2 3 6 5 2 6 3 6 0 3 14 45 73 75 100 123 101 73 63 57 45 7 4 6 4 20 21 35 38 28 34 42 44 39 34 43 39 37 39 49 56 52 32 41 28 18 29 46 48 31 37 38 47 37 39 29 32 25 32 52 39 55 30 29 23 30 37 37 43 48 35 40 40 42 49 49 45 45 33 38 28 39 35 26 43 57 50 54 44 49 44 51 42 48 44 65 38 41 50 33 44 33 33 34 25 32 19 26 23 27 37 26 23 23 27 23 30 16 13 20 17 23 12 24 20 26 16 15 17 17 23 21 19 21 24 20 20 16 24 13 27 16 +14 15 26 12 17 19 20 26 25 19 16 15 16 27 14 25 21 21 26 23 13 21 18 25 20 22 30 21 24 30 29 29 25 19 26 26 25 30 33 31 36 46 31 41 41 44 44 41 37 46 46 42 58 54 58 48 44 44 37 33 41 35 38 57 40 50 58 44 40 42 43 42 34 39 37 31 21 20 27 43 52 63 57 40 33 51 38 36 46 42 41 43 50 27 38 25 15 34 45 40 48 51 46 43 39 34 47 49 51 60 32 32 23 27 37 28 12 5 3 5 11 45 80 61 69 118 116 93 86 74 52 7 4 2 4 4 5 5 5 4 5 4 1 2 3 5 2 2 3 2 6 4 4 11 4 4 3 3 4 2 5 10 4 6 7 1 5 2 7 50 74 78 90 143 79 69 66 62 50 8 5 3 3 11 29 29 32 34 35 36 59 37 30 42 44 37 47 42 43 48 32 25 22 17 30 32 28 28 41 31 38 36 46 33 33 33 31 49 62 54 41 49 24 27 26 49 31 41 43 37 40 43 50 48 39 44 49 35 45 32 41 37 49 54 55 28 48 60 50 45 49 51 46 55 45 34 37 50 44 41 39 22 29 28 28 26 35 17 29 23 26 25 24 17 25 16 15 28 22 27 20 26 21 21 16 14 20 20 18 19 26 16 16 17 16 25 24 23 19 22 +17 17 14 22 19 21 18 23 17 26 8 27 21 20 19 19 22 28 14 19 24 20 12 17 20 25 33 22 25 26 24 20 22 21 20 24 28 25 26 34 47 41 31 47 52 48 55 57 44 41 56 53 56 46 49 54 46 36 45 39 31 46 40 51 49 50 50 53 46 36 56 51 41 35 45 28 25 21 23 58 56 57 52 33 41 32 36 55 45 43 50 37 39 49 28 21 18 47 37 54 57 56 44 52 48 51 50 38 51 49 35 26 35 32 30 29 16 5 0 3 11 46 46 57 53 105 133 108 67 76 37 5 6 8 3 7 2 4 6 5 2 3 5 5 8 2 6 1 1 3 3 3 6 4 2 6 2 6 4 8 5 5 2 4 3 4 7 4 7 37 95 81 92 135 110 63 50 64 54 9 4 5 4 10 19 45 31 29 32 34 52 44 49 41 37 37 46 40 55 49 47 36 22 28 18 34 40 36 54 43 33 50 37 37 37 29 35 59 46 36 36 30 30 32 33 33 49 35 40 39 49 49 60 50 53 47 48 54 33 44 33 41 33 41 52 51 52 52 47 52 36 46 32 45 42 49 38 36 35 30 28 25 25 20 26 19 34 19 22 22 29 31 28 37 10 16 24 22 20 21 24 23 20 17 20 18 17 14 26 19 22 23 21 25 26 19 16 18 24 16 +23 14 18 22 24 22 17 11 20 21 22 13 25 25 15 23 18 25 13 19 21 25 22 20 16 21 19 22 19 24 28 30 28 38 31 23 30 25 32 30 35 38 30 46 39 39 42 45 54 40 52 32 51 44 47 40 44 46 41 35 35 45 30 59 41 38 52 45 47 44 46 36 43 46 32 35 36 20 34 40 41 57 49 50 34 39 40 33 50 49 43 36 44 26 22 23 24 28 41 43 53 38 44 49 55 51 46 55 48 48 33 38 41 35 25 26 15 5 4 2 11 58 52 65 69 110 123 100 78 61 22 7 3 3 6 4 5 5 5 2 4 5 6 0 4 4 2 4 5 3 2 4 3 6 2 5 2 4 4 11 2 2 4 3 3 4 4 1 8 39 66 77 99 116 107 65 57 78 46 10 4 3 7 9 27 24 26 33 24 35 64 61 44 27 42 45 45 44 39 52 39 43 41 17 16 43 39 24 48 36 40 53 38 43 32 36 33 53 54 36 44 34 25 37 34 31 40 43 32 47 42 53 56 49 39 56 42 28 39 45 35 43 40 35 54 52 42 54 45 50 30 43 34 57 52 29 42 39 45 34 21 28 33 14 22 31 28 24 25 27 19 21 32 37 23 23 33 24 22 25 19 15 19 15 27 18 21 19 18 19 26 23 15 18 19 26 13 14 17 15 +17 21 21 14 19 19 22 24 18 22 26 15 22 20 19 24 22 12 15 25 21 17 18 26 19 24 22 24 20 27 27 28 25 31 21 24 19 24 19 26 31 51 45 46 57 48 48 48 39 43 42 47 47 53 45 48 52 40 40 40 29 34 38 52 38 51 41 44 45 37 44 31 47 39 36 33 36 31 34 44 49 67 43 42 32 36 32 38 47 39 41 46 45 32 28 26 22 30 39 69 52 46 45 47 45 49 40 56 60 38 47 30 20 30 28 25 9 5 5 3 20 60 61 61 66 104 112 83 81 54 20 1 6 3 3 6 10 1 5 2 6 4 6 8 1 3 7 3 5 4 0 5 0 4 2 5 4 7 2 4 6 3 3 5 4 3 7 6 2 23 55 85 82 107 135 64 67 66 47 18 2 5 4 17 32 30 28 28 27 36 57 56 46 40 43 41 44 35 51 56 38 40 30 15 23 35 41 38 49 47 54 37 39 38 33 43 38 46 55 43 34 29 33 28 27 32 40 31 38 30 45 45 40 58 40 45 62 37 29 42 42 37 40 43 47 30 48 44 59 48 54 39 39 42 40 40 36 28 43 53 28 38 27 28 21 26 27 29 23 41 28 25 28 22 20 20 20 17 21 24 14 20 13 25 17 25 25 20 14 17 27 33 21 29 16 17 24 30 19 18 +14 10 22 16 18 20 18 22 23 17 25 26 20 21 17 22 15 20 18 15 20 18 21 16 13 27 22 32 32 38 23 26 34 32 22 27 27 36 33 23 34 39 32 47 45 38 51 40 51 49 50 48 44 61 49 48 41 33 35 46 36 43 43 45 52 54 56 48 46 41 39 34 40 30 31 27 27 29 24 31 41 49 54 40 51 38 29 42 40 41 45 43 48 39 37 30 22 31 42 46 49 39 52 50 54 42 34 47 56 47 36 32 30 36 35 24 10 6 4 2 16 68 67 66 71 108 106 88 71 53 21 0 4 6 7 2 9 5 3 7 2 1 4 1 4 6 5 5 4 6 6 5 1 3 7 3 2 2 0 10 4 3 4 4 6 4 1 5 2 15 48 76 90 103 117 77 46 58 57 19 4 2 4 8 27 30 27 36 38 30 44 59 50 42 52 42 48 50 36 47 54 38 35 24 26 31 30 36 41 40 52 45 50 43 42 46 48 54 47 48 38 48 32 31 30 37 38 35 42 37 58 60 46 58 59 55 49 48 27 37 27 48 40 44 41 49 55 43 39 50 44 36 40 40 49 41 42 42 44 38 37 23 22 18 24 13 23 17 30 25 26 26 30 28 21 27 28 20 14 17 18 17 16 17 25 26 19 22 26 25 22 22 23 18 17 22 15 24 13 18 +17 12 12 15 25 22 15 23 16 27 20 11 19 22 19 27 20 19 22 25 20 23 14 23 20 24 22 29 24 22 22 22 27 23 19 23 32 24 25 31 42 48 41 41 50 42 38 44 50 38 48 56 35 34 46 51 46 43 44 30 30 33 45 46 48 45 52 47 39 57 43 42 30 32 31 26 38 43 37 43 55 62 57 45 36 39 27 37 52 47 47 41 40 34 39 28 22 36 45 49 49 53 40 54 39 51 35 43 71 42 23 33 31 27 34 20 8 6 4 3 22 59 71 60 63 119 109 76 85 58 11 4 7 6 8 5 6 3 3 8 6 9 1 4 4 6 6 3 2 0 4 5 5 5 5 8 5 2 5 1 2 4 6 6 1 4 4 4 4 12 53 75 73 129 129 80 59 62 52 16 3 2 6 7 28 25 30 31 26 46 49 65 55 48 46 52 44 48 41 63 43 33 44 24 20 27 38 43 52 41 42 31 40 33 50 38 34 56 53 54 45 35 25 36 28 35 38 35 49 52 50 36 53 62 41 47 50 44 40 35 27 29 49 61 36 62 50 43 47 52 59 47 44 51 38 44 38 37 48 43 26 25 25 27 27 23 23 32 30 32 27 32 28 27 23 20 21 14 24 25 26 19 26 15 25 18 23 21 24 16 24 20 17 21 15 26 11 17 18 13 +8 10 8 19 20 15 14 25 25 36 23 15 20 22 17 18 19 16 26 12 32 19 17 18 20 26 32 29 19 23 27 25 29 20 16 21 19 23 22 27 35 31 37 53 33 52 46 46 38 40 51 54 51 38 52 39 36 41 40 31 40 37 39 44 45 41 47 46 46 31 44 43 38 44 41 37 39 34 37 46 43 54 54 47 41 35 36 42 43 37 46 29 42 39 28 20 18 43 43 51 57 42 34 37 54 39 39 51 66 36 49 35 31 25 30 24 5 2 5 3 19 61 54 50 88 131 110 96 78 49 13 6 5 2 5 5 1 6 7 6 3 2 7 8 4 5 5 9 2 4 4 2 7 3 3 4 4 10 6 3 6 6 6 4 9 3 4 1 3 6 59 89 73 107 121 82 53 63 70 19 6 6 6 6 25 30 32 28 35 29 49 59 35 40 29 52 56 54 51 63 40 41 44 23 24 38 34 40 53 38 44 43 44 39 34 41 43 42 60 45 41 30 34 35 41 51 35 41 37 47 31 38 52 57 55 41 49 37 45 45 36 51 35 36 44 50 42 33 44 38 38 45 43 45 43 47 33 35 55 38 14 22 21 22 29 15 26 27 28 27 22 32 27 20 20 20 27 19 22 20 17 26 17 15 27 25 14 24 31 15 28 17 25 16 26 11 15 11 20 14 +15 21 17 15 10 12 19 16 19 16 22 19 27 16 21 24 23 13 18 18 22 22 16 19 32 17 21 22 31 25 16 25 21 23 28 22 27 22 21 29 45 36 44 47 41 45 38 49 52 44 50 35 42 50 49 41 49 36 28 43 32 39 53 51 45 46 44 53 37 39 50 33 39 28 35 34 28 24 40 36 46 66 57 36 36 38 40 43 40 45 56 37 46 39 25 19 21 27 35 51 50 51 35 37 48 44 42 44 56 55 28 32 36 24 27 25 9 3 6 3 28 71 74 79 90 123 103 85 70 53 8 4 4 6 5 5 6 1 3 1 3 2 3 5 2 2 4 3 2 9 7 6 7 5 5 6 5 7 2 4 3 4 4 2 5 3 4 3 6 5 40 74 76 97 135 70 64 79 62 22 4 2 5 9 29 38 34 33 31 40 47 51 59 36 33 36 41 40 57 66 44 29 34 24 21 23 34 42 45 38 42 46 45 45 31 36 55 51 54 64 45 44 34 25 29 35 33 34 40 50 42 57 48 42 50 43 44 35 33 32 44 39 42 42 58 36 67 49 35 37 53 42 48 56 39 62 45 41 44 35 32 28 22 24 22 31 20 24 23 32 33 29 29 22 18 28 24 25 25 17 21 25 20 24 15 17 16 10 24 17 22 16 27 21 17 8 9 16 14 12 +8 16 23 16 20 21 18 21 13 25 19 15 20 22 22 21 26 23 26 22 18 28 25 24 28 24 16 38 33 27 28 30 29 27 31 35 30 23 28 32 37 40 43 42 55 53 52 43 40 41 43 30 40 44 44 41 43 37 32 36 47 43 45 46 58 41 36 53 41 53 55 41 40 26 42 37 31 38 41 40 54 64 46 43 39 37 35 42 48 36 33 42 42 38 23 26 24 22 42 52 63 49 56 41 44 42 42 36 44 50 36 30 32 31 31 29 6 4 5 6 30 57 72 67 86 138 103 77 75 42 6 4 5 1 5 4 2 2 1 4 6 2 6 6 2 2 1 2 4 5 1 4 4 5 3 6 5 5 2 3 6 3 4 7 4 5 5 3 5 9 45 84 62 91 146 68 64 70 55 27 3 4 2 10 25 25 36 31 27 38 48 62 46 40 44 44 51 42 35 57 58 31 43 22 24 31 27 39 37 49 38 31 40 32 35 46 31 43 42 43 48 31 34 23 34 32 38 45 43 48 44 50 46 29 53 43 50 45 31 44 36 32 53 48 40 42 43 37 52 38 45 42 48 49 45 38 49 34 39 37 20 26 26 16 18 30 27 17 31 18 25 19 33 26 18 22 16 20 22 19 25 21 20 23 17 23 21 24 26 22 18 20 20 22 18 15 8 19 13 16 +16 14 9 12 17 11 19 14 19 16 12 22 16 18 25 22 20 22 23 19 16 14 16 24 17 24 27 22 19 25 17 29 19 23 22 23 25 19 23 30 36 40 46 48 48 42 48 45 47 47 39 35 54 36 52 39 53 38 43 38 43 42 42 59 45 49 42 48 46 45 51 48 39 36 46 25 26 31 47 44 46 58 56 35 42 30 35 42 52 43 33 46 36 39 24 19 25 22 42 60 53 41 45 45 53 48 49 58 52 40 20 29 29 34 37 21 7 5 6 8 27 67 47 61 87 125 77 86 78 39 5 3 3 7 6 8 3 2 4 3 1 4 3 1 5 5 4 2 8 3 1 5 3 6 2 6 3 8 6 5 1 3 7 2 4 1 3 5 10 5 39 74 96 105 118 101 57 70 72 34 5 5 5 7 22 23 23 32 25 30 49 53 42 41 41 42 43 48 45 44 62 38 36 17 16 34 33 38 48 41 42 29 44 26 34 39 44 53 51 55 35 45 26 29 30 39 34 47 42 43 39 54 59 47 38 57 43 50 36 45 26 51 38 48 47 53 62 55 43 45 52 44 49 41 45 43 48 39 34 31 32 20 24 16 33 24 21 27 30 25 25 29 24 20 24 28 12 19 23 14 18 10 20 29 16 23 19 21 14 21 17 24 24 18 13 16 13 10 19 12 +7 17 15 16 8 10 21 19 14 18 24 20 22 25 20 22 12 21 17 23 16 20 14 19 18 30 32 25 24 31 21 40 29 32 23 24 26 29 32 33 38 37 40 48 62 47 36 36 46 42 52 49 56 55 32 56 51 53 49 34 29 28 32 63 44 54 55 49 50 42 58 32 39 37 42 31 36 34 28 49 48 51 51 38 40 37 34 30 46 44 40 39 42 42 32 25 22 40 37 47 56 40 37 46 47 37 44 38 49 37 39 25 25 39 32 28 2 2 5 3 37 61 67 46 95 126 95 92 82 37 7 5 4 8 5 5 10 8 0 7 8 4 4 6 7 4 5 3 4 4 3 4 7 6 3 4 5 5 6 5 1 7 5 4 4 1 4 3 8 6 34 85 97 85 120 107 56 53 60 26 6 1 4 6 14 34 29 37 33 36 36 55 46 42 41 50 40 40 49 63 45 49 28 24 23 34 40 41 51 41 41 28 42 26 43 30 39 53 47 47 36 42 25 28 33 47 42 51 32 42 50 41 53 43 46 45 55 39 26 27 34 48 32 52 47 44 52 41 51 47 52 35 54 50 41 44 42 39 46 33 23 26 23 29 20 23 20 18 22 22 27 28 22 29 24 22 21 19 17 17 17 16 15 21 14 21 23 24 13 15 13 23 26 18 10 19 18 16 12 9 +17 14 18 15 18 14 22 25 25 17 19 16 13 15 27 22 28 18 18 26 20 20 24 24 18 21 29 17 31 26 16 25 26 14 29 23 26 32 24 26 47 37 35 50 44 36 45 43 42 42 46 47 51 57 43 58 48 29 36 46 30 31 41 45 64 47 46 54 39 41 37 34 39 42 43 34 30 34 28 45 54 48 48 41 41 42 38 42 35 46 39 34 41 30 30 24 20 39 39 50 37 50 54 43 55 47 43 57 61 33 27 22 31 38 31 13 5 5 5 5 31 68 57 64 78 113 100 83 78 43 11 2 2 7 8 6 7 6 6 2 4 3 4 4 6 5 4 6 2 8 4 4 6 5 5 4 3 2 5 5 1 4 4 6 2 3 2 1 6 5 34 77 74 110 121 107 46 56 68 35 2 5 2 4 21 34 31 29 44 36 40 51 43 48 34 44 42 37 51 44 49 45 40 25 17 25 43 40 48 54 39 40 49 43 35 39 39 52 46 38 42 32 32 27 40 43 32 35 35 43 42 51 40 50 48 41 62 39 32 32 38 39 39 46 48 43 42 47 47 53 50 43 42 52 41 54 60 40 35 26 25 25 19 23 21 24 16 21 30 30 29 30 24 32 17 18 27 19 24 20 18 26 21 18 21 23 16 15 20 23 16 23 22 15 14 12 16 19 8 16 +17 16 12 13 19 11 16 19 18 14 31 19 19 21 20 27 21 17 24 17 23 17 18 21 14 18 22 32 30 15 26 29 27 26 28 25 26 28 29 25 42 46 54 43 48 49 44 38 40 47 49 41 42 40 48 43 59 41 29 31 32 29 45 50 41 48 56 50 49 48 39 42 31 28 31 29 28 23 27 37 42 55 51 39 32 42 34 39 46 55 37 34 37 39 32 32 22 35 46 62 45 36 55 53 45 38 47 50 53 37 35 34 41 38 35 12 5 3 8 7 34 61 68 67 93 120 113 80 68 27 10 3 7 11 1 6 2 6 3 3 6 4 5 7 7 4 4 3 54 4024 4138 44 2 8 3 4 3 3 4 6 2 2 7 4 3 5 6 2 3 4 29 64 76 86 160 96 67 88 47 40 3 5 6 8 16 36 38 36 35 41 40 68 38 36 55 58 49 43 33 43 42 59 31 15 30 34 35 45 39 35 34 35 32 44 42 37 40 43 49 42 58 38 27 18 38 27 40 37 37 50 36 37 42 48 51 38 55 29 37 34 35 39 41 43 40 43 50 46 45 41 53 55 36 45 44 43 49 45 41 31 23 25 23 16 26 30 21 33 18 27 26 29 18 21 32 22 22 19 17 17 14 20 23 20 11 20 17 12 17 15 23 24 24 18 7 18 14 17 11 14 +157498 63482 14 20 10 11 15 16 19 24 26 31 23 27 26 17 19 18 22 19 15 14 23 17 22 19 29 33 29 26 35 26 22 34 27 31 24 22 23 33 31 40 37 43 50 48 42 47 43 43 44 57 40 38 46 39 43 44 40 35 40 35 40 58 46 36 45 51 41 52 45 45 49 47 42 37 39 29 33 43 51 51 51 28 36 38 44 34 40 38 47 49 48 39 35 26 21 38 36 46 55 46 55 31 29 44 41 50 63 44 31 38 21 23 27 23 6 1 6 5 43 79 71 49 110 135 90 80 66 30 4 8 1 2 3 4 2 6 8 6 6 6 4 4 1 5 2 4 195 16599 16774 245 8 3 7 0 3 2 4 3 3 2 3 3 6 6 4 2 3 6 37 64 96 101 134 82 83 65 79 35 12 4 3 6 23 27 40 36 31 42 39 61 44 47 28 47 44 43 38 65 64 37 48 27 21 26 40 36 41 30 42 50 34 48 40 44 38 57 47 56 37 35 32 25 35 33 36 40 39 34 44 44 49 53 43 40 44 45 30 48 28 41 43 40 46 45 43 45 48 38 52 43 54 41 53 31 47 34 34 41 27 27 26 12 25 16 28 31 31 33 22 18 24 30 20 31 20 20 28 26 19 19 21 24 20 22 24 21 14 24 24 24 20 17 11 7 12 20 63131 157159 +115903 70430 15 14 12 11 17 18 19 26 14 24 20 24 20 19 10 26 16 16 18 24 27 20 16 16 19 18 19 29 27 19 19 29 27 32 25 23 24 31 39 42 39 46 40 54 46 46 51 51 39 47 54 45 46 50 44 27 47 39 35 27 41 58 35 48 56 59 33 39 39 37 47 38 36 44 29 22 27 38 48 49 50 33 31 38 40 35 38 45 42 44 44 33 28 21 23 31 33 49 49 50 45 41 43 50 41 53 57 41 36 31 24 33 24 25 10 2 1 2 43 64 51 69 96 143 95 91 81 29 6 2 4 0 2 2 6 1 4 5 7 3 4 5 3 3 2 5 308 24247 24652 329 5 4 6 3 6 3 2 3 4 5 6 4 4 2 5 4 7 11 27 62 73 90 141 90 65 64 67 31 4 3 3 5 21 31 24 36 28 30 36 52 29 37 38 43 40 36 44 42 46 38 31 19 21 28 36 46 39 40 39 41 41 30 26 40 36 54 59 49 52 35 33 30 38 40 35 45 40 52 37 44 50 51 57 67 54 38 27 29 37 28 39 46 43 56 39 43 41 31 38 45 55 43 47 51 32 54 49 36 24 30 21 25 25 39 33 24 24 24 24 18 29 30 21 15 20 14 15 23 25 20 18 27 29 20 24 11 25 26 19 16 28 14 15 12 14 17 70145 115943 +116241 70042 11 6 13 11 27 24 28 17 12 13 20 19 20 17 24 22 21 21 19 18 18 27 21 25 24 28 22 33 32 28 27 25 32 44 15 23 14 19 29 32 47 39 43 53 50 38 47 55 43 55 40 43 42 39 48 39 39 34 38 43 50 56 52 44 54 50 58 32 34 53 48 34 48 37 31 30 33 41 40 67 50 43 29 48 26 24 34 42 44 31 33 31 36 25 23 30 24 41 48 41 39 50 51 44 36 51 55 38 33 22 38 29 32 23 4 7 5 3 34 69 71 61 101 135 78 86 62 23 3 6 8 3 3 6 4 7 7 4 4 5 8 7 3 0 2 3 296 26742 26856 335 1 3 2 1 1 3 3 2 3 2 7 5 2 6 4 3 4 4 21 73 78 93 123 100 68 58 73 37 1 4 5 8 22 26 25 29 49 27 45 48 46 44 28 47 47 42 52 41 52 36 37 21 19 23 37 37 45 43 29 44 44 33 40 35 40 50 44 44 48 40 26 20 26 39 42 44 44 41 41 52 40 49 46 49 52 45 27 36 38 42 43 41 50 53 59 43 55 44 52 37 39 39 42 46 40 35 40 37 31 20 21 30 29 21 35 27 26 19 28 33 17 25 20 15 11 24 26 10 17 21 29 20 18 22 21 29 21 24 18 10 16 24 19 13 13 22 70058 115829 +116629 70096 13 13 16 18 14 31 16 24 19 25 24 17 27 22 20 21 28 13 29 22 21 27 28 16 27 26 22 24 26 26 22 31 19 32 27 19 21 28 36 43 40 55 54 43 50 53 44 44 35 48 41 50 64 40 47 47 39 34 23 34 31 41 45 48 46 44 41 43 40 42 34 29 45 33 29 20 31 42 57 56 53 29 39 43 39 38 39 40 42 39 44 43 26 27 18 39 38 54 43 33 33 41 34 51 35 49 58 44 24 29 33 26 37 23 6 6 1 8 42 70 58 63 100 141 92 83 60 26 6 1 5 5 2 6 4 2 7 5 4 5 6 3 4 3 4 1 288 24515 24498 310 6 2 5 3 4 3 9 3 3 5 7 3 4 3 2 4 3 4 26 78 77 77 135 92 59 67 63 37 15 5 6 2 20 36 23 31 27 35 32 61 45 45 40 54 36 68 42 47 50 35 28 25 17 28 33 30 41 47 41 40 46 38 44 33 46 38 48 67 42 37 38 33 36 49 35 36 45 46 51 49 49 48 56 59 48 50 36 36 24 41 50 38 41 50 45 54 46 41 39 62 45 46 46 44 35 43 37 43 21 26 33 35 19 19 17 28 23 30 27 28 26 24 19 18 18 30 19 22 17 28 12 17 15 26 18 21 22 24 23 23 16 13 15 10 16 17 70025 115892 +156422 63030 13 17 16 25 15 15 24 22 20 19 24 21 20 20 18 17 24 18 28 27 24 19 24 17 21 26 23 27 30 21 24 21 24 26 27 16 22 30 33 41 39 33 43 38 47 58 51 53 34 52 47 44 46 40 54 32 42 32 38 30 47 43 51 48 41 45 49 41 45 42 37 35 41 29 30 23 42 47 37 58 55 44 30 34 39 36 44 42 46 37 43 31 37 25 17 28 46 51 54 58 42 38 49 36 43 44 49 42 31 27 27 27 30 32 5 3 2 3 40 60 64 50 105 121 105 78 70 35 7 5 4 0 2 6 5 2 5 4 3 4 2 4 2 7 7 5 206 16364 16588 204 5 2 4 3 4 2 5 6 6 5 7 3 6 5 5 4 1 4 37 67 81 99 141 91 70 52 69 30 4 4 2 1 21 32 29 35 28 45 30 55 47 46 33 55 54 46 43 59 52 36 44 20 20 25 45 27 30 46 50 33 31 46 38 37 37 46 58 43 38 34 25 35 34 28 42 24 51 34 51 41 48 62 45 51 47 41 33 44 38 46 54 49 45 48 47 45 44 45 52 50 46 48 42 38 42 26 35 40 25 16 24 30 24 24 25 27 29 27 25 30 35 28 25 15 16 11 26 15 11 23 22 11 23 14 28 25 19 21 25 22 15 23 11 12 16 17 63119 156965 +18 14 26 15 18 13 21 20 18 9 19 20 25 25 22 14 20 18 19 21 21 17 27 22 26 10 23 22 30 25 20 27 20 23 30 24 32 30 27 23 47 43 35 56 40 47 39 56 43 39 50 38 42 56 44 53 44 29 48 40 41 36 36 49 50 41 45 43 42 46 47 33 29 44 31 31 23 31 35 40 34 43 57 34 23 47 30 35 47 38 31 45 31 49 31 27 18 36 44 54 44 45 51 37 50 57 24 51 45 53 21 42 31 23 31 25 4 7 2 4 38 71 67 73 114 143 97 69 82 26 6 7 5 4 4 5 7 3 7 4 4 7 6 8 3 3 4 6 56 4218 4212 39 3 3 6 5 7 6 5 7 4 2 5 0 2 4 7 3 8 1 29 59 81 85 127 103 63 69 46 33 4 4 4 6 28 43 32 38 25 27 42 50 44 48 49 38 42 53 46 55 43 38 35 17 20 31 49 32 44 38 33 37 38 25 44 46 40 48 50 40 33 44 29 29 36 33 33 41 33 48 42 42 39 43 59 31 50 36 27 34 28 34 48 46 44 47 28 41 48 50 51 48 42 44 36 35 38 53 47 36 33 24 28 23 32 20 21 33 30 27 22 40 25 20 24 18 16 17 22 21 12 28 19 11 24 19 20 21 22 20 23 22 23 13 13 14 10 14 14 10 +15 14 17 16 16 11 22 18 19 25 20 14 23 15 23 20 28 18 20 17 25 18 22 22 16 27 24 30 30 26 31 36 34 31 23 24 24 22 17 23 46 28 41 34 49 45 60 45 37 49 33 47 37 48 41 47 49 48 37 37 33 43 35 40 38 60 44 38 50 45 44 48 39 28 32 33 25 29 32 40 43 56 62 38 36 36 40 43 43 40 39 36 47 34 20 19 18 28 44 51 48 33 55 41 41 53 43 44 49 37 37 27 38 36 24 21 7 9 4 5 37 72 61 55 95 114 98 78 77 31 5 2 3 5 1 2 2 2 6 1 8 5 5 2 2 8 6 4 0 2 6 6 1 3 4 2 6 8 2 5 3 5 3 5 0 5 3 5 8 2 39 79 76 100 116 114 68 52 77 31 4 3 0 11 16 29 41 28 28 38 44 45 55 44 47 40 44 39 48 47 58 44 47 26 20 29 36 43 38 50 41 50 39 44 31 38 40 56 52 36 49 32 23 29 30 40 38 48 46 47 50 50 59 55 57 46 50 34 40 32 33 42 46 43 37 44 45 47 40 40 54 45 44 40 63 54 47 46 33 34 28 34 18 25 25 24 25 32 28 29 20 31 31 28 16 27 22 18 25 17 24 26 24 19 17 19 25 17 14 25 29 21 19 18 18 18 18 13 15 10 +11 12 17 24 14 15 22 19 22 27 27 29 14 19 27 24 31 19 15 19 18 31 19 25 22 19 24 25 24 25 29 24 26 23 21 25 21 34 29 29 49 38 52 44 47 48 39 52 43 39 49 50 56 41 38 43 50 44 28 35 36 38 32 42 46 43 48 46 50 57 45 47 28 39 38 29 34 29 34 47 37 64 51 25 36 34 47 48 54 46 35 43 49 33 29 28 23 34 39 35 40 46 37 53 48 40 52 43 60 37 37 38 35 38 36 19 11 2 2 3 34 67 67 58 107 121 109 73 66 40 9 2 0 5 2 6 3 6 4 2 2 5 3 6 4 3 6 4 1 7 2 1 5 0 4 5 3 4 1 2 6 7 7 4 4 4 7 0 4 4 28 84 74 106 147 87 71 55 71 32 4 3 8 8 25 37 33 24 23 31 40 50 52 41 43 38 55 48 42 50 54 33 41 14 16 26 37 43 42 47 41 51 38 40 39 33 35 63 53 42 49 39 40 36 33 30 37 39 38 48 49 35 44 47 48 39 51 28 31 39 30 42 51 46 40 53 50 55 36 59 42 50 49 33 46 38 51 33 46 35 36 27 23 28 32 28 28 17 26 28 28 16 30 29 12 19 18 19 21 27 19 30 23 27 18 10 25 24 19 13 16 27 20 21 19 13 15 10 11 14 +20 14 16 12 13 28 24 25 19 22 24 18 18 19 24 26 15 21 23 17 22 17 20 18 20 19 16 24 28 22 25 20 24 32 18 27 20 25 32 26 42 31 36 36 55 43 59 41 47 47 55 43 50 53 50 50 54 46 36 29 34 32 49 57 42 55 40 60 59 40 43 37 36 37 35 30 21 32 28 42 44 62 47 50 37 40 32 31 54 39 49 52 36 39 39 22 31 42 45 44 58 55 52 46 48 44 44 51 49 48 40 32 31 22 33 22 6 3 3 5 19 55 56 65 102 135 109 66 73 38 6 5 1 5 5 4 1 4 2 3 1 4 3 3 0 1 4 3 4 3 4 6 1 4 6 4 2 5 6 3 0 3 3 4 5 7 4 5 3 5 35 73 76 83 133 98 45 60 41 35 2 8 4 3 28 29 30 35 38 39 27 54 55 32 40 51 40 48 46 57 48 41 35 25 21 33 30 37 51 45 51 48 41 37 41 45 37 48 62 41 33 38 35 27 31 38 27 35 36 33 55 45 42 52 46 57 43 38 36 38 25 33 56 42 57 58 45 46 42 44 47 59 54 40 46 36 59 43 32 40 21 22 23 22 25 26 23 20 31 22 23 27 35 22 18 25 28 18 28 18 24 23 21 14 26 28 23 26 21 19 14 27 19 17 14 23 15 19 20 14 +10 13 11 15 19 18 19 26 24 22 24 22 18 17 16 15 23 28 13 15 17 19 11 14 26 28 21 24 29 19 27 28 29 24 30 25 28 25 30 39 41 32 56 49 57 50 37 52 33 44 48 42 56 38 36 48 57 31 46 32 34 33 35 49 60 41 39 44 46 40 40 31 35 45 36 27 35 33 39 40 43 57 51 33 41 38 38 38 41 40 46 26 36 33 22 13 28 37 28 54 38 49 49 36 42 42 35 52 57 46 29 37 30 25 41 19 6 3 4 4 36 57 75 54 96 112 100 91 68 41 4 4 3 3 3 4 3 5 6 4 6 4 5 2 2 1 3 6 1 4 6 2 7 6 3 2 4 4 5 3 3 8 6 4 2 3 2 2 4 8 40 81 94 92 117 96 66 64 57 31 4 3 2 10 15 30 36 44 35 34 43 48 50 39 41 33 62 50 51 44 50 34 28 24 20 25 40 33 25 44 39 40 42 37 46 36 42 44 55 48 39 33 30 28 44 45 34 39 41 60 38 54 48 58 43 52 38 37 32 42 35 42 51 54 51 57 49 59 38 55 52 52 40 40 49 45 40 56 46 31 24 34 24 31 23 22 28 18 25 37 26 32 37 22 21 14 17 10 14 24 25 16 26 24 16 19 33 12 21 23 23 15 20 21 13 12 9 14 19 8 +16 18 10 14 12 14 27 16 21 20 27 11 30 19 20 19 31 13 22 11 16 31 17 18 29 21 26 32 31 28 34 25 22 29 33 26 26 32 20 31 46 34 36 43 54 51 53 48 46 49 41 41 42 39 49 53 57 44 49 41 30 32 36 47 47 52 50 49 43 42 53 41 34 27 45 29 39 28 46 36 45 60 56 52 39 34 36 44 50 44 38 51 35 41 33 19 14 35 37 40 46 56 35 54 38 41 43 52 69 46 27 41 28 20 35 25 8 4 3 5 24 56 58 52 68 114 120 71 78 56 9 8 6 7 2 3 2 4 5 1 5 4 2 3 6 5 6 2 5 4 7 3 2 6 6 8 3 4 3 3 6 2 5 3 6 2 6 5 2 9 50 65 76 101 113 95 51 58 71 17 6 7 1 11 24 36 27 43 31 32 39 50 55 29 26 61 43 37 54 51 45 33 43 12 14 25 40 41 42 40 50 46 32 37 43 39 36 54 60 51 40 44 34 36 31 42 39 50 41 53 40 42 46 56 45 45 50 44 47 24 31 45 36 43 46 54 50 49 50 39 30 50 35 47 40 45 39 31 32 54 34 26 20 25 28 26 23 29 25 27 39 29 20 29 20 15 20 19 29 25 20 18 15 26 18 24 19 28 22 12 14 16 26 20 11 17 22 12 14 11 +11 23 17 17 24 20 27 17 23 27 13 23 28 25 18 12 24 13 17 26 20 21 25 20 16 21 21 31 23 27 24 29 21 20 18 29 31 23 24 31 29 48 33 51 48 43 52 53 51 48 33 43 37 46 46 49 30 36 36 37 34 47 37 50 59 44 45 31 43 40 46 48 35 37 27 41 16 30 33 38 41 53 49 43 43 31 27 31 38 35 53 48 50 41 25 16 20 31 49 56 41 46 53 41 47 39 43 45 58 44 30 23 31 36 34 19 12 1 1 2 29 61 77 52 58 118 106 66 58 51 13 6 3 1 5 7 4 5 1 6 5 4 5 6 7 6 2 3 4 3 2 7 3 4 5 2 1 6 3 3 4 4 4 0 5 3 4 2 4 16 47 69 76 102 129 76 70 69 53 23 9 9 2 9 26 31 38 40 22 36 54 57 55 45 36 36 54 35 39 46 45 51 42 25 15 33 41 44 36 46 45 35 46 44 31 41 46 59 57 46 57 27 31 37 28 48 47 39 39 38 60 49 52 49 43 38 59 39 38 38 32 47 38 45 49 58 53 38 50 56 39 46 43 43 39 50 36 41 42 30 24 25 30 20 27 27 28 26 27 27 26 30 26 28 22 20 28 21 24 22 16 17 16 29 22 26 31 23 22 34 22 25 19 17 25 18 7 11 15 14 +14 12 17 12 23 21 25 14 26 27 23 24 20 19 29 20 13 18 16 17 20 26 19 22 28 26 24 24 22 25 12 20 30 20 28 24 26 36 26 24 34 44 36 44 52 43 42 47 52 46 48 42 48 60 33 34 34 57 43 35 47 34 35 45 48 55 34 51 47 48 28 45 37 33 32 36 30 12 29 51 41 52 35 57 39 43 50 34 50 48 37 41 50 32 34 27 17 39 35 35 55 45 46 41 51 45 42 49 45 33 28 32 35 36 34 28 9 3 4 6 14 58 63 56 78 135 122 79 64 59 15 1 3 4 5 3 2 2 4 3 5 3 4 5 4 3 3 7 9 3 4 4 6 1 3 4 1 5 5 4 4 7 9 0 4 2 2 7 2 9 57 74 93 94 106 79 65 69 47 32 5 4 5 9 20 34 33 35 23 42 44 53 40 46 41 51 50 38 50 45 43 47 32 24 16 25 34 42 40 42 45 44 31 33 43 32 31 49 66 52 45 39 29 36 29 21 41 34 25 29 47 45 49 55 41 40 56 44 34 30 36 45 41 42 44 50 30 44 50 43 49 48 46 38 58 49 51 45 33 42 21 27 24 25 23 23 29 33 30 31 20 25 28 23 16 23 20 18 26 24 21 20 25 21 24 19 15 17 28 19 18 19 18 23 23 17 19 15 11 13 +12 11 16 15 28 22 19 14 24 21 19 22 17 13 14 17 28 21 19 20 16 19 17 21 31 14 32 30 29 20 20 29 23 30 24 19 25 27 21 30 35 31 45 39 45 50 46 53 35 47 42 42 40 49 55 49 42 43 39 36 29 34 35 59 47 50 39 44 53 57 44 41 35 47 24 41 35 35 39 51 46 55 59 36 41 20 37 48 44 50 46 44 43 38 25 16 22 34 32 53 54 41 56 50 58 32 38 53 54 53 39 34 33 30 29 26 9 4 6 5 22 57 63 58 80 115 115 79 73 41 21 5 6 6 2 2 4 8 5 5 4 5 7 4 4 5 4 2 4 1 4 7 4 4 4 7 4 4 5 1 3 5 6 4 5 2 1 7 4 18 71 76 81 110 101 58 53 59 59 19 4 3 9 11 32 33 34 40 34 36 35 64 55 43 49 30 49 40 37 50 43 27 36 25 27 30 31 29 44 29 45 40 49 37 32 31 46 51 58 50 35 33 42 37 32 45 37 39 41 45 32 66 35 37 43 43 47 43 35 46 32 36 62 42 55 45 43 35 49 45 46 45 47 43 56 55 46 35 32 43 27 30 26 12 29 27 23 25 20 32 22 28 30 21 18 18 21 23 25 18 22 23 13 33 17 16 22 15 23 18 21 19 22 18 22 16 12 21 14 15 +16 22 29 24 25 25 25 14 20 26 29 13 20 24 17 18 19 22 16 17 26 20 24 23 14 21 22 24 24 16 21 17 17 30 26 26 24 33 24 24 41 34 38 44 50 48 44 37 42 47 51 48 50 59 47 52 49 49 41 33 48 44 38 38 57 44 38 40 35 49 54 44 41 39 44 36 27 29 43 35 55 56 56 41 44 41 43 36 41 48 37 48 39 30 29 22 14 41 44 50 66 51 54 39 44 45 44 46 46 42 34 34 35 34 35 31 9 5 6 6 16 57 66 61 63 108 110 90 84 64 25 7 6 3 8 5 3 3 4 2 2 3 2 5 2 5 7 3 3 5 9 5 3 4 2 7 6 3 9 7 4 7 4 3 5 4 5 5 7 26 60 90 75 118 107 71 63 59 49 16 4 3 3 7 44 29 26 37 33 34 58 64 33 38 45 46 47 36 46 44 45 32 33 13 28 19 37 48 36 33 34 45 33 29 36 38 29 51 52 50 44 38 38 35 34 30 43 32 37 44 53 55 45 51 47 47 48 39 28 50 41 38 27 44 50 36 44 36 44 41 45 51 44 48 51 34 34 36 48 28 35 32 30 24 35 24 30 27 21 16 18 33 26 34 19 19 24 18 26 22 11 23 18 20 20 21 17 23 20 21 21 24 26 15 22 26 18 23 16 12 +11 17 17 19 10 17 31 13 25 15 23 12 17 19 26 20 18 24 26 29 19 25 21 27 10 19 27 27 20 19 21 37 22 24 16 23 32 23 23 40 40 35 37 50 59 39 50 49 54 37 51 55 51 35 56 45 36 27 40 38 26 31 32 49 49 51 52 40 38 38 40 37 35 52 47 29 41 22 48 43 47 59 64 43 37 36 39 45 32 32 41 42 41 46 30 15 21 32 37 52 48 51 49 47 46 54 27 42 48 46 32 31 35 31 31 22 14 2 2 3 7 48 65 67 58 114 115 96 71 64 24 1 9 2 7 3 3 3 4 2 1 3 4 4 2 6 3 5 3 6 3 3 3 4 4 5 4 3 2 3 6 4 5 5 6 4 6 4 5 41 54 89 79 108 105 70 60 62 54 20 4 3 6 9 24 34 37 31 40 36 38 49 48 35 49 41 43 39 47 47 44 37 36 23 19 30 37 42 45 47 43 40 47 34 36 43 46 63 45 40 37 37 34 25 26 35 40 28 40 47 42 46 41 40 38 50 53 33 35 33 32 39 54 42 60 45 48 59 45 39 41 48 55 40 43 53 45 36 32 32 31 19 35 30 24 30 28 25 20 27 23 21 39 35 19 18 17 17 20 23 17 13 14 21 25 26 21 21 20 22 21 28 16 25 19 20 21 22 21 15 +26 19 20 20 17 22 14 22 17 19 20 14 16 25 33 23 19 20 22 22 23 20 22 21 19 19 36 31 16 21 30 25 17 20 35 20 25 20 27 25 30 32 43 40 36 42 51 50 46 33 55 52 52 47 36 52 54 41 38 34 33 29 45 47 32 49 49 47 55 56 33 40 43 43 42 30 31 26 35 53 43 48 62 37 40 34 35 38 36 38 52 36 38 32 27 34 14 28 41 45 58 48 43 38 49 45 36 34 48 44 36 23 33 29 32 25 13 3 2 2 13 44 57 61 64 97 125 74 81 71 35 6 5 4 3 0 4 2 5 5 1 0 3 7 2 9 3 3 3 4 0 3 5 1 2 3 5 3 5 4 3 2 3 6 4 3 6 6 5 35 93 83 102 133 94 73 71 66 47 8 4 4 9 15 41 34 29 24 39 31 46 52 45 43 28 39 41 51 51 44 39 40 36 13 22 26 35 41 39 39 37 44 43 46 32 33 34 66 56 47 38 34 31 32 41 33 30 30 25 37 42 46 43 39 45 52 69 60 39 32 39 37 46 57 39 43 47 48 51 46 49 46 59 42 41 48 41 49 43 36 27 28 28 30 35 26 26 27 33 21 15 40 21 19 20 20 18 19 15 16 24 24 19 17 23 16 21 21 27 20 18 23 19 26 18 19 23 18 17 19 +14 19 22 20 21 25 18 20 19 21 18 19 19 19 13 17 31 17 15 13 14 18 21 18 17 26 21 22 25 24 34 20 25 23 27 28 26 17 31 30 33 44 37 49 46 50 54 42 48 48 43 43 47 41 34 35 44 52 50 39 41 30 34 53 40 40 60 48 43 37 47 38 28 34 44 33 29 30 30 32 56 57 51 51 40 29 34 41 39 41 46 35 44 39 25 33 21 41 44 47 63 49 47 43 36 43 49 43 62 62 38 28 36 38 20 17 13 7 3 7 5 34 75 66 66 104 118 120 74 80 42 6 1 4 6 4 5 5 4 2 7 1 8 4 5 5 2 2 3 7 5 6 2 3 4 6 5 4 4 5 4 3 3 2 3 5 3 4 6 49 82 74 85 114 109 69 59 67 39 8 7 4 1 18 35 32 27 34 26 44 48 69 46 55 42 44 39 36 38 54 54 33 36 24 22 24 39 37 44 51 44 42 35 46 39 28 31 64 59 32 38 38 34 31 37 39 39 40 33 36 51 45 51 34 57 43 46 45 28 29 37 34 43 38 39 48 53 46 44 37 50 49 47 43 41 30 36 60 37 35 25 18 29 14 30 27 18 19 23 25 23 32 38 25 18 17 25 25 13 24 20 27 13 12 19 29 20 22 22 26 18 22 14 18 22 27 21 18 19 21 +17 26 21 19 19 15 19 26 35 22 15 24 13 21 24 10 19 21 23 19 18 25 16 30 18 25 35 38 36 25 25 30 22 29 20 30 31 24 19 29 38 39 32 51 30 41 44 38 45 42 47 44 54 43 39 46 45 45 33 30 34 38 36 47 53 50 40 47 47 45 40 38 38 43 39 33 19 38 36 43 37 67 50 39 27 24 30 37 48 47 39 33 51 38 28 26 25 40 36 36 54 47 38 43 31 25 43 39 65 53 43 36 18 34 38 31 18 5 3 6 7 42 79 62 48 92 144 113 92 67 56 12 6 5 2 9 4 5 7 6 7 6 5 1 4 2 2 4 3 3 3 8 2 3 4 5 4 9 3 3 4 3 6 1 6 3 5 4 13 52 74 58 93 126 100 60 64 43 36 13 10 3 8 17 36 33 38 32 38 37 53 55 40 40 40 46 46 54 45 49 49 40 31 19 29 40 35 34 32 32 36 49 44 37 24 36 24 51 36 49 36 43 21 26 41 34 35 34 45 45 35 48 61 50 48 51 58 31 39 33 37 44 42 35 42 42 43 53 49 37 50 41 36 42 54 39 56 40 44 33 40 26 19 20 35 28 21 27 25 36 17 16 22 27 28 20 17 29 18 21 23 14 17 10 12 28 21 19 16 24 16 22 16 20 18 21 15 13 17 25 +14 21 25 15 26 22 21 18 26 21 21 27 14 19 18 22 20 17 28 9 24 24 24 16 16 26 33 32 23 28 25 24 27 33 23 23 32 34 26 33 30 42 34 53 48 34 45 50 43 38 53 42 51 42 47 42 54 49 41 33 43 24 32 48 56 51 49 40 35 41 48 38 37 33 40 33 27 40 33 51 46 60 53 49 43 32 54 35 32 41 39 47 41 39 42 26 24 29 42 50 68 45 52 45 37 34 46 46 62 45 33 31 23 30 26 25 17 3 3 7 6 22 61 63 49 101 124 89 66 84 73 13 7 0 2 6 1 3 5 4 2 7 6 1 3 3 5 5 3 3 8 5 5 3 2 5 5 2 3 0 2 1 3 4 7 6 5 1 16 58 78 90 99 119 75 69 51 56 34 6 1 4 4 17 30 30 26 26 26 51 49 51 46 39 41 45 54 46 38 66 40 35 29 17 31 28 34 32 46 33 39 32 35 37 27 33 37 53 57 44 36 38 27 40 33 32 35 31 41 40 37 49 45 45 38 53 58 32 41 31 37 37 45 47 33 42 48 38 42 33 42 63 39 53 43 44 45 33 56 33 37 33 26 27 33 21 36 33 24 34 27 25 28 23 19 12 17 16 19 20 24 20 9 23 18 23 17 15 19 16 24 17 16 16 28 19 20 21 28 24 +18 13 32 24 24 24 24 19 8 17 17 22 23 30 25 13 23 13 23 26 14 29 20 19 21 22 37 24 17 22 23 21 28 28 31 27 24 29 20 34 33 32 42 43 54 49 38 40 32 39 49 42 39 53 49 39 43 42 34 39 24 39 37 51 43 46 53 39 50 38 47 42 29 39 32 32 26 41 46 41 46 42 45 34 47 41 36 34 33 47 39 42 43 30 36 21 26 24 40 49 62 43 47 46 36 40 42 46 43 59 44 33 34 29 40 19 18 5 2 3 4 28 61 71 49 88 131 118 82 83 75 35 4 3 1 4 3 5 5 3 0 1 4 4 4 5 6 5 6 5 3 2 4 1 4 5 2 3 4 1 7 4 3 3 2 4 7 10 22 64 92 78 106 103 79 60 77 62 22 5 2 1 7 15 21 28 23 32 28 53 46 47 43 49 51 51 41 36 56 42 41 32 33 19 22 29 34 56 40 45 38 46 37 39 42 32 33 51 64 48 43 28 31 26 34 31 40 42 26 33 44 57 54 44 53 53 61 36 40 42 44 33 53 47 57 50 34 42 46 29 41 37 38 49 27 45 54 45 36 44 36 25 35 23 20 40 31 36 31 31 33 25 23 24 20 29 21 21 15 17 18 20 16 22 20 21 14 21 23 19 19 15 21 23 19 28 29 26 19 23 +30 31 19 22 24 28 16 25 26 21 17 24 21 31 17 26 15 12 15 16 25 9 11 15 22 24 28 24 24 31 31 29 27 26 25 20 27 27 26 34 46 39 51 46 52 45 40 52 49 44 42 43 50 43 39 47 46 38 30 24 37 39 43 49 57 40 53 48 45 50 37 40 40 42 28 20 31 32 44 41 37 62 38 35 46 34 29 28 48 42 53 35 30 54 43 26 17 29 31 38 59 49 46 54 54 50 58 43 47 44 36 34 34 26 27 30 22 10 5 5 7 18 46 56 64 67 101 92 88 72 83 27 10 2 3 5 3 2 2 2 4 6 3 6 2 3 2 4 6 6 3 2 10 0 2 5 4 4 1 2 5 0 4 6 3 9 4 15 32 65 80 73 134 131 46 67 55 66 28 7 2 6 5 17 23 33 26 26 17 44 51 38 40 39 49 43 46 53 48 62 41 34 34 17 34 28 35 44 35 44 30 46 35 35 27 49 34 45 39 39 40 43 33 33 30 45 47 38 45 41 45 48 44 33 63 37 47 41 35 21 50 36 37 42 51 42 45 48 45 43 38 44 41 45 44 55 41 47 41 39 26 26 20 26 27 36 29 29 26 26 34 34 19 17 33 14 25 13 15 24 28 19 18 22 19 17 25 30 27 25 18 21 17 16 17 28 12 25 11 21 +23 14 26 22 28 21 27 19 20 22 30 26 23 24 19 19 20 27 19 14 28 24 22 20 22 30 20 22 19 19 36 24 29 22 16 29 21 23 24 28 42 33 43 55 41 53 42 45 42 37 50 44 43 45 35 61 42 52 44 30 47 35 44 54 51 47 38 44 50 33 46 42 40 25 39 27 33 33 39 51 51 53 54 37 46 25 27 35 43 39 35 39 52 38 25 28 28 29 51 43 47 50 49 41 50 48 33 52 39 49 42 32 33 37 41 31 25 11 7 4 3 23 50 67 64 72 103 132 92 96 87 61 15 4 3 4 6 3 3 8 2 4 5 3 3 4 3 2 4 2 2 3 7 3 4 4 3 4 9 4 4 4 3 3 6 5 2 9 43 71 71 90 125 114 60 71 56 50 16 4 7 4 11 25 28 38 32 20 24 41 44 50 45 32 43 43 52 53 44 52 43 31 24 17 19 30 54 45 42 46 45 45 39 33 42 39 37 47 44 38 38 40 21 33 34 27 48 42 37 35 36 49 49 52 35 49 49 37 36 29 42 30 48 39 46 43 46 33 37 48 37 41 47 44 48 53 39 57 43 42 32 28 22 18 23 19 38 16 30 30 27 29 20 21 26 18 15 20 33 14 17 16 25 20 20 24 18 26 25 18 18 24 18 13 22 16 19 25 16 13 +15 25 18 22 16 19 19 26 21 15 14 10 20 20 15 20 17 15 21 20 21 17 25 19 27 33 16 31 25 21 28 37 18 30 20 26 21 22 25 37 38 46 46 44 32 40 30 41 52 51 43 45 43 43 41 45 46 50 33 36 40 34 30 50 44 39 36 39 63 48 48 39 35 38 26 39 24 25 34 36 44 55 51 40 31 32 47 41 48 37 49 40 44 36 43 27 13 19 35 60 56 58 41 47 42 33 40 42 43 61 42 40 32 28 43 35 14 10 5 4 3 14 55 64 45 56 97 145 88 93 76 47 14 4 4 3 2 3 1 5 9 4 4 5 5 7 7 3 3 6 3 2 4 0 2 6 2 2 7 6 6 1 4 4 4 7 0 22 55 72 79 97 151 78 56 61 61 36 14 6 3 2 13 29 33 25 36 30 30 57 59 44 34 36 43 41 39 40 47 46 36 43 26 17 30 31 33 40 42 45 35 35 37 29 44 38 55 64 57 37 42 37 35 27 27 46 30 43 26 33 48 43 46 49 36 46 52 41 48 36 37 29 41 42 40 33 49 45 42 46 38 46 44 49 40 37 51 29 45 38 35 34 19 24 16 25 31 27 23 33 26 26 25 34 16 17 23 17 18 26 11 18 22 20 22 20 13 22 25 25 18 19 28 22 20 24 16 19 22 23 +19 14 30 11 17 19 29 23 18 14 15 19 30 26 25 16 16 21 19 14 31 18 20 20 37 29 24 20 33 26 33 27 34 23 31 26 29 26 27 42 34 50 61 39 29 43 39 46 33 44 42 72 29 35 43 47 39 43 29 32 36 38 42 61 42 38 44 50 49 28 45 34 38 28 33 34 34 22 37 30 52 61 59 41 33 27 47 31 52 29 43 43 38 40 38 28 23 28 31 44 45 48 46 45 54 30 41 46 40 45 43 23 44 31 29 28 22 14 5 4 3 7 44 71 67 62 83 120 96 93 75 65 30 10 5 3 3 2 1 2 3 5 3 5 4 7 5 4 3 5 4 2 4 3 4 5 6 4 5 4 7 3 6 2 3 3 5 33 53 68 76 99 107 80 64 63 50 35 6 2 2 3 10 16 34 24 36 35 28 43 59 45 34 54 42 43 49 47 55 41 36 44 27 14 31 26 39 45 41 37 41 39 30 38 32 32 30 54 51 61 55 39 23 31 20 47 41 27 43 46 32 55 43 49 46 49 48 43 45 37 36 35 33 34 36 44 54 44 50 56 37 55 43 45 41 37 30 55 32 36 25 25 19 26 32 18 23 34 22 19 19 27 33 21 23 32 25 19 23 20 18 12 29 20 13 18 20 13 25 21 20 11 19 21 24 14 17 16 24 26 +32 20 18 27 17 24 20 16 20 22 22 16 27 22 20 27 22 14 15 25 26 18 21 20 26 13 27 28 21 29 14 28 33 27 26 19 27 28 29 47 39 47 49 41 43 40 44 41 37 62 40 42 32 59 38 53 42 34 37 33 40 36 28 35 61 61 49 58 58 52 40 30 27 44 29 48 36 20 34 27 40 50 52 34 43 41 27 36 35 47 35 45 50 42 33 30 20 24 31 41 49 48 40 36 35 40 37 31 49 49 38 39 32 36 28 29 35 17 4 1 4 11 29 49 58 54 76 112 106 89 85 65 37 13 4 4 8 7 2 8 2 1 2 3 3 3 4 4 8 6 6 3 1 4 5 5 4 6 6 1 4 3 6 4 3 3 17 45 72 79 88 109 123 84 57 65 59 33 7 4 5 5 18 26 27 30 35 26 25 48 54 51 53 45 41 36 44 45 53 49 47 36 31 15 20 25 38 34 37 36 41 38 37 33 33 42 33 45 48 51 28 28 26 34 36 53 46 26 32 53 34 53 36 41 51 47 47 48 24 32 36 33 48 40 36 57 56 49 28 33 35 39 39 37 48 41 52 44 51 42 44 27 16 18 27 17 27 30 19 14 26 29 34 27 24 30 21 19 15 15 14 24 25 18 17 21 17 18 18 18 26 23 17 25 17 22 18 27 20 25 +26 17 17 14 22 21 16 25 20 14 13 18 22 25 23 21 26 15 22 18 28 21 23 13 22 37 21 18 28 24 25 27 30 27 15 24 19 17 31 29 34 39 58 38 40 48 41 55 43 45 40 54 49 41 41 53 42 45 29 37 38 41 46 49 47 49 64 48 54 41 53 41 36 39 39 39 32 27 22 38 56 61 58 39 32 54 33 39 37 46 34 34 44 49 33 25 18 25 48 37 48 65 49 39 30 33 49 36 50 62 45 34 27 31 36 34 31 20 3 2 5 6 35 56 74 69 65 122 127 95 75 82 60 17 2 2 1 7 5 0 5 3 2 0 3 3 4 2 10 3 2 6 3 5 3 5 4 5 4 5 4 3 5 4 8 8 17 58 72 76 100 114 110 72 72 61 60 25 6 4 6 6 16 28 24 32 32 25 35 45 53 46 32 46 46 48 40 36 46 30 28 42 26 17 22 41 41 47 48 43 47 51 43 38 39 41 42 51 60 36 38 33 33 28 37 35 39 33 48 34 52 38 45 46 49 46 45 47 37 34 35 39 46 48 36 49 42 41 56 40 45 45 41 44 43 42 57 49 49 32 39 22 33 32 23 23 23 23 26 34 21 37 28 24 19 20 17 15 17 17 15 13 27 24 20 24 25 15 29 17 15 17 19 19 11 29 9 19 11 20 +23 27 19 19 21 22 24 22 23 17 15 26 16 14 23 17 28 15 20 21 17 27 17 23 29 23 18 21 39 15 23 30 22 25 24 23 23 29 31 39 33 25 47 37 43 42 38 37 40 38 40 39 53 57 44 42 37 34 38 41 37 49 47 47 40 51 48 46 32 33 38 45 48 49 33 32 29 30 32 37 45 49 45 38 45 36 41 39 39 43 39 33 41 44 30 26 20 26 37 35 54 48 36 46 43 47 38 37 52 49 56 36 34 34 26 28 22 20 7 4 4 6 13 43 49 53 59 99 123 101 80 66 65 31 12 3 4 5 3 0 4 5 7 2 3 6 5 3 5 4 7 5 2 1 5 5 4 1 4 3 5 4 1 4 3 12 27 70 82 75 96 149 113 54 56 63 61 19 2 6 5 9 23 24 19 33 30 38 34 42 45 42 46 38 48 38 45 43 40 47 41 35 31 10 30 32 32 47 45 43 33 48 30 40 31 39 50 52 49 46 37 41 28 32 28 34 45 38 55 49 43 43 50 45 36 57 39 46 36 36 37 46 34 52 57 43 38 44 49 47 47 40 56 46 44 41 41 45 48 45 35 25 26 26 32 29 36 27 21 29 25 35 29 25 25 26 17 19 10 21 22 17 16 19 17 18 15 21 15 18 24 17 21 19 18 15 16 18 18 19 +14 25 19 21 19 22 21 16 22 20 13 29 15 19 22 20 20 19 25 21 19 17 20 25 21 31 22 21 27 27 36 23 27 30 20 21 28 34 26 32 34 38 40 45 45 52 52 52 44 39 34 48 57 47 43 39 56 53 33 39 38 30 48 54 49 38 40 40 41 36 30 48 32 39 37 37 27 28 34 30 45 50 41 42 31 34 24 35 43 51 46 31 46 38 32 26 24 26 31 28 36 58 40 50 46 40 34 32 42 55 48 32 35 34 21 28 26 23 8 6 2 7 12 43 68 62 49 70 125 93 83 64 80 47 10 9 4 5 7 4 4 3 2 6 2 2 3 9 5 3 3 6 2 5 5 1 3 4 3 4 3 8 7 5 2 9 52 50 64 105 113 128 91 63 55 59 44 13 3 3 6 10 26 29 32 33 31 33 39 51 58 49 48 43 34 46 41 37 54 43 43 36 25 22 24 34 44 33 43 39 37 40 35 35 44 37 41 48 53 45 44 42 30 34 34 30 36 36 40 36 50 42 43 32 37 39 60 53 42 39 32 41 40 42 53 46 51 50 42 44 35 40 42 50 40 43 43 44 42 40 33 36 23 29 19 31 31 32 25 25 25 20 22 22 32 32 20 15 13 15 19 13 26 38 18 21 24 20 17 22 15 14 14 17 19 13 19 21 19 12 +19 22 16 24 14 23 20 24 18 19 20 6 24 21 26 21 18 23 27 20 17 25 21 16 18 27 33 32 20 34 25 20 24 27 25 21 30 25 27 32 37 45 45 42 45 44 43 57 51 42 48 58 49 61 59 51 43 43 35 30 37 34 48 40 50 48 45 51 42 39 45 25 39 34 44 28 30 36 28 38 43 47 62 33 28 33 38 37 41 47 37 38 36 42 31 31 21 18 32 40 33 57 44 36 37 47 39 34 53 39 56 52 20 27 36 33 34 25 10 5 3 3 8 43 46 66 54 65 110 120 87 74 67 56 28 12 6 7 6 4 2 3 5 5 4 1 5 6 2 4 3 4 2 2 4 4 3 4 3 1 9 6 7 3 4 29 57 67 76 82 114 119 92 59 57 62 33 7 5 1 1 10 26 34 26 27 28 35 36 55 54 49 55 50 33 35 41 42 43 44 31 25 22 23 19 40 40 45 35 43 36 25 33 25 40 27 47 50 53 38 36 38 22 31 21 23 40 35 38 43 44 44 41 45 51 51 54 47 35 31 31 42 34 40 42 44 37 44 46 36 58 45 49 53 50 48 52 30 41 51 38 28 27 21 20 18 31 20 38 18 34 28 30 22 23 20 27 17 17 21 26 22 25 21 18 13 24 25 18 21 22 14 19 17 15 27 23 28 16 28 +29 16 30 16 20 14 27 19 15 25 19 18 28 18 16 21 22 17 15 19 21 16 19 19 23 25 23 27 14 15 32 17 21 23 17 25 12 26 32 40 34 41 32 42 53 37 44 40 54 46 46 46 46 40 40 50 48 42 45 23 33 40 45 54 54 53 60 42 40 60 63 36 20 41 42 29 33 33 50 38 37 43 48 47 38 42 43 35 35 44 41 34 36 40 43 27 23 16 43 34 33 48 41 37 41 55 49 28 37 50 57 28 29 33 32 37 29 20 7 0 3 4 5 30 40 69 66 55 98 98 106 94 81 67 35 16 3 3 3 3 3 4 2 2 6 0 6 4 4 3 6 4 6 5 6 2 5 5 3 1 1 5 4 3 13 36 66 49 70 100 118 112 68 59 62 68 26 8 4 4 1 10 27 33 26 24 30 34 33 67 48 44 42 45 37 42 39 39 54 51 44 33 23 26 35 33 38 43 37 41 41 37 39 41 35 40 37 46 61 43 44 24 24 26 35 34 37 34 30 36 41 54 41 35 40 59 41 39 29 37 26 30 37 43 51 39 56 63 38 58 35 40 41 41 51 42 51 39 39 35 30 39 29 28 21 23 32 21 21 29 29 25 31 34 23 30 31 30 26 20 13 14 26 21 18 19 16 21 22 18 20 10 20 17 24 24 20 18 20 26 +11 15 19 22 15 18 18 22 21 22 18 17 24 21 19 11 15 15 14 18 21 21 27 29 18 25 11 22 22 25 29 22 16 30 19 20 16 28 30 38 34 37 48 42 54 44 39 40 38 42 30 55 43 26 46 44 44 51 32 34 34 38 46 45 42 41 41 48 55 48 34 34 32 40 44 42 26 20 41 51 48 34 46 41 24 43 31 35 34 40 47 50 45 43 29 29 17 23 31 36 34 46 53 43 33 40 34 41 45 50 50 38 35 32 34 31 26 21 10 2 2 3 5 28 50 69 44 58 88 110 115 81 77 63 50 32 11 4 3 3 6 3 5 2 6 5 7 2 3 4 3 2 3 9 3 7 6 5 2 6 5 4 2 11 27 58 59 76 73 109 127 112 53 61 65 60 27 7 4 2 8 19 28 28 25 31 29 36 36 51 42 47 42 33 31 40 41 44 60 36 49 31 23 9 26 34 34 50 27 36 38 43 37 30 44 37 28 53 49 34 47 43 23 36 31 38 35 42 42 40 48 37 45 37 52 57 55 31 33 43 33 31 37 39 53 55 51 36 42 41 48 45 48 40 41 54 50 44 47 38 35 37 31 21 24 23 33 38 19 22 23 22 32 27 27 28 30 17 22 23 13 16 17 18 24 21 15 15 22 27 22 27 23 19 12 19 25 12 21 23 +24 15 21 20 18 16 17 17 17 22 22 25 22 22 23 20 17 14 19 20 21 18 21 22 29 27 26 25 19 25 24 19 29 22 23 26 16 23 41 40 27 42 37 43 46 45 42 45 47 40 45 37 53 39 63 35 42 34 41 37 26 39 41 52 55 43 54 37 41 51 45 35 43 40 35 30 27 23 25 40 53 51 45 42 35 27 30 37 44 21 51 45 43 34 32 32 29 16 37 40 59 45 42 47 43 38 48 29 45 46 45 35 30 33 29 31 37 32 18 5 2 3 5 11 42 59 61 71 59 106 111 92 81 67 65 35 16 3 1 6 2 4 5 4 2 2 4 5 5 3 2 8 3 3 5 2 2 3 0 3 6 3 3 12 31 79 85 73 84 112 117 65 67 60 47 56 12 6 4 3 5 17 24 22 35 33 33 34 45 47 43 38 52 53 45 45 33 41 55 33 33 32 19 22 25 26 48 39 39 32 34 37 29 36 29 35 41 68 41 51 43 32 28 32 28 36 41 36 38 46 37 50 35 49 33 48 40 41 42 39 36 48 31 37 45 48 39 46 51 37 49 47 49 33 43 47 44 35 38 35 38 31 26 19 18 31 24 31 30 24 19 31 22 22 23 24 17 35 29 20 23 13 18 24 21 28 21 15 21 17 26 33 21 22 19 27 27 15 14 18 +22 14 18 23 14 19 18 15 15 18 18 20 18 20 22 23 19 21 21 20 19 32 19 18 21 25 24 27 28 24 20 30 22 23 24 33 18 25 34 51 42 45 46 46 46 39 43 42 53 51 41 50 44 44 36 40 40 29 28 42 39 29 46 43 47 49 41 41 46 34 45 39 47 32 48 31 27 28 32 36 41 52 54 49 25 27 34 38 40 38 42 32 42 35 36 27 24 18 31 35 48 41 53 33 39 45 40 46 35 46 52 49 26 23 32 44 29 30 20 5 3 0 3 11 35 48 48 55 60 108 112 87 84 75 71 45 26 3 1 3 5 3 7 3 7 5 4 1 5 2 3 6 6 6 3 3 0 5 3 2 6 0 6 26 53 57 77 67 89 108 80 62 69 49 64 27 11 5 6 2 5 24 32 31 34 46 31 33 43 54 27 32 40 39 40 45 38 48 49 50 39 29 18 14 27 41 35 32 42 41 44 40 28 31 27 36 41 47 43 36 41 36 19 28 34 41 29 33 38 42 44 39 60 52 46 47 44 50 29 31 27 27 40 47 42 43 37 40 47 35 32 46 42 37 41 36 43 40 43 31 38 42 26 26 30 26 21 22 24 25 35 32 25 36 25 19 21 29 23 19 25 28 19 24 22 20 16 12 13 21 24 26 13 13 17 16 16 14 22 13 +32 11 20 18 14 21 16 20 11 21 24 19 22 16 18 17 22 20 25 24 19 21 24 22 20 18 25 17 24 22 28 26 24 35 17 27 24 41 44 43 42 42 48 42 46 37 39 53 35 39 42 37 55 54 51 49 39 33 36 48 39 27 53 49 43 46 54 39 34 37 42 37 37 27 32 33 27 37 29 41 29 48 48 38 39 30 46 39 38 40 54 44 44 39 41 23 18 20 34 39 38 48 30 43 37 45 48 35 41 46 56 45 32 28 32 31 35 29 20 8 3 3 3 6 26 51 63 56 52 88 125 114 92 88 77 60 43 15 4 9 3 7 11 5 5 6 3 1 2 2 4 0 5 3 3 5 4 3 6 4 3 9 26 51 64 71 68 84 111 122 90 54 52 51 54 26 6 5 8 8 6 21 34 35 27 31 25 38 45 39 40 46 38 51 42 42 47 36 54 28 46 35 19 21 27 36 31 40 46 48 30 37 27 28 27 33 38 52 49 51 40 26 39 34 29 41 37 40 43 45 39 50 41 43 40 54 47 43 34 40 36 27 34 41 58 45 46 39 43 53 43 36 32 51 29 35 49 42 47 42 24 33 33 27 22 25 16 28 25 35 22 29 31 20 30 21 23 21 23 20 20 20 9 21 22 13 17 22 28 25 23 15 21 15 22 19 13 30 14 27 +18 25 15 18 15 21 20 16 14 11 19 19 20 18 25 19 18 16 23 16 15 19 23 28 30 28 23 22 24 18 29 22 22 23 23 26 30 25 46 49 29 36 42 44 54 41 49 47 27 55 44 43 38 39 56 40 45 44 24 31 41 31 46 40 57 49 50 41 44 39 38 34 49 40 37 32 21 18 33 36 41 48 49 50 34 32 35 34 35 37 43 40 43 46 31 27 21 22 26 40 44 48 48 33 43 34 51 44 49 30 49 47 39 33 29 23 25 23 19 15 2 1 3 8 21 55 56 66 75 67 89 137 88 71 85 66 46 27 10 7 3 2 5 6 5 5 1 2 4 7 4 3 1 3 7 7 4 5 3 8 11 15 28 43 72 66 77 102 106 89 58 58 56 52 47 18 4 5 5 2 14 29 25 37 31 35 28 38 46 58 52 39 39 33 36 51 34 49 47 35 34 32 24 21 40 26 43 41 37 34 51 44 34 30 35 51 47 50 43 37 55 29 20 27 32 30 38 42 31 32 44 49 38 50 45 50 40 45 38 35 33 33 24 44 43 37 39 47 48 43 37 46 43 34 38 31 62 33 46 44 35 33 45 21 27 25 19 27 17 27 27 32 22 25 24 24 35 31 33 21 24 30 18 27 24 19 24 16 17 14 22 20 19 18 18 9 20 21 13 16 +21 11 17 20 18 18 15 27 25 19 32 28 24 16 30 18 18 21 17 22 27 27 28 21 20 31 26 21 26 21 23 26 26 20 16 28 36 26 35 49 39 37 55 38 46 38 40 38 46 40 33 53 35 38 42 38 35 33 37 45 38 35 44 46 48 39 56 42 36 46 34 40 26 34 36 33 27 31 30 35 43 52 47 43 25 31 25 46 44 47 48 40 34 44 43 23 30 21 26 44 38 44 49 48 44 34 44 36 39 48 68 59 38 34 46 33 24 27 30 20 5 6 0 2 10 40 43 54 57 58 94 97 96 101 61 69 68 33 21 12 4 5 5 7 3 3 3 6 2 4 9 3 3 4 6 5 4 2 4 3 12 35 45 56 84 80 79 100 122 86 65 63 58 62 29 11 2 3 2 4 18 26 28 28 23 36 33 39 39 54 51 47 37 48 37 44 43 47 54 33 25 36 19 21 29 28 35 38 47 38 45 28 28 25 30 37 38 51 41 35 37 28 27 21 32 30 29 25 30 51 36 44 41 51 52 40 54 39 40 27 38 31 46 32 47 42 42 52 46 29 41 40 38 41 49 45 41 44 41 28 40 29 36 29 22 26 19 22 25 18 22 22 25 26 27 32 26 31 20 22 16 17 14 19 20 21 13 18 21 18 17 23 17 13 12 23 20 26 22 18 +22 17 19 14 18 18 17 18 14 22 21 25 11 15 16 26 13 22 24 16 22 28 24 21 25 25 28 28 28 36 25 21 22 20 20 22 26 36 30 27 48 48 48 35 56 43 34 41 52 47 44 40 44 44 41 56 35 40 32 36 45 38 43 55 35 46 44 41 32 41 51 57 39 44 26 23 30 27 37 41 38 50 54 44 51 38 27 32 50 41 45 36 42 49 32 22 21 16 18 39 34 51 41 41 31 46 47 40 38 40 38 39 43 31 39 29 28 23 31 14 4 8 4 4 8 28 56 51 61 51 77 102 108 107 80 68 76 49 38 22 7 1 5 2 3 3 4 6 4 5 5 5 3 2 8 0 6 4 4 9 21 50 62 67 75 79 94 131 111 75 62 40 53 53 18 10 3 5 6 6 13 22 29 21 30 30 33 45 47 58 42 40 35 41 34 46 45 54 40 34 31 23 19 21 32 42 46 36 40 29 32 42 38 37 40 41 44 56 58 45 34 26 39 22 27 40 40 40 37 40 42 41 55 33 40 44 50 42 53 36 33 31 31 40 37 33 50 45 44 44 34 37 55 45 54 49 60 28 43 34 27 37 35 24 22 28 25 20 19 21 18 27 23 25 26 17 26 23 19 29 23 12 22 14 13 15 15 16 15 15 25 18 11 17 14 17 19 19 20 21 +17 19 14 23 33 10 19 18 12 22 13 16 20 25 23 18 25 20 25 22 24 28 23 17 24 16 18 29 26 24 31 25 21 26 16 18 20 35 43 60 32 45 43 46 40 33 45 49 43 34 46 54 43 39 49 37 26 25 28 35 30 36 44 54 58 43 42 49 42 43 57 33 45 39 26 51 23 26 38 35 41 49 34 33 38 29 27 40 40 36 34 38 39 36 42 22 33 13 24 34 40 42 49 59 38 44 34 36 45 51 47 59 36 33 33 23 30 33 31 21 11 2 2 4 6 19 51 53 54 57 57 116 98 84 81 68 86 79 50 42 17 11 7 2 4 6 4 7 3 1 2 7 5 3 6 3 7 6 6 15 44 44 60 75 77 81 122 113 98 70 62 72 59 53 17 8 4 4 3 17 27 37 26 30 40 22 42 38 45 44 28 59 37 49 38 43 38 43 44 35 46 32 18 17 17 39 33 48 50 36 41 38 30 40 31 29 28 45 51 45 49 20 30 30 35 42 37 39 29 30 45 43 52 45 52 51 53 56 31 30 23 36 31 30 33 45 38 39 34 28 44 38 44 28 38 32 42 45 43 46 43 40 25 37 27 20 22 23 22 28 24 23 23 25 29 22 26 30 29 25 16 15 15 28 23 20 20 20 20 16 14 19 22 22 19 15 23 23 17 19 +23 19 21 16 25 16 15 21 21 17 22 21 20 25 19 19 19 27 29 27 21 22 29 28 23 21 25 24 26 23 27 23 22 18 23 34 28 36 35 42 50 42 44 38 40 38 35 53 38 44 46 47 44 46 39 41 45 41 40 38 31 29 49 43 48 47 37 51 43 42 49 45 35 38 31 28 28 28 31 39 43 36 50 40 32 31 32 44 31 40 37 39 33 36 33 26 25 23 15 31 40 42 48 33 37 46 37 32 36 40 42 50 38 29 22 25 21 29 39 24 14 7 3 3 3 10 35 44 60 56 49 91 89 103 103 85 84 82 70 51 37 26 11 4 2 6 5 2 4 1 11 6 1 0 3 6 8 6 20 21 54 57 63 55 84 98 104 96 74 72 50 70 37 37 9 11 5 2 7 16 33 31 35 31 27 23 38 54 38 54 41 37 45 26 44 49 41 38 39 40 35 24 17 30 33 43 25 48 37 37 39 39 37 39 39 38 35 46 33 43 36 35 28 29 23 28 37 39 34 35 42 38 47 38 43 49 50 53 37 39 22 36 40 38 44 43 39 36 45 48 47 41 37 41 47 47 39 49 48 34 40 42 37 34 32 29 25 22 31 24 27 27 30 27 33 28 39 22 33 27 17 25 25 21 14 20 18 18 17 15 14 19 16 18 19 25 21 23 19 15 +22 25 17 22 15 13 24 13 17 23 17 16 19 13 20 24 19 23 24 17 26 23 38 14 27 26 12 28 19 21 25 23 22 23 23 26 30 39 43 50 34 58 34 41 32 39 45 40 39 46 47 43 36 34 50 40 44 29 20 25 37 35 51 52 58 50 42 47 41 37 42 40 38 39 25 34 29 25 35 36 44 50 47 47 35 33 37 37 39 55 28 45 46 37 35 33 32 18 28 32 42 34 51 41 26 43 41 41 45 40 50 42 41 32 37 33 27 30 25 20 16 5 2 2 5 10 22 56 57 65 53 70 88 120 115 89 73 75 65 72 53 38 22 11 9 4 1 4 4 4 0 6 4 2 4 14 11 17 34 61 76 71 87 79 87 103 105 95 61 65 65 61 55 36 11 5 7 1 5 14 24 21 31 26 28 40 37 35 46 46 38 42 33 43 38 40 46 51 34 30 30 24 27 28 25 33 44 36 42 46 37 44 25 37 34 40 39 38 36 44 32 25 29 27 37 27 35 29 20 41 37 51 45 55 46 37 51 52 30 35 26 42 33 37 36 47 52 39 46 28 35 39 53 39 41 34 40 44 43 35 28 38 32 40 27 24 25 29 17 22 27 25 21 21 28 24 21 29 33 30 24 21 12 18 24 14 14 27 18 21 15 20 18 17 20 18 13 19 22 19 +16 21 19 15 16 16 20 25 15 19 21 23 17 21 18 10 19 13 26 34 16 28 27 21 26 24 19 23 17 17 20 17 28 20 24 32 41 44 44 40 47 42 41 41 36 45 41 42 48 44 35 37 38 43 48 28 29 34 29 27 36 38 45 31 41 46 46 52 36 39 41 38 43 32 38 36 26 20 31 38 42 49 41 42 41 39 41 33 41 26 38 45 33 32 35 32 36 15 19 37 32 41 46 37 46 35 34 37 43 34 34 53 43 40 32 28 33 31 30 44 16 9 4 5 6 3 11 42 62 55 69 68 93 113 103 101 78 65 62 67 66 56 42 30 18 12 11 4 3 3 4 7 6 9 11 26 29 46 44 61 54 75 81 93 100 113 124 68 44 46 60 61 37 6 4 2 2 1 6 28 32 38 30 39 32 23 41 50 40 47 39 40 31 41 36 47 41 46 33 29 24 20 22 27 25 43 37 40 38 38 50 32 40 37 31 29 49 42 45 37 35 30 28 21 32 34 24 29 35 36 43 39 37 54 44 37 39 38 36 24 24 36 37 25 36 35 44 47 41 48 48 33 45 36 45 43 42 42 53 44 39 30 44 31 35 28 18 17 30 31 23 26 28 27 27 26 27 12 20 23 29 22 24 26 18 17 13 12 17 19 15 27 15 16 15 18 18 17 19 11 +22 12 21 17 19 29 21 16 16 18 34 17 21 13 14 10 14 18 18 22 24 18 23 27 25 20 18 28 26 19 21 29 22 21 28 21 31 43 44 42 48 47 49 34 39 35 45 58 44 49 36 49 37 48 33 47 41 40 28 31 34 35 43 40 35 38 53 40 38 37 55 32 35 41 46 25 20 27 32 31 33 45 53 47 37 29 31 38 33 36 51 43 34 52 39 37 42 26 15 32 30 48 54 41 35 41 57 38 34 32 43 47 44 33 33 36 26 25 29 30 24 10 2 4 4 5 9 22 51 64 67 59 84 77 107 112 116 88 68 73 60 59 67 39 38 26 23 12 9 23 14 17 20 20 22 32 50 50 67 75 80 68 80 87 112 107 90 62 44 57 59 49 22 9 2 4 4 6 10 15 23 33 35 30 35 38 42 43 36 46 30 43 35 43 37 50 51 37 29 32 25 17 17 15 30 34 38 41 45 53 49 30 36 23 29 35 40 54 53 38 47 29 29 25 30 24 28 32 36 50 44 46 41 44 44 44 39 43 43 37 42 29 40 35 31 42 49 31 44 44 42 50 48 53 47 52 38 47 40 33 50 36 33 40 26 33 23 24 21 27 20 20 20 22 26 27 22 30 24 25 21 15 21 17 10 21 20 15 25 30 26 20 21 19 18 17 21 18 13 17 +26 15 15 12 17 13 19 23 17 29 11 18 12 17 12 25 20 24 24 26 25 26 20 13 19 26 21 24 19 17 20 33 29 23 20 39 37 43 39 40 43 43 51 37 35 43 37 35 42 38 40 51 39 41 38 42 40 49 35 20 35 50 48 46 55 44 37 42 42 39 36 28 46 28 34 29 33 25 23 36 32 56 54 43 30 35 36 28 42 44 41 38 34 30 36 38 26 20 17 21 32 35 51 57 44 57 49 36 37 46 32 56 53 47 33 24 20 30 31 37 22 19 5 6 4 8 4 32 59 58 64 60 46 64 95 102 110 102 79 92 96 67 67 67 59 52 35 31 28 24 39 36 31 42 39 63 49 61 73 71 69 74 94 104 130 88 65 56 68 72 55 52 29 6 7 6 4 6 7 34 22 23 28 23 29 30 43 47 54 49 37 33 45 32 46 46 45 53 29 37 21 22 21 37 29 51 38 36 42 37 45 35 32 28 32 25 50 50 54 45 43 29 34 22 35 21 34 39 39 45 37 31 32 42 35 54 43 60 32 36 33 34 31 41 43 39 29 42 48 38 58 44 44 45 37 38 53 40 34 40 36 48 37 39 27 23 27 22 19 32 29 20 22 25 19 28 18 22 30 23 27 29 23 26 21 27 19 22 13 29 24 25 15 21 17 20 19 26 22 15 +23 17 10 27 25 29 21 26 21 20 18 16 24 21 15 23 22 20 30 32 23 28 23 17 27 24 19 24 25 24 25 32 25 28 32 33 29 52 39 31 48 41 38 54 40 42 37 26 43 48 43 30 51 48 55 37 29 34 37 26 32 40 39 61 41 48 39 42 33 31 32 37 29 34 37 31 36 38 16 37 42 41 52 53 34 30 40 36 36 33 41 40 35 41 41 33 23 22 14 25 44 36 44 40 39 33 39 31 36 35 51 43 39 52 33 26 28 34 13 24 22 22 9 5 3 4 5 7 42 61 55 72 54 68 78 107 121 83 73 71 84 69 79 79 65 57 54 43 44 58 37 38 50 57 70 57 70 70 66 74 75 117 104 94 102 76 60 57 65 47 43 38 12 5 6 1 2 5 21 40 24 31 32 39 26 30 48 51 38 31 35 27 48 45 35 38 48 41 36 52 26 20 22 15 29 30 40 49 55 29 37 38 28 29 30 34 49 40 50 38 24 25 35 29 35 31 34 27 41 49 46 43 50 44 49 33 52 38 29 44 31 28 25 46 29 44 37 46 44 40 45 40 38 36 40 37 35 48 43 35 46 47 35 39 32 28 26 21 24 18 29 32 18 29 16 27 26 25 23 29 23 22 30 20 26 20 12 23 19 16 14 22 20 22 9 17 18 21 23 17 +20 15 18 17 17 14 18 20 22 25 18 18 17 21 18 19 25 21 18 21 29 19 26 18 22 27 24 20 23 14 21 29 23 20 14 33 35 45 46 31 43 49 43 50 39 34 45 32 37 54 30 48 42 43 36 44 32 34 35 29 24 38 48 53 40 47 52 46 45 35 29 40 42 35 23 31 26 25 34 28 44 52 48 36 29 24 33 33 25 36 41 49 29 34 28 29 30 19 13 28 32 48 48 57 41 33 38 37 42 43 33 58 51 44 56 27 24 27 35 38 29 19 19 6 6 5 9 4 23 35 53 52 62 67 73 78 103 96 91 80 94 90 71 70 70 62 64 68 63 59 58 71 66 68 69 63 65 74 79 90 88 115 106 106 91 56 43 49 57 53 38 19 1 6 3 3 3 11 17 23 31 18 29 28 31 37 39 35 30 44 46 47 43 41 43 41 59 49 34 27 30 21 24 20 46 49 33 41 33 48 35 32 33 28 43 43 40 51 49 36 30 23 28 29 44 26 34 39 33 41 32 48 37 35 46 41 44 48 34 29 28 32 29 41 45 38 39 40 34 50 35 49 37 38 46 45 52 37 34 47 36 37 29 34 26 43 17 15 37 24 22 25 26 30 30 24 13 30 26 21 23 31 24 21 23 25 21 16 22 20 12 29 21 16 14 16 29 20 20 22 +15 15 17 25 28 21 15 25 14 15 14 19 13 21 18 14 36 23 26 25 26 22 26 23 19 14 24 26 20 20 27 19 21 29 25 30 35 41 42 31 43 40 39 41 39 41 36 36 51 39 42 28 49 39 36 32 38 34 22 38 30 30 41 41 46 33 35 33 37 29 34 31 35 26 40 30 30 19 34 34 46 31 58 52 41 27 39 25 28 32 37 33 36 44 31 37 35 22 16 19 29 38 56 41 43 49 41 37 24 36 39 43 51 52 33 35 17 28 35 31 32 22 17 7 1 3 4 3 15 29 51 73 56 56 61 68 104 112 113 112 102 93 75 73 72 66 78 83 65 68 48 58 66 73 76 77 81 73 82 110 128 128 90 93 60 56 52 52 50 43 35 4 6 2 2 0 7 14 28 30 27 27 27 25 37 45 46 42 30 36 29 44 43 44 48 44 45 42 36 24 20 17 18 25 48 39 30 34 37 32 34 32 26 34 35 41 44 34 44 41 28 43 35 21 22 32 28 28 28 39 41 36 43 41 34 48 48 44 42 44 30 37 25 37 38 38 42 43 51 49 36 29 44 38 39 51 49 36 36 44 41 49 37 38 38 36 16 22 27 19 33 23 25 31 22 29 20 22 20 24 26 24 21 15 21 19 16 13 25 21 22 13 21 17 16 20 24 25 9 21 +8 21 14 23 22 26 16 17 19 12 12 13 14 19 26 25 16 32 22 24 25 19 29 23 20 22 20 18 22 26 20 28 26 21 39 34 35 32 55 47 40 34 37 40 35 40 29 36 38 39 36 41 47 37 41 30 34 27 38 33 38 41 55 46 42 52 44 43 37 39 27 34 26 25 20 26 33 23 27 47 55 46 49 56 47 34 37 26 31 49 45 35 50 40 37 43 25 25 14 23 39 29 41 51 44 44 41 43 51 38 40 27 45 50 46 36 37 26 39 22 34 26 19 10 1 5 1 3 3 19 41 52 46 55 50 62 66 89 106 105 99 104 79 71 63 71 56 58 66 68 56 71 66 88 65 76 77 96 102 105 117 105 112 66 59 56 55 49 50 41 18 8 5 6 5 4 9 14 17 15 22 24 28 35 28 39 48 49 46 30 30 42 49 33 37 38 45 33 39 30 23 22 32 31 29 32 49 43 36 36 31 32 39 26 36 40 45 57 38 39 33 30 38 28 34 38 39 30 31 30 44 47 54 38 45 56 34 37 39 29 30 48 31 39 41 43 36 46 40 43 43 30 33 36 29 42 42 43 42 46 39 52 30 31 30 35 24 19 16 27 24 23 27 20 32 22 21 32 30 25 29 16 14 24 21 22 23 19 19 10 14 22 22 22 16 22 23 22 20 17 +16 17 19 15 19 20 17 16 19 26 15 19 17 22 20 18 38 16 30 17 35 25 20 21 22 23 15 18 20 16 18 31 23 25 28 38 34 43 27 53 34 42 48 42 35 37 35 43 50 39 37 44 43 45 39 47 28 36 39 37 28 43 33 38 37 60 38 33 48 30 32 34 38 35 34 28 32 31 28 38 30 41 55 41 32 39 32 38 31 45 38 29 40 38 38 40 22 27 15 20 25 36 36 51 47 45 50 39 40 48 28 29 42 35 35 36 32 26 25 27 26 28 27 10 7 3 2 2 4 9 25 46 50 57 64 50 50 74 81 101 113 103 94 98 88 85 78 58 83 84 67 72 73 80 76 73 95 97 120 124 91 76 82 51 62 56 60 47 50 34 12 1 3 9 2 9 8 22 24 35 28 34 39 32 32 35 49 52 33 52 42 34 35 45 39 36 45 42 36 24 19 18 20 23 29 24 39 24 36 36 39 32 31 38 29 37 42 50 62 44 39 32 24 20 28 38 25 36 33 39 32 44 41 58 30 41 38 48 43 27 32 38 41 36 48 41 45 54 30 41 36 47 35 37 37 35 41 41 56 43 32 41 33 39 37 37 20 24 21 20 25 24 20 19 23 23 17 23 33 28 20 15 33 24 26 30 20 13 17 17 19 19 22 14 16 16 17 12 19 22 +20 17 22 16 25 22 14 24 16 18 14 19 17 17 32 31 22 15 24 23 23 24 25 19 18 25 24 27 24 16 24 29 24 30 27 42 28 33 36 34 38 39 38 42 37 31 35 40 48 27 50 37 33 34 40 31 36 31 39 22 30 48 39 33 32 47 41 38 33 36 35 45 49 32 49 33 29 33 28 41 33 41 58 49 46 30 40 28 24 40 41 47 48 40 33 30 41 19 22 21 24 25 36 38 33 39 34 48 50 34 39 41 45 55 49 45 29 30 37 25 27 22 25 15 12 6 5 7 7 8 12 30 48 52 50 62 56 57 66 78 98 98 120 100 92 79 102 92 85 79 80 85 101 67 90 99 113 114 107 86 106 67 62 60 61 62 55 47 34 14 7 5 2 5 8 10 19 24 31 33 28 29 26 35 42 35 39 32 34 37 35 42 36 35 34 37 50 37 25 30 19 21 24 40 25 36 35 41 30 37 32 33 40 39 35 36 40 41 43 49 33 26 16 24 33 40 37 28 32 48 41 46 40 47 44 41 46 43 47 31 26 25 35 36 42 41 49 38 35 40 41 42 40 37 36 37 45 33 35 42 29 32 39 36 29 31 31 26 16 22 21 15 20 26 19 15 28 26 25 27 26 25 24 24 20 32 16 21 27 19 16 16 17 24 15 21 22 9 17 18 +17 13 21 16 23 12 21 12 17 20 25 20 26 13 29 32 19 25 17 15 21 19 30 17 26 24 14 15 20 31 18 20 27 22 30 35 32 23 56 46 41 32 47 46 45 32 52 37 48 37 34 51 37 36 27 40 36 24 38 28 41 46 70 39 51 41 55 31 49 37 41 27 35 38 23 26 29 25 29 28 47 41 49 48 24 38 31 26 37 46 34 42 39 42 40 38 29 19 22 19 27 34 25 49 49 41 44 42 29 38 31 34 34 45 40 33 30 28 25 29 36 30 22 30 12 6 5 3 0 4 12 31 36 47 57 70 53 52 57 66 80 84 91 110 104 106 76 90 98 86 110 98 103 101 115 100 115 98 101 105 78 57 68 51 63 56 57 48 32 5 3 4 2 1 3 13 19 33 35 29 26 26 22 47 42 53 46 46 47 39 44 31 43 39 34 51 41 31 27 37 21 19 28 28 41 34 39 60 53 36 24 17 43 34 30 40 42 41 49 55 35 24 35 27 37 22 31 42 36 48 37 33 45 44 45 44 60 45 37 35 42 26 27 34 41 32 47 37 51 39 45 36 51 37 43 26 42 52 47 41 45 42 38 26 30 20 33 20 15 12 19 24 14 32 26 32 25 23 27 18 22 25 26 20 21 24 30 22 25 16 17 24 19 15 15 22 15 17 14 19 +20 17 14 16 15 15 20 22 21 28 20 25 22 26 22 11 21 18 22 20 36 18 27 20 24 26 22 19 27 17 24 26 22 17 23 31 36 33 49 37 41 39 43 35 47 45 19 49 35 45 50 41 43 42 44 30 40 22 31 28 30 52 43 42 42 39 40 51 35 29 35 34 30 29 27 27 25 23 31 42 42 40 46 49 43 28 35 34 29 37 39 37 37 46 42 34 27 30 22 21 28 36 31 36 47 42 44 35 43 31 34 32 45 39 44 43 37 27 31 16 26 32 25 27 12 3 4 3 2 1 4 11 25 43 43 49 61 50 68 46 61 72 72 98 77 100 96 103 92 116 90 108 95 96 109 88 108 91 68 61 72 61 61 50 58 65 38 26 14 4 5 3 3 5 5 18 27 33 34 29 28 29 20 28 48 45 51 34 42 40 37 48 35 34 47 48 47 33 43 25 16 16 22 34 27 40 30 40 40 44 40 31 47 29 30 34 35 45 37 24 38 32 31 23 29 31 23 37 29 40 42 42 31 60 39 42 47 48 32 29 30 30 30 31 36 39 37 50 30 41 31 35 46 38 34 45 34 46 51 44 43 45 33 31 26 34 33 24 17 23 30 28 18 17 28 22 23 29 25 15 21 20 24 26 23 24 22 25 14 20 22 29 19 23 16 22 19 22 16 15 +18 14 18 34 18 15 17 13 21 20 22 22 22 19 32 20 29 24 22 10 19 25 23 21 15 19 18 23 23 31 20 22 26 35 23 38 41 29 39 37 42 36 38 47 39 26 33 36 33 39 34 36 36 33 39 34 25 20 27 37 30 40 42 40 40 39 35 40 31 40 36 27 34 35 35 29 25 24 30 33 27 36 51 47 30 31 20 35 31 34 40 29 35 43 45 22 35 23 20 20 24 32 29 38 47 40 36 42 29 34 29 42 31 39 50 34 37 37 35 23 22 29 30 21 24 16 6 3 2 5 4 6 18 36 44 53 56 54 43 40 48 53 96 76 79 83 92 87 118 89 83 106 98 82 94 79 71 72 62 55 57 43 53 53 65 44 26 14 13 1 3 3 3 8 14 23 21 33 29 34 19 24 35 36 38 52 31 43 38 30 40 36 44 49 43 47 49 35 20 23 14 21 20 36 33 35 41 43 43 42 34 21 27 37 51 33 52 34 41 29 41 31 25 27 34 33 33 45 36 26 37 40 20 33 50 40 38 33 42 40 34 24 29 32 32 43 42 41 38 42 38 49 37 32 38 36 36 42 41 37 49 47 27 44 41 30 30 31 33 21 22 18 32 14 15 24 22 27 17 21 19 21 23 29 35 27 20 28 22 12 26 23 21 12 10 18 18 19 9 11 +16 16 26 17 18 15 20 24 19 23 23 20 18 30 25 19 20 21 25 23 18 32 19 29 20 22 18 26 17 17 16 24 20 36 30 33 57 67 32 38 38 46 28 35 45 46 37 31 46 44 44 38 34 31 45 30 37 35 37 29 28 37 21 42 48 30 40 44 33 44 33 26 32 36 33 36 32 26 28 22 28 38 43 46 34 35 27 33 24 37 45 34 30 35 20 42 36 31 25 17 21 28 30 40 42 48 34 41 45 35 38 38 39 39 37 49 34 39 34 26 23 24 24 26 29 12 6 5 3 3 3 4 6 21 41 56 43 46 53 66 55 50 51 56 62 83 77 68 93 89 88 81 83 72 76 79 59 62 47 50 59 55 55 47 36 34 16 13 8 6 3 3 4 7 16 23 13 23 35 25 35 27 37 29 58 57 47 34 34 40 42 42 33 36 51 36 41 36 23 19 17 27 34 25 35 24 41 32 41 45 26 30 30 30 28 40 44 39 30 31 30 25 17 27 29 37 29 29 23 28 33 39 29 43 48 42 34 48 38 27 29 25 27 32 45 27 42 31 33 38 33 43 35 34 47 34 38 30 26 49 32 41 30 35 32 35 24 23 16 22 18 22 15 19 21 17 18 17 18 21 17 14 29 28 22 30 16 24 25 28 29 29 29 17 19 29 17 15 6 26 +21 23 23 24 17 22 15 21 19 29 22 13 31 23 16 16 15 13 25 21 20 17 17 25 19 28 16 18 26 24 23 19 42 32 31 26 38 46 48 44 35 49 38 38 29 31 36 40 38 32 58 32 40 48 43 36 36 37 31 30 37 45 38 49 45 39 47 41 41 32 34 35 28 37 35 25 31 20 19 34 28 40 46 44 34 47 42 31 35 31 32 37 34 25 31 44 36 25 24 20 19 29 31 39 40 45 39 40 33 29 35 33 37 36 50 40 47 25 42 24 23 24 34 29 22 18 16 5 8 2 3 0 6 9 18 35 44 63 68 62 61 50 46 63 66 72 67 65 69 56 55 78 57 56 58 65 49 65 45 40 53 50 60 42 28 17 9 3 1 5 1 4 4 12 26 21 30 28 23 28 23 34 38 47 49 59 29 37 25 40 36 24 28 34 26 47 39 29 32 18 15 32 33 32 31 40 43 36 37 36 30 30 42 27 45 40 41 40 45 39 28 18 21 26 28 43 34 37 26 29 39 29 48 42 38 37 50 37 43 35 34 36 28 50 32 34 34 54 39 40 35 46 35 28 37 39 57 42 36 38 41 36 41 36 28 39 25 28 24 17 16 15 21 21 23 20 20 24 20 19 16 16 26 25 24 16 21 20 26 25 16 31 17 20 22 25 17 19 13 19 +16 29 26 16 15 23 22 25 27 19 32 25 17 22 25 26 19 18 31 22 26 29 27 19 21 31 30 23 21 23 18 25 27 36 38 38 39 34 36 28 34 45 37 47 36 42 37 49 37 44 40 32 42 38 39 44 31 30 26 40 46 44 49 47 42 31 39 34 29 43 34 29 29 44 22 19 30 23 20 32 52 31 35 35 48 31 33 37 24 31 35 34 33 36 46 31 39 36 26 20 19 28 32 38 31 53 36 31 31 29 43 31 32 35 36 43 47 37 22 33 28 28 24 24 29 22 21 12 5 5 4 1 7 4 13 27 32 48 37 51 61 69 54 47 47 57 45 61 58 53 59 61 53 62 52 59 52 48 57 67 62 40 46 23 11 7 6 4 2 3 2 1 9 15 30 24 36 33 21 23 16 34 37 42 40 40 37 28 36 41 41 43 42 42 55 51 29 35 32 25 16 28 38 27 44 40 31 38 37 36 19 33 29 32 27 35 33 39 46 31 26 29 18 25 31 34 37 32 27 41 44 33 40 36 34 42 47 40 47 30 27 17 28 38 47 30 37 39 43 38 40 43 31 39 45 43 41 34 45 40 45 38 29 31 25 38 35 27 24 14 22 21 30 22 23 17 18 21 30 21 26 26 27 23 23 16 33 20 31 19 20 22 27 16 19 19 26 25 19 21 +28 15 23 22 28 24 32 29 20 20 15 15 27 26 20 22 24 27 25 22 15 20 21 18 25 25 24 26 27 21 32 29 35 27 36 36 30 40 44 30 57 43 45 35 33 37 46 39 31 36 38 40 42 37 34 34 27 28 34 27 27 43 48 42 49 39 44 38 26 36 33 28 32 33 36 33 26 27 36 43 32 52 46 43 32 23 23 37 27 24 31 31 45 46 26 32 28 23 33 25 18 27 30 38 32 34 36 37 53 48 35 27 46 36 38 39 39 30 40 30 41 33 34 18 26 25 27 18 10 3 1 2 6 2 9 11 20 40 46 47 44 58 55 45 59 54 54 51 53 55 51 55 44 58 50 53 50 64 57 50 44 46 35 22 11 8 3 2 3 3 2 15 17 18 26 22 18 27 27 25 28 23 47 28 44 41 52 41 36 47 44 49 36 48 56 38 30 35 30 19 22 27 30 34 45 33 32 41 34 53 38 31 27 37 23 39 61 33 30 33 39 26 35 21 28 28 34 37 36 33 47 37 39 37 32 40 48 38 46 33 37 36 26 28 25 35 39 36 31 44 48 42 48 42 43 40 37 36 30 40 36 40 37 39 33 36 41 29 17 23 14 29 27 25 21 19 23 25 19 23 17 20 20 13 24 23 31 16 21 16 29 25 21 23 30 23 14 22 25 14 +22 26 30 19 29 19 26 25 19 28 26 22 19 19 22 20 18 12 21 18 21 19 21 27 27 19 21 27 23 26 15 32 47 39 27 29 40 39 35 50 51 33 36 29 40 31 40 36 40 35 27 47 36 36 29 38 36 33 25 28 28 49 40 42 44 32 54 25 36 32 33 27 27 33 35 22 26 29 30 37 34 36 42 45 52 35 29 38 26 27 48 42 27 30 36 29 34 32 28 16 18 20 35 38 36 52 41 31 33 31 36 40 45 32 36 34 40 47 39 35 26 15 17 22 23 33 25 23 12 5 0 4 3 1 4 9 7 24 33 39 44 51 47 53 54 47 59 57 47 52 54 64 52 56 56 53 49 53 56 40 53 37 22 10 3 3 6 3 2 4 7 17 17 18 27 23 25 27 25 24 30 28 37 42 34 48 38 40 35 26 48 34 37 34 55 41 26 26 23 19 24 14 23 20 30 33 39 37 34 29 27 33 34 33 25 44 43 43 36 40 33 27 16 21 37 37 43 37 37 31 31 36 43 44 35 51 39 49 37 40 28 34 28 24 37 48 40 43 42 35 46 42 45 41 38 44 39 39 53 39 27 30 41 42 29 36 27 27 16 18 24 27 32 19 21 20 20 19 16 27 25 25 16 25 22 22 32 22 23 20 24 17 27 29 27 19 20 20 19 27 +23 21 30 22 15 19 29 22 33 19 14 22 16 19 21 21 24 21 16 21 21 28 29 21 25 15 17 21 28 22 23 41 26 45 35 51 46 37 43 39 54 40 31 27 32 35 36 44 39 35 41 38 46 42 30 36 24 26 24 23 38 40 39 49 36 46 43 53 34 38 37 29 46 36 28 23 21 19 28 29 29 37 59 38 32 30 29 35 26 47 24 33 33 45 31 38 29 26 23 22 19 24 26 45 38 47 35 39 31 38 36 36 32 42 36 51 44 49 37 25 29 25 31 22 23 30 26 26 17 10 4 7 0 5 9 5 5 6 17 19 29 35 53 60 45 37 53 49 42 61 53 54 49 50 44 54 55 40 36 34 31 11 12 4 4 3 4 4 3 5 7 9 24 16 22 25 26 37 30 31 32 52 51 62 30 53 38 39 50 44 35 44 38 43 47 44 37 37 20 14 19 28 28 43 27 29 39 38 23 31 33 33 34 27 31 37 49 42 30 33 30 45 30 29 28 27 29 30 35 37 40 42 36 49 40 45 39 37 50 37 39 19 28 39 26 39 26 36 46 38 47 33 40 52 44 40 27 38 37 33 40 37 45 39 35 43 34 30 38 28 23 28 26 18 16 20 17 18 15 21 25 16 26 21 20 26 22 25 17 23 18 19 20 22 25 20 20 24 28 23 +10 18 23 16 23 16 21 16 19 24 23 17 27 23 21 26 32 23 22 21 20 19 24 23 12 27 31 25 18 18 31 28 26 32 27 32 40 41 35 34 26 38 41 29 44 38 42 35 38 45 36 43 29 46 29 29 26 22 25 39 40 39 31 45 56 29 48 36 39 34 31 24 35 26 32 31 37 24 25 27 37 41 43 40 30 21 34 19 39 27 42 35 39 39 40 47 29 27 30 19 23 20 20 31 33 47 37 39 30 27 39 34 39 48 44 39 40 50 34 20 20 35 20 32 23 11 29 23 21 17 7 3 7 6 7 4 4 5 10 21 17 15 29 43 37 40 45 44 55 62 57 57 49 45 37 41 33 33 22 20 8 5 8 2 9 5 1 8 4 12 9 24 22 26 25 21 23 33 26 35 32 47 49 41 50 23 32 41 35 45 46 32 29 39 44 34 30 33 17 15 28 29 36 36 31 39 36 48 38 34 28 32 28 32 35 36 57 32 40 34 29 17 27 33 28 23 26 19 28 28 35 26 44 27 45 46 41 40 50 40 24 34 31 23 26 42 31 41 26 40 44 43 46 31 33 39 32 31 47 47 40 36 46 29 33 33 39 31 37 32 21 21 17 24 19 17 24 16 19 24 22 26 11 15 21 22 22 20 26 19 28 25 13 19 28 24 24 18 21 30 +24 12 21 15 17 19 26 20 28 17 23 17 27 22 13 26 23 26 17 33 16 19 28 24 25 22 17 15 22 19 22 29 28 26 26 37 32 45 39 39 46 39 30 37 29 34 52 32 38 32 47 32 34 41 34 33 30 35 30 15 29 49 27 36 43 35 41 41 34 29 45 35 29 27 34 25 17 25 21 37 33 47 25 42 36 27 42 34 28 34 39 48 26 42 29 35 27 25 28 22 14 17 24 34 38 43 52 38 41 39 50 40 29 42 36 36 35 50 41 43 23 26 33 32 36 18 24 26 26 18 21 5 3 3 4 3 3 3 1 11 9 27 22 31 29 48 35 45 41 41 57 55 35 42 27 33 22 17 17 9 9 1 5 4 3 3 0 4 5 11 17 28 28 28 30 21 25 27 24 30 28 46 35 46 44 38 45 38 34 38 37 43 34 50 43 35 25 26 21 17 28 33 28 30 41 32 22 29 38 35 29 26 27 28 24 35 40 40 38 27 28 37 19 24 34 30 38 33 40 29 34 43 32 44 53 40 50 33 46 26 31 27 45 31 28 34 25 34 44 30 37 49 46 30 44 26 42 39 31 32 42 37 42 28 39 29 36 28 28 34 28 23 25 19 22 16 22 21 21 20 24 21 17 27 29 20 16 23 27 13 22 17 28 27 31 20 13 25 19 16 +17 23 24 19 26 20 17 24 20 21 29 26 16 25 26 20 27 24 19 15 22 22 14 17 18 19 20 18 24 28 32 41 40 32 26 32 39 29 36 28 40 37 39 36 40 42 39 34 39 41 52 40 39 31 38 30 25 34 25 34 40 58 66 38 35 35 41 38 45 30 29 20 28 30 23 34 21 21 36 33 32 47 60 59 42 23 28 28 30 38 36 29 35 38 27 47 38 29 34 22 19 22 23 27 30 37 40 38 35 37 36 44 31 37 27 29 43 52 49 26 31 19 27 25 19 17 16 29 23 27 15 10 5 2 2 5 2 2 3 6 8 6 9 16 21 19 23 28 22 39 28 30 21 19 20 21 17 14 6 6 5 2 6 4 2 2 1 10 8 18 23 27 26 21 34 21 25 26 28 27 43 45 36 37 36 39 36 23 35 45 36 36 42 46 46 39 30 30 14 13 29 24 31 32 38 24 29 30 46 35 41 37 29 28 39 32 46 41 35 27 25 31 20 22 23 28 27 30 29 31 35 33 32 40 41 35 39 35 27 45 24 37 21 29 34 30 34 41 43 51 44 31 38 32 34 34 26 34 48 31 35 39 33 30 35 31 42 49 46 37 28 27 17 24 19 22 19 17 26 25 22 12 13 22 29 10 17 21 28 23 21 19 21 31 23 16 14 21 31 23 +22 22 20 23 23 21 24 22 26 26 21 24 16 20 30 13 15 15 24 20 18 22 25 25 22 23 13 18 22 34 35 30 28 26 37 33 41 40 42 35 37 34 39 28 36 31 33 36 35 42 41 41 34 34 37 28 29 34 23 21 38 34 40 50 47 35 47 42 40 34 28 27 23 41 26 34 24 23 31 34 30 31 40 45 38 32 33 29 23 36 31 43 33 36 28 35 36 24 23 30 18 8 25 22 38 40 48 51 34 37 39 28 39 42 49 31 36 28 38 46 38 25 30 21 26 26 25 18 15 20 28 17 7 5 7 1 2 3 1 7 3 7 6 2 12 12 12 16 13 15 14 13 6 11 13 12 7 4 5 3 5 1 3 3 1 6 3 10 19 28 18 19 28 24 17 25 23 24 38 25 36 36 30 38 31 29 29 32 38 28 38 34 42 35 24 29 35 21 16 29 18 31 27 40 31 35 37 37 31 41 24 30 17 33 34 37 50 48 53 39 28 30 10 25 28 36 33 30 31 36 34 28 38 37 48 42 36 37 23 38 32 37 41 35 41 27 34 38 43 34 35 38 35 35 38 42 42 41 38 37 33 44 40 41 32 38 35 31 46 40 36 38 15 16 14 30 33 16 29 20 20 18 19 22 24 22 22 17 18 15 22 26 14 20 20 28 15 20 19 23 +23 22 26 21 21 25 18 15 19 23 19 33 27 27 18 25 28 23 18 24 30 20 19 19 19 8 17 24 30 42 30 34 43 32 37 25 31 34 39 29 34 37 33 35 42 39 34 39 45 30 38 40 40 37 29 31 28 36 34 33 41 43 33 33 44 44 43 32 32 42 37 25 33 23 34 33 23 20 32 38 42 38 30 51 38 28 28 29 15 23 35 39 29 30 39 41 37 31 28 28 16 21 16 23 32 39 42 36 36 42 31 36 28 39 20 27 40 42 34 43 38 36 17 22 35 25 35 27 23 30 15 25 24 8 7 3 1 5 2 3 3 2 3 2 1 6 6 9 7 5 8 3 8 6 8 0 2 1 3 5 4 0 5 2 3 8 11 20 17 25 29 31 17 33 18 26 31 29 42 33 57 44 33 44 35 29 32 26 36 34 27 39 45 50 28 29 26 22 16 15 26 24 39 34 34 37 25 33 37 28 25 36 18 36 33 38 61 53 52 26 30 24 33 28 27 22 29 28 30 27 36 34 23 43 37 50 41 29 37 51 34 30 21 26 34 33 37 44 46 39 36 38 45 29 41 28 22 37 33 38 30 35 40 41 27 38 41 28 29 24 34 30 15 18 20 12 20 17 21 26 21 29 25 25 18 26 27 21 16 22 17 23 21 15 10 16 24 24 26 21 +26 12 23 23 20 17 25 21 24 25 22 20 13 18 21 19 27 17 27 11 25 25 21 25 20 12 17 26 41 37 30 37 33 37 35 38 29 45 31 49 28 40 35 27 37 39 41 51 31 43 36 24 38 41 31 21 20 19 27 32 35 41 34 42 40 40 38 40 30 37 35 35 33 33 41 27 24 14 27 30 31 42 43 40 50 37 25 33 30 35 30 32 41 22 36 35 30 29 32 22 13 15 20 25 24 23 31 40 36 37 35 42 28 35 31 34 35 23 38 46 49 29 25 24 23 12 31 21 19 23 24 27 24 20 12 10 4 0 1 1 5 6 2 4 0 5 2 1 4 8 6 3 4 1 3 4 2 3 6 7 1 6 3 3 7 11 10 20 25 18 23 17 32 28 26 26 23 33 43 33 45 35 35 34 38 34 28 30 26 39 41 43 43 43 33 33 30 18 8 26 16 27 31 29 28 27 30 30 39 34 48 35 27 26 35 45 44 42 37 27 39 26 35 29 27 26 24 34 31 21 32 42 33 46 38 36 29 33 45 41 30 25 17 16 38 27 29 33 22 36 39 32 43 32 38 35 37 48 36 28 38 41 41 29 38 32 38 27 31 22 24 28 31 20 18 20 23 20 16 24 29 16 19 23 27 21 20 24 25 20 28 22 23 20 20 23 22 18 18 20 +21 17 16 18 16 13 17 13 22 25 16 16 23 26 19 23 26 22 10 18 22 17 18 18 13 16 15 26 35 34 32 32 27 38 39 28 30 41 30 44 40 36 38 37 37 40 46 40 31 32 38 32 29 33 29 22 25 23 28 31 39 53 38 21 42 39 38 26 36 38 37 27 21 23 27 20 21 31 23 29 30 31 47 47 46 31 23 33 42 37 24 29 25 29 35 30 29 39 31 27 25 15 13 28 38 29 30 53 40 31 34 35 39 34 29 33 29 30 39 39 47 35 38 17 26 30 25 32 26 20 22 18 22 26 18 7 2 3 0 4 5 1 5 3 5 2 6 6 4 2 6 2 3 2 6 1 7 3 9 6 2 2 6 8 11 25 13 23 8 25 28 31 30 28 30 28 25 31 36 40 45 33 28 34 37 37 32 39 35 35 31 39 39 38 30 24 23 17 10 19 27 33 36 47 27 33 32 36 43 25 25 13 41 38 32 36 42 33 23 33 23 18 34 19 27 36 34 39 26 30 43 39 31 47 33 36 39 35 37 37 33 30 20 32 26 34 26 25 43 37 35 44 51 36 36 40 45 29 40 38 40 32 41 44 30 36 28 32 27 29 32 34 24 22 18 19 14 23 20 19 18 22 28 17 18 20 17 22 20 23 23 21 29 21 25 20 20 21 19 22 +10 17 16 12 27 22 23 19 15 26 21 18 19 19 16 24 21 21 22 29 14 25 17 13 22 24 19 23 29 29 22 30 36 46 35 31 46 45 42 32 37 36 32 32 42 39 40 31 41 38 34 28 40 40 34 29 31 28 28 36 37 43 34 32 40 38 38 38 39 36 29 31 27 25 35 24 20 23 22 24 36 25 38 50 42 36 28 30 29 29 35 29 30 35 30 28 31 46 41 35 21 18 10 19 27 27 36 42 40 35 33 32 35 36 24 36 19 37 34 48 38 42 31 35 34 28 29 29 25 34 25 22 24 23 27 18 15 12 5 6 5 4 5 3 3 4 1 3 6 2 1 3 4 3 1 3 2 1 3 4 6 12 6 18 13 18 23 27 24 23 16 26 23 30 23 25 38 36 47 36 43 39 31 39 31 33 36 33 40 34 48 35 34 27 34 36 17 16 23 24 28 30 30 40 44 25 39 39 29 32 37 33 31 27 29 36 38 36 41 38 23 25 16 27 29 30 28 38 32 31 35 24 43 33 31 38 44 37 34 29 41 32 31 21 30 27 32 25 28 36 35 44 38 40 38 32 43 28 36 33 35 23 33 37 42 25 51 32 37 23 27 37 30 25 19 19 25 21 25 24 18 11 22 21 16 15 17 23 33 20 25 21 22 21 13 20 20 11 23 26 +22 26 22 17 22 19 25 17 18 20 15 25 17 18 16 22 25 24 17 28 20 16 17 19 14 26 26 33 26 36 47 30 39 34 32 40 41 37 29 34 53 45 33 32 30 37 28 41 37 44 49 29 33 40 30 36 22 36 28 30 32 48 31 41 38 35 38 27 33 23 34 32 31 32 35 23 21 19 21 30 36 34 38 31 32 41 30 40 26 25 35 33 36 39 39 29 41 34 31 27 26 24 15 17 28 34 29 31 31 38 20 35 35 47 24 29 44 30 40 41 32 41 38 30 22 33 26 25 35 29 29 34 29 21 22 23 18 21 11 13 9 4 0 2 3 4 1 2 0 3 2 3 1 1 3 2 7 5 3 7 9 10 18 23 16 23 26 18 21 26 20 23 23 22 22 26 39 36 36 38 46 29 49 34 28 21 28 40 47 32 42 35 26 24 33 21 19 17 22 18 23 46 39 31 27 34 38 29 27 27 41 28 35 30 33 31 42 42 43 36 34 29 27 18 23 33 35 41 34 31 42 30 40 39 45 40 42 53 32 45 22 26 19 34 31 24 41 39 30 34 37 43 33 27 41 39 37 37 24 37 25 34 46 42 29 39 39 40 26 31 38 36 40 38 32 23 18 22 22 20 22 19 25 9 23 22 17 20 18 14 22 17 18 27 14 20 25 19 16 21 +24 13 21 18 24 20 20 21 23 18 27 30 19 23 19 23 17 24 17 21 16 21 10 19 22 21 25 27 29 25 34 30 39 36 27 34 25 35 27 28 42 39 25 36 34 36 42 34 35 36 38 37 38 34 28 24 24 27 26 40 26 36 46 40 42 40 38 39 35 26 23 22 30 27 23 26 14 21 22 26 35 23 32 51 38 31 32 25 24 32 51 29 36 32 41 26 40 36 33 32 31 20 9 12 21 29 30 41 30 50 41 41 39 37 28 41 45 32 27 40 31 45 50 40 30 24 32 37 15 33 30 20 22 28 25 25 29 20 12 12 8 5 10 5 3 4 4 1 2 3 2 3 4 2 4 6 1 8 11 8 14 15 14 22 27 24 32 26 28 21 16 32 29 29 16 33 54 55 32 35 39 24 19 29 32 33 38 40 35 38 39 49 31 28 32 23 16 20 15 19 25 27 34 35 30 36 36 25 33 23 41 31 42 45 38 44 52 39 37 28 24 17 32 20 22 32 27 20 41 35 31 35 38 35 31 43 29 38 34 40 39 32 36 16 29 19 34 47 48 40 30 32 44 35 39 44 28 30 42 31 35 32 36 47 31 29 40 43 37 31 35 22 34 32 34 21 23 18 27 13 23 23 14 17 24 19 26 21 22 20 21 22 24 24 23 16 18 16 27 13 +21 18 19 17 17 31 18 19 11 22 24 19 22 16 24 21 19 17 17 16 18 15 26 21 32 25 29 25 34 34 34 35 45 32 21 33 37 29 35 29 39 36 41 47 26 35 29 44 27 34 36 30 36 18 26 32 23 22 35 37 40 31 32 31 38 27 36 27 33 34 35 27 34 21 33 21 23 21 27 26 28 46 34 32 36 34 22 30 34 27 28 25 32 34 45 26 36 37 27 25 22 23 18 16 16 22 35 36 47 45 32 36 30 31 31 28 22 37 39 28 44 40 51 40 41 35 29 37 22 18 24 22 30 26 25 24 15 26 29 20 21 10 9 10 2 7 8 5 7 5 6 8 7 6 8 10 6 11 17 14 11 24 18 25 24 26 31 23 27 25 27 25 25 27 25 31 34 43 38 39 31 31 30 41 35 28 42 29 30 34 28 42 33 32 32 16 18 20 29 20 20 35 23 26 31 30 36 43 23 30 41 30 32 25 22 43 40 52 31 37 29 18 25 22 18 31 26 24 21 31 34 35 26 26 44 36 29 43 27 37 37 27 25 28 30 30 17 32 31 31 40 44 32 31 32 35 36 40 34 29 32 35 32 32 36 35 33 40 35 31 31 23 42 22 33 24 14 23 9 16 26 15 26 19 14 28 11 20 17 13 21 22 18 17 20 16 25 19 15 27 +20 17 21 15 29 18 14 22 24 21 21 25 19 17 21 17 27 20 13 8 19 24 25 24 22 36 29 31 33 37 35 27 42 28 23 32 41 39 33 38 36 42 39 36 33 27 24 37 49 44 36 39 36 24 27 23 20 31 36 52 38 32 46 41 33 36 30 36 25 34 29 28 30 20 33 29 19 12 24 29 25 27 37 48 28 17 26 25 20 24 28 21 37 26 42 38 33 34 37 19 40 27 17 16 17 28 34 25 37 40 41 35 26 38 45 32 39 28 33 23 31 33 32 32 34 41 34 28 26 27 27 22 19 30 20 16 28 23 30 26 18 14 14 15 10 12 14 7 12 14 5 7 13 17 9 17 11 20 20 19 27 30 26 31 29 21 27 16 19 23 24 20 25 18 37 34 40 45 45 39 40 28 36 31 30 35 38 36 33 33 28 39 33 34 25 15 17 15 22 18 31 26 31 24 40 35 29 31 38 24 22 25 34 38 43 31 42 50 32 29 24 22 29 29 30 27 30 43 31 27 27 36 35 40 36 34 34 41 48 37 32 30 26 22 33 29 36 26 33 31 39 30 36 33 31 29 33 28 32 26 36 32 31 36 32 37 23 32 34 41 32 37 33 26 46 27 27 19 22 21 18 30 20 24 21 18 16 17 17 16 12 21 24 19 22 24 18 18 17 21 +19 21 34 26 17 19 17 19 24 22 27 24 20 21 23 19 14 19 16 13 20 22 26 20 26 37 22 31 38 35 35 31 22 28 31 34 33 27 37 29 33 35 35 21 55 37 28 32 25 29 30 48 31 40 26 24 26 27 25 36 29 39 31 37 26 30 34 29 27 25 23 28 37 27 35 28 25 22 19 21 34 25 47 41 36 28 25 25 26 26 28 29 34 31 32 28 34 22 23 31 24 23 10 12 19 17 26 31 25 30 46 36 35 32 27 25 35 29 26 32 27 29 48 34 31 39 38 22 19 31 22 25 14 27 26 26 24 22 23 29 25 24 15 19 21 23 15 12 13 19 13 11 17 16 14 24 22 16 25 22 25 29 30 23 26 17 19 26 25 26 29 30 18 26 32 45 43 29 34 32 35 36 27 39 34 36 36 38 38 39 42 31 23 30 29 17 11 14 31 23 27 32 35 35 33 34 23 30 22 23 35 23 29 25 34 36 36 32 36 30 12 16 22 28 23 32 22 24 35 27 44 28 34 22 48 30 36 35 40 34 33 33 25 44 28 21 33 30 31 31 32 37 30 41 29 36 37 43 35 34 32 32 29 39 37 32 32 33 43 41 45 29 33 28 33 25 24 28 20 29 22 14 21 33 16 16 20 16 18 18 27 18 16 17 26 18 23 21 20 15 +18 16 24 20 21 26 19 18 19 20 18 20 12 14 18 18 24 19 19 16 25 21 33 31 33 20 33 40 34 32 40 37 37 34 42 43 19 40 33 34 26 36 30 26 30 39 34 31 31 48 36 24 33 26 26 26 32 33 37 31 39 38 30 30 37 40 31 27 36 24 23 38 26 33 36 21 27 19 15 22 34 28 42 40 49 40 29 30 29 27 17 31 34 25 32 41 32 34 36 33 39 16 15 14 17 22 31 28 24 43 41 36 39 33 23 31 33 27 31 31 36 35 34 32 29 40 41 31 27 20 30 27 28 20 26 18 31 30 22 19 25 20 19 19 15 29 18 27 18 24 19 24 15 23 19 24 22 22 22 21 20 28 23 28 28 25 18 19 33 30 16 17 39 40 42 44 37 38 22 25 37 30 32 32 42 32 37 35 34 27 36 24 33 22 13 14 11 19 22 36 31 26 40 28 37 25 36 28 27 22 32 20 20 34 49 39 36 29 30 33 26 25 26 15 25 31 31 32 20 27 34 35 32 34 39 37 36 39 28 29 30 33 25 31 23 23 26 36 21 32 41 46 32 32 43 38 45 35 33 36 31 24 16 26 27 25 41 37 27 40 33 33 22 30 37 21 32 34 35 18 20 16 23 13 16 17 18 14 17 13 19 18 22 17 14 26 23 23 19 26 +13 24 15 25 23 20 21 16 20 21 17 20 15 19 16 15 20 23 16 20 20 26 27 21 40 27 25 28 35 37 31 39 36 38 34 26 27 20 41 44 33 37 33 40 36 39 31 37 27 38 37 21 27 17 24 22 22 30 28 30 40 24 41 22 38 36 28 29 35 36 30 24 26 30 36 23 31 20 17 21 33 24 38 52 39 42 28 32 23 29 30 23 39 31 23 34 31 26 39 20 27 18 22 22 8 16 30 38 30 34 36 32 34 30 41 43 39 27 32 35 29 34 34 30 32 42 29 38 34 24 22 36 18 22 21 22 29 25 21 21 19 29 14 23 28 24 18 30 21 32 15 28 29 27 23 34 25 17 26 25 21 28 24 24 37 24 24 23 21 30 28 26 30 36 37 38 34 39 21 32 37 32 32 34 33 36 36 30 38 47 41 33 28 32 16 11 16 33 26 21 33 31 34 29 30 24 30 36 32 22 33 37 31 28 37 52 41 35 22 34 37 30 27 26 32 26 33 19 24 26 35 23 28 36 31 33 31 38 35 32 36 23 26 16 28 22 25 40 24 36 33 37 31 32 27 34 46 37 30 31 32 33 42 35 22 39 31 33 38 31 31 26 31 41 35 29 29 32 28 20 19 20 11 18 19 18 17 24 22 16 19 20 13 15 18 18 19 25 14 20 +17 19 14 16 20 21 20 23 14 20 20 18 11 19 17 21 20 22 24 23 39 37 28 34 35 32 29 45 33 28 41 29 40 44 37 40 32 28 36 26 29 37 32 34 36 40 33 36 34 33 19 24 28 26 28 24 30 37 30 28 32 34 38 31 37 28 40 35 33 22 31 27 33 21 33 24 19 18 16 25 33 36 22 26 49 29 34 24 25 35 34 24 25 36 27 27 31 27 34 36 22 31 24 14 13 16 21 32 22 31 37 41 34 21 33 30 25 35 32 31 31 37 30 37 31 33 37 40 26 36 21 27 26 16 30 25 19 24 23 24 23 21 21 21 16 23 15 20 24 21 25 26 25 30 13 16 21 17 25 22 36 25 20 26 26 26 25 21 19 36 33 27 39 49 44 33 34 37 27 21 36 36 25 25 40 34 28 40 38 31 28 27 21 17 13 7 23 15 26 34 33 43 29 45 27 22 39 27 28 24 22 31 19 28 46 52 45 43 38 28 25 27 30 24 15 22 25 28 22 26 37 29 24 32 40 38 38 38 31 28 40 35 34 18 39 20 22 30 19 37 31 27 40 37 39 43 37 39 38 35 27 31 26 34 29 42 34 38 36 43 43 30 36 37 27 32 34 31 33 21 20 23 24 17 26 19 15 23 16 20 23 26 13 15 26 26 23 22 12 20 +11 16 13 7 20 27 19 20 25 24 18 14 17 18 18 21 21 16 23 18 22 28 19 27 26 30 45 29 33 30 33 33 41 37 38 44 30 29 33 36 42 30 38 50 18 45 19 29 35 28 38 27 32 32 23 33 26 32 40 31 30 22 37 44 31 39 33 40 35 33 26 18 26 28 30 22 16 26 25 27 29 24 23 45 31 34 37 21 32 30 24 24 25 24 42 30 39 29 26 33 26 23 19 20 13 21 14 22 33 23 38 36 31 20 37 35 29 36 23 35 31 29 27 26 38 27 32 42 38 39 36 21 27 21 30 29 24 25 29 21 24 29 25 16 14 19 19 18 27 27 28 30 22 19 18 31 36 16 20 27 31 29 25 26 20 30 21 26 17 30 27 35 42 37 44 33 37 28 27 33 40 41 33 17 41 41 30 32 33 36 29 28 34 19 13 16 22 22 18 33 24 29 21 34 28 40 28 29 23 28 34 31 21 31 28 40 36 38 37 28 25 17 26 26 34 25 33 30 34 28 19 28 38 28 28 26 38 31 48 37 35 40 27 25 26 36 29 22 29 30 31 34 35 32 42 26 29 34 36 23 46 41 31 27 36 34 34 29 29 32 39 31 30 33 39 40 24 25 30 18 20 23 19 18 18 17 17 12 21 23 23 22 23 24 20 15 25 20 17 20 +18 18 20 15 15 13 17 9 18 23 12 19 18 21 16 27 22 23 25 36 25 24 32 28 23 26 36 38 26 31 39 35 39 35 30 34 29 29 35 29 32 28 32 26 29 43 29 38 38 30 34 26 24 21 28 21 19 31 33 37 40 29 47 31 23 30 32 29 26 33 30 33 37 24 16 25 12 15 18 34 33 21 29 42 39 33 22 27 28 22 29 20 35 38 29 28 36 26 33 23 27 21 26 30 22 14 16 15 20 30 41 41 34 30 40 28 29 33 23 37 27 31 24 32 31 27 30 50 38 48 28 34 19 24 31 27 27 21 27 22 16 27 24 22 21 33 22 27 27 23 19 25 17 22 27 22 23 20 29 20 20 29 24 20 26 25 28 30 24 35 43 33 33 34 31 22 27 32 32 28 40 27 34 33 34 41 37 28 29 26 26 27 25 11 9 13 16 18 25 42 27 25 30 35 39 29 23 36 26 26 31 15 24 39 36 48 36 27 35 35 22 24 25 19 21 27 20 34 27 27 31 30 37 24 39 39 39 26 40 39 24 30 26 23 26 26 26 23 31 26 32 37 32 37 36 29 33 28 38 39 28 35 16 25 35 34 29 40 28 41 34 41 36 31 29 24 24 32 29 33 14 20 24 12 19 16 15 16 25 17 23 16 22 20 13 23 16 20 25 20 +12 24 14 21 15 20 19 20 16 17 19 15 23 20 25 30 23 23 23 29 35 25 34 28 35 36 35 40 30 27 33 31 27 27 36 35 32 39 30 38 37 35 34 31 31 29 28 30 34 31 31 26 25 24 29 14 31 33 34 36 41 37 32 36 33 31 24 22 30 43 28 22 27 23 24 33 17 20 21 18 30 25 35 43 42 34 27 23 33 23 21 25 28 29 35 18 37 21 25 35 21 20 16 26 13 9 18 20 30 31 24 34 43 38 34 29 27 27 30 27 38 39 34 27 27 33 33 31 31 27 39 28 20 28 13 19 22 27 23 19 16 20 19 22 20 29 30 27 31 32 18 26 26 15 28 18 21 21 23 15 24 18 16 22 24 29 33 36 40 30 34 36 38 36 29 17 34 37 21 31 33 32 24 31 32 38 42 41 31 34 26 26 18 12 17 23 28 26 30 27 34 21 25 30 35 33 22 24 30 19 21 18 25 29 31 31 37 36 37 26 22 18 27 25 23 34 20 23 33 18 33 41 39 34 46 33 32 30 21 32 45 29 34 26 23 23 29 27 20 25 32 27 43 39 34 33 28 34 32 33 44 19 30 30 19 37 30 42 30 31 25 25 42 32 24 34 35 42 20 29 26 25 24 29 19 25 17 18 25 24 16 22 16 22 14 20 17 16 24 21 +13 24 14 15 16 17 22 24 14 19 14 23 18 18 21 32 24 26 28 23 27 30 34 39 31 37 38 31 37 26 30 39 30 38 29 30 34 27 33 27 34 33 40 30 34 31 36 29 29 36 23 24 25 21 26 35 30 38 35 31 39 36 28 32 37 32 30 28 29 22 22 24 33 29 17 30 31 28 14 20 24 22 29 47 35 44 34 32 28 29 30 26 25 29 25 28 21 39 32 21 19 22 31 27 22 10 17 15 21 29 23 45 32 35 29 32 30 35 34 20 33 36 28 36 27 24 32 30 43 42 37 39 36 30 28 18 27 23 29 27 22 36 32 22 22 18 25 21 19 22 26 23 23 20 20 20 22 23 18 21 24 23 24 31 27 39 31 30 44 34 33 24 33 36 35 26 30 47 33 32 25 31 25 29 40 24 39 33 31 21 32 16 21 16 9 16 22 18 28 25 31 36 22 25 34 30 30 21 21 22 31 26 28 27 40 31 36 40 27 36 31 28 19 25 24 26 28 40 26 33 35 31 23 38 34 40 30 34 31 29 30 32 26 19 26 35 21 27 22 28 28 22 28 28 37 33 24 29 48 35 38 35 30 28 40 31 43 32 31 32 29 36 25 30 27 31 20 33 38 26 24 31 25 34 35 25 21 18 12 12 15 14 17 15 13 13 19 14 17 21 +20 18 11 20 12 16 12 14 14 24 22 20 25 17 25 36 25 15 28 36 18 29 30 22 36 37 29 24 33 41 38 34 25 45 34 27 28 23 30 35 29 34 39 31 40 24 29 34 29 34 37 25 19 28 22 30 30 30 24 24 21 31 31 33 24 24 31 31 34 26 28 40 19 32 26 23 27 27 26 24 31 26 24 39 39 28 36 23 22 19 21 29 32 27 29 29 28 25 26 22 30 26 13 14 11 24 19 14 22 22 24 31 25 39 40 33 27 24 24 37 35 42 31 17 32 32 30 40 30 27 34 35 42 39 32 25 27 23 22 24 25 21 20 25 13 19 20 26 26 24 9 21 19 29 25 14 22 25 19 24 18 19 23 30 25 28 29 30 41 37 33 36 35 33 41 20 29 28 35 37 27 31 27 28 35 35 40 28 30 27 20 20 12 8 13 18 17 14 29 30 26 28 28 23 28 25 21 25 18 24 22 23 22 37 47 34 36 21 33 34 19 17 29 29 20 27 21 25 23 22 32 34 41 23 34 32 29 31 31 28 37 49 49 30 28 28 27 36 32 29 30 34 25 33 28 30 31 29 38 31 29 32 21 32 29 35 34 32 42 32 28 32 30 36 33 35 35 32 23 20 22 24 28 28 22 30 23 22 15 15 18 17 15 11 16 15 11 14 13 27 +20 11 23 14 22 19 17 30 16 23 18 13 15 35 20 23 26 24 26 22 33 24 33 34 34 34 31 29 25 20 38 26 35 32 26 32 30 29 36 33 38 32 23 34 44 42 33 29 40 26 31 25 22 25 29 21 26 25 34 37 35 42 34 32 37 27 37 35 38 21 28 21 27 18 18 25 16 24 22 20 25 19 22 28 51 52 43 29 19 32 24 19 35 17 22 23 25 30 30 29 42 27 31 24 23 16 21 9 12 22 29 27 39 41 29 30 42 30 36 27 29 30 30 20 20 26 30 34 35 27 29 32 32 34 26 37 26 32 29 27 19 27 23 27 18 27 25 20 30 13 27 26 20 15 22 16 24 22 28 23 25 21 29 30 29 45 33 30 36 26 29 25 23 28 30 25 32 28 42 30 22 30 25 24 28 38 38 23 23 17 30 16 7 16 15 26 16 22 22 24 33 28 40 27 33 37 18 23 13 21 27 21 26 24 39 35 38 24 30 33 17 20 19 19 12 29 30 24 26 26 33 22 32 34 26 29 37 28 26 30 39 41 34 25 21 34 25 25 25 19 27 27 32 35 35 29 27 27 26 39 38 30 27 33 31 24 25 24 45 34 28 26 35 32 19 32 29 29 37 22 28 18 31 19 24 30 26 33 18 24 31 12 22 17 18 15 23 28 27 15 +18 19 15 21 20 15 24 16 17 15 31 21 27 26 28 35 21 22 31 24 27 32 33 36 38 27 39 31 29 32 30 34 29 31 34 33 33 36 26 31 44 26 33 36 36 31 40 25 32 33 31 22 25 23 25 25 26 20 46 30 27 43 29 25 27 23 23 27 28 25 23 30 30 28 22 13 15 19 32 21 24 21 27 32 33 38 24 26 26 17 25 29 11 24 32 29 21 25 31 33 37 29 31 23 20 23 9 20 13 23 16 22 24 28 45 23 29 23 36 29 27 21 27 31 30 32 38 35 34 34 24 25 33 31 34 36 35 32 29 23 24 29 29 28 19 20 26 28 29 24 24 19 26 32 23 28 31 26 17 21 29 18 42 32 38 45 42 33 32 32 25 34 23 37 34 35 21 22 31 29 31 37 36 33 38 28 33 42 30 28 24 12 12 13 10 21 24 30 20 31 24 25 30 29 26 30 24 22 27 26 25 27 28 28 33 47 28 24 33 26 21 21 12 23 27 28 31 31 23 23 30 31 27 38 29 26 30 42 32 31 31 32 26 32 23 26 35 25 32 22 24 24 27 33 33 33 29 30 30 46 30 42 40 37 27 26 31 29 25 26 37 30 33 26 27 26 23 41 31 29 31 26 32 35 25 25 30 28 20 18 24 16 21 11 14 14 13 16 21 14 +17 27 22 19 22 16 29 23 29 22 33 21 28 22 32 28 29 34 30 26 29 41 33 33 24 29 32 21 36 28 23 21 28 33 24 35 39 29 32 28 22 36 21 42 23 35 34 29 30 26 28 26 15 27 24 23 30 39 26 35 28 31 45 34 27 40 25 38 30 26 29 28 29 31 29 19 21 22 20 22 19 25 22 25 29 38 25 30 19 25 30 21 20 21 24 24 33 28 27 19 21 28 24 18 17 23 23 10 20 16 18 28 21 37 38 33 39 27 28 31 39 27 27 23 38 36 29 29 27 32 32 25 38 30 19 38 43 29 33 40 33 34 29 30 27 26 25 24 43 25 22 29 27 24 29 21 32 27 27 35 28 28 29 38 28 35 24 25 22 30 35 19 29 27 24 28 37 31 26 30 24 40 25 27 23 29 28 39 24 16 10 14 9 17 25 28 24 28 27 27 29 30 19 26 35 26 22 31 26 35 35 25 25 38 37 32 26 25 33 20 16 19 17 22 20 18 27 26 35 33 34 27 25 33 30 40 36 34 29 36 40 25 41 30 17 27 24 28 25 22 18 26 37 30 33 39 31 36 24 26 37 40 28 35 23 31 24 30 32 35 31 37 22 32 24 28 34 31 28 28 27 23 32 27 29 30 30 29 33 27 22 28 33 20 29 21 19 28 16 19 +31 28 27 16 22 26 17 20 23 25 22 22 30 27 16 20 31 20 26 26 46 35 22 35 30 26 29 16 29 34 30 32 26 30 33 38 35 31 26 25 29 26 30 35 24 40 34 26 23 21 20 23 23 21 30 22 45 37 36 42 22 35 30 23 32 30 27 34 29 45 23 29 33 28 24 21 23 15 15 25 22 35 34 30 50 28 31 28 22 28 25 24 24 23 28 35 31 24 25 25 35 29 19 23 21 26 17 9 15 19 16 34 22 24 27 33 33 30 34 36 32 29 45 32 25 30 30 27 26 26 27 44 26 34 34 35 27 25 38 27 32 40 38 38 37 33 25 26 23 23 32 27 27 25 31 32 38 32 41 36 35 36 32 32 25 28 33 25 28 21 30 38 29 29 28 27 22 24 33 29 38 22 25 42 40 45 22 29 27 14 18 13 12 12 18 21 30 19 33 34 36 23 31 30 22 31 26 21 23 34 19 27 29 34 40 37 40 35 26 24 15 31 20 18 29 22 33 23 19 28 20 25 23 28 24 32 21 34 31 30 32 32 35 29 16 26 34 33 20 27 26 36 22 35 36 30 25 22 40 29 25 31 26 24 24 23 26 23 33 30 41 31 24 26 25 31 27 36 35 26 25 28 24 22 28 22 31 24 31 34 22 31 29 27 21 25 21 17 31 28 +33 15 24 19 21 20 20 29 19 26 26 27 21 28 17 26 24 18 30 29 34 38 30 39 32 25 29 33 30 35 25 30 31 39 32 32 30 52 37 30 31 30 26 31 24 43 27 28 24 22 26 21 22 19 20 19 30 37 31 33 27 34 27 31 35 27 27 24 34 30 18 29 23 24 23 20 14 30 18 24 33 30 32 39 30 36 31 27 30 24 24 19 20 24 26 24 34 20 22 25 20 23 27 23 21 20 29 19 13 8 15 20 33 32 25 39 28 33 33 34 23 30 31 22 42 40 32 36 30 22 33 34 32 18 30 35 32 39 38 20 32 31 32 33 29 36 41 28 39 30 35 26 34 33 27 33 46 24 32 34 48 38 27 23 36 29 30 28 23 26 24 31 20 28 16 33 32 22 26 33 28 27 22 32 26 33 34 31 26 23 12 9 10 19 31 13 20 20 29 36 24 30 28 28 37 27 24 23 21 20 23 28 24 38 30 44 30 27 37 22 18 18 21 20 18 23 21 21 26 22 22 33 19 35 35 22 34 29 34 27 31 24 27 38 23 27 22 23 24 30 34 34 21 26 28 20 32 23 29 39 29 42 42 29 42 28 24 36 32 33 34 34 37 27 28 33 23 25 40 38 31 33 29 24 40 36 17 19 33 24 33 28 18 24 25 31 32 20 28 30 +24 29 41 26 20 21 21 31 28 28 32 23 38 20 36 30 36 30 29 30 34 29 24 34 28 21 34 31 32 23 25 37 32 34 31 26 39 37 29 29 33 28 23 29 33 33 29 17 25 24 18 25 21 28 21 29 29 36 38 28 29 32 35 32 36 17 27 34 23 20 33 20 19 25 22 28 24 15 30 15 22 35 25 38 28 37 37 34 26 17 32 27 20 24 30 21 33 27 34 38 34 38 23 24 28 23 11 15 10 8 16 15 27 21 31 22 31 30 34 25 26 29 27 24 33 37 34 34 35 27 25 27 25 31 31 19 32 27 36 29 30 42 47 31 36 37 24 27 41 25 31 24 31 34 31 34 28 25 44 26 35 38 28 40 21 30 34 29 30 36 24 29 26 23 30 21 19 26 33 21 25 29 33 39 24 24 24 27 20 16 8 20 14 20 19 22 21 29 29 33 22 25 29 30 29 29 20 22 18 28 28 25 25 31 40 36 29 34 28 16 17 20 29 23 14 17 20 26 23 27 25 27 30 28 25 33 26 28 41 26 33 35 32 30 32 21 10 23 22 25 30 23 37 31 29 31 34 23 32 30 27 31 22 18 28 32 29 34 24 34 35 27 37 31 31 25 25 23 29 29 27 27 24 26 25 22 30 28 16 25 24 21 30 29 26 26 24 22 21 26 +24 30 13 18 38 28 31 21 37 22 12 29 31 20 32 29 36 30 28 32 33 29 32 31 28 30 28 31 43 20 30 34 30 35 32 21 37 28 38 37 22 35 32 29 27 28 23 24 23 25 19 17 23 19 23 33 24 35 28 26 29 34 33 43 36 29 32 27 24 25 21 26 20 18 22 27 11 21 16 19 26 32 23 29 37 32 36 29 27 23 19 21 23 24 30 28 19 25 24 32 34 21 28 31 31 20 15 11 12 14 16 14 19 25 29 23 31 36 44 34 28 25 22 27 28 33 31 33 30 24 19 25 31 28 28 31 22 35 27 35 36 31 30 27 29 37 18 38 32 37 38 31 30 27 34 37 29 23 26 26 37 30 34 22 27 26 27 23 36 19 26 20 14 35 29 32 34 34 37 33 32 36 30 31 32 30 28 37 21 5 11 19 17 19 21 26 23 22 28 24 32 33 26 22 32 21 34 23 19 28 23 30 39 33 37 32 37 22 25 21 30 14 15 23 24 22 17 22 26 21 28 26 25 26 31 35 23 21 31 39 37 29 40 33 28 25 23 19 25 18 33 22 35 42 27 34 26 33 32 32 28 34 29 30 43 44 29 26 33 25 31 41 26 22 37 34 28 32 31 34 34 34 26 29 29 35 35 34 24 25 26 30 26 25 20 36 29 31 26 26 +23 22 24 33 30 36 31 24 26 32 21 32 16 32 19 28 14 27 24 33 30 27 23 36 26 25 14 31 27 36 26 26 25 28 31 33 40 32 30 32 32 29 25 27 22 25 26 17 20 28 25 27 20 25 22 38 45 35 34 37 30 29 24 24 27 33 35 23 31 20 23 20 24 32 16 27 17 11 25 18 19 23 18 25 33 33 36 30 26 23 35 24 24 29 30 19 27 25 30 22 20 21 27 30 26 27 13 19 16 8 8 17 32 19 25 28 28 37 32 20 30 30 28 34 33 31 28 36 24 32 28 32 32 33 26 20 34 31 22 36 26 25 28 29 20 28 31 24 35 29 46 29 27 29 23 28 29 25 20 22 35 26 22 24 27 28 40 34 31 24 28 27 14 22 37 34 26 35 36 44 34 38 25 34 30 25 33 14 14 14 17 23 27 20 24 27 29 29 18 28 23 29 29 27 30 27 21 18 25 23 26 30 32 30 27 23 18 39 29 19 17 26 18 26 24 16 17 17 17 27 28 31 33 27 22 27 28 26 33 31 38 40 29 28 27 18 35 25 24 30 14 37 24 17 35 34 31 37 24 25 24 24 31 30 23 26 27 26 22 30 26 18 28 27 27 27 24 29 34 27 25 27 30 21 22 27 25 21 37 15 28 25 28 23 23 30 33 23 24 21 +27 26 22 31 23 22 30 23 18 30 30 23 28 31 31 29 27 32 26 26 23 29 32 27 29 36 28 30 29 23 19 24 25 31 29 37 25 28 28 41 26 27 29 25 27 24 26 25 19 18 27 17 29 23 27 22 27 33 34 18 35 24 35 27 32 18 31 34 33 17 24 28 28 23 19 17 18 14 14 17 29 19 33 31 30 44 40 37 25 19 15 23 21 15 22 32 24 23 25 29 24 26 25 26 27 24 16 11 13 16 14 12 19 23 24 20 34 21 33 36 31 22 30 34 25 24 25 17 26 27 33 34 26 24 26 32 29 26 21 28 31 29 32 28 33 29 24 20 19 24 28 20 37 42 25 31 32 21 24 27 24 22 22 22 30 20 38 25 28 21 24 18 28 22 25 25 30 25 34 45 37 38 17 24 29 22 14 18 12 13 18 16 22 33 15 27 26 23 32 23 33 27 24 26 24 20 27 17 17 16 22 26 22 38 35 35 24 32 36 15 14 18 21 31 26 22 18 37 18 28 31 25 38 20 19 32 25 31 31 38 32 43 30 42 29 21 20 23 14 19 19 24 24 19 27 25 21 21 24 28 26 32 22 26 23 39 29 26 16 31 22 27 28 19 23 28 38 27 23 28 27 33 26 27 38 34 28 41 31 26 28 33 32 31 34 26 24 28 24 23 +30 29 36 22 25 26 22 26 21 32 26 31 19 35 26 29 29 32 30 25 29 23 31 22 27 24 29 21 24 25 38 21 30 29 25 27 35 33 24 35 30 34 34 32 26 28 17 22 27 22 21 16 19 15 24 28 35 35 26 28 32 36 34 24 23 29 22 22 13 26 23 21 23 20 15 23 21 25 19 22 17 21 19 24 32 31 36 36 32 27 22 24 27 20 18 21 18 32 24 22 22 26 25 19 32 22 20 17 26 11 17 10 16 19 20 26 21 20 23 41 30 35 26 28 23 35 21 28 29 23 15 29 23 39 19 28 23 24 31 29 23 20 29 28 30 19 17 26 28 18 26 28 25 27 33 26 25 28 27 24 30 21 23 21 20 26 38 33 35 33 27 26 43 35 29 30 36 30 36 36 31 27 24 26 18 20 18 11 16 15 12 19 16 17 25 26 29 26 26 34 29 24 36 21 28 26 33 33 33 22 24 27 28 32 32 28 28 23 28 26 26 15 16 14 33 25 28 18 30 24 24 17 25 27 31 21 30 32 28 22 18 21 26 29 34 35 24 25 26 22 24 23 29 16 31 21 30 21 28 21 27 23 31 22 38 30 25 37 30 36 29 37 32 35 23 24 21 25 31 27 28 24 22 30 23 25 34 36 31 29 33 23 25 20 22 24 21 23 23 27 +29 23 33 32 34 20 22 25 24 21 35 32 31 31 36 20 28 30 30 34 29 20 23 29 34 31 17 35 27 26 27 22 40 25 26 29 24 31 29 24 31 29 36 33 28 18 31 17 20 9 30 23 24 25 24 28 22 41 30 24 30 24 30 34 26 29 28 18 25 15 30 21 29 21 24 19 20 10 13 16 14 31 22 26 26 22 31 28 34 20 26 25 18 23 19 23 25 20 33 25 27 27 31 19 25 26 27 21 24 18 14 14 14 7 20 28 25 16 31 26 38 19 37 22 36 37 44 25 20 36 28 18 21 28 26 27 21 29 25 20 29 32 24 24 32 21 24 29 16 27 33 32 34 27 24 27 31 20 29 25 25 22 36 30 25 19 23 28 25 26 28 24 23 28 27 33 29 27 36 32 30 20 30 29 27 19 13 14 14 10 22 20 19 25 22 23 31 21 25 22 21 23 22 27 23 20 24 20 22 28 32 16 27 39 28 29 18 21 21 23 17 18 22 18 16 20 21 22 22 27 14 27 33 20 22 28 17 30 22 33 31 17 29 30 40 28 22 19 26 19 25 27 22 30 28 33 34 30 21 23 31 31 32 30 36 31 24 32 38 26 25 20 32 34 24 23 19 20 34 34 27 27 24 28 29 24 28 20 31 25 21 31 29 31 26 23 26 32 22 22 +22 33 29 25 30 28 27 25 24 30 26 26 24 22 24 23 20 36 26 23 20 26 19 21 24 32 20 28 25 27 21 27 24 31 35 32 24 26 25 23 29 27 22 29 31 24 25 24 27 18 27 18 18 24 29 39 25 35 35 30 21 19 31 21 27 23 23 26 21 25 16 27 33 29 19 23 9 21 19 21 11 22 22 28 31 37 38 24 29 19 24 22 23 25 22 20 18 29 32 20 23 32 29 24 19 31 26 24 19 18 21 14 17 11 11 18 22 24 20 26 28 26 37 30 30 32 24 19 31 29 26 23 29 29 18 26 23 24 30 25 26 32 30 27 24 23 20 25 23 23 20 20 36 21 27 28 31 28 29 27 31 31 36 23 25 31 21 32 18 19 34 30 31 31 22 32 36 34 36 26 27 14 21 23 11 12 15 15 16 16 26 25 21 20 21 23 25 23 19 28 28 26 17 22 27 23 10 19 17 21 24 22 40 26 31 25 23 31 20 15 19 7 20 21 26 30 17 19 24 32 25 17 31 32 21 24 25 26 29 33 34 24 31 21 40 29 28 25 25 26 20 14 18 23 21 28 27 26 28 23 36 32 37 27 30 23 31 19 27 35 20 15 27 17 24 20 31 21 35 29 25 30 32 27 23 20 27 34 23 29 22 25 26 31 30 31 32 28 25 25 +26 19 26 28 26 29 23 25 34 33 23 28 20 26 28 28 25 28 21 28 31 32 32 22 20 28 23 25 19 31 28 33 15 19 23 20 32 24 23 24 27 26 26 15 21 21 20 26 27 16 19 15 23 24 28 28 26 22 26 20 36 30 29 24 26 33 33 26 28 25 25 17 20 27 20 23 21 12 22 13 20 22 26 26 25 37 31 30 18 26 22 15 27 27 17 16 23 25 34 30 25 26 19 26 16 25 23 23 20 21 23 8 13 8 17 16 15 25 24 31 25 30 33 33 29 36 31 22 28 33 31 23 27 26 33 22 30 24 27 20 23 25 17 20 21 15 19 30 35 32 19 35 26 26 19 32 16 19 14 22 24 30 34 20 31 27 25 42 23 25 27 29 23 26 28 30 25 27 31 34 21 16 23 19 16 17 12 15 20 23 12 13 29 29 25 27 25 30 19 32 29 30 24 30 14 15 25 23 21 28 38 30 26 37 28 23 17 18 23 15 18 14 17 24 17 21 21 16 27 22 24 18 30 26 29 21 31 33 21 31 34 33 31 28 39 23 22 22 31 20 24 17 28 28 22 22 24 32 17 27 25 21 31 23 20 32 38 18 31 25 27 24 19 32 31 26 25 29 28 25 24 27 27 30 30 31 23 26 28 27 28 21 22 26 35 23 31 29 19 31 +23 32 27 32 27 33 23 29 27 27 33 30 24 25 21 23 23 17 32 26 28 28 23 28 25 29 25 28 33 39 37 24 41 29 21 30 32 40 33 26 31 23 32 23 27 19 17 19 32 18 22 18 24 31 32 33 28 26 24 27 28 27 30 19 24 24 23 25 24 24 27 23 22 16 13 16 17 16 21 11 14 22 27 32 11 25 35 24 32 29 32 19 14 17 17 20 17 18 26 27 18 28 19 27 34 28 35 26 19 15 14 20 16 6 14 6 20 23 18 29 29 18 35 27 33 29 28 27 23 25 37 25 24 22 29 29 28 29 26 20 20 27 24 23 18 30 26 29 30 27 25 26 19 21 20 29 28 30 21 18 22 24 22 23 32 33 28 30 16 24 30 24 28 24 38 24 24 22 25 18 14 20 26 12 9 11 10 12 18 16 17 24 19 14 25 19 28 22 17 27 32 24 24 20 18 26 20 21 23 24 29 32 45 42 28 38 23 24 21 19 23 10 10 12 24 22 24 24 31 30 22 26 25 25 30 22 24 30 25 27 33 32 34 28 30 36 23 19 22 22 17 26 15 21 24 20 25 33 27 28 27 30 20 21 31 31 27 30 43 31 23 29 30 25 29 24 29 33 31 27 20 28 22 24 16 29 29 16 23 22 27 16 27 17 25 22 32 13 28 26 +35 21 33 24 17 20 31 26 22 24 22 20 25 28 31 19 30 25 21 31 26 28 24 25 20 22 28 23 26 33 26 31 26 25 34 18 25 27 25 23 30 21 23 27 27 16 27 23 24 11 18 24 21 21 29 38 27 31 32 25 27 28 35 30 23 28 31 24 26 31 29 22 29 24 24 23 13 15 16 11 19 19 31 21 27 27 36 35 22 26 18 19 28 26 23 17 29 21 28 17 25 22 22 21 33 23 21 23 15 14 13 12 25 10 12 9 17 19 29 22 30 21 26 26 29 29 31 36 24 25 24 23 25 20 18 16 27 22 29 30 22 21 20 26 24 29 27 19 36 27 25 25 31 27 22 23 17 43 25 29 23 27 32 30 24 26 42 30 28 24 30 21 32 25 32 26 25 25 22 20 23 17 19 19 9 8 19 15 15 17 16 29 18 24 22 22 18 29 19 27 26 35 21 14 26 27 32 28 27 13 28 28 29 48 31 26 23 31 19 12 13 21 18 23 18 20 25 16 16 21 12 20 33 29 18 28 33 32 21 33 24 39 23 32 26 17 24 27 12 18 20 24 14 26 26 26 16 22 26 29 31 23 26 19 27 37 20 22 35 21 22 26 31 30 27 28 22 20 19 23 29 34 22 17 25 22 28 28 34 27 21 28 27 19 35 23 28 25 25 18 +23 32 21 21 25 15 24 22 30 24 31 28 42 23 28 16 24 37 31 27 26 25 27 21 20 20 25 22 17 24 26 28 21 30 28 24 28 20 30 17 20 17 27 19 21 21 19 28 24 13 24 21 26 25 22 25 24 27 24 26 31 19 38 17 26 31 28 33 19 29 22 21 20 15 27 24 27 11 21 14 27 17 21 26 22 32 32 27 28 29 32 26 21 29 24 26 16 30 22 27 27 22 26 20 25 23 39 27 21 21 16 13 13 22 10 9 16 18 22 27 21 20 22 30 27 34 22 35 34 26 26 24 19 23 27 19 25 25 22 28 17 30 21 19 17 28 30 19 25 26 24 12 21 23 29 26 26 23 25 28 15 25 21 21 29 29 27 26 21 21 25 30 26 26 24 29 30 21 30 22 30 16 15 9 13 11 11 16 14 15 20 19 27 28 19 24 18 20 31 23 27 17 25 16 20 30 20 23 28 24 25 29 32 30 27 19 24 31 26 19 17 15 18 19 16 19 16 23 22 22 29 18 22 19 22 18 31 30 32 39 28 27 29 24 23 29 26 23 16 14 16 24 17 33 15 19 15 25 26 31 33 24 28 21 29 31 29 33 27 21 22 24 27 23 25 22 24 26 23 25 22 26 25 27 17 28 27 16 23 22 21 25 28 34 21 19 22 29 31 25 +29 19 14 23 28 22 19 24 26 31 25 22 19 19 36 23 27 21 36 27 21 25 26 28 22 22 30 21 22 19 27 33 21 37 22 21 22 22 33 20 28 15 17 23 21 22 18 23 26 22 19 30 25 40 19 25 29 20 35 38 30 25 20 21 24 24 24 18 16 27 25 26 24 24 20 11 16 15 16 21 22 19 27 24 20 34 28 27 27 20 21 24 20 23 17 15 23 22 25 26 20 26 19 22 24 24 29 24 15 24 25 20 16 15 21 12 10 14 13 16 18 19 28 15 16 30 29 25 39 31 33 23 25 21 24 27 28 22 31 21 29 22 23 22 24 23 14 33 29 26 26 21 18 25 26 26 17 20 29 32 18 30 27 24 22 25 25 30 40 26 29 30 28 19 20 22 25 22 19 20 16 10 14 7 14 16 19 16 20 19 23 24 24 22 18 27 22 23 12 22 40 25 18 21 24 23 15 17 17 18 25 33 34 33 25 25 30 26 21 19 14 15 14 21 15 21 11 22 24 30 26 23 23 23 22 28 24 17 30 34 12 20 27 37 19 27 26 27 24 22 16 15 23 25 23 18 20 17 29 26 19 31 36 27 20 22 30 21 25 23 34 25 26 26 36 22 35 27 26 28 27 28 28 22 33 23 22 33 25 29 30 22 29 29 29 24 33 35 28 33 +29 16 27 27 25 22 26 26 25 25 19 26 23 37 22 27 22 18 15 27 18 17 24 20 26 26 30 28 24 26 20 29 32 22 26 26 20 22 22 28 21 24 20 27 24 18 17 15 13 14 23 16 27 26 36 27 26 26 26 29 30 30 22 32 21 29 19 31 26 28 21 18 24 21 26 13 19 26 14 15 16 13 22 26 27 28 28 30 34 35 18 17 12 24 15 20 15 21 17 26 25 28 29 20 32 23 26 15 31 21 28 20 19 14 8 19 12 12 10 12 11 34 12 24 23 20 24 24 29 33 25 28 27 23 31 29 30 17 17 24 22 22 15 29 28 29 26 25 20 18 21 24 19 22 21 22 27 26 28 26 28 30 18 22 24 25 37 27 28 23 31 37 22 12 19 23 17 19 17 18 21 13 5 12 11 15 20 14 21 22 25 15 21 29 25 26 13 30 29 22 20 22 21 19 18 26 13 25 15 19 18 34 28 29 25 18 16 20 20 13 8 19 20 13 20 30 23 20 17 20 20 25 20 23 23 26 27 31 23 26 23 28 29 18 28 17 36 22 27 17 19 19 9 15 12 24 20 19 31 25 27 22 21 18 36 22 22 26 27 25 15 23 19 21 26 24 23 22 25 21 16 23 25 18 25 24 28 26 34 24 21 29 38 24 30 23 32 30 21 29 +22 18 25 37 15 23 33 21 16 25 26 26 25 28 25 27 24 41 13 22 19 24 20 19 25 23 23 18 26 29 27 30 25 19 31 15 31 25 18 17 20 14 15 20 23 17 28 16 16 13 22 25 28 28 30 31 23 25 31 33 30 27 19 23 18 19 18 20 35 24 20 25 19 20 16 20 18 19 20 22 14 16 25 20 15 27 38 34 27 29 26 18 18 21 15 22 15 15 25 19 15 13 17 18 26 21 17 20 22 20 12 22 13 21 15 15 10 8 6 11 16 14 16 23 16 21 21 26 20 27 26 20 24 28 25 28 26 23 20 24 30 27 25 22 21 35 22 21 32 27 22 34 20 26 25 29 25 16 21 29 22 20 26 28 22 22 36 29 24 35 28 20 39 19 26 21 29 9 16 10 9 8 8 9 17 14 18 14 20 19 15 11 12 38 23 30 21 21 19 20 24 17 38 19 18 15 15 24 17 22 20 31 30 36 20 23 28 20 20 19 15 15 15 18 18 20 16 31 16 19 19 14 26 27 16 25 26 21 21 27 26 29 25 26 16 37 24 26 24 22 15 20 15 22 15 20 16 19 20 22 20 26 27 25 29 26 22 21 30 34 33 26 20 20 31 23 36 25 29 26 22 17 17 22 27 24 30 26 29 24 25 21 23 32 19 20 22 35 23 25 +30 25 24 23 13 26 25 21 22 23 22 23 21 20 25 24 21 21 26 32 22 25 23 22 25 16 30 34 26 29 23 35 20 35 30 25 19 29 20 14 30 12 17 19 25 21 16 20 15 19 13 26 29 26 21 26 27 27 25 18 18 27 23 26 32 15 17 22 24 27 18 27 18 17 13 24 19 15 18 20 12 23 21 14 20 22 27 27 30 29 20 26 18 18 18 21 27 18 17 32 20 25 24 25 23 16 24 23 11 24 20 21 19 19 20 21 14 13 13 7 11 14 17 19 15 22 19 19 18 33 24 19 33 25 31 27 27 26 26 22 20 26 29 18 20 31 23 20 23 15 22 26 11 28 18 27 27 13 24 27 19 22 23 25 26 35 31 37 25 25 11 19 22 15 17 19 12 14 9 4 4 14 7 15 9 11 17 22 15 23 26 25 28 28 27 22 25 32 23 26 21 24 17 28 26 30 21 17 33 16 17 28 33 27 21 16 23 22 17 19 21 19 15 24 17 21 18 13 24 37 25 26 21 31 16 18 20 21 18 32 28 21 26 28 23 26 22 14 30 27 16 20 12 21 16 16 17 21 22 21 18 22 21 24 26 26 35 26 17 34 19 18 35 28 19 24 32 21 27 28 27 27 27 21 21 25 24 25 23 23 23 25 19 24 28 17 23 23 22 31 +21 24 31 17 22 17 27 31 28 27 15 24 18 20 27 21 17 20 18 22 22 20 23 26 31 21 24 29 17 20 26 25 26 19 17 18 18 23 26 24 17 24 23 17 24 19 12 20 19 21 16 19 21 15 29 23 20 28 29 16 24 29 28 24 19 25 23 19 12 23 25 19 13 25 19 14 17 19 13 25 26 26 25 25 19 25 26 37 32 26 21 22 29 21 24 21 8 18 10 19 26 16 22 20 24 28 24 14 15 15 19 29 23 24 17 13 16 8 11 11 13 11 10 12 17 15 20 14 27 14 29 21 25 26 21 17 21 25 23 19 38 26 28 26 31 25 25 24 18 26 25 32 28 22 20 23 26 34 20 30 20 31 32 36 24 25 28 32 21 34 16 26 21 21 15 17 14 7 15 8 7 18 21 14 20 16 15 12 17 14 14 18 22 23 20 22 21 21 29 20 18 20 14 17 22 15 21 21 21 27 15 28 38 27 29 23 22 31 22 11 15 17 20 13 19 25 21 22 19 30 21 21 16 23 20 34 23 20 32 30 24 41 14 20 23 23 26 23 25 14 25 16 30 21 17 15 18 12 10 21 26 18 24 35 29 27 33 20 25 22 19 28 35 23 32 24 25 28 22 27 25 23 14 26 23 24 17 23 26 25 16 30 32 28 27 25 25 27 22 28 +28 20 24 19 25 21 26 20 22 25 27 22 22 23 19 23 31 19 26 26 27 29 20 29 19 26 13 22 28 29 21 28 28 27 18 25 15 19 16 19 28 28 17 14 22 16 24 18 22 24 20 22 25 15 23 26 27 23 27 22 35 17 23 19 26 27 13 18 14 22 21 22 16 15 21 17 13 14 15 11 11 19 15 17 17 26 37 23 22 28 23 23 18 21 24 20 18 25 14 21 19 23 19 27 21 25 14 30 27 19 17 18 15 21 22 17 18 17 11 16 22 17 11 6 12 15 11 16 27 21 17 19 23 12 16 20 22 21 21 34 23 28 28 20 21 19 21 26 33 26 22 21 32 36 36 27 22 31 34 16 20 37 20 24 24 20 18 20 25 19 20 28 18 14 16 9 8 9 10 12 11 4 17 16 13 14 29 23 16 17 22 22 29 16 11 22 30 19 26 23 28 24 17 19 17 14 18 17 22 30 26 27 21 30 11 18 16 20 16 12 9 11 18 14 24 21 13 21 22 17 24 18 18 21 25 28 21 22 22 30 22 30 18 21 22 25 20 26 23 22 19 20 21 17 15 19 18 20 22 27 27 22 26 23 22 30 21 35 32 23 29 17 31 14 29 23 30 20 26 18 26 23 22 19 19 25 23 16 18 26 30 24 24 15 26 23 14 22 22 22 +24 17 15 21 24 21 30 21 22 21 16 23 28 20 26 15 18 20 30 22 28 26 18 19 26 29 31 29 16 18 24 18 26 26 25 20 23 20 22 19 20 23 20 18 21 11 14 14 17 14 26 20 17 34 32 32 18 21 16 29 32 18 28 23 23 17 25 19 17 19 17 21 22 17 21 17 17 20 13 17 18 10 22 19 18 32 30 23 28 26 33 12 19 19 25 19 13 16 16 12 21 24 22 27 21 17 24 27 25 27 31 18 19 18 30 28 9 20 17 20 13 19 10 7 11 11 14 14 14 23 17 18 14 16 19 15 14 27 29 17 12 32 29 18 26 26 29 37 22 26 23 26 29 17 20 22 21 19 22 11 19 21 22 21 11 28 23 14 18 21 17 20 21 11 16 10 10 7 14 11 12 17 28 17 20 14 23 20 22 22 19 30 18 20 18 19 28 28 16 16 17 21 10 21 15 19 18 22 25 27 21 25 23 19 20 29 27 15 22 10 17 18 13 14 15 27 14 19 25 24 25 15 18 18 26 25 23 26 21 19 20 32 17 21 30 21 18 25 40 16 19 23 18 19 24 25 12 20 19 15 20 27 20 37 25 22 22 27 25 18 15 38 23 20 16 20 23 21 13 22 32 28 19 18 16 17 18 16 23 20 15 16 28 25 18 23 23 18 23 23 +32 26 29 16 28 18 25 20 19 24 26 17 22 21 31 31 28 24 21 28 24 18 17 17 18 24 21 27 20 31 16 29 23 21 28 21 23 22 20 27 29 21 12 17 13 25 20 16 14 25 20 29 33 27 25 25 24 25 17 23 24 29 20 24 26 22 16 16 13 16 15 19 18 24 16 19 15 13 20 20 16 13 21 26 12 22 22 32 22 22 18 26 17 13 18 21 13 21 17 12 14 20 29 17 30 25 12 14 27 23 17 16 16 21 22 30 14 9 12 21 19 10 10 12 7 9 8 11 17 19 24 21 21 12 19 17 10 22 20 19 22 18 14 28 24 18 24 22 23 22 32 21 21 32 24 26 18 23 21 21 18 18 14 15 24 21 16 15 15 14 14 11 12 7 4 6 9 11 15 16 13 25 19 17 25 18 13 18 17 15 18 20 21 29 26 25 26 21 20 27 20 20 15 19 22 18 12 21 23 35 21 40 30 22 19 12 23 17 22 9 16 19 21 15 20 29 9 26 26 21 16 23 25 12 16 24 27 15 24 23 14 21 22 18 22 34 18 21 16 18 18 16 23 22 17 24 21 13 16 26 27 19 16 13 12 20 24 28 26 21 23 25 22 28 23 17 26 24 15 19 29 31 19 16 20 27 16 17 21 17 23 33 12 25 17 20 23 11 26 29 +19 26 23 31 23 23 26 26 21 17 22 19 19 27 31 12 21 21 25 22 28 34 24 27 20 25 19 15 29 29 13 20 18 26 24 15 20 14 17 20 13 14 25 13 23 12 15 16 22 21 31 22 27 26 27 19 18 25 27 24 20 32 21 18 22 26 23 24 22 17 17 16 20 21 18 15 20 12 13 16 18 16 16 17 15 25 21 20 30 22 31 32 19 8 19 7 22 14 23 17 12 9 14 23 21 17 27 12 17 22 23 27 19 17 24 19 25 19 14 17 9 16 13 7 15 9 9 5 12 11 9 15 15 21 25 15 23 13 16 18 10 19 26 15 15 14 17 30 20 16 22 16 22 26 22 21 21 22 23 15 19 21 9 16 21 13 13 25 18 10 7 7 9 8 13 15 9 10 9 17 20 16 17 20 34 26 17 21 17 18 22 27 25 23 23 21 22 14 26 16 13 15 21 26 15 17 17 17 29 29 32 17 13 20 21 21 17 20 24 14 15 9 18 24 21 17 13 13 13 18 24 15 20 12 25 19 20 22 24 22 25 15 29 16 21 23 22 17 14 18 25 23 15 18 21 21 15 24 16 17 18 25 13 22 25 24 19 22 20 26 21 20 25 21 16 24 22 25 19 20 25 24 25 32 24 21 17 24 20 34 20 23 33 22 22 25 14 20 20 20 +17 20 26 14 33 23 27 17 21 21 26 15 23 21 27 28 29 27 35 26 25 29 29 25 18 21 18 26 21 25 26 20 16 20 21 31 21 25 20 14 20 19 17 27 14 20 19 17 26 24 32 25 24 17 20 25 24 23 19 21 19 25 25 18 27 29 16 18 18 13 23 15 16 16 20 15 19 15 15 11 15 18 20 25 16 18 11 22 28 29 21 25 14 19 14 16 14 25 13 23 17 21 16 20 21 15 14 22 15 7 24 18 20 23 18 23 16 25 13 17 13 15 11 14 12 12 11 14 16 10 7 8 14 15 15 22 17 21 34 26 15 22 21 21 16 20 22 18 22 17 16 15 21 22 22 22 22 21 12 17 21 23 11 18 12 18 12 7 8 10 12 11 7 11 14 8 15 14 12 15 11 19 22 16 16 16 12 24 18 17 15 17 25 22 22 17 18 24 21 16 19 12 23 13 20 21 26 18 19 25 28 18 21 26 22 18 19 24 13 20 17 18 13 10 22 20 27 18 19 11 14 20 15 22 19 26 19 19 20 22 20 24 31 17 23 25 13 21 23 21 29 18 12 20 21 24 15 24 18 15 16 18 18 25 20 19 20 20 23 27 17 23 21 20 21 22 16 21 19 19 23 14 22 6 25 19 14 30 15 20 20 24 20 14 14 25 15 18 19 16 +19 24 23 28 21 27 21 30 26 22 19 18 25 17 23 17 23 23 21 17 20 25 23 18 28 25 27 18 26 14 20 25 18 27 20 11 24 18 16 22 15 20 17 15 25 24 21 14 21 21 28 12 32 34 23 26 22 23 21 31 30 20 24 25 25 23 18 16 23 19 18 22 12 19 13 16 15 19 20 12 10 14 21 15 20 20 20 23 20 21 28 29 27 17 15 14 19 16 15 21 13 22 17 24 17 19 29 27 24 17 19 21 32 23 10 14 18 20 19 14 20 20 9 14 13 17 15 12 11 6 8 12 7 9 13 11 11 18 11 22 12 8 16 23 17 14 17 15 25 12 18 19 18 15 17 15 13 14 21 13 12 15 19 17 10 8 10 13 10 10 8 10 13 9 12 11 12 7 18 18 12 18 22 18 18 18 19 20 21 18 21 20 31 13 15 18 22 11 14 16 12 15 13 15 23 18 21 20 31 29 27 32 29 20 11 16 13 18 16 17 14 14 23 14 21 19 13 29 16 13 16 22 17 19 23 22 21 24 19 24 26 17 32 31 22 21 30 23 16 15 20 28 17 18 14 18 17 28 16 16 22 19 17 22 17 16 22 14 20 18 12 28 17 14 19 22 21 33 22 25 20 19 19 29 29 22 23 11 26 33 21 20 22 25 19 20 19 21 24 23 +21 25 20 20 21 17 21 17 21 25 25 18 20 19 20 27 26 25 26 21 15 26 24 20 27 23 16 15 18 21 17 27 12 14 22 16 15 14 13 10 18 21 15 12 20 24 20 30 16 21 21 23 20 27 23 22 20 21 31 22 20 18 21 25 21 21 23 17 15 15 16 14 19 16 19 13 17 12 9 20 14 17 20 18 19 19 27 20 29 31 22 21 19 20 14 18 21 17 30 16 11 15 16 14 14 18 19 13 21 19 26 24 30 14 15 14 20 22 20 15 19 23 12 10 10 10 15 18 11 16 11 14 7 5 8 11 9 9 10 7 9 15 21 15 17 27 14 17 15 18 9 15 23 17 22 20 12 15 20 11 15 9 9 13 5 11 8 6 11 12 7 8 13 14 14 14 14 13 19 23 13 25 16 12 15 17 10 20 12 13 22 18 23 18 20 12 16 17 23 9 16 16 11 22 25 21 18 13 20 24 33 27 22 25 16 18 18 15 14 22 18 12 12 13 20 17 16 21 14 13 24 11 17 31 20 25 17 23 25 18 25 25 19 22 26 21 30 19 22 19 23 21 16 18 12 12 22 11 15 19 12 12 22 9 24 21 17 16 18 15 24 27 14 20 18 19 20 23 22 30 21 27 22 28 25 25 17 19 22 12 20 25 17 23 18 18 27 15 26 18 +20 19 15 36 22 24 13 15 24 24 27 25 20 22 26 22 25 18 11 23 19 28 18 21 29 24 18 19 20 24 22 10 16 21 19 11 19 17 11 8 18 16 14 22 22 16 18 14 23 15 25 21 14 22 22 14 23 19 14 15 14 24 23 22 13 26 16 9 22 13 22 18 12 15 20 13 10 8 12 10 14 22 14 27 15 20 23 18 23 32 23 20 20 14 32 17 17 22 18 19 16 25 11 13 23 20 17 18 18 23 17 17 20 26 20 12 22 26 12 16 23 14 15 11 24 11 14 8 20 11 10 9 13 15 13 10 5 6 19 7 13 16 14 10 7 11 13 16 18 19 9 17 7 16 14 12 15 11 11 12 10 9 9 9 13 7 11 7 10 8 18 10 20 19 14 11 12 16 14 22 22 15 20 13 17 25 22 14 13 18 21 18 10 13 21 25 18 16 21 19 15 16 15 13 22 32 13 17 27 26 20 17 22 20 28 19 14 9 8 16 13 13 19 14 17 12 18 25 15 8 19 14 19 19 28 16 18 18 21 19 18 24 19 24 20 22 25 24 15 34 11 22 30 30 14 21 18 15 15 16 8 19 11 18 21 16 18 19 24 25 23 21 20 24 20 16 20 20 20 14 25 14 16 22 21 16 19 12 18 22 18 15 25 20 17 28 22 26 13 25 +12 17 19 21 23 21 20 18 15 12 24 25 8 16 23 22 22 32 24 13 12 14 18 15 24 15 15 13 17 25 13 17 12 20 6 16 20 16 13 18 23 17 15 9 17 14 15 22 19 12 27 22 25 26 19 19 20 20 26 19 28 14 24 9 19 15 21 20 25 18 20 16 17 13 20 9 15 11 16 13 15 10 10 21 16 19 20 17 16 17 20 30 25 18 11 17 15 12 18 13 16 15 21 12 18 15 13 20 23 15 24 16 19 19 12 29 16 13 16 21 27 15 20 18 17 12 15 13 11 5 11 16 8 6 7 10 9 12 11 8 9 8 9 12 4 8 9 9 12 8 8 7 9 5 14 13 9 11 6 6 7 7 7 10 9 7 8 16 6 12 12 19 12 13 13 19 10 20 15 23 23 12 6 16 17 18 21 21 15 21 19 29 19 15 18 13 22 28 23 18 15 10 29 20 15 14 16 19 24 18 19 15 18 18 19 19 15 11 13 19 11 12 7 17 13 13 16 9 13 16 14 15 13 19 14 19 21 15 21 16 24 20 19 19 19 18 25 10 21 19 14 14 25 18 25 19 14 14 12 20 12 17 7 15 12 14 16 22 14 11 16 15 22 26 23 18 23 18 10 23 26 21 17 18 11 23 17 27 17 17 23 36 25 21 24 18 21 20 16 26 +27 35 29 19 18 20 21 24 23 22 22 18 16 26 21 23 17 15 15 23 16 14 22 13 15 22 18 32 12 12 19 16 24 14 15 14 13 21 12 13 21 17 15 15 19 13 19 12 15 19 20 25 18 21 17 11 20 17 20 25 19 24 17 16 26 16 19 13 6 17 10 15 14 15 12 16 6 15 14 8 18 12 19 13 19 24 20 17 14 24 29 27 16 23 25 10 12 15 25 14 15 14 15 19 14 14 13 22 21 29 15 17 14 11 13 19 18 16 14 21 17 20 18 13 19 17 18 14 11 13 17 10 14 12 8 9 10 10 6 15 5 6 13 5 8 5 8 6 13 12 10 4 9 14 8 6 5 10 8 8 7 10 12 13 12 13 12 12 11 14 16 8 17 16 11 20 9 18 16 24 14 19 18 21 11 21 17 11 16 21 17 12 25 14 12 18 13 25 9 11 17 24 19 19 14 16 24 26 29 24 19 15 20 14 10 17 8 15 12 17 14 15 11 15 21 16 14 12 18 18 17 11 11 20 13 16 17 24 18 23 14 21 28 21 20 23 25 11 21 23 17 17 22 17 15 22 16 24 11 12 19 14 15 25 15 19 19 13 18 11 21 15 23 17 19 21 22 18 15 25 12 21 20 24 18 18 18 25 21 13 21 26 26 21 17 20 24 16 16 22 +16 34 25 24 20 19 19 18 27 15 22 10 33 22 29 25 25 17 18 23 26 18 15 10 20 17 16 18 18 15 14 21 8 17 22 13 16 14 19 16 7 6 19 25 12 24 21 20 18 13 11 14 22 21 17 18 20 34 23 22 16 20 29 22 15 15 13 16 13 21 18 22 18 22 26 18 12 10 15 21 9 19 19 14 20 18 13 10 20 18 29 19 23 19 22 19 16 11 19 13 10 12 19 11 19 14 16 16 20 22 11 18 13 19 15 19 11 15 12 14 14 16 10 16 20 20 13 19 10 15 12 17 17 19 12 15 17 11 12 11 13 19 11 12 10 7 4 10 11 9 3 6 11 6 5 9 10 5 13 10 12 12 10 5 9 13 10 13 12 12 19 17 20 26 10 12 15 13 15 8 12 20 11 14 14 13 19 19 9 18 20 25 22 19 17 16 13 9 13 15 13 13 14 18 12 17 28 17 25 16 21 16 23 12 17 13 16 11 11 10 11 18 16 15 18 17 16 16 18 17 21 13 17 19 19 6 20 22 19 24 17 20 18 22 15 15 24 14 14 17 14 26 18 17 14 19 18 13 14 16 18 14 10 15 14 16 15 10 15 12 12 15 16 14 15 24 20 21 19 21 15 20 22 25 15 28 16 24 22 24 20 18 19 25 25 26 15 11 21 18 +15 16 23 27 23 18 20 13 19 15 14 16 19 19 24 25 16 19 21 15 17 11 17 16 15 23 11 15 30 18 18 16 15 9 7 11 16 17 14 14 12 16 11 17 18 21 23 16 26 21 18 19 20 18 21 17 20 17 25 19 18 22 16 14 14 13 18 18 7 15 16 17 14 17 10 12 10 11 13 8 7 7 18 10 20 13 17 20 24 26 19 23 27 23 24 21 16 24 15 7 18 14 8 19 18 16 20 15 18 16 17 14 20 18 29 15 13 21 23 22 14 12 23 9 16 11 13 17 18 19 16 20 15 8 9 7 17 13 14 9 7 14 11 13 8 8 9 10 12 12 7 6 13 15 10 9 12 9 21 17 13 15 9 11 15 15 15 20 12 10 19 15 14 13 20 17 17 27 10 16 18 17 30 15 22 24 14 20 14 13 11 14 19 18 11 12 14 21 11 11 19 19 12 15 17 25 28 19 35 18 22 24 15 19 12 17 13 11 11 10 13 13 15 13 13 15 15 21 13 14 21 20 20 17 16 16 22 13 22 19 17 22 24 18 26 14 17 14 22 21 15 25 9 23 25 24 15 7 10 15 12 14 14 19 13 15 21 12 18 19 12 16 21 23 17 15 15 21 16 16 21 15 29 16 26 17 22 16 17 12 18 14 21 22 20 11 11 18 17 15 +20 22 24 16 12 13 21 15 23 16 9 24 21 19 19 13 26 19 14 18 21 15 19 18 13 11 20 13 12 18 19 20 13 22 8 13 15 17 15 13 11 17 18 17 18 21 23 19 18 13 17 16 24 19 22 21 19 22 14 16 22 21 16 11 17 15 19 11 22 9 12 15 15 16 11 17 12 15 10 10 11 13 8 10 16 12 17 18 16 19 17 30 25 22 18 24 20 21 18 14 22 16 16 15 22 17 14 18 22 26 23 12 17 18 13 22 18 18 17 17 13 15 15 17 24 19 17 22 14 21 20 23 16 15 14 16 18 9 12 13 16 16 11 7 10 13 11 9 13 10 7 9 8 9 11 15 11 16 10 11 13 13 9 11 11 11 15 13 18 19 23 13 13 18 21 15 15 19 20 14 19 14 17 9 13 22 12 17 12 17 17 18 10 14 18 14 14 12 17 24 9 11 13 16 22 16 19 30 27 12 22 16 18 16 18 15 17 14 11 9 23 13 15 15 20 14 15 11 18 14 17 14 11 10 23 22 20 18 13 16 11 14 17 18 16 19 24 12 18 13 31 16 18 21 15 21 16 17 16 14 12 18 17 16 10 16 18 6 13 15 16 15 15 20 11 16 18 10 25 15 17 12 18 15 14 12 19 12 19 24 19 16 19 18 18 13 11 25 19 19 +17 17 21 19 17 21 20 15 13 12 24 17 14 15 15 15 16 15 16 17 15 18 18 15 21 11 15 20 14 10 10 20 17 14 14 7 12 19 20 13 20 10 16 11 19 11 22 18 18 9 19 12 17 14 16 19 22 19 18 17 19 17 12 10 12 12 15 16 10 10 13 20 12 17 7 19 11 4 11 8 6 11 13 19 10 14 16 9 13 15 21 22 20 23 15 16 15 10 15 17 10 18 8 9 13 11 14 12 14 20 15 15 18 17 13 10 16 17 14 18 14 21 19 3 15 18 16 14 13 11 16 20 23 16 11 13 11 10 17 19 17 10 8 14 10 11 13 18 14 11 17 14 18 19 11 15 14 15 10 15 17 16 16 14 11 14 18 14 11 14 13 19 9 20 13 23 11 24 11 12 26 10 21 14 12 14 21 11 18 19 11 13 10 12 10 15 14 11 20 10 17 15 24 22 10 23 20 16 26 21 17 21 22 25 15 10 17 11 18 11 10 11 17 16 12 10 16 13 22 16 8 20 11 15 19 13 15 16 14 18 17 16 22 17 14 22 22 21 23 18 13 14 17 17 16 25 21 19 17 24 13 21 23 11 14 10 20 9 12 12 12 8 15 21 13 12 21 17 21 21 19 20 19 20 16 14 17 15 15 10 15 18 16 14 18 23 13 17 21 13 +16 9 15 17 15 14 16 15 14 14 23 18 14 16 18 13 17 13 16 19 17 19 18 12 14 24 15 12 16 18 10 10 21 20 13 12 10 21 14 11 12 12 24 16 13 14 21 14 13 22 16 18 26 16 25 22 23 14 13 15 12 14 16 19 15 6 11 20 14 15 12 15 12 9 16 12 11 22 15 9 7 7 9 18 17 18 19 16 15 18 18 17 14 22 25 17 20 22 11 19 15 12 14 11 17 15 16 8 5 18 10 19 19 13 14 11 16 12 20 19 17 10 17 23 15 13 20 10 20 11 17 12 20 25 15 16 12 14 18 15 18 11 15 13 19 9 8 11 12 19 14 19 18 7 13 9 15 6 18 16 10 6 9 15 11 22 14 23 17 17 14 20 18 8 18 17 17 10 18 17 16 20 17 22 16 17 18 15 15 15 10 14 5 11 15 10 13 13 15 10 23 12 20 20 25 13 27 25 18 13 14 9 20 13 9 15 10 8 10 7 9 8 14 12 15 15 4 14 16 12 21 14 16 13 14 15 11 18 21 12 17 15 18 17 18 21 16 19 20 19 15 13 22 23 21 22 19 20 15 13 17 12 16 13 16 11 16 8 9 15 13 12 13 17 17 9 17 17 24 17 18 15 15 16 13 22 16 21 15 14 18 18 22 17 16 20 16 21 16 16 +21 16 21 20 20 15 20 14 18 13 17 19 20 13 10 11 12 34 18 16 14 23 15 20 7 12 13 14 12 17 16 11 17 11 12 10 12 16 21 15 19 25 19 22 17 25 17 24 22 13 11 14 23 22 15 19 16 21 19 15 15 17 17 16 17 20 13 10 18 8 13 13 15 18 14 12 7 10 10 14 9 14 9 13 15 19 17 15 11 19 13 14 17 20 17 14 20 13 12 16 14 12 12 21 13 12 7 13 14 16 13 13 21 13 18 13 17 17 14 18 12 15 16 22 18 20 7 13 11 9 13 14 18 11 17 14 13 7 12 14 14 12 10 21 14 13 22 15 11 14 24 12 20 11 14 14 13 11 10 11 12 14 19 13 16 17 23 10 13 22 15 14 24 14 14 11 12 14 11 11 20 17 13 14 17 17 17 20 15 12 15 5 11 13 9 10 11 12 10 14 14 13 24 24 28 22 20 15 11 17 18 19 10 15 15 14 8 13 9 11 8 8 10 21 10 18 11 13 15 17 12 13 17 16 12 14 17 16 18 23 17 16 17 21 16 13 14 20 19 13 20 19 15 11 25 15 20 16 19 22 13 15 8 18 12 18 16 11 14 12 12 8 11 13 12 20 11 22 15 10 10 15 14 11 21 14 15 14 21 15 15 14 18 18 15 16 15 15 15 12 +14 23 17 15 19 12 9 14 18 14 14 23 14 9 22 17 17 11 10 16 14 14 10 11 14 12 11 13 5 16 18 7 12 12 12 16 16 17 21 13 22 19 20 10 21 23 17 14 21 24 19 19 11 19 20 18 15 20 14 9 15 14 14 13 15 16 10 13 10 11 11 11 14 20 15 10 11 14 11 9 18 9 9 9 14 18 25 12 13 19 22 19 17 20 21 26 20 11 13 16 16 9 8 17 11 21 17 10 17 14 16 9 16 17 13 15 14 11 9 21 19 13 13 8 16 15 16 16 7 12 14 6 15 12 21 14 12 22 13 27 13 9 10 11 9 16 18 14 23 14 14 23 12 9 10 13 24 13 15 16 13 15 19 14 15 16 15 10 16 15 18 11 10 16 17 17 16 19 14 12 21 15 15 17 12 20 11 19 20 13 14 19 8 13 12 16 9 7 15 6 6 10 12 18 21 18 19 22 14 14 11 3 16 16 15 8 15 8 16 14 13 7 16 12 9 11 9 12 13 15 12 14 17 13 13 14 15 20 18 16 13 15 12 14 8 13 18 25 15 21 15 21 23 11 13 7 15 16 19 19 21 15 10 23 11 8 11 15 15 18 10 15 15 11 16 11 18 12 12 18 18 14 19 16 18 13 12 10 23 16 16 15 21 20 21 8 14 18 13 16 +22 14 16 15 12 14 15 17 16 17 14 12 14 10 16 10 15 13 22 9 17 13 13 13 13 13 12 7 14 8 12 17 12 16 12 14 12 18 13 19 11 16 21 14 26 13 19 18 20 24 22 14 16 17 10 22 22 15 18 20 23 13 13 15 12 19 17 14 9 14 9 19 9 14 11 14 15 7 15 8 7 17 9 10 10 7 16 26 16 23 20 19 15 17 21 19 23 16 14 13 15 12 15 11 17 11 11 14 18 15 10 11 16 12 21 13 11 15 14 17 19 21 17 11 13 8 17 16 17 9 10 14 12 12 21 13 19 9 15 16 19 12 11 16 10 11 24 12 18 21 15 15 18 12 12 15 11 14 13 15 9 13 12 10 10 13 15 18 15 16 19 12 19 21 17 13 15 14 16 16 14 17 16 15 9 10 13 12 15 9 9 8 10 14 15 12 15 11 11 18 12 24 14 19 19 23 19 15 20 17 19 6 10 13 15 15 16 13 6 15 5 12 11 6 12 14 14 16 12 13 8 12 14 10 17 16 12 6 13 7 24 21 12 15 16 19 20 16 19 17 21 18 11 20 17 17 19 11 18 21 17 13 13 12 13 16 11 13 12 11 8 10 13 12 17 11 16 13 16 14 13 15 10 8 8 12 13 15 15 15 20 13 14 14 15 18 13 10 16 10 +9 16 20 19 15 6 14 9 11 11 10 10 14 11 15 11 12 12 14 15 14 17 18 12 12 11 19 8 13 5 5 15 9 12 14 15 21 12 24 18 17 11 19 12 22 19 20 14 14 12 18 19 17 15 18 12 10 12 17 14 15 25 11 14 14 14 15 12 8 18 12 11 12 15 13 9 12 11 6 11 7 9 4 5 11 8 19 17 15 13 17 11 19 14 23 19 16 21 18 22 13 9 7 11 11 18 7 13 13 9 21 12 14 15 4 18 16 7 11 19 16 13 14 14 13 24 9 17 18 13 11 17 21 12 14 19 14 16 15 17 10 13 12 20 17 17 7 12 10 15 20 12 10 13 15 10 13 17 16 13 13 9 14 15 13 16 21 20 12 21 17 13 22 17 11 12 18 12 13 12 13 16 15 8 15 14 11 12 12 13 11 12 9 15 15 10 10 19 13 13 12 25 23 11 14 16 18 12 17 13 21 15 16 16 13 10 4 12 12 10 13 4 8 14 17 13 20 11 15 16 15 12 12 13 12 14 16 13 13 24 11 17 16 18 11 20 26 21 17 17 24 19 14 16 22 15 22 12 19 20 15 20 12 16 19 12 13 12 13 10 10 7 9 15 10 5 5 8 17 14 9 12 10 7 12 12 9 11 13 8 16 13 15 8 14 14 13 16 5 8 +15 10 11 9 15 5 12 12 16 7 12 9 8 15 12 11 12 14 11 7 15 18 12 10 11 10 22 12 13 14 19 10 20 15 15 17 17 12 21 16 12 15 17 17 18 13 11 19 18 10 13 12 17 20 12 15 15 14 18 16 14 19 12 11 12 15 10 14 15 17 10 12 14 15 10 13 10 13 13 6 5 7 13 10 14 12 11 15 17 14 17 21 19 16 21 16 16 17 14 17 16 15 13 19 14 9 15 15 9 7 11 14 9 12 15 11 12 15 10 15 16 10 14 15 13 10 18 17 14 16 11 16 15 24 17 11 11 9 13 20 10 11 14 22 6 12 12 17 12 10 20 14 23 17 11 19 16 14 15 14 9 16 19 13 11 15 18 12 14 11 9 15 11 21 16 12 13 15 14 16 13 11 19 8 13 11 15 6 7 5 14 13 12 7 11 13 14 12 13 22 17 21 18 21 16 13 15 19 20 10 20 10 13 9 15 9 6 6 13 9 9 12 11 16 13 11 17 12 7 21 15 15 13 16 14 15 12 7 9 16 13 20 13 8 16 18 15 12 12 17 29 21 14 9 26 18 20 18 24 17 20 11 16 18 13 7 13 13 21 15 20 11 13 6 10 10 11 8 15 11 7 8 12 8 11 18 18 14 14 10 21 8 11 16 9 9 12 8 13 23 +13 13 19 14 9 12 10 12 10 15 13 8 7 11 14 12 9 5 13 8 11 13 9 12 12 9 17 12 7 12 13 9 15 16 23 14 18 12 15 13 17 14 18 17 22 16 11 18 10 19 25 16 19 10 15 20 15 13 14 10 19 14 15 13 12 10 13 16 14 20 13 15 9 15 11 9 7 7 13 11 13 5 12 5 12 9 6 20 18 12 23 12 10 11 29 23 15 12 16 10 11 17 20 5 10 9 17 10 9 10 10 3 13 15 21 12 12 10 9 14 13 11 14 16 15 16 16 12 11 13 20 12 15 17 17 11 7 14 13 13 11 12 11 13 12 14 12 10 20 19 15 13 10 16 19 10 16 11 8 8 9 14 11 12 10 17 13 13 16 21 13 16 14 16 13 14 14 10 19 17 15 11 16 14 11 9 6 12 8 9 7 7 9 15 14 8 12 14 11 24 18 13 8 18 13 14 18 13 9 23 11 12 10 18 17 7 7 7 9 9 9 9 9 14 7 13 10 8 8 19 11 11 11 16 12 11 9 14 9 17 12 15 12 7 9 19 17 16 14 23 18 20 10 14 16 14 15 14 19 19 10 19 17 11 23 26 9 16 9 13 10 10 14 15 8 6 11 9 11 12 10 11 11 7 14 10 12 11 16 13 10 10 11 8 11 9 18 15 8 9 +12 9 11 14 4 7 11 16 12 13 11 13 16 12 10 10 6 10 13 10 11 9 11 11 8 16 18 12 15 9 14 14 17 18 23 16 10 13 20 12 12 15 11 26 14 15 18 10 12 21 23 21 12 11 14 19 8 13 14 11 14 11 15 11 15 11 11 9 14 17 8 17 10 13 7 9 8 7 5 10 6 5 12 10 13 11 20 16 11 6 9 12 11 10 19 22 20 21 15 11 11 18 17 12 12 4 17 9 16 12 15 7 13 9 8 13 10 11 8 10 9 13 9 7 20 8 16 12 10 15 12 12 12 11 11 11 11 12 12 13 9 14 14 12 17 12 15 15 12 14 15 14 18 12 6 8 17 15 11 12 18 14 16 11 12 14 18 10 18 11 12 10 11 8 19 9 14 13 11 10 13 17 16 11 9 7 13 11 6 11 9 8 11 14 11 11 15 20 12 15 20 20 23 22 16 18 11 11 17 14 16 8 14 11 10 8 10 16 7 12 3 10 9 5 13 16 10 4 8 9 8 8 17 10 12 13 12 17 19 13 15 16 17 12 14 10 15 17 15 15 17 20 25 12 11 13 11 19 14 12 20 7 18 19 7 20 10 16 14 15 10 13 16 10 10 19 7 13 14 14 9 12 9 11 15 17 4 12 16 14 21 11 13 4 12 13 11 11 8 10 +15 14 10 7 10 14 13 8 12 13 8 6 15 7 7 11 7 9 12 8 12 13 9 16 17 9 15 16 13 8 9 13 11 15 14 8 13 9 10 13 16 13 13 14 14 17 14 16 16 12 13 15 12 17 15 19 20 14 11 14 14 12 17 13 13 11 10 12 10 11 15 12 4 12 9 10 11 14 12 9 8 10 15 10 9 9 12 9 18 10 16 12 11 13 17 17 14 20 16 24 17 19 15 14 13 9 8 14 10 9 11 15 14 11 15 10 8 5 14 13 11 5 10 10 7 15 8 13 16 14 12 17 11 10 8 10 20 12 14 8 11 8 10 11 9 8 22 14 14 12 15 15 12 14 19 16 4 13 14 19 12 9 13 11 5 14 21 20 19 11 12 11 11 10 12 9 6 8 12 11 17 10 9 8 14 13 14 15 10 9 9 13 4 6 13 10 15 11 17 18 25 18 17 19 12 14 11 15 16 8 16 13 9 11 4 13 9 16 6 8 9 8 12 4 10 10 10 7 6 7 17 10 7 14 11 16 13 21 15 21 13 15 11 12 7 21 14 9 11 15 11 15 16 20 16 12 15 11 15 16 9 14 13 15 11 16 15 7 14 9 9 18 10 11 9 14 15 11 11 6 10 8 9 11 7 9 9 8 10 6 9 11 13 8 11 10 11 11 11 12 +20 10 11 11 9 10 15 8 10 11 10 11 12 7 4 10 11 11 5 8 9 11 8 6 10 13 17 10 8 13 20 21 20 16 14 11 13 7 16 17 14 11 15 13 16 17 19 14 17 13 14 12 17 8 20 9 9 13 13 8 12 15 11 12 15 11 8 9 11 8 9 26 13 8 8 10 9 9 10 7 17 12 6 8 3 11 6 9 18 13 11 17 10 13 6 16 15 15 15 20 20 17 19 15 10 9 10 11 12 9 5 7 11 11 9 11 10 13 14 9 10 13 12 9 8 13 12 10 16 9 8 6 11 9 13 11 11 10 14 12 10 13 21 11 9 8 16 24 18 16 16 5 15 12 7 17 6 15 11 14 16 16 19 16 14 12 13 10 13 12 14 11 8 8 14 12 17 12 16 11 15 10 13 14 8 11 8 19 14 11 11 12 9 16 15 19 10 13 15 14 18 16 11 14 23 13 13 17 25 8 11 12 19 9 12 10 10 8 6 10 13 6 16 6 10 5 8 11 9 10 12 13 9 17 12 12 6 8 13 17 10 10 9 16 16 17 12 13 11 15 22 13 7 17 12 16 19 12 16 12 21 16 14 17 13 10 15 16 13 15 20 19 13 11 12 16 6 14 13 19 4 12 6 13 8 11 5 8 7 8 9 12 10 13 10 15 14 13 10 10 +8 9 11 10 15 11 7 9 11 5 8 9 12 13 9 10 2 7 12 14 11 16 15 13 12 11 18 8 18 17 17 14 12 15 14 10 14 13 11 22 16 11 18 14 13 8 13 15 11 14 16 13 12 14 16 12 10 9 7 9 14 13 19 12 11 11 17 6 8 13 14 8 13 16 11 10 11 8 9 5 12 9 10 3 5 8 13 10 9 7 10 11 13 13 11 16 13 20 21 9 17 18 11 9 12 12 15 6 8 10 9 9 16 8 12 8 6 10 10 12 7 8 7 7 16 7 11 7 10 9 12 11 11 7 10 12 14 9 11 11 7 8 9 14 7 12 20 15 8 11 9 10 9 20 5 7 16 12 11 11 7 12 12 9 11 16 15 2 15 11 14 9 14 6 15 11 7 10 8 6 5 9 10 7 12 11 6 12 9 10 12 16 9 16 11 13 18 18 20 15 11 12 17 10 14 10 7 9 16 14 8 6 9 10 10 8 7 9 12 11 5 11 6 11 8 10 8 5 9 13 12 12 9 12 9 17 19 7 14 4 5 12 12 12 22 15 15 16 10 17 20 11 11 15 9 15 11 16 14 10 12 17 8 17 12 12 8 12 12 6 12 12 14 12 10 16 11 13 15 11 15 18 9 8 9 16 9 14 12 15 3 11 9 15 11 12 11 14 9 7 +4 13 3 8 6 10 11 5 9 17 14 10 14 16 14 16 12 16 12 14 16 10 14 19 13 12 8 18 11 11 12 13 5 10 12 18 15 14 16 16 11 7 19 16 9 12 7 16 16 8 16 16 10 15 15 8 10 12 11 10 18 18 12 10 5 11 17 8 7 7 14 9 8 7 14 5 10 11 8 7 5 9 8 11 11 11 9 13 12 9 17 11 19 18 16 17 18 10 12 11 16 22 19 17 17 15 13 16 14 12 12 12 12 7 7 8 5 12 3 9 16 6 7 11 15 7 11 8 13 14 14 9 10 8 7 11 13 8 17 6 15 11 13 11 11 13 16 10 18 14 10 10 9 17 9 14 10 11 5 10 12 12 12 12 11 11 13 10 12 9 13 8 5 11 6 9 6 10 12 6 13 11 12 10 14 6 12 11 14 8 10 12 10 14 16 20 19 15 11 14 11 14 16 6 10 12 14 13 8 14 13 13 12 8 10 7 10 11 9 7 7 5 10 9 7 10 4 9 13 8 10 7 11 10 19 7 11 6 15 11 8 8 13 11 13 7 13 15 15 14 11 8 10 14 10 15 16 14 12 9 13 11 17 18 13 16 21 14 11 15 8 9 14 12 11 9 11 11 15 10 18 11 6 7 14 7 9 15 8 7 13 8 2 7 10 15 7 14 10 10 +12 6 11 6 5 12 12 9 11 14 5 8 16 11 11 9 20 9 13 15 16 14 16 17 10 6 18 8 10 8 10 11 14 10 16 15 12 13 12 8 9 13 15 13 16 19 10 8 13 21 12 7 11 21 10 9 11 8 13 8 12 9 6 13 14 10 10 8 10 7 4 11 9 14 16 6 13 6 8 7 8 6 9 8 4 13 13 10 13 10 9 14 8 14 20 5 11 21 9 8 11 18 13 15 12 13 6 12 14 6 7 7 5 11 10 12 3 12 12 6 7 10 10 11 8 14 13 9 5 10 7 10 13 7 12 11 14 9 12 9 11 8 10 6 10 9 9 7 16 10 9 11 6 13 11 7 15 7 14 6 7 12 10 11 6 7 12 13 10 9 9 6 6 8 4 10 11 15 10 9 9 12 10 6 9 13 10 7 14 12 11 16 12 14 13 13 17 10 26 12 9 19 10 10 12 15 8 16 12 9 8 9 14 7 6 9 9 8 12 10 6 8 6 6 7 8 14 10 8 10 6 10 4 13 7 18 6 9 9 9 2 5 8 16 8 13 9 9 17 5 7 15 10 11 14 11 14 8 14 10 12 16 16 10 5 10 13 15 11 11 9 17 13 16 14 12 15 12 20 15 17 13 9 19 12 16 7 12 10 9 20 18 14 7 11 8 12 16 9 14 +10 7 10 16 20 8 5 7 13 11 12 7 9 9 14 10 12 14 18 8 15 6 12 9 13 16 17 9 7 15 11 12 9 15 14 9 17 12 19 9 11 9 9 16 13 9 9 16 15 14 9 15 11 21 13 12 10 14 11 8 4 9 9 6 10 7 12 3 11 7 7 10 11 6 5 5 4 10 6 10 20 5 7 12 1 11 8 5 11 7 4 7 17 8 18 5 16 11 13 17 10 6 9 14 18 9 12 14 10 15 8 13 8 9 14 14 17 12 11 10 10 6 11 7 8 6 10 9 9 7 6 7 11 8 12 10 10 12 9 10 10 13 10 12 5 6 8 7 5 10 2 12 6 14 15 8 11 10 8 8 8 12 7 7 14 9 8 6 14 9 5 6 10 11 8 14 6 5 5 13 5 9 13 11 8 5 8 11 16 10 16 14 11 15 15 17 13 11 11 13 10 10 16 14 10 6 8 11 5 11 15 7 4 7 4 9 9 7 6 12 7 7 6 14 8 7 12 13 6 14 7 7 2 7 14 13 4 8 10 11 12 15 5 10 5 7 10 11 10 14 13 7 13 12 11 13 8 15 13 17 13 12 17 16 18 15 10 12 6 12 10 10 12 11 10 14 15 15 13 12 8 11 14 16 10 11 19 16 12 14 8 11 13 12 11 14 9 11 7 11 +17 10 12 11 13 9 8 7 14 9 15 15 11 13 14 14 11 8 9 12 12 10 15 12 7 8 15 10 8 11 20 8 10 8 11 7 6 17 14 6 11 6 12 11 10 9 17 8 7 9 13 11 8 11 16 7 9 10 4 7 7 7 10 12 7 10 11 11 9 9 13 10 4 7 10 6 5 5 6 15 8 11 6 13 4 10 3 10 9 6 12 7 6 12 9 12 11 12 16 11 8 13 10 17 9 13 13 12 17 8 13 12 9 7 8 11 6 12 8 12 7 4 9 5 11 7 7 12 14 4 3 9 4 8 6 8 9 7 13 8 3 9 6 9 6 5 8 10 10 9 6 11 9 6 13 5 13 10 12 3 12 6 3 11 8 10 8 12 7 13 5 9 10 10 12 9 12 6 12 14 6 14 11 9 14 6 19 11 11 10 12 13 11 11 6 12 6 11 16 7 7 18 9 5 6 7 10 12 8 12 7 6 11 7 6 4 6 3 11 3 9 9 8 12 10 9 8 7 9 21 10 4 7 7 10 12 8 7 14 7 8 5 11 12 10 7 7 6 10 16 9 12 18 13 10 8 18 9 13 9 14 6 11 15 11 12 12 15 15 6 13 10 8 12 10 17 18 10 12 15 11 12 13 10 18 14 9 16 15 9 14 10 14 11 13 18 9 11 17 12 +7 16 14 16 13 9 15 12 13 12 12 12 10 9 13 13 14 11 11 8 10 9 15 8 11 7 5 8 10 12 6 15 6 12 10 12 9 16 19 11 4 8 14 11 8 8 7 10 9 15 3 12 9 11 11 5 10 8 8 5 16 6 9 7 8 14 6 10 12 8 10 8 13 14 9 4 12 8 9 3 17 6 10 9 12 7 2 10 2 11 6 9 9 6 13 11 6 10 4 8 13 9 10 8 12 13 11 13 10 13 8 12 12 14 9 12 7 4 10 10 12 4 5 7 11 9 7 7 6 4 10 10 13 8 11 6 4 11 9 3 7 5 7 6 7 16 10 8 9 10 7 10 7 3 18 5 8 9 8 7 6 12 10 11 12 6 8 10 10 6 8 12 7 8 11 10 3 11 11 10 6 12 4 12 10 6 11 9 13 9 14 8 16 9 14 15 12 11 15 7 6 14 9 13 10 13 11 5 12 4 9 8 6 6 3 6 8 6 7 9 7 11 11 11 7 8 18 11 10 7 11 10 5 7 5 12 6 10 9 8 7 11 10 6 8 9 22 8 6 11 7 8 10 5 5 9 12 13 11 6 13 13 7 10 11 10 8 14 16 4 10 9 8 14 12 17 14 10 20 12 13 9 7 13 11 10 12 6 17 11 13 8 14 7 9 17 11 12 7 15 +10 11 6 15 15 7 11 9 8 19 9 9 16 13 17 7 8 15 11 17 14 11 6 5 11 10 6 12 9 11 10 7 14 10 11 11 8 14 13 7 12 13 4 12 8 5 9 8 7 11 8 8 13 12 10 8 8 4 12 16 9 8 8 8 9 6 7 8 9 10 7 12 5 9 9 7 5 6 7 9 4 3 7 8 7 9 7 2 6 7 5 9 5 13 10 15 11 7 7 11 8 15 11 13 9 10 11 12 18 7 11 14 7 12 6 11 10 7 11 6 6 8 8 8 10 13 11 7 4 8 6 9 4 7 5 8 8 9 5 6 5 8 7 6 8 3 7 10 9 12 8 7 8 12 4 9 7 8 7 10 12 9 7 9 10 12 10 5 6 10 6 16 12 7 7 7 9 6 11 10 13 13 10 8 7 9 16 15 10 9 17 18 10 11 7 11 12 14 9 13 8 5 7 8 13 13 4 5 8 4 7 12 3 12 5 8 7 10 7 3 6 10 5 11 8 7 7 11 12 5 11 12 7 11 10 7 4 9 6 11 9 5 8 6 10 12 12 10 10 13 10 13 9 10 7 8 6 14 10 11 8 15 13 15 6 13 15 7 6 14 10 11 13 12 10 11 13 13 7 10 17 8 13 9 4 11 7 9 14 11 13 17 16 8 12 14 9 8 7 8 +5 9 11 12 10 8 12 8 6 8 10 15 15 9 16 8 11 12 7 11 16 10 8 7 10 9 7 11 6 12 12 6 8 18 16 10 8 11 11 12 7 9 6 10 7 9 11 11 9 12 9 8 8 8 7 10 12 2 8 11 5 10 7 9 13 10 7 7 7 2 3 8 15 9 2 9 4 5 10 10 6 4 7 8 2 6 7 6 10 5 8 11 12 13 6 9 7 9 6 7 10 8 8 5 13 14 7 8 17 13 10 8 8 12 11 10 5 8 11 9 10 5 11 9 7 12 9 7 6 13 8 7 7 7 6 9 9 7 11 3 10 8 16 9 7 5 12 5 9 13 4 7 4 12 14 7 9 1 10 6 9 8 5 9 2 9 11 6 4 13 5 10 2 8 9 6 10 5 6 6 14 9 7 10 15 8 4 8 5 12 12 10 9 9 17 14 11 8 6 12 11 7 11 13 6 5 6 6 6 7 8 7 4 5 8 6 3 5 9 6 7 7 7 9 6 9 4 5 5 9 7 7 15 12 7 6 10 8 9 6 6 9 12 3 8 14 4 8 8 9 10 12 10 8 9 5 11 9 11 10 14 15 13 10 8 13 11 12 10 12 8 14 15 13 8 11 12 3 10 3 7 11 16 12 13 17 10 9 9 12 9 9 18 12 8 10 8 7 4 13 +13 10 5 7 6 4 5 10 10 7 7 12 11 4 13 10 6 3 11 9 11 12 12 12 11 9 13 9 6 11 7 14 7 9 13 14 12 6 15 10 6 12 10 3 10 8 8 9 11 4 10 8 12 8 10 6 7 10 9 10 3 9 1 5 7 9 7 10 7 7 7 9 1 4 5 7 8 4 6 3 6 3 12 7 7 5 10 10 5 4 5 7 8 5 8 3 9 10 6 11 4 7 9 8 10 11 10 5 7 11 10 10 12 15 10 12 12 9 14 8 6 9 10 8 9 10 11 7 11 6 6 6 8 6 6 10 6 5 16 6 5 2 5 7 9 10 12 8 9 7 5 6 7 8 7 6 10 10 7 8 9 10 11 9 6 7 9 8 10 7 4 0 8 7 7 10 12 12 6 9 3 16 15 11 7 16 19 7 10 14 8 15 10 13 12 3 13 8 6 5 5 3 9 8 12 3 7 8 7 8 5 5 4 6 11 8 5 7 6 7 6 8 8 5 3 9 5 5 6 8 7 11 4 9 7 2 6 6 4 5 9 4 8 10 6 7 8 8 9 8 9 3 9 7 11 12 8 5 7 6 11 10 13 15 13 10 6 4 5 6 6 12 9 7 10 3 15 7 6 6 7 13 6 13 6 22 13 7 12 9 8 11 7 10 10 9 8 10 5 8 +11 14 9 9 3 8 10 9 9 6 9 11 8 9 6 11 7 12 8 11 13 6 8 11 13 11 8 5 4 9 17 6 7 12 10 15 6 7 7 8 7 7 7 7 8 8 13 8 10 5 8 11 7 5 9 6 7 7 6 4 6 6 5 10 8 8 8 6 9 8 5 4 8 8 8 7 7 5 14 6 4 4 6 3 9 2 4 12 6 6 3 5 9 2 12 6 2 9 12 9 4 7 9 7 5 15 12 12 12 16 10 5 8 7 10 16 10 12 9 10 16 16 12 12 8 11 6 13 5 8 6 10 6 7 6 6 6 13 12 6 10 8 3 8 8 7 4 7 5 7 7 11 11 3 9 7 8 7 5 12 7 9 9 8 5 5 7 8 12 8 6 7 10 9 10 7 6 7 8 10 11 7 10 15 10 17 11 11 10 6 9 11 8 4 5 9 8 11 3 9 7 7 9 5 11 8 8 3 4 5 7 6 3 8 2 2 6 6 3 7 4 7 5 8 9 4 8 11 13 8 2 10 9 8 6 7 2 5 9 8 8 8 10 6 7 9 7 9 6 8 7 8 3 11 4 6 5 10 4 10 6 6 11 15 10 15 8 5 12 8 6 13 5 12 15 6 7 8 8 8 8 17 8 12 14 11 10 9 10 11 9 8 10 6 10 10 12 6 10 9 +8 9 13 9 7 9 9 12 3 10 12 12 9 10 11 7 13 10 11 13 5 10 7 10 3 8 6 10 8 4 7 8 8 8 12 6 10 9 8 8 8 7 7 9 10 8 9 10 8 10 6 8 8 7 10 3 9 7 7 7 11 5 5 13 6 9 10 5 7 7 10 11 3 9 5 7 3 1 3 9 8 7 8 7 6 3 7 5 8 4 1 1 4 10 11 4 6 8 12 6 13 9 8 8 5 6 5 6 9 6 5 11 14 14 10 11 13 18 9 13 8 9 10 7 9 8 8 11 9 7 6 7 2 6 4 13 10 8 4 6 7 10 8 9 7 7 9 7 6 11 10 9 6 3 10 4 7 5 1 7 10 6 7 6 5 5 7 6 5 11 7 11 10 14 13 6 10 7 13 9 15 17 7 12 10 7 7 13 9 9 7 6 9 11 8 9 4 11 6 4 7 5 9 11 9 8 6 8 6 8 7 3 2 4 5 10 8 7 2 5 8 9 11 8 8 8 2 5 6 9 5 3 3 8 5 8 9 4 9 3 5 8 2 5 8 5 5 14 7 10 6 6 12 9 7 7 9 5 8 7 8 9 7 8 13 6 7 9 5 8 9 7 6 10 2 12 8 11 11 5 6 8 11 10 14 6 6 7 10 3 12 7 8 11 10 9 10 8 11 4 +6 9 11 10 9 6 7 3 7 11 6 7 5 10 8 9 4 10 6 12 12 13 8 16 2 7 9 6 8 7 3 14 11 9 3 7 4 7 7 6 7 13 6 6 6 15 7 6 6 5 5 3 4 7 6 7 6 4 3 4 11 5 8 8 11 7 5 8 11 3 3 7 6 5 6 5 6 4 8 9 5 8 7 4 5 6 10 3 4 4 3 3 3 5 5 4 8 7 9 8 7 10 9 5 8 9 8 6 8 9 4 5 10 8 8 5 17 9 7 7 7 8 6 7 10 9 11 9 13 7 8 8 9 17 9 8 7 8 9 4 5 6 3 12 8 7 6 5 6 4 8 11 12 10 10 7 3 11 6 5 10 8 4 6 5 8 9 10 5 11 16 12 9 6 6 10 9 15 13 10 7 5 12 2 3 5 6 10 13 8 6 8 3 6 11 2 6 8 10 4 8 6 7 4 7 5 5 4 3 6 6 3 4 3 11 6 4 7 5 7 5 8 11 1 10 7 3 1 5 3 9 6 5 5 4 5 4 5 7 6 2 6 6 7 12 6 4 9 5 7 6 7 13 11 9 8 6 11 10 4 5 10 6 8 9 8 11 8 10 5 9 9 13 10 10 4 9 10 5 2 7 5 7 6 9 9 9 4 12 10 11 7 12 7 4 7 4 11 7 10 +4 7 9 9 4 5 7 9 7 6 8 7 7 4 9 5 5 5 7 8 7 9 3 3 14 7 5 6 2 3 7 6 8 10 6 3 9 9 7 4 4 7 4 9 6 4 3 5 6 2 9 6 7 2 8 3 5 5 6 4 4 5 6 4 8 9 5 1 9 10 5 4 10 3 7 6 2 11 5 3 4 4 2 6 2 3 4 7 4 4 8 6 2 7 1 8 4 7 10 10 7 2 7 8 6 7 7 5 11 7 9 4 7 5 11 7 6 7 8 7 11 9 10 7 6 11 17 7 11 9 5 11 11 9 11 14 6 9 3 6 12 12 8 12 6 2 10 6 8 6 11 9 5 8 8 10 4 6 5 10 7 9 7 16 9 8 11 6 10 8 10 11 4 6 8 6 10 8 10 7 7 7 6 3 10 7 8 9 10 3 7 5 6 9 7 8 6 6 6 1 6 4 6 6 5 7 3 7 2 11 3 4 3 6 5 8 5 7 6 6 8 11 5 5 5 7 3 9 4 6 4 5 4 7 3 4 11 3 3 0 7 5 8 10 7 5 2 0 2 8 9 3 7 5 9 5 12 7 7 5 6 8 15 4 9 11 14 9 7 5 8 5 9 7 6 4 8 8 8 7 6 4 8 11 8 9 7 5 8 8 8 7 2 8 10 6 7 8 8 9 +6 7 7 4 11 6 11 12 10 6 8 8 10 2 4 8 5 10 8 6 9 7 7 4 5 9 7 14 4 8 7 14 8 9 4 5 5 7 5 7 7 6 8 7 3 9 9 8 5 10 6 3 5 8 6 6 4 3 8 9 2 2 1 4 6 5 7 11 3 6 5 2 9 4 8 7 11 7 5 5 6 3 2 7 9 5 3 1 8 5 4 6 6 4 4 8 3 4 3 5 4 8 6 6 5 5 7 10 10 6 3 9 7 4 8 8 9 3 11 4 7 7 7 7 9 12 6 7 7 4 7 11 6 10 7 6 11 7 2 9 16 7 7 9 11 9 5 6 5 9 8 8 9 4 6 12 13 13 13 7 7 6 9 7 12 7 8 5 8 7 10 7 10 2 6 7 9 7 6 9 8 4 4 6 3 7 6 10 6 2 7 4 8 6 6 3 6 6 7 6 4 5 3 5 10 8 0 5 3 4 10 2 6 5 0 4 3 8 9 6 2 5 3 10 8 1 8 6 7 4 6 5 5 5 7 7 3 7 5 2 7 6 3 6 4 5 3 4 6 3 6 4 2 3 5 5 7 9 8 7 6 11 4 2 6 8 4 4 7 7 8 11 6 5 10 8 9 7 5 13 6 7 9 7 5 10 6 6 10 6 8 3 6 4 7 3 5 5 7 7 +6 9 9 6 7 3 7 7 6 13 4 6 3 2 10 4 6 3 9 4 3 8 4 8 2 5 11 4 5 7 5 5 11 3 4 5 5 10 6 10 6 6 2 5 5 7 2 5 10 3 2 3 7 6 5 7 5 6 5 7 8 8 9 8 3 3 6 7 4 6 6 6 7 4 6 4 4 6 6 2 3 7 3 5 4 1 0 1 2 4 7 5 0 5 3 4 3 6 4 5 5 8 6 8 8 7 2 7 4 5 7 6 12 6 5 8 4 6 5 6 1 5 6 5 5 9 7 8 6 7 8 9 11 9 4 9 6 8 7 5 9 8 9 13 15 10 0 1 10 7 6 7 5 10 12 6 6 10 12 9 7 9 8 7 1 4 12 5 5 6 8 5 2 5 8 6 2 3 11 6 8 4 6 7 5 6 2 7 2 5 3 7 2 4 7 5 4 2 5 7 4 3 5 1 4 5 5 4 4 2 3 5 5 4 7 2 3 5 2 6 8 6 7 5 4 2 6 5 2 7 6 4 6 9 9 4 2 3 5 4 5 6 5 3 4 7 3 1 3 5 7 6 4 6 6 6 3 3 8 5 4 6 8 6 4 7 3 7 8 5 9 5 9 2 6 10 3 9 6 7 5 7 6 3 7 6 5 3 8 7 12 7 7 11 5 7 6 3 4 4 +5 2 6 6 4 6 0 8 4 5 5 7 5 9 3 10 11 5 5 6 7 9 3 2 3 5 2 6 8 2 5 12 6 3 8 6 2 5 6 4 5 4 5 5 4 7 2 6 2 1 4 4 4 4 7 3 5 3 7 5 4 2 2 5 5 5 6 1 1 7 8 7 6 3 3 7 3 4 6 2 4 2 4 2 5 5 3 0 0 4 6 1 7 4 2 3 6 1 3 0 3 6 4 7 4 2 10 3 4 4 2 5 5 3 3 10 7 7 6 2 4 6 4 6 2 6 3 6 4 8 4 7 5 10 8 7 7 11 6 8 10 5 7 3 8 7 5 8 6 7 11 1 13 5 6 6 10 8 7 5 13 7 3 8 10 5 4 12 12 9 3 6 7 2 5 7 8 1 4 8 5 10 11 6 8 8 5 8 4 1 5 3 4 3 3 4 3 8 4 5 4 6 3 3 5 5 2 1 7 6 3 1 3 2 4 5 4 7 4 6 8 7 5 5 2 6 6 4 4 6 4 3 4 5 5 5 3 6 7 5 4 4 7 4 4 4 11 5 3 6 4 2 6 4 2 9 10 5 8 6 6 2 4 4 3 5 7 6 7 4 5 3 9 7 5 7 5 4 9 9 5 4 5 5 4 5 2 4 4 4 8 6 5 8 7 4 2 9 7 8 +7 8 6 2 6 3 5 2 9 5 4 6 6 3 3 7 7 4 4 8 7 4 4 1 8 5 2 1 8 4 4 2 10 6 2 2 5 4 5 3 7 3 6 2 3 2 6 5 4 8 2 3 1 2 8 7 5 5 8 5 3 4 7 2 6 5 7 6 4 3 1 4 5 4 2 3 6 3 5 4 4 2 3 3 0 3 4 2 3 2 4 3 4 2 2 7 4 7 1 5 5 3 3 3 2 5 2 3 3 6 5 5 4 5 6 4 3 9 5 7 8 6 5 7 5 7 3 9 7 4 5 5 2 9 6 4 5 7 4 0 5 7 2 5 5 2 6 7 6 5 3 7 7 9 4 7 5 9 6 5 5 5 2 4 5 8 5 3 4 6 7 8 4 4 7 5 6 5 9 4 2 2 2 5 7 8 2 4 4 6 6 2 4 3 5 3 2 3 1 3 4 5 5 1 2 0 3 0 2 2 3 3 5 2 4 2 6 8 2 4 5 1 4 6 4 4 8 7 4 7 4 1 3 7 0 4 4 5 6 10 9 3 6 4 2 5 3 5 8 2 4 6 2 3 3 3 2 3 5 7 7 3 7 7 3 4 6 8 4 2 9 6 7 7 6 3 5 3 4 6 8 7 7 2 2 7 4 4 5 7 4 2 2 6 3 5 3 6 8 3 +4 4 3 5 6 5 7 1 3 2 4 5 6 3 6 4 5 8 3 7 5 7 11 1 8 7 5 5 5 3 3 9 3 5 3 2 6 8 1 5 2 3 6 9 8 3 3 2 4 5 3 5 4 8 6 4 4 5 1 5 1 3 3 7 4 6 1 4 8 1 9 4 2 2 2 4 4 5 4 6 5 1 5 4 5 2 5 1 2 2 3 8 4 7 3 2 5 3 1 8 4 0 5 2 3 4 4 1 1 2 5 3 4 4 1 4 1 4 3 7 7 2 2 2 7 4 7 4 2 5 3 5 3 3 6 2 3 5 8 7 4 6 6 3 3 4 6 5 2 3 1 5 0 4 3 4 3 1 6 5 3 4 5 3 3 6 2 2 7 4 3 4 2 9 1 0 5 3 2 10 6 3 7 4 5 7 0 5 2 1 2 3 0 3 4 2 6 3 2 6 3 2 2 5 5 8 3 2 2 3 1 3 3 2 6 2 6 2 4 3 2 4 4 3 5 4 6 7 3 7 1 1 6 8 2 0 6 1 5 3 4 3 4 2 0 3 5 4 2 8 7 3 3 2 4 5 2 8 5 4 0 2 6 4 8 2 1 1 5 5 5 5 5 2 9 9 3 5 6 9 9 7 12 4 4 4 7 3 5 8 6 4 3 4 4 2 3 5 7 7 +4 8 4 4 8 5 2 2 3 3 5 3 4 3 6 3 1 3 4 4 3 3 4 8 4 3 1 5 3 3 3 3 5 3 2 5 5 6 3 4 2 4 2 3 5 5 3 4 5 3 4 6 4 7 2 5 5 6 4 1 5 3 7 2 1 3 1 3 3 6 1 2 4 4 2 3 2 2 5 3 1 2 3 5 1 0 4 2 0 4 5 3 2 4 2 3 2 3 3 2 5 2 2 2 4 0 5 2 2 1 5 6 2 3 2 4 4 2 2 2 1 4 5 4 1 7 6 5 3 6 4 3 3 3 0 2 4 2 4 6 8 5 3 4 10 5 2 2 3 3 4 5 2 5 6 2 3 2 6 5 1 5 2 4 1 5 2 2 5 5 2 2 4 4 6 3 4 6 2 0 4 3 6 1 2 0 2 2 7 3 1 1 4 4 4 1 3 5 1 1 2 3 2 4 2 3 3 1 0 1 3 4 0 3 2 4 5 6 1 1 3 2 3 2 4 0 3 2 2 2 2 3 3 3 1 3 3 7 5 3 0 3 2 1 2 2 3 4 6 3 3 1 3 0 1 3 2 3 5 6 1 3 2 3 2 6 1 0 6 2 6 4 5 5 4 6 6 7 8 3 4 3 4 7 5 2 6 4 2 3 3 3 2 5 3 3 4 6 9 4 +7 5 5 2 7 4 5 1 5 3 0 4 0 3 3 3 3 5 1 3 2 2 3 2 2 3 1 2 4 4 4 3 3 1 4 0 4 2 7 4 1 3 4 3 4 6 3 1 5 2 1 4 1 3 3 1 3 3 3 2 3 3 3 0 1 10 4 3 2 5 2 2 1 5 4 3 1 4 2 2 3 4 3 4 5 1 2 5 6 2 4 1 2 3 4 3 5 3 2 1 2 3 1 3 4 4 3 1 2 0 6 1 0 2 5 2 2 1 2 2 1 2 0 3 7 6 2 3 2 3 3 4 6 5 2 2 6 2 1 3 5 3 6 1 5 5 6 4 2 4 0 2 2 4 3 4 4 3 6 9 6 3 4 4 4 0 1 2 3 9 7 8 5 5 1 1 3 1 4 2 6 2 3 4 3 2 8 1 0 3 4 3 3 2 0 6 3 1 5 3 3 1 2 1 2 1 5 0 4 2 3 4 3 3 2 0 1 7 0 1 2 3 2 3 2 5 3 1 5 5 4 3 3 3 3 3 3 4 5 2 6 6 3 2 2 4 3 2 2 1 1 6 2 4 5 8 2 2 2 5 2 2 3 0 3 2 3 6 3 2 4 6 4 5 4 4 3 3 4 4 5 8 1 2 2 5 3 1 3 3 1 4 4 4 3 3 0 2 3 5 +2 6 1 3 3 3 3 6 0 0 7 1 2 1 2 5 4 2 4 7 3 0 5 1 1 3 4 3 1 2 2 5 1 1 1 1 3 4 2 2 3 1 1 1 3 2 1 4 2 1 1 1 3 0 0 4 2 3 2 3 1 1 2 1 3 3 3 5 1 4 5 2 3 1 0 4 5 4 3 1 3 2 0 1 5 1 2 4 1 1 1 1 1 4 3 1 2 2 1 1 2 0 1 3 2 5 4 1 4 1 4 1 3 6 2 3 2 1 0 0 2 5 2 3 4 4 2 1 4 3 3 3 4 1 6 4 5 1 2 1 3 3 2 3 5 1 6 4 2 4 1 2 4 4 1 2 2 2 4 4 2 4 3 2 3 2 5 1 0 2 2 2 2 1 4 1 2 0 3 3 0 3 3 2 2 1 2 0 1 3 4 3 3 1 2 2 1 3 3 2 4 2 2 2 0 3 3 2 1 0 1 3 3 2 2 1 2 4 1 2 7 6 3 3 4 5 5 3 1 5 2 5 3 3 1 3 0 2 4 0 2 2 3 6 3 2 1 2 2 4 1 4 4 1 1 2 5 3 4 6 3 3 2 4 1 3 3 3 2 1 4 3 3 0 1 2 0 1 6 5 1 1 2 3 2 0 2 4 1 2 1 6 1 2 5 4 2 1 7 2 +7 1 2 2 1 2 5 5 2 3 4 2 3 3 1 2 1 1 3 4 3 3 3 2 1 1 3 4 2 3 2 1 4 1 2 3 3 5 1 1 2 2 2 1 1 4 3 5 6 3 6 5 3 1 3 4 3 1 2 3 2 3 1 6 2 3 0 5 2 1 3 2 2 2 1 4 3 1 0 3 1 1 3 1 5 3 0 3 4 3 2 3 2 2 3 1 2 5 1 0 0 4 0 2 3 2 1 2 5 2 2 3 2 4 0 0 0 3 1 2 2 0 3 0 2 2 1 2 2 5 1 0 1 1 2 4 1 2 2 2 3 4 2 3 1 0 2 1 3 6 0 1 3 5 1 0 1 1 5 3 1 3 1 1 3 0 0 4 3 4 3 2 1 4 0 2 2 2 1 2 0 1 1 2 2 2 1 2 0 0 1 3 4 2 1 2 0 1 2 1 4 4 2 3 2 2 2 3 4 1 1 4 2 2 2 3 3 3 3 4 2 1 2 2 2 5 1 1 3 3 1 1 3 2 1 2 3 1 4 1 5 2 5 0 0 0 3 1 1 2 3 2 2 0 4 0 3 1 1 2 2 2 1 2 3 3 3 1 2 2 3 0 2 1 1 2 0 2 0 0 4 4 4 2 3 3 2 3 2 4 1 0 7 4 2 4 1 2 3 3 +2 5 5 1 3 0 2 4 2 1 1 2 2 1 1 0 1 2 4 3 0 4 3 3 3 4 5 1 0 2 6 4 1 4 1 1 2 2 4 1 2 0 2 2 3 2 3 4 2 2 2 2 3 5 2 2 0 1 3 2 4 1 0 3 4 3 7 4 2 2 3 0 5 3 2 1 2 2 5 4 0 1 3 1 2 3 1 1 0 3 4 4 2 2 1 0 1 2 0 1 1 0 2 0 2 1 0 4 0 3 5 2 3 2 0 3 3 1 1 1 3 0 0 1 1 2 0 3 2 0 1 0 1 1 1 4 0 1 3 2 2 3 1 2 3 3 2 1 1 2 1 2 2 2 2 2 0 1 4 4 2 2 0 2 5 0 1 0 2 1 1 2 3 4 0 1 0 3 1 2 0 0 1 2 1 4 0 0 3 1 1 0 2 5 3 1 3 2 1 1 4 5 0 0 3 4 0 3 2 1 2 3 1 0 0 2 1 1 2 0 0 2 0 1 3 1 0 0 3 2 3 0 2 1 3 3 2 2 1 1 2 3 1 2 7 3 0 1 2 1 2 0 2 1 6 3 2 3 2 3 0 2 2 1 1 5 2 2 1 1 5 1 2 1 3 3 0 1 1 3 2 0 3 2 1 0 3 5 2 4 1 0 2 2 3 3 3 2 1 1 +3 2 3 0 2 1 2 2 1 2 2 1 4 4 3 0 2 1 2 0 1 1 3 1 0 2 2 2 0 0 0 0 4 3 0 2 0 2 2 5 1 1 1 2 1 1 3 1 0 6 3 4 0 2 0 2 2 0 1 0 0 1 0 3 1 0 2 1 2 1 1 1 3 2 0 1 1 0 2 3 0 2 1 2 1 1 3 2 1 2 1 1 2 2 0 0 0 2 1 0 1 0 2 2 3 1 1 2 1 1 4 2 2 2 3 1 2 3 0 0 3 1 2 3 1 2 0 0 1 1 2 1 1 4 0 1 2 2 2 0 4 1 0 2 1 0 1 1 0 1 3 0 2 3 1 0 4 1 1 1 1 2 1 1 1 1 0 0 1 1 1 0 3 1 2 1 1 2 0 2 2 0 1 5 0 1 1 2 0 0 1 1 2 1 1 1 1 0 1 0 1 0 1 3 2 2 1 0 1 2 3 0 1 0 1 1 0 2 2 2 3 1 0 3 0 0 1 1 3 3 1 3 2 3 1 2 0 2 0 6 1 2 1 1 0 2 4 2 1 2 0 0 0 2 3 1 1 0 1 1 4 1 2 4 1 4 3 1 2 5 1 3 1 3 0 1 1 0 0 1 1 1 3 3 3 1 2 3 3 0 2 1 2 0 0 3 0 1 0 0 +1 2 1 1 2 0 1 1 0 2 1 1 3 1 1 2 0 2 3 2 1 0 0 0 0 2 0 0 2 2 2 1 2 1 1 0 2 2 2 1 2 2 2 3 0 2 1 5 2 1 2 0 1 0 1 1 4 1 1 1 1 4 3 0 2 0 0 0 1 2 1 1 0 2 2 0 1 1 0 0 1 1 1 4 0 4 1 0 1 2 1 3 1 0 0 0 0 0 1 1 4 0 2 0 1 2 0 1 0 1 0 2 1 1 1 0 2 2 0 2 0 0 1 0 2 3 2 0 1 1 0 3 0 0 1 0 2 1 1 1 1 2 0 1 1 1 0 1 1 3 1 0 1 2 0 2 3 0 0 0 2 2 0 1 0 2 0 1 2 0 1 0 1 1 0 0 0 1 1 2 1 0 2 0 1 1 2 2 0 0 0 2 3 0 0 0 0 1 1 2 1 1 2 2 1 1 4 1 0 1 1 1 0 1 1 1 0 1 0 2 0 3 1 1 0 1 1 2 3 2 0 3 0 2 4 1 3 0 0 3 2 0 1 2 4 2 2 1 1 2 0 1 2 0 1 1 1 1 1 1 0 0 0 0 3 1 0 0 1 2 2 2 2 0 0 2 0 1 1 2 1 1 1 2 3 1 1 0 0 1 0 2 1 0 1 1 0 0 2 0 +1 1 1 1 0 0 2 0 1 1 2 1 0 1 0 0 0 0 2 1 0 0 1 0 1 1 0 1 0 2 2 0 1 0 0 1 1 0 0 0 1 1 0 2 2 1 1 1 0 0 0 2 0 0 1 1 1 1 0 1 0 0 0 0 1 0 1 0 0 1 1 1 1 1 2 1 1 0 0 0 0 0 0 1 1 2 0 1 1 2 0 2 1 0 1 0 0 0 0 3 0 0 0 0 2 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 1 0 1 0 0 0 3 0 2 0 4 0 1 0 1 1 0 0 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 2 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 3 0 0 0 2 0 1 2 1 1 2 1 1 0 0 0 0 1 2 1 0 1 0 2 1 2 2 2 0 0 0 1 1 2 2 1 0 2 0 0 1 2 0 0 0 0 0 1 0 2 1 0 1 2 2 1 0 2 0 0 2 3 1 1 0 1 0 4 1 2 0 1 3 0 0 0 1 1 1 1 0 1 1 1 2 0 1 1 0 0 0 1 2 0 1 0 1 0 2 2 0 1 0 0 0 1 3 0 0 2 1 1 1 2 3 0 0 +2 1 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 2 0 1 0 1 1 1 0 0 0 1 0 1 1 2 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 2 0 0 0 1 2 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 1 0 3 0 0 3 0 0 1 0 0 0 1 0 0 1 0 0 0 1 1 0 1 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 1 2 0 2 1 1 0 0 0 0 1 0 1 0 1 0 2 1 1 0 0 1 1 0 0 1 1 0 0 0 1 0 0 1 0 0 1 1 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 1 0 2 0 0 2 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 3 0 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 diff --git a/mcstasscript/tests/test_data_set/event_dat_list.p.x.y.z.vx.vy.vz.t b/mcstasscript/tests/test_data_set/event_dat_list.p.x.y.z.vx.vy.vz.t new file mode 100644 index 00000000..989f9608 --- /dev/null +++ b/mcstasscript/tests/test_data_set/event_dat_list.p.x.y.z.vx.vy.vz.t @@ -0,0 +1,12029 @@ +# Format: McCode list with text headers +# URL: http://www.mccode.org +# Creator: McStas 2.7 - Nov. 27, 2020 +# Instrument: event_test.instr +# Ncount: 12000 +# Trace: no +# Gravitation: no +# Seed: 1630142078 +# Directory: event_data +# Date: Fri Aug 27 12:51:34 2021 (1630061494) +# type: array_2d(8, 12000) +# Source: event_test (event_test.instr) +# component: monitor +# position: 0 0 2 +# title: Intensity Position Position Position Velocity Velocity Velocity Time_Of_Flight Monitor (Square) +# Ncount: 12000 +# filename: event_dat_list.p.x.y.z.vx.vy.vz.t +# statistics: X0=0; dX=0; Y0=0; dY=0; +# signal: Min=2.49999e-06; Max=2.49999e-06; Mean=0; +# values: 0 0 0 +# xvar: List +# yvar: p +# xlabel: List of neutron events +# ylabel: p x y z vx vy vz t +# zvar: I +# zlabel: Signal per bin +# xylimits: 1 12000 1 8 +# variables: p x y z vx vy vz t +# Data [monitor/event_dat_list.p.x.y.z.vx.vy.vz.t] I: +2.499985086e-06 0.005476124948 -0.00688575492 0 1.632069004 -0.5240574608 992.5004585 0.002015112419 +2.499984569e-06 -0.001733593824 0.004791744661 0 1.381763976 -0.8502880853 923.5218743 0.00216562277 +2.496856437e-06 0.0008841058053 -0.004494516801 0 18.94603399 -17.15675038 1018.890295 0.001962919864 +2.497044251e-06 0.007899970417 -0.009599994554 0 21.68522323 1.791436417 894.5392473 0.002235787872 +2.497127939e-06 0.002746270066 0.004339154698 0 8.944170969 23.42568419 1045.788193 0.001912433142 +2.498591539e-06 0.005766389919 -0.003936564261 0 15.10675725 2.503815482 912.1717984 0.00219256943 +2.494442331e-06 0.008963741655 -0.01207258223 0 13.64230533 -30.81198184 1009.875948 0.001980441264 +2.496267853e-06 -0.006437451518 -0.003652858904 0 -28.78474349 -4.489612533 1065.722258 0.001876661564 +2.496786367e-06 -0.003534191852 0.01211220376 0 -24.34546891 6.840194821 996.9980213 0.002006022035 +2.499201739e-06 -0.007529071802 -0.004231258454 0 4.483371261 -12.06810202 1018.764369 0.001963162494 +2.497732451e-06 -0.00276489717 -0.006969841509 0 19.23156592 12.21812856 1069.545763 0.001869952712 +2.499762516e-06 0.003068927624 0.004148559293 0 -5.751541185 -3.682916722 990.9476005 0.002018270188 +2.498647519e-06 -0.006163896406 -0.008998548598 0 -13.6361434 7.233695076 938.353772 0.002131392295 +2.499539447e-06 0.002081135092 -0.006960694841 0 4.877260296 -7.022674698 890.8215809 0.002245118487 +2.499344236e-06 0.006125937179 0.005604947666 0 -10.32117247 1.050186456 905.8037115 0.002207983887 +2.497401839e-06 0.001464129761 0.005609475807 0 -22.72506149 8.188914395 1059.249233 0.00188812976 +2.498954247e-06 -0.002471557772 0.01121518917 0 13.37871014 -2.522750707 941.2468763 0.002124841049 +2.498251507e-06 -0.002076305286 -0.01083195396 0 15.22874075 7.426736265 905.8028408 0.00220798601 +2.497462064e-06 -0.004008813258 0.007711837082 0 -13.57043188 -16.31655956 941.6120828 0.002124016924 +2.49855457e-06 0.009577006693 -0.003736359207 0 5.457628832 15.72199525 978.6022319 0.002043731288 +2.495577247e-06 -0.008312994759 -0.004820886652 0 -23.95883662 12.16736438 902.9010648 0.002215082115 +2.498508805e-06 -0.0009346664883 0.0007737028738 0 -2.965880758 17.64802359 1036.011633 0.001930480253 +2.499507127e-06 -0.0004463621275 0.01030021374 0 6.77265304 -7.244417172 998.7883536 0.002002426232 +2.496769489e-06 -0.002883989005 0.004426012484 0 -13.55568086 21.6026086 1002.856632 0.00199430301 +2.497832947e-06 0.008956127753 -0.002919677873 0 16.62296075 11.36358022 966.895888 0.002068475029 +2.499832753e-06 0.009805621132 -0.0118382482 0 1.016629505 -5.990096529 1050.498155 0.00190385865 +2.499421524e-06 0.005425303122 0.01383663482 0 -0.1002391701 9.921016287 922.322878 0.002168438025 +2.49597915e-06 -0.004843568378 0.01210303007 0 -25.94601211 13.47242352 1030.317812 0.001941148621 +2.496672613e-06 0.00350157111 0.01015715958 0 6.384707054 22.69779569 913.5578061 0.002189242965 +2.496339288e-06 0.006132966266 0.006061192118 0 22.82102272 -8.812951443 903.6156921 0.00221333031 +2.496298119e-06 0.001811339199 -0.008283818769 0 -18.79057757 -16.80730719 926.0077667 0.002159809099 +2.499504736e-06 0.008547971067 0.00955616818 0 8.178637635 -5.624740581 997.2724265 0.002005470067 +2.498886849e-06 0.008396180794 0.01303440363 0 -0.1915252308 15.61098647 1046.160731 0.001911752125 +2.498392909e-06 0.007747798916 -0.01494681782 0 17.56093623 3.375400529 997.2074995 0.002005600641 +2.49761974e-06 0.005943170544 0.006921155993 0 -9.651764612 20.24963838 1027.755808 0.001945987542 +2.499253366e-06 0.00191303188 -0.008436810435 0 7.370996926 -9.555571458 987.4691181 0.002025379795 +2.499019135e-06 -0.006660835962 0.006861666902 0 11.97389261 -7.810330539 1020.541752 0.001959743437 +2.498941874e-06 -0.005207632971 0.006969249048 0 -12.19015985 -4.28921283 888.1822892 0.002251790003 +2.499461983e-06 0.001431799126 0.01097990871 0 -6.247809433 -7.060404686 908.7928396 0.002200721565 +2.497847559e-06 -0.003554674331 -0.002008224113 0 -21.02045081 -6.611705063 1061.712117 0.001883749811 +2.496544823e-06 -0.009572534971 -0.0009221146535 0 -21.38223389 -9.075644263 883.1763552 0.00226455338 +2.496860813e-06 0.006194520216 0.008029699393 0 22.6281878 -11.62785713 1014.857698 0.001970719643 +2.497420598e-06 -0.005611266033 -0.01271674367 0 -2.240602106 -22.55013046 997.332026 0.002005350222 +2.49567472e-06 -2.108644694e-05 0.01024982001 0 22.06193582 -14.38007012 894.7958402 0.002235146734 +2.499091147e-06 -0.009229327347 0.003147861427 0 -6.406420209 12.65698128 1052.052859 0.001901045165 +2.49976738e-06 -0.005022102511 0.006077045908 0 -6.712946738 -2.081915692 1030.388737 0.001941015006 +2.499740463e-06 0.005723873638 -0.001024968862 0 2.938691172 6.610733083 1004.09756 0.001991838323 +2.494619989e-06 -0.007458014041 -0.01336348435 0 -14.54208897 -31.91348862 1068.280005 0.001872168337 +2.498280101e-06 0.001136284457 0.01219576627 0 16.98246202 8.398753801 1021.255127 0.001958374501 +2.498546229e-06 0.001667280551 -0.01384938365 0 -7.870602506 15.95446474 1043.093467 0.001917373719 +2.495790305e-06 0.008281009193 -0.004077090137 0 21.32604926 20.51073674 1019.086426 0.001962542085 +2.499088507e-06 0.009021220277 0.001662426239 0 -4.321941232 -12.42512635 974.2062859 0.00205295329 +2.497895425e-06 0.004063977916 0.009549332801 0 16.52087485 -12.88157093 1020.788309 0.001959270087 +2.498991222e-06 0.00963586329 0.00889300162 0 5.238543062 11.56203225 893.5114284 0.00223835973 +2.497675375e-06 -0.009633268388 0.005981239623 0 13.00472979 18.78190041 1059.116104 0.001888367094 +2.497526073e-06 0.003640855965 0.01449298027 0 17.31238786 10.67592689 914.0502459 0.002188063522 +2.499828213e-06 -0.0008232565597 0.00811874195 0 3.371877096 -4.337754906 937.2999027 0.002133788763 +2.496696897e-06 -0.007990758852 -0.01487318958 0 -20.74345096 16.12157416 1021.632868 0.001957650407 +2.498532325e-06 0.003729637708 -0.01224121948 0 13.43384757 8.061045569 914.2287005 0.002187636419 +2.497463714e-06 0.0004384329217 -0.01393433142 0 -22.99122994 -6.041223246 1055.068314 0.001895611851 +2.498381581e-06 -0.006202636538 0.0127914979 0 -14.49895639 8.14267793 924.0587611 0.002164364523 +2.497481613e-06 0.003914215062 0.001321119452 0 14.22439654 -17.43501215 1002.234228 0.001995541505 +2.496125793e-06 0.003159697014 -0.009964204801 0 -21.58770561 19.59914493 1046.863938 0.001910467949 +2.497671815e-06 -0.003031294397 -0.01157089066 0 -13.35972447 16.89151494 997.6827496 0.002004645265 +2.499656299e-06 -0.006821462568 -0.01022427376 0 7.623773699 -1.735191648 942.9949742 0.002120902078 +2.498721063e-06 0.007552930866 0.00622933913 0 14.29967529 3.547226309 921.0230958 0.002171498206 +2.496930876e-06 -0.001291483901 -0.01290409576 0 -22.65853619 -12.75628014 1049.043419 0.001906498782 +2.499037441e-06 -0.008108729641 -0.007049219802 0 13.34408459 6.446469464 1067.938274 0.001872767415 +2.498144436e-06 -0.001545119127 -0.01319298465 0 9.711852391 14.87157439 921.7531853 0.002169778236 +2.493905945e-06 -0.007436115337 0.008386091776 0 -17.84398724 25.49079238 890.459759 0.00224603075 +2.498170989e-06 0.004935684036 -0.007924232797 0 -13.81549513 -10.69647947 913.2899888 0.002189884948 +2.498195447e-06 -9.123015217e-05 0.01290616409 0 -4.293923446 -16.62806384 903.7374352 0.002213032151 +2.497664134e-06 0.003657920235 0.003992500326 0 -13.52091945 14.32439635 911.017361 0.002195347845 +2.495282948e-06 0.008910747725 -0.006951337389 0 22.79566943 21.28457847 1014.673209 0.001971077962 +2.495859423e-06 0.004931798694 -0.006546945486 0 27.03641983 13.93816135 1056.359862 0.001893294201 +2.497232364e-06 -0.003352350551 0.01437498282 0 -23.49826201 2.344661395 1003.314581 0.001993392738 +2.497921549e-06 -0.002921178034 -0.01313531215 0 9.329337513 16.52988516 930.670422 0.002148988463 +2.498799429e-06 0.006236083633 -0.00642187943 0 -5.821489163 14.34259176 998.7479054 0.002002507329 +2.497863253e-06 0.006559577216 0.007938934523 0 -8.916927538 -19.52148102 1037.841541 0.001927076457 +2.499718907e-06 0.004903384936 0.005604270946 0 6.982695172 -1.724825613 959.2372374 0.00208498995 +2.496561144e-06 -0.0063561831 0.0005599850183 0 -18.6258111 -19.36161117 1023.906046 0.00195330422 +2.497456814e-06 -0.006569413594 -0.01207498603 0 -20.33503068 -1.873664437 905.1295461 0.002209628455 +2.497047378e-06 0.008651970145 -0.002607780509 0 -13.30343052 19.8094359 981.5116458 0.002037673224 +2.495399141e-06 0.007671323181 -0.007110733883 0 28.70033166 -11.55284359 1019.205498 0.001962312806 +2.495076465e-06 0.007836574707 -0.003214955432 0 19.91853229 19.45124743 886.5515941 0.002255931875 +2.496250748e-06 -0.004252728308 0.004240146051 0 -18.91617511 15.87626614 901.3419022 0.002218913816 +2.49945307e-06 0.008700432526 0.01058993194 0 8.423740484 6.171203408 998.3497564 0.002003305943 +2.498538779e-06 -0.007014143239 -0.007393461044 0 17.70447906 2.277606387 1043.949214 0.001915802008 +2.498721999e-06 0.001527540232 -0.007482607279 0 -1.429551454 -14.62201364 918.7745969 0.00217681247 +2.499084735e-06 -0.003529742677 -0.00578131194 0 -10.56919782 -6.316481631 909.9341484 0.002197961252 +2.498525808e-06 0.004564218218 -0.003249399983 0 -13.32582746 8.423669492 917.9234711 0.002178830875 +2.498932772e-06 -0.00340594749 0.00934852038 0 5.649885607 -14.27174417 1050.456298 0.001903934513 +2.495502305e-06 -0.002637258936 -0.01149122981 0 -1.540318591 -27.49632673 917.5966296 0.00217960696 +2.498433868e-06 -0.002974388427 -0.002943998454 0 13.48199992 -12.48243766 1037.896946 0.001926973586 +2.496763929e-06 0.004298099861 -0.004687186468 0 21.19732569 -12.30576198 962.9749637 0.002076897194 +2.497823027e-06 0.005960387336 -0.007732736534 0 6.279110644 21.16496355 1057.673807 0.001890942166 +2.498539658e-06 0.005177797512 -0.008651454707 0 -15.21706588 2.242325286 899.8250763 0.002222654217 +2.493752989e-06 -0.0005317598302 -0.01164131233 0 19.08523907 -30.6960297 1021.63303 0.001957650097 +2.496366892e-06 0.007706710361 -0.001925554792 0 25.53299316 13.4378959 1069.803313 0.00186950253 +2.495804708e-06 -0.005549750235 0.001531030631 0 -25.05920896 17.42894868 1053.115342 0.001899127209 +2.49804171e-06 -0.005576659278 -0.01231783464 0 7.896327992 16.68699616 932.5532132 0.002144649733 +2.497972801e-06 0.004982564724 0.01270191244 0 15.08845114 -15.27776245 1066.077631 0.001876035986 +2.496314989e-06 0.001390462006 -0.01379625754 0 -0.2179167545 -27.42893248 1009.829423 0.001980532508 +2.495568876e-06 -0.004281493751 0.01368263257 0 -2.553357751 26.1455045 881.8553972 0.002267945523 +2.498748816e-06 0.005784426853 0.003022081561 0 -15.74860183 3.420985872 1018.584212 0.001963509719 +2.4976693e-06 -0.002373360475 0.002229967879 0 22.20328402 -0.05705883536 1028.036621 0.001945455988 +2.499424183e-06 0.003171622907 0.0119262697 0 -10.16162796 -4.716204826 1043.828904 0.00191602282 +2.498129193e-06 -0.00127328604 -7.165367715e-06 0 -0.04021170124 18.51113753 956.7154194 0.002090485801 +2.499121948e-06 0.004350648928 -0.006638495622 0 13.09965424 -1.128888882 992.0513054 0.002016024765 +2.498357935e-06 0.00498256397 -0.01120421486 0 0.9116112264 -18.5016489 1021.92667 0.001957087586 +2.496072892e-06 -0.005251844148 0.01078345716 0 9.553173518 24.83964899 949.0572515 0.002107354426 +2.498142304e-06 -0.009936385406 -0.008016889959 0 -19.89203446 5.493970308 1070.332047 0.001868579013 +2.494429782e-06 0.008580571497 5.391358864e-05 0 30.9686323 17.1675838 1059.977606 0.001886832315 +2.495029276e-06 0.00330721762 0.001219662961 0 19.17910167 23.75797732 967.6629893 0.002066835274 +2.496717724e-06 0.009236318306 -0.00419070761 0 23.70832444 -8.681324451 984.9327937 0.0020305954 +2.497373417e-06 -0.002597582885 -0.005288157854 0 18.65432393 11.95170852 966.2343966 0.002069891123 +2.499304253e-06 -0.0001970499987 -0.00755427443 0 2.536771038 -10.48953983 914.7723847 0.002186336222 +2.495857144e-06 -0.002031487599 0.001472656962 0 11.66183523 22.5365195 880.9918887 0.002270168461 +2.498212894e-06 -0.006941088415 0.01331174175 0 8.068061714 -14.88573026 895.3462356 0.002233772724 +2.497161578e-06 0.001591813923 0.00487746109 0 -9.038930511 21.10226353 963.0970444 0.00207663393 +2.498368214e-06 -0.00812166451 0.01423793709 0 14.3483611 -7.284065517 890.5142951 0.0022458932 +2.497747805e-06 -0.002051346721 0.0138091629 0 -16.8163409 -15.14128074 1065.836166 0.001876461002 +2.498487571e-06 0.006761496314 0.001805053549 0 -9.74370037 13.1934446 942.823562 0.002121287673 +2.498022026e-06 -0.002170714354 0.01298085156 0 8.67633897 16.38352206 931.8257715 0.002146323981 +2.497214312e-06 0.001846454027 0.002586862729 0 -11.99085576 -19.41018229 966.189879 0.002069986494 +2.497043729e-06 0.002066632574 0.0118368806 0 10.71993019 23.53837468 1063.222419 0.001881073954 +2.498507922e-06 0.009679576238 0.005763285414 0 -9.411005733 15.91476051 1070.058948 0.001869055909 +2.493637518e-06 0.006053738333 -0.0117561285 0 -17.11272847 -28.44393966 929.669283 0.002151302659 +2.497033681e-06 -0.00125230134 0.01153498209 0 -23.95732177 -5.957841987 1013.098019 0.001974142642 +2.498267491e-06 -0.008796966197 0.001035112243 0 16.99293873 7.850737049 1005.339476 0.001989377765 +2.494713364e-06 -0.002741631707 -0.001762343205 0 -24.33132139 -23.22138058 1033.544161 0.001935089061 +2.497094903e-06 0.004666323052 0.002275374611 0 17.09351296 17.22031337 1006.172531 0.001987730671 +2.499980229e-06 0.00279015569 -0.004316535322 0 1.799826066 1.048861458 1047.594034 0.001909136493 +2.493631853e-06 0.007912202445 0.004503233526 0 27.13757769 22.08506461 979.4651666 0.002041930707 +2.49817289e-06 0.001678877375 0.01075087255 0 6.314535246 15.77252302 888.5180817 0.002250938997 +2.498311722e-06 0.003344848864 0.000340794269 0 -16.86856822 5.43402265 964.2089801 0.002074239134 +2.497705475e-06 -0.0005904727895 0.01007661731 0 -20.523079 -6.402346821 1003.223906 0.001993572909 +2.498326728e-06 -0.0008538721316 0.006657124003 0 -2.879503863 -18.66575481 1032.156068 0.001937691461 +2.495729121e-06 0.001236105906 -0.009401897262 0 13.02875642 -26.23743852 1001.682177 0.001996641296 +2.497745944e-06 -0.001430533859 -0.009588559626 0 -20.91730714 3.702073212 1000.136194 0.001999727649 +2.499480086e-06 0.004901887141 0.01231361959 0 9.616969019 -0.5544801402 944.5922822 0.002117315627 +2.499743203e-06 0.007455043131 0.003650684094 0 1.112564437 6.953426581 982.5651229 0.002035488492 +2.499000228e-06 -0.003746386101 -0.01403473007 0 1.060335484 14.47782195 1026.441826 0.001948478665 +2.498054749e-06 -0.007005714835 -0.004107665545 0 -18.39385753 -9.220796804 1042.854684 0.00191781274 +2.496374359e-06 -0.004303379036 0.01009288186 0 -2.951042 27.63902575 1031.669134 0.001938606026 +2.499463361e-06 0.005697810836 -0.001285331275 0 -3.621644018 8.709721223 910.4252673 0.002196775586 +2.496128175e-06 0.006435930855 0.0137130988 0 -19.48442247 15.89545385 903.1068804 0.002214577304 +2.496930387e-06 0.002418612582 -0.009256834353 0 -19.47735289 12.38064522 931.0287902 0.002148161282 +2.496912792e-06 -0.006070701131 -0.006154891925 0 -20.20330641 13.6796764 981.4572432 0.002037786173 +2.497388386e-06 -0.002760042869 -0.01493318846 0 19.95880655 -3.445440722 885.8728741 0.002257660279 +2.497610754e-06 0.003170755706 0.006524824218 0 19.26967422 11.22874421 1019.891403 0.001960993096 +2.497157396e-06 0.00894797971 0.006834651406 0 -16.67022431 -14.65777104 930.579251 0.002149199005 +2.499386459e-06 0.008199877422 0.008818948525 0 8.386416098 6.337365939 948.8396218 0.002107837778 +2.496087722e-06 0.008863959336 0.0004047785047 0 22.07767012 -15.9953472 974.0691541 0.00205324231 +2.499107948e-06 -0.006386050349 0.00554736698 0 9.797156932 -7.039367519 903.0638473 0.002214682833 +2.49679291e-06 -0.00812693926 0.005744442127 0 18.43308846 -18.80312737 1039.183787 0.001924587379 +2.498897616e-06 -0.001034744466 0.001190952798 0 10.83660117 10.14496682 999.5524605 0.00200089548 +2.496574013e-06 0.008701735879 0.00048258072 0 -15.61260126 -18.34137982 919.6923114 0.002174640339 +2.498127051e-06 -0.0007605162123 -0.01164936161 0 -20.56801539 1.423801646 1064.952897 0.001878017334 +2.498238119e-06 -0.008224672866 -0.0002635569661 0 13.91049746 12.93015311 1011.461572 0.001977336614 +2.497333506e-06 -0.004790840503 0.005515882722 0 -7.177830724 20.95823321 958.9133653 0.002085694154 +2.497153328e-06 -0.0005379098142 -0.002093633458 0 -1.297966291 22.20152317 931.6535611 0.002146720716 +2.496105165e-06 -0.005297851255 0.01325890532 0 11.5216559 24.12050241 957.1985132 0.002089430742 +2.4972254e-06 -0.008223910895 -0.008200568659 0 20.24741201 12.64002737 1012.832707 0.001974659769 +2.497085498e-06 0.006926925126 0.007916903473 0 7.002522714 21.26556186 926.9239604 0.002157674292 +2.498154484e-06 0.002833655039 -0.00536661925 0 -19.78888866 0.6857058274 1030.357268 0.001941074288 +2.499625741e-06 -0.00877838233 -0.01139917118 0 -6.170069753 6.408384654 1028.169922 0.001945203762 +2.499019296e-06 -0.003313527154 0.01215380503 0 -11.92155852 6.118476746 956.6565629 0.002090614414 +2.495319431e-06 0.007665669383 0.01243686543 0 3.540135934 27.48045759 904.9583006 0.002210046583 +2.495171099e-06 0.003754941844 0.004296296728 0 27.05102359 16.87360773 1025.167145 0.001950901382 +2.496330739e-06 0.009003144712 -0.007180282299 0 -18.08620561 -21.89133191 1047.649332 0.001909035723 +2.496525536e-06 -0.0006100597931 -0.005903768744 0 -18.45613629 -14.01909853 878.7555744 0.002275945733 +2.49686449e-06 -0.005593831856 -0.008224140569 0 -19.24377988 -15.94848115 997.5951483 0.002004821298 +2.499153405e-06 -0.0009726527613 -0.01297317727 0 2.143347249 -13.05325163 1016.454507 0.001967623721 +2.499133335e-06 -0.001510343705 0.001366606071 0 11.45224327 -3.855812186 917.7211342 0.002179311259 +2.494886623e-06 0.008359733322 -0.008658560019 0 -15.05277792 -27.67979413 984.5078853 0.002031471794 +2.496584323e-06 0.004725821647 0.003473635395 0 -21.99134811 15.96595842 1039.222194 0.00192451625 +2.497322694e-06 -0.003008537129 0.01067495711 0 -10.79544183 19.34709255 957.0543194 0.002089745545 +2.497586768e-06 0.00290323664 0.005836732218 0 -19.63240759 -2.495337685 900.4959726 0.002220998273 +2.499588354e-06 0.001214904008 -0.01071334998 0 4.255170326 -7.464796245 946.9167569 0.002112118077 +2.499963443e-06 0.00252900403 -0.005686186545 0 -0.7755058842 2.433403519 944.5331876 0.002117448096 +2.498866844e-06 0.007722974368 0.003776776374 0 11.20551767 -10.37346683 1014.156371 0.001972082469 +2.496318251e-06 0.002056277785 -0.008867090517 0 23.73494174 -9.840296607 946.3433479 0.002113397853 +2.496387205e-06 0.0006858632294 0.009734031733 0 -20.8686872 -17.11709807 1003.556399 0.001992912409 +2.496660932e-06 0.003825483629 -0.009863875858 0 -22.2929614 -12.91952387 996.5586732 0.002006906421 +2.499412797e-06 -0.001633276874 -0.008196823045 0 -10.61296561 4.091391721 1049.486695 0.001905693526 +2.497023666e-06 0.004503267449 -0.008564764042 0 9.144056347 -22.92885495 1011.305177 0.001977642402 +2.498303098e-06 -0.003371612281 0.0002418822376 0 4.585900955 18.75479856 1047.775615 0.001908805638 +2.49697643e-06 -0.006412535808 0.008016962735 0 -21.26901745 -4.130534038 880.672496 0.002270991781 +2.49692146e-06 0.007574997339 0.003469865215 0 8.611112229 22.03110575 952.8402969 0.002098987634 +2.495496656e-06 0.009699703152 -0.008791909728 0 25.66725807 -8.40554117 899.3421125 0.002223847824 +2.499660861e-06 -0.002865100941 -0.0004543827055 0 1.458739788 -7.968492773 983.575545 0.002033397445 +2.4994377e-06 0.0007951061754 0.01124664306 0 -0.373378299 -10.05344531 948.5896878 0.00210839315 +2.49786235e-06 -0.004359523649 -0.008990472013 0 8.013147111 -16.38876027 882.0034807 0.002267564747 +2.495670508e-06 0.001196842687 0.008903780677 0 -20.73899099 21.62996695 1017.684229 0.001965246137 +2.499167047e-06 -0.009949182156 -0.0008966233861 0 -12.76296814 -4.292324373 1043.134335 0.0019172986 +2.499930502e-06 -0.007544835364 -0.009250133329 0 -3.749378102 -0.6857417219 1022.346852 0.001956283229 +2.498571429e-06 -0.00424706134 0.003042704905 0 5.334934005 -14.6684024 923.2102589 0.002166353743 +2.497885647e-06 0.007864113552 0.002091119564 0 -20.17091772 5.054758841 1010.903264 0.00197842867 +2.496994902e-06 0.007750448342 0.01061863234 0 -20.24896208 13.43591331 990.7999884 0.002018570876 +2.498515768e-06 -0.006566441166 0.01084893646 0 -17.72476326 -2.822126103 1041.487361 0.001920330554 +2.498608295e-06 -0.003963117758 -0.005737087762 0 -7.885107342 -12.38094828 879.6438723 0.002273647396 +2.497931248e-06 0.001999313496 0.01114093397 0 -19.85062695 1.437344795 978.1505916 0.002044674938 +2.49793587e-06 -0.004200016335 -0.009046265578 0 17.62015387 3.75808101 886.44457 0.002256204243 +2.49698032e-06 -0.009466090701 -0.000763708062 0 -20.85997011 -5.498056107 877.4158347 0.00227942091 +2.499230031e-06 -0.002059196625 -0.00920758507 0 10.37609632 5.514079969 946.7721229 0.002112440736 +2.497034365e-06 -0.003098801016 -0.002704965973 0 -17.538964 16.59956883 991.1218867 0.00201791528 +2.497055885e-06 -0.006678916248 0.001699787057 0 16.1873788 18.37547908 1008.739339 0.00198267275 +2.494990965e-06 -0.006296567274 -0.01095565765 0 -13.0459585 -29.11562168 1007.250346 0.001985603686 +2.493407196e-06 -0.002503195936 0.00305717061 0 -22.46802254 23.65841075 897.6341776 0.002228079155 +2.499792244e-06 -0.001510037757 -0.0119000176 0 -0.5926691822 6.828843664 1063.337409 0.001880870534 +2.49668753e-06 -0.005796857593 0.006816713316 0 18.79096625 13.41562672 896.5800737 0.002230698695 +2.498781577e-06 -0.001907835477 -0.007039763869 0 12.80611505 -8.86505548 997.5604589 0.002004891014 +2.498700707e-06 0.002667080294 0.003715235274 0 -13.80029964 4.199489696 894.6768306 0.002235444053 +2.496537041e-06 -0.006045790538 0.004683715075 0 -19.56772327 17.05824436 985.8859885 0.002028632137 +2.499494707e-06 -0.008436082704 0.009949456688 0 8.274670907 -6.630458226 1054.696391 0.00189628031 +2.499173455e-06 -0.008561361297 -0.009532993175 0 7.210690698 -8.91459784 891.6647325 0.00224299552 +2.499806729e-06 -0.006649383409 -0.003660517582 0 -4.046763108 3.964821882 911.202413 0.002194902001 +2.499296324e-06 -0.0007590152463 -0.006999881614 0 -10.80911183 4.3041612 980.6234942 0.002039518747 +2.495643184e-06 0.009023911674 0.007134447237 0 26.8779154 15.61774668 1052.399217 0.001900419506 +2.497815902e-06 -0.004332052167 -0.003389496384 0 15.40522957 14.45636253 1010.470617 0.001979275761 +2.498247015e-06 -0.008997264989 0.003708543526 0 -8.079102507 -18.3515567 1070.588293 0.001868131768 +2.498538811e-06 0.006872830819 -0.0008042218303 0 10.90147161 12.69403769 978.5897934 0.002043757265 +2.495932097e-06 0.0006238460634 -0.005095200296 0 22.9636687 15.12573261 963.450154 0.002075872832 +2.495104679e-06 0.002080229092 -0.01158342544 0 -10.96198318 -27.08466528 933.1234814 0.002143339054 +2.496910415e-06 0.009254534999 0.008935145647 0 4.767716851 24.60417589 1007.736063 0.001984646649 +2.497791815e-06 -0.0009742745943 -0.01264349107 0 -18.43302379 4.571410566 903.4016196 0.002213854787 +2.498363986e-06 -0.008288903651 -0.004201960105 0 11.3726416 -13.15826121 961.2378663 0.002080650451 +2.494194925e-06 0.002099042032 0.007573082938 0 -20.85491998 27.30081049 1007.376313 0.001985355398 +2.499905761e-06 -0.009692228474 0.0007573509193 0 3.836744418 1.033693674 915.254207 0.002185185258 +2.497283972e-06 -0.003525658101 -0.00969670431 0 -23.71696992 4.05816133 1031.968456 0.001938043734 +2.49506012e-06 -0.008403863092 0.00562920738 0 -25.28744061 -16.02991802 951.8285845 0.002101218678 +2.497908974e-06 -0.001493943878 0.01214886538 0 -1.176412494 19.29579139 945.0118336 0.002116375614 +2.497568708e-06 0.003037581681 -0.0008470816514 0 -21.23775555 2.022281382 967.11171 0.002068013425 +2.497649837e-06 -0.003380640307 -0.008274790174 0 -22.27891701 1.729536448 1030.342657 0.001941101814 +2.497614251e-06 -0.005636656545 -0.01387722694 0 -9.371118763 -18.43877697 946.5438676 0.002112950142 +2.499299844e-06 0.0001481965231 -0.0008105415897 0 11.1691741 1.106066167 948.3794698 0.002108860497 +2.496198409e-06 -0.009104416328 -0.01365098235 0 -26.05508366 0.8161631321 944.8436006 0.002116752443 +2.49824504e-06 0.0004081860976 0.005884709288 0 16.93274121 -5.04673615 942.8542759 0.002121218571 +2.496748632e-06 0.002389194993 -0.001147649449 0 19.09582359 16.85244547 998.2676312 0.00200347075 +2.494875767e-06 0.005793312103 -0.00193873771 0 29.03136426 -17.32919144 1055.316072 0.001895166815 +2.497222819e-06 -0.009730917597 0.007533814071 0 -10.88979689 18.72763384 918.8247238 0.002176693713 +2.496468e-06 -0.008797190436 0.001379954894 0 -22.94177368 13.21575302 995.6291403 0.002008780096 +2.496209173e-06 0.004804242193 0.01182763845 0 -0.4382095825 29.41458474 1067.780059 0.001873044906 +2.497313436e-06 -0.00533223798 0.01409757085 0 16.60835115 13.32885199 918.3280828 0.002177870891 +2.499708025e-06 -0.009491376588 -0.0002084994782 0 -7.03823875 -0.8041449204 926.9867953 0.002157528036 +2.499262566e-06 -0.009134252933 -0.01404320464 0 -5.036311629 -10.96774465 993.6632715 0.002012754277 +2.498412495e-06 0.002239572867 0.0008286601212 0 -18.22711418 -2.6594674 1033.513654 0.00193514618 +2.49921097e-06 -0.008361206553 -0.003771889075 0 -11.58601305 2.380842865 941.4606044 0.002124358673 +2.496733687e-06 0.003470583716 0.004356540414 0 -14.49817558 -19.14992852 939.2902802 0.002129267216 +2.498120304e-06 -0.009672157485 0.01444284596 0 18.95440399 -5.13930647 1012.589265 0.001975134509 +2.497532421e-06 -0.00370695631 0.002047978209 0 14.7480897 16.83269123 1007.025892 0.001986046254 +2.495384984e-06 0.008549259081 0.002256221997 0 24.20399959 21.48126444 1064.458076 0.001878890343 +2.497168458e-06 0.007823931063 -0.003776255522 0 19.54073511 -7.330980488 876.646887 0.002281420295 +2.497862448e-06 -0.009853340643 -0.005395629723 0 -21.90853161 3.192244686 1070.440587 0.001868389543 +2.497395673e-06 -0.004434044356 0.0003302649222 0 2.710002344 -20.24613482 894.6759249 0.002235446316 +2.494385074e-06 0.001637408002 0.01301750398 0 14.24864411 30.14103847 994.0374575 0.002011996615 +2.497679914e-06 -0.002455852381 0.01105433917 0 -8.584810763 16.95483086 881.9312141 0.002267750555 +2.49898993e-06 0.006291660508 -0.004162703287 0 -8.565575816 -9.351535317 892.1007413 0.002241899269 +2.499275806e-06 0.005570284715 -0.005623587901 0 3.934402088 -11.76144751 1030.396227 0.001941000897 +2.499979064e-06 -0.005099609797 0.007057247241 0 -0.6423750701 -1.822225956 944.220986 0.002118148219 +2.496308272e-06 0.003264176296 0.008498913562 0 15.13127491 23.87661762 1039.719089 0.001923596499 +2.49989965e-06 0.005682416246 0.0121842079 0 3.365276796 2.184401378 895.5465238 0.002233273143 +2.498031917e-06 -0.001396875889 0.003628401342 0 11.19310317 -17.68461196 1054.599296 0.001896454897 +2.49839372e-06 -0.006375997053 -0.0003787318873 0 3.206510732 -18.0817576 1024.315979 0.001952522503 +2.497206907e-06 0.002764035654 0.003546730606 0 -12.24369788 -22.158232 1070.665642 0.001867996806 +2.495694341e-06 0.007670578817 0.002017042714 0 27.18792228 13.15982781 1028.652235 0.001944291697 +2.493980858e-06 0.001002702834 0.008236608957 0 19.66503763 24.62068597 907.352706 0.00220421451 +2.499585984e-06 -0.008187711597 -0.001924538137 0 -2.005292514 8.296234863 937.9084841 0.00213240421 +2.495754823e-06 0.001175383534 0.006125700299 0 -20.22441419 21.75771842 1018.824319 0.001963046977 +2.494645014e-06 -0.006369386744 0.01212419896 0 13.82161783 28.3816008 963.8439058 0.002075024792 +2.499827862e-06 0.009474787656 0.004222733304 0 3.812993562 -3.544420155 887.2281813 0.002254211534 +2.498937489e-06 0.002624967769 -0.01438656931 0 3.943259029 -13.99494365 997.2627519 0.002005489522 +2.495753264e-06 0.009151736605 -0.01168115821 0 20.69184448 15.70737261 890.8238364 0.002245112803 +2.496665823e-06 0.00675800934 -0.01453499091 0 21.07841158 16.57575698 1037.897441 0.001926972668 +2.497145253e-06 0.005369616509 -0.00278972229 0 -6.031660074 -24.27544441 1046.382835 0.001911346338 +2.497670924e-06 0.008905663393 -0.008315216932 0 19.16402835 1.6757709 891.0093936 0.002244645247 +2.499219302e-06 -0.006939486987 -0.007023605509 0 9.125231462 8.824387281 1015.76609 0.001968957243 +2.499625764e-06 -0.0007443432417 -0.009659846427 0 -8.442772096 -0.791680744 980.108239 0.002040590947 +2.499375259e-06 -0.0005674311053 0.01102318261 0 -4.593956275 -10.34515726 1012.544684 0.001975221471 +2.498181531e-06 0.007315992415 -0.01058760372 0 12.32772352 12.3149366 913.452953 0.002189494263 +2.499511782e-06 -0.002529291804 -0.009678509762 0 9.925301128 2.485154028 1035.366029 0.001931684007 +2.497304992e-06 0.0009162040846 0.01114546873 0 4.847608119 21.13718573 933.7003152 0.002142014914 +2.496517331e-06 0.009609413715 0.005176498129 0 -14.74704494 19.38834513 922.5066657 0.002168006015 +2.496013782e-06 -0.002498907684 0.01000451019 0 -6.416159083 24.70265128 903.3675877 0.002213938188 +2.499045171e-06 0.007791871005 -0.0103854282 0 -3.461976993 -13.30544412 994.7499857 0.002010555445 +2.496098557e-06 0.006152924551 -0.01140453632 0 -12.97963149 -23.26452611 953.1432209 0.002098320542 +2.49934945e-06 0.004545152388 0.01413546297 0 0.04493726781 -10.94293841 959.2680831 0.002084922906 +2.497597346e-06 -0.0004517983738 0.008445952095 0 18.25634679 13.28063651 1029.501815 0.001942687201 +2.497830978e-06 -0.007979703201 0.001194986638 0 16.74324587 -7.491483884 880.3948561 0.002271707957 +2.497005518e-06 0.003969660429 -0.01161842103 0 -21.61274346 9.266833579 960.4738984 0.002082305415 +2.499436567e-06 -0.005973421703 0.003415048574 0 7.601081906 6.452656826 939.1811794 0.002129514564 +2.498270411e-06 0.0006630652351 8.723807987e-06 0 12.46165947 -13.63622328 992.9571976 0.002014185511 +2.497884216e-06 -0.008039513822 -0.007891767304 0 -16.84043576 7.668731019 899.2583603 0.002224054942 +2.499236021e-06 0.006418421781 0.01039638066 0 0.4975791423 -11.83121636 957.872508 0.002087960541 +2.499012981e-06 -0.005836619455 0.002266779465 0 13.11079991 0.9182804853 935.2973896 0.002138357299 +2.499464179e-06 -0.009984820019 -0.005735731856 0 -4.869050384 9.807557584 1057.650873 0.00189098317 +2.499791418e-06 -0.0007382966951 -0.009164939155 0 4.605098809 -3.591685656 904.1821581 0.002211943669 +2.497181129e-06 -0.002083899127 0.01159808419 0 14.29347511 -16.07977041 905.7109749 0.002208209965 +2.495751639e-06 -0.007323795743 -0.005522689079 0 -18.02381781 18.59146953 887.762841 0.002252853924 +2.496222737e-06 -0.008871321618 -5.594972055e-05 0 -21.73538922 18.14828149 1029.626477 0.001942451991 +2.498007689e-06 3.999185283e-05 0.005400824281 0 9.231258206 -16.7713038 958.7586289 0.002086030769 +2.497047547e-06 -0.006879283539 -0.01183244065 0 -24.44442347 -1.271170196 1006.855804 0.001986381756 +2.495680341e-06 0.006018172987 -0.005884773948 0 25.35406128 16.04797404 1020.206707 0.001960387034 +2.497745966e-06 0.007288830471 -0.008976982415 0 -14.90466818 -15.77141685 1021.682838 0.00195755466 +2.498819781e-06 0.00649666884 0.006742429091 0 11.63194607 9.662534833 984.0751254 0.00203236516 +2.497637814e-06 -0.006919777598 0.008173810677 0 -16.75659644 -14.18736112 1009.779797 0.001980629842 +2.496919633e-06 -0.005363800912 -0.002580340854 0 -21.78246385 8.711022504 944.7251245 0.002117017901 +2.497834138e-06 0.007807775978 0.004755970028 0 9.976630721 -18.93381517 1027.949642 0.0019456206 +2.497472283e-06 0.003702589297 0.003490576674 0 0.3244205025 20.53675054 913.149689 0.002190221411 +2.499023495e-06 0.004827411529 -0.001999215879 0 -12.56761267 -3.965241328 942.8533631 0.002121220625 +2.496482931e-06 -0.005978563367 0.002227638799 0 -26.50440975 -0.1885994407 998.8364888 0.002002329733 +2.499915973e-06 -0.002672261097 -0.003326865693 0 -0.2862487711 -3.899593517 953.7960234 0.002096884398 +2.497824022e-06 -0.00961815998 -0.01333407357 0 10.44616282 16.12374943 920.6329617 0.002172418416 +2.497398115e-06 0.008989544935 0.01023475467 0 -14.3038994 -16.426995 954.4770916 0.002095388163 +2.49938182e-06 -0.007565656505 0.01280225133 0 -7.506140066 -6.854762097 914.1134368 0.002187912265 +2.499280155e-06 -0.002431057962 -0.003841600909 0 2.394156906 -10.33513972 884.0679833 0.002262269461 +2.499374075e-06 0.0007659361837 -0.006247467916 0 3.612240272 -10.96395852 1031.638854 0.001938662926 +2.496929962e-06 0.002545751971 0.01406111586 0 14.51484505 19.62799491 984.7226094 0.002031028821 +2.497064827e-06 -0.002362451525 0.007058211321 0 -20.7880903 -12.91341534 1009.611708 0.001980959595 +2.49705461e-06 0.001703319782 -0.01289130507 0 -18.72713427 -14.90709947 985.7603449 0.002028890704 +2.494858829e-06 -0.009261577069 -0.01394014071 0 -20.84544577 -19.20872991 883.3113464 0.002264207302 +2.498504153e-06 0.005127264569 0.01419595092 0 12.44148358 10.63678409 946.141286 0.002113849199 +2.497060189e-06 -0.001885314742 0.002024999808 0 11.30210273 -21.59273919 1004.66444 0.001990714431 +2.496460888e-06 -1.482298132e-05 0.009644652419 0 -18.21379951 -15.09960568 888.7928304 0.002250243174 +2.49891194e-06 0.001874143793 0.009553292049 0 -0.5001644849 -15.16585622 1028.467848 0.001944640277 +2.499665406e-06 0.002385708885 -0.01219878528 0 3.264647682 -6.917609464 935.025786 0.002138978443 +2.498994287e-06 -0.005183607708 -0.0055982011 0 10.89521989 -8.076129927 956.1111469 0.002091807011 +2.496406982e-06 0.009050518591 -0.00434812872 0 27.09207099 5.116107283 1027.950383 0.001945619198 +2.495838402e-06 0.009703244185 -0.0051169175 0 27.62962761 -1.704222701 958.9218884 0.002085675616 +2.499709097e-06 0.006245572963 -0.00934742782 0 1.697976148 -7.471132599 1004.418727 0.001991201425 +2.499881461e-06 -0.005354677881 -0.008854862012 0 2.860367072 -4.028736601 1014.732995 0.001970961829 +2.494919554e-06 0.002788252407 0.002170828327 0 26.57449607 -20.97951364 1061.354033 0.001884385358 +2.496987323e-06 -0.0005735801952 0.00796188622 0 19.70270984 10.25632568 904.4969354 0.002211173882 +2.49390158e-06 -0.003786982144 -0.008973571141 0 18.44225769 -27.18374217 939.731871 0.002128266649 +2.499238075e-06 -0.009231437515 -0.003085554452 0 4.861094624 -11.70349609 1026.48996 0.001948387299 +2.496477894e-06 0.005221730713 -0.002937811897 0 14.5791557 18.15905329 876.9507377 0.002280629816 +2.494815749e-06 0.0006600856362 0.0006316473149 0 21.51854041 -18.48205607 880.2441268 0.002272096955 +2.496595983e-06 -0.004335185671 -0.007782616471 0 7.380283331 -23.47628923 942.6748048 0.002121622419 +2.497973968e-06 -0.008589885607 -0.009009497236 0 -13.82381874 -15.76498334 1041.29738 0.00192068091 +2.497591963e-06 -0.002834048043 -0.006491510302 0 17.44885268 -14.82358116 1042.906622 0.001917717232 +2.498210245e-06 -0.004710338912 -0.003690893697 0 16.50339683 10.90773017 1045.31967 0.001913290314 +2.496745197e-06 0.002293700655 0.0009769954369 0 -17.23960679 -14.52200492 883.0431605 0.002264894956 +2.497671996e-06 -0.008497072072 0.01414443514 0 6.396283563 18.51182398 907.3622636 0.002204191292 +2.495645681e-06 0.0004859812791 0.0007911288994 0 -24.15797206 -20.32295131 1069.074504 0.001870777007 +2.499548016e-06 -0.003176840683 0.007006629934 0 2.897994344 9.599962753 1054.633759 0.001896392925 +2.495319814e-06 0.001701058084 0.002337781428 0 -23.98605881 19.82369954 1016.378642 0.001967770589 +2.497449644e-06 -0.008402506816 0.008761247238 0 10.80155631 20.35380677 1019.871923 0.001961030551 +2.497370266e-06 0.002840590202 0.008392268918 0 -20.99470255 7.285982426 968.6368281 0.002064757339 +2.49967274e-06 0.007696497808 0.01395379352 0 -4.83113376 6.688576668 1019.805049 0.001961159146 +2.499624776e-06 0.0006050739111 -0.009663496544 0 -4.457971927 6.589490566 918.3311959 0.002177863508 +2.497913508e-06 0.005979403369 0.000304129282 0 9.276446303 18.83901965 1027.639486 0.001946207817 +2.499795955e-06 -0.0005073515698 -0.003619489905 0 4.556164736 3.856538272 934.3853355 0.002140444551 +2.495340497e-06 -0.006469508004 0.01137820574 0 -20.29984907 22.56592861 993.6035431 0.00201287527 +2.498996781e-06 0.001281621959 -0.01361648686 0 -12.78047404 -0.951383443 904.6252841 0.00221086016 +2.499143972e-06 0.005109258392 0.0007801143243 0 -8.899674909 -10.64937234 1060.543653 0.00188582525 +2.499232052e-06 -0.003894354934 -0.005737746817 0 -11.38634265 0.8622635647 921.2869228 0.002170876358 +2.498577217e-06 -0.009958236776 0.00429641404 0 6.477456311 -14.46563775 939.3841456 0.002129054455 +2.497441356e-06 0.00299819856 0.002500331146 0 20.92421965 -10.74537417 1039.413133 0.001924162718 +2.497297344e-06 -0.007124942257 -0.006506186645 0 -13.81372162 15.46620081 891.5771613 0.002243215828 +2.499763492e-06 -0.005099594356 0.004236908911 0 -0.835276286 6.098564651 894.9738301 0.002234702214 +2.497871061e-06 0.003678834592 -0.005562024429 0 -19.76668088 -3.740122388 974.6231264 0.002052075254 +2.495935534e-06 0.002609436763 -0.00669578454 0 -16.1383483 -21.36299238 938.4788167 0.002131108305 +2.499576657e-06 -0.005365488604 0.008693109462 0 8.240071259 -1.54083562 910.9731331 0.002195454429 +2.497758405e-06 -0.0006027588388 0.001438057234 0 -7.804487781 19.02998626 971.0831407 0.002059555888 +2.495078658e-06 -0.001379225971 0.003063648627 0 -22.0399895 -19.24213881 931.8898205 0.002146176464 +2.496660322e-06 0.003238605126 0.008594269669 0 25.46949297 -2.953805571 991.5999135 0.002016942491 +2.496762463e-06 -0.007718720036 -0.000881245702 0 -18.38827405 -18.0424194 1011.902401 0.0019764752 +2.499687725e-06 0.001975613795 -0.0001147686783 0 6.578541731 -3.809580499 961.8847598 0.002079251157 +2.499801236e-06 -0.005558399456 0.000520857498 0 1.025905303 6.171084814 992.1672447 0.002015789183 +2.49745613e-06 -0.003294678787 -0.004143653037 0 -21.63714938 -4.9385289 983.5563607 0.002033437106 +2.494320231e-06 -0.001561503545 0.01168524667 0 25.76859305 25.16540752 1067.757249 0.001873084919 +2.49977382e-06 -0.0006237679534 -0.01074268667 0 -1.451940674 6.791916357 1032.616104 0.00193682821 +2.499982397e-06 0.006257209573 0.000460721869 0 1.499442751 -0.8809653159 926.8632144 0.002157815704 +2.494705824e-06 0.00938274303 -0.01394672869 0 25.67391687 14.7998313 909.9836841 0.002197841604 +2.499935116e-06 -0.007072555013 0.01224937656 0 1.762863395 3.295078897 1037.373997 0.001927944989 +2.497467342e-06 -0.00153845184 -0.01078659365 0 -16.90748065 15.85351836 1029.433915 0.001942815338 +2.49772931e-06 -0.009112926768 -0.01455390821 0 -19.93116073 7.151150603 993.3130661 0.0020134639 +2.499705078e-06 0.005081719998 -0.01050128053 0 -7.703824454 -0.5611004775 1005.697754 0.001988669053 +2.498497814e-06 -0.006803754028 -0.01419339638 0 -14.70699981 -9.909181068 1022.885582 0.0019552529 +2.498573018e-06 -8.494322654e-05 0.004177983322 0 8.528094437 -15.02743023 1022.569536 0.001955857211 +2.494684553e-06 -0.009562368696 -0.0001678617764 0 -23.4718216 23.04616099 1008.074318 0.00198398071 +2.49535173e-06 0.00403276437 0.005561099981 0 -20.14062481 24.70227331 1044.60098 0.001914606667 +2.497261957e-06 0.002171668811 -0.01411313263 0 22.40154976 -4.34176481 974.7023259 0.002051908513 +2.497385122e-06 0.001293137162 0.00463875887 0 -19.00793439 13.29056036 1013.808736 0.001972758696 +2.495994819e-06 0.003675189684 0.004681868255 0 -24.35016744 -18.04622719 1070.225541 0.001868764968 +2.497695815e-06 0.007724789125 -0.009029831928 0 16.21273404 -10.9414632 910.8161237 0.002195832889 +2.494340701e-06 0.005502700922 -0.01310852252 0 28.26048713 -19.504348 1019.77721 0.001961212684 +2.49866962e-06 -6.22767536e-05 0.007574006093 0 -3.010266113 -16.55115359 1031.111187 0.001939655029 +2.496872289e-06 -0.007865570458 0.009089447111 0 7.430703837 21.94174688 925.7967534 0.002160301376 +2.493691389e-06 -0.003541050316 -0.002942905419 0 -26.42960557 -23.10137458 987.2947973 0.002025737404 +2.498742309e-06 -0.009406130048 0.002715167454 0 -2.330435558 14.71873491 939.4271124 0.002128957078 +2.498662056e-06 -0.005407516509 -0.004004368905 0 3.872133956 -13.83651248 878.1696723 0.002277464211 +2.496095648e-06 -0.005552790817 -0.008969646818 0 -24.43345795 -12.32753719 978.781834 0.002043356273 +2.498849885e-06 -0.0005054961098 -0.01346110244 0 -14.09848245 4.245746046 970.6498993 0.002060475153 +2.496401479e-06 -0.003677702895 0.0006527051772 0 13.07695978 -23.86620417 1013.867009 0.001972645309 +2.497987146e-06 0.0008965069521 0.00601950452 0 18.74329128 1.351593984 936.310275 0.002136044059 +2.49880439e-06 -0.007842544583 -0.005572071152 0 1.336925535 -13.81131221 897.1655332 0.002229243017 +2.499546519e-06 -0.009785317602 0.0003482652688 0 -5.044801345 -8.210794802 1011.828893 0.001976618789 +2.497869143e-06 0.001595461462 -0.006551030651 0 20.57684042 -1.690305857 999.7884175 0.002000423255 +2.499869847e-06 0.008464404489 0.003136851923 0 -4.660420975 0.9109319616 930.7131329 0.002148889845 +2.497295009e-06 -0.006580841285 0.0111993218 0 -0.13968133 24.1341416 1037.205821 0.001928257593 +2.497650277e-06 -0.004881422119 -0.0003398422594 0 -8.395168621 -17.10449528 878.6225289 0.002276290368 +2.496021618e-06 0.007871646499 0.01420252494 0 -16.11716831 19.62305697 899.6926619 0.002222981341 +2.499567562e-06 0.0006585395802 -0.0105729177 0 -7.98571076 3.732040142 947.773407 0.002110209028 +2.495814048e-06 0.008193734423 -0.01356212256 0 -3.06558799 -27.60349647 959.2702341 0.002084918232 +2.49655633e-06 -0.003411411908 0.0137840813 0 -24.22436154 6.204801159 952.3589291 0.002100048563 +2.497365412e-06 0.002912320425 -0.004962599252 0 13.0261659 20.20306288 1046.797165 0.001910589812 +2.497089941e-06 -0.006395936571 0.008492160367 0 -23.06419069 1.948764075 959.0193756 0.0020854636 +2.497271107e-06 -0.002295805737 0.004802312718 0 -11.05564708 -19.47170808 958.0653014 0.002087540376 +2.49818268e-06 7.834534161e-05 0.006181355487 0 8.402679832 18.24006805 1053.095426 0.001899163125 +2.499059994e-06 -0.009803210911 0.004507384677 0 -13.78172682 1.093028239 1008.146364 0.001983838925 +2.498607554e-06 -0.003000335153 0.008240996401 0 0.7178519563 15.77973348 946.3540634 0.002113373924 +2.498115242e-06 -0.006375091146 0.01053217849 0 -6.847401054 19.06827015 1043.238274 0.001917107577 +2.498309047e-06 -0.003392806808 0.0003170992993 0 -17.62930563 -1.46270727 961.6875879 0.00207967746 +2.498279477e-06 0.003938050075 0.009914464394 0 11.2227678 -15.07708799 1012.967519 0.001974396969 +2.499251053e-06 0.006862610891 0.003396193078 0 -3.611485206 11.32725908 971.3104504 0.002059073903 +2.499933378e-06 -0.007049509655 -0.0142518278 0 3.339523621 -0.9848769042 953.8223658 0.002096826486 +2.496658707e-06 0.000473481738 -0.007727594404 0 25.57164216 7.519634563 1030.570759 0.001940672179 +2.497610763e-06 0.0024238835 -0.003589049277 0 18.3706143 10.41165886 965.6275699 0.002071191899 +2.495340239e-06 0.008817165615 -0.01395484009 0 28.777875 -11.85662676 1018.835978 0.001963024513 +2.498687279e-06 0.001252422337 0.006445483679 0 8.07503937 14.7809305 1039.272134 0.001924423771 +2.499463205e-06 -0.002213650355 -0.001152543544 0 4.622688005 9.302280358 1002.443127 0.001995125655 +2.498597771e-06 0.002648017439 0.002498964532 0 13.31287485 10.90494508 1027.401775 0.001946658112 +2.497863564e-06 0.008890604232 0.01277452344 0 -17.05438651 10.17053482 960.3061998 0.002082669049 +2.499863745e-06 -0.007526426818 -0.006493900416 0 -3.539532528 -3.276871263 923.9784681 0.002164552605 +2.498191025e-06 -0.002074797535 0.01162121288 0 16.97382472 -7.961976506 985.4073532 0.002029617491 +2.494314193e-06 -0.008406440667 -0.01430556123 0 10.68565826 -31.17767776 976.5157281 0.002048098092 +2.498935477e-06 -0.008367601898 0.01411405904 0 11.42479949 8.18167027 962.9063069 0.00207704528 +2.499680917e-06 0.001048078584 0.00755336961 0 7.005886368 2.297952829 922.9200082 0.002167035043 +2.498854812e-06 0.003908329983 0.01140030649 0 -7.387078871 14.40118598 1069.281364 0.001870415091 +2.496556211e-06 0.009832505854 0.01189936333 0 -9.210173813 21.32663615 884.7069062 0.002260635682 +2.498784518e-06 0.008121207785 -0.01266334528 0 1.484948699 -15.78159086 1016.474087 0.00196758582 +2.496177266e-06 -0.002857042248 -0.0009379873727 0 -14.61388948 25.69497604 1068.449977 0.001871870507 +2.49997274e-06 -0.006217111554 -0.004552313536 0 1.871560704 0.8644709487 882.9126839 0.002265229661 +2.497868561e-06 0.003475775737 -0.01070751812 0 -21.05472359 4.513144045 1042.591322 0.001918297186 +2.499357277e-06 0.00326735124 -0.007641149957 0 7.337091193 8.009394336 957.946731 0.002087798763 +2.495321609e-06 0.004880706677 0.0137175576 0 19.08679521 18.81407103 875.5422657 0.002284298632 +2.499681106e-06 0.005889947256 -0.003622135925 0 4.826589827 5.812670667 946.0085142 0.002114145877 +2.499651714e-06 0.002305374928 0.00598474249 0 8.487408481 0.4587889431 1018.364236 0.001963933855 +2.49896735e-06 -0.001827887772 0.00849096559 0 -11.19314106 -6.940465076 916.297166 0.002182698009 +2.497108025e-06 -0.008127723862 0.0006552629289 0 -24.2282417 7.185586639 1050.333954 0.001904156285 +2.497882074e-06 -0.001706704325 0.01110196475 0 -15.5918296 -12.023885 956.3737762 0.002091232581 +2.49678611e-06 -0.009093904635 -0.01051300402 0 -22.00455546 -11.85075067 985.3151775 0.002029807361 +2.498053677e-06 -0.009311958957 0.01289462849 0 -9.143917811 -15.49606272 911.6924836 0.002193722155 +2.499994105e-06 -0.007884060838 -0.002058166265 0 0.7534953673 -0.8481432452 1044.834989 0.001914177856 +2.499152994e-06 -0.004201040813 0.009592825344 0 0.7474615844 11.58748994 892.0260081 0.002242087094 +2.499378578e-06 0.005630863244 0.009072757016 0 -1.432126011 -10.85586391 982.1147305 0.002036421956 +2.498789755e-06 -0.004879075047 -0.001610874468 0 -2.502691074 14.86469689 968.7132888 0.002064594368 +2.497414735e-06 0.002096534683 -0.002828693229 0 12.84945151 -15.92150773 899.425117 0.002223642594 +2.499839771e-06 0.003498914884 -0.006729265256 0 0.3880592874 5.867519371 1038.738409 0.001925412581 +2.499002856e-06 0.001680423338 0.002502472254 0 -6.543994937 -10.54893471 878.9170708 0.00227552754 +2.496904224e-06 0.003298813449 0.01135747587 0 -22.14516031 -10.8811426 991.14785 0.002017862421 +2.49904649e-06 0.003203449533 -0.006368639725 0 -12.60833271 2.092901779 925.3802275 0.002161273756 +2.499654244e-06 -0.007995106317 -0.009502776302 0 8.215854376 -0.2963712973 988.5818121 0.002023100138 +2.498922031e-06 0.001248708256 -0.003660957722 0 14.95624366 4.002207273 1054.270101 0.001897047063 +2.499723637e-06 -0.004252181975 0.0005412376835 0 5.541249703 -4.678737044 975.4467664 0.002050342539 +2.498815685e-06 -0.006985111749 0.001256609783 0 11.90152086 -7.575049954 916.49648 0.00218222333 +2.497249413e-06 0.006743000974 0.001449203698 0 23.76737347 7.851625518 1066.758355 0.001874838843 +2.499668796e-06 0.008361816676 0.00829601038 0 1.361362157 -8.271412058 1029.909861 0.001941917516 +2.49863864e-06 -0.004322031033 -0.0008067196864 0 3.529963141 -17.00720929 1052.450526 0.001900326856 +2.497797412e-06 0.004038522211 0.01198127557 0 18.80157067 6.670698593 950.1995863 0.002104820954 +2.499340023e-06 -0.003849817249 -0.01132030944 0 -7.456421685 -8.798214448 1003.724486 0.001992578669 +2.49824117e-06 -0.007617701776 0.0148038505 0 -7.463505728 -17.21328452 1000.07005 0.001999859911 +2.497736481e-06 0.000190560855 0.004635989936 0 20.4655936 9.481374693 1059.722387 0.001887286732 +2.498394413e-06 0.007930294545 -0.01091480235 0 -9.898433135 14.37987849 973.9627976 0.002053466523 +2.497175483e-06 -1.632976346e-06 0.01344777302 0 19.89572578 -9.275525788 923.2006922 0.002166376192 +2.498498046e-06 0.007367973076 -0.01003900637 0 8.595325618 -15.50982066 1022.877787 0.001955267799 +2.49851003e-06 -0.00420979389 0.009723396718 0 16.49168963 -1.25678299 957.9035116 0.002087892962 +2.49985522e-06 0.008632841231 0.008580659644 0 -0.4155241607 -5.463254923 1018.183 0.001964283435 +2.49618711e-06 0.009032645072 -0.000554018158 0 16.62258422 19.21880626 919.6351009 0.002174775624 +2.497142445e-06 -0.0005239956081 -0.002257486233 0 -16.39954499 -17.30830003 996.9542196 0.002006110171 +2.49895431e-06 -0.004962808476 0.004306659638 0 3.384643813 13.75966503 979.6709005 0.002041501895 +2.499596843e-06 0.003476762418 0.00725958132 0 -2.474443826 -8.974697073 1036.695975 0.001929205909 +2.499507001e-06 -0.007564424183 0.005240453335 0 -3.143150197 -9.33103618 991.5134986 0.002017118277 +2.499514794e-06 0.001145176995 0.01257572038 0 5.027889931 7.927900679 952.9177363 0.002098817058 +2.496238854e-06 -2.02061329e-05 0.009558740433 0 -7.084483527 24.38929655 925.4839326 0.002161031574 +2.498089322e-06 0.006285245758 -0.01308013387 0 14.07217389 11.18810851 919.395289 0.002175342885 +2.494464777e-06 0.00422746981 -0.01491284827 0 10.50303017 -27.87904522 894.6518423 0.00223550649 +2.49976149e-06 -0.00752045196 0.00526193229 0 -6.196137022 0.3635717082 898.6347341 0.002225598371 +2.497959042e-06 -0.00755636178 0.006674016144 0 -2.469529609 -21.33677364 1062.804188 0.001881814188 +2.499133187e-06 0.0007931398554 0.006244443418 0 -4.209396615 11.0198957 895.8152427 0.002232603225 +2.498606197e-06 0.006887541516 -0.002973114986 0 11.32656511 13.29136913 1045.704372 0.001912586437 +2.496932041e-06 -0.00354922906 0.008447343574 0 -22.32952383 0.8040683576 901.6149948 0.002218241724 +2.495217479e-06 -0.003882336328 0.01267535225 0 9.32647192 29.47031354 998.7483539 0.002002506429 +2.498842894e-06 0.007055938425 -0.008766470903 0 -4.342439304 13.79140085 950.2941771 0.002104611444 +2.496483872e-06 -0.008982182816 0.006216924135 0 -18.28096681 21.38121579 1060.248795 0.001886349704 +2.495956934e-06 0.007592016449 0.00961380522 0 29.12675762 7.372217842 1055.946643 0.001894035095 +2.497887088e-06 -0.001408462641 0.005878854215 0 -18.37502999 9.479290852 1005.481176 0.001989097408 +2.496682157e-06 -0.004942519316 0.001434190948 0 18.55983522 -15.18705087 930.5029631 0.002149375208 +2.497238146e-06 -0.004139694986 -0.004910481968 0 6.312234241 21.06513457 935.278004 0.002138401621 +2.499559469e-06 -0.005498843226 -0.000753855058 0 -7.9386205 -3.189462154 911.3954326 0.002194437155 +2.497479376e-06 0.001900104806 0.003084549468 0 20.1742809 4.748064164 922.7230449 0.002167497616 +2.498256608e-06 -0.008327284898 -0.0128666566 0 7.919413624 18.18192186 1061.782274 0.001883625343 +2.498102752e-06 0.008521260275 0.0101813937 0 9.820287684 -16.79599846 998.5212051 0.00200296197 +2.499431065e-06 -0.0047517754 -0.007675979231 0 7.164889419 6.776821772 924.4548328 0.002163437227 +2.49649729e-06 -0.007250525826 0.008639169484 0 -14.46183786 18.71493591 893.1272402 0.002239322585 +2.499792402e-06 0.0002737661311 -0.002307900412 0 -5.136825491 2.843281912 911.145612 0.002195038832 +2.499557813e-06 0.008176437714 -0.005367558757 0 2.507347031 8.360754046 928.1092756 0.002154918664 +2.499698768e-06 0.007742406251 -3.413180821e-06 0 -7.463629718 3.074347615 1039.912922 0.001923237954 +2.49797894e-06 0.003223735895 0.009995278011 0 -6.945618286 16.87614472 907.4355082 0.002204013378 +2.49847025e-06 0.007585783312 -0.001735933288 0 -16.76929816 4.898582392 998.5534352 0.002002897321 +2.495024693e-06 0.004469399657 0.008025017688 0 -21.60108596 23.44646509 1009.882693 0.001980428038 +2.496397876e-06 0.005608206932 -0.007131808237 0 -7.247974658 -23.07597728 900.6609912 0.002220591343 +2.49851424e-06 -0.009436950232 -0.001160061762 0 -16.10866948 1.745696409 939.7423775 0.002128242855 +2.498317118e-06 0.005821874216 -0.01486049902 0 7.75469513 -14.16393362 879.9593256 0.002272832325 +2.499323569e-06 -0.005510784881 -0.002844003006 0 -9.312815179 -6.866001636 994.6528241 0.002010751844 +2.498848849e-06 0.002655069269 -0.007856403021 0 5.675524112 14.95133378 1053.79223 0.001897907332 +2.496145349e-06 -0.001362607633 -0.006302926883 0 7.005324657 -24.83383954 928.7763606 0.002153370913 +2.496961656e-06 0.006221621186 0.01352798308 0 24.95986123 7.677731925 1058.869146 0.001888807515 +2.499403317e-06 0.003256921442 -0.005729794675 0 -10.01354232 3.831455222 981.3655709 0.002037976529 +2.499698698e-06 0.004371469636 -0.0008908288437 0 2.872574257 -6.760960891 946.2578805 0.002113588739 +2.497761111e-06 -0.001750291684 0.009592247133 0 15.21091751 15.54274177 1027.377162 0.001946704749 +2.497394787e-06 0.008621692299 -0.005762818612 0 5.17733664 20.12685064 910.0864332 0.002197593467 +2.497436777e-06 -0.00541212243 0.01333323583 0 20.72708375 9.042448324 998.3797043 0.002003245851 +2.497983738e-06 -0.005212887577 -8.481072262e-05 0 12.93309921 -16.20356583 1032.10462 0.00193778805 +2.49400702e-06 0.000227417117 -0.01267267755 0 -19.90485675 -27.79418139 986.570115 0.002027225404 +2.496425057e-06 0.007716082837 0.009860107179 0 24.35857149 -4.432415926 925.4282841 0.002161161523 +2.498631133e-06 -0.00413616613 -0.007324938078 0 10.2861106 13.96013881 1047.790339 0.001908778814 +2.498714778e-06 -0.006601881441 -0.0006621503318 0 4.544339265 -13.3506857 879.4690895 0.002274099254 +2.498832293e-06 -0.001519685821 -0.001539075435 0 8.000136287 12.34868296 962.6380459 0.002077624096 +2.498779406e-06 -0.008722926518 0.01440166241 0 -12.37814799 -6.655412994 899.3271349 0.00222388486 +2.498994493e-06 0.00358225537 0.004272358452 0 7.109026869 -10.80591871 911.9747663 0.002193043134 +2.497012578e-06 -0.009670534017 -0.01172595029 0 -20.29572612 -15.24985121 1038.113595 0.001926571436 +2.498594066e-06 -0.0008866678225 0.01385576026 0 13.90474203 7.952875808 955.0603541 0.002094108494 +2.499397848e-06 0.001799207395 0.00343167644 0 10.3476008 -0.364361835 943.4124836 0.002119963467 +2.498019217e-06 0.002797457487 -0.01097737646 0 15.37746841 -13.83486518 1038.946967 0.001925026072 +2.49668466e-06 -0.007398252576 0.002023798157 0 5.867402391 26.082585 1037.708044 0.001927324368 +2.498978884e-06 0.0005377200618 0.005363571639 0 -13.42681854 0.8952392892 941.4933822 0.002124284714 +2.495988928e-06 0.002061035526 0.003589706048 0 -18.69949902 -19.04587073 941.8033762 0.002123585507 +2.495618124e-06 -0.008564532762 -0.01191739699 0 0.5044313204 -27.37353354 924.2167826 0.002163994463 +2.495598511e-06 -0.005171666481 -0.007603935208 0 -24.88516636 -12.34836176 935.7019331 0.002137432797 +2.499132773e-06 0.006837893445 0.01185269616 0 4.124050663 12.61502346 1007.625556 0.001984864307 +2.494402394e-06 0.009432057338 -0.01214138959 0 12.12272691 -27.86740341 907.5062853 0.002203841486 +2.49582232e-06 0.006579794786 -0.001953954622 0 15.30388898 21.23683439 905.0187553 0.002209898953 +2.497963855e-06 -0.0008613218181 0.0130559986 0 -16.85008146 6.593858822 896.3757351 0.002231207207 +2.49593173e-06 0.004622299732 -0.004008406077 0 12.5917743 -23.82322628 944.0886767 0.002118445067 +2.496975955e-06 -0.005339719253 -0.01137653853 0 -18.14138382 -15.99771182 983.0719277 0.002034439133 +2.499469582e-06 -0.001468345593 -0.009548148466 0 -8.659568836 -5.45272617 993.4750366 0.002013135636 +2.496696228e-06 -0.007366635534 0.01499438557 0 -22.64435825 7.410384466 926.4387978 0.002158804235 +2.49668987e-06 -0.00427051561 -0.009887005195 0 -21.6442756 8.240065756 899.6639003 0.002223052408 +2.496504249e-06 0.001619225428 0.00266267061 0 24.41622222 9.463138876 989.8169676 0.002020575587 +2.499287094e-06 -0.004176146011 -0.007646969471 0 11.0928402 5.119059544 1023.029552 0.001954977739 +2.499411117e-06 0.007450169884 0.005382501937 0 -8.806471021 -5.728724442 967.9701917 0.002066179328 +2.497391726e-06 -0.001257552397 0.01192262993 0 23.69520145 -2.045995375 1040.906624 0.001921401934 +2.49823703e-06 -0.009354178542 0.009820553809 0 19.03933324 3.377399001 1029.501915 0.001942687013 +2.4995989e-06 -0.003566432237 -0.001325715459 0 7.519714196 3.525607964 927.2168875 0.002156992638 +2.493374674e-06 0.006891561029 0.008359538913 0 23.48969153 30.22318904 1050.506412 0.001903843686 +2.498970017e-06 -0.0006436776556 -0.004153293204 0 12.18905069 -8.645180665 1041.019622 0.001921193374 +2.496691029e-06 -0.00423715048 -0.01093614561 0 -27.00589481 -3.914786571 1060.222843 0.001886395877 +2.497977101e-06 0.0009298970085 0.007191636446 0 4.759580618 -19.10221787 978.4282295 0.002044094743 +2.498473531e-06 0.006530713579 -0.01087662495 0 6.234664779 14.83375565 920.6978179 0.002172265385 +2.495414504e-06 0.008456372512 0.01057670436 0 -19.27163164 22.52051774 978.0947483 0.002044791676 +2.498720925e-06 0.004586265841 -0.008416275331 0 6.642463078 -13.13529509 920.113283 0.002173645394 +2.496911446e-06 -0.004428774668 0.004175894544 0 15.33033914 -20.72613763 1036.773015 0.001929062553 +2.498760125e-06 0.006533628106 -0.003603132034 0 14.71726135 -4.726985178 981.4353252 0.002037831682 +2.497898304e-06 0.009067960256 -0.009954129013 0 17.71375808 -11.97744506 1042.637915 0.001918211463 +2.497881807e-06 0.003971641287 0.007394430083 0 3.847336682 17.7798463 883.5455838 0.002263607036 +2.497924145e-06 -0.001643075012 0.001604024763 0 3.61720429 17.47470402 875.5307772 0.002284328606 +2.49782001e-06 0.00791956875 -0.01307096367 0 -17.10769862 -9.691804301 941.3456276 0.002124618144 +2.498936227e-06 -0.008976554926 0.006026557116 0 7.544473152 11.61457011 949.3691325 0.002106662131 +2.495034808e-06 -0.009737845785 -0.01142200522 0 18.66556637 -23.43581782 950.045868 0.002105161516 +2.498307523e-06 0.007114927662 -0.01241296391 0 -17.93410598 -3.622466807 994.2063262 0.002011654872 +2.499581387e-06 -0.00771155417 -0.0146291249 0 7.784192287 1.873316307 874.9645538 0.002285806884 +2.497631162e-06 0.00509033164 -0.01142074718 0 -1.67206237 -19.79782806 912.4811363 0.002191826133 +2.499232572e-06 0.003420073809 -0.01471300078 0 -11.80398724 -3.674450674 997.7660678 0.002004477868 +2.497922699e-06 0.006268152753 0.002959800165 0 6.360144484 20.76815545 1065.280641 0.001877439542 +2.497723956e-06 0.005550959562 0.007331657913 0 -13.43679422 -15.12924453 948.074118 0.00210953971 +2.497336465e-06 0.0007307943329 -0.00946650553 0 -13.2741038 18.6937869 992.9662205 0.002014167208 +2.496667882e-06 -0.009692758839 0.004402824724 0 13.2023972 -18.70066282 886.3000368 0.002256572173 +2.497229671e-06 -0.009196933829 0.009244092226 0 3.710006126 22.50525547 968.6013059 0.002064833062 +2.497936366e-06 0.006352598174 0.01313917709 0 -14.79282414 -10.18959031 883.9010251 0.002262696776 +2.497388008e-06 0.005269418675 0.002847637259 0 13.41236337 18.79874687 1009.969474 0.001980257872 +2.499556478e-06 -0.001307457653 0.01025891457 0 -3.924620362 -7.840044819 930.838061 0.002148601442 +2.497926808e-06 0.006204726766 -0.01321438377 0 19.85270757 5.547441001 1011.988495 0.001976307054 +2.496021429e-06 -0.005695970245 0.00727608199 0 -9.787742073 22.95548461 884.138746 0.002262088399 +2.49984376e-06 0.004678208064 -0.006112190417 0 2.479372004 -4.595653581 934.1135088 0.00214106742 +2.497577208e-06 -0.00590549937 0.002492668745 0 -9.346259587 -17.74096188 910.6112666 0.002196326878 +2.497571129e-06 0.00303282775 0.01346592543 0 -21.39444867 6.261766668 1011.05096 0.001978139657 +2.498709807e-06 -0.008159757797 -0.007532142999 0 8.915273679 -12.99423145 980.8218008 0.002039106388 +2.495565327e-06 0.009296639492 0.008383748678 0 26.08689228 16.36243417 1033.302972 0.001935540742 +2.49881326e-06 0.004055127027 -0.01167567852 0 14.69696856 -0.8308032434 955.323348 0.002093532001 +2.498032588e-06 0.005430083862 0.009160416566 0 17.36960341 -11.92019169 1061.695187 0.00188377985 +2.496726485e-06 -0.007356966296 -0.001017341679 0 -21.40679831 10.17379043 925.8459058 0.002160186687 +2.498145015e-06 0.005384068885 -0.01219455639 0 11.90046524 13.61902678 938.7145643 0.002130573101 +2.498068359e-06 0.0008177839639 -0.00599895831 0 9.033086734 -17.81137661 1015.772013 0.001968945762 +2.498829704e-06 -0.003264875556 -0.0130420936 0 -0.3345491541 -16.1572902 1056.142351 0.001893684122 +2.494977018e-06 -0.0007240169449 0.01239093916 0 -14.20325126 30.06567026 1048.312579 0.001907827912 +2.499231065e-06 -0.006283593522 0.007488076135 0 5.143133678 -11.86712485 1042.827753 0.001917862269 +2.498929653e-06 0.00588729213 0.008338992682 0 -9.664801131 9.855759189 943.3026166 0.002120210381 +2.499875189e-06 0.002057961454 -0.0004611530621 0 -1.289640225 -4.819409779 998.5324883 0.002002939337 +2.498304036e-06 -0.008088435051 -0.01468070579 0 -16.85542672 2.796960538 927.4795241 0.002156381837 +2.497171174e-06 0.007432655017 -0.008202666154 0 9.311312165 -21.96478066 1002.563096 0.001994886913 +2.498569308e-06 -0.005323681496 0.01355492093 0 -13.36936111 -7.992892058 920.6351514 0.002172413249 +2.495106026e-06 0.009933197582 -0.01128296251 0 -16.55733705 -25.88642724 981.4747644 0.002037749795 +2.498684024e-06 0.004349419256 0.0001771297725 0 14.00858467 -4.644970575 909.5370267 0.002198920925 +2.49771556e-06 -0.006341808103 0.01212979797 0 -21.28168059 8.243183599 1067.349742 0.00187380005 +2.496952859e-06 -0.008118956387 -0.001122933074 0 -19.94065929 13.1940277 968.1192631 0.002065861177 +2.499956234e-06 0.006062185541 0.003364672714 0 -2.569002876 1.332415443 978.1556773 0.002044664307 +2.495955948e-06 -0.006468820707 0.01408601157 0 -0.123598495 29.63263481 1041.326845 0.001920626563 +2.496395038e-06 -0.008879925394 0.01426848973 0 -21.32382552 15.57052992 982.7924721 0.002035017623 +2.497201667e-06 -0.007152018026 -0.0009242323623 0 10.2497892 20.17447621 956.1291676 0.002091767585 +2.498194633e-06 0.005518463799 -0.004316523259 0 17.18152943 -5.574372325 950.3398331 0.002104510335 +2.496611484e-06 0.004546183217 -0.01325232233 0 -19.4571915 14.97905447 942.7609385 0.002121428581 +2.497634982e-06 0.004650850762 0.002446214897 0 -16.69777552 -10.41500518 904.5461016 0.002211053695 +2.494787544e-06 0.0007328202156 0.01378077913 0 19.82065843 23.09212373 941.7897706 0.002123616185 +2.499348725e-06 1.540860627e-05 0.01176242685 0 9.939885612 5.151249503 980.8428226 0.002039062686 +2.498734751e-06 0.0009441585001 0.0134515971 0 -8.462092261 13.66933351 1010.436973 0.001979341664 +2.498993589e-06 0.001517333519 0.009085439681 0 9.730671718 9.928786576 979.7387758 0.002041360462 +2.499975972e-06 0.008159566117 0.0001530491305 0 -0.2633958739 2.022697588 930.4889325 0.002149407618 +2.497707644e-06 -0.002650784156 -0.01314324558 0 -18.70628739 -8.633647649 961.8682248 0.002079286901 +2.498545012e-06 -0.00422131788 0.001413112523 0 -14.34777949 7.709239418 954.6010737 0.002095116018 +2.498510803e-06 -0.0006851821998 -0.006564993567 0 -2.082802522 -17.50743283 1021.37719 0.00195814046 +2.4996377e-06 0.0028092635 0.002565647985 0 3.08677119 -8.539300351 1066.636999 0.001875052151 +2.497080091e-06 0.008656974994 0.01354372458 0 -17.56291569 17.33436268 1020.694875 0.001959449439 +2.497807957e-06 -0.003877469641 -0.01494849253 0 -21.41824333 -2.14560032 1027.707896 0.001946078266 +2.498620506e-06 0.006756419158 -0.004909457127 0 15.5466127 -1.987854494 943.3924419 0.002120008505 +2.496186904e-06 -0.004374808525 0.01320339486 0 -19.7497352 16.70001586 936.0347928 0.002136672713 +2.496609684e-06 -0.0008233286999 0.01082698842 0 20.96740432 10.23329447 895.5379628 0.002233294492 +2.498210979e-06 -0.009522891645 -0.01192215402 0 -16.39814095 6.524235202 932.749542 0.002144198319 +2.493802934e-06 -0.002687252038 0.009787183183 0 17.86380459 27.60565763 933.1218208 0.002143342868 +2.496065652e-06 -0.0002043434791 -0.005200171242 0 17.13087099 -22.47311637 1006.773297 0.001986544543 +2.496884443e-06 -0.007047467763 -0.01185235814 0 16.28476921 16.53125964 929.174577 0.002152448043 +2.495081294e-06 -0.002991753924 -0.007591952928 0 -24.75737171 20.01004308 1014.177919 0.001972040569 +2.496830913e-06 0.00145419817 0.003438847591 0 -19.25795603 -18.73178988 1066.60686 0.001875105135 +2.499681602e-06 -0.00786525446 0.01406025306 0 5.997237444 3.828007964 891.5435435 0.002243300414 +2.498082893e-06 -0.009470350491 0.009238719251 0 -15.80570242 8.986739351 928.2742543 0.002154535678 +2.499009599e-06 0.006122877151 0.0141625347 0 10.57748507 6.839509678 894.8527166 0.002235004669 +2.496851385e-06 -6.424307823e-05 -0.002088349157 0 -13.79976258 -18.25037657 911.344063 0.002194560848 +2.498929845e-06 0.003284833343 -0.008844009633 0 15.16554996 3.856758387 1069.444956 0.001870128975 +2.498951442e-06 -0.005729772649 0.01294433737 0 -6.997090473 12.79966535 1007.156128 0.001985789436 +2.496102469e-06 0.002382888286 -0.004778161689 0 -11.97128263 -22.02777516 897.4301714 0.002228585648 +2.498262877e-06 0.004499659585 0.009428499697 0 -17.85417978 3.906424309 980.2806805 0.002040231986 +2.497104927e-06 -0.005237354496 0.006592058963 0 13.46998786 18.58568509 953.4931595 0.002097550444 +2.496723601e-06 0.002477096943 0.002585785864 0 18.92375597 -12.137195 877.8074264 0.002278404055 +2.499950184e-06 0.002872860678 0.01306328959 0 2.881003924 -0.5373487011 928.4656464 0.002154091546 +2.495549392e-06 0.0003428192483 0.0130074486 0 -14.56985157 27.68667882 1047.947167 0.00190849316 +2.499338936e-06 0.006852432322 0.004451307699 0 11.23212038 -1.601719254 986.6278588 0.002027106758 +2.498461094e-06 -0.0008238812396 0.010952793 0 -3.984291129 15.5123825 912.7033257 0.002191292552 +2.497196651e-06 -0.003829352106 0.007634902394 0 -24.66283348 3.587608789 1052.091828 0.00190097475 +2.498358319e-06 -0.003032559981 -0.006897886922 0 -0.1504241339 16.45509525 907.9296548 0.00220281383 +2.499603701e-06 -0.004092406528 0.01185576581 0 1.229387113 8.689472611 985.6999617 0.002029014992 +2.498009081e-06 -0.001784278909 -0.009882632671 0 -3.28380415 20.34026503 1032.220163 0.001937571141 +2.499757156e-06 -0.005494087669 0.0005910454248 0 -3.931117733 5.856188934 1012.036892 0.001976212544 +2.495164955e-06 -0.001652404186 0.006304728189 0 17.55002358 20.86075866 876.0218296 0.00228304813 +2.498544595e-06 0.008688001046 -0.007937614925 0 11.72450245 13.42596218 1044.529659 0.001914737396 +2.496675769e-06 -0.005443417029 0.001854646197 0 -25.08714402 0.8903291165 973.0770631 0.002055335673 +2.498672172e-06 -0.004783911947 0.005102554495 0 11.17417439 12.4121985 1024.639703 0.001951905625 +2.49795431e-06 -0.006126662889 -0.0003145148233 0 8.375029589 16.16546967 899.8075444 0.002222697523 +2.497959451e-06 0.009309436525 -0.003875894649 0 2.65785476 -18.84707704 941.8864863 0.002123398126 +2.498514619e-06 -0.004548787763 0.009270873978 0 8.466306641 15.89207596 1044.480144 0.001914828166 +2.498829858e-06 -0.004632131229 0.01176718944 0 -12.54484652 6.086712838 911.3000886 0.002194666746 +2.498673244e-06 0.009309130446 -0.009344569948 0 -5.19270902 15.28689075 990.910727 0.002018345291 +2.497227783e-06 -0.008389652316 -0.002530806314 0 -19.32050501 10.74549826 938.4973706 0.002131066173 +2.498627445e-06 0.001336211301 -0.01481991063 0 -1.310599087 15.13100014 916.4767229 0.002182270373 +2.497352421e-06 0.005300874356 0.006532827755 0 -15.69238238 -15.6553828 962.8970553 0.002077065237 +2.498128689e-06 -0.002492044033 -0.009851955192 0 13.47030388 -15.74887896 1070.92637 0.001867542023 +2.498749514e-06 0.007763352618 0.0007733284193 0 -12.49770915 10.99162246 1052.23012 0.00190072491 +2.499989869e-06 -0.006772469752 0.002829110732 0 -1.306700248 -0.5452064645 994.6962646 0.00201066403 +2.496799979e-06 0.00983484704 -0.01459652832 0 -11.1356409 -19.36933192 882.7257146 0.002265709458 +2.497943705e-06 -0.009759333995 -0.01460397832 0 -11.48653618 14.56789062 914.5152861 0.002186950869 +2.49399778e-06 -0.004791480205 0.01006025662 0 -20.43262671 28.70210802 1015.959827 0.001968581776 +2.495415577e-06 0.002598617943 -0.006780496796 0 -16.44202227 -22.43721201 918.0139687 0.002178616087 +2.497913351e-06 0.007119308654 0.01040642282 0 -1.898321285 19.9608392 981.2016451 0.002038317007 +2.498644898e-06 -0.004746144996 0.003500732726 0 10.78222827 -13.61348036 1054.664733 0.001896337232 +2.49923127e-06 0.002971123564 -0.003832756416 0 10.66630706 -4.307850954 927.6267484 0.002156039596 +2.496613065e-06 0.001222394533 0.01345941978 0 -9.695740243 21.38869777 901.8352064 0.00221770007 +2.499422439e-06 0.00199032316 0.005095284493 0 -11.1423176 2.586742633 1064.198664 0.001879348346 +2.499891812e-06 -0.002346532722 0.008290750764 0 -2.834214515 -3.377260494 947.8086235 0.002110130622 +2.498850334e-06 -0.004556957809 0.001032034352 0 14.64957733 -0.4376144611 966.3690853 0.00206960263 +2.496228806e-06 -0.001563528506 0.003019710307 0 14.35517069 24.70957183 1039.952335 0.001923165064 +2.497363953e-06 -0.003727463526 -0.01296677157 0 4.095113988 -23.23590129 1027.160422 0.001947115521 +2.499796002e-06 -0.007894981382 0.01420347784 0 5.632611763 -0.8476686074 891.7261322 0.002242841078 +2.499960989e-06 0.004741784791 0.0007291092561 0 2.461611232 1.243551186 987.332724 0.002025659589 +2.496752236e-06 -0.00369163957 0.003671217402 0 -26.46277446 -5.629612386 1061.030866 0.001884959302 +2.498363397e-06 -0.009945099056 -0.006637256322 0 5.183487169 18.02404471 1036.368654 0.001929815218 +2.497452512e-06 -0.006489117215 -0.005533359004 0 -18.17945044 14.33353328 1025.23181 0.001950778331 +2.499235143e-06 -0.001368733058 -0.01111890423 0 8.582725275 -7.349128749 913.4700378 0.002189453312 +2.499564355e-06 -0.002581588645 -0.008865288247 0 6.688289215 6.659804874 1011.103007 0.001978037831 +2.498400063e-06 -0.003892115555 0.003208796389 0 -14.33153863 -6.600405392 881.8457258 0.002267970396 +2.499845032e-06 0.007081989995 -0.009416679007 0 2.6821178 4.118253386 882.7668021 0.002265604002 +2.497318708e-06 0.001394515466 -0.009831917917 0 15.80011673 14.41728606 923.2824382 0.002166184384 +2.499277668e-06 0.0008019396616 -0.002167909036 0 4.073222833 -10.48079888 935.424347 0.002138067078 +2.497194594e-06 -0.0003848944698 -0.01224181417 0 18.21435495 11.25340904 903.4987197 0.002213616861 +2.499740561e-06 4.281777423e-05 -0.002166072673 0 -1.92961184 -6.658452948 962.3537322 0.002078237901 +2.497441147e-06 0.005846741362 0.006328762996 0 12.03172624 19.05957021 995.9558943 0.002008121054 +2.496798887e-06 0.00042941703 0.011992394 0 21.36686628 12.82968715 984.5141091 0.002031458952 +2.498151728e-06 -0.006409464334 -0.0005081303394 0 -18.66471136 -0.5264684493 970.902455 0.002059939173 +2.497438714e-06 -0.004891017717 0.001081638169 0 5.120788264 22.2717312 1009.320873 0.001981530406 +2.499725229e-06 0.004916015551 -0.00874126506 0 -6.913281403 0.459074232 934.5912271 0.002139973009 +2.499350913e-06 -0.002950298814 -0.01307775846 0 11.22093361 1.608226746 994.7997549 0.002010454858 +2.49807862e-06 0.003672513408 -0.004809592653 0 3.576978036 -19.26459535 999.2477053 0.002001505722 +2.497629292e-06 -0.004709161688 0.01027398554 0 12.48623222 18.69869033 1032.220016 0.001937571418 +2.497457278e-06 0.00318000481 -0.005395718452 0 8.052184413 -19.2355946 924.3521407 0.002163677577 +2.496464926e-06 -0.007225402091 -0.006955624816 0 -16.99634778 -18.59219848 946.8621513 0.002112239883 +2.496389065e-06 0.003252369254 0.001468564658 0 21.67490776 12.78072181 935.8204935 0.002137162003 +2.498988823e-06 0.001297719241 0.001555535335 0 -14.45699227 -0.003270763813 1016.444246 0.001967643584 +2.498889343e-06 -0.008378251232 -0.007212999926 0 -15.09163459 4.928054926 1065.025944 0.001877888526 +2.499348479e-06 0.00981383252 0.01276660338 0 -7.209741568 -9.667284433 1056.368175 0.001893279302 +2.497246653e-06 -0.00273395943 -0.006729567046 0 16.35325564 12.80890288 884.8384407 0.00226029963 +2.499635634e-06 -0.005819137446 -0.002874839378 0 7.733070705 0.04548585868 905.8407774 0.002207893539 +2.496378931e-06 -0.002392489393 -0.007022262763 0 -13.48191097 -19.70648142 886.7657164 0.002255387148 +2.497397734e-06 0.001465771911 -0.004389459144 0 -14.52395556 -14.19436676 889.840693 0.002247593323 +2.499652956e-06 0.003640412176 7.867565844e-05 0 -6.738651065 4.367539512 963.8264528 0.002075062366 +2.497854546e-06 -0.0003500796389 0.003465779694 0 15.43091019 -14.36990015 1017.592117 0.001965424031 +2.495940862e-06 -0.008370307167 0.003317347155 0 -20.09731047 18.73580361 963.734543 0.002075260262 +2.497104e-06 -0.009380667577 0.009842327975 0 -14.25226811 -20.80306755 1047.344606 0.001909591159 +2.499311256e-06 0.004885464883 0.006389122987 0 -7.412493724 7.68743028 909.7938714 0.002198300146 +2.497398906e-06 -0.001039498313 -0.01270043344 0 18.71826269 -8.420027394 899.5345189 0.002223372153 +2.495171739e-06 -0.007721843855 -0.0147546537 0 -17.13392912 -23.16611327 926.5668217 0.002158505952 +2.496963456e-06 0.0001368313143 0.004504063795 0 -23.10503727 -0.8698203095 937.8027832 0.002132644556 +2.498698431e-06 -0.006721787257 0.001715080042 0 -13.10431982 6.936807855 918.8029234 0.00217674536 +2.496445486e-06 0.00293804355 0.008814362905 0 -14.34188906 22.35581277 995.6417194 0.002008754717 +2.498233529e-06 -0.001920551672 0.001883715042 0 -8.420604851 -15.45048684 935.9098642 0.002136957923 +2.497716674e-06 0.008086337694 0.008257622591 0 18.28531475 -5.169382412 888.8962692 0.002249981319 +2.496862212e-06 0.007706006821 0.0114346369 0 -15.41631152 -17.02484781 916.3961448 0.002182462259 +2.497645869e-06 -0.006567108096 -0.004136578578 0 20.3947996 8.500903264 1017.93734 0.001964757477 +2.499185011e-06 -0.002310805325 0.01129478695 0 12.407486 -1.598164695 979.7449953 0.002041347503 +2.496852306e-06 0.009255450508 0.01322214486 0 19.38294485 15.71235694 993.985394 0.002012102001 +2.497154859e-06 0.007798240017 -0.003285485955 0 12.90961688 -17.78229033 920.7928013 0.002172041307 +2.498184496e-06 0.0004396941932 -0.01085979721 0 14.99174864 -8.323848983 899.6436299 0.002223102497 +2.498760481e-06 -2.139274497e-05 -0.009163005457 0 0.3974387795 -14.77379863 938.4840987 0.00213109631 +2.499885193e-06 -0.001979946815 -0.01388297042 0 -0.1469488197 -4.979386124 1039.579425 0.001923854928 +2.497675698e-06 0.00868935884 -0.01012944706 0 21.03594549 -1.187705328 976.8781228 0.002047338305 +2.498506896e-06 -0.0005090937857 -0.01258510001 0 -16.57888428 -0.5541879417 959.7110083 0.002083960674 +2.495678616e-06 -0.008585364022 -0.009300036288 0 -3.527743031 -30.31245463 1037.371435 0.001927949751 +2.496443726e-06 -0.008166823974 0.00615072869 0 -11.52684853 22.72103172 954.8076123 0.002094662814 +2.497288282e-06 0.008122240659 0.007301521562 0 13.50747141 17.47834213 948.136953 0.002109399907 +2.496758463e-06 0.002278022505 0.00769866548 0 -20.82684426 16.40696493 1040.780526 0.001921634725 +2.495144172e-06 0.006104971934 -0.009512178374 0 25.19184041 15.74643136 952.6064566 0.002099502881 +2.498288552e-06 -0.005316929785 0.005933313165 0 16.09088616 1.8623569 875.3084126 0.00228490892 +2.497021107e-06 0.001737167649 -0.001150487806 0 -6.766214702 -21.12448075 908.3581235 0.002201774772 +2.497990975e-06 -0.004822169221 0.006396649028 0 2.029041555 21.2622652 1065.220571 0.001877545416 +2.498803391e-06 0.004506050623 -0.01448069178 0 -13.4410534 -3.601885384 899.3388237 0.002223855957 +2.499304168e-06 0.005856116461 0.003500275898 0 -10.86039117 0.8873033521 923.5865129 0.002165471206 +2.496372317e-06 -0.0003083431907 -0.005715265281 0 16.35063048 -22.58193996 1034.485962 0.001933327347 +2.497871559e-06 0.005342959543 0.004923440572 0 18.48697339 7.323599702 963.4641964 0.002075842577 +2.498128808e-06 -4.361403175e-05 0.009379374711 0 8.814731637 15.10966482 903.9943028 0.002212403324 +2.497754611e-06 -0.009767639455 0.006498822668 0 -18.18878052 -11.80621881 1022.922586 0.001955182168 +2.49890616e-06 0.006602476463 -0.009134757605 0 -14.25206753 0.2404609361 963.5551921 0.002075646539 +2.495796047e-06 -0.008972744485 0.0110235063 0 18.06958114 20.47047005 941.0665607 0.002125248185 +2.499243023e-06 0.009639118626 0.009720576941 0 -9.734601091 7.162949423 982.1443295 0.002036360584 +2.494007914e-06 0.002429015064 0.01404038229 0 -20.39172055 24.52552586 920.5232868 0.002172677246 +2.497376514e-06 -0.006677161306 0.002840567068 0 8.154020845 21.3942015 999.1325013 0.002001736504 +2.497877125e-06 -0.009417485329 0.0009047767846 0 -0.7820014324 -20.68834621 1004.431243 0.001991176612 +2.498643976e-06 0.004680579524 -0.00687131793 0 -1.055459909 15.16147125 922.6863955 0.00216758371 +2.494411136e-06 0.004299742049 -0.004503386824 0 27.11025496 23.32828619 1068.867112 0.001871139992 +2.496069836e-06 -0.006774072908 0.000618422837 0 -16.31803522 20.32536807 929.1500473 0.002152504868 +2.493920947e-06 0.001932420847 -0.008502646296 0 19.33783322 -29.0439497 999.7825983 0.002000434898 +2.494940126e-06 0.0009179197485 0.009388885538 0 22.40383018 23.09769702 1010.756847 0.001978715262 +2.497547337e-06 -0.005558050591 0.003033043602 0 16.27485428 14.92684597 996.722811 0.002006575929 +2.495629622e-06 -0.005560377012 0.009083068203 0 -2.146334377 31.51910061 1067.871492 0.001872884533 +2.499473114e-06 0.00505255471 -0.01379607614 0 4.644463224 7.776054745 882.2671402 0.002266887101 +2.496817378e-06 0.00909121722 0.007594885002 0 -10.71596797 22.35831705 982.258812 0.002036123245 +2.499560589e-06 0.001682299417 -0.008070031574 0 9.051118309 0.4285839889 966.5173384 0.002069285175 +2.497383558e-06 -0.003908469756 -0.01264404862 0 -22.87559157 -3.710354894 1012.675089 0.001974967116 +2.497718532e-06 0.009311131742 -0.004405475655 0 -15.05630692 11.83533262 896.2405067 0.00223154386 +2.497559286e-06 0.0007769561419 -0.004266181604 0 -13.38732743 -16.00548833 944.0822564 0.002118459474 +2.497641358e-06 -0.004747525514 -0.003967034847 0 22.56767404 -3.375450172 1050.246766 0.001904314363 +2.495587723e-06 0.003284550104 0.008543170758 0 -8.725222616 24.8451802 885.8532552 0.002257710279 +2.497662804e-06 0.002716402989 0.007746342269 0 14.48656227 -17.40191666 1046.914841 0.001910375058 +2.498500593e-06 -0.0004362412356 0.00879907557 0 -12.03559861 -13.17082121 1030.062816 0.001941629159 +2.498718009e-06 -0.003652500268 -0.00480073377 0 5.476447988 14.74136568 981.9070957 0.002036852579 +2.494497682e-06 0.006392366588 0.004802154922 0 26.70404281 -17.30376636 958.4213593 0.002086764846 +2.496072432e-06 -0.008675880195 0.0008944472065 0 19.82916222 -19.124908 982.3718998 0.002035888853 +2.496651887e-06 0.001937067979 -0.01192687271 0 -20.74310822 15.60185964 1002.53201 0.00199494877 +2.494567592e-06 0.006662794156 0.006606092923 0 17.1608471 27.00619064 969.9476126 0.002061967032 +2.498172993e-06 -0.000782015766 0.01127613966 0 14.64976653 10.80083463 951.8954578 0.002101071062 +2.499442755e-06 6.625273731e-05 -0.01465625326 0 5.734999636 8.339349527 958.6273153 0.002086316515 +2.499526032e-06 -0.005633729422 -0.00517383927 0 2.835520431 9.172687705 986.0390615 0.002028317212 +2.499751434e-06 -0.008103144956 0.0095297996 0 -1.192962118 -6.74898134 972.002314 0.00205760827 +2.499898124e-06 0.005281581967 0.007368346963 0 3.768464134 -1.291301921 882.4980621 0.002266293928 +2.497045017e-06 -0.006876477133 -0.001502297306 0 -24.33847605 -0.2475090898 1000.761928 0.001998477304 +2.499606959e-06 0.006526724659 0.004300397881 0 -5.636006612 5.801605207 912.2341405 0.00219241959 +2.498701084e-06 -0.005740122795 0.005875763444 0 -11.35234648 11.36896675 996.6172269 0.00200678851 +2.498101167e-06 0.0043211025 0.002978453196 0 1.356779888 18.45505603 949.3004961 0.002106814447 +2.497204416e-06 0.00607149492 0.0131926244 0 14.74473203 14.93623244 887.2348645 0.002254194554 +2.499414353e-06 -0.0008309119241 0.003292513762 0 -6.151800315 -8.322623568 956.1922302 0.002091629629 +2.499438586e-06 0.009731967649 -0.009794343933 0 -8.221680946 7.513893866 1051.025737 0.001902902973 +2.499883664e-06 -0.007821472427 -0.0117713049 0 -5.014522778 -0.8731376836 1055.201398 0.001895372773 +2.498199079e-06 -0.001315639238 0.003385711976 0 4.05962705 -19.89983515 1069.852316 0.001869416899 +2.498836668e-06 0.001220184029 0.01240011435 0 12.23560007 6.289720128 901.7762366 0.002217845092 +2.497816388e-06 -0.002521634931 -0.0106253402 0 -13.87362229 -13.01612429 910.0125056 0.002197771995 +2.499553453e-06 0.003657514518 -0.005869855152 0 -2.842857536 -9.288575685 1027.815802 0.001945873956 +2.499396192e-06 0.002342382343 -0.003060480393 0 6.541932384 -9.680183821 1063.083184 0.001881320324 +2.498240644e-06 0.009708851343 0.01246699435 0 -7.304740556 15.20467982 899.0137376 0.00222466011 +2.497592811e-06 0.0004797432479 -0.006242116448 0 7.543046712 22.2191892 1069.023299 0.001870866615 +2.496146557e-06 -0.006685956195 -0.0001330291643 0 -27.36474906 9.078457 1037.945554 0.001926883344 +2.499630553e-06 0.00594716426 -0.00409943636 0 7.984893241 4.569227344 1070.195912 0.001868816707 +2.497815426e-06 0.006964843143 -0.0043741514 0 -17.40432597 -11.93971312 1009.408913 0.001981357579 +2.496137368e-06 -0.009922972047 -0.008406796516 0 2.551265721 -28.40850142 1025.614484 0.001950050463 +2.499094646e-06 0.007576623554 -0.004138842272 0 -14.22460843 1.604504352 1063.659109 0.001880301672 +2.495005843e-06 -0.0002186356205 -0.00437684848 0 -20.04995602 -24.05322707 990.0680206 0.002020063226 +2.499047151e-06 -0.009102566815 0.00129723985 0 -3.24575343 14.37575536 1067.426925 0.00187366456 +2.498272147e-06 -0.009181907349 0.009768091359 0 -18.45828551 -3.10968333 1006.671205 0.00198674601 +2.497976032e-06 -0.00899241453 -0.006987238547 0 19.92995606 -5.802792675 1031.400321 0.001939111284 +2.497211397e-06 -0.0004162227502 0.01390336682 0 14.35562539 -15.06731785 880.8623897 0.002270502207 +2.495528611e-06 -0.001833615783 0.01080745509 0 -24.43841691 14.76455608 954.1394931 0.002096129564 +2.499904174e-06 0.004128473606 -0.001989028109 0 3.701225902 1.092550658 881.506475 0.002268843232 +2.496139282e-06 0.0004509651288 -0.01061338395 0 22.29057187 -18.72081288 1046.95429 0.001910303076 +2.499827583e-06 0.002672523954 0.001499068472 0 -5.327903404 -2.452363429 998.7732229 0.002002456568 +2.499854641e-06 0.007519227313 0.0086921566 0 -0.1495959205 -5.686540556 1055.002037 0.001895730937 +2.498142227e-06 -0.003976830579 -0.006680458942 0 10.97874042 13.75617578 912.8172396 0.002191019093 +2.49923905e-06 -0.008174924655 -0.004370116512 0 0.09269403718 12.72630312 1031.504235 0.001938915937 +2.499120149e-06 -0.0039431707 0.005953502816 0 8.484029867 -8.639293428 912.6706129 0.002191371095 +2.4980911e-06 0.007158180284 0.01143192592 0 -13.03787833 -15.06778656 1019.477397 0.001961789449 +2.49932477e-06 -0.00319092779 0.007225251168 0 -6.046480457 10.51606789 1043.738774 0.001916188274 +2.496520044e-06 -0.000653848974 -0.01327959558 0 17.44867655 15.70504016 889.3819882 0.002248752534 +2.49777747e-06 -0.007533240989 0.004667934878 0 -15.41986394 12.10394735 929.4777533 0.002151745959 +2.496872083e-06 -0.005715988511 -0.01198865175 0 -17.15504364 -17.2937824 973.4563658 0.002054534821 +2.498613288e-06 0.006161301555 0.009006484486 0 11.152477 10.31593092 912.0440932 0.002192876435 +2.498600816e-06 -0.002214193144 0.006370447318 0 -15.66918396 5.01256487 983.2405786 0.002034090174 +2.497705424e-06 -0.006980028213 -0.006602198614 0 19.13828998 -7.496971591 959.1503811 0.002085178758 +2.496222313e-06 0.002819947042 0.007276949307 0 -21.5922289 13.43466577 924.6599745 0.002162957255 +2.494721034e-06 -0.008208599687 0.01099052081 0 17.0931328 24.54455695 919.778686 0.002174436123 +2.499911049e-06 0.00153752245 0.001010288335 0 3.70587311 -1.894355548 986.743404 0.002026869389 +2.494519021e-06 -0.003093620385 0.01019373088 0 -15.24696019 30.53126497 1029.893044 0.001941949225 +2.497971116e-06 0.008595554805 -0.007092286753 0 -13.590549 14.49480106 986.084111 0.002028224548 +2.497691432e-06 0.000576367639 -0.01442621434 0 -2.457914125 -20.10108104 942.1181149 0.002122876069 +2.498728094e-06 -0.002235966548 0.002008303986 0 3.294063132 15.71184006 1006.334895 0.001987409967 +2.497068273e-06 0.005557026267 -0.005189022585 0 17.4447145 13.64715767 914.2806622 0.002187512088 +2.497292072e-06 0.009256661409 0.01108085224 0 19.89452247 12.12128038 1000.637628 0.001998725556 +2.499955466e-06 0.005839380273 0.01401839515 0 -1.550898579 -2.480871286 980.3359276 0.002040117009 +2.497314056e-06 -0.008518374632 0.001665215555 0 10.09562087 -19.26093507 937.88258 0.002132463107 +2.498596889e-06 -0.001748583154 -0.01463794932 0 7.089463692 -14.41679966 958.8384867 0.002085857032 +2.499567192e-06 -0.004892461416 -0.005058269484 0 8.221849431 -4.864868352 1026.74573 0.00194790194 +2.494703263e-06 -0.0006457038969 -0.004479139061 0 -20.11203821 -23.91405777 959.2769136 0.002084903714 +2.499089398e-06 -0.005988594294 -0.0003426413122 0 9.016518229 10.28337016 1013.292205 0.00197376432 +2.499568781e-06 -0.003963009054 -0.006230775579 0 0.5756381315 -9.464463884 1020.953214 0.001958953626 +2.499462966e-06 -0.001734817782 0.009039923502 0 -0.3113267899 9.838098068 949.6804283 0.002105971588 +2.49497345e-06 -0.009254570743 -0.003626398703 0 -26.95293148 11.79849152 927.2507088 0.002156913962 +2.498115208e-06 0.008867379026 0.009928523465 0 7.174997372 15.71340694 889.45478 0.002248568499 +2.495357354e-06 0.006366179269 -0.004669079636 0 -18.88107237 -19.66937408 894.1383262 0.002236790373 +2.499149339e-06 0.004987102156 0.001919539589 0 4.79065843 -11.46464475 952.4862536 0.002099767836 +2.49880325e-06 0.005011280295 0.004975341666 0 16.20866794 2.53408588 1060.221033 0.001886399097 +2.497454434e-06 -0.001262406372 0.00619138018 0 2.968712709 19.62844669 879.4762927 0.002274080628 +2.498179799e-06 0.006816063416 0.01206636305 0 17.73978919 5.78682132 977.7172782 0.002045581115 +2.496424197e-06 -0.005469070924 -0.0005161800538 0 23.13658096 16.02468247 1051.847689 0.001901415977 +2.499022063e-06 -0.008781095683 0.005715966623 0 -2.63305961 -11.95247529 875.0120252 0.002285682874 +2.498349587e-06 -0.006832864415 -0.009617845612 0 19.19819984 1.842148144 1061.284473 0.001884508866 +2.497049602e-06 0.003137318939 0.002780966142 0 -18.78735197 17.21606533 1048.562488 0.001907373212 +2.498699773e-06 0.006956788008 0.0126343653 0 13.32601942 -7.734918388 955.3046278 0.002093573026 +2.498557507e-06 -0.0002521349909 -0.009813962218 0 6.548418622 16.37206465 1037.917451 0.001926935518 +2.498658894e-06 -0.002128839684 0.01182632515 0 9.147116564 -14.5888676 1051.191552 0.001902602809 +2.497025137e-06 0.002196036163 -0.007430841734 0 3.218882471 -24.14865636 998.3316478 0.002003342281 +2.499037938e-06 0.006002618303 -0.005066919406 0 -0.6693716474 -12.31745371 889.1644803 0.002249302626 +2.499677372e-06 4.25985083e-06 0.001613871544 0 5.924468868 -4.862098685 954.0633006 0.002096296963 +2.496746251e-06 0.007216904331 0.00138632637 0 12.40135861 18.97472392 888.162098 0.002251841195 +2.494536441e-06 0.003735392969 -0.01308351979 0 -12.46356984 -31.67977172 1029.017981 0.001943600634 +2.497594281e-06 0.003587051802 -0.002012792474 0 -18.91107113 -3.364691643 875.365432 0.002284760086 +2.499779605e-06 0.002129965951 0.001212016633 0 5.980601998 2.926263206 1002.815959 0.001994383897 +2.496685156e-06 -0.009974800907 -0.009762261997 0 -0.5663878846 -27.0025279 1048.424871 0.001907623575 +2.497227875e-06 0.004568909057 -0.005782875828 0 20.78872015 -6.863624935 929.3786404 0.002151975431 +2.499319791e-06 0.001969054909 0.009764253977 0 7.482461412 7.730920723 922.33405 0.002168411759 +2.498285966e-06 0.005260311393 0.007909659573 0 -17.30349674 8.996074416 1053.05201 0.001899241425 +2.494999281e-06 -0.002479942897 0.008595830679 0 -21.74931698 21.08154118 957.0558577 0.002089742186 +2.496619844e-06 0.009064301429 0.002719760018 0 13.43057147 -22.70130811 1013.949997 0.001972483856 +2.499683592e-06 0.008292053686 0.01292568349 0 5.470255475 5.035258149 934.576599 0.002140006504 +2.498811798e-06 0.005631656013 0.0005299737677 0 -3.737344448 -14.75928238 987.4682508 0.002025381574 +2.498191575e-06 -0.008403332285 -0.004300693532 0 16.85836818 -9.581034692 1019.321695 0.001962089113 +2.499499423e-06 0.00474657855 0.01478417922 0 8.984926311 -4.538207702 1005.943854 0.001988182534 +2.498706581e-06 0.005950400238 -0.01049452413 0 -1.231232395 16.95135438 1056.520685 0.001893006003 +2.497033191e-06 0.00287369173 -0.009614276045 0 -23.81542864 -7.133951483 1020.152125 0.001960491921 +2.499408358e-06 0.008407477019 0.007926298224 0 9.647263917 5.922069099 1040.544041 0.001922071456 +2.49789271e-06 -0.00552099091 0.001323662996 0 -5.546728486 20.1444798 1017.444281 0.001965709608 +2.495922374e-06 -0.007635732424 0.01070026529 0 -0.9272861756 26.81157148 938.8523843 0.002130260341 +2.497481131e-06 -0.008891792283 0.007505737818 0 -22.1349797 -7.943450455 1047.375612 0.001909534629 +2.494615003e-06 -0.005570826652 0.01126842765 0 19.18029102 26.54127315 997.0200274 0.002005977759 +2.498191791e-06 -0.005706522898 -0.01407879144 0 -15.55764281 -9.994882008 972.1124007 0.002057375257 +2.498325712e-06 -0.008344316562 -0.003891747538 0 13.10986912 9.994810577 900.6530331 0.002220610964 +2.497544511e-06 -0.00171184998 -0.0005428257957 0 -20.1816805 -8.173202942 982.1811794 0.002036284183 +2.499520366e-06 0.007636221256 0.008207074441 0 -9.537195301 -3.517536043 1037.802247 0.001927149421 +2.499180065e-06 -0.0005881563667 0.01387842781 0 -6.682164471 -11.35040747 1028.420057 0.001944730645 +2.497002465e-06 0.002098630825 0.0007478454988 0 23.72153787 7.786992362 1019.231829 0.00196226211 +2.496637579e-06 0.003187421937 0.009641485387 0 23.08653958 -12.96093264 1020.447718 0.001959924027 +2.495951976e-06 0.003951389347 -0.009207477879 0 -21.34015255 16.86595219 955.3776443 0.00209341302 +2.499184902e-06 0.004763693893 0.01001770047 0 11.31438641 1.472429828 893.5209285 0.002238335932 +2.499328265e-06 0.008043207079 -0.00820395747 0 -12.29941548 -1.412686371 1068.00322 0.001872653529 +2.498135064e-06 0.003182484759 -0.005057468209 0 9.845263164 -17.46026259 1037.602641 0.001927520151 +2.49794553e-06 0.005411873744 -0.00762074888 0 9.095617502 -17.27912053 963.0163315 0.002076807978 +2.495610354e-06 0.009713694323 0.005197792731 0 28.52572074 7.578224248 995.4732967 0.002009094575 +2.494838089e-06 -0.00610370385 -0.01358939559 0 -10.53784552 -32.60962487 1065.755101 0.001876603733 +2.496014354e-06 0.004045540374 -0.01267748707 0 10.84566042 -27.98474764 1062.389623 0.001882548509 +2.499962161e-06 0.006113656461 -0.0149970474 0 1.274871701 2.458710118 1006.759449 0.001986571869 +2.498305844e-06 -0.001214433629 -0.01493807336 0 16.25771932 4.401943355 914.7877535 0.002186299491 +2.498747991e-06 0.005565402242 -0.008630953012 0 11.86452399 -7.403032597 883.5943096 0.002263482209 +2.497274943e-06 -0.009753986965 0.006167364218 0 -21.04785068 5.182803466 928.1327027 0.002154864271 +2.495763083e-06 -0.009391444926 -0.001199405165 0 -29.41028534 6.308314021 1032.643509 0.001936776809 +2.497142952e-06 -0.004092306686 0.01412526405 0 -8.762429364 23.16440712 1035.622023 0.001931206518 +2.498025773e-06 0.0009319410147 0.009925921967 0 -18.77525787 -3.026823705 956.7869988 0.002090329407 +2.499407822e-06 -0.005999173876 -0.01268339729 0 8.449223056 -6.16370787 960.9277699 0.002081321888 +2.497844191e-06 0.0003701097425 -0.01360957573 0 17.49855801 -6.676751916 901.6871953 0.002218064103 +2.498371081e-06 0.005186232417 0.0008240705612 0 -15.72460967 -7.361748449 961.7075011 0.002079634398 +2.49998774e-06 0.003765507676 0.004648100627 0 -1.000876008 -1.03859527 921.108391 0.002171297124 +2.498700017e-06 0.005067986688 0.01476713239 0 -14.65067618 -2.902543334 926.0814238 0.002159637315 +2.498001283e-06 -0.007646938032 0.01422975977 0 -8.541903872 16.41288709 925.1503849 0.002161810699 +2.497394126e-06 -0.0005219015712 0.003551843099 0 -23.9667985 2.951731381 1057.346959 0.001891526696 +2.497462408e-06 0.004936605608 -0.0001511562383 0 -21.26955976 -0.5368485086 944.0729261 0.00211848041 +2.496945948e-06 -0.001872756272 0.001322940888 0 -9.169640132 -19.6020716 875.2269746 0.002285121526 +2.497720666e-06 -0.004496511598 0.004437608365 0 5.736700467 -18.66874233 914.409787 0.002187203187 +2.497870578e-06 0.007958564395 -0.002464165378 0 13.68178833 -14.09617966 951.5883867 0.002101749063 +2.497034957e-06 0.001312701679 0.01371483238 0 22.10388352 10.21553013 999.4961355 0.002001008237 +2.498176704e-06 -0.001291570347 0.01212830045 0 -9.344791195 17.124488 1021.308026 0.001958273067 +2.497775684e-06 0.00350517692 0.01434724514 0 -21.56620644 -3.184219092 1033.233607 0.001935670681 +2.495853722e-06 -0.004945942927 -0.01408328265 0 17.06331828 -20.45485982 924.4415572 0.002163468295 +2.496493817e-06 0.00432650073 0.01103682861 0 -13.61568793 23.74993549 1033.259563 0.001935622056 +2.499937247e-06 -0.007273781602 0.01242962263 0 -1.54581157 3.334450602 1037.437275 0.001927827397 +2.495325755e-06 -0.0009896784974 0.01016450173 0 -17.66258214 22.01938887 922.5814375 0.002167830306 +2.499162937e-06 0.007052205941 -0.0005013734219 0 3.940662607 10.62421666 875.6664852 0.002283974588 +2.497426319e-06 0.001270803781 -0.008612526816 0 16.47512032 14.55148968 968.4837828 0.002065083624 +2.499916346e-06 0.004092205022 0.006433309859 0 -0.6609039987 -4.027004993 997.6739005 0.002004663046 +2.497477242e-06 0.008202256504 -0.005370123424 0 19.63511239 -4.165742048 893.257332 0.002238996455 +2.495833738e-06 -0.008800902003 -0.01030094582 0 -9.377761655 -27.20637472 996.2977557 0.002007432004 +2.493984064e-06 -0.002065314702 -0.006530756853 0 21.56847129 -25.37417698 959.2155189 0.002085037159 +2.496163493e-06 0.005877835015 -0.008665993921 0 14.7121218 -25.48041021 1061.573497 0.001883995791 +2.497833585e-06 0.001605963157 -0.011935542 0 -6.090710357 -20.69728461 1036.145877 0.001930230139 +2.496018404e-06 -0.006628773636 -0.009102251802 0 2.37015699 -25.2600524 898.534037 0.002225847789 +2.498943556e-06 0.007570867431 0.004786326424 0 -11.24410055 -8.385849121 964.8345971 0.002072894158 +2.496816328e-06 -0.002146111117 0.001484149243 0 -24.69604544 -5.656601745 1003.56214 0.001992901007 +2.498033619e-06 -0.007193429675 0.01183800263 0 -19.0268494 5.380606947 996.7718904 0.002006477128 +2.499698431e-06 0.006029717717 -0.008731411058 0 6.075456817 -3.614571493 910.2362986 0.002197231645 +2.49634102e-06 -0.001048186524 0.002328765071 0 24.15825426 13.56862564 1023.694487 0.001953707894 +2.499616391e-06 -0.0001307748538 -0.009686289453 0 4.013730431 6.697509349 891.3783094 0.002243716253 +2.497881276e-06 0.00938165796 0.003535868595 0 15.76186068 10.79334527 927.7181773 0.002155827113 +2.498464321e-06 0.002610623529 0.00101669857 0 3.371625589 -15.72590643 917.5069533 0.002179819993 +2.499062805e-06 -0.00251737027 0.01047243504 0 -9.762875701 -8.00720969 922.131634 0.002168887745 +2.497911145e-06 0.006057900698 -0.01050199625 0 5.018005734 -21.05802145 1058.779291 0.001888967812 +2.495660433e-06 0.0003869439475 -0.001227116799 0 -16.86020227 23.00966256 967.6403991 0.002066883526 +2.498443005e-06 0.007812288618 -0.01287630737 0 7.992419265 -14.62419495 944.1993569 0.00211819674 +2.497123853e-06 -0.004023542888 0.00339689567 0 -7.391125374 -22.8204531 999.7182145 0.00200056373 +2.495288124e-06 -0.002711966941 0.001376632482 0 25.0068072 -21.06168255 1064.281414 0.001879202224 +2.498986689e-06 0.001504408359 0.007384829982 0 -12.19726781 -5.368809504 935.9788831 0.002136800345 +2.498124856e-06 -0.0007856127666 0.0008738608542 0 5.294422688 -17.5541705 946.5234205 0.002112995787 +2.499719716e-06 -0.006786543834 0.01377268841 0 -7.664849013 0.7000280645 1027.957362 0.001945605989 +2.497158192e-06 -0.007507643718 0.003474680493 0 -3.538900918 21.34862311 907.316311 0.002204302927 +2.498717006e-06 0.007681837096 -0.006915342892 0 14.83825884 -4.403958646 966.060095 0.002070264583 +2.499935035e-06 -0.001034380677 0.01217203029 0 0.6927748447 3.423174149 968.9131554 0.002064168485 +2.49620201e-06 -0.002258791332 -0.00771458298 0 -25.29972166 10.67116052 995.7072234 0.002008622568 +2.496888727e-06 0.007071496402 0.01017573764 0 4.683310612 25.62767872 1043.89228 0.001915906495 +2.498628105e-06 0.008037031097 -0.01291741678 0 -2.334101599 -14.74697668 901.1790057 0.002219314906 +2.498391673e-06 0.008686551149 0.0001786262426 0 -8.233075605 13.57672001 885.0928073 0.002259650043 +2.496851258e-06 0.001677998095 -0.009700141833 0 -12.71254855 -18.58665137 896.904545 0.002229891699 +2.494532211e-06 -0.009628016739 -0.007820417325 0 -27.25642457 -19.74941816 1017.017388 0.001966534716 +2.498120202e-06 -0.006165389353 0.01161358441 0 18.99314156 6.295599049 1031.667793 0.001938608545 +2.498554746e-06 0.008078825786 0.0004394879448 0 -0.09196953336 -15.83601229 931.2621521 0.002147622982 +2.499103194e-06 0.008756260918 -0.002957512178 0 -5.487137186 12.98472955 1052.420421 0.001900381217 +2.496284863e-06 -0.0006422555447 -0.01221389997 0 -23.31234804 -11.27191477 949.4274424 0.002106532749 +2.499804997e-06 -0.008624368324 0.01053373771 0 -1.44561795 -5.485629186 908.3605388 0.002201768917 +2.499711092e-06 -0.007204105319 0.005300566996 0 1.809158057 -7.734363857 1044.908542 0.001914043114 +2.497637553e-06 -0.007564757499 -0.008421613653 0 -19.09010795 -12.17545566 1041.287384 0.001920699348 +2.499429837e-06 -0.004828694402 0.008915407243 0 -9.341198409 -6.231510531 1051.448459 0.001902137935 +2.499288222e-06 -0.002977914698 -0.001551817164 0 5.411071598 -11.01458507 1028.44244 0.001944688319 +2.497122331e-06 0.002676757686 -0.003093561607 0 18.62364432 -13.04864923 947.4741565 0.002110875517 +2.499915189e-06 0.001379423919 -0.01201264913 0 3.964337105 -1.040682417 995.1640789 0.002009718842 +2.49500762e-06 -0.006974019539 0.008048838323 0 16.97411393 26.89451899 1005.714707 0.001988635531 +2.498612161e-06 -0.006623594738 -0.004067396026 0 13.97124717 -10.39785832 1045.127413 0.001913642275 +2.499466247e-06 -0.005858015805 -0.007696446322 0 -8.028980289 7.529878048 1065.28534 0.001877431262 +2.498871789e-06 -0.009340200927 -0.01065718335 0 -10.21603246 -9.636629576 934.770386 0.002139562859 +2.498027681e-06 0.00402576359 0.01209219625 0 15.25301748 8.685082523 883.4933389 0.002263740893 +2.498847227e-06 0.002279449464 0.009175969397 0 -14.22797312 2.491619523 951.1310862 0.002102759576 +2.499795367e-06 0.00745442918 0.0006992082624 0 -3.036175865 -5.223624719 944.402771 0.002117740504 +2.499177992e-06 0.002567906906 -0.006701598766 0 5.352481833 -11.7264672 1005.206669 0.001989640601 +2.499256906e-06 -0.009860780826 -0.007924960228 0 10.15479553 8.05849409 1063.275831 0.001880979461 +2.496329335e-06 -0.00246121733 -0.003194980777 0 -15.16549118 -20.28568546 934.2692562 0.002140710493 +2.498920814e-06 -0.008194402573 0.01014832947 0 -11.1303589 -9.998229408 1018.226829 0.001964198883 +2.497590117e-06 0.001209332636 0.01195163821 0 -21.10925766 -6.857418278 1010.620594 0.001978982035 +2.498173377e-06 0.009926480949 0.003306613911 0 -16.82998751 3.045634807 894.5869035 0.002235668767 +2.494072788e-06 -0.009922034582 0.007452931583 0 -29.2636872 -20.40465498 1035.233972 0.001931930418 +2.496784236e-06 -0.002630391945 -0.01417164502 0 -18.79675179 -14.56424763 937.1836325 0.002134053488 +2.498524737e-06 0.003477904517 0.001894745626 0 -0.3179729177 -17.33378201 1009.06825 0.001982026488 +2.499271446e-06 0.001480462612 -0.004473260329 0 8.989398509 7.725142714 981.8042686 0.002037065904 +2.498756441e-06 0.00750913884 -0.001410706847 0 11.90166851 11.97676302 1070.443546 0.00186838438 +2.499877786e-06 0.0003854309302 0.003731684682 0 4.735087666 0.01962674998 957.7412173 0.002088246766 +2.497373267e-06 -0.009056387348 0.004842978988 0 -22.33995712 2.447451629 980.1192513 0.00204056802 +2.494166791e-06 0.003588178302 -0.001762514391 0 21.18290241 -23.00475416 914.756743 0.002186373607 +2.499832079e-06 -0.005178961121 -0.01122913674 0 1.595165108 -5.115939541 924.6855949 0.002162897325 +2.495596392e-06 -0.006179551352 0.01488206928 0 -4.318700162 26.22836022 895.1042836 0.002234376527 +2.496616735e-06 -0.002088114242 -0.004996383616 0 -7.632823447 -26.32149619 1053.027981 0.001899284764 +2.499101156e-06 0.00994688611 -0.01170620427 0 11.94117316 7.544480383 1053.337177 0.001898727248 +2.498336575e-06 -0.0004667398753 0.01443975852 0 16.75722788 7.515231727 1006.636032 0.00198681543 +2.497525087e-06 0.0007018975308 0.004788796913 0 16.62942239 -13.60407681 965.3407613 0.002071807262 +2.497799512e-06 -0.008313803342 0.01008913572 0 11.96847742 -15.66592965 939.4426608 0.002128921842 +2.499805785e-06 0.003556932784 0.01074274783 0 4.985086261 -4.069061693 1032.465211 0.001937111274 +2.498609425e-06 -0.002998150163 0.006343998823 0 13.56670883 6.768772709 908.9501651 0.002200340653 +2.499649134e-06 -0.005193929756 -0.004946831355 0 8.189550602 2.402875498 1018.788022 0.001963116916 +2.497333316e-06 -0.003050640458 0.008100060574 0 -19.89877055 13.29275256 1035.79356 0.001930886692 +2.496845071e-06 0.004797502919 0.0003484782041 0 5.441718924 22.31254773 913.8610674 0.002188516473 +2.49556964e-06 0.007714673905 0.00919835656 0 8.286062009 28.99163115 1012.278495 0.001975740876 +2.499477917e-06 -0.007974898578 -0.0122578018 0 8.851202608 3.432500972 928.9790917 0.002152900983 +2.497641826e-06 0.003898806223 0.01044155015 0 6.878177594 21.90808553 1056.966807 0.001892207008 +2.498250083e-06 0.008408137211 0.01239896638 0 16.71524947 -1.610922499 897.3929221 0.002228678153 +2.497275672e-06 -0.008426579894 0.005070856281 0 -1.423013851 21.66957095 929.9560654 0.002150639234 +2.495606181e-06 0.001989223002 -0.009146910226 0 15.38597931 -22.81522345 927.685442 0.002155903186 +2.49241875e-06 0.0005288044317 0.01141331771 0 -25.3420015 30.9267829 1025.654768 0.001949973873 +2.495932668e-06 0.007189805536 -0.001575387719 0 22.65637782 18.18437858 1017.962749 0.001964708436 +2.499750972e-06 -0.001256049275 0.00977470746 0 5.886710679 -3.296860437 956.0020253 0.002092045777 +2.494777191e-06 0.002722746315 -0.009588204562 0 -23.77584281 -25.1021613 1068.933409 0.001871023942 +2.49674933e-06 -0.001561494018 -0.009330743419 0 20.63985807 -10.25845033 903.5077443 0.002213594751 +2.494879689e-06 0.007689464027 -0.005107312999 0 22.2105532 18.97389329 912.1331648 0.002192662297 +2.495403336e-06 0.009691639929 0.01375317152 0 25.85511632 -8.519670995 897.209955 0.002229132645 +2.499481825e-06 -0.008699010373 0.003189201315 0 -8.012039464 -5.591899033 959.6849422 0.002084017277 +2.498107556e-06 -0.004584298283 0.009029120745 0 -15.69069227 -8.710298092 922.1961903 0.002168735917 +2.498264456e-06 -0.0002273855219 0.01040529532 0 -17.83661628 6.966901916 1027.541132 0.001946394104 +2.499010563e-06 0.004776846361 0.01021169612 0 9.890401407 11.18916947 1061.441306 0.001884230422 +2.497735914e-06 -0.009878336 -0.01285121477 0 -13.15439109 -16.6659381 997.421805 0.002005169719 +2.494497022e-06 0.005859592347 0.0002477742545 0 25.19234884 -21.31208182 993.8323351 0.002012411882 +2.495152502e-06 -0.005891438765 0.0122222821 0 -19.29387174 20.17859635 895.9802635 0.002232192027 +2.499364081e-06 0.006580768107 0.003636717859 0 7.350158884 -7.239446753 914.7106154 0.002186483863 +2.498412626e-06 0.005878154067 -0.0127418393 0 -6.335438938 17.185652 1027.727918 0.001946040352 +2.499674743e-06 0.008059084034 0.002643154711 0 -4.951263948 -6.211427589 984.8136697 0.002030841023 +2.49807792e-06 0.008097593803 -0.00347414843 0 20.82580681 1.453713351 1064.464775 0.001878878519 +2.498627405e-06 -0.006031009983 -0.007413180638 0 15.44638579 6.993688994 1023.163837 0.001954721158 +2.495746764e-06 -0.005689734193 -0.00563985503 0 -18.14166898 19.75810554 919.1031483 0.002176034326 +2.497261632e-06 0.008045053352 -0.01384134476 0 24.16873983 -6.444710563 1068.391912 0.001871972239 +2.499061782e-06 0.004443922457 -0.005625083798 0 12.36927653 7.420211455 1052.845859 0.001899613303 +2.498283166e-06 -0.0006038096268 0.0126737926 0 -14.93414723 11.24338149 1008.548478 0.001983047958 +2.498617127e-06 0.003450559559 0.007905416822 0 3.803829993 -16.27101136 1004.553626 0.001990934031 +2.499616926e-06 -0.009780073534 -0.01283868193 0 -2.978842851 8.653458501 1045.505292 0.001912950623 +2.494065776e-06 0.007853317247 -0.0001762233535 0 28.4401929 21.235323 1029.352169 0.001942969626 +2.49635476e-06 -0.007805380821 -0.008809600824 0 -0.09040266691 -28.60360315 1058.783689 0.001888959966 +2.496995988e-06 -0.0008848653547 -0.008660793852 0 -21.25676721 -15.30589117 1068.165589 0.001872368873 +2.497086044e-06 0.001755647049 0.01118784731 0 -13.54735497 19.17350936 972.0535848 0.002057499742 +2.499767615e-06 0.002007734543 -0.01282703048 0 6.887456982 1.73985286 1041.976113 0.001919429798 +2.496247978e-06 0.001337543945 -0.002403812043 0 -22.63782091 16.66547738 1025.601726 0.001950074721 +2.498043887e-06 -0.001753800674 -0.0149991093 0 -20.26446965 -5.770748261 1064.946261 0.001878029035 +2.49892549e-06 0.007515269164 0.004695839274 0 5.178452487 -12.84084273 944.3325988 0.002117897871 +2.497532906e-06 0.00771515721 -0.005405500776 0 10.02136998 17.50834858 907.8469293 0.002203014556 +2.49882117e-06 -0.007927411129 -0.01270266133 0 13.07055271 9.566353208 1054.694998 0.001896282815 +2.496097625e-06 0.0002465269715 0.005830885198 0 -16.35848183 24.33478076 1048.962924 0.001906645082 +2.497112502e-06 0.005846122117 -0.004653828547 0 -0.9148492827 -24.33511851 1012.92218 0.001974485345 +2.497656563e-06 0.007651648833 -0.00503529906 0 -16.12431503 12.06683004 929.9414594 0.002150673012 +2.495256276e-06 -0.008714576373 0.01312360569 0 -14.99628714 26.40788409 985.2441742 0.002029953642 +2.497117127e-06 -0.00671356509 -0.01302572415 0 22.72883709 11.44297417 1059.298197 0.001888042485 +2.498045004e-06 -0.008553156112 0.001847072309 0 -17.52026306 -9.090017727 997.9009033 0.002004207024 +2.495562001e-06 -0.001124157514 -0.007853275684 0 -17.80335368 -21.90920572 946.9428801 0.002112059811 +2.493221807e-06 -0.007529915823 0.01243986242 0 -22.58972122 30.89734812 1038.475121 0.001925900736 +2.499842021e-06 -0.001140259192 -0.01362473816 0 -5.150895407 0.7083744232 924.9684807 0.00216223584 +2.494653551e-06 -0.005943298121 0.006420134332 0 19.11089772 22.46317391 901.1944504 0.002219276871 +2.49811898e-06 -0.008930368144 0.01011683234 0 -16.52032483 10.22223243 1001.325771 0.00199735197 +2.496243104e-06 -0.007712327987 -0.006538709763 0 15.39065729 -22.40364002 991.0318403 0.002018098631 +2.497355786e-06 -0.005828707577 -0.01423772841 0 19.45963404 7.93941191 913.553014 0.002189254449 +2.498681822e-06 -0.00566512235 -6.588555872e-05 0 -15.48227729 -3.618858961 979.034673 0.002042828569 +2.497404469e-06 0.007546087401 0.01449153851 0 18.99302682 13.67425411 1026.791215 0.001947815653 +2.498985226e-06 -0.0005284996796 0.003225083747 0 4.02358243 -12.79813995 941.5606438 0.002124132963 +2.49989397e-06 -0.004006154398 0.00733798282 0 -4.050306634 -1.656868335 950.276241 0.002104651167 +2.498481292e-06 0.009169642595 0.006587417044 0 -7.81268111 16.66832916 1056.005762 0.001893929059 +2.499416954e-06 0.001257047113 -0.006337438656 0 10.91234406 -0.08957682436 1010.481585 0.001979254277 +2.4994663e-06 -0.006825654199 0.01282106594 0 6.826337827 6.485540871 911.3145972 0.002194631806 +2.498751994e-06 -0.008097938295 -0.005969073207 0 15.64577118 3.493578866 1014.513472 0.001971388312 +2.498812085e-06 -0.006270901021 -0.01184125648 0 -13.53767696 0.1635320953 878.1944783 0.00227739988 +2.495381351e-06 0.001457796753 0.01043691126 0 3.71241797 31.15196798 1031.511524 0.001938902236 +2.498048219e-06 -0.001750009977 -0.0009020778816 0 7.687828287 -16.177886 906.3114972 0.002206746804 +2.49787126e-06 0.008327679867 -0.008391925413 0 -6.0395837 -17.39164718 891.9698364 0.002242228289 +2.498052458e-06 -0.006966683203 -0.007523561795 0 -11.55804081 -13.96725022 918.3246551 0.00217787902 +2.498710243e-06 -0.006543226279 -0.002232035883 0 7.929661251 13.16012492 956.4582586 0.002091047866 +2.497803531e-06 -0.000360356071 -0.0001619703043 0 -11.63405602 -17.78162065 1013.505541 0.001973348856 +2.496016771e-06 -0.009077727478 -0.001582835368 0 -14.39478894 -21.7543391 923.6541878 0.002165312545 +2.496494795e-06 0.004391570571 0.006991483038 0 3.651775946 23.06752491 881.6084134 0.002268580891 +2.497305917e-06 -0.003399432502 -0.001059375694 0 0.9685149907 23.23628209 1001.491984 0.001997020477 +2.496333353e-06 0.00613369578 -0.0138722975 0 25.77073559 9.984163222 1020.012121 0.001960761014 +2.49882061e-06 0.004334971216 -0.002169585158 0 -15.65282548 -1.788536678 1025.625541 0.00195002944 +2.499931299e-06 -0.002629227252 0.01035411878 0 -2.942524606 -2.650104985 1068.296014 0.001872140281 +2.495546604e-06 0.005534786452 -0.01144699796 0 -19.28985151 -17.74875781 877.7366986 0.002278587648 +2.494516426e-06 0.001883013006 0.007323831541 0 21.38720925 26.41418665 1025.438189 0.00195038572 +2.498646607e-06 0.004347288413 -0.01433052669 0 -14.3152073 -2.717229725 885.4592778 0.002258714828 +2.496832376e-06 0.007442856664 -0.007387478035 0 17.24049192 -14.04911822 883.1696534 0.002264570564 +2.499306735e-06 -0.008575271801 0.00707257397 0 11.08067174 3.213652446 979.7015055 0.00204143812 +2.498127038e-06 -0.004800949018 0.002790426321 0 -17.06273487 9.409814552 1006.487083 0.001987109456 +2.497216718e-06 0.007647139598 -0.003101888881 0 -19.17510808 11.98582594 958.0361658 0.002087603862 +2.498199025e-06 0.001675301255 -0.009395738645 0 14.468824 -12.77735703 1016.809934 0.001966935937 +2.498302862e-06 0.008762185536 -0.01471057559 0 6.270844422 16.32378597 948.9144613 0.002107671536 +2.494428542e-06 -0.005445483867 0.01417879398 0 22.11320587 27.57712966 1058.044659 0.001890279378 +2.492865031e-06 -0.006079968917 0.01238110405 0 -27.22270974 28.46116946 1041.466768 0.001920368525 +2.499991289e-06 -0.002144832439 0.00506243045 0 -1.230249148 -0.4468813872 991.6414428 0.002016858023 +2.496551074e-06 0.003671712088 -0.003423838201 0 0.9294734347 -26.65375546 1014.940507 0.001970558852 +2.498844021e-06 -0.009962981786 0.002501393573 0 9.539738788 -11.35180291 975.0296658 0.00205121964 +2.499313122e-06 4.842922091e-05 -0.009776103089 0 -11.45486951 0.008577581867 977.2160307 0.002046630363 +2.496962987e-06 -0.008874073876 -0.01128965153 0 13.06286876 -18.36202826 913.9263328 0.002188360186 +2.497917154e-06 0.003467123345 0.006012172282 0 4.265704391 18.25818881 918.3726457 0.002177765212 +2.498597747e-06 0.003624630291 0.01417245615 0 9.268228441 14.1228105 1008.491538 0.001983159923 +2.497220958e-06 -0.004580682488 -0.01361306211 0 -6.79423742 -21.38036886 951.1783932 0.002102654995 +2.498816219e-06 0.00295408993 0.01482584039 0 2.154859601 15.20667272 997.9837653 0.002004040616 +2.498520543e-06 0.0009124093875 0.006775827936 0 4.590995178 -15.87307196 960.3818003 0.002082505103 +2.498362907e-06 -0.007414415646 -0.006697925027 0 16.05461281 -2.421502904 897.0693992 0.002229481913 +2.49939866e-06 0.008997813785 0.008043860276 0 -5.125291237 8.120943957 875.5768949 0.002284208288 +2.495583783e-06 0.004380409834 0.007686960977 0 14.22802359 27.83607585 1051.19236 0.001902601348 +2.498609425e-06 0.002661326625 0.01430636884 0 12.33680363 11.22551121 999.9599902 0.002000080023 +2.499672048e-06 0.0007065024879 0.01312082159 0 -4.462429798 6.919821775 1016.63347 0.001967277351 +2.496663405e-06 -0.001409735978 -0.00624432547 0 -22.17215968 -11.57577514 967.7545721 0.002066639681 +2.499042009e-06 -0.005172369317 0.0100550262 0 -11.87729004 6.691697976 984.7402485 0.00203099244 +2.497042919e-06 -0.005543329953 -0.009514882097 0 -9.877991531 -21.71944321 980.6965097 0.002039366899 +2.49951662e-06 -0.0009762247 0.004686522342 0 -1.122928318 -9.26609804 949.2311752 0.002106968305 +2.498388572e-06 -0.003475470338 -0.01192722141 0 11.75248632 13.76062916 1007.776345 0.00198456732 +2.499342523e-06 0.0007596294954 0.006905552053 0 -10.96946086 -1.428594883 964.581939 0.002073437122 +2.498468013e-06 -0.00387434978 0.01349298516 0 -9.155814122 -13.62019235 937.3609337 0.002133649833 +2.498207868e-06 -0.001127007455 -0.01353854959 0 -16.0670938 -7.223994362 930.2517089 0.002149955739 +2.499888297e-06 -0.008389389506 -0.008748878825 0 -4.120285397 1.028168946 898.4435117 0.002226072061 +2.49613584e-06 0.0004705916531 -0.008572279927 0 -0.945277393 -26.55527537 955.2813615 0.002093624016 +2.496764108e-06 -0.002508925949 -0.01384553698 0 -22.34408883 -12.22054669 1000.611729 0.00199877729 +2.496929879e-06 0.009515238274 -0.002833922098 0 22.74963074 13.48710741 1066.80437 0.001874757974 +2.498713859e-06 -0.001599198785 0.008827838365 0 14.3622573 -7.138086326 999.8040482 0.002000391981 +2.497062687e-06 -0.009668542342 0.01050089664 0 17.24981398 -15.16616888 947.2354408 0.002111407485 +2.496713208e-06 -0.00922048864 0.0006406463077 0 -23.67280711 -5.442287109 946.9305052 0.002112087412 +2.496430169e-06 0.008979620654 0.001425278394 0 11.27055464 23.77814729 984.271845 0.002031958966 +2.499347719e-06 0.002134702024 -0.004463261501 0 7.413494684 7.556416997 926.7214159 0.002158145874 +2.498838565e-06 0.002955226232 -0.008399278556 0 14.29482742 5.346101722 1001.193303 0.001997616239 +2.497232467e-06 0.004526147209 -0.00290596304 0 -14.82006906 19.16357155 1029.275709 0.001943113962 +2.49860335e-06 0.0004684893973 0.0007796863513 0 -14.71077113 5.181690215 933.0021301 0.002143617828 +2.497562045e-06 -0.005148372841 0.01133003675 0 -9.609978 18.91067704 960.2910042 0.002082702005 +2.49689467e-06 -0.007783016767 -0.005833196284 0 19.27848408 15.46775436 991.3289379 0.002017493814 +2.497191287e-06 -0.007481012973 -0.0147992936 0 -20.72555183 10.1926223 974.0701917 0.002053240123 +2.499904197e-06 -0.003205451784 0.01245936655 0 1.448836165 -3.605543293 887.694573 0.002253027179 +2.498544514e-06 0.006375081041 0.001850544694 0 16.83644196 4.081125746 1015.160305 0.001970132196 +2.498495198e-06 -0.005423450018 -0.01100304309 0 -10.42853798 -12.6401807 944.3706549 0.002117812524 +2.499758378e-06 -0.001759608136 -0.005189746285 0 6.207158751 0.9011688224 902.2431787 0.00221669728 +2.498865037e-06 0.009720349191 0.01046771159 0 -10.53167083 10.98149813 1009.728204 0.001980731043 +2.495115295e-06 -0.003307038061 -0.001813531879 0 -24.92579932 18.88314286 999.7411827 0.002000517769 +2.49745516e-06 -0.001953832093 -0.005055782846 0 -3.813604921 -20.38803714 919.0348359 0.002176196072 +2.498390391e-06 0.007176719885 -0.005922927442 0 -9.503852535 13.71612884 929.8175153 0.002150959696 +2.49566371e-06 0.0008310054569 -0.005052775231 0 18.74463685 -25.22616504 1066.498525 0.001875295609 +2.496701674e-06 0.009306763643 0.004073862559 0 -2.686631397 26.37491093 1031.705521 0.001938537653 +2.496607018e-06 0.001547121243 0.003649055189 0 2.33403546 23.04080166 888.5617114 0.002250828473 +2.494372517e-06 -0.007940270109 0.009573120531 0 17.37745733 28.22421591 987.1365795 0.002026062089 +2.498078573e-06 0.003265197333 0.002184110319 0 3.935527677 17.89238669 934.2767511 0.00214069332 +2.495975304e-06 0.004631673642 -0.009883892855 0 -22.05339972 18.58999038 1016.019738 0.001968465695 +2.499829832e-06 0.009135513254 0.01195375906 0 0.6669757923 -5.484318713 946.9912446 0.002111951944 +2.495184861e-06 -0.005197787504 0.0003728814446 0 -21.35084857 24.67959933 1050.82276 0.001903270539 +2.499579032e-06 0.0003134968597 0.00106206961 0 -9.356815625 0.110278672 1019.743934 0.001961276682 +2.498793019e-06 -0.002834042865 0.007976660735 0 -16.27243336 0.4920241218 1047.627836 0.001909074895 +2.49688422e-06 0.005449477155 0.002449020257 0 -13.05464074 -18.09645969 893.4535375 0.002238504764 +2.49766043e-06 -0.00488686854 -0.004718082477 0 11.00707284 16.03274933 898.727396 0.002225368904 +2.497761754e-06 -0.005624224469 0.00211722452 0 9.497284089 18.98831193 1003.125262 0.00199376895 +2.497502605e-06 0.004772251416 -0.01074881143 0 20.93806709 0.4144812282 936.6995216 0.002135156423 +2.496549621e-06 0.003371347804 0.00788618458 0 25.24846832 0.7151798243 961.0276852 0.002081105499 +2.494699311e-06 0.007514802152 0.0008173763752 0 24.12418581 15.67695207 882.9192788 0.002265212741 +2.497815235e-06 -0.003893108396 0.01023199958 0 -19.61084262 1.548726393 940.7767695 0.002125902834 +2.49938747e-06 0.00840599943 0.01383733538 0 6.008097611 9.001995741 977.7357476 0.002045542474 +2.496778124e-06 0.004057479715 0.01277583639 0 2.517480424 24.34557999 963.7187372 0.002075294298 +2.49700844e-06 -0.0002768354816 0.01242546848 0 -25.8361599 1.459889248 1057.453571 0.001891335993 +2.497661155e-06 -0.001031851466 0.002697160542 0 -19.98909482 -7.474377559 986.3766351 0.002027623049 +2.494891744e-06 0.008221770213 0.001404503169 0 28.91335663 -16.60033019 1042.271143 0.001918886475 +2.498863562e-06 -0.008376402603 0.01079219305 0 8.594448187 -10.97203215 924.31224 0.002163770979 +2.49966515e-06 -0.005406740597 0.008429006513 0 7.981075057 -3.442305433 1062.05364 0.001883144057 +2.498578323e-06 -0.006866083085 0.002369034982 0 14.09892487 8.177714681 966.3860518 0.002069566294 +2.497312659e-06 -0.002052275836 0.01454199432 0 -13.72871147 -15.13568337 881.0716852 0.002269962857 +2.495057448e-06 -0.008389218454 -0.007300590954 0 -13.85587652 -24.13843223 884.5852096 0.002260946688 +2.499166611e-06 0.007913516508 -0.0002479615621 0 8.290611569 -8.119772297 898.7399486 0.002225337822 +2.498405991e-06 0.007195484946 0.001351063403 0 -10.12397228 -13.61227657 949.8888456 0.002105509512 +2.497182571e-06 -0.005887644487 -0.008365255399 0 21.136881 12.1245215 1026.088041 0.001949150482 +2.497091781e-06 0.002162391497 0.01260278687 0 -7.071525631 23.89464407 1032.794414 0.001936493819 +2.496296971e-06 0.007876135092 0.002621214394 0 22.96542524 7.237446122 884.3026839 0.002261669038 +2.499248526e-06 0.004840243175 0.01015359248 0 6.908127942 -9.45914717 955.3279368 0.002093521945 +2.498487648e-06 0.008135472182 -0.003381083566 0 11.93658382 -10.16048984 901.1107709 0.002219482959 +2.495953831e-06 0.008456445658 0.005662612673 0 25.76442843 4.282338547 917.5659408 0.002179679858 +2.498936469e-06 0.003285608813 0.009482071828 0 6.800370608 -11.69647111 927.5309533 0.002156262271 +2.498321099e-06 -0.006607764266 0.008224412038 0 -14.51991659 -10.94741763 992.1173553 0.002015890549 +2.499748813e-06 0.007169482606 0.01094033678 0 5.65628656 -5.030010324 1067.890726 0.0018728508 +2.498243801e-06 0.0008755414188 9.864395019e-05 0 -5.649395928 -18.95243507 1054.953614 0.001895817952 +2.498115891e-06 0.003749849466 0.002487898471 0 13.46387149 12.75484381 955.1341288 0.002093946745 +2.497767134e-06 0.003014165345 -0.007042346208 0 -9.188125648 -19.98065488 1040.334426 0.00192245873 +2.495644345e-06 -0.006371007524 0.005873942077 0 16.08670936 26.26032528 1042.718423 0.001918063358 +2.494567805e-06 -0.009423677679 -0.003220748864 0 -25.64884134 -21.13135126 1007.408731 0.00198529151 +2.499086352e-06 -0.002984737367 0.01429296863 0 -7.028789034 -11.50871693 997.465912 0.002005081052 +2.498607151e-06 0.003858009502 0.005105613931 0 -15.75892907 -2.49772172 955.7766354 0.002092539121 +2.498545821e-06 -0.009518729099 -0.004566144298 0 -2.927469151 -14.89157779 889.7249948 0.002247885596 +2.497994358e-06 0.000115640345 0.005486214424 0 -17.39040945 7.960957978 954.6656891 0.002094974212 +2.499236044e-06 0.00678711033 0.009301498553 0 0.8897903675 12.79049655 1037.138687 0.001928382409 +2.495955108e-06 0.005077310125 0.006944263063 0 28.73544507 -9.006409418 1058.116435 0.001890151154 +2.498820445e-06 -0.005676015178 -0.001293324963 0 2.492212533 -14.17219147 936.6977134 0.002135160545 +2.499088297e-06 0.008054781659 0.007383400442 0 10.39250842 -8.553833879 996.6546984 0.00200671306 +2.497397016e-06 0.007379216696 -0.001318729862 0 7.401308159 -19.70250285 922.0739282 0.002169023479 +2.498588121e-06 0.007107855938 -0.0001425482961 0 11.96239534 -12.72911792 1039.288746 0.001924393012 +2.49632018e-06 0.003587478786 0.01232216462 0 -6.277847435 25.48883732 967.0979885 0.002068042767 +2.49687002e-06 0.002070232141 -0.007286603318 0 13.85572073 -22.20681704 1045.67007 0.001912649178 +2.494576044e-06 0.008932182719 -0.002381414445 0 28.28962273 18.81088299 1030.63469 0.001940551798 +2.497412742e-06 -0.007282871753 -0.006794278328 0 -18.540465 -11.8708828 967.4268283 0.002067339815 +2.499458091e-06 -0.003548987429 -0.01009631846 0 7.831645505 6.127817601 955.1051573 0.002094010261 +2.496214651e-06 0.005967615163 -0.008817434376 0 -18.71863899 17.03027412 919.2145798 0.002175770537 +2.496781954e-06 0.003032289464 -0.007095252327 0 1.150857495 -26.67869047 1052.076509 0.00190100243 +2.497551958e-06 0.005474270657 0.01205205761 0 -8.166443456 18.50414587 913.7506525 0.002188780927 +2.495627811e-06 -0.00182420786 -0.008293840424 0 -8.440641777 -24.53927296 876.9878989 0.002280533178 +2.495339194e-06 -0.004027732657 -0.005422931907 0 18.35386798 -22.09100088 940.0373952 0.002127574935 +2.495288206e-06 -0.0004753126437 0.005042490426 0 -24.39348217 -18.74543056 1001.450791 0.00199710262 +2.497731706e-06 -0.0009260693798 -0.003000008063 0 6.603487871 -17.93793779 897.1340827 0.002229321167 +2.499482315e-06 -0.008310926026 -0.01310634124 0 6.193362008 -7.139535048 928.7931671 0.002153331948 +2.497251463e-06 0.008107296126 0.002123005351 0 13.28654746 20.31458445 1034.884401 0.001932583 +2.495833028e-06 0.00279924355 -0.004417130922 0 22.94994265 16.24536758 973.3851377 0.002054685163 +2.499687596e-06 -0.005085446825 0.01412232083 0 3.311586229 7.684737395 1058.577664 0.001889327603 +2.49514507e-06 0.006663420703 0.004615176406 0 23.18714954 18.97365922 960.7910883 0.002081617975 +2.498097126e-06 0.004816503963 -0.003627848597 0 -10.80941375 13.3077844 878.5888514 0.002276377622 +2.498518744e-06 0.002481038808 -0.007317522622 0 3.643126046 -14.74465767 882.217958 0.002267013477 +2.497194103e-06 -0.001118883411 -0.009387014473 0 13.3681078 17.96237918 944.7964017 0.002116858189 +2.496903803e-06 -0.0009400705667 0.002560273006 0 -20.34304195 -16.3291414 1047.79576 0.001908768938 +2.499149013e-06 -0.001542200614 0.001679056375 0 -9.819765107 -8.4385599 992.3229917 0.002015472801 +2.497196726e-06 0.005293525257 -0.01358857525 0 -15.78203377 -15.13453047 923.0834815 0.002166651273 +2.499463008e-06 0.001133973156 0.01110598978 0 1.4367828 9.414188098 918.8592008 0.00217661204 +2.499508909e-06 -0.004253655621 0.004114807933 0 5.591143767 8.15698395 997.781085 0.002004447699 +2.499725505e-06 0.008821044257 -0.004095414996 0 -3.32445119 6.43666041 977.704775 0.002045607274 +2.498609166e-06 0.002938123131 -0.01222807151 0 -6.017121189 16.25658875 1039.121282 0.001924703146 +2.497273215e-06 -0.009883491695 -0.01185414837 0 20.94644606 13.28621325 1061.737666 0.001883704482 +2.494428813e-06 -0.00363683857 0.0113747098 0 -15.0808883 26.35267107 908.8431237 0.002200599804 +2.496469954e-06 0.009881109777 0.01016442334 0 26.15769644 8.527519434 1034.895464 0.00193256234 +2.499714612e-06 0.00739378945 -0.007968633953 0 -6.849483307 -3.077079937 993.8621624 0.002012351487 +2.499162527e-06 -0.001075841216 0.008561649083 0 -4.197551994 12.4657433 1016.21587 0.001968085777 +2.497349199e-06 -0.004210626082 0.01305368483 0 -9.629590878 19.79808176 955.7780666 0.002092535987 +2.495086813e-06 -0.008101648651 0.008918161292 0 -27.02680594 14.29544554 974.6399647 0.002052039802 +2.499903911e-06 0.002572340393 0.001185283314 0 4.251253615 -0.07456297127 969.8974985 0.002062073573 +2.4963472e-06 0.006231409907 -0.01083625523 0 21.21085157 -11.18608386 886.7040423 0.00225554402 +2.499856981e-06 0.001934355577 -0.008140160199 0 4.749507004 -1.167024807 914.4455623 0.002187117618 +2.498566814e-06 0.002309824945 0.003837764261 0 10.27262402 14.26963035 1038.303514 0.001926219043 +2.498899852e-06 0.001924982714 -0.005696205343 0 13.05524697 0.4452592852 880.4919268 0.00227145751 +2.498591042e-06 -0.008838779954 -0.01083565497 0 -17.76488616 -0.4779880434 1058.433955 0.001889584125 +2.498071195e-06 -0.001661778577 0.01469663705 0 14.77740845 12.02233465 969.6468674 0.002062606571 +2.499200439e-06 -0.006421518521 -0.00688536183 0 7.384369253 -8.94964571 917.4238738 0.002180017391 +2.4966226e-06 0.002301333873 -2.514647087e-05 0 20.98129387 16.46451627 1025.648346 0.001949986081 +2.495811301e-06 -0.004510685885 -0.006656479882 0 18.41844813 20.70598293 956.8556626 0.002090179405 +2.498731459e-06 -0.004188030572 -0.001576409368 0 -16.76568585 -3.097862511 1070.19142 0.001868824552 +2.499262976e-06 -0.005684575518 -0.004853524058 0 12.494388 -1.82653927 1039.927524 0.001923210948 +2.498580597e-06 -0.003446107856 -0.009148514152 0 -17.77747553 -0.88577319 1056.204757 0.001893572232 +2.498454848e-06 -0.008943483871 0.006713864431 0 -15.72753668 -1.028443195 896.3672498 0.002231228328 +2.499143296e-06 0.001614209488 0.0009799231659 0 4.332582537 12.50972124 1011.254847 0.001977740829 +2.49826807e-06 -0.004416785645 -0.004591413417 0 -7.958028514 -17.56753304 1035.972789 0.001930552637 +2.499002005e-06 0.002479707142 0.004478739579 0 -1.937532053 -14.97849888 1068.876119 0.001871124226 +2.4971306e-06 -0.0009871957731 -0.01220178235 0 18.72178335 12.27933874 934.2128036 0.002140839852 +2.498989067e-06 -0.001391696511 0.005478403587 0 6.745869572 -13.56153866 1065.063388 0.001877822505 +2.499672637e-06 -0.00797577017 -0.006329880282 0 0.7424117974 -8.19513025 1016.903246 0.001966755448 +2.496063009e-06 0.008563672183 -0.01196961191 0 17.77565369 -21.37180068 990.0551907 0.002020089404 +2.497283341e-06 -0.0001302492758 -0.01476598745 0 20.33603529 9.06498087 954.7995911 0.002094680411 +2.496519066e-06 0.003345427676 0.007342796281 0 11.73529212 19.97035022 877.4209774 0.002279407549 +2.497467768e-06 -0.004778124699 0.002474997318 0 -12.53473699 -20.30042591 1059.768349 0.00188720488 +2.497200652e-06 0.005823012548 0.007770991079 0 21.94665209 1.038505539 928.171171 0.002154774962 +2.49793428e-06 -0.001708426587 0.00837556025 0 -19.20890691 9.808916653 1060.799011 0.00188537129 +2.495916021e-06 0.00504418009 -0.0124416949 0 25.97320244 -15.67109985 1060.757037 0.001885445895 +2.499084002e-06 -0.003769029644 -0.007023635851 0 8.624357386 9.067236324 924.4131937 0.002163534676 +2.49504285e-06 0.001755954004 0.0009995923075 0 19.28595634 20.03006698 882.4256331 0.002266479944 +2.499494979e-06 0.007686763327 -0.01324294601 0 -4.868079181 -8.659192395 988.3517893 0.002023570981 +2.498896008e-06 -0.008006935278 0.01202426598 0 11.75888601 8.154036284 962.8359605 0.002077197033 +2.497734477e-06 0.002346972371 -0.000283798459 0 22.62453462 -1.677332406 1065.425383 0.001877184486 +2.499919306e-06 -0.00374715012 0.008603474612 0 -3.721917325 1.712121931 1019.77991 0.001961207491 +2.497264705e-06 -0.002268528179 -0.005245434539 0 21.7080874 11.69067389 1053.72019 0.001898037088 +2.496974638e-06 0.003408484389 -0.01069662351 0 -12.79578086 -22.11069756 1038.072381 0.001926647927 +2.498683534e-06 0.0007863028487 0.01464911782 0 -3.656999679 -16.75269895 1056.544206 0.001892963862 +2.496505904e-06 0.001023115856 -0.004709697424 0 20.97049677 -18.97515902 1069.265387 0.00187044304 +2.499784919e-06 -0.006020195647 -0.01165421489 0 4.916541952 4.955648674 1064.319649 0.001879134716 +2.497611555e-06 0.0007508824207 0.006553240847 0 2.334801201 20.94771981 964.0275591 0.002074629487 +2.499154831e-06 0.001743064541 -0.008801919585 0 4.601070556 12.10339306 995.8076929 0.002008419913 +2.497555569e-06 0.0009974346356 0.006240992916 0 12.87906151 15.65419221 916.4685572 0.002182289817 +2.49844598e-06 0.006180256782 0.003533113548 0 -13.73491775 10.12427271 967.638201 0.002066888221 +2.497406697e-06 -0.003933125236 -0.008836423787 0 -19.73362015 -5.812316049 902.9456201 0.002214972813 +2.498210562e-06 -0.000225597918 -0.008490028486 0 -12.02452776 14.84281274 1009.476055 0.001981225796 +2.498963297e-06 -0.007301920583 0.01224086228 0 3.209718635 -13.5076381 964.0445551 0.002074592911 +2.497455548e-06 0.003513897853 0.008116207675 0 17.56277546 -15.38501105 1034.617799 0.001933080991 +2.499742618e-06 0.005745046278 -0.01012473561 0 5.266990975 4.26521545 944.5878484 0.002117325565 +2.499343886e-06 -0.002296633204 -0.0008971764729 0 5.934540911 -9.350459327 966.6874672 0.002068920999 +2.499840646e-06 -0.007554258909 -0.01419293731 0 4.167082231 -4.102837791 1035.841203 0.001930797882 +2.49780988e-06 0.007783240601 -0.00110883794 0 -3.2000509 19.30802418 934.8252173 0.002139437365 +2.497617228e-06 0.004697731175 -0.007402940698 0 -21.16397598 1.526996825 971.6574251 0.002058338616 +2.498556097e-06 0.001809347305 0.0002981861634 0 -10.36264376 12.3893412 950.2600668 0.00210468699 +2.499298041e-06 0.004830906368 0.004355195824 0 -9.497741296 7.870312181 1040.921004 0.00192137539 +2.497901712e-06 -0.006723255999 0.009574971157 0 14.97685603 -14.96474962 1033.179584 0.001935771895 +2.495740044e-06 0.007693272904 0.01145660478 0 -15.76374081 23.02393761 955.3469873 0.002093480198 +2.495447701e-06 0.003528840803 0.01197648285 0 -3.946884606 31.32173475 1045.537367 0.001912891938 +2.498763889e-06 -0.006264255019 -0.007017001121 0 9.355318952 -11.51163603 943.249075 0.00212033073 +2.498736336e-06 0.0007241152832 -0.007699583962 0 13.12495564 -9.130654859 1005.531084 0.001988998682 +2.49920995e-06 0.003038228592 -0.0003786756378 0 -1.877598188 -13.0284267 1047.037086 0.001910152016 +2.498919763e-06 -0.002323436611 0.004907773146 0 -8.05693687 -10.59077998 905.1871521 0.002209487834 +2.49562023e-06 -0.0008907486824 0.007108810635 0 24.55693938 -19.62852399 1061.507505 0.001884112915 +2.496346961e-06 0.006227986878 0.01167855022 0 -15.07506046 24.06120417 1049.88281 0.001904974519 +2.497542073e-06 0.009495609128 0.002737208842 0 6.290796958 22.56922762 1056.341555 0.001893327011 +2.494946709e-06 -0.009193341429 0.01051166116 0 18.77780696 26.40713978 1018.476971 0.001963716467 +2.49981053e-06 0.003474126165 -0.001533720586 0 -4.761248834 3.680222996 977.5468956 0.002045937652 +2.498294233e-06 0.002941404851 0.002413649827 0 -7.25411098 -17.04969139 1002.904927 0.001994206975 +2.498354117e-06 -0.003638947033 0.002865607794 0 -9.037391559 16.58942954 1040.978063 0.001921270074 +2.496995769e-06 -0.0005710976245 -0.005028760931 0 15.76703823 18.54358822 992.5527569 0.002015006241 +2.498498033e-06 0.006311955121 0.002836209841 0 16.09681345 3.125738475 945.8762526 0.002114441498 +2.497488158e-06 0.004123679916 0.002425014926 0 -9.991556718 -20.9000704 1033.161725 0.001935805355 +2.497366643e-06 -0.008829157515 8.726067608e-05 0 0.5360495456 -21.36104834 930.7173427 0.002148880125 +2.498442376e-06 -0.001193096428 -0.0131668908 0 -12.91905497 -13.20587453 1046.45016 0.001911223369 +2.498109047e-06 0.0008388524968 0.01194569038 0 -14.20016091 -10.00346771 892.9334607 0.00223980855 +2.498922268e-06 -0.003961869478 -0.005922937409 0 6.473160739 -13.8670147 1042.195097 0.001919026492 +2.498859277e-06 -0.004390571364 0.001985546958 0 2.298365036 15.46209153 1034.747912 0.001932837919 +2.498288627e-06 0.005302344859 -0.004168585553 0 15.37686421 -11.87924526 1050.01769 0.001904729814 +2.499511901e-06 -0.0083472864 0.00922688575 0 9.202682466 -2.919518672 977.0963858 0.002046880972 +2.499924924e-06 0.005170858735 0.01073924222 0 2.938636407 2.91809366 1068.744353 0.001871354917 +2.498317928e-06 -0.002027631607 0.005361002649 0 -17.61824581 -2.566542202 970.4556891 0.002060887501 +2.49968896e-06 -0.0002498499816 0.007558239049 0 2.655050669 -6.942404986 942.3418097 0.002122372137 +2.497836328e-06 -0.001876573381 -0.008390001026 0 15.88013514 13.63594104 1005.874084 0.001988320439 +2.497828833e-06 -0.007449484356 -0.01058935489 0 -21.34456444 5.89263559 1062.267366 0.001882765171 +2.496753018e-06 0.003151358841 0.006190496259 0 23.0082927 -14.02397933 1056.860666 0.001892397044 +2.496375431e-06 -0.006963318367 -0.01253603067 0 -16.23278762 -19.62083009 945.298492 0.002115733831 +2.496664254e-06 -0.00681851909 -0.003204710016 0 -16.28862526 18.95495633 967.1090138 0.002068019191 +2.498704286e-06 -0.001515354915 -0.01120845931 0 14.34370036 -1.584496361 896.2744698 0.002231459299 +2.495179056e-06 0.006095949253 -0.01186956309 0 19.59857794 -23.25670297 978.7469468 0.002043429108 +2.498443143e-06 0.003508447888 0.006855951247 0 5.444091539 16.69595608 994.9733837 0.002010104022 +2.495375345e-06 -0.001038633091 0.007900833995 0 12.56476005 28.64605158 1027.820893 0.001945864317 +2.498160948e-06 -0.00366096973 0.006503303647 0 -12.70071471 -15.55299389 1046.719938 0.001910730777 +2.498662267e-06 0.001464029048 0.004188832466 0 -11.2143423 10.20030208 926.6063544 0.002158413862 +2.497386128e-06 0.003040313255 -0.008950233492 0 17.14423894 -13.6022044 956.7870228 0.002090329355 +2.499219023e-06 -0.00515466474 -0.008255538403 0 -13.1258375 0.7835911854 1051.997221 0.001901145706 +2.498228328e-06 0.0003775119968 -0.01054863833 0 -3.435659768 17.58063995 951.3733061 0.002102224213 +2.49936284e-06 -0.006155293235 -0.01021076516 0 10.19076891 3.909952059 966.8233958 0.002068630123 +2.499794547e-06 0.005752025032 -0.01015878333 0 4.94241767 -3.473810237 942.3919756 0.002122259157 +2.498647589e-06 -0.00790784949 -0.002433951627 0 2.434070122 -15.77739341 970.4776179 0.002060840933 +2.495733965e-06 -0.0003159731952 0.007577985234 0 -18.24351463 18.230326 882.391213 0.002266568355 +2.497248669e-06 -0.0004152061325 0.002253157713 0 17.19645596 -14.4412344 956.8959275 0.002090091454 +2.499242408e-06 -0.002998256856 0.01470913748 0 -11.18521993 -5.221404395 1002.699662 0.001994615213 +2.49805103e-06 -0.006694867518 -0.007835416168 0 5.736762121 17.14369075 915.3927841 0.002184854452 +2.499236668e-06 -0.00212624935 0.01494275213 0 12.87167551 0.06468552894 1041.643359 0.001920042962 +2.499147398e-06 0.005332954456 -0.01138087205 0 -1.376245977 -12.80832166 986.3728701 0.002027630788 +2.497764579e-06 -0.003299343642 0.008072786839 0 12.22340044 -14.94583061 912.8332294 0.002190980713 +2.496205718e-06 -0.0038883826 -0.0003922600485 0 -24.11893007 14.66226856 1024.050984 0.001953027761 +2.496220911e-06 -0.009810103178 0.01105217401 0 -26.84851725 1.971771611 978.6635534 0.002043603231 +2.49445596e-06 -0.009870784581 0.00467321547 0 -25.3623572 15.38771189 890.1419236 0.002246832721 +2.497746187e-06 -0.006663291464 -0.002001860195 0 -3.810423104 -19.67161458 943.4468594 0.002119886224 +2.498112868e-06 -0.004000028665 -0.007749072255 0 18.46017526 -2.321000983 957.4200799 0.002088947205 +2.496331432e-06 -0.0006330826506 0.01315905928 0 -20.77234001 18.23440377 1019.857656 0.001961057985 +2.497749309e-06 0.001958159404 -0.00540849285 0 -17.52091987 -14.47518238 1070.831788 0.001867706976 +2.499334221e-06 -0.003113446785 -0.003007859588 0 -4.596815585 -9.774141249 935.9355487 0.00213689928 +2.498735254e-06 -0.008919384931 0.002470418285 0 4.48973058 -15.96853616 1042.766683 0.001917974588 +2.499058034e-06 -0.0003096106648 0.0007139008865 0 -11.89424462 6.23120483 978.148917 0.002044678438 +2.499110095e-06 0.009856094788 -0.004288870809 0 -9.025903547 10.6214601 1044.652301 0.001914512607 +2.497071625e-06 -0.004477944183 -0.01365113934 0 17.56215415 18.99669588 1068.544071 0.001871705673 +2.498570577e-06 -0.004896817608 0.00638520852 0 7.060348384 -14.48022125 952.5796593 0.002099561943 +2.499366173e-06 0.005817213119 0.01419520324 0 -10.91422127 1.86162529 983.283103 0.002034002205 +2.496484049e-06 -0.009652328887 0.002006277235 0 -25.55468366 5.752019904 987.272009 0.002025784163 +2.49975243e-06 -0.008200873467 -0.005014997476 0 -4.316585507 4.759748121 913.1290739 0.002190270858 +2.497511602e-06 -0.009832974696 0.007276764004 0 -13.06117481 -18.01067548 996.9104052 0.00200619834 +2.4977244e-06 -0.00578682574 -0.002179099952 0 18.8532973 -9.743425768 994.440678 0.002011180802 +2.494452423e-06 0.007495732955 0.008405384193 0 -18.63834481 26.69912353 976.7239989 0.002047661368 +2.496655511e-06 0.002596034743 -0.004084447317 0 10.86914633 -21.31953695 924.8066155 0.002162614288 +2.498963521e-06 -0.001965061044 0.007177057893 0 5.98577788 -13.822764 1046.051016 0.001911952638 +2.499175373e-06 -0.001528219949 -0.00991693971 0 -13.66624682 -0.3121981237 1064.302373 0.001879165217 +2.497092245e-06 -0.008772232095 0.01490213779 0 -21.45234976 -11.75420168 1013.910229 0.001972561222 +2.497350026e-06 0.006074551051 0.0126972174 0 -7.660885105 22.53909451 1033.637118 0.001934915034 +2.496715601e-06 0.001035785964 0.00716128153 0 22.42344297 6.236256781 907.6597372 0.002203468897 +2.49899482e-06 -0.00243438398 0.01188640331 0 -4.895254285 -14.18170624 1057.962346 0.001890426447 +2.499035993e-06 0.006626547589 -0.01304551942 0 4.999210607 13.46807671 1034.468121 0.00193336069 +2.499298178e-06 -0.0009410116915 0.006991626474 0 -4.84069387 11.19208865 1029.13949 0.001943371156 +2.499638166e-06 -0.009249756876 0.01176358917 0 -7.656886196 -2.535890033 948.1115252 0.002109456479 +2.496769106e-06 0.007026094571 0.005328356016 0 18.37441337 -12.80539076 880.624022 0.002271116788 +2.496806512e-06 -0.00760286903 0.005406288933 0 -18.52937425 15.31935426 950.8581519 0.002103363153 +2.499666808e-06 -0.009347628783 -0.0006576117198 0 5.775237474 4.886592574 926.6933278 0.002158211287 +2.499445499e-06 -0.00310013969 -0.0003971710755 0 -7.538239095 -6.804244853 964.2174612 0.002074220889 +2.498660128e-06 0.002634794498 -0.002023794993 0 -5.250035492 -14.45398138 939.2122248 0.002129444174 +2.499357323e-06 0.00184791734 0.01225614165 0 -9.162323342 -7.916411861 1067.922822 0.001872794513 +2.498836356e-06 -0.005077963932 -0.005038463229 0 -13.77053201 -6.269362781 991.637327 0.002016866394 +2.49677076e-06 -0.007016287297 0.002746606255 0 -22.6282592 6.021348457 920.9400675 0.002171693979 +2.499299869e-06 0.007073357189 0.01185295949 0 -7.327833687 -9.772893258 1032.151837 0.001937699404 +2.496286066e-06 0.008237183122 9.341697441e-05 0 -17.57429811 20.57176097 992.195266 0.002015732254 +2.497074714e-06 0.0009617766691 0.01073175013 0 -25.4314339 -0.8040747066 1051.472645 0.001902094181 +2.496464694e-06 -0.005631781584 -0.01059752118 0 -13.37216612 -21.69038069 957.7663428 0.002088191984 +2.496745027e-06 -0.001546855085 -0.006427313439 0 -15.76788929 -17.30734744 917.1851974 0.002180584691 +2.499468699e-06 0.001802431927 -0.0006667667837 0 -10.43987019 -3.513750362 1068.506684 0.001871771164 +2.499534384e-06 -0.002288315832 0.002416065861 0 -3.972970593 9.545290455 1071.330994 0.001866836684 +2.49859974e-06 -0.008146369676 -0.009657329021 0 -15.50688481 -7.880518157 1039.200728 0.001924556004 +2.499763837e-06 -0.0008405616786 0.01323375034 0 1.221221767 -6.274720596 930.1041934 0.002150296724 +2.498054884e-06 0.008096260158 -0.00879882148 0 14.44291185 -13.50830319 1002.337136 0.001995336628 +2.49973676e-06 0.003161029909 -0.01433481038 0 0.9411665419 -7.143903134 993.0344696 0.002014028779 +2.496017967e-06 0.001172127747 -0.01455057244 0 -9.920258236 -24.2020555 926.2942643 0.002159141082 +2.497992171e-06 0.002872745097 -0.007693156844 0 -8.88782819 -17.53207525 980.5976785 0.00203957244 +2.499120275e-06 0.009789458844 0.01003425273 0 9.296112592 9.29094439 990.7175418 0.002018738859 +2.497293142e-06 -0.00567539975 0.01073383588 0 15.73772327 14.44584086 917.7592916 0.00217922065 +2.498111027e-06 -0.007524037701 -0.00736648456 0 -15.98523276 -10.71464311 989.7926695 0.002020625189 +2.497171412e-06 -0.005921823708 -0.001462817627 0 6.873337126 20.29046388 900.3190998 0.002221434601 +2.497901856e-06 0.003069357146 -0.00607039477 0 -14.73923346 14.15809531 997.3810585 0.002005251637 +2.49826653e-06 -0.005985300457 0.004462675801 0 17.99020254 -8.174148868 1060.973307 0.001885061562 +2.499250085e-06 0.003150373059 -0.004174758336 0 10.42139945 -6.436150114 1000.042609 0.001999914786 +2.499855692e-06 0.009093881166 0.0136434785 0 -3.777759712 3.889339818 1009.23595 0.001981697144 +2.496895947e-06 0.009164378433 -0.001796639299 0 22.41816054 -13.05207518 1040.646495 0.001921882225 +2.496217096e-06 -0.002145466637 0.005747482495 0 -17.85828013 16.88290218 892.9485934 0.002239770592 +2.495088601e-06 -0.005169430496 -0.0009515360976 0 -17.79826912 -22.01689917 902.6511251 0.00221569546 +2.497870459e-06 -0.001897977106 -0.00192083224 0 13.68246332 12.06776341 883.7337324 0.00226312511 +2.496546599e-06 0.00884149862 0.01201700198 0 22.72179249 15.86825512 1053.998558 0.001897535803 +2.497443279e-06 -0.0007390478719 -0.008827630389 0 4.263505769 -22.39110825 1007.594678 0.001984925132 +2.497613584e-06 0.008878195458 -0.007347381643 0 19.495078 -6.824988991 945.118962 0.002116135725 +2.497303427e-06 -0.009607821372 -0.01450372334 0 19.02114842 12.28827805 974.7194789 0.002051872404 +2.495228945e-06 0.005347026675 -0.005379107881 0 -15.8945121 -24.74033142 951.2712288 0.002102449795 +2.498146698e-06 -0.006193094742 0.005773554321 0 14.74039128 12.44202354 1001.638625 0.001996728111 +2.497892198e-06 0.006983078425 -0.000875557051 0 15.43528809 -9.331426895 878.194097 0.002277400869 +2.497341674e-06 -0.005595318559 -0.002302327619 0 -12.15649863 18.14424456 946.812746 0.002112350101 +2.499771691e-06 -0.008045984115 0.005832605876 0 6.456983368 1.325368256 975.4383989 0.002050360128 +2.499925613e-06 0.006010482656 0.01460613467 0 1.983719731 -3.023387077 937.4963851 0.002133341559 +2.49641293e-06 0.002247200278 0.01388827404 0 -18.24024456 16.06217221 906.9110429 0.002205287956 +2.497550939e-06 0.008003775035 0.005936236975 0 19.52043375 13.22123021 1064.887413 0.00187813282 +2.497803226e-06 0.007613418996 0.002519275064 0 11.40821374 -19.33290079 1070.594228 0.001868121411 +2.498944452e-06 0.003033082574 0.004897644056 0 7.5005495 -10.4407679 884.6499081 0.002260781335 +2.498354216e-06 -0.005551884575 -0.01026849106 0 -15.1730439 5.834104932 895.7883609 0.002232670223 +2.497149445e-06 0.004373806552 -0.003319422374 0 24.70439708 3.43709428 1044.17163 0.001915393928 +2.496163624e-06 -0.001206109328 -0.00102268225 0 -14.30572004 -24.8984438 1036.077721 0.001930357114 +2.497189845e-06 0.002033663313 0.006846695943 0 -21.16421939 -5.789830514 925.1468225 0.002161819023 +2.497704389e-06 0.001327403984 -0.01182562206 0 19.35015564 6.168702243 947.5201979 0.002110772947 +2.494381411e-06 0.007169359 0.001821112465 0 25.29226558 -15.58580973 885.5047796 0.002258598763 +2.494814221e-06 0.008026025696 0.004973039848 0 22.02822851 26.48471876 1068.826543 0.001871211015 +2.493661256e-06 0.009000743385 0.01412844679 0 25.69320282 27.97390723 1065.749174 0.001876614168 +2.495304828e-06 0.005717249201 -0.009439198282 0 21.30167142 -24.00885594 1046.673008 0.001910816448 +2.497413955e-06 0.001931860745 -0.007805523248 0 -11.57279621 19.33086691 990.2945031 0.002019601233 +2.499730399e-06 0.002908215355 -0.01301209205 0 -7.108978297 -2.802218527 1040.58084 0.001922003483 +2.498410998e-06 0.001625300609 -0.004996109989 0 -5.631821866 16.14007404 958.6801963 0.002086201434 +2.496225239e-06 -0.007581124064 -0.01046163723 0 -24.3508445 14.54610421 1031.742843 0.001938467529 +2.497565928e-06 -0.00110501112 0.001792126768 0 -21.13271433 -4.021555511 974.6298456 0.002052061107 +2.4985431e-06 -0.009391813688 0.01284999062 0 -17.66700733 -0.5190970453 1035.203053 0.00193198812 +2.499828638e-06 -0.004347299184 -0.01159839047 0 1.127242471 5.058379337 885.2219402 0.002259320414 +2.498996906e-06 0.007754333685 -0.00137296167 0 12.16752767 -5.036335284 929.5870462 0.002151492975 +2.499953391e-06 0.005060495762 -0.01139253475 0 1.321037471 -2.671145203 976.0200076 0.002049138321 +2.499690246e-06 0.009883123585 0.008137199362 0 7.629344808 3.330654724 1057.604923 0.001891065327 +2.495297954e-06 0.000408600485 0.01056634141 0 9.892331823 30.89586002 1057.129007 0.001891916678 +2.498599204e-06 -0.008977074637 0.004279323667 0 14.01595229 -7.041921345 936.9259176 0.00213464049 +2.499414913e-06 0.009157799534 0.001715235861 0 8.988397932 -6.87218492 1045.857844 0.00191230578 +2.498374529e-06 -0.009492733418 0.008436834086 0 -2.861634532 -15.51495758 874.7911679 0.002286259937 +2.499974421e-06 -0.004353802032 0.007060773717 0 0.6376942823 1.934190926 900.4327962 0.002221154103 +2.499370974e-06 0.007457471942 -0.003905099651 0 -10.54810212 5.203686372 1048.540055 0.001907414019 +2.498292016e-06 -0.001914184643 -0.01163448317 0 -5.120483042 17.80646072 1002.217669 0.001995574477 +2.495596793e-06 0.002792530665 0.0100213962 0 25.42032665 -15.02334287 994.3635176 0.002011336865 +2.497669163e-06 0.008712688545 0.01195915972 0 16.99771508 15.42834273 1062.83134 0.001881766114 +2.497916119e-06 -0.007417354584 -0.01354097507 0 -10.48375887 17.41425535 995.347548 0.002009348397 +2.499461077e-06 -0.004473364707 8.311787155e-05 0 -9.767608107 -1.207084022 947.9071279 0.002109911342 +2.498228971e-06 -0.001602165671 -0.001419999849 0 11.72684497 12.45759503 908.8159293 0.002200665652 +2.499427245e-06 -0.001465657293 -0.0138829923 0 6.451387811 -8.533639018 999.4446157 0.002001111386 +2.497848088e-06 -0.003368619825 -0.007338904054 0 -12.88716055 15.11134843 957.0143606 0.002089832799 +2.498231159e-06 0.001586040971 -0.001117873541 0 3.29181155 -18.68403401 1008.402378 0.001983335268 +2.496917111e-06 0.00528620223 0.009604875315 0 18.26740103 16.36941908 987.3682237 0.002025586759 +2.499138015e-06 0.001971295248 -0.00810869385 0 5.109134372 12.93421205 1059.019545 0.001888539271 +2.498626373e-06 0.004009468621 0.008429594629 0 -10.6345128 13.50986191 1037.09868 0.001928456798 +2.496951817e-06 -0.005639487943 -0.006410452423 0 -12.48786854 22.59616631 1045.145666 0.001913608854 +2.497062866e-06 0.009387744307 -0.01163698688 0 -18.08906866 -11.97492046 894.6717327 0.00223545679 +2.499311549e-06 0.008511503511 0.006200135183 0 -12.28550448 -1.302697697 1052.747875 0.001899790109 +2.499360572e-06 0.004093967983 -0.01203072455 0 6.518784795 -8.863903899 972.867719 0.002055777945 +2.498898873e-06 -0.007471178975 -0.00742580465 0 13.45650862 -6.961841014 1020.771018 0.001959303276 +2.498170522e-06 -0.006416368838 0.005506826411 0 19.83762932 1.065807899 1038.287975 0.001926247869 +2.496292575e-06 -0.006915402953 -0.01491995227 0 -15.4741186 -21.98517374 986.7680566 0.002026818751 +2.495868243e-06 -0.006315683909 -0.01035246422 0 17.33571832 -24.92826786 1055.60375 0.001894650337 +2.498253012e-06 0.003219281752 0.002921078322 0 19.44450586 -3.422097291 1055.958493 0.00189401384 +2.499440842e-06 0.002014719434 -0.01261021715 0 -10.50588632 1.315508393 1001.133706 0.001997735156 +2.495885705e-06 0.00686663222 -0.00883466108 0 -18.38730971 -20.866106 968.9374313 0.002064116769 +2.498045763e-06 -0.0002814752935 -0.00810240773 0 3.693555553 17.05237513 882.2868212 0.002266836534 +2.49576574e-06 0.00259936119 0.01422381629 0 -15.95234925 22.53286329 948.1057625 0.002109469301 +2.496560748e-06 -0.000388309327 -0.004731640932 0 18.376217 -13.95221196 879.2801902 0.002274587807 +2.49738795e-06 -0.0005908023054 0.008077319241 0 -16.07284797 -14.80344387 955.6544358 0.002092806694 +2.498506836e-06 -0.007694293056 -0.007831129096 0 0.929164156 16.13000234 934.7335052 0.002139647278 +2.499676851e-06 0.008169902619 -0.009346859953 0 -7.562160889 3.621788557 1042.920783 0.001917691193 +2.497772241e-06 0.005413169949 0.008088757647 0 -10.06488423 19.84567332 1053.841379 0.001897818818 +2.49775853e-06 -0.002848371072 -0.005683889352 0 -10.52868322 -17.42835982 961.3634758 0.002080378598 +2.497808115e-06 -3.864290193e-07 0.005470210123 0 -7.759148407 20.60535549 1051.25447 0.001902488938 +2.497915756e-06 -0.00481940818 0.01354378703 0 9.126882359 18.00002328 988.1719374 0.00202393928 +2.495813324e-06 0.008109322865 -0.001134441993 0 24.84618559 12.91747411 967.1395633 0.002067953867 +2.498236167e-06 0.002217577887 0.008121754832 0 -16.34083023 2.258956496 878.0637532 0.002277738937 +2.497597152e-06 0.000520747425 -0.014093884 0 -21.39360858 0.9296104649 976.470082 0.002048193833 +2.497044274e-06 0.000315459976 0.009560170993 0 4.198864803 25.00698826 1042.458938 0.001918540796 +2.498951745e-06 -0.005291161528 -0.01079976977 0 -12.00929507 5.2967135 906.3553092 0.002206640133 +2.497388094e-06 0.001557689467 -0.002271776847 0 20.85838041 6.816230972 959.7298726 0.002083919712 +2.498623405e-06 0.008006890095 0.004126166599 0 -8.19240719 -14.70896124 1014.483518 0.00197144652 +2.498178572e-06 0.0005749108875 -0.00991726893 0 0.02541651449 -17.80019412 932.3638467 0.002145085319 +2.496901068e-06 -0.006475321432 0.01385373213 0 -8.384579944 22.02530331 946.2063692 0.002113703802 +2.497608587e-06 0.003467179635 -0.01132241699 0 -14.59994048 16.08852244 993.0526591 0.002013991888 +2.498311986e-06 0.0005898984475 0.0002798606269 0 -18.17059566 3.616270029 1008.070607 0.001983988012 +2.49452363e-06 -0.006458686641 -0.006942343691 0 -21.92398424 -22.68558729 952.4843603 0.00209977201 +2.49874196e-06 0.001457965565 -0.002945874485 0 16.24249019 2.736325448 1038.210706 0.00192639123 +2.498691131e-06 0.002933567711 -0.008332306731 0 7.650815315 -14.77243797 1028.023872 0.001945480114 +2.496130586e-06 -0.009121784884 0.01369301486 0 0.4073169645 26.59336985 955.5082808 0.00209312681 +2.497291154e-06 0.005455276989 0.001831896342 0 -5.323929296 20.37614389 904.4373925 0.002211319453 +2.498761039e-06 0.008467071229 0.000336340887 0 2.755031827 15.51547929 1000.878891 0.001998243761 +2.496652578e-06 -0.001066578664 0.001810184224 0 5.758989655 24.17410173 959.9502709 0.002083441258 +2.498000135e-06 0.008518963489 -0.01297368211 0 -15.24673331 14.4737054 1050.851585 0.001903218332 +2.499710227e-06 -0.006317433226 -0.003507312094 0 -6.538485126 -3.666219527 984.6421413 0.002031194803 +2.495719149e-06 0.00105224988 0.01288487645 0 -18.97669801 19.9419667 940.1937188 0.002127221189 +2.498882535e-06 0.001436158386 0.002209916494 0 -14.62763049 3.981041258 1013.877922 0.001972624076 +2.498683665e-06 0.001040278212 0.009896153135 0 -5.288104116 14.91059904 974.8499435 0.002051597801 +2.495722434e-06 0.00357985131 -0.01265272104 0 -14.28788603 -26.14438667 1017.968094 0.001964698119 +2.498354921e-06 0.008857784555 -0.01125274822 0 -16.30277149 -10.48718791 1068.416447 0.001871929251 +2.499648611e-06 0.007443187758 -0.0005747283739 0 -5.380884667 -5.074451556 882.2216778 0.002267003918 +2.496211424e-06 -0.00337780253 0.01405842161 0 3.802056873 27.45342737 1006.287345 0.001987503878 +2.49954823e-06 -0.002913657804 -0.01194419024 0 -6.429784758 -6.984764296 998.6871597 0.002002629132 +2.495642534e-06 -0.004690432032 0.01197835078 0 -25.57878416 -17.44070875 1048.019182 0.001908362018 +2.498112543e-06 0.007718231729 -0.007978142265 0 -3.038067391 19.27256808 1003.905998 0.0019922184 +2.497294458e-06 -0.00915237858 -0.01424823719 0 8.589638013 -21.57309548 997.8115238 0.002004386552 +2.495536296e-06 0.004303423157 -0.01132670142 0 -22.70139605 -20.67835991 1027.04656 0.001947331386 +2.497498094e-06 -0.003979407153 0.006833547573 0 16.64581174 -12.7976275 938.2917562 0.002131533168 +2.499027097e-06 -0.009494820912 0.009279677379 0 6.615589825 -13.03972329 1048.072115 0.001908265635 +2.499910885e-06 0.003806313635 0.009296187807 0 3.778302015 -0.1225390141 895.4235877 0.002233579758 +2.496770806e-06 -0.0003951593908 -0.01274241534 0 19.32474167 -18.3392484 1047.821647 0.00190872178 +2.496364659e-06 -0.002823725389 -0.005198893212 0 -18.60985093 15.02636317 886.5807299 0.002255857738 +2.496631036e-06 -0.000497040851 -0.01030553583 0 22.02068588 8.708595317 911.8050021 0.002193451446 +2.499491148e-06 0.004519784534 0.008657342771 0 8.805401877 6.163219701 1065.333158 0.001877346993 +2.498213718e-06 0.0003479289962 0.01046139973 0 -7.258728207 17.02271296 978.8130596 0.002043291086 +2.499479776e-06 -0.007027650457 0.01110603752 0 1.010562606 -9.80255879 966.0308831 0.002070327186 +2.499292689e-06 -0.007296517333 0.006390802322 0 -10.53429395 0.5928075437 887.004005 0.002254781251 +2.498728147e-06 -0.007492540185 0.004439456135 0 13.29139003 -9.416445318 1021.120934 0.001958631866 +2.497644682e-06 -0.007761820909 0.008274567251 0 -18.68109827 13.02394656 1048.879885 0.001906796029 +2.496783493e-06 0.002893802519 0.001363341969 0 23.83506336 0.6654135936 939.655266 0.002128440155 +2.497595359e-06 -0.009406571509 0.006615249601 0 -12.18882077 -18.58953729 1013.275146 0.001973797549 +2.499718849e-06 0.008871664573 -0.0004786939407 0 -5.817818396 -3.393502308 898.1461706 0.002226809027 +2.498954987e-06 0.009739984502 -0.01058218632 0 -6.250461035 13.76644013 1045.630146 0.001912722206 +2.49627841e-06 0.007780558816 0.003737775846 0 21.29110449 15.95130437 974.5849008 0.002052155742 +2.498696551e-06 0.00706539589 0.01134649479 0 1.200182432 -16.42249568 1019.644884 0.001961467204 +2.498230875e-06 -0.009831976281 0.007566693651 0 9.017653943 -16.25892189 988.1471747 0.00202399 +2.49898214e-06 -0.007268468859 -0.003158736401 0 -12.24032561 3.934441388 900.9862839 0.002219789619 +2.498369491e-06 -0.004292801605 0.003090598709 0 -12.84770576 13.57870598 1034.919086 0.00193251823 +2.498134492e-06 0.008801353909 0.001099635882 0 7.068993513 -16.40681975 924.6241617 0.002163041031 +2.49932985e-06 0.0005047707446 0.01430234305 0 7.7207686 9.553643142 1060.900386 0.001885191133 +2.497949504e-06 0.002418756844 0.005139289659 0 21.09902647 3.028705789 1052.236374 0.001900713613 +2.496582759e-06 -0.002922920925 2.098414348e-05 0 11.28588373 24.24605375 1022.471162 0.001956045388 +2.4998644e-06 -0.008774584718 -0.009700700676 0 -1.763014604 5.257705229 1064.831524 0.001878231396 +2.49898735e-06 -0.0009320608852 0.01239156234 0 -9.500338633 10.29656916 984.2890147 0.002031923521 +2.498584218e-06 0.001943665813 -0.00958109047 0 -6.24091275 -13.66366003 892.4974719 0.002240902706 +2.497621641e-06 0.0003165409528 0.002538530866 0 -11.11636465 -16.8021887 923.4086947 0.002165888205 +2.498355245e-06 -0.008934882735 -0.01124305897 0 -15.96802757 0.7430561979 881.1466056 0.002269769851 +2.497372124e-06 0.005177010498 0.001045247745 0 23.21425046 -5.384124756 1039.066934 0.001924803816 +2.497891461e-06 -0.002889014361 -0.01292048411 0 12.39774186 15.55325892 968.2537855 0.00206557416 +2.495974384e-06 -0.006622687248 0.0008451837581 0 -25.21475293 3.137198665 894.9459466 0.00223477184 +2.498418566e-06 -0.006866876343 0.01120030531 0 1.702414948 18.95512086 1069.861325 0.001869401158 +2.498317284e-06 -0.007239904408 -0.01422028716 0 -15.15721058 9.33791672 970.1901802 0.002061451498 +2.497044199e-06 -0.002476602849 0.01243776317 0 -9.886125548 20.48526368 935.1046739 0.002138797993 +2.498086254e-06 -0.003302926337 0.006697055739 0 -10.63737824 -14.65598625 925.3864175 0.002161259299 +2.496937239e-06 0.008663616991 0.001811096733 0 -17.60443734 -14.49844568 921.0454266 0.002171445558 +2.49952134e-06 -0.00469741099 -0.00827295328 0 -7.939451736 -4.904255252 953.7089612 0.002097075818 +2.494984988e-06 -0.003293253882 -0.01452128739 0 -1.505533546 -30.94908643 977.6493351 0.002045723275 +2.496388713e-06 -0.004892602046 -0.007829032985 0 -20.9230314 -18.44543263 1037.314382 0.00192805579 +2.498501697e-06 0.008967403248 -0.008264074358 0 -16.11498707 -3.44558967 951.7530735 0.002101385386 +2.499130027e-06 -0.009410152463 -0.001473268841 0 -8.736376347 -7.741075395 884.7923946 0.00226041726 +2.499654758e-06 0.004612074648 0.01300097113 0 4.920528929 -6.695735444 999.9190919 0.002000161829 +2.49993417e-06 0.007270931383 0.00348002638 0 -0.08333803897 -3.593168586 990.5176515 0.002019146248 +2.495711209e-06 0.001285613878 -0.006188873383 0 19.32976419 21.68634828 991.2726062 0.002017608464 +2.499252341e-06 -0.001235051034 0.005679214918 0 10.19213377 -5.405877808 943.3627604 0.002120075207 +2.496070349e-06 -0.008223229586 0.004426342396 0 -27.23064772 -12.15769653 1063.115233 0.001881263609 +2.499151595e-06 -0.006612113831 0.01367276241 0 8.003868733 -10.99010833 1043.59352 0.001916454982 +2.492832628e-06 -0.007563590021 -0.01309350077 0 -24.01335048 -28.51254763 983.5204322 0.002033511389 +2.497788426e-06 -0.005239897957 -0.01084046564 0 18.30029934 8.450235326 958.1147754 0.002087432583 +2.496952571e-06 0.006974361334 0.007109689938 0 -4.588094813 24.82031963 1021.934362 0.001957072855 +2.499344792e-06 0.001035670429 0.01117315244 0 9.537006303 -4.900962781 936.5958567 0.002135392748 +2.499308502e-06 -0.002531315638 -0.006996052468 0 10.1611298 -3.564826822 915.5710636 0.002184429019 +2.497529777e-06 -0.009015115374 0.00764204096 0 -17.94643436 14.42569948 1035.537211 0.001931364686 +2.498475846e-06 -0.007239648351 0.007301520682 0 -14.90043682 -7.103558128 945.2385301 0.002115868044 +2.499165638e-06 0.006370693962 0.007405982777 0 -11.46486278 -6.494476336 1019.8937 0.001960988679 +2.498316359e-06 0.00680357838 -0.009753540948 0 -17.21849267 3.001473738 952.2384428 0.002100314281 +2.496387158e-06 -0.009693442979 -0.01417549461 0 -20.62888162 13.02007892 907.0061045 0.002205056824 +2.499784458e-06 0.002512791329 -0.01220755758 0 -3.547415543 5.426397964 987.3794305 0.002025563768 +2.49982199e-06 -0.005946168331 -0.004401780465 0 4.937315503 2.726484719 945.2322848 0.002115882024 +2.498973201e-06 0.008419003519 0.003907046216 0 6.057378542 11.89155675 931.1262676 0.002147936397 +2.498075918e-06 0.006640013619 0.001535562181 0 -19.08759506 -6.463881215 1027.008404 0.001947403733 +2.498992599e-06 0.007818206041 -0.005740902387 0 -11.77377764 -5.726877018 922.2476756 0.002168614845 +2.497973087e-06 0.008262218172 0.003222629812 0 -4.588557611 20.85084039 1060.055182 0.001886694235 +2.496724552e-06 -0.007935154908 -0.003296144544 0 15.61779396 -20.80665953 1015.960443 0.001968580582 +2.497243716e-06 0.00590908817 0.004667343912 0 -16.38093974 17.60736995 1023.859884 0.001953392287 +2.498313178e-06 -0.002926930245 -0.006879006489 0 -13.0241108 -13.77567523 1031.875898 0.001938217575 +2.499173278e-06 0.00925309787 0.008003455137 0 -5.860233685 -11.32044455 991.2222221 0.002017711019 +2.498314747e-06 0.001358643961 -0.002053082949 0 -1.69890321 -17.89948589 979.1081487 0.002042675268 +2.497274591e-06 -0.003855905603 -0.01180233021 0 20.86369075 -3.952114023 909.1547656 0.002199845478 +2.498398e-06 -0.005800492335 -0.002017128963 0 -1.932153178 18.74031663 1052.258303 0.001900674002 +2.495867326e-06 -4.604329355e-05 0.0003215733776 0 20.41892486 -15.59346588 893.102183 0.002239385412 +2.495969385e-06 -0.003176420103 -0.003833853216 0 -22.95706042 19.37210661 1057.33664 0.001891545157 +2.49574026e-06 0.008089290066 0.008904432796 0 -17.98388896 24.44494967 1039.058161 0.001924820068 +2.495820998e-06 0.001037375121 -0.004644405129 0 17.71377354 -23.2941412 1011.610389 0.00197704573 +2.498296351e-06 -0.009837605841 0.007293686823 0 18.70281256 -5.307196777 1052.950026 0.001899425377 +2.498714236e-06 -0.007981426837 0.0009599035 0 3.172540453 16.86442005 1069.901776 0.00186933048 +2.498377486e-06 0.005664985962 0.007700716308 0 18.06574863 6.080561329 1057.899357 0.001890539008 +2.498016222e-06 0.009468082269 0.01334453205 0 -18.27201972 10.99000661 1070.154013 0.001868889875 +2.499877505e-06 -0.002467159694 0.006486454702 0 3.283484301 2.995645189 897.9633405 0.002227262417 +2.496889242e-06 0.006063842657 0.003374587549 0 15.36140957 -16.97776021 917.4973094 0.002179842905 +2.497518661e-06 -0.001435271017 -0.00573635987 0 19.78989843 12.9049413 1060.147786 0.001886529432 +2.495670225e-06 0.007336126305 -0.01016330745 0 10.51717398 -28.97018612 1046.658535 0.001910842871 +2.499460483e-06 0.007598606744 0.01291422231 0 -7.51693967 5.526197802 898.0793131 0.002226974801 +2.498452559e-06 -0.003202831536 -0.007684050661 0 -15.52195962 7.804262923 987.3335004 0.002025657996 +2.498618051e-06 -0.002180864839 0.0103037204 0 13.2458553 -9.380949242 976.1176253 0.002048933395 +2.498432497e-06 0.004063042155 -0.002638232459 0 15.6940867 -0.6123211476 886.8395558 0.002255199361 +2.499498162e-06 0.003713946836 0.003406289129 0 7.456400198 4.966857897 894.2118822 0.002236606379 +2.498306954e-06 -0.005834801989 -0.007527675424 0 1.602050163 16.28172934 888.8594243 0.002250074585 +2.4984237e-06 -0.006162303039 -0.01343291709 0 -12.04038867 12.74881147 987.3875469 0.002025547118 +2.497778735e-06 -0.0059136861 -0.0116861959 0 -17.30938104 8.685985757 918.5251272 0.002177403688 +2.49780558e-06 -0.002079253043 0.01166618948 0 20.28319372 4.287577735 989.2609624 0.002021711233 +2.499758277e-06 -0.0006735017337 0.01397621167 0 4.449556102 -4.511568514 911.3150544 0.002194630705 +2.499613083e-06 0.002617483702 -0.01099644865 0 7.200131202 3.463139798 908.1995085 0.002202159307 +2.499478609e-06 0.00876986566 0.0002506732824 0 -2.368010624 -10.06304346 1012.283062 0.001975731961 +2.499016305e-06 0.004050752469 -0.007182158113 0 -4.827842119 13.39258191 1014.809723 0.001970812808 +2.498367769e-06 -0.008689958616 -0.007598118489 0 17.40510864 -2.347746143 971.8069103 0.002058021999 +2.495095469e-06 0.001165334955 -0.007292006195 0 24.32409094 -22.43702545 1055.819513 0.001894263154 +2.49728603e-06 -0.00756883434 -0.01483563689 0 -16.14448959 14.33483498 926.3180064 0.002159085742 +2.496223808e-06 -0.008022524184 -0.000763215702 0 -26.58452502 -3.729920906 976.278573 0.002048595611 +2.499272633e-06 -0.003908322346 -0.005686081548 0 -9.03239397 -8.921848292 1052.497832 0.001900241444 +2.498548053e-06 0.000430389978 0.009821003289 0 8.100296948 -15.27384917 1014.335934 0.001971733362 +2.49994669e-06 -0.009010748877 0.01069574046 0 -0.3923094083 -3.100862577 957.2109087 0.002089403685 +2.49845016e-06 -0.006815171046 0.004363797738 0 9.401608042 14.38745924 975.97326 0.002049236472 +2.496036342e-06 0.003071262371 0.01469444848 0 9.239609417 27.12020977 1016.991556 0.001966584666 +2.495055582e-06 0.004928575507 0.01041248992 0 -8.836048939 27.88668115 929.5582781 0.00215155956 +2.497068007e-06 0.001254090085 -0.005498533307 0 23.70408298 8.170258859 1034.933125 0.001932492015 +2.498221552e-06 0.005680733072 -0.008667902201 0 4.531012563 18.37190098 1003.054387 0.001993909829 +2.497344669e-06 -0.005027482468 0.004546061307 0 2.673407304 24.19156468 1055.728783 0.001894425948 +2.499124635e-06 0.001593987085 0.01193110483 0 -12.60437793 5.927661359 1052.549628 0.001900147933 +2.496020872e-06 -0.006453188607 -0.01299531723 0 19.1124621 -18.62064718 945.314032 0.002115699051 +2.499434445e-06 -0.003138735215 0.002151929783 0 -10.68018163 3.370651174 1052.9489 0.001899427408 +2.498997822e-06 0.006308605494 0.01245272279 0 -13.62375054 -3.748957647 997.9164984 0.002004175703 +2.498904493e-06 0.006745574344 0.01177815115 0 -14.47894428 -5.417104623 1044.218171 0.001915308559 +2.497400006e-06 -0.008198114904 0.009103183234 0 -22.28671693 1.9255972 980.596825 0.002039574215 +2.499193147e-06 7.957324386e-05 0.008841145495 0 -11.93012407 3.252331949 973.3003068 0.002054864245 +2.498289793e-06 0.002551220553 -0.01191657953 0 3.156479272 -16.15365222 889.7271766 0.002247880083 +2.498665518e-06 0.009957600678 0.01272163962 0 -15.39846482 -5.366999866 997.9644442 0.002004079415 +2.49688373e-06 -0.008063145149 0.0006443512836 0 19.70885218 -15.3851827 1001.045764 0.001997910657 +2.494901616e-06 -0.003726606639 -0.009102266827 0 -21.21604464 -22.61758892 970.3997395 0.002061006324 +2.49965713e-06 -0.008043514574 -0.003850364434 0 1.348570314 7.506234786 920.9121944 0.00217175971 +2.496852604e-06 0.002928295317 -0.004272678739 0 -9.406716404 20.1949037 887.5345187 0.002253433481 +2.497233166e-06 -0.002384210806 -0.0001736221835 0 4.547698896 -23.5151312 1017.733228 0.00196515152 +2.496380415e-06 0.005828981488 0.01143759075 0 -19.62945541 20.35319887 1050.382423 0.001904068419 +2.497046123e-06 -0.005148833035 0.0130216304 0 10.89702931 23.48885115 1064.844908 0.001878207788 +2.496260886e-06 -0.008014956363 -0.01355857519 0 -20.34307686 -14.67025579 916.6466781 0.002181865759 +2.497991177e-06 -0.003787740986 -0.001891951344 0 17.19081651 12.07726633 1047.832272 0.001908702426 +2.498353841e-06 -0.003366129412 -0.01126840093 0 0.6900804861 -17.38051874 958.3997385 0.002086811922 +2.496595105e-06 0.003889538227 -0.01060679398 0 -17.94747595 -17.38679591 957.0772568 0.002089695462 +2.497440003e-06 0.003393505984 0.005063572596 0 -12.13115101 -17.987359 958.4624209 0.002086675446 +2.497159028e-06 -0.0002923744032 -0.006186754752 0 21.63733553 -13.39118619 1067.052174 0.001874322595 +2.499912061e-06 0.0007301597809 -0.007607023437 0 -3.952301717 -0.684247708 956.4278008 0.002091114456 +2.498006243e-06 0.008577621439 -0.008671653648 0 -5.087455699 19.82429342 1024.62804 0.001951927843 +2.499023878e-06 -0.00178192141 0.01488211503 0 -13.77340575 1.444153962 991.0255435 0.002018111453 +2.494999872e-06 0.007577937753 -0.00582061525 0 15.61224338 -23.90752797 902.257135 0.002216662991 +2.49780966e-06 -0.000150043699 -0.01434733775 0 -9.287041296 -18.22698437 977.0565962 0.002046964329 +2.498993898e-06 0.00873813204 0.0005914494954 0 10.30131772 10.88539431 1056.359942 0.001893294056 +2.499342787e-06 -0.003766352683 0.0138892272 0 5.092113447 9.277537438 923.0019242 0.00216684272 +2.499717143e-06 -0.007059682105 0.006470089238 0 -1.528050752 7.471713964 1013.912291 0.001972557211 +2.499353322e-06 0.005187893156 0.002774530726 0 5.414725589 -9.606479302 969.5547803 0.002062802474 +2.496185791e-06 -0.003209737549 -0.00368011598 0 -24.03600292 14.46393611 1015.087615 0.001970273276 +2.497570838e-06 -0.004316685931 -0.01418643042 0 -3.729441606 -20.91306021 963.4167865 0.002075944729 +2.499754173e-06 0.002148717889 -0.003173599597 0 1.100107824 -6.467382225 935.570271 0.002137733596 +2.499886739e-06 0.009010905013 -0.01404922709 0 -4.569023598 0.848233718 976.3812256 0.002048380231 +2.497848446e-06 0.00174614144 0.01212083356 0 6.887073572 20.58860043 1046.231034 0.001911623661 +2.496856047e-06 0.0008332842775 0.01350339198 0 23.57535407 -5.145383518 961.8451108 0.002079336868 +2.497777238e-06 -0.008622043366 0.003952407364 0 11.24241881 -15.32700991 901.2249258 0.002219201825 +2.497994951e-06 0.003519530799 -0.01321414206 0 -14.77417068 -14.77869002 1043.221118 0.001917139105 +2.498785668e-06 -0.00291879762 -0.01385608115 0 14.72799671 -1.84996131 952.3137803 0.002100148125 +2.498631515e-06 -0.001725554396 -0.003738121747 0 17.064471 -1.844361121 1037.267024 0.001928143818 +2.498901788e-06 0.004788799123 -0.01226784429 0 -3.200722791 -14.81614894 1022.610739 0.001955778406 +2.499223261e-06 -0.009456194998 0.003623527272 0 12.23147386 4.142512731 1035.988328 0.00193052368 +2.497488986e-06 0.003384208311 -0.006407672684 0 -21.03925505 -6.01201685 976.0484915 0.002049078522 +2.497697818e-06 0.0003148478922 0.01232681783 0 2.885447455 22.26603853 1045.982577 0.001912077738 +2.497272998e-06 -0.007319957963 -0.00759811911 0 13.17024561 -19.45713316 1005.652671 0.001988758204 +2.499550917e-06 -0.002463124846 -0.01336157036 0 -7.953419147 4.535727752 966.0318519 0.00207032511 +2.498143003e-06 -0.00624729861 0.0008131550811 0 -9.447248455 17.36695372 1025.580849 0.001950114418 +2.495929947e-06 0.00589704284 -0.01164224529 0 -4.387961329 -24.6666154 877.5954431 0.002278954404 +2.49753948e-06 0.001526257508 0.003151671037 0 20.62431505 8.620418929 1007.290027 0.001985525465 +2.497455791e-06 0.008033098415 -0.01404664748 0 -18.37013044 14.77552535 1044.704379 0.00191441717 +2.495672262e-06 0.005453494443 -0.01483788472 0 27.10633167 -13.26927897 1025.156847 0.00195092098 +2.496261838e-06 -0.004618718768 0.008879336261 0 -20.1421608 -15.54185386 929.9299972 0.002150699521 +2.499785573e-06 -0.00100756193 0.004089381457 0 1.56086057 5.709788458 903.8598491 0.00221273243 +2.49760426e-06 -0.006327305892 0.009147315952 0 8.59038448 -18.0761938 913.9739606 0.002188246149 +2.497703522e-06 0.001533838431 -0.007313376395 0 18.18952445 10.74278439 985.3741571 0.002029685867 +2.499329996e-06 0.006731594382 -0.008540169967 0 -9.511856267 4.784794162 919.7106274 0.002174597031 +2.498661928e-06 -0.007657447574 4.187978106e-05 0 -6.108923953 16.06404284 1050.371824 0.001904087632 +2.499131057e-06 -0.009937388836 -0.004271297206 0 10.67638425 -4.965119215 893.0449667 0.002239528887 +2.498910776e-06 0.008211806142 -0.006115833975 0 4.953668474 14.94745053 1066.720517 0.001874905346 +2.498097516e-06 -0.004632149935 0.01067739123 0 -7.030173686 -16.04489796 897.7845888 0.002227705872 +2.498819107e-06 0.001501240646 0.009948879112 0 -14.06177783 6.859166509 1017.869949 0.001964887559 +2.496064195e-06 -0.006222713855 -0.009924854951 0 -19.21868952 -18.99872078 962.6426206 0.002077614223 +2.499760769e-06 -0.006494801296 0.009137965073 0 6.099125509 0.9075087429 891.422813 0.002243604237 +2.499320906e-06 -0.002567983894 0.009884832704 0 10.96948587 -2.521044095 965.6922315 0.002071053214 +2.495154024e-06 0.008592700912 0.003878408179 0 27.82047407 16.75428554 1042.412858 0.001918625605 +2.496753133e-06 -0.00608901436 0.002702414864 0 17.33266953 20.9958629 1067.880886 0.001872868057 +2.498003898e-06 0.004499286255 -0.009707866693 0 -4.27647972 19.15096905 981.7953674 0.002037084373 +2.499585221e-06 0.0007222123072 0.006151578007 0 5.780400567 5.537006464 878.7840705 0.002275871932 +2.499914934e-06 0.003412888832 -0.0143158093 0 -3.77751921 2.195317147 1059.236882 0.001888151775 +2.497433402e-06 -0.003394194967 0.01144285533 0 19.61892867 -4.482679532 887.9011374 0.002252503027 +2.499140039e-06 0.008148594252 0.006209571571 0 -12.48941586 1.222009968 956.7550922 0.002090399117 +2.499236475e-06 -0.00201408735 -0.0001340549905 0 -6.89856532 9.152818811 927.3897561 0.002156590567 +2.497575751e-06 -0.002775141844 -0.006780050034 0 -8.461884178 19.97846481 984.9861285 0.002030485448 +2.497116418e-06 -0.002931638849 0.0003756216704 0 7.335817418 -20.349242 900.3474526 0.002221364646 +2.498530197e-06 0.006994230654 -0.01201797208 0 -6.081792963 16.6892733 1035.793576 0.001930886661 +2.498339988e-06 0.009124753536 -0.01385478441 0 17.29047506 0.4500058266 949.0195124 0.002107438228 +2.499084737e-06 -0.005486451485 -0.01498492017 0 6.950395525 10.80500103 949.4414068 0.002106501766 +2.496495147e-06 -0.004477140764 -0.004373024656 0 11.2346386 -25.58154527 1054.738845 0.001896203985 +2.498080964e-06 0.004834390273 -0.01085170851 0 17.96437941 -6.590257955 976.4459478 0.002048244457 +2.497236544e-06 -0.009667801191 0.01142338396 0 18.5289663 -16.60750405 1057.962233 0.00189042665 +2.499452838e-06 0.007572550043 0.009498386309 0 -8.431858408 6.817580181 1036.454447 0.001929655476 +2.498724367e-06 0.001769573316 0.01248270085 0 -7.295570915 -13.12048107 939.700205 0.002128338367 +2.49958855e-06 0.006554370471 0.01056910571 0 7.726096752 4.529534552 987.2156886 0.002025899733 +2.497700237e-06 0.003998665013 -0.01431467241 0 -0.2680191967 -19.60309019 913.8159767 0.002188624461 +2.497272835e-06 0.002473783041 -0.0004579851008 0 -11.58010712 21.50454444 1045.376964 0.001913185453 +2.499185794e-06 0.00806539977 0.01346302296 0 12.94046087 -3.134276514 1043.262819 0.001917062473 +2.49807458e-06 0.008565425971 0.001237087541 0 -18.87643659 8.466952702 1053.957901 0.001897609001 +2.499196209e-06 0.007474406767 -0.003951881735 0 -12.67291419 3.37715514 1034.273154 0.00193372514 +2.496959572e-06 0.002706118044 0.01265265934 0 18.0698388 -13.37426357 911.2399934 0.002194811482 +2.499917184e-06 0.007568567446 -0.005803023214 0 -1.420469217 3.362258387 896.8400076 0.002230052164 +2.496076192e-06 0.006998669482 -0.01209562835 0 19.66068971 -16.10852754 906.7776553 0.002205612355 +2.497048893e-06 -0.005882835086 0.009573993143 0 -16.11735063 18.94466311 1023.362432 0.001954341822 +2.494943932e-06 0.002724431455 -0.002631227898 0 23.26411441 17.77252875 919.9410235 0.002174052411 +2.497420237e-06 0.002710157307 -0.007890284741 0 -12.10250428 -19.84970437 1023.098248 0.001954846472 +2.49848059e-06 0.0006173204677 0.006511291887 0 -1.58813056 16.70986755 962.6626631 0.002077570967 +2.494769479e-06 -0.00203599839 -0.01132120545 0 15.67471488 -30.63902986 1063.23499 0.001881051714 +2.498241074e-06 -0.004442148851 0.001913968327 0 17.93677344 -1.6227352 959.9773593 0.002083382468 +2.495604665e-06 0.007679387699 -0.009247385196 0 -5.82343533 -27.71831921 954.6596353 0.002094987497 +2.497765268e-06 0.0006220376678 -0.0148292671 0 -8.085499723 -20.39912364 1037.587124 0.001927548978 +2.495930734e-06 -0.006329274736 -0.001759754322 0 19.84283238 -17.14857471 918.7480515 0.002176875365 +2.499221503e-06 -0.006825287165 0.005074458173 0 -10.85252857 7.014414305 1035.469436 0.001931491101 +2.49826862e-06 0.006325608566 0.01110756532 0 17.64167773 4.981525955 984.8596626 0.002030746182 +2.49996753e-06 -0.00358083644 -0.0104354352 0 -2.685594613 0.07303178026 1054.24737 0.001897087967 +2.499467647e-06 -0.009486614354 0.01059168587 0 -8.941886263 -5.97097199 1041.952516 0.001919473268 +2.498035301e-06 0.004859126532 0.01031853927 0 13.7158266 -14.56495085 1008.976263 0.001982207187 +2.497587071e-06 0.009892232381 -0.006433805216 0 -13.08581986 17.51710135 994.968161 0.002010114573 +2.496731387e-06 -0.001130650402 -0.01066665372 0 -10.25407449 -24.3906393 1034.31906 0.001933639315 +2.498132928e-06 0.001624267702 0.002071691738 0 -12.30835115 16.17199371 1051.412157 0.00190220361 +2.497832773e-06 -0.009173608599 -0.001525245456 0 -15.14339624 -16.27019144 1067.267639 0.001873944199 +2.497356616e-06 6.445254665e-05 -0.003210873683 0 4.489250391 19.61563248 874.8238603 0.002286174498 +2.499113199e-06 -0.0086099499 -0.005800038397 0 4.075351275 12.0354338 953.9967952 0.002096443101 +2.497431789e-06 -0.004578388692 -0.01242426592 0 -16.22700134 13.34652679 926.7033306 0.002158187992 +2.499042896e-06 0.003172795139 0.001770227705 0 0.05566420023 12.63590475 913.1739955 0.002190163112 +2.499215009e-06 -0.008230755688 -0.009636957999 0 -7.746928049 10.50328372 1041.482633 0.001920339271 +2.499832829e-06 0.0007067166641 0.006959900286 0 -5.204363332 -1.66100271 944.7663912 0.002116925431 +2.499443451e-06 -0.008017634805 0.005309838715 0 9.003724533 -6.326819311 1042.945254 0.001917646197 +2.499884893e-06 -0.007497920343 0.003153123865 0 4.58630221 1.011871462 978.8373321 0.002043240418 +2.498097086e-06 -0.003382982695 0.004138205135 0 3.213646452 -17.59361372 916.5017423 0.0021822108 +2.495790203e-06 0.00907771735 -0.009734828782 0 30.34560844 -4.146542934 1054.855399 0.001895994467 +2.499716174e-06 -0.003590233983 -0.009934812658 0 5.427530872 4.673462261 950.5961401 0.0021039429 +2.497525367e-06 -0.005283768103 0.007878430006 0 7.21229084 18.32128513 884.7259339 0.002260587063 +2.499101054e-06 -0.003525721235 0.01251545004 0 -11.58405914 7.128865776 1014.281562 0.001971839058 +2.496480529e-06 0.007651301138 -0.01375455375 0 27.28623313 7.837201856 1069.482504 0.001870063318 +2.496740099e-06 -0.0006302398769 -0.0125871064 0 -7.055419433 -24.31450971 991.0387503 0.00201808456 +2.492601765e-06 0.006882975097 -0.01128081363 0 24.13032439 -27.54868367 951.0109517 0.002103025203 +2.498933297e-06 -0.009123042198 -0.006017662135 0 -12.47137815 9.277920087 1064.034775 0.001879637815 +2.49868795e-06 -0.001497912765 -0.01266007337 0 -14.57758206 1.128268237 902.41603 0.002216272687 +2.497228036e-06 0.008251291099 0.01090699662 0 22.19870989 -5.353057061 969.4197411 0.002063089821 +2.496424959e-06 0.005234779017 0.006092049081 0 -8.530024118 22.8167541 910.4845772 0.002196632486 +2.496424061e-06 0.006338912332 -0.01423082625 0 25.60308815 -8.662267706 1010.142658 0.001979918366 +2.497088634e-06 7.520895917e-05 -0.001268075772 0 20.39768737 -9.852488098 938.3471753 0.002131407279 +2.499871456e-06 0.0005813004682 0.01463340394 0 -4.925894237 -2.262646641 1069.068566 0.001870787397 +2.498048189e-06 -0.008885717671 0.01362285159 0 16.31992412 6.291929513 885.0111829 0.00225985845 +2.497465984e-06 -0.009947290262 -0.01037841549 0 -18.88588004 -13.8340565 1039.508947 0.001923985364 +2.497516894e-06 -0.008755787667 0.002064716332 0 13.65869715 15.32618941 920.8727306 0.00217185278 +2.499234433e-06 -0.002051007268 0.00419120613 0 -10.12290355 7.280457346 1007.577224 0.001984959518 +2.497780902e-06 -0.001779931812 -0.01304040707 0 -17.69905189 -6.990266327 902.9808935 0.002214886289 +2.49724552e-06 0.004207150578 -0.001893838188 0 -21.07836525 7.709167232 955.8373739 0.00209240615 +2.499999076e-06 0.00466931453 -0.01044300225 0 0.1438558629 0.4340422377 1063.429989 0.001880706789 +2.497743061e-06 0.009048057823 -0.01394217765 0 -8.758648791 -20.53977009 1050.636421 0.001903608098 +2.496329194e-06 0.009710154333 -0.01260667427 0 23.79616844 2.339864674 881.9855723 0.002267610789 +2.499548866e-06 0.009739884147 0.004477050744 0 -7.170871992 4.511085589 891.8221801 0.002242599528 +2.498863287e-06 -0.002632065774 0.006768939206 0 -8.511518097 -11.6329782 955.8267759 0.002092429351 +2.499679034e-06 0.002326675467 0.01144976603 0 -7.983796931 1.227573183 1008.133233 0.001983864765 +2.499497248e-06 0.002716971422 -0.006297677339 0 8.282033841 -5.52099085 992.5535484 0.002015004634 +2.497854468e-06 0.009691718044 0.0005305844452 0 7.665253418 20.80394232 1069.956138 0.001869235502 +2.497959412e-06 0.005688468795 0.003172414626 0 5.134802979 17.53442301 904.1323415 0.002212065544 +2.494195851e-06 -0.003864331851 -0.01010413381 0 18.06493872 -28.35466796 985.9155167 0.00202857138 +2.497129024e-06 0.001416636766 -0.00526049654 0 -23.82597431 6.826663568 1033.871173 0.001934476996 +2.499138816e-06 -0.0074939341 -0.01038795074 0 6.322262928 -12.15796679 1044.032015 0.001915650067 +2.494924832e-06 0.001897455757 -0.007191508971 0 24.53418477 -18.10339527 956.2924516 0.002091410422 +2.499646463e-06 -6.655111909e-05 -0.0003253350221 0 3.874810523 -6.979088505 949.2670696 0.002106888634 +2.498941619e-06 0.007433657432 0.0002414676896 0 -9.457377358 10.63215937 977.8928529 0.002045213843 +2.497619595e-06 -0.001805556011 -0.01419184021 0 -8.986356457 -19.7341282 993.4391854 0.002013208286 +2.499719513e-06 0.001817267393 -0.01431025135 0 4.58269332 5.532097114 959.084668 0.002085321627 +2.49259958e-06 -0.00983296114 0.01410410067 0 -21.93264281 29.68528411 958.3046426 0.002087019003 +2.49844987e-06 0.0008327056374 0.007008198006 0 11.652896 13.80409437 1025.739635 0.001949812537 +2.498599937e-06 0.002231877041 0.003204590916 0 -11.74211614 -8.877285631 879.4940302 0.002274034765 +2.498472626e-06 0.004217156451 -0.0126644991 0 -11.74263235 9.903558057 878.7009111 0.002276087318 +2.497639061e-06 0.005271609607 0.0004931510333 0 18.39548201 -11.18593989 990.4270371 0.002019330981 +2.497602975e-06 -0.0001145001547 -0.01266277793 0 20.97821211 6.221904513 999.0068576 0.002001988259 +2.498272911e-06 -0.005820272882 0.007639405124 0 -14.06522253 -8.868160776 894.422811 0.002236078928 +2.496406093e-06 -0.003532878407 -0.0004581555957 0 18.93400548 -15.7776569 918.7890154 0.00217677831 +2.495682675e-06 -0.009419794152 -0.01118752858 0 -28.32943812 8.933349095 1010.228208 0.001979750698 +2.497192512e-06 0.003260799898 -0.006685653557 0 16.00622218 15.83749806 949.8563337 0.00210558158 +2.497338014e-06 -0.000409064889 0.00955506772 0 19.26411264 -14.0413807 1032.724783 0.001936624387 +2.497685526e-06 -0.002920496487 0.008253023245 0 -18.44848586 -11.050049 999.1726523 0.002001656066 +2.497196302e-06 -0.004673405923 -0.002904336099 0 -20.98299982 -12.255627 1025.750416 0.001949792044 +2.498103911e-06 -0.0007246937184 -0.0003477622708 0 -18.81680696 -8.236181676 1054.484889 0.001896660655 +2.497748647e-06 -0.001128302091 -0.01059858968 0 -22.00495808 -5.271968522 1065.998152 0.001876175861 +2.494494647e-06 -0.006535893288 0.006609360483 0 -26.63183981 22.32136894 1046.349307 0.001911407583 +2.498013478e-06 0.005424023964 0.01366476028 0 16.71974455 12.31499234 1041.484199 0.001920336384 +2.499750459e-06 0.004716780675 0.002217363215 0 -6.22460945 -2.654122124 957.819062 0.002088077048 +2.498487402e-06 -0.007878760928 -0.006139039421 0 -17.96186266 0.1225369373 1032.490808 0.001937063251 +2.498049592e-06 0.009587332052 0.00991120303 0 -15.8730637 -9.970699688 948.8048895 0.002107914938 +2.497212186e-06 0.003927210364 -0.001541969853 0 16.27345395 -17.88804177 1023.712102 0.001953674277 +2.499390696e-06 -0.006855521272 -0.01485983418 0 9.592210385 -4.530424074 960.8873829 0.002081409368 +2.496385845e-06 0.004626980401 -0.0008083514334 0 -11.95489284 25.7225275 1054.453353 0.001896717379 +2.498646664e-06 -0.000902210963 -0.002192170923 0 -14.70425474 -5.224766674 948.3210255 0.002108990464 +2.499121023e-06 0.005457149609 0.01420119772 0 -2.830043266 12.2268816 946.4274388 0.002113210076 +2.497875466e-06 0.002025985699 0.005008184141 0 -15.797541 15.34507055 1068.072218 0.001872532556 +2.49697849e-06 -0.004990715161 0.004835203285 0 20.84396372 -10.16976241 943.0284005 0.002120826901 +2.497821367e-06 -0.008027086728 0.01080091545 0 6.935861886 19.87412258 1008.080949 0.001983967659 +2.497955506e-06 -0.0007077268278 -0.006032115966 0 15.42600518 15.12506418 1068.049346 0.001872572656 +2.498980542e-06 0.007467311081 -0.01089420392 0 -14.00652991 5.022424367 1041.910126 0.00191955136 +2.499739406e-06 -0.008963691797 -0.01462217279 0 -5.535412791 -4.33005122 973.4318924 0.002054586475 +2.49947347e-06 -0.007415204816 -0.01479019545 0 0.2191407604 10.24054475 998.0713466 0.002003864761 +2.499630549e-06 7.86565803e-05 -0.006952614142 0 4.50011188 8.011635365 1068.930689 0.001871028702 +2.499878507e-06 -0.007126401644 0.01380178081 0 -4.568048838 0.9907433473 948.2289714 0.002109195205 +2.494463334e-06 0.00592784219 -0.01259640573 0 19.89398547 -23.94625206 934.7706557 0.002139562242 +2.499524705e-06 -0.009044015105 0.003202396736 0 -0.9397706849 9.397591049 968.6112762 0.002064811808 +2.493934003e-06 0.007163045267 -0.01239549978 0 -18.05479057 -30.70997507 1021.838944 0.001957255605 +2.498261656e-06 -0.00882767702 -0.008654827131 0 15.89129259 -7.577174233 943.9464844 0.002118764181 +2.499336468e-06 0.008877980895 0.01302826267 0 -10.64746071 -0.3624430959 924.7161295 0.002162825905 +2.499485832e-06 -0.005570634673 -0.005342187148 0 -8.867346842 -1.267317327 883.2494794 0.002264365897 +2.499962753e-06 0.004295684905 0.002242486062 0 -1.383098178 2.498904567 1046.437679 0.001911246164 +2.498469891e-06 -0.005904453811 0.004952546891 0 13.42663227 10.84457213 986.3798267 0.002027616488 +2.498178728e-06 -0.006963729262 0.01492119263 0 -16.18096826 6.060700111 905.0898773 0.002209725299 +2.499358801e-06 -0.006610414893 0.003700399983 0 7.207224396 -8.906315193 1011.634737 0.001976998146 +2.495985087e-06 -0.006957316571 -0.007344920305 0 -8.628965809 -27.76451167 1025.41013 0.001950439089 +2.496725936e-06 0.004912014008 -0.005049281311 0 -3.122841221 -26.77635191 1052.962989 0.001899401994 +2.498180638e-06 -0.00551486331 -0.004131613732 0 -1.831228469 -18.78632039 989.241154 0.002021751715 +2.497923091e-06 0.005944370683 -0.009950806322 0 3.883835487 -20.8196349 1038.824483 0.001925253047 +2.498824874e-06 -0.004303530916 -0.008030342865 0 -10.56694845 10.34694774 964.5175654 0.002073575507 +2.498410222e-06 -0.004046726795 0.01132526594 0 -12.11740238 12.90990385 992.7272677 0.002014652025 +2.496195735e-06 0.00659376476 0.006703019561 0 -17.46907209 18.71127622 927.5026739 0.002156328015 +2.499582972e-06 -0.007584401201 -0.002601920196 0 -7.527666428 3.03940149 888.853771 0.002250088896 +2.497972493e-06 0.0001852773502 -0.008441119124 0 -1.749197645 -21.49511125 1070.642981 0.001868036344 +2.498357856e-06 0.007225163863 0.005447054082 0 0.8692364638 -17.65956633 975.3889405 0.002050464094 +2.499749327e-06 -0.004257491003 0.002652523241 0 -5.853921791 4.014917938 1002.485153 0.001995042014 +2.496315792e-06 0.004586878642 -0.01095610014 0 -20.31990955 15.62326279 943.7360091 0.002119236715 +2.498966807e-06 -0.003836755268 0.01306798798 0 7.877392813 11.42942303 965.4969913 0.002071472017 +2.498168956e-06 -0.009187877886 0.003656458855 0 -16.71965717 1.511893358 877.0251431 0.002280436332 +2.493268678e-06 -0.002972074053 0.004680032542 0 -23.57548443 24.98502155 935.2912169 0.002138371412 +2.497191059e-06 0.005277704909 -0.008850393689 0 -19.58591275 -13.27184997 997.7635586 0.002004482909 +2.498587886e-06 0.007396365288 -0.005846976859 0 -12.16536665 -9.336506272 912.3172204 0.002192219938 +2.499030595e-06 -0.001417654501 -0.01374905921 0 -13.28485712 -1.767894265 962.3610324 0.002078222136 +2.498695062e-06 0.009841816979 0.01049273437 0 10.57013394 11.36859662 960.7027341 0.002081809418 +2.498251988e-06 0.001862995396 -0.01190405929 0 13.57023953 -10.73495938 925.1626975 0.002161781928 +2.499173398e-06 -0.00224379838 0.01455648953 0 -12.26817433 0.9173791424 956.6952289 0.00209052992 +2.498001091e-06 -0.002186828223 -0.007317594099 0 -17.96885764 7.064533491 965.3590514 0.002071768009 +2.498004455e-06 -0.005418010773 0.005449579835 0 13.81296219 -10.96276557 882.4507566 0.002266415417 +2.498572814e-06 -0.002066626521 0.002642953321 0 10.30909325 12.30964253 950.1607605 0.002104906962 +2.499043633e-06 -0.005637574312 -0.01476818629 0 13.96448997 3.386932297 1038.837553 0.001925228823 +2.499182623e-06 -0.004120602501 0.01075674513 0 2.826379344 11.27782569 909.2290435 0.002199665765 +2.494495966e-06 -0.001613554242 0.01473164201 0 9.674924577 33.72107364 1056.48724 0.001893065931 +2.497434086e-06 0.003303534254 -0.000512216175 0 16.09502113 13.12833882 916.5122474 0.002182185787 +2.49766836e-06 -0.0002435061289 -0.01049662132 0 21.70701388 -7.709084629 1066.340534 0.001875573455 +2.499538482e-06 -0.001971189547 0.007359057139 0 -8.367152202 -4.30912623 979.5421258 0.002041770279 +2.498451043e-06 -0.00390607255 0.007187726651 0 13.5399437 -9.694048094 945.8952079 0.002114399125 +2.499466801e-06 0.0007650047448 0.006788184524 0 2.689644665 10.49790102 1049.334081 0.001905970687 +2.495047157e-06 0.002142926049 0.006358948855 0 25.28375852 -18.2282555 989.6112259 0.002020995668 +2.498625958e-06 -0.006166931042 0.01011308278 0 -15.71719273 -2.048808921 955.9370925 0.002092187881 +2.495910671e-06 0.0001706591155 0.005037329241 0 18.98840606 22.83950098 1037.950089 0.001926874925 +2.499114701e-06 0.002057710504 -0.004156818443 0 11.80841875 6.914479665 1028.233774 0.001945082966 +2.497841916e-06 0.008504233612 0.01331848254 0 17.01565734 8.95836461 925.3046054 0.00216145039 +2.498299062e-06 0.009813745553 0.01194500521 0 9.313920462 14.93444591 954.0286282 0.002096373149 +2.496418644e-06 0.00543282195 0.001454803075 0 -16.18316063 23.13847027 1054.469842 0.00189668772 +2.498523553e-06 -0.003293330376 0.01286193251 0 15.14721954 6.420113133 957.1694152 0.002089494261 +2.497819781e-06 -0.00433485535 -0.01056209693 0 15.79960723 -11.38094929 932.1813345 0.002145505307 +2.499555563e-06 -0.004999695085 0.01043723126 0 4.302347514 7.335361433 901.9305503 0.002217465635 +2.497713191e-06 0.008139233575 0.00753624483 0 -8.965372238 -19.15749648 988.6964554 0.002022865551 +2.497513082e-06 0.003310703491 -0.007132763676 0 -15.91563493 12.95335586 919.7782791 0.002174437085 +2.493459995e-06 0.003000859888 0.01432148705 0 -16.79281661 29.10405449 928.1645521 0.002154790328 +2.49704666e-06 0.003622620604 0.004748139835 0 23.92192801 -2.961112492 991.3657047 0.002017418991 +2.496659266e-06 -0.0006425873609 -0.004561110539 0 -17.6524174 17.71069359 966.90172 0.002068462553 +2.496811202e-06 0.001713097263 0.01153518178 0 22.59777113 10.63437029 988.4816511 0.002023305134 +2.496332787e-06 0.00611583156 -0.00712738737 0 26.77141217 5.644553172 1009.703613 0.001980779284 +2.49793903e-06 -0.00657566505 0.007033463682 0 3.326459757 -21.24561929 1058.871789 0.001888802801 +2.499253713e-06 0.009605393894 -0.008633025025 0 -3.904769301 11.02881718 957.539353 0.002088687001 +2.499456803e-06 -0.0004713002173 0.01092055177 0 -9.544092741 3.77273633 984.5390211 0.002031407549 +2.498815613e-06 0.003698361088 0.008324983923 0 12.41694548 6.316279228 904.996385 0.002209953579 +2.495299704e-06 -0.006652885182 -0.004721033969 0 17.07098505 -27.7508218 1061.894571 0.001883426146 +2.499587672e-06 -0.006251685801 0.002316578671 0 7.65052518 5.718843921 1051.765863 0.001901563903 +2.497957578e-06 -0.0002936672419 0.006735688203 0 -2.075201675 -21.34720481 1060.871205 0.001885242988 +2.497985027e-06 0.007313180133 0.01360970414 0 18.48877781 -2.473955274 928.9253872 0.00215302545 +2.497924708e-06 0.004873761358 -0.01161911581 0 -1.239137775 -18.24499258 897.3321246 0.002228829154 +2.496545803e-06 0.00665067134 -0.01129416798 0 22.23926669 12.33698477 967.0895321 0.00206806085 +2.499533776e-06 0.001141666193 -0.01076264108 0 8.854299287 -0.8748745413 921.3430791 0.002170744042 +2.498423272e-06 -0.001727211764 0.008586818897 0 14.20553878 -7.089214852 893.8216575 0.002237582837 +2.497476935e-06 0.006236653645 -0.004320800949 0 -12.95116001 -20.21620298 1068.387084 0.001871980699 +2.498032424e-06 -0.002590473485 0.01371427744 0 -17.87744382 -8.45100096 996.5334706 0.002006957176 +2.499016587e-06 -0.004348805975 0.01331284469 0 -13.16288753 6.426659158 1044.313671 0.001915133408 +2.498950083e-06 -0.001453841887 0.006772025283 0 10.52921639 -8.124559292 917.6343205 0.002179517434 +2.493357619e-06 0.008925163946 -0.001060044772 0 24.77600423 -23.09845855 928.4216416 0.002154193645 +2.498587453e-06 0.002298780032 0.0007187322923 0 16.44749644 3.599974637 1001.50399 0.001996996537 +2.498802035e-06 -0.005253472058 -0.00090879553 0 -13.51183896 2.923103497 892.95909 0.002239744264 +2.498816334e-06 -0.004207219267 0.004150726839 0 -11.66180663 -10.3469249 1013.087788 0.001974162579 +2.498714468e-06 -0.007564149052 0.008518132037 0 7.051268043 -14.33595696 996.1717731 0.002007685877 +2.498357297e-06 0.009912001584 -0.001625495357 0 -13.1317466 -13.31100862 1031.335861 0.001939232481 +2.498451115e-06 0.0002658805717 0.0147676674 0 -16.37068034 -7.27832342 1017.674265 0.00196526538 +2.494141584e-06 -0.003658546261 0.01468835534 0 19.94689317 25.78752398 951.5988817 0.002101725883 +2.496140662e-06 -0.003657056573 0.001407863034 0 -17.77743009 -20.77826081 983.6982866 0.002033143726 +2.49589789e-06 0.009203782869 -0.01284481937 0 21.80328152 -20.18346742 1036.65472 0.001929282684 +2.497185313e-06 0.003997412864 -0.01323779501 0 1.665058405 -25.35648926 1070.557407 0.001868185664 +2.497360969e-06 -0.002960823579 0.0001857105084 0 10.53096254 -21.49357349 1041.407408 0.001920477985 +2.498220101e-06 -0.008772351919 -0.01420615494 0 -18.22610854 -5.408626931 1007.377084 0.001985353877 +2.497917765e-06 -0.003577465457 0.0003216699581 0 -6.140582203 19.81870682 1016.400657 0.001967727969 +2.498895723e-06 0.005045895865 0.01024013923 0 4.591815336 12.56376415 899.951535 0.002222341895 +2.497754059e-06 -0.00583352867 -0.00174425341 0 14.72631084 15.77641536 1017.93573 0.001964760584 +2.498613867e-06 4.02810052e-05 -0.002687642472 0 -3.965157727 16.88412227 1041.425678 0.001920444292 +2.496204473e-06 -0.005532025374 0.008417098587 0 -23.55698104 -12.72539018 971.2270685 0.002059250679 +2.497681058e-06 0.001365244463 -0.005284032219 0 9.08794441 21.1919107 1070.329007 0.00186858432 +2.497392503e-06 0.009632070726 -0.004236388367 0 12.38438431 18.076006 959.1262717 0.002085231172 +2.498275249e-06 -0.002922053696 0.0004785429756 0 15.69845197 5.232364321 890.7200266 0.002245374461 +2.496869298e-06 -0.009895220161 0.001419529282 0 -13.30612496 18.26587076 902.694716 0.002215588465 +2.498490502e-06 -0.002734107277 0.01087562047 0 11.37628919 -10.85767349 904.8788072 0.002210240735 +2.496819157e-06 -0.004348712461 -0.01377382293 0 -18.02813601 16.25979652 962.0766429 0.002078836457 +2.499844223e-06 0.0003701019054 0.002908317775 0 5.030337102 -2.758311337 1027.787829 0.001945926916 +2.497704162e-06 0.003034299612 -0.007241029653 0 16.84531359 -11.72449802 957.4664897 0.002088845951 +2.495358094e-06 -0.007371081579 -0.005043487691 0 -17.17980406 -27.42549998 1061.379062 0.001884340921 +2.497951633e-06 -0.001168060326 0.002898497251 0 -7.868132833 18.87843225 1010.166501 0.001979871634 +2.498102073e-06 0.004866291499 0.00341711405 0 12.13505224 -13.18293395 919.4061916 0.002175317089 +2.497289743e-06 -0.008580022426 0.01496187352 0 7.19022006 21.73846638 983.052187 0.002034479986 +2.494017465e-06 -0.009608467445 0.00160520569 0 -24.64222817 22.27701472 959.4875304 0.002084446057 +2.498242804e-06 -0.005064541372 0.01450386059 0 -0.5873968296 18.65480162 995.327892 0.002009388078 +2.497803724e-06 -0.003194671972 0.007268136812 0 21.26862223 -1.90398743 1018.523545 0.001963626673 +2.497093149e-06 -0.007984693572 -0.00438964782 0 -12.96350283 -16.64495654 874.6139336 0.002286723231 +2.496015244e-06 -0.008324232614 0.008890231289 0 -20.69344155 -21.03595364 1044.638585 0.001914537744 +2.499055383e-06 -0.0001764108613 0.0002895423328 0 -13.42060015 1.007542545 979.011797 0.002042876302 +2.495225869e-06 -0.006764155473 0.005087802841 0 -28.87357223 13.29118522 1027.92183 0.001945673243 +2.496107185e-06 -0.0009420586796 -0.008707518554 0 9.259306369 -26.4469261 1003.65048 0.001992725595 +2.495664323e-06 -0.0005684105819 0.01383442898 0 -19.32913735 19.24414812 925.6495189 0.002160644995 +2.498198835e-06 -0.007899088729 0.00459319453 0 -16.15534658 -4.919038231 889.52806 0.002248383261 +2.49760459e-06 0.002273779395 -0.01062497129 0 -8.026774395 -19.50667025 963.3616034 0.002076063643 +2.496306947e-06 -0.00739999861 0.01278058551 0 -23.07394107 -14.64385795 1005.00443 0.001990040979 +2.496913501e-06 0.004939767607 -0.004365347733 0 25.18745272 -1.714046753 1015.636511 0.001969208451 +2.495473174e-06 -0.009410819565 -0.006730498164 0 -30.50040345 -5.349316236 1028.436123 0.001944700264 +2.498882149e-06 0.005127626709 -0.002985592168 0 14.7189408 -6.094885091 1065.274745 0.001877449935 +2.493462231e-06 0.001349885077 0.01146877545 0 20.00069748 27.84192988 947.1088059 0.002111689795 +2.495996824e-06 0.008266902873 0.01090414814 0 21.19434067 20.74589152 1047.520021 0.001909271383 +2.499675644e-06 0.009908785145 0.01358661257 0 -1.449428366 -7.241898031 916.925074 0.002181203303 +2.496042473e-06 0.008172651599 0.004272421869 0 12.63949618 22.90968334 929.473059 0.002151756827 +2.498216814e-06 0.009836215335 0.005712973396 0 -4.457900152 -18.68038797 1016.678156 0.001967190884 +2.496313617e-06 -0.007735811612 0.01192985439 0 -27.22358226 2.179778182 1005.257781 0.001989539437 +2.498555832e-06 -0.002586780274 -0.009007896879 0 5.784002825 -16.10590185 1006.718954 0.001986651777 +2.49998428e-06 -0.00722030485 -0.001025893881 0 0.343944113 1.593578905 919.4171418 0.002175291181 +2.495447004e-06 -0.008672852954 0.008380862293 0 -9.736044974 30.63389757 1064.479298 0.001878852885 +2.499551728e-06 0.005350573123 -0.0004871865688 0 7.150777279 -5.269788516 938.0695942 0.002132037977 +2.499689561e-06 0.00521119616 0.0006210074387 0 6.958702899 1.297676375 898.3142279 0.002226392434 +2.499979214e-06 -0.00794269044 -0.009327199194 0 -2.011914606 -0.2647852969 995.2565169 0.002009532182 +2.497849354e-06 0.009954480017 0.004154903458 0 -13.54082673 -13.56119957 923.7348011 0.002165123581 +2.497530131e-06 0.008614906142 0.005806246817 0 19.63725176 8.316210402 959.1536992 0.002085171544 +2.494785771e-06 0.009868615442 -0.007100766271 0 17.60508899 -26.58678593 986.6586731 0.002027043449 +2.499519401e-06 -0.001604873575 -0.01111549219 0 0.9509723131 -9.55937726 979.7834012 0.002041267486 +2.491681475e-06 -0.006325257374 -0.01419818366 0 -23.30937551 -27.36898214 880.2693757 0.002272031784 +2.499153155e-06 -0.00942495971 -0.0122671306 0 -9.278679119 8.328991069 957.9557755 0.002087779051 +2.49645446e-06 -0.002816526047 -0.002286407955 0 12.62821399 -23.7236403 1008.710093 0.001982730236 +2.499350198e-06 -0.0005309925601 -0.0004219155363 0 11.12802118 -3.709054671 1028.834808 0.00194394667 +2.496200675e-06 0.001177691887 -0.006198294768 0 -6.92323201 -27.94029413 1043.648502 0.001916354018 +2.498754287e-06 -0.003472394762 0.009955426182 0 2.579520653 -15.56409167 999.3160999 0.002001368736 +2.497192127e-06 -0.008464451605 -0.001253655567 0 -11.02961138 19.13735473 931.6965995 0.002146621552 +2.499679926e-06 -0.003752737888 0.01139967596 0 7.59741371 -2.977437154 1019.834897 0.00196110175 +2.499984788e-06 0.009005490849 -0.0049523459 0 1.235683994 0.9953327445 909.6691007 0.002198601666 +2.497562421e-06 -0.008892358975 0.008118599004 0 -2.935046001 22.28643983 1017.703736 0.001965208469 +2.496167769e-06 -0.004758299645 -0.01482684421 0 -23.77007048 7.192649546 896.5284842 0.002230827057 +2.498203388e-06 0.009059726023 0.006457783983 0 -16.46100566 -8.971877074 988.7312349 0.002022794395 +2.497934646e-06 0.00771007569 0.01300977535 0 16.94470745 -10.50766159 980.7093873 0.00203934012 +2.495117476e-06 0.006082552918 -0.0009145897091 0 19.21309961 -21.12543654 913.1393982 0.002190246094 +2.499352559e-06 0.006370858098 0.008765602231 0 11.83586907 2.6378125 1065.538683 0.001876984883 +2.498214545e-06 -0.006949526351 0.003783213424 0 14.61513443 -13.34848719 1047.171096 0.001909907566 +2.498208393e-06 -0.007205025917 -0.001797804432 0 -10.20234806 17.0243294 1048.210678 0.001908013381 +2.494194484e-06 -0.006200095187 -0.004347905957 0 -26.5387427 -22.07120185 1012.098096 0.001976093037 +2.498895029e-06 0.001791304373 -0.001222624748 0 13.08993674 -3.015254692 903.4453998 0.002213747505 +2.496981013e-06 -0.007985738008 0.004964060881 0 -10.40602948 19.6030671 902.7960909 0.002215339677 +2.499786776e-06 -0.002862697192 -0.0135746316 0 -5.361068958 -3.509888146 981.2161887 0.002038286795 +2.498466443e-06 0.00839137421 -0.0127746971 0 -17.17963594 5.608508635 1031.668238 0.001938607709 +2.498311278e-06 -0.001451744786 -0.01043275818 0 -7.970523305 -14.96437572 922.3290301 0.002168423561 +2.498747441e-06 0.008009528192 -0.01025655222 0 12.61812201 9.254347054 988.4692611 0.002023330496 +2.499281534e-06 0.004398477077 0.008402744131 0 -11.706569 -0.9357341001 979.5976621 0.002041654525 +2.498728073e-06 0.001591521385 0.002302878611 0 -11.25523117 10.53282126 966.3021567 0.002069745975 +2.498434171e-06 -0.001310321596 -0.007918185471 0 6.59636405 -17.47878446 1055.445618 0.001894934203 +2.497337427e-06 -0.0009298395179 0.002269461988 0 -8.171142195 22.83964053 1050.759168 0.001903385724 +2.495557313e-06 -0.005878471048 0.01251714312 0 12.70719835 27.35613258 1011.236741 0.001977776241 +2.498729736e-06 0.001707836231 0.006852293853 0 8.484961279 13.00627473 974.1050301 0.00205316669 +2.49551146e-06 0.005552897528 0.003535326426 0 24.44999635 -20.25133137 1058.894175 0.001888762869 +2.496302e-06 0.002574248021 0.005684866598 0 -5.440150672 24.37070898 917.6731176 0.00217942529 +2.498925515e-06 -0.003620269587 -0.01467092015 0 8.759486977 10.46297719 930.6954349 0.002148930708 +2.494416698e-06 0.007448090105 -0.01341657032 0 11.76857901 -31.52894499 1006.256265 0.001987565264 +2.498189479e-06 -0.009719890989 -0.01023889876 0 -0.3814760976 -19.76146381 1038.401389 0.001926037486 +2.49374854e-06 -0.002157727256 -0.01119533217 0 -17.37118964 -26.25418896 889.4720465 0.00224852485 +2.496084679e-06 0.008465419575 -0.007826975416 0 -12.99513872 -25.0691127 1008.47755 0.00198318743 +2.496875919e-06 -0.007867818847 -0.006914539877 0 18.69715309 17.97632698 1037.149229 0.001928362808 +2.49943364e-06 0.007317411439 0.005220718032 0 6.174911955 9.202221223 1041.164393 0.001920926238 +2.499838629e-06 0.009971676311 -0.01041600602 0 -2.078646305 -4.521808378 875.9975038 0.002283111529 +2.495842957e-06 -0.002545087161 0.00739045002 0 21.53156734 17.80982635 968.4811777 0.002065089179 +2.497673616e-06 -0.008738908721 0.01416378493 0 -17.82226916 -14.63802011 1068.832538 0.001871200519 +2.49617584e-06 0.0004181370512 0.01453390524 0 -3.672103155 24.7238132 903.2776764 0.002214158561 +2.49799149e-06 0.008525741496 -0.0031890431 0 19.02593225 7.520616853 1020.442622 0.001959933815 +2.496710615e-06 0.00755406403 -0.01125832019 0 17.63779381 -16.53219276 942.0419829 0.002123047631 +2.499238848e-06 -0.003069629096 0.01121939391 0 -3.057776667 -11.65596063 976.5628893 0.002047999184 +2.499897395e-06 0.003341086945 -0.004214342495 0 -3.30323621 -2.868686289 965.7685331 0.002070889588 +2.498467559e-06 0.002044256702 0.008789675978 0 6.444159669 15.03957817 934.3950801 0.002140422229 +2.499968905e-06 -0.003418758977 0.002959120036 0 2.305664292 -0.1025018459 925.4632188 0.002161079943 +2.497891222e-06 -0.001859688945 0.01342814274 0 15.86774583 -10.25536746 919.688273 0.002174649888 +2.495481816e-06 0.009571656324 -0.007449643398 0 28.93301558 -10.85260908 1027.275857 0.001946896724 +2.499537808e-06 0.0002928755945 -0.007533878011 0 8.500235272 -0.7820929995 887.7794783 0.002252811705 +2.498367654e-06 -0.00447282027 -0.007736132022 0 5.495933548 18.40242988 1062.674235 0.001882044313 +2.499174828e-06 0.000333910482 0.007405375494 0 -13.01289592 -3.909586222 1057.544966 0.00189117254 +2.498252592e-06 -0.009816394011 0.009401939681 0 -17.26341079 -5.41202263 967.5136612 0.002067154274 +2.497559671e-06 0.002627879037 0.01355983638 0 -4.883697781 21.21654005 985.1158519 0.002030218066 +2.499609887e-06 0.0008474571165 -0.006386406831 0 3.246710772 7.825772641 959.1300244 0.002085223014 +2.496665199e-06 -0.003637517383 0.0006786848302 0 -16.28403761 -20.36657498 1009.198691 0.001981770306 +2.49872642e-06 -0.002408342441 0.005765256027 0 14.41504603 8.200982037 1038.949422 0.001925021524 +2.499909237e-06 0.00309894362 -0.01355294928 0 2.997733354 2.931819559 984.1455491 0.002032219728 +2.499130229e-06 -0.001311296839 -0.01472804787 0 3.312295926 12.5371787 983.0534936 0.002034477282 +2.499988076e-06 0.0005630201334 0.01025456862 0 0.4818581124 1.345677677 925.5628203 0.002160847385 +2.498174555e-06 -0.008257112554 -0.001186375036 0 -15.5253886 12.82369661 1053.583682 0.001898283007 +2.498937072e-06 -0.001462726234 0.01443490783 0 -11.95989596 9.115905521 1031.220012 0.001939450337 +2.49617707e-06 -0.009441954773 0.002424077452 0 -28.17827191 -2.931928312 1023.977071 0.001953168734 +2.499633045e-06 0.008877218696 0.006231573697 0 8.541320811 -3.255540289 1066.927938 0.001874540846 +2.497385227e-06 0.002024515755 0.0006352054607 0 12.19513752 17.58508304 935.4265803 0.002138061973 +2.496823868e-06 -0.004493328794 -0.01307782531 0 -7.713362509 -21.31694898 899.0244191 0.002224633678 +2.4989479e-06 -0.005942987008 0.002269504687 0 -2.465971335 -12.76305634 895.985994 0.00223217775 +2.499317499e-06 0.002377773356 0.01498589401 0 -8.886736297 5.639876638 900.7912957 0.002220270122 +2.499773112e-06 0.004150713389 -0.00605767285 0 5.871986038 2.875493422 970.5668111 0.002060651546 +2.497740752e-06 0.001280322755 0.006901888386 0 -4.289806301 -19.38981261 933.912621 0.002141527971 +2.496924805e-06 0.008269654131 0.01068702492 0 -20.00585883 17.49066499 1071.023751 0.001867372221 +2.499206437e-06 -0.001178671257 -0.01002404337 0 3.949603974 -12.30206306 1025.469984 0.001950325246 +2.497527941e-06 0.008241060795 0.01384247849 0 -16.37244754 -11.87560304 909.2896906 0.002199519054 +2.495850333e-06 -0.006723473188 0.006494795617 0 -15.1025027 26.14149396 1047.315268 0.001909644651 +2.499043163e-06 -0.002586574024 0.01221824071 0 11.85364436 -3.485119557 893.0157606 0.00223960213 +2.499768283e-06 0.001802920769 0.01233297453 0 -3.574035924 5.599660006 975.7922994 0.002049616503 +2.495563815e-06 -0.001436730828 0.006538528833 0 23.28495654 -21.10286897 1054.299365 0.001896994408 +2.497233288e-06 0.004716768241 -0.00886498339 0 -12.38284103 -19.081233 966.602043 0.002069103841 +2.499963928e-06 -0.003199034971 0.003702112134 0 -1.983245144 -1.727962316 979.3203003 0.00204223276 +2.497284341e-06 -0.002956647058 -0.001481172689 0 16.46418295 17.35646372 1026.096949 0.001949133561 +2.498373586e-06 0.001248258729 -0.004628550396 0 -2.485187368 -16.9379949 948.9655832 0.002107557993 +2.496228719e-06 0.008873955216 -0.01204534572 0 2.983223624 -24.47193574 897.1523559 0.00222927576 +2.497465159e-06 -0.0003319599153 -0.003818095566 0 18.78950896 12.39572316 999.354886 0.002001291061 +2.497340336e-06 0.004569270108 0.001475946105 0 23.16061776 -6.505655075 1042.651603 0.001918186281 +2.496413504e-06 0.004367208355 -0.009497689193 0 4.356480074 -23.5065875 892.1518952 0.002241770724 +2.494235977e-06 0.001051532081 -0.01461220918 0 10.11106895 -29.57892459 919.8692645 0.002174222009 +2.49779585e-06 0.005663575064 0.009559479214 0 8.054691565 -18.66583726 967.9412915 0.002066241019 +2.499806847e-06 0.007213608823 -0.005244863529 0 -0.4347707126 -5.634126482 909.1537519 0.002199847931 +2.495668897e-06 0.005633431161 0.00291381073 0 -18.3657354 -19.80007266 916.9999777 0.002181025135 +2.496882776e-06 -0.006030708691 -0.004346890091 0 -12.99679464 20.88930556 984.8631668 0.002030738957 +2.49963183e-06 -0.005508737108 -0.014061362 0 -7.861346489 0.4864550828 917.8327518 0.002179046233 +2.497083583e-06 0.003285651682 0.01082059222 0 -19.99919896 -9.170969669 910.5971685 0.002196360882 +2.498403072e-06 -0.00838607661 0.001767889434 0 -14.518209 -7.4084602 911.8101199 0.002193439134 +2.499095024e-06 0.005291173444 0.002563935919 0 -12.3252339 4.751916175 981.7377225 0.002037203984 +2.498830498e-06 -0.001792280446 -0.002324952171 0 -14.95823285 -5.015436223 1031.39188 0.001939127154 +2.497544874e-06 -0.0009600662952 -0.001963388524 0 20.15632201 5.057779866 937.4731742 0.002133394379 +2.496219458e-06 -0.0008202931145 0.01167822015 0 -10.9211615 25.49803641 1008.193115 0.001983746934 +2.497416234e-06 -0.006137354882 0.006482193712 0 6.857452424 22.48737693 1033.802014 0.001934606408 +2.498457631e-06 -0.005573277338 0.004238220484 0 -17.67382006 4.024244436 1031.802751 0.00193835498 +2.498675523e-06 0.004785764613 -0.0145204559 0 -9.397951333 -13.15905459 993.3390558 0.00201341122 +2.495558978e-06 -0.00770387508 -0.003762867996 0 -26.40495256 -7.597546404 921.3219894 0.002170793732 +2.496081281e-06 -0.0009080148907 -0.005494383594 0 16.74340647 20.51735923 945.3890224 0.002115531229 +2.498660986e-06 -0.007017984707 0.01335947694 0 2.60324522 -14.93810498 926.3971508 0.002158901286 +2.498628059e-06 0.004333179304 0.01159212346 0 -1.425980617 14.90214505 903.5578867 0.002213471909 +2.499832119e-06 -0.00757407764 0.001180096306 0 5.068266057 0.1708654663 875.1444034 0.002285337131 +2.497796856e-06 0.003584541925 0.01085665792 0 -20.38085116 -8.512999604 1051.872872 0.001901370454 +2.495039082e-06 -0.0008799668076 -0.01192673768 0 21.46143272 -18.27630153 894.25056 0.002236509642 +2.499134463e-06 -0.00085721171 -0.010940207 0 -10.54256633 -4.815512671 880.8060393 0.002270647465 +2.498970133e-06 -0.001597399181 0.01128148418 0 1.555704814 -14.21313306 996.1007839 0.002007828959 +2.498051514e-06 -0.00609820202 0.007044056403 0 18.92745392 -5.69691344 1000.997495 0.001998006997 +2.497972303e-06 0.008460137956 0.0021142553 0 20.44437128 2.166249032 1020.585753 0.001959658944 +2.498698194e-06 -0.005268437997 0.006250833585 0 5.153682868 -16.21120625 1054.02062 0.001897496085 +2.499289283e-06 -0.001817156798 -0.01097044637 0 6.685830285 -9.799412795 994.905386 0.002010241404 +2.497682146e-06 -0.002786034206 -0.009562298229 0 18.94961691 -10.14513621 997.9699301 0.002004068399 +2.49531139e-06 0.007066621953 -0.007966986322 0 11.90247349 -27.60456922 980.9906544 0.002038755406 +2.495572296e-06 0.009083372247 0.006292366034 0 30.43426968 4.489912268 1033.107094 0.001935907722 +2.499681099e-06 0.003570099897 -0.01456242401 0 -6.943366239 2.683924211 932.0625589 0.002145778715 +2.497786674e-06 0.007474640063 0.001333575232 0 19.90281257 -6.160540266 989.9199878 0.002020365307 +2.495978917e-06 -0.002924202303 0.01298020223 0 20.71274238 21.38898228 1049.282102 0.001906065104 +2.496426127e-06 0.009099007924 -0.005036493181 0 -15.70762356 23.60172273 1059.860165 0.001887041391 +2.497762743e-06 0.006621084115 0.000740349933 0 -22.36622349 -0.9469746225 1057.944283 0.001890458725 +2.49897522e-06 -0.006608616249 -0.01487627024 0 -1.334647336 14.67217391 1028.932346 0.001943762394 +2.496684127e-06 -0.0007979150815 0.01230543415 0 20.11529295 -10.36788074 878.3243946 0.002277063022 +2.495345242e-06 0.006831620261 0.01162598202 0 24.03844175 13.3124863 899.9663949 0.002222305201 +2.498532435e-06 -0.00692721603 0.005223529546 0 -3.542061724 15.94820775 953.3624488 0.002097838029 +2.497128089e-06 0.002250159243 0.0149744162 0 4.92154012 24.1245677 1026.895318 0.001947618189 +2.497120824e-06 0.009750112528 -0.001440121166 0 -17.86463706 -15.62151271 988.5204168 0.002023225789 +2.497263156e-06 -0.003707197406 0.003100768842 0 4.26453021 20.21242291 882.5865348 0.002266066749 +2.497718283e-06 0.004506901181 0.008228658023 0 7.536092166 20.07762133 1003.549534 0.001992926042 +2.498284229e-06 -0.000767120989 -0.0006011254876 0 0.6933230732 17.17699853 927.778613 0.002155686682 +2.499160142e-06 0.009574253289 -0.00597038334 0 -9.68882363 7.3570337 938.5495573 0.002130947678 +2.497072562e-06 -0.00869641399 0.01220330467 0 -22.87470245 7.578938022 995.45901 0.002009123409 +2.495492249e-06 -0.003994156509 0.01307912305 0 0.1337181503 28.50298728 948.6506905 0.002108257571 +2.499173512e-06 -0.006484414754 -0.007368667836 0 -12.19969022 0.7141799005 950.3959913 0.00210438598 +2.499848451e-06 0.006368357069 0.01207407083 0 -1.556363786 5.452464217 1029.910414 0.001941916475 +2.499423029e-06 0.004818294565 0.006325465059 0 8.115030065 -5.571184018 916.2499716 0.002182810436 +2.496125518e-06 -0.004567129272 0.006759095408 0 5.926804611 27.34680351 1004.614526 0.001990813339 +2.498309281e-06 0.0005181866512 0.006957558424 0 -4.395738131 -18.39585348 1028.292564 0.001944971762 +2.498413007e-06 -0.003839388993 0.01235780088 0 15.98459822 -10.33137924 1068.058675 0.0018725563 +2.496619438e-06 -0.0003225145629 0.004820907789 0 9.173463619 22.62560664 938.4670137 0.002131135107 +2.497254402e-06 0.002767809457 0.001717281388 0 24.37162646 -4.887873424 1060.315791 0.001886230514 +2.498363055e-06 -0.002013914576 -0.01499285938 0 5.459731902 15.5572715 910.9948522 0.002195402087 +2.496643696e-06 -0.006072559035 -0.002296260735 0 -6.250622779 -25.84857488 1025.917757 0.001949474006 +2.497826595e-06 0.003082191064 0.01067193267 0 7.232480008 -19.58958293 1001.25897 0.001997485226 +2.49964603e-06 -0.007266213847 -0.007455639769 0 1.6530367 7.258624396 884.7340752 0.002260566261 +2.498385233e-06 -0.005106460927 0.005473927273 0 16.65412388 -0.3965240942 926.765177 0.002158043968 +2.495038157e-06 -0.001979885171 0.007631988872 0 -21.64818156 -18.71010451 907.6229709 0.002203558156 +2.498780566e-06 0.002782136034 0.0003983647912 0 -12.99614309 7.618054954 964.4431885 0.002073735419 +2.498239039e-06 0.0002199037606 -0.0141237124 0 -6.314158243 -17.22095814 977.108306 0.002046856001 +2.49929468e-06 -0.008128131288 -0.006858753185 0 -8.359905577 -8.883678259 1026.972646 0.00194747154 +2.499442466e-06 0.005145424064 0.01186062287 0 11.16297409 -1.656026049 1068.612181 0.001871586377 +2.498837257e-06 -0.0001483947597 -0.007578442174 0 9.816095922 -10.82842708 958.2496817 0.002087138705 +2.494826169e-06 -0.003481289526 -0.01466889746 0 -25.04611028 -23.15549674 1059.550956 0.001887592086 +2.498899502e-06 -0.008664546935 0.006209231189 0 7.44687322 -10.67106611 876.9656087 0.002280591143 +2.496153412e-06 0.009994181977 0.01281985574 0 -5.40594043 24.07336038 889.0295999 0.002249643882 +2.497990984e-06 0.009833330186 0.000564611312 0 -2.38878835 17.46897625 879.331808 0.002274454287 +2.497890878e-06 -0.0004537444795 0.006181156843 0 -7.310367099 19.41704013 1009.868026 0.0019804568 +2.49834931e-06 -0.004200643934 -0.01266457347 0 -15.54395968 -4.924346218 897.1692479 0.002229233787 +2.497920673e-06 0.002596044363 0.006719681206 0 2.052644294 -18.29829862 902.6393796 0.002215724292 +2.496766436e-06 0.006471575764 -0.007228057464 0 -13.22478175 -21.95250697 1007.28534 0.001985534704 +2.498632349e-06 -0.003107178411 -0.002687763234 0 16.25309584 -5.656253878 1040.324269 0.001922477501 +2.497462344e-06 -0.005191121185 -0.01485870325 0 20.05779362 -7.426524954 949.0383851 0.00210739632 +2.496654868e-06 0.006539483098 -0.005246727301 0 -10.24110793 -21.14814412 907.9851179 0.002202679274 +2.499730878e-06 0.004335961984 0.005003795475 0 7.097739823 -0.3627715879 968.6772759 0.002064671124 +2.495774605e-06 0.003254949804 -0.01059054949 0 -20.33814541 18.15037867 937.1143544 0.002134211252 +2.498805765e-06 0.0007157612359 -0.007680100403 0 -8.932353596 12.15171475 975.6774383 0.002049857793 +2.497186102e-06 -0.007609091219 -0.0005480755982 0 4.681318782 -22.21341193 956.5302456 0.002090890496 +2.498519356e-06 0.004132515728 0.01237477677 0 14.93853279 -2.791635875 882.9274752 0.002265191713 +2.498404241e-06 -0.008551085154 0.008507626802 0 15.86742713 -4.211052964 918.7205463 0.002176940538 +2.498730202e-06 0.008306678156 0.007776529917 0 -11.83758421 -7.405017974 876.0132518 0.002283070485 +2.499280562e-06 0.005072002606 -0.0004675983894 0 10.80165259 -6.832900622 1065.417946 0.00187719759 +2.49925634e-06 0.002068269076 -0.0102736836 0 10.77325224 -2.484756679 906.4644724 0.002206374393 +2.496573647e-06 -0.003012583256 0.008570275165 0 -15.03032392 19.03406776 925.998834 0.002159829933 +2.497031491e-06 0.00728285911 -0.003579557596 0 -6.221868852 -23.58478065 1000.607783 0.001998785173 +2.496051193e-06 -0.004542425089 -0.003166866302 0 -22.61661377 19.28335431 1056.971337 0.001892198898 +2.494583469e-06 0.008061935524 0.0100655366 0 25.11111166 14.80048731 884.8795116 0.00226019472 +2.497808261e-06 -0.006842584414 0.01144558183 0 -6.692984872 20.63831234 1035.944462 0.001930605426 +2.499978327e-06 -0.009190094252 0.01474253999 0 0.2367101837 2.175083069 1050.887899 0.001903152565 +2.499852118e-06 -0.00284686618 -0.01267385316 0 -4.589959005 -2.23244744 938.5015219 0.002131056747 +2.495647838e-06 -0.009049568288 0.007173794056 0 -28.56183997 -6.523212949 992.3756809 0.002015365792 +2.49918794e-06 0.002699864535 -0.003228435055 0 13.1977149 0.2660605018 1035.678912 0.001931100437 +2.496037088e-06 0.008763537621 0.006633908891 0 21.16545298 -17.35419172 971.6328236 0.002058390733 +2.49745454e-06 0.004555666209 -0.009547871312 0 -13.49389115 18.25370615 1005.67779 0.001988708531 +2.497932159e-06 -0.005650134352 0.01009545868 0 -17.68734999 8.645539057 967.7800567 0.00206658526 +2.496789229e-06 -0.00203983515 0.006069671426 0 1.068355466 26.06636318 1029.001369 0.001943632011 +2.497902848e-06 0.001772262333 -0.007318813847 0 13.18714787 -17.31160738 1062.272332 0.001882756371 +2.497515691e-06 -0.004264394618 0.003706849362 0 19.70162011 10.39500118 998.9711707 0.002002059778 +2.498379623e-06 0.0005467598606 -0.005362430129 0 -15.70061227 -10.55619944 1050.698407 0.001903495795 +2.496017845e-06 -0.001351159071 -0.01085468244 0 17.5300612 -19.64365968 932.3698507 0.002145071506 +2.495345259e-06 0.007818033695 0.006862986521 0 15.96265032 24.5769492 959.8160419 0.002083732624 +2.49703062e-06 0.007604871788 0.006328783049 0 -19.99189506 11.69071121 949.9093538 0.002105464055 +2.498892043e-06 0.007322289362 0.006672123377 0 10.42611911 -8.639468659 909.4631354 0.002199099581 +2.496760921e-06 -0.006786268377 -0.01372573499 0 -21.17228159 -13.89254322 994.4500963 0.002011161754 +2.498125776e-06 0.008533812333 -0.01468270734 0 10.09145789 -17.12007625 1026.15899 0.001949015718 +2.499295075e-06 0.008468907108 0.003327059008 0 -4.828888424 -11.7049308 1066.267691 0.001875701587 +2.497487064e-06 -0.008707480081 -0.000703907304 0 -17.10987413 10.98733745 906.6761161 0.002205859363 +2.498772832e-06 -0.00403823541 -0.005928987844 0 14.57591221 -0.2591014966 930.3737856 0.002149673638 +2.498950607e-06 -0.004283567918 0.008161633734 0 12.52266734 -4.734436171 923.9646945 0.002164584872 +2.497926459e-06 0.001842020731 -0.01027659759 0 3.091317228 -18.77481298 934.0663255 0.002141175573 +2.498020114e-06 -0.003160730437 0.006589867668 0 -20.08596566 5.252005326 1043.012221 0.001917523073 +2.498587509e-06 0.001024871133 0.006421247832 0 2.651336445 -17.38993003 1046.37601 0.001911358805 +2.496073583e-06 0.008441323633 0.003549667031 0 27.55548388 2.427290822 986.5459064 0.00202727515 +2.49926087e-06 -0.006971085826 -0.001590682729 0 -5.145549076 -10.22131248 941.0928284 0.002125188865 +2.496341274e-06 -0.002458381718 0.009662694919 0 -13.67019493 20.4048172 907.4512611 0.002203975118 +2.497485446e-06 -0.006578925923 0.001208704545 0 -22.81639255 2.041565051 1021.102308 0.001958667592 +2.497060051e-06 0.003023741702 0.0002606055234 0 21.58081118 -13.74836531 1054.777658 0.001896134209 +2.495178987e-06 0.008609237145 0.01292013387 0 24.66213237 11.6757875 878.1059219 0.002277629555 +2.498707397e-06 0.008624219 -0.002816033894 0 16.79308537 3.145822517 1062.400056 0.001882530022 +2.497755865e-06 -0.0065287212 -0.01486211354 0 7.114787954 -19.46389311 977.8613636 0.002045279704 +2.498318406e-06 0.008691481673 -0.005759856671 0 -16.49748243 -2.033584109 906.1648815 0.002207103851 +2.498047697e-06 -0.002582962732 -0.005790731572 0 12.80134641 -16.29302021 1048.294599 0.001907860636 +2.499670569e-06 0.00698836701 -0.001396579016 0 5.244079172 6.757362141 1053.718955 0.001898039312 +2.498198861e-06 0.007299560378 0.01063571842 0 -3.030700036 -17.69487263 945.6271264 0.002114998549 +2.499768407e-06 0.007807591609 0.004923768521 0 -2.850298788 -6.242080865 1008.233362 0.001983667746 +2.494602863e-06 -0.006152348807 0.01293759416 0 11.05675823 30.12799604 976.0206784 0.002049136913 +2.498146142e-06 0.004874169771 -0.002074476527 0 11.09208727 16.3672108 1026.525791 0.00194831929 +2.496165059e-06 -5.41069638e-05 0.003715796219 0 -6.885941546 26.64466097 993.127867 0.002013839372 +2.497623013e-06 -0.005348324333 -0.005391497752 0 -18.18360295 8.126995804 913.1520506 0.002190215746 +2.496994722e-06 0.006064188988 -0.005115236321 0 -11.12962406 -22.83875009 1035.826995 0.001930824365 +2.497161832e-06 -0.0001561703859 -0.007540717938 0 -6.288207604 -23.12257309 1005.334653 0.001989387308 +2.495478339e-06 -0.00474834735 0.01348295376 0 -1.511423099 26.4156459 879.249532 0.002274667119 +2.497011722e-06 -0.007542164666 -0.008935048124 0 -19.01758914 -14.65963263 981.7640099 0.002037149437 +2.499004098e-06 -0.00868488532 -0.009903394443 0 -0.3163216125 14.88181224 1054.546333 0.001896550144 +2.496211836e-06 -0.008951026495 0.006697516912 0 19.78795132 -18.04359545 972.3529071 0.002056866376 +2.498395338e-06 -0.006930890214 0.01014726438 0 14.32387341 12.41874285 1057.978236 0.001890398056 +2.498877573e-06 0.005595225999 0.01196011753 0 14.30225528 -6.404262485 1045.730184 0.00191253923 +2.499114822e-06 -0.005794305541 -0.008137214526 0 -11.12738993 7.261064103 998.4719496 0.002003060778 +2.498691586e-06 -0.007114866441 -0.009138686566 0 7.046454757 -15.31217993 1041.77623 0.001919798075 +2.499160357e-06 0.002377577843 0.01040272702 0 12.99794989 -4.267528997 1055.571932 0.001894707447 +2.4994764e-06 0.002350279805 0.001086878206 0 9.545941665 1.473547964 943.8073358 0.002119076557 +2.493948962e-06 -0.005771647436 -0.004900662422 0 -23.92512187 -21.98240838 933.1100954 0.002143369802 +2.498471383e-06 0.003645928195 0.00127284796 0 18.32365876 0.2297378733 1047.809578 0.001908743766 +2.498313232e-06 -0.007702878737 -0.01047265665 0 -10.24246352 16.22835527 1044.549794 0.001914700489 +2.494492373e-06 0.009960953807 0.007073212811 0 28.64547141 13.90818262 958.6557801 0.002086254568 +2.49717157e-06 -0.005294925333 0.0009398467164 0 -10.76874244 21.6087617 1014.674232 0.001971075975 +2.495582408e-06 0.003283009194 -0.01154790428 0 25.59097446 13.17894258 967.7697591 0.002066607249 +2.49933892e-06 -0.007068473464 0.01258583337 0 -6.787664149 9.533865236 1017.706917 0.001965202325 +2.498351228e-06 0.006464097388 0.007710222211 0 13.97762163 -9.438063023 928.5408391 0.002153917109 +2.498391832e-06 -0.008458739305 -0.008917709333 0 8.258596086 16.12264902 1009.826772 0.001980537708 +2.499264085e-06 -0.009234216819 0.01202844825 0 -3.343138335 -10.80023423 931.805548 0.002146370565 +2.499448748e-06 -0.002149696145 0.001711327541 0 -8.236426791 -6.644539873 1007.76892 0.001984581941 +2.499993572e-06 -0.006271534381 -0.01205430582 0 0.0130108745 1.051987402 927.8848491 0.002155439872 +2.496414442e-06 0.009177199407 0.006471827379 0 23.35932699 10.39600502 954.2755859 0.002095830627 +2.4985664e-06 0.002899397374 -0.004927792037 0 17.15311464 -0.6498030187 1013.519375 0.001973321921 +2.495819508e-06 -0.0002248868486 0.01240603016 0 10.55074713 23.36781749 886.1449303 0.002256967152 +2.498585705e-06 0.006197634703 0.01140590855 0 -16.61761258 -2.768343588 1001.464995 0.001997074295 +2.499293243e-06 -0.00291825518 -0.01271314892 0 6.448522422 -8.757932416 914.6783787 0.002186560923 +2.497084418e-06 -0.006459875265 -0.01301876423 0 -12.35655774 -17.49322119 886.5340805 0.002255976441 +2.496936889e-06 0.006995893586 -0.001929141926 0 20.11096626 -8.745092858 885.6126533 0.00225832365 +2.498554092e-06 -0.003980359226 0.009715715717 0 -14.91490096 -3.219234196 897.074573 0.002229469054 +2.497924158e-06 0.001982433368 -0.007483816249 0 -5.709302032 -20.69888211 1053.468998 0.00189848966 +2.498031819e-06 -0.008301396249 0.01488592517 0 -12.24818256 -15.14055521 981.2721918 0.002038170465 +2.494913322e-06 0.001251567593 -0.004858662675 0 -24.68881804 21.80029591 1031.832395 0.001938299291 +2.499616205e-06 -0.005928371805 0.009221512433 0 -7.959745379 -2.596602118 955.5845726 0.0020929597 +2.497827991e-06 0.000593037745 0.0009276606096 0 8.968644144 19.75385409 1040.548337 0.001922063521 +2.497727207e-06 4.559643567e-05 0.01261609518 0 -10.44193104 -18.51591976 996.701697 0.002006618436 +2.497847666e-06 0.00875570369 -0.001995770268 0 -13.73669081 -15.34581597 992.3629286 0.00201539169 +2.498321252e-06 -0.0003218367323 -0.01406444707 0 15.30546772 -6.639955331 910.2812751 0.002197123081 +2.496219533e-06 -0.008186164582 0.01386246562 0 -2.691983766 25.96676008 948.8661747 0.002107778792 +2.499003759e-06 0.00553115875 -0.0008123781555 0 12.02934446 -6.281482048 961.2539441 0.00208061565 +2.498708673e-06 0.005512175919 0.01424591737 0 7.19066459 -12.74583848 910.4456116 0.002196726498 +2.499215969e-06 -0.00334353582 0.01346254514 0 -11.07516401 -4.997001328 970.1828531 0.002061467066 +2.497529507e-06 0.007637215089 -0.006773490824 0 -20.67113347 -11.51540756 1064.11259 0.001879500363 +2.499326839e-06 -0.0008174558682 0.0002697666641 0 -9.885241304 -3.70546379 909.7426793 0.002198423846 +2.498619e-06 -3.343294375e-05 0.006487869699 0 -13.83328878 8.290871712 970.21289 0.002061403245 +2.497343115e-06 0.007840392222 -0.007060227664 0 14.76339949 19.16771235 1049.147689 0.001906309303 +2.498950954e-06 -0.009988612644 -0.005259231117 0 14.95939524 0.9441532316 1034.65762 0.001933006592 +2.4994761e-06 -0.007035143692 0.01171800033 0 -5.1249139 8.974277058 1009.524991 0.001981129756 +2.496768065e-06 -0.002113046017 0.005418339183 0 -1.114824236 25.65641928 1009.598502 0.001980985507 +2.497663284e-06 0.0001563452603 -0.009567173822 0 -21.49388727 -0.1616395826 993.93268 0.002012208714 +2.49692026e-06 -0.005174180963 -0.00971990634 0 -0.1887798117 -22.60372661 910.3793553 0.002196886373 +2.493266547e-06 -0.009061191236 -0.009765614765 0 -26.28273697 -24.20262591 972.62564 0.002056289612 +2.499331472e-06 -0.007650134806 0.003686271454 0 -11.33012769 -4.258970869 1046.68586 0.001910792987 +2.497342516e-06 -0.007451217673 -0.0004164328077 0 -11.7167854 18.14955041 936.6780903 0.002135205276 +2.496264605e-06 -0.0007570040738 -0.01233103987 0 -17.54216502 16.47731276 880.0320628 0.002272644469 +2.498998874e-06 -0.006960830195 0.003233930378 0 -6.601649693 -10.55464061 879.6630574 0.002273597809 +2.497238619e-06 -0.004083111119 0.01112362637 0 20.56682305 6.027536667 911.5953826 0.002193955825 +2.499815507e-06 -0.003920048336 -0.008919339613 0 -0.9347933825 6.039260022 1006.023642 0.00198802485 +2.499068891e-06 -0.0009698080784 0.003331354468 0 -13.25386137 -1.751245547 979.5460433 0.002041762114 +2.495935661e-06 0.002281176159 -0.002569911643 0 21.08515658 17.43307265 959.0025922 0.002085500098 +2.499500413e-06 0.00393334121 0.008024699853 0 3.394609088 8.525817769 917.9860734 0.002178682289 +2.497081714e-06 -0.003383891322 -0.003417577988 0 -23.41692444 0.6103675362 969.1883239 0.002063582434 +2.499843891e-06 -0.00969457801 0.01089023917 0 -3.257162909 4.138424518 942.4971134 0.002122022414 +2.495459168e-06 0.0007163011609 0.01002895553 0 -20.25678579 24.10787924 1044.175644 0.001915386564 +2.49937218e-06 -0.007519419496 0.005942415157 0 -4.792574556 8.865217346 899.2691048 0.002224028368 +2.496323672e-06 -0.0007413426694 -0.002731388044 0 -22.53494505 17.88927612 1060.508229 0.001885888243 +2.499141301e-06 0.007266711756 -0.003883540558 0 13.31855877 -1.138505998 1019.874355 0.001961025875 +2.497136405e-06 -4.110840149e-05 0.01299700918 0 18.00758852 16.41998906 1017.877005 0.001964873939 +2.49777722e-06 0.006853950848 -0.001735919199 0 18.4990645 -9.64850788 989.2151896 0.002021804781 +2.497515733e-06 -0.008662919528 -0.01128153071 0 -12.90877322 -17.51661999 975.8194294 0.002049559519 +2.497381612e-06 -0.009153675567 0.004022375364 0 9.078950055 18.94923846 917.8319597 0.002179048113 +2.496828088e-06 0.003655408141 -0.007034367048 0 -15.01041732 -22.20285484 1063.565893 0.00188046647 +2.498562451e-06 -0.0083439219 0.003519729576 0 9.185780933 14.68469173 1021.301934 0.001958284747 +2.498761454e-06 0.00580764561 -0.000961023001 0 -14.64732637 -5.43731703 992.5213175 0.002015070069 +2.496188542e-06 -0.008634571312 -0.003186253987 0 11.32591722 -22.97305336 927.1613299 0.00215712189 +2.497269807e-06 -0.006226398875 0.0006980272382 0 17.12906172 12.49688902 907.0107963 0.002205045418 +2.498006031e-06 0.003204416237 0.01455130576 0 -19.4485876 -6.007158376 1018.992188 0.001962723584 +2.495859778e-06 -0.002747068061 0.004178720468 0 -18.22229079 -19.40393884 924.4704087 0.002163400776 +2.49919903e-06 0.003019615938 -0.001840758927 0 6.993331173 11.46681921 1061.051497 0.001884922651 +2.495538987e-06 -0.002836151472 -0.01000200406 0 -24.29341728 -14.00675842 938.1838832 0.002131778254 +2.496436812e-06 -0.003301448757 0.006432900962 0 17.2932898 -18.82125561 956.9491541 0.0020899752 +2.497142638e-06 0.004857572415 -0.01194172431 0 22.22899691 10.85306701 1034.338051 0.001933603813 +2.497309989e-06 0.006573669016 -0.01099410845 0 -17.45521753 10.55999356 879.1898618 0.0022748215 +2.497779708e-06 -0.005038080486 0.01321541078 0 -20.5170966 -0.2723016354 973.3955807 0.002054663119 +2.498835698e-06 -0.007705197572 -0.01423824881 0 -15.84537995 2.670006274 1052.830824 0.001899640431 +2.499783039e-06 0.006661240677 -0.01326624042 0 3.221348688 5.720694198 996.633699 0.002006755342 +2.499015186e-06 -0.009370749271 0.01144211337 0 12.62744643 2.901822012 923.0689678 0.00216668534 +2.495939657e-06 -0.008109248513 -0.01134406077 0 -9.45998234 -23.94771725 903.0058964 0.002214824962 +2.497626316e-06 -0.0005639194977 -0.002626045269 0 -21.55391193 -1.224137504 990.476659 0.002019229814 +2.495842394e-06 0.007174040396 -0.009035411698 0 22.86309295 13.30983294 916.8573991 0.002181364302 +2.499890343e-06 0.008897517063 -0.008431504886 0 4.161579766 1.80471928 968.5865578 0.002064864502 +2.497641684e-06 0.0007321503898 -0.004004674063 0 15.4458674 16.62641227 1044.573941 0.001914656226 +2.497674926e-06 -0.00209753701 0.01495412857 0 -5.222083968 21.21321642 1012.73879 0.00197484289 +2.497812955e-06 0.007276720582 0.006874092976 0 -4.528723608 -18.58230146 914.2019025 0.002187700545 +2.498499283e-06 0.006705519361 -0.006602929712 0 -10.32833591 -14.17219307 1011.995014 0.001976294323 +2.498139087e-06 0.001529625221 0.009231001607 0 20.2091078 1.311504712 1049.446797 0.001905765977 +2.497571412e-06 -0.003717316138 -0.005679012628 0 -8.494981712 18.81599454 936.3965455 0.002135847264 +2.496600429e-06 0.005420514247 7.301355712e-05 0 26.96045051 -4.903830395 1050.379554 0.00190407362 +2.49688786e-06 0.009254171862 0.0004318079981 0 -15.73854715 20.58503793 1038.145026 0.001926513107 +2.498971597e-06 0.005612775716 -0.005020920541 0 -14.96749328 -0.1075417968 1043.509818 0.001916608704 +2.495075183e-06 -6.328930147e-05 -0.004618674719 0 -20.59913722 -18.23823203 876.001001 0.002283102414 +2.498697981e-06 0.008186164913 -0.005532292568 0 12.02329526 12.12699818 1058.041853 0.001890284391 +2.497070078e-06 0.006012825011 -0.01389756924 0 -16.04371363 -14.97165075 906.1230371 0.002207205775 +2.497623459e-06 0.005263203247 0.004533871212 0 -17.72808622 -7.70502353 886.3217131 0.002256516985 +2.499011664e-06 0.008832341381 -0.01138927745 0 12.62239797 1.399840901 903.1598446 0.002214447434 +2.497943657e-06 -0.006702697072 0.008822472256 0 -8.786464141 -17.37114237 959.619541 0.00208415931 +2.496838463e-06 0.001349997935 0.01073536684 0 -13.3343346 18.630126 910.6726538 0.002196178826 +2.498020707e-06 0.00372301993 -0.01172989546 0 4.326983628 -17.61070553 911.1844586 0.002194945251 +2.499418662e-06 -0.009662446696 0.005945332458 0 -3.879329896 -10.76950445 1061.501572 0.001884123446 +2.497096772e-06 -0.009704966778 0.006265354289 0 -11.69460508 20.28865868 971.4072417 0.002058868736 +2.498490259e-06 0.001048555383 -0.001371127241 0 -7.124961318 -15.43322587 978.0170222 0.002044954182 +2.495530187e-06 0.005201893775 0.008200992225 0 -15.33078272 21.4448795 881.0792718 0.002269943312 +2.499766538e-06 -0.009125668402 0.005621771459 0 5.323634285 3.366465965 921.7551752 0.002169773551 +2.494251224e-06 0.008762306976 0.01185819342 0 28.76383995 20.58610904 1042.260992 0.001918905164 +2.494934066e-06 0.0003241302678 0.006700899526 0 -22.23379195 -20.17468141 942.4838178 0.00212205235 +2.497983402e-06 -0.0002733861702 -0.008781330523 0 -17.14153889 4.733015219 885.2134959 0.002259341966 +2.497780871e-06 0.005791247915 -0.009516964811 0 -3.332860541 -18.84467865 908.0840093 0.002202439399 +2.499248372e-06 0.007451297194 0.004853702963 0 -11.10730659 4.110768022 965.868382 0.002070675505 +2.497746739e-06 -0.003109404161 0.003138780857 0 -21.61034719 6.991772237 1069.576264 0.001869899387 +2.495297474e-06 -0.007593865171 0.00221292105 0 22.58497875 23.68879724 1066.4887 0.001875312884 +2.497720845e-06 0.003822185607 -0.01394660528 0 18.81863112 2.134702395 886.7760432 0.002255360883 +2.497280867e-06 0.00197491643 0.002273824511 0 7.09920661 -20.87847268 945.2546601 0.002115831939 +2.499102413e-06 0.004223571918 -0.004504060415 0 -7.055950432 9.484553033 882.1725801 0.002267130089 +2.496141134e-06 -0.005798492124 0.00659846259 0 -8.765682097 23.95662609 917.7260591 0.002179299563 +2.492560082e-06 -0.005039758435 -0.01291160305 0 -24.69638828 -27.61279716 959.2956704 0.002084862949 +2.498277449e-06 -0.008909397149 -0.007844625302 0 0.2981935701 -18.15165594 977.8258229 0.002045354043 +2.496776748e-06 0.005042269933 0.01352557871 0 26.53448504 3.662166078 1054.473834 0.00189668054 +2.498756528e-06 0.0003025323106 0.00842716591 0 -16.57388628 -0.3159173165 1050.967295 0.001903008789 +2.494439282e-06 -0.0009792472748 0.01470456448 0 20.52476352 25.89145858 989.9092596 0.002020387203 +2.499431667e-06 0.008122164877 0.01379605191 0 11.18024282 0.9906280664 1052.678653 0.001899915035 +2.498584697e-06 0.0007484947052 -0.01393559486 0 -10.31930925 14.38343333 1051.956425 0.001901219434 +2.498829131e-06 -0.006695056912 0.001621469515 0 13.68822231 -1.244364266 898.0256969 0.002227107762 +2.496895719e-06 -0.008543953663 0.01257204157 0 17.03362545 -17.54639293 980.9799059 0.002038777745 +2.494984016e-06 -0.0004781297874 -0.008803012592 0 -13.57430691 -26.03127569 926.2016743 0.002159356926 +2.497580599e-06 0.007028104588 -0.01280724011 0 -20.05141902 -11.78323851 1056.899228 0.001892327998 +2.499759337e-06 0.001324799261 0.009960415566 0 -7.20729677 0.2537028637 1039.455642 0.00192408403 +2.496687554e-06 -0.002109993026 -0.006248878248 0 -22.12664428 9.048645001 928.3035725 0.002154467632 +2.498266096e-06 0.001605626149 -0.00578316316 0 14.48290731 -13.03350544 1046.015165 0.001912018169 +2.498428886e-06 0.007972568944 0.007506256707 0 15.04919911 6.439364016 923.2101922 0.0021663539 +2.494792107e-06 0.00798718872 0.01158492012 0 19.85070366 24.9623998 987.4418786 0.002025435667 +2.499383937e-06 -0.003180434303 0.00558868597 0 -8.614385894 -4.85111678 890.5750298 0.002245740037 +2.499112718e-06 0.00914833019 -0.01216449794 0 -12.66297775 -0.4352980402 951.0178066 0.002103010045 +2.496660847e-06 -0.005360329864 -0.004264755899 0 22.64466054 15.17503039 1054.294093 0.001897003895 +2.497248504e-06 0.002556730653 0.01272033617 0 -15.33403521 -18.76260997 1032.529605 0.001936990464 +2.49725278e-06 -0.005851723622 0.00268505889 0 -8.211973512 19.01242011 883.1645722 0.002264583593 +2.499780143e-06 0.005043285037 0.007191208627 0 -0.02773314239 6.699016288 1010.217606 0.001979771474 +2.499907421e-06 -0.004377525775 -0.01278478607 0 3.976798477 2.171609613 1052.994119 0.00189934584 +2.496317614e-06 -0.009076990671 0.009454050469 0 12.61592041 25.87749703 1060.246422 0.001886353926 +2.498775781e-06 -0.005936152898 0.004799441728 0 -7.66302802 -14.37085896 1040.634081 0.00192190515 +2.497242297e-06 0.007307247524 -0.01029967091 0 19.86865554 -13.31303894 1017.957743 0.001964718097 +2.498672834e-06 0.0003730990924 0.00018397148 0 -7.359681276 -15.19280213 1035.971276 0.001930555456 +2.497671287e-06 -0.009698084178 -0.001442702988 0 -0.9774038358 19.13963528 887.7168988 0.002252970517 +2.499401199e-06 -0.008597782166 -0.008554677987 0 2.013850288 -11.28962733 1047.819065 0.001908726484 +2.495374221e-06 0.002184631596 -0.009652123335 0 -17.93053232 -22.91393617 955.9119524 0.002092242905 +2.498265202e-06 -0.005569091709 -0.00364336285 0 -9.466039875 -14.88651508 946.8414091 0.002112286156 +2.498755427e-06 0.002270335546 -0.01308568723 0 6.961638508 -15.39855917 1070.921674 0.001867550213 +2.498379896e-06 -0.009290355127 0.01311410713 0 17.66382545 -2.999777181 995.1003269 0.002009847596 +2.495364669e-06 0.001532307528 -0.007948411459 0 19.86693285 18.75631918 896.7176612 0.002230356428 +2.495862506e-06 -0.002355179791 -0.008109875573 0 17.88570384 -23.26724082 1019.56383 0.001961623139 +2.499980913e-06 -0.003106717207 0.013729389 0 -1.68979082 -0.292201996 877.7108672 0.002278654708 +2.49371961e-06 0.006832626304 -0.01153414539 0 26.54553794 -23.52439349 999.8462871 0.002000307473 +2.497365167e-06 0.005678319894 -0.00405167293 0 9.808836633 -20.69745131 997.3553879 0.002005303249 +2.497804833e-06 0.009607978635 -0.003303509185 0 -7.74204859 -20.33908303 1038.29804 0.001926229198 +2.497990635e-06 -0.009058535057 -0.009349527061 0 -13.26687302 -13.47311413 942.9392178 0.002121027488 +2.497213109e-06 -0.00954534559 0.006717033098 0 -23.38458921 3.273710031 999.7414433 0.002000517247 +2.495112622e-06 0.00676061281 0.01130484305 0 25.03396815 -19.07944545 1006.015975 0.001988040001 +2.496355396e-06 -0.004692841507 -0.002087252203 0 -12.60627786 22.37691602 950.7739411 0.002103549449 +2.495571878e-06 0.004244720573 0.007916438871 0 17.95904295 26.02655626 1061.858735 0.00188348971 +2.499672165e-06 -0.007578381011 0.002064361512 0 0.7678332772 7.121740122 884.5693036 0.002260987344 +2.497747432e-06 0.008202909436 -0.01334190965 0 22.34590065 -1.456969799 1054.673996 0.001896320577 +2.499054744e-06 -0.004436575565 -0.001986317961 0 12.5138638 5.209860164 985.7114355 0.002028991374 +2.499323894e-06 -0.008587492178 -0.004001947429 0 -9.868937559 -6.207171378 1002.497164 0.001995018113 +2.497433219e-06 0.003042169581 0.01052841243 0 -16.04338688 11.98346659 883.4705763 0.002263799218 +2.498348396e-06 0.0009141164133 0.001657939448 0 2.470351028 17.70969914 983.6037755 0.002033339084 +2.497569678e-06 -0.008396319598 -0.001097411423 0 17.29186955 12.04485901 955.49614 0.002093153406 +2.497560713e-06 -0.0005032200227 0.01042448499 0 -19.09175189 -3.360392498 877.3352309 0.002279630328 +2.496505937e-06 0.002383011002 -0.01461750328 0 12.13358839 -21.62847454 937.6368696 0.002133021924 +2.497939362e-06 0.008584463303 -0.007330054371 0 2.759297282 -20.6169419 1024.304978 0.001952543475 +2.49873181e-06 0.0003365922952 -0.004967402411 0 5.616589005 14.81775445 994.8184913 0.002010416993 +2.49658858e-06 0.001983616329 -0.00538857003 0 -20.72322821 18.56522618 1064.631067 0.001878585044 +2.499227835e-06 -0.0006476852344 0.008322381803 0 -11.96957635 -2.14173986 978.3667068 0.002044223282 +2.499660328e-06 0.004427609704 -0.009138156802 0 -7.648635576 1.551270856 946.8271601 0.002112317944 +2.498118382e-06 0.008612219919 -0.01035517629 0 8.884087598 16.69201208 974.462763 0.002052412956 +2.499727496e-06 -0.001158111617 0.01069575465 0 4.880651383 5.718973858 1018.381113 0.001963901308 +2.496945973e-06 -0.002615634524 0.001176149568 0 16.41069403 -15.95052724 925.5573748 0.002160860098 +2.496352e-06 -0.007052537454 -0.008820627916 0 -24.61503551 -15.21209832 1070.686619 0.001867960209 +2.497872471e-06 -0.005257765874 -0.00641567131 0 -9.764973389 15.85710761 902.5053876 0.002216053253 +2.499965803e-06 -0.005925307502 -0.01407599581 0 0.9746509263 -2.292595353 952.5636603 0.002099597206 +2.499454453e-06 -0.001638913644 -0.01104875572 0 -10.9866397 -1.799855399 1065.735245 0.001876638696 +2.499688892e-06 -0.007017281903 -0.009127171249 0 -5.96110456 -3.801049356 896.2299049 0.002231570258 +2.499237025e-06 0.0001963685872 -0.01297739378 0 -6.015468164 -9.977730427 943.0520003 0.002120773827 +2.498644194e-06 -0.005231967294 -0.009911493436 0 11.35170686 -12.99591732 1047.677344 0.001908984681 +2.499690439e-06 -0.009881810714 -0.00610712941 0 2.861699343 -6.858663219 944.454875 0.002117623671 +2.497696338e-06 0.006055528186 -0.01462747656 0 21.28474384 0.3142103543 991.382482 0.00201738485 +2.498699818e-06 -0.003599164663 -0.0005513646919 0 7.766018297 14.16783185 1001.72956 0.001996546852 +2.496973698e-06 0.006819444522 -0.001738935434 0 7.920787114 24.50156978 1046.188518 0.001911701347 +2.498808338e-06 -0.008522020732 -0.01239032778 0 13.49352841 9.060226133 1052.608308 0.001900042004 +2.499893979e-06 -0.009623054573 -0.0129392317 0 -3.133105599 2.866309065 922.1575732 0.002168826736 +2.494413923e-06 0.002077893652 0.01327566237 0 22.1979712 20.05330195 894.2333093 0.002236552787 +2.497609341e-06 -0.006706975489 0.0116174039 0 15.1107073 12.96239418 910.1515521 0.002197436235 +2.498359789e-06 -0.002458344791 -0.004263164874 0 0.2116762832 15.92834685 879.3004353 0.002274535437 +2.498096463e-06 0.00721762009 -0.00922011795 0 -5.010938856 19.60967896 1037.017954 0.001928606918 +2.496067379e-06 0.005641051736 0.006614333361 0 22.58047073 -18.45801862 1039.307734 0.001924357853 +2.498004846e-06 -0.006138852905 -0.01376298976 0 -5.749380975 -19.78617001 1031.169679 0.001939545006 +2.498601833e-06 0.00139498862 -0.01080440417 0 -7.24618368 16.36786284 1070.212953 0.00186878695 +2.497529021e-06 0.0002482464956 0.008048073084 0 19.99099119 -10.41765203 1013.660936 0.00197304634 +2.499084027e-06 -0.006266298187 -0.01274637561 0 -13.74664673 -2.832570336 1036.836468 0.001928944497 +2.496854324e-06 0.009741823692 -0.007337349756 0 -17.22733385 -15.43516482 921.7435707 0.002169800868 +2.496901287e-06 0.009814026915 -0.00619321215 0 -9.671790447 -21.87189197 960.1988973 0.002082901788 +2.498394214e-06 -0.004666599706 -0.007493400383 0 10.40326328 15.31118422 1032.686189 0.001936696764 +2.499224119e-06 0.004639560757 0.008729993531 0 11.41033132 -5.588268817 1019.815491 0.001961139067 +2.496384385e-06 -0.001890488914 0.009192267924 0 25.3777121 13.51537785 1068.637855 0.001871541412 +2.497936286e-06 0.003932010173 -0.009301324342 0 -18.11369238 -3.015324657 903.583526 0.002213409101 +2.498813706e-06 -0.005205693957 0.004463723225 0 3.590332574 14.75936503 985.968506 0.002028462357 +2.499003406e-06 0.001266640183 0.01077387394 0 -14.32132386 3.843172068 1050.132813 0.001904521005 +2.497760321e-06 0.006804681714 -0.005661874136 0 5.889704033 -20.60406632 1012.172922 0.001975946952 +2.499792401e-06 0.008287907406 -0.01229460592 0 5.486052381 -2.159054216 914.9310854 0.002185956988 +2.496678736e-06 -0.003842254942 -0.003831096687 0 -19.82193054 17.41033201 1023.128848 0.001954788006 +2.498362424e-06 -0.001524449447 0.01119891413 0 -15.26887766 8.406705841 962.8964325 0.00207706658 +2.49638074e-06 0.004892230621 0.009306229355 0 15.94353725 18.43773865 905.4948655 0.002208736986 +2.498618404e-06 0.006696100375 -0.009613343503 0 -4.85903424 -16.19855048 1017.161528 0.001966256042 +2.49718159e-06 -0.007807904165 -0.007283784854 0 -4.307816494 -21.72427622 932.4366981 0.002144917724 +2.497140408e-06 0.007955291145 0.0002207235619 0 19.45863062 -12.20680831 960.1018181 0.002083112397 +2.498633442e-06 0.007325180518 -0.01422152543 0 -4.17561639 -16.07434441 1004.372986 0.001991292107 +2.4983118e-06 -0.0004314051569 -0.01179561626 0 9.764233045 13.11742743 889.712152 0.002247918044 +2.497515119e-06 0.0007960566087 -0.001597535019 0 -1.884826528 22.07983044 993.6709979 0.002012738627 +2.498569138e-06 -0.009989523962 -0.004835333833 0 17.225311 -3.087023685 1034.24794 0.001933772283 +2.497097532e-06 -0.002248392324 -0.00333636093 0 17.19651603 16.69250208 994.2694627 0.002011527131 +2.499249073e-06 -0.002627376034 0.00497514738 0 11.50448187 -3.101588885 972.164889 0.002057264177 +2.496887766e-06 -0.002780582584 0.003132686361 0 15.50758615 21.52364446 1062.810956 0.001881802204 +2.497396993e-06 -0.009497723579 -0.006062354904 0 16.51904108 -13.79257375 942.804255 0.002121331113 +2.497678148e-06 -0.0009024046129 0.01113966819 0 17.25044517 -14.86245601 1056.27851 0.001893440016 +2.4964448e-06 0.000213309722 0.007173455749 0 -24.73207797 -12.14088573 1032.676048 0.001936715782 +2.49743896e-06 0.00233593612 0.001673482102 0 -20.782685 5.045017227 944.593095 0.002117313805 +2.494793213e-06 0.004687637449 0.01077544589 0 25.67591091 19.09523266 990.798125 0.002018574672 +2.499516094e-06 0.001506219883 0.002219667854 0 7.42031344 -5.721343423 952.3734577 0.002100016526 +2.498778011e-06 0.003815445816 -0.009965536846 0 -12.85202869 7.861668359 963.5317348 0.002075697071 +2.499252886e-06 -0.005637008585 0.00209033902 0 4.73799583 -12.14616721 1066.446888 0.001875386409 +2.499600154e-06 -0.003546622642 0.01144421618 0 1.430338132 8.137736725 923.8958124 0.002164746255 +2.497125615e-06 -0.005935040759 0.006525407773 0 -18.41701536 13.2339053 945.4596954 0.002115373093 +2.497129676e-06 0.006024448639 0.002113238093 0 5.113213508 23.5625748 1005.883199 0.001988302422 +2.495474865e-06 0.00765816215 0.003251475028 0 26.50700553 -12.35189927 971.4169655 0.002058848127 +2.495995378e-06 -0.008860264365 -0.01312520654 0 -24.1278053 17.09258041 1044.179609 0.001915379292 +2.494914527e-06 -0.00387000754 0.01383859288 0 6.506576503 27.98349166 900.1666727 0.002221810761 +2.498688707e-06 0.006923773773 -0.01182191469 0 15.57744222 6.210215404 1035.322095 0.001931765978 +2.499294389e-06 0.0004140915582 -0.002453978634 0 8.550876267 6.878304597 923.6787771 0.002165254902 +2.498316907e-06 0.001224933937 0.002650379897 0 -15.98356474 -5.050906206 913.4053892 0.002189608276 +2.497787199e-06 -0.004890056793 0.0140492274 0 -20.18021236 -7.00282509 1015.045694 0.001970354646 +2.496903092e-06 0.005303541198 -0.01058908135 0 -6.885145143 -25.25645083 1051.374095 0.001902272473 +2.494014128e-06 -0.002770523303 -0.01068531655 0 -23.35602533 -23.93073327 965.5784181 0.002071297331 +2.497792167e-06 -0.003676192281 0.01301435142 0 18.96034752 8.47091909 987.9231988 0.002024448867 +2.495794214e-06 0.003628161419 0.009000696628 0 15.16366674 26.64812909 1056.488835 0.001893063073 +2.498866829e-06 0.002402307419 -1.687048702e-05 0 10.17762174 -9.513094497 925.2458252 0.002161587705 +2.497826581e-06 0.000927438084 -0.00577113112 0 -1.019479504 19.38155891 930.5941634 0.002149164565 +2.498761668e-06 -0.008928773156 -0.01077476922 0 13.81767972 -4.992758436 933.3997322 0.002142704707 +2.498050736e-06 0.00534464377 0.01249090307 0 7.01160254 -18.0079405 978.4485036 0.002044052388 +2.496580014e-06 0.009665481765 -0.000501545209 0 -18.37145913 21.00402083 1066.42231 0.001875429631 +2.493516027e-06 0.00584116891 -0.01456954506 0 19.3814181 -25.13170838 880.457621 0.002271546015 +2.498167027e-06 -0.001872264664 0.0008850093512 0 -2.453905023 18.2744655 962.7482621 0.002077386248 +2.497041631e-06 0.005128426305 -0.01153572688 0 -18.74556048 -10.34125827 879.7490642 0.002273375535 +2.494478336e-06 0.005329888146 0.002059604293 0 23.5835487 18.79581201 906.7409704 0.00220570159 +2.499632287e-06 -0.007957429942 -0.002605132973 0 3.115142001 -8.147099012 1017.044889 0.00196648154 +2.495578404e-06 -0.00223475385 0.01074057158 0 -13.31880875 28.08961737 1044.695047 0.00191443427 +2.4962496e-06 -0.005091501428 0.007470329774 0 -22.5169578 17.03446773 1030.342693 0.001941101746 +2.49680168e-06 0.008863201952 0.0007247417397 0 -6.51029345 -21.99344421 906.4583953 0.002206389185 +2.497722224e-06 0.00510332495 0.005240932836 0 -18.58619807 -9.659528636 981.0502541 0.00203863155 +2.499366971e-06 0.007709661443 -0.001935226112 0 -10.81250832 -1.575639996 971.0046068 0.002059722463 +2.499070863e-06 -0.006310165362 0.002236361636 0 12.04458301 -4.914103151 954.1373577 0.002096134255 +2.498665845e-06 0.00790784413 -0.007024064481 0 -2.301091129 14.68946341 910.0496987 0.002197682174 +2.499424344e-06 0.005118598137 0.009155808601 0 -8.604895795 4.038090778 885.7908027 0.002257869458 +2.499465001e-06 0.004399589663 -0.0001736799907 0 -4.743316249 9.691975516 1043.067735 0.001917421019 +2.499727077e-06 -0.001506758481 -0.002095227821 0 7.164415508 -0.763891739 975.1746285 0.00205091472 +2.498176587e-06 0.007508153077 0.01139252996 0 -13.51687692 -14.20263042 1026.424584 0.001948511398 +2.499957757e-06 -0.003504753187 -0.01397641733 0 -0.5998902015 -2.996061783 1051.217833 0.001902555243 +2.496507695e-06 0.009431424038 -0.001158388169 0 -11.07960743 -25.89124191 1065.047823 0.001877849949 +2.497381815e-06 -0.003448052243 -0.004190934892 0 -8.706142548 -20.74358059 982.7191437 0.002035169471 +2.498481435e-06 -0.009690545155 -0.004481191628 0 -16.53024605 5.15870746 993.4122749 0.002013262822 +2.499859742e-06 0.006189577463 -0.01127930481 0 -5.228067485 0.9582839868 1003.525684 0.001992973405 +2.496608579e-06 0.008507337626 0.01177381899 0 -9.157789043 21.75218841 905.7525239 0.002208108669 +2.49778583e-06 0.008174393498 0.00621790977 0 6.066080899 19.00172359 947.5494353 0.002110707817 +2.496319346e-06 -0.0052446859 0.007643567647 0 20.64016846 16.14997471 965.4055246 0.002071668277 +2.499607298e-06 -0.001281523765 0.01318491472 0 4.339210907 -8.250925561 1051.850665 0.001901410596 +2.4974476e-06 0.004102700716 0.005516338586 0 20.32238258 4.129356226 917.4959662 0.002179846096 +2.49969421e-06 0.001828986863 -0.009315928216 0 2.102739989 -7.242564527 964.3149273 0.002074011242 +2.496887964e-06 -0.006519113416 0.01215147053 0 21.52996513 -15.05288233 1052.506705 0.001900225425 +2.498327839e-06 0.006733705038 0.004792229701 0 13.66264427 10.14533001 930.3213829 0.002149794723 +2.499055099e-06 0.001458024755 -0.01055864947 0 -1.140326185 14.00147028 1021.737879 0.001957449206 +2.498508915e-06 -0.004451506454 -0.002084581037 0 2.568041674 16.07558072 942.4867274 0.002122045799 +2.499610872e-06 0.007866781321 0.002589073589 0 2.036977501 8.606522403 1002.481973 0.001995048345 +2.497251566e-06 0.007435239172 -0.01114247138 0 20.15372584 -7.250923643 913.1678204 0.002190177923 +2.497740035e-06 -0.002713468992 0.01499112563 0 3.479973895 20.17797354 962.7842295 0.002077308642 +2.494342384e-06 0.007191098263 -0.01062193644 0 -21.47133856 -28.17541454 1052.201944 0.001900775808 +2.497966134e-06 -0.008972440124 0.01454804573 0 -7.692597814 17.27200059 937.1911557 0.002134036357 +2.497225468e-06 0.004169203797 -0.01231906856 0 -20.92454326 12.69181725 1038.468242 0.001925913495 +2.497408804e-06 0.003410458304 0.005974319251 0 -22.95026978 5.658476266 1037.930471 0.001926911346 +2.497267815e-06 0.006035565641 0.009311854835 0 20.82754144 9.337889846 976.0307506 0.002049115767 +2.498114794e-06 0.0002927911514 0.01112187896 0 17.57874617 5.718697957 951.7333968 0.002101428832 +2.497935677e-06 -0.004128628834 0.01242655607 0 -19.3996271 -7.791754899 1028.562443 0.001944461432 +2.496481728e-06 -0.007724049906 0.0032909724 0 -14.41762757 -19.46603285 912.7124377 0.002191270676 +2.497930274e-06 0.002930567446 3.353623906e-05 0 6.020725873 20.39212106 1044.732344 0.001914365925 +2.496153425e-06 -0.001666626101 -0.002225772764 0 19.52090632 21.78044425 1053.890188 0.001897730924 +2.498404514e-06 0.005039125714 -0.0008386537177 0 -11.14138859 -14.71585332 1033.028218 0.001936055536 +2.496485743e-06 -0.006778454231 0.01487597467 0 -4.225890021 28.01886644 1068.25258 0.0018722164 +2.499902219e-06 -0.00475312327 -0.01388061719 0 3.978455597 -0.400511649 904.1810908 0.00221194628 +2.498433501e-06 0.004965558131 -0.003440892783 0 3.586456744 -18.29786223 1053.183846 0.00189900368 +2.49983941e-06 0.001827981598 -0.01035278804 0 5.499265001 -2.489466163 1065.125707 0.001877712638 +2.499675335e-06 0.004012855012 0.01102538487 0 -3.516597827 -7.698972292 1050.33087 0.001904161876 +2.497581787e-06 -0.0005930416053 0.00337610364 0 -19.94543959 2.078770133 911.5274842 0.00219411925 +2.496727294e-06 0.00119160186 -0.01459244961 0 20.60606544 -17.73578717 1062.159561 0.001882956264 +2.496124741e-06 -0.008982475777 -0.003164331056 0 -27.25129156 5.231009039 996.1536284 0.002007722447 +2.498084094e-06 0.004716226938 0.01244847044 0 10.90710899 -17.58781606 1056.927557 0.001892277278 +2.498478599e-06 -0.0003548632422 0.004747399706 0 8.92380295 13.39663426 922.5739055 0.002167848004 +2.499308847e-06 0.0001608509524 0.007140658919 0 2.800192958 -9.91506416 876.2173599 0.002282538662 +2.499064822e-06 -0.001942636515 0.008348627449 0 9.970062618 -10.31435539 1048.786231 0.001906966301 +2.49630559e-06 0.00531069688 0.01438924522 0 18.84159918 -14.94118073 884.1530743 0.00226205174 +2.497982769e-06 0.004700083844 0.009364582475 0 12.78609741 -16.85994405 1053.148459 0.00189906749 +2.494340272e-06 -0.004386739093 -0.01324098173 0 -22.67782085 -25.87235394 1021.720369 0.001957482752 +2.497329642e-06 -0.003374665589 -0.004919994709 0 -14.90395942 -17.85525749 1006.004832 0.001988062023 +2.498227145e-06 -0.008408589563 0.004540397292 0 15.85315104 -8.131724188 945.9511211 0.002114274147 +2.494258986e-06 -0.006542634522 -0.01408742851 0 12.0907281 -30.09480091 956.3128414 0.002091365831 +2.496941661e-06 -0.004272000943 -0.01457972556 0 18.15475022 12.11970934 882.1982814 0.00226706404 +2.498969795e-06 -0.00339707484 -0.002794704647 0 0.2680365739 -14.3237504 997.9039046 0.002004200997 +2.499638932e-06 -0.006587755103 -0.001289940372 0 6.854438873 5.896952186 1063.972532 0.001879747775 +2.499823643e-06 0.005398047506 -0.00659034828 0 5.517054214 0.1458821427 929.2569804 0.002152257171 +2.496206246e-06 0.002067583632 -0.01185589364 0 22.27356994 -10.81155745 898.3259123 0.002226363475 +2.497226319e-06 -0.002825713032 -0.008038808301 0 -1.278465068 -23.34594372 992.28777 0.002015544342 +2.498221719e-06 -0.002499408191 -0.01336277957 0 -16.60505461 10.84798534 1051.452637 0.001902130376 +2.497905884e-06 0.009277845835 0.014552897 0 -17.44957136 -4.463556021 879.8241654 0.002273181482 +2.495984056e-06 -0.009760828861 0.002929472763 0 -17.99374476 -22.42405527 1013.865913 0.001972647442 +2.498811393e-06 0.001831213301 0.01403869614 0 15.0865385 4.118858297 1014.118909 0.001972155318 +2.498060416e-06 0.006934315567 -0.003158017478 0 -1.946291101 20.17558938 1028.826031 0.001943963255 +2.493965276e-06 0.009049480087 0.01382056877 0 22.03333647 27.86742134 1021.651804 0.001957614122 +2.499364616e-06 0.008389771311 0.003422179178 0 -10.14089208 1.815504825 913.8019889 0.002188657963 +2.49722825e-06 -0.006778338086 0.0001455234736 0 19.5557619 8.709033568 908.8463014 0.00220059211 +2.499737104e-06 0.00844798435 -0.01263099689 0 -4.432617703 5.746684152 1000.846696 0.00199830804 +2.496910865e-06 0.009199238755 -0.01266152391 0 22.04521817 -14.80339157 1067.825907 0.001872964485 +2.495470174e-06 -0.0003516108077 -0.001738917637 0 20.65599444 19.32496852 939.1342741 0.002129620923 +2.497361073e-06 0.006849483927 0.003418352162 0 12.69679212 -17.62223576 945.0527837 0.00211628391 +2.495637237e-06 0.008386411536 0.003532462812 0 25.69274601 16.68147451 1036.361249 0.001929829006 +2.499332154e-06 0.008895395864 0.01325961724 0 -9.324647872 5.972657548 958.0474125 0.002087579356 +2.49685803e-06 -0.001576801585 0.01401708682 0 20.83851235 -9.655235693 915.7499897 0.002184002209 +2.499079242e-06 0.0007769936183 0.003546928391 0 -5.341351945 -12.54043813 1004.307235 0.001991422475 +2.498470204e-06 0.006023427565 0.007726273946 0 -6.39009291 -16.03176656 986.4339284 0.002027505282 +2.498319889e-06 0.005639073565 -0.002109732942 0 -10.2418418 13.59522612 928.3246528 0.002154418709 +2.499069523e-06 -0.007837771494 -0.01477116968 0 14.33715698 0.7698626625 1052.348968 0.00190051025 +2.499723852e-06 0.004401145792 0.007729643863 0 -3.879848788 6.345619217 1000.777348 0.001998446512 +2.498598246e-06 -0.006911338028 0.007688806497 0 12.5954358 -9.635377112 946.9220967 0.002112106167 +2.498340448e-06 -0.006632196358 0.007096295957 0 -7.45851637 -15.24146763 931.1642728 0.002147848729 +2.499221669e-06 -0.00377757228 0.008533107061 0 -12.22756696 -3.293073986 1014.839123 0.001970755713 +2.49896495e-06 -0.001347762686 0.008383684068 0 -1.052980121 14.96934934 1042.825417 0.001917866565 +2.499022346e-06 0.004252389972 0.004107551014 0 10.52634983 7.659723385 930.8551463 0.002148562006 +2.497783261e-06 0.008209115271 -0.001812049944 0 19.7111975 10.76904117 1066.388373 0.001875489315 +2.498917364e-06 0.003100056406 -0.008103124055 0 -12.75287489 -3.616601179 900.6963642 0.002220504134 +2.499645393e-06 -0.0045832801 0.005048532004 0 -4.602713724 -5.806472122 879.7813301 0.00227329216 +2.497554623e-06 0.009982305076 -0.0008816266735 0 12.14337844 16.95775251 942.7810939 0.002121383228 +2.497491253e-06 0.008122615069 0.001682272344 0 13.64231951 -18.55550033 1027.786292 0.001945929826 +2.499442029e-06 0.00303891473 0.01279337896 0 -4.735335062 -9.62166178 1015.059015 0.001970328789 +2.499049906e-06 0.002096508858 0.01097755589 0 -13.25562002 1.042726935 964.4495014 0.002073721846 +2.499290118e-06 -0.00307864571 0.006332734872 0 10.37220551 -1.998910715 886.4115814 0.00225628821 +2.496764354e-06 -0.004277717206 -0.01263671153 0 19.88848635 11.64191417 905.474153 0.00220878751 +2.496899196e-06 0.003675726131 0.00234976727 0 -15.97323373 -21.29215471 1068.355167 0.001872036624 +2.497671859e-06 -0.002883885601 0.01355544327 0 15.38008229 16.63147077 1049.426238 0.001905803313 +2.496747451e-06 -0.006501974561 -0.01023872178 0 -17.15665153 -20.68470434 1053.154576 0.001899056459 +2.497096215e-06 -0.005296984352 0.007630366771 0 -20.88219228 -10.46242342 968.7731777 0.002064466736 +2.4965441e-06 -0.00408221304 -0.003371950372 0 10.35819383 -21.88663401 920.545778 0.002172624163 +2.497140106e-06 -0.004845365658 0.01125229973 0 5.479198827 24.79673703 1061.377131 0.00188434435 +2.496701624e-06 0.003254895518 -0.01190107057 0 -22.70605913 -12.3698428 1006.227116 0.001987622843 +2.496741734e-06 0.003056776104 -0.0004613425769 0 -6.473187276 -26.15186629 1054.859145 0.001895987734 +2.497874422e-06 6.888459902e-05 -0.01224788443 0 15.3567667 -11.21861701 922.0931725 0.002168978211 +2.494574277e-06 0.0009519150341 -0.004871151033 0 22.97815001 -20.71889683 938.4673312 0.002131134386 +2.495115887e-06 -0.006233989242 -0.01102014866 0 12.04108872 -25.2855945 895.4233092 0.002233580452 +2.499907801e-06 -0.001899941661 -0.002143885964 0 -1.515987683 -3.643807087 919.0481304 0.002176164592 +2.499766909e-06 0.005789747629 -0.003588680418 0 3.997075987 -5.567737618 1003.79826 0.001992432224 +2.498554784e-06 -0.006561991782 0.009168722711 0 -12.37114669 8.836300525 894.0221981 0.002237080918 +2.498605865e-06 -0.008476003213 0.01133608094 0 -15.72540546 1.255552421 944.5467253 0.002117417748 +2.49965086e-06 0.001126124947 -0.0123061799 0 5.018270559 6.559965628 988.3399368 0.002023595249 +2.498851969e-06 -0.006753511094 0.004420598515 0 -3.40288539 15.57549546 1051.962713 0.001901208071 +2.498996127e-06 -0.007232645066 -0.004901479608 0 5.330619794 -13.83893493 1046.46324 0.00191119948 +2.498404139e-06 -0.001050987267 -0.005087664539 0 -15.93004567 8.389993126 1007.5395 0.001985033837 +2.497186214e-06 0.009531965032 0.0007098646788 0 -14.39441582 -19.41902854 1018.528667 0.001963616799 +2.496941399e-06 -0.002738257158 -0.00511964903 0 15.295254 -15.62938737 883.7700264 0.002263032169 +2.49997179e-06 -0.00596341264 0.003666329866 0 1.223433752 1.829514363 926.5767564 0.002158482809 +2.497269298e-06 0.007931579677 -0.001883032182 0 5.342638687 23.37491922 1025.59904 0.001950079828 +2.499475022e-06 -0.002956928979 0.009021403331 0 5.056994777 8.359785862 953.4303822 0.002097688554 +2.498105144e-06 0.006826630281 0.003847902264 0 -17.35371471 -9.699831117 1020.946061 0.001958967351 +2.497745649e-06 0.004685677486 -0.01070070108 0 8.68591176 16.45577624 876.0208249 0.002283050749 +2.497624871e-06 0.009963808795 0.01073812312 0 22.87072364 0.7012511119 1049.471342 0.001905721405 +2.498011085e-06 -0.0005502441665 0.002975177059 0 11.24728405 16.7950984 1013.174017 0.001973994562 +2.49662351e-06 0.004157302808 0.005142438286 0 5.434212204 26.21227849 1029.615032 0.001942473583 +2.498677085e-06 0.0005069459649 0.0009171203314 0 13.75334692 4.422827179 887.9951728 0.002252264496 +2.495561722e-06 -0.008653101977 0.008274088749 0 -24.46504863 15.19424125 965.9870815 0.002070421063 +2.497709922e-06 0.004429570576 0.009679183227 0 -20.10054714 5.843982241 977.7750395 0.002045460274 +2.49804381e-06 -0.003381689275 0.01071972994 0 13.61620188 -15.54403906 1044.420053 0.001914938338 +2.498606661e-06 0.003879577261 -0.01278003091 0 13.20645339 6.26093807 875.3392771 0.002284828354 +2.49879966e-06 -0.004290836896 0.008410980538 0 -16.34962251 2.006064418 1062.936063 0.001881580718 +2.499110241e-06 -0.007904354129 0.01077677648 0 -10.94339132 -5.776833912 927.5141396 0.002156301359 +2.49874841e-06 -0.007541029654 -0.004033892553 0 5.718173411 15.11841834 1021.438613 0.001958022709 +2.496286553e-06 -0.009586893073 -0.005534768638 0 -9.574815098 -26.39571926 1029.747335 0.001942224011 +2.496717566e-06 -0.0009175273031 0.01402395599 0 -15.33482355 21.60383741 1033.487695 0.001935194787 +2.498813123e-06 0.008788619856 0.007381603732 0 5.216818103 -13.27335864 925.5019962 0.002160989396 +2.498814955e-06 -0.007268125773 -0.01262747556 0 9.414889416 12.74378625 1029.000332 0.00194363397 +2.496961981e-06 0.006956602517 -0.005915815753 0 18.91015436 -17.69417376 1050.143572 0.001904501493 +2.494456993e-06 0.003345200983 0.005427842166 0 -23.91848819 26.00339072 1060.242369 0.001886361137 +2.497443782e-06 -0.00462913149 0.003474055231 0 23.78171801 -2.751004848 1058.398349 0.001889647694 +2.498200233e-06 -0.007215614975 0.01008469815 0 12.45674794 -13.7521824 977.7408354 0.00204553183 +2.495768333e-06 -0.000470399214 -0.001751319047 0 -18.98209852 -22.96556815 1023.518372 0.001954044064 +2.499594391e-06 -0.001008361061 0.01055529387 0 2.797354064 -7.518775018 890.6423838 0.002245570205 +2.498138349e-06 0.004085819414 -0.01117394082 0 16.8710577 -3.127728303 888.9855345 0.002249755392 +2.498788092e-06 0.006962939408 -0.004161981361 0 9.773914355 -10.08102778 901.7303898 0.002217957854 +2.498531496e-06 -0.006019395092 -0.000157475837 0 -12.76497148 12.74087674 1052.14769 0.001900873821 +2.497171862e-06 0.003947891402 -0.007969323602 0 -19.0138 -13.21497602 973.1900428 0.002055097064 +2.49641766e-06 -0.005684517818 0.008228569098 0 8.7775824 24.29009049 964.3811015 0.002073868927 +2.499511994e-06 0.0003367117606 -0.005994827526 0 -6.260705203 -7.565200984 993.9026044 0.002012269604 +2.499627997e-06 -0.00970815002 0.003408163637 0 7.258681143 -4.375393592 982.5345147 0.002035551902 +2.499595758e-06 -0.007200944163 0.01097845976 0 -0.8673610663 8.674081126 969.4420123 0.002063042425 +2.497324106e-06 0.00480009512 -0.0003601768962 0 -2.750503915 -24.31474716 1057.321254 0.001891572681 +2.495850938e-06 0.0005252781697 -0.007478413687 0 -22.05948331 14.09395742 908.1704594 0.002202229746 +2.499711703e-06 -0.003385228571 0.01204678905 0 -0.02078950632 7.467970589 983.4459033 0.002033665495 +2.499161314e-06 0.002855265066 0.002985753603 0 3.928123518 -11.65704073 949.6731246 0.002105987785 +2.499639518e-06 0.002058698232 -0.007760954881 0 -7.479086418 4.040025471 1001.069103 0.001997864078 +2.49906139e-06 -0.005034128982 -0.01263140534 0 11.7352283 -6.826030662 990.731408 0.002018710605 +2.496756711e-06 -0.001622495623 -0.006563565431 0 -22.52845844 -2.65762927 890.2527105 0.002246553115 +2.496301428e-06 0.002927529486 0.005362099707 0 5.663523981 27.27968847 1023.834168 0.001953441351 +2.498939759e-06 0.000572538767 0.003303256806 0 3.140821364 -13.5731285 956.577821 0.002090786506 +2.497941111e-06 -0.006669971696 -0.001049261678 0 -14.20069023 12.81049091 942.1876833 0.002122719322 +2.49852468e-06 -0.00994199709 -0.008287663891 0 -12.25687034 12.93210146 1037.043926 0.001928558617 +2.496544352e-06 0.009127964959 0.01000920016 0 9.001231558 26.04642787 1047.710624 0.001908924043 +2.499085834e-06 -0.007945007947 -0.008607644916 0 12.27656505 -1.054637239 911.1429004 0.002195045365 +2.49898356e-06 -0.004373773579 0.01098515763 0 -5.411034243 13.46159223 1017.41362 0.001965768848 +2.496338808e-06 0.006748377499 0.01151736944 0 19.47777468 -17.58543122 969.2334887 0.002063486274 +2.497420684e-06 0.004388960223 0.006051322985 0 6.395077739 21.524908 988.2664658 0.002023745689 +2.499368496e-06 0.006567821261 -0.0027883265 0 -10.72925469 -0.7357274828 956.8506972 0.002090190252 +2.497795756e-06 0.004094940023 0.004746883905 0 -2.093414874 19.54625534 935.9480326 0.002136870777 +2.498774771e-06 -0.007804806866 -0.008497599601 0 5.576849605 12.66279021 883.7337071 0.002263125174 +2.499417297e-06 0.009611249669 -0.008608531386 0 1.209128712 -9.445722388 882.0392324 0.002267472836 +2.498975655e-06 -0.002643564041 -0.006787680234 0 -8.745930507 9.636697988 909.0694539 0.002200051923 +2.499009399e-06 -0.004959816225 0.007488553359 0 3.997051787 13.60621248 1007.356217 0.001985395004 +2.496542236e-06 -0.004441929245 -0.001007728761 0 -25.87156272 5.186106438 1002.857797 0.001994300693 +2.49871667e-06 0.009213501876 0.004331392874 0 2.173094187 16.65554629 1048.229766 0.001907978637 +2.498893481e-06 0.007775413888 0.003790133824 0 -2.718093532 13.80468287 945.6255062 0.002115002172 +2.495700297e-06 -0.001814169693 -0.001644153886 0 -27.21814434 -15.6988216 1070.793386 0.001867773957 +2.496824343e-06 0.002598215025 -0.007116435708 0 -24.00158542 10.27891448 1035.542986 0.001931353915 +2.496242986e-06 0.003920789002 0.008105533433 0 23.73266104 12.58789005 979.4793721 0.002041901092 +2.499887351e-06 -0.004323627851 -0.003752422433 0 3.308461491 3.049301941 947.9032057 0.002109920072 +2.499330492e-06 -0.007972355392 0.01388592631 0 -10.27112245 6.596819172 1054.816693 0.001896064039 +2.497570984e-06 0.006520111132 0.004441763896 0 -10.30663247 -20.13352258 1025.81872 0.001949662216 +2.496569138e-06 0.008938826108 -0.009906801735 0 23.79077038 -12.82093353 1031.177215 0.00193953083 +2.49850166e-06 0.00507920078 0.005746499619 0 2.481875197 17.96031612 1047.137083 0.001909969603 +2.498273092e-06 0.006718622739 0.008280066547 0 13.64128435 14.46768915 1069.683909 0.001869711214 +2.498488146e-06 -0.009936799454 -0.00463857393 0 -3.241049844 -14.90918652 877.2270498 0.002279911456 +2.496206083e-06 0.003929692097 -0.01098919765 0 14.78575643 -23.15525647 996.7935916 0.002006433445 +2.498257224e-06 -0.002792020212 0.004003800934 0 14.69097222 -9.685998815 942.2832499 0.002122504035 +2.497976386e-06 0.0006009859638 -0.004106098716 0 -15.84184553 -10.12599862 934.2949187 0.002140651694 +2.496649984e-06 -0.001926128552 -0.0003926145611 0 -7.901437631 23.98539424 975.1293753 0.002051009897 +2.498991327e-06 0.0007854900556 0.01356131584 0 9.05730327 -12.11914182 1065.06221 0.001877824583 +2.497924871e-06 0.006978892027 0.0003601991362 0 21.02704162 -5.433357729 1065.714138 0.001876675863 +2.494558355e-06 -1.254733186e-05 0.01485018476 0 14.65902697 25.71664709 896.550732 0.002230771699 +2.498084447e-06 0.00920472512 0.004495176177 0 -19.83109735 0.770471715 1013.648553 0.001973070443 +2.499775201e-06 0.009953751299 0.002000602365 0 -2.562185517 6.582805688 1053.453042 0.001898518415 +2.498816037e-06 0.002419235767 0.01006519413 0 -13.39350275 7.894450102 1010.147097 0.001979909665 +2.498480461e-06 -0.008859763122 0.005304102462 0 -14.85304469 -10.13814748 1031.327889 0.00193924747 +2.49969701e-06 0.009880367857 -0.006042179056 0 6.889974512 1.333992063 901.4875067 0.002218555427 +2.497076423e-06 -0.007917201384 -0.002012740828 0 -14.65719284 -20.3797587 1037.68449 0.001927368116 +2.498611078e-06 -0.006407153797 -0.01285307512 0 -12.5524161 -10.94231879 998.914905 0.002002172547 +2.498028752e-06 -0.009978951677 0.01302787535 0 17.55772867 -8.837367482 989.6672709 0.002020881218 +2.496558997e-06 0.005059106429 0.009663240903 0 22.53892697 11.17883946 958.5387107 0.002086509369 +2.496498282e-06 0.007860818058 0.005148609511 0 24.03914784 -5.863144416 934.5080906 0.002140163387 +2.498575197e-06 0.00674869475 -0.005453232313 0 7.994751537 -15.16922616 1015.557086 0.00196936246 +2.499984825e-06 -0.00102634002 0.003337297244 0 0.6132443304 1.403256351 879.0504326 0.002275182317 +2.497266709e-06 0.001090599908 -0.005391461346 0 -21.77332177 9.904068348 1022.647044 0.001955708974 +2.497563101e-06 0.005664130636 0.004444303201 0 11.56539007 -20.09880601 1049.990983 0.001904778263 +2.496492685e-06 0.008270648601 0.00751170903 0 24.51712884 14.17785276 1068.768313 0.001871312964 +2.499671288e-06 -0.007050285554 0.007058687818 0 -6.982439524 -3.276950319 951.235294 0.002102529219 +2.498653678e-06 0.009106997238 -0.007191488477 0 15.10646939 5.507139832 979.6742944 0.002041494823 +2.499952655e-06 -0.007077877615 -0.0005551503925 0 -2.63606783 1.069128689 924.4178381 0.002163523807 +2.498664211e-06 0.008604085804 -0.01335103151 0 -5.212693854 -15.8551587 1020.909163 0.001959038151 +2.499990159e-06 -0.009263086794 0.006850914108 0 -1.336054683 0.3569221914 985.7491558 0.002028913734 +2.497355211e-06 0.006792847249 0.01312180051 0 -15.96947428 -15.93095856 980.3902705 0.002040003925 +2.499366185e-06 0.002469072863 0.0005979112722 0 11.69312812 -2.134544368 1055.628947 0.001894605113 +2.497816251e-06 0.0005585185671 0.006057205887 0 -20.16342781 -6.801441412 1017.901501 0.001964826655 +2.499459286e-06 0.008472593487 -0.0004114863533 0 -8.275556875 -5.959256989 980.5676404 0.002039634919 +2.497603672e-06 -0.0008809336508 0.003579247431 0 15.87758888 14.44582716 980.172127 0.002040457941 +2.495248895e-06 0.0004302063817 -0.009504580095 0 10.04403403 -26.528353 919.55497 0.002174965136 +2.497044191e-06 0.004436327438 -0.01128023838 0 -14.59632921 18.55408873 970.5130738 0.002060765645 +2.498934701e-06 -0.002020968371 -0.01390060933 0 14.40378575 1.721680199 993.6579063 0.002012765145 +2.49724753e-06 0.007604043623 -0.009170784226 0 7.114851512 -22.23549737 994.6215838 0.002010815 +2.499882869e-06 -0.0003665125696 0.009367668168 0 -4.333653303 0.4510267858 900.1906293 0.002221751632 +2.496051169e-06 -0.002947276952 -0.002382765769 0 -24.00332464 -8.971076837 911.2905822 0.00219468964 +2.49757608e-06 0.002294091298 -0.01446044519 0 13.85806372 16.35816847 973.3626955 0.002054732536 +2.499642273e-06 0.001455456112 0.004836545228 0 -2.10029759 -7.530718246 924.2468631 0.002163924034 +2.498782402e-06 0.007784072692 0.01093896065 0 12.8696303 10.38897095 1059.689124 0.001887345973 +2.498252807e-06 0.001687579313 0.008889640672 0 11.32442815 -15.74884875 1037.408627 0.001927880632 +2.495321077e-06 -0.0006683866912 -0.0009355055611 0 17.24200518 20.6241553 878.1500356 0.002277515138 +2.498833711e-06 0.0006829103967 0.009572770635 0 -10.52084855 -11.47434932 1019.122748 0.001962472139 +2.499790051e-06 -0.003539783224 0.01485895229 0 5.294028106 -3.921705977 1016.698443 0.00196715163 +2.49942978e-06 0.003352242499 0.004378497158 0 -10.5666344 -0.3425140509 989.9004789 0.002020405124 +2.497168573e-06 0.001933486555 -0.003805382699 0 8.872154876 21.73995146 986.297198 0.002027786355 +2.498956892e-06 -0.002370987637 0.01133447844 0 -2.01156043 13.24770262 927.5612926 0.002156191743 +2.4957587e-06 0.004972986956 -0.01291427585 0 10.68051256 -24.7992975 926.5015013 0.002158658132 +2.49695028e-06 -0.009147556415 -0.009346769757 0 -24.30826044 -6.072490546 1014.040713 0.001972307398 +2.497977612e-06 0.002713033971 -0.004502512717 0 19.67526144 -1.004842399 979.2805341 0.00204231569 +2.497180358e-06 -0.001793998112 0.009178339185 0 -22.75693503 8.442161488 1021.68375 0.001957552913 +2.494449504e-06 -0.002938561821 0.008185275039 0 -16.44931177 26.85932032 944.5254227 0.002117465504 +2.497456883e-06 0.001489874157 0.01430470719 0 -21.93454887 4.736801682 994.6320734 0.002010793793 +2.497748144e-06 0.009502679175 0.006585759732 0 10.48607759 20.05734883 1066.13233 0.001875939735 +2.498509822e-06 -0.007346342667 -0.001497209093 0 10.87259896 -13.09472507 985.6710354 0.002029074537 +2.496652949e-06 -0.003858926804 0.004095100025 0 -11.63986758 20.46684153 909.5754044 0.002198828146 +2.499703581e-06 0.007996304887 0.01104549863 0 -6.695677973 -0.9505708781 878.2951974 0.002277138718 +2.499776203e-06 -0.001504135346 -0.00363389649 0 -5.894378128 -3.335478886 1012.285486 0.00197572723 +2.497676936e-06 0.001933228392 -0.01050139661 0 17.48027321 14.90513113 1065.383468 0.00187725834 +2.499188218e-06 -0.009488408538 -0.01428973748 0 -0.4447108537 12.19704937 957.7575813 0.002088211087 +2.498390463e-06 0.0003795448085 0.01373378018 0 -3.972602278 -15.85921602 911.0162168 0.002195350602 +2.499765446e-06 -0.006260118373 0.008139464878 0 -6.368021484 0.9510899943 940.0341815 0.002127582209 +2.493757139e-06 -0.003677712535 -0.006590143929 0 -21.46585653 -24.2180635 914.9999412 0.00218579249 +2.497677095e-06 0.0004856170248 -0.009377486366 0 -16.9981748 -10.16090893 918.4631941 0.002177550514 +2.497427615e-06 -0.004774724604 0.002346168074 0 -11.24212097 19.96840618 1009.903016 0.001980388185 +2.497384876e-06 -0.009219103078 0.01043068613 0 -14.44016226 14.43776062 892.5229414 0.002240838759 +2.498595681e-06 -0.006614938732 -0.0006834580936 0 -17.09055898 -0.4243069159 1019.883733 0.001961007844 +2.497932184e-06 -0.006633655648 0.007287918208 0 -1.561421102 -18.82862115 928.7546973 0.002153421141 +2.496457522e-06 0.004509164644 -0.003521458763 0 -15.59198255 -22.95035414 1041.83162 0.001919696005 +2.496120563e-06 0.007997632641 0.01457754746 0 -13.3508186 25.58097731 1035.318558 0.001931772579 +2.497566355e-06 -0.004225425781 0.004039429449 0 -9.290032008 -17.19825631 885.681651 0.002258147719 +2.498769781e-06 0.008588018366 0.0001712896884 0 12.13493345 -8.65400096 950.0252423 0.002105207221 +2.495101911e-06 -0.008308227146 0.01440897395 0 12.00849275 30.62188707 1050.138634 0.001904510447 +2.494656818e-06 -0.002137201135 -0.002966902005 0 -22.66258562 20.38478442 931.6983829 0.002146617443 +2.499571244e-06 -0.005382525418 -0.0101767048 0 0.1052262857 9.015806705 973.6122926 0.002054205781 +2.498645906e-06 -0.00905898869 -0.008488860035 0 14.12998409 -3.693362816 887.2892015 0.002254056509 +2.498320694e-06 -0.001919245552 0.002102808289 0 -12.65079782 -12.65155364 976.015227 0.002049148358 +2.499768121e-06 0.007792266295 -0.001860787484 0 -2.559951768 -5.683491147 915.3040382 0.002185066291 +2.4968021e-06 0.005609627571 0.01096753692 0 19.63606164 15.25703432 982.792911 0.002035016714 +2.495948227e-06 0.0009707596339 -0.006955833966 0 1.144786224 -29.7738849 1046.055137 0.001911945107 +2.499094483e-06 0.00853138804 -0.003052793664 0 13.20188713 -2.068103515 992.8373457 0.002014428656 +2.495758195e-06 -0.001100382209 -0.0004008551524 0 -23.27479832 -15.84807748 966.1315009 0.002070111572 +2.496136803e-06 -0.005135521917 -0.005990397669 0 17.25679339 -18.56758138 911.410166 0.002194401681 +2.499320886e-06 -0.009073228822 0.008535305823 0 -2.961246762 -10.13011335 905.5007877 0.00220872254 +2.498392185e-06 -0.003585495264 0.01336184186 0 15.29814027 -5.27606219 902.2044544 0.002216792425 +2.496621865e-06 -0.006493750783 -0.004406186405 0 -15.60134224 -19.86601379 971.3084763 0.002059078088 +2.499797008e-06 -0.004508687062 0.004457887101 0 1.369240826 5.705797298 920.8880736 0.002171816594 +2.496638027e-06 0.002598643964 -0.003563659885 0 -24.65940247 11.70886138 1052.205093 0.00190077012 +2.498372762e-06 0.008193950201 -0.002921494525 0 -18.19120085 4.517645187 1038.748535 0.001925393811 +2.497819906e-06 -0.006110670748 0.0006692858459 0 -15.21159104 12.39525336 939.4101791 0.002128995453 +2.499571545e-06 -0.006736755958 -0.01152837324 0 9.799749565 1.014141861 1064.223309 0.001879304825 +2.497338024e-06 0.007422392117 0.003352069755 0 6.515989719 -22.74251129 1024.894811 0.001951419774 +2.499128184e-06 0.00120148574 -0.001542057039 0 9.554957553 8.625363857 974.6964289 0.002051920927 +2.499753053e-06 -0.004724290972 -0.01008638072 0 5.919384572 4.293635774 1040.495556 0.00192216102 +2.495838935e-06 -0.001660203431 -0.01337711818 0 -23.53820905 16.05116673 986.9742578 0.002026395303 +2.495829577e-06 0.004316204758 -0.007138752427 0 21.74894988 -16.38357069 942.2378156 0.002122606381 +2.498369905e-06 -0.008730670614 0.006749387865 0 6.349842598 15.72585345 939.0400667 0.002129834574 +2.498673568e-06 -0.001452040006 -0.004614537901 0 13.74839335 -5.942904905 919.4031597 0.002175324262 +2.498345008e-06 -0.007308095424 -0.005209472857 0 -12.76576786 -13.13779187 1006.626676 0.001986833895 +2.495449956e-06 -0.006340517947 0.005756834478 0 18.07039824 20.14148258 896.3981455 0.002231151425 +2.497895178e-06 0.009992096466 -0.007612315658 0 17.43603165 -4.596083174 878.5668878 0.00227643453 +2.497141681e-06 -0.007777471277 0.01405157928 0 -6.536296576 22.02176211 960.3491176 0.002082575975 +2.498768923e-06 -0.002686461378 -0.003442987287 0 -8.560270469 -13.78506433 1033.933724 0.001934359963 +2.495801424e-06 -0.009316887064 -0.001228564382 0 -25.14001196 7.231532002 902.1699447 0.002216877221 +2.498720613e-06 0.007548148097 -0.000795169808 0 -10.87019488 -9.742123498 912.3508353 0.002192139167 +2.497649611e-06 0.004667794327 -0.002878662301 0 21.61592744 6.639478908 1042.588787 0.001918301851 +2.498647352e-06 0.001377027985 -0.01445840597 0 -14.8090165 5.614840344 962.7136285 0.002077460982 +2.499550794e-06 -0.005338916536 -0.01114115997 0 7.258957645 4.41255315 896.1700167 0.002231719387 +2.49985117e-06 -0.003252987913 -0.008393777395 0 0.4468426536 5.725067435 1052.5165 0.001900207741 +2.499609484e-06 0.008862534231 -0.003058763654 0 6.636349802 5.032367409 942.351265 0.002122350841 +2.499840927e-06 0.007174140285 -0.006910827763 0 -4.43010884 3.821673818 1037.2576 0.001928161335 +2.49709693e-06 -0.004961515372 0.001527121786 0 -13.15349512 -17.65278394 913.2180669 0.002190057416 +2.497664857e-06 0.00433108524 -0.007324606685 0 18.68834064 -9.40514018 967.7645284 0.002066618419 +2.499492185e-06 -0.001793592293 -0.01025765392 0 -1.378367532 10.27964052 1029.074121 0.001943494604 +2.497957656e-06 -0.005290864334 0.008071716113 0 -6.460778193 20.41764423 1059.289779 0.001888057489 +2.49611137e-06 -0.007097950829 -0.005443725879 0 20.0391217 18.83204643 985.4964765 0.002029433943 +2.499015208e-06 -0.009262895547 -0.004812191895 0 10.93143465 8.418843425 982.9954751 0.002034597361 +2.496947853e-06 -0.008128932114 -0.007636959068 0 -16.91630529 -14.47536995 900.7241851 0.002220435549 +2.499049167e-06 0.005602478315 0.004740008928 0 -13.58185089 3.460045626 1016.211796 0.001968093667 +2.498936999e-06 -0.0007134099212 0.008096094907 0 -12.82783095 -2.475390062 895.8620538 0.002232486566 +2.497637206e-06 -0.001744971694 0.0004989535874 0 12.87703864 16.40635045 959.0825163 0.002085326305 +2.497324961e-06 0.007598565691 0.001726991683 0 21.21157473 0.7845311781 917.3083794 0.002180291868 +2.496757431e-06 0.008902942361 0.005141972853 0 26.43005355 3.649628965 1047.197524 0.001909859368 +2.495714536e-06 -0.006104325079 0.008525557984 0 5.301393243 25.27251034 881.4667909 0.002268945377 +2.497974381e-06 0.007978814836 -0.002753543628 0 6.935994417 19.34018497 1020.487937 0.001959846783 +2.498943198e-06 -0.008027657252 0.008195993174 0 -12.59677464 6.064670403 961.4952436 0.002080093493 +2.499206625e-06 -0.003995828121 0.01097960223 0 11.95560256 1.119082206 953.1469471 0.002098312339 +2.498134588e-06 -0.002935422705 -0.01333262897 0 1.389730689 -20.16544438 1046.195396 0.001911688779 +2.497753155e-06 0.0002815873921 0.004110333149 0 -14.50026799 12.41289718 900.1277809 0.002221906759 +2.496260825e-06 0.007103984626 0.003814768181 0 26.48976849 -5.614695831 989.6331275 0.002020950941 +2.497417394e-06 -0.003885999424 0.006199683133 0 13.67235473 15.82311212 919.7703328 0.002174455871 +2.499374168e-06 0.006758796601 -0.007668005254 0 0.6801508309 10.15525488 909.6578487 0.002198628861 +2.496958744e-06 0.006440877696 0.009834985267 0 9.780343592 23.83172414 1044.036118 0.001915642539 +2.497242846e-06 -0.005451560635 -0.007441405007 0 -10.84187133 19.08429079 934.3046458 0.002140629407 +2.498711927e-06 -0.005222440879 -0.01439078178 0 -14.3018106 -4.181063688 928.1751387 0.002154765751 +2.497433292e-06 -0.004281210727 -0.008069511387 0 -20.31990499 -4.252230911 915.9209993 0.002183594438 +2.499390338e-06 0.005304840114 -0.002058069692 0 -4.008629341 -9.989121929 974.6574322 0.002052003026 +2.498219937e-06 0.009120452339 -0.0117907401 0 15.40277995 11.52794046 1019.374504 0.001961987467 +2.498706312e-06 0.001332729226 -0.01371426055 0 -14.80890659 2.323752369 931.7316938 0.002146540698 +2.498214778e-06 -0.004779439163 -0.008440764898 0 -9.784966593 -16.33040754 1007.24082 0.001985622464 +2.498673168e-06 -0.001786841373 -0.009350828792 0 -1.720857078 17.22255048 1062.295089 0.001882716037 +2.498658989e-06 0.006796219512 -0.0001944404421 0 11.44670412 10.15561422 934.2025174 0.002140863424 +2.498279542e-06 0.0006462741876 -0.002603035877 0 15.1568723 -6.033688807 879.2306238 0.002274716037 +2.49830419e-06 0.001647251681 -0.007670461556 0 15.84407027 7.037147031 941.1278363 0.002125109813 +2.496017255e-06 0.0004049754003 0.01232797157 0 -18.9018791 17.2822745 906.9266306 0.002205250053 +2.497059861e-06 -0.00601099357 -0.001653793934 0 -23.26798485 9.899303388 1042.303385 0.001918827118 +2.497800794e-06 0.006868941966 -0.003916987446 0 19.60072795 5.635537802 972.1386234 0.002057319761 +2.499181632e-06 -0.0005457350705 0.002967669661 0 2.783388239 11.43711248 919.9580401 0.002174012197 +2.49811074e-06 0.001981994277 0.009501789697 0 -9.368051093 15.15536014 916.3271038 0.002182626697 +2.499136214e-06 0.001839342876 0.01493928241 0 6.268810077 -10.08523266 903.3384519 0.002214009595 +2.497520729e-06 0.0006939756637 0.01271997181 0 17.74131939 -11.26498238 943.4146231 0.00211995866 +2.498136257e-06 -0.00256191331 -0.0004244370572 0 -18.52875165 -4.599330402 988.5542698 0.002023156504 +2.497971896e-06 -0.004821228134 0.01145083338 0 10.02881708 15.01814077 896.3912647 0.002231168552 +2.496887427e-06 -0.006669763359 -0.001248537179 0 7.795717436 25.05399842 1051.155056 0.001902668868 +2.498895104e-06 -0.005673821936 -0.004518333643 0 8.926067964 -11.10001457 958.0257875 0.002087626477 +2.497831003e-06 0.002382365549 -0.01333838396 0 2.07528963 -19.00095467 917.4123854 0.002180044691 +2.49939226e-06 0.00351991856 0.01419781271 0 -10.0145705 3.219673333 954.0644262 0.00209629449 +2.494410869e-06 0.009080452546 0.007546565565 0 25.78861042 19.46001326 965.4848938 0.002071497973 +2.497829313e-06 -0.00116253919 -0.003047299152 0 18.82879749 5.591756009 942.3693324 0.002122310151 +2.497404795e-06 0.001393723809 -0.00189022155 0 20.89830915 -7.257386752 970.657476 0.00206045907 +2.495070227e-06 -0.008440398448 -0.011297376 0 -23.16286243 -16.60675785 907.0036188 0.002205062867 +2.499094545e-06 0.004931929661 -0.003187730662 0 -12.34282166 -4.659554226 980.252456 0.002040290731 +2.499223766e-06 0.0007389605977 0.0007049751026 0 -6.870721493 -9.080148339 913.76468 0.002188747326 +2.495338424e-06 0.005931690088 -0.007526408401 0 26.75513548 14.82821177 1001.119834 0.001997762838 +2.499847544e-06 0.009284653054 0.003601711295 0 1.516517192 4.705242441 895.2518518 0.002234008225 +2.493928856e-06 0.001613963051 0.01415506908 0 24.79884311 25.49414124 1019.735845 0.001961292241 +2.499634387e-06 0.004399615661 -0.003887994995 0 -6.646247373 4.449251084 935.2621295 0.002138437917 +2.496174149e-06 0.0007412734209 0.0005394293857 0 15.31098501 24.9739886 1058.393628 0.001889656122 +2.499623396e-06 0.00883995147 0.006718327054 0 7.931614036 -4.335861738 1041.492543 0.001920320998 +2.499416393e-06 -0.004741768162 -0.004698954255 0 11.53219382 0.8609603772 1070.300353 0.001868634346 +2.498661719e-06 0.008108087354 0.01148304442 0 9.266701684 11.20665185 888.6670664 0.002250561628 +2.498036998e-06 0.001741654938 0.005877919968 0 -5.92365916 17.11877711 913.9612896 0.002188276487 +2.499856972e-06 -0.0008645073092 -0.007921701365 0 -5.317809487 -2.04921991 1065.522355 0.001877013645 +2.499433502e-06 0.004251607624 0.005725979009 0 5.814237211 9.633552157 1057.022012 0.001892108185 +2.499890397e-06 0.0005937585747 -0.01361026482 0 -2.904957955 -3.74051221 1011.541064 0.001977181226 +2.496460724e-06 -0.004526117095 0.00800496907 0 -19.86064946 20.08339938 1061.062387 0.001884903305 +2.498715065e-06 0.006479998273 -0.01144640816 0 6.348340448 -15.66496652 1054.169006 0.001897228991 +2.499269145e-06 0.008497295622 -0.01280132336 0 -8.828362523 -7.734506077 970.7055794 0.002060356963 +2.495909008e-06 0.0005065525882 -0.01150514779 0 15.79918104 -21.90313715 943.5727583 0.002119603372 +2.499194362e-06 0.00705884072 0.00686698582 0 7.497918044 -11.00606501 1049.013239 0.001906553631 +2.497464245e-06 -0.007005053363 -0.01275729687 0 -19.47988398 4.969137791 892.3635012 0.002241239133 +2.496829673e-06 -0.007878105035 -0.001769217288 0 -24.47357475 8.837794704 1032.858156 0.00193637431 +2.495898706e-06 0.008902603928 -0.006041346523 0 29.24852506 -8.124882659 1059.259802 0.001888110921 +2.497801785e-06 -0.007270151079 0.008366422886 0 19.6273805 3.4269363 949.9260859 0.002105426969 +2.499385928e-06 -0.006772910124 -0.003262715258 0 -11.64560078 -0.07826015019 1050.768511 0.0019033688 +2.499715678e-06 0.0043228353 0.001381701794 0 -6.728042315 2.895966477 971.3120663 0.002059070477 +2.498545004e-06 0.004254023237 0.01276377522 0 7.541384613 13.99711453 931.8386954 0.002146294214 +2.499190645e-06 -0.008833208247 0.01088022358 0 9.271261007 7.123643034 918.8639348 0.002176600826 +2.497501801e-06 0.001495858659 0.01251724689 0 5.814334299 19.95682121 929.5898871 0.0021514864 +2.494883387e-06 -0.008447959418 -0.001767442909 0 -28.02572555 16.28725725 1012.518079 0.001975273373 +2.499316897e-06 -0.006849777079 -0.002932623897 0 -8.179409206 8.222327113 992.1419437 0.002015840589 +2.497979982e-06 -0.008809087072 0.004918477396 0 -3.223462386 -19.63723228 989.7596603 0.002020692579 +2.498390592e-06 0.008169209412 -0.001489929166 0 -11.41923479 -15.15038545 1057.2018 0.001891786411 +2.498306578e-06 -0.007203451348 -0.0032605773 0 13.82103729 11.69952065 983.6999394 0.00203314031 +2.496211695e-06 -0.001766760102 0.009069704083 0 -20.64038787 -14.93036637 924.9501204 0.002162278761 +2.499302502e-06 0.001697308659 -3.63748474e-05 0 1.747265711 10.64336499 913.1069005 0.002190324045 +2.495830951e-06 0.003055325849 -0.01409548243 0 -18.2815115 -22.85721445 1012.979057 0.001974374481 +2.496778568e-06 -0.008332592854 0.01359270413 0 -10.392171 24.71747353 1055.844796 0.001894217793 +2.499045032e-06 -0.003226352343 0.008390418452 0 -5.263040071 13.16233548 1025.578022 0.001950119794 +2.49937142e-06 -0.009791040709 -0.0128404744 0 6.742317491 7.463953965 896.9920814 0.002229674087 +2.498938609e-06 -0.009357779864 -0.001558875265 0 -8.992272616 -12.57464789 1060.868309 0.001885248134 +2.495949791e-06 0.009310017019 0.008328623653 0 11.09481332 22.6003641 884.0621268 0.002262284447 +2.498626832e-06 -0.006409738394 0.005100848407 0 -2.904943457 -17.28178908 1057.238334 0.001891721039 +2.498455988e-06 0.001720814761 -0.01477295733 0 -4.910558088 16.46794729 977.6781147 0.002045663056 +2.49751284e-06 0.004752295022 -0.01160100574 0 -19.47246305 -1.951134275 877.1243864 0.002280178309 +2.496634885e-06 0.007407079735 0.005305078786 0 22.47061911 -9.079074248 933.7213146 0.00214196674 +2.499817374e-06 0.001414254839 0.01060256491 0 -5.349838823 -1.552947264 921.7201265 0.002169856058 +2.498395297e-06 -0.007991335099 0.002746464887 0 -17.80668588 -6.716733851 1062.069493 0.001883115948 +2.497298448e-06 0.006306388821 -0.001232946706 0 -3.306684163 20.78137555 904.9111588 0.002210161716 +2.497325882e-06 -0.007621904816 -0.009791647727 0 14.70940884 14.10423254 880.8446897 0.002270547832 +2.49984596e-06 -0.007890110803 -0.00501264631 0 5.039789635 0.4251687695 911.1927508 0.002194925276 +2.495772549e-06 -0.009957571519 0.009921880164 0 -25.49917226 -2.796995195 881.6440066 0.002268489305 +2.497142203e-06 0.0006248960178 0.001504569557 0 11.67591059 -20.23579584 976.7997173 0.00204750264 +2.498655368e-06 -0.006989767277 -0.0134547858 0 -16.04569321 5.521332463 1034.555555 0.001933197295 +2.496061702e-06 -0.004923674017 0.0104834202 0 -26.59497999 7.475004007 983.748819 0.00203303929 +2.498422509e-06 0.006709676553 0.01417450547 0 0.8266379101 18.67072975 1051.926426 0.001901273654 +2.498280273e-06 0.003072012272 -0.01332482885 0 12.52467064 14.16917462 1019.440638 0.001961860186 +2.499521678e-06 -0.009829719267 -0.005745388919 0 -3.113422338 -8.507754306 926.1899628 0.00215938423 +2.499805081e-06 0.000616902262 -0.01494131195 0 -1.631191886 -5.613636867 936.247704 0.002136186814 +2.497757315e-06 -0.002496406827 -0.003061481256 0 -16.86013188 13.73905959 1026.590246 0.001948196963 +2.499862079e-06 -0.009209894873 0.007992238377 0 -1.286684554 -4.965109676 976.5721939 0.002047979671 +2.496174706e-06 -0.006958647328 0.005569760387 0 17.58501102 16.89540238 881.1453027 0.002269773207 +2.49782147e-06 -0.002082844567 0.007736798739 0 -18.74975001 -9.345359681 1003.317928 0.001993386089 +2.496468711e-06 0.006877570534 -0.0106236528 0 19.57283407 19.13475991 1029.43088 0.001942821066 +2.499200345e-06 -0.006810017684 0.007053553741 0 5.511978961 -9.635780111 877.6880106 0.002278714049 +2.499611447e-06 -0.001694176197 0.01463909851 0 -9.097369465 2.238170159 1062.702337 0.001881994544 +2.499930411e-06 3.48341465e-05 -0.01171897885 0 -1.376503278 3.240300554 943.6702608 0.002119384369 +2.498111025e-06 0.003944903705 -0.01482058696 0 -18.48265791 0.0006288085542 950.6336505 0.002103859882 +2.495201377e-06 0.001963347578 -0.005797075338 0 -24.67420383 -20.18549905 1028.296827 0.001944963699 +2.498334787e-06 0.002316362914 -0.001875272943 0 -16.93772766 -4.848307176 965.1554754 0.002072204998 +2.498663943e-06 0.009784110719 -0.001282833656 0 -7.136475289 12.81315924 897.0405932 0.002229553506 +2.499655552e-06 5.309136119e-05 -0.003292001516 0 8.020651482 0.6633218287 969.595351 0.002062716161 +2.498704128e-06 0.003246914102 -0.01198355129 0 4.935617352 16.50225982 1069.712968 0.001869660422 +2.494530072e-06 0.008021145943 0.009766757092 0 21.52360363 25.89786756 1017.272595 0.001966041365 +2.497403644e-06 0.008981275661 0.01091380245 0 18.03941037 -15.44044456 1041.614034 0.001920097018 +2.497211343e-06 0.006442590957 0.01356078542 0 12.12977267 18.14078042 923.6536834 0.002165313727 +2.497564437e-06 0.00886285068 0.00429209189 0 19.42839274 -11.73403571 1028.000868 0.00194552365 +2.496524552e-06 -0.006782943914 0.008796618863 0 -10.09241838 24.01567488 987.5590134 0.002025195429 +2.495398326e-06 0.001856615958 -1.363899093e-05 0 18.83941736 -25.72421232 1050.303122 0.001904212183 +2.493716656e-06 0.002998616351 0.01078219723 0 25.0071214 22.59200122 949.7778954 0.002105755472 +2.499758742e-06 0.001849372052 -0.008309286693 0 0.885498547 6.25855631 909.9262173 0.00219798041 +2.499576425e-06 -0.002786468226 0.0006117182015 0 9.815463555 -0.2062954762 1066.593076 0.001875129367 +2.49965022e-06 0.008364093271 0.003096198631 0 -4.755347766 6.029428394 918.0593962 0.002178508284 +2.497039208e-06 -0.007009501797 0.004196850001 0 -3.339363647 23.43149798 972.1972301 0.00205719574 +2.498084786e-06 -0.007378233755 0.01019474502 0 10.30492703 17.47906353 1036.446397 0.001929670465 +2.499698857e-06 -0.004389286218 -0.01240357585 0 -6.8606735 -1.216171242 897.7687655 0.002227745135 +2.499005134e-06 -0.003043311154 0.006722046118 0 2.498582484 14.20046716 1022.023894 0.00195690141 +2.49535517e-06 0.009866251685 0.0009503280628 0 25.22757276 -10.63065117 897.5652473 0.002228250265 +2.496065621e-06 0.0007604258182 0.01242627011 0 17.09358752 18.6727991 901.9312491 0.002217463917 +2.499990292e-06 -0.001347714048 -0.002415437589 0 0.8834063203 -0.9331913585 922.2047185 0.002168715861 +2.498634672e-06 -0.002278556908 -0.009343698258 0 3.232326787 -14.38455857 892.0121845 0.002242121839 +2.49807017e-06 0.00281732549 -0.01051820788 0 8.576155787 15.63325491 907.3576299 0.002204202548 +2.49733884e-06 0.009937757533 0.006885896078 0 20.61878904 3.281712147 904.6311274 0.002210845879 +2.499111839e-06 9.273958858e-05 0.01308578 0 -5.764600656 12.57191126 1037.576518 0.00192756868 +2.495417609e-06 0.0053206683 0.01260458391 0 3.545142558 28.98584051 963.9405685 0.002074816711 +2.498387067e-06 0.0007899188111 -0.01257054437 0 18.06179746 6.015790072 1059.684829 0.001887353622 +2.493172664e-06 0.0005023239926 0.00761946837 0 23.92170678 25.89375191 953.0226477 0.002098586015 +2.49635552e-06 0.006337689497 0.0007189455908 0 23.79776336 -13.16387954 1006.779388 0.001986532525 +2.499725732e-06 0.008471859139 0.00116622851 0 -6.951093722 -0.9344636224 946.9383349 0.002112069948 +2.497339821e-06 -0.009876727848 -0.00637269174 0 -24.17483965 -1.71676434 1050.297042 0.001904223206 +2.499545211e-06 -0.00528336999 0.008013356673 0 -7.711296193 -5.050933465 966.4930954 0.00206933708 +2.496735378e-06 -0.005260838657 -0.0002639827179 0 11.80901885 -22.58895889 997.049875 0.002005917708 +2.496755003e-06 0.003386723497 0.001260679259 0 -11.65010301 -23.58805811 1032.184862 0.001937637408 +2.498839606e-06 0.001965966425 0.003594807044 0 15.14607215 1.849124259 1001.427062 0.001997149943 +2.497415641e-06 0.007017488293 -0.000563911486 0 7.474592705 -21.13823289 985.8075768 0.002028793496 +2.49836477e-06 0.000243385667 0.00144105505 0 18.69262729 1.611209846 1037.209942 0.001928249933 +2.499707471e-06 -0.006159879682 -0.01035186868 0 0.9560035444 -7.785655398 1025.477176 0.001950311568 +2.498001849e-06 -0.005952345883 0.01009585618 0 -3.323555235 19.77484656 1002.773007 0.001994469323 +2.49729594e-06 0.006925118328 -0.009161228193 0 -9.0574415 -18.6910674 892.7652181 0.002240230645 +2.496652658e-06 -0.006739500761 -0.004816656369 0 -3.677910454 -26.37711697 1028.786885 0.001944037224 +2.497908637e-06 -0.006202757433 -0.01412682997 0 -20.46632929 4.20016874 1021.250185 0.001958383978 +2.49923083e-06 0.001381398882 0.01427696059 0 1.015923838 12.85885435 1039.86551 0.001923325643 +2.499086566e-06 0.002988195121 0.005212401997 0 -5.213544387 -12.97749247 1034.587854 0.001933136941 +2.499117144e-06 0.002692891266 -0.004816368786 0 10.78698086 6.191027982 935.8590727 0.002137073902 +2.499001713e-06 -0.004309578687 0.004778286922 0 13.88759016 2.197169787 994.9184345 0.002010215039 +2.496089758e-06 0.004486629264 -0.006991869814 0 22.26749346 -14.06122327 941.1742483 0.002125005018 +2.499289654e-06 -0.006086153984 -0.0001595865679 0 11.31132035 -3.080322299 983.4478464 0.002033661477 +2.498893843e-06 -0.00457950308 -0.007153473229 0 8.598305173 9.816670132 877.2213379 0.002279926301 +2.495056395e-06 -0.008020843435 0.01049121761 0 -17.30028722 26.09860135 995.0630354 0.002009922918 +2.497516423e-06 0.003673719717 -0.002960637063 0 0.7706347699 -21.93972792 984.6532842 0.002031171817 +2.49886756e-06 -0.008085208158 -0.0114229265 0 15.91019126 -1.302106012 1060.543777 0.00188582503 +2.497484286e-06 -0.007123080026 -0.005575718377 0 -14.4615997 -17.82407247 1022.887476 0.001955249279 +2.499665121e-06 -0.009810808916 0.0004421473132 0 4.253420844 6.769642522 976.8691275 0.002047357157 +2.498949962e-06 0.005049887239 -0.006945737838 0 11.26203727 -10.55560192 1064.962493 0.001878000412 +2.499718604e-06 0.008770172358 -0.004224816759 0 2.413567348 -6.745151213 954.9065249 0.002094445841 +2.493759356e-06 0.005248930356 -0.008632494654 0 -20.42935649 -28.39110717 989.1221986 0.002021994858 +2.499418036e-06 -0.005323782731 -0.01331701658 0 8.400116814 5.113287623 911.4432975 0.002194321913 +2.495869483e-06 -0.008859824599 -0.002307361008 0 -18.58111637 16.99938888 875.6677247 0.002283971355 +2.498443301e-06 -0.0007015248109 0.008059892091 0 16.28876592 -7.023222629 1005.06666 0.001989917763 +2.497884189e-06 -0.003455741266 0.00790377554 0 -0.1681459381 20.3484466 988.9053979 0.002022438147 +2.499009361e-06 0.003687572861 -0.007213452361 0 4.07859893 13.36800916 992.7885791 0.002014527606 +2.499084268e-06 -0.004983133818 -0.001114592138 0 11.65135556 -7.346815933 1017.674452 0.001965265017 +2.496054332e-06 -0.002368261544 -0.008971696578 0 -10.69899635 -23.83802442 929.5842939 0.002151499346 +2.499513749e-06 0.008245916083 0.0006678825058 0 5.661395398 8.403279582 1027.394965 0.001946671015 +2.498231958e-06 0.001283665658 0.005823355482 0 -4.832424785 17.58945483 969.7880005 0.0020623064 +2.499615595e-06 0.001776156272 -0.00357544688 0 -2.092226121 -7.388002178 875.6776519 0.002283945463 +2.498637877e-06 0.004084580871 0.01404188768 0 -6.704113321 -16.28659703 1066.860852 0.001874658722 +2.499428167e-06 0.008493993483 -0.01456830741 0 -5.325000317 8.387358504 928.9222698 0.002153032676 +2.497844759e-06 -0.004324252522 -0.01276670677 0 -19.97782243 -2.146536058 967.4695426 0.00206724854 +2.496319868e-06 -0.007183326459 -0.01111404911 0 -24.58966024 -6.198996872 934.2122899 0.002140841029 +2.497317573e-06 0.007952825702 -0.01233601656 0 -4.280850688 -24.41236424 1069.62774 0.001869809398 +2.499034135e-06 0.007259561745 0.01145980946 0 -12.89512931 3.117816969 954.39165 0.002095575752 +2.499964073e-06 0.009060972966 0.01098137449 0 0.411580311 2.822912208 1064.239467 0.001879276293 +2.499521991e-06 0.002310550525 -0.01044113135 0 -5.624005437 -6.854962409 906.7806281 0.002205605124 +2.496441092e-06 0.001685578274 0.00788421347 0 -18.36380698 15.53477156 901.0902261 0.002219533563 +2.4991591e-06 -0.001776956059 0.008154823005 0 -0.4263182238 -13.76704556 1061.95724 0.001883315 +2.498989075e-06 -0.009471412753 -0.009562174547 0 -5.139291162 13.84902365 1038.711309 0.001925462815 +2.497279383e-06 -0.009208840248 0.01477491427 0 -3.027263658 22.01232051 952.1566459 0.002100494712 +2.496885401e-06 0.003413353702 0.007595294856 0 -19.02320778 -13.73958726 939.7713017 0.002128177352 +2.498480938e-06 -0.006365946815 -0.009608198586 0 -6.633355264 -17.2300269 1059.000056 0.001888574027 +2.496898406e-06 0.009451108393 0.01352518947 0 24.02529097 -9.359868829 1034.7679 0.001932800583 +2.498384259e-06 0.005569814113 0.002827182035 0 -17.35406604 3.144934373 980.8709113 0.002039004294 +2.496358641e-06 -0.002174425866 -0.0007786108204 0 17.40977139 16.53404159 889.2134105 0.002249178854 +2.49808109e-06 0.007574161282 0.007111596556 0 -1.941828946 -17.28189604 887.4592129 0.002253624697 +2.499383069e-06 0.0001338152681 -0.01181923515 0 -0.1909169525 10.97732005 988.2989682 0.002023679134 +2.495443999e-06 -0.00970403594 -0.002484581578 0 -21.66011237 -23.94155776 1068.820143 0.001871222219 +2.49884861e-06 0.0051901402 0.001420622708 0 7.099524205 -12.52076657 948.3422834 0.00210894319 +2.49950185e-06 -0.002211029385 0.01060936662 0 3.581389161 -7.986483639 876.8310316 0.002280941171 +2.498256329e-06 -0.007915322841 0.007720410288 0 14.02421608 -10.78279605 947.0539847 0.002111812032 +2.499024446e-06 0.009164847098 -0.01050967247 0 7.957694948 -12.15071749 1039.68272 0.001923663789 +2.496682974e-06 -0.006925165066 0.005092291315 0 19.64299022 -14.90526606 956.8660881 0.002090156632 +2.499115218e-06 -0.006779636312 -0.008399092939 0 -5.947353886 10.72480921 921.7696707 0.00216973943 +2.499863659e-06 -0.001044663796 0.009552907781 0 -3.475992543 -3.18642317 903.0029449 0.002214832201 +2.499990731e-06 0.009982523215 -0.01212584329 0 0.9396596115 -0.7436812392 880.1550183 0.002272326986 +2.498038975e-06 -0.007068696716 0.001628997959 0 -4.461088187 -17.04010958 889.1666431 0.002249297154 +2.499719921e-06 0.004935871051 0.006109281499 0 7.145622978 -2.53451448 1012.974883 0.001974382617 +2.49727901e-06 0.001415388365 0.005548995717 0 -16.63834191 -12.0101621 879.2769636 0.002274596154 +2.498519067e-06 0.002803364373 -0.00358132995 0 -8.868804517 -14.25319738 975.210772 0.002050838708 +2.499064426e-06 0.008882834115 0.01387187238 0 9.659363197 10.66351991 1051.683036 0.001901713664 +2.497908874e-06 0.008422222384 0.007167998103 0 -17.7769832 -6.773836327 929.9433316 0.002150668683 +2.496067531e-06 -1.896863338e-05 0.008531157598 0 -23.08908752 -14.22841839 966.5030792 0.002069315704 +2.496311811e-06 0.00690974988 0.005106737951 0 24.16257368 6.717852067 922.8887437 0.002167108456 +2.498208128e-06 0.004934862838 0.01237037372 0 6.809709384 18.90684231 1061.25526 0.001884560742 +2.498424154e-06 0.001303962823 -0.01333508401 0 16.14955853 -5.350850816 958.0863053 0.002087494612 +2.496401159e-06 -0.001471315539 -0.01188142332 0 -21.41051088 -11.96647899 913.7457897 0.002188792575 +2.499719337e-06 0.0008006363548 -2.435162896e-05 0 -1.250258476 -7.282667203 986.2153487 0.002027954648 +2.498540995e-06 -0.007558499947 -0.0003805845254 0 -1.12516087 -14.93167374 876.3942539 0.002282077947 +2.499933525e-06 -0.007445962308 0.008145647021 0 -3.477912969 0.6770791288 971.737667 0.002058168648 +2.499769745e-06 0.006783610345 -0.01397019839 0 -6.311364299 -0.911215099 939.6548594 0.002128441076 +2.493461435e-06 0.006609482463 -0.009316949719 0 22.64005669 -23.82900288 908.0469914 0.002202529185 +2.498932663e-06 -0.003452359713 0.005460243348 0 -10.84998165 10.46374102 1031.526332 0.001938874402 +2.496752652e-06 0.007273134878 -0.01469775112 0 17.53523827 13.86405742 876.7224774 0.002281223593 +2.492305023e-06 -0.00465848675 -0.01319142625 0 -23.39459404 -26.71674386 904.175319 0.0022119604 +2.499883645e-06 0.007168351994 -0.004084256608 0 -3.497147917 3.394081753 1010.217431 0.001979771818 +2.49937817e-06 -0.001204837919 0.003553136783 0 9.63001033 4.191496972 941.6894869 0.002123842336 +2.496801866e-06 -0.002262544772 -0.006282013664 0 -21.03210466 -9.32819527 909.2967759 0.002199501915 +2.499424436e-06 -0.009933093246 0.003266857371 0 -6.442492022 -6.885264557 878.7840899 0.002275871881 +2.497485448e-06 -0.003817004259 6.003538147e-06 0 -20.81110733 5.185429214 956.016618 0.002092013844 +2.497255951e-06 -0.0009139066795 -0.01066285844 0 -5.254802444 -23.52803979 1028.64656 0.001944302424 +2.499174631e-06 -0.006988108535 0.0008299099747 0 3.446494806 -11.38655733 925.8367918 0.002160207952 +2.49534056e-06 0.004827716551 -0.01443807243 0 26.72999063 -17.57818505 1047.261414 0.001909742852 +2.494388869e-06 0.009648626698 0.01046417983 0 25.66951678 18.31743752 940.5587765 0.002126395553 +2.49976613e-06 -0.008887684285 -0.002085484585 0 -0.7474834648 -7.123848127 1047.308158 0.001909657615 +2.496519168e-06 -0.001446395679 -0.01481517378 0 -23.64115041 -8.388617568 950.2461354 0.002104717847 +2.497640273e-06 -0.009265974709 -0.01412432411 0 -18.10903246 12.01861388 1000.110537 0.001999778951 +2.494641918e-06 0.006872246871 -0.01054281047 0 25.2431759 -21.90111766 1020.078488 0.001960633445 +2.497529794e-06 0.008556880299 0.009800897695 0 0.1322605757 21.08304177 948.1985184 0.002109262946 +2.496857257e-06 -0.007206777357 -0.01490519188 0 -16.53215529 -14.98675014 889.6173123 0.002248157688 +2.499463515e-06 -0.009230142827 -0.01132746814 0 0.2615567581 -10.78283115 1041.194221 0.001920871206 +2.499788217e-06 0.002595492951 -0.0132100774 0 -5.732306806 1.428045709 907.6744477 0.002203433186 +2.497460116e-06 0.007004585555 0.007279832033 0 19.82654325 -1.941763782 883.5527205 0.002263588752 +2.499814167e-06 0.00261594411 -0.009728818364 0 -2.596351611 5.175286446 949.7155466 0.002105893714 +2.499538675e-06 0.004039202468 0.009173721001 0 10.0648257 0.9399444054 1052.309087 0.001900582276 +2.499119533e-06 -0.0003476299904 -0.002372491148 0 8.202033227 -11.56823308 1068.499282 0.001871784131 +2.496610555e-06 0.00977231943 0.008549292111 0 22.18842565 11.62344776 961.5739311 0.002079923275 +2.496900483e-06 0.006333604455 0.0009971093852 0 26.53365391 0.1019212479 1065.212343 0.001877559919 +2.499779396e-06 0.003221644568 -0.0006657274067 0 0.05790965074 5.900639315 888.3505419 0.002251363517 +2.496763784e-06 0.005829608329 -0.004183207923 0 2.019555325 -22.43934777 885.150996 0.002259501496 +2.499039474e-06 -0.001004776531 0.01405677589 0 -12.65447756 -1.573867115 919.9100031 0.002174125722 +2.497663728e-06 0.007709478685 0.005580154052 0 19.94303414 3.38650032 935.4814315 0.00213793661 +2.499531242e-06 0.00828498241 -0.01250192055 0 -5.628948378 6.496329319 887.6975558 0.002253019609 +2.497225993e-06 -0.0027369445 0.002631521774 0 -23.08743649 -9.329897186 1056.752096 0.001892591467 +2.495864706e-06 0.001919841636 -0.001629369082 0 16.1764104 -23.51299253 991.7852183 0.002016565647 +2.496078693e-06 0.003434860338 -0.01271546894 0 6.770710139 -27.48871627 1010.318114 0.001979574524 +2.499772262e-06 0.008201675727 -0.002939610989 0 -4.220248111 -5.273231017 1000.732839 0.001998535396 +2.498402914e-06 0.0010221719 0.01310392513 0 15.82780221 8.442998498 1003.4881 0.001993048048 +2.498877225e-06 -0.006126934504 -0.01477473164 0 4.542003487 14.7500594 1029.747797 0.001942223141 +2.498847558e-06 -0.001477521844 -0.01047963168 0 -12.19487081 -6.523989998 910.8191386 0.00219582562 +2.499300418e-06 -0.008857434411 0.004700710012 0 8.816880253 -8.479085876 1034.029135 0.001934181477 +2.497595904e-06 0.005016577784 -0.010395948 0 -17.65029452 9.422827068 912.1315431 0.002192666195 +2.497442716e-06 -0.007076120782 -0.003682444913 0 -20.70119139 -3.169335488 925.6680106 0.002160601833 +2.499644454e-06 0.008099369858 -0.0009748979635 0 7.542682274 -0.7219614052 898.5044135 0.002225921175 +2.499733619e-06 0.004717208631 -0.006261404534 0 -1.219424307 6.526506405 909.5947863 0.002198781293 +2.497530611e-06 0.003453279934 -0.003474980774 0 19.53196867 -7.790586879 945.8761429 0.002114441743 +2.499069637e-06 0.007812005049 0.00796599535 0 -2.6423854 -12.36860028 927.064614 0.002157346931 +2.497221614e-06 0.000917735328 -0.001199817059 0 -22.02985096 3.424149862 945.3724071 0.00211556841 +2.496769134e-06 -0.008822982484 0.007836367849 0 17.14939947 18.58804477 994.4318259 0.002011198705 +2.497650931e-06 -0.004964978439 -0.009040833239 0 -9.125163333 -20.2447063 1024.139038 0.001952859843 +2.496856667e-06 0.004246071209 -0.003258715372 0 -18.95540717 11.63547765 886.6501674 0.002255681072 +2.495869106e-06 -0.009299597009 -0.01075089983 0 7.148799479 -27.10867228 974.7672294 0.002051771889 +2.498505685e-06 0.0027061373 0.004420499427 0 6.369587872 -15.66788992 978.1170309 0.002044745094 +2.497935646e-06 -0.007770616128 0.01014086941 0 -4.58176967 19.81187344 1000.455359 0.001999089697 +2.498903019e-06 -0.008841737416 0.01134784828 0 4.653856725 -15.12275739 1068.053745 0.001872564944 +2.499649915e-06 0.007277140487 -0.009116352643 0 -1.742560798 8.342245582 1018.432279 0.001963802642 +2.499850685e-06 -0.007852972923 0.01418531281 0 2.831406757 4.419412938 960.436504 0.00208238649 +2.497327745e-06 0.007060527238 0.007709363101 0 13.87230996 -19.69995744 1041.799093 0.001919755943 +2.497732728e-06 0.00375579909 0.006460311706 0 21.11234212 -6.984079738 1043.931998 0.001915833602 +2.496729002e-06 -0.000165963727 0.001716156725 0 -2.565241436 24.424641 959.7144046 0.002083953299 +2.495752982e-06 0.008465347644 0.009339747217 0 -16.26899325 23.91669936 991.8545457 0.002016424695 +2.499682466e-06 -0.003509044014 0.01343628023 0 0.8339953691 -8.475100171 1068.579944 0.001871642838 +2.496234178e-06 -0.001745734066 -0.01152638484 0 0.8644525508 -26.86627904 978.9079446 0.002043093031 +2.49783287e-06 0.006004442195 -0.002542808193 0 17.35479559 10.46106056 973.0221498 0.002055451667 +2.495918261e-06 -0.006916744988 0.008222313258 0 -21.34132554 -14.61436511 904.7314607 0.0022106007 +2.49724341e-06 0.007425371138 0.01339581499 0 22.0587584 0.1869346502 939.1088183 0.00212967865 +2.497190766e-06 -0.008042785232 -0.0018439488 0 4.515281201 21.82746531 939.9615339 0.002127746645 +2.497088827e-06 0.0004153671023 0.0144691942 0 -17.72008471 13.22806435 916.0268399 0.002183342139 +2.499454701e-06 0.002579093091 -0.008879814923 0 -7.799745612 -5.577198271 918.0941614 0.002178425791 +2.495880327e-06 -0.004782179352 0.001035655998 0 18.43874261 22.38265183 1009.660517 0.001980863831 +2.497951874e-06 -0.004102342906 0.01409982061 0 -10.77764225 -14.45130847 890.4580379 0.002246035091 +2.498863311e-06 0.005391018041 -0.003323718393 0 -11.34550661 7.779973391 912.2342082 0.002192419427 +2.495578683e-06 -0.009661405073 0.003635449873 0 16.2696996 23.04132482 947.9160107 0.00210989157 +2.498644417e-06 0.005977924597 0.006082867091 0 14.62390359 -9.633424571 1063.317932 0.001880904986 +2.497887708e-06 -0.003175021447 -0.01177558672 0 -3.902958866 -21.59197717 1067.196534 0.001874069055 +2.498624853e-06 -0.007345603742 0.01262987704 0 -9.116753781 12.49282721 932.3706615 0.002145069641 +2.499772681e-06 -0.001998210689 0.004505169194 0 -6.004696142 -2.580591779 969.2740422 0.002063399939 +2.495455255e-06 0.0006129984884 0.007496685844 0 -16.66829317 23.47263531 954.2406148 0.002095907436 +2.498209578e-06 0.002863720991 -0.007761208748 0 18.57549328 -5.555929011 1024.322592 0.001952509898 +2.498967376e-06 0.009243341205 -0.004930377798 0 -13.24743923 -5.078692277 987.0867908 0.002026164283 +2.497079365e-06 -0.009327655714 -0.001394281222 0 10.27383859 -22.80394486 1034.414377 0.001933461139 +2.499184528e-06 -0.009787278431 0.006284422064 0 5.167720352 10.94238848 947.456038 0.002110915884 +2.496892325e-06 0.001838480248 -0.0003092414676 0 19.37123315 10.54869509 884.3308939 0.002261596891 +2.496899577e-06 -0.001750958478 -0.004667046424 0 -26.12496944 -0.8984136366 1049.264192 0.00190609764 +2.497269875e-06 -0.004977089586 0.005853026714 0 3.299687434 20.92802306 906.3087035 0.002206753606 +2.497934352e-06 0.001798767033 0.00983786589 0 7.998298875 -16.37025483 896.1150423 0.002231856297 +2.498839337e-06 0.001842098795 -0.009368807457 0 14.94229653 -0.9638126629 982.5966756 0.002035423129 +2.495712702e-06 0.001512971506 -0.01104380842 0 24.09614989 13.33850083 939.9460515 0.002127781692 +2.499115335e-06 -0.008980925018 -0.01407771196 0 8.879369804 -9.985484907 1004.434615 0.001991169927 +2.49922403e-06 0.002053862135 0.008053777751 0 -9.837531138 8.102461958 1022.918184 0.001955190582 +2.499255179e-06 0.009422800094 0.0111222361 0 10.71168025 -0.5732161542 878.797765 0.002275836466 +2.499342924e-06 0.005290576876 0.004275520309 0 -5.817662889 10.70530866 1062.729444 0.00188194654 +2.499920573e-06 -0.005593620571 -0.007453269255 0 3.910888359 0.7443625281 998.8466803 0.002002309303 +2.499493624e-06 0.002648182968 0.009196239905 0 -9.432916759 -4.401089811 1034.257817 0.001933753815 +2.495776904e-06 -0.007441936913 -0.007224247274 0 18.42264834 -24.80830905 1062.578158 0.001882214485 +2.496733835e-06 0.0008459539199 0.01370652006 0 -0.9754295854 26.38782905 1032.650128 0.001936764395 +2.499061298e-06 0.005917058289 0.009556676543 0 -4.307974041 12.47081369 962.7960138 0.002077283216 +2.499599315e-06 0.0001300364826 0.01442356036 0 -8.189370309 -3.602285154 999.3489251 0.002001302998 +2.497628536e-06 0.004240637049 -0.0007523195911 0 -11.5667033 -18.50833893 1001.806939 0.001996392641 +2.49877725e-06 -0.006425863756 -0.00722165816 0 8.653147196 -11.66459965 928.5724759 0.002153843725 +2.497882274e-06 -0.009521762994 0.001846483368 0 11.51867333 16.04798896 959.5455723 0.002084319972 +2.499508289e-06 0.002467930336 -0.002121888127 0 5.884288822 7.421223178 954.977042 0.002094291184 +2.499283991e-06 0.006121612452 0.009910615731 0 -11.72156359 -2.466251827 1000.854583 0.001998292293 +2.499956173e-06 -0.0087620376 -0.01003823674 0 -2.202848513 1.822977315 965.7789387 0.002070867276 +2.498717808e-06 -0.00329017947 -0.01033747746 0 -0.09154939699 14.5041496 905.5778061 0.002208534691 +2.498233084e-06 -0.003194082621 0.001852614514 0 -9.970982302 15.95746092 1000.693234 0.001998614493 +2.497442186e-06 -0.006325492943 0.00346918802 0 -11.82844722 17.15114161 920.8006552 0.002172022781 +2.49806602e-06 0.001803275337 0.01122723456 0 -10.57965566 13.94670739 889.8269775 0.002247627967 +2.496031391e-06 -0.00326467793 -0.006608013071 0 11.10012844 -25.5530799 988.2943432 0.002023688604 +2.496936507e-06 0.001303100758 0.005217167521 0 -19.30477689 16.31128765 1020.554891 0.001959718207 +2.499627416e-06 0.00500790053 0.001968885977 0 -7.565086891 -0.2581413567 876.8293556 0.002280945531 +2.49991179e-06 -0.007584324121 -0.01264238109 0 -1.43775439 -4.241071226 1066.149813 0.001875908972 +2.499156904e-06 -7.489633746e-05 0.009632310772 0 -5.991464318 12.26135484 1050.814806 0.001903284945 +2.498050464e-06 -0.007947693532 -0.006070457271 0 -6.467848571 -17.52357599 945.6889085 0.002114860375 +2.497330584e-06 0.006312357862 -0.006681677517 0 -4.908196528 -22.35364476 990.0920552 0.002020014189 +2.497155016e-06 0.009046833063 -0.00886339034 0 -10.04198294 -20.3952238 952.628775 0.002099453693 +2.497497956e-06 0.0006000427483 -0.01109362214 0 -21.72193899 6.859060138 1017.915818 0.001964799019 +2.49929891e-06 0.005067378939 0.0142519651 0 7.592597811 8.421675003 957.4717312 0.002088834516 +2.499857483e-06 0.0006525953626 0.000931779833 0 2.53725898 4.345372329 942.483982 0.00212205198 +2.498917238e-06 -0.002972110403 0.009634159966 0 11.92009026 8.793426726 1006.419276 0.001987243336 +2.499631267e-06 0.006049207803 0.002462780066 0 -3.043885366 7.489064074 941.3082964 0.002124702404 +2.499150831e-06 0.005652671098 0.009649075891 0 2.455266129 -11.96694866 937.2809149 0.00213383199 +2.497022952e-06 0.002788739474 -0.01329194028 0 16.24828026 -17.5764597 980.510104 0.002039754605 +2.496663302e-06 -0.001594403433 -0.0005903073773 0 17.23712418 -17.73427111 956.8655227 0.002090157867 +2.498904688e-06 -0.002358137518 -0.01371613915 0 -4.913388222 -13.64258811 979.5457503 0.002041762725 +2.499849252e-06 -0.003898776607 -0.003831110923 0 -4.047096682 -3.991139005 1035.156366 0.001932075255 +2.499729251e-06 -0.0001813023863 0.00176139348 0 6.850455595 -2.925746483 1012.246257 0.001975803799 +2.499652968e-06 0.007969693458 -0.007044975855 0 -1.405331546 -8.72180243 1060.350822 0.001886168199 +2.498493182e-06 -0.002927638278 0.002534373498 0 9.603426172 -13.98520623 977.0362756 0.002047006902 +2.496642829e-06 -0.002624621727 -4.938773112e-05 0 -17.23165228 -20.68979186 1038.598387 0.001925672161 +2.496723461e-06 0.004569932427 0.000971329899 0 20.49645379 -13.4555562 957.3210224 0.002089163356 +2.495477613e-06 0.0009486969281 -0.01351890214 0 17.42441283 -23.5626675 973.7661994 0.002053881107 +2.497057578e-06 -0.007473749248 -0.006783836139 0 -20.20743894 9.435457051 918.9244745 0.00217645743 +2.498198631e-06 -0.006689275368 -0.001282787465 0 18.14521372 6.597397507 1016.926044 0.001966711358 +2.495930406e-06 0.008020908353 0.004294395985 0 21.38146634 14.64786036 907.9052178 0.00220287312 +2.499804058e-06 -0.006399803553 0.002742911421 0 1.128312921 -6.427472123 1042.413012 0.001918625321 +2.496985958e-06 0.004165093685 -0.001151789152 0 -3.40922576 -21.76752681 896.985226 0.002229691128 +2.499903153e-06 -0.0002238363214 -0.01012571518 0 4.594961907 -0.665515855 1054.935701 0.001895850143 +2.497854206e-06 0.00914117855 0.009076813739 0 -7.252721147 -19.63205751 1009.945411 0.001980305051 +2.496986395e-06 -0.008381515234 -0.002548260831 0 -18.23373022 12.94042937 910.3266195 0.00219701364 +2.495846941e-06 0.00772325187 0.002649950394 0 -20.80287037 22.05333666 1051.268734 0.001902463123 +2.497431546e-06 0.004308018335 0.01264356283 0 -16.24515247 -14.29274771 954.3148554 0.002095744385 +2.496443842e-06 -0.007642011568 0.00160065776 0 -26.39059855 -10.78411239 1068.424931 0.001871914387 +2.498094948e-06 0.005900257397 -0.0002998270537 0 -18.44163759 3.614815804 962.4846098 0.002077955304 +2.496895564e-06 0.002669754787 0.007520009384 0 9.946223974 24.68293867 1067.484474 0.001873563549 +2.499567915e-06 -0.005643239361 0.001278911757 0 7.205949726 -5.720471259 989.6569065 0.002020902382 +2.49938441e-06 -0.003753629886 0.003683346212 0 6.947067544 9.246609409 1042.233084 0.001918956546 +2.498073393e-06 -0.0044754013 0.01481218738 0 -16.64026509 -10.76151102 1009.248306 0.001981672882 +2.495539883e-06 -0.004459805768 0.01468763621 0 5.365206214 26.33089375 899.125198 0.002224384329 +2.499838603e-06 -0.003003621367 -0.007816835402 0 -1.881662656 -5.295144479 989.0702423 0.002022101075 +2.499929137e-06 -0.004586453903 0.01012143172 0 -2.529147306 2.661882297 975.3290382 0.002050590028 +2.496094644e-06 -0.003485852866 0.006087944456 0 -26.71795144 -9.523201523 1014.317679 0.001971768846 +2.497838067e-06 0.001910407078 0.01296196998 0 19.70434016 -8.868596086 1038.821645 0.001925258305 +2.49819573e-06 -0.002669523298 0.006973510205 0 -9.190175885 -14.65165603 910.2211691 0.002197268167 +2.4987952e-06 0.006333271456 -0.01347810165 0 -3.013344201 14.46708953 951.8148134 0.002101249079 +2.497352232e-06 -0.009800058776 -0.008056080483 0 17.00417438 11.93702781 902.4653781 0.002216151498 +2.498204659e-06 -0.004612560654 -0.005729433903 0 -0.4218458197 -19.56468312 1032.448315 0.001937142974 +2.498125151e-06 0.003068558546 -0.004449101603 0 18.45749758 -5.599732348 995.8005075 0.002008434405 +2.497464184e-06 -0.005259110481 0.007123938147 0 -20.70811315 2.949799617 928.4605615 0.002154103344 +2.498084755e-06 0.004036858785 0.009543797574 0 -18.17795996 -1.829887593 933.2167401 0.002143124865 +2.499335438e-06 -0.008045120123 0.01154787679 0 -5.64573469 9.898909867 988.3622381 0.002023549588 +2.498892012e-06 0.003816304151 0.008142729462 0 13.31555163 0.3500701395 894.652652 0.002235504467 +2.498499202e-06 0.002055877922 -0.009621713161 0 -5.237966093 -16.5336322 1000.836236 0.001998328926 +2.499505844e-06 0.003239104701 -0.00664975029 0 -5.28582338 -8.419795805 999.934299 0.002000131411 +2.499685001e-06 0.001367174108 0.01273369134 0 -7.231560572 4.176864603 1052.097592 0.001900964336 +2.498019112e-06 -0.006175861619 -0.007803953339 0 17.81868739 -8.543425694 992.5081125 0.002015096879 +2.497148848e-06 0.002041490413 -5.449575372e-05 0 -17.72776135 -17.24666087 1035.298613 0.001931809794 +2.499812612e-06 0.002584593282 0.0134623795 0 4.576235721 3.442022001 935.338602 0.00213826308 +2.498539324e-06 -0.00109978199 -0.001542093961 0 -16.58406462 -7.359762214 1061.307026 0.001884468821 +2.498098032e-06 -0.0005831823638 -0.009811334903 0 20.47800103 0.4239038201 1049.881053 0.001904977707 +2.494997077e-06 0.00384316097 -0.011131234 0 22.01153989 -23.38209217 1014.436069 0.00197153873 +2.497108983e-06 0.003141849828 0.00903643962 0 9.169254205 21.25242455 962.1628735 0.002078650149 +2.498181961e-06 -0.004414160559 -0.01246174066 0 17.47929536 -4.799950908 950.332843 0.002104525814 +2.495281974e-06 -0.0032252526 -0.01063709132 0 -17.16009872 -23.85705853 956.0060262 0.002092037022 +2.49657285e-06 -0.005052386844 0.001472775105 0 -23.5766253 3.387071493 909.3115681 0.002199466135 +2.498081944e-06 -0.008592399652 -0.009410868343 0 1.045138279 20.73938079 1059.926813 0.001886922735 +2.498937777e-06 0.005846150783 -0.007345068371 0 13.49863737 7.715413683 1066.554223 0.001875197675 +2.49638734e-06 -0.007971494445 0.01104379223 0 -26.63824152 -10.21746658 1060.830874 0.001885314661 +2.497314791e-06 -0.002829419267 0.007231498032 0 -17.01830352 16.09319149 1010.308985 0.001979592411 +2.495069145e-06 -0.002545191767 -0.009516944883 0 -22.7144192 -22.76081918 1023.204897 0.001954642716 +2.496590444e-06 0.008830889962 0.01456787696 0 10.8473173 24.39634491 1021.907671 0.001957123971 +2.495388489e-06 0.006581389825 0.01096447019 0 -4.82557798 30.40706642 1013.067645 0.001974201832 +2.498556162e-06 0.005160613293 -0.008669481324 0 -8.843082626 -13.02091778 926.0481598 0.002159714891 +2.496883778e-06 -0.007901824592 0.01330819388 0 -8.054351906 24.95330763 1049.824566 0.001905080205 +2.49485183e-06 0.002882774733 0.003383918144 0 25.66101585 22.85130816 1070.008307 0.001869144368 +2.49778186e-06 0.001715684235 0.01211183016 0 -10.79115251 19.14638762 1043.120336 0.001917324331 +2.499071678e-06 0.009752211832 -0.01443004728 0 -9.981482219 8.022461138 939.6881946 0.00212836557 +2.497880152e-06 -0.008356326902 -0.009731991529 0 -18.96275118 -5.150355399 954.0062459 0.002096422333 +2.497142418e-06 -0.005705546038 0.01335804045 0 3.683733912 23.57267835 997.5794309 0.002004852885 +2.497255363e-06 0.00387851153 0.009498253022 0 11.69289088 18.63066192 938.4431441 0.002131189313 +2.497780258e-06 0.006704432676 0.009109604261 0 -12.77538456 -13.67208438 887.7847875 0.002252798232 +2.496342211e-06 -0.009801608766 0.009074781057 0 8.714682903 25.11792992 982.4325239 0.002035763222 +2.496949585e-06 0.005260125562 -0.007703952275 0 -20.40383943 -14.76806729 1019.277872 0.00196217347 +2.496078832e-06 -0.007110357429 0.01280103633 0 -23.48546626 14.65768375 987.9923587 0.002024307154 +2.498895042e-06 0.0005441166181 -0.003138434133 0 -7.27630402 10.92235728 882.6941894 0.002265790377 +2.499151746e-06 0.009860608573 0.002857560343 0 -2.252893178 -13.52271069 1052.387251 0.001900441115 +2.49806972e-06 -0.009969319087 0.003077897946 0 18.62633025 8.466919889 1041.031103 0.001921172186 +2.499828693e-06 0.008163383384 0.005493892422 0 3.844961794 3.786150034 921.8757385 0.002169489788 +2.499063922e-06 -0.004408839107 0.009124659821 0 -10.97714231 -7.300865663 963.3705123 0.002076044445 +2.493612418e-06 0.002068087514 0.01183134364 0 -17.63197092 29.7909222 967.6056922 0.002066957663 +2.496850192e-06 0.008562784949 0.005340721901 0 15.54682075 19.06059363 979.5325713 0.002041790195 +2.497701118e-06 -0.002112959619 -0.006706693524 0 20.06611786 6.852044186 988.5298363 0.00202320651 +2.499319035e-06 -0.006148229516 -0.0006063591409 0 -11.19428245 2.700757093 986.642697 0.002027076272 +2.499861403e-06 -0.007085427335 -0.00996497463 0 3.253897692 -4.498644074 1054.521274 0.001896595213 +2.498267095e-06 -0.008909843424 0.005002347627 0 -16.0021668 5.741379562 912.9735683 0.002190643924 +2.499303349e-06 -0.007048223563 0.003959056274 0 -0.7653165722 -11.1930771 950.3735579 0.002104435654 +2.499344727e-06 -0.001219568327 0.01034039377 0 9.585668887 -6.833569243 1028.219129 0.001945110671 +2.498587867e-06 -2.162656747e-06 0.007788180811 0 -15.51767119 -8.669952349 1057.488015 0.001891274389 +2.497875409e-06 -0.004174985359 0.009797925304 0 -15.12933417 14.85262246 1028.187512 0.001945170483 +2.497174862e-06 0.0004229206359 -0.007985052557 0 -19.17625974 12.85114783 970.7248329 0.002060316098 +2.499535527e-06 0.00252520612 -0.01232272508 0 0.4940243463 -9.471066666 983.927938 0.002032669185 +2.497968021e-06 0.004423386012 0.007876078498 0 -9.520317354 -15.87228752 917.8359319 0.002179038683 +2.494958102e-06 0.00780819485 0.008286861854 0 16.21026201 23.6001899 900.9438229 0.002219894237 +2.497134328e-06 0.0003747490468 -0.006686214858 0 2.710634074 -24.54724646 1031.144651 0.001939592082 +2.497316411e-06 0.001567279152 0.009909076164 0 -23.77917567 -4.053257681 1040.801934 0.0019215952 +2.499927081e-06 0.003758087256 0.01279979663 0 -3.754152646 -1.236436883 1034.986071 0.001932393156 +2.49705492e-06 -0.009836874343 -0.0006930745533 0 11.98979687 22.41176275 1046.827177 0.001910535038 +2.49900248e-06 -0.004212251138 0.004688733579 0 -11.04639985 -6.082974018 892.6736618 0.002240460412 +2.498927902e-06 0.005269680824 -0.004638530037 0 -12.55490734 8.324963544 1028.595292 0.001944399334 +2.499060236e-06 -0.002086732546 -0.0008778075501 0 -12.16617057 4.687209218 950.8686356 0.002103339962 +2.499716566e-06 0.002908506659 0.008981829006 0 -1.699580148 7.656071364 1041.578689 0.001920162173 +2.497550741e-06 -0.006316917595 -0.01332914527 0 -9.71466025 -21.27338193 1056.268801 0.001893457421 +2.498680678e-06 -0.006157427733 -0.0116744284 0 5.702923082 16.36612844 1066.729872 0.001874888904 +2.496938793e-06 -0.006834889008 0.0009898189874 0 -22.98505911 11.96609772 1046.79649 0.001910591046 +2.495728418e-06 -0.0002995776944 0.01006466621 0 8.043297396 28.84789242 1023.960243 0.001953200833 +2.497564975e-06 -0.002841627654 -0.007273042118 0 -20.44693997 1.926154796 930.2965112 0.002149852199 +2.497432684e-06 -0.00158951066 0.005101880743 0 -18.23014142 -8.793019627 892.8680597 0.002239972612 +2.498001535e-06 -0.001738471361 0.006202186486 0 -5.209675436 19.07217799 988.6282842 0.002023005038 +2.498211646e-06 -0.003220713311 -0.0130469309 0 4.297422745 -16.27269386 889.6941803 0.002247963451 +2.49969679e-06 0.007095283717 0.008401229458 0 4.265331961 -5.463670699 890.0544855 0.002247053447 +2.499487553e-06 0.00376074912 0.01219427579 0 -6.729655261 7.293522886 980.1883869 0.002040424093 +2.498504644e-06 0.005378419003 0.007493400502 0 -6.231120713 -14.82078754 929.4605201 0.002151785855 +2.49716598e-06 0.008937632935 -0.00121319693 0 -18.41772667 10.89100101 898.3577251 0.002226284635 +2.499166702e-06 -0.001054486413 0.00335578328 0 -8.971577259 9.668440286 1021.562875 0.001957784536 +2.495369903e-06 0.003023010679 0.002847037492 0 -22.66997148 23.16325553 1064.335769 0.001879106255 +2.499423837e-06 0.009427162576 0.006543118574 0 -8.931359276 3.725577361 901.4187581 0.002218724629 +2.498533207e-06 -0.003252899293 0.009980758794 0 16.43161337 7.568802554 1056.009403 0.00189392253 +2.499875542e-06 0.001558008217 -0.003815491274 0 0.690218271 5.08859018 1029.253213 0.001943156432 +2.498265309e-06 0.003421637602 -0.00808498424 0 12.35808651 -10.76175521 879.5561543 0.002273874147 +2.498030184e-06 -0.004680534783 -0.004914710533 0 -2.366306951 -20.62903056 1045.830204 0.00191235632 +2.497195917e-06 -0.004908801084 -0.0005254203547 0 -22.41596647 11.28556894 1059.306943 0.001888026897 +2.498906778e-06 -0.006466718563 0.00362877755 0 -10.92843473 -7.591602653 899.7537615 0.002222830385 +2.499503662e-06 0.009340268397 0.002313705829 0 -6.764270918 7.401122677 1006.273199 0.001987531818 +2.493633944e-06 0.008100021021 -0.01011918917 0 -21.24198736 -31.12170266 1054.983051 0.001895765053 +2.497321613e-06 -0.007568984628 -0.001561742804 0 21.44591269 10.40073375 1029.406967 0.001942866199 +2.495780025e-06 -0.008508432959 0.007522045684 0 14.4361254 25.96211932 1021.87061 0.001957194953 +2.498998523e-06 0.001932722614 -0.01237362186 0 6.331796397 12.04782691 961.542833 0.002079990544 +2.496378483e-06 0.009278401202 -0.007835010854 0 -9.99438584 -22.82951177 925.4979307 0.002160998889 +2.499195229e-06 -0.003065160355 0.01053591912 0 -7.120701835 -10.50672868 1000.319041 0.001999362122 +2.49930596e-06 -0.003222430688 -0.004231411885 0 -4.667790533 11.1781159 1028.062821 0.001945406408 +2.498417506e-06 0.0004344792757 0.01336773678 0 14.09181958 11.14524575 1009.659397 0.001980866029 +2.495306972e-06 -0.003010499151 -0.001343108048 0 23.19550357 20.00049215 999.0004172 0.002002001166 +2.496511872e-06 -0.004805359151 0.005571435951 0 11.59076195 24.68006717 1031.781496 0.00193839491 +2.495543859e-06 -0.007943099234 -0.01135850298 0 -11.47543483 -25.80330974 945.3211844 0.002115683043 +2.494590053e-06 0.002633881173 0.01057538518 0 16.6542374 24.49497064 899.7594906 0.002222816231 +2.498050451e-06 -0.002050491781 -0.006645316968 0 -17.34423951 0.5506526516 878.5467159 0.002276486798 +2.497354e-06 -0.005519229691 0.001278122503 0 -22.11270267 -6.876259815 1006.243544 0.001987590392 +2.499567202e-06 -0.005481808386 0.01240387441 0 -6.583039637 6.806818266 1017.737572 0.001965143133 +2.497039866e-06 0.007527279425 0.01175844594 0 -18.48290301 -15.35043355 987.0056741 0.002026330803 +2.499445914e-06 0.004701295281 0.008387988252 0 9.942389622 -3.045720423 987.7078677 0.002024890219 +2.494379823e-06 0.00703445632 0.008961044422 0 15.1874492 27.48531701 935.8457122 0.002137104411 +2.499079282e-06 0.0005545368325 0.007803783731 0 -9.589296293 -9.032100871 970.6290639 0.002060519383 +2.498566467e-06 -0.006521199816 -0.008147339397 0 -8.61898215 -12.04973916 874.7585247 0.002286345252 +2.497162482e-06 -0.008299994022 -0.007402431266 0 16.05588783 -14.97414445 921.2165131 0.002171042281 +2.498762713e-06 0.00817640706 0.01443534737 0 2.780506437 14.7465599 953.7750078 0.002096930601 +2.499449525e-06 0.009614429679 -0.0007857158594 0 11.07238867 -1.814075094 1069.235897 0.001870494627 +2.495162625e-06 -0.003879007353 0.0136805963 0 12.35797792 24.88536548 892.6345077 0.002240558686 +2.493960975e-06 -0.001605260083 -0.01052676999 0 21.75229038 -24.9729241 952.0796155 0.002100664658 +2.499945328e-06 -0.007557720374 0.003759468254 0 2.841694887 -1.627268249 990.2868555 0.00201961683 +2.496415378e-06 -0.007066983255 -0.0002783799917 0 10.71230848 -25.78649267 1042.29943 0.001918834398 +2.498725958e-06 -0.007217584476 -0.01053255738 0 12.59656156 -6.321758792 882.7571727 0.002265628716 +2.497780197e-06 -0.005216470077 0.004034769209 0 15.15687426 16.16317764 1051.270814 0.00190245936 +2.499535825e-06 -0.002340388424 -0.008020709977 0 3.262667308 8.500264253 944.908891 0.002116606182 +2.498917546e-06 0.007499350463 -0.01196476725 0 13.27766189 -6.092713005 992.7155328 0.00201467584 +2.499565364e-06 0.005293381475 0.00613333235 0 1.759368546 -8.46825539 927.6076951 0.002156083882 +2.495329569e-06 -0.0005329836626 -0.01382659873 0 9.137099463 -31.15323587 1061.51104 0.001884106641 +2.494829333e-06 -0.001610012734 -0.00993041612 0 -20.09157557 -24.74369139 990.3864317 0.002019413772 +2.499624538e-06 0.005752880611 0.004851599105 0 8.712142529 2.118914825 1034.622042 0.001933073063 +2.497521361e-06 -0.0005617637234 0.01059821168 0 22.09244755 7.750240466 1051.147295 0.001902682916 +2.499911255e-06 -0.006160933631 0.01306080075 0 -4.124598179 0.4640001035 985.1867358 0.002030071993 +2.496523018e-06 -0.006401752592 0.002704979202 0 -21.88311477 13.01830627 965.074641 0.002072378565 +2.496832431e-06 0.004389496525 0.004271032086 0 -14.20299365 19.94005201 972.1847093 0.002057222234 +2.499499335e-06 0.005044174762 0.005343626747 0 4.781623754 -9.105183577 1027.677036 0.001946136705 +2.495151509e-06 0.009442606666 0.008202638843 0 18.43935036 22.16354318 925.1811432 0.002161738828 +2.498436848e-06 -0.001676850822 -0.0008238936751 0 10.3748212 -14.20509008 994.6213292 0.002010815515 +2.496050277e-06 0.002791536273 -0.01196506385 0 26.55604472 -13.64094834 1061.587702 0.001883970581 +2.499643637e-06 0.008270748355 -0.002981043623 0 7.247754823 -3.359119791 946.1769392 0.002113769547 +2.495958008e-06 -0.008411983773 0.009721764601 0 -3.624384398 26.20929496 930.0203172 0.002150490654 +2.498163977e-06 0.00688599864 0.006466627289 0 -19.30067827 0.6352930691 1007.474281 0.00198516234 +2.49960414e-06 -0.00245429893 -0.001654010529 0 7.705114439 -2.70658109 917.7684507 0.002179198902 +2.49670607e-06 -0.007437957632 -0.009466465751 0 15.16239529 18.15993269 921.262818 0.002170933159 +2.497371941e-06 0.004628423089 -0.001986879723 0 20.48405278 5.776433269 927.9569848 0.002155272316 +2.495739476e-06 -0.003869915158 -0.01237565943 0 -26.68815068 -15.93851277 1064.217203 0.001879315608 +2.499607885e-06 0.001615570858 0.006624077184 0 7.811739948 -1.647718653 901.4737626 0.002218589251 +2.499366176e-06 0.008419649932 -0.007584288907 0 -8.152477804 -6.607051236 931.9328998 0.002146077255 +2.497874604e-06 -0.002022848967 0.0006910043629 0 9.403240553 -17.28702644 954.1774745 0.002096046127 +2.496621464e-06 -0.003276359551 -0.005701211512 0 -22.05863034 -7.844626102 900.199722 0.002221729191 +2.496505013e-06 -0.00565810075 0.01213130607 0 -14.40113487 21.46006804 977.0099276 0.002047062106 +2.496257404e-06 -0.003984111254 -0.009746154808 0 -17.60283922 18.51886382 933.3561653 0.002142804724 +2.497005235e-06 -0.001140098153 -0.005468809262 0 -9.585571504 -22.45664231 997.2373811 0.002005540544 +2.498530482e-06 -0.0021400384 0.005271903675 0 0.07360435156 -15.32621145 893.8026532 0.002237630413 +2.49592328e-06 -0.007778421603 -0.01461829023 0 -25.90747332 11.05618342 985.8704111 0.002028664191 +2.498445427e-06 0.005374811781 0.01390201912 0 -17.94134376 -5.339874051 1061.363136 0.001884369197 +2.499089525e-06 -0.001882330789 -0.006977455281 0 3.613861928 -12.96186641 997.0453176 0.002005926877 +2.49876395e-06 0.005297505558 -0.01456423331 0 -0.1022012354 15.94103881 1013.706013 0.001972958604 +2.499838703e-06 0.004744940037 -0.01350065087 0 -5.482141974 0.2767785536 966.4153248 0.002069503606 +2.499340877e-06 -0.007956532817 0.0001875337539 0 -7.070511786 -8.845781248 986.2124608 0.002027960586 +2.499775667e-06 -0.00815588213 -0.009526251806 0 4.337201059 -5.684770339 1067.463133 0.001873601007 +2.49735345e-06 0.001957458341 0.012912793 0 -22.6737226 0.7672186065 985.6977334 0.002029019579 +2.499679168e-06 0.006878982754 -0.01260886634 0 8.232337406 -1.150246271 1037.64099 0.001927448915 +2.496822293e-06 -0.002317123851 0.00503476178 0 18.30608419 17.6533929 1008.302534 0.001983531662 +2.49310897e-06 -0.00824077717 0.008060786922 0 -26.00922736 20.67498889 894.0570124 0.002236993807 +2.498345443e-06 0.003125853469 -0.004792605741 0 -13.19917389 9.424057489 891.3327787 0.002243830865 +2.496734878e-06 -0.0005783456611 -0.00181910764 0 11.30976088 23.66282669 1025.808348 0.001949681931 +2.49765813e-06 -0.009532800121 -0.009531695223 0 -18.97242049 -0.2623195242 876.4259483 0.00228199542 +2.495812913e-06 0.007803992871 0.007585010729 0 24.31257761 -16.33416412 1011.523535 0.001977215488 +2.498458066e-06 -0.007949374123 0.004469126738 0 -10.33138235 14.97968825 1035.976656 0.001930545432 +2.498914002e-06 0.003265404645 -0.008593713152 0 1.894253177 -15.16563248 1036.864141 0.001928893016 +2.496910566e-06 -0.003650739095 0.01136602161 0 20.76399835 12.4860829 974.2719478 0.00205281493 +2.499134836e-06 -0.007837123019 0.01192100622 0 4.516404619 -10.9394131 899.6009107 0.002223208065 +2.496659776e-06 0.001211889312 -0.003550739412 0 12.68812472 23.97127831 1048.826128 0.001906893761 +2.495108278e-06 -0.001064866814 -0.01462398884 0 11.08666575 -29.231098 998.7687596 0.002002465516 +2.494095055e-06 -0.004244919154 0.00847043219 0 -18.97296442 27.28017112 966.0778733 0.002070226485 +2.495660202e-06 -0.008829319645 0.004137973229 0 -18.51431804 23.69925885 1020.131022 0.001960532478 +2.496394206e-06 -0.004574040705 0.01065896423 0 -7.081588793 23.27169465 905.3319342 0.002209134489 +2.497048738e-06 0.005581251243 0.008081504172 0 -0.370665226 22.42949791 922.9275428 0.002167017352 +2.499767539e-06 0.004512407593 0.0104886498 0 -5.451118725 -4.774947877 1062.760968 0.001881890716 +2.497069549e-06 -0.004248421467 0.01021265353 0 -21.88042149 -4.386262441 921.378349 0.002170660947 +2.499645055e-06 -0.008988161101 0.008279596253 0 7.803262108 0.6349556882 929.1605968 0.002152480429 +2.496249038e-06 0.004685886255 -0.009900888952 0 26.33408128 2.902345877 966.7386516 0.002068811459 +2.494148058e-06 -0.007715195566 -0.009608151633 0 -25.4777684 -17.95990066 910.3613757 0.002196929761 +2.497293955e-06 0.001269412604 0.006639509106 0 1.063544811 20.93981234 900.8933214 0.002220018678 +2.499811535e-06 0.009233718468 -0.007791733146 0 1.036440036 5.389281664 893.8692911 0.002237463598 +2.4984316e-06 0.00485376976 -0.007458837689 0 17.09037938 -2.843579643 977.9934093 0.002045003556 +2.498093158e-06 0.005021692184 0.002500359868 0 -14.31406548 10.04435577 895.177156 0.002234194636 +2.499328965e-06 -0.007346670586 0.003687942435 0 10.20141573 0.06909478545 880.5199148 0.00227138531 +2.499723081e-06 0.002060843348 -0.01415273606 0 -4.566361878 6.47242133 1064.330829 0.001879114975 +2.496726772e-06 -0.0008580129594 -0.009027527918 0 22.65579609 15.27296655 1067.363988 0.001873775041 +2.498955381e-06 -0.002962042401 0.001699450642 0 -12.95859735 -1.643923685 903.5719699 0.002213437409 +2.499900341e-06 0.009785398333 0.002756982632 0 2.955832484 2.678381373 893.4396912 0.002238539456 +2.497592054e-06 0.006016027601 -0.004266442826 0 -17.06750391 12.88333534 974.0826717 0.002053213817 +2.495598939e-06 0.002728422782 0.007445365093 0 19.24902984 -18.0642532 889.1738392 0.002249278951 +2.498766603e-06 -0.00347986415 0.008133267495 0 -7.469669454 13.65582935 990.8544822 0.002018459861 +2.497803874e-06 -0.00152396223 -0.005435960395 0 4.341952058 -18.76294914 918.6332915 0.002177147311 +2.497284097e-06 0.003410189822 -0.009857175602 0 19.42089153 -14.78135232 1046.766528 0.001910645734 +2.495667427e-06 0.006445657276 -0.006670332213 0 22.47999352 -17.70096973 971.3711303 0.002058945276 +2.497137624e-06 -0.009378778376 0.001502243627 0 -23.19341728 -0.1855838527 968.9775864 0.00206403123 +2.497348803e-06 0.003046517838 0.01151790794 0 19.10843247 9.640072667 929.0816845 0.002152663252 +2.494482407e-06 -0.0009885342652 -0.01007090827 0 -22.64150102 -24.69822935 1007.791419 0.001984537635 +2.498205139e-06 0.0008864637511 -0.007912893207 0 -12.98915123 -11.71833661 923.0813151 0.002166656358 +2.496638985e-06 0.005484612253 0.01061868772 0 -17.94233228 15.25979753 908.0180746 0.002202599327 +2.49695905e-06 0.007714420175 -0.006430929727 0 16.0992011 -20.6774172 1062.131441 0.001883006117 +2.498366366e-06 -0.0025374529 -0.009776903435 0 9.155022928 -15.99293639 1019.242768 0.001962241051 +2.49936267e-06 -0.006484520794 -0.008947827453 0 -5.874183678 -9.556080414 993.4462409 0.002013193988 +2.499905289e-06 -0.0003040086804 0.003430276006 0 2.073918716 3.442188184 923.3405189 0.002166048125 +2.494021135e-06 -0.001131689986 0.01378538215 0 -22.15963232 29.24748873 1060.188864 0.001886456336 +2.498076722e-06 -0.008536736695 -0.01254606497 0 -0.4139525746 -19.65546969 1002.116898 0.001995775147 +2.499590614e-06 -0.001830802974 0.001593470285 0 -8.149939817 4.252291941 1015.848855 0.001968796825 +2.498212184e-06 0.004254786037 -0.01178807226 0 -16.12960439 -12.22043771 1069.881809 0.001869365367 +2.496479138e-06 0.001668166653 0.01354669095 0 22.0423493 -14.76598191 999.2779119 0.00200144522 +2.499861754e-06 -0.003235331001 -0.01348800835 0 4.661089121 -2.929949006 1046.997278 0.001910224642 +2.499215115e-06 0.001334022083 0.01313619193 0 -6.122327822 10.07190614 940.6389772 0.002126214253 +2.498540147e-06 0.003680516589 -0.01323619327 0 15.38879636 -6.205945222 970.8702985 0.002060007401 +2.498050559e-06 0.004497109884 -0.001219788564 0 -18.19643019 -3.902127363 942.2197103 0.002122647168 +2.495563569e-06 0.004698552303 0.0033877298 0 -13.55759388 24.7845513 947.7695452 0.002110217626 +2.498182739e-06 -0.003458211673 0.01161151955 0 -1.233633403 19.09817778 1003.584531 0.001992856543 +2.498539341e-06 0.005914741177 -0.003745348442 0 -16.1201391 -7.663341205 1044.067389 0.001915585163 +2.496151318e-06 0.003188687791 -0.0001033575903 0 -16.3641207 -19.45180384 915.6872704 0.0021841518 +2.495224936e-06 0.001980302082 0.005633344876 0 24.14909905 -17.4695575 963.7838334 0.002075154128 +2.499829103e-06 0.0002657500328 0.00100368327 0 5.553902264 1.261025688 974.139217 0.002053094635 +2.496954498e-06 -0.006465584198 0.001756497833 0 17.25082889 -17.4657629 994.231423 0.002011604093 +2.496282992e-06 0.008169143298 -0.004915937951 0 20.39338688 -18.82076534 1017.238438 0.00196610738 +2.498256358e-06 -0.00884522039 -0.006683626848 0 19.07703022 -3.67322967 1040.060024 0.001922965938 +2.493835084e-06 0.00144308072 0.01338073404 0 23.63473114 26.51334027 1010.585175 0.001979051394 +2.497555136e-06 -0.003125178893 0.01382586265 0 14.82437495 14.55159234 939.0618898 0.002129785078 +2.499813615e-06 0.0004720282415 -0.01119252032 0 2.078851321 -6.134633753 1060.865932 0.001885252358 +2.498321533e-06 0.009276383952 -0.01385509541 0 -15.01324388 -12.62969793 1070.525301 0.001868241692 +2.497673079e-06 0.0003556036577 0.002150182114 0 18.84858908 12.8017917 1055.823022 0.001894256857 +2.498932318e-06 0.00779404439 0.007788471719 0 -13.97624915 -5.002594595 1015.69247 0.001969099958 +2.496016481e-06 0.0009056861745 0.01429901065 0 -6.862279497 24.08293566 886.6513301 0.002255678114 +2.494174719e-06 0.006121879704 -0.001079737348 0 23.42911279 -26.28921653 1030.779122 0.001940279889 +2.498140145e-06 -0.007507215533 0.006664324603 0 17.33312603 4.907435989 933.7811314 0.002141829528 +2.498313962e-06 0.009836526592 -0.0001815849426 0 15.21171002 10.11328473 994.4961071 0.002011068707 +2.499671462e-06 -0.002424665228 -0.01487974083 0 -2.961588748 6.595907575 891.920047 0.002242353456 +2.496305371e-06 -0.003599658958 0.0009058102453 0 11.85497994 23.6473606 972.5826885 0.002056380423 +2.494387415e-06 0.005267597525 -0.008101611561 0 24.06482214 -25.45550825 1044.665477 0.001914488459 +2.498081451e-06 -0.009798660059 -0.01315727152 0 15.54152917 -8.446929798 902.7534918 0.002215444214 +2.497775948e-06 -0.001873452403 -0.0127304592 0 -12.47001957 -13.95927543 887.210188 0.002254257252 +2.497326123e-06 0.004207926649 -0.01164120326 0 1.330378506 -21.17825764 917.245275 0.002180441867 +2.49972175e-06 0.004667714429 -0.008222942047 0 -4.75147155 4.508334367 877.9817171 0.002277951763 +2.49720186e-06 -0.001596675268 0.005720792881 0 24.87775538 2.925085767 1058.426093 0.001889598163 +2.496087098e-06 -0.0007332212245 0.000938824676 0 -21.518077 -15.53418131 948.1370877 0.002109399607 +2.496845482e-06 -0.008932132288 0.002766585695 0 -8.499226999 -22.92154502 972.8156607 0.002055887956 +2.494136104e-06 0.005595751996 0.01229754684 0 27.35286145 20.43867931 996.193209 0.002007642676 +2.498218339e-06 -0.003995888471 -0.0002800901164 0 14.36762423 11.07516559 960.7543455 0.002081697584 +2.496394778e-06 -0.007573726075 0.007699260134 0 20.99040628 -17.18538084 1009.726097 0.001980735178 +2.497310616e-06 -0.006327290358 -0.002061624331 0 16.92602293 -14.4276779 958.5868551 0.002086404575 +2.495676011e-06 0.006610100656 -0.001601224313 0 22.8637746 -15.57827728 940.1885595 0.002127232862 +2.498110001e-06 0.005336726774 -0.01192687931 0 17.12055266 -5.633446569 926.7698465 0.002158033095 +2.499960413e-06 -0.006272766348 0.009879624972 0 -2.775575279 0.5229119966 1003.766027 0.001992496205 +2.498143804e-06 0.00549599654 -0.001135162411 0 10.72699774 13.14678439 880.3954473 0.002271706432 +2.494937651e-06 -0.0021452804 0.01397462839 0 9.262407701 32.72202957 1067.962683 0.001872724611 +2.499468465e-06 -0.0007628548658 0.009025819993 0 10.89207206 -1.675873205 1068.748898 0.001871346959 +2.49639691e-06 -0.004599745916 0.002570353097 0 16.46784654 22.84661332 1048.557702 0.001907381917 +2.496653221e-06 -4.20775637e-05 -0.0002049166616 0 14.66493009 -18.0894526 899.6395352 0.002223112615 +2.498252016e-06 -0.005309836767 -0.003184867955 0 -17.92978443 -7.599452092 1041.245137 0.001920777277 +2.498649761e-06 -0.001356291524 0.01371923016 0 -3.52602252 -16.10345051 1002.950677 0.001994116007 +2.499590643e-06 -0.003928190018 0.003831289429 0 -2.978369565 7.641062428 906.3055153 0.002206761369 +2.497860267e-06 -0.008721291972 0.01396430705 0 -3.722633193 21.71206449 1064.530995 0.001878761642 +2.499030013e-06 -0.002602271098 0.01082606089 0 0.3689201612 -13.60627382 977.0968727 0.002046879952 +2.496527988e-06 0.002041619085 -0.000891259911 0 -22.56490684 -12.68162317 981.7592534 0.002037159307 +2.499977643e-06 -0.008191800313 0.001370420214 0 0.07053815977 1.868278272 884.1494298 0.002262061064 +2.498479243e-06 0.006202055858 0.004235994502 0 -6.640837221 -15.12112557 946.7553128 0.002112478243 +2.497416727e-06 0.007289137593 -0.001424916862 0 11.99109509 -19.63309049 1011.71847 0.001976834524 +2.496533849e-06 0.001121978923 -0.012201339 0 -22.91118715 15.10728095 1041.781805 0.001919787801 +2.497361156e-06 0.003858873998 0.005723070586 0 -19.42808665 -7.183326706 901.2815608 0.002219062374 +2.498166e-06 0.0007246704772 -0.01458516798 0 -9.984581102 -16.51703647 1007.468608 0.001985173518 +2.498762274e-06 -0.009448208418 -0.003721370869 0 -8.205421883 12.98465191 976.0765246 0.002049019672 +2.499566363e-06 0.006898814579 -0.001138704387 0 -2.7015814 8.100584698 916.8763868 0.002181319127 +2.49842879e-06 -0.008396381359 0.001344436915 0 -13.61740241 11.17836184 993.6168243 0.002012848365 +2.499862972e-06 -0.008822612693 -0.003632504675 0 3.056941073 -4.267070619 1002.662623 0.001994688895 +2.497563545e-06 -0.001050046547 0.002520011959 0 -16.63158538 -16.23169043 1052.385953 0.001900443458 +2.499559196e-06 0.003969205623 -0.01251860677 0 3.735917091 9.097937842 1047.401755 0.001909486966 +2.498258992e-06 0.005617810367 -0.01226081148 0 18.57648485 -1.400853333 998.0815492 0.002003844277 +2.499782681e-06 0.001154595725 0.01255415085 0 -5.347507169 3.100980755 937.6083209 0.002133086872 +2.499625721e-06 -0.0003370452113 -0.005528886148 0 -6.290828721 5.041705135 931.7451352 0.002146509731 +2.497004012e-06 0.008365278514 0.002270505193 0 -12.89479632 -20.364462 984.2443511 0.002032015726 +2.498196857e-06 -0.008529170784 0.004165724244 0 19.89273348 -0.5416298199 1047.629734 0.001909071436 +2.499038405e-06 -0.003803918841 0.008376751619 0 11.9990698 4.423813618 922.0375779 0.002169108991 +2.498186648e-06 -0.002046577246 -0.007551990591 0 13.0894736 14.92763928 1042.237977 0.001918947538 +2.497658467e-06 -0.0088198927 -0.005310418101 0 -17.33079498 12.80880886 995.4939521 0.002009052889 +2.496267285e-06 0.006646718564 -0.0009474135144 0 25.6858855 6.227605786 966.7792131 0.002068724661 +2.498640298e-06 0.0006921035144 -0.01185156827 0 -15.27132506 -5.880913188 992.1528347 0.002015818461 +2.494234409e-06 0.007321499097 -0.005281037323 0 25.50801583 19.77778423 949.6932864 0.002105943075 +2.496702181e-06 -0.007690585516 -8.028006647e-05 0 14.66821204 -19.40907216 946.8239694 0.002112325062 +2.499589816e-06 0.004802097064 0.01083106948 0 -7.953036047 5.342453096 1057.724429 0.001890851667 +2.498878088e-06 0.007801905056 -0.009526819142 0 11.67484472 -7.988852405 944.2387906 0.002118108279 +2.497659938e-06 -0.003944539689 -0.01123340767 0 -12.4451283 -15.50889002 918.8421396 0.002176652456 +2.495332306e-06 -0.008578569153 -0.0007894759183 0 -25.14893054 -10.57224135 892.2494419 0.002241525638 +2.498711628e-06 0.001484956448 -0.004367034752 0 -12.28044842 10.21779899 995.0197018 0.002010010452 +2.498346196e-06 0.0005017240113 -0.011753274 0 -11.94496991 13.27369451 981.6218914 0.002037444374 +2.498077673e-06 0.007221150585 -0.004292752782 0 -20.13869756 -3.000169854 1038.111717 0.001926574921 +2.499903757e-06 -0.000335504096 -0.005352111035 0 -4.046221284 0.9181487221 945.6839741 0.00211487141 +2.496806068e-06 0.002316042297 -0.001961852212 0 4.898232948 -24.77871787 998.8877027 0.002002227072 +2.497832621e-06 0.007705677664 0.01411426829 0 -10.38874525 -17.21251771 965.32328 0.002071844781 +2.497091374e-06 0.00570715785 0.007073741632 0 18.66390106 -15.21813143 998.0224482 0.002003962941 +2.497870151e-06 -0.004924000427 -0.00739443206 0 15.55206715 -11.81969273 946.149912 0.002113829928 +2.497931827e-06 0.005671256981 0.002616508906 0 -13.64598592 12.52117756 910.3309403 0.002197003212 +2.497271661e-06 -0.0005605319608 -0.008903008879 0 -4.036553727 -23.57469977 1023.478965 0.001954119301 +2.499545994e-06 -0.00649445225 0.01368315041 0 -0.7940857589 8.516212863 897.5340511 0.002228327714 +2.498330155e-06 0.008507660646 -0.009371752823 0 0.3304199648 -16.32360946 893.1887932 0.002239168264 +2.495622586e-06 -0.0009058205597 -0.0002939410019 0 -22.95135552 15.64758613 938.1887106 0.002131767285 +2.498258911e-06 0.0009915400995 -0.01205391927 0 -14.43941208 -12.34898925 1017.914063 0.001964802405 +2.499520264e-06 0.003877807301 -0.002594115946 0 -1.377573957 9.021138995 931.5785565 0.002146893556 +2.495434436e-06 -0.005861546863 0.006813491138 0 -11.39381 29.37525764 1041.968325 0.001919444144 +2.498407178e-06 -0.005374902235 0.005810998189 0 -16.62115837 -1.290301556 933.820952 0.002141738195 +2.497482005e-06 0.005800055582 0.008386643766 0 12.67811713 -16.80863047 937.8320482 0.002132578007 +2.496198266e-06 0.004821955687 -0.01169268301 0 15.96415903 -22.51390568 1000.338416 0.001999323396 +2.496756691e-06 -0.005716756359 0.01360645917 0 -18.89532718 18.20526377 1029.722974 0.001942269961 +2.498557096e-06 0.007004109439 -0.01016673818 0 -13.84156921 7.280727227 920.4468291 0.002172857722 +2.494784261e-06 -0.003451638795 -0.009781556278 0 -13.28098839 -29.1805078 991.8810245 0.002016370866 +2.498883958e-06 -0.002049196707 0.01396141678 0 -13.00921104 -3.451633255 900.7310407 0.002220418648 +2.498766026e-06 0.0002429740876 -0.0007967591914 0 -6.484956147 12.67344433 906.039607 0.002207409019 +2.499341348e-06 0.001089028744 -0.002156251485 0 -3.946595167 -10.36706605 966.4020701 0.002069531991 +2.496083919e-06 0.009013192672 -0.012066 0 26.97979558 -7.663341773 1001.591906 0.001996821249 +2.495371603e-06 -0.009418800399 -0.0003867933084 0 -18.95580882 -20.42779811 915.3170208 0.002185035299 +2.497129493e-06 -0.004948555343 0.0001447023894 0 22.18814881 -11.48306291 1042.249474 0.001918926369 +2.497354246e-06 0.002927122796 0.01446713964 0 -20.93373308 9.916133826 1006.568436 0.001986948853 +2.498676029e-06 -0.0008485452645 -0.01418934312 0 -1.065428615 15.45290015 951.6983184 0.002101506287 +2.498306862e-06 0.003357650908 -0.004723694846 0 13.20167654 12.3883234 983.5650695 0.002033419102 +2.49849802e-06 -0.006763162515 0.002149924811 0 7.086861781 16.22990282 1021.565333 0.001957779826 +2.498140246e-06 -0.007939453651 0.009364830111 0 -19.28516487 3.562829146 1016.592923 0.001967355816 +2.498885312e-06 0.00421098819 -0.005571008292 0 5.098990817 -13.70866799 979.4197171 0.002042025462 +2.498113522e-06 -0.00068319235 -0.008853284572 0 3.195790789 -18.83085524 983.0419685 0.002034501134 +2.495992366e-06 -0.0002830970986 0.007094602771 0 6.112239433 28.72395589 1036.669724 0.001929254761 +2.498040052e-06 0.00805853318 0.005163809625 0 4.007483023 19.52929142 1006.648711 0.001986790404 +2.498364645e-06 0.0009606435848 0.005850304384 0 -3.373980713 16.28559449 919.3945758 0.002175344572 +2.497506849e-06 -0.0005520988163 -0.01097002342 0 -15.84585108 16.63092385 1028.331174 0.001944898736 +2.495093756e-06 0.008040054678 0.01432157322 0 -18.97630516 24.82378581 996.7511555 0.002006518868 +2.496379754e-06 0.00475508776 -0.01481563579 0 16.67877795 -22.32117481 1034.968956 0.001932425111 +2.498601889e-06 0.002326995558 0.01431588643 0 -0.4584586214 -17.14910125 1025.698152 0.001949891394 +2.498271296e-06 0.004920041077 -0.008964277853 0 -16.49615851 2.481006327 896.9164801 0.002229862027 +2.496960199e-06 0.009866785323 -0.008834265657 0 -14.92050589 -17.13031007 920.9120929 0.002171759949 +2.497625212e-06 0.00399289425 0.01324347337 0 -20.998545 -8.688595419 1042.374578 0.001918696064 +2.499980518e-06 0.00107500724 -0.01214342182 0 2.047687889 0.1511790531 1040.182271 0.001922739942 +2.495484907e-06 0.009827022338 -0.008890334973 0 27.47503031 16.55487998 1066.725295 0.001874896947 +2.499929674e-06 0.00192858865 -0.005964621298 0 -3.912707614 0.1270511681 1043.829417 0.001916021877 +2.496396487e-06 0.007283577896 0.005508048884 0 23.72890987 6.038472946 911.570888 0.002194014778 +2.498083507e-06 -0.001393947545 0.0004999061488 0 17.3269931 1.756775562 889.3046703 0.002248948045 +2.499945533e-06 -0.008260282869 0.008106053509 0 -3.005378214 0.3255823652 915.8974379 0.002183650611 +2.496972076e-06 0.0006939004129 -0.00584403852 0 24.87826955 0.5706960092 1010.76361 0.001978702024 +2.499641806e-06 -0.007496850393 -0.005933049303 0 -5.319706451 6.847567816 1024.420295 0.00195232368 +2.499668428e-06 -0.004206861956 -0.00733790667 0 -7.626816384 1.087389111 945.9925692 0.002114181512 +2.499295331e-06 -0.001266317838 -0.009279848384 0 9.307920264 -8.436713395 1058.087228 0.001890203328 +2.498543176e-06 -0.006388592673 -0.003963512946 0 -13.18240848 9.711590268 959.0198531 0.002085462562 +2.495500732e-06 0.000868077632 -0.004849050217 0 -19.88569744 -20.52259746 951.9852127 0.002100872969 +2.498791899e-06 0.005423805001 0.01009790142 0 13.49127464 -3.510180265 896.6667886 0.002230482968 +2.496112344e-06 -0.0008543115947 0.008770241502 0 8.300046022 26.17928648 984.3376598 0.002031823105 +2.497543002e-06 0.005332280346 -0.01493739768 0 11.88439856 -19.39303348 1025.665597 0.001949953284 +2.49792924e-06 0.004580908548 0.01335574105 0 11.85736364 15.00766592 939.5568461 0.002128663112 +2.499296653e-06 -0.007585940436 0.01355459973 0 11.08704035 -3.383276177 977.2462636 0.002046567047 +2.498043688e-06 0.009697637921 0.00728897773 0 18.16261274 -9.012889847 1024.752166 0.001951691411 +2.499117237e-06 -0.00525983586 0.005629043779 0 -9.27049568 9.220568852 983.9065277 0.002032713417 +2.49859519e-06 0.001582976975 0.009992764033 0 8.027170628 -14.38578698 982.6043871 0.002035407155 +2.496956193e-06 0.003172010691 -0.009307582963 0 -5.11494397 -22.79970136 946.6076518 0.002112807768 +2.496627336e-06 0.006206008405 -0.0114756819 0 26.64201625 2.02083053 1028.232812 0.001945084787 +2.498718705e-06 -0.005277971104 -0.0004527614429 0 9.342262628 -12.50079238 974.6953086 0.002051923286 +2.496697042e-06 0.007908963459 -0.0008190414892 0 15.29027257 -17.65455964 908.2511116 0.002202034189 +2.498015267e-06 -0.002729438981 0.00157734564 0 19.50350578 7.94271046 1056.667528 0.001892742937 +2.499288415e-06 -0.008346303962 0.01292492042 0 7.145061853 -10.46666805 1062.189476 0.001882903235 +2.499752588e-06 0.003494173181 0.001913525218 0 3.586508024 -6.019801041 996.1023837 0.002007825734 +2.498544191e-06 -0.0005749384547 0.002095489413 0 -12.46119169 -11.19108214 981.3437301 0.002038021886 +2.498133433e-06 -0.005517966808 0.004873543368 0 -13.57206601 -13.99730456 1008.799888 0.00198255375 +2.498032419e-06 -0.001228155624 -0.009985358336 0 -1.696785371 20.64251463 1043.795374 0.001916084369 +2.496418893e-06 -0.008381983424 -0.002540127647 0 -22.59172555 17.3127332 1062.959601 0.001881539053 +2.498473833e-06 0.007672045664 -0.004982445182 0 12.40702465 9.562902244 896.4107222 0.002231120122 +2.497008974e-06 0.002438375899 0.01169366523 0 16.61600138 -14.8554408 910.8777557 0.002195684314 +2.496631637e-06 -0.008825855334 0.01391617021 0 -22.97164477 -13.11498481 1018.618865 0.001963442922 +2.496826589e-06 -0.005370050413 0.008001778491 0 -18.0549197 -15.05929481 932.7908582 0.002144103346 +2.49870026e-06 0.008024430792 -0.01254008055 0 6.047378522 13.53632101 919.3663717 0.002175411307 +2.497629108e-06 0.007628811011 0.002803792963 0 -5.352239811 -21.24790765 1005.887696 0.001988293533 +2.499489105e-06 0.005301975044 0.001773540087 0 -8.094565371 -6.382676166 1019.698942 0.001961363219 +2.499595397e-06 0.0007698742114 0.01246310372 0 -7.547346283 -5.306018958 1025.53487 0.00195020185 +2.499579125e-06 0.000145619968 -0.004478029883 0 -0.07274625106 8.399459014 915.4795192 0.002184647453 +2.496730511e-06 0.008104609204 0.01260029602 0 18.10084771 16.39267326 954.5229705 0.002095287449 +2.49614111e-06 -0.004554646658 0.004518481228 0 -10.28845367 27.69300131 1062.792127 0.001881835543 +2.498744841e-06 -0.002231228338 0.008186488585 0 12.89885265 -5.697536992 889.8325784 0.002247613819 +2.497698532e-06 0.001841062196 0.006718999366 0 -13.06252216 -14.96842616 925.6715049 0.002160593677 +2.497993703e-06 0.001584653961 0.00282208516 0 -15.44257906 -11.90811656 973.2096951 0.002055055565 +2.499911767e-06 -0.006698922678 0.01331784831 0 -3.427389276 -2.676401097 1035.165228 0.001932058714 +2.495146145e-06 0.004691843474 -0.009958735497 0 25.28148725 20.98862539 1053.833075 0.001897833772 +2.497030415e-06 0.007769879322 -0.003287521158 0 15.54731255 -17.41804304 957.6008058 0.002088552963 +2.49943951e-06 0.008019703887 -0.007766334554 0 7.595664812 -6.080546953 918.8914736 0.002176535595 +2.498536092e-06 -0.009396349224 -0.0003484021244 0 -12.97635199 8.082934916 893.2649632 0.002238977327 +2.495659086e-06 -0.004360054904 0.0143876248 0 16.15184778 26.39434173 1049.51977 0.001905633469 +2.499299992e-06 0.006022786032 0.004090483894 0 1.047104397 11.30126771 959.1161994 0.002085253071 +2.497110187e-06 -0.0002944363514 -0.002683169274 0 12.50237342 -22.31062727 1063.347134 0.001880853332 +2.499093224e-06 0.009163052463 -0.00137506325 0 -12.80601159 2.227796173 965.0816578 0.002072363498 +2.496132006e-06 0.006019158871 0.008511065505 0 -2.048354196 28.00900981 1009.127375 0.001981910362 +2.498022468e-06 0.006400884795 -0.002407534481 0 -14.33661578 13.18225134 979.0203894 0.002042858373 +2.499104013e-06 -0.001329464647 0.01099000799 0 10.67463976 7.309999618 966.3463581 0.002069651304 +2.493499007e-06 -0.00779892195 -0.007088311622 0 -25.57425874 -23.78449396 967.6217826 0.002066923292 +2.498847659e-06 -0.002313811816 0.0009001651034 0 -8.382712308 13.31941324 1036.482391 0.001929603453 +2.498734446e-06 -0.005291423537 0.008138065862 0 16.64002107 2.804413033 1060.468868 0.00188595824 +2.499069533e-06 -0.001672736672 -0.005873532963 0 -0.834555403 13.71396072 1007.023329 0.001986051308 +2.498698945e-06 -0.009564817324 0.006002226658 0 5.294767184 13.96296186 925.5581671 0.002160858249 +2.499448847e-06 0.004497380774 -0.005112629305 0 -7.727665815 7.246361257 1008.929425 0.001982299209 +2.499884826e-06 0.009913974977 -0.0006197682302 0 -1.168183915 4.913437208 1052.267034 0.001900658231 +2.497832614e-06 -0.007974298391 -0.01140783776 0 -18.32825272 -8.861324534 977.4861748 0.002046064744 +2.499524063e-06 -0.008452706938 0.004119034961 0 9.672057623 1.34085117 1000.763896 0.001998473375 +2.498343379e-06 -0.008064537784 0.004007900348 0 -0.580036142 18.20101156 1000.187468 0.001999625133 +2.497828959e-06 -0.006594596645 0.008661497596 0 -18.13284303 4.240609732 893.3842652 0.002238678336 +2.498294842e-06 0.008321775855 0.008429422898 0 0.4948848902 -18.78069396 1017.077186 0.001966419095 +2.498708845e-06 -0.005371500934 -0.003449850334 0 12.03812311 -7.840132727 893.8194027 0.002237588481 +2.495611586e-06 -0.004930124064 -0.008942156027 0 10.67438101 -25.45541653 931.1077536 0.002147979106 +2.496322078e-06 -0.009782197471 -0.0053678099 0 -16.15845381 -22.7051038 1026.9458 0.001947522449 +2.49785556e-06 0.003689189251 -0.003893403942 0 -8.152916906 16.83318037 902.8473344 0.002215213939 +2.497068679e-06 0.00106674951 -0.01253772399 0 13.34053141 -21.30580213 1037.74065 0.001927263812 +2.495366183e-06 -0.002109994013 -0.006025249574 0 19.42396564 -20.21347622 920.2169025 0.002173400635 +2.499353781e-06 -5.584931932e-05 0.005302964451 0 -10.50531741 1.891072595 938.8302333 0.002130310602 +2.496780459e-06 0.002366447169 0.01064485383 0 19.20004729 -14.19800506 940.5922125 0.002126319965 +2.498101625e-06 -0.008580383393 0.001167767623 0 -16.10318843 -12.71326038 1052.640782 0.001899983388 +2.498003246e-06 0.0006780856848 0.00315363076 0 -4.969100268 -17.38495708 904.5219451 0.002211112744 +2.49554407e-06 0.009125583456 -0.0103031167 0 23.43879833 12.2402464 885.169219 0.00225945498 +2.496729055e-06 -0.006216025348 0.01089581444 0 9.821193591 25.42240396 1065.020111 0.001877898812 +2.4968162e-06 -0.007374269115 -0.001882921611 0 -24.60985821 0.07926470131 974.8008979 0.002051701024 +2.498436942e-06 -0.004700725013 -0.01472130626 0 5.808477542 14.85622328 901.9724229 0.002217362692 +2.498264674e-06 -0.008404321615 -0.0003972830088 0 -19.82749865 1.104985043 1065.669817 0.001876753914 +2.495555119e-06 0.006093363557 -0.01495375251 0 11.21640732 -26.40993046 961.7056441 0.002079638414 +2.497932163e-06 0.003141468377 0.011584338 0 -0.1097604779 21.08974966 1036.738815 0.001929126189 +2.495679065e-06 0.00376392025 -0.006883123079 0 20.59844861 18.84946123 949.1827831 0.002107075724 +2.496854366e-06 0.002431855612 -0.01381533232 0 16.38479987 -18.22579899 976.6376871 0.002047842333 +2.496846474e-06 0.00391806405 0.005389041882 0 22.94289378 -3.48792728 923.6151694 0.002165404019 +2.499774071e-06 0.009551593065 0.005426088301 0 -3.612442227 -6.015102722 1043.769098 0.001916132604 +2.495038079e-06 -0.00355416087 0.002858651646 0 -23.00261174 19.38517008 954.196946 0.002096003355 +2.498113868e-06 0.009557741773 0.005878158566 0 19.31779644 -6.058969077 1042.098749 0.001919203916 +2.496928021e-06 -0.008122586678 0.0008222268079 0 -10.71706155 24.06372106 1062.257342 0.001882782939 +2.498201711e-06 -0.009238889399 -0.001430043674 0 -15.26911427 -11.16275449 997.0793221 0.002005858467 +2.496207635e-06 0.006234609028 0.01310669369 0 20.50919168 17.3924812 975.8645082 0.002049464842 +2.495715881e-06 -0.006179245585 0.002686118935 0 -18.20409484 24.38979456 1039.056866 0.001924822467 +2.495212071e-06 0.006447706204 -0.005220885559 0 23.97591017 -20.66711857 1022.179605 0.001956603311 +2.496214178e-06 -0.009524912769 0.007148248537 0 5.675177869 26.1983284 973.6203674 0.002054188744 +2.496248424e-06 -0.008379247249 -0.01160977114 0 -20.43244711 14.88776791 922.4192412 0.002168211493 +2.493109202e-06 0.001438541021 0.00893659851 0 24.24455719 27.92940846 995.2222557 0.002009601361 +2.498739201e-06 -0.003629446924 -0.004941873914 0 -13.12705933 5.871144967 905.4089619 0.002208946547 +2.499452699e-06 0.0004703315767 0.004749191555 0 9.688443862 1.882969245 943.2818228 0.002120257119 +2.49402988e-06 -0.007257570913 -0.009275980736 0 18.58981908 -24.37085109 886.2517042 0.002256695237 +2.499881409e-06 -0.00982342395 0.01374323578 0 4.242046378 -0.4656549302 876.2506866 0.002282451849 +2.495888901e-06 0.007927065133 -0.01178808723 0 2.295243458 -27.14166307 949.3400911 0.002106726577 +2.497647404e-06 -0.005027995375 -0.006114922226 0 4.82139294 -21.0823665 996.6605051 0.002006701369 +2.499418452e-06 -0.0001766009303 -0.001765854433 0 10.32231818 1.182853754 963.3066043 0.002076182174 +2.496143798e-06 0.009950393615 0.01091193612 0 7.304617861 27.77812382 1033.65553 0.001934880569 +2.495072058e-06 -0.009940927103 -0.01286087067 0 15.35393273 -28.0669934 1018.29747 0.001964062622 +2.499251538e-06 -0.005644574584 0.008359883633 0 -8.255610393 9.36863658 1020.495812 0.001959831658 +2.498038323e-06 -0.002816720754 0.001918001482 0 -19.93204309 -0.4636333948 1006.265751 0.001987546529 +2.499675769e-06 -0.004285356845 -0.01367874248 0 -5.194338654 6.625764466 1045.453262 0.001913045827 +2.499270469e-06 -0.007221171288 -0.004722900752 0 7.174766915 -9.020431638 954.089309 0.002096239818 +2.499740468e-06 0.007796278107 -0.01252916615 0 4.807438654 5.828436423 1048.631617 0.001907247472 +2.495470859e-06 -0.007950017373 -0.005789083173 0 -18.13717727 -20.89066636 918.5854313 0.002177260744 +2.496435971e-06 -0.001484603849 -0.003953492101 0 -17.56450251 -16.91306872 912.8117391 0.002191032295 +2.499305105e-06 -0.001569865248 -0.01082832975 0 -12.02816346 -2.756022098 1046.624027 0.001910905872 +2.497561164e-06 -0.0076962964 -0.00350800168 0 10.62867242 20.44222098 1042.850181 0.001917821022 +2.496389069e-06 0.001710462943 0.006574984726 0 -3.301641967 27.54243902 1031.66948 0.001938605376 +2.496959122e-06 -0.001165320748 -0.002469016069 0 16.11034267 20.72224927 1063.855578 0.001879954424 +2.499513884e-06 -0.006694447175 -0.002802112189 0 -8.775992883 0.6115838915 892.1374765 0.002241806955 +2.498728395e-06 0.001248617964 0.01291027309 0 13.11193273 10.94730117 1070.886853 0.001867610938 +2.499267743e-06 0.001408220078 -0.008007606415 0 1.478315628 -11.41289822 950.8552625 0.002103369544 +2.499890685e-06 -0.00742945449 0.001678575561 0 0.4993632929 -4.980693147 1070.533071 0.001868228132 +2.498676504e-06 -0.001284791026 -0.0105616083 0 -13.1509617 -8.638896083 966.9272326 0.002068407976 +2.499328618e-06 -0.002625804818 -0.005100667435 0 0.9338913917 11.95417909 1034.659158 0.00193300372 +2.498293364e-06 0.0008984346548 0.009958014165 0 18.33283839 0.8144045426 993.0271986 0.002014043526 +2.499520513e-06 -0.00976625809 0.005153939717 0 8.814216209 4.419902331 1006.830508 0.001986431663 +2.499540478e-06 0.007547377027 -0.009226547352 0 9.524373207 -3.833372542 1070.876889 0.001867628315 +2.496076338e-06 0.008771923054 -0.01060225977 0 19.30721013 -17.10614731 920.2823983 0.002173245955 +2.499865073e-06 0.003782077278 -0.008982121206 0 -0.3001103797 -4.829543175 931.4708089 0.002147141897 +2.498181282e-06 -0.00146381537 0.00199737112 0 15.3220446 -11.35175316 999.5674388 0.002000865497 +2.498349977e-06 -0.00138663277 -0.005038340497 0 -1.697919235 -18.11625987 1001.382887 0.001997238046 +2.498532415e-06 -0.001546648424 0.001394712855 0 15.88692282 6.69503164 1006.06275 0.001987947572 +2.499878551e-06 0.004923144169 0.001080861599 0 3.809247677 3.331979176 1026.846794 0.001947710225 +2.497285414e-06 -0.009309636955 -0.01023178338 0 0.7517213339 -22.33448456 958.6896468 0.002086180868 +2.49730228e-06 -0.001042580782 0.007001860673 0 -12.0978874 17.76657455 924.9887243 0.002162188519 +2.499456381e-06 0.005928896894 -0.001686183822 0 -10.49039092 1.406866681 1014.997372 0.001970448452 +2.49816211e-06 -0.008063744488 -0.003678329741 0 -4.320069106 -19.50979695 1041.963427 0.001919453167 +2.499487426e-06 0.004558199765 0.009211613014 0 -2.584904802 -8.495174001 876.9471083 0.002280639255 +2.498475539e-06 0.0001128495717 0.01223677638 0 -11.05417324 13.95952067 1019.530621 0.001961687035 +2.498543528e-06 -0.006876601391 -0.007512961077 0 17.1776684 4.594599794 1041.616884 0.001920091764 +2.498376928e-06 -0.009075214933 0.001915213026 0 -17.99903497 -4.04314458 1023.644504 0.00195380329 +2.498160111e-06 -0.009129576925 0.01198186704 0 19.70667112 1.944187706 1032.014704 0.001937956883 +2.497962914e-06 0.008600606266 0.0006934244209 0 -20.66236316 2.857994656 1033.101148 0.001935918862 +2.498650887e-06 0.001497088559 -0.01259971375 0 13.23178995 10.90153172 1043.494742 0.001916636394 +2.499443703e-06 -0.007575541507 0.01088633428 0 -9.345346659 -4.348167682 977.1100964 0.002046852251 +2.498423165e-06 0.009042576086 0.01076033223 0 -16.6661725 6.99945857 1017.652295 0.001965307807 +2.498988888e-06 0.002316555665 -0.006819381884 0 -1.453842207 -13.4785053 953.1757235 0.002098248991 +2.497411764e-06 -0.0005601822073 -0.01008159045 0 -20.20651279 -8.821393741 968.6929644 0.002064637686 +2.496578147e-06 0.004951078752 -0.005401768656 0 24.88707877 8.133494307 1000.32574 0.001999348732 +2.498476709e-06 -0.003837105539 0.006590047935 0 15.64868782 -2.540423838 908.0733419 0.002202465272 +2.499507898e-06 -0.005777111147 0.01392401344 0 -10.01291519 -2.042870704 1030.011054 0.001941726735 +2.494476378e-06 -0.003846434387 0.01202068355 0 -24.03883076 24.45632099 1030.889812 0.001940071554 +2.497128148e-06 -0.008618183611 -0.006454157594 0 -17.49338634 -11.81488495 880.4289722 0.00227161993 +2.496929099e-06 -0.003721124725 0.01267644085 0 18.29191695 -18.06883636 1036.998178 0.001928643696 +2.499804768e-06 -4.312978592e-05 0.002676897536 0 -5.281393344 -1.936173433 900.1768208 0.002221785713 +2.494570404e-06 0.002087096721 0.00175077752 0 21.36715189 19.95805398 886.5424825 0.002255955061 +2.499932828e-06 -0.00295371593 0.002139441872 0 1.052302333 -3.384246494 966.9174275 0.002068428951 +2.498705522e-06 -0.007428918383 0.01069224312 0 6.956816925 13.59576631 948.9795849 0.002107526897 +2.496563774e-06 0.009236411885 -0.01454995563 0 26.34170569 3.516851152 1013.212526 0.001973919538 +2.499512353e-06 -0.006126493206 0.01012903704 0 8.40094146 2.607772819 890.6446402 0.002245564516 +2.499175684e-06 -0.00353939875 -0.00581722185 0 3.186204005 -11.09756613 899.1091472 0.002224424038 +2.499233031e-06 -0.006067726389 0.009936337983 0 -6.889886267 -11.06954655 1052.634529 0.001899994676 +2.496036964e-06 -0.004183337595 -0.01478029408 0 -24.32264181 -7.429380416 902.8033047 0.002215321975 +2.497965244e-06 0.0001169624319 -0.01077948562 0 10.32349332 15.22864181 911.7307692 0.002193630036 +2.499911124e-06 0.004600621071 0.01191887423 0 -3.814967156 -1.973865939 1018.795411 0.001963102679 +2.496526309e-06 0.002914080466 0.01334924227 0 -4.541725606 26.23639889 1009.668236 0.001980848687 +2.49919594e-06 -0.005275310883 -0.006336296881 0 0.4219305505 11.68528919 921.9572762 0.002169297918 +2.499332711e-06 0.00999980425 -0.01273339037 0 3.65226709 -9.537699468 883.9769471 0.00226250244 +2.499811179e-06 -0.008660320551 0.006538583497 0 2.248624309 6.019037624 1045.547669 0.001912873089 +2.497841751e-06 -0.005902590351 -0.008101535181 0 -20.89760052 -2.986602782 1015.735257 0.001969017011 +2.499481567e-06 -0.004535321947 -0.009670291159 0 -10.41998296 1.390500128 1032.296916 0.001937427081 +2.495240953e-06 -0.005595515906 0.01067554933 0 -8.422732531 26.08025249 887.7076494 0.002252993991 +2.496880434e-06 -0.007084011873 0.002617733153 0 17.79551073 -16.83968924 980.39844 0.002039986926 +2.496665619e-06 0.006764409235 0.007296338989 0 -7.978345022 23.40525046 957.0706112 0.002089709972 +2.49569146e-06 -0.00372653333 0.008105087711 0 -23.88502421 16.52565992 988.7926298 0.002022668798 +2.497696954e-06 0.003355788095 -0.003654799133 0 17.48548348 8.861319161 913.059423 0.002190437938 +2.49576261e-06 0.001990179936 0.01047542759 0 -1.842967181 27.86815117 958.7719162 0.00208600186 +2.495726024e-06 -0.001101083397 0.01300995776 0 12.74708422 27.23145321 1027.742154 0.001946013396 +2.497165421e-06 -0.00668333313 -0.01039814279 0 -14.88258811 14.58690104 874.8537009 0.002286096519 +2.494493815e-06 0.009203741732 -0.004878665891 0 29.44431241 -15.09004845 996.1931735 0.002007642748 +2.499094178e-06 0.003432373609 0.007735894688 0 -13.25921885 1.882803152 994.849808 0.002010353708 +2.499946503e-06 0.007147909133 0.001027430124 0 3.005634263 -0.9687592289 965.4169134 0.002071643838 +2.499461377e-06 -0.009062557365 -0.01245087881 0 -2.218147903 10.46173739 1030.291533 0.001941198133 +2.499376531e-06 -0.001592733175 0.008785633938 0 6.538450087 8.905946887 989.3191361 0.002021592353 +2.49765987e-06 -0.001604858967 -0.00852993713 0 9.870456169 -19.78534833 1021.68328 0.001957553813 +2.495669762e-06 -0.006768683312 0.01154544875 0 -12.11483576 26.76318692 997.6118557 0.002004787722 +2.499825623e-06 0.006318152426 0.006531662657 0 -4.109457282 -4.792725583 1069.019774 0.001870872783 +2.498502493e-06 0.007773146336 0.01068282329 0 7.49846405 -13.50979871 892.6208853 0.00224059288 +2.496457472e-06 0.001522070034 -0.009752889255 0 -5.548510557 -27.85218001 1066.369354 0.001875522765 +2.497161664e-06 0.005587666202 -0.0144171153 0 -13.62130452 -17.34045272 925.1017805 0.002161924279 +2.498149051e-06 0.001184217003 0.01347486834 0 8.311163012 16.42417444 956.4391758 0.002091089586 +2.499300936e-06 0.003774088616 -0.01452668128 0 10.34452894 3.915927695 935.3452501 0.002138247882 +2.498449783e-06 -0.005602535838 -0.01414137497 0 8.317526401 15.1336395 980.5000731 0.002039775473 +2.498956075e-06 -0.0005187017331 -0.003951916262 0 11.74366926 7.508372562 964.5106037 0.002073590474 +2.499246795e-06 0.008492703331 -0.006662764472 0 -3.333407222 -12.49621535 1053.621325 0.001898215186 +2.499680788e-06 -0.00294198907 -0.002865141125 0 7.804559302 1.178509947 987.7996916 0.002024701989 +2.497767015e-06 0.003259005123 -0.0008969547367 0 20.06824954 3.863192863 966.7350478 0.002068819171 +2.499708292e-06 -0.002526039523 -0.002417703315 0 7.637299576 1.014991798 1008.633981 0.001982879852 +2.494417089e-06 0.004757337929 -0.00797377384 0 24.56763963 17.46795542 901.3645619 0.002218858034 +2.49989146e-06 -0.00240561571 -0.01127353381 0 4.033768686 1.347358119 912.773291 0.002191124587 +2.4991556e-06 -0.005719897794 -0.0101849688 0 7.64353884 11.05681442 1034.205965 0.001933850768 +2.495790336e-06 0.009860628662 0.01214047629 0 27.84947966 6.722552332 986.737995 0.002026880499 +2.499373708e-06 0.00276992111 0.004935515709 0 7.538313255 -6.760903406 904.6779353 0.00221073149 +2.497221965e-06 -0.0001582715241 0.0003289956925 0 -0.8046013868 -24.95781775 1058.930003 0.001888698965 +2.498558228e-06 -0.008664675285 -0.01344890107 0 0.1688791696 16.1777702 952.5440788 0.002099640368 +2.496324021e-06 -0.003495170553 -0.01262701081 0 -25.19669228 -12.65971444 1039.396166 0.001924194129 +2.499568922e-06 0.0002549951151 0.005505414095 0 -0.5066643861 8.786489568 947.7970502 0.002110156388 +2.497034807e-06 0.009109915923 0.01140302285 0 18.29932952 -12.42339934 907.8441136 0.002203021389 +2.497004004e-06 2.186672762e-05 0.01129987397 0 20.73678113 13.26632269 1005.214672 0.001989624759 +2.49959732e-06 0.0004835052043 -0.007577552428 0 8.240921031 2.705331192 966.4484397 0.002069432696 +2.499844087e-06 0.006240578885 0.006292034097 0 -4.636175649 3.718189644 1064.236675 0.001879281222 +2.494389401e-06 0.005046049794 0.006282304153 0 25.02050034 22.01267809 994.0085432 0.002012055141 +2.499013318e-06 0.005300931833 0.006028734134 0 11.67706689 -7.084218478 972.1162565 0.002057367096 +2.496599304e-06 0.0095802829 -0.00226903514 0 25.54926736 8.999455353 1038.137825 0.001926526471 +2.49623947e-06 0.006979045025 0.01067855162 0 19.69840485 20.86316665 1045.668585 0.001912651894 +2.496448474e-06 0.0006378817838 -0.01467469511 0 6.239523186 -24.04687871 931.651137 0.002146726302 +2.497804124e-06 0.003209899981 0.002170425395 0 17.99658605 -8.629042958 952.0584036 0.002100711461 +2.498723389e-06 -0.005374420877 -0.01049918549 0 -14.34200891 3.654159487 926.0625561 0.002159681316 +2.499050664e-06 0.005799838318 0.0008178372821 0 -13.96579932 -3.811714962 1050.46274 0.001903922837 +2.495427921e-06 0.006516567115 0.008644103764 0 -13.47770341 23.88324688 906.2660111 0.002206857562 +2.498411389e-06 -0.00237988364 0.001595031093 0 16.68863559 -4.37642371 967.6885555 0.002066780669 +2.498344675e-06 0.000934755588 -0.009316952296 0 -4.305935514 -18.82983193 1061.329554 0.001884428821 +2.495239483e-06 -0.001368336249 -0.00352132512 0 -25.05436435 -18.04379761 999.9131624 0.00200017369 +2.498659862e-06 -0.004904540391 -0.006911931101 0 14.65174594 8.961654634 1048.872732 0.001906809033 +2.498911899e-06 0.00216086138 -0.001489180089 0 1.788639692 -14.80020632 1010.405608 0.001979403107 +2.499260224e-06 0.005833190712 0.009047337072 0 -10.78838272 2.537183386 911.0303216 0.002195316613 +2.497952342e-06 -0.003231418016 0.007646516596 0 17.87970022 0.6754750265 883.878827 0.002262753603 +2.498342096e-06 0.005785397799 -0.01213446745 0 -17.94147611 -1.802296255 990.0010285 0.002020199922 +2.499152086e-06 -0.006174128172 0.007115203924 0 -9.541056322 7.546922939 934.043006 0.00214122903 +2.499546282e-06 0.004094962156 0.01057906856 0 2.488516978 9.436415758 1024.39919 0.001952363902 +2.498684134e-06 -0.007294741943 -0.009100734489 0 -7.875426633 -14.34449228 1008.527945 0.001983088332 +2.499358045e-06 0.008634416005 -0.01338376682 0 -10.03007981 3.945504975 951.1233165 0.002102776754 +2.499244926e-06 -0.007457385305 -0.007055669348 0 6.416099603 -11.25085217 1053.828038 0.001897842844 +2.498492509e-06 -0.002812444153 -0.003374969289 0 4.053433449 15.33773918 913.4415768 0.002189521531 +2.495369775e-06 -0.00492624748 -0.01487303445 0 -25.12708604 16.27353793 983.0693702 0.002034444425 +2.497462306e-06 0.004870734289 -0.005373640296 0 15.90018704 12.98945673 911.0042085 0.00219537954 +2.49957498e-06 0.003443971029 0.01065508194 0 5.31870449 8.030699774 1044.676306 0.001914468615 +2.49464538e-06 -0.002520808517 -0.003767155346 0 -25.80597537 -22.3627525 1042.625697 0.001918233942 +2.498224225e-06 -0.003480344554 0.00720034203 0 18.47238657 1.939270779 985.3225404 0.002029792193 +2.49961878e-06 -0.002298961557 -0.01218395513 0 -0.4185374271 8.825096469 1011.764696 0.001976744205 +2.496357693e-06 -0.007579901982 0.01100536379 0 -13.55452492 22.26396745 965.2172919 0.002072072285 +2.498873314e-06 -0.000234609819 0.006300662141 0 13.29391481 -6.424252919 983.4168893 0.002033725495 +2.497582824e-06 0.009766357294 0.01110479074 0 1.559489895 22.40943424 1021.299995 0.001958288465 +2.499878212e-06 0.001487181499 0.0009589511971 0 -5.228646606 0.5398909744 1065.04378 0.001877857078 +2.498658826e-06 -0.006943570776 -1.182918437e-05 0 5.166874604 16.03377727 1028.359435 0.001944845286 +2.497663199e-06 -0.006345275939 0.01370941522 0 20.56534773 2.268783816 956.7198663 0.002090476084 +2.498135728e-06 -0.003466065009 -0.01222302215 0 -20.12343976 -2.159514143 1047.846079 0.001908677277 +2.496721128e-06 0.004174951571 0.009974374466 0 20.69282289 8.767741591 877.1688696 0.002280062676 +2.498575497e-06 0.00685703197 0.0001292286348 0 -14.62317216 5.981619603 935.8313247 0.002137137267 +2.499600336e-06 0.00396904151 -0.002793904881 0 -5.900821345 5.328378431 889.2197295 0.002249162871 +2.49994739e-06 0.004623229448 0.009958246441 0 -0.6898443219 -2.95424214 935.2384506 0.002138492059 +2.499992205e-06 -0.003459975086 -0.005489644934 0 0.793803691 0.7505162256 874.9054498 0.002285961301 +2.497550508e-06 0.003668447845 0.007770571467 0 18.81851172 14.2459575 1065.976409 0.001876214129 +2.49797126e-06 0.003542614295 -0.004170524685 0 -17.27422002 5.860026597 905.2972539 0.002209219117 +2.497597985e-06 0.003543242863 0.006283394792 0 -2.666258592 22.89271095 1051.147323 0.001902682865 +2.496209504e-06 -0.00600531911 0.009703709981 0 -26.1485384 3.015908414 955.4476965 0.002093259534 +2.495529277e-06 -0.001348288893 -0.006015899701 0 -22.6964168 -22.05420242 1057.629184 0.001891021948 +2.496279648e-06 0.007316526258 0.0009426659695 0 14.78079815 18.83671275 877.2816375 0.002279769591 +2.497015841e-06 -0.007922767298 -0.01476419857 0 13.7745416 -18.68870326 949.8962517 0.002105493096 +2.498575199e-06 0.005184000232 -0.004030473602 0 -11.83362205 11.42974717 974.401827 0.002052541307 +2.498659222e-06 -0.001762460512 -0.01391384707 0 -14.14988603 4.213567786 901.407247 0.002218752963 +2.496060741e-06 0.006957429405 -0.008918231532 0 27.11885261 12.51863103 1063.504853 0.001880574399 +2.498521729e-06 0.005927408934 0.01320376197 0 18.36039452 -1.406566784 1070.691651 0.00186795143 +2.497408812e-06 0.003608820573 -0.01391697542 0 13.15693412 -16.21536309 916.9196477 0.002181216211 +2.497227168e-06 0.008484406043 0.01176579711 0 5.332357451 22.66870112 988.4709885 0.00202332696 +2.499993991e-06 0.009392206469 -0.000928582144 0 1.147778666 0.2488086632 1071.300076 0.001866890562 +2.49948075e-06 0.005658727931 -0.009119201868 0 9.018238339 0.5812345726 886.7167384 0.002255511725 +2.499126761e-06 0.008560274811 -0.007690951384 0 6.480935464 10.651618 943.3440017 0.002120117366 +2.498514462e-06 -0.003139110268 -0.01334453036 0 -5.931214689 -16.71515346 1028.747768 0.001944111143 +2.496964562e-06 -0.004693658412 -0.01344588236 0 21.07398636 -15.08694084 1051.41326 0.001902201614 +2.498208835e-06 0.009850919708 -0.00898762357 0 15.1033601 -7.992046392 902.5685829 0.002215898091 +2.497711753e-06 -0.004212209922 -0.01299725919 0 12.53231756 17.46337322 1004.427783 0.001991183471 +2.499606061e-06 -0.008420926072 0.01287855806 0 -8.384542752 -0.3611980163 945.4238847 0.002115453219 +2.4993035e-06 -0.009354575532 0.00289794459 0 10.32336944 3.062586879 912.2569104 0.002192364867 +2.498987831e-06 0.002730071796 0.007237406981 0 -2.061998089 -14.76058855 1047.352726 0.001909576354 +2.498440149e-06 -0.003993884688 0.01461578762 0 11.28094593 -10.75589978 882.2659525 0.002266890153 +2.495910324e-06 -0.00900773067 -0.005562175973 0 -19.00007286 17.03209915 891.6536333 0.00224302344 +2.497179763e-06 -0.009211934051 -0.01358000376 0 -20.88381415 7.453867266 933.2667122 0.00214301011 +2.498187108e-06 0.007777567049 0.01216660167 0 -10.20075043 16.07684179 999.6476192 0.00200070501 +2.496768925e-06 -0.0003837908758 0.01284792631 0 11.68124145 22.59168431 999.9950526 0.002000009895 +2.495155106e-06 -0.007610178539 0.01312962278 0 -26.85687423 -12.55586473 951.7150851 0.002101469265 +2.49768672e-06 0.009569914956 0.01260782162 0 20.17283404 -3.74155117 953.5236732 0.00209748332 +2.499759756e-06 -0.006997473016 -0.001305196008 0 5.914621148 3.256057609 973.9855849 0.002053418481 +2.49914723e-06 0.006253647325 0.008481246724 0 -12.76942101 5.410094028 1061.778194 0.001883632581 +2.498304825e-06 0.00780677516 0.003468789055 0 -9.756058822 15.52552544 995.590503 0.002008858053 +2.496837748e-06 0.001639198666 -0.00984428392 0 0.3567780325 -24.29379888 965.6570551 0.002071128657 +2.498782922e-06 0.009724071124 -0.01370023544 0 1.24539383 14.55607299 936.2125488 0.002136267029 +2.497437231e-06 -0.001023810199 -0.003227805309 0 8.966586047 21.21729715 1017.035162 0.001966500348 +2.499437785e-06 0.006400933149 0.0005089382781 0 2.19261753 9.246875035 896.128802 0.002231822028 +2.499618684e-06 -0.002860345184 0.0001554849464 0 -6.09279801 -5.029339747 904.6219702 0.002210868259 +2.499977228e-06 -0.006034682831 0.005112594673 0 -1.177575969 -1.64483085 947.8817304 0.002109967874 +2.494788841e-06 -0.002067299536 0.001555561451 0 -22.06517107 -18.47863032 890.7998335 0.002245173298 +2.498444589e-06 -0.005721343514 0.01132731624 0 15.1776912 6.805295406 942.8562512 0.002121214127 +2.498668533e-06 -0.008631269112 0.009966271471 0 15.08146706 2.444214106 936.0662612 0.002136600883 +2.496908572e-06 -0.002744232509 0.005667165765 0 -24.78996797 -1.542794319 998.4338177 0.002003137278 +2.499340013e-06 0.005807390907 -0.01072211787 0 -8.769378196 7.488628735 1003.621846 0.001992782449 +2.493347999e-06 0.0003391039371 0.01077583465 0 -23.32368001 26.88378144 974.8039988 0.002051694497 +2.498674097e-06 0.003914486663 -0.006874127327 0 -11.1563155 13.03882531 1053.577619 0.001898293931 +2.499916247e-06 0.004950600369 0.01198036022 0 -4.033254171 0.1737693226 986.3633927 0.002027650271 +2.494588046e-06 -0.00430181351 -0.0137834578 0 -10.29321951 -28.61302892 923.5174638 0.002165633113 +2.496848177e-06 0.001194130806 -0.0002567143226 0 -22.28454535 6.853657424 928.1706192 0.002154776243 +2.497879387e-06 0.000554221496 0.00598400028 0 -19.51376081 0.05817962875 947.2377097 0.002111402428 +2.498357207e-06 0.008985700491 0.003039350363 0 4.560300955 18.56178244 1054.223834 0.00189713032 +2.497506425e-06 -0.007244779109 -0.003179280146 0 4.308733504 22.87557039 1041.965963 0.001919448496 +2.497742792e-06 0.009979303335 0.01401437936 0 11.09643026 -16.17308591 922.8112372 0.00216729047 +2.495827756e-06 0.0009146020422 0.00155220248 0 22.90270389 17.10630477 988.9665245 0.002022313142 +2.496372762e-06 0.005324439784 0.007262280586 0 -6.601909883 27.72541099 1057.582833 0.001891104827 +2.499981237e-06 0.00906865316 -0.002128804866 0 1.348162928 1.374580961 993.9133363 0.002012247876 +2.497934652e-06 1.16182724e-05 0.001625746612 0 -14.77422452 10.82419074 900.8691128 0.002220078335 +2.495531501e-06 -0.00802622423 0.00543361261 0 -10.94431917 24.85666321 907.888779 0.002202913007 +2.498717127e-06 0.0001981927129 -0.007407356836 0 -3.898582039 16.09605517 1033.732541 0.001934736424 +2.497267898e-06 -0.0007902098866 0.002437008207 0 -17.98659387 16.54552756 1045.068009 0.00191375105 +2.499428665e-06 0.004117104681 0.01103581342 0 -9.450646294 1.719992636 898.5450278 0.002225820563 +2.499837936e-06 0.005111415838 0.004203134228 0 5.246713824 -0.2240228663 922.3890959 0.002168282354 +2.496706132e-06 -0.0001154915988 0.00814590072 0 -22.55679791 14.35685565 1041.234353 0.001920797171 +2.495926707e-06 0.006885190499 -0.001225154924 0 25.53054772 -3.860108254 904.0966563 0.002212152856 +2.496613743e-06 0.004669766729 -0.01323794388 0 -20.66666627 18.09580027 1055.003273 0.001895728716 +2.498973811e-06 0.005359076788 -0.002881818465 0 -6.28018386 -12.1472391 954.3788669 0.002095603821 +2.498502298e-06 0.005339040947 0.004449776164 0 16.82952898 3.577963937 993.9077989 0.002012259087 +2.49627757e-06 0.001719750538 -0.005936482355 0 -19.42131587 -21.00487415 1047.875857 0.001908623036 +2.498681515e-06 0.006135769379 -0.01424653982 0 12.65585764 -9.396577456 970.4994603 0.002060794551 +2.495529522e-06 0.007588408869 0.01222559255 0 19.18161601 18.06214352 880.5442108 0.002271322638 +2.495436189e-06 -0.008894200637 0.004788802585 0 -26.53769518 -8.325010055 919.9605721 0.002174006213 +2.499173109e-06 0.003468252663 -0.003326875863 0 12.23301204 5.287925995 1036.189175 0.001930149483 +2.496955228e-06 -0.008691875208 0.005560294774 0 -26.2006946 -2.305201114 1065.360028 0.001877299643 +2.499352145e-06 0.004045750629 -0.003599121957 0 10.73714264 2.585549688 970.1363023 0.002061565983 +2.499595789e-06 0.009250969696 -0.007448249257 0 -7.080262434 -5.04520685 966.8742036 0.002068521419 +2.495358531e-06 -0.009606983084 -0.006188271164 0 -24.1926435 19.62378697 1021.703584 0.00195751491 +2.497884701e-06 -0.003254901026 0.009149109288 0 6.448713045 19.35114182 991.3690566 0.00201741217 +2.496176573e-06 -0.006508267904 0.006187576123 0 21.87307824 -18.52415632 1035.93668 0.00193061993 +2.496904375e-06 -0.0004343087506 -0.009928388405 0 24.13757713 -10.98809288 1065.364235 0.001877292229 +2.496750507e-06 0.0004519827291 -0.01373171532 0 21.94056359 -8.364046122 920.6135677 0.002172464181 +2.498906966e-06 -0.00510413745 0.004680560825 0 -10.52408163 11.76760739 1067.578226 0.001873399018 +2.498022338e-06 0.005142640127 -0.0008667210443 0 -13.64417927 13.32202184 958.552467 0.002086479425 +2.499915649e-06 -0.002436928349 -0.01337418642 0 3.811085841 0.7853535835 947.3599788 0.002111129924 +2.49955699e-06 -0.002292445712 0.01045085088 0 7.29674729 5.385746886 963.4166011 0.002075945129 +2.496388743e-06 -0.0007182353269 0.006051112642 0 -14.24379219 22.21538202 981.414635 0.002037874644 +2.497629019e-06 -0.0002415588964 -0.00182539399 0 21.38027785 4.856429048 1006.477417 0.001987128539 +2.496166445e-06 0.0005601744214 0.008637411932 0 23.28242566 16.5189325 1030.383245 0.001941025351 +2.49708945e-06 -0.002693367703 -0.01354484601 0 -18.24853417 12.33430379 912.5215 0.002191729181 +2.496784705e-06 0.005420184946 -0.008463497367 0 -21.03509002 15.62385311 1032.78636 0.001936508921 +2.497377626e-06 0.004699864862 0.001306661395 0 -13.32182618 -16.60238855 929.1134235 0.002152589716 +2.49846257e-06 0.008502019336 0.01140310092 0 15.66808505 5.718461908 950.949832 0.00210316037 +2.497896082e-06 0.003384883851 0.01228985804 0 0.9948237679 18.14553078 885.6351494 0.002258266286 +2.497514807e-06 -0.005399048231 0.0006881586928 0 -3.477742093 -21.74693658 987.4715712 0.002025374763 +2.499820977e-06 0.009690379365 0.01455670251 0 1.475084155 -6.045432784 1039.931122 0.001923204294 +2.497236143e-06 -0.005691848565 0.01433743883 0 8.882043261 20.23332725 939.4652691 0.00212887061 +2.496742993e-06 -0.005005340814 -0.01234949184 0 17.2316173 -20.15217681 1038.372102 0.001926091808 +2.498938918e-06 0.0004089052603 0.007119315248 0 9.166784058 9.407931257 901.540281 0.002218425557 +2.498667367e-06 -0.001601076988 0.006174793553 0 -16.11782703 5.144645767 1036.13638 0.001930247831 +2.499112918e-06 -0.002760369298 -0.004712085652 0 -7.542323377 8.99380511 881.1113978 0.002269860548 +2.495603471e-06 0.007875777069 -0.0009831108316 0 17.22562634 22.92581557 966.4124875 0.002069509682 +2.495406337e-06 0.004497130373 0.003681768039 0 21.16975565 18.14373574 919.2111581 0.002175778636 +2.497448627e-06 -0.00855670928 -0.01015815068 0 13.72317782 17.86121319 996.7470533 0.002006527126 +2.499362827e-06 -0.009359997199 0.01064621719 0 -10.42871971 -3.52986427 975.2112897 0.00205083762 +2.498366824e-06 -0.009265224016 -0.005735025534 0 18.42253118 -3.463092514 1036.936625 0.001928758182 +2.498731338e-06 -0.003713807166 -0.01057435193 0 9.712184406 -12.92915895 1014.978088 0.001970485889 +2.494871828e-06 -0.004252329487 -0.006152112675 0 -26.78541876 20.36853441 1049.9218 0.001904903774 +2.498972004e-06 -0.004533774415 0.004283227588 0 -13.37049084 -1.733867996 940.1365647 0.00212735051 +2.497184478e-06 -0.001750182295 -0.01238643234 0 -21.01718536 -10.79862325 995.3329964 0.002009377773 +2.497683298e-06 0.001039460385 -0.008970066758 0 -19.55606691 8.28932898 986.4173631 0.002027539331 +2.49768152e-06 0.009848598619 0.006721673633 0 6.462593179 19.15770338 938.5956334 0.002130843069 +2.496218338e-06 -0.0007756325323 -0.01040015759 0 -6.633778273 -25.86793149 970.4869333 0.002060821152 +2.499869878e-06 -0.007836472341 0.007673992726 0 4.874715509 1.824434896 1020.27574 0.001960254393 +2.499673008e-06 0.008149432922 0.0002832563873 0 3.720782228 -6.42448349 917.9993087 0.002178650878 +2.499291237e-06 0.0009205555404 0.002237702538 0 -10.83027761 -1.582916393 919.2164833 0.002175766032 +2.495773387e-06 0.002785412725 -0.0007953607826 0 22.08773568 21.30183423 1054.76278 0.001896160954 +2.49541514e-06 0.005278476672 -0.005338480705 0 -16.15831725 -24.17779057 959.666031 0.002084058345 +2.499571982e-06 -0.009854531158 -0.003858592787 0 -2.281421116 -8.65216221 967.0450098 0.002068156063 +2.499651432e-06 0.00929170399 0.009041439397 0 6.970889511 5.373439074 1054.08874 0.00189737346 +2.499555729e-06 -0.0002108473098 0.003187692845 0 7.533338487 6.665542255 1067.040801 0.001874342572 +2.497837927e-06 0.00601173324 -0.003318452281 0 0.6781629016 18.2280951 876.901005 0.002280759161 +2.497200708e-06 -0.001888971971 0.01355246841 0 21.40668944 13.27292633 1064.059263 0.001879594558 +2.497683757e-06 -0.008893726291 0.00284520546 0 -20.7869267 5.641819085 1000.383577 0.00199923314 +2.498810178e-06 0.008556180438 -0.01394199006 0 -14.21875619 4.918430414 975.1469862 0.002050972857 +2.498477191e-06 0.00762592644 0.01436857219 0 -1.284058352 -17.79701563 1022.204279 0.001956556082 +2.498344514e-06 0.009930571164 0.01438156217 0 11.13688669 13.83652186 975.8881755 0.002049415138 +2.49864549e-06 -0.001273908806 -0.01118469344 0 -0.8881616337 -16.30513212 991.9125159 0.00201630685 +2.494857012e-06 -0.000236966568 -0.006098266449 0 14.72652952 -24.76178261 897.6049859 0.002228151616 +2.497366936e-06 -0.005658847676 0.01410616764 0 -16.56213205 -13.45616768 929.5359009 0.002151611356 +2.494670612e-06 -0.0001498552784 -0.01181040286 0 10.47120118 -28.22964871 921.5032693 0.002170366689 +2.49808539e-06 0.00790449691 0.01026682162 0 -11.40077701 13.80232491 914.5801632 0.002186795735 +2.499085269e-06 -0.004156484413 0.006969957564 0 7.814924908 -9.550917981 912.2603262 0.002192356658 +2.498494082e-06 -0.001472457987 -0.01258886373 0 0.7423047026 -18.09765124 1043.454362 0.001916710566 +2.492805754e-06 0.008675735765 -0.0142765856 0 26.82313721 -28.22070043 1025.313645 0.00195062263 +2.498876904e-06 -0.001766982106 -0.0139194249 0 14.17919866 1.451942844 950.8676608 0.002103342118 +2.49881112e-06 0.003621619623 -0.00250612559 0 14.79568887 4.599901626 1004.63629 0.001990770211 +2.497138279e-06 0.004608091107 0.01210968206 0 21.93338085 -2.969484673 924.7718487 0.002162695591 +2.496207051e-06 0.008135567242 0.004244580483 0 21.73507497 19.73818036 1065.381569 0.001877261686 +2.498989559e-06 0.003795749368 0.006468085384 0 -0.07900809681 13.05017516 917.8844283 0.002178923553 +2.499210325e-06 -0.009687713892 -0.004134793463 0 -1.494323127 13.06668395 1046.396335 0.001911321679 +2.497611647e-06 0.00530329877 -1.580110285e-05 0 20.17317423 4.535566157 945.7199238 0.002114791018 +2.496493804e-06 0.002400400229 0.01097515647 0 7.726067634 23.64542731 938.8862015 0.002130183612 +2.496710579e-06 -0.009212728501 0.00836643131 0 -21.82972646 14.39892904 1019.052191 0.001962608017 +2.498775359e-06 0.0008975294326 0.007247330707 0 11.91627802 7.005967889 883.1000185 0.002264749132 +2.495712688e-06 0.00746777379 -0.01108373468 0 22.08778503 -15.92373483 929.2865601 0.002152188664 +2.495682423e-06 0.005508713052 0.01363652579 0 -20.84643792 18.36916841 944.9138601 0.002116595051 +2.49643427e-06 -0.006690679388 -0.002224688313 0 12.26155232 -23.6527637 997.1167205 0.002005783234 +2.498724355e-06 -0.0006803213106 0.006114573099 0 -0.4862229222 15.32612928 959.8157166 0.002083733331 +2.496503597e-06 -0.001647726805 0.00269600854 0 22.09032739 17.27766465 1059.975375 0.001886836286 +2.495910265e-06 -0.002114078901 -0.002114990798 0 -16.96720015 24.48811593 1041.041631 0.001921152758 +2.499566819e-06 -0.001136425468 0.007215209508 0 1.693719247 8.293604612 909.3640919 0.002199339096 +2.497997425e-06 0.006304050512 0.01176940211 0 6.322312485 -17.02836321 907.3512845 0.002204217963 +2.497754066e-06 -0.000544811287 0.008716497347 0 -21.59115471 3.647924117 1032.827455 0.00193643187 +2.498824843e-06 0.003963966719 0.000340140732 0 13.82266903 -2.223719799 913.0632082 0.002190428858 +2.498030501e-06 -0.007874479718 0.004846960686 0 20.04972099 1.182572611 1011.67556 0.001976918371 +2.499682825e-06 0.001368973544 -0.0126440697 0 5.5522182 -5.58858089 989.0509162 0.002022140587 +2.498962141e-06 -0.0006287809089 0.01014063955 0 -11.76384887 -9.061661084 1030.515051 0.001940777089 +2.49729242e-06 -0.003374859202 -0.01365637697 0 -23.16363462 -3.532043829 1006.504248 0.001987075568 +2.494854548e-06 0.000807210952 0.01122532424 0 -15.26987995 28.72653455 1013.3493 0.001973653113 +2.497619655e-06 0.001196723692 0.004322339783 0 15.73352409 -12.97042379 934.1991736 0.002140871087 +2.498543617e-06 -0.004624851844 -0.005281984219 0 -14.00798064 -6.613818581 907.4596138 0.002203954831 +2.497973683e-06 0.00104426879 0.009654297188 0 2.577000963 20.75661086 1038.669233 0.001925540814 +2.497159265e-06 -0.002268044376 0.009313899328 0 6.45049499 20.59541324 905.0548715 0.002209810767 +2.497274491e-06 0.001805257336 -0.004032181625 0 20.2796407 11.24927986 992.882971 0.002014336088 +2.498561756e-06 -0.009834079072 -0.0003191376943 0 -14.81713467 8.581690908 1009.372966 0.001981428142 +2.499035731e-06 0.003257263708 0.007338691391 0 -10.00846619 7.708390723 909.5450198 0.002198901601 +2.498664222e-06 0.009702156074 -0.008374138407 0 -9.764269177 -10.96122944 897.9328399 0.002227338071 +2.497343525e-06 -0.0008797455067 0.007797319412 0 19.19775521 12.67943777 997.743687 0.002004522831 +2.496485982e-06 0.00808217831 0.01253695076 0 19.82765874 17.78745117 1004.243834 0.0019915482 +2.497276855e-06 -0.007495927089 0.006683677314 0 -2.258047558 20.89312312 900.1132119 0.002221942722 +2.496068464e-06 -0.003311179774 -0.01258818913 0 6.656080919 -26.85085225 985.9511292 0.002028498108 +2.498274274e-06 0.003326804787 0.008789756962 0 16.7158216 -9.261666791 1028.372095 0.001944821345 +2.496108477e-06 -0.007941330671 -0.001540661291 0 -24.60928642 3.971322045 893.0033714 0.002239633202 +2.49655752e-06 -0.007735665324 0.0114231894 0 -2.939775901 24.81032591 951.6666529 0.002101576213 +2.497414945e-06 0.002389459102 0.006768031167 0 -22.96853683 7.254676756 1058.923216 0.00188871107 +2.498644437e-06 -0.004295504675 0.002790658751 0 -1.230996632 14.62373975 891.1044203 0.002244405879 +2.497565879e-06 -0.001807570541 -0.01135418912 0 -21.05629034 4.867200699 979.1297756 0.00204263015 +2.498213098e-06 0.001566454042 0.01344002756 0 9.516536646 15.75323479 973.29457 0.002054876357 +2.498076782e-06 0.003347440208 -0.001375223456 0 17.5078818 -3.472950097 909.828645 0.002198216127 +2.498862631e-06 0.009514274513 0.01178822921 0 -5.611541012 -13.8273638 989.2499022 0.002021733837 +2.498888849e-06 0.004107268872 -0.007845288604 0 -10.79720919 11.30569831 1048.51668 0.001907456542 +2.499285857e-06 0.001534965504 -0.008659432002 0 -10.7516409 4.384071984 971.4478717 0.002058782626 +2.496015173e-06 0.008511549244 -0.01079312216 0 20.93020177 18.48065123 988.4588634 0.002023351779 +2.496681093e-06 -0.004646381163 0.002423228463 0 15.75012339 21.17237846 1023.718554 0.001953661963 +2.49973173e-06 0.006050013369 -0.0127608194 0 -6.76858124 0.907167352 932.2777221 0.002145283484 +2.499409046e-06 -0.002158424216 0.01146797588 0 2.464453822 10.0054781 947.7582463 0.002110242784 +2.495008196e-06 0.005318964999 0.003254331511 0 21.20058333 -22.36819444 974.6462554 0.002052026557 +2.496820908e-06 -0.009412912298 0.01401919145 0 1.762930162 23.94191305 951.6105076 0.002101700206 +2.498516145e-06 0.007967543378 -0.007580030893 0 -13.94704255 -6.934374392 903.9468034 0.002212519578 +2.496067786e-06 -0.008244966255 0.01413348996 0 -26.94207354 -10.35465996 1028.625202 0.001944342794 +2.498569501e-06 -0.001533991317 -2.7886522e-06 0 -16.45988267 -2.530547092 984.3455123 0.002031806896 +2.499257559e-06 0.002259787396 -0.01058874357 0 9.764313905 -6.062396177 943.078717 0.002120713747 +2.499189954e-06 -0.006899674628 -0.00511842361 0 -10.57128708 5.017076635 919.2122335 0.002175776091 +2.496510496e-06 0.004128251541 0.01497925922 0 24.55978562 6.675747122 962.895056 0.002077069549 +2.498937382e-06 0.001854329342 0.00161658054 0 -13.89036618 -3.858442415 988.737936 0.002022780686 +2.497716736e-06 0.003202721993 0.009483118567 0 0.9509210815 22.5314957 1054.956634 0.001895812526 +2.498439142e-06 -0.003562275441 -0.01023120923 0 17.50529924 2.249163289 998.6806249 0.002002642236 +2.49531158e-06 0.00841253811 -0.01418765509 0 15.8352935 -26.04802679 994.7955053 0.002010463446 +2.497832063e-06 -0.00961374558 0.002475884955 0 17.95890542 10.86388936 1007.66515 0.001984786315 +2.496626388e-06 0.001288137785 0.01257331902 0 8.987807803 22.13347835 919.2012632 0.002175802058 +2.497415344e-06 0.0001566440938 0.01001459022 0 13.31030567 -18.91860234 1017.006311 0.001966556136 +2.496197809e-06 0.000122986557 -0.009022216117 0 19.23571289 -19.57235834 994.5888686 0.002010881142 +2.499484559e-06 -0.003173211366 0.005290834098 0 1.72566398 -9.832511393 983.1374188 0.00203430361 +2.496931338e-06 -0.001832519374 -0.0004672785639 0 -24.00356674 10.69292376 1060.218477 0.001886403646 +2.498969464e-06 -0.007127463147 0.004557244715 0 -9.086013392 10.69956873 977.5962453 0.002045834371 +2.498851818e-06 -0.007391725578 0.008800147553 0 -14.83850027 1.959873741 987.5301353 0.002025254651 +2.497581651e-06 0.004141994892 0.009345887988 0 15.13994866 12.36604152 888.5410259 0.002250880873 +2.497516932e-06 0.001591791948 0.01133551763 0 -18.75195251 13.31510603 1031.637412 0.001938665637 +2.498431529e-06 -0.002574206996 0.006913754884 0 -10.09632726 13.66867618 959.2226466 0.002085021665 +2.49923348e-06 -0.009052418121 -0.009933619844 0 -11.59146472 2.500630301 957.6114319 0.002088529787 +2.496821155e-06 -0.006965067382 -0.01283433604 0 -25.23552465 0.7492115819 1000.798817 0.001998403642 +2.49822618e-06 -0.008337551518 0.01053726157 0 12.88557094 11.88436487 930.4199926 0.002149566879 +2.497018143e-06 -0.009445111807 -0.006777299156 0 -5.195882043 -23.84905313 999.0523362 0.002001897125 +2.497980132e-06 0.009218236851 0.01261083881 0 -20.92094728 1.047912875 1041.879115 0.001919608495 +2.49936655e-06 0.007563383495 -0.01003962137 0 -8.519563076 6.782765548 967.4074176 0.002067381295 +2.498000902e-06 -0.005579768959 0.007590467264 0 -1.701643624 20.26991973 1016.985389 0.001966596593 +2.495022304e-06 0.007911765962 0.006316711782 0 22.65118417 -17.0139422 897.1858294 0.002229192587 +2.499475925e-06 -0.002284447677 -0.01073103268 0 3.30596764 9.719993683 1002.744735 0.001994525556 +2.496756228e-06 0.00393816012 0.0148387894 0 11.5050986 22.04040548 975.6504113 0.002049914577 +2.495898375e-06 0.006032158327 0.008027125737 0 -20.02080655 -18.10121513 941.7821206 0.002123633435 +2.499321866e-06 0.009190322077 0.004242385039 0 0.7455316871 -10.24839558 882.2367543 0.002266965177 +2.499893375e-06 0.004994396227 -0.006027912309 0 3.243461567 3.523241646 1037.00826 0.001928624947 +2.495267721e-06 0.007439651638 0.01318429767 0 23.58680922 14.68222358 902.4503177 0.002216188482 +2.495549949e-06 0.006888350719 -0.01350329843 0 25.90362515 -14.84343393 1000.070262 0.001999859486 +2.499934969e-06 0.008106562421 0.01020647844 0 -1.361028863 -2.944182357 899.3765537 0.002223762663 +2.496967181e-06 0.002809475278 -0.001599521048 0 6.284834022 -25.45964666 1064.293244 0.001879181336 +2.498783081e-06 0.008963411776 -0.01383728405 0 11.93561841 -10.90834609 1036.263172 0.001930011654 +2.498278213e-06 -0.002225371068 0.01278979545 0 16.20873535 -6.387773132 938.6021967 0.002130828169 +2.498251183e-06 0.009337210483 -0.002102250452 0 17.77791075 7.722524288 1036.130581 0.001930258635 +2.499155465e-06 -0.009564163806 0.01131302507 0 -9.66138289 -6.334738431 888.8223601 0.002250168414 +2.497902615e-06 0.002034303048 -0.01474733812 0 -9.558972672 -16.2912931 921.9547404 0.002169303885 +2.497582963e-06 -0.002968644528 -0.01223465576 0 12.83582839 19.17471521 1049.098756 0.001906398219 +2.498759798e-06 0.008684849739 -0.007327891847 0 4.692733967 15.40562467 1022.363535 0.001956251305 +2.499189513e-06 0.007265646947 -0.006908562882 0 11.30488558 -5.874419084 1000.531574 0.001998937416 +2.497909851e-06 0.002878597695 -0.01485512068 0 18.81914421 0.586647015 920.5998568 0.002172496536 +2.498447434e-06 -0.0002107278816 -0.01401651844 0 -16.1720981 8.677275637 1041.274871 0.001920722429 +2.495120699e-06 0.00376859596 0.004824228329 0 -16.80932266 28.27729914 1052.285525 0.001900624833 +2.499034095e-06 -0.002362821093 -0.01301118471 0 -12.5584453 -0.707963969 904.8564567 0.002210295329 +2.499633807e-06 -0.006905210684 -0.001096662562 0 -4.439905339 -6.946342209 963.2671693 0.002076267171 +2.498865312e-06 -0.001698604827 -0.01055146301 0 -8.87508132 -13.39562264 1066.495837 0.001875300335 +2.495916518e-06 -0.002091343328 -0.01307106545 0 22.76023672 -20.13881143 1062.785138 0.001881847918 +2.49670755e-06 0.004435579856 -0.002368206005 0 -20.51228015 -12.74367379 940.5951374 0.002126313353 +2.498789138e-06 0.006212149798 0.004847114508 0 16.52774954 0.8821980572 1063.384376 0.001880787461 +2.497606822e-06 0.0008610197855 -0.001483175475 0 -17.72402502 -7.557139147 880.3910089 0.002271717884 +2.499165139e-06 0.004502616073 -0.01281219944 0 -4.961086978 12.49726029 1040.436182 0.001922270713 +2.499095371e-06 -0.00698554418 0.01180430874 0 13.71992954 3.907359647 1060.418034 0.001886048648 +2.496656396e-06 -0.002299229819 -0.008159932746 0 20.16722836 -17.51559152 1032.429932 0.001937177467 +2.496355184e-06 0.0065453764 0.001723612498 0 28.25865226 5.956526614 1069.056932 0.001870807757 +2.498401541e-06 0.002238844996 -0.002158735644 0 5.446307202 18.15357021 1059.758663 0.001887222129 +2.499634598e-06 -0.001536091915 -0.003334533102 0 7.097086071 -5.404538736 1043.448617 0.001916721118 +2.496567162e-06 -0.007971552359 -0.001947808403 0 -27.2622159 -5.86463921 1063.699531 0.001880230217 +2.499747509e-06 0.004121926157 -0.004611159672 0 4.256930932 -5.827454327 1015.509105 0.001969455508 +2.498729153e-06 0.006411223123 0.01310222459 0 2.685571566 -13.69940331 875.4790657 0.002284463534 +2.499395801e-06 0.003582396205 0.009234077388 0 11.55997333 -1.775192583 1063.833467 0.001879993497 +2.498671225e-06 0.001498096311 0.009134603797 0 6.93350382 -13.00702609 903.9799616 0.002212438422 +2.49843327e-06 0.003103784001 -0.005500402458 0 -12.81596864 -10.92872687 951.2724493 0.002102447097 +2.498851039e-06 0.007455040109 -0.006870718624 0 -11.24651604 -9.907656001 988.568136 0.002023128126 +2.498634604e-06 -0.0004304208048 0.006889661208 0 3.993858699 14.69469579 921.3041847 0.002170835684 +2.499421143e-06 -0.005483320514 -0.0003779617022 0 -10.00847134 2.858856733 967.2999768 0.002067610925 +2.496703786e-06 -0.008052232899 0.002130321914 0 -8.36156502 22.55753814 936.5070584 0.002135595223 +2.49671733e-06 -0.002580487831 0.005380004689 0 17.86860383 -14.79355414 904.9061522 0.002210173945 +2.497601664e-06 -0.006750231511 -0.009444192429 0 13.41229964 -14.47143132 900.580748 0.002220789201 +2.497125321e-06 -0.008658446684 0.01089320095 0 10.452869 20.66843501 965.5310691 0.002071398906 +2.49945095e-06 -0.004239932252 0.0006281145173 0 -1.454468118 -9.566862662 923.3679114 0.002165983868 +2.496974455e-06 0.005178542114 0.009291878182 0 17.93877009 -16.81487709 999.0755235 0.002001850664 +2.499857161e-06 0.005740079903 -0.01367096698 0 -2.310133576 -4.83689445 1002.851378 0.001994313458 +2.49978897e-06 0.005779125942 -0.001643009526 0 5.603222204 -2.237909045 928.7009491 0.002153545769 +2.49734553e-06 -0.005417548441 -0.0007649426186 0 -17.01598168 13.16864063 933.4547868 0.002142578332 +2.494917694e-06 0.007491529118 0.001703272539 0 25.33722796 -14.0987561 908.7756032 0.002200763305 +2.495371362e-06 0.0005584639264 0.01427654787 0 -20.02510393 23.02301751 1002.181536 0.001995646426 +2.496073917e-06 0.006132427296 -0.0008400036371 0 14.12927718 23.04167766 963.9975132 0.002074694149 +2.49668431e-06 -0.009064628496 -0.01062065528 0 -18.86131987 14.98463633 934.9835362 0.002139075099 +2.498062307e-06 0.006182187693 0.001454342238 0 14.71834715 14.8988883 1063.539951 0.001880512339 +2.497838455e-06 0.00905129387 -0.0007889385545 0 4.234765861 -21.706872 1063.335672 0.001880873606 +2.498692419e-06 0.006181553486 -0.005749297086 0 -13.29801564 -7.719354527 950.6329571 0.002103861417 +2.497788566e-06 -0.005119428933 0.01127720945 0 -5.98692274 21.29124965 1051.307092 0.001902393712 +2.498386081e-06 -0.007701199087 -0.004578542265 0 -17.23950595 -6.63446898 1027.907816 0.001945699769 +2.49476386e-06 0.003201120314 -0.006155735473 0 15.39272082 -24.44395474 891.9412148 0.00224230024 +2.499693794e-06 -0.008990569706 -0.01364473727 0 6.346371653 4.265210293 977.0550835 0.002046967498 +2.499507769e-06 0.004175240984 -0.01402600555 0 3.134875613 8.453528117 908.6275198 0.002201121974 +2.496185078e-06 -0.001736269938 -0.01086143808 0 -6.49245012 -28.06944873 1042.42427 0.001918604601 +2.496554136e-06 0.004983961168 -0.01109616963 0 -2.33663207 -28.03269646 1070.975891 0.001867455669 +2.499016764e-06 0.003894121288 -0.01278565782 0 -10.80556039 10.07015764 1053.143886 0.001899075735 +2.498059558e-06 0.003231991748 -0.006049510329 0 18.63613865 -8.331020566 1035.919336 0.001930652252 +2.498394539e-06 0.003958901502 0.002753148903 0 -14.72299555 5.571196921 878.2847167 0.002277165892 +2.499562766e-06 -0.00653994971 -0.002345854479 0 8.612114509 -3.201110804 982.4508698 0.002035725207 +2.498140434e-06 0.004172376636 0.003490934295 0 14.82057345 8.619064413 888.7623294 0.002250320399 +2.498037666e-06 -0.005776840458 -0.006094706354 0 -19.85677341 6.092286221 1048.128212 0.001908163502 +2.497667952e-06 -0.005217709099 -0.003758597919 0 -2.394145829 -19.43335717 906.323293 0.002206718083 +2.495675702e-06 0.007691601687 -0.008890838991 0 28.59141136 8.930908437 1017.88134 0.001964865571 +2.495724416e-06 -5.275425036e-05 0.007920975157 0 -23.90923268 14.82341671 961.3963432 0.002080307476 +2.499076195e-06 -0.000850110529 -0.002900294471 0 -1.935543927 -13.30823443 989.2370548 0.002021760093 +2.498885779e-06 0.006332194381 -0.004050121657 0 -4.27109712 13.03808956 918.9158925 0.002176477756 +2.499219565e-06 -0.001273230482 0.0004774254584 0 12.43654051 0.5992030312 996.4807831 0.002007063291 +2.496067043e-06 -0.009815147589 0.01279387375 0 5.579851991 24.15724786 883.4931625 0.002263741345 +2.499538999e-06 -0.0003890992329 0.01010026895 0 -5.502107896 6.579370176 893.1591101 0.002239242681 +2.499599618e-06 -0.00744822579 0.005927817367 0 6.670258348 5.812669148 988.656692 0.00202294691 +2.498666073e-06 -0.008808816602 -0.01326347264 0 -9.094503913 -13.53741736 998.2737952 0.002003458379 +2.499891648e-06 -0.004139040932 0.01084842927 0 -4.500590148 -1.254383605 1003.632122 0.001992762045 +2.4965497e-06 -0.00414386353 0.007354605517 0 4.05801702 24.45069008 943.0251517 0.002120834207 +2.499839251e-06 0.005114950091 -0.008430061396 0 -0.3311074777 5.986607204 1057.411745 0.001891410805 +2.497548121e-06 0.0004952636315 -0.01264371871 0 -15.9419711 -13.62072176 946.5407986 0.002112956994 +2.499156832e-06 0.0005378983822 -0.0119598209 0 -6.442455904 -10.60198011 955.2179495 0.002093763001 +2.498018562e-06 0.006007540794 0.01406975042 0 19.61609404 -7.45868045 1053.902985 0.001897707881 +2.497995314e-06 0.004977618675 0.01108760969 0 2.38109962 17.48148263 880.8482235 0.002270538722 +2.494724773e-06 0.0008306020126 0.01249621225 0 -22.45709515 24.99604931 1033.692041 0.001934812227 +2.499093912e-06 0.0008751111245 0.003183922225 0 -7.747315261 10.25596008 954.6698507 0.00209496508 +2.499069311e-06 0.004996207198 -0.0114513549 0 11.91253338 -2.229188483 888.1781601 0.002251800472 +2.496900657e-06 -0.0007781004859 -0.005957487363 0 9.689281988 -22.07764499 967.9436311 0.002066236024 +2.497307765e-06 0.004906224199 0.01309843472 0 -23.41282184 7.734781757 1062.185071 0.001882911044 +2.497435442e-06 0.001928034462 0.0007983143977 0 15.01429149 16.84010205 995.8137732 0.00200840765 +2.496200384e-06 -0.006843369151 0.01109507471 0 -11.09780005 24.05759533 960.5369613 0.002082168704 +2.49734928e-06 -0.007464072285 -0.00176084274 0 21.817679 -9.300777021 1029.668962 0.001942371843 +2.498949609e-06 0.007253968525 0.01087216984 0 4.239539533 13.03514066 945.5648775 0.002115137784 +2.4989976e-06 -0.004325246238 -0.007787488543 0 -7.774145138 -11.77780441 996.537437 0.002006949188 +2.498006831e-06 0.0005097694136 0.007456278547 0 -10.58698071 -14.64793463 904.9442591 0.002210080875 +2.499975318e-06 0.0002278442122 -0.004204481815 0 -1.377713135 -1.70712155 987.3503456 0.002025623436 +2.499696511e-06 0.001744342176 0.00264354639 0 -3.280408899 7.143775118 1008.948619 0.001982261497 +2.498684406e-06 -0.004315864965 0.001054669982 0 -14.62313103 0.466083556 901.7769178 0.002217843416 +2.499139696e-06 -0.00990126682 0.01488765225 0 -8.421435788 10.25490348 1011.492109 0.001977276919 +2.494585979e-06 -0.008972276216 0.002989679324 0 -24.76554064 16.75004299 907.8528923 0.002203000086 +2.499829526e-06 -0.002096001054 0.003854436872 0 5.331117121 -1.758365815 961.3642748 0.002080376869 +2.498497653e-06 0.005515476172 0.00257072058 0 15.4710046 5.887260933 954.743332 0.002094803842 +2.498204398e-06 -0.009004446426 -0.001809689538 0 -17.33049653 -4.684936579 947.0862333 0.002111740124 +2.499721632e-06 -0.002776407232 0.006458492707 0 -3.484541447 6.844327981 1029.282334 0.001943101454 +2.498065917e-06 0.008744784077 -0.0009036974609 0 0.1409997062 19.45051571 988.6986855 0.002022860988 +2.496357477e-06 -0.00220340162 -0.01024795769 0 22.35708516 -18.1910313 1067.28967 0.001873905517 +2.49758242e-06 -0.005158313722 -0.01463711665 0 17.78425455 -9.613647061 919.0526456 0.002176153901 +2.496824503e-06 0.008905826998 -0.005742254744 0 -8.849798914 -22.07119767 943.1306839 0.002120596895 +2.499914576e-06 0.001661589127 0.01416627449 0 -1.771538843 3.661899335 984.1464869 0.002032217791 +2.495529188e-06 -0.003266262342 -0.005495420911 0 -21.85918224 -20.04879857 991.2584695 0.002017637237 +2.499381967e-06 -0.00734123284 -0.01178358686 0 -7.320686782 -7.386801363 935.3341012 0.002138273369 +2.49670181e-06 -0.009796940768 0.01366450849 0 5.079034926 25.89018717 1026.756509 0.001947881492 +2.494778518e-06 0.008441122416 -0.005696517031 0 23.26496786 -21.37359342 976.8599454 0.002047376402 +2.498582299e-06 -0.009363899017 -0.002989551981 0 -7.95995632 -13.82259346 947.0660074 0.002111785223 +2.499424672e-06 0.0007465761481 0.01359896759 0 -7.82319885 7.266959737 995.3217502 0.002009400477 +2.498407014e-06 -0.006413490372 -0.004832916283 0 -11.9851981 -12.8032283 982.3030218 0.002036031607 +2.497928974e-06 0.009930600137 -0.007451218623 0 21.07417586 -2.595086361 1042.979699 0.001917582866 +2.497309478e-06 -0.005439968412 -0.003443655577 0 -0.138252074 22.17472725 955.560291 0.002093012884 +2.499915751e-06 -0.005073062833 0.0100008883 0 4.3710521 0.3721730282 1068.688275 0.001871453113 +2.498585327e-06 -0.004214983406 -0.005736697828 0 7.261341613 15.79428549 1033.24277 0.001935653515 +2.497310304e-06 0.003295912575 -0.01428134083 0 -0.9673447111 -23.09539383 996.2402728 0.002007547832 +2.499083047e-06 0.009096166203 0.004208679674 0 -14.34698782 -2.116323491 1070.746891 0.001867855062 +2.497132887e-06 0.008340432816 0.01363274485 0 -15.5792882 17.63841255 982.3428438 0.002035949071 +2.498309009e-06 0.003908614642 0.005398126594 0 11.77476583 13.36202777 968.1956666 0.002065698153 +2.496826536e-06 0.008772079288 -0.01129869839 0 24.80318021 -1.515909049 985.889672 0.002028624558 +2.499663477e-06 0.009313493497 0.004005976603 0 1.105605945 7.5531983 930.4431899 0.002149513288 +2.496049484e-06 -0.003868308109 0.004594273337 0 -21.09081755 -17.81114232 981.5105082 0.002037675586 +2.496032835e-06 0.005937044453 -0.005153140656 0 -13.81417334 -22.49353402 936.5637697 0.002135465907 +2.496343299e-06 0.004266711087 -0.0001421681559 0 -18.96494465 14.82908491 889.7237682 0.002247888695 +2.496488158e-06 -0.007566777961 -0.0004030778795 0 13.3105093 20.54505913 923.2080064 0.002166359029 +2.496762448e-06 -0.001392600653 -0.005952356297 0 22.0893686 10.89415575 967.4420717 0.002067307241 +2.498190042e-06 -0.004774308484 -0.0113831673 0 -3.187024932 -17.96206037 958.5609951 0.002086460862 +2.49542749e-06 -0.007726963651 0.009096442005 0 -11.69242485 30.05229716 1065.603406 0.001876870878 +2.498778416e-06 0.007402163711 0.008929630306 0 12.60300324 -8.827952527 984.2505438 0.002032002941 +2.498334286e-06 0.006076486139 -0.005157524971 0 10.01787834 14.15353373 949.7925714 0.002105722934 +2.497834676e-06 -0.003649443639 -0.0006114557711 0 3.427662005 19.59074445 955.3908046 0.002093384184 +2.499405056e-06 0.007073621782 0.01261242146 0 10.29658322 -3.768940544 1005.089472 0.001989872599 +2.49977581e-06 0.009758131551 -0.01194897928 0 2.529836562 -6.37798543 1024.647319 0.001951891117 +2.498472932e-06 -0.001148205702 0.00317599752 0 -16.98076472 -0.5633193001 971.9689779 0.002057678841 +2.497523163e-06 0.009343619351 -0.005990219009 0 15.06934075 -15.7657095 979.5243129 0.00204180741 +2.497257438e-06 -0.001545881326 0.00201907895 0 5.0817642 -24.44582841 1065.661682 0.001876768241 +2.496155517e-06 0.0002552124625 -0.00165900145 0 -20.64617865 16.1753766 945.3234378 0.002115678 +2.497536757e-06 -0.0004645928368 -0.001403278175 0 19.36975939 8.440411098 951.5829311 0.002101761113 +2.498445675e-06 -0.008920928049 -0.00218124164 0 13.99001182 6.905887385 884.6746213 0.00226071818 +2.499816896e-06 0.001864376822 -0.01408739739 0 -4.725339385 -2.905884045 916.6608395 0.002181832052 +2.49790871e-06 -0.00269832659 -0.0146541185 0 18.26958036 7.881253417 972.5899358 0.002056365099 +2.497857233e-06 -0.000500897076 -0.005038272869 0 12.27983874 -13.50497004 881.4475151 0.002268994995 +2.499745694e-06 0.002403411521 -0.01466478128 0 4.305597606 -5.48042912 977.2120237 0.002046638755 +2.499828406e-06 -0.007027481981 -0.01046050832 0 3.080760364 4.771387466 969.4737822 0.002062974819 +2.494758865e-06 0.001940105013 0.00642634887 0 -16.11698555 26.22979126 950.1224689 0.002104991794 +2.499394046e-06 0.003718448104 -0.008032143291 0 0.5036930987 -10.82508696 984.2982566 0.002031904442 +2.496877471e-06 0.005687212152 0.01143815964 0 10.99741206 19.90165073 909.455374 0.002199118348 +2.497024693e-06 0.00283931612 -0.007389685758 0 -21.44557022 -6.257091376 915.3836494 0.002184876255 +2.497215179e-06 0.004157803142 0.005191187896 0 9.020761579 -23.23538677 1055.700218 0.001894477207 +2.498936726e-06 -0.006892451346 0.01277043639 0 4.152312102 13.96207125 998.7265312 0.002002550185 +2.499135333e-06 -0.006176192993 -0.001274938958 0 -4.335415026 -10.98500036 897.9214921 0.00222736622 +2.497413419e-06 -0.008141913321 0.002037092799 0 -16.19299026 16.66581982 1021.257272 0.001958370388 +2.497935549e-06 -0.005979426168 -0.003580144071 0 21.45014062 1.295550834 1057.228999 0.001891737743 +2.496867893e-06 0.001871685651 -0.002103146743 0 13.93028402 19.99841098 973.3114753 0.002054840666 +2.499659178e-06 0.007231608396 0.01218304497 0 -7.058608528 4.52419406 1015.436826 0.001969595694 +2.499274391e-06 -0.004919305472 -0.01456436791 0 -11.91011206 -4.882575741 1068.402799 0.001871953164 +2.499297674e-06 0.009572951021 0.007380145274 0 6.854835976 8.882029917 946.5575336 0.002112919637 +2.498766e-06 -0.00774593574 -0.003650647814 0 8.370421428 -11.64766768 912.8470235 0.002190947605 +2.496814145e-06 0.00577977485 -0.01042754095 0 25.73399298 -1.663212142 1021.119773 0.001958634092 +2.494204792e-06 0.00721245334 -0.006801436068 0 24.47605584 -20.71218256 940.9884555 0.002125424588 +2.497431692e-06 0.001768969344 -0.005448012608 0 18.13491779 -14.15658574 1014.701988 0.001971022057 +2.498826663e-06 0.004476379841 -0.006920584731 0 -13.1854542 8.076193714 1009.182752 0.001981801607 +2.497480831e-06 -0.001765081994 -0.001376711119 0 -22.538593 -7.573803439 1058.890773 0.001888768937 +2.499425356e-06 -0.0003376682289 -0.006100293542 0 7.050554136 7.801266933 980.7694107 0.002039215312 +2.497157806e-06 0.00565699378 0.002814628179 0 -4.679384238 22.10832003 947.4251781 0.002110984642 +2.493588605e-06 -0.002895261068 -0.01007190112 0 -20.70052616 -25.39352894 914.0287594 0.002188114957 +2.497362694e-06 0.0008450545184 0.007915527862 0 -16.82029704 -13.9510853 951.1404621 0.002102738848 +2.497634886e-06 -0.00560188747 0.004605990965 0 -20.6390058 0.2273090892 948.6803741 0.002108191605 +2.499955013e-06 0.001263275356 -0.01243870495 0 -2.942915505 0.4025459781 990.2469077 0.002019698304 +2.499010607e-06 -0.005949980579 -0.01430017484 0 -7.4148718 10.53294903 915.5662775 0.002184440438 +2.498902121e-06 -0.009380211318 0.01281746672 0 6.414924846 12.87236457 970.4274478 0.002060947477 +2.498235945e-06 0.005771245365 -0.01087951338 0 -19.98845358 -1.681755687 1067.640219 0.001873290238 +2.498588986e-06 0.006928187269 0.006728615002 0 -10.41370456 13.50821715 1015.107606 0.001970234474 +2.497194018e-06 -0.009726280733 0.01126303899 0 -17.75751853 -13.34737337 937.3359555 0.002133706691 +2.4972352e-06 0.009713848685 -0.002692669588 0 2.777292122 21.6648332 928.4698701 0.002154081747 +2.498349388e-06 0.003809726923 -0.01090689261 0 -13.06777592 10.71721651 929.9369221 0.002150683506 +2.499505604e-06 0.0004175601713 -0.002353134588 0 -7.433448112 7.312177179 1048.523509 0.001907444117 +2.497569635e-06 0.003826310467 0.00576040264 0 23.11691459 1.622544399 1050.722036 0.001903452989 +2.495243249e-06 -0.004624825339 -0.01040862957 0 -6.868404551 -32.13294419 1064.563095 0.001878704991 +2.497882017e-06 0.005988563304 0.01210215089 0 17.61185767 5.362930707 894.2238549 0.002236576433 +2.497258606e-06 0.007639854066 -0.01119456303 0 23.68326754 -7.874434641 1065.445286 0.001877149419 +2.499266473e-06 -0.00601548906 -0.0002030006284 0 9.409774811 -6.382837763 938.6469777 0.002130726511 +2.499679286e-06 0.003260279489 0.003757205273 0 -2.097866089 7.447917448 966.0923336 0.002070195498 +2.498100126e-06 -0.002467026669 -0.004504358147 0 3.873056857 -18.68749013 978.7738853 0.002043372867 +2.494287887e-06 0.006710124975 -0.01375982457 0 15.29507921 -28.04455209 944.2936752 0.00211798517 +2.494062479e-06 0.004288721369 0.01224914934 0 -18.50477788 26.03316477 926.0357433 0.002159743848 +2.498877214e-06 0.007741150772 0.01215889933 0 -4.736846962 -14.54620903 1020.702168 0.001959435439 +2.497308799e-06 0.003132206979 -0.01482479684 0 4.669735093 -20.6755888 913.2679137 0.002189937881 +2.49956568e-06 -0.001454270319 -0.0004009448318 0 8.250583261 0.9354965414 890.8616014 0.002245017629 +2.498000278e-06 0.001280546407 -0.01418660887 0 -2.799907531 -19.33652925 976.6842168 0.002047744773 +2.499663666e-06 -0.004130400107 -0.01159822194 0 -3.157969606 -6.830422436 917.4691161 0.00217990989 +2.497728841e-06 -0.008777492717 0.01045383889 0 -6.049373654 18.36646007 906.9923022 0.00220509038 +2.498445982e-06 -0.0004754132079 -0.01104277326 0 9.007527803 15.09058816 996.6382399 0.002006746199 +2.499172898e-06 0.006221550512 -0.005480962435 0 10.24643445 7.465387711 985.5720936 0.002029278237 +2.498689106e-06 0.001863636468 -0.006086549191 0 -15.88156198 5.206073788 1031.982795 0.001938016807 +2.497403285e-06 -0.009550383631 -0.007640448085 0 -23.21577399 -0.6299552542 1018.700667 0.001963285255 +2.494235426e-06 -0.007480065352 0.01423750829 0 -15.83331552 27.32407287 929.261914 0.002152245745 +2.498181459e-06 0.003841157327 -0.009912114611 0 1.509500265 17.74881419 933.7686798 0.002141858089 +2.494919155e-06 0.008681442528 -0.007316515537 0 -18.47987069 -24.81394563 969.829936 0.002062217226 +2.496835023e-06 -0.00644443295 0.01120932095 0 -24.41781599 1.165841784 971.1687755 0.002059374282 +2.497613337e-06 0.005847910615 -0.001203235674 0 17.00972487 12.85964665 975.6565304 0.00204990172 +2.498597484e-06 -0.009588962025 0.01044255992 0 11.55857425 -11.00852902 952.8608821 0.002098942288 +2.497778557e-06 -0.001405709931 0.004920824273 0 3.526134459 18.38363623 887.7681706 0.002252840399 +2.499734472e-06 -0.003678035326 0.003910787303 0 -7.073897898 0.02538329822 970.6755192 0.002060420769 +2.496554134e-06 -0.008467528578 -0.003221181468 0 -21.81833133 9.211479769 901.6757389 0.002218092285 +2.49951136e-06 -0.004408087763 0.006171684216 0 4.740762683 8.062468776 946.0380812 0.002114079803 +2.49907933e-06 -0.006567127462 -0.01185142754 0 -7.871172626 -9.737091854 922.5702106 0.002167856687 +2.49864303e-06 -0.008561322317 0.01090519854 0 -9.747161416 -11.29784284 905.5683803 0.002208557679 +2.499245364e-06 -0.004950781926 -0.0002800801559 0 -10.57499396 -3.793511805 914.3940091 0.002187240927 +2.497962363e-06 0.006211733734 0.01311565523 0 18.61288401 -9.350203859 1031.493409 0.001938936287 +2.49545986e-06 -0.002671288378 0.00871938626 0 -15.83449898 21.53477598 886.4388817 0.002256218721 +2.499327677e-06 -0.003483656179 0.007055014651 0 1.607191781 -11.20303133 975.9140817 0.002049360735 +2.499225999e-06 -0.001833255645 -0.0007706163009 0 12.74942836 -3.039227788 1053.310194 0.001898775888 +2.498918388e-06 0.005394213866 -0.01354030193 0 0.7779357662 13.3114185 906.4491542 0.002206411679 +2.499869576e-06 -0.009306518268 0.001099198787 0 -4.700906238 0.7573207574 932.2735877 0.002145292998 +2.498514247e-06 -0.004599959627 0.007280684297 0 -13.42669937 10.59260717 991.8879395 0.002016356808 +2.497159854e-06 0.007458935631 -0.004317762677 0 -4.828444384 -24.24487872 1036.801555 0.001929009452 +2.498088792e-06 0.007088907594 -0.003451673335 0 14.7039815 9.115497658 884.6252819 0.00226084427 +2.499247165e-06 0.005932250158 -0.001191112418 0 -10.72165538 3.548333465 920.2736206 0.002173266684 +2.498057793e-06 0.002008333961 -0.01182534465 0 -3.781483438 -17.00832981 883.7905467 0.002262979625 +2.496132902e-06 0.009072297742 0.01014684332 0 -8.255156531 25.92087143 977.6145457 0.002045796074 +2.498441833e-06 0.001538681556 -0.0132008209 0 6.397915908 -16.53895236 1004.306383 0.001991424164 +2.496489899e-06 -0.006748057045 -0.0127958986 0 -23.83311818 -13.68561718 1036.716631 0.001929167469 +2.496280895e-06 -0.002079005479 0.01335625428 0 -19.52590148 18.03426823 974.0429658 0.002053297514 +2.499468627e-06 -0.00651565237 0.01220205151 0 9.208587719 -6.012565079 1066.723212 0.00187490061 +2.49641107e-06 -0.002987824199 -0.01412695278 0 13.98928266 -18.82021193 874.8036269 0.002286227375 +2.49651431e-06 0.00271245501 -0.01266673355 0 -18.55239559 -17.7878266 972.9311586 0.002055643899 +2.498986798e-06 0.008101026528 0.01447518045 0 12.49114523 3.406329215 909.3878339 0.002199281677 +2.496615551e-06 0.00651556781 0.002519137845 0 25.20263979 -11.7134699 1067.666067 0.001873244887 +2.498269393e-06 -0.008334262669 0.005309673159 0 17.88238624 8.412370206 1061.964584 0.001883301976 +2.495384583e-06 -0.005413615643 -0.01298972429 0 -13.97800844 -29.28636259 1067.353819 0.001873792892 +2.495095387e-06 -0.009815683938 0.007984466788 0 16.6474799 27.43174164 1023.776967 0.001953550494 +2.498727793e-06 0.001281007235 0.008121489971 0 -14.05541822 -9.718584434 1071.0723 0.001867287577 +2.498218789e-06 0.0007461892674 -0.001269668459 0 -6.296895368 17.07654668 964.0406293 0.002074601359 +2.49717762e-06 -0.005912682982 0.01072259244 0 -4.9632267 23.12652421 995.1341401 0.002009779305 +2.495746868e-06 -0.003752182303 0.001900484974 0 -24.22117824 15.6075116 987.3254084 0.002025674598 +2.49951523e-06 -0.008706113962 0.01269169733 0 -1.370926863 10.11864233 1036.949589 0.001928734068 +2.49831393e-06 -0.008311675307 0.01294295085 0 -8.104465234 -14.05305499 883.1941173 0.002264507837 +2.499275409e-06 0.007088167174 0.01307148904 0 -11.26303881 -2.142761045 952.2861453 0.00210020907 +2.499665444e-06 0.006817777501 -0.011112714 0 -7.583821047 -3.08043162 1000.639267 0.001998722282 +2.499561511e-06 0.009542347146 0.006648946584 0 -6.422124586 5.464313584 900.3662977 0.002221318151 +2.499087982e-06 -0.00587649961 -0.004707295932 0 -1.361258117 13.26664931 987.3234329 0.002025678651 +2.498837076e-06 0.005358109777 -0.01442468104 0 8.254380069 13.60392131 1043.197945 0.00191718169 +2.497311531e-06 -0.002081132689 0.01159435113 0 -4.958655875 21.68804068 959.0517464 0.00208539321 +2.493396782e-06 0.007642807085 -0.007009635998 0 20.28552253 -24.96435494 884.276777 0.002261735298 +2.498699359e-06 0.001915421514 0.00220691124 0 5.255819999 13.97586668 925.6011109 0.002160757994 +2.495752309e-06 -0.006358101582 -0.01087578353 0 -8.887934263 -23.97183795 876.6018676 0.002281537462 +2.498831851e-06 0.008094888479 0.007999299879 0 3.386361701 -12.98964698 878.0824213 0.002277690512 +2.496840015e-06 -0.00480992557 0.0100322926 0 16.79836189 -16.33234516 931.5264906 0.002147013553 +2.497169249e-06 -0.0005688577285 -0.007426345116 0 19.44448682 -8.298595453 888.1400396 0.002251897123 +2.498224093e-06 -0.001471308623 0.007359293047 0 -15.38489362 6.988440809 896.3705276 0.002231220169 +2.498028889e-06 -0.002542967582 0.005349505702 0 2.419512809 18.9099815 959.8827777 0.002083587753 +2.495659798e-06 -0.002416235097 0.01412737546 0 22.26901306 22.21684649 1066.975284 0.001874457666 +2.494065119e-06 -0.008013909091 0.0002105996548 0 -26.76921147 22.86757186 1020.982048 0.001958898302 +2.499781034e-06 0.0005016493332 0.002674421445 0 -1.470721966 6.457141228 1000.703113 0.001998594762 +2.498182406e-06 -0.00798843387 0.0105032145 0 -15.21528979 -7.249298651 883.7330669 0.002263126814 +2.498273773e-06 -0.004129602402 -0.002834624697 0 -19.14024936 2.883002513 1041.460285 0.001920380478 +2.498478134e-06 0.001340938518 0.01223093032 0 -16.79893816 2.310429053 971.7367601 0.002058170569 +2.499100057e-06 -0.0006647340907 0.006994210649 0 -13.99503474 -0.876030619 1045.061619 0.001913762752 +2.497613917e-06 -0.008616713914 0.009603115122 0 -6.70738832 19.43558997 940.8467014 0.002125744818 +2.499038817e-06 0.009569636062 -0.00564950895 0 -12.56942329 3.090853966 933.4339336 0.002142626198 +2.497870772e-06 -0.001621225979 -0.008863634267 0 -7.170744577 16.99941619 893.7781886 0.002237691662 +2.498718968e-06 0.004069976532 -0.01196279005 0 -16.06584469 -3.478777554 1026.774074 0.00194784817 +2.495863419e-06 -0.005507905455 0.01306655355 0 15.88811336 21.24790447 921.832014 0.002169592691 +2.499256466e-06 -0.001436371254 0.007342511988 0 11.86497743 -4.996009988 1055.59417 0.001894667531 +2.494521598e-06 0.009414112545 0.01287505823 0 29.66765263 -14.72077206 999.720381 0.002000559394 +2.499644488e-06 0.007576184766 0.0112078998 0 6.190682273 6.093168179 1030.072984 0.001941609994 +2.49794564e-06 -0.008601193083 -0.01291079627 0 17.90837498 -3.414488358 899.1307705 0.002224370543 +2.499628524e-06 -0.006220173859 -0.008963112077 0 9.158982413 -0.1352896366 1062.649864 0.001882087476 +2.495657838e-06 -0.001148046167 0.001378693159 0 22.47929306 -21.09860847 1045.485713 0.001912986448 +2.496529952e-06 -0.004081336604 -0.005414124483 0 10.98987431 -25.26564982 1045.320007 0.001913289698 +2.498153244e-06 -0.008501751442 -0.01323536063 0 -16.61814808 -6.813940182 934.3016701 0.002140636225 +2.495010707e-06 0.007202094244 -0.0006332060415 0 25.98808076 15.92351871 964.1258002 0.002074418089 +2.497479928e-06 -1.164228655e-05 0.007799240069 0 7.573986079 -18.25018249 879.8089041 0.002273220913 +2.497520014e-06 0.004665487609 0.003126702507 0 11.03681509 19.72935618 1014.691963 0.00197104153 +2.49685544e-06 -0.006086799842 -0.008415966576 0 -16.05170445 -15.57632237 891.4690321 0.002243487915 +2.497985142e-06 0.001779717319 0.0003322291933 0 14.80694212 11.54706731 935.1051703 0.002138796858 +2.496773538e-06 -0.007702070908 -0.009528820901 0 13.35694284 -22.92278465 1043.891077 0.001915908703 +2.499984901e-06 -0.005529705156 0.01001964858 0 0.6582241261 -1.644769966 1019.468079 0.001961807379 +2.497149118e-06 -0.00265503129 -0.0008190593147 0 2.30684293 22.71541202 955.7806335 0.002092530367 +2.49842432e-06 0.001562815174 0.009193346584 0 -10.45829865 -13.93492329 981.2265553 0.00203826526 +2.498730639e-06 -0.003841853696 -0.00778641552 0 -5.846179959 -15.77317363 1055.554335 0.001894739033 +2.499965972e-06 0.003580005569 -0.01425625011 0 -1.829667186 1.96202626 1028.367426 0.001944830174 +2.49828763e-06 0.006403191993 -0.003612619573 0 15.43189252 -8.892059773 962.1647215 0.002078646156 +2.495860062e-06 0.008984812726 -0.01468018747 0 -2.570327218 -28.63245797 998.4348019 0.002003135304 +2.498982205e-06 0.0008647983056 0.007184433269 0 -14.48730876 -3.467827239 1043.938559 0.001915821561 +2.499937393e-06 -0.007411465198 -0.01428485112 0 -0.7659156046 3.300588768 957.5229103 0.002088722869 +2.497532607e-06 -0.007113085003 -0.0005378513248 0 -5.647573484 -19.14022838 898.0061599 0.002227156215 +2.498315248e-06 -0.001313019893 -0.001936619261 0 -10.36572916 15.8635415 1032.084018 0.001937826733 +2.499359217e-06 -0.005357921347 0.009761445809 0 9.255834781 -3.851290068 885.4762948 0.00225867142 +2.499391625e-06 -0.005286331382 -0.001507543093 0 -8.911264679 -5.918441674 969.7191408 0.002062452844 +2.498568107e-06 0.00562589603 -0.007726057407 0 15.9873507 -3.169410174 962.9054652 0.002077047096 +2.496607301e-06 -0.002168301158 -0.01341920586 0 -19.52152388 -17.90242288 1016.323253 0.001967877832 +2.496152617e-06 -0.003464114293 -0.0007051046519 0 11.49249293 -23.91001672 955.7970801 0.002092494361 +2.4984242e-06 0.0004777328437 -0.01346009536 0 -15.07173999 -6.822371318 931.6886194 0.002146639938 +2.496312216e-06 -0.004052569815 0.01201380744 0 -23.80457401 -6.294312804 906.1437572 0.002207155304 +2.49978828e-06 0.008333165757 -0.01329409686 0 -6.859630017 0.7327187944 1060.119983 0.001886578907 +2.498051199e-06 -0.008180724727 0.01042018786 0 -17.43548062 3.703057179 902.5862319 0.002215854762 +2.498109842e-06 -0.007824988272 0.01067941021 0 18.39748357 0.1594262739 945.9920097 0.002114182762 +2.495121227e-06 -0.004704155237 0.002616675168 0 -23.24262547 -18.01190974 940.657248 0.002126172954 +2.493908001e-06 -0.007900607982 0.01009127894 0 -18.00272913 29.56025007 990.6478285 0.002018880921 +2.497948769e-06 -0.0004834803101 -0.006626947001 0 -20.40854984 4.995793104 1037.034319 0.001928576483 +2.497202206e-06 0.0004654617887 -0.0009061947023 0 -18.23531336 -15.84978073 1020.952092 0.001958955778 +2.497121615e-06 0.00660448798 0.01262074453 0 -10.04001772 23.1768548 1052.258794 0.001900673115 +2.498792745e-06 -0.001502863555 -0.0008721682336 0 -12.56469799 -5.615628539 885.5331718 0.002258526347 +2.497264151e-06 0.006846883842 -0.01130999867 0 -14.03556549 -15.78502701 902.6262151 0.002215756607 +2.498766831e-06 -0.002740705027 -0.008239905895 0 2.375589149 16.1933437 1041.966107 0.00191944823 +2.496096894e-06 0.003888256163 0.001268542393 0 -15.02850385 19.31539135 875.4213971 0.002284614023 +2.495927257e-06 -0.00704064033 -0.01329377434 0 -4.420483359 -29.48772551 1044.102482 0.001915520779 +2.499365444e-06 0.002406579419 -0.002992757801 0 -4.76413872 -10.59530092 1031.114805 0.001939648223 +2.499530274e-06 -0.0005904733064 0.01196720385 0 -6.646854016 7.518471983 1035.295087 0.001931816373 +2.499908249e-06 0.001209655972 0.003005739148 0 1.99770805 -3.573100796 955.6171825 0.002092888278 +2.498271152e-06 -0.006176598351 -0.01398159297 0 -15.67204161 4.794961293 881.1514981 0.002269757249 +2.497879015e-06 0.002581370273 0.003058243948 0 -6.477305729 -20.7667369 1055.859687 0.001894191079 +2.497644923e-06 0.0009740353795 -0.0107830479 0 -19.15026203 -11.24879446 1022.987653 0.00195505781 +2.497921806e-06 -0.005015348759 -0.01448608198 0 -20.77938385 -2.658419923 1027.222517 0.001946997819 +2.496338163e-06 0.002874808093 0.01096620447 0 6.698026996 24.97444668 954.9389752 0.002094374669 +2.499781697e-06 -0.008443540712 0.01365263242 0 0.3295997856 -6.860099839 1039.373573 0.001924235955 +2.49955264e-06 -0.002235649265 -0.01091810515 0 5.61044497 -6.857302804 936.6155389 0.002135347874 +2.497180962e-06 0.003231521128 0.0009854288818 0 -8.974565641 22.75336983 1029.663527 0.001942382097 +2.49985217e-06 -0.005867598443 0.006208441216 0 -2.294946398 4.750128622 970.1856071 0.002061461215 +2.496382263e-06 -0.009590567541 0.01474602055 0 -9.52648626 21.99411155 890.581641 0.002245723365 +2.496214801e-06 -0.005779860574 0.0009308074205 0 16.89716971 -20.79928638 973.405565 0.002054642044 +2.497916941e-06 -0.002676881761 -0.0012617828 0 10.62191121 17.59233656 1006.507179 0.001987069781 +2.496426392e-06 -0.005134807634 0.0123884484 0 -16.76278816 20.55729417 991.6524851 0.002016835565 +2.499507393e-06 0.004045710559 -0.002539339405 0 -2.214303364 -8.540652889 888.8340484 0.002250138824 +2.497255448e-06 0.004610842699 -0.002158757604 0 -15.18732601 -14.90946217 908.0171458 0.00220260158 +2.499274996e-06 -0.0001391194807 -0.01062979333 0 2.805610871 12.25957568 1044.306067 0.001915147352 +2.49809748e-06 -0.00195394495 0.01486937324 0 -18.59124659 -1.261615806 954.9983242 0.002094244513 +2.499116936e-06 -0.002415998196 -0.006527981493 0 -3.618844412 13.16507707 1027.240297 0.00194696412 +2.49830855e-06 0.005976775205 0.001858677501 0 -2.297482472 16.91867987 928.0672882 0.002155016156 +2.497646784e-06 0.0001543267397 0.005638618909 0 9.68894883 -19.9018191 1019.953132 0.001960874414 +2.498300907e-06 0.005478934776 -0.001606666425 0 -0.3610351813 16.16063865 876.6629041 0.002281378613 +2.499683147e-06 -0.00687846378 -0.01158781968 0 4.966581809 -5.850312976 963.9785311 0.002074735002 +2.494087397e-06 -0.004563702703 -0.00703748821 0 -23.63580684 -20.59600789 910.8628378 0.002195720274 +2.496078479e-06 0.006665382185 -0.008930198306 0 6.282131334 -23.69583281 874.8307558 0.002286156479 +2.496417652e-06 -0.0008442196017 -0.00349327337 0 -20.77575393 16.89268262 999.8286254 0.002000342808 +2.495702275e-06 0.006274193362 0.01262419956 0 21.07790436 -14.89641768 879.7954265 0.002273255736 +2.499455161e-06 0.005203502644 0.01048497264 0 0.6966920978 10.51785035 1009.701416 0.001980783594 +2.496087628e-06 -0.003464851365 0.01269884137 0 16.9243744 22.6331716 1009.718607 0.00198074987 +2.498288293e-06 -0.004659686214 0.002965813985 0 18.81737551 1.592853186 1020.394695 0.00196002587 +2.497718051e-06 -0.001659901626 -0.005906678662 0 -5.974348493 -18.52037113 910.6033073 0.002196346075 +2.495656042e-06 0.005619700486 -0.001744333806 0 -18.44494463 19.15782445 901.6580069 0.002218135906 +2.496568926e-06 -0.003689112728 0.006782490648 0 -5.888630122 27.24064451 1063.361537 0.001880827856 +2.498655684e-06 0.006206298452 0.01110811844 0 -4.075108859 16.63114988 1044.070612 0.00191557925 +2.497358241e-06 0.009634021209 0.01418996764 0 -14.02801224 18.93374832 1024.752745 0.001951690308 +2.498288077e-06 0.008684901418 0.002808638373 0 -16.50913353 10.09381677 1045.491395 0.00191297605 +2.499827109e-06 0.007221138072 -0.00375664511 0 -5.676018219 -2.096675662 1028.979812 0.00194367273 +2.499871399e-06 -0.005121941357 -0.003051786963 0 -4.883607735 -0.03407087062 962.9533181 0.002076943879 +2.498270671e-06 -0.002532866192 0.008061724494 0 -3.605270268 16.974129 932.8301282 0.002144013084 +2.499682822e-06 -0.005242026965 -0.01234508532 0 -3.171815636 -7.714490833 1047.214089 0.001909829157 +2.499972149e-06 -0.00761123857 -0.001716850873 0 1.294837728 -1.790328986 936.1777118 0.002136346524 +2.496395365e-06 -0.006744999248 0.002625417989 0 -22.09656506 10.44345981 909.7548092 0.002198394534 +2.499607041e-06 -0.004436938618 0.002220556273 0 -9.000075689 -1.408047227 1027.501972 0.001946468284 +2.496649443e-06 0.004650871363 -0.008688727459 0 18.22074844 -14.4410672 897.6809768 0.002227962998 +2.499220604e-06 0.003095813757 -0.01169444931 0 8.851491893 9.788422836 1056.895052 0.001892335475 +2.499711184e-06 -0.007246758579 0.01180247804 0 -5.399507912 -4.824885387 952.7140798 0.002099265711 +2.496209091e-06 0.00161671523 0.002658169039 0 17.5478641 -21.00745121 993.5205457 0.002013043423 +2.494955099e-06 -0.007689432898 0.001715384061 0 -18.06202096 22.3394157 903.7160783 0.00221308445 +2.49770178e-06 -4.559397697e-05 -0.006915719337 0 -17.87284853 -8.741677631 927.7005642 0.002155868043 +2.498850874e-06 -0.007853705883 0.001679362273 0 0.7035261988 16.01149952 1057.005015 0.00189213861 +2.494535057e-06 0.009488880709 -0.01495185894 0 20.16039189 -24.87723394 967.7543469 0.002066640162 +2.495872663e-06 -0.001164536746 -0.00796482034 0 -25.11451702 -16.29439476 1041.344976 0.001920593123 +2.496364168e-06 0.0003882485768 0.006738088955 0 -20.71460822 -13.94013096 925.4165408 0.002161188948 +2.49995521e-06 0.003466390874 0.00553032171 0 2.648250129 0.5595576519 904.3501721 0.002211532724 +2.498153607e-06 -0.0004750225041 0.00995959942 0 -16.68454189 7.631137249 954.4757387 0.002095391133 +2.49716785e-06 -0.002471850747 -0.01449674277 0 -6.819263392 -20.79111016 918.9818097 0.002176321641 +2.497000063e-06 0.002490357803 0.005435650928 0 19.06586102 16.3582678 1025.138407 0.001950956072 +2.499224509e-06 0.008601379036 -0.006414863749 0 9.60107267 -7.014911153 954.6733611 0.002094957377 +2.498357707e-06 0.008587432168 -0.00864435087 0 -16.74636311 9.092478409 1051.172552 0.0019026372 +2.495932337e-06 0.003832114139 0.009316534095 0 11.21462032 24.87744368 956.1474186 0.002091727657 +2.497365837e-06 0.009089830583 -0.004185745921 0 21.22490632 4.997091007 949.6255959 0.002106093189 +2.49373869e-06 -0.006210031011 0.01276118144 0 -22.33538789 24.25279075 930.8340793 0.002148610633 +2.496422657e-06 0.008915720629 -3.795144148e-06 0 26.10078169 -5.457431609 996.3612183 0.002007304142 +2.496580824e-06 -0.0007034120755 0.005472524017 0 -21.08608086 14.89746145 986.7795177 0.00202679521 +2.498701996e-06 -0.0097559166 -0.01164920129 0 13.64554758 -9.149566931 1019.474513 0.001961794998 +2.495750645e-06 0.004649650292 -0.00586607761 0 13.00775431 -25.23649139 973.2762019 0.002054915137 +2.499154858e-06 0.00978682158 0.01105154474 0 -5.11940307 10.65878378 909.3822305 0.002199295228 +2.495462529e-06 0.009751604167 0.005414061849 0 22.77631421 -16.66827128 936.2679487 0.002136140624 +2.498597407e-06 0.003427227172 0.006795307437 0 -3.826106111 15.3864822 946.4457403 0.002113169213 +2.499326199e-06 -0.0008052092791 0.01472109555 0 -8.057419127 -8.677394526 1019.950022 0.001960880393 +2.495478055e-06 0.005679007224 0.002616433622 0 26.6419609 -12.86591001 983.1332129 0.002034312313 +2.499555554e-06 0.001389421122 0.005276642467 0 -8.441378677 -4.901148542 1035.244594 0.001931910596 +2.49633823e-06 0.001322965682 0.009182569908 0 0.4151706926 27.20774179 1004.948521 0.001990151693 +2.497065629e-06 -0.005713498252 0.008954609369 0 22.16321065 12.48022168 1049.485061 0.001905696493 +2.496445037e-06 0.009250123873 0.004875684294 0 22.87627124 -11.62464593 961.8318944 0.00207936544 +2.495153734e-06 0.002609811481 -0.01154503376 0 16.15230733 -23.53316709 916.1490176 0.002183050968 +2.499057956e-06 0.002919618818 -0.002474613532 0 -3.088871539 -12.52878392 939.9619417 0.002127745722 +2.498964053e-06 0.0004500812432 0.01488695607 0 11.72128081 9.2905494 1038.925343 0.001925066139 +2.497220859e-06 -0.00685952079 0.000963100302 0 21.39508343 12.10413392 1042.222292 0.001918976417 +2.499548154e-06 -0.003393067303 0.008994648443 0 -7.32777843 6.279525658 1015.084428 0.001970279461 +2.49863167e-06 0.009732019096 -0.00444909913 0 12.88013218 -8.29033518 925.7415893 0.002160430106 +2.496749346e-06 0.00868328175 -0.000387798117 0 6.919621563 25.90446914 1051.063233 0.001902835088 +2.498314475e-06 0.00925558961 -0.01363902905 0 -14.51295603 -12.58148069 1045.859767 0.001912302264 +2.495413252e-06 -4.827735946e-05 -0.007474521257 0 19.32190115 -24.78550306 1036.899365 0.00192882749 +2.498487912e-06 0.001585052521 0.01383473183 0 -14.60156273 -5.940133011 906.2606228 0.002206870683 +2.499599475e-06 0.00208952127 0.01074796915 0 -4.533520772 -6.696127617 903.4477228 0.002213741813 +2.499312376e-06 0.005374406441 0.007121229752 0 -7.040088251 8.809635738 961.5267691 0.002080025293 +2.499802362e-06 0.003859274779 0.01452402071 0 -3.43004719 -5.132033181 981.7841803 0.002037107585 +2.494861702e-06 -0.006119566988 -0.004903052473 0 -19.24322748 -22.36428635 919.6350173 0.002174775821 +2.498558284e-06 -0.00636751283 -0.003477717431 0 -12.37949482 -12.98175162 1056.1588 0.001893654629 +2.497642148e-06 0.002894633897 -0.01120217713 0 -21.07405623 -2.720107701 978.1580693 0.002044659307 +2.495574902e-06 -0.006596835027 -0.01013043856 0 -7.221684219 -27.59226369 958.0982349 0.00208746862 +2.498523052e-06 -0.0005118903471 0.01064003458 0 -13.90520457 -6.659427038 896.8569472 0.002230010044 +2.498860803e-06 0.003568685767 -0.01449210996 0 14.42783487 -6.020098603 1035.536714 0.001931365613 +2.499994067e-06 -0.007717977492 0.002104540395 0 -0.354259894 1.029538009 999.4809248 0.00200103869 +2.49774204e-06 0.006561955838 0.003624828737 0 -18.66048942 5.629447401 916.8893747 0.002181288229 +2.498318406e-06 -0.005113616181 -0.002798011957 0 -13.72219742 -14.02058889 1069.485704 0.001870057722 +2.499809404e-06 0.003881482654 -0.0111447089 0 1.541349356 6.166454497 1029.464479 0.001942757657 +2.49964852e-06 0.004389930549 -0.002249456893 0 -5.321682807 5.394115887 903.7139133 0.002213089752 +2.499526288e-06 0.009387127948 0.009883078057 0 -6.150823292 6.777578559 940.2353992 0.002127126889 +2.496517791e-06 0.007678678064 -0.005153118724 0 2.554917655 -27.24472188 1036.368574 0.001929815366 +2.499695277e-06 -0.008699255311 0.01493666979 0 6.147066603 4.411817163 969.1753478 0.002063610063 +2.494942579e-06 -0.006385224601 0.007436435809 0 15.64254911 26.76754501 974.081934 0.002053215371 +2.495218743e-06 0.004309874228 -0.00884588581 0 9.950658195 -27.58570594 947.6502983 0.002110483164 +2.498249242e-06 0.002953656423 -0.008390843973 0 -13.86188565 11.09664052 948.660972 0.002108234721 +2.499345897e-06 0.008869316694 0.002321009778 0 7.365200532 -9.639053564 1060.49934 0.00188590405 +2.498600053e-06 0.001397915543 0.01082473918 0 -12.82298113 7.405198368 884.7559388 0.002260510399 +2.499949657e-06 -0.0002588521643 0.01062203449 0 -0.3842616114 2.767283948 880.4702661 0.002271513391 +2.498157526e-06 0.00062807546 0.002906968673 0 14.4701954 12.21860913 986.3214313 0.002027736533 +2.499570186e-06 0.009501934471 0.007938123525 0 8.587734805 3.561326234 1002.662261 0.001994689615 +2.49833798e-06 -0.0004402103927 0.003659490324 0 8.99978435 15.17760353 967.5804765 0.002067011529 +2.494848099e-06 0.005847461419 -0.01137740134 0 19.82792162 -20.01046954 876.9132931 0.0022807272 +2.49901e-06 0.007420201027 -0.003517238125 0 8.412946215 -11.10365997 989.8762965 0.002020454482 +2.497929895e-06 0.009994190442 0.01001497205 0 -5.916628359 -20.94418748 1069.276023 0.001870424433 +2.498476259e-06 -0.007633581529 0.01382884781 0 4.31718315 17.15645863 1013.187611 0.001973968076 +2.499420702e-06 -0.004556228598 -0.003271866844 0 -2.140982008 -10.72103732 1015.60475 0.001969270034 +2.49713966e-06 -0.001227522879 0.01432231505 0 7.021439204 23.7710556 1035.86341 0.001930756488 +2.498889297e-06 -0.003589849854 0.00250959771 0 15.8043797 -0.6995509508 1061.245993 0.001884577198 +2.497862138e-06 0.008030765848 -0.003727524737 0 -18.64746013 6.404239483 953.2056646 0.002098183083 +2.498332226e-06 0.002385008656 0.003742488089 0 3.778364996 15.58332593 877.7530605 0.002278545174 +2.495636311e-06 -0.005992983072 0.01411555886 0 15.00099456 24.72881775 978.4036382 0.002044146119 +2.497882738e-06 -0.005052430467 -0.01246708942 0 -9.028422133 19.12911845 1027.602102 0.001946278618 +2.494246173e-06 0.0002064072387 -0.009250293395 0 -17.60445734 -30.91844477 1047.913498 0.001908554479 +2.496791058e-06 -0.006374759688 -0.009829547012 0 2.510602445 -25.16230008 997.6915402 0.002004627602 +2.496599852e-06 0.009927256852 0.000393237609 0 17.0951672 15.83681918 893.1701455 0.002239215014 +2.494772766e-06 -0.003609171347 0.01372969062 0 16.33482096 28.86116071 1024.857868 0.001951490116 +2.499925375e-06 0.006103196852 0.007441131156 0 -1.364733401 3.346228354 935.4150157 0.002138088406 +2.494384699e-06 0.002669702889 -0.01414205577 0 -20.40488778 -28.66738595 1049.117018 0.001906365034 +2.497412413e-06 0.009604242546 -0.0004307115963 0 -7.134823603 -21.9225403 1013.029038 0.001974277069 +2.498463364e-06 -0.005252032676 0.004504927921 0 -10.68574177 -14.27007764 1016.693586 0.001967161029 +2.497334306e-06 0.006553243399 -0.009925483202 0 17.96944891 -12.10494069 937.9762873 0.002132250066 +2.49685277e-06 -0.002607087875 -0.0007946112938 0 -26.01010338 -3.856040369 1047.559198 0.001909199981 +2.49977658e-06 0.007030715463 -0.002538758176 0 -3.321397728 4.921741206 888.2206551 0.002251692739 +2.499116021e-06 -0.005974877365 -0.0108177398 0 -11.44405381 2.136191019 875.4345072 0.00228457981 +2.497083363e-06 -0.004563321029 0.005794686251 0 21.2693435 -13.92198635 1052.057311 0.00190103712 +2.495543378e-06 0.002060221219 0.01093546856 0 18.58388738 21.75970678 957.8391072 0.00208803335 +2.496183966e-06 0.008465271555 -0.005236835636 0 18.03028828 -20.77839992 995.2454958 0.002009554435 +2.499174061e-06 -0.004929272626 -0.007250369699 0 -6.228804323 9.956747276 913.6799552 0.002188950287 +2.498185262e-06 0.002417838494 0.01179451214 0 18.29994141 5.977158312 1010.231322 0.001979744596 +2.49919184e-06 -0.0002730513737 -0.007351880854 0 11.60915291 -2.047350172 927.1175976 0.002157223642 +2.497768642e-06 0.004061430432 0.0003635772108 0 -18.12584946 7.298837273 924.663968 0.002162947913 +2.493466e-06 -0.006968146614 -0.01449200008 0 -23.86699322 -27.37261241 1003.631085 0.001992764104 +2.499895395e-06 0.001404421059 0.00963214407 0 -3.20176541 -2.45152468 881.6151 0.002268563685 +2.495045655e-06 -0.004214885146 -0.008179886614 0 -21.95852931 -17.83319515 897.9829074 0.002227213885 +2.497862238e-06 -0.002469639014 -0.008202860041 0 5.098250767 -20.44185571 1018.567418 0.001963542094 +2.497422518e-06 -0.004807139477 -0.005074500712 0 -9.888102171 20.3222918 995.0202702 0.002010009303 +2.496463748e-06 0.005092100753 0.008875603178 0 10.2613525 22.96949778 945.4707474 0.002115348365 +2.4966081e-06 0.004414949673 0.01054288844 0 -23.02167131 -14.62761493 1046.690908 0.00191078377 +2.496119483e-06 -0.008124816362 0.00594589202 0 -23.98202306 -12.25706864 966.2020809 0.002069960353 +2.498134154e-06 -0.005574043384 0.01459666359 0 -18.73445187 0.4878221584 969.8704064 0.002062131174 +2.498904482e-06 -0.008469681181 -0.01240518588 0 -14.03089783 2.492280203 962.575543 0.002077759002 +2.498553934e-06 -0.006211733725 0.0138893952 0 0.5919359014 14.98226207 881.4805898 0.002268909858 +2.497425726e-06 -0.0006635571178 -0.007121304127 0 -12.82063626 16.12028562 907.3853135 0.0022041353 +2.498939751e-06 -0.007708859881 0.01077717831 0 5.800018095 13.39099504 1001.98216 0.001996043523 +2.497233246e-06 -0.003519082661 0.002303331618 0 10.08347259 21.19090442 997.2156616 0.002005584225 +2.497869809e-06 0.009627130008 0.005221325385 0 -10.03883943 -15.52198147 895.2944729 0.002233901873 +2.497987409e-06 -0.009456024207 0.004598157958 0 -12.57481289 -16.87154838 1048.497999 0.001907490526 +2.494497682e-06 -0.009984392719 -0.01256570599 0 13.22601632 -31.26405779 1022.466567 0.001956054179 +2.499580754e-06 0.007754242043 -0.0005543216108 0 -9.368992268 1.444459774 1035.18353 0.001932024555 +2.498047811e-06 -0.005745744347 0.005821127559 0 -18.27874291 2.151583696 931.1746935 0.002147824693 +2.498858203e-06 -0.00972674388 -0.01367285803 0 -1.440514257 15.06591042 1001.354158 0.001997295347 +2.498900326e-06 0.0004071702668 0.01139699129 0 13.12370601 1.940907946 894.4089783 0.00223611351 +2.494312907e-06 0.009462425648 -0.002740373074 0 22.97359542 -23.74241587 978.7652119 0.002043390974 +2.49912698e-06 0.00836669072 0.005402696645 0 11.77633376 0.05287108363 891.1085001 0.002244395604 +2.497110203e-06 0.007969949697 0.01457929597 0 1.28278368 23.89924266 995.1115937 0.00200982484 +2.494533841e-06 0.008909984245 0.001898385566 0 25.19474614 -18.56033693 945.6637492 0.002114916641 +2.49875054e-06 0.002731526247 -0.002610013965 0 -7.742196931 14.3937138 1033.703624 0.001934790546 +2.498877503e-06 0.004732309985 -0.01040599222 0 12.37684165 7.224857129 956.3202645 0.002091349597 +2.499453331e-06 0.001938753519 -0.0002933275024 0 -7.581183249 5.962634358 922.3432818 0.002168390055 +2.496818661e-06 0.003209812595 0.002181976845 0 12.96199857 -19.4110915 924.8957354 0.002162405905 +2.497634852e-06 -0.003990135579 -0.005419630597 0 -18.57961334 -11.20039666 997.1286445 0.002005759248 +2.49996149e-06 0.002502898639 -0.006388683007 0 1.867395331 1.624888358 891.9349436 0.002242316006 +2.494789688e-06 0.003757413141 -0.00685929907 0 -21.37200428 -24.93937168 1016.64831 0.001967248635 +2.498165089e-06 -0.007915075202 -0.008358160907 0 10.15989967 -15.30481762 958.6712026 0.002086221005 +2.49902278e-06 -0.001526924577 0.007444108988 0 -5.901308172 13.1032621 1027.796663 0.001945910191 +2.498565048e-06 -0.005655296561 0.00466996128 0 -15.53005312 -4.926437467 961.5370765 0.002080002996 +2.498213994e-06 0.003574563111 -0.01347413815 0 -3.113259507 -17.02899008 915.7043759 0.002184111 +2.498336808e-06 -0.008394962396 0.01179416683 0 13.84907634 -13.39445328 1056.12248 0.001893719751 +2.499003698e-06 -0.0005443868227 -0.009522333043 0 -6.112761889 -11.1163376 898.5763959 0.002225742863 +2.496836163e-06 -0.009876125688 0.01138338994 0 1.28810624 22.17817414 882.7318084 0.002265693817 +2.495191562e-06 -0.002162614036 -0.008957933025 0 -22.50202743 -17.95609609 927.6508164 0.002155983657 +2.498704897e-06 0.003796578585 0.006018676073 0 6.216426838 13.64186404 931.3069312 0.00214751972 +2.498566441e-06 -0.001605283613 -0.005010076908 0 -16.45283482 7.189547385 1060.160005 0.001886507688 +2.497857705e-06 -0.002360995659 0.003416804729 0 -10.54722659 -19.47280447 1069.537545 0.001869967079 +2.497385744e-06 0.008648621938 0.01256191711 0 -10.81270807 19.32537729 968.0751926 0.002065955223 +2.499752421e-06 0.002559106466 -0.01402098522 0 -3.562844089 6.630218897 1069.611944 0.001869837011 +2.498811044e-06 -0.008541123583 0.01067704815 0 -15.21992163 4.74829888 1033.726888 0.001934747004 +2.497948514e-06 -0.00965541143 0.01354505941 0 18.20336415 -8.206117342 985.4659939 0.002029496718 +2.498546387e-06 -0.009887127546 0.01153803582 0 10.77690598 -12.36623823 961.8226558 0.002079385413 +2.4991446e-06 0.003977991752 0.009612560717 0 -6.828999379 9.514871099 895.3048901 0.002233875881 +2.497179903e-06 0.0008561449405 0.009884885657 0 -13.21837996 20.57070247 1029.143455 0.001943363668 +2.499596613e-06 -0.003258360219 0.005898318901 0 4.094816006 -6.933618394 896.4539407 0.002231012559 +2.497876798e-06 -0.002299558483 0.007232315443 0 11.03155202 -17.52758682 1004.696383 0.00199065114 +2.498498567e-06 -0.003792993515 -0.007149721545 0 -3.769138357 -15.58520788 925.1016898 0.002161924491 +2.498867935e-06 0.003469653586 -0.002154409855 0 9.763976497 -9.478767145 904.2224069 0.00221184521 +2.499420729e-06 0.0059376805 -0.004882604408 0 7.638808991 -5.580576728 878.8278392 0.002275758585 +2.495592054e-06 -0.009239612864 -0.00597131816 0 -30.92016965 5.986780531 1060.017685 0.001886760974 +2.497994537e-06 0.004867709922 0.0082809181 0 -17.24260496 9.823386877 990.5772349 0.002019024796 +2.497359648e-06 -0.0001077799918 0.001575243173 0 22.45576007 -6.463469178 1016.467014 0.001967599511 +2.498193814e-06 0.004091093787 -0.01320445314 0 19.15622348 4.910171586 1040.192346 0.001922721319 +2.498880609e-06 -0.005537311626 0.009759584866 0 6.6547841 13.73515665 1019.86788 0.001961038326 +2.498758546e-06 0.008411606322 0.00851584442 0 14.28542059 8.235652463 1046.267669 0.001911556727 +2.496901167e-06 -0.008481844072 0.009480048632 0 19.25567375 16.8192535 1026.508676 0.001948351775 +2.496640648e-06 -0.004200924672 -0.002246258527 0 6.42570199 -23.87454366 953.3659132 0.002097830405 +2.496334521e-06 0.009240798517 0.0005229272065 0 26.94591356 -9.075758446 1049.561104 0.00190555842 +2.497645034e-06 -0.009116978282 -0.004803383367 0 16.20043381 -15.02870976 1017.864057 0.001964898933 +2.496534842e-06 -0.008652023138 -0.008709898225 0 9.69515068 -25.50043913 1035.767763 0.001930934782 +2.498511111e-06 -0.002348445142 0.003752179267 0 3.060041693 16.72196066 984.9100951 0.002030642198 +2.495079704e-06 -0.002006330234 0.0136856326 0 3.052468789 28.51251695 913.4373104 0.002189531758 +2.497017344e-06 -8.361057844e-05 -0.003168416598 0 -15.07857309 20.90015381 1054.706979 0.001896261275 +2.4992187e-06 0.001498345369 -0.006561362164 0 8.57584471 9.526956739 1025.308791 0.001950631865 +2.49813594e-06 -0.005456219632 0.00325935839 0 -16.12390284 -12.40512206 1053.329228 0.001898741577 +2.497081857e-06 -0.008668956789 0.0005168514163 0 16.54209995 -18.73068056 1033.952499 0.001934324839 +2.498110441e-06 -0.0008399578277 -0.004140936902 0 -9.817144252 -16.70374652 996.3773444 0.002007271654 +2.495956766e-06 -0.008191451007 -0.009499455148 0 -6.174591867 -28.47303992 1023.928835 0.001953260746 +2.497725746e-06 -0.002675025985 0.01485338914 0 20.79153453 2.971732972 984.4535648 0.002031583887 +2.499120772e-06 0.009580879505 -0.001025130611 0 7.3512012 -10.05472772 939.1513692 0.002129582159 +2.497498819e-06 -0.000421735202 -0.006643040031 0 -23.25290718 3.372541418 1050.139981 0.001904508004 +2.499004516e-06 0.003027822846 0.007304647474 0 -13.31543983 -0.9483690509 945.9263402 0.002114329536 +2.495944414e-06 0.004139153794 0.00521568368 0 -22.74020289 -20.22255141 1067.862501 0.001872900301 +2.497394293e-06 -0.005174329821 0.009626787531 0 13.83364385 17.82216726 987.8954214 0.00202450579 +2.496888429e-06 0.007871519709 -0.001928990814 0 15.46321891 -17.12519947 924.495193 0.002163342779 +2.49383956e-06 -0.005465272437 0.01325642013 0 -25.52894256 22.97264734 977.5088478 0.002046017286 +2.495613825e-06 0.004780070097 -0.01353369459 0 15.26960278 -22.98472027 931.0630101 0.00214808233 +2.498476405e-06 0.001675239461 -0.0003044841299 0 -16.79518979 -3.298215515 980.2855048 0.002040221946 +2.49661195e-06 -0.00945828639 -0.008023340029 0 -19.82624257 -19.11099962 1057.335173 0.001891547781 +2.497356029e-06 0.002936434126 0.0008098658198 0 -17.41080253 -13.32119726 952.9538024 0.002098737625 +2.497758439e-06 -0.00516259029 -0.004923546966 0 -0.2056654987 22.38985829 1057.141943 0.001891893528 +2.499065454e-06 -0.001594183738 -0.01168682833 0 -5.524114217 13.06745365 1037.570805 0.001927579295 +2.496082152e-06 0.006747205001 0.007526031921 0 18.08202459 18.84719769 932.5114838 0.002144745705 +2.498077725e-06 -0.00881381759 0.01118204503 0 5.054107617 -17.05285124 906.8419746 0.002205455919 +2.494731068e-06 -0.006290842695 0.008738580903 0 -19.0347102 28.57253356 1056.777535 0.001892545908 +2.499840347e-06 0.006451845011 -0.0009056564793 0 4.60487157 -2.053221035 892.2336405 0.002241565336 +2.496916759e-06 -0.008478421881 -0.009224898282 0 -2.550061273 -22.95311435 929.577796 0.002151514385 +2.496304937e-06 -0.002934376071 -0.001794129554 0 -15.80779363 -19.95583779 935.9691472 0.002136822572 +2.499956256e-06 0.007712762207 -0.0113783523 0 2.335345904 2.069062486 1054.847177 0.001896009246 +2.495656594e-06 -0.003884073696 0.005339153779 0 -19.3404229 18.27392249 902.1933535 0.002216819701 +2.499951917e-06 0.002890362595 0.001325151685 0 -0.7478916581 -2.830766879 944.1567414 0.002118292347 +2.499979621e-06 -0.00999682893 0.0005549914856 0 -1.285283807 -1.624739334 1026.148597 0.001949035457 +2.497877545e-06 -0.0006859869743 -0.01454785304 0 -2.162510928 -18.16360762 887.5359482 0.002253429852 +2.499798943e-06 -0.00149100902 0.006053741646 0 4.679717943 4.747306877 1051.194225 0.001902597971 +2.499767966e-06 0.005083856131 -0.0003717341507 0 -6.029534685 -1.198879076 902.3974283 0.002216318373 +2.496542297e-06 0.003348699533 0.01215512011 0 17.28257484 19.55315693 991.8444207 0.002016445279 +2.49814545e-06 0.006409930037 0.008068870793 0 -9.591145178 16.21095982 977.7495508 0.002045513596 +2.499859244e-06 -0.005131289889 -0.00635025203 0 -3.21330906 -4.477390743 1038.681158 0.001925518708 +2.497326808e-06 -0.006749780541 -0.01442865034 0 -15.35018078 17.15748694 995.2603263 0.00200952449 +2.497682725e-06 -0.003108824375 0.007688067472 0 17.25404882 9.590324934 916.6368413 0.002181889174 +2.498985248e-06 0.007677930896 -0.001500306514 0 10.04343657 -10.74778095 1032.411478 0.001937212094 +2.496922404e-06 -0.001705534551 0.004886040611 0 -9.811978835 23.05111902 1009.322781 0.001981526662 +2.496382985e-06 0.002820830401 -0.009527846128 0 22.90114008 -8.502574349 907.7629128 0.002203218453 +2.494137132e-06 0.002031010003 0.01313383206 0 19.74734743 27.20249591 980.7855192 0.00203918182 +2.493104498e-06 0.0003467227053 -0.01357735777 0 -23.01207236 -26.89934149 952.2486612 0.002100291743 +2.499719825e-06 0.00497602582 -0.009524358921 0 7.239769849 -2.094077809 1006.755746 0.001986579176 +2.499824736e-06 -0.0009707884025 0.007955261541 0 -2.81337102 -5.153246698 991.641747 0.002016857405 +2.499339842e-06 -0.008852455802 -0.007012452206 0 -8.591268661 -6.44053854 934.361274 0.002140499671 +2.498841269e-06 0.00184302452 0.0005654844479 0 7.423598701 -12.87234358 975.9435985 0.002049298754 +2.499809474e-06 -0.008633473571 -0.001762890012 0 4.161215403 5.031993112 1057.761237 0.001890785869 +2.499821214e-06 0.007854771167 0.01483233236 0 -2.751183314 -4.990820016 953.0078991 0.002098618492 +2.49972696e-06 0.002293166709 -0.009120013188 0 3.051184525 6.839486809 1013.422549 0.001973510459 +2.497126848e-06 -0.002482881811 -0.006680413485 0 18.46513717 -13.30324198 948.9802129 0.002107525502 +2.498778967e-06 0.009585840944 -0.005007693095 0 -10.95418583 -11.38915998 1011.014258 0.001978211469 +2.495628466e-06 -0.007091412153 -0.01000905794 0 -27.56250435 12.02947178 1016.396865 0.00196773531 +2.499359994e-06 -0.003625972648 -0.001983109941 0 4.832937302 9.978957827 979.9238556 0.002040974907 +2.498078968e-06 0.001972074131 -0.00957667093 0 -12.6010314 -12.11058595 891.382656 0.002243705312 +2.498846413e-06 -0.009444863168 0.005640881241 0 5.428717593 -12.50106765 897.111232 0.002229377951 +2.499737241e-06 0.00855347692 0.009123174087 0 -6.456886797 3.358000657 1003.907441 0.001992215535 +2.499405135e-06 -0.004368047924 0.0001696079713 0 1.587570251 -10.04836206 932.5803687 0.002144587284 +2.499339343e-06 0.004183992399 -0.006728517143 0 -0.08625164037 -11.08268643 964.0777503 0.002074521479 +2.497606725e-06 0.004532070686 -0.008233416884 0 0.340197098 -19.88531643 908.7171666 0.002200904829 +2.496789425e-06 -0.0003597928444 -0.001392565579 0 -20.60624714 -17.08877153 1055.931887 0.001894061562 +2.495079012e-06 0.009301609453 0.01266879962 0 25.46527775 20.24989945 1036.314076 0.001929916853 +2.498242622e-06 -0.009812543066 -0.01265259782 0 -16.21499318 -4.453575735 896.7000092 0.002230400334 +2.497749284e-06 0.009132276024 -0.0001530897757 0 19.7440874 7.294735066 991.7460935 0.002016645201 +2.498418877e-06 0.006988699557 0.002771297966 0 -14.6508871 -7.643481597 929.0459444 0.002152746064 +2.497145329e-06 -0.005952936257 -0.01038786695 0 -25.52222214 0.04068539025 1067.677077 0.001873225568 +2.498184411e-06 0.004659483065 0.0064519255 0 -14.97662417 -7.986840592 890.4738642 0.002245995172 +2.499147796e-06 -0.008566660346 -0.009042203827 0 10.23020449 -7.989967168 994.1533473 0.002011762074 +2.497760291e-06 0.009886039156 -0.002739031124 0 17.77600135 12.76200363 1033.582736 0.00193501684 +2.497704826e-06 0.007369252285 0.001580983303 0 -8.60524151 -17.05399297 891.267134 0.002243996131 +2.499153819e-06 -0.008284958815 -0.01206618658 0 2.094521712 13.70963739 1065.944047 0.001876271092 +2.498747977e-06 0.00523858543 -0.004817766328 0 -0.6171298636 16.03154127 1013.664206 0.001973039975 +2.499551671e-06 0.001153398277 0.006147331058 0 -7.362199678 -6.454172366 1033.884789 0.001934451518 +2.49955709e-06 0.003547775191 -0.01036266297 0 5.495625051 -7.970855547 1028.614034 0.001944363906 +2.497878869e-06 0.00663565713 0.008491559476 0 13.72322332 15.9048425 1019.589919 0.001961572946 +2.498190481e-06 0.002132512429 -0.005411563371 0 7.058449745 -17.51328596 992.2880949 0.002015543682 +2.497112063e-06 -0.00684825446 0.003618955154 0 17.86380968 15.12188407 973.4391539 0.002054571148 +2.497936401e-06 0.0009724356234 0.01405098243 0 11.68415229 13.73680139 887.4133121 0.002253741264 +2.497850219e-06 -0.002582677836 -0.004323203454 0 -19.84565962 -8.614357514 1043.031261 0.00191748807 +2.497509943e-06 -0.004566473966 -0.008350000558 0 21.32930781 -6.815769116 1003.015582 0.00199398697 +2.497355664e-06 -0.007271956117 -0.01335788896 0 -7.89050812 -19.83784951 927.9864747 0.002155203825 +2.497582648e-06 -0.007609407627 0.00451480834 0 12.20997176 19.34635797 1040.063502 0.001922959508 +2.499280777e-06 -0.001693993774 -0.008360180457 0 5.227385301 10.31390933 963.9972638 0.002074694685 +2.499650607e-06 -0.006263961373 0.001550545881 0 -4.824860791 -5.700901091 893.3937354 0.002238654605 +2.49669581e-06 0.009486395079 0.007034707067 0 -5.157444479 24.38071209 968.9232108 0.002064147063 +2.499303753e-06 0.00415768554 -0.01423365702 0 8.919181316 -7.17372483 969.8779089 0.002062115223 +2.499933071e-06 -0.008679421726 -0.006037267239 0 -1.480884893 -3.249590509 976.0630802 0.002049047895 +2.497599714e-06 -0.004085725206 0.007672310255 0 -12.35190564 16.69485754 947.5032729 0.002110810651 +2.49587524e-06 -0.007312612585 0.005887382906 0 -23.57093591 18.42805943 1041.052255 0.001921133153 +2.498960344e-06 -0.00713187858 -0.01363142658 0 -10.36045757 11.15364393 1055.542413 0.001894760433 +2.499494641e-06 -0.004716424332 0.005074070978 0 -7.95202601 5.110075665 940.1417065 0.002127338875 +2.498652486e-06 0.004549241005 0.01076040842 0 15.18444093 -7.235635554 1024.386113 0.001952388826 +2.492651761e-06 -0.007976545049 0.006354226309 0 -27.27054934 28.28253094 1023.715329 0.001953668118 +2.499207239e-06 0.009556942792 -0.008391897627 0 12.24070848 2.483671258 991.8120761 0.002016511039 +2.499854559e-06 0.002228083727 0.01418621362 0 -5.184314809 2.190263434 1043.485244 0.00191665384 +2.496830055e-06 0.001046240879 0.001781062649 0 -14.55335824 20.05592289 983.6734519 0.002033195057 +2.499125571e-06 -0.007298693699 -0.006158045246 0 10.1207313 7.998324231 975.31647 0.002050616453 +2.497974386e-06 0.006003306876 -0.009208235429 0 20.29546478 2.753327377 1017.264199 0.001966057591 +2.495574116e-06 -0.003254367015 -0.01021123622 0 -18.65919928 -24.02677555 1021.817468 0.00195729674 +2.496689559e-06 0.0027532234 0.007568637268 0 23.95267332 10.38082557 1014.043765 0.001972301462 +2.497910771e-06 -0.003657788732 -0.01474709073 0 14.17197884 16.65196735 1069.375271 0.00187025084 +2.499817435e-06 0.009483358697 0.01153296703 0 -5.51985091 -2.307927744 990.0971392 0.002020003817 +2.496803769e-06 -0.002873070915 -0.004109404776 0 14.59620477 22.8073585 1070.474073 0.001868331098 +2.496894868e-06 0.002317946777 0.00773712921 0 21.60524561 -3.406647619 877.2723946 0.002279793611 +2.4967654e-06 0.002946876693 -0.006020732755 0 -20.86381843 10.69544143 921.3471809 0.002170734378 +2.49686644e-06 -0.002312600361 -0.01417947571 0 -12.22387653 -20.70722903 960.0756729 0.002083169126 +2.498761215e-06 -0.007010073625 0.006790263613 0 11.91202962 -7.149838227 882.4776099 0.002266346452 +2.495726177e-06 0.006389154983 -0.004741289893 0 -17.62294221 18.85842656 882.2732691 0.002266871354 +2.494640301e-06 -0.003886520504 -0.003257221556 0 -22.10443613 -19.93916527 908.5009401 0.002201428652 +2.496342285e-06 -0.0001925732521 0.005942927613 0 0.08612467908 26.46321394 977.8821269 0.002045236276 +2.499174586e-06 0.009284344348 -0.01159883001 0 12.90978471 4.722790968 1069.765573 0.001869568483 +2.496297679e-06 0.003580428264 0.002665814026 0 24.43756736 -6.053872501 924.6936217 0.00216287855 +2.498886989e-06 0.003186836587 0.01260123332 0 8.671696096 10.39657467 907.2533589 0.002204455878 +2.499513656e-06 -0.001012436827 0.01247676416 0 5.092349629 8.559022533 1009.747723 0.001980692757 +2.497680794e-06 0.00745545086 0.006693336871 0 -18.90174013 -5.868397228 918.6469645 0.002177114906 +2.498805552e-06 0.009350741305 0.008831024074 0 -14.00864289 1.564115196 911.8218971 0.002193410804 +2.497809157e-06 -0.004402356464 -0.005723390167 0 -10.87775073 -17.13675631 969.3530223 0.002063231819 +2.498545351e-06 -0.007727703964 0.01217172367 0 -9.928859693 12.31037105 927.0258208 0.00215743721 +2.497437467e-06 0.0018229328 0.01496673531 0 21.02222414 -6.541975473 972.1511326 0.002057293288 +2.498012004e-06 0.008067255388 0.001822529824 0 19.94551633 2.265742394 1006.41519 0.001987251404 +2.49805802e-06 0.003809626284 0.005183179323 0 -19.48469246 8.131770745 1071.015655 0.001867386336 +2.495771766e-06 0.006018735697 -0.005406603261 0 23.67126978 -12.93579674 927.0330479 0.00215742039 +2.49838523e-06 -0.007398639396 0.003374687035 0 16.0181016 5.811021933 947.9459413 0.002109824952 +2.498814224e-06 -0.006685500662 0.006206549685 0 6.97362541 -12.32560757 919.4327132 0.00217525434 +2.498973548e-06 -0.006153255221 0.01360200652 0 -14.01207551 1.310077386 982.0672545 0.002036520402 +2.499993152e-06 0.004068627181 0.01220404559 0 -1.166320669 0.4422900074 1065.852359 0.001876432494 +2.497544375e-06 0.003336385204 -0.003586270774 0 7.069478799 19.82260068 949.299298 0.002106817106 +2.499457454e-06 -0.009099188359 0.007036281936 0 -1.544789777 -10.36441777 1005.882679 0.00198830345 +2.499889724e-06 0.002089443221 0.005774619626 0 1.95809558 -4.290573046 1004.23421 0.001991567286 +2.493034604e-06 0.00481943286 -0.01177630801 0 22.91221264 -32.01053906 1053.595124 0.001898262391 +2.499182954e-06 0.002734185806 -0.005086276077 0 -11.52253193 -4.534748048 968.5586453 0.002064924008 +2.499587552e-06 -0.008964448618 -0.00785971219 0 -5.59467598 -7.140009175 998.6677196 0.002002668115 +2.4989926e-06 0.001548436675 -0.003968905695 0 8.108646402 11.39605093 985.2014946 0.002030041581 +2.499692186e-06 -0.007666684831 0.01089029405 0 -5.867437404 5.934274641 1063.549328 0.001880495757 +2.499992204e-06 0.004250675407 -0.006680530929 0 0.2768569849 -1.132658704 933.8020472 0.002141781554 +2.4959393e-06 0.00953364898 -0.003973763434 0 -13.15198601 -23.3613046 940.1589549 0.002127299846 +2.499196175e-06 -0.005007454399 -0.009744358573 0 -9.938940082 5.764615898 906.0680383 0.002207339753 +2.497824672e-06 -0.007555880034 0.006715009671 0 -11.15404813 17.10745781 978.7899353 0.00204333936 +2.495982546e-06 -0.0003313527163 -0.01348188695 0 -22.11262315 -13.95571373 921.9130224 0.002169402049 +2.499151639e-06 -0.00805461545 0.0115383409 0 8.271597963 -10.07907021 1000.858752 0.00199828397 +2.494507032e-06 0.001116880993 -0.0003905320633 0 25.06126887 -24.92019499 1065.415375 0.001877202119 +2.497943755e-06 -0.002130434434 0.000314617285 0 -18.73187178 8.631921732 1016.737474 0.001967076115 +2.496882001e-06 -0.005653365739 -0.008329326245 0 -5.942810833 -22.03615941 913.5342224 0.002189299482 +2.497896114e-06 -0.007153273602 0.01381827963 0 -13.23096403 14.71598274 964.4249506 0.002073774635 +2.497580515e-06 -0.009214769341 0.002538522275 0 -17.96408316 10.16564177 937.9838734 0.002132232821 +2.499071949e-06 0.005865500481 -0.003920406746 0 5.542882046 -11.80296319 956.9864187 0.002089893818 +2.495664346e-06 0.008564839857 0.002087810598 0 24.39165853 17.73278302 1023.41928 0.001954233264 +2.498442537e-06 0.007978926958 -0.01401352631 0 18.19533821 0.8792979456 1031.908625 0.001938156105 +2.499629003e-06 0.006075265156 -0.008901841391 0 -7.507423932 3.946253212 984.5638815 0.002031356256 +2.496449621e-06 0.002431952064 -0.00769075281 0 19.32646367 -16.06600693 942.6427892 0.002121694477 +2.498842031e-06 -0.00809558922 -0.003428705335 0 10.68768907 -11.9180277 1051.735739 0.001901618368 +2.49979713e-06 0.005466646184 -0.009858290541 0 -2.89260402 -5.161314649 928.8299972 0.002153246564 +2.498208666e-06 -0.009865069217 0.004656435808 0 -8.53017769 -16.81562379 995.9042177 0.002008225253 +2.499367666e-06 -0.007003910341 0.002269005741 0 -1.242322688 9.901668589 887.2998668 0.002254029415 +2.498417619e-06 0.004537343215 0.001110010764 0 15.27081391 8.162029028 973.092527 0.00205530301 +2.498826744e-06 -0.003548404383 -0.003922308523 0 -12.37343303 -9.704568029 1026.377203 0.001948601347 +2.497813398e-06 -0.00181850215 -0.01063272576 0 18.01104791 -5.81294488 904.7180419 0.002210633487 +2.495631723e-06 -0.002676719096 -0.01343376982 0 18.5895645 -20.82075418 943.7021868 0.002119312669 +2.498110035e-06 0.00464081604 -0.009929843321 0 17.74865918 -6.891390859 979.0225481 0.002042853869 +2.497246444e-06 -0.004319222174 -0.01322556793 0 20.59554413 -9.190107983 960.641756 0.002081941564 +2.497978109e-06 -0.006757619199 0.003067091976 0 -11.54178706 15.43769633 958.2402478 0.002087159253 +2.499179561e-06 -0.009669096386 -0.00615858942 0 -2.841903999 -10.88314514 877.9843501 0.002277944931 +2.496701334e-06 0.004601139566 0.01324884552 0 1.073350964 22.90795436 892.4077646 0.002241127968 +2.495723723e-06 0.006303059841 -0.0115304112 0 15.88076624 -20.68125521 891.0457435 0.002244553677 +2.499011341e-06 -0.007754157674 -0.00952973777 0 -13.69553436 1.705136513 981.3330506 0.002038044065 +2.495240322e-06 -0.007678448614 -0.008638321774 0 -21.64468378 18.05928512 912.9949911 0.002190592522 +2.497813573e-06 0.008045064802 -0.001059859009 0 -16.08175954 12.73115148 980.5370582 0.002039698534 +2.497301399e-06 -0.0003159338376 0.0106594076 0 -19.90403325 14.30357355 1054.60855 0.001896438256 +2.497812455e-06 -0.005970166405 -0.003988395268 0 -16.93256338 10.61281081 955.0745134 0.002094077448 +2.49688578e-06 -0.001187728392 0.001564447407 0 0.7468310446 25.26025045 1012.126326 0.00197603792 +2.49971077e-06 -0.009737587571 -0.008963036025 0 -0.5333808798 -7.851493226 1034.656833 0.001933008062 +2.49553482e-06 0.004088500459 -0.002406535156 0 27.36815536 16.07446367 1061.393166 0.001884315882 +2.496925031e-06 0.002650365327 0.009360275846 0 23.45917701 -2.222113566 949.7659771 0.002105781896 +2.496045975e-06 0.008403026769 6.230068859e-05 0 25.88558416 11.27985998 1003.501619 0.0019930212 +2.499909881e-06 -0.005146643124 0.01347612046 0 -0.3390515494 4.035556571 953.8971376 0.002096662125 +2.496325562e-06 -0.009487935556 -0.0003443595674 0 -14.15600431 24.80400994 1052.923885 0.001899472534 +2.499579624e-06 -0.0002953439625 -0.003950738674 0 -8.152733341 -3.360270224 961.640119 0.002079780118 +2.493971857e-06 0.007198326592 -0.01332021522 0 23.54721143 -25.7822116 1004.700107 0.001990643762 +2.4998699e-06 0.009608723386 -0.01488867681 0 1.142615485 4.892901809 984.9960525 0.00203046499 +2.498138861e-06 -0.002301615048 0.01084166392 0 18.61984622 7.79495904 1045.964292 0.001912111164 +2.498018321e-06 -0.005978107266 -0.01305980654 0 17.74226906 -8.55734541 989.1545664 0.002021928693 +2.498205733e-06 -0.003087874469 0.001943538815 0 -5.761664888 18.9490867 1045.235456 0.001913444467 +2.494813956e-06 -0.00931347419 0.01279905348 0 -8.749384517 28.77772385 933.2182614 0.002143121371 +2.499523315e-06 0.003647108325 -0.01174525546 0 9.165157145 -2.721848531 979.1105318 0.002042670296 +2.496145831e-06 -0.006035367488 -0.003827409656 0 -12.71077724 -23.9305814 975.4082062 0.002050423594 +2.49950163e-06 0.007819235814 0.007505021088 0 -4.833680101 -9.536090253 1070.785237 0.001867788171 +2.499090586e-06 0.003762936108 0.002090952212 0 13.17197511 -1.809333139 985.7231215 0.00202896732 +2.495979694e-06 -0.0001257617865 0.01079654563 0 6.001889532 26.94001619 972.7700105 0.002055984435 +2.496448892e-06 0.008368895762 -0.006371261138 0 16.02721642 -18.98728436 931.8604104 0.002146244199 +2.497706863e-06 -0.006863461388 -0.01158946266 0 18.16851558 8.83369869 943.0166934 0.00212085323 +2.497615799e-06 0.001275921711 0.009408851643 0 1.680846335 21.48956561 986.7569934 0.002026841475 +2.494275409e-06 0.003349433495 0.009852354485 0 20.97113612 22.86559546 916.1525899 0.002183042456 +2.494282014e-06 0.008278121506 -0.004143401671 0 -20.08317793 -26.51550419 982.760864 0.002035083074 +2.497745282e-06 -0.005775912269 0.01180930828 0 -7.649309582 19.3363468 978.8991225 0.002043111444 +2.498697377e-06 -0.003462947765 0.01038557644 0 -6.523137921 15.19055191 1024.032764 0.00195306251 +2.498723502e-06 0.007475116737 7.798257284e-05 0 -8.719293713 -14.60890851 1064.573827 0.001878686052 +2.498448458e-06 0.001486679614 -0.00662635132 0 11.46270119 -12.27418499 953.1572842 0.002098289582 +2.496130349e-06 0.007357527399 -0.01192758512 0 -16.05485803 -18.52302519 880.6103921 0.00227115194 +2.499590427e-06 -0.002613275968 -0.01473332361 0 -7.643230472 5.784333272 1059.002784 0.001888569161 +2.496963356e-06 -0.005824392955 -0.003449891782 0 -22.07437449 14.18073761 1064.146691 0.001879440135 +2.499866413e-06 0.009168831385 -0.009247622055 0 2.750418308 4.29570354 986.8019919 0.00202674905 +2.498828683e-06 0.008174564545 -0.002555042203 0 12.97200412 -7.045033151 964.2852295 0.002074075117 +2.495849165e-06 0.006342437007 -0.01236596621 0 28.93517303 8.835228212 1049.37251 0.001905900889 +2.497868551e-06 0.009854722922 -0.003094698263 0 -1.898582379 -20.27465689 985.9570683 0.002028485889 +2.49825368e-06 -0.005350883766 -0.001692211346 0 -9.737165582 -15.74016791 990.1044567 0.002019988888 +2.495377589e-06 -0.008767258073 0.01459755153 0 -26.46562965 18.48811322 1061.043485 0.001884936883 +2.49978485e-06 -0.009953981359 -0.006371082289 0 -5.662116342 -3.799995653 1039.499606 0.001924002653 +2.499855422e-06 -0.005400923379 -0.01354405371 0 2.463448564 4.523130886 957.7908067 0.002088138648 +2.494515883e-06 -0.001453334801 0.01045495434 0 15.9603163 30.42775547 1036.625172 0.001929337675 +2.49979053e-06 -0.001934010158 0.001525904783 0 -5.670187166 3.539926129 1032.706611 0.001936658465 +2.497705304e-06 -0.006642896165 0.008462226789 0 14.41684765 13.87918678 933.8170918 0.002141747048 +2.498835727e-06 -0.008422394055 -0.01195159573 0 -12.54451242 7.877851923 970.5663039 0.002060652623 +2.497306107e-06 -0.002641316396 -0.004696903685 0 -10.74790409 17.25004177 875.259931 0.002285035484 +2.497527549e-06 -0.0004319446906 0.007407262442 0 14.17168914 17.77739159 1022.001868 0.001956943586 +2.499721879e-06 0.006934779529 -0.01211394515 0 -5.009091903 4.669882193 918.1857971 0.002178208382 +2.497722799e-06 -0.001476436392 -0.01393470488 0 -20.38304442 0.7506536634 955.430923 0.002093296283 +2.49615835e-06 -0.002550288085 0.01210042665 0 -15.45804569 19.53002864 898.0534219 0.002227039006 +2.499332193e-06 -0.001791608087 0.007731919864 0 9.989414836 -5.525950406 987.70946 0.002024886954 +2.497780544e-06 0.007417426812 0.01124958612 0 9.349719989 -19.49624542 1025.929697 0.001949451318 +2.499652118e-06 0.007146840175 -0.01145163939 0 3.267016321 7.257981867 954.1690086 0.002096064724 +2.499822581e-06 0.004777890886 0.01413960567 0 -3.090455227 5.164961386 1010.401019 0.001979412097 +2.497485922e-06 -0.009041018505 0.011913369 0 -20.06410154 11.68878588 1035.154251 0.001932079203 +2.497206893e-06 0.003635860528 0.009873283566 0 23.12264337 3.17525481 987.0823593 0.00202617338 +2.499186969e-06 0.002137809186 0.002780575384 0 -3.811425901 11.39738627 942.3307041 0.002122397149 +2.498404562e-06 0.005498802294 0.006596623224 0 16.85145549 -1.157187238 945.3662654 0.002115582154 +2.497169643e-06 0.003782608588 0.002230839548 0 -11.60444123 -21.47012748 1025.340274 0.001950571972 +2.498053599e-06 0.00357014901 0.01209921297 0 13.67779959 15.46924847 1046.261596 0.001911567821 +2.497627188e-06 0.007153981957 -0.001841870451 0 -12.15813551 19.83228112 1067.464425 0.001873598739 +2.497834216e-06 0.008713942338 -0.008764494227 0 7.319171294 -20.51403756 1046.180978 0.001911715125 +2.496186905e-06 0.001018688027 0.007350829847 0 -2.934440364 25.57401478 931.6157665 0.002146807806 +2.498509808e-06 0.001063586907 -0.01057767524 0 17.12101468 -0.7720995 992.5156845 0.002015081506 +2.49655089e-06 0.0006153820269 -0.004572482791 0 -22.10225308 15.81368546 1034.203604 0.001933855184 +2.497919013e-06 -0.006738080117 -0.01198871067 0 -15.17500935 -13.99728781 1011.635384 0.001976996882 +2.495538479e-06 0.002384698419 0.003140099875 0 17.00558691 -20.08159071 880.3392822 0.002271851365 +2.499105021e-06 -0.007023303122 -0.004745002447 0 9.278737045 10.05883015 1022.727877 0.001955554401 +2.497572454e-06 -0.006740007447 0.007620934839 0 20.76367196 -5.105523366 970.0507863 0.002061747723 +2.496431478e-06 0.003517055535 0.004544936595 0 -23.22600839 -14.34892375 1021.374729 0.001958145178 +2.49763225e-06 -0.006062795976 0.009081221977 0 -18.59633643 6.762790457 908.994881 0.002200232413 +2.49788488e-06 -0.0008650611853 -0.00799783058 0 21.88197741 1.451820091 1065.908656 0.001876333389 +2.496577375e-06 -7.043574005e-05 0.007436443325 0 9.876456713 21.17518418 892.5896002 0.002240671412 +2.494997819e-06 0.00965776959 0.009236041938 0 -14.97992069 30.32882329 1068.653399 0.00187151419 +2.497995803e-06 0.006092590159 -0.003173492595 0 3.689101136 17.22466872 879.5776874 0.00227381848 +2.497517124e-06 -0.001539372774 -0.002379237344 0 1.049751352 -21.30321563 956.7919276 0.002090318639 +2.498002483e-06 0.005215745899 -0.005966021384 0 -20.00636527 -3.439811357 1015.322468 0.001969817535 +2.498115644e-06 0.007960137995 0.005643304875 0 -5.676573816 -18.86881846 1014.704683 0.001971016822 +2.498232695e-06 -0.007324881726 0.005437103135 0 -16.43846873 9.737456609 1015.979837 0.001968543004 +2.495128747e-06 0.008423102396 0.005672807477 0 -16.182814 25.01154194 953.7215844 0.002097048062 +2.497949424e-06 0.006364145917 0.001782335665 0 -9.205028397 19.42526099 1061.130763 0.001884781848 +2.498687717e-06 -0.00838414812 -0.006994046462 0 11.14440926 -8.856601676 878.5072944 0.002276588951 +2.494295424e-06 -0.009185504238 -0.001984401718 0 -23.88651106 -24.54343325 1013.071779 0.001974193775 +2.499252323e-06 -0.0008779778844 -0.009496129705 0 9.660027453 -5.614624355 913.6008108 0.002189139914 +2.496057366e-06 -0.007632871252 0.006857951952 0 15.61465264 24.89226439 1045.806641 0.001912399407 +2.499379713e-06 -0.006514179097 0.003174981689 0 -0.587068601 -11.5880445 1041.633891 0.001920060415 +2.49965441e-06 -0.005332081043 -0.01496362728 0 1.487154917 8.013932491 980.3460541 0.002040095935 +2.497833833e-06 -0.00558222075 0.01030988212 0 15.50123055 14.47433416 1018.603031 0.001963473443 +2.499245968e-06 -0.003353343667 -0.01271434608 0 4.851952652 9.963440887 902.3201217 0.002216508257 +2.498955836e-06 0.006265795315 0.005223382227 0 0.3785683156 -15.04192054 1041.054542 0.001921128931 +2.499675622e-06 -0.002527787802 0.007494847274 0 7.479904893 -2.965140561 998.9141249 0.002002174111 +2.499994621e-06 0.009357161107 -0.01079688868 0 -0.9115771987 0.5698988721 1036.538026 0.001929499883 +2.495147975e-06 0.004374212949 0.008996242925 0 -13.98417657 28.32876464 1013.418753 0.001973517852 +2.499824414e-06 -0.005862097563 0.001093749411 0 4.705312045 -4.084782137 1051.446521 0.00190214144 +2.498917056e-06 0.007932752795 -0.01087155407 0 -13.93247111 -3.699971631 979.3499394 0.002042170954 +2.497580692e-06 -0.008989391662 0.01320170519 0 16.46465365 14.34256962 992.309643 0.002015499914 +2.497266111e-06 -0.008857461344 0.003935333972 0 -20.75118532 6.858525801 934.2685787 0.002140712045 +2.496906848e-06 0.009134324873 -0.004226117993 0 -11.28589266 -19.60008255 908.9086768 0.002200441091 +2.499762075e-06 0.002996815192 -0.001882504611 0 -7.319751982 0.1967847759 1061.458755 0.001884199448 +2.498789711e-06 0.007936559832 0.009703098207 0 13.0852635 -4.036995984 880.0087944 0.00227270456 +2.496350208e-06 -0.00494183741 -0.004896325555 0 15.23963731 18.27145604 880.1502354 0.002272339334 +2.495084731e-06 0.0006480117468 -0.01386433972 0 17.08380773 -23.08669258 915.3324039 0.002184998577 +2.498251955e-06 -0.0005870424304 0.006706720765 0 -5.636382418 19.04381288 1061.898051 0.001883419975 +2.499391678e-06 0.006713104411 -0.0005317945546 0 3.4982129 -10.16717631 974.7076706 0.002051897261 +2.499475599e-06 0.0007883494673 -0.01323629309 0 4.539069781 7.936899224 892.7207596 0.002240342211 +2.496787698e-06 0.001225220412 -0.01035986332 0 18.46317144 14.02479176 914.3034932 0.002187457463 +2.498024189e-06 -0.001906386609 0.0001552359969 0 0.3565033716 18.78322238 944.7824905 0.002116889358 +2.495144762e-06 0.006644656858 0.007249184791 0 19.21411263 20.6137057 903.6550337 0.00221323395 +2.499688478e-06 0.006338432571 -0.004878198733 0 2.182608286 -6.92856756 920.2569921 0.002173305954 +2.495495808e-06 -0.00885589506 -0.005406736527 0 -24.89987063 -17.06424519 1005.050353 0.001989950049 +2.498405885e-06 0.002955359905 -0.0005581193115 0 6.938791004 -15.77944935 965.162034 0.002072190917 +2.497573657e-06 -0.0009892923059 0.01391667334 0 14.36972769 14.20458422 916.8932298 0.002181279057 +2.497372693e-06 0.009746927926 -0.00273181668 0 -15.36329448 15.11620573 939.8650474 0.002127965079 +2.496750502e-06 0.009408300486 0.008249351413 0 -19.68388696 -16.05330411 995.8642425 0.002008305866 +2.494818177e-06 0.00913377055 0.01477545678 0 -18.07558108 23.46309315 919.3182691 0.002175525133 +2.499293017e-06 0.00213657442 0.01239986221 0 -7.799185974 8.714728638 983.4127137 0.00203373413 +2.49958737e-06 -0.007822323395 0.01122421554 0 -3.379133071 9.093386242 1067.803271 0.001873004189 +2.497231918e-06 -0.007757496145 -0.01091244706 0 19.08463637 12.8322068 977.0061956 0.002047069925 +2.495711196e-06 0.00596349447 -0.01354925717 0 -5.110661918 -28.86002022 1000.0894 0.001999821217 +2.499022922e-06 -0.0003440319467 -0.01080792687 0 0.1718336556 12.8299291 917.7407656 0.002179264641 +2.49555333e-06 -0.009615728366 0.01045672118 0 -28.30169289 -3.903590056 957.3754016 0.002089044691 +2.499691283e-06 -5.365408957e-05 0.00838956852 0 6.974720843 2.236572281 932.1064826 0.002145677599 +2.495109397e-06 0.008955800836 -0.0005252573965 0 -18.81439808 -25.5379509 1013.49189 0.001973375435 +2.497139455e-06 -0.004960001162 -0.01389241307 0 -0.3268730068 -23.22093171 970.5028413 0.002060787372 +2.497898998e-06 0.001388391051 0.0006013932964 0 20.72911408 -4.611575438 1035.631293 0.001931189231 +2.49640351e-06 -0.00288048733 0.001075933878 0 -19.32295619 14.26296233 895.0082072 0.00223461638 +2.49835627e-06 -0.005570897749 0.007672975638 0 -14.28107028 11.47782146 1010.256053 0.001979696132 +2.498251204e-06 -0.00844823095 -0.009272177343 0 6.094713576 -17.45889926 988.5263896 0.002023213564 +2.498414842e-06 -0.008590628798 0.01436900847 0 -9.5246106 -12.59603617 886.6960801 0.002255564274 +2.496629727e-06 -0.007015084098 -0.001745929692 0 -22.03229702 -13.64743474 997.7282334 0.002004553879 +2.49796352e-06 0.005122211194 -0.01404527774 0 -10.41406304 15.47598262 924.0088735 0.002164481378 +2.497465772e-06 0.001286363858 0.01258955022 0 -9.680452631 18.73851735 936.484289 0.002135647147 +2.498187729e-06 0.002123083612 0.007076996109 0 17.34893316 7.10450278 984.4484954 0.002031594349 +2.497899636e-06 -0.008580662496 0.002200101893 0 0.6271308602 -18.59704373 907.5937784 0.002203629033 +2.495489919e-06 -0.003091481528 0.003009551608 0 21.42650904 22.72898972 1039.339558 0.001924298931 +2.498758335e-06 -0.00858882572 -0.0009343987587 0 10.31984089 10.56736065 937.1254021 0.002134186092 +2.498141988e-06 -0.006233504713 -0.002111439833 0 10.44401462 -14.0645311 908.5106185 0.0022014052 +2.497958787e-06 0.003601908647 0.0003702461254 0 -20.70896797 -3.106735912 1036.093869 0.00193032703 +2.495348833e-06 0.006773037105 -0.01481346297 0 16.9823871 -26.37947467 1027.920897 0.001945675008 +2.499260939e-06 -0.005967165073 -0.01369144895 0 3.013165956 10.79822744 922.0005728 0.002169196049 +2.495846714e-06 0.007200606144 -0.009204571377 0 23.93136266 -8.857482752 884.8381991 0.002260300247 +2.498030879e-06 0.005135321794 -0.005089426129 0 18.6726884 8.174336019 1026.834193 0.001947734127 +2.498270631e-06 7.290265057e-05 -0.01275253065 0 16.76045683 6.126955077 959.2918906 0.002084871163 +2.496835911e-06 0.006023898106 0.0002838064148 0 18.53907448 -18.15097686 1030.889292 0.001940072533 +2.499261062e-06 -0.00815166282 -0.01059500496 0 4.523307304 -11.88622227 1046.032032 0.001911987338 +2.499073387e-06 0.005002936879 0.01201040604 0 12.67617963 -0.9366127766 933.5683254 0.002142317756 +2.496936579e-06 0.002376469807 0.01366993946 0 -20.69327173 -15.09185922 1034.250723 0.001933767079 +2.496694407e-06 -0.006235382957 -0.01245119571 0 -9.326897025 -25.2093139 1044.874077 0.001914106249 +2.497340064e-06 -0.004045903315 0.008963699341 0 -19.95033237 5.389835427 895.6196183 0.002233090878 +2.499229288e-06 0.003746493738 0.0145443083 0 -12.45001165 -1.209522927 1007.391427 0.00198532561 +2.49899521e-06 0.004960546717 -0.006701287965 0 -13.91728244 4.150568938 1024.327065 0.001952501372 +2.49991669e-06 0.005976778818 0.002693284673 0 -2.574331833 3.104792658 988.0632969 0.002024161819 +2.498361149e-06 -0.003187504942 -0.01488904195 0 12.99361802 -9.6196223 892.7654233 0.00224023013 +2.495943746e-06 -0.0005337389 -0.007298182596 0 -22.17739523 15.16997758 942.7923874 0.002121357816 +2.497015978e-06 0.0005977704143 -0.008940257553 0 -14.00787255 -16.27133596 878.4742413 0.002276674609 +2.499546491e-06 0.006381393215 0.009139948308 0 7.659743321 -4.817134639 950.0399148 0.002105174708 +2.497680065e-06 0.005749832927 0.01215845989 0 18.30703467 -9.70978715 961.7027407 0.002079644692 +2.496249309e-06 -0.005941948085 -0.01298776102 0 19.34838318 16.48502896 927.5560091 0.002156204025 +2.498320764e-06 -0.002769095283 0.008369275702 0 -8.705050752 -16.26876066 1006.576154 0.001986933618 +2.497695485e-06 0.003170697941 -0.003404049051 0 -3.988780334 21.53067761 1019.601578 0.001961550514 +2.496477559e-06 0.007573132813 0.002327219197 0 17.50951271 -16.96318167 918.0118661 0.002178621077 +2.49545573e-06 0.00226362044 -0.003199630966 0 16.18212782 -23.36840434 942.208895 0.002122671533 +2.499006708e-06 0.0002125733998 -0.003926076125 0 12.7526987 -2.770975657 925.7663237 0.002160372384 +2.499275511e-06 -0.003401220106 -0.009841760632 0 1.134235086 12.36278616 1031.237081 0.001939418235 +2.496739242e-06 0.002947102357 -0.004357256424 0 -9.337859354 -23.19655172 978.6985268 0.002043530204 +2.498423626e-06 -0.009416506123 0.01471186812 0 5.040636007 -16.75042494 984.923446 0.002030614672 +2.496343009e-06 -0.002447073082 -0.004933079733 0 -22.43399025 -15.471395 1007.108269 0.001985883804 +2.495280262e-06 0.00363147588 0.0001313349162 0 17.78843281 -24.50221262 984.8101336 0.002030848314 +2.496920377e-06 -0.003878295724 0.005189195224 0 -21.79797213 3.678620569 890.3268927 0.002246365932 +2.496323069e-06 0.001555355308 -0.009508486607 0 -22.79146389 12.66851779 961.0335926 0.002081092706 +2.498582648e-06 -0.009365083426 -0.003525845788 0 2.813482034 -16.2473731 979.157884 0.002042571512 +2.497706326e-06 -0.009780054935 0.01157654454 0 -10.46392779 18.92708675 1009.407516 0.001981360321 +2.499991891e-06 -0.002446570694 -0.00206652004 0 -0.5349093238 1.158694985 1002.144575 0.001995720028 +2.498090106e-06 0.005792461019 0.01267994015 0 -10.08685054 -16.79282652 1002.02026 0.001995967625 +2.496943765e-06 -0.009802548154 -0.00124213571 0 -10.03673698 -20.23597415 913.2207062 0.002190051087 +2.497058363e-06 0.0003783150669 -0.01040811781 0 -17.72950305 -15.983642 983.7042967 0.002033131305 +2.4990277e-06 -0.000150430575 0.001291515708 0 -10.06218026 7.038888221 880.4661248 0.002271524075 +2.499169752e-06 0.004044599021 -0.004830012247 0 6.10511223 10.95890954 973.3925893 0.002054669433 +2.498645285e-06 0.003254049583 0.0009334198851 0 6.827245793 15.46373802 1026.731898 0.001947928182 +2.499728317e-06 0.006611557114 0.001684252247 0 3.750683897 -5.30491495 881.3383959 0.002269275921 +2.498095796e-06 -0.007836559787 0.01404262756 0 17.7439474 -7.001945678 977.1926537 0.002046679324 +2.496084747e-06 -0.0006721465243 0.001582497892 0 21.27522739 15.60157084 942.2546042 0.002122568562 +2.497160104e-06 -0.003349909596 -0.001249775388 0 1.051453237 -21.52154702 903.7323695 0.002213044556 +2.49775006e-06 0.0002154160338 0.00889684197 0 21.93452163 3.634306002 1047.760493 0.001908833186 +2.499351132e-06 -0.001254162807 -0.001283020489 0 0.4835398982 11.35012721 997.1468794 0.002005722568 +2.498383698e-06 0.005490502436 -0.008004415529 0 -4.284181332 15.75821829 908.0507877 0.002202519977 +2.497133709e-06 0.006678982121 -0.003324904474 0 16.81289424 -14.09973906 916.063057 0.002183255819 +2.49647777e-06 -0.009098547576 0.0143259967 0 -24.81490731 11.19404159 1025.134564 0.001950963385 +2.494157122e-06 -0.0004736211803 0.01185674791 0 15.97170348 31.50350878 1032.339131 0.001937347854 +2.49794989e-06 0.002102861768 -0.007975681645 0 -11.71404448 14.18703762 908.3145012 0.002201880513 +2.499534574e-06 -0.002021909282 -3.847644897e-05 0 7.991731761 3.36138905 898.5498819 0.002225808539 +2.496333948e-06 0.003036871394 -0.0114576376 0 7.197694812 -25.92538814 993.106424 0.002013882854 +2.496711186e-06 0.008830569121 -0.006656666156 0 -1.086755413 -23.47920863 916.007776 0.002183387578 +2.499046171e-06 -0.006294487864 -0.006240112935 0 -8.492009415 9.099008885 900.9940383 0.002219770514 +2.498216845e-06 0.006669916455 0.002128667389 0 13.31628769 -12.24720008 957.7646032 0.002088195777 +2.498352675e-06 0.00907575829 0.01360096422 0 -9.009072117 15.85399037 1004.365923 0.001991306111 +2.497760978e-06 1.10841589e-05 0.002143500885 0 -7.863921905 -21.18008753 1067.286885 0.001873910405 +2.498161022e-06 -0.001806442938 0.003361382643 0 19.02886837 -2.322018263 999.3082455 0.002001384467 +2.49929338e-06 0.006120066699 0.002664418404 0 8.437304138 6.704108364 906.4090289 0.002206509353 +2.49590171e-06 0.001734878253 -0.01425930386 0 -23.38550791 16.74367224 1003.992024 0.001992047698 +2.499259908e-06 0.00793785552 -0.009225747117 0 -5.77600182 11.14397107 1031.581573 0.001938770575 +2.495559678e-06 0.001908421763 0.0002387231612 0 18.54278452 22.52757868 978.4449587 0.002044059793 +2.497651858e-06 0.00650054879 0.0009538331022 0 -20.49395715 -0.9444821079 946.3599771 0.002113360717 +2.493696731e-06 0.00608406004 -0.001073061568 0 27.40287403 22.61758062 999.7742279 0.002000451646 +2.497881864e-06 -0.004395633866 -0.005886765446 0 -18.52981171 7.893688085 978.2580368 0.002044450365 +2.499061947e-06 0.003367116405 -0.0001907111728 0 -9.42400461 10.38592473 1023.739869 0.001953621287 +2.499860291e-06 -0.009002847737 -0.005340544826 0 4.96053683 -1.759945828 995.7205227 0.00200859574 +2.499883163e-06 0.003647061419 0.005291919024 0 -1.499249502 -4.76485183 1033.322517 0.001935504131 +2.499561114e-06 0.002196732722 0.007141611585 0 -9.024457198 2.746735792 1006.791984 0.001986507672 +2.495692545e-06 0.002702159192 -0.008135634803 0 11.17462532 -26.31485398 973.4109061 0.002054630771 +2.497190151e-06 0.008509228486 0.001237049878 0 20.14019469 12.04933434 989.6071278 0.002021004037 +2.498782616e-06 -0.004121071664 0.01238713115 0 -8.943873917 10.43636338 880.6839184 0.002270962326 +2.499782897e-06 0.004098911299 0.01077343971 0 2.428570327 5.780480045 951.4801476 0.002101988155 +2.497121551e-06 -0.002250047387 0.005004022624 0 20.21364561 5.926273326 877.5437805 0.00227908857 +2.499323183e-06 -0.004352526576 0.01013283564 0 -7.870866226 -8.142907952 973.2996141 0.002054865707 +2.499737195e-06 -0.0008106136601 -0.01349628057 0 6.26139843 -2.16392952 913.7388854 0.002188809114 +2.495689885e-06 0.000363870291 0.009035097957 0 -9.874468999 26.01081956 946.9981164 0.002111936619 +2.4991026e-06 0.000549432002 -0.0004144256632 0 13.23008846 0.3432229296 987.7390506 0.002024826293 +2.496778697e-06 -0.003326269374 0.004880154028 0 -23.54877976 2.901042144 934.3259059 0.002140580698 +2.497505589e-06 0.00257689191 -0.002995480704 0 16.69871313 13.78141785 968.9924806 0.002063999505 +2.496554765e-06 -0.009606777104 -0.005622090383 0 -2.354440777 -26.75022537 1022.478349 0.001956031639 +2.497918067e-06 -0.001383815431 0.01028076273 0 -5.608701841 18.10096293 928.3785974 0.002154293524 +2.499157744e-06 0.002891356666 -0.01075262987 0 -12.14120374 4.576710895 999.5883471 0.002000823645 +2.497336438e-06 0.0008917981107 -0.002148987225 0 -18.23906285 8.826835044 877.5604064 0.002279045391 +2.497619657e-06 0.005182035263 0.004463914703 0 -19.66371159 6.396347383 947.3625006 0.002111124304 +2.497518214e-06 -0.005644845637 -0.0005927611515 0 -19.80645333 -1.643535232 891.7392093 0.002242808188 +2.499807947e-06 0.002239585491 -0.01125961904 0 2.762843222 5.994884321 1065.038339 0.00187786667 +2.498801433e-06 0.009661661284 0.008112972546 0 10.01878464 -10.06220681 916.9526307 0.002181137752 +2.497932287e-06 0.004668521909 0.00808294625 0 -14.54740956 -14.90821845 1023.978947 0.001953165155 +2.497929365e-06 0.006718523824 0.01155271917 0 -11.8972835 14.91185803 937.1186666 0.002134201432 +2.498093149e-06 -0.008814245514 -0.01367737759 0 18.36596102 -0.6289055552 940.7418438 0.002125981759 +2.49980714e-06 0.008016505432 0.009819121887 0 -2.344528399 4.94991778 881.8626528 0.002267926863 +2.499048677e-06 -0.0090237374 0.0007216553972 0 -12.22390923 6.846707692 1015.595525 0.001969287922 +2.498315678e-06 -0.007756021996 -0.0103159588 0 12.10527332 14.3693575 1023.434064 0.001954205035 +2.498933603e-06 -0.008545860639 -0.007690578187 0 -6.471087459 -11.46824095 901.5192503 0.002218477309 +2.497582082e-06 -0.004377110857 -0.01171232931 0 -11.0091465 -17.91490032 955.8482069 0.002092382437 +2.499298412e-06 -0.005892745978 -0.006526650977 0 10.8839882 0.3117374779 919.1035282 0.002176033427 +2.496732736e-06 -0.008594907387 0.001886550668 0 -22.93818961 -3.548577397 907.5587955 0.002203713974 +2.498183843e-06 -0.00905016066 0.01433727615 0 15.0066672 9.936942238 944.1134717 0.002118389431 +2.499026832e-06 -0.004607391115 -0.007964439515 0 -12.93515298 -7.057097031 1056.035155 0.001893876346 +2.497084305e-06 -0.001880845828 0.01311448407 0 21.38829149 -2.346235458 890.6302567 0.002245600781 +2.499110916e-06 -0.005637370846 -0.0008844342618 0 11.78621305 2.868366979 909.5456866 0.002198899989 +2.497060175e-06 0.004569616853 -0.005165633261 0 9.035144999 -22.998314 1018.580782 0.001963516332 +2.497446707e-06 0.007167606452 0.01400297601 0 -19.95404904 -10.83734443 1004.453422 0.001991132645 +2.499005103e-06 -0.007546222163 -0.003656505276 0 2.157742668 14.5798782 1044.695537 0.001914433373 +2.498909385e-06 0.007509104228 0.0040515353 0 15.25951868 2.765002995 1049.866419 0.00190500426 +2.497491963e-06 5.038014613e-05 -0.007423571956 0 -17.63511592 -11.33961066 935.7838718 0.00213724564 +2.498284926e-06 0.009400264858 0.007369720638 0 18.46083631 3.919939699 1018.731016 0.001963226768 +2.497594962e-06 0.006609951821 -0.007315293867 0 -22.16186335 -3.659742399 1023.801788 0.001953503132 +2.497469811e-06 0.001553519494 0.01431296347 0 18.23193212 14.54334042 1036.353622 0.00192984321 +2.497581555e-06 -0.009841934736 0.002515357879 0 10.45383158 19.48262831 1004.961618 0.001990125756 +2.498735939e-06 -0.008275562525 -0.008834476266 0 -16.23887595 -3.152851306 1040.182672 0.001922739201 +2.498435247e-06 0.00775108004 -0.01434642714 0 16.94742221 3.312390634 975.8981373 0.002049394218 +2.495303861e-06 0.006655542208 0.008629708705 0 26.82997231 -17.25546469 1040.151378 0.001922797049 +2.499229422e-06 0.000372868944 0.005114694207 0 7.631189273 10.02907282 1015.02202 0.001970400603 +2.497939217e-06 0.00828624947 0.005506273324 0 15.77253424 11.39041315 958.022584 0.002087633458 +2.494496813e-06 0.002395372698 0.003699481012 0 19.63836972 22.67729517 903.487698 0.002213643865 +2.496106052e-06 0.00140105708 0.004072593253 0 -17.73145088 22.56256259 1027.687097 0.001946117652 +2.497960024e-06 -0.006133457036 0.006513525113 0 21.30453822 -0.6809039654 1054.953615 0.00189581795 +2.496902597e-06 0.009881856563 -0.00386485198 0 14.16802431 20.90148147 1014.051539 0.001972286341 +2.497780851e-06 -0.008444651607 -0.004690774621 0 0.5704528474 -20.28890129 963.1129647 0.002076599603 +2.496790965e-06 -0.005357001219 -0.007663761671 0 -4.516748639 -22.18695534 893.314107 0.002238854155 +2.499242677e-06 -0.002271976131 -0.0001747105666 0 7.489400326 -10.2746724 1032.990664 0.001936125921 +2.496282066e-06 -0.005239902632 0.005166363548 0 3.4682938 25.59177778 946.5516685 0.002112932729 +2.496070935e-06 -0.003707967768 0.01155502999 0 18.50723872 21.21637774 1003.750338 0.001992527348 +2.492318233e-06 0.007769537722 -0.008464817677 0 27.22975903 -26.52235345 968.660185 0.002064707553 +2.49439813e-06 0.003691890831 -0.001467603303 0 23.77725388 24.18827742 1012.472885 0.001975361542 +2.495584661e-06 -0.009736973713 0.007837751987 0 -20.76680716 22.22089341 1022.804501 0.001955407899 +2.493968441e-06 -0.003738876865 -0.01103342355 0 -20.12584939 -29.11353178 1018.102033 0.001964439649 +2.498985429e-06 0.002996481028 0.006939459303 0 7.50543932 10.57934046 910.4589954 0.002196694206 +2.493255237e-06 0.004549968615 0.01299636138 0 -20.48042219 27.19830755 926.0620431 0.002159682513 +2.497934088e-06 -0.008109654505 0.01127710398 0 -16.56132133 11.7805981 999.5418851 0.00200091665 +2.498417126e-06 0.005569790103 -0.01306162153 0 -13.96777536 -12.52579362 1054.208521 0.001897157878 +2.497198115e-06 -0.002256185999 0.01377548647 0 -17.10922491 -14.27984965 941.0179662 0.002125357934 +2.496468225e-06 0.007107243957 -0.003334865808 0 -15.42905437 22.88196336 1037.846517 0.001927067217 +2.499493505e-06 0.009613342504 -0.007215886319 0 8.361054741 3.74109993 910.0251782 0.00219774139 +2.499075877e-06 -0.007669141702 0.00329484646 0 -9.159589599 -8.100220017 899.2851578 0.002223988668 +2.499946539e-06 -0.009392454866 0.00356276657 0 -0.854426558 3.214070132 1017.061073 0.001966450249 +2.498039054e-06 0.001069282489 -0.006581876208 0 7.101580085 -19.2098691 1033.868544 0.001934481913 +2.496765818e-06 0.00217717614 0.000360543339 0 -22.68671745 11.95491823 1007.802068 0.001984516667 +2.498103028e-06 -0.003003989109 -0.002921569627 0 12.56923001 -16.33236672 1057.762662 0.001890783323 +2.49561533e-06 0.005838378831 0.003798277178 0 -13.71024517 26.59786173 1009.818587 0.001980553761 +2.497295552e-06 -0.006217310135 -0.01027614512 0 18.49942305 -13.59988757 986.8500929 0.002026650263 +2.496095695e-06 0.008815314323 -0.005170848188 0 -7.097422951 -23.61949304 882.0658892 0.002267404311 +2.498767316e-06 0.003611339233 0.01397012054 0 11.17094801 11.84087877 1036.570454 0.001929439522 +2.49967301e-06 -0.002827760605 -0.00927355025 0 -7.537441037 -0.7236582568 936.2950063 0.002136078892 +2.498232496e-06 -0.004291027533 0.01365400678 0 -4.117802881 16.61123751 910.0003365 0.002197801385 +2.499339787e-06 0.007495141439 -0.006818048232 0 0.6788674928 -11.9537063 1041.841568 0.001919677676 +2.496771441e-06 0.0003414202062 0.0006457235687 0 19.7326539 11.41426475 896.6668989 0.002230482694 +2.496577112e-06 0.001519359942 0.004621370828 0 -14.12139262 19.61637372 923.3199209 0.002166096447 +2.495681912e-06 -0.008875510143 0.0006402476365 0 -20.61344451 19.35690274 961.6015786 0.002079863474 +2.498992302e-06 0.002792025567 -0.0114874145 0 -12.21552555 -7.447177989 1007.607244 0.001984900378 +2.495949474e-06 0.001682845685 -0.001367382465 0 -17.74886451 -20.57382976 954.0761839 0.002096268656 +2.495740888e-06 0.002511852444 -0.01018699461 0 -8.883277571 -27.58637238 992.3546576 0.002015408488 +2.497421232e-06 0.002491794294 0.01178840368 0 9.317658677 22.40654901 1068.123184 0.001872443208 +2.498459388e-06 0.004337578788 -0.002099912774 0 14.75745158 -4.416924166 877.3627953 0.002279558708 +2.494471053e-06 0.003839380089 -0.01060685642 0 22.72563087 -20.18299631 913.2591273 0.002189958951 +2.497899318e-06 -0.005757815032 -0.007630920801 0 17.75694762 -2.563979578 875.0182145 0.002285666706 +2.496990713e-06 -0.00983077534 0.005506907024 0 19.252327 15.91192044 1017.639825 0.001965331889 +2.497160399e-06 -0.001029313388 -0.01316630982 0 -16.28976431 19.4242372 1063.31269 0.001880914259 +2.49595816e-06 0.007798075792 -0.0123485231 0 -4.206939872 -27.60216667 981.4354075 0.002037831512 +2.498444928e-06 0.008791516335 0.00379149677 0 9.026870101 -15.94082689 1038.52202 0.001925813763 +2.499615682e-06 0.001191198123 0.01164685782 0 8.240890666 4.312342333 1060.826643 0.001885322182 +2.498780197e-06 0.001892983415 0.002571533744 0 -13.53198708 6.037135144 948.5033248 0.002108585123 +2.499883324e-06 0.003746714606 -0.001123702044 0 -3.146148018 2.964416604 894.8378085 0.002235041905 +2.495011483e-06 0.004335034378 0.01391618741 0 -4.386896016 28.10037251 899.7356539 0.00222287512 +2.498073828e-06 -0.004024874573 0.004556939795 0 -6.107611814 18.79167646 1006.429882 0.001987222395 +2.499940472e-06 0.007935582167 -0.01210736803 0 3.620695909 -0.3438721689 1054.049079 0.001897444853 +2.499931415e-06 0.002027983153 0.007000882337 0 -2.298510267 -2.968177232 1013.608769 0.001973147886 +2.496254647e-06 -0.009835286038 -0.01477083847 0 12.10107173 -23.22664879 956.3768086 0.00209122595 +2.497570596e-06 -0.0006247432996 0.01261019471 0 15.53758416 13.61085912 936.7504124 0.002135040427 +2.497654366e-06 0.001979851094 -0.01348463702 0 9.698327986 -20.23694386 1035.717225 0.001931029002 +2.498638064e-06 0.008504178221 0.01185896531 0 -16.6955377 3.1689329 1029.446429 0.001942791722 +2.499331554e-06 0.004346031388 0.01331076489 0 8.157625448 -7.118972151 936.3140797 0.002136035379 +2.499451561e-06 0.002982311817 0.01083981237 0 8.265509964 6.83181362 1023.810872 0.001953485799 +2.499621715e-06 0.004471560325 0.004486950652 0 -8.034961997 3.795095433 1021.559939 0.001957790164 +2.498612423e-06 4.92232386e-05 -0.002746193327 0 -8.453093619 13.10411662 935.8869203 0.002137010312 +2.498047609e-06 0.007558711586 0.007922281714 0 11.87033757 -14.04241204 930.236244 0.002149991481 +2.496197718e-06 0.008303932315 -0.0128852536 0 5.450281379 -26.74360386 989.1712543 0.002021894582 +2.499256742e-06 0.007311196658 0.01062789134 0 8.005481345 8.056661639 931.445717 0.002147199739 +2.498735135e-06 -0.005739376638 -0.01292267287 0 -7.351763911 -13.81617033 983.7980252 0.002032937604 +2.499453676e-06 -0.005240650089 -0.01072820831 0 -7.812408197 5.711622504 925.7485238 0.002160413923 +2.498529827e-06 0.004307393809 -0.005936387395 0 12.24685323 -11.80648198 991.8319185 0.002016470697 +2.496630507e-06 0.004271346307 0.01361302187 0 20.34093421 -12.25964464 914.4140026 0.002187193103 +2.49548705e-06 -0.003772926177 -0.009680895077 0 -22.38292525 -15.19827214 899.9345606 0.002222383813 +2.497564074e-06 -0.00485296695 0.008466157035 0 21.2586876 -4.750818352 986.5366308 0.00202729421 +2.499170905e-06 0.0001610603649 0.01372404723 0 -2.776111737 -12.74736001 1013.004074 0.001974325723 +2.497362559e-06 -0.004061300792 -0.01253278068 0 21.64319985 10.99053534 1056.478085 0.001893082335 +2.496625801e-06 -0.008808441381 0.009290018831 0 -20.77834315 -9.440830766 878.0998578 0.002277645284 +2.496701386e-06 -0.004932473991 -0.01233321657 0 -3.940292183 -22.43502361 886.3958752 0.002256328189 +2.498852715e-06 -0.0084560451 -0.0072333386 0 13.92806497 1.581157075 925.2218608 0.002161643693 +2.497651952e-06 -0.002794539491 0.01202540778 0 -19.50110756 -0.9601564035 900.6655672 0.002220580061 +2.496804406e-06 -0.007774868761 -0.0002079110336 0 6.66945942 -23.53752395 967.2345914 0.002067750696 +2.498161955e-06 0.004144847817 0.003408551964 0 -7.39051486 -18.08200265 1018.542293 0.001963590528 +2.499916463e-06 -0.003693582299 0.002172284606 0 -0.8980493233 -3.633571692 915.6918127 0.002184140966 +2.498276551e-06 0.00840087695 0.005090345023 0 8.858232056 17.79654828 1070.468663 0.00186834054 +2.499953408e-06 -0.006743830838 0.01010409191 0 -2.823362394 -1.172130766 1001.437978 0.001997128173 +2.497846819e-06 0.007662183349 0.003437533469 0 21.07786735 -1.782118619 1019.008668 0.001962691843 +2.499567203e-06 0.006275548292 0.01445457394 0 6.240912077 7.474026611 1046.506644 0.001911120212 +2.497644841e-06 -0.009761713916 0.00685357196 0 3.115433588 20.98072255 976.9622655 0.002047161974 +2.498126629e-06 -0.003199793822 -0.009906923489 0 -8.44180963 18.63506754 1056.608822 0.001892848098 +2.499643678e-06 0.0005247168615 -0.008415006527 0 1.342138638 7.880949305 946.9507967 0.002112042154 +2.499188484e-06 -0.008713702406 0.007964320786 0 -8.198455515 8.394910294 920.9444579 0.002171683626 +2.499698794e-06 -0.00918973946 0.01134900478 0 3.725159587 -5.755894298 883.3151023 0.002264197674 +2.498204216e-06 -0.007432708391 0.006730605452 0 -0.6106627405 -18.08552395 954.5955659 0.002095128106 +2.497678423e-06 -0.003995703543 0.009217211539 0 19.63904404 -3.272818417 923.6573079 0.002165305231 +2.499827802e-06 0.001155969533 -0.009069431182 0 4.660170862 -2.373106538 891.1048748 0.002244404735 +2.499532298e-06 -0.007519503245 -0.009985813019 0 -0.684688006 -8.780786163 910.582885 0.002196395334 +2.498362692e-06 -0.006115376377 0.00582255462 0 18.21345294 -5.844386898 1056.784477 0.001892533476 +2.496987337e-06 0.007172201858 0.009507466466 0 -14.96216686 19.64021387 1005.396593 0.001989264747 +2.495395601e-06 0.006744993599 -0.009740496289 0 26.22404724 -12.43096962 955.6823608 0.002092745542 +2.496694598e-06 -0.003603193783 0.007237804863 0 2.073962246 25.91183264 1010.513694 0.001979191387 +2.491717244e-06 -0.009553623945 0.009333215179 0 -30.45029115 29.31484438 1037.21421 0.001928241998 +2.498121945e-06 -0.005255341073 0.008294357148 0 -10.02013154 14.30308755 900.8346563 0.002220163252 +2.498755742e-06 -0.005798189742 0.01014419019 0 -14.57405716 2.62302693 938.53735 0.002130975395 +2.49752095e-06 0.004098294652 -0.01329609063 0 13.98944639 18.64367309 1046.398552 0.001911317629 +2.492708749e-06 0.007437344692 -0.007322188723 0 24.63004476 -24.23248934 903.82368 0.002212820979 +2.498829125e-06 0.007425768161 -0.01233427421 0 12.85700494 3.969779063 879.1576539 0.002274904838 +2.498429082e-06 -0.008426107797 -0.008757062531 0 17.96025662 4.393153968 1042.88585 0.001917755427 +2.498667343e-06 -0.00978599384 -0.01154067558 0 13.10695185 -11.06548741 1050.479827 0.001903891868 +2.49821446e-06 0.003632443673 -0.001302369777 0 14.3840624 -12.73988703 1016.525453 0.001967486395 +2.497572058e-06 -0.005946732112 0.006105284896 0 -19.37677819 7.477534035 942.1805754 0.002122735336 +2.496352506e-06 -0.005297677424 0.0001243066555 0 12.611488 22.20213701 944.8624508 0.002116710213 +2.499435523e-06 -0.007554692915 -0.001477777844 0 -8.757075394 5.042502158 950.9686459 0.002103118761 +2.496429006e-06 -0.001028843527 -0.01385177389 0 -20.20275453 18.51520926 1024.866453 0.00195147377 +2.498279505e-06 0.001512088832 -0.0103305149 0 4.653821578 18.88960426 1048.491409 0.001907502516 +2.496742638e-06 -0.003075509914 0.01030202727 0 -23.43473137 11.54810704 1023.070145 0.00195490017 +2.496573805e-06 0.00949460288 -0.0008792403946 0 19.83256433 16.39517741 982.4898462 0.002035644447 +2.497425118e-06 0.002789519238 -0.003178884604 0 -3.718347792 -20.95292204 937.3811203 0.002133603885 +2.498719862e-06 -0.00607967203 0.002111308607 0 -11.14160933 -10.53732461 958.2190191 0.002087205493 +2.499905466e-06 -0.002414566418 0.0003205215745 0 3.801287264 0.3577378596 878.0710916 0.002277719901 +2.499602926e-06 -0.008395271176 -0.007925318987 0 -2.883061026 8.676561927 1025.918533 0.001949472531 +2.495959736e-06 -0.001563603724 -0.005567565537 0 20.84283851 -16.14158719 926.8324906 0.002157887235 +2.49795756e-06 0.009768367317 0.01258172621 0 -1.394266509 20.06178609 994.7023862 0.002010651656 +2.499042539e-06 0.00702430387 0.01425674471 0 -13.35987578 -6.375468373 1069.586604 0.001869881309 +2.498562968e-06 0.0008639313281 -0.006660644417 0 11.35125332 -12.30965687 987.485308 0.002025346589 +2.496106596e-06 0.009387391289 -0.008244744733 0 7.106535437 -23.72635868 887.0610594 0.002254636227 +2.499797186e-06 0.002733450052 0.01281946356 0 5.35021895 1.966574689 894.978894 0.00223468957 +2.499169274e-06 -0.002426553792 -0.004881702906 0 10.72592135 -6.010935996 953.7720353 0.002096937136 +2.496486928e-06 -0.004595745653 0.01017101755 0 20.24479902 -19.19200504 1051.850181 0.001901411471 +2.494245978e-06 -0.001675694888 -0.01490688715 0 -19.24364313 -24.56497596 919.0709325 0.002176110602 +2.493670144e-06 -0.006439999524 0.01411028586 0 15.44546522 29.96277145 946.5149905 0.002113014606 +2.499675488e-06 -0.005912543721 -0.003449430841 0 4.851765194 -5.377551324 898.9859191 0.00222472895 +2.496257087e-06 -0.00396070878 -0.009278494497 0 1.611019645 -26.77052733 979.6659802 0.002041512148 +2.499882233e-06 0.004135313374 0.01483900225 0 1.47095762 4.012330769 880.5340926 0.002271348738 +2.496480479e-06 0.003398567489 0.0137999715 0 -16.38810773 20.10198941 977.0384234 0.002047002402 +2.498803083e-06 -0.002271319898 0.005520091744 0 -12.69319165 -5.447355698 892.5933982 0.002240661878 +2.498995716e-06 0.005346741192 0.0004745393666 0 -12.44749722 -6.955468022 1005.958251 0.001988154079 +2.497929088e-06 -0.006999747902 -0.01162558377 0 -11.08976798 -15.85223432 950.3101385 0.002104576095 +2.497118219e-06 0.008760328419 0.004764168493 0 -15.01038006 -17.57375754 962.2716434 0.00207841519 +2.498249772e-06 -0.004914531773 -0.006628390204 0 -18.50574122 1.5073075 992.1240375 0.002015876971 +2.497819898e-06 0.0003120137006 0.009020682389 0 -10.38473253 17.69693885 982.3315243 0.002035972531 +2.494670804e-06 -0.0001538289245 0.0003851708444 0 -20.5487619 -23.44847019 954.2412459 0.00209590605 +2.497251045e-06 0.005876817834 0.01120480438 0 -22.6784964 -10.76231105 1070.141141 0.001868912356 +2.496524619e-06 -0.003183365418 -0.006046300319 0 -19.75403599 13.09318705 898.444926 0.002226068557 +2.499569212e-06 -0.009779783534 -0.004228329656 0 -1.869974116 -8.482049947 935.6891431 0.002137462014 +2.496501199e-06 0.004027293944 0.005556261947 0 18.26058494 -15.39895549 902.5148243 0.002216030082 +2.498830299e-06 -0.00258475523 -0.00246299692 0 14.64693035 -0.4403277795 957.8867234 0.002087929555 +2.49695775e-06 -0.007529645707 0.0009181066789 0 -2.945537505 23.67460156 966.7353433 0.002068818538 +2.499940813e-06 -0.00445194473 -0.004819862468 0 2.070898664 2.922041117 1040.946858 0.001921327669 +2.495724088e-06 -0.008602975379 0.007081518397 0 -29.08554798 -1.664003238 995.585786 0.002008867571 +2.499197817e-06 0.002144224723 -0.000151667709 0 -5.969925564 12.17537477 1070.441606 0.001868387766 +2.495447595e-06 0.0002027920727 -0.004928013543 0 -23.8941217 -16.89642378 969.1938963 0.002063570569 +2.496521547e-06 -0.001241940823 0.001606395333 0 -25.74319997 -11.18298773 1063.56819 0.001880462409 +2.495822606e-06 -0.001525549381 0.01082050521 0 -21.77681317 13.08433873 878.3838466 0.002276908902 +2.498098967e-06 -0.009821855249 0.0007246666099 0 -7.924575998 17.12564393 967.4847427 0.002067216062 +2.498399769e-06 -0.001526218001 0.000466983919 0 16.48808802 2.772211075 934.3574663 0.002140508395 +2.498679884e-06 -0.004189356766 -0.007455002144 0 11.61450495 -12.68560477 1058.2971 0.001889828481 +2.499918018e-06 0.007517331396 0.003950578726 0 -0.7810452458 4.036394157 1015.301367 0.001969858473 +2.499662109e-06 0.004506225288 0.001958407739 0 -0.7015030546 -8.771395031 1070.355491 0.001868538086 +2.499911717e-06 -0.0002691566292 -0.0002912238194 0 0.4946037452 4.23525405 1014.757462 0.001970914306 +2.494842896e-06 -0.007394419494 -0.01285896286 0 -9.203308748 -32.49876931 1050.906379 0.001903119098 +2.497062263e-06 0.001514893658 0.00612091088 0 -13.63486734 -17.29193358 908.0764127 0.002202457824 +2.499466522e-06 0.004945192761 0.006977595545 0 7.024440844 -8.440591357 1063.019385 0.001881433235 +2.497061402e-06 -0.003421005155 -0.004053954729 0 -25.76910873 -2.979056524 1069.561204 0.001869925716 +2.499712488e-06 0.009662333555 -0.002912166431 0 6.752143491 2.069548126 931.2744501 0.002147594621 +2.498756719e-06 0.009096982195 -0.011296209 0 -8.393244957 13.58682345 1012.583038 0.001975146654 +2.497991146e-06 -0.001981641999 0.009704857171 0 14.55202168 -11.61413652 928.5924548 0.002153797384 +2.497603163e-06 -0.007684645187 0.01349506012 0 19.72162136 12.35781726 1062.605613 0.001882165853 +2.496571662e-06 0.00750894554 -0.0005155331246 0 -17.02118845 -19.4505994 986.559156 0.002027247923 +2.499596109e-06 -8.701877203e-05 0.008943417615 0 -4.590827554 -8.067761301 1032.739114 0.001936597513 +2.498417321e-06 0.003321053055 0.0002841808274 0 17.19671782 0.6797893777 967.0970387 0.002068044798 +2.496989361e-06 0.00847432428 0.003155328752 0 -17.52641531 -13.32329138 896.7870713 0.002230183802 +2.499160364e-06 0.006627555862 -0.01223035074 0 3.889393989 -13.01431265 1048.051558 0.001908303065 +2.494755588e-06 -0.008931885771 -0.008091287313 0 17.4262083 -25.79568761 960.4544092 0.002082347669 +2.498041772e-06 0.007411142914 -0.007040438913 0 11.64702649 -15.10362754 963.4759841 0.00207581718 +2.495426714e-06 -0.002867277833 0.002522660801 0 19.82424148 17.63328103 876.6745123 0.002281348405 +2.49387246e-06 -0.0001412290195 -0.01015459154 0 24.23174361 -27.53975155 1046.894105 0.001910412897 +2.495871197e-06 -0.003657190651 0.007830594156 0 -24.8002569 -15.52522836 1017.565372 0.001965475688 +2.497422584e-06 -0.0003844645899 0.003087465847 0 9.838429179 21.67909395 1048.168587 0.00190809 +2.498968401e-06 -0.003391487137 0.01134912168 0 -11.45368214 8.634533695 998.4440045 0.002003116841 +2.495644419e-06 0.007032967792 -0.0003367384756 0 16.63970757 -26.36133972 1055.520002 0.001894800663 +2.497251114e-06 -0.002301255595 -0.00480019304 0 -24.52145575 -3.722805706 1057.357705 0.001891507472 +2.499537071e-06 0.004032864254 -0.008205130817 0 2.852381033 9.702216942 1050.920032 0.001903094373 +2.496455291e-06 -0.0009183748625 -0.008736848664 0 25.75772386 11.82457031 1063.891558 0.001879890845 +2.498861856e-06 -0.006353744739 -0.005099001392 0 4.429940168 12.92596267 905.5033483 0.002208716294 +2.498081743e-06 -0.001484697852 -0.009852324282 0 -2.831668051 19.98605872 1030.266437 0.001941245418 +2.497678675e-06 0.004730166313 -0.008179260925 0 -12.88032366 -14.97445871 916.3775314 0.002182506589 +2.498310543e-06 -0.009120999919 -0.004161575704 0 -17.85479774 -7.140817804 1045.866026 0.00191229082 +2.497728522e-06 0.00237515524 -0.002378586265 0 19.4169709 -2.432302213 917.7939147 0.002179138441 +2.499315049e-06 -0.005889225835 0.0106362415 0 -7.886631168 8.234607867 974.0812964 0.002053216715 +2.497962687e-06 -0.009986915691 -0.009166533756 0 3.77793248 17.48694389 886.019202 0.002257287422 +2.496964334e-06 -0.006458919379 -0.009770047087 0 19.73392484 10.74135572 911.4266471 0.002194362 +2.499350656e-06 0.002231236408 0.00874460161 0 -3.361821486 -11.52281303 1053.180342 0.001899009999 +2.496106257e-06 -0.001476034569 0.01073918342 0 7.024763169 25.25058355 938.6565277 0.002130704833 +2.499767885e-06 0.007216077922 0.007802930572 0 -5.862857305 3.3984446 994.560298 0.002010938908 +2.493469315e-06 -0.002289107898 0.008295069183 0 -21.05890412 24.93583389 902.2153109 0.00221676575 +2.497524503e-06 -0.006186411991 -0.01271361681 0 -13.63991501 19.25291243 1060.013988 0.001886767555 +2.499210394e-06 0.002395000653 -0.005614308924 0 -10.15518177 -5.762853912 929.0457242 0.002152746574 +2.493764249e-06 -0.007994254082 -0.00628675391 0 -25.16167308 -22.91172219 962.7175231 0.002077452578 +2.496871971e-06 -0.004176027724 -0.008442174105 0 23.22712616 12.25266716 1049.428611 0.001905799002 +2.499916077e-06 -0.006778946808 0.01300291324 0 0.7417544717 -3.528168375 879.995325 0.002272739347 +2.499442881e-06 -0.003577303747 0.01269752403 0 -9.482764149 5.496152216 1038.248916 0.001926320336 +2.499797193e-06 -0.004849513331 0.001305095579 0 0.2822666161 5.792974688 910.6404005 0.002196256611 +2.4958936e-06 -0.002105098772 -0.008897414126 0 -19.74271709 19.59327973 969.9848827 0.002061887804 +2.498512204e-06 0.00566233851 -0.007858297911 0 -11.04373035 13.32932259 1003.257833 0.001993505492 +2.495684045e-06 -0.008790519633 0.002571424877 0 15.15339648 21.70908481 900.5259132 0.00222092443 +2.495215675e-06 -0.00914217208 -0.01309634785 0 -25.23276309 15.86489396 962.8615688 0.002077141787 +2.493879284e-06 -0.006440438903 0.005415853998 0 -25.88519988 26.52747714 1058.372797 0.001889693315 +2.499033561e-06 -0.005921713342 -0.005398311198 0 13.99496909 -4.963935667 1067.920688 0.001872798255 +2.497072098e-06 0.007954342556 -0.00146271117 0 20.08664346 -14.50580267 1023.438422 0.001954196713 +2.498714595e-06 -0.003754276973 -9.807590162e-05 0 -14.07168835 -8.642964106 1029.756028 0.001942207615 +2.495729517e-06 0.008300833432 0.01354762825 0 -21.75641299 22.17186985 1062.225562 0.001882839268 +2.498621557e-06 -0.001490078652 -6.621186621e-05 0 0.5017797609 15.49552111 933.5434629 0.002142374811 +2.498432393e-06 0.004215440555 -0.001694724981 0 -4.965010013 -17.74346805 1040.333456 0.001922460523 +2.493933417e-06 0.002965501011 -0.01437212425 0 22.66284973 -20.40652468 874.7138768 0.002286461954 +2.499959135e-06 0.008876128662 0.0010319498 0 -1.817542554 -2.091689532 969.2822337 0.002063382501 +2.499996039e-06 0.007411536253 0.01157940258 0 -0.8088851507 0.1230547288 919.21645 0.00217576611 +2.498418679e-06 -0.004270401481 -0.01098135377 0 16.79284521 -2.686327025 956.0555802 0.002091928588 +2.498670128e-06 -0.005712512326 -1.95756834e-05 0 15.70089576 -2.915885799 978.9961386 0.002042908977 +2.496757032e-06 -0.0001736504957 0.00692437574 0 15.5296883 18.98582609 962.6491782 0.00207760007 +2.495779512e-06 -0.00317947167 0.01110202777 0 9.856540489 25.14767623 929.0907513 0.002152642244 +2.49574108e-06 0.007782137878 0.01262590415 0 22.88161465 16.62995772 968.5815344 0.002064875211 +2.497444913e-06 0.003316758983 -0.003134731469 0 -20.68107686 2.796475057 922.8333961 0.002167238429 +2.499030439e-06 0.004061170416 0.007489679754 0 6.987774562 10.89758977 929.5090329 0.002151673549 +2.498178522e-06 0.009067784711 -0.01106390633 0 -15.83259463 -7.555344277 918.8750057 0.002176574602 +2.498859413e-06 0.008130184324 -0.00396270213 0 7.201871418 -11.94748145 923.4815172 0.00216571741 +2.498887031e-06 0.006170596131 -0.006124597499 0 -5.664636335 -11.89524644 882.9314921 0.002265181408 +2.497900445e-06 -0.009248504071 0.005457172513 0 -13.08357727 -13.57856141 919.8973498 0.002174155628 +2.498278589e-06 0.001062725852 0.00445075063 0 -11.86652 -14.11977723 993.7714129 0.002012535251 +2.498591454e-06 0.004550248799 -0.00965328045 0 -12.82020622 -8.414049075 913.4480948 0.002189505908 +2.493905026e-06 0.0006658235984 0.011193612 0 18.17934962 29.64447463 995.0975422 0.002009853221 +2.496797812e-06 -0.007127604876 0.00743180376 0 15.58474528 21.72490892 1055.995643 0.001893947208 +2.499302882e-06 -0.002365746684 0.004851101527 0 -3.860208055 -11.91815086 1060.86007 0.001885262776 +2.497146476e-06 -0.000293365079 -0.01391813139 0 9.628761503 -20.1344004 933.8338438 0.002141708628 +2.496702175e-06 0.0002149508521 -0.008933897058 0 -7.77671471 -21.1031437 875.2945422 0.002284945128 +2.499019129e-06 -0.003275509868 -0.001099595195 0 -10.86356445 -7.394888898 938.1300591 0.002131900562 +2.499001808e-06 -0.00927899614 0.005416748954 0 11.03078251 9.96702867 1052.03077 0.00190108508 +2.497604009e-06 0.003358302452 0.006755637629 0 -14.60619384 15.69768729 979.153991 0.002042579633 +2.498751163e-06 0.005557947187 0.01271032327 0 -14.15616307 -7.367512938 1009.591558 0.001980999131 +2.496365497e-06 0.001330591314 -0.0103487157 0 25.68551035 11.94668443 1050.121667 0.001904541219 +2.498968986e-06 0.007292740215 0.01443476234 0 13.99216116 -4.531296328 1024.064168 0.001953002617 +2.498563854e-06 -0.008257203097 0.01393151634 0 0.6703629967 -16.43484495 970.3285069 0.002061157624 +2.49481358e-06 -0.0006823456148 0.006608891641 0 19.70164463 22.90999761 937.4622198 0.002133419308 +2.497136387e-06 0.009087868943 0.0006697923085 0 -7.103644975 -24.54767227 1067.368499 0.001873767121 +2.495415737e-06 0.007423611549 -0.003430899619 0 25.101204 13.10889014 934.5769946 0.002140005598 +2.498725136e-06 0.006542749167 0.01193139788 0 14.40035855 0.5776223328 902.3859612 0.002216346537 +2.495133424e-06 -0.006302836863 -0.003960134347 0 -25.37005543 -18.36177457 1003.10168 0.001993815821 +2.497380225e-06 0.001797667742 -0.001667331986 0 16.8707364 11.71708327 897.0014153 0.002229650886 +2.498108729e-06 0.006171853421 0.01259546593 0 9.98946738 16.93560629 1010.690503 0.00197884515 +2.498007378e-06 0.00609045608 -0.01235393194 0 14.882349 14.03399951 1024.372683 0.001952414421 +2.498556215e-06 -0.005563868415 -0.005870740938 0 14.74572262 4.160589878 901.4457786 0.002218658124 +2.49990565e-06 -0.009511849312 -0.01294113213 0 4.024011679 2.328601801 1070.252428 0.001868718022 +2.499081985e-06 0.003940617442 0.005446373806 0 -4.11636443 13.1455697 1016.463412 0.001967606484 +2.496954888e-06 -0.002821556507 0.0009762812289 0 -15.99032582 19.38628013 1017.836187 0.001964952735 +2.49592497e-06 0.004728035587 -0.003504790636 0 9.451617075 -23.86304003 898.511011 0.002225904831 +2.496069186e-06 0.001654388113 -0.006906370295 0 22.56147997 -14.67246454 959.284092 0.002084888113 +2.49642458e-06 0.005615397003 -0.006698349046 0 21.67271468 18.2070324 1057.936498 0.001890472637 +2.499332404e-06 0.008439221703 -0.008522323142 0 -7.741738222 -7.599984127 938.7765286 0.002130432472 +2.495653996e-06 -0.003790193694 -0.01321763815 0 13.3748248 -24.43116195 944.1095971 0.002118398125 +2.499911103e-06 -0.003594119269 0.01229030402 0 -3.401745669 -2.334392229 978.4322528 0.002044086337 +2.498011552e-06 -0.006550777452 0.01242509962 0 -17.93622518 -10.96686032 1053.900841 0.001897711741 +2.49576474e-06 -0.003296677563 0.01162599688 0 14.21475412 22.59071028 916.4960925 0.002182224252 +2.498609973e-06 0.008530454081 0.01373269792 0 -15.16510163 7.921743543 1025.934687 0.001949441836 +2.498788572e-06 -0.003216393711 0.0002426248603 0 -13.24988796 7.556229654 979.7483341 0.002041340547 +2.497426412e-06 -0.001235662522 0.009624867146 0 -21.56211962 5.427913779 979.6735692 0.002041496334 +2.499840196e-06 -0.004844713369 -0.009956940652 0 2.236442838 5.11332099 987.1747369 0.002025983775 +2.495871729e-06 -0.003075868478 -0.01322627153 0 -23.87672471 -19.07311707 1062.863996 0.001881708296 +2.499664814e-06 0.0002471042657 0.01107520349 0 8.688093632 -0.07586815831 1061.112669 0.001884813986 +2.49899634e-06 -0.0006141001172 -0.01113821488 0 6.11780233 12.94662957 1010.528529 0.001979162332 +2.499471348e-06 0.006327570537 0.01155045594 0 -3.560770478 -9.882747702 1021.521513 0.001957863809 +2.495979419e-06 0.008885549218 -0.01052320812 0 25.98735439 4.540195409 929.7567833 0.002151100197 +2.495479079e-06 0.004926798334 0.002837273155 0 14.90064855 23.68322541 929.9010606 0.002150766447 +2.49841586e-06 -0.000991586009 0.003322399375 0 -2.007013727 18.94268866 1069.918559 0.001869301156 +2.49614866e-06 0.002637201198 0.008175848275 0 -15.68256736 21.05300994 945.348324 0.002115622305 +2.499365866e-06 7.001099642e-05 -0.008194720424 0 10.01303739 1.915702084 905.1599675 0.002209554191 +2.496891042e-06 -0.001602585376 -0.0007527523069 0 7.232322495 23.66214216 991.7970082 0.002016541675 +2.495506643e-06 -0.009080326566 0.01317250113 0 -26.1575464 11.35911609 950.6436494 0.002103837754 +2.493470049e-06 -0.0006594937388 0.01324375093 0 21.65784556 26.25732076 940.9225241 0.002125573518 +2.495104756e-06 -0.005607791166 0.01244145165 0 15.3282693 24.74569569 929.6053382 0.00215145064 +2.497737804e-06 0.008247348615 0.003174534549 0 7.554672672 20.59490066 1030.969104 0.001939922344 +2.498770792e-06 0.008906946904 -0.01381001606 0 -11.72065243 -7.45095875 885.620281 0.0022583042 +2.498218218e-06 -0.001295761354 -0.01196785908 0 -18.29145758 -5.653121975 1013.910217 0.001972561245 +2.498117398e-06 -0.002846485227 -0.01299571787 0 -6.046261183 19.01275663 1027.892341 0.001945729062 +2.499964482e-06 0.007790433662 0.003811575884 0 1.759813262 -1.58583918 888.8098879 0.002250199989 +2.496960111e-06 0.005298422626 -0.007748985607 0 24.44818745 5.451685713 1015.411995 0.001969643858 +2.497361143e-06 0.005888472986 0.002388494527 0 21.38608862 -8.797510244 1006.201457 0.001987673529 +2.49777501e-06 0.008267751606 0.007292793074 0 -15.28372824 12.27090058 928.8300001 0.002153246557 +2.497061908e-06 0.009970674622 -0.00661166758 0 12.20123136 -21.76682587 1028.934945 0.001943757484 +2.498127245e-06 -0.0002099731425 0.008504712316 0 14.41018754 9.392166178 888.5262574 0.002250918286 +2.49951751e-06 0.007460897886 0.008956432433 0 5.356205925 7.922774545 973.4712781 0.002054503348 +2.498213528e-06 0.00845616648 0.01058314685 0 -7.55365321 16.04130339 937.7749551 0.002132707841 +2.499501338e-06 -0.0008919810504 -0.008390943096 0 5.970999396 -8.653138359 1052.661798 0.001899945456 +2.498440542e-06 -0.003022652762 -0.008851134537 0 15.80420699 8.562980113 1017.567752 0.00196547109 +2.497152525e-06 -0.00827264667 0.002231270929 0 -7.987984504 -19.39183812 878.460771 0.00227670952 +2.497374934e-06 0.003836392099 0.009556856181 0 -18.29575301 -8.77413314 885.2067987 0.002259359059 +2.499025907e-06 0.0008438458247 -0.005536073665 0 5.361676658 11.406126 902.8409821 0.002215229525 +2.496117327e-06 -0.004521199744 0.005645627745 0 -28.45649772 -8.262554975 1062.732919 0.001881940387 +2.497009876e-06 -0.009361597416 -0.006768391323 0 -22.84876492 -11.84655173 1051.980996 0.001901175028 +2.49737913e-06 0.008535795598 -0.007972915568 0 17.40886368 -16.67263064 1052.437609 0.001900350181 +2.497229299e-06 0.0002168200025 -0.003416965718 0 23.7931596 3.616220085 1021.92891 0.001957083296 +2.498609337e-06 0.001818582336 -0.01431296348 0 -15.16042168 -1.270416011 912.0405965 0.002192884843 +2.497519681e-06 0.003592525921 -0.01408426312 0 -19.65860199 12.06104046 1035.133888 0.001932117211 +2.49702199e-06 0.007930675233 -0.004946978025 0 24.37232123 -3.025896155 1005.880323 0.001988308106 +2.498294798e-06 -0.009727348131 -0.008559096975 0 4.00345946 -17.40633676 966.9119021 0.002068440771 +2.498384788e-06 0.001164458441 0.0009481729218 0 -4.446532728 -17.91412998 1026.699117 0.001947990378 +2.499890294e-06 0.006168904481 0.01469221323 0 1.432896021 4.424871068 992.9291826 0.00201424234 +2.499073077e-06 0.009821116244 0.007306048579 0 -1.080327018 14.32545921 1054.97645 0.001895776915 +2.497627652e-06 -0.008210526244 0.01058921745 0 20.32901423 -6.678799136 982.0073011 0.002036644736 +2.497357512e-06 0.005351903527 -0.01010108477 0 5.166705098 -20.35196159 913.0087465 0.002190559518 +2.497705623e-06 0.006979114828 0.01038757017 0 16.54455977 -10.76629435 921.1541897 0.002171189169 +2.497609158e-06 0.006866171085 0.001945095775 0 -0.8470213192 22.41987308 1025.643953 0.001949994435 +2.496300781e-06 -0.002735695443 0.006676421617 0 -5.436314361 27.92891715 1045.485915 0.001912986077 +2.496818731e-06 0.002594790519 -0.009486082031 0 24.35950669 -2.656384633 970.9860346 0.002059761859 +2.498270494e-06 -0.008826508331 0.001921908658 0 -19.58607457 1.343557765 1055.305193 0.001895186353 +2.499717558e-06 -0.004644559864 -0.006556227012 0 -4.005942856 -6.932960882 1065.311526 0.001877385113 +2.499551557e-06 -0.001740137124 0.009822335327 0 8.544084734 3.624383661 979.9374532 0.002040946586 +2.497810789e-06 -0.0009716988122 0.003059920545 0 19.09211173 -9.771685922 1024.648499 0.001951888869 +2.497367595e-06 -0.00446544202 -0.01029362068 0 0.4356278027 -21.2811384 927.3056997 0.002156786053 +2.497642499e-06 -0.00169517098 0.003856346395 0 -21.56528724 -7.802344295 1055.778384 0.001894336946 +2.499682789e-06 0.009690094008 0.007091647745 0 -7.056508212 -4.315777179 1038.442377 0.001925961464 +2.497373191e-06 -0.007329885531 0.00516222555 0 -15.19053794 -13.58317134 888.703694 0.002250468872 +2.498463922e-06 -0.006273901928 0.006297135546 0 -16.72930573 1.463929141 957.8833567 0.002087936893 +2.496374225e-06 -0.009320244114 0.002179873162 0 -21.13519647 14.03949397 941.727039 0.002123757646 +2.498702065e-06 -0.006891311263 0.004136723459 0 1.565650404 -17.17267506 1070.063142 0.001869048584 +2.499880424e-06 0.006234409749 -0.006920293446 0 3.257872227 3.446891011 969.8307953 0.002062215398 +2.498390397e-06 -0.006068028733 0.0005537609174 0 -9.116075698 -14.32704388 946.223008 0.002113666634 +2.498356211e-06 0.008066348662 -0.01286413383 0 7.342626908 -15.81002697 961.168587 0.00208080042 +2.499362402e-06 -0.009264400401 -0.005988632762 0 9.387666443 4.560646914 924.1433708 0.002164166365 +2.497394617e-06 0.005364103885 0.01320994969 0 -12.59433462 16.24237316 900.0316526 0.00222214407 +2.499665596e-06 -0.00608438361 -0.008696307871 0 7.234994196 -4.179210428 1021.620225 0.001957674633 +2.498227809e-06 0.002707639085 -0.003207683531 0 -14.68663243 11.45498167 989.0655194 0.002022110731 +2.497756979e-06 0.003819605117 0.01107959528 0 -11.97505602 17.03985729 982.9836155 0.002034621909 +2.498666983e-06 0.005459964341 -0.007934105177 0 12.3485482 11.45631553 1031.420858 0.001939072674 +2.496069962e-06 -0.0006733941427 0.006319914688 0 -20.85725221 17.27309213 965.3756075 0.002071732478 +2.497370973e-06 0.003711556951 0.00140887341 0 -14.85385695 16.1656871 957.0277534 0.002089803554 +2.498758076e-06 -0.008400407843 -0.01178844902 0 13.57712698 3.543319014 890.1685656 0.002246765475 +2.496047782e-06 -0.008526202799 -0.008771852881 0 -26.98769966 11.69280627 1045.513017 0.001912936489 +2.498662993e-06 -0.00310524927 0.003163021971 0 -16.08550944 5.713772398 1043.683804 0.001916289198 +2.495977929e-06 -0.002128672306 0.008546169105 0 -10.72314979 28.30042083 1066.404362 0.001875461195 +2.498504006e-06 0.00113441797 -0.006249557119 0 16.21020916 6.931593027 1019.003283 0.001962702215 +2.494975193e-06 0.007018552315 -0.007831553507 0 13.04211639 -28.05258984 975.1327515 0.002051002796 +2.498069335e-06 -0.009131285702 -0.009726175354 0 -17.28951418 5.112943312 917.2628689 0.002180400044 +2.494331511e-06 0.0002760726633 -0.00265041925 0 21.87466108 -22.40297563 929.1419074 0.002152523726 +2.498962586e-06 -0.002741532461 -0.00288848191 0 3.792823339 13.52425094 974.9781622 0.002051327996 +2.494615115e-06 0.003923581271 0.001872110995 0 23.40581627 19.6728557 930.93086 0.002148387261 +2.49995869e-06 0.009639851633 -0.004301759389 0 -0.3559645483 2.659834912 933.605568 0.002142232296 +2.499550553e-06 0.008200923116 0.002959989191 0 0.679461127 8.633216015 913.3347274 0.00218977768 +2.498911042e-06 -0.006072091474 0.01168682041 0 -7.322605952 -12.95209363 1008.033794 0.001984060466 +2.495208601e-06 0.008381269611 0.01047977886 0 10.85537162 25.07974972 882.1717344 0.002267132262 +2.499978763e-06 0.005807396346 -0.001823222833 0 -0.2151188372 1.850195345 903.8023552 0.002212873189 +2.498277397e-06 0.008852682603 -0.006001738929 0 -16.15649409 -2.442478831 880.1042714 0.002272458009 +2.498183032e-06 -0.00503753541 -0.007425695679 0 -3.643938994 19.19370622 1024.567869 0.001952042476 +2.497695963e-06 0.006518728337 -0.003165022074 0 -9.466381448 16.526352 886.918067 0.002254999728 +2.497765339e-06 -0.0008670193562 -0.009225415543 0 -10.07376311 18.22933446 984.8565968 0.002030752504 +2.498906233e-06 -0.00101222056 0.01202180004 0 -4.840784196 -13.12555476 945.7178974 0.002114795549 +2.497636011e-06 -0.006109122848 -0.006187547743 0 -12.73401425 -18.95801078 1049.931232 0.001904886662 +2.497991431e-06 0.008846582109 0.002157337458 0 12.47157218 13.9299493 932.580359 0.002144587306 +2.496624728e-06 -0.007413376207 -0.01369911264 0 -21.19866528 -10.01004035 901.8363774 0.00221769719 +2.497946498e-06 0.006869796771 -0.003540451869 0 14.33774309 -16.02514402 1060.721459 0.001885509134 +2.497536866e-06 0.008099646536 0.005713960673 0 16.30123351 -11.55446524 899.9021003 0.002222463976 +2.497541462e-06 -0.001297275717 -0.01408511407 0 15.2778463 -12.36874548 886.1434578 0.002256970903 +2.496010438e-06 -0.003220374999 -0.00131151472 0 -20.12987272 -22.21099434 1060.549734 0.001885814437 +2.49267921e-06 -0.007980699968 -0.01149725685 0 -26.74489406 -29.87746388 1046.803205 0.001910578789 +2.499116202e-06 0.001919958466 -0.01089238262 0 9.520614285 8.356307418 952.6816512 0.002099337168 +2.49891124e-06 -0.007828254369 -0.006296068202 0 -12.83128435 -5.364664761 942.3243164 0.002122411536 +2.497709732e-06 -0.004934441489 0.01322539698 0 -13.03870703 17.80886593 1030.931866 0.001939992414 +2.493745357e-06 0.009166826108 -0.01487855996 0 -16.80866902 -30.55703296 985.1212181 0.002030207007 +2.498550348e-06 0.005279313824 -0.006745664505 0 15.70544096 6.717594611 1002.978421 0.001994060846 +2.493021056e-06 0.008774936618 -0.01049370386 0 27.17604267 -23.00977084 952.1213249 0.002100572635 +2.497551162e-06 -0.00182209813 -0.005229038789 0 16.85584856 15.24157977 1026.476811 0.001948412257 +2.499908551e-06 0.0002282033488 0.01444550097 0 -4.232100071 1.404909823 1042.669112 0.001918154069 +2.498579014e-06 -0.00766668323 0.004215621476 0 7.178121132 -16.10421534 1045.653276 0.001912679896 +2.496168922e-06 0.009277864741 -0.01065417582 0 27.84764743 -7.155522602 1038.118414 0.001926562492 +2.499984703e-06 0.009433584958 0.006090553093 0 -0.2061192684 -1.644008271 947.2523836 0.00211136972 +2.496807515e-06 0.005706988969 -0.004043913377 0 -11.64229402 -23.47700718 1036.573357 0.001929434118 +2.498042844e-06 0.008322869237 -0.006524466667 0 -10.07058716 15.82130444 947.6536495 0.002110475701 +2.498088029e-06 -0.00688419905 0.008940753923 0 15.90092911 -10.1057288 963.1917577 0.002076429729 +2.49699789e-06 -0.001221847567 -0.006198968687 0 -20.20093746 -13.90377703 1000.357377 0.001999285502 +2.497528699e-06 -0.00522547123 0.004606798324 0 -11.86184922 19.37281685 1021.386124 0.001958123332 +2.499258048e-06 0.009956927816 0.01485240993 0 10.55903362 -6.466096919 1016.30671 0.001967909864 +2.495328689e-06 0.001048294259 -0.01141360269 0 21.72823624 -18.11263022 924.8171392 0.002162589679 +2.495535319e-06 -0.005151104298 0.01296672225 0 -10.93086923 28.90746112 1033.543707 0.001935089911 +2.497268449e-06 -0.003233212074 -0.007008938142 0 17.74545747 -11.86614851 912.9458621 0.002190710406 +2.496479753e-06 -0.0001700233202 -0.007222923751 0 -7.427473995 -27.01426041 1055.325807 0.001895149334 +2.499008834e-06 0.004611033658 -0.001779293537 0 12.11361162 8.836847325 1064.814228 0.001878261904 +2.499807837e-06 0.007220902112 -0.00874198202 0 -0.5493638227 5.488275697 889.6885445 0.002247977691 +2.499230261e-06 -0.0002528232243 -0.008880604331 0 1.268307352 11.54013299 935.580427 0.002137710391 +2.497646898e-06 -0.006213893318 0.005161596634 0 -0.6504439126 -20.17229953 930.0201303 0.002150491086 +2.499336631e-06 -0.00161154795 0.003642022514 0 -12.07558707 -1.766998654 1059.431375 0.001887805145 +2.497271847e-06 -0.008807744985 0.004467950617 0 -9.810243445 21.76926047 1021.796026 0.001957337813 +2.499872967e-06 -0.001426556488 0.005714066445 0 3.715768101 -2.665143918 907.1820918 0.002204629057 +2.498750664e-06 -0.006814917582 -6.640127627e-05 0 -14.73319375 2.060091885 940.9476885 0.002125516673 +2.499920797e-06 -0.00770586404 -0.01290516278 0 -3.44413022 -0.7345009052 884.8033708 0.002260389219 +2.497074889e-06 0.001996133253 0.01444333406 0 11.28623892 19.66781153 937.1089523 0.002134223555 +2.499711039e-06 -0.007719318485 -0.005408776647 0 -2.460510186 -6.887538847 962.0380535 0.002078919844 +2.497942452e-06 0.008294785512 0.01080470339 0 -14.85102987 -12.42874035 954.3485648 0.00209567036 +2.498313531e-06 0.005933452621 0.009401523618 0 6.882542555 16.21506233 958.9041158 0.002085714272 +2.499026028e-06 -0.004974361365 -0.01487986512 0 7.256003967 12.55057915 1038.556815 0.001925749243 +2.497816083e-06 -0.008679056931 0.001116616549 0 -13.28526745 -13.55301327 907.7911839 0.002203149838 +2.497413735e-06 0.006211372036 -0.007576597799 0 -12.91595371 15.39476025 883.2306474 0.002264414178 +2.499423544e-06 -0.002831581542 -0.01018642862 0 -10.78122843 -0.6330038704 1005.726506 0.0019886122 +2.496102627e-06 -0.003229957581 0.002820856569 0 11.3837924 26.48610997 1031.983648 0.001938015204 +2.499842692e-06 0.009458963042 -0.002011688661 0 -1.448458898 -4.844571438 901.4603416 0.002218622282 +2.496049388e-06 -0.005080037406 -0.003157500455 0 20.28197545 -19.15520262 991.8895536 0.002016353527 +2.499060064e-06 0.0006448961981 0.002067844032 0 7.74016704 -10.53095386 953.08742 0.002098443394 +2.49846579e-06 0.001100433879 0.01054151741 0 18.08793195 -0.7666328951 1033.287683 0.001935569379 +2.499346757e-06 -0.007903871415 0.001198044587 0 -1.712462449 10.96044487 970.4434318 0.002060913531 +2.496579178e-06 -0.003575016637 -0.007075996127 0 6.196874629 -22.60685139 895.7136158 0.002232856534 +2.496300346e-06 -0.007843667869 0.008080765565 0 -23.43221814 14.88268763 1019.923075 0.0019609322 +2.498001009e-06 -0.006481636325 -0.0002722394723 0 -0.294200744 -18.08868499 904.5108382 0.002211139895 +2.499494723e-06 -0.003967238078 0.008951122065 0 -7.448400591 -4.757620534 879.1248901 0.00227498962 +2.499549302e-06 0.008929985822 -0.003546408664 0 8.052093685 4.107605751 952.022117 0.00210079153 +2.497099135e-06 -0.00500622984 0.0009106986481 0 -22.34416841 0.9191709299 928.0332047 0.002155095302 +2.499033469e-06 -0.008751905537 -0.01448339628 0 -9.460113961 10.4102863 1011.58337 0.001977098537 +2.495661958e-06 0.004570055907 0.01144020337 0 -5.18247455 27.53125287 950.4789936 0.002104202211 +2.497142128e-06 0.008785672216 0.006931323207 0 13.61789959 -21.50752599 1064.319116 0.001879135656 +2.498636894e-06 0.005109732132 -0.001844596742 0 10.22382535 -11.32201811 923.7261036 0.002165143967 +2.499495526e-06 -0.00407367683 -0.01123741591 0 -7.329908783 -7.85350209 1069.412108 0.001870186418 +2.499829076e-06 -0.006565385698 0.005080986663 0 -5.394683412 2.822092845 1041.273225 0.001920725465 +2.499944249e-06 -0.00065031162 -0.01008969799 0 1.754586746 -2.762965007 980.1728872 0.002040456358 +2.497508776e-06 -0.008038920616 0.00376719275 0 -19.70630199 -11.53980332 1022.693919 0.001955619333 +2.49961454e-06 0.006481839037 -0.001117421051 0 8.574503129 1.183106507 985.7670204 0.002028876964 +2.494494497e-06 -0.008248265516 -0.002513130116 0 -26.63088511 18.72531995 980.2751504 0.002040243496 +2.496938979e-06 -0.00523753731 0.0115154123 0 20.94388532 11.18475168 959.1658171 0.0020851452 +2.498824081e-06 0.0003235410387 0.01391344528 0 -15.26261554 5.881111626 1066.374806 0.001875513176 +2.499237112e-06 0.009530463894 0.008417170176 0 6.606249906 -8.752555086 887.66098 0.002253112444 +2.497871391e-06 0.004951151977 -0.01311740432 0 12.91238098 -12.71699433 878.0798528 0.002277697175 +2.498983066e-06 0.008812175621 0.0009227611218 0 -0.6905711135 14.98081975 1051.401968 0.001902222044 +2.49833282e-06 -0.008055960378 0.01300793618 0 -5.465869478 -15.10130275 879.2895295 0.002274563648 +2.498883723e-06 -0.007578868861 -0.002470903785 0 -15.0457141 5.00668164 1061.069216 0.001884891173 +2.49782881e-06 -0.002545352066 -0.008864597082 0 -17.08668324 11.45582586 986.8760749 0.002026596906 +2.499857003e-06 -0.0008874183102 -0.00850884831 0 -3.987226986 2.759757064 906.7301387 0.002205727939 +2.497971112e-06 -0.005492858407 0.01226954709 0 8.491274736 -16.90613416 938.8931124 0.002130167932 +2.496410982e-06 -0.0001370325731 -0.003438193733 0 -17.92150613 16.45754787 907.6857831 0.002203405669 +2.497463987e-06 0.001221194658 0.002930313419 0 -19.49681155 8.060501444 936.4217826 0.002135789702 +2.496379585e-06 0.007394168861 -0.003787077558 0 23.39074014 9.870337266 942.9706859 0.002120956706 +2.49763071e-06 0.005396550582 0.01169861809 0 11.32205072 19.32225687 1028.427252 0.001944717039 +2.497658779e-06 -9.287465829e-05 0.001654044392 0 -21.40449434 -4.750890492 1012.88199 0.00197456369 +2.498489409e-06 -0.002943637418 -0.01465024092 0 -11.85821526 10.58226047 914.1787903 0.002187755854 +2.499274399e-06 0.009709187197 -0.01246290882 0 -3.528412222 11.56841808 1003.872091 0.001992285688 +2.494360827e-06 0.002243137974 0.01482094834 0 -15.87361825 31.68182566 1054.275697 0.001897036995 +2.499686978e-06 -0.0027408265 0.0004062675918 0 -5.692043154 -4.182250159 892.6606233 0.002240493137 +2.49618638e-06 -0.005608627554 -0.003334530999 0 -25.8142428 -13.99975843 1062.708297 0.001881983989 +2.496311775e-06 -0.00515591017 -0.008788982132 0 -24.41035142 -14.19939837 1039.197285 0.00192456238 +2.49876546e-06 0.009171329276 -0.01297813611 0 -1.082029735 -15.4523842 985.6203974 0.002029178785 +2.496863012e-06 0.006325581404 -0.004401038541 0 -17.94896274 -17.20399552 992.129746 0.002015865373 +2.499001847e-06 0.002104826649 -0.01259950201 0 14.22985182 0.3386615451 1007.267565 0.001985569742 +2.496550516e-06 0.0001618858147 0.002819855239 0 14.54945337 -18.68960485 901.2801444 0.002219065861 +2.497847823e-06 -0.007859137608 -0.01249966194 0 18.34910423 -7.519815795 955.5053052 0.002093133329 +2.495723308e-06 -0.001581578688 -0.01270588181 0 23.98928813 16.90764365 1002.866502 0.001994283383 +2.496612256e-06 0.002214265773 -0.0004962360975 0 11.14320609 -23.93390923 1013.739128 0.001972894155 +2.49965877e-06 -0.005055970056 -0.004445681996 0 -1.260847912 -8.526704626 1043.319472 0.001916958375 +2.499182066e-06 0.006270754696 0.01426620033 0 -8.548726609 -8.460770624 940.2752185 0.002127036809 +2.497699255e-06 -0.005375061813 -0.01332889612 0 10.33457051 -17.23179732 936.3770604 0.002135891709 +2.49852159e-06 -0.004201328591 0.002830756952 0 14.81296252 4.846058761 906.175524 0.00220707793 +2.499317752e-06 -0.007759344699 -0.007943321492 0 -9.594449529 4.526363815 908.0835067 0.002202440618 +2.495054259e-06 0.006736186785 -0.001590391996 0 21.42383487 25.14884399 1049.657903 0.001905382692 +2.497678045e-06 -0.00265765355 0.004591585037 0 -13.81647024 -15.36388328 958.4999282 0.002086593792 +2.496582266e-06 0.003955297722 -0.002131844242 0 -18.87334905 15.54742024 934.7955423 0.002139505282 +2.498115799e-06 0.003133004443 -0.0126104723 0 -18.55595326 1.513547262 958.7862326 0.002085970712 +2.498724085e-06 0.002297654613 0.001546576854 0 -11.18241286 -11.80241236 1017.595386 0.001965417716 +2.496468503e-06 -0.004281060845 0.01070107542 0 -16.34186153 18.77299581 936.0296992 0.00213668434 +2.49700534e-06 0.009630736164 -0.01301127482 0 18.75101687 16.05541948 1008.228826 0.001983676669 +2.496445604e-06 0.00122291089 -0.01370585869 0 10.48762205 -22.37144147 926.1964537 0.002159369097 +2.497630345e-06 0.0004095419124 -0.01150028107 0 15.84525511 -11.34957116 894.9813317 0.002234683484 +2.495250165e-06 -0.001602733368 0.007429493414 0 11.57957637 24.61961121 882.0923969 0.002267336174 +2.496815716e-06 0.009257793338 -0.0008347520605 0 6.763179735 21.91589285 908.4139398 0.002201639487 +2.498730126e-06 -0.003546147584 0.006819526646 0 -15.71208463 -1.873283399 992.7061668 0.002014694848 +2.497692099e-06 -0.002327125315 -0.004282067672 0 8.619435129 -19.40511239 987.9695132 0.002024353964 +2.498272493e-06 0.0004924930213 0.01169854891 0 18.70474218 6.645792408 1067.650923 0.001873271457 +2.496574512e-06 -0.003172030943 0.01293207429 0 -19.86023024 -12.51843807 896.4611842 0.002230994532 +2.497194614e-06 -0.009244040139 0.006324664622 0 -10.89778278 22.74181792 1064.187171 0.001879368643 +2.498963709e-06 0.004902980584 0.01083449755 0 -3.049517979 -12.43888692 889.4719933 0.002248524985 +2.495476855e-06 -0.002150446032 0.01200176226 0 15.18302892 24.85368379 967.6686183 0.002066823251 +2.498976539e-06 0.007351050139 0.004609651614 0 -12.84278492 6.091929059 993.3693397 0.002013349839 +2.497936071e-06 -0.00594407252 0.009128057042 0 -19.89904413 8.233259064 1059.617369 0.00188747378 +2.495766502e-06 0.002513512117 -0.01125582919 0 23.63500823 -16.73662411 994.6492101 0.00201075915 +2.495057572e-06 0.009769596369 0.00481118219 0 21.446453 23.74578475 1016.957552 0.001966650422 +2.499132812e-06 -0.001267383071 0.01168215014 0 8.900897612 10.27613189 1032.171888 0.001937661764 +2.498351792e-06 0.0004400577629 0.01339313564 0 9.500430154 -13.96756122 930.1677522 0.002150149793 +2.498518894e-06 0.0006551233632 0.01016312287 0 5.468927467 15.67020656 964.1136024 0.002074444334 +2.498877472e-06 -0.002716231844 -0.009438364673 0 -9.587627824 12.85372054 1070.036648 0.00186909486 +2.498791992e-06 -0.008204523292 0.003744389915 0 -5.238138044 -15.14991377 1031.104097 0.001939668367 +2.499004961e-06 -0.00441431581 -0.002169333855 0 12.35733186 8.313609592 1055.602248 0.001894653033 +2.499925794e-06 -0.007927154968 -0.002041108464 0 2.021137939 -3.572555833 1065.462455 0.001877119171 +2.498910314e-06 -0.006956148604 0.01242106436 0 8.767557002 -9.90413009 895.8495498 0.002232517726 +2.498547269e-06 -0.007850844883 0.01284777476 0 14.97791486 4.578307582 918.6403685 0.002177130538 +2.496943483e-06 0.001015663049 0.007712588499 0 -21.27594612 -11.40912803 975.9887763 0.002049203893 +2.498801156e-06 0.00684105142 -0.0009718350624 0 -11.2039069 -10.71408224 1000.966677 0.001998068513 +2.496157741e-06 -0.004822514621 0.006389211018 0 16.26706991 22.47447395 1000.247446 0.001999505231 +2.4984452e-06 -0.005203949125 -0.01437531848 0 -17.0569935 -7.173566308 1049.093103 0.001906408492 +2.499008001e-06 -0.00806022902 0.001523845992 0 -8.554347709 10.52336356 962.6687371 0.002077557859 +2.498410675e-06 0.004963251175 -0.01257571195 0 10.38540964 -15.50198299 1046.332298 0.001911438655 +2.499567753e-06 0.007207530821 0.01089872149 0 -7.773419684 2.541329753 879.5352868 0.002273928096 +2.499244985e-06 -0.003367757029 0.001643590441 0 -8.547144532 -7.934922805 948.9737793 0.002107539791 +2.497583947e-06 0.009479330955 0.002159523005 0 8.349570964 18.72204393 932.219009 0.002145418599 +2.498389868e-06 0.008656476568 -0.006856558565 0 -13.48599761 -10.25287801 943.8120696 0.002119065929 +2.493335551e-06 -0.001516729863 0.01493158812 0 -17.44039628 30.79829306 968.4832596 0.00206508474 +2.496948683e-06 -0.0001227633003 -0.002865476722 0 23.15705374 2.436558705 942.1424741 0.002122821181 +2.494167247e-06 -0.007160901027 -0.01404211213 0 -24.0685774 -19.52970935 906.6988599 0.002205804031 +2.498278482e-06 0.005802121358 -0.0002398031694 0 16.72212142 7.833752711 994.9295457 0.00201019259 +2.498314263e-06 0.004184885719 0.007435684002 0 12.53691533 10.16759421 878.8794866 0.00227562485 +2.499275745e-06 -0.009743845672 -0.0005503525003 0 11.80051551 0.812284309 982.6969606 0.002035215412 +2.499646021e-06 0.004896192118 0.001010546247 0 1.622900159 -7.817719248 948.888628 0.002107728917 +2.49701431e-06 -0.006538552959 0.006630260744 0 17.3990411 16.18389494 971.9766181 0.002057662667 +2.499101747e-06 0.00638556065 0.006062897039 0 2.610692047 13.28604901 1010.065834 0.001980068954 +2.498023565e-06 -0.005131916562 0.0003064317 0 4.361514802 16.88504792 876.8854181 0.002280799702 +2.498102707e-06 -0.002406986677 -0.01186639458 0 9.041667886 14.60422023 881.5174454 0.002268814997 +2.499190189e-06 -0.001504135034 0.001028047919 0 11.67772433 -2.644874478 940.7222536 0.002126026032 +2.497214197e-06 -0.001662470829 0.007861535554 0 13.63622405 -17.75548227 948.059049 0.00210957324 +2.49414354e-06 -0.0007558705658 -0.009988820949 0 18.58266772 -29.74424098 1023.868778 0.001953375317 +2.499490496e-06 -0.005978256152 0.002168576703 0 -10.75332347 -0.9368611085 1069.209079 0.001870541543 +2.498602396e-06 -0.00135675428 0.002240283815 0 15.6739747 -5.430625768 991.97016 0.002016189681 +2.499496636e-06 -0.005519023817 0.005402756478 0 2.227298064 -9.318987879 954.8666345 0.002094533339 +2.496905277e-06 -0.009879335244 -0.006308315063 0 -24.60841658 -10.0921318 1068.593819 0.001871618537 +2.494869204e-06 0.0002936080704 -0.008521424609 0 -16.44618249 -27.70882629 1005.102365 0.001989847074 +2.49890928e-06 0.00834439443 -0.01095017191 0 -0.1315707937 14.76966476 999.8735695 0.002000252893 +2.499042107e-06 0.007773982058 0.008705444809 0 1.842295597 12.44447239 908.758088 0.002200805722 +2.496990894e-06 0.004758546539 0.01289697718 0 21.92950143 -0.7173205892 893.9867558 0.002237169608 +2.49784555e-06 -0.002701167064 0.006341822539 0 -7.0007131 -18.72742171 962.8480155 0.002077171026 +2.499226345e-06 0.009886506749 -0.006545493845 0 7.806792647 -8.447415619 924.5892547 0.002163122695 +2.49949996e-06 0.007707529403 0.007251249764 0 -8.006295972 -6.980383434 1062.076266 0.001883103939 +2.497853247e-06 0.002908743764 -0.01137845628 0 4.234543715 -21.19166949 1042.607696 0.001918267061 +2.49908202e-06 -0.00114631481 0.01270019207 0 -10.9913807 5.841695569 918.5114115 0.002177436203 +2.499825197e-06 -0.007136203861 0.003511138943 0 -3.498634875 -4.578000591 974.4487657 0.002052442438 +2.499676186e-06 -0.004411928109 0.006876636855 0 6.067318083 4.156115369 913.8119867 0.002188634018 +2.499449574e-06 0.00906137648 -0.004972784242 0 8.326892818 -5.907939094 973.0128288 0.002055471358 +2.494718404e-06 -0.006257704562 -0.004510476168 0 18.84506221 -23.67194632 930.2219342 0.002150024555 +2.499618881e-06 -0.007461105795 -0.01278302305 0 0.006389106366 -8.381378958 959.9435142 0.002083455923 +2.498636077e-06 -0.005968122575 0.003466004049 0 8.784986295 -13.33105764 966.4519571 0.002069425164 +2.499988409e-06 -0.007664497467 -0.009531060769 0 -0.7084687281 1.451421167 1060.789877 0.001885387524 +2.499541211e-06 0.004037607191 -0.009350876212 0 -5.381579669 -7.776317747 987.1800135 0.002025972946 +2.499706863e-06 -0.004945437857 -0.000429883576 0 4.018640294 -5.44204958 883.4842858 0.00226376409 +2.499053737e-06 0.003680927153 -0.01078800462 0 4.569043769 13.77147848 1054.567279 0.001896512475 +2.496976311e-06 -0.006618509027 0.004605806095 0 -3.057338397 25.77087063 1054.832188 0.001896036188 +2.498968898e-06 0.007029619133 -0.0003076789202 0 -1.756247278 12.80254404 899.7287181 0.002222892256 +2.499463522e-06 -0.006632634182 0.01427033284 0 10.78564971 -0.5181788052 1042.368112 0.001918707965 +2.496236738e-06 0.009360724166 0.007895470583 0 15.56591157 22.23671971 988.8335395 0.002022585117 +2.497853957e-06 0.003613684 0.005999131962 0 21.06245506 -1.938457343 1020.625548 0.001959582537 +2.497629785e-06 0.007344537424 -0.008996645689 0 -16.04815626 16.00027748 1040.468617 0.001922210787 +2.499319406e-06 -0.006599028688 -0.002370099917 0 -4.937094971 9.711720276 933.7017199 0.002142011691 +2.495909203e-06 0.005519589791 -0.001190096035 0 19.00643234 16.72976844 884.6821459 0.002260698952 +2.498550303e-06 -0.00666601331 0.007507821615 0 -0.8998318914 -15.94541869 937.731116 0.002132807546 +2.498144373e-06 -0.008261601124 0.0120361264 0 18.71679123 1.872694525 976.1422504 0.002048881707 +2.499434419e-06 0.006556179528 -0.004146941614 0 -7.987203916 5.610236583 917.6546243 0.002179469211 +2.498695904e-06 -0.005382255563 0.00769168024 0 -7.330921845 -13.95735156 976.0052998 0.002049169201 +2.49535494e-06 0.002927632187 0.001451786952 0 24.57202996 14.32314008 932.4892816 0.002144796771 +2.4958032e-06 0.002947238516 0.002598524848 0 23.59983399 -11.16296866 900.5453861 0.002220876405 +2.498804391e-06 -0.0002592498064 0.003175045475 0 -10.54624086 -11.85479977 1025.901135 0.001949505592 +2.498237935e-06 -0.004538483457 0.01096713034 0 19.14075782 -3.841114218 1039.660723 0.001923704489 +2.498396968e-06 0.002104425053 -0.0009493396757 0 -18.10822129 -5.110019587 1050.565818 0.001903736031 +2.496483101e-06 0.00756009094 0.002557022588 0 16.94352672 19.88842899 984.6215492 0.002031237283 +2.499452839e-06 -0.00398614008 -0.002050057047 0 9.780801746 4.460580607 1027.536249 0.001946403353 +2.494655749e-06 -0.00556230363 -0.01048358241 0 15.15372993 -28.5740782 988.5131929 0.002023240574 +2.497339517e-06 -0.003320956761 -0.00386431315 0 -21.07977912 -8.938151556 992.2007734 0.002015721065 +2.499494758e-06 0.004132415736 -0.001985499929 0 -2.66820897 -8.965669545 930.4926607 0.002149399006 +2.497309998e-06 0.004801782537 -0.004183540342 0 -21.95237924 -6.91784415 991.9148858 0.002016302032 +2.497635342e-06 -0.00812618807 0.001480615062 0 -19.02802263 11.89713653 1031.556068 0.001938818511 +2.499464598e-06 -0.002902658307 0.01037682494 0 -4.893192144 9.861625827 1063.78154 0.001880085266 +2.496716632e-06 0.005897629666 0.009603227614 0 25.30930308 -6.727141798 1021.444509 0.001958011407 +2.493327251e-06 -0.004746628762 -0.01054517238 0 -19.36006775 -27.84819944 927.4904631 0.002156356404 +2.497540164e-06 -0.004204343269 -0.005814290699 0 -2.680785935 23.18852462 1052.029097 0.001901088103 +2.497280691e-06 0.004262347803 -0.0002880032407 0 -14.57580855 -18.09511104 995.9327031 0.002008167815 +2.496304355e-06 -0.00457964797 0.006389240068 0 -16.56543065 -21.4835674 997.2986507 0.002005417333 +2.498113447e-06 0.001290482846 0.009318149714 0 13.91274233 -12.05716923 947.5209068 0.002110771367 +2.498649976e-06 -0.000790524655 0.001555854867 0 -4.617097039 14.74382117 940.0491867 0.002127548248 +2.498386249e-06 0.008448267896 0.01440691404 0 18.68755602 4.139260899 1065.159198 0.001877653598 +2.496203894e-06 -0.009844834302 0.01106451169 0 -25.52652656 -6.838186239 958.5381215 0.002086510651 +2.498935122e-06 -0.005730527123 0.01446703575 0 -11.20745918 8.492983579 963.4089925 0.002075961524 +2.496468216e-06 -0.009148490913 -0.0002711825562 0 -25.29876833 -1.857478766 953.9476173 0.002096551177 +2.496135481e-06 0.005255275508 -0.01429926277 0 6.213698197 -24.02880766 892.2230852 0.002241591854 +2.497728313e-06 0.0007976283692 0.002817000865 0 19.96793591 3.98136034 954.9078179 0.002094443005 +2.495436961e-06 -0.00316112367 -0.0116191813 0 -20.99682975 -22.04381495 1007.053729 0.001985991355 +2.497702138e-06 0.005090927356 -0.002277836606 0 18.76520929 -1.459388073 877.6797897 0.002278735393 +2.497454663e-06 -0.003751538773 9.709348669e-05 0 20.95320381 -0.8936193989 929.1620703 0.002152477016 +2.49927876e-06 0.008844641782 0.01353584099 0 -9.464389625 -7.419554377 1001.195448 0.00199761196 +2.499339997e-06 0.006497764462 0.003139285538 0 4.350536871 10.10099716 957.1614473 0.002089511655 +2.497946834e-06 0.008418555441 -0.01242650055 0 17.60604486 7.033443672 935.3059939 0.002138337628 +2.49784981e-06 0.006847459944 -0.001302107424 0 11.53592796 -14.34560839 887.4128063 0.002253742549 +2.496054685e-06 0.007846354502 0.004259562695 0 22.64856681 11.77023041 908.1190968 0.002202354303 +2.497977646e-06 -0.003727925834 -0.01352924959 0 -3.197654476 -18.74770043 945.3653257 0.002115584257 +2.495341663e-06 0.006807017177 0.01288350741 0 14.43369567 24.29156501 925.0799635 0.002161975266 +2.498190973e-06 0.00304109843 0.001310396658 0 -17.85334235 -7.015026041 1008.185347 0.001983762217 +2.499998319e-06 -0.006513537299 -0.008664717714 0 -0.5375356199 0.1760129843 975.5716288 0.002050080118 +2.495561392e-06 -0.000814117291 -0.01297651386 0 -10.60071341 -26.04134489 943.0409103 0.002120798767 +2.497001767e-06 -0.000451325532 -0.005649184578 0 -16.37571829 -15.10592399 909.3943523 0.002199265913 +2.495814258e-06 -0.008881948777 -0.006928508962 0 -20.86749538 -21.43137257 1033.185319 0.00193576115 +2.49965577e-06 0.006904402501 -0.00815161963 0 5.494031292 -4.778662555 877.5221847 0.002279144659 +2.49734422e-06 -0.00223000627 -0.00418436209 0 22.22795183 5.193546972 990.0508878 0.002020098184 +2.498294606e-06 -0.008016182999 -0.008872581355 0 10.02280802 -14.64273551 960.5604032 0.00208211789 +2.49774038e-06 0.002473912784 -0.004937215273 0 9.370405407 17.04046527 914.4719955 0.002187054398 +2.499742565e-06 0.0006230210839 -0.002814193249 0 -2.61458448 7.070172927 1050.505255 0.001903845784 +2.49545087e-06 -0.005173148229 0.004063160133 0 -20.19940714 23.93627597 1037.648323 0.001927435293 +2.496055139e-06 0.0063623153 0.002620325207 0 16.61449504 -18.36713579 881.2140781 0.00226959606 +2.499615649e-06 0.002632030216 -0.01415033732 0 1.356074075 -7.805511311 903.5546362 0.002213479871 +2.498734605e-06 0.005283300066 -0.001841527086 0 -7.876764896 13.02633925 956.7085163 0.002090500885 +2.497578245e-06 0.003932344615 -0.003010312957 0 -17.36601968 -11.47882607 945.5348562 0.002115204941 +2.49758643e-06 0.001805753121 0.01303096911 0 -6.557450677 20.47060205 978.0030966 0.0020449833 +2.499549143e-06 -0.005253368802 0.005219055894 0 -7.333117016 6.440927491 1027.760614 0.001945978443 +2.496631775e-06 -0.00215332259 -0.009626695029 0 -23.40061745 -12.85505497 1028.161527 0.001945219644 +2.494654803e-06 -0.004495579987 0.01446759533 0 -15.74025863 27.59336596 970.8058286 0.002060144203 +2.497456064e-06 0.003694855161 -0.01360622616 0 13.93305298 -15.00802254 907.538618 0.00220376297 +2.498548724e-06 -0.005138020399 0.0142959619 0 6.291085703 -14.79899407 943.6687416 0.002119387781 +2.497059479e-06 0.004946721303 -0.002038986082 0 17.30739171 13.17563997 896.5563245 0.002230757784 +2.499306216e-06 0.005586844273 0.002270273929 0 -9.424001641 -5.723352479 935.9192504 0.002136936492 +2.499779833e-06 0.005490671834 -0.0001092442847 0 -5.948735991 3.831632642 1066.298336 0.00187564768 +2.499928499e-06 0.004173782552 -0.01494856992 0 -0.01423373899 3.736661999 988.1251197 0.002024035175 +2.496466308e-06 0.006883681598 0.008210241417 0 23.73548613 13.86886555 1033.523677 0.001935127414 +2.49647786e-06 0.008363717683 -0.008181340217 0 -5.060945645 -24.54691983 943.8190893 0.002119050168 +2.498352781e-06 -0.008307320992 0.008948467034 0 5.884075608 16.51301717 965.5721959 0.002071310678 +2.49920648e-06 -0.007894460806 0.001983228538 0 11.16960402 7.106263474 1050.738449 0.001903423257 +2.497222922e-06 -0.001847161576 -0.003350239377 0 -22.62680252 0.9442841663 960.5301027 0.002082183572 +2.49736753e-06 0.004499328006 -0.005056821392 0 9.143236819 -19.27428732 929.359412 0.002152019955 +2.498696128e-06 0.001493507326 0.01321761528 0 5.510613326 -16.23575487 1061.528311 0.001884075987 +2.499067151e-06 -0.006416376862 -0.007332209107 0 4.940487848 11.52430939 917.8461234 0.002179014487 +2.499090568e-06 -0.001855411869 0.01027357873 0 8.90362636 -8.343590936 904.6350263 0.00221083635 +2.498274588e-06 0.005961431507 0.007996405866 0 -16.80379166 -1.321106432 907.1341352 0.002204745607 +2.498610988e-06 0.006868908894 -0.0131769859 0 6.971001956 -16.2081535 1058.352596 0.001889729385 +2.499036522e-06 -0.00460632219 -0.008621829171 0 -7.593879502 10.47390755 931.8365833 0.002146299078 +2.498354354e-06 -0.003189787134 -0.002458018202 0 18.28848699 -5.478763357 1052.082352 0.001900991872 +2.49746816e-06 0.0007861628383 0.006928654828 0 21.02701649 10.5260572 1044.571631 0.00191466046 +2.495278395e-06 -0.0006132955104 0.007902297245 0 -22.39159581 19.38459678 963.0931699 0.002076642284 +2.495402218e-06 0.001385351624 0.005360965719 0 23.77497536 -18.22169976 987.1314978 0.002026072519 +2.499641299e-06 -4.735899158e-05 0.004745101423 0 7.159146871 2.005806875 877.7407355 0.002278577169 +2.497042441e-06 0.006242609238 0.00230680767 0 -18.58239185 11.33207431 894.5135169 0.002235852184 +2.498402888e-06 0.009403417646 -0.002410872357 0 -4.668187632 -18.52271634 1068.538198 0.001871715962 +2.498147971e-06 -0.003833399271 -0.0003251070832 0 16.16446447 -9.748673767 980.5382668 0.00203969602 +2.496916444e-06 -0.006318675433 -0.009439158398 0 -16.90120401 15.66113321 927.413389 0.002156535612 +2.494611633e-06 0.007168060159 0.007855899122 0 25.15798887 20.30189841 983.9708036 0.002032580634 +2.495139632e-06 0.008392389915 0.01499021613 0 27.44547638 -16.69515935 1029.602702 0.001942496844 +2.497401354e-06 0.007121752342 0.0009489271673 0 20.88437939 -6.050973952 953.3837886 0.002097791072 +2.49949017e-06 0.0096155287 -0.0002850605291 0 2.961905737 -9.417151973 977.558252 0.002045913884 +2.498842854e-06 0.00446016992 0.007128651829 0 -8.460054869 -12.46516339 990.109537 0.002019978523 +2.497113774e-06 -0.001570454929 0.005463914105 0 -14.37944618 -19.58748714 1010.924938 0.001978386254 +2.499054506e-06 0.009766545743 0.003529574792 0 11.63426124 -3.153544865 876.4521672 0.002281927155 +2.497927182e-06 0.009915104578 -0.002123889048 0 -16.16434713 14.26182261 1058.398016 0.00188964829 +2.499763174e-06 0.006068874635 0.01335818636 0 -6.479437435 -1.825577681 978.0926813 0.002044795998 +2.499089206e-06 0.007060807287 -0.006047311784 0 -0.9114279319 12.19533388 905.9805292 0.002207552961 +2.495703904e-06 -0.007990969382 -0.005547249787 0 -22.95560706 20.22893555 1043.146309 0.001917276591 +2.493608448e-06 -0.007706964561 -0.009915015043 0 -21.34776877 -26.7739319 956.8293524 0.00209023688 +2.499300382e-06 -0.009120536325 0.01351993266 0 5.063365358 -11.17257856 1036.872637 0.001928877211 +2.498237551e-06 0.004216604014 -0.008286340702 0 -10.40298248 -16.97331221 1060.064465 0.001886677712 +2.49862323e-06 -0.0004797619348 0.00328532788 0 13.30840344 7.12319196 909.4784381 0.002199062579 +2.499036022e-06 -0.007830187287 0.01148459231 0 13.32849251 -1.498408367 965.8217507 0.002070775481 +2.496775706e-06 -0.002660473306 0.002745138633 0 -3.491841803 22.25676116 886.7468425 0.002255435152 +2.496817163e-06 0.0002712234715 -0.01443516572 0 -15.25509988 -20.0451206 997.9176277 0.002004173435 +2.496245685e-06 -0.007643314935 0.00402854214 0 -22.45303283 13.74890656 960.2738745 0.002082739157 +2.497441369e-06 0.001888505281 0.002483903691 0 2.476856053 20.24160515 901.128302 0.00221943978 +2.497721853e-06 0.004167634873 -0.005771725543 0 21.7036314 -1.978964541 1020.648003 0.001959539425 +2.498687232e-06 0.001901572947 0.001007719436 0 -7.103030038 -14.33713847 987.2587047 0.002025811462 +2.498772622e-06 0.003073569029 -0.004592043876 0 7.66942829 -12.42755472 931.9119112 0.00214612559 +2.496790784e-06 -0.002660129932 0.008358426746 0 17.47211315 17.15540864 966.0528983 0.002070280006 +2.496813754e-06 0.004315909101 0.009258549116 0 23.41784451 3.409854656 937.0017934 0.002134467633 +2.496377937e-06 0.001002760036 0.009122195332 0 -23.35440335 13.1659661 995.5569656 0.002008925726 +2.498852851e-06 0.001300959866 -0.001528189753 0 -8.127528244 -11.35945866 921.9818639 0.002169240067 +2.499114546e-06 0.001327257361 -0.008563076374 0 9.144672301 8.726736369 949.7446499 0.002105829183 +2.499606989e-06 -0.0001397661166 0.001081981128 0 -2.561759628 -8.759984561 1029.388734 0.001942900611 +2.498553794e-06 -0.001237824489 0.002052449703 0 -17.48010554 4.231883214 1057.274997 0.00189165544 +2.496773398e-06 -0.003143735919 0.001090438783 0 -10.41407042 -23.6006301 1014.979572 0.001970483008 +2.497422364e-06 0.000713528269 -0.008554682597 0 10.53282841 -19.77828467 986.5303067 0.002027307206 +2.499177234e-06 0.003511914546 -0.009714293978 0 11.71372781 -2.661155266 936.3025429 0.002136061698 +2.497068927e-06 -0.003366728844 -0.003641405404 0 -9.709682336 -18.85731514 875.6432748 0.002284035129 +2.499390249e-06 0.008514261115 -0.007452796767 0 -7.204119897 6.543244481 881.2003903 0.002269631314 +2.49831213e-06 0.008385026185 -0.008549547452 0 11.54071443 -15.43184707 1048.541159 0.00190741201 +2.497069557e-06 -0.007718432387 0.002010670581 0 -14.91201335 19.55984689 1015.521538 0.001969431395 +2.497284075e-06 -0.00605042214 -0.006916056946 0 -15.6288085 -16.94512719 988.6865444 0.002022885829 +2.499788601e-06 0.005886529516 0.001920079447 0 5.484767598 -2.001923128 897.9158944 0.002227380106 +2.498543273e-06 0.005120218461 -0.01231644142 0 15.47034152 7.466211721 1006.161529 0.001987752406 +2.495549453e-06 -0.009115322819 -0.01162715276 0 -26.41931063 -12.42521167 977.915139 0.002045167234 +2.498559312e-06 0.0043263538 0.005262073672 0 -13.24642841 9.043409537 944.6800778 0.00211711885 +2.499156155e-06 0.007410677536 0.002988984156 0 8.287685813 10.03489656 1001.695992 0.001996613759 +2.497592344e-06 0.00159167836 0.00676517474 0 6.694209241 22.52617879 1070.521224 0.001868248807 +2.4993505e-06 0.002839011969 -0.0089443827 0 9.232651313 -4.741474515 910.5591427 0.002196452604 +2.498238605e-06 0.004438013905 0.001872251392 0 13.36973279 -9.721402363 880.4937403 0.002271452832 +2.498073199e-06 0.00761057267 -0.01116734726 0 19.63590066 -5.575616628 1039.512877 0.001923978091 +2.495464964e-06 0.009992657341 0.01445707614 0 21.62542655 17.68121971 926.8841765 0.002157766904 +2.497188611e-06 0.0009958189446 -0.007687829216 0 -10.48297934 -19.50899732 933.593997 0.002142258848 +2.497609734e-06 -0.003478387948 -0.008593926507 0 0.7761215278 -23.04885415 1054.390672 0.001896830135 +2.497086301e-06 -0.004631625484 -0.008293396547 0 -9.712473695 -22.23670076 1004.74943 0.001990546041 +2.497858954e-06 0.004556934708 0.003721610717 0 18.27274589 -9.903739552 1004.067481 0.001991897993 +2.498852132e-06 -0.008437034609 0.0007847506064 0 -1.457916963 15.91215856 1054.407841 0.001896799248 +2.49531032e-06 -0.0003445569659 -0.006563808904 0 13.61067816 -27.84625222 1011.33134 0.001977591241 +2.496107126e-06 0.0003976557823 -0.002053060737 0 13.09132309 -23.53750034 964.6811646 0.002073223852 +2.498536694e-06 -0.00754127868 0.003880519147 0 5.458397144 -16.78097422 1031.283435 0.001939331063 +2.499754781e-06 -0.006559903631 0.01346865952 0 -6.481864067 0.2290487832 926.1100401 0.002159570584 +2.495649455e-06 -0.008920912626 -0.0119752579 0 -25.83961209 -7.076210087 907.6504837 0.002203491361 +2.499849502e-06 0.0008464906923 0.0137610101 0 3.673616701 -3.5795023 934.8808721 0.002139310002 +2.496206139e-06 0.001426521428 -0.001297430531 0 -22.30904225 14.48821833 965.1425714 0.002072232703 +2.498741346e-06 0.005455228696 -0.01442239318 0 1.293716375 15.92620692 1006.909432 0.001986275962 +2.496550917e-06 -0.008953358969 -0.007358305582 0 6.483199115 -22.46539548 889.8015479 0.002247692201 +2.496185401e-06 0.0008374793222 0.01421458341 0 21.49027583 16.88949745 989.0027178 0.002022239135 +2.497032384e-06 -0.004374008719 -0.00443487036 0 -19.96819901 8.271746451 886.7807359 0.002255348948 +2.496201301e-06 0.009976374176 -0.01254530855 0 -3.698410361 -24.96542682 915.1091156 0.002185531721 +2.496710855e-06 -0.006394234491 -0.003195525203 0 -9.945366132 -25.5883871 1069.846377 0.001869427278 +2.499211249e-06 0.008039295892 0.01373733577 0 0.9599993437 11.34920209 906.728038 0.002205733049 +2.499417444e-06 0.002783048153 0.007897723771 0 8.739635433 5.782212448 970.7544228 0.002060253297 +2.495779236e-06 0.0009378458746 -0.0107185254 0 9.865829935 -29.17282486 1059.271696 0.001888089719 +2.496253665e-06 -0.006489884495 -0.01409152984 0 -12.84238354 -22.25908553 938.2940407 0.002131527979 +2.495028535e-06 -0.001544361799 0.01016566965 0 17.03013133 27.85295158 1034.567897 0.001933174233 +2.499809084e-06 -0.009928659592 -0.01172760726 0 5.585116576 1.065707848 920.1291294 0.00217360796 +2.496560593e-06 -0.007521834876 -0.01476038553 0 -10.34658701 -25.35623908 1043.63101 0.001916386137 +2.498689892e-06 -0.009968587141 -0.002576412333 0 13.43882151 10.1070509 1038.606003 0.00192565804 +2.499310736e-06 -0.003691601707 -0.0008629234205 0 5.365786503 9.821305418 953.0939904 0.002098428927 +2.497003446e-06 0.006932138745 0.005647054352 0 -13.19212394 -20.20921807 985.3850165 0.002029663499 +2.495887836e-06 0.003987260475 -0.006776781867 0 26.66877659 -12.392215 1024.795471 0.001951608936 +2.499019752e-06 0.002194512249 -0.01210658017 0 13.4615549 1.77898719 969.6341322 0.002062633661 +2.496358565e-06 -0.001418714523 -0.007864168736 0 -22.34817386 -10.73748058 918.2376056 0.002178085484 +2.496729035e-06 -0.001251888131 0.004716402499 0 -22.34537517 12.28734351 996.5266338 0.002006970945 +2.499514806e-06 0.005523917773 0.01037161555 0 -8.173443467 -5.499499777 999.9835688 0.002000032863 +2.496428454e-06 -0.004964831332 0.007682845818 0 -17.02134283 -17.55663305 914.4514087 0.002187103635 +2.496092219e-06 -0.006330814539 -0.009099059331 0 -11.83673613 -27.41196365 1067.410999 0.001873692516 +2.49667409e-06 0.001319210734 -0.00916105306 0 -9.480545777 -21.15077143 898.2464246 0.002226560491 +2.498352508e-06 -0.002333893427 -0.005909516208 0 -8.580879839 -15.73523677 987.1280358 0.002026079624 +2.499490393e-06 0.008735152697 0.005889766971 0 3.738123944 8.571336603 926.1743768 0.002159420569 +2.499337307e-06 0.008728654757 0.005168835938 0 -7.690294344 -7.913657294 958.4065245 0.002086797146 +2.497388073e-06 -0.004829185992 3.424787661e-05 0 -21.00373762 11.95822841 1057.057901 0.001892043944 +2.498626219e-06 0.0004560199892 0.001724064052 0 -13.08997445 10.69734088 1019.654373 0.00196144895 +2.497892134e-06 -0.006426287275 0.008281991095 0 8.530136417 -20.24027583 1069.409898 0.001870190283 +2.49463224e-06 -0.001469835937 -0.01480469911 0 8.422141113 -33.08827972 1041.224246 0.001920815817 +2.498164061e-06 0.008324123155 0.005528576192 0 6.897044354 -17.35579654 974.3614408 0.002052626383 +2.498146533e-06 0.002487430922 0.00273088411 0 -2.874545105 -18.55265868 974.8307705 0.002051638151 +2.499877489e-06 0.004506821944 0.007386220093 0 -5.01267952 -1.189083833 1040.752599 0.001921686288 +2.495711481e-06 -0.007368548065 0.004481950316 0 16.63628046 -20.13079314 891.1454452 0.002244302556 +2.497820087e-06 0.001965535074 0.0113051749 0 18.097001 -11.48662554 1026.218174 0.001948903315 +2.498601172e-06 0.008437309577 -0.00223818857 0 -12.79887879 10.21575618 978.8567584 0.002043199868 +2.494035391e-06 -0.00877843942 -0.01353972302 0 -17.87400958 -31.75583421 1054.119534 0.001897318031 +2.496645838e-06 0.001685648523 0.0004082680587 0 25.48145012 2.070743976 986.5698273 0.002027225995 +2.498879325e-06 -0.00889901971 -0.005450876788 0 12.54304326 4.766375675 896.1159491 0.002231854039 +2.497908817e-06 0.009538963558 -0.0129799425 0 -13.46945144 16.68879698 1048.345173 0.001907768597 +2.496623111e-06 0.0009064579755 -0.007734936734 0 26.74274266 7.440425636 1067.585003 0.001873387125 +2.4992193e-06 -0.002885234184 0.006508831792 0 -11.12430131 -0.8325855892 892.6429468 0.002240537504 +2.49918114e-06 0.007968103015 -0.009625846969 0 -5.012986003 -10.99839617 944.3744958 0.00211780391 +2.494450741e-06 0.003382590669 0.01147527118 0 19.70669548 27.61098312 1017.397176 0.001965800621 +2.495173435e-06 -0.00863653155 -0.004024683523 0 -25.65532254 10.22610326 888.2754704 0.002251553788 +2.49735373e-06 -0.00957021832 -0.008573553306 0 2.531645527 -23.63475028 1032.817925 0.001936449737 +2.496988356e-06 0.003472408005 0.01424582652 0 19.88216634 -12.35248553 953.303843 0.002097966996 +2.499090569e-06 -0.007033352498 0.008025404024 0 -4.096356087 -12.52687931 977.1121711 0.002046847905 +2.497656077e-06 -0.001067512594 -0.001708826374 0 17.9873874 -11.19911852 978.2895995 0.002044384404 +2.498309932e-06 -0.0006391363498 -0.006352095022 0 10.08358331 -13.47354755 915.1262499 0.0021854908 +2.49829668e-06 0.007673168061 0.008141920965 0 15.92619695 7.740019916 959.1364886 0.00208520896 +2.499473632e-06 -0.002264480926 0.0141472557 0 -4.815612067 -8.409804949 944.4376883 0.002117662208 +2.498447199e-06 -0.003960918351 -0.009385238118 0 5.28242599 16.93950463 1006.649532 0.001986788785 +2.498090472e-06 -0.001804669271 -0.009506517111 0 17.45350187 2.381943537 901.1297038 0.002219436327 +2.49862903e-06 0.001828124253 -0.01194434779 0 -6.957859796 13.94503131 940.965643 0.002125476116 +2.497450474e-06 2.091071103e-05 -0.001611933187 0 6.090611152 -21.75836544 1000.221799 0.0019995565 +2.497712897e-06 0.005315906936 0.00176700948 0 21.53989382 3.184528252 1017.728302 0.001965161032 +2.499501567e-06 -0.009327675216 0.001964462246 0 -8.697452032 2.72842093 912.9004033 0.002190819495 +2.498783188e-06 -0.003742165789 0.003485726472 0 -3.15050614 14.07390933 924.3282444 0.002163733514 +2.499994508e-06 -0.006121594789 0.01151427787 0 -1.066410287 -0.05952268533 1019.067137 0.001962579233 +2.498584203e-06 0.00989301098 -0.00267216586 0 -13.95923987 7.610426236 944.6320783 0.002117226427 +2.499815081e-06 0.009880390288 0.0004000879917 0 1.374963218 5.905246284 996.9758299 0.002006066687 +2.498327314e-06 -0.004746660255 -0.00417757835 0 17.4120946 6.018333836 1006.991104 0.001986114864 +2.494404038e-06 -0.002491610767 0.01441359955 0 -23.00356227 24.92595638 1013.024244 0.001974286412 +2.497068718e-06 5.384920165e-05 -0.007732621883 0 25.36944709 4.912059801 1066.76293 0.001874830803 +2.495111163e-06 0.0002480943175 -0.01481420383 0 -0.8827537002 -32.24845492 1030.943888 0.001939969792 +2.498365193e-06 0.009646085948 -0.006506954057 0 -1.143108393 18.85885964 1044.616902 0.001914577485 +2.497751909e-06 0.008075718246 -0.0005870359135 0 -4.560884497 -21.89572498 1054.420927 0.001896775707 +2.498327327e-06 -0.008198350561 -0.01283130791 0 15.7951571 8.384361747 977.4604495 0.002046118593 +2.496298659e-06 0.002402375001 0.004979205437 0 -21.96775364 -16.07095534 999.8425642 0.002000314921 +2.499809894e-06 0.005701713776 0.01096883947 0 -1.96777935 -5.499871655 947.2928321 0.002111279567 +2.497647263e-06 -0.007257471997 -0.003888910704 0 22.53203835 5.480184019 1068.62455 0.001871564713 +2.497876861e-06 0.00816342555 -0.007796478574 0 -8.051659263 19.76546192 1035.387469 0.001931644008 +2.497499461e-06 -0.00430406617 -0.01076536731 0 13.05721764 -18.29995293 1004.879222 0.001990288938 +2.498923789e-06 -0.009506365103 -0.007912769818 0 -9.345797617 -11.29243566 998.9572892 0.002002087598 +2.49447759e-06 0.00528177103 0.01100685849 0 20.21847782 27.70963232 1031.280845 0.001939335933 +2.498963375e-06 -0.003509126091 -0.004814666728 0 10.17227065 7.812376959 890.6367807 0.002245584332 +2.496256479e-06 0.0007673473749 -0.005992897335 0 -18.85878505 22.37946796 1068.963956 0.001870970475 +2.496591668e-06 -0.004978543716 -0.0002175583108 0 -24.04394112 12.45858201 1036.670789 0.001929252778 +2.499617718e-06 -0.008634883128 -0.01311938475 0 8.607328856 -3.379066552 1057.455476 0.001891332587 +2.499203048e-06 -0.002361151315 -0.01030761309 0 -6.594570839 -11.14105633 1025.342447 0.001950567837 +2.49444497e-06 0.009921353767 0.002774971656 0 28.39904263 18.84899039 1021.747033 0.001957431669 +2.493847973e-06 -0.009023211454 -0.00103136783 0 -27.74116988 19.75140506 969.9418517 0.002061979279 +2.499825887e-06 0.005451374701 0.005589735538 0 4.288606005 -3.891801991 981.3604639 0.002037987135 +2.498989586e-06 -0.006542918561 0.006391594154 0 -14.21434057 1.334343652 1004.156618 0.001991721176 +2.497044821e-06 0.001131320661 -0.01125865033 0 -16.67057658 -15.66421273 940.5151625 0.002126494159 +2.495392991e-06 -0.007563241101 0.01183718984 0 -14.13895503 23.53311834 903.8148414 0.002212842618 +2.498064765e-06 0.00208968895 -0.0005573910428 0 -5.262637063 17.40573413 924.0161553 0.002164464321 +2.498758459e-06 -0.007892031805 -0.005217533552 0 10.5541939 10.90980535 963.1166131 0.002076591736 +2.497531878e-06 0.0003071780177 0.003553103863 0 -20.59139224 0.2343996838 926.5196578 0.00215861583 +2.496500646e-06 -0.004070178745 -0.01004609968 0 23.17201146 14.51416346 1032.995612 0.001936116646 +2.49709912e-06 -0.007733461089 -0.008603062006 0 15.49185037 16.40860503 936.4663998 0.002135687944 +2.499405006e-06 0.008372051958 -0.002786905887 0 4.015294557 -9.401928717 937.1024999 0.002134238251 +2.498936574e-06 0.0008877065172 0.009269134195 0 8.796227493 11.54534951 995.0891995 0.002009870071 +2.495108177e-06 -0.001782866418 -0.005633271234 0 -21.99315039 -21.73791247 987.9002963 0.002024495799 +2.497016658e-06 -0.007708893018 -0.01362315796 0 14.52832862 15.72528542 876.0742919 0.002282911413 +2.498453971e-06 -0.006892199209 -0.01043753138 0 -6.440275925 14.89421475 922.5990881 0.002167788832 +2.498065004e-06 0.007828234974 -0.001944388426 0 11.21704355 -17.56395623 1059.061284 0.001888464842 +2.497375084e-06 -0.008375851014 -0.003511154163 0 -11.91005556 20.16647576 1021.783443 0.001957361918 +2.49960716e-06 0.003446808676 -0.001822265466 0 -5.234631919 6.238878341 918.7341101 0.002176908398 +2.497753784e-06 0.004711093009 0.004742510151 0 -18.58034445 -0.07651021842 876.3353476 0.002282231346 +2.499841541e-06 -0.008264229456 0.008977769252 0 3.183106159 -3.780913077 877.9200797 0.002278111694 +2.498183947e-06 0.006288940622 -0.007808463068 0 19.46806662 -2.24468968 1027.999814 0.001945525644 +2.499215585e-06 -0.003526402549 -0.01209912729 0 10.11867411 5.185012637 907.6389086 0.002203519463 +2.496940133e-06 0.002386761759 0.005410080564 0 8.77925317 21.75270402 947.7994592 0.002110151025 +2.49716528e-06 0.005844590329 -0.006338346766 0 -19.81774961 -13.96818538 1017.840459 0.001964944488 +2.498550565e-06 -0.004571354259 -0.007333419083 0 -7.860111313 -14.92041623 990.2755082 0.002019639972 +2.498488376e-06 -0.006323077418 0.01283067539 0 3.762449896 -17.08048859 1005.666021 0.001988731804 +2.498725761e-06 -0.002760210461 0.005119705922 0 -7.434402743 12.85506983 930.0443878 0.002150434997 +2.498718379e-06 0.009051528219 0.0132537934 0 -1.375725439 -14.6021469 915.9195654 0.002183597857 +2.499841625e-06 0.001582001583 -0.01017691361 0 4.394063387 -2.708002938 917.0798943 0.002180835075 +2.496788088e-06 -0.0001904176828 -0.01340326844 0 16.70330122 -21.00833961 1058.438919 0.001889575264 +2.495888905e-06 -0.006475603809 -0.004148791954 0 -19.99410691 -23.18912474 1067.146021 0.001874157763 +2.49844768e-06 -0.005826998116 0.007129678235 0 -12.98923274 10.98073938 965.083742 0.002072359022 +2.499298718e-06 0.001204817225 -0.006823802863 0 -9.590453662 -5.644797792 939.5599562 0.002128656066 +2.496196854e-06 0.007905575368 0.002037275566 0 -20.38473207 20.69224259 1052.594807 0.001900066375 +2.495667213e-06 -0.007520456356 0.005164872387 0 -24.1652557 -8.992638477 875.3328313 0.002284845179 +2.498118806e-06 0.009211941669 -0.009083549206 0 -9.887081486 -15.97105157 968.1167109 0.002065866623 +2.492673966e-06 -0.005026395358 -0.01319131929 0 -21.26943142 -30.28505549 965.7512711 0.002070926604 +2.495607013e-06 -0.006587369535 0.01202484201 0 -23.30960914 16.29909035 958.9421873 0.002085631466 +2.499872311e-06 -0.003043251047 -0.006371716205 0 0.8287682747 4.481825023 901.8947762 0.002217553591 +2.498997105e-06 0.002935967711 0.006867546653 0 -11.85243908 9.216161011 1059.951939 0.001886878005 +2.498221629e-06 0.009791515865 -0.007080857588 0 7.186983362 18.6206068 1058.05087 0.001890268281 +2.497528142e-06 0.006112950481 -0.008046485509 0 11.19481911 16.42454467 893.6345211 0.00223805141 +2.499850366e-06 0.009119957108 0.00969611217 0 -0.1211787639 -5.729257364 1047.502065 0.001909304111 +2.499337697e-06 -0.008192622284 0.0122713114 0 -12.09727873 -2.004237839 1065.32271 0.001877365404 +2.498851205e-06 0.009523749677 -0.005163156611 0 15.79850586 -2.030164878 1050.658249 0.001903568551 +2.497911094e-06 0.006108659697 0.0008879150636 0 13.26264508 -14.49073502 960.7603918 0.002081684484 +2.496213861e-06 0.00105122867 -0.009318430005 0 -17.79746946 17.81445636 914.5773031 0.002186802573 +2.497287636e-06 0.007880352847 -0.003000622289 0 -10.40566645 -19.01151636 930.1473833 0.002150196878 +2.496486767e-06 -0.005167252645 -0.002339213071 0 -22.06491184 14.75807447 1000.904539 0.001998192558 +2.497550862e-06 0.00380569438 0.00783099873 0 -10.43728988 16.78634021 892.7926089 0.002240161914 +2.499057673e-06 0.001132162646 0.00660081194 0 11.10682605 -5.055331497 888.7843823 0.002250264564 +2.499024223e-06 0.0006813990138 0.005779810601 0 9.917175748 -9.708043183 993.2769139 0.002013537184 +2.498105399e-06 -0.007029192862 0.009952041821 0 18.59509457 -1.325379 957.4176665 0.002088952471 +2.49959895e-06 0.004580495995 0.005771783832 0 -0.357903604 9.222502699 1030.469153 0.001940863532 +2.499948663e-06 -0.003676052606 -0.005596366671 0 -0.1161029532 -3.2506783 1015.12375 0.001970203141 +2.497569095e-06 0.001452799407 0.001751454994 0 6.761653775 20.59196176 982.5970248 0.002035422406 +2.499158167e-06 -0.004494476989 -0.01058699638 0 -5.542190438 10.71789392 929.7833158 0.002151038813 +2.499483416e-06 0.008709778385 -0.009528060174 0 6.248602912 8.285715458 1020.904284 0.001959047514 +2.495265173e-06 -0.00358860591 0.004919381174 0 20.14423041 20.66758439 937.1969466 0.002134023171 +2.498359327e-06 0.008854607395 0.0007079884526 0 16.86723671 -8.177705976 1034.557704 0.001933193279 +2.498331938e-06 0.004864969561 0.002282234766 0 -16.02212289 -9.787460101 1027.664783 0.001946159909 +2.497334272e-06 0.00535256085 0.002030349076 0 21.94988929 10.05673418 1045.234243 0.001913446688 +2.498219118e-06 -0.006867922917 0.004170816375 0 15.8221382 5.089011536 880.4266923 0.002271625812 +2.497014803e-06 0.003889416158 0.007915891155 0 12.32908502 18.58902325 912.4852343 0.002191816289 +2.497486034e-06 -0.00503483837 0.007684094617 0 13.7827021 -17.1748873 981.7147787 0.002037251596 +2.49510426e-06 0.001329663773 0.008574315996 0 20.42942893 18.54849006 881.1814114 0.002269680198 +2.497140838e-06 -0.006826692536 0.01085497353 0 -16.85394953 -18.26569787 1038.879197 0.001925151651 +2.499211185e-06 0.002587452433 0.01359535722 0 -11.21888388 0.4373297447 893.7694189 0.002237713618 +2.4969811e-06 0.00694084594 -0.007161021635 0 23.25056488 -7.819217338 997.8477589 0.002004313766 +2.498054089e-06 -0.008358134399 0.00937962878 0 18.04711005 10.63178994 1061.443574 0.001884226396 +2.499013721e-06 0.005000691833 -0.009738575437 0 -13.61571122 6.340051888 1069.239217 0.001870488818 +2.499023e-06 0.005221224064 -0.01136398494 0 12.8613362 4.089739876 965.3318464 0.002071826396 +2.495479105e-06 -0.009413823364 0.01048324383 0 -29.43598236 6.635760628 1002.814235 0.001994387325 +2.49493803e-06 -0.006299296543 0.006278188855 0 -24.46950573 -21.07987066 1014.289229 0.001971824152 +2.496333794e-06 -0.009209090769 -0.008817091968 0 -24.08625343 -16.13202516 1069.985735 0.001869183799 +2.496249656e-06 0.006241604756 -0.008615212406 0 -22.34768333 18.54562024 1059.768992 0.001887203736 +2.499028197e-06 -0.002465798715 -0.0003703886666 0 14.66233459 -0.7313900788 1052.871611 0.001899566841 +2.495110459e-06 -0.005725131445 -0.01172508511 0 -26.85328933 -17.37611405 1022.059141 0.001956833924 +2.496953926e-06 -0.006750879213 0.008159117131 0 -21.60780929 14.07074067 1044.212575 0.001915318822 +2.496086192e-06 0.009854522208 0.002918580913 0 20.40843295 15.88504501 923.8274264 0.0021649065 +2.498896096e-06 0.003500738982 -0.01282271631 0 -7.687251834 -12.85638345 1007.95223 0.001984221018 +2.497362628e-06 0.003636574843 0.005235874692 0 24.17950116 1.251177724 1053.793252 0.001897905492 +2.499502262e-06 0.00285042061 -0.01228969767 0 8.985059153 1.645030507 915.4459867 0.002184727476 +2.496459051e-06 0.0001730186353 0.005788312247 0 17.85458279 -17.95844135 951.0912498 0.00210284765 +2.496789132e-06 0.003121862314 -0.005003997576 0 26.27460886 -4.586359824 1052.006153 0.001901129565 +2.498160525e-06 -0.009793270901 0.01498431031 0 16.72123602 8.183758185 970.3222388 0.002061170939 +2.498192472e-06 0.001019093571 -0.005297217148 0 -0.193740636 18.66710804 981.5787449 0.002037533932 +2.499885747e-06 -0.008667112086 -0.006320402648 0 -4.911321161 -0.5015230225 1032.749128 0.001936578735 +2.499816032e-06 0.005795057295 -0.0009537273226 0 1.035554341 5.265038104 884.5955526 0.002260920252 +2.498526336e-06 0.004557102215 -0.005320200529 0 0.7239387828 15.55892871 907.0661473 0.002204910861 +2.4963201e-06 0.00561778638 -0.005838714635 0 25.09188809 6.802043716 957.7648032 0.002088195341 +2.496769199e-06 0.009452138143 -0.01321683535 0 22.88835473 -1.953926641 903.2554963 0.002214212931 +2.499238001e-06 0.009786234079 0.0021172478 0 10.68007493 6.276306738 1003.344517 0.001993333263 +2.498253361e-06 -0.002379099866 -0.01416406919 0 -16.72192437 4.16927804 921.8324821 0.002169591589 +2.495581826e-06 -0.005007601376 -0.003633219211 0 -24.90152808 -12.73718044 940.303947 0.002126971823 +2.499177068e-06 -0.005927933617 0.007065082777 0 -10.64209566 -4.144946923 890.1152392 0.002246900077 +2.497982171e-06 -0.001946104406 0.01098680088 0 -13.78208875 11.95494588 907.9176268 0.002202843012 +2.493412645e-06 -0.006897760974 0.01353649911 0 -28.3922197 22.63565864 999.3979429 0.00200120484 +2.496308289e-06 -0.000718345819 -0.009092085322 0 -4.885688119 -28.31579213 1056.889457 0.001892345492 +2.499673041e-06 -0.001701600542 -0.004225227598 0 -3.517251145 -7.57847677 1033.138696 0.001935848504 +2.494577064e-06 -0.0009440276865 -0.009660659255 0 -22.53113655 -23.66142188 991.2909452 0.002017571138 +2.499676566e-06 -0.008909741309 0.0113976555 0 -6.889480385 1.603950601 879.4663545 0.002274106326 +2.499455932e-06 0.007503046957 -0.0002188374731 0 -1.072947998 -10.87416259 1047.424471 0.001909445555 +2.496195712e-06 -0.004204222304 -0.01348280919 0 -4.764367955 -24.47405038 903.4064139 0.002213843038 +2.499030221e-06 -0.007220686763 0.01007007417 0 7.070456046 10.06021798 882.7960929 0.002265528831 +2.497063775e-06 0.009431094555 -0.000701113001 0 14.26702004 20.92938794 1044.784683 0.001914270024 +2.498631996e-06 0.006250352021 -0.005454617443 0 12.24494782 12.22194387 1045.721964 0.001912554263 +2.499299782e-06 -0.004155820655 -0.003430257398 0 9.298940971 -5.13692397 897.6138457 0.002228129623 +2.498746985e-06 0.002904962683 0.003376406834 0 1.616012451 15.19472604 965.0737982 0.002072380375 +2.497081063e-06 -0.002406864194 0.004454516605 0 9.672531342 -20.83400735 950.255644 0.002104696786 +2.499009124e-06 -0.003949776758 0.01415328601 0 10.08483148 -7.164725912 878.6362005 0.002276254949 +2.499315467e-06 0.009178173663 0.01112845866 0 8.203858738 -8.556456877 1012.993369 0.001974346587 +2.496409858e-06 -0.005105041326 0.01460250727 0 -26.86552475 -3.515499454 1010.595317 0.001979031534 +2.497277756e-06 -0.003100372152 0.001703544469 0 1.651611744 -23.31175939 1001.166636 0.001997669447 +2.498671304e-06 0.007194337486 0.00780247028 0 -14.84850042 -2.911362733 928.0252739 0.00215511372 +2.498244252e-06 0.004668841087 -0.002964187232 0 -17.06195081 4.948627063 947.7796469 0.002110195135 +2.497813204e-06 0.007420411813 0.0132872837 0 -10.50966652 17.3251538 968.6240134 0.002064784656 +2.497803303e-06 0.004157734136 -0.01459899788 0 -16.37252456 -14.75558475 1051.186259 0.00190261239 +2.499850589e-06 0.001424785559 0.00946121861 0 -2.530433876 4.609794073 961.9601116 0.002079088286 +2.49949871e-06 -0.009849103754 -0.002119666224 0 0.01744083987 -9.846070115 983.2664875 0.002034036576 +2.496265549e-06 -0.004665982882 0.006625629372 0 -16.45382224 20.69600768 966.9036483 0.002068458428 +2.497343686e-06 -0.00642209596 0.002013790298 0 19.42266265 12.06126154 991.5260958 0.00201709265 +2.499235391e-06 -0.003445887412 -0.01402671504 0 12.09357317 3.475386685 1017.421421 0.001965753776 +2.496071508e-06 0.004956440395 0.007674440544 0 27.86060839 -8.948114245 1043.336555 0.001916926987 +2.497812875e-06 0.005168316923 -0.006675040447 0 10.6354711 -19.29527769 1053.088772 0.001899175125 +2.494228746e-06 -0.007312357458 0.007912838899 0 -29.92953921 -20.07293324 1059.80989 0.001887130907 +2.497994599e-06 -0.003130251053 -0.01218132606 0 19.29037039 -3.579972803 979.370956 0.00204212713 +2.498446602e-06 0.0007067341683 0.008254559201 0 -9.90540493 -12.1921458 891.0140158 0.002244633602 +2.496747114e-06 0.009093107488 0.007623313826 0 21.52210626 -15.16897287 1031.807646 0.001938345783 +2.497415758e-06 0.005043896371 0.01162252162 0 10.19214115 21.44078363 1043.831654 0.001916017772 +2.495489055e-06 -0.0009924697224 -0.008149283293 0 -18.99153211 -25.09865184 1047.154562 0.001909937724 +2.498425257e-06 -0.007625748254 -3.018721472e-06 0 5.693263051 17.6323481 1043.81268 0.001916052601 +2.499222624e-06 -0.004378526406 -0.0007488689711 0 3.35394159 12.66135951 1050.329521 0.001904164322 +2.4996297e-06 2.108397894e-05 0.0131703629 0 5.876495566 -7.070517777 1068.261197 0.001872201299 +2.496853451e-06 0.007481401074 0.007464247076 0 22.22382442 -13.79486357 1042.204938 0.001919008371 +2.499431253e-06 0.00855412093 0.01040130953 0 -9.848586068 -2.211542271 946.3343112 0.002113418034 +2.49821155e-06 0.006894487562 0.01388217032 0 10.90894045 -16.02071014 1024.547711 0.001952080882 +2.499519878e-06 -0.006362826913 -0.006311139241 0 -5.037860399 7.310507862 905.9533753 0.002207619128 +2.498668584e-06 -0.002011963683 -0.009108184136 0 0.1456942409 17.29739348 1059.833099 0.001887089582 +2.498484075e-06 0.008096580449 -0.001544669028 0 16.37037381 1.514684289 943.9675247 0.002118716955 +2.496663323e-06 0.00440752028 0.0007688444434 0 23.27764806 10.49112801 987.8821463 0.002024532995 +2.49952769e-06 -0.002593608773 0.0006551193399 0 -8.007813752 -3.615844056 903.9571206 0.002212494326 +2.498567967e-06 0.006093492843 0.00259420133 0 -6.949150835 -14.08116662 927.6522472 0.002155980332 +2.499951045e-06 0.008658897835 0.009433990731 0 -3.116991945 -0.4530093862 1006.60657 0.00198687358 +2.496361552e-06 -0.007426993242 -0.004405707121 0 15.96102359 -23.7397193 1059.872446 0.001887019526 +2.496560646e-06 -0.008800715106 -0.004557275169 0 -26.08684717 -2.074464196 997.2701834 0.002005474578 +2.497224933e-06 0.005647087488 0.006414692653 0 23.70584398 4.335203852 1022.506698 0.001955977406 +2.498559232e-06 -0.006446040138 -0.004855131099 0 4.615521289 14.32023424 886.1464682 0.002256963236 +2.498567138e-06 -0.008189343107 -0.001780421371 0 14.69344322 -7.951410869 986.7033291 0.00202695171 +2.497047413e-06 -0.003225794979 -0.008153437616 0 -17.34277292 14.63728306 933.4779199 0.002142525235 +2.497385546e-06 0.003211843106 0.01204104777 0 12.25073445 16.72878317 906.4092802 0.002206508741 +2.498102963e-06 -0.003988673068 0.00669776035 0 -5.310438671 19.47308937 1035.940921 0.001930612025 +2.495378642e-06 0.001806712626 0.009556121675 0 8.425146392 25.9467194 896.7021353 0.002230395046 +2.497149475e-06 -0.008158224658 0.01256114451 0 -3.647566507 22.16414514 940.3524102 0.002126862204 +2.497150171e-06 0.003098165416 -0.001049216827 0 24.82512302 4.535396574 1056.600236 0.00189286348 +2.497096595e-06 0.002491815714 -0.00879598802 0 24.40953157 -8.401093063 1070.805511 0.001867752808 +2.495655742e-06 0.005814791159 -0.007829455007 0 -6.754537846 -30.59464608 1062.242448 0.001882809338 +2.496377313e-06 0.007341097412 -0.009762968661 0 24.52032844 -13.0389545 1031.179111 0.001939527263 +2.499956045e-06 -0.004087016983 0.004597285527 0 2.970691314 0.06084489283 1002.138212 0.001995732701 +2.498214813e-06 -0.00165976231 -0.009671358196 0 -18.78609622 5.37114085 1033.774335 0.001934658205 +2.498850473e-06 -0.004315061322 0.008914273926 0 2.379478638 13.06165183 875.4637321 0.002284503546 +2.497383423e-06 -0.00621549062 0.004329009312 0 -3.244609522 -22.97820092 1014.029826 0.001972328574 +2.496007938e-06 -0.005091853691 0.01239160058 0 8.86095931 24.47456529 920.6349836 0.002172413645 +2.499866301e-06 -0.002675968981 0.008887113109 0 -4.32943542 -3.163930376 1036.965103 0.001928705214 +2.498775432e-06 0.002629715195 0.006740695825 0 -3.948761661 15.59742466 1027.913543 0.001945688928 +2.499283491e-06 0.005998255527 0.0117050734 0 11.48726707 -1.325438883 965.8641289 0.002070684623 +2.499062711e-06 -0.009292996759 -0.01390973641 0 10.78592425 7.072985291 941.9241218 0.002123313284 +2.498611544e-06 -0.006244272836 -0.0112530404 0 11.28638161 -13.58924984 1059.840976 0.001887075556 +2.497555468e-06 -0.009861149839 0.004393889979 0 -20.42807787 7.90746061 990.3152152 0.002019558994 +2.499125973e-06 0.006862130086 0.00795158966 0 3.689070063 -11.35001105 902.5460661 0.002215953374 +2.496175266e-06 0.008801512048 0.007335730945 0 24.78162231 9.507396713 959.1389082 0.0020852037 +2.497822775e-06 -0.00767049958 -0.01378808108 0 -0.2391559724 -20.65035433 989.3457093 0.002021538054 +2.499830934e-06 -0.00219710838 0.005041021791 0 5.353233008 -2.725117464 1032.998287 0.001936111633 +2.499843058e-06 -0.003027158394 -0.01371138828 0 0.1445217012 5.632531317 1005.662527 0.001988738713 +2.497366587e-06 0.001675982699 -0.01490541587 0 20.26727604 -0.6568727001 883.2369189 0.002264398099 +2.497278318e-06 0.001210303204 -0.004103636763 0 11.09654029 -17.75194128 896.9271314 0.002229835546 +2.499226044e-06 0.003374349824 -0.004410190147 0 -9.526435316 6.013204787 905.3720181 0.002209036683 +2.499689053e-06 -0.0003732202062 -0.006123302698 0 -7.754377672 1.454800379 1000.41491 0.001999170524 +2.499160359e-06 0.00194961031 -0.004703878176 0 0.6225945082 13.71618419 1059.409224 0.001887844616 +2.497912599e-06 0.002386243204 0.005381807846 0 -2.738499893 -18.38551942 909.4667275 0.002199090895 +2.494702986e-06 -0.001928364881 0.01297903018 0 16.94476752 25.818223 948.0500397 0.002109593288 +2.497177296e-06 -0.009966599117 0.01454189347 0 -8.220279477 19.41487048 886.9705983 0.002254866175 +2.497093899e-06 -0.007856547073 -0.007417060656 0 -12.06214629 22.3051588 1051.358741 0.001902300253 +2.498361547e-06 0.008420332484 -0.009403702326 0 15.6837642 4.199015235 896.6934143 0.002230416738 +2.494725438e-06 -0.005125770797 -0.01179929334 0 -21.0807942 -21.03101462 916.0877277 0.002183197023 +2.498462949e-06 -0.003275337052 0.009797805625 0 13.31442265 11.54828617 1005.002502 0.001990044797 +2.498767538e-06 -0.002311187615 -0.0009751256788 0 13.06826932 8.609891909 996.6006407 0.002006821909 +2.49618536e-06 -0.003946191687 -0.001303437953 0 12.4028028 -24.16560341 982.8350073 0.002034929551 +2.499731666e-06 -0.00742536258 0.002843557235 0 1.612208543 -6.516974486 916.3777851 0.002182505984 +2.499841845e-06 -0.00874052179 -0.0128432821 0 4.987730259 -1.852449723 946.0097528 0.002114143109 +2.497316809e-06 -0.002411376978 0.008707755224 0 22.61233338 8.93901221 1049.204613 0.001906205878 +2.499509702e-06 0.00469098052 -0.004694927442 0 3.521166419 9.376919761 1011.41177 0.001977433978 +2.499801518e-06 -0.0008924228745 0.01495043731 0 -3.689657648 5.089177784 997.661643 0.002004687675 +2.495108558e-06 0.002635021969 -0.006456831177 0 -20.63119298 -19.90405482 915.8731119 0.00218370861 +2.497355788e-06 -0.00457848595 -0.01231820217 0 -15.04028581 19.47401902 1069.554249 0.001869937876 +2.499262278e-06 0.009395734281 -0.009677975324 0 -10.81867449 -6.965353183 1059.175678 0.001888260882 +2.496631165e-06 0.008531237314 -0.009972837497 0 23.99020553 3.237674062 932.1352751 0.002145611322 +2.499562121e-06 -0.006020987742 -0.01178165697 0 -2.934970733 8.681630504 979.2182844 0.002042445522 +2.499797288e-06 -0.00120969912 0.003868657469 0 -3.855615869 4.469763225 927.042232 0.002157399017 +2.49874607e-06 -0.008274154686 0.006192540131 0 16.67103391 -0.3051388639 1052.693546 0.001899888156 +2.49849911e-06 -0.005272928989 0.007170377481 0 18.13772771 3.080462904 1061.623735 0.001883906637 +2.499459593e-06 -0.006833826671 0.00839617443 0 -7.49207931 8.210746195 1069.070997 0.001870783143 +2.499212867e-06 -0.001613544347 -0.009025946986 0 11.45618988 1.452218743 920.2620823 0.002173293933 +2.498075086e-06 0.005223038825 -0.005625837855 0 2.271049823 19.43290121 996.8668563 0.002006285982 +2.499750898e-06 0.008710308941 -0.004477219298 0 3.88802992 5.218701732 921.9664247 0.002169276393 +2.495216901e-06 -0.005494414167 0.002244082927 0 -22.93362782 22.31874008 1033.915015 0.001934394966 +2.499525167e-06 0.001872008685 -0.002361553079 0 -8.239302587 -2.465176359 882.4528751 0.002266409977 +2.499152305e-06 0.008708106293 -0.004128378248 0 12.12508391 -6.35440682 1051.211826 0.001902566116 +2.499400419e-06 -0.007147118403 -0.003180908854 0 9.112523813 -3.15267006 880.4623153 0.002271533904 +2.498490235e-06 0.005955117838 0.008556293508 0 -10.55105124 11.31945707 890.3151216 0.002246395632 +2.499045777e-06 -0.008245214885 -0.001813227651 0 10.93139395 -6.954715126 937.7258121 0.002132819609 +2.49555718e-06 0.008717575083 -0.00438482736 0 -15.77977153 -26.18579352 1024.946992 0.001951320426 +2.49722949e-06 0.002459996436 -0.008963906527 0 -17.77903241 13.68434103 952.7124841 0.002099269227 +2.499417518e-06 -0.009250549991 0.01473627573 0 -9.551992063 1.73064809 899.3188634 0.002223905315 +2.499070595e-06 0.001875876514 -0.001716502074 0 -14.19239961 -0.9727544827 1043.267011 0.001917054771 +2.498628713e-06 0.0009581646137 0.008102382061 0 13.79741167 -7.133577293 937.7152365 0.002132843663 +2.498168483e-06 0.009237443097 -0.00154365924 0 17.05461218 -0.8419346832 891.9296239 0.002242329379 +2.494703241e-06 -0.005040507358 0.006875296414 0 -28.0128827 19.7548487 1052.322687 0.001900557713 +2.499222459e-06 -0.00614499032 0.00761641151 0 -11.37083798 4.498037011 980.4704749 0.002039837049 +2.494914058e-06 -0.00307730251 -0.01254651498 0 -16.76332535 -27.52020101 1009.587225 0.001981007635 +2.498077264e-06 -0.005662468867 -0.01029494429 0 18.87323508 0.0226422758 962.1583267 0.002078659972 +2.497471618e-06 -0.006042825137 0.01159376049 0 -14.35395964 -16.77342188 981.373684 0.002037959681 +2.496049319e-06 -0.00866686435 0.01491250161 0 -18.00280083 22.94409332 1036.9 0.001928826309 +2.498014933e-06 0.003826240781 0.01361312432 0 -19.86123986 -1.197050423 998.3016724 0.002003402434 +2.497692101e-06 0.008478944306 -0.006530976682 0 -20.1051087 -6.051495272 976.9327976 0.002047223724 +2.499853449e-06 0.004789347262 0.01092970707 0 -2.711078421 -4.160698169 917.2543264 0.002180420351 +2.498361112e-06 -0.00970073998 0.002089901401 0 -15.4671259 -5.23576923 901.7174612 0.002217989654 +2.498250147e-06 0.002730840272 0.00902231012 0 7.316321035 16.88830122 983.570633 0.0020334076 +2.497423604e-06 0.008183388566 0.004601192402 0 -12.73867187 -16.78933504 928.0647588 0.002155022029 +2.499855709e-06 0.008810672625 0.001481650646 0 -4.114787916 -2.849558143 931.6929956 0.002146629855 +2.496673602e-06 0.003193102051 -0.001354160313 0 24.83786414 -6.379615238 993.7296073 0.002012619917 +2.499078467e-06 0.004527562819 0.008636348513 0 10.58613692 -7.743914017 966.0003285 0.002070392671 +2.498298175e-06 0.006816779301 -0.002814063595 0 -10.31217403 -15.10092198 990.9139847 0.002018338656 +2.498536687e-06 0.005580943958 0.007963796826 0 -12.53051278 11.95584402 1012.161504 0.001975969242 +2.495753148e-06 -0.008715374032 0.01061407224 0 -26.59817236 12.99211399 1015.057224 0.001970332266 +2.492447192e-06 -0.00842628689 0.004149676231 0 -25.41321228 24.39635505 905.3704578 0.00220904049 +2.49947997e-06 -0.002430126965 -0.006222325321 0 -0.6465713531 -10.29497351 1011.385706 0.001977484937 +2.497368926e-06 -0.001197207719 0.00839967062 0 -24.43396692 2.314211583 1069.498613 0.001870035151 +2.498970197e-06 -0.009352504746 -0.01492818695 0 13.0328874 -0.5873153311 908.9121316 0.002200432727 +2.49681034e-06 -0.0006054893183 0.0116617924 0 17.5185376 -13.58698482 877.3421209 0.002279612425 +2.498910873e-06 0.008816113798 -0.003884918438 0 -13.69379667 -0.780806042 929.187611 0.00215241785 +2.496668749e-06 0.00897963231 -0.008029963095 0 -19.23025069 19.36507627 1056.784858 0.001892532794 +2.49817803e-06 -0.006431072531 0.0004163912404 0 17.79332595 7.1092329 1003.491378 0.001993041538 +2.495847173e-06 -0.001284166616 -0.01237969921 0 18.39241891 -23.70524968 1040.439019 0.00192226547 +2.499078672e-06 -0.000410726713 0.01181511842 0 -12.78472107 1.033260671 944.7628406 0.002116933387 +2.49829408e-06 0.006128708655 0.01326800274 0 -4.127306319 17.59733956 978.2947896 0.002044373558 +2.49929674e-06 0.008375991951 0.001847445925 0 -8.874120659 -7.963181315 1005.248776 0.001989557259 +2.499021691e-06 0.003152568117 0.007552369076 0 -5.688614627 12.42405644 976.7326964 0.002047643134 +2.493569627e-06 0.009070421983 0.01471194196 0 -17.1519444 34.0239882 1061.461052 0.001884195371 +2.499446464e-06 -0.001279058554 -0.01188012624 0 -1.356411505 9.840586299 944.0258978 0.002118585946 +2.497102497e-06 0.009107052162 -0.002451320915 0 -11.70163169 -18.78963266 919.1210493 0.002175991945 +2.498181486e-06 0.001622104882 -0.006765624625 0 6.959584821 -17.01456865 963.6568751 0.002075427522 +2.497680411e-06 -0.004250429831 -0.006688817767 0 -15.90614764 11.55114637 912.3599828 0.002192117188 +2.499423752e-06 -0.00640042529 0.008588496696 0 2.630352454 10.37594975 997.0003238 0.002006017403 +2.497161081e-06 -0.00556139627 0.002962965583 0 -16.19401699 18.19412881 1021.763968 0.001957399225 +2.495805639e-06 -0.009297662098 -0.01138656442 0 -21.76360797 -16.14586621 935.0359223 0.002138955255 +2.499913394e-06 3.338592593e-05 -0.000915781525 0 3.736016285 0.9575279766 926.6810321 0.002158239924 +2.495553818e-06 0.00868337323 0.0149996234 0 17.8195014 21.51577138 936.21953 0.002136251099 +2.494058479e-06 0.006840394405 -0.008691851471 0 26.78499346 -21.4913738 995.322024 0.002009399925 +2.49764221e-06 0.003660120959 -0.0004088742589 0 -20.10423353 -5.906025861 964.5869627 0.002073426324 +2.494520385e-06 0.00610544594 0.01188297537 0 18.39861508 24.83519087 932.8709995 0.00214391915 +2.497502357e-06 -0.006096023424 -0.004852128255 0 -19.35526888 5.518834689 900.1804687 0.00222177671 +2.499468799e-06 -0.009578614198 0.01442776624 0 7.502872359 5.49452969 902.1655724 0.002216887965 +2.498459538e-06 -0.001214334196 -0.01134111274 0 6.389921278 15.30116978 944.4770041 0.002117574056 +2.496964111e-06 -0.002670659465 4.642723594e-05 0 -10.6753341 22.39188896 1006.256368 0.001987565061 +2.49790474e-06 0.009085617363 -0.01436254876 0 12.09962139 14.90225443 937.4224159 0.002133509895 +2.498024011e-06 -0.008290669066 -0.009896969714 0 14.08845001 -12.10553828 934.0957607 0.002141108101 +2.497693916e-06 -0.008955349275 0.01278433752 0 16.0872978 -10.39626072 891.5817172 0.002243204365 +2.499636533e-06 0.005959923798 -0.01116023657 0 4.170877855 6.734698589 929.0610175 0.002152711138 +2.499728995e-06 -0.003436787277 -0.006376210114 0 7.693650099 -0.3944088003 1046.359304 0.001911389322 +2.497408463e-06 0.001058934736 0.006970567508 0 22.31010584 -4.075830428 995.7907458 0.002008454094 +2.49823675e-06 -0.002861229 0.003110778343 0 -3.996816993 19.19510532 1043.806176 0.001916064539 +2.496998691e-06 -0.004554975573 0.00621487712 0 -17.63620883 -19.05827019 1059.365008 0.001887923412 +2.496601126e-06 -0.001592864059 -0.004842512263 0 -15.57235918 17.06356385 885.5838412 0.002258397124 +2.499239818e-06 -0.005440118005 -0.01315415359 0 -9.889263364 4.965823824 897.3637287 0.002228750657 +2.497753677e-06 0.007813082505 -0.006388377543 0 1.351468417 -21.58207376 1019.871682 0.001961031015 +2.496530073e-06 0.009528036467 0.01204869194 0 -17.51480573 20.63627372 1026.926278 0.001947559472 +2.499670846e-06 0.004916384341 -0.01117004118 0 5.262031596 6.20776281 1002.942453 0.001994132359 +2.496671584e-06 -0.007431506086 0.001668774281 0 -16.0847807 20.12759512 998.1160176 0.002003775077 +2.49750422e-06 0.001198508041 0.002006532275 0 19.03447418 5.953290815 892.3307705 0.002241321342 +2.496110285e-06 -0.002552976212 -0.001910706377 0 -17.7205612 -21.14123285 988.4536291 0.002023362494 +2.49774071e-06 0.009621230126 -0.009176646005 0 -2.151906389 -22.12805495 1045.535903 0.001912894616 +2.497282137e-06 0.009362573121 0.01390553261 0 21.35915019 -6.350003606 955.365125 0.002093440453 +2.499396578e-06 -0.004755604463 0.009072853555 0 9.09813846 -6.123510959 998.2057085 0.002003595034 +2.495750524e-06 -0.005081889876 0.01015864344 0 -10.41194238 27.15739654 997.0299234 0.002005957848 +2.498981028e-06 0.007957888893 -0.007167261865 0 -10.86860205 -8.34531056 959.7351745 0.0020839082 +2.497677544e-06 -0.0002024368336 -0.003656629762 0 12.13138309 -18.70519448 1034.098747 0.001934051275 +2.499401504e-06 -0.001215442182 0.00609519124 0 -10.42635421 -2.631361525 982.7799944 0.00203504346 +2.49626611e-06 -0.008185719014 0.008676201794 0 -27.74183492 2.316233639 1018.132952 0.001964379993 +2.496586664e-06 -0.006574150701 -0.0009976789774 0 15.16866104 -22.24207526 1029.867853 0.001941996727 +2.499311488e-06 -0.009934723154 0.007503312605 0 -9.744998558 6.937914292 1019.303601 0.001962123942 +2.497689824e-06 0.002280710121 -0.00631822512 0 -5.508649843 -18.68486671 905.9419213 0.002207647039 +2.496728888e-06 0.002968341815 0.005850430846 0 25.03328483 9.149242739 1041.519963 0.001920270442 +2.499867774e-06 -0.00602228146 -0.0001144359517 0 -3.982148711 -2.382135918 902.3207676 0.00221650667 +2.498978513e-06 0.009813154908 0.0006894039921 0 -13.98562262 -2.502160113 993.860484 0.002012354885 +2.499635465e-06 -0.003614923102 0.01385446756 0 -5.840720132 5.957272155 977.02495 0.002047030631 +2.496395339e-06 -0.006875304217 -0.01088443747 0 1.221191173 -25.84159929 962.9896307 0.002076865561 +2.498469648e-06 0.00697548816 -0.009688534567 0 2.802268389 18.51695968 1070.228068 0.001868760556 +2.497639932e-06 -0.002817374635 -0.005722664336 0 17.64635596 13.86318093 1032.532914 0.001936984259 +2.499915527e-06 0.007410009596 -0.01485055114 0 -4.294866877 -0.7737773938 1061.713409 0.001883747519 +2.498073464e-06 0.005065882765 0.005674566363 0 -16.61947069 -10.61937437 1004.461706 0.001991116225 +2.499549328e-06 -0.001454921938 -0.004272460146 0 -7.00334214 -5.047286964 909.2162963 0.002199696605 +2.498864309e-06 -0.002436366342 0.001979472537 0 5.12957179 14.02058304 990.4337268 0.002019317341 +2.498030474e-06 0.006711046775 -0.006726502525 0 16.60813939 -12.54512714 1048.395918 0.001907676257 +2.495236489e-06 -0.006750187967 0.01052574971 0 18.70890323 24.35975171 994.4054883 0.002011251973 +2.499332245e-06 -0.0009241927089 -0.01127229878 0 -7.224535108 -8.147089152 942.1468145 0.002122811402 +2.495603311e-06 -0.008344048411 0.0139912677 0 -3.224701124 27.14057116 921.0824159 0.002171358356 +2.499405677e-06 0.002616408109 0.004427772188 0 11.12646398 -1.075332458 1025.205874 0.001950827683 +2.497840366e-06 0.003337319139 -0.01216901468 0 9.460425138 19.81586826 1056.217855 0.001893548751 +2.498156349e-06 -0.004792935383 0.01040918932 0 6.317967235 -15.82519794 887.133789 0.002254451386 +2.497741871e-06 0.007530022077 0.003116170471 0 -8.878032657 -20.39038128 1046.128181 0.001911811609 +2.495844877e-06 0.009102065954 -0.01189670605 0 27.13441045 -13.14370794 1045.230475 0.001913453585 +2.497085263e-06 0.003954963139 0.0008893454005 0 12.32384565 -17.92874229 900.6818499 0.002220539917 +2.496826809e-06 0.004439907027 0.01207783671 0 -3.583229031 25.7638237 1032.04961 0.001937891338 +2.497154371e-06 -0.008354286589 0.004046615884 0 -16.75467859 -13.73344092 907.7118541 0.002203342383 +2.498729349e-06 0.006652446524 0.007203716564 0 -14.46280306 -1.637896792 912.8696065 0.002190893404 +2.497695858e-06 -0.0003030884359 -0.01082154552 0 -20.22715911 -7.413825592 1003.199462 0.001993621483 +2.496361278e-06 0.007821443537 0.009496484539 0 -3.82304844 26.76491898 1001.670978 0.001996663619 +2.499777545e-06 0.002335224091 0.01243132382 0 -2.501687264 -5.393068681 891.2611881 0.002244011101 +2.499118401e-06 0.009566051187 -0.0005684262584 0 -6.207915892 12.60723281 1058.166836 0.001890061125 +2.498994377e-06 -0.007694614558 0.01158641689 0 -11.71916541 -5.299165458 906.7672747 0.002205637605 +2.499063044e-06 -0.004559823452 -0.001348335736 0 8.682787563 -10.10671242 973.2133787 0.002055047787 +2.497976582e-06 -0.009854885195 0.009622010817 0 -2.9591254 -19.60824059 985.4598937 0.002029509281 +2.499468672e-06 -0.002815527469 0.006247966387 0 -1.436728583 -10.2386534 1002.873006 0.001994270449 +2.497729799e-06 -0.00275348573 -0.01389277671 0 10.2626414 -16.69740256 919.4778 0.002175147676 +2.495348006e-06 0.00510145077 -0.00901384993 0 11.83984124 -27.08009407 968.2708816 0.00206553769 +2.497889131e-06 -0.009138242877 -0.008085959419 0 -18.39285617 5.593604709 935.3503256 0.002138236279 +2.499020947e-06 -0.009213921041 -0.009922876032 0 0.2185652128 -13.78794074 985.3084028 0.002029821317 +2.499363336e-06 -0.009088074248 0.001404691839 0 -11.26034459 2.312355859 1018.613198 0.001963453845 +2.497674508e-06 0.007320061582 -0.001095326194 0 -4.988814337 -21.68282233 1031.319149 0.001939263904 +2.498195236e-06 -0.004900624938 0.005146881135 0 -5.029451432 -17.93311746 980.0639292 0.002040683205 +2.495899785e-06 0.008454944817 -0.003042982626 0 -17.64670544 -20.88505755 954.2158631 0.002095961802 +2.495294493e-06 -0.008017577096 0.00598950332 0 16.13199735 28.48672043 1066.396272 0.001875475423 +2.498398805e-06 -0.007086006831 -0.009722673905 0 -15.51227162 -8.482838098 987.7463826 0.002024811263 +2.497436594e-06 -0.002511173422 0.001982100236 0 -5.04381799 19.27328038 879.5275428 0.002273948117 +2.499834364e-06 0.007170458585 -0.01261818306 0 -5.137732356 2.000649272 957.9129696 0.002087872347 +2.497543324e-06 0.009477757355 -0.005810269006 0 -4.130238786 -20.31714076 934.9898621 0.002139060626 +2.496739298e-06 0.001315587587 -0.00166958991 0 -15.10105501 -19.38949477 961.9075832 0.002079201822 +2.497149983e-06 0.001620594803 0.001480247942 0 -20.84892073 14.11758127 1054.179416 0.001897210256 +2.499301318e-06 -0.009362581898 0.007005589257 0 8.689840323 -7.235421034 956.4779742 0.002091004763 +2.498237293e-06 0.0006490300037 0.009867676422 0 17.8233263 5.447163712 992.3366669 0.002015445027 +2.499113437e-06 -0.009994067047 0.01016611875 0 8.62816695 -9.87572471 984.7029957 0.002031069275 +2.497694824e-06 -0.002786236019 0.001987130523 0 -1.528724627 -20.31202538 948.336592 0.002108955846 +2.49751318e-06 0.004505248968 0.002503369635 0 13.52541168 16.3329405 950.5239222 0.002104102751 +2.499706548e-06 0.009240850839 -0.01137651437 0 -6.079143219 3.714116533 929.8616856 0.002150857521 +2.497012797e-06 -0.003246978507 0.007935029618 0 -14.05782107 -16.57146981 888.6637724 0.00225056997 +2.495467145e-06 -0.008379547866 -0.01352072373 0 -26.6750588 -12.90558192 983.5098387 0.002033533292 +2.497209314e-06 0.009950790079 0.002527827302 0 21.32782579 -1.167152505 903.7400147 0.002213025834 +2.497202196e-06 0.0005880326731 -0.008813073188 0 20.30492552 9.392583523 945.3674053 0.002115579603 +2.496995429e-06 0.005442451644 0.003109739302 0 -13.50735404 22.40704328 1066.822873 0.001874725458 +2.498751926e-06 -0.007168425 -0.006053739956 0 6.096888971 -13.59379923 942.8102569 0.002121317609 +2.497282154e-06 0.003074588683 0.006692679478 0 -21.09877705 -1.958062038 908.4790442 0.00220148171 +2.498947269e-06 0.004279376501 -0.002302455143 0 -15.25028151 2.239537457 1062.108234 0.00188304726 +2.49598649e-06 0.002668723431 0.00620702452 0 3.729586331 25.54299797 910.5710982 0.002196423765 +2.498222453e-06 0.00825986248 0.01137174846 0 13.65843187 14.17936289 1043.889355 0.001915911864 +2.499858997e-06 -0.002596943816 0.001317407198 0 5.04508126 0.8480237363 963.3409774 0.002076108094 +2.49730935e-06 0.002661634427 0.01341619063 0 24.32183725 0.5596507595 1048.316408 0.001907820945 +2.494184298e-06 0.004577466259 -0.00432900378 0 26.26950994 20.60604582 978.0993088 0.002044782142 +2.497976968e-06 0.00630731415 -0.003036510819 0 -18.8104455 8.34600491 1022.757409 0.001955497935 +2.498983691e-06 -0.001041336888 0.002205916133 0 -3.917908808 11.96167956 882.7284227 0.002265702507 +2.497647437e-06 0.008819916248 -0.00622617733 0 17.3811585 13.77949428 1022.196433 0.0019565711 +2.499782705e-06 0.00485745877 -0.003309410226 0 3.826872824 4.634926007 911.7267313 0.002193639751 +2.497117145e-06 -0.004279797822 0.0136066034 0 -18.0807202 14.15591095 955.906681 0.002092254443 +2.497301451e-06 0.0005744995223 0.004016207862 0 -13.38699426 20.42799377 1050.883276 0.001903160937 +2.497000516e-06 0.008144178693 0.01244534748 0 23.25856359 -10.61858562 1043.423222 0.001916767768 +2.499359495e-06 -0.001244055084 -0.01385358692 0 -6.708265176 -9.801631464 1049.309891 0.001906014626 +2.499012851e-06 0.001698634615 0.01280166244 0 -12.02093896 4.425875539 911.5324472 0.002194107304 +2.496623009e-06 -0.008801899222 -0.01173915634 0 -20.92075805 17.16661694 1040.795671 0.001921606763 +2.497342918e-06 0.0005266521452 0.0005551284668 0 13.16277369 -18.42829433 981.9944814 0.002036671323 +2.49557123e-06 0.001278416961 0.01246878773 0 25.16703382 -16.11813371 1003.51229 0.001993000007 +2.499206213e-06 0.00900120296 -0.008978459251 0 12.77653404 -2.685733453 1036.056783 0.001930396126 +2.497177935e-06 0.004595442857 0.001363523249 0 -18.75775308 -17.05433698 1066.652534 0.001875024842 +2.497611335e-06 0.008511594445 0.008872667325 0 9.827917675 20.43199026 1036.946062 0.001928740629 +2.497069349e-06 -0.0026510063 -0.01138513276 0 8.512218554 -20.45390766 914.6884273 0.002186536902 +2.496359285e-06 0.008870545528 -0.01366704939 0 21.39607529 16.36217895 997.6470853 0.002004716928 +2.498151106e-06 -0.002474867846 0.004629755435 0 -6.354530505 -19.44947192 1063.751683 0.001880138036 +2.498977363e-06 5.781254731e-05 0.006067084288 0 9.657012072 9.863976177 965.0923632 0.00207234051 +2.498864029e-06 0.002174238665 0.006298767105 0 -5.541149673 -14.33567988 1019.487807 0.001961769417 +2.499199602e-06 0.005093382946 -0.006106042368 0 5.775495918 10.49289947 946.5446607 0.002112948372 +2.497730302e-06 -0.008105917689 0.01370624231 0 -21.39561449 2.84413808 1012.701464 0.00197491568 +2.499808099e-06 0.004201805852 -0.01423706719 0 -5.298282356 1.66619492 896.4942621 0.002230912215 +2.498452322e-06 -0.006829926567 -0.01022582462 0 0.6582051182 -17.14910763 975.2253439 0.002050808064 +2.496375382e-06 -0.004499171828 -0.001267659171 0 -24.23803429 14.28002337 1044.27769 0.001915199395 +2.498651174e-06 -0.006189132426 -0.009877375129 0 -15.80180081 2.951056983 978.5208251 0.002043901314 +2.497723453e-06 0.009595347475 -0.008281213101 0 -9.770550153 16.03672836 879.7602076 0.00227334674 +2.499744556e-06 -8.553564548e-06 -0.01254521918 0 7.076844679 0.6172491344 993.8157945 0.002012445376 +2.499596693e-06 0.0008035648707 0.005787199319 0 -1.823189653 -8.979077957 1020.106483 0.001960579639 +2.4979019e-06 0.006735702399 -0.01020475125 0 2.684090933 -18.44607971 909.6806207 0.002198573823 +2.498544879e-06 -0.003102265592 -0.004886366799 0 10.88594047 11.27795039 918.6276875 0.002177160592 +2.496846522e-06 0.005756387152 0.01014935255 0 18.65536328 -11.75988887 877.6968267 0.00227869116 +2.498661474e-06 0.005137116681 0.0112526685 0 13.54348812 10.03645656 1030.061418 0.001941631796 +2.499610674e-06 -0.004329793346 -0.01307007008 0 -5.499227518 -6.904845732 1000.283006 0.001999434148 +2.498319203e-06 0.003310669847 0.00459947245 0 -16.86248546 -8.315229552 1025.189789 0.001950858292 +2.497739784e-06 0.003193627833 0.007763366983 0 8.877295219 -20.70734867 1059.311754 0.001888018322 +2.499704295e-06 0.003651715433 0.006882324438 0 6.323345075 4.01004063 973.6052162 0.002054220712 +2.497934311e-06 0.007956762961 0.01092325654 0 -20.65519967 4.667648186 1041.507601 0.001920293234 +2.499420254e-06 -0.005699087242 0.007079765294 0 -8.981651311 -4.97235544 953.316832 0.002097938411 +2.499529758e-06 -0.001598383151 0.01135348607 0 -9.346055034 3.700901538 1036.458942 0.001929647108 +2.499629933e-06 0.002293382939 -0.008725000145 0 7.553636409 2.483747996 924.2084526 0.002164013967 +2.493455893e-06 -0.004799737986 0.01234251466 0 -25.40988601 28.05414768 1045.226059 0.00191346167 +2.499979205e-06 0.002887327517 0.006905997552 0 -1.305099954 1.417599856 944.8434628 0.002116752752 +2.498869161e-06 -0.003059741366 0.00513551394 0 -3.895481139 14.87432235 1022.241074 0.001956485659 +2.497986301e-06 0.001464774753 0.01319830591 0 -0.5017868598 20.32440167 1012.760162 0.001974801216 +2.497966335e-06 0.003889018847 -0.008577149576 0 17.72703256 1.697352146 882.7353556 0.002265684712 +2.495794695e-06 0.00381737845 0.0138536263 0 24.05188336 -11.73954479 922.2796444 0.002168539675 +2.496296438e-06 -0.001618017405 -0.01324227971 0 -12.95466178 -20.87280985 902.1349515 0.002216963212 +2.497045111e-06 0.007374975816 0.002266526073 0 -5.030921557 23.14243578 973.7730281 0.002053866704 +2.496023537e-06 -0.00761728507 0.006089861398 0 -24.31751037 17.47097688 1061.135746 0.001884772997 +2.49801015e-06 1.392522827e-06 0.008196149063 0 -17.79340799 2.60221145 901.1553705 0.002219373113 +2.499877637e-06 -0.00346523236 0.01288517947 0 2.623465361 4.503877386 1053.602335 0.001898249401 +2.497499355e-06 -0.0001803431427 0.001142965949 0 17.03717219 16.7956842 1069.376814 0.001870248143 +2.499788554e-06 0.003351022303 -0.002945694665 0 3.241503025 -4.675050803 874.7797897 0.002286289674 +2.498288851e-06 0.006584231639 -0.005455417223 0 -5.15114521 18.7247027 1049.508509 0.001905653916 +2.496484428e-06 -0.006316347728 0.009443410237 0 -22.70580812 -5.848606333 883.7803953 0.002263005619 +2.497333818e-06 -0.008553109784 -0.01452705906 0 11.67980341 -16.67814504 881.3929938 0.002269135351 +2.49725103e-06 0.0001910666656 -0.006754517897 0 -21.26083821 -12.61199666 1053.833232 0.001897833489 +2.495773728e-06 0.008096952187 0.008346375888 0 25.56182853 -9.058885171 932.2091792 0.002145441221 +2.495444304e-06 -0.009731135019 -0.009754831642 0 -21.28884839 -20.52310764 978.9689557 0.002042965702 +2.498007119e-06 0.003668458546 0.003335180038 0 -15.13206809 9.003090289 881.6981075 0.002268350111 +2.49904135e-06 -0.009030997949 0.005673140308 0 11.29329472 -5.439216441 905.134645 0.002209616007 +2.498060629e-06 -0.009609076474 0.002289841056 0 -16.99488023 8.206049163 957.9742984 0.002087738683 +2.493919616e-06 -0.0005625297083 -0.005270363123 0 -24.03776168 -23.02168553 953.5774641 0.002097365002 +2.498007996e-06 -0.002026890158 0.001940763553 0 3.57251478 20.05103854 1020.077455 0.00196063543 +2.496497139e-06 -0.002375812549 0.01212651602 0 -23.55228881 -12.73320986 1011.01549 0.001978209057 +2.497910389e-06 0.006425644313 -0.007527437608 0 -2.635773447 -19.94462435 983.7883144 0.002032957671 +2.499605128e-06 -0.005490766121 0.009755717274 0 -8.533644911 3.001273892 1017.863331 0.001964900335 +2.495335438e-06 -0.003669719789 2.231802559e-05 0 -16.65043405 -21.94516199 901.2532814 0.002219132004 +2.499861044e-06 -0.008770034951 -0.00351021657 0 4.976283753 0.5776534298 950.2742876 0.002104655494 +2.498047839e-06 -0.004060760853 0.001129480849 0 9.059336885 -15.42400357 905.0147142 0.002209908821 +2.497828019e-06 -0.006875208537 -0.01458144973 0 -11.54670363 -15.07900504 910.9407988 0.002195532358 +2.498089005e-06 0.008250207277 0.008775794485 0 16.34037703 -8.107546084 932.7887538 0.002144108183 +2.498388922e-06 0.002451240974 0.0007325005461 0 -15.91506422 -3.34174124 905.730326 0.002208162786 +2.499816423e-06 0.006789550558 0.01363951331 0 -4.797261936 2.264506128 875.4667201 0.002284495748 +2.499570874e-06 -0.003045578809 0.01496977533 0 1.690151291 8.389309811 923.6982607 0.00216520923 +2.495058827e-06 0.002811308554 -0.01161942855 0 -18.03043533 -21.57172387 893.6780473 0.002237942407 +2.497557725e-06 -0.0002202963829 0.002025829435 0 3.675158068 20.88585046 959.1848455 0.002085103835 +2.498519942e-06 0.00191033348 0.01384427416 0 -0.5567031214 -15.36733575 893.5780978 0.002238192727 +2.497025442e-06 -0.009217256103 -0.01295719675 0 13.54938596 -20.7922153 1017.034601 0.001966501433 +2.496047843e-06 -0.007390202689 -0.01415717983 0 -22.31372768 -12.21758067 904.31556 0.002211617369 +2.49627766e-06 -0.008775797361 -0.01192625207 0 -20.4854009 -15.52572633 941.5349373 0.002124190958 +2.497752686e-06 -0.001277999943 0.002400795661 0 15.99316698 -13.25277263 979.3896429 0.002042088166 +2.497996366e-06 -0.006699945321 0.006784893111 0 11.3694433 -16.98404731 1020.678477 0.001959480918 +2.498029251e-06 -0.001826365883 -0.00878346063 0 -1.758029854 -20.2910437 1025.579227 0.001950117502 +2.497721189e-06 0.003288576431 -0.001500212629 0 -3.741086485 -22.48195444 1067.204102 0.001874055765 +2.496596608e-06 -0.009157088622 0.002246312674 0 -23.03325358 -2.127642585 886.1504239 0.002256953161 +2.497710723e-06 -0.002028459241 0.005877795161 0 -3.56990057 -22.17273017 1049.211615 0.001906193156 +2.499429529e-06 -0.005931164604 -0.009561898077 0 11.08501442 0.5583634506 1039.004745 0.001924919024 +2.498938406e-06 0.007846590052 0.001688559086 0 0.5161245385 13.11186779 900.4039528 0.002221225255 +2.497330248e-06 -0.001172660561 -0.005166612428 0 -20.29807746 -9.815602365 975.3496804 0.00205054663 +2.499882204e-06 0.0002714455454 0.003164325643 0 3.866263434 3.029760462 1011.969784 0.001976343593 +2.499420028e-06 0.004693382913 0.003644789422 0 -9.212176367 -4.699334028 960.12987 0.002083051535 +2.499395483e-06 0.009069530992 -0.005010584104 0 -10.28214624 5.743452456 1071.013514 0.001867390069 +2.499139338e-06 0.003132688315 0.002855496285 0 12.07056086 7.174189667 1070.11462 0.001868958672 +2.496629319e-06 0.00357436202 -0.007125187959 0 24.86399557 2.922071152 963.7313041 0.002075267236 +2.499179853e-06 0.001162109161 0.002245889499 0 12.4611334 0.6806378672 974.2942085 0.002052768027 +2.495987519e-06 0.004850444365 -0.002874614387 0 22.26468716 17.83880122 1006.497881 0.001987088138 +2.498960359e-06 0.00570495124 -0.007156905415 0 -3.113436453 13.1828297 939.2267551 0.00212941123 +2.49723834e-06 0.004576809867 -0.003039437339 0 22.37538896 -0.976064355 952.5840032 0.002099552368 +2.498763188e-06 -0.0004527090723 -0.007211930263 0 -7.429993678 12.3028253 913.6509016 0.002189019894 +2.497134457e-06 0.0003437066171 -0.01409413705 0 -19.12764432 -11.81460483 938.7167708 0.002130568093 +2.499957827e-06 -0.0008584216004 -0.009794930003 0 2.532138982 -1.155261418 958.3268858 0.002086970563 +2.49935112e-06 0.009131960552 0.01340721207 0 -7.408773039 -7.11043164 901.3224124 0.002218961797 +2.49785261e-06 -0.0002302492782 -0.009776749627 0 14.65955772 12.13683952 918.051627 0.00217852672 +2.496969927e-06 -0.007311622277 0.01153256049 0 -13.69054527 20.74996902 1009.374834 0.001981424474 +2.498438144e-06 0.009408562505 0.007867953731 0 12.98884536 8.905163961 890.8388383 0.002245074995 +2.495972322e-06 -0.006486414787 0.006918475635 0 16.47006317 23.26934291 1003.845609 0.001992338246 +2.496774896e-06 -0.006422821283 0.004390248782 0 -22.07627983 7.125615247 912.9545179 0.002190689635 +2.499327961e-06 -0.001967132874 0.001849221911 0 9.038238697 -8.1514455 1049.72119 0.001905267817 +2.498903916e-06 0.001950553181 -0.004451473947 0 -13.10130406 7.78791068 1029.229775 0.001943200682 +2.497995639e-06 -0.004917374407 0.005699123272 0 -20.23575664 -0.1156997567 1010.399205 0.00197941565 +2.499977553e-06 0.001494386378 0.01396052975 0 0.139275478 2.189240224 1035.309688 0.001931789128 +2.494567364e-06 0.009418395869 0.01484320808 0 24.75411243 22.28013173 1009.542441 0.001981095512 +2.49837217e-06 0.003032977995 0.003533082618 0 -4.805119576 -17.06668059 982.4003469 0.0020358299 +2.498630149e-06 -0.007215750115 -0.01057959279 0 6.139053841 -14.79882608 967.7567892 0.002066634946 +2.496423223e-06 0.006374636511 0.01359945812 0 13.85105785 22.90824031 1000.359744 0.00199928077 +2.499122693e-06 -0.004758236604 -0.01445262783 0 -9.403851777 -8.049794153 934.3860486 0.002140442918 +2.499459045e-06 0.005469648787 0.002724446186 0 -7.001193476 -8.52694925 1060.621029 0.001885687673 +2.496926282e-06 -0.004273462049 -0.003445222909 0 14.80031917 18.4585459 953.7980102 0.00209688003 +2.496683841e-06 0.001268203827 0.002383415659 0 25.76429818 -8.873872887 1057.578072 0.00189111334 +2.498354877e-06 -0.005441635633 -0.009410887621 0 -4.573489369 -15.36052319 883.3421515 0.002264128341 +2.496382292e-06 0.000391568332 -0.007996746262 0 9.334130647 -22.45068946 903.4097104 0.00221383496 +2.499130301e-06 -0.003975391374 -0.01120406016 0 -4.126295417 -11.97610593 960.3251726 0.002082627903 +2.497652405e-06 -0.008731209273 -0.00651699478 0 -14.53510482 16.53394927 1015.617956 0.001969244428 +2.49957946e-06 0.006884856895 -0.01121726467 0 4.72375689 6.534547812 879.1397508 0.002274951165 +2.497685191e-06 0.006308284141 0.01481507301 0 -18.40510105 8.829840964 948.4086775 0.002108795551 +2.499028229e-06 -0.0009999490809 0.01407456899 0 -0.117373595 -12.91701329 926.4454552 0.002158788722 +2.497110629e-06 0.0002738493774 -0.005816401346 0 6.452412547 -24.60740551 1057.791785 0.001890731265 +2.498105687e-06 -0.001363378898 -0.01361174171 0 -18.69309411 1.912930694 965.1150107 0.00207229188 +2.499028911e-06 -0.00764634911 -0.01497092121 0 5.421964696 -11.21260495 893.5656026 0.002238224025 +2.497336392e-06 0.00562706999 -0.007934901193 0 -0.8277247706 -23.95448987 1038.059585 0.001926671676 +2.496484222e-06 0.004537412277 0.0004328390071 0 16.83904235 17.07892221 904.0048048 0.002212377622 +2.498031741e-06 -0.0003089015326 -0.002520677985 0 -19.07817158 -5.584490319 1001.621901 0.001996761451 +2.499446036e-06 0.00635824631 -0.009841858372 0 -4.135185462 10.45083481 1067.686296 0.001873209395 +2.497349964e-06 0.009673034032 -0.001837906551 0 4.983798656 20.69473517 924.2477199 0.002163922028 +2.497489342e-06 0.006426579161 0.008320611448 0 -19.2295353 6.44716803 904.7500672 0.002210555238 +2.495485042e-06 0.008041385747 -0.009624718654 0 -17.61517934 -22.1120538 940.1598755 0.002127297763 +2.495215245e-06 -0.008170145052 -0.01235608694 0 -18.40219938 -27.10813095 1058.382184 0.001889676555 +2.499679285e-06 0.002693475154 -0.007457203944 0 -7.421612364 1.650076365 949.2483492 0.002106930185 +2.498622286e-06 0.008305893675 0.004270456096 0 -15.48922072 -8.320963494 1059.018234 0.001888541609 +2.499296742e-06 -0.001468198495 0.004972770209 0 5.137208053 -9.111533773 881.885688 0.002267867624 +2.496820306e-06 0.005314638214 -0.0005569488066 0 18.47378604 14.57074744 932.5629898 0.00214462725 +2.496630513e-06 -0.002478863504 0.004610500932 0 -19.03930762 -15.04327437 934.2555205 0.002140741966 +2.49700131e-06 0.00861031963 0.003903764491 0 16.75717923 -17.78164087 997.2572187 0.00200550065 +2.496485459e-06 -0.005157482908 -0.01388085611 0 -22.745975 7.190565883 899.3105031 0.002223925989 +2.496816149e-06 0.004773283913 0.003095513026 0 19.79625795 -13.4954264 948.9951909 0.002107492239 +2.497062091e-06 0.003273257473 0.009197129002 0 25.18956447 1.512165104 1040.581641 0.001922002004 +2.498140649e-06 0.008573921826 -0.001351639554 0 -9.428889561 -16.61323633 990.3123004 0.002019564938 +2.499090032e-06 0.005921218283 -0.009257923902 0 -0.4923101836 -12.52476162 929.0036787 0.002152844005 +2.495844535e-06 -0.001639433252 -0.01498253841 0 15.07675525 -23.47978131 967.3060867 0.002067597865 +2.496382316e-06 -0.002814126736 0.006725877738 0 -24.22596487 -12.15277432 1007.060571 0.001985977863 +2.499306485e-06 -0.003346224981 -0.01126376707 0 -8.680657589 -9.077930738 1066.384849 0.001875495514 +2.498613736e-06 -0.00894870156 -0.006911048137 0 -13.20031192 11.09078583 1035.226635 0.001931944109 +2.495134788e-06 -0.006186596905 0.008080269706 0 -23.68524857 23.26061826 1063.44985 0.001880671664 +2.497269315e-06 -0.000285074492 -0.0001566975005 0 14.60213849 19.32434886 1036.004876 0.001930492844 +2.49606763e-06 0.001667402619 -0.008474701631 0 20.91205034 -15.16426934 920.55964 0.002172591447 +2.497796958e-06 -0.007037405907 0.01352681162 0 13.11782216 15.90769583 981.9558438 0.002036751461 +2.496987495e-06 0.008301043115 0.01294899263 0 11.23235244 23.76718648 1070.478376 0.001868323588 +2.499967109e-06 -0.009210811104 0.01435926192 0 0.3110159604 2.435514656 957.3005877 0.002089207952 +2.498090663e-06 0.001579742287 -0.004955546306 0 -15.25735305 10.29110162 941.5053014 0.002124257821 +2.499566611e-06 -0.005179440472 -0.001360905413 0 6.508442538 5.083653879 886.9937097 0.002254807422 +2.498157218e-06 0.006060475549 -0.007808348634 0 12.1562913 16.33758881 1060.451614 0.001885988926 +2.499557967e-06 -0.0009521837905 -0.007186181985 0 8.532618655 -2.148973826 935.7626201 0.002137294178 +2.498833836e-06 0.002755323956 -0.01224228183 0 14.22273089 1.685638544 937.6508256 0.002132990176 +2.497281332e-06 -0.008515083864 -0.01010652829 0 14.48873131 -17.77695149 983.1033295 0.00203437415 +2.498318086e-06 -0.00400768891 -0.01072416513 0 -17.82591504 4.355760764 1000.272256 0.001999455636 +2.496366711e-06 -0.008872641362 -0.01466297338 0 15.87218076 -17.51568539 876.3898697 0.002282089364 +2.497014808e-06 0.001088950713 0.00714067159 0 24.4642279 6.657608226 1037.169443 0.001928325225 +2.499793808e-06 -0.009528741511 0.0006768266461 0 1.564776756 6.17721826 992.2784708 0.00201556323 +2.498626873e-06 -0.002616847083 0.0005869427975 0 14.70382459 7.912678814 1007.387551 0.00198533325 +2.49706702e-06 0.004450505511 0.009701379072 0 -1.332738994 22.76590165 941.1677897 0.0021250196 +2.498648942e-06 0.00578979989 -0.0131594568 0 10.8040108 10.66557256 923.3739528 0.002165969696 +2.499848696e-06 -0.0001063890755 -0.009571753435 0 4.182564529 -3.1221522 948.7827347 0.00210796416 +2.499230732e-06 0.007116595348 -0.01429316242 0 12.46636931 -2.341183834 1022.498032 0.001955993985 +2.497901737e-06 0.006051710746 0.005502923874 0 15.33025539 11.60228799 938.213826 0.002131710218 +2.493600393e-06 0.003461391637 0.005388698622 0 21.22703835 24.17497101 898.3892888 0.002226206417 +2.495391563e-06 0.004472404448 -0.005880035197 0 15.88843281 -22.88050573 916.9113346 0.002181235987 +2.499083e-06 0.00226448189 0.004731919316 0 3.314471606 -13.38449975 1018.044084 0.001964551468 +2.494930579e-06 -0.009176590974 0.009080348541 0 -27.24168411 17.94577577 1023.714368 0.001953669951 +2.494322395e-06 -0.008318951288 -0.009335023568 0 17.37989619 -28.22166207 982.7357026 0.002035135179 +2.497063955e-06 -0.006964822062 0.004652441817 0 12.06689811 22.37825289 1048.725217 0.001907077247 +2.498250215e-06 -0.002337473352 0.009826427393 0 -14.719808 -12.86125705 1044.620115 0.001914571596 +2.498852503e-06 0.009717177395 -0.008957937432 0 -10.87798949 9.348046868 946.605822 0.002112811852 +2.499690511e-06 0.008712486327 0.005290177383 0 -4.170601098 6.345709787 965.1324353 0.002072254467 +2.499284205e-06 0.008709666552 -0.005664912304 0 -11.16299725 -3.979233293 990.3757035 0.002019435647 +2.499875092e-06 -0.007684362093 -0.003346902779 0 2.004750588 4.697120943 1021.767219 0.001957392998 +2.497859582e-06 0.005832296582 0.006330387772 0 -17.86033092 10.78791109 1008.151316 0.001983829181 +2.497166361e-06 0.003597978298 -0.001770817316 0 -15.64402085 -16.08760925 942.2104054 0.002122668131 +2.4991839e-06 -0.008874858897 0.005320333047 0 1.591990984 -13.33320173 1050.917403 0.001903099134 +2.497168802e-06 -0.007081655245 0.008544776968 0 -15.19212005 18.59943319 1008.800241 0.001982553056 +2.498380481e-06 -0.005272124195 -0.0001667216769 0 15.37986685 -3.689112232 878.5905498 0.002276373221 +2.495538151e-06 -0.005328635708 0.01106551699 0 -22.35194445 18.40708191 968.6571487 0.002064714025 +2.499162157e-06 -0.008473031372 -0.0008909076406 0 11.59879028 3.007892507 925.5396968 0.002160901371 +2.499002186e-06 -0.006899225507 -0.01154029408 0 -14.2412239 4.23119084 1051.505657 0.001902034465 +2.498465905e-06 -0.00451936515 0.002070009483 0 -7.837226626 15.66014431 999.5144084 0.002000971655 +2.49966297e-06 0.008482815279 -0.006269825748 0 -4.922767232 -5.751244733 922.0318891 0.002169122374 +2.498167947e-06 -0.004677411304 -0.01037598343 0 8.542834842 18.13873081 1047.143505 0.001909957891 +2.495568408e-06 -0.008536553145 0.00943658794 0 -26.32474921 9.734715661 942.1332971 0.002122841859 +2.497852579e-06 -0.008872963362 0.01142183724 0 -11.13378583 18.67095508 1048.61857 0.001907271202 +2.497871612e-06 0.008689927366 -0.01274312282 0 -6.601573882 -17.79481287 919.6329565 0.002174780695 +2.499405406e-06 -0.002167150564 -0.01493449529 0 9.929562361 4.413789922 996.3689431 0.002007288579 +2.495962285e-06 -0.006917893672 -0.009095788111 0 -22.35890458 -14.42291081 935.7341543 0.002137359196 +2.49918413e-06 0.00818826261 0.004213268131 0 6.099919986 -11.68966047 1032.09032 0.001937814899 +2.49646481e-06 0.006609201711 0.006699581004 0 16.27550325 23.13880992 1063.343705 0.001880859397 +2.495078933e-06 -0.006639563763 0.01014623738 0 -27.36238454 -18.51920273 1052.394041 0.001900428853 +2.495874565e-06 -0.006347124339 -0.006935005195 0 -29.57346171 -6.166453438 1051.05369 0.001902852366 +2.496615969e-06 0.0008289839141 -0.007976801118 0 15.21327123 19.66375928 955.1665756 0.002093875614 +2.496196798e-06 -0.00318935385 -0.002228867027 0 -18.33880485 22.5181855 1052.383823 0.001900447304 +2.496311394e-06 -0.001357934223 0.01275811348 0 20.21923589 -13.41315827 892.8358189 0.002240053499 +2.496913344e-06 -0.001175737823 -0.0007782878936 0 -18.46724974 14.44737386 943.2538787 0.002120319932 +2.497645128e-06 0.009706954123 0.005552117571 0 15.81364248 -11.56955873 902.5507817 0.002215941796 +2.49559771e-06 -0.007071970925 -0.0009055874404 0 -24.36869691 -11.93460252 913.8537169 0.002188534076 +2.49667135e-06 -0.009340346432 0.002658387304 0 20.70361451 -16.82893568 1033.544157 0.001935089068 +2.496448037e-06 0.002187418747 -0.00415003068 0 18.77929747 15.19969513 905.9648926 0.002207591063 +2.499711481e-06 -0.009908835208 0.009920443122 0 3.391936539 -7.363880451 1067.252581 0.001873970638 +2.496973153e-06 0.00399159892 -0.007774001635 0 -21.99454227 -11.87022807 1015.348393 0.001969767239 +2.498309933e-06 0.004650884867 -0.001862924332 0 5.813070318 17.86588483 1021.642633 0.001957631695 +2.496899627e-06 0.005593785378 0.0004494949384 0 19.95762113 12.84646588 952.7096562 0.002099275458 +2.499786322e-06 -0.003798000864 -0.002057251744 0 -6.519427949 0.4320853265 999.4304743 0.0020011397 +2.496512285e-06 0.004118901538 -0.0108927493 0 2.316661828 -24.92033677 947.1300535 0.002111642422 +2.49849904e-06 0.004092173567 -0.004774660065 0 -14.81296009 5.155716316 905.0546843 0.002209811224 +2.498514629e-06 -0.00508008468 -0.01366095891 0 -7.933284976 14.80409121 974.2510997 0.002052858858 +2.496881682e-06 -0.0004172314517 0.01250218729 0 -21.06934888 -10.95043601 950.3759736 0.002104430305 +2.49658422e-06 0.002874957658 -0.01154331575 0 21.94118097 9.983016576 921.7939774 0.002169682217 +2.499459368e-06 0.0002231280366 0.009167294875 0 -6.440781686 -6.655462546 890.6127662 0.002245644882 +2.499149068e-06 -0.005379398991 -0.00380640395 0 4.251789019 -11.62429803 948.6682552 0.002108218536 +2.496608587e-06 0.006708247862 0.01423055226 0 24.95155007 4.840232901 975.4218243 0.002050394968 +2.496284612e-06 -0.003862563493 0.01457410692 0 3.127824678 28.4656815 1049.949419 0.001904853666 +2.499515575e-06 0.0009010029398 0.004741621027 0 -0.8064783462 10.30230394 1049.786337 0.001905149581 +2.49757819e-06 0.00248880303 0.002233021106 0 -9.962694851 -19.98942891 1014.459137 0.001971493899 +2.497119723e-06 0.000679146992 0.01406310552 0 21.02487332 -0.6770870221 876.0695993 0.002282923642 +2.496236358e-06 0.0001557287807 0.002319908417 0 -13.19977918 -22.05775126 936.4044323 0.002135829275 +2.495842468e-06 -0.005038053161 -0.01210058667 0 12.72559264 -25.80786212 997.2585218 0.002005498029 +2.498003215e-06 -0.003658315912 5.980856018e-05 0 -15.63668863 -10.81048076 950.9699026 0.002103115981 +2.496979234e-06 0.003338397122 -0.01459486238 0 9.111529969 -20.62506701 916.9339451 0.002181182201 +2.497800599e-06 -0.009977226774 -0.004243336231 0 -3.866003123 22.07203052 1068.054634 0.001872563384 +2.499120803e-06 0.0002377539827 0.007397108681 0 10.78860192 -7.313917706 982.7996527 0.002035002754 +2.496614807e-06 -0.002865979653 0.007651894363 0 -13.47089915 20.01730667 926.8147217 0.002157928605 +2.496774084e-06 -0.00497559011 0.003109738387 0 -18.32414554 -16.4352101 968.6017325 0.002064832152 +2.495430652e-06 0.0003513841704 0.01107475329 0 2.113874825 26.99252778 895.0168331 0.002234594843 +2.494239214e-06 0.006972894063 -0.0008936764835 0 25.54010668 19.8150406 951.5084188 0.002101925701 +2.497350078e-06 0.00383748495 0.00753287147 0 1.716594736 20.79267243 905.9016953 0.002207745068 +2.499379046e-06 -0.00727481422 0.003751793043 0 -10.17632855 1.406459885 921.7530482 0.002169778558 +2.495517154e-06 -0.004568228335 0.007083293879 0 -20.49890861 17.88942635 908.0320031 0.002202565541 +2.499933207e-06 -0.009263737197 0.002403480692 0 0.8418224806 3.750100511 1051.559704 0.001901936706 +2.49841262e-06 -0.0006823463086 -0.012468803 0 -12.46670549 13.35959864 1025.292438 0.001950662978 +2.49982309e-06 -0.004751814436 -0.008203583797 0 -0.7957599653 -5.914781821 1003.301327 0.001993419072 +2.495876605e-06 0.00697855589 0.008712669499 0 23.02046486 -18.9874874 1038.47849 0.001925894488 +2.497987016e-06 0.00664080488 0.00546165827 0 -7.395584922 19.76641207 1051.505492 0.001902034763 +2.499535366e-06 0.009463448743 0.0124301956 0 -0.3138689599 8.878654696 921.547363 0.002170262843 +2.498939695e-06 -0.00936695423 0.003305280127 0 -12.23528871 8.716217873 1031.435344 0.001939045439 +2.497693938e-06 0.002793079237 -0.006831362711 0 12.14219267 19.24095534 1059.049213 0.001888486367 +2.49709721e-06 0.002176359543 0.001190553792 0 -9.10019559 21.30830145 961.2080882 0.002080714909 +2.498588235e-06 -0.0008919194154 -0.008825854207 0 3.327684954 14.94803165 911.1693941 0.00219498154 +2.499159981e-06 -0.0004210773995 0.005474879458 0 5.744061931 9.899251771 882.8844146 0.002265302192 +2.499128303e-06 -0.00375971307 -9.620874189e-06 0 13.09125961 -3.901869345 1034.445983 0.001933402065 +2.499290655e-06 -0.004446382555 0.01288930978 0 -5.188249118 10.96942477 1018.666577 0.001963350958 +2.495948711e-06 0.005905581745 -0.00552299696 0 21.93037397 19.54013303 1031.261426 0.001939372451 +2.499987667e-06 0.007400076436 0.0003745805332 0 0.4776756198 -1.291033109 876.506224 0.002281786421 +2.494693304e-06 -0.009923138521 -0.001321465226 0 -30.69212824 14.10201415 1035.966224 0.001930564871 +2.498091148e-06 0.002993564345 -0.008180110368 0 18.15008381 -3.219850023 943.1518972 0.002120549199 +2.49582775e-06 0.008727156757 -0.00134867711 0 24.82658949 -7.592191483 898.1690772 0.002226752235 +2.497536532e-06 0.004563624347 -0.007057289109 0 18.4432299 -8.453694378 913.6881654 0.002188930617 +2.497114755e-06 0.005306103034 0.006272065281 0 22.34941157 -2.190269919 934.431127 0.002140339659 +2.499470891e-06 -0.001543719959 0.009904078238 0 -8.746863524 -3.845535576 928.7593828 0.002153410277 +2.498517217e-06 0.008128607702 0.009885557215 0 17.17539012 -2.528513804 1007.887585 0.001984348283 +2.49672679e-06 -0.004636064614 0.008525737713 0 12.23540783 19.41694327 896.5526652 0.002230766889 +2.497308998e-06 -0.004250441375 -0.00764536507 0 -20.81385551 -3.140945508 906.9737163 0.002205135567 +2.498721598e-06 0.00287148451 -0.01271887264 0 12.74466527 10.24597507 1022.478011 0.001956032285 +2.496513136e-06 -0.009380061752 -0.002582342047 0 -10.34775777 -24.43382834 1004.277347 0.001991481741 +2.499564643e-06 0.004098838917 -0.004817321682 0 5.921667504 6.850916379 970.3852507 0.002061037097 +2.496897914e-06 -0.0003142319247 0.002826983628 0 18.33892972 -19.14892546 1063.978404 0.001879737401 +2.499798763e-06 -0.00976153479 -8.45602504e-05 0 4.619804067 -3.881852257 951.1218069 0.002102780091 +2.497853446e-06 0.003946187245 -0.01197404909 0 -1.479789141 -19.49498392 943.2886665 0.002120241736 +2.499638921e-06 -0.000948642455 -0.007384709381 0 -4.725062981 6.368896097 933.1422335 0.002143295982 +2.497722011e-06 0.007546537295 -0.003432002971 0 -0.7599489695 19.33217806 906.1014727 0.002207258304 +2.498590149e-06 -0.00776773422 0.006689094538 0 1.214069532 -15.61674425 932.6216209 0.002144492423 +2.497521353e-06 -0.009469745108 0.009223482397 0 11.68453743 -20.57738768 1062.413448 0.001882506292 +2.49933022e-06 0.001523248525 -0.008589768838 0 9.657505493 4.780495962 930.9573542 0.002148326119 +2.499341496e-06 0.004660414485 0.002946683443 0 8.821017653 -7.09194648 986.1606897 0.002028067049 +2.49747731e-06 0.003928946713 -0.004862983476 0 -19.05823643 -13.90844989 1049.987533 0.001904784522 +2.496291557e-06 -0.004763453216 -0.00920203815 0 -21.2500816 -19.77698497 1065.32642 0.001877358867 +2.499673115e-06 0.001846810235 -0.003968807962 0 -5.155533648 5.521973348 934.2797162 0.002140686526 +2.498590358e-06 0.0001306520402 0.01485283794 0 7.996255135 15.87734642 1058.529583 0.001889413421 +2.497431793e-06 -0.001683613788 -0.006247304287 0 3.710118025 -21.3881237 957.4431312 0.002088896912 +2.498847798e-06 -0.004311134061 0.004571380243 0 3.299034692 14.44719053 976.0377834 0.002049101002 +2.499554826e-06 -0.008155035828 -0.009834235702 0 -5.746393262 7.498496752 1001.131942 0.001997738675 +2.49869972e-06 -0.009865481816 8.395238779e-05 0 0.3910265096 15.09418138 936.1317997 0.0021364513 +2.496088051e-06 -0.008978319271 -0.007539335336 0 17.29375892 -21.82861447 995.0428182 0.002009963756 +2.499621543e-06 -0.007084583603 0.003472931469 0 8.254370778 3.669080673 1038.218409 0.001926376939 +2.498810091e-06 -0.007322110548 0.008275795695 0 -5.162853627 13.96586688 965.0144922 0.002072507736 +2.499870072e-06 -0.0003855510708 0.004204391318 0 4.553807389 -1.058184036 917.1055263 0.002180774123 +2.499649355e-06 -0.001215120116 -0.002568389203 0 -6.225000523 4.494114386 916.7722968 0.002181566794 +2.499752207e-06 -0.008349361098 0.01221692635 0 -3.845683984 -5.391825471 940.7285505 0.002126011801 +2.498574885e-06 -0.008977862508 -0.001561473305 0 -16.68445777 2.31458947 997.5130492 0.002004986302 +2.495910789e-06 -0.0002313083177 -0.01463694812 0 15.60423632 -20.39524536 897.4128606 0.002228628637 +2.498874234e-06 -0.007849065023 0.001696594551 0 2.387258279 13.20528853 894.1672911 0.002236717916 +2.495496081e-06 -0.005933419084 -0.006430745681 0 -21.40867543 -20.96891761 997.7937145 0.002004422328 +2.499889108e-06 0.009103065194 0.003052383377 0 -2.613334691 -3.508463182 928.9359364 0.002153001 +2.497230586e-06 0.001368273082 0.01393137119 0 -14.01923634 18.6934637 992.4320159 0.00201525139 +2.497531953e-06 -0.004427650692 -0.005520197873 0 16.61259809 -10.44563036 882.9342189 0.002265174412 +2.498852897e-06 0.009136458244 0.002565775383 0 7.655609737 14.01632568 1054.229278 0.001897120524 +2.496004686e-06 -0.008112377496 0.01005650531 0 15.78444384 20.42380285 912.5939218 0.00219155525 +2.497438795e-06 -0.002285198336 -0.004866499726 0 -12.4596329 18.07287032 969.5302142 0.002062854742 +2.4993138e-06 0.00187921077 -0.008240230519 0 0.07381667397 11.5579984 986.5215324 0.002027325238 +2.493791351e-06 0.0009516546503 0.009635263053 0 -22.49622774 28.10535319 1020.663433 0.0019595098 +2.498949246e-06 -9.325887077e-06 0.008811524226 0 11.30437472 -9.543107457 1020.349687 0.001960112328 +2.496172676e-06 0.00140236225 0.008926847458 0 19.58111061 21.51850836 1050.975624 0.001902993708 +2.498411874e-06 -0.005064650457 -0.001412732082 0 5.021658492 -17.88688506 1042.192336 0.001919031575 +2.493806812e-06 -0.0005520387087 0.01377901222 0 21.15569725 26.63918395 965.6727466 0.002071095003 +2.498143594e-06 0.003502796115 0.006442297124 0 19.20861628 -6.779564763 1056.858405 0.001892401093 +2.499487583e-06 -0.007615925493 -0.0002155717299 0 3.056925839 10.25844925 1057.292802 0.001891623585 +2.496335663e-06 0.009065220174 -0.01480268791 0 24.40725482 8.254690867 951.2282133 0.00210254487 +2.496354156e-06 0.004427402611 -0.002401697135 0 -19.47108793 -19.47996554 1019.418508 0.001961902776 +2.495238438e-06 0.009290959723 -0.009140306893 0 26.8768754 15.02418462 997.0689149 0.002005879403 +2.499546181e-06 0.008364907955 -0.008639478036 0 6.399340285 -6.863598339 984.9284407 0.002030604374 +2.495747497e-06 0.0005180763686 0.006697493938 0 24.35532038 -14.55076832 972.2057249 0.002057177765 +2.497669492e-06 -0.009919023993 -0.005415325742 0 -15.72713456 -15.46948376 1021.44541 0.00195800968 +2.498726538e-06 0.009764523474 -0.01402126109 0 -4.455429481 -15.23002349 994.124344 0.002011820767 +2.499109929e-06 -0.004494414828 -0.001211384651 0 4.326049796 12.45239769 987.8950643 0.002024506521 +2.499564384e-06 0.004469969519 0.008276369025 0 -2.32192254 8.169854433 909.8847483 0.002198080585 +2.497741655e-06 -0.008786636698 -0.0004959432967 0 19.67245613 -5.95738309 966.8385024 0.002068597801 +2.499001222e-06 0.004849154344 0.01155215707 0 13.18546134 -2.925036094 955.4596478 0.002093233351 +2.49872799e-06 0.007880321261 0.009500531601 0 12.92839698 -5.839444821 889.2353207 0.002249123436 +2.49856418e-06 0.002736803843 -0.0004775512079 0 -2.957440545 17.78506978 1063.701875 0.001880226074 +2.499938977e-06 -0.005269756471 -0.009485411416 0 3.453977648 -0.5218851192 999.8986528 0.002000202715 +2.498541359e-06 0.004288241817 -0.005595288053 0 12.33740389 13.35648563 1064.319286 0.001879135355 +2.496468967e-06 -0.008746495922 -0.003044468584 0 -25.23628837 -11.31404178 1040.159496 0.001922782042 +2.497822782e-06 0.00388276808 -0.002303677881 0 18.30295079 -5.336169182 913.3307056 0.002189787322 +2.497690795e-06 0.009500480061 -0.001458985121 0 19.22726549 -2.821700241 903.9571674 0.002212494211 +2.498316682e-06 -0.009375342811 0.004108754955 0 16.71208083 1.983892253 916.9832985 0.002181064806 +2.497828278e-06 -0.002791054347 0.004871174425 0 -6.574457263 18.69389815 950.5252314 0.002104099853 +2.497473172e-06 0.009409364047 -0.009666682093 0 -16.05745259 11.37114273 874.9215822 0.002285919151 +2.497795515e-06 0.001501088352 -0.005680508281 0 -21.56244684 -3.236420214 1038.062452 0.001926666355 +2.498880583e-06 -0.001922288565 0.01432473073 0 -11.5878742 -10.9374826 1064.765114 0.001878348543 +2.49991185e-06 0.009495201628 0.004183631537 0 -3.741821907 -1.644094646 973.3805981 0.002054694745 +2.499666146e-06 -0.003638689383 -0.004750965668 0 8.263569361 2.425740794 1053.905666 0.001897703053 +2.499330462e-06 0.009768123995 -0.01352137712 0 4.702582874 -11.43006883 1067.971241 0.001872709603 +2.497064122e-06 0.003538114815 -0.002346234159 0 20.2551314 7.091894482 885.2588407 0.002259226238 +2.497270475e-06 0.002415570845 0.004182252679 0 -24.02861296 -1.466957115 1029.91192 0.001941913635 +2.499402872e-06 -0.005658121696 0.00664227915 0 7.265000914 7.335260239 944.6326248 0.002117225202 +2.496894046e-06 0.007777388771 0.008342190105 0 7.445402803 22.55931375 952.7124932 0.002099269207 +2.499967489e-06 -0.007232240471 -0.002960571998 0 -2.255401814 0.6098521182 916.2485709 0.002182813773 +2.497228388e-06 -0.0002801787807 -0.008328157375 0 -23.98317178 -7.251797024 1063.75655 0.001880129434 +2.494680185e-06 0.0001013317378 -0.006362893358 0 -19.12084938 -26.47753878 1000.470449 0.001999059545 +2.498071294e-06 0.0006498175021 -0.01125349673 0 5.408269203 -19.89852495 1049.59854 0.001905490455 +2.495428445e-06 -0.00459668776 -0.004157540775 0 17.32301198 -22.60054766 941.0896012 0.002125196153 +2.49945813e-06 -0.003138961759 0.01230513312 0 -4.881212631 9.812458027 1052.671116 0.001899928639 +2.495383752e-06 -0.005527927391 -0.003319185327 0 -21.42036125 -23.32892164 1041.610076 0.001920104313 +2.498772293e-06 0.007809045292 0.009914602269 0 -9.538095972 12.86069824 1021.62996 0.00195765598 +2.49502494e-06 0.003309020638 0.01258242341 0 -22.2028877 24.80832576 1054.663362 0.001896339697 +2.49834695e-06 0.006309909713 -0.003882641145 0 15.74126564 3.924323369 892.0046263 0.002242140838 +2.498066884e-06 0.006239875453 0.01103637391 0 -20.32021065 0.9655684689 1034.303695 0.001933668041 +2.499011815e-06 0.009885552404 -0.003128898803 0 3.895511647 14.32610403 1055.89151 0.001894133991 +2.497009364e-06 0.00365400719 0.003093512224 0 -4.810114408 24.74429321 1030.238545 0.001941297974 +2.496055699e-06 0.001740899752 -0.01031872593 0 19.2221372 18.69591562 954.1478381 0.002096111232 +2.499087182e-06 -0.0006531740632 0.009074260192 0 8.386297193 11.20657388 1035.785633 0.001930901468 +2.497873141e-06 -0.006399924969 -0.01128871121 0 -20.75731428 1.777157667 1009.79711 0.001980595885 +2.497722483e-06 -0.003036028906 0.00606072301 0 13.11498089 18.32156694 1055.363043 0.001895082468 +2.4995489e-06 -0.00689735794 -7.572367089e-05 0 -4.502470879 7.928295118 959.839113 0.002083682539 +2.499495637e-06 0.001663837489 -0.005060270769 0 -2.354299858 -9.793532492 1002.812223 0.001994391327 +2.498973657e-06 0.009564741021 0.0008758333325 0 8.675330815 10.51904718 951.5362513 0.002101864219 +2.499351232e-06 0.003003404797 -0.0058453327 0 -1.48891501 11.13269028 985.9341958 0.002028532947 +2.496157818e-06 0.0007701363042 0.008388755915 0 -1.297853708 24.63782694 889.5076068 0.00224843496 +2.497753895e-06 0.00970015028 -0.008565992138 0 0.0006260562949 -20.5688334 970.1375032 0.002061563431 +2.499969362e-06 0.001008298993 -0.005420437257 0 -1.994066193 1.356633828 974.2961675 0.002052763899 +2.496914129e-06 0.006603725841 -0.01312498461 0 -3.367088507 -24.41736899 991.7090355 0.002016720559 +2.496993719e-06 -0.006633684202 -0.008327053317 0 -3.505968312 -24.04877032 990.6812456 0.002018812821 +2.499773808e-06 -0.007751834411 -0.005114439153 0 -1.888168218 6.32096101 980.7873289 0.002039178057 +2.498328669e-06 -0.008565860474 0.003062495305 0 9.721290535 -14.93717316 974.5420348 0.002052246007 +2.497725731e-06 -0.007824539132 -0.01061712048 0 -11.5910126 18.13859057 1008.962716 0.001982233802 +2.496181e-06 0.0008400200959 -0.009539205856 0 16.91764962 -20.10804909 950.2891707 0.002104622531 +2.496402139e-06 -0.005546364207 0.007167743377 0 -23.38113431 -15.24674416 1040.00686 0.001923064239 +2.498567473e-06 0.000362680424 -0.002973417831 0 13.0837048 -7.263508664 883.9098897 0.002262674084 +2.499238689e-06 0.0008317848854 -0.001878550127 0 11.94047246 2.261795771 984.76087 0.00203094991 +2.499981546e-06 -0.003195223464 -0.0005173676368 0 0.110694237 1.67983171 876.2872589 0.00228235659 +2.499200531e-06 0.005239669434 0.002212725508 0 -6.770038388 9.107443773 897.3349934 0.002228822028 +2.499681843e-06 -0.0004789365688 0.005842049955 0 -3.336784643 6.908895651 961.7887135 0.002079458796 +2.496596487e-06 -0.00614509949 -0.005481600836 0 -21.88593179 14.76322232 1011.344715 0.001977565088 +2.495701267e-06 -0.001101882472 0.01141623295 0 -13.37677182 26.56583481 1013.743372 0.001972885895 +2.497919768e-06 -0.007678012629 -0.006196133774 0 8.124277462 19.83660994 1050.591639 0.001903689241 +2.495153136e-06 0.009363605632 -0.001434830062 0 29.55874348 13.6356566 1044.768043 0.001914300511 +2.496706847e-06 -0.001976382807 0.01221444238 0 -19.66203205 -17.16014069 1016.386732 0.001967754927 +2.497762342e-06 -0.002215083996 0.005128490974 0 -21.47890904 6.007148039 1053.920917 0.001897675592 +2.495427668e-06 0.0004613404162 -0.004970502479 0 20.35472352 20.62658037 957.6313121 0.00208848643 +2.497922867e-06 0.009339286978 0.01074297998 0 -11.17531886 -17.56222213 1020.99003 0.001958882988 +2.497328275e-06 0.006514084586 -0.002970048508 0 3.804348139 -20.44534003 899.2916007 0.002223972734 +2.497133973e-06 0.005784542826 0.009323810586 0 19.34469288 -9.812664157 905.6083966 0.002208460089 +2.497600562e-06 0.00291990241 0.00934226769 0 2.370240908 19.79321207 909.6658593 0.0021986095 +2.499332831e-06 -0.003460801081 -0.01116518188 0 1.692315794 -10.65121554 933.547387 0.002142365806 +2.495711401e-06 0.008953670338 0.01105836448 0 -11.51532 25.74356777 962.3264556 0.002078296807 +2.497599974e-06 0.008601906355 0.003872225045 0 -7.302718291 -21.26921388 1026.055806 0.001949211718 +2.499205983e-06 0.007838316937 -0.009209192481 0 6.859465525 8.719382385 880.2618887 0.002272051109 +2.498957114e-06 -0.006208312032 0.01254456496 0 -11.37361361 9.563198679 1028.754735 0.001944097979 +2.497814087e-06 -0.003127092952 -0.005524166767 0 1.855470796 -20.15599037 967.7488176 0.00206665197 +2.495911522e-06 0.0009396921145 -0.006539700965 0 -15.73968839 -19.7156922 881.6952519 0.002268357458 +2.497585702e-06 -0.003294115802 0.003012721804 0 5.785349034 19.28462414 915.9176603 0.002183602399 +2.498558076e-06 -0.007720937682 0.0007565239957 0 -2.541944697 -17.76306683 1056.427718 0.001893172591 +2.497387881e-06 0.002704648632 0.008586071057 0 15.54370533 16.0525536 977.2265599 0.002046608312 +2.49389223e-06 -0.005055051385 0.01160782855 0 -21.52942871 24.35854384 929.2937945 0.002152171909 +2.498245471e-06 0.006499301409 -0.005094658833 0 -16.91731793 -0.1625486478 902.9046571 0.002215073302 +2.498009953e-06 -0.004901142595 -0.0009076258843 0 6.86926733 -17.81713504 956.8726338 0.002090142334 +2.497319652e-06 0.006967888158 -0.008013980251 0 -19.32014726 -14.94249375 1054.476225 0.001896676239 +2.497318438e-06 -0.008410215173 0.003481665042 0 14.0866135 15.55728441 905.8794749 0.002207799222 +2.494094232e-06 -0.007824890283 0.01112103185 0 -21.22548084 28.39038022 1030.502174 0.00194080134 +2.499892542e-06 0.005051607583 0.007110950018 0 -0.7971996882 -4.358472718 955.7389706 0.002092621585 +2.496383799e-06 -0.003855120395 0.009407830692 0 -10.86978153 26.36695098 1059.904234 0.001886962931 +2.498903109e-06 -0.00753771605 -0.01203155684 0 14.51393886 4.791312521 1031.759746 0.001938435773 +2.499359175e-06 -0.008734016381 -0.01445490504 0 10.86316569 0.7629172631 961.8296524 0.002079370287 +2.496338806e-06 -0.005383564234 0.01336634931 0 6.326947461 22.98271082 880.4385563 0.002271595202 +2.497008459e-06 -0.003880085014 0.009058921959 0 -2.828079885 23.54112991 968.9052983 0.002064185224 +2.498519874e-06 -0.009759048633 -7.355326088e-05 0 -10.58777661 12.73076352 962.1699198 0.002078634926 +2.496132321e-06 -0.009707592875 0.006356794084 0 10.14225459 27.48301364 1052.681973 0.001899909043 +2.498639699e-06 -0.005949994596 -0.002752360089 0 -4.090368177 -15.13420796 950.2720608 0.002104660426 +2.498649642e-06 -0.002616177551 0.0123842309 0 16.77445516 -0.5294424749 1021.027071 0.001958811922 +2.495941775e-06 -0.002258532615 0.007377348666 0 -6.818894184 26.83972277 971.4326709 0.002058814841 +2.496049878e-06 0.008687878866 -0.0005762101547 0 15.0038274 20.92003323 915.3796634 0.002184885769 +2.49759557e-06 0.005891549676 -0.006853534793 0 15.69913667 -16.24532701 1029.831756 0.001942064797 +2.494704793e-06 0.008296023742 -0.01427248998 0 -20.06104623 -26.58719673 1022.651236 0.001955700955 +2.497238227e-06 0.003456424908 0.004557091172 0 -20.44906108 6.921801679 918.203943 0.002178165336 +2.497400096e-06 -0.003114362187 -0.008771231601 0 -23.27541431 -4.984124327 1043.445968 0.001916725984 +2.494132644e-06 -0.002267975444 0.001185320481 0 -23.12147706 -19.96923744 891.0637632 0.002244508286 +2.496271945e-06 -0.006530716489 0.006038659222 0 -12.03272254 23.71298336 973.2821453 0.002054902589 +2.496847842e-06 0.00368402225 0.002471317321 0 9.80941272 20.8524074 917.3651803 0.00218015687 +2.496777928e-06 -0.005200894051 -0.01006788285 0 12.55160348 -21.46584878 979.0748469 0.002042744747 +2.496453137e-06 -0.00669587506 -0.01213722024 0 -23.11545251 12.75135957 990.6573629 0.00201886149 +2.496878306e-06 -0.001916000941 -0.005641967277 0 8.1013711 -20.52791865 882.8016621 0.002265514538 +2.498344741e-06 0.002774162069 0.006310332119 0 16.32453933 -10.21782643 1058.203841 0.001889995031 +2.497212945e-06 0.003235025052 -0.01383915964 0 -20.4251097 11.91036206 1001.043039 0.001997916096 +2.498093753e-06 -0.007036800967 0.007267425621 0 -16.88533072 -12.10443883 1063.721472 0.001880191433 +2.499862165e-06 0.002957551852 -0.01494734792 0 -4.72880921 -2.844066887 1050.97534 0.001902994223 +2.496225197e-06 0.001604066826 -0.005957946782 0 -19.97092535 -13.9773753 886.6656856 0.002255641594 +2.497119395e-06 0.004446270587 -0.01239795259 0 -23.12863099 10.08111425 1050.693081 0.001903505444 +2.497515276e-06 -0.006391773582 -0.0006851355429 0 11.48002693 17.93300421 954.8098442 0.002094657918 +2.498665299e-06 -0.005222146013 -0.001838257285 0 -7.08035007 -15.10810436 1021.009711 0.001958845228 +2.495595625e-06 -0.001866660593 -0.01287167681 0 15.61447763 -21.84919976 904.2393122 0.002211803859 +2.498984111e-06 -0.002707865969 -0.004359273277 0 9.906280271 -9.80670192 977.7742321 0.002045461963 +2.499179747e-06 0.007633299013 -0.006270851442 0 -0.8962803447 13.30030237 1040.64586 0.001921883396 +2.498341284e-06 -0.005168339959 -0.004068062939 0 -8.808809157 -15.37980314 972.8547818 0.002055805283 +2.493428911e-06 0.0001208106475 -0.005737916159 0 22.04374835 -25.91713604 937.6087765 0.002133085835 +2.496570999e-06 -0.005479042782 -0.002391054109 0 -21.46742276 -8.967779024 887.9431709 0.002252396398 +2.499695008e-06 -0.0004479130963 0.01320911022 0 0.9865956679 -7.19599261 929.9411835 0.002150673651 +2.498746091e-06 -0.009452177067 0.008506279138 0 -15.05752576 -6.698897873 1040.491758 0.001922168038 +2.499837716e-06 -0.0005474762199 0.0008500865009 0 -4.609572173 2.009651591 882.6396941 0.00226593027 +2.496620792e-06 -0.004733203715 0.01396255282 0 -25.27474625 4.859252074 989.5224553 0.002021176972 +2.49474479e-06 -0.005603490607 0.00419792996 0 -16.53985564 25.06232592 925.4974028 0.002161000122 +2.498091187e-06 0.004170565209 -0.001920844945 0 -19.87938929 6.08332677 1063.701659 0.001880226456 +2.499363075e-06 -0.0035555122 -0.007740804995 0 10.64318166 -2.768961636 974.2988645 0.002052758217 +2.499720321e-06 0.008006732152 -0.001928673077 0 7.24778592 -1.10176149 980.1728189 0.002040456501 +2.499611728e-06 -0.00318580918 0.008634693129 0 -4.823724132 -6.175459602 889.1856025 0.002249249194 +2.498094876e-06 0.006117254524 0.00842621749 0 8.306173056 -16.93375346 965.9803706 0.002070435447 +2.498491314e-06 -0.001716742134 -0.003233927793 0 -13.01631649 12.88274655 1054.052284 0.001897439083 +2.499814527e-06 0.008590389774 -0.003972904847 0 -4.693617325 4.126454447 1026.091562 0.001949143793 +2.498472176e-06 -0.003653067164 -0.01087856067 0 -14.68291882 10.14764888 1020.813454 0.001959221827 +2.49717464e-06 0.005155087728 0.008194551312 0 15.6925605 -17.55285034 990.055381 0.002020089016 +2.498831887e-06 0.0007781469403 0.004104927666 0 -9.184330149 -10.6501903 919.9326802 0.002174072128 +2.495409171e-06 -0.003944747415 -0.00331189319 0 -27.23679589 14.86960928 1023.391036 0.001954287198 +2.494908496e-06 -0.005105497888 -0.008946545573 0 -26.44196862 -20.9394913 1056.166507 0.00189364081 +2.495900052e-06 -0.008167931908 0.007309058674 0 -4.842843321 26.87991123 953.2195518 0.002098152515 +2.498450321e-06 0.005112835262 -0.01492346282 0 -16.81764511 0.6504409428 955.7687828 0.002092556313 +2.497630845e-06 -0.00765558037 -0.004447579156 0 6.774054819 -18.97368231 925.2033223 0.002161687006 +2.497614619e-06 0.00304005756 -0.006734226854 0 -11.52586324 -16.61933304 925.6305522 0.002160689268 +2.497501304e-06 -0.003838454434 -0.005110386433 0 -22.31944727 6.478476738 1039.235495 0.00192449162 +2.495830075e-06 0.002698282385 0.0109290333 0 -16.37414508 26.09654385 1066.141043 0.001875924403 +2.498800844e-06 0.007768825102 -0.001931744318 0 -9.187851758 -10.85329767 918.0601086 0.002178506594 +2.49890119e-06 -0.003529819651 0.00408173397 0 6.157862159 12.55031587 942.8603778 0.002121204843 +2.499429922e-06 0.003787421379 -0.009969499754 0 -5.743961233 8.778973489 982.4314191 0.002035765511 +2.499724941e-06 -0.00309082998 0.003739550693 0 6.933836815 -2.474111492 992.5475169 0.002015016879 +2.498271468e-06 -0.009850974656 0.001650905481 0 -17.22128958 1.781864452 930.9185227 0.002148415733 +2.498037339e-06 0.003535613855 0.002499439472 0 19.25098552 -5.377936633 1008.567866 0.001983009838 +2.498664065e-06 -0.007676902818 0.003382316069 0 5.471850915 15.27270658 992.3057547 0.002015507811 +2.499989164e-06 -0.001421687282 0.001633905096 0 1.062431414 0.9932226283 987.943364 0.002024407545 +2.496241724e-06 0.009984981189 -0.005681696374 0 -2.584109851 -25.11058134 920.2165023 0.00217340158 +2.499128554e-06 0.002665401855 0.01106772732 0 -7.055948389 -10.1334026 935.1978628 0.00213858487 +2.493685102e-06 -0.003697229708 0.01245288979 0 -22.48134271 24.28475989 930.3124116 0.002149815455 +2.495489316e-06 -0.007414395944 0.01207875785 0 20.40032329 24.33411602 1056.499793 0.001893043437 +2.497148662e-06 -0.004463598076 -0.003094022996 0 17.43686666 -18.22075606 1055.643135 0.001894579649 +2.493593655e-06 -0.006359990044 -0.0084468572 0 19.80346633 -27.8893916 954.6717868 0.002094960831 +2.496793543e-06 -0.002075044853 -0.003822571621 0 -12.11099071 -21.63220085 978.5196191 0.002043903833 +2.499585967e-06 -0.003613650324 0.008900468387 0 7.388662301 -3.373267019 892.5196438 0.002240847038 +2.499639758e-06 0.009800794218 -0.01434799623 0 -7.604815917 -1.319862785 909.2797969 0.002199542986 +2.499521481e-06 0.0007822186453 -0.004868631908 0 -6.378341864 7.707018322 1022.540804 0.001955912168 +2.498611034e-06 -0.002433259999 -0.01121641218 0 13.5054977 8.611758753 960.8241263 0.002081546399 +2.49802267e-06 -0.001702156514 0.0007084646425 0 14.9730098 -9.245664594 884.6438045 0.002260796933 +2.499634698e-06 0.004736959734 0.01244610416 0 8.936174021 0.9426993313 1051.211638 0.001902566455 +2.499199538e-06 -0.008344791569 0.005080000916 0 -1.949194786 13.23852647 1057.448946 0.001891344265 +2.498816116e-06 -0.004590081391 -0.0119565661 0 2.62596494 15.1951886 1001.958049 0.001996091555 +2.499280226e-06 0.002698329105 -0.01029327437 0 8.488166018 7.952938213 969.3620597 0.002063212584 +2.497989655e-06 0.009129157411 0.01449547451 0 -9.402195125 17.53168103 991.8255353 0.002016483675 +2.497535502e-06 -0.005153314392 0.005729868785 0 18.03794153 8.674727701 901.2090097 0.002219241018 +2.498627147e-06 -0.00704998394 0.01305769133 0 14.67733646 7.573381376 996.5290525 0.002006966074 +2.499778603e-06 0.006023048162 -0.003897065639 0 5.213907532 4.077153282 994.6301777 0.002010797626 +2.49877927e-06 -0.001181335156 -0.01263581522 0 -6.725023431 -13.94561727 990.684434 0.002018806324 +2.498732404e-06 0.007898904998 -0.008432516078 0 -4.309959617 -15.64445587 1018.96176 0.001962782195 +2.495992597e-06 0.009606371368 0.01424384146 0 25.27664244 12.64845951 997.7834619 0.002004442924 +2.497478081e-06 -0.006104505779 -0.006864323022 0 -7.812660867 22.05384103 1041.384945 0.00192051941 +2.4992574e-06 0.009402799746 -0.007776919599 0 1.684527191 10.98885702 912.1269047 0.002192677345 +2.496364326e-06 -0.007789916364 -0.0002439040085 0 -28.16098202 0.5455309734 1043.96225 0.001915778086 +2.498511061e-06 -0.009808201957 0.01391601099 0 12.64844293 -10.40008007 948.7116994 0.002108121995 +2.497193854e-06 -0.004419799694 0.01323282227 0 12.3838352 18.90590603 953.6066707 0.002097300765 +2.49970246e-06 0.007275044182 -0.0008983575739 0 -7.400883861 -0.04783571842 959.3694174 0.002084702685 +2.499062211e-06 -0.00559202434 -0.007737997805 0 -7.506862562 -11.6095813 1009.350352 0.001981472534 +2.498773389e-06 0.003966596979 0.007812800556 0 -15.71253003 -2.411087378 1014.732571 0.001970962653 +2.499213601e-06 0.000979496357 0.007771086304 0 6.340852804 -10.90128601 1005.475462 0.00198910871 +2.496350308e-06 0.006490927823 0.01135138215 0 16.63242575 18.53359649 921.2150013 0.002171045844 +2.499118292e-06 0.009101925655 0.003932532412 0 -12.28352094 -6.473866703 1045.475729 0.001913004717 +2.496372215e-06 0.008482914031 0.007644719251 0 -8.256995536 23.07082785 909.2073278 0.002199718303 +2.499571573e-06 0.006681013792 -0.01273711418 0 -5.196999521 7.335103095 971.0865264 0.002059548707 +2.499763379e-06 0.001201599492 -0.006947037738 0 -4.836748976 4.188088666 930.0078588 0.002150519462 +2.499443166e-06 -0.008917022645 -0.009395790913 0 4.429263056 -10.0828676 1043.48211 0.001916659597 +2.499387486e-06 0.00506490883 -0.01342304405 0 4.949672313 10.53033579 1051.177177 0.001902628829 +2.498262782e-06 0.0007576066768 -0.01490730372 0 -16.82968711 6.513535414 967.8986273 0.002066332097 +2.49716223e-06 -4.232320469e-05 -0.01057578452 0 13.14268455 18.8254542 963.317498 0.002076158696 +2.499848653e-06 -0.005724663963 0.01311584543 0 1.168689601 4.991308758 931.7345616 0.002146534091 +2.498734387e-06 -0.008698517834 0.002700667984 0 10.06106959 -13.48221232 1057.162001 0.001891857632 +2.499477537e-06 -0.007266771696 0.01476566064 0 -5.839272417 -7.679622937 943.7063171 0.002119303393 +2.498668762e-06 0.006869065925 0.01330115661 0 8.347958978 11.86277302 888.8072555 0.002250206653 +2.499996309e-06 0.009779680292 0.003649396989 0 -0.7481298909 0.1142921528 880.8393966 0.002270561475 +2.49806788e-06 0.00197104854 -0.01056364974 0 17.51369088 3.899354869 912.4848479 0.002191817217 +2.494653239e-06 -0.004088443783 0.01220007686 0 -20.41671983 25.46550835 997.3186816 0.002005377054 +2.498958303e-06 0.007457254427 -0.007046692036 0 12.5990045 -6.460787594 980.7952048 0.002039161683 +2.497091185e-06 -0.004759506956 0.008774810806 0 -15.24516999 15.85045887 911.3894034 0.002194451672 +2.499325123e-06 -0.008676681812 -0.01466677018 0 7.533422626 8.756683043 994.1654574 0.002011737569 +2.499534362e-06 0.003005747842 0.01391828042 0 -8.431117306 5.428910117 1039.048872 0.001924837275 +2.495924292e-06 0.001886614263 -0.004676492717 0 -17.14055822 -22.85036875 999.8765658 0.002000246899 +2.49762685e-06 -0.002992709372 0.006604674831 0 21.9620059 -0.1005550159 1007.73018 0.001984658234 +2.498451619e-06 0.004738802458 -0.01197872136 0 5.673028029 -16.30445891 980.7695022 0.002039215122 +2.495115739e-06 -0.0009987517726 0.01079522714 0 -20.94374879 23.85481926 1014.91859 0.001970601405 +2.497360466e-06 0.008933539018 -0.003495769794 0 3.654100087 -22.27928106 982.2332726 0.002036176187 +2.498533978e-06 -0.009299793523 -0.005108853125 0 4.01741137 15.09578634 912.0823246 0.002192784518 +2.497295669e-06 0.001647822582 -0.006685846348 0 14.46971408 -15.87065342 923.0966058 0.002166620468 +2.497755915e-06 -8.133445866e-05 0.009314611992 0 21.54964978 -2.146148804 1021.885901 0.001957165665 +2.495693637e-06 0.007396734785 -0.01001354324 0 19.17958712 -17.71441891 889.0617905 0.002249562428 +2.497836174e-06 -0.008644236834 -0.0003827443253 0 -4.065901155 -18.06498506 889.817458 0.002247652012 +2.498588654e-06 -0.003303427394 -0.004570653413 0 -9.772050329 12.58972748 948.3925528 0.002108831405 +2.498089397e-06 0.002067124392 -0.004397569655 0 -17.11722795 9.624840356 1004.30267 0.001991431526 +2.498253144e-06 -0.001079299781 -0.001317953495 0 16.06896729 5.803791583 913.8111012 0.002188636139 +2.498125236e-06 0.006329748179 -0.003374389317 0 -1.089980113 -17.57564566 909.1474652 0.002199863143 +2.498021942e-06 -0.003382554771 -0.01369942927 0 -18.53135761 -2.939042677 943.0576547 0.002120761111 +2.499119417e-06 -0.00641224876 -0.008822721646 0 -13.06797966 4.548176427 1042.507535 0.001918451361 +2.498462178e-06 0.005077247638 0.01441098555 0 10.62893759 11.70694372 901.4156049 0.002218732391 +2.499087756e-06 0.001266647307 -0.01201464049 0 12.74482187 -4.926508955 1011.447469 0.001977364186 +2.497067204e-06 -0.006307202019 0.001604808311 0 -16.6013684 -16.60942404 969.2083988 0.002063539691 +2.496152704e-06 0.006784803909 0.001954948409 0 17.45159413 18.34922309 912.3696443 0.002192093975 +2.498210268e-06 0.003737549069 -0.001822731346 0 9.074568338 15.80232701 962.9053121 0.002077047426 +2.495585345e-06 0.004255258441 0.006318732882 0 12.39601648 23.2779839 886.9627953 0.002254886012 +2.495249871e-06 0.005060160286 0.01335531347 0 -1.062224567 28.20572824 915.0980632 0.002185558117 +2.495504786e-06 0.007898201221 0.002230367828 0 20.13056622 -20.30249466 952.8889648 0.00209888043 +2.498911646e-06 -0.002590287221 -0.0102219061 0 0.2936686276 -13.05572953 884.9932138 0.002259904335 +2.499322024e-06 -0.0001331443386 -0.002834156847 0 -7.989420121 8.000107804 970.8547652 0.00206004036 +2.496441656e-06 -0.004412690485 0.002721428555 0 -14.04015975 -24.8490806 1069.306137 0.001870371759 +2.497874878e-06 0.001960765091 -0.01043417502 0 16.3929808 -14.61181391 1064.838854 0.001878218466 +2.497877274e-06 0.005371790747 -0.002219902386 0 7.330212897 -20.71521325 1066.121583 0.001875958645 +2.497661841e-06 -0.003636779976 0.001342120639 0 -19.80057217 -7.165294658 973.409165 0.002054634445 +2.496817518e-06 -0.008322765129 -0.01051327958 0 6.313343965 -25.72809402 1049.540384 0.00190559604 +2.497251632e-06 0.008921989654 0.01288486443 0 18.88094054 9.520513864 901.5408044 0.002218424269 +2.498881941e-06 0.002274283306 -0.01305318637 0 -12.98445613 -9.239978975 1065.549904 0.001876965117 +2.496741037e-06 -0.003382726228 -0.01394325654 0 -24.559779 1.385475792 963.0464865 0.002076742949 +2.496816103e-06 0.003891764036 -0.003260451641 0 16.98243317 16.00305907 924.2665944 0.002163877838 +2.497513051e-06 0.008015571479 -0.01189555983 0 -11.11193403 -17.49676401 929.0253379 0.002152793813 +2.498416187e-06 0.009963415628 -0.01118325437 0 16.65851609 -6.319724288 1000.838957 0.001998323492 +2.498577326e-06 -0.009019082123 -0.0104791464 0 17.34620545 -3.191916003 1045.38209 0.001913176072 +2.499567901e-06 0.006437177719 -0.01277786838 0 -7.587130034 4.75505255 963.1299202 0.002076563045 +2.495319757e-06 0.002856469001 -0.002239073154 0 17.95850878 -20.39131361 887.4954268 0.002253532739 +2.499427408e-06 -0.0005180863524 -0.01210730379 0 -5.511339377 8.988616657 985.1877084 0.002030069989 +2.498721595e-06 0.006854944858 -0.008605473989 0 15.13200697 -2.3545124 957.5439466 0.002088676981 +2.498833463e-06 0.0007610304141 -0.004594800782 0 -10.97429183 10.0322239 973.2737241 0.002054920369 +2.499816544e-06 0.002437589793 0.0101328166 0 5.099979246 -3.531018769 1024.029079 0.001953069537 +2.494355553e-06 0.008843625118 0.00842981749 0 20.25385472 23.18793577 915.5609363 0.002184453181 +2.498506785e-06 -0.001980390088 -0.01041422314 0 -3.229121782 -16.34978569 964.1573006 0.002074350315 +2.495224292e-06 -0.001229189667 -0.01355812941 0 16.87086746 -21.40977099 881.3541752 0.002269235293 +2.497400716e-06 -0.006292800074 0.001640416402 0 -21.2978708 -10.20164087 1035.329085 0.001931752937 +2.49949978e-06 0.004625583878 0.009942156938 0 8.277444417 4.420662149 938.1171715 0.002131929849 +2.496985704e-06 0.003360682749 0.01090585899 0 19.46211093 16.56249323 1040.356212 0.001922418472 +2.498244883e-06 0.009428284876 -0.005308688062 0 -16.77953324 -1.575866775 899.2995665 0.002223953035 +2.498594779e-06 -0.004726603609 0.005923598392 0 -14.19180572 4.866881882 894.7527473 0.002235254383 +2.496619919e-06 0.006785620833 0.01015196129 0 -0.5850708027 27.05396775 1040.240161 0.00192263294 +2.499049137e-06 0.0007876130426 0.0123042767 0 10.9714113 -9.865288271 1069.766901 0.001869566163 +2.49981884e-06 0.005025941078 0.01274251935 0 -2.350781811 5.430106886 982.9977812 0.002034592588 +2.497544201e-06 0.001591013363 -0.001646372101 0 19.47044907 -11.31933931 1015.849138 0.001968796277 +2.49613958e-06 -0.004354073065 0.004572496426 0 22.47597165 18.07621126 1037.424567 0.00192785101 +2.497275392e-06 -0.0008074480295 -0.007662050044 0 12.24191947 -20.43202231 1019.938729 0.001960902105 +2.499057199e-06 -0.002783726347 0.01059416808 0 12.98866667 0.672928609 947.0222632 0.00211188277 +2.499790534e-06 0.002114403285 -0.007180133031 0 4.70938101 -3.666824698 922.1145548 0.002168927916 +2.497802368e-06 0.006656089644 0.003361296672 0 -0.6175849206 -19.62873033 936.4213782 0.002135790624 +2.498207495e-06 0.00542453486 0.01416477788 0 5.428143772 19.25511315 1056.305779 0.001893391137 +2.499554195e-06 0.00940146551 -0.005129744131 0 8.121381807 -4.818418817 1000.005475 0.001999989051 +2.497662218e-06 0.002664855826 0.01051237861 0 -21.86342833 -2.201012365 1015.870827 0.001968754242 +2.495255115e-06 0.005143192946 0.01271839731 0 21.7908802 20.27752906 965.5720741 0.00207131094 +2.496647673e-06 -0.0003427051008 0.005687187107 0 17.07044114 -15.97024329 902.3352903 0.002216470996 +2.498374089e-06 0.002428893154 0.000963607037 0 -1.94357252 17.10035011 954.1636151 0.002096076573 +2.497902248e-06 -0.002869312372 -0.00142688869 0 -20.93456567 -1.522125198 1024.424817 0.001952315061 +2.49693159e-06 0.002903485601 -0.003803688122 0 24.44353186 -10.23667365 1069.257065 0.001870457596 +2.49919899e-06 0.00809274347 0.007915501369 0 12.5664216 -4.509231167 1054.693916 0.00189628476 +2.495624178e-06 0.001104920222 0.01156654083 0 -7.651317152 27.89320736 977.0616706 0.002046953698 +2.498734861e-06 0.001554643605 0.006324968822 0 -9.863633529 11.89825282 971.4149917 0.00205885231 +2.499871698e-06 -0.008882579096 -0.0003578925692 0 -1.551914896 4.505490991 940.6939105 0.002126090089 +2.498256357e-06 -0.009298956529 -0.00503537412 0 -17.78770055 -3.291200121 968.4384308 0.002065180332 +2.495496149e-06 0.006069874465 0.003272308947 0 23.93545215 21.42856573 1069.690144 0.001869700316 +2.499914756e-06 0.003850391163 0.005205364774 0 -3.287046972 2.67460582 1026.310035 0.001948728874 +2.498502783e-06 0.005219388925 -0.008432796712 0 -8.800651903 14.6592186 987.8529417 0.002024592847 +2.496425133e-06 0.00594492882 0.003910601274 0 23.89522695 8.743392266 951.082123 0.00210286783 +2.498871717e-06 0.007966050738 -0.006821715916 0 2.973916206 13.46032065 917.5022045 0.002179831275 +2.496458047e-06 -0.005886839074 -0.0004113601008 0 15.21441659 -20.36579239 954.6209045 0.002095072495 +2.498220669e-06 0.001926843417 0.00331853098 0 -4.782680837 -17.29127556 950.7704526 0.002103557167 +2.499202735e-06 -0.003726349878 0.008212764908 0 4.488199206 12.23913014 1032.238126 0.001937537425 +2.49845862e-06 0.008758122851 0.01479110207 0 -14.74501114 9.108245392 986.8746292 0.002026599875 +2.496019982e-06 0.005732830451 0.01050935718 0 25.86432982 -6.186611417 942.032156 0.002123069778 +2.497426426e-06 0.006588690667 0.0122380093 0 -16.55058086 12.68782999 918.8508348 0.002176631858 +2.499476684e-06 -0.002206386686 -0.0143836126 0 -5.500510339 -7.557882672 913.6249605 0.002189082048 +2.495747947e-06 -0.0007116550393 0.004307293904 0 22.92445941 15.42356201 946.8679331 0.002112226986 +2.499876158e-06 -0.00370045743 -0.002425961166 0 3.252855676 3.862731115 1014.678694 0.001971067305 +2.498514539e-06 -0.007849560678 -0.01497334947 0 2.322522074 -15.775168 924.8856635 0.002162429454 +2.498240274e-06 -0.005115602138 0.01223440175 0 -12.44811236 -11.68996673 910.0172072 0.00219776064 +2.498902771e-06 -0.002918888889 0.01205014146 0 9.069003166 -9.320739265 877.7405376 0.002278577683 +2.498090827e-06 0.004976769532 0.002488710531 0 -17.29945826 -7.534286093 965.3510952 0.002071785084 +2.49772059e-06 0.003636769201 -0.006591520468 0 3.272374199 21.49654607 1018.048588 0.001964542777 +2.49866693e-06 -0.006705423109 0.009942795262 0 -9.411763777 14.69984405 1068.769588 0.001871310732 +2.498802611e-06 -0.004252606384 -0.002697439324 0 0.1669853864 15.93896264 1029.848278 0.001942033639 +2.498818101e-06 -0.00956039561 -0.008219409124 0 -14.51944209 -7.112056175 1051.397424 0.001902230265 +2.498092514e-06 0.00624931314 -0.002987478808 0 -14.41912123 -14.28927673 1039.030676 0.001924870985 +2.497867648e-06 -0.003112524021 0.005795971518 0 -9.584735417 18.65514061 1015.276719 0.001969906295 +2.498287844e-06 -0.004322828115 -0.009247562047 0 9.170517266 -15.68025604 981.3823395 0.002037941707 +2.496640929e-06 -0.007048621443 0.004853920934 0 -25.86698954 -0.6043907455 997.7479593 0.002004514248 +2.499383166e-06 0.00646439272 -0.01172407595 0 -10.08305144 3.902074578 973.3230118 0.00205481631 +2.499263103e-06 -0.00708738124 -0.0121364524 0 -3.26322679 -10.55655638 910.0660357 0.002197642722 +2.497228341e-06 0.00394092957 0.009389642102 0 -13.56682625 18.29580141 967.0132387 0.002068224012 +2.498636593e-06 -0.009107833607 0.003947848112 0 5.051424621 14.961431 956.0881936 0.00209185723 +2.498432068e-06 0.006765793557 -0.003054905862 0 -12.73616945 -11.7440674 978.0842334 0.002044813659 +2.497603535e-06 -0.00852501425 0.0022344508 0 -16.67223303 -16.09321398 1058.064545 0.001890243851 +2.499006769e-06 0.008019086299 -0.0124329631 0 7.460051378 -12.12247088 1009.769127 0.001980650771 +2.498209566e-06 0.00476900076 -0.002051319291 0 -0.06885585664 -17.22349637 909.9425601 0.002197940933 +2.497250424e-06 0.0008898103377 -0.004386580288 0 8.085697678 -22.2235453 1008.048789 0.001984030953 +2.495298562e-06 0.002293700008 0.008425636904 0 24.01183522 -18.00249959 978.0096093 0.002044969682 +2.499945621e-06 0.0015968034 0.000490355955 0 1.252648006 -3.225334484 1049.171187 0.001906266607 +2.499563132e-06 0.001090591326 -0.01232023393 0 8.403617482 3.153343579 960.1800612 0.002082942649 +2.496332909e-06 0.002205837253 -0.005089614743 0 -17.84186133 -21.80411653 1039.746363 0.001923546041 +2.498345751e-06 -0.002047450179 0.003660560888 0 18.10806228 5.66512244 1042.858223 0.001917806234 +2.499660965e-06 -0.003946633092 0.004909887356 0 1.665899018 8.639462725 1068.451124 0.001871868498 +2.498580072e-06 -0.002278712755 0.001714221938 0 -10.86530373 12.48062506 981.7311937 0.002037217533 +2.494965168e-06 0.003880905905 0.01342610406 0 3.108689533 31.79843924 1006.086988 0.001987899678 +2.496881505e-06 0.009350005272 0.001002952033 0 15.63150255 18.04767194 955.5872706 0.00209295379 +2.499681665e-06 0.001377704251 -0.001747535574 0 -8.090119883 -2.7097344 1069.217965 0.001870525997 +2.49952189e-06 0.001551389671 0.01128015493 0 1.795407575 8.402134548 878.5673445 0.002276433346 +2.499605719e-06 -0.00320752386 -0.004966505561 0 3.719382988 8.317179964 1025.935303 0.001949440666 +2.497361793e-06 -4.906903021e-05 0.01324832321 0 23.7843876 -5.65951352 1063.922826 0.001879835596 +2.498299576e-06 0.003849061606 -0.01036477076 0 15.34571763 9.620403648 981.8862435 0.002036895835 +2.498599267e-06 0.007305072094 -0.004563445807 0 -9.903474067 -12.23419365 940.2137846 0.00212717579 +2.498075799e-06 0.004388045357 0.01246889412 0 15.94323394 8.750421502 926.805616 0.002157949807 +2.49843318e-06 -0.003874008637 -0.006155513702 0 6.57940982 -15.02257735 926.2375625 0.002159273259 +2.499692152e-06 0.008560468252 0.01485344182 0 6.772005758 2.872181075 937.4188577 0.002133517993 +2.496986665e-06 -0.0007402390521 0.007624398374 0 23.23082999 5.523416301 972.2337697 0.002057118424 +2.498512854e-06 0.006951140026 -0.004982766754 0 14.52798938 -9.441125847 1004.418497 0.00199120188 +2.498158401e-06 -0.0002122016391 -0.005241358127 0 -11.17672976 15.62938231 1000.913386 0.001998174896 +2.495369798e-06 -0.00993749659 0.002887757749 0 -23.8599184 21.54046643 1055.586182 0.001894681868 +2.496731539e-06 -0.002150904108 0.007357294634 0 -9.413364326 24.53973117 1027.494576 0.001946482294 +2.495339004e-06 -0.005645967843 -0.001829124608 0 19.66492509 -24.68612078 1032.990251 0.001936126694 +2.497153391e-06 -0.006234113197 -0.0100213564 0 1.796647004 -20.8536446 876.8461248 0.002280901909 +2.497795736e-06 0.006441160985 0.01177658452 0 -8.906764333 -19.51938716 1021.52147 0.001957863891 +2.499888345e-06 -0.0005959463352 0.0002803484816 0 2.139931931 4.213627797 1000.049673 0.001999900659 +2.497722168e-06 -0.001058866424 0.004710092666 0 -4.039295265 18.87176395 903.8891435 0.002212660717 +2.49994297e-06 0.008584592999 -0.005696492898 0 -1.090594567 2.755111274 877.3585205 0.002279569815 +2.499414971e-06 0.009491498349 -0.009973078994 0 7.362172234 -6.9769772 937.6124104 0.002133077568 +2.495526327e-06 -0.003809083123 0.001167543749 0 -21.20120741 15.40811755 875.6052526 0.002284134311 +2.497612557e-06 -0.005878468039 -0.006203927225 0 -12.10910859 17.93113874 989.824679 0.002020559845 +2.495737751e-06 0.002675130432 0.003433668127 0 21.30397484 -15.57440624 903.2828715 0.002214145826 +2.499760528e-06 0.009081486966 0.01263321599 0 3.989451721 5.384570691 968.3013956 0.002065472599 +2.495206663e-06 -0.001020395071 0.01186399408 0 5.836110308 27.65634599 912.2394595 0.002192406806 +2.496408311e-06 -0.005397462193 -0.01071850085 0 -17.32583226 -16.99785296 905.1076946 0.0022096818 +2.499806104e-06 0.000640099477 -0.005185945958 0 -0.2849846863 5.605034138 901.2107748 0.002219236671 +2.495096772e-06 -0.008279261766 0.01284547109 0 5.771106609 27.32347399 891.1228427 0.00224435948 +2.496455408e-06 -0.0008645153604 -0.005646240581 0 20.91617059 17.61033494 1026.38057 0.001948594955 +2.499072251e-06 0.007320901342 -0.002664572715 0 5.098973243 12.45737162 988.0322841 0.002024225354 +2.498980588e-06 0.007593601164 -0.01284965894 0 -13.34600228 7.397482775 1068.491766 0.001871797298 +2.497965308e-06 -0.007742999513 -0.01174147427 0 -3.853316829 -19.82051783 1000.630851 0.001998739093 +2.497445546e-06 -0.001110528703 0.000439772252 0 -2.977362787 19.72162199 882.0753374 0.002267380024 +2.499275159e-06 -0.009289259347 -0.01020712554 0 -3.108527682 -10.19448759 885.0898592 0.002259657569 +2.497465922e-06 -0.00531799804 0.003312014008 0 -12.51449839 -16.80640104 930.4127823 0.002149583538 +2.498362113e-06 0.004008414368 0.005037133077 0 10.69738447 12.27112554 899.2308006 0.002224123105 +2.498264048e-06 0.008180112708 -0.01455722123 0 16.30068224 9.704709295 1017.864816 0.001964897468 +2.499531315e-06 0.003946971144 0.007941120865 0 -8.099586799 5.757866635 1026.352544 0.001948648163 +2.499999252e-06 -0.004146011397 -0.01285196796 0 -0.1699997289 0.3628921718 1036.125583 0.001930267944 +2.499960418e-06 0.0009220903041 -0.0006449899077 0 2.364141388 -1.331542131 964.3479328 0.002073940257 +2.496128226e-06 0.009012100059 0.00520438083 0 11.95489548 24.73635014 986.7234445 0.002026910388 +2.499690097e-06 0.00358158832 -0.01157520809 0 -6.802550562 -4.35842845 1026.150363 0.001949032103 +2.49729567e-06 -0.003039696878 -0.01032487262 0 16.75187545 13.52063817 925.2783623 0.002161511694 +2.493075348e-06 -0.008288595229 0.004797908231 0 -28.56361762 26.11065603 1038.816968 0.001925266974 +2.494166346e-06 0.007531233304 -0.01495721518 0 29.67886249 -20.24293525 1050.828788 0.00190325962 +2.498858518e-06 0.001365652098 0.001519415542 0 9.658658812 -9.404900777 892.0793943 0.002241952917 +2.498467448e-06 -0.00727303945 -0.01412572096 0 -9.810363046 -14.98372239 1022.737775 0.001955535473 +2.499686779e-06 0.004159498382 0.01430126191 0 -6.647772631 2.331232415 890.0209982 0.002247137994 +2.495580278e-06 -0.009429753874 0.00204983698 0 -24.95780869 -14.68410808 973.3182203 0.002054826426 +2.499003347e-06 -0.008002293217 -0.005726211697 0 10.99906169 -7.465764387 941.428414 0.002124431311 +2.499279894e-06 0.002476488831 -3.202079097e-05 0 -11.44653505 1.794570145 965.3541345 0.002071778561 +2.498225835e-06 0.007697108202 -0.007634675237 0 0.1836364256 20.06269299 1064.828844 0.001878236124 +2.496872042e-06 0.002236311873 0.007977597769 0 -13.58194489 20.13560238 970.6086741 0.002060562669 +2.498290621e-06 -0.008899114281 -0.00580722884 0 -18.15070604 5.323230307 1022.740381 0.001955530492 +2.496532989e-06 0.002827049424 -0.006006066219 0 18.21881543 -19.32858518 1008.174941 0.001983782693 +2.499224313e-06 0.0001899591461 0.01481985705 0 8.166928194 -10.33010031 1057.128551 0.001891917495 +2.499250207e-06 -0.006592732933 0.0009740556241 0 11.93617215 2.938844189 1003.715746 0.00199259602 +2.495007428e-06 0.005112778903 -0.007163768762 0 -16.85911553 -24.24933312 933.9427483 0.002141458889 +2.498889292e-06 -0.008507897379 -0.008409173756 0 13.11652228 8.144423422 1035.720998 0.001931021969 +2.4975393e-06 0.005302893589 -0.008551446896 0 -8.284104642 -21.51364755 1038.800127 0.001925298185 +2.496191998e-06 0.0007113816869 -0.01013096408 0 -10.69660666 -26.93515015 1049.559436 0.00190556145 +2.498921357e-06 0.002121457462 0.004325763532 0 8.442127956 -11.33714053 962.2191036 0.002078528677 +2.499857196e-06 -0.007420118391 0.009409789585 0 0.2032822372 5.41004596 1013.008641 0.00197431682 +2.496009112e-06 -0.00219190835 0.01077704454 0 -7.232655022 26.6257259 976.0026573 0.002049174749 +2.49390501e-06 0.002787419576 0.01352471589 0 -17.4648381 29.40926085 978.7686211 0.002043383857 +2.497325262e-06 -0.002065192759 0.01337227374 0 -22.14385673 7.012005333 1003.86027 0.001992309148 +2.49644263e-06 0.004249968664 -0.001470110079 0 20.37527073 17.65112513 1010.113888 0.001979974757 +2.499785703e-06 -0.005538940937 -0.006985569871 0 -6.712024389 -0.6427563186 1029.909551 0.001941918102 +2.49684337e-06 -0.00579760001 0.01087880497 0 -10.9098174 19.77872879 898.5600881 0.002225783258 +2.496669236e-06 -0.006405775882 -0.005467335375 0 -18.57787575 -19.28204473 1036.897277 0.001928831374 +2.498394739e-06 -0.004878414026 -0.01391042775 0 7.945894451 14.33568778 914.5348651 0.00218690405 +2.496970915e-06 0.001600816455 -0.004300583918 0 -20.92575283 5.950060043 883.4777727 0.002263780778 +2.496393954e-06 0.002917032922 -0.001306681379 0 20.73971907 15.44271998 962.3252517 0.002078299407 +2.497900499e-06 -0.006925743083 0.005915877689 0 13.09763288 14.64737062 958.59753 0.002086381341 +2.499507774e-06 0.009607065842 -0.007333724792 0 -6.910836164 7.028358884 993.364582 0.002013359482 +2.498113983e-06 0.0007612317009 0.0002369962097 0 15.80205515 8.495397002 923.494091 0.002165687923 +2.499396462e-06 -0.008845699732 0.003164140102 0 0.6691984633 -10.2574406 935.5230545 0.002137841489 +2.499269764e-06 -0.006672894694 -0.009553368143 0 11.75155518 3.318020113 1010.314682 0.001979581249 +2.495776331e-06 0.003333362848 0.01105821185 0 4.48261221 29.95577213 1041.487487 0.001920330321 +2.498129513e-06 0.0007293019397 0.01031521299 0 -12.84777303 -11.69624526 898.0362785 0.00222708152 +2.498850762e-06 0.004575337046 -0.003125920978 0 -11.50337424 -9.382222809 978.9610364 0.002042982229 +2.495909366e-06 -0.009286361746 -0.005953745046 0 -26.63879015 -1.544260481 932.3222121 0.002145181112 +2.497350133e-06 0.002646504282 -0.003099225804 0 20.05535619 -3.258728014 882.2453161 0.002266943177 +2.496628244e-06 -0.004882277981 0.002468717045 0 -10.57080709 -23.89101115 1005.531351 0.001988998153 +2.498252282e-06 -0.002028345447 -0.0002001251047 0 3.171349943 16.44395251 895.5125743 0.002233357808 +2.497455617e-06 -0.006007380337 0.009274545887 0 -6.804070738 19.39872462 910.9524072 0.00219550438 +2.49620774e-06 0.0008658903604 -0.005448574014 0 5.077717486 -26.24286717 970.0209305 0.002061811181 +2.497711072e-06 0.003003574028 -0.002661809761 0 -16.2894725 -14.36494206 1014.733552 0.001970960747 +2.4994216e-06 -0.00191177899 -0.003700976504 0 -10.44632563 -3.992031632 1039.671399 0.001923684735 +2.498307189e-06 0.006120522125 -0.01063973089 0 -16.52307762 -8.589205863 1011.816082 0.001976643815 +2.498650111e-06 -0.008253048123 0.003666486482 0 9.669708631 12.05506767 940.3520759 0.00212686296 +2.49637888e-06 -0.00196812225 0.01488246814 0 -19.15469596 16.86576236 947.8438502 0.002110052198 +2.497742579e-06 -0.0009670803789 0.01068395267 0 -19.59022135 0.5174057178 921.9819226 0.002169239929 +2.499129215e-06 -0.008539137556 -0.01010294785 0 -11.38652625 4.80783106 936.4601687 0.002135702155 +2.496130953e-06 -0.007450164007 -0.01420720877 0 16.56424321 -23.27818568 1026.459663 0.001948444807 +2.499654305e-06 -0.001889585019 0.001878562288 0 8.111376941 -2.025967529 1005.429576 0.00198919949 +2.499448636e-06 -0.0001186206425 -0.01404434336 0 -1.831003734 10.9004545 1052.48699 0.00190026102 +2.497828282e-06 -0.0005227297544 0.007185563114 0 20.72857703 -5.321879697 1026.532497 0.001948306562 +2.499023834e-06 0.006296510012 0.01485270023 0 -13.78219201 3.081079375 1010.573064 0.001979075112 +2.49878577e-06 0.003872345742 0.00771636718 0 -14.94354928 3.369863857 982.8339468 0.002034931747 +2.496228999e-06 -0.004587971559 0.003186845121 0 19.64434969 14.38868505 886.1643683 0.002256917646 +2.497032329e-06 -0.002675971482 0.01040751029 0 -4.822135553 24.35026544 1018.451696 0.001963765202 +2.494250738e-06 0.008108483697 0.001855198215 0 26.72585394 -19.33043705 971.8649584 0.002057899076 +2.496483582e-06 -0.005197222661 0.007722307581 0 -27.78001727 -2.627567433 1051.652083 0.001901769638 +2.497855795e-06 -0.006516569047 0.008142391532 0 -8.995566592 18.19130733 979.6669134 0.002041510204 +2.497728932e-06 -0.0006556660729 -0.007185923012 0 6.365523919 20.63325618 1012.819007 0.001974686481 +2.499384601e-06 0.001358626848 -0.00987217448 0 8.422595086 5.961700827 930.0464523 0.002150430223 +2.499013124e-06 0.003826479586 -0.002674297902 0 1.000891169 13.02073584 929.4035353 0.002151917788 +2.497411228e-06 0.007919508242 -0.005257709089 0 21.0321725 -7.710672399 984.0964134 0.002032321196 +2.497422672e-06 0.002024629228 -0.005455363279 0 19.13106798 13.01231938 1018.681016 0.00196332313 +2.498719439e-06 -0.005788377994 0.008713049185 0 -4.378851179 13.44511344 883.399436 0.002263981522 +2.499416e-06 -0.008340431997 0.003901118953 0 6.035053226 7.447510037 886.8864826 0.002255080035 +2.499475085e-06 -0.006076992503 0.009759866274 0 9.196711719 0.3241112736 898.0664638 0.002227006665 +2.496306589e-06 -0.00736182306 -0.01371722045 0 6.943955073 -24.30116576 929.3964913 0.002151934098 +2.49989375e-06 -0.0005833579507 -0.007060312866 0 1.451800169 -3.778724626 878.1243258 0.00227758182 +2.497327919e-06 0.003885885864 -0.01308305648 0 20.38424903 -5.508121879 913.0273889 0.002190514791 +2.496483631e-06 0.004955844372 0.000684764476 0 20.38811246 -15.777593 971.6082322 0.002058442831 +2.498562775e-06 -0.008163573984 0.01095392508 0 11.61583999 12.27352266 996.5130962 0.00200699821 +2.498663394e-06 0.00592397613 -0.006712855445 0 -3.169020803 -15.99548156 997.1346295 0.002005747209 +2.499021636e-06 -0.005681590005 0.009999396026 0 -7.101926276 12.72622658 1041.699417 0.001919939637 +2.496735416e-06 0.00440474336 -0.00782614836 0 17.99966511 -15.49416935 929.0089511 0.002152831787 +2.499659909e-06 0.00813500368 0.01345676936 0 7.794506944 1.584607492 964.3793539 0.002073872685 +2.497699515e-06 0.005676159123 -0.005686038095 0 8.868332987 19.58978475 1002.161194 0.001995686932 +2.498257679e-06 0.008716061129 0.009119649469 0 -7.336602153 -16.82974968 983.2524432 0.00203406563 +2.497860851e-06 0.003548501935 0.003005455155 0 -6.870975183 -17.15910937 893.3319123 0.002238809532 +2.499075339e-06 -0.000752596925 -0.006807083997 0 -8.658171091 -9.889995198 966.4407101 0.002069449247 +2.499758908e-06 0.002707655504 0.0141667484 0 -6.540964278 0.001089761084 941.93197 0.002123295592 +2.497765527e-06 0.008105459395 0.01478345825 0 -11.09260058 15.22976528 890.9653781 0.002244756137 +2.499559195e-06 -0.001964623034 0.002336319736 0 9.820537944 -0.943472709 1050.662621 0.001903560628 +2.49728241e-06 0.003362841681 -0.004348381846 0 19.39931728 8.396771898 906.3409655 0.002206675055 +2.49808478e-06 -0.005755347423 0.005470403277 0 -1.884022285 -18.15282972 932.2272199 0.002145399702 +2.495950251e-06 0.002482748758 0.0129870888 0 25.4966223 13.08576242 1006.379501 0.001987321878 +2.499498393e-06 0.00346701507 0.0108513175 0 2.068661725 -9.584530159 978.877397 0.00204315679 +2.498627283e-06 -0.003575837421 -0.01107340237 0 -15.50953373 2.583096711 948.7353071 0.002108069537 +2.496184838e-06 -0.009843944251 0.0005924563715 0 -12.09118294 -22.72092745 931.2196934 0.002147720902 +2.499329391e-06 -0.0008406164357 0.01392712607 0 -6.912481642 -7.774651166 898.2053663 0.00222666227 +2.497155383e-06 0.001553267641 0.0106310999 0 23.39841923 -9.848178524 1063.873294 0.001879923118 +2.499300952e-06 0.008163685845 -0.001466532878 0 -8.031877299 7.134544648 908.4748428 0.002201491892 +2.496240818e-06 -0.007016454265 -0.003895005179 0 -24.92357777 7.493569376 948.6283719 0.002108307172 +2.498823395e-06 0.004626533296 -0.004546014103 0 -14.47842284 -4.529149873 988.7514953 0.002022752946 +2.497450275e-06 0.004193606051 -0.002274572575 0 4.892631613 20.18564768 919.4145113 0.002175297404 +2.499856571e-06 -0.009979937528 -0.004692930467 0 -2.918117637 -4.82460215 1052.731456 0.001899819739 +2.497499791e-06 -0.009908834617 -0.009221301733 0 14.8517122 -14.91494717 940.9140762 0.002125592603 +2.499707197e-06 -0.0005061445525 0.005702496339 0 -2.143238369 6.780414008 929.21027 0.002152365363 +2.498331404e-06 0.001443326524 -0.001955675902 0 -4.62753773 16.13815573 918.7828361 0.00217679295 +2.498492651e-06 -0.004765204554 -0.0007255878369 0 2.199851622 -16.94621204 983.9688089 0.002032584755 +2.499142975e-06 -0.008331030132 -0.005801368465 0 -9.974527261 -6.293807442 900.74298 0.002220389217 +2.49737278e-06 0.001459067101 -0.001000387226 0 11.64159606 -17.67816125 923.0515872 0.002166726137 +2.499877582e-06 -0.008873531376 -0.0009157218807 0 -4.498948848 -2.731113027 1063.628126 0.001880356444 +2.498240263e-06 0.00734121039 -0.00561246478 0 18.85650687 6.827806848 1068.711042 0.001871413245 +2.49757977e-06 0.008261996298 -0.004241009247 0 -17.53283144 12.41703422 976.1664044 0.00204883101 +2.497387827e-06 -0.008873310671 0.005451147126 0 -11.66643461 -20.66608452 1037.868438 0.001927026517 +2.49789648e-06 -0.006352045247 0.004751382794 0 -20.56143102 3.551468757 1016.978014 0.001966610853 +2.499501189e-06 -0.006985838148 0.005760187686 0 5.086962426 7.464127579 904.2824027 0.002211698463 +2.497560813e-06 0.007140127006 -0.0002277712896 0 0.7165294257 21.9623717 994.5204741 0.002011019433 +2.498552942e-06 -0.003374206112 -0.005708379163 0 3.34011379 16.38187388 982.5527172 0.002035514192 +2.499772826e-06 -0.001621731929 0.0004021823569 0 -5.841695356 -3.960403358 1047.008863 0.001910203506 +2.49714401e-06 -0.007523639523 0.01278594876 0 -21.26254124 8.840243752 963.0725399 0.002076686768 +2.499765956e-06 0.008930409532 0.004426565983 0 -5.248783792 -3.663549234 935.5378062 0.002137807779 +2.495107942e-06 0.002859922992 -0.003882150734 0 26.5219095 -17.39660776 1013.283101 0.001973782053 +2.499387719e-06 0.009368657386 -0.01455222757 0 5.291670181 10.49407051 1061.963551 0.001883303809 +2.499904717e-06 -0.009432570785 0.01011942294 0 -0.1151767219 -4.037662324 925.2881527 0.002161488823 +2.494265043e-06 -0.009613667843 -0.007289977446 0 -16.88827339 -24.52706907 878.5299153 0.002276530332 +2.498553956e-06 -0.007015582989 -0.004872008697 0 13.47395139 -9.841957615 980.9424622 0.002038855567 +2.498146777e-06 -0.006793997013 -0.002483983131 0 0.377668668 18.97528195 985.5409009 0.002029342464 +2.498751513e-06 -0.002231512186 -0.01115833815 0 15.87294671 0.1484285764 1004.357137 0.001991323531 +2.499412412e-06 -0.0009742417606 0.0132620796 0 3.420028824 10.94483893 1057.670082 0.001890948825 +2.497734443e-06 -0.002275137133 0.003337380532 0 -1.948714908 19.77792496 933.3156405 0.002142897765 +2.498608112e-06 -0.009428940671 0.01375926114 0 16.4549738 -5.161824402 1033.404507 0.001935350568 +2.498601038e-06 -0.001461206949 -0.01366390989 0 -13.46142082 8.661396911 956.7655386 0.002090376293 +2.499758207e-06 -0.003740034974 0.0109752998 0 3.155720895 6.326339517 1016.601456 0.001967339303 +2.498986735e-06 0.001052290979 -0.004001759409 0 4.478666495 13.3312031 987.752174 0.002024799391 +2.499703181e-06 0.007792645912 -9.661833057e-05 0 -5.184973375 6.131833701 1042.181725 0.001919051114 +2.494695418e-06 0.006862599785 -0.008493283696 0 -19.31612103 -25.56049437 982.839798 0.002034919632 +2.496288324e-06 0.001334017902 8.245285135e-05 0 15.89688269 20.99330037 965.9600894 0.002070478917 +2.498233797e-06 0.0001780209783 0.002624510173 0 -15.89125396 -8.512663897 958.9358375 0.002085645276 +2.495844142e-06 -0.008835301157 0.004561784018 0 -22.46305884 -13.28362062 904.6303676 0.002210847736 +2.497886148e-06 0.002682298245 -0.01456980168 0 -4.655861317 -17.94864523 901.534727 0.002218439224 +2.496718818e-06 -0.003508233074 0.009765058674 0 -23.14083832 9.517218307 976.268845 0.002048616025 +2.498476723e-06 0.003700064183 -0.005051163824 0 16.74460195 5.461130886 1008.837468 0.001982479897 +2.499973878e-06 0.002582817664 -0.01330480697 0 0.5106412494 -2.011723389 908.044191 0.002202535978 +2.498969023e-06 0.006912885811 0.0006507478631 0 4.144516817 -11.906469 877.8319072 0.002278340515 +2.499212411e-06 0.00824815413 0.001301641816 0 -12.21431236 4.977216226 1050.778564 0.00190335059 +2.495795532e-06 0.008303822139 0.004722381423 0 16.32680673 25.74093018 1050.511142 0.001903835114 +2.496987519e-06 0.003382247924 0.004879242999 0 23.93994243 0.1538123952 974.8965562 0.002051499708 +2.499639112e-06 -0.003479174431 -0.008370502938 0 2.708579988 -6.928585031 875.5911739 0.002284171037 +2.498924046e-06 0.003251979207 -0.008541230166 0 -10.29301707 7.86335151 882.8484019 0.002265394597 +2.499064877e-06 -0.006895491416 0.007833517164 0 14.09872318 3.014309096 1054.084286 0.001897381477 +2.494466955e-06 -0.008079948551 0.01340855191 0 19.22199307 26.83039303 991.3495413 0.002017451884 +2.49943427e-06 -0.0005611444032 0.01351233809 0 0.561594917 -9.415151466 886.6292662 0.002255734247 +2.499700896e-06 -0.008249045559 0.01391774284 0 -2.227330218 -7.339686925 991.6568916 0.002016826603 +2.499421936e-06 0.003867212124 0.008464253324 0 8.341527495 5.91438399 950.9204877 0.002103225271 +2.499202763e-06 -0.008864890737 0.013716985 0 -1.933404033 12.34699129 989.6022192 0.002021014061 +2.4993824e-06 0.000251612328 -0.007510012058 0 -5.225770775 9.598760865 983.2750211 0.002034018924 +2.499329092e-06 -0.009331815639 0.009672515995 0 11.22339974 0.6112529273 970.2360047 0.002061354135 +2.499145066e-06 -0.009858878083 -0.009122903345 0 -7.750442739 9.319864959 926.8663182 0.002157808479 +2.497973693e-06 -0.001873675236 -0.008312659843 0 -4.909536754 -17.57599149 906.2224707 0.002206963593 +2.499673105e-06 0.008686011066 0.01327038774 0 -2.562655833 6.926980689 913.3935683 0.002189636614 +2.49985516e-06 -0.00683873279 -0.005702096885 0 5.383740269 1.044870941 1018.9286 0.001962846072 +2.498989198e-06 0.002714753845 -0.01122518488 0 1.394145624 -13.44369634 950.4464639 0.002104274229 +2.498242903e-06 -0.004048269796 0.01030579441 0 -17.51374748 -6.928231252 1004.437017 0.001991165166 +2.496956873e-06 0.00473596374 -0.001566233577 0 -5.046310186 21.50562333 894.9883713 0.002234665906 +2.497063977e-06 0.005646198043 0.01001611024 0 -16.81584104 -13.97207737 901.8286055 0.002217716302 +2.499480116e-06 0.007058971324 0.0012526445 0 8.289890182 5.529526151 977.1648251 0.002046737611 +2.498869734e-06 -0.00711200628 -0.009478914833 0 -14.87698572 3.697750984 1019.420195 0.001961899529 +2.498345921e-06 0.002926203334 0.006749022813 0 7.100872259 14.81892003 903.232067 0.002214270367 +2.497945248e-06 -0.001977497791 0.006586637374 0 -10.2458129 -15.11356966 900.4342317 0.002221150562 +2.499249401e-06 -0.005184898474 -0.005744593134 0 7.438524606 7.781953673 878.5285851 0.002276533779 +2.496749868e-06 -0.004807714927 -0.006606215159 0 19.09963537 13.99128154 928.1765421 0.002154762493 +2.499305373e-06 -0.00397679816 0.004954870641 0 11.88580056 -0.345873063 1008.733101 0.001982685012 +2.497334453e-06 0.005460827206 -0.005029832167 0 -5.607099858 -21.08895703 944.724808 0.00211701861 +2.496333919e-06 -0.009586448986 -0.007249338082 0 -7.131115116 -28.12278855 1070.865772 0.001867647703 +2.495811683e-06 -0.001890188926 -0.01276436899 0 19.21114927 -21.5278281 996.2959569 0.002007435628 +2.496893146e-06 0.006114231101 -0.01037789638 0 2.290825061 -25.61060884 1031.032781 0.001939802532 +2.499785842e-06 -0.006439737189 -0.00143090657 0 -0.3468315397 6.23362808 953.9290652 0.002096591951 +2.496403978e-06 -0.009360533515 0.008247799035 0 -26.0740344 6.482379481 1001.315356 0.001997372744 +2.498419401e-06 0.009766464387 -0.01042294761 0 -16.03349602 -4.493079106 936.3006516 0.002136066013 +2.497464534e-06 0.006828989782 -0.01335330186 0 -8.419514726 -17.82139446 874.945481 0.002285856712 +2.496845395e-06 0.0009441202739 -0.0003411064111 0 -23.19838996 -9.626744703 999.462047 0.002001076485 +2.499765455e-06 -0.001835665144 0.00909114745 0 6.4853122 -3.233600837 1058.034714 0.001890297146 +2.498563014e-06 0.003588274904 -0.005260545749 0 -7.8844571 14.99492498 999.1148203 0.002001771928 +2.499865496e-06 0.003869225783 0.009135741382 0 -4.88300885 0.04431418013 941.4866389 0.002124299929 +2.498511761e-06 -0.0007998990687 0.009166861963 0 8.999244259 13.71574776 950.6377055 0.002103850908 +2.499763855e-06 0.00730416425 0.008989625636 0 6.544411186 0.3591713371 953.683334 0.00209713217 +2.498083576e-06 -0.007481273413 0.004387010671 0 18.28363979 -1.332706439 936.1115958 0.00213649741 +2.498535437e-06 0.007299809419 -0.007787310435 0 -5.305289542 -15.64602176 965.1002257 0.002072323627 +2.497585537e-06 0.001576230726 0.006079007427 0 -5.666821116 21.99390658 1033.18206 0.001935767255 +2.497124901e-06 0.0002979656914 -0.003630560834 0 14.52362001 -16.57732131 918.7016822 0.002176985238 +2.499568323e-06 0.00863993858 -0.0119748365 0 -0.1896398416 9.451398038 1017.328165 0.001965933971 +2.497157005e-06 0.004198620943 0.001089532252 0 -6.542932921 22.97027355 1001.193292 0.001997616261 +2.496618549e-06 0.006399645656 -0.007032890443 0 15.903253 -20.95762321 1011.133656 0.001977977874 +2.497263898e-06 -0.006818143702 0.002234329018 0 2.193866311 -22.71257932 975.042661 0.002051192302 +2.496630645e-06 -2.135075163e-05 -0.01056116987 0 25.47849614 -9.962490842 1053.319934 0.001898758331 +2.498119048e-06 -0.0004935849179 -0.01220772676 0 3.630081274 -20.27053896 1061.435261 0.001884241153 +2.499259565e-06 0.003391897636 -0.01465600924 0 2.610114807 -10.49638482 888.7135367 0.002250443948 +2.496174757e-06 0.007587790187 0.009628125066 0 26.45890782 -10.11147479 1023.478675 0.001954119854 +2.499569222e-06 -0.00965883262 -0.01410811638 0 9.309844124 2.044780234 1026.840354 0.00194772244 +2.498178774e-06 0.00424089218 -0.002152697607 0 15.19610922 -13.00832965 1047.826942 0.001908712135 +2.496306014e-06 -0.003495678739 -0.008525496335 0 -24.79740765 -13.7941628 1043.38808 0.001916832326 +2.496409001e-06 0.003667478529 0.006579957262 0 20.86346034 18.79658899 1047.298525 0.00190967518 +2.496486406e-06 -0.0005159739731 0.001403330325 0 20.55403229 -13.22077446 921.4267596 0.002170546904 +2.497663144e-06 -0.003912489451 -0.009220312187 0 6.172187618 -20.60741137 994.707083 0.002010642162 +2.49451761e-06 0.0007236428838 0.005489477715 0 20.60682797 21.17780745 891.6300415 0.002243082789 +2.498291677e-06 -0.00251407688 -0.003569618999 0 1.080394668 17.45469734 945.8697061 0.002114456132 +2.497566128e-06 0.003684794814 -0.01251669557 0 -16.40543213 -13.38217991 959.2317797 0.002085001813 +2.496699515e-06 -0.003351080311 0.004621783539 0 21.44651116 16.91804528 1062.675839 0.001882041471 +2.499620104e-06 -0.001017273404 -0.0007162219752 0 -3.213563191 -7.847107157 972.7572931 0.002056011314 +2.494982731e-06 -0.007606052891 -0.01303689381 0 -4.298996233 -33.05087881 1051.357251 0.001902302951 +2.497310634e-06 -0.002734899628 -0.009080799299 0 23.3096521 5.414067324 1031.407243 0.001939098269 +2.497756261e-06 0.001765310653 0.01424434774 0 2.118568319 20.97957479 995.0671653 0.002009914576 +2.497364834e-06 -0.001378062316 -0.0005572526925 0 21.80017472 -10.1702392 1047.439715 0.001909417766 +2.498643219e-06 0.008164040395 0.001093127453 0 8.263609873 -15.02716468 1040.857584 0.001921492461 +2.499840232e-06 0.00360937946 -0.006287284659 0 -3.435948292 3.90349531 919.9362711 0.002174063642 +2.498491657e-06 0.008237008392 -0.00935834944 0 -14.28892585 10.54787858 1022.32486 0.001956325311 +2.499694355e-06 0.006373629496 0.0003931354824 0 5.905053838 -3.831470951 900.2795675 0.002221532147 +2.494998741e-06 -0.00746340041 -0.01348967252 0 -20.94350262 -20.66922882 929.6937012 0.002151246155 +2.499975627e-06 0.005177334673 -0.009461178971 0 0.5640951445 -1.88192194 889.8350421 0.002247607596 +2.494905935e-06 -0.001657994352 0.001149260919 0 -25.88770669 -22.13092855 1066.204444 0.001875812853 +2.49807166e-06 0.001656017052 0.01234798199 0 -16.76740292 4.482616336 883.5347636 0.002263634757 +2.498138234e-06 -0.007886121268 0.002272870126 0 -18.1545437 -3.407317573 956.9822515 0.002089902918 +2.497072008e-06 0.009769121199 0.007523846787 0 14.0989965 16.26788384 889.1997155 0.002249213495 +2.499768159e-06 -0.004059702866 -0.0003032729938 0 -6.00108771 -1.983808836 928.1648276 0.002154789689 +2.496679261e-06 0.0006939621409 -0.009651464475 0 -17.06167637 -15.00411046 881.1915444 0.002269654098 +2.497068853e-06 -0.008501781463 -0.01137815091 0 20.6225637 12.81512313 1002.35946 0.001995292187 +2.498451745e-06 0.009777562404 -0.00122738326 0 -16.39170229 -4.799408811 970.3930746 0.00206102048 +2.499639031e-06 -0.00436905677 0.002317436601 0 -3.674408976 7.6452057 998.2589853 0.002003488102 +2.497893501e-06 0.009542332389 0.008454276302 0 -6.076804845 17.54015019 904.0967474 0.002212152633 +2.499099767e-06 0.006296220841 -0.004128794591 0 -4.817031189 -10.73691923 876.9008398 0.00228075959 +2.496985224e-06 -0.008916752567 -0.002245482802 0 8.441516203 23.61878964 1020.993689 0.001958875967 +2.49826319e-06 0.008965090318 -0.005363565115 0 14.19894893 -13.21687523 1040.543994 0.001922071543 +2.496941138e-06 -0.0013119544 0.007403807736 0 -17.60863973 19.59523002 1064.625968 0.001878594042 +2.499823329e-06 -0.005332014412 -0.003060365226 0 -1.835404219 -5.534675068 980.9320226 0.002038877266 +2.498948745e-06 -0.008162194132 -0.00858333966 0 14.06516014 -3.680274143 1002.507014 0.00199499851 +2.497176198e-06 0.006090078712 0.001731312338 0 14.78851648 15.54416231 902.4315761 0.002216234508 +2.499868566e-06 0.004738573167 -0.0126001071 0 1.859863344 -4.876290566 1017.899612 0.0019648303 +2.498947387e-06 -0.004189161686 -0.01281733454 0 -6.0720953 12.96157563 986.3343248 0.002027710027 +2.498807909e-06 -0.009400844374 -0.007589774989 0 -14.89141595 -3.100308686 984.9234933 0.002030614574 +2.497863748e-06 -0.006386090773 -0.01257670238 0 -17.74197352 11.09058432 1011.921671 0.001976437561 +2.499635721e-06 0.000780762136 0.01398617378 0 -7.717790902 0.6190907523 907.0469229 0.002204957593 +2.49609291e-06 0.005696925349 -0.01008213015 0 27.31023835 7.990235439 1017.334508 0.001965921715 +2.499284534e-06 0.009280403233 -0.005713119388 0 12.64715715 0.4818645648 1057.917248 0.001890507035 +2.498257646e-06 -0.007823452898 -0.009185199982 0 16.99371582 -1.334461697 912.9069351 0.002190803819 +2.497841928e-06 0.009436377534 -0.0007559380378 0 4.553282612 -19.5922403 967.8722269 0.00206638846 +2.49723664e-06 -0.005370884021 0.01396646088 0 -22.50052469 5.628274114 986.1830782 0.002028021008 +2.498410896e-06 0.009523760253 -0.01224696363 0 4.06271043 -18.29439006 1050.936617 0.00190306434 +2.497488991e-06 -0.0005052511767 -0.00372960041 0 10.96374378 -16.46014178 882.1924244 0.002267079091 +2.496876448e-06 -0.001896143523 -0.009366159844 0 20.75083627 -11.65521708 951.7754458 0.002101335991 +2.498404199e-06 0.004540741839 0.009276497215 0 12.81163418 9.758199457 901.2463601 0.002219149046 +2.496560792e-06 -0.00580528337 0.01021817136 0 -24.25951997 -11.63524578 1025.349403 0.001950554606 +2.499031324e-06 0.009723341446 -0.003333843998 0 -13.86827697 2.296896853 1009.790815 0.001980608232 +2.498578235e-06 -0.006050738194 -0.005969778474 0 -15.52095306 -1.232607362 923.1281747 0.002166546375 +2.499569017e-06 0.005656501055 -0.01460056914 0 8.940324384 0.3489140336 963.6309474 0.002075483364 +2.495679079e-06 -0.003550012354 -0.006237052598 0 -12.09729309 -27.50605829 1021.507657 0.001957890365 +2.499264402e-06 0.005159797017 0.0001147461799 0 -4.399931533 -10.26369975 920.566438 0.002172575403 +2.493020879e-06 -0.008421219904 0.01360900615 0 18.72158404 29.48699292 933.9117689 0.002141529924 +2.496425749e-06 0.008333532745 0.006262866058 0 25.98586528 -5.724966514 994.6916908 0.002010673275 +2.497804381e-06 -0.0002345082676 -0.008370589984 0 -13.8260485 -12.30676321 883.0133529 0.002264971411 +2.498029345e-06 -0.0004301644722 0.003958526468 0 7.804601852 15.71923704 883.7533615 0.002263074843 +2.497824123e-06 0.001969741052 -0.01467740532 0 -15.35025076 15.58149151 1048.160039 0.001908105561 +2.497603529e-06 0.0002902109036 0.01166780842 0 -0.8384207512 23.20602201 1060.294999 0.001886267502 +2.49845253e-06 0.008953626323 0.005942302595 0 2.834988611 -15.14930624 875.8710452 0.002283441165 +2.499639032e-06 -0.003899968937 -0.001811866793 0 7.445958131 -0.01666649781 876.2924792 0.002282342993 +2.498851279e-06 -0.004970082855 -0.006245120075 0 -14.55421947 5.561892298 1027.759414 0.001945980716 +2.494930503e-06 0.008713559546 -0.0138953648 0 27.16253865 -20.23295222 1062.886745 0.001881668022 +2.497728642e-06 0.001007311489 -0.004564093575 0 -19.99533742 4.044266085 956.817974 0.002090261737 +2.497840614e-06 -0.0001039566891 -0.004128538768 0 19.26392676 4.001206949 946.4453647 0.002113170051 +2.49966675e-06 0.001224926384 0.006676291621 0 7.123322134 -2.7272322 934.2496617 0.002140755391 +2.498365257e-06 -0.000384480455 0.006249119367 0 14.91262229 6.396797792 897.1882744 0.002229186512 +2.499209705e-06 0.009091519369 -0.006617055216 0 -12.17250131 4.063295494 1020.609055 0.001959614203 +2.496543946e-06 0.006964813969 -0.009093402922 0 -6.094565025 -23.63003693 927.7233319 0.002155815135 +2.499379684e-06 0.00331794675 0.003744811574 0 -1.621492379 10.34149345 939.7129353 0.002128309535 +2.496648225e-06 0.009647803316 0.002217463183 0 15.28799928 18.4269116 924.2942262 0.002163813149 +2.495780882e-06 0.00184643005 0.008022871998 0 7.22001796 26.52922722 945.8874782 0.002114416404 +2.497506723e-06 -0.005836895457 -0.01462932648 0 -20.90375161 11.02608367 1057.949433 0.001890449523 +2.498759479e-06 -0.009944148967 -0.001563859745 0 4.737381209 14.58958954 973.6704632 0.002054083055 +2.499635282e-06 0.009119613804 -0.0007837892929 0 -1.721643072 8.323672791 995.1634177 0.002009720177 +2.496121535e-06 -0.00512026614 0.00734933747 0 -26.75494174 -10.79205675 1035.23989 0.001931919374 +2.498378566e-06 -0.0008079222729 -0.008467792547 0 -11.20166272 -12.6087739 936.3520143 0.002135948841 +2.497618157e-06 -0.008058984187 0.006922503 0 -14.2729203 15.72998837 972.8214485 0.002055875724 +2.499423437e-06 0.007549904147 0.00294960916 0 -9.689275124 6.180288153 1070.136559 0.001868920357 +2.497381506e-06 -0.009324418535 -0.01138772059 0 -23.25718954 -0.6317167029 1016.262495 0.001967995483 +2.497030186e-06 -0.003251802353 0.009723039649 0 -9.241782724 22.66479803 1003.870747 0.001992288357 +2.49975461e-06 0.005455624019 0.003820034643 0 -4.824356867 -4.237530597 916.5430356 0.002182112484 +2.499426474e-06 -0.009300272861 -0.01019971234 0 -9.472804406 -1.556914789 896.2674308 0.002231476824 +2.499321974e-06 0.002876518085 -0.01465961728 0 8.997121793 8.028317535 1035.38751 0.001931643931 +2.497479871e-06 -0.00530409039 -0.006079097057 0 21.65407037 6.037870793 1000.93874 0.00199812428 +2.496534904e-06 -0.001139152264 0.004579020983 0 18.40137981 19.74543901 1024.741328 0.001951712052 +2.496456571e-06 -0.006235134923 -0.003508401511 0 14.17772095 -24.42358575 1060.260942 0.001886328092 +2.498446796e-06 0.0004770399397 0.007657990814 0 0.3389690165 15.70685368 891.1685917 0.002244244264 +2.498293695e-06 0.002959346757 0.01367711287 0 -19.23102882 3.38026035 1056.708664 0.001892669255 +2.497121569e-06 0.008738619685 0.01036508773 0 24.527576 6.261331251 1054.588052 0.001896475118 +2.498865197e-06 0.007360544424 -0.002465751863 0 4.783392199 -15.0758136 1049.688837 0.00190532654 +2.499154413e-06 0.004959656545 -0.001045401196 0 3.40936951 12.78657985 1017.464329 0.001965670877 +2.499944551e-06 -0.00923602568 -0.01471101962 0 1.459652446 -2.607181533 897.2427368 0.002229051201 +2.497848717e-06 -0.008043117491 0.0001198980468 0 19.35815714 -8.313426559 1015.347614 0.001969768749 +2.496922924e-06 -0.0008000896545 0.001173466269 0 -24.90226605 8.664410635 1062.352366 0.00188261453 +2.497752125e-06 -0.006927832682 -0.009800220849 0 10.17192774 -17.69848422 962.4240172 0.002078086129 +2.499897277e-06 -0.001425579954 -0.01486073853 0 -0.1521024848 4.061409341 896.6561563 0.002230509417 +2.499831312e-06 0.005062480033 0.007492099029 0 -4.289304462 2.738232117 876.0887592 0.002282873714 +2.498138539e-06 -0.007107238071 0.003628176057 0 6.604765287 17.97005802 991.9753948 0.002016179041 +2.499250229e-06 -0.009614083325 0.01436501574 0 7.777556018 8.404363296 935.0019425 0.002139032989 +2.498511954e-06 0.00652573043 0.002806646253 0 17.1521252 6.427964177 1061.537472 0.001884059728 +2.495929907e-06 0.0001858059643 0.005394616728 0 -23.82607127 -14.96248813 985.5049288 0.002029416537 +2.498676109e-06 -0.005091989422 -0.006165402553 0 14.78375847 -8.292184837 1041.490814 0.001920324186 +2.498659297e-06 -0.005413581636 0.003770428018 0 14.9645778 1.5836256 918.7854226 0.002176786822 +2.49786701e-06 -0.001329243388 6.837989436e-05 0 -22.04418868 0.497902677 1067.22608 0.001874017172 +2.497648783e-06 0.002105388995 -0.003950338061 0 9.327279964 -21.02804586 1060.43944 0.001886010576 +2.497216789e-06 -0.0003780248901 -0.002254927049 0 9.243410245 -22.26060994 1021.196763 0.001958486427 +2.496207525e-06 -0.005813661711 -0.01027460351 0 14.975777 -24.0072065 1026.808783 0.001947782326 +2.499492675e-06 0.00186089966 -0.01056323949 0 9.427667535 3.208454423 988.5764814 0.002023111047 +2.49736619e-06 0.005202343208 -0.003684099067 0 16.24746664 -17.52632339 1040.871405 0.001921466945 +2.497954147e-06 -0.005578166023 0.004479050436 0 15.78948691 11.44521692 963.7804552 0.002075161401 +2.498814984e-06 0.008288710951 -0.01028485251 0 -13.63904531 -3.058254439 907.7826213 0.002203170619 +2.498777135e-06 -0.005322987577 0.004718295448 0 11.85384085 -7.104317048 883.5182494 0.002263677068 +2.496938594e-06 0.003866598932 -0.007963900978 0 -17.43699662 -14.94958516 927.795489 0.002155647472 +2.499689829e-06 0.008867589016 0.00154996044 0 -0.6430766726 7.70137978 981.1640859 0.002038395034 +2.497122934e-06 -0.003516404242 -0.009352974559 0 20.27297888 -10.52315325 951.7998253 0.002101282168 +2.497683453e-06 -0.007442301051 0.009602101792 0 -9.698626644 18.62793577 975.3577811 0.002050529599 +2.499142296e-06 0.007320700171 -0.01399395408 0 6.517840949 -10.67784117 955.0268689 0.002094181918 +2.497586583e-06 -0.006728773555 -0.005742518236 0 -17.3936301 9.682132405 905.7612091 0.002208087496 +2.497067356e-06 -0.003817026727 -0.01496115387 0 -2.547711485 -23.59354582 979.4331188 0.00204199752 +2.498755911e-06 -0.007772296248 0.00307477846 0 3.888853095 -13.72714803 904.3198411 0.0022116069 +2.498628227e-06 0.004614156224 -0.006703827758 0 -7.829859915 -14.1314125 975.1638749 0.002050937336 +2.495163198e-06 0.003278141273 -0.0003585442971 0 23.37121148 -15.94974756 909.0764915 0.002200034891 +2.494511277e-06 0.009628839144 -0.008015402779 0 27.18407682 -16.04073105 951.879447 0.002101106402 +2.49730038e-06 0.0004548763251 -0.007789492914 0 17.62868296 13.43475986 953.4871889 0.002097563578 +2.497711213e-06 -0.0007995532593 -0.003069470795 0 -0.7338838553 -22.40910419 1047.5878 0.001909147854 +2.499932008e-06 0.00189198208 -0.01087567576 0 -0.001064076173 -3.302485806 895.5555787 0.002233250563 +2.494593452e-06 0.005588445617 -0.008328373167 0 -15.67056931 -29.30734914 1009.840532 0.001980510721 +2.496081663e-06 0.003004543073 0.0140967495 0 -6.340625966 28.34263899 1036.867918 0.00192888599 +2.498923025e-06 0.007581524001 -0.005955506733 0 13.64817382 -0.6143579962 930.7352387 0.002148838807 +2.496207992e-06 -0.003434519446 -0.003852919126 0 17.60283238 18.30804714 921.7177498 0.002169861653 +2.499874117e-06 -0.004595088856 0.01151230278 0 -4.709320174 1.630918585 993.2265919 0.0020136392 +2.499985053e-06 0.008878932181 0.005473264251 0 1.249530864 -1.159762495 986.0256704 0.002028344758 +2.496765554e-06 -0.005229777438 -0.01423020502 0 19.88141606 -14.60577369 969.4824293 0.002062956418 +2.498206633e-06 -0.008602382699 -0.01198997699 0 7.581653819 15.21946726 897.5689635 0.002228241039 +2.498653829e-06 -0.006545721865 0.0117494156 0 -14.15478309 6.54588767 950.2432696 0.002104724194 +2.499466356e-06 0.0002422958752 -0.004472318315 0 -3.182420452 9.866902303 1003.449582 0.001993124554 +2.494388049e-06 0.006540927659 0.008549405155 0 -22.26579508 28.0383244 1067.803704 0.001873003429 +2.494268586e-06 -0.003649357334 -0.01403083522 0 -23.67223236 -26.22560616 1042.593347 0.001918293461 +2.498149461e-06 -0.001331755589 -0.008854039824 0 -19.16381616 1.972738159 1001.120118 0.001997762271 +2.497506484e-06 -0.001461994965 -0.000781245043 0 10.74935203 19.45644055 995.0034277 0.002010043327 +2.49901522e-06 0.000944793392 0.00600528423 0 9.3848085 11.43588276 1053.970511 0.001897586297 +2.499976843e-06 0.002601434528 0.003701465183 0 -1.220253419 1.492750429 895.9042901 0.002232381318 +2.494080734e-06 0.00439797584 0.00203288456 0 27.05083525 21.24304435 998.7576504 0.00200248779 +2.498742704e-06 0.002115650666 -0.01265893639 0 13.12066473 -4.704459586 878.8253553 0.002275765017 +2.496076945e-06 5.644880235e-05 0.003385010718 0 22.3859998 12.41216427 913.2764628 0.002189917381 +2.499268816e-06 -0.006573019801 0.002646839947 0 2.176215313 12.42576455 1043.055969 0.001917442648 +2.496474454e-06 0.003630258939 0.001803289955 0 -13.71747446 -24.87554673 1069.223511 0.001870516295 +2.498977757e-06 0.006799055245 0.002032185355 0 7.466381248 -13.02307005 1049.705189 0.00190529686 +2.498353448e-06 -0.005745609174 0.0143150417 0 -6.311571934 16.83711607 990.6249595 0.002018927527 +2.496779562e-06 -0.004783104113 0.001250239913 0 15.66022015 17.00412028 910.4241298 0.002196778331 +2.49609181e-06 -0.006551131839 0.005732582831 0 -28.48918552 3.931226236 1028.059591 0.00194541252 +2.49581972e-06 0.007506509232 0.001806184219 0 19.49378702 -19.15933193 944.7035918 0.002117066154 +2.497497725e-06 0.009282286074 -0.001698166234 0 8.189787948 -19.92639758 962.6670348 0.002077561532 +2.498293753e-06 -0.003223776356 0.004971884082 0 -18.50716762 -2.76373684 1012.702926 0.001974912829 +2.494348869e-06 -0.003932458689 -0.00317262949 0 -25.38193161 -24.55659556 1049.612082 0.001905465871 +2.496497872e-06 -0.00844339306 -0.001872619812 0 -15.86284895 -21.07810834 996.2522104 0.002007523777 +2.499039973e-06 0.002267619106 0.007527117657 0 -2.162491998 12.02909443 881.9022102 0.002267825136 +2.499883143e-06 0.005106050638 -0.009737692466 0 -4.992386195 -0.9559181767 1051.420507 0.001902188503 +2.496639994e-06 0.004463186166 -0.004948394545 0 0.5125406478 -24.12557016 930.4038638 0.002149604143 +2.497354649e-06 0.005458941478 -0.002425733102 0 21.71160502 11.56142972 1068.9819 0.001870939068 +2.497292706e-06 -0.00295646783 -0.01474702153 0 17.741775 14.12127058 974.0893212 0.0020531998 +2.498503936e-06 -4.557735752e-05 -0.01393477743 0 -11.55152732 -14.3192125 1063.352789 0.00188084333 +2.499516604e-06 0.009862210015 0.008633395589 0 8.603692997 5.307260754 1028.033624 0.001945461659 +2.499693325e-06 0.006990008182 -0.01152894603 0 -0.8365253159 7.135667149 917.3272943 0.002180246911 +2.497122033e-06 0.002836903543 0.004068529475 0 13.24871787 -17.73949632 922.4635951 0.002168107241 +2.496496561e-06 -0.002233879957 0.01060530578 0 -17.31314597 16.77722052 910.2897449 0.002197102638 +2.497267292e-06 0.009225171763 -0.01121039422 0 -2.044965774 -24.09425722 1033.909218 0.001934405812 +2.497143556e-06 -0.002641924326 0.01057609348 0 -22.39326768 -8.178430553 996.9929118 0.002006032316 +2.496341758e-06 -0.0007971535716 -0.007726713305 0 22.27897151 12.81613173 949.6891928 0.002105952153 +2.498616178e-06 -0.007404598645 0.0126115898 0 6.86303349 14.82505823 981.7832953 0.002037109421 +2.49738107e-06 -0.004131219606 0.0006649318594 0 -16.88878735 13.11454406 933.9339362 0.002141479094 +2.49741667e-06 -0.003578272518 0.01276506885 0 -16.92056663 -14.67369531 984.9526728 0.002030554417 +2.499396662e-06 -0.009343165262 0.01203489737 0 -10.32045331 2.228239057 961.0757533 0.002081001412 +2.49973105e-06 0.007299632132 0.007493617446 0 1.075596543 7.027654077 969.3258353 0.002063289688 +2.498595765e-06 -0.001511021769 -0.01139397907 0 -6.878044588 -14.78381756 972.7633545 0.002055998502 +2.49812882e-06 -0.004277500887 0.01368015138 0 -11.73568148 14.29972758 955.9841176 0.002092084966 +2.499320786e-06 -0.001384606441 -0.01125576435 0 -11.45309819 -2.239904781 1001.177269 0.001997648231 +2.493518775e-06 -0.00657537559 0.001044364886 0 -27.42559187 23.25516124 997.7626017 0.002004484831 +2.495907058e-06 -0.009047480822 0.01107721899 0 7.589694432 24.94888354 910.9003447 0.002195629864 +2.49912101e-06 -0.002035706542 -0.008097743473 0 -4.981607675 -10.64168235 886.0791368 0.002257134738 +2.497468228e-06 0.001366212615 0.003233120902 0 12.00618439 -18.54993567 981.5857156 0.002037519463 +2.497312991e-06 -0.006934867399 -0.01224938708 0 -18.48722619 -8.856523718 883.916808 0.002262656374 +2.497603428e-06 -0.009684919817 -0.0004456208297 0 -23.14729162 -0.9496465248 1057.78875 0.001890736691 +2.497785174e-06 0.001622007494 0.01173035051 0 -18.13386422 -11.77652476 1027.005185 0.001947409838 +2.495434494e-06 0.001241005789 -0.0005194885097 0 25.09661293 15.8383191 981.4202129 0.002037863062 +2.498832046e-06 0.004612744176 0.0137720548 0 14.55577269 6.47894436 1042.274803 0.001918879738 +2.499322797e-06 -0.006889227228 0.00287659744 0 9.487748313 6.374306703 982.0529026 0.002036550164 +2.498636374e-06 0.006060685706 0.002879431034 0 12.99634579 -9.668079316 980.6436996 0.002039476724 +2.496840736e-06 0.002639807072 -0.002769288446 0 -19.24932061 -13.67210323 938.8452768 0.002130276468 +2.4994717e-06 0.001074661203 0.001982710795 0 8.205961989 -6.899945495 1042.940221 0.001917655451 +2.496477654e-06 -0.0008739718702 -0.003588216458 0 -25.90073079 10.52108211 1052.72585 0.001899829856 +2.495069747e-06 0.003432017909 -0.01328701151 0 21.4475728 -17.92448461 889.4751862 0.002248516913 +2.494714987e-06 0.006162827355 0.01493286945 0 22.01380068 26.82087113 1066.410822 0.001875449834 +2.499106794e-06 0.005831218706 -0.01040155791 0 -11.57179971 -1.908696014 877.3658095 0.002279550876 +2.493498164e-06 0.001154709379 -0.01305954165 0 -19.17433803 -30.65905067 1001.81101 0.001996384527 +2.499439777e-06 -0.009494461874 -0.000256217618 0 -8.462438212 -7.499369085 1068.129703 0.00187243178 +2.496736235e-06 -0.009019614211 -0.009642939458 0 8.646289368 -24.64858005 1021.889475 0.001957158821 +2.493511887e-06 0.00883856283 -0.00763328301 0 24.8796232 -25.46108335 987.2699566 0.002025788374 +2.498274086e-06 0.008832967691 -0.004719367311 0 16.35611037 6.826391902 953.700753 0.002097093867 +2.498294374e-06 0.002671895246 0.009099918169 0 -19.22143272 2.375235782 1048.35545 0.001907749895 +2.49862821e-06 0.004527311604 -0.006120217445 0 -11.35221461 11.24832374 964.6287016 0.002073336608 +2.496116984e-06 -0.007949407184 -0.01285850683 0 18.64194766 -17.39932168 914.5139751 0.002186954005 +2.49811587e-06 -0.003119806885 -0.003957599115 0 2.130712343 -19.74572143 1022.807023 0.001955403076 +2.495423174e-06 -0.006268901429 0.01188263234 0 -27.79844262 -11.43611036 992.8362766 0.002014430825 +2.498999991e-06 -0.006460761763 -0.006504939278 0 -13.40975388 -6.361918502 1049.350894 0.00190594015 +2.497781185e-06 -0.007427226421 0.00237831715 0 -16.23825267 11.81631222 953.0094942 0.002098614979 +2.497391912e-06 0.0008262248849 -0.01218022099 0 22.6468008 4.277102503 1008.721224 0.001982708357 +2.498847413e-06 0.007663169629 0.001815123763 0 15.46522999 2.882686418 1035.967074 0.001930563288 +2.497773026e-06 0.002676921855 0.004877155717 0 -9.159852779 16.26841376 884.3489993 0.002261550589 +2.499801586e-06 -0.007177029238 0.00484723689 0 -6.425929355 -1.059709494 1033.828738 0.001934556398 +2.497188664e-06 -0.001884879777 0.01389799184 0 13.32573435 20.43906251 1028.54779 0.001944489133 +2.496243745e-06 0.009383782721 0.01462532516 0 22.94219518 8.780064274 895.7307002 0.002232813947 +2.496581981e-06 0.007641875921 -0.008695266531 0 12.64068369 -21.50418594 953.5553211 0.002097413706 +2.496502612e-06 0.008529527928 0.005391507454 0 26.25791112 6.622316831 1023.377169 0.001954313678 +2.49548015e-06 0.009041143567 -0.004475827524 0 21.38281214 21.43321717 1006.282631 0.001987513187 +2.499354594e-06 0.009266738612 0.004155694661 0 -11.04243007 2.210671854 991.1157941 0.002017927685 +2.494219496e-06 -0.005202463111 0.01482471249 0 23.50387308 26.96082471 1051.028449 0.001902898064 +2.497932469e-06 -0.008908438254 -0.007478789992 0 -3.744446476 -17.63737443 886.4032065 0.002256309528 +2.498626558e-06 -0.001583552784 0.003980482724 0 -13.70924666 -6.500102413 915.2465332 0.002185203579 +2.499912043e-06 -0.00293486964 0.0004346427647 0 -3.988070279 1.213064844 993.8516841 0.002012372703 +2.498368014e-06 -0.005576160336 0.01043622181 0 -16.54648752 9.081780731 1044.496655 0.001914797899 +2.49964884e-06 -0.009244316588 -0.003941840788 0 7.832695211 -2.913530019 997.1518885 0.002005712493 +2.496409405e-06 -0.002665775651 -0.001061565969 0 22.26240266 -16.49575161 1033.404654 0.001935350292 +2.499072764e-06 -0.007058352586 0.007504061521 0 11.59603957 -6.582567948 979.0236845 0.002042851498 +2.496129851e-06 -0.003913732599 0.006454439079 0 -0.3385587441 28.88006144 1037.520793 0.001927672211 +2.498396683e-06 0.0004282151721 -0.004210794847 0 -14.62168953 -9.438182975 971.6306501 0.002058395338 +2.496153437e-06 0.008767049811 -0.009405982832 0 -10.70953937 -22.30626962 891.5939738 0.002243173528 +2.499287311e-06 0.004495171728 0.008337309533 0 -2.493317428 11.08051778 951.2048363 0.002102596543 +2.496008863e-06 0.007760986565 0.0003678505146 0 -18.90759009 17.02198001 899.9341986 0.002222384707 +2.499208693e-06 0.001736998176 -0.001933501347 0 3.250743161 -12.32661865 1013.222277 0.00197390054 +2.498846056e-06 0.006893880535 0.01073284066 0 -10.53592048 -10.99804262 1002.366019 0.001995279133 +2.498196516e-06 -0.004050288489 -0.001331807531 0 8.491830882 -17.58276985 1027.838337 0.001945831293 +2.498943277e-06 -0.009233577326 -0.01093687527 0 -10.3123113 7.97972692 896.7786377 0.002230204775 +2.498445266e-06 -0.00180840638 -0.01358873757 0 17.85695219 -1.530119889 1016.135148 0.001968242122 +2.499090564e-06 0.008845026242 -0.004267967069 0 6.6143071 11.95770277 1013.102477 0.001974133955 +2.499073246e-06 -0.004683680078 0.001518796426 0 12.67225006 -3.813342672 971.8956862 0.002057834013 +2.495183641e-06 0.006896921908 0.00133607825 0 19.61276579 26.65423493 1065.467435 0.001877110397 +2.49822093e-06 0.007870591655 0.01408575764 0 17.48230336 2.792742218 938.3029776 0.002131507677 +2.498748314e-06 -0.004213157278 -4.665234592e-06 0 0.3112443755 -16.35018322 1033.372791 0.001935409968 +2.494306372e-06 0.002346818568 0.009109993621 0 18.97956533 23.65560944 897.9840998 0.002227210928 +2.495162296e-06 -0.009707581401 -0.002589209466 0 -19.67873652 -22.17851671 952.5302257 0.002099670904 +2.49846348e-06 0.004793686736 0.01322500785 0 -16.4081298 -6.670514207 1010.156476 0.001979891283 +2.499324424e-06 -0.005298663964 0.002237597338 0 4.56648451 10.18650425 960.2708689 0.002082745676 +2.498756545e-06 -0.00499594342 0.002425420645 0 7.344596947 13.99306909 1001.938053 0.001996131392 +2.496535671e-06 -0.0003147113882 -0.008601212252 0 -19.28371594 -16.20853178 956.5158441 0.002090921977 +2.497509634e-06 -0.00110700096 0.008080177722 0 -21.95479657 6.56709567 1026.428219 0.001948504497 +2.499207509e-06 0.001957914438 -0.00529476857 0 7.053490195 10.52785778 1006.449904 0.001987182861 +2.498410807e-06 0.0001448572893 0.01384314777 0 18.30226825 3.889279912 1049.274082 0.001906079674 +2.495759335e-06 -0.006844979892 -0.011729461 0 -6.095510389 -25.08775137 885.9476561 0.002257469712 +2.497312487e-06 0.005372478194 -0.006824613267 0 -15.58771678 14.32667813 912.820282 0.00219101179 +2.496121382e-06 0.002607358689 -0.01413853476 0 -19.74407211 -16.462895 922.4584682 0.002168119291 +2.496802003e-06 0.003214305369 -0.0001750881155 0 -18.25135295 -13.49864745 897.1773741 0.002229213596 +2.499250458e-06 -0.005337833329 0.0007340124529 0 -9.808990442 -8.175712893 1042.821649 0.001917873494 +2.497704264e-06 0.006537217265 -0.01153077293 0 22.22748162 -5.336023112 1066.428533 0.001875418688 +2.493987706e-06 0.007080626744 0.004796605592 0 24.38251175 -19.30251748 895.9982536 0.002232147208 +2.498949654e-06 0.003981061806 -0.008450754716 0 -12.13372546 -7.179558113 972.5891508 0.002056366759 +2.496342818e-06 0.009721021298 -0.008251790539 0 26.72258919 5.514402692 1008.340631 0.001983456719 +2.499684731e-06 0.009692804776 -0.005588577075 0 -0.09635283786 7.532186279 948.5947761 0.002108381841 +2.49674889e-06 0.002271857769 0.0119793772 0 20.80726808 -13.68006454 976.0755288 0.002049021762 +2.499895069e-06 -0.005139678149 -0.01338961474 0 1.351771668 4.21276936 965.7693214 0.002070887898 +2.496244235e-06 -0.005733200004 -0.006338191603 0 -25.76184077 1.94322952 942.1062505 0.002122902803 +2.499684067e-06 0.009054463133 -0.006562223865 0 -4.758107332 -5.419106332 907.1823113 0.002204628524 +2.495710127e-06 0.005028935713 0.008456230494 0 3.388274501 26.29759373 904.6369538 0.00221083164 +2.496591256e-06 -0.001790809077 0.00315289997 0 -19.44777728 -19.94138178 1066.255862 0.001875722396 +2.499965445e-06 -0.0006254036585 0.005228785928 0 1.647632463 2.175865777 1038.195952 0.001926418608 +2.495980025e-06 0.007405577861 -0.01465983925 0 27.00456 -12.64705159 1051.016539 0.001902919627 +2.494904725e-06 0.001298043942 -0.01029228213 0 17.69841109 -27.18095085 1015.277166 0.001969905427 +2.496725344e-06 0.005792729189 0.004886865139 0 14.76914817 -18.66534991 929.6028866 0.002151456314 +2.498231197e-06 -0.000504000294 0.008523808394 0 -18.66768803 2.219706481 999.2386301 0.0020015239 +2.497254387e-06 -0.00866820829 0.008995071861 0 21.29635897 12.81412646 1060.200809 0.001886435082 +2.496136546e-06 -0.007099367403 -0.01097975858 0 -14.84636182 -20.97878303 924.0373281 0.002164414726 +2.498297831e-06 -0.007059484776 0.008287456445 0 18.70511191 -2.689550706 1023.945083 0.001953229751 +2.497933325e-06 -0.0005442376621 -0.002333763933 0 19.7111549 -7.834935299 1042.989372 0.001917565082 +2.497495712e-06 0.004324276242 -0.004193307718 0 20.51918056 9.509872122 1010.163383 0.001979877743 +2.499357835e-06 -0.009666969059 0.003118533245 0 7.730705633 -6.875728204 912.8339615 0.002190978956 +2.498590163e-06 -0.007709674658 0.001831423868 0 7.393765843 13.18174106 899.873619 0.002222534318 +2.499048881e-06 0.004018685836 0.00599033908 0 13.3008935 -2.584672633 982.2798538 0.002036079629 +2.494395454e-06 0.0003711206373 -0.004691133974 0 19.07981535 -22.55437976 881.6406388 0.002268497971 +2.49770245e-06 -0.001292118425 0.006076356552 0 18.74446311 11.4024096 1023.156968 0.00195473428 +2.496535327e-06 -0.00768231119 0.01043674983 0 -24.4910007 -6.801785412 965.0925537 0.002072340101 +2.498557211e-06 0.003184949956 0.005037832155 0 13.51172179 -8.469629686 938.5637886 0.002130915367 +2.49951474e-06 0.004136603591 0.004982598152 0 -10.12041747 0.2013905776 1027.426038 0.001946612142 +2.498073017e-06 0.009529421623 0.007171338717 0 -15.73055339 8.346169741 906.8274146 0.002205491329 +2.49713201e-06 -0.001228544279 -0.00814910172 0 -11.18070022 18.31394254 895.5316356 0.002233310271 +2.497943065e-06 0.005924312966 -0.004331285222 0 -9.51879756 16.72791001 948.6238483 0.002108317226 +2.497139523e-06 -0.006404990554 0.0001664281427 0 3.523889197 23.22898014 981.8612937 0.002036947594 +2.499410786e-06 0.002236689213 0.007338269837 0 9.418524285 -3.482532943 924.9522633 0.002162273751 +2.499173979e-06 -0.00282813956 0.01218934037 0 9.598812322 7.202203293 933.5342799 0.002142395885 +2.493561063e-06 -0.002005515713 -0.005999290457 0 22.4278413 -26.13282915 958.7116184 0.002086133058 +2.498080138e-06 -0.009105966655 0.006658987314 0 -18.90977091 8.182863118 1051.195632 0.001902595425 +2.497393062e-06 -0.00939884935 0.002666557494 0 -17.60567523 -16.40683525 1053.520554 0.001898396753 +2.495609977e-06 0.002630036278 0.008640876277 0 18.65136188 19.97150904 921.612779 0.002170108798 +2.495465669e-06 -0.004751087371 0.004059028951 0 20.20737903 -21.99665183 991.2007672 0.002017754693 +2.498374446e-06 0.00583335523 -0.005169177828 0 0.2448665874 16.78667964 930.870717 0.002148526066 +2.494557005e-06 -0.005627570618 0.01434145781 0 -13.29411356 31.56570706 1037.250566 0.001928174411 +2.499164873e-06 0.004663550151 -0.006098067141 0 10.30155954 -5.727407696 911.8952172 0.002193234444 +2.497366046e-06 -0.006599946846 -0.009083457319 0 -10.51141791 19.60027741 968.6413538 0.002064747692 +2.496776875e-06 -0.009033329794 -0.002516904753 0 -24.19881786 -9.768880658 1027.340243 0.001946774706 +2.499720416e-06 0.004141707243 -0.01395730802 0 -3.767403348 5.870383948 932.7667525 0.002144158756 +2.498351902e-06 -0.008705396135 -0.009609148682 0 11.8013976 10.76172011 879.4896726 0.002274046032 +2.499378301e-06 -0.007338571977 -0.010523365 0 -11.21560244 1.417575637 1013.721184 0.001972929078 +2.495649099e-06 0.001057919781 -0.008685878261 0 -10.82133654 -24.86877175 918.7978488 0.002176757382 +2.49988176e-06 0.009248661529 -0.008522522841 0 -4.005646213 -1.451418307 876.103193 0.002282836104 +2.498149936e-06 0.005624884954 -0.006173363698 0 -15.53627328 -13.3660986 1065.148924 0.001877671709 +2.498273711e-06 0.003504370945 -0.01393118177 0 -11.92165484 -13.74275198 978.8646754 0.002043183343 +2.496387002e-06 -0.008147515347 0.01129430462 0 -16.52006366 19.61519461 953.4964238 0.002097543263 +2.497028711e-06 0.001680717506 -0.0007587128598 0 15.17935062 -20.39208999 1042.36342 0.001918716603 +2.499339928e-06 -0.001249374743 -0.01259998061 0 -0.3764399999 10.12197699 881.4785474 0.002268915115 +2.49892499e-06 -0.007192158592 -0.01009927503 0 -12.7217857 -3.130575557 893.3536424 0.002238755074 +2.49935468e-06 0.009010611605 -0.003499777489 0 -0.9857090521 -10.70267523 945.9794995 0.002114210721 +2.499990427e-06 -0.006922343466 0.008080697658 0 0.3336908207 -1.182526804 888.011478 0.002252223141 +2.49701476e-06 0.001175350975 0.005036375457 0 -20.10083776 8.097865248 886.4896308 0.002256089559 +2.499627065e-06 -0.0009074484091 -0.004688816601 0 8.172145003 2.062392623 975.8603666 0.00204947354 +2.498567403e-06 0.001341745332 -0.005345855732 0 1.200914661 -16.81655488 995.7979119 0.00200843964 +2.498662595e-06 0.0057446452 0.003646673206 0 15.58722714 -5.171958867 1003.958164 0.001992114882 +2.497433173e-06 -0.007356453757 -0.01356642449 0 -9.918635001 -21.6164102 1049.283259 0.001906063002 +2.497459734e-06 0.007956226594 -0.008151631427 0 22.68099797 2.11413959 1010.230679 0.001979745855 +2.498765723e-06 -0.007852812707 -0.0002972334553 0 3.82441536 14.8587237 976.3571575 0.002048430725 +2.499556131e-06 0.009715270372 0.007479569055 0 -7.52987358 5.490994572 989.0393564 0.002022164221 +2.499976584e-06 -0.007242461336 0.007393054096 0 0.5724693308 -1.874556066 905.7091804 0.00220821434 +2.498786462e-06 -0.0002349195816 0.005067419317 0 -13.22235918 -6.133219346 935.4157899 0.002138086636 +2.497145693e-06 0.008655992583 0.01271599565 0 13.82728726 17.82208838 943.6936094 0.002119331932 +2.49874055e-06 0.007105844622 0.004226367599 0 -8.828771277 12.79334199 979.2103703 0.002042462029 +2.496150485e-06 0.00846532783 0.009812166891 0 26.58497982 9.570352132 1017.720428 0.001965176237 +2.4968734e-06 -0.00366100797 -0.009049393886 0 7.681438778 -24.32519655 1019.628542 0.001961498641 +2.498824186e-06 0.004284154144 -0.002845556389 0 6.267067183 -13.5649285 974.2428716 0.002052876196 +2.499568018e-06 0.003813477554 0.01408634876 0 5.349836971 -7.916779791 1027.898167 0.001945718034 +2.499413466e-06 0.007147151106 0.007842845775 0 -5.275406803 -8.058922725 889.2390314 0.002249114051 +2.499971445e-06 0.004552012002 0.01164850561 0 -0.2365315549 2.482476767 1043.490171 0.00191664479 +2.498787789e-06 0.007939041979 0.01488214464 0 -6.91671541 -14.88608248 1054.010964 0.001897513468 +2.497926445e-06 0.005863123615 0.004560294973 0 -16.25071256 -10.79050897 957.5937674 0.002088568314 +2.499215674e-06 0.00694049845 0.0007436493575 0 4.170232395 -12.37486232 1042.517854 0.001918432372 +2.495102282e-06 0.004020508602 0.008941920076 0 25.82695199 -18.88579073 1021.541667 0.001957825182 +2.497043174e-06 0.007738500037 0.01001297644 0 21.73520302 10.39655168 990.3375931 0.00201951336 +2.496995568e-06 0.004281635373 -0.00525573777 0 -15.78593449 -18.46244501 990.5015848 0.002019179 +2.497417153e-06 0.00430753612 0.008855062716 0 5.179342647 19.66173186 894.2468371 0.002236518953 +2.497658491e-06 0.003574851411 -0.00971061032 0 17.11174774 8.896986029 890.9174335 0.002244876938 +2.498863078e-06 0.0008584367251 -0.009619864204 0 -8.551142394 10.21695848 883.3947422 0.002263993552 +2.498477715e-06 0.003472793419 -0.008204059484 0 -16.06690184 5.079516429 965.5090708 0.002071446101 +2.495175511e-06 -0.003828443526 0.003655807783 0 -19.42640016 20.27827458 903.3818561 0.00221390322 +2.498957345e-06 0.005171173448 0.003423791053 0 -7.813089512 12.24928206 1005.957772 0.001988155025 +2.494442846e-06 -0.008512137556 0.005819802764 0 -20.99377986 21.9924264 911.2293503 0.002194837117 +2.497100728e-06 0.009985307227 0.008108398626 0 22.18255309 -13.18010822 1071.068481 0.001867294234 +2.499710445e-06 0.008456504922 -0.0076570409 0 -5.35443119 -5.777442502 1035.064677 0.001932246404 +2.499545044e-06 0.008859910527 0.01463644459 0 5.157426115 -7.459216293 950.6257918 0.002103877275 +2.499042522e-06 0.004157487149 -0.002541104013 0 2.240041482 -13.86257659 1014.610572 0.001971199645 +2.499915244e-06 0.00644282924 -0.01215359215 0 3.978457012 1.402516127 1024.577345 0.001952024423 +2.499259369e-06 0.008893179367 -0.01198591455 0 -0.8573542725 11.1248817 916.6782602 0.002181790588 +2.498600467e-06 -0.007373431074 0.01033019578 0 -13.27294868 -11.75348172 1059.461285 0.001887751848 +2.496904664e-06 -0.001928527211 -0.0009546438348 0 -4.533386586 23.35818719 955.8672118 0.002092340835 +2.49957944e-06 0.008533194126 -0.01447148674 0 0.1296645232 -9.033741181 985.0445525 0.002030365017 +2.499134742e-06 -0.00470985841 0.006244846671 0 7.400651116 -10.10176868 951.8096501 0.002101260478 +2.498018437e-06 -0.003000527089 -0.01355406457 0 15.08351328 -11.04075235 938.6852324 0.002130639677 +2.496085321e-06 -0.008243227862 0.01000479399 0 -4.996605353 29.49508271 1068.501823 0.001871779679 +2.499285357e-06 0.009956151014 0.002949611249 0 -8.040984443 7.578055127 924.1102643 0.002164243897 +2.496376784e-06 -0.005750386501 0.009481915799 0 6.370594949 26.21596828 1001.673275 0.001996659039 +2.49882068e-06 0.000244194041 0.002856695261 0 -11.69836958 -7.557504159 906.6863162 0.002205834547 +2.499704559e-06 -0.007207309888 -0.009849447927 0 5.709735544 5.040343123 990.7570444 0.00201865837 +2.499138419e-06 -0.008535005646 0.003188856854 0 -12.07991416 -5.346377379 1006.210123 0.00198765641 +2.495691036e-06 0.0002223463869 0.01311247489 0 -20.95037368 18.44132336 950.1376793 0.002104958096 +2.498763306e-06 0.002774504246 -0.00597332339 0 4.59639433 14.90768585 991.7521249 0.002016632937 +2.497534015e-06 0.005038650609 0.006054881893 0 -11.03504133 -20.35358638 1042.144543 0.001919119582 +2.499130323e-06 0.002279512729 0.0102462967 0 4.381659525 -11.73631512 949.7649329 0.002105784211 +2.499986863e-06 -0.005064634164 -0.009999132862 0 1.403058877 0.4028687197 900.5762945 0.002220800183 +2.496800475e-06 0.004746105229 0.00573101515 0 24.7453332 3.030211885 985.0517532 0.002030350176 +2.497961149e-06 -0.005344235259 0.001557644124 0 13.77351962 11.45472019 886.8660945 0.002255131877 +2.496718534e-06 7.039280608e-05 -0.003870528701 0 21.32522785 -16.82685145 1059.835157 0.001887085918 +2.497897321e-06 0.004905827665 -0.01472591326 0 -19.28083042 9.459633704 1046.941977 0.001910325543 +2.498713088e-06 0.005668766201 -6.515977671e-05 0 4.263156111 -14.3225199 931.2792994 0.002147583438 +2.497305782e-06 0.0049773941 -0.009628221185 0 -17.64900611 14.01230762 970.4052545 0.002060994611 +2.495816383e-06 0.007041020463 -0.01116140619 0 -16.41584614 -25.52847732 1048.59869 0.00190730736 +2.49874058e-06 0.007262718538 -0.0001161183184 0 -13.20982705 -8.87104192 1002.40948 0.001995192623 +2.4982786e-06 -0.007311113128 -0.009343281621 0 8.183821428 -16.75125948 1004.521284 0.001990998132 +2.496487839e-06 0.002675494119 -0.007143922553 0 -9.992317759 -24.38975337 993.9614197 0.002012150532 +2.49800706e-06 -0.005252547408 0.01073294444 0 16.19854386 8.411278018 913.9512394 0.00218830055 +2.498984486e-06 -0.007407245953 0.009141071127 0 -15.10020076 -1.904130479 1067.786426 0.001873033738 +2.498539106e-06 -0.001513754702 -0.003655171108 0 6.807699948 16.23165833 1029.506683 0.001942678016 +2.496602799e-06 0.0002732591284 0.000689337342 0 23.43188701 -7.391584947 942.1271174 0.002122855784 +2.493841681e-06 0.009502797481 0.01165309521 0 27.03050901 25.42497404 1056.40758 0.00189320868 +2.494253642e-06 -0.002885950338 0.01041183926 0 -15.70708953 28.13804589 949.749985 0.002105817354 +2.498488713e-06 0.003119570361 -0.01177679451 0 -3.631742868 14.97888265 886.3320836 0.002256490583 +2.497433499e-06 0.006334555084 -0.004360182672 0 19.27265239 10.857657 975.9895375 0.002049202295 +2.496842866e-06 2.007497475e-05 -0.01059827448 0 19.23650828 17.1297842 1024.576227 0.001952026553 +2.498040981e-06 -0.004749864065 -0.004265222233 0 13.90471123 -12.80766065 954.775795 0.002094732617 +2.499343865e-06 0.005576506187 -0.01075118075 0 7.562937775 9.169444763 1037.482846 0.001927742716 +2.499681424e-06 -0.009032508247 0.002637762416 0 -4.126454314 -6.332857541 946.8910689 0.002112175376 +2.49801997e-06 -0.006713434132 -0.0113016012 0 15.43165045 8.172727956 877.2425973 0.002279871048 +2.498797677e-06 0.006191863189 -0.0007426592661 0 -9.037316996 11.74881852 955.6939546 0.002092720154 +2.499518438e-06 0.0009685178427 0.0009821867128 0 -7.914847317 4.583727669 931.910845 0.002146128045 +2.498056873e-06 0.004876130465 0.01338209191 0 11.56988746 -14.09192261 924.628726 0.002163030353 +2.497869816e-06 0.006502302191 -0.0143851125 0 21.47374927 2.265876749 1045.803006 0.001912406055 +2.495096277e-06 0.0004762594402 -0.01139544368 0 -9.422995225 -26.51339384 897.8362034 0.002227577806 +2.49917463e-06 0.005929188528 0.0008044222626 0 -12.87372034 2.313587457 1017.919333 0.001964792233 +2.498805412e-06 -0.004811022077 0.00320025458 0 11.77411284 -9.531996519 979.8932783 0.002041038595 +2.497729118e-06 0.007892280356 -0.01130783538 0 -15.52905257 14.82933804 1007.207072 0.001985688997 +2.497607426e-06 0.00708427751 0.008089252403 0 2.111361197 20.60201249 946.4000424 0.002113271249 +2.499360931e-06 -0.003385021654 -0.005830524685 0 -2.333145591 -11.83209489 1066.631704 0.00187506146 +2.497696945e-06 0.007006232617 0.002480626779 0 -19.45605573 2.664600166 914.6875457 0.002186539009 +2.497654249e-06 -0.002952399412 -0.01348879065 0 -21.90260906 -4.62388319 1033.130839 0.001935863227 +2.498246825e-06 0.006874555405 -0.01462430551 0 7.659135739 -14.78715171 889.0997799 0.002249466309 +2.494589464e-06 0.005292864437 0.002924137737 0 27.57057434 -21.44624193 1060.976583 0.001885055742 +2.498712351e-06 0.001826976226 0.01418892798 0 8.786921614 -11.0686763 880.4793336 0.002271489998 +2.497708853e-06 -0.0092096399 0.003138211761 0 10.34010359 18.34339225 983.345108 0.002033873951 +2.49694265e-06 0.004241688396 0.006499918015 0 1.436892058 23.92448233 968.8077038 0.002064393163 +2.498329119e-06 0.006156752543 0.01303826022 0 -12.34732159 -13.39461805 996.2970063 0.002007433514 +2.495782211e-06 -0.005576515505 -0.004096229821 0 -26.24852539 14.54761022 1032.613826 0.001936832483 +2.498569609e-06 -0.003360711113 -0.01168654609 0 2.485986797 15.03903607 901.0280581 0.002219686703 +2.497408684e-06 0.003827767451 -0.002949673443 0 -5.16757677 22.4240209 1010.428413 0.001979358433 +2.495144355e-06 0.005576209757 -0.014694748 0 -2.776136091 -30.21240594 972.8726603 0.002055767504 +2.499250511e-06 0.009724075547 0.01295778109 0 11.70860332 2.291871478 974.3687874 0.002052610907 +2.497226268e-06 -0.002730293698 -0.004641813815 0 -21.83367786 -3.935780619 941.5484962 0.002124160368 +2.49870324e-06 -0.001275448073 -0.009821269889 0 9.897540815 -11.26712573 931.0533603 0.002148104594 +2.49727945e-06 0.001730546383 0.01247066197 0 1.5194906 21.08786 906.016909 0.00220746432 +2.49800849e-06 -0.0004617877072 0.006958008951 0 -8.808082799 -17.07036386 962.1995227 0.002078570975 +2.495237739e-06 0.001282866439 -0.000693328036 0 24.44861012 18.05416943 984.080111 0.002032354864 +2.497968901e-06 -0.006447260212 -0.006745539245 0 12.39926183 -16.61171959 1028.170576 0.001945202524 +2.497628148e-06 0.006028799191 -0.006945483468 0 -22.09810823 2.124531474 1018.918914 0.001962864731 +2.497036726e-06 0.0008145545237 0.00794717496 0 -21.19722876 -14.63135804 1057.531724 0.001891196222 +2.499893725e-06 0.002676536259 -0.01127752992 0 -4.410351628 -0.9779183579 979.8461145 0.002041136838 +2.498213772e-06 0.005889848792 -0.0007486878103 0 17.62624661 -9.174598846 1051.043127 0.001902871489 +2.495934819e-06 0.0004385358561 0.005312820033 0 -12.02421942 22.28977102 887.6665252 0.002253098369 +2.498550761e-06 -0.000809048051 0.001013611257 0 -13.04827815 9.422289084 945.1519061 0.002116061965 +2.497876877e-06 -3.460696898e-06 0.008404079773 0 8.001943042 -20.19977829 1054.043814 0.001897454331 +2.496762664e-06 -0.003338710545 0.009462651021 0 -27.16149407 -0.04920647954 1066.926445 0.00187454347 +2.497034e-06 0.003617249094 -0.001678226504 0 5.332055008 22.33851181 942.5244164 0.002121960944 +2.499198636e-06 -0.009051651182 -0.0108048776 0 5.5932744 -12.07736621 1051.199894 0.001902587712 +2.49648423e-06 0.001160321017 -0.007565022153 0 -7.327709138 -22.0778433 876.7887585 0.002281051143 +2.499169752e-06 -0.009156129523 -0.01114748604 0 -3.655537391 -10.86939848 889.8177716 0.00224765122 +2.497839209e-06 0.005567703932 -0.01317309116 0 13.23578973 -16.27362284 1008.724382 0.00198270215 +2.499625093e-06 -0.001579283914 0.0002116605802 0 -8.26628956 -2.026008984 982.8257651 0.002034948687 +2.498705735e-06 -0.008018082092 0.002243572099 0 -4.486602821 13.38228728 877.1023216 0.00228023567 +2.499448755e-06 -0.007874459382 5.05227386e-05 0 -9.130777726 1.130753384 876.1718961 0.002282657101 +2.498748755e-06 0.00136019425 -0.01352304738 0 15.39539737 -0.5531339777 973.6508439 0.002054124446 +2.497303225e-06 -0.0003749779286 0.00588380639 0 9.677653547 -22.5807964 1057.409581 0.001891414676 +2.49630147e-06 -0.006212932384 -0.01496953973 0 -26.43660129 -10.22645879 1041.634466 0.001920059353 +2.49934614e-06 0.009868891067 0.00901121767 0 1.655836438 -10.2279877 905.9584315 0.002207606807 +2.496905451e-06 -0.002841540556 0.003024065362 0 -17.84346615 -18.75752727 1040.154555 0.001922791176 +2.498257784e-06 -0.009128584219 0.002699610572 0 15.75729406 -7.046768255 924.4674884 0.00216340761 +2.499146636e-06 -0.005466872421 -0.0003169355937 0 12.00315208 4.214068664 973.6370551 0.002054153536 +2.498939687e-06 -0.008186745895 -0.00417793771 0 -2.067693947 -13.15607454 914.3738631 0.002187289117 +2.494632508e-06 -0.00543717911 -0.002843436019 0 -17.98172893 -23.61234034 905.1257835 0.00220963764 +2.499395667e-06 -0.009465074791 0.002095225314 0 -2.648238999 -10.86774614 1017.355286 0.001965881563 +2.496887058e-06 0.006222969969 -0.01084158021 0 -19.50400371 15.23098569 991.3118503 0.00201752859 +2.499415583e-06 0.001659634588 0.00955308663 0 -4.142625535 8.833967954 902.4114241 0.002216283999 +2.496700948e-06 -0.009369625938 -0.008864696589 0 -25.1278126 -4.591015135 993.9405604 0.00201219276 +2.498893539e-06 0.008900265959 -0.006337204187 0 11.60339733 8.32417318 959.8120014 0.002083741396 +2.499231197e-06 0.003666712851 0.001221024517 0 -8.554449817 -7.08373651 895.5932207 0.002233156698 +2.496659459e-06 0.009068092289 0.01180863462 0 24.64288686 -4.343435761 967.5950419 0.002066980414 +2.496064937e-06 -0.001663944926 0.003481606019 0 -15.815591 20.24211103 915.132123 0.002185476774 +2.495519731e-06 0.004446247513 -0.01115595538 0 24.87506431 18.93646734 1043.681146 0.001916294079 +2.497992524e-06 -0.006549880477 0.010938633 0 17.9424995 -9.27673721 1007.753707 0.001984611902 +2.49675032e-06 -0.001404468981 0.00603925396 0 11.19771392 24.37108972 1051.525128 0.001901999245 +2.498039343e-06 0.007627432016 0.01268302082 0 3.1598052 20.62218482 1053.247127 0.001898889585 +2.499361558e-06 0.006525033307 0.004127882284 0 1.932463849 11.23217485 1008.511565 0.001983120541 +2.498296903e-06 -0.005970983622 0.005217625669 0 -16.01727569 -8.221466829 975.2691013 0.002050716051 +2.498793181e-06 0.003306270288 -0.0007862794027 0 6.588258927 -12.99557288 937.6702182 0.002132946063 +2.49799548e-06 -0.0004200450331 -0.01247486131 0 19.70382541 1.27139148 985.8296933 0.002028747981 +2.499788216e-06 -0.007583172107 -0.005414964866 0 -6.226840464 -1.601065516 987.8571887 0.002024584143 +2.498843094e-06 0.001617791113 0.01337106752 0 -13.24356615 8.317072912 1027.917979 0.001945680532 +2.497072693e-06 -0.009642011141 -0.01175360533 0 -2.326669435 -23.47355627 974.4552702 0.002052428738 +2.498323552e-06 -0.005008969731 0.01108850007 0 6.097173156 -18.10600184 1043.107025 0.001917348798 +2.499173785e-06 0.00640119921 0.007940975404 0 -7.326733254 -11.02412714 1029.5966 0.001942508358 +2.497749192e-06 -0.009646485746 -0.01149289283 0 18.30811396 -11.07303481 1008.106821 0.001983916742 +2.494519854e-06 -0.00261822673 0.01167059154 0 -23.23009923 26.69967901 1068.125397 0.001872439327 +2.498479473e-06 0.003585916194 -0.005014167982 0 -16.59668088 0.358353972 951.7246222 0.002101448206 +2.495859976e-06 0.005603601527 0.0005585810286 0 27.0827853 14.34264473 1064.363858 0.001879056664 +2.49839705e-06 -0.002839544518 -0.01354328839 0 -11.36756535 -13.68529196 993.3753958 0.002013337564 +2.49955238e-06 -0.005464806529 0.008618155983 0 -9.092815443 2.470603508 995.7868907 0.002008461869 +2.498566527e-06 0.0008817104669 -0.01200803543 0 -13.15160728 -11.89856047 1047.213352 0.0019098305 +2.497540784e-06 0.009722668817 -0.003011918021 0 -16.70624831 -10.41154417 887.2819604 0.002254074904 +2.499039253e-06 -0.0008177304734 0.01364530146 0 -11.82874472 -4.398610618 910.2919888 0.002197097222 +2.496810296e-06 0.006009034696 0.01049970243 0 -19.20162758 -14.68509436 956.6213464 0.002090691377 +2.495566988e-06 0.002813897887 0.002647374258 0 15.57476054 21.70981754 896.7306128 0.002230324215 +2.499255922e-06 0.009014464705 0.007012495415 0 -8.617834942 -8.152141161 972.3262078 0.002056922856 +2.498819049e-06 -0.005075686811 -1.295877155e-05 0 -11.5817583 -10.92544812 1035.817528 0.001930842013 +2.498920162e-06 0.008961631567 -0.002511835524 0 11.83008264 -5.858656716 898.1574519 0.002226781057 +2.498171106e-06 -0.006536287265 -0.0141161855 0 16.44535618 -5.302877177 903.2226283 0.002214293506 +2.499778924e-06 -0.0002181815309 0.003326317775 0 6.28362598 -0.7519503331 951.6958023 0.002101511844 +2.495749003e-06 0.009181283261 -0.00429844714 0 -17.6028832 22.08111214 967.8558297 0.002066423468 +2.4959883e-06 0.002239536825 -0.002388198485 0 17.47654749 -18.20256743 890.3242606 0.002246372573 +2.498324698e-06 -0.001076494525 0.008923158715 0 14.59328896 -12.06598227 1034.20206 0.001933858069 +2.497960357e-06 -0.00468598403 0.008795590368 0 -15.67180533 -9.860769592 916.4756514 0.002182272924 +2.496764048e-06 -0.0079831377 0.0002700617979 0 16.4297476 -21.31686083 1057.415828 0.001891403502 +2.496293027e-06 -0.005276344935 -0.0008753497247 0 -26.84376037 -9.190886842 1041.472291 0.00192035834 +2.499121382e-06 -0.002396246968 0.003307267623 0 9.566279129 -7.604454628 921.7600268 0.002169762131 +2.497986658e-06 0.009475269467 0.01223866979 0 12.38651228 -16.134551 1013.360022 0.00197363223 +2.498632057e-06 0.006279982678 -0.005772342996 0 -4.139889109 -16.17009002 1008.929091 0.001982299865 +2.49733441e-06 -0.003426205181 -0.002687236054 0 -12.80926844 -16.65323888 909.5666984 0.002198849192 +2.497634644e-06 0.00945071165 -0.004388641 0 20.84448874 -7.787778854 1022.69827 0.001955611012 +2.497581053e-06 -0.003116631308 0.0076457984 0 -1.020564725 23.23770016 1057.123554 0.001891926438 +2.499433251e-06 -0.0054367295 0.00831533036 0 3.139584833 10.47419277 1026.96616 0.001947483839 +2.496659413e-06 0.006933054589 -0.001466452014 0 22.41486117 -15.10341376 1045.147498 0.0019136055 +2.496015223e-06 -0.004315536418 0.009512750446 0 0.8418941091 26.85604101 951.2145495 0.002102575072 +2.496958592e-06 -0.009983744305 0.0116633334 0 -21.53373757 9.491272589 953.7189824 0.002097053783 +2.498611724e-06 -0.00941094181 -0.006514364707 0 -7.034078071 -14.97108675 992.4851648 0.002015143471 +2.494890129e-06 0.005499076629 -0.00836014475 0 -13.83034931 -29.25880445 1011.565572 0.001977133322 +2.499621932e-06 0.001056888392 0.004237039327 0 -9.139323028 -0.31860713 1051.606425 0.001901852207 +2.496810428e-06 -0.00100292725 -0.004442394404 0 -12.67783148 22.87841437 1035.109629 0.001932162492 +2.499526964e-06 0.004702086556 0.0115099583 0 -8.705185017 -1.922843155 916.493282 0.002182230944 +2.496849177e-06 0.005683567999 -0.009712786982 0 23.49252929 7.656876906 983.8297005 0.002032872152 +2.496601848e-06 -0.004480310595 0.0077719811 0 17.69189884 20.03977453 1024.878426 0.001951450971 +2.495702654e-06 -0.001293777027 0.01291236926 0 -14.292826 21.47218918 879.2784268 0.002274592369 +2.496033095e-06 0.008488794803 -0.001061091428 0 17.61189831 23.70836235 1047.912046 0.001908557124 +2.499742743e-06 0.006331669143 -0.002368159513 0 0.433722981 -6.701260966 936.1576437 0.00213639232 +2.497227693e-06 0.005084867431 -0.008485457841 0 -8.195734432 -20.62510839 942.1400802 0.002122826575 +2.499130053e-06 0.004260412436 -0.01016474135 0 10.66673661 5.560016296 911.812885 0.002193432483 +2.497353486e-06 -0.003508059243 -0.0002636138862 0 7.315165228 18.94148588 882.2215456 0.002267004258 +2.496078114e-06 0.004705340574 -0.009772909801 0 13.20959846 -26.58122919 1059.213248 0.001888193906 +2.499257083e-06 0.0006545708003 -0.01426527844 0 -2.024987864 -10.90687962 909.9674982 0.002197880698 +2.495349291e-06 -0.003098102272 0.003071499208 0 -22.94133588 -20.07141995 998.7781754 0.002002446639 +2.499477397e-06 0.005539945867 0.01310262936 0 5.909784502 -7.305448005 919.0378266 0.00217618899 +2.498972757e-06 -0.007332115741 -0.0005080523947 0 6.344872643 12.89488496 1002.487004 0.001995038332 +2.499538582e-06 0.004978841222 -0.01281834537 0 3.279710349 -8.006092654 900.5657712 0.002220826134 +2.497412215e-06 0.00336959918 0.00108046232 0 -12.94470769 -19.83872451 1040.849758 0.001921506908 +2.499046519e-06 0.002443550164 -0.003578012546 0 1.230959816 13.95417825 1014.272084 0.001971857485 +2.497229684e-06 0.006993939588 -0.001313747372 0 -17.14371658 -17.04755405 1026.695628 0.001947996996 +2.495112659e-06 -0.006065292517 0.008973607176 0 -21.53178536 19.66333219 931.9809086 0.002145966705 +2.495800987e-06 -0.00665206817 0.0114236412 0 -12.16201818 28.39700072 1065.322487 0.001877365796 +2.496592118e-06 0.001046436653 0.004485106627 0 11.05443995 21.34154693 920.1478275 0.002173563791 +2.494602357e-06 -0.003801575038 0.004107433066 0 -16.78129316 23.42730924 876.3706921 0.002282139302 +2.49766358e-06 0.006026579388 0.009069866971 0 -12.07461221 17.1644189 970.4822191 0.002060831163 +2.495342578e-06 0.005038108267 0.003286218052 0 26.08015315 14.54444511 977.7360528 0.002045541835 +2.499255293e-06 0.006900677457 0.01471470698 0 -11.40341746 -0.5652466906 935.4304925 0.002138053031 +2.497628147e-06 0.005455352133 -0.006823730876 0 -15.9577327 -11.86695304 912.7364156 0.00219121311 +2.496843513e-06 -0.003335041306 -0.005495134809 0 -24.9042853 -6.866116833 1027.684099 0.001946123329 +2.497552629e-06 -0.001913704625 -0.004790117266 0 -17.7855973 -9.30932295 907.0332537 0.002204990822 +2.496676757e-06 0.002640375751 0.002463537741 0 13.66986159 -19.33472679 918.0183862 0.002178605603 +2.498706576e-06 0.00918708656 -0.005467785064 0 15.59593879 6.023678322 1039.286379 0.001924397394 +2.497935322e-06 0.007665025871 -0.003972167715 0 3.247121203 21.33703997 1061.76916 0.001883648609 +2.498437148e-06 0.007560567083 -0.000195213086 0 8.431018276 14.00684854 924.4907169 0.002163353253 +2.497541306e-06 -0.006081788032 -0.01447842382 0 -21.10375331 2.810862191 959.7336118 0.002083911593 +2.498751564e-06 -0.000160675142 0.001758760598 0 -15.51852113 -1.604810186 987.1444486 0.002026045938 +2.499419785e-06 -0.009949383638 -0.01253011547 0 -10.12113859 3.535517539 995.1375334 0.002009772451 +2.499689723e-06 0.002870043274 -0.002592387234 0 -7.92120991 -2.517886988 1055.073539 0.001895602464 +2.499951208e-06 0.001219924996 -0.00708395056 0 2.632357858 -1.332026857 944.3996846 0.002117747425 +2.494173243e-06 -0.004858692475 0.009318710316 0 -22.21598624 27.92135248 1044.315446 0.001915130154 +2.499395476e-06 -0.007648487152 0.0007965996419 0 -10.70622276 -2.603354052 1001.957589 0.001996092471 +2.499475843e-06 -0.001329302792 0.01347932587 0 -1.870867183 -10.35982885 1028.114279 0.001945309039 +2.496350363e-06 -0.004090618631 -0.001650187208 0 -20.10628267 -16.30680369 957.6706562 0.002088400628 +2.495827117e-06 0.0008854767494 0.006669416707 0 22.37070852 17.7787235 988.5105952 0.002023245891 +2.492704124e-06 0.008054124061 -0.0130737367 0 24.57141415 -32.60403908 1067.601592 0.001873358015 +2.498411926e-06 -0.005268614679 0.00560376755 0 14.18858665 -9.432554215 955.7879462 0.002092514357 +2.495993825e-06 0.007754917592 -0.01112292278 0 -14.79389906 -25.01984668 1026.240661 0.001948860609 +2.496837408e-06 0.003752002153 -0.00997742756 0 24.84655027 7.069537673 1026.661801 0.00194806118 +2.49666296e-06 -0.007984869438 -0.004729810422 0 -14.36477473 19.25459908 929.4096665 0.002151903592 +2.49886104e-06 -0.009602399268 -0.009242646962 0 8.155107838 -11.1302092 914.0617479 0.002188035988 +2.496740629e-06 -0.00732221398 -0.01024316667 0 -22.45127993 -13.83983746 1032.489785 0.001937065168 +2.497448482e-06 0.002577940654 -0.001258531983 0 -2.971633509 21.02733448 939.7183728 0.002128297219 +2.499826115e-06 0.005376334684 0.005025851943 0 3.916579317 -4.681710197 1035.027512 0.001932315786 +2.498768738e-06 0.008506445163 -0.002991607008 0 -13.24828486 -5.778579707 920.8907613 0.002171810256 +2.495882145e-06 -0.0009616063721 0.006541897624 0 23.4806982 -14.62460832 963.329415 0.002076133012 +2.49983697e-06 0.005507789943 -0.01205607927 0 5.326598323 -1.005637376 949.2835196 0.002106852125 +2.498916591e-06 -0.00815727022 0.01197116606 0 10.07294566 -9.340419885 933.0674855 0.002143467682 +2.495981448e-06 -0.004190060808 0.004893142772 0 -18.96679342 23.140882 1054.770315 0.001896147409 +2.49718117e-06 0.009114140193 0.005108309188 0 20.54607953 -10.61421569 973.5623305 0.0020543112 +2.499900258e-06 -0.005942756967 0.001833345601 0 -3.588732927 2.137040813 935.1623345 0.002138666118 +2.496386035e-06 -0.008509558537 -0.002266396999 0 -23.71175762 -3.367949315 890.3452546 0.002246319604 +2.499196386e-06 -0.007629408608 0.0133014267 0 -0.4870170544 -12.23123228 965.4351597 0.002071604685 +2.499195663e-06 0.006901499927 0.01068329499 0 -11.40477819 0.9656593688 902.301235 0.002216554652 +2.496300621e-06 0.001918174969 0.01314690812 0 3.245698791 27.10768637 1003.142964 0.001993733767 +2.49964917e-06 0.00096491748 -0.01216749599 0 3.570391423 -6.424190919 877.3704257 0.002279538883 +2.498896823e-06 0.004423330184 -0.01308204351 0 -0.7330273446 -13.66563221 921.1794118 0.002171129722 +2.497021603e-06 -0.002059923145 -0.006680643044 0 3.504583842 -22.81728643 945.4243892 0.00211545209 +2.499041242e-06 -0.009751148894 0.01004177534 0 -4.942373103 -11.43538069 899.5119793 0.002223427865 +2.49705878e-06 -0.007070106803 -0.001233987228 0 -22.97471318 5.871058737 977.2737041 0.002046509582 +2.492564847e-06 0.008030589125 -0.009577809479 0 22.3626661 -26.83342604 904.808313 0.002210412936 +2.499096119e-06 -0.007209254508 0.005587461556 0 -2.591829868 13.78626056 1043.180271 0.001917214173 +2.499495906e-06 -0.001038790536 0.004700372682 0 7.320195533 -7.516738261 1044.873692 0.001914106954 +2.493567562e-06 0.004214791949 0.007108368063 0 22.88301192 24.54022555 934.585147 0.00213998693 +2.499326892e-06 -0.004118315531 0.004029160501 0 9.075374588 7.265386508 1001.852649 0.001996301554 +2.497833232e-06 0.004058094174 0.01435070613 0 -18.10280752 -12.50006207 1056.437484 0.001893155089 +2.497445515e-06 -0.001117457789 0.008531991919 0 -18.95902252 14.52995277 1056.377326 0.0018932629 +2.499046444e-06 -0.002304351139 0.01122282776 0 13.57257441 -4.800725945 1042.339783 0.001918760114 +2.49483937e-06 0.004110231064 0.01116409642 0 16.56720208 25.90738798 956.4577683 0.002091048937 +2.49506025e-06 0.001422165181 0.01116836797 0 21.47219336 22.69523049 993.2622417 0.002013566927 +2.49894197e-06 -0.007117759888 -0.01285255424 0 2.88565387 13.9803114 981.1686214 0.002038385611 +2.496202321e-06 0.00297498208 0.002747201964 0 23.21438416 16.52910984 1033.446923 0.001935271136 +2.49849712e-06 -0.002766971099 -0.01272607495 0 -11.0851628 -11.73408258 930.8650267 0.0021485392 +2.495826798e-06 0.007474043216 -0.01428200666 0 27.07125583 -10.35632511 1002.640777 0.001994732356 +2.49746744e-06 -0.006854897528 0.01129118907 0 -17.50872912 14.88986143 1020.858085 0.001959136172 +2.498284542e-06 0.005531739304 -0.00358753091 0 -18.13272274 -4.131540672 1003.775502 0.001992477398 +2.498905529e-06 0.008117839536 0.001746455231 0 13.44589938 -1.098414278 911.6871089 0.002193735088 +2.495847731e-06 -0.005643119803 0.008682033231 0 6.147198816 25.88575244 922.6676539 0.002167627738 +2.499391393e-06 0.001892332253 -0.01176829975 0 8.6971957 -5.863173022 950.6242162 0.002103880762 +2.499402137e-06 -0.003084184472 0.000221098708 0 0.2865188486 11.60852405 1061.829056 0.001883542354 +2.496868956e-06 0.00364943597 -0.002747832465 0 2.394536057 -24.86311322 997.6924466 0.002004625781 +2.498264191e-06 0.003133324995 0.00126309931 0 -5.816488548 -15.65975335 896.3326547 0.002231314445 +2.497512943e-06 -0.0004886112316 -0.008484317721 0 21.88632796 -3.998820301 997.202737 0.002005610219 +2.49903626e-06 -0.008658765345 -0.002571476048 0 -8.197556711 -11.53000607 1018.849843 0.0019629978 +2.498715227e-06 0.00715060967 -0.01058086031 0 -6.805959853 13.64812968 951.2309496 0.002102538822 +2.495639827e-06 -0.006702056392 0.0148374065 0 17.09166282 23.21005287 975.4508066 0.002050334047 +2.495904018e-06 0.002946358463 -0.01402032245 0 3.87492704 -30.25898046 1065.185771 0.001877606757 +2.49660914e-06 -0.003713514572 0.004218374561 0 -13.6216544 21.70453944 983.4936382 0.002033566789 +2.496626796e-06 -0.008123026481 -0.004080922154 0 -5.572182073 -24.48846456 966.4224194 0.002069488414 +2.499057664e-06 0.007177186268 0.002121857295 0 -12.6853781 6.067657634 1024.148069 0.001952842622 +2.496764064e-06 -0.008569094832 -0.00111031896 0 3.670849813 -24.11452117 958.3568329 0.002086905348 +2.498065129e-06 0.008116940688 -0.01196907423 0 4.392042124 -16.71553954 878.314367 0.002277089019 +2.495118948e-06 -0.001795113538 -0.01372363939 0 -16.95644009 -28.07927735 1049.082 0.001906428668 +2.497726185e-06 -0.0007207786851 -0.007517413173 0 11.91685461 18.68004611 1038.676573 0.001925527206 +2.499321178e-06 -0.001002883739 0.004646817078 0 11.99324632 -1.021500041 1032.925714 0.001936247662 +2.498704576e-06 -0.006034614313 -0.002141266228 0 -16.44260351 1.019035353 1023.287378 0.001954485165 +2.4959782e-06 0.007055131653 -0.006945716548 0 -17.08267854 -22.3838548 992.2233226 0.002015675256 +2.495966223e-06 0.0065231355 -0.01082801518 0 25.7985718 -2.812447499 913.1186743 0.002190295803 +2.497107116e-06 -0.008817119785 0.006118007214 0 -18.48687577 -13.06860594 940.8065402 0.002125835562 +2.499195288e-06 0.006181603088 0.01418419218 0 -10.90171399 -5.711147121 969.9915332 0.002061873668 +2.498479499e-06 0.009820342744 0.003578306793 0 4.803807315 14.7437305 889.0142566 0.002249682708 +2.498213051e-06 -0.006262921821 -0.004498096816 0 -14.16642538 12.795518 1009.506981 0.001981165101 +2.497058744e-06 0.008034182037 -0.01122028389 0 -9.241725684 -24.09550238 1063.567055 0.001880464416 +2.496953569e-06 -0.005541110947 -0.006702862973 0 -24.79223961 2.882947668 1010.701995 0.00197882265 +2.49913681e-06 0.007209474756 0.008171579589 0 -14.05361459 0.8181799192 1071.268622 0.001866945376 +2.499889098e-06 0.001852373225 0.0009347470268 0 -4.511765881 0.917705457 977.5936265 0.002045839852 +2.498381296e-06 -0.004169009509 -0.006586802308 0 -1.954004858 -15.88113285 889.07815 0.002249521035 +2.495263581e-06 -0.002580545368 -0.0137673938 0 0.1901769116 -32.15683865 1044.075896 0.001915569556 +2.494710915e-06 -0.009963800488 0.01204056366 0 -14.26422692 25.16058898 888.5643641 0.002250821753 +2.499343447e-06 -0.005671478566 0.007490138663 0 6.203020238 8.011212238 884.1004759 0.002262186318 +2.495304178e-06 -0.002374474825 0.008224567836 0 -16.13341642 25.40030403 981.2016852 0.002038316923 +2.497675849e-06 -0.0006793600135 -0.01300794759 0 -17.52462209 9.774621912 930.3969689 0.002149620073 +2.497801345e-06 0.004530385444 -0.0001684336248 0 -2.49519069 -18.67963974 898.4049041 0.002226167723 +2.499411335e-06 0.002763056178 0.003866251786 0 -10.59222103 0.1269129878 976.1818224 0.00204879865 +2.498758701e-06 -0.008921088655 0.00664539149 0 4.168432227 14.4145369 952.1521716 0.002100504583 +2.495272648e-06 -0.00841304956 0.01016629942 0 -16.8465637 26.37243672 1017.017406 0.001966534682 +2.497736989e-06 -0.00557757102 0.008311825481 0 -15.86404421 -14.87945136 1022.009652 0.001956928681 +2.498264516e-06 0.006671951031 -0.01245574876 0 16.75277349 9.759794742 1040.406206 0.001922326097 +2.497051578e-06 0.005449872431 0.004108040272 0 -20.2389959 -14.78223216 1031.628353 0.00193868266 +2.498631192e-06 -0.00798072347 0.01420740388 0 9.389578048 -12.3323699 936.6075956 0.002135365984 +2.495131714e-06 0.0001129652094 0.007296003951 0 -20.26554641 -18.74100055 883.961815 0.002262541171 +2.497786853e-06 0.007579609416 -0.01222793107 0 -14.55054152 -12.31361741 905.7207752 0.002208186071 +2.499103538e-06 -0.004688234264 -0.002533289983 0 -11.52871411 4.925353615 936.151305 0.002136406785 +2.498812896e-06 0.00932861363 0.007164377379 0 -9.402511884 12.42061383 1010.832538 0.001978567097 +2.499202639e-06 0.007968923566 -0.002543542364 0 -9.062631606 9.468851496 1037.779276 0.001927192079 +2.49772232e-06 0.009497774616 -0.00495283043 0 17.35019278 -14.1981581 1050.047023 0.001904676606 +2.494553772e-06 0.008638602812 -0.01014716849 0 19.67376429 -22.30779491 900.4895408 0.002221014137 +2.496952858e-06 0.003402799065 0.004721916185 0 20.6973155 -13.84238738 1008.167306 0.001983797717 +2.496488983e-06 -0.006840094053 0.005690288425 0 -27.94034462 4.45810171 1067.162449 0.001874128912 +2.498729818e-06 -0.0001061127195 -0.007801423233 0 -8.873628244 -10.77741155 875.7261817 0.002283818894 +2.499774333e-06 0.008847491131 -0.003300171546 0 -4.076921326 -4.838059395 941.7139303 0.002123787209 +2.498036654e-06 0.005704479003 -0.008975565147 0 -18.69057729 -5.357505756 980.9068673 0.002038929553 +2.494661639e-06 -0.003519729781 -0.01363478233 0 9.952128002 -29.83880011 961.8749572 0.002079272347 +2.496110363e-06 -0.004001501012 0.001088995307 0 19.40097414 -17.79141591 943.240147 0.0021203508 +2.497917597e-06 -0.005298478948 0.002227647593 0 8.668132139 -15.76085909 881.113115 0.002269856124 +2.499561155e-06 0.002358616036 -0.006563456794 0 -8.524924127 0.5104927517 911.5251774 0.002194124803 +2.49689863e-06 0.004046292845 0.001516322619 0 19.91217112 11.6786153 926.4514372 0.002158774783 +2.496834538e-06 0.009156410699 -0.01194573018 0 -11.45308613 -21.07038554 952.6749985 0.002099351828 +2.498813123e-06 -0.00202923534 0.01283651242 0 9.544564893 12.21904007 1006.179257 0.001987717384 +2.494631128e-06 -0.007746059732 -0.01323789346 0 -21.85418406 -24.31504545 996.8895697 0.002006240271 +2.498910009e-06 -0.008528965558 -0.005832188458 0 0.4528248272 13.72208117 929.7344042 0.002151151975 +2.499910176e-06 0.003589966344 0.007879059843 0 3.536145992 2.39743328 1007.949189 0.001984227005 +2.497350369e-06 0.008889251752 0.01386527906 0 -6.621732077 21.27676561 967.6098703 0.002066948738 +2.497126703e-06 0.004374989262 0.006001025392 0 17.49478343 14.74920577 954.1353174 0.002096138738 +2.495984013e-06 0.007560801087 -0.006133875714 0 -10.17232751 -27.66207748 1039.330387 0.00192431591 +2.495982168e-06 -0.009273160235 -0.0008439404075 0 -26.18256301 -1.443365738 924.4815782 0.002163374638 +2.495879176e-06 0.0005116439564 -0.001873519951 0 -15.96806541 -25.3206401 1042.091658 0.001919216975 +2.49771074e-06 -0.001776301884 0.007476244534 0 14.47808266 -14.63159777 961.6493736 0.002079760103 +2.496808493e-06 -0.006239539166 -0.004966661897 0 -12.60758924 22.2826807 1012.873502 0.001974580237 +2.498158934e-06 -0.005373509866 0.003320576088 0 16.09379667 10.55962036 1002.844926 0.001994326289 +2.497153949e-06 0.001627590964 -0.005693364353 0 21.29441733 -3.63273983 905.0516236 0.002209818697 +2.494728478e-06 -0.0002500022529 -0.005299395989 0 -18.43302594 -23.97620677 930.6730324 0.002148982436 +2.498940358e-06 -0.006206823452 0.01373775568 0 14.58186278 -4.981238661 1058.318866 0.001889789614 +2.496239315e-06 -0.007409121054 0.01040609918 0 -22.61605925 9.555281006 894.7242332 0.002235325618 +2.497354189e-06 0.003507632059 0.0008128038305 0 7.091833566 -20.03213518 923.4231886 0.002165854209 +2.497946253e-06 0.00481691672 5.628459854e-05 0 -12.17444269 -13.93268573 912.6504556 0.002191419495 +2.497679624e-06 0.002364307838 0.01330565095 0 7.828561526 17.74693239 900.0924042 0.002221994087 +2.499266444e-06 -0.003436498144 0.0006669163727 0 1.244232506 -10.85431004 901.8982672 0.002217545008 +2.498071777e-06 0.009085176117 -0.01491668643 0 11.30452779 15.67204605 983.7189598 0.002033100999 +2.498724674e-06 -0.007739611454 0.00577129449 0 -8.154119435 14.38179455 1034.979041 0.001932406282 +2.49827791e-06 -0.0007867869874 -0.009051301461 0 -10.20510971 -13.82041582 925.4754882 0.002161051293 +2.49626975e-06 -0.006861786391 0.002433189852 0 -11.90582582 -20.98776586 882.9214042 0.002265207289 +2.498668143e-06 -0.008027914562 -0.01160712319 0 4.21311504 -16.35103322 1034.363082 0.001933557021 +2.497073603e-06 0.003224298055 0.003141277651 0 11.45099782 19.43962486 932.1738053 0.002145522636 +2.497875635e-06 0.007215093542 0.005113477476 0 14.24688513 -12.8250344 929.6816493 0.002151274043 +2.499380296e-06 -0.006016399525 0.002070992491 0 -0.9063344649 9.829659909 886.6029699 0.002255801151 +2.494802154e-06 0.009079776341 0.00633752286 0 21.68379962 -19.86269837 911.3193652 0.002194620324 +2.495832793e-06 -0.002557612308 -0.004704134585 0 -17.44204113 -23.17503974 1004.079557 0.001991874037 +2.49517322e-06 0.002949440475 0.009985269131 0 -20.77020945 22.44292411 983.4842947 0.002033586109 +2.497828818e-06 -0.004809742067 -0.002832497035 0 -2.76741522 20.68495274 1001.157368 0.00199768794 +2.495011059e-06 -0.006480968492 -0.003558717384 0 17.55055508 -23.76781532 934.6423841 0.002139855879 +2.497484335e-06 -0.001207800545 -0.003631741223 0 -7.159544081 -19.39712167 921.438703 0.00217051877 +2.498548625e-06 -0.003739847327 0.003905952538 0 0.6549260029 -15.97424264 938.1786827 0.00213179007 +2.495516431e-06 0.009265884077 0.01360673195 0 28.2530306 12.94147491 1037.063512 0.001928522194 +2.498490339e-06 0.003335307678 0.01190896797 0 13.15144595 12.80271873 1056.034495 0.001893877529 +2.495560402e-06 0.007784441742 -0.00715577624 0 15.82135564 -25.80808416 1015.219067 0.001970018161 +2.498142708e-06 0.0003106781188 -0.00773682107 0 10.69919666 -15.41213485 973.193878 0.002055088965 +2.499291734e-06 -0.002396564567 0.009168902286 0 9.805198423 4.471355513 905.361552 0.00220906222 +2.499304535e-06 -0.008607117976 0.00784935463 0 -10.66211422 -2.792915841 934.4503153 0.002140295709 +2.497767826e-06 0.00853827456 -0.006112134727 0 12.51629596 -17.66237477 1024.199533 0.001952744495 +2.495615569e-06 0.008208441525 -0.007944126832 0 24.61907451 13.79258617 952.33607 0.00210009897 +2.495059127e-06 0.00218873329 -0.005468069972 0 14.55958531 -24.78298861 913.6877494 0.002188931614 +2.497099229e-06 -0.008585664532 -0.003507470086 0 5.064362527 -23.04699533 979.2495825 0.002042380243 +2.498780062e-06 0.001970912595 -0.0109832199 0 10.46074716 9.575649071 907.7464363 0.002203258443 +2.497815165e-06 0.003301769565 0.009464787673 0 12.51636167 18.24097518 1057.942159 0.001890462521 +2.498446934e-06 -0.00281823216 0.005163135161 0 -5.019644393 -17.81831736 1050.120306 0.001904543687 +2.49875087e-06 0.004390909462 -0.002358448058 0 -13.05387849 4.658281031 876.7326638 0.002281197088 +2.497197868e-06 -0.006399942138 -0.006218085496 0 -4.007085777 -22.70651953 973.5718179 0.002054291181 +2.499073828e-06 -0.007006338993 -0.002389931409 0 -11.05266348 6.170175696 929.9382975 0.002150680325 +2.498055781e-06 0.005592176849 0.0110825729 0 -12.30428054 -15.35479143 997.5478689 0.002004916318 +2.499021779e-06 -0.005528727784 -0.002650260343 0 13.16944889 0.3034890212 941.641623 0.002123950292 +2.497765187e-06 -0.004184454638 0.00366543968 0 -16.34264367 10.07908997 907.8994056 0.002202887223 +2.497798986e-06 -0.001112425933 -0.009762375948 0 21.74685951 4.331619618 1056.514235 0.00189301756 +2.49942098e-06 -0.009202612857 -0.0117226471 0 -8.984404829 3.090800447 882.8327976 0.002265434639 +2.499781781e-06 -0.001177101596 0.003571631026 0 6.60646841 -1.819893833 1037.23339 0.001928206341 +2.497658563e-06 -0.007880177405 -0.0008393782005 0 -2.779631688 21.67471849 1009.454668 0.001981267771 +2.496982306e-06 -0.005768298376 0.002060542109 0 -3.806366326 22.93692988 945.9870853 0.002114193768 +2.497542691e-06 -0.007066600462 -0.003242747791 0 -22.22753091 -1.654029153 1005.044613 0.001989961414 +2.498972373e-06 -0.001673275419 0.007372740477 0 -11.60667899 9.113101455 1029.183967 0.001943287172 +2.498896381e-06 -0.004610433718 -0.005074821955 0 14.15326241 -1.250300292 956.1987175 0.002091615439 +2.492653257e-06 0.00930615305 0.01152172526 0 29.4880774 26.34085602 1030.366289 0.001941057293 +2.497965045e-06 0.003603890766 -0.00215919245 0 2.221311677 -21.21754123 1057.151188 0.001891876983 +2.493244766e-06 0.007981008021 0.004822030538 0 23.04467985 22.54651283 876.2258922 0.002282516435 +2.499159815e-06 -0.006171834278 0.0008392947796 0 10.91964435 8.315104351 1058.668082 0.001889166241 +2.499067602e-06 0.002290167436 -0.006195256168 0 9.630532153 -7.443613147 891.2119292 0.002244135131 +2.498150807e-06 -0.003337187553 -0.01273328544 0 18.43391454 -8.00296761 1044.688916 0.001914445506 +2.499241932e-06 -0.0008099965937 0.005569915229 0 -8.643177109 6.521102463 879.2242501 0.002274732527 +2.495367931e-06 0.0005688512931 -0.007353460465 0 -16.34885397 -23.99875251 953.3827118 0.002097793441 +2.494997253e-06 0.002498212885 -0.01363114989 0 20.58592417 -25.14233494 1026.524866 0.001948321046 +2.499848849e-06 -0.006008000732 -0.01325412834 0 4.165527112 -3.305574018 967.1572198 0.002067916114 +2.495495743e-06 0.0005049186014 -0.01174306049 0 -20.45665045 -20.03420755 953.3346821 0.00209789913 +2.492189808e-06 0.003585851779 -0.0121939937 0 23.70281556 -26.73402212 902.9430696 0.002214979069 +2.494036882e-06 0.007263089595 -0.0139495907 0 -17.10482741 -26.47213851 911.8227249 0.002193408812 +2.49866242e-06 -0.004771984462 -0.004516092686 0 13.21257053 11.14211696 1056.499511 0.001893043942 +2.497738818e-06 0.005323055862 -0.007610733965 0 5.362603196 -19.53190331 952.1286818 0.002100556404 +2.498934683e-06 -0.008008131264 -0.008259968909 0 10.1571708 -8.531133199 908.5917494 0.00220120863 +2.498379575e-06 0.001107139126 0.009629020735 0 -17.65128369 4.882479141 1017.069355 0.001966434237 +2.496649212e-06 0.007719168514 -0.009762729127 0 -18.01100778 -14.36426086 889.4657825 0.002248540685 +2.49668439e-06 0.009674933408 0.001648405048 0 23.28941387 -4.710961584 922.2607453 0.002168584113 +2.497379426e-06 -0.00333823483 0.004602612806 0 10.43339634 -18.96073558 944.9489711 0.002116516406 +2.49594166e-06 0.00931807803 -0.01425520734 0 -20.10795455 -20.86140103 1016.397925 0.001967733258 +2.495025659e-06 -0.00697371935 0.004776477709 0 -22.93933082 20.36191035 971.7313237 0.002058182083 +2.494838059e-06 -0.00522929457 -0.008063278834 0 -14.66484922 -26.54781452 943.1897131 0.002120464178 +2.498803509e-06 0.004317455729 0.008726158594 0 -0.4200048959 14.69262981 950.0122632 0.002105235982 +2.499661308e-06 0.001166231991 -0.01384105955 0 -5.936673248 -6.503633792 1069.86014 0.001869403228 +2.499809446e-06 0.005836100867 0.007325768941 0 5.730813284 -0.7244517507 935.6685267 0.00213750911 +2.498462153e-06 -0.009346337975 0.01121051914 0 8.097927864 -15.10932001 977.2471263 0.002046565241 +2.496363357e-06 -0.004662362551 -0.01007035034 0 -18.7859932 -15.91051243 912.3357661 0.002192175375 +2.498076454e-06 -0.003013061718 -0.009034066619 0 -4.289522714 19.73670371 1029.449846 0.001942785273 +2.494037066e-06 -0.006674236702 -0.000947821294 0 -25.02600908 22.13532877 966.6104809 0.002069085779 +2.499244757e-06 0.00527050552 -0.01132024339 0 -0.6321499374 -12.22742558 996.1092759 0.002007811842 +2.499707064e-06 -0.004595612399 -0.0105717327 0 7.056050637 3.916221252 1054.270411 0.001897046506 +2.499632824e-06 0.00695426885 -0.002057851679 0 8.327026189 -3.180589848 1040.126692 0.001922842683 +2.496243211e-06 -0.008318862696 0.01342957264 0 -23.00849251 -9.085855829 901.9601436 0.002217392879 +2.498793953e-06 -0.007572828005 0.01408131188 0 -13.15628283 -6.023735118 931.5041077 0.002147065143 +2.499234478e-06 0.001392499548 0.003880211916 0 10.40017039 -4.155826683 905.0333983 0.002209863198 +2.498314032e-06 -0.003895060127 0.005847694979 0 5.42904128 16.26440494 933.5296773 0.002142406448 +2.496160187e-06 0.008701979774 0.008071078488 0 -20.45447324 -19.55807032 1020.633432 0.001959567399 +2.49769836e-06 0.005826214212 -0.008699790167 0 -13.74457118 18.01439094 1055.741323 0.001894403445 +2.499658647e-06 -0.006465352857 -0.01413691344 0 7.02488308 -3.092402549 928.8859573 0.002153116843 +2.49540718e-06 0.008640555604 0.01346310277 0 26.10204068 13.45922479 968.3160819 0.002065441272 +2.498513708e-06 -0.003432426732 0.00483929072 0 -10.51791265 -11.55784198 906.1874647 0.002207048848 +2.49713758e-06 -0.006363343936 -0.003168373012 0 20.43408376 10.74316473 964.4551781 0.00207370964 +2.492873433e-06 0.003821834568 0.01349746818 0 -18.87291878 28.52681832 905.0376913 0.002209852716 +2.497890362e-06 0.003198262081 0.01329085829 0 2.46805415 18.71175155 918.5509578 0.002177342458 +2.497436188e-06 -0.00777039242 0.004134431246 0 5.835032611 22.64543534 1032.319667 0.001937384381 +2.496335785e-06 -0.008330301354 0.001090836853 0 -22.31553732 -16.35242771 1021.399568 0.001958097559 +2.497365219e-06 -0.005825692657 -0.0149233181 0 21.13294963 7.047737575 970.0653861 0.002061716693 +2.49910106e-06 -0.00477700965 0.003226659489 0 11.63241176 -7.52605135 1033.142555 0.001935841274 +2.495463673e-06 -0.001532065375 0.001900728364 0 -25.98611603 -16.78303056 1026.316508 0.001948716585 +2.498367314e-06 -0.000644956911 0.0117276904 0 -0.9940030104 18.791888 1041.128512 0.001920992439 +2.497311298e-06 -0.001665063752 0.008926210357 0 -16.56313463 -13.46318339 920.0845612 0.002173713248 +2.496809597e-06 -0.007715586629 -0.01127439582 0 -23.23348932 1.237294571 920.6269349 0.002172432637 +2.499085847e-06 0.002152526029 -0.006316748487 0 11.71332215 -5.828760632 967.4709109 0.002067245617 +2.498830421e-06 0.00821686741 -0.01374729485 0 8.278465425 12.45741572 977.7921613 0.002045424456 +2.496176647e-06 0.006848308863 -0.009237420685 0 -19.10069612 -17.64920537 939.9250174 0.002127829309 +2.499303489e-06 -0.008523421306 0.007350946516 0 -10.27906635 1.12721838 876.0425706 0.002282994077 +2.49815216e-06 -0.004694560929 0.007944553967 0 -19.58597678 6.063716657 1066.235004 0.001875759088 +2.49941389e-06 -0.007561495742 0.01114723778 0 11.28192237 1.55702854 1051.810138 0.001901483859 +2.497935883e-06 -0.007807648466 0.01414241981 0 -1.25466146 18.63873931 919.1399575 0.002175947182 +2.498470675e-06 0.00181107088 0.007807137463 0 16.6238329 0.3933093279 950.5787653 0.002103981356 +2.495995275e-06 0.009189670212 -0.006729099574 0 13.76810296 -22.09882017 919.4462055 0.00217522242 +2.497971239e-06 -0.008745186757 0.01007555898 0 9.191349947 -16.86390414 953.180763 0.002098237898 +2.498484272e-06 0.005970512452 -0.006310174554 0 -0.7087983636 16.62493052 955.4980789 0.002093149159 +2.495587075e-06 0.003948729839 -0.01203352007 0 -9.412364229 -26.00459662 930.2869684 0.002149874252 +2.498285158e-06 -4.70597297e-06 -0.01270048884 0 16.88150557 -0.7402162194 912.1988201 0.00219250448 +2.49806437e-06 5.74599579e-05 -0.006731940885 0 16.96270093 -4.801525332 895.7352932 0.002232802498 +2.499009915e-06 -0.002299200352 0.01037965808 0 -3.245919879 -14.45354101 1052.550713 0.001900145974 +2.499352385e-06 0.002914418406 -0.003896650064 0 1.795841169 -9.946115904 887.9817522 0.002252298535 +2.498903594e-06 0.002068766127 -0.001574201791 0 -5.485047598 12.13467567 899.1380741 0.002224352475 +2.498569733e-06 -0.003526352681 0.002265882532 0 -16.15090751 1.142606852 957.115295 0.002089612412 +2.498960606e-06 0.008553114007 0.00294311065 0 2.563007228 -12.85732781 909.158549 0.002199836324 +2.499212299e-06 -0.00296486266 0.01056150167 0 2.203331575 -10.99407193 893.228614 0.002239068441 +2.497162974e-06 -0.003658465305 -0.01497258507 0 -14.6420198 -16.95341519 940.0193805 0.002127615708 +2.498553441e-06 -0.009510150747 -0.001494674985 0 -13.46671426 11.28091646 1032.591816 0.001936873767 +2.499280359e-06 -0.008803470982 0.002560913956 0 0.8120017938 10.51230229 878.758922 0.002275937063 +2.499743387e-06 -0.003431148119 0.006426287054 0 5.175143457 5.034416424 1007.772568 0.001984574758 +2.499199458e-06 0.002292808415 -7.820174564e-05 0 -11.98277708 0.9057238863 949.5882128 0.002106176101 +2.497930273e-06 0.007592808479 -0.008914755746 0 -6.978816792 -16.94944031 900.6479595 0.002220623473 +2.496911515e-06 0.002106848741 0.01374525664 0 8.699032004 21.10367721 918.0065338 0.002178633731 +2.496165537e-06 -0.000915231281 -0.008847016327 0 -20.85665758 15.8361134 945.0961277 0.002116186853 +2.497294144e-06 -0.004051143229 0.007982781739 0 -14.72654174 14.80077388 897.1531888 0.00222927369 +2.495360047e-06 -0.007899314989 0.01028369157 0 14.69118364 26.7078023 999.9210415 0.002000157929 +2.499387939e-06 -0.003555877698 -0.01343769211 0 -5.664098094 -9.104464369 969.049916 0.002063877172 +2.498807682e-06 -0.009159381837 0.000906529231 0 -16.26827919 2.505813955 1065.723612 0.001876659181 +2.495804053e-06 -0.0005772112403 -0.01455950417 0 22.1969149 -18.26781978 991.7355691 0.002016666602 +2.497141982e-06 -0.0003316674847 -0.006630621781 0 -12.37230573 -18.97643258 947.1105379 0.002111685933 +2.498542152e-06 0.003293431746 -0.004610722291 0 -12.69891101 -12.01140838 1023.446726 0.001954180856 +2.497741197e-06 -0.00630584036 -0.01328268201 0 17.16971247 12.84317293 1008.457722 0.001983226422 +2.497868824e-06 0.003000120814 -0.00499382233 0 -3.356694709 -17.8546042 879.6890599 0.002273530604 +2.499660952e-06 0.0094983675 -0.01010023499 0 -7.003874635 3.259516437 938.0844732 0.002132004161 +2.498368889e-06 -0.005958802733 -0.005571991594 0 -13.44625019 -9.00942831 895.9090795 0.002232369384 +2.497649985e-06 0.005919226813 -0.004616994371 0 -12.13730783 16.78953356 955.2735233 0.002093641194 +2.4982256e-06 0.003155024284 -0.01449464457 0 -18.12477876 1.505729305 965.1833461 0.002072145161 +2.496632222e-06 -0.002075684527 -0.0001672544237 0 17.18605014 -21.23825819 1052.171516 0.001900830776 +2.497352579e-06 -0.0008957374375 0.01110560779 0 -18.94402067 7.411660117 883.6915201 0.002263233215 +2.498990134e-06 0.007575001968 -0.01034866922 0 -2.198035566 13.6123488 970.0847911 0.002061675452 +2.498202279e-06 -0.006386278174 0.003211517239 0 17.24633242 8.798656019 1020.790858 0.001959265196 +2.4996189e-06 -0.003621604973 0.006829534436 0 -8.327854136 0.3830497399 954.845131 0.002094580509 +2.497920294e-06 0.004320281669 -0.004037975434 0 -17.84180547 -5.131069908 910.0024816 0.002197796204 +2.49825678e-06 0.002925006598 0.004715956582 0 -9.394429503 16.80895171 1031.009962 0.001939845465 +2.498756052e-06 0.00582565147 -0.01319000035 0 16.75484717 0.550532667 1062.619122 0.001882141926 +2.499797573e-06 -0.008291489095 0.008395990538 0 -1.279019205 -5.426908751 876.2519059 0.002282448673 +2.495377328e-06 0.003105751364 0.01350808956 0 -4.970942475 28.11146412 938.2238651 0.002131687409 +2.498071799e-06 0.002745528263 -0.003340479231 0 -15.60754371 -11.8027212 996.1522477 0.002007725229 +2.498426579e-06 -0.005024055475 0.009782217653 0 -11.13780315 12.36091554 937.7275675 0.002132815617 +2.498371604e-06 -0.00805164543 0.009354515481 0 11.86144704 15.10637806 1064.023516 0.001879657706 +2.499759955e-06 0.007932603988 0.004571159722 0 0.05386775461 -6.147581975 887.2462678 0.002254165583 +2.497139897e-06 0.003247303921 0.004960971912 0 -16.88730198 -14.22800707 922.8842788 0.00216711894 +2.49545153e-06 -0.007012630664 -0.004297554356 0 19.98403011 21.11646462 963.280136 0.002076239222 +2.498674019e-06 0.006358027323 0.0087488079 0 14.17462191 -4.690736953 916.6579156 0.002181839011 +2.495864778e-06 0.0006540002162 0.009411660957 0 -22.62996392 -17.0609443 984.8621499 0.002030741054 +2.499905452e-06 -0.00213232649 -0.004731664967 0 -0.06334426526 -3.80572636 875.2885833 0.002284960684 +2.497437675e-06 0.001658645286 -0.01045466458 0 -21.05155788 0.2364522706 929.6350869 0.002151381793 +2.498104836e-06 -0.007605884578 0.0111008532 0 15.63587829 9.497622985 939.4129563 0.002128989159 +2.495289446e-06 -0.004464650005 0.0002978158998 0 -20.79811963 24.311464 1041.619131 0.001920087622 +2.496348944e-06 -0.006312408769 0.007934808426 0 -26.07234802 8.533221764 1014.647061 0.001971128757 +2.495581718e-06 0.002915987545 0.01078690929 0 -23.19852132 19.74310783 1024.08328 0.001952966169 +2.496352178e-06 -0.006334776846 7.424098905e-05 0 19.09351258 17.79700364 965.8243485 0.002070769911 +2.495658347e-06 -0.009105007513 0.007316335374 0 -20.49767273 22.57448465 1034.094569 0.001934059089 +2.49637598e-06 0.004641106497 -0.009913927778 0 -16.09115616 17.24335374 875.5718759 0.002284221382 +2.497590537e-06 -0.002808136744 0.005961973427 0 22.34925038 0.4811805559 1017.961729 0.001964710404 +2.499344383e-06 -0.00491065192 0.01486249746 0 11.63776503 -0.2980708706 1016.551253 0.001967436462 +2.498946878e-06 0.005511980555 -0.003941770596 0 12.86567585 4.471876168 938.3748067 0.002131344518 +2.498677622e-06 -0.004415740808 -0.001893157493 0 15.00508858 -2.88655988 939.3998873 0.002129018778 +2.496886179e-06 0.004776499127 0.004919213697 0 14.52584092 -18.26848077 934.8217892 0.002139445211 +2.496033437e-06 -0.005893304548 0.009690955407 0 -29.3992479 6.576162125 1068.949812 0.00187099523 +2.498401115e-06 0.001129927225 -0.01232545575 0 8.413229326 16.80231797 1050.561073 0.001903744628 +2.499499258e-06 -0.001243841983 -0.005279393499 0 -3.263527712 8.625044703 921.4292482 0.002170541041 +2.495847768e-06 -9.305561427e-05 -0.01391659267 0 -7.41557782 -27.16267153 976.4628868 0.002048208925 +2.49969501e-06 0.003138084388 0.00426099644 0 5.994931401 -4.191747974 936.5686314 0.002135454822 +2.497080955e-06 -0.001123334426 0.001737783747 0 9.227162209 -22.63893694 1011.351659 0.001977551509 +2.499900542e-06 0.006769009177 -0.002051830434 0 3.802470214 -1.765573292 939.9827313 0.002127698662 +2.499501913e-06 -0.0047767204 0.01329498773 0 -7.663997063 6.442763219 1003.075891 0.001993867083 +2.49984425e-06 0.001323591592 0.004058288941 0 -5.593661825 -2.067012268 1068.443139 0.001871882487 +2.49788215e-06 0.003046165607 0.01355866251 0 10.89104828 16.87392288 975.5225678 0.002050183221 +2.498571592e-06 0.00640640127 -0.006514253919 0 16.00950273 8.042393644 1059.760408 0.001887219021 +2.498945427e-06 0.00495933264 -0.008904449686 0 -6.206995749 -11.89092595 923.4615086 0.002165764335 +2.499573804e-06 -0.007909920174 -0.01181750727 0 1.791257194 -7.982058552 886.0054343 0.002257322498 +2.499125246e-06 0.0001990974275 -0.01342083259 0 -7.824327325 -10.50436295 990.1370049 0.002019922486 +2.497697007e-06 -0.00690737396 -0.009049448292 0 16.01154565 -15.26631936 1030.466714 0.001940868127 +2.497520381e-06 0.001225758046 -0.006498868363 0 12.39377888 -19.33643063 1030.964004 0.001939931939 +2.499643269e-06 0.007791277631 0.004998202196 0 6.481399333 -4.310000057 921.4516521 0.002170488268 +2.498631e-06 -0.007544770846 -0.003014030897 0 -16.43707277 -1.183805003 995.7309383 0.002008574729 +2.49670027e-06 0.0003382803267 -0.01217244482 0 24.26555491 -11.21574258 1040.076428 0.001922935609 +2.49986577e-06 0.001136653628 0.01402613421 0 3.673967883 -3.021960263 918.1123677 0.002178382593 +2.4969611e-06 0.001842431384 -0.0002237827191 0 22.91785694 5.218476689 952.9703968 0.002098701079 +2.499286667e-06 0.007124126134 0.008659592648 0 -12.10313825 -0.7493921465 1015.128973 0.001970193002 +2.498097242e-06 -0.002447860516 -0.0007238086453 0 -16.1268881 -5.881168816 879.6973551 0.002273509166 +2.496726656e-06 -0.005429651779 -0.004313377112 0 16.3979076 -16.17112887 899.6555645 0.002223073006 +2.497487276e-06 0.003466637749 -0.0003806992876 0 22.30729687 0.3515723066 994.832019 0.002010389656 +2.499442968e-06 0.0001228646049 0.001596224844 0 -9.786356146 4.82064549 1033.481746 0.001935205927 +2.499685607e-06 0.005876076398 0.01304434356 0 7.429018732 3.021674017 1011.3558 0.001977543413 +2.499097497e-06 -0.006384491283 0.00410423368 0 13.0797136 0.922176624 975.8359646 0.00204952479 +2.499455166e-06 -0.009094950017 -0.01464960733 0 -5.915191601 7.367135074 905.0151536 0.002209907748 +2.495369473e-06 -0.003589733932 0.002962501841 0 20.94019154 24.88935573 1068.082732 0.001872514123 +2.498702064e-06 -0.006150973258 -0.009449533923 0 13.91638087 -3.446293475 889.6614319 0.002248046199 +2.499579508e-06 -0.005099945874 -0.005387084435 0 8.26201685 2.898024071 954.6879812 0.002094925294 +2.495755543e-06 -0.004404461128 0.001381418416 0 -21.51676131 18.25478487 967.8555724 0.002066424017 +2.496525433e-06 -0.007725825035 -0.01334229235 0 -20.8417194 17.65783617 1035.687978 0.001931083533 +2.494236297e-06 -0.00843675754 -0.01393986269 0 -15.68741707 -32.32318055 1057.308693 0.001891595153 +2.496375051e-06 0.006061472236 -0.009661547772 0 -18.66786465 18.01098659 962.8709789 0.002077121488 +2.499139034e-06 0.009240054586 -0.007701506931 0 -12.05241081 4.982555238 993.7354702 0.002012608043 +2.497925125e-06 0.003752032281 0.009441805675 0 9.298706816 -18.4809543 1015.27015 0.00196991904 +2.499999032e-06 0.004951285264 -0.01347695245 0 -0.225650241 0.3209089326 891.5271076 0.00224334177 +2.497299515e-06 -0.008757776641 0.008161367504 0 -6.41027317 23.64106789 1053.563522 0.001898319331 +2.498371412e-06 -0.003779661604 -0.01281417481 0 17.5569606 -3.434034766 991.0032149 0.002018156924 +2.499877176e-06 0.008757511876 -0.01371863507 0 -4.31862731 -0.605230505 879.8424769 0.002273134172 +2.494703281e-06 -0.002928696102 -0.0005036400212 0 22.55892274 24.51796663 1022.832734 0.001955353925 +2.499598069e-06 0.002661142503 -0.006964008012 0 2.273120459 -8.090095535 937.2093721 0.002133994878 +2.497665936e-06 0.004088327675 -0.004216378655 0 17.36939548 9.697613262 920.4098387 0.002172945047 +2.499788839e-06 -0.0002879240829 0.005121429199 0 5.523556248 3.243948018 985.6664486 0.002029083979 +2.496306382e-06 -0.003635581159 -0.0109139043 0 20.45103559 -13.52538016 901.6142933 0.002218243449 +2.499574144e-06 0.002183453138 -0.01483415064 0 -0.06225328259 8.487220828 919.6084054 0.002174838756 +2.498896309e-06 -0.009119102308 -0.008038698756 0 -12.45215933 7.721345719 986.0082578 0.002028380578 +2.497776054e-06 -0.009391058069 0.002897811765 0 -13.93516397 -17.11908311 1046.296312 0.001911504395 +2.495288499e-06 -0.002911496758 -0.01410921833 0 13.54525375 -26.74434438 975.9188945 0.002049350629 +2.499979245e-06 -0.00166509212 0.01050821438 0 1.862839378 -0.6784862338 973.0794571 0.002055330616 +2.497012225e-06 -0.004320174749 -0.003679283308 0 -18.53795481 13.82844408 945.6821219 0.002114875552 +2.49943804e-06 0.007386438195 -0.005316804182 0 -9.595311343 3.451457504 961.7801113 0.002079477394 +2.498100297e-06 0.008842023164 0.01184243965 0 -19.09470094 -3.0973883 992.1356738 0.002015853328 +2.497045247e-06 -0.008838800103 -0.008328344815 0 -21.74922324 -9.9239776 982.9814119 0.00203462647 +2.497902317e-06 -0.006169913248 0.003164787192 0 -19.89108902 5.15246522 1002.857512 0.00199430126 +2.498739011e-06 -0.002416216522 -0.003607297246 0 2.97823199 -14.76492377 948.284072 0.002109072649 +2.496560247e-06 -0.0009786207136 0.004438675444 0 -10.31058473 25.65674534 1053.677427 0.001898114117 +2.498371773e-06 0.0004228405328 -0.01165895929 0 1.498256217 16.15037934 898.5970477 0.00222569171 +2.496876272e-06 -0.009818244744 -0.003271210226 0 -23.60913624 1.123906211 945.1841804 0.00211598971 +2.497598485e-06 0.003218418872 -0.008739216886 0 18.50957973 -10.55826424 971.9697263 0.002057677257 +2.496343568e-06 0.008110625166 -0.01318847425 0 -14.92140731 -21.65939697 972.0782852 0.002057447461 +2.49819215e-06 -0.0009724837821 -0.01004833712 0 -13.65653726 -13.51915464 1010.315949 0.001979578766 +2.494549838e-06 -0.009913668903 -0.001207588851 0 -27.2278961 14.14971843 928.6495962 0.002153664857 +2.498574474e-06 0.008808339401 0.01073901085 0 1.599601434 -15.94770102 949.0221734 0.002107432319 +2.496228154e-06 -0.003800392956 -0.005673871553 0 -7.168268455 -26.86697868 1011.843416 0.001976590418 +2.497533278e-06 0.007563801869 -0.005260500263 0 -13.77495012 -15.9018006 946.84285 0.002112282941 +2.494328567e-06 0.007143785534 -0.01274982234 0 15.51719171 -30.71317033 1020.844691 0.001959161877 +2.495039587e-06 0.004657603777 -0.005731099751 0 25.7908098 17.0484543 980.8209552 0.002039108146 +2.495188094e-06 0.008618877162 -0.01341383111 0 18.94436711 -21.67918813 927.3796151 0.00215661415 +2.497389755e-06 -0.00674092635 -0.007035070632 0 2.474829622 -22.66555861 997.5029751 0.002005006551 +2.498175203e-06 0.003241092502 -0.00247975819 0 16.22382599 10.50011058 1011.30847 0.001977635963 +2.49721289e-06 -0.004369069752 0.01187090945 0 -6.427192172 21.00868886 930.1502893 0.002150190161 +2.497975947e-06 0.007269647508 -0.001510002727 0 6.701429872 -17.8710279 948.33436 0.00210896081 +2.498640286e-06 -0.004200916272 0.002560304124 0 13.33224209 9.753124216 1001.502926 0.001996998659 +2.496462497e-06 0.007658823612 -0.01272908692 0 23.59002284 4.30371245 901.0400734 0.002219657104 +2.497827917e-06 -0.001932685152 -0.01019062706 0 -10.65418687 18.33366351 1017.03338 0.001966503793 +2.499386889e-06 0.009801694546 -0.008723630409 0 -1.762212895 10.77300348 985.7034503 0.002029007811 +2.496994327e-06 0.00697351804 0.004134514136 0 25.54854205 -1.688187133 1043.831571 0.001916017924 +2.499562212e-06 0.002975526322 -0.002849327945 0 -2.913269177 9.357281984 1047.282897 0.001909703678 +2.498405988e-06 0.001658363636 -0.007468549234 0 -3.276243122 -17.55595815 999.9851867 0.002000029627 +2.497036929e-06 0.003555808067 0.01120494763 0 -18.62349693 -17.56034313 1051.012587 0.001902926782 +2.495776246e-06 0.007121968586 -0.00585512124 0 -14.82746799 -22.27849378 920.1803549 0.002173486958 +2.497162605e-06 0.009989306033 0.00110938136 0 -10.48233714 21.04278497 986.452789 0.002027466517 +2.499893809e-06 -0.003649503705 -0.01478196956 0 2.876291202 -2.99042213 900.3197122 0.00222143309 +2.499434574e-06 -0.005031511798 -0.01390202389 0 2.889679302 -9.411535793 925.7273129 0.002160463424 +2.497979516e-06 0.008511197213 -0.00426363345 0 16.96146718 12.82131051 1057.382173 0.001891463702 +2.499207084e-06 0.005895961309 0.002830179131 0 -2.175072991 12.31846113 993.214138 0.002013664449 +2.498970401e-06 -0.0058509542 -0.007722167897 0 5.916205102 12.94910186 991.9506309 0.002016229375 +2.497544347e-06 -0.002082837503 -0.002553109881 0 -20.14162366 -4.290677958 928.908682 0.00215306417 +2.498683026e-06 -0.002088397034 -0.01105268988 0 6.417649296 -14.53484939 978.8061665 0.002043305476 +2.499714593e-06 0.008158033402 0.003092168095 0 5.464102008 4.804082301 962.9599361 0.002076929605 +2.497122136e-06 0.004355882308 -0.005688877464 0 7.890630263 -21.33586209 947.7843994 0.002110184554 +2.498890152e-06 0.004875853593 -0.004876097438 0 -12.82581277 -4.000324281 901.6217114 0.002218225199 +2.497099988e-06 0.006987469336 0.01465757109 0 23.49024644 9.10430588 1045.619113 0.001912742388 +2.497902263e-06 -0.005931407246 -0.01466028709 0 14.85871698 13.26314323 972.0748512 0.00205745473 +2.497845755e-06 -0.005405602357 -0.0007988124085 0 -15.04912006 -16.30269886 1068.542149 0.001871709041 +2.499160167e-06 0.004220759985 0.00424848909 0 -8.268669054 -10.76244002 1047.07996 0.001910073801 +2.494023152e-06 0.004081110745 0.01130980208 0 16.6204478 26.89577752 913.6440472 0.002189036317 +2.499164211e-06 0.00905675678 0.004832927173 0 11.87946705 -2.739823826 942.8293292 0.002121274697 +2.498411756e-06 0.002107587717 -0.0001063377061 0 10.89078555 12.7080648 938.8207188 0.002130332192 +2.496217138e-06 0.00576801511 0.009158419361 0 -19.11190252 21.85546322 1054.928241 0.00189586355 +2.499304054e-06 0.007400749885 0.0002629376622 0 11.8361662 3.101720369 1037.01574 0.001928611035 +2.497773428e-06 0.002404691624 0.007388686566 0 -13.60843531 -13.24905309 899.727127 0.002222896187 +2.496950335e-06 -0.00931280884 -0.001644713595 0 -19.80698878 -9.92154382 896.5861213 0.002230683648 +2.496021144e-06 0.005462721903 -0.01096852435 0 -17.46754197 -23.80978932 1046.188604 0.00191170119 +2.498586252e-06 0.001149123218 -0.005389658574 0 13.66573893 5.845856718 883.75284 0.002263076179 +2.498416486e-06 -0.004067610605 0.01155426919 0 -12.45344636 13.86270857 1046.887647 0.001910424682 +2.499963924e-06 -0.003353513768 -0.01297952347 0 0.4174780301 2.370893272 896.219517 0.002231596124 +2.499326872e-06 0.002980630267 0.005292662156 0 3.146664032 -11.10219617 994.442588 0.002011176939 +2.499606759e-06 0.005266431817 -0.005327109124 0 -9.342338336 0.6683082204 1056.072896 0.001893808664 +2.496406494e-06 0.006586662424 0.01197932443 0 24.93849866 -5.346515609 950.8672109 0.002103343113 +2.497378875e-06 -0.009264850919 0.002557818261 0 -9.18240285 19.27351605 932.0737671 0.002145752912 +2.493979224e-06 0.0007011081371 -0.01271019054 0 -19.72755763 -28.98341262 1009.438768 0.001981298979 +2.496655627e-06 0.00723144318 0.007933997253 0 5.47255197 22.71484703 902.9659513 0.002214922941 +2.499463252e-06 0.0008781372802 -0.01324218236 0 -6.122137943 -8.733333534 1029.304591 0.001943059438 +2.499702647e-06 0.009108744366 0.01366353534 0 -6.600634527 -2.857711317 932.6557289 0.002144413998 +2.499714533e-06 0.004891890935 0.004554049952 0 -6.201037351 -2.777830634 899.2172672 0.002224156578 +2.499107634e-06 0.004678713824 -0.01225982206 0 6.079555192 10.87819558 932.6862018 0.002144343935 +2.496322265e-06 0.008547150469 0.01106959998 0 7.937248923 23.52793982 915.0483972 0.002185676743 +2.497093996e-06 0.008666582988 -0.002252561802 0 -8.734355431 -24.27284588 1069.568237 0.00186991342 +2.498716605e-06 0.001356006744 0.004469904522 0 11.75536097 12.21462093 1057.921914 0.001890498698 +2.499542072e-06 0.003557326361 0.008624075695 0 7.529488799 -6.807464185 1060.592152 0.001885739015 +2.494642946e-06 0.002963334182 0.004364265238 0 24.25605935 -19.41292019 948.3864198 0.002108845043 +2.497188006e-06 0.0008615619503 0.01263220631 0 21.02652134 -7.119488868 935.6870838 0.002137466718 +2.494230669e-06 0.004798474894 -0.01002759889 0 24.60000446 -18.20576829 900.1719937 0.002221797628 +2.499879759e-06 -0.00315769644 0.01448310162 0 -1.739080351 4.754011495 1032.24442 0.001937525611 +2.498302181e-06 -0.007877697395 0.01456431696 0 17.1876594 -8.092696957 1030.686308 0.001940454612 +2.495500139e-06 -0.008663295824 -0.0140509109 0 -25.64703534 7.640315616 891.4408027 0.00224355896 +2.497075819e-06 -0.007685456504 -0.008659215064 0 -22.62800119 11.63304413 1051.630646 0.001901808403 +2.497697666e-06 0.002931316751 -0.002163365702 0 -14.91513599 15.61575674 1005.980539 0.001988110031 +2.499621051e-06 0.008455471317 0.01069444263 0 -5.940777289 5.113338728 900.3098746 0.002221457363 +2.499720397e-06 0.00412430462 -0.006208361511 0 -2.919928381 7.270599612 1047.698605 0.001908945941 +2.498213613e-06 -0.007851615213 0.008262713898 0 18.1538938 -1.060663547 961.8130222 0.00207940624 +2.499841234e-06 -0.005138606485 0.01144837307 0 -4.977750305 0.07528939687 883.4424933 0.00226387118 +2.498065556e-06 0.001037791003 0.01317345024 0 -8.315959378 18.17091641 1015.665897 0.001969151476 +2.499684739e-06 -0.004236710621 -0.004868282326 0 -2.161953072 -7.168986934 942.9501771 0.002121002836 +2.497525247e-06 -0.004986728197 -0.01006649792 0 19.74278199 3.662817881 902.2245967 0.002216742934 +2.499612105e-06 0.008904531589 0.008525425312 0 -1.691744982 -7.973356344 925.3496452 0.002161345185 +2.498334872e-06 0.002278912272 0.01079989232 0 -15.16040637 -10.42474854 1007.953567 0.001984218385 +2.498322867e-06 -0.009738967596 0.01325945509 0 -8.229232682 -15.39235457 952.7718399 0.002099138447 +2.497639477e-06 0.002485888177 -0.004030265061 0 19.10847479 4.862608667 907.1482681 0.002204711259 +2.496506066e-06 -0.00269319003 0.005088608901 0 4.449286806 23.58130426 907.3266774 0.002204277742 +2.499825057e-06 -0.00368628467 -0.001576580582 0 6.242346126 1.032489648 1069.631487 0.001869802847 +2.493817241e-06 0.00978559365 0.01399963195 0 25.17766961 24.9747927 1007.561152 0.00198499118 +2.496876594e-06 -0.007740552551 0.002351343089 0 8.904377874 21.24554317 921.2463952 0.00217097186 +2.494970183e-06 0.002466249745 -0.01462450967 0 -17.62005726 -26.11780832 992.5890171 0.002014932631 +2.497585367e-06 0.003491053837 -0.005802992487 0 0.5666182856 -21.83422937 993.5416816 0.002013000599 +2.498712333e-06 0.007575355256 0.00327802588 0 -14.53846335 6.400943447 989.6725143 0.002020870511 +2.497754363e-06 0.001586434646 0.009179115293 0 -8.93821542 19.71860268 1021.229455 0.001958423731 +2.499337239e-06 -0.008274568459 -0.01147044013 0 9.587715564 3.1552742 876.6128157 0.002281508968 +2.497154536e-06 0.006632875325 -0.001113968035 0 -5.915743651 -23.39674927 1011.195423 0.001977857054 +2.496474872e-06 0.001186197549 -0.006805891071 0 -15.63818363 -17.35369113 879.3182724 0.002274489298 +2.497285569e-06 0.001316866437 0.001077110237 0 9.851269261 -20.23974625 965.6993958 0.00207103785 +2.499807869e-06 0.009316276335 0.009280663161 0 5.492949539 -1.584437814 922.2204844 0.002168678785 +2.497659197e-06 0.007546103466 0.004351159881 0 17.37568143 8.984620438 903.7408282 0.002213023842 +2.499412037e-06 -0.001312580789 0.001254788248 0 -8.998034111 6.420346926 1019.25189 0.00196222349 +2.498333147e-06 0.006508116811 -0.001030206357 0 -9.720763976 16.04928413 1027.410541 0.001946641504 +2.499219096e-06 0.0001600360312 -0.01413380632 0 -12.99979412 1.699758908 1048.944941 0.00190667777 +2.497109463e-06 0.001500946996 0.01008184043 0 22.60098126 7.352865009 988.0551191 0.002024178572 +2.499747553e-06 -0.005201026695 0.002078852076 0 -4.562658027 5.24523616 978.3487353 0.002044260832 +2.499465565e-06 -0.0003645026684 7.836800069e-05 0 -9.547986616 2.205500348 947.7682943 0.002110220411 +2.498560389e-06 -0.006111676819 0.0008485165285 0 10.74246148 13.65670987 1023.775298 0.001953553679 +2.498399072e-06 -0.009402254275 0.0007157663 0 -18.05212037 -1.182622725 1010.771499 0.00197868658 +2.49911676e-06 0.003550776592 -0.01145904303 0 -3.119624787 -13.39777163 1034.869916 0.00193261005 +2.497539807e-06 -0.006222367985 -0.009457000257 0 -1.80266277 -19.56042367 885.2272719 0.002259306806 +2.498585698e-06 -0.00599799505 0.006523526944 0 13.36310253 -11.6443161 1053.656505 0.001898151809 +2.496115149e-06 -0.008733029943 0.001491936799 0 11.50847552 23.41142151 935.3438637 0.002138251051 +2.498989772e-06 -0.003374873293 -0.002731429758 0 -9.729330362 -11.30184749 1048.983816 0.001906607108 +2.4997284e-06 0.006114268797 -0.002019828048 0 -5.541303275 5.173820426 1028.584708 0.001944419341 +2.496475064e-06 0.006669272156 0.004135575125 0 18.90141894 -17.08522352 959.0877251 0.00208531498 +2.496718251e-06 0.0002160954196 -0.006962394908 0 -15.34070899 -21.83843175 1041.204348 0.001920852523 +2.497775055e-06 -0.003446044601 -0.004092458887 0 16.12203915 -9.422649505 884.9330076 0.002260058087 +2.49752323e-06 0.007728029001 -0.007686177855 0 -8.837194717 -20.96871078 1022.0087 0.001956930504 +2.499882365e-06 -0.005147738582 0.01020171136 0 3.486097123 -2.796252532 921.3378395 0.002170756387 +2.499102171e-06 0.007191535574 -0.01223323133 0 -13.02672585 -1.326381219 977.022725 0.002047035293 +2.499468784e-06 0.007961751712 0.001397050121 0 10.17407451 1.220477882 994.0594096 0.002011952184 +2.497948984e-06 0.009537874786 -0.001496372817 0 17.53583706 -12.39217337 1059.866111 0.001887030804 +2.493624474e-06 -0.002092411406 -0.01403792362 0 -21.68994607 -31.13808181 1061.689504 0.001883789934 +2.499543223e-06 0.002209325056 0.007010416745 0 0.4446244217 -9.896610969 1036.400308 0.001929756276 +2.497776038e-06 -0.008297077557 -0.00560387613 0 0.5882567342 22.19856596 1052.576584 0.001900099271 +2.499720704e-06 -0.002433044738 0.01005778367 0 -7.251832433 -1.929791666 1004.012433 0.001992007204 +2.49474819e-06 0.009649425782 -0.01306748681 0 -12.91990578 -26.90814561 920.2802857 0.002173250944 +2.499266963e-06 0.0002202111715 0.01194515171 0 -3.480424896 10.87589165 942.9972574 0.002120896943 +2.499442844e-06 0.009272699957 -0.008363409501 0 -1.933300974 -10.42218792 1004.073797 0.001991885463 +2.497294528e-06 -0.0003326052753 0.002658493866 0 17.50750689 -14.57105643 978.8113975 0.002043294556 +2.499266201e-06 0.004824930527 -0.001907893773 0 -11.16584437 1.122821581 926.243186 0.002159260149 +2.495335767e-06 0.002823191308 0.003109862111 0 24.88459718 -17.6290904 997.7891762 0.002004431445 +2.496761766e-06 0.005307077174 -0.001171349636 0 3.721094784 -22.25641689 886.2611737 0.002256671125 +2.497844291e-06 -0.001655724286 0.01125876801 0 -19.52587581 -4.531284173 965.0510588 0.002072429206 +2.499571446e-06 -0.004582642457 0.01234023799 0 9.86907579 0.2406762943 1066.252003 0.001875729185 +2.493294452e-06 -0.008500563675 -0.007536109679 0 -23.00712766 -28.2560543 993.9986597 0.002012075148 +2.496912434e-06 -0.0001282873657 0.0007683711802 0 13.81853862 -18.89483601 941.570401 0.002124110951 +2.498657396e-06 -0.0003277309146 0.002083354967 0 6.044418004 -14.17452821 940.1814883 0.002127248861 +2.49939693e-06 -0.0004760286072 -0.001172050287 0 8.285643792 -5.830647588 922.4393931 0.002168164125 +2.496447986e-06 0.006253312691 0.0007349825255 0 20.932121 -13.05993357 925.1737978 0.002161755991 +2.499414184e-06 0.004772117529 -0.001580686835 0 -2.019004314 9.657698079 911.4409006 0.002194327683 +2.499884309e-06 -0.002319670096 0.002015670589 0 4.79402117 1.618590308 1051.883757 0.001901350778 +2.499766262e-06 -0.009608567515 -0.003262096136 0 -1.760834131 -6.67969321 1010.298214 0.001979613516 +2.498726071e-06 -0.007641086821 0.003202684508 0 14.62401219 -0.1004043084 916.0224453 0.002183352613 +2.499735937e-06 -0.002546426132 -0.005526361708 0 5.285364412 -4.448123121 950.5351991 0.002104077789 +2.498971754e-06 0.00937590776 0.006474801069 0 -1.836090552 14.99589906 1053.351219 0.001898701937 +2.49814048e-06 0.008459141837 0.0002941980399 0 10.84658821 -15.44197694 978.2531791 0.002044460517 +2.498640236e-06 -0.007224929119 0.003948963799 0 -15.13074213 0.3093545033 917.5200226 0.002179788943 +2.498249644e-06 -0.005421298468 -0.004215629948 0 6.773415224 18.83925305 1069.719197 0.001869649536 +2.498133481e-06 0.009533333397 0.0006714364397 0 2.698044134 20.10563907 1049.640515 0.001905414256 +2.495852036e-06 -0.002552608899 -0.01007385539 0 -21.29540229 18.20829466 972.1693902 0.002057254651 +2.498191372e-06 -0.005858092816 -0.0137430386 0 17.61012585 -8.419494517 1026.024058 0.001949272032 +2.499497423e-06 -0.005517312037 0.01232459368 0 -10.52752626 1.877871848 1066.544499 0.001875214772 +2.49764555e-06 -0.002664870541 -0.004751090363 0 6.771140394 18.25783448 897.0553077 0.002229516935 +2.498931949e-06 -0.004794076164 -0.0103260361 0 -11.01956596 6.682653891 881.6364143 0.002268508841 +2.498590688e-06 0.007770930654 0.004195493669 0 -9.942510078 11.55931478 907.9756247 0.002202702304 +2.497992616e-06 0.008945458517 0.00915763967 0 -13.16996602 16.42563021 1050.420048 0.001904000218 +2.499412343e-06 0.009445587657 -0.009424923586 0 -6.075743532 8.370333108 953.9598517 0.002096524289 +2.499778968e-06 0.003186793723 0.01211848444 0 -6.413187948 -1.003689568 976.2729683 0.002048607372 +2.495882664e-06 0.005971673578 -0.002968245058 0 23.11619753 -20.00530041 1064.668689 0.00187851866 +2.495302741e-06 -0.009077109457 0.0060307896 0 -26.18150324 13.16874226 955.4862885 0.002093174988 +2.497895311e-06 0.006646463587 -0.0007696067076 0 -6.956754443 -18.72878635 973.4854095 0.002054473524 +2.499746974e-06 -0.006267094566 0.0149919085 0 6.319613649 4.093615049 1058.421767 0.001889605886 +2.49656875e-06 0.0008185991691 -0.006701932289 0 22.7261819 7.31522457 910.8974432 0.002195636858 +2.498025896e-06 0.00531866814 0.01469010058 0 -12.96557933 -12.57228978 908.6412893 0.002201088618 +2.496220545e-06 0.004775542729 0.009876699583 0 23.6932955 -12.93530276 981.2884911 0.002038136611 +2.498092074e-06 0.006989915124 0.01454355791 0 18.88788563 -2.718733597 976.5990255 0.002047923403 +2.497552737e-06 -0.002383322194 -0.01007545966 0 17.35171641 10.9712437 927.5948013 0.002156113852 +2.497727952e-06 0.009217354734 -0.007897210687 0 -20.13900911 -6.758900365 996.1912983 0.002007646527 +2.495669471e-06 0.0009707221575 -0.001548742773 0 -17.16143502 -23.23480514 980.8707412 0.002039004648 +2.499215551e-06 0.008013121136 0.001072513999 0 -11.71523914 -0.8862702165 937.8686534 0.002132494772 +2.499297404e-06 0.001548442361 -0.01248892657 0 10.42808078 -3.591242449 930.3108216 0.002149819129 +2.497634135e-06 -0.008366592643 0.00974952807 0 6.668368632 21.83519823 1049.194287 0.001906224637 +2.496580193e-06 0.008385296436 0.001547424041 0 21.15955417 -17.61142385 1052.117166 0.00190092897 +2.497881402e-06 0.004504670976 0.004656242444 0 -21.05631438 1.984899841 1027.131598 0.001947170163 +2.496945139e-06 -0.00220500112 0.002719026755 0 12.14599158 -20.21313924 953.5974884 0.00209732096 +2.496719173e-06 -0.007782932203 -0.0002986696456 0 -20.05002497 -17.82631659 1046.838513 0.001910514349 +2.496064442e-06 -0.008384660045 0.005083258369 0 -23.47704253 -8.582991726 890.4498189 0.002246055822 +2.498511562e-06 -0.005287949415 0.01254629186 0 -14.25910858 -6.527659771 908.7209778 0.002200895598 +2.498202763e-06 -0.0007004304696 -0.00342378448 0 19.21426512 -5.128113663 1048.64978 0.001907214438 +2.496955835e-06 0.003474290851 -0.003715271261 0 21.69906221 8.748080715 947.7554111 0.002110249096 +2.498671204e-06 -0.003490374335 0.01330658125 0 -16.71379462 -2.384772432 1035.42973 0.001931565167 +2.498277578e-06 -0.009922557133 -0.009698061082 0 -15.23510394 6.236613594 886.7285244 0.002255481746 +2.499452023e-06 -0.001296666902 0.001271839826 0 9.296356897 -4.669789958 993.6656698 0.002012749419 +2.499258821e-06 -0.008112119567 0.01135740122 0 3.579723171 11.04243309 953.3208496 0.00209792957 +2.495434496e-06 -0.006560662654 -0.0008687328896 0 20.65661814 -20.05824388 952.1992522 0.002100400725 +2.496399702e-06 -0.0002102599572 -0.002857704519 0 -20.78687687 17.62865219 1015.162626 0.00197012769 +2.496795302e-06 -0.003631924354 0.002665550297 0 19.14722966 -13.28367697 920.0500523 0.002173794779 +2.49723535e-06 0.0007814344624 -0.01224952395 0 5.076658465 -21.63947465 944.8557313 0.002116725267 +2.494994161e-06 0.002056948771 0.003089101198 0 19.26922468 26.10810605 1024.757746 0.001951680784 +2.497374682e-06 -0.006040923079 -0.007011471579 0 18.74254819 8.845161588 904.0960966 0.002212154225 +2.494182503e-06 0.002567564887 -0.01294918146 0 23.12280625 -21.9114181 933.0873223 0.002143422113 +2.498103866e-06 0.007389979097 -0.01250188344 0 -15.56212592 8.616406511 913.1883523 0.002190128679 +2.497227933e-06 -0.007232762114 -0.0009832765977 0 13.34957431 19.89921363 1017.255964 0.001966073506 +2.496787366e-06 -0.007265554038 0.003544930823 0 6.822347845 24.42371837 999.9344251 0.002000131158 +2.497677987e-06 -0.009538525594 0.007693725871 0 -17.35914267 -10.16026663 933.0365692 0.002143538706 +2.495721561e-06 -0.007585014817 0.00235400903 0 13.31291481 22.73650089 900.1193826 0.002221927489 +2.499628898e-06 0.008729872974 0.01314215812 0 -2.94159331 -7.647798847 951.0663881 0.002102902621 +2.499583645e-06 -0.004495270434 -0.006361329204 0 -7.252311174 3.855640563 900.0267767 0.002222156109 +2.499202398e-06 0.001254012608 0.0009131900431 0 -5.796905096 -10.51210526 950.3521968 0.002104482956 +2.495317562e-06 -0.007151700039 0.002334462837 0 19.90478762 25.83130668 1064.887336 0.001878132956 +2.499354413e-06 0.0001002445724 0.006978658789 0 7.985714747 -7.709792666 976.7714802 0.00204756183 +2.496418969e-06 -0.004604986319 0.002742923938 0 -19.96164556 -14.69370234 925.685187 0.002160561742 +2.498067222e-06 -0.0004684795858 -0.007358406123 0 18.28899136 6.02422366 979.0961567 0.002042700287 +2.498321446e-06 0.00276889205 -0.002424319277 0 8.232562362 16.96076022 1028.709079 0.001944184261 +2.499502197e-06 0.008793706796 0.01477631117 0 -0.5600573119 -10.1603666 1019.74634 0.001961272055 +2.499848227e-06 -0.001350219133 -0.01124601658 0 -3.874259512 3.854899577 991.9653794 0.002016199397 +2.498794377e-06 -0.003935563089 0.01147702754 0 -11.0718442 7.961752875 878.0682647 0.002277727234 +2.494374268e-06 -0.007225321778 -0.01418167011 0 -24.40406774 -23.27101239 1004.448469 0.001991142464 +2.499511388e-06 -0.005527181164 0.01132649844 0 -8.443873551 -4.804381678 982.6835733 0.002035243139 +2.498251581e-06 -0.002053700355 -0.002422535049 0 -13.60814173 13.95835019 1042.197167 0.00191902268 +2.495585391e-06 0.004838998979 -0.01122040951 0 13.41143202 -24.20307531 930.609988 0.002149128019 +2.498666014e-06 0.009044281379 -0.0114016963 0 -15.90327102 4.869600701 1018.051573 0.001964537017 +2.4991781e-06 0.001361596142 0.01480280107 0 7.448446758 -11.09928642 1042.442401 0.00191857123 +2.498578159e-06 0.009653241881 0.003143037516 0 0.4763702109 15.41109226 914.1291872 0.002187874567 +2.494447e-06 0.006709290738 0.004432609244 0 23.16320208 20.32306587 923.8903984 0.002164758941 +2.496216219e-06 -0.009773334521 -0.01242787408 0 -23.11961807 -9.005559951 901.427034 0.00221870426 +2.499541059e-06 -0.008191258083 0.01078082668 0 -5.955482987 6.314881503 905.9528206 0.002207620479 +2.496939555e-06 -0.0007695532311 0.005390847868 0 11.21947791 -21.92789717 995.1385885 0.002009770321 +2.499684321e-06 -0.00876943937 -0.006813358753 0 -6.256899388 3.88016106 926.5282933 0.002158595711 +2.498358087e-06 0.004915986434 0.009861889333 0 -6.177960765 15.8597967 939.025548 0.002129867504 +2.49974081e-06 -0.001051901844 -0.004364134676 0 2.599339523 6.529006627 976.010151 0.002049159015 +2.495996387e-06 -0.0091351924 0.006494024761 0 -22.19933077 12.11348264 893.1698946 0.002239215643 +2.49766093e-06 0.002984764408 0.0140357555 0 -12.18710482 18.51337156 1024.403924 0.00195235488 +2.499463656e-06 -0.009979741895 -0.01144057666 0 2.493530624 -8.969258891 898.7751486 0.002225250668 +2.498386666e-06 -0.006501613236 0.003390298951 0 -9.436298186 13.17183406 901.812576 0.002217755721 +2.497177305e-06 -0.006963580474 -0.002824159577 0 -23.25371233 -8.265569907 1038.238806 0.001926339093 +2.496733385e-06 -0.004528332348 0.003094157651 0 -23.87708622 2.384167407 938.3368109 0.002131430822 +2.499168635e-06 0.003554261313 0.01494052766 0 -7.412188925 -10.56439329 1000.69887 0.001998603235 +2.49826551e-06 0.003670671005 0.004016209559 0 -19.59648492 0.727972333 1052.600833 0.001900055498 +2.495589934e-06 -0.00705603214 -0.0003549593431 0 18.24651369 -21.92159151 959.7351631 0.002083908225 +2.495827033e-06 0.006172958454 -0.00161542756 0 20.01188398 23.30929536 1062.747738 0.001881914144 +2.499345791e-06 0.0009246308776 -0.0002458457253 0 -0.7410137996 12.17771275 1066.479156 0.001875329666 +2.495547408e-06 -0.001538556814 0.01495419977 0 -3.717558852 26.31665536 890.0398593 0.002247090374 +2.499344024e-06 -0.001948649134 0.002322734222 0 -3.455892066 -10.38594623 955.5356901 0.00209306677 +2.497328292e-06 0.007460947135 0.01361796025 0 0.03638688641 22.38842023 968.1449053 0.00206580646 +2.494741834e-06 -0.001946216887 0.01228752373 0 -13.52448074 28.25161023 965.1034975 0.002072316601 +2.497947334e-06 0.008815621017 0.01097108972 0 -14.42433636 16.08646897 1066.0418 0.001876099042 +2.499962772e-06 0.008583628647 -0.003992511663 0 -2.396670939 -0.04588356991 878.4908372 0.0022766316 +2.498997609e-06 -0.003583208169 0.01097338341 0 3.770659037 13.86958707 1014.959717 0.001970521556 +2.497379985e-06 0.0009961430822 0.008835864058 0 8.332307569 19.77823588 937.1889497 0.002134041381 +2.498284267e-06 -0.0008728881832 -0.00565043411 0 -9.198436496 -17.56245258 1069.972907 0.001869206208 +2.499153811e-06 0.006396109085 0.003466881746 0 0.6154327389 -11.38297965 876.1649297 0.00228267525 +2.493251648e-06 -0.008438987588 0.005098283265 0 -27.37401375 21.90227582 953.3010972 0.002097973039 +2.498133936e-06 -0.0005302274041 0.0122251023 0 -15.59594968 -8.380158291 916.2029868 0.002182922375 +2.497352292e-06 -0.00490253598 -0.01154663001 0 -18.1403768 13.76611434 989.2017812 0.002021832186 +2.498489291e-06 0.003166391477 0.004794581006 0 5.710577719 -17.04750782 1034.072126 0.001934101065 +2.498843058e-06 0.003566515823 -0.00284695623 0 7.425415908 12.45973985 953.3623744 0.002097838192 +2.498238955e-06 -0.002626868184 -0.01056770135 0 -19.7650909 2.60023068 1061.964146 0.001883302754 +2.498260251e-06 -0.001553471549 -0.006115142161 0 -16.96889776 -0.547939822 909.9306491 0.002197969705 +2.499591629e-06 0.001537142731 -0.001577519062 0 5.311149107 7.772108947 1041.554121 0.001920207466 +2.495099938e-06 0.003520295233 0.003787117868 0 23.90965837 16.15086478 921.0063894 0.002171537595 +2.498475342e-06 -0.006789958482 -0.01239313436 0 -15.56304993 -8.554740859 1016.775022 0.001967003473 +2.498723688e-06 -0.004220322059 0.007004780676 0 4.468250085 15.57166171 1013.771131 0.001972831874 +2.498052772e-06 0.008316922877 -0.002600954217 0 -0.5359454039 -20.75445686 1051.733768 0.001901621932 +2.499560411e-06 0.008184735365 0.002760070756 0 3.703245391 -9.154438241 1053.112412 0.001899132493 +2.496167059e-06 0.004156104233 0.01183766096 0 -11.24165485 23.77911003 949.4364588 0.002106512744 +2.498077914e-06 -0.003391967868 0.01022839485 0 19.77566397 -6.193922695 1056.636049 0.001892799325 +2.498243122e-06 0.001251351507 0.01251079343 0 -15.64559318 -9.362181116 972.4181416 0.002056728391 +2.499541274e-06 -0.008523403616 -0.002812982358 0 8.669565388 3.020248223 958.4051395 0.002086800162 +2.497656306e-06 0.002445043838 -0.002325885496 0 16.90595324 13.27317888 992.4243075 0.002015267043 +2.496967329e-06 -0.009522004393 -0.003484925211 0 -0.6140247958 -25.22361554 1024.02522 0.001953076898 +2.498561339e-06 0.008376412326 0.006849546167 0 1.876419122 -16.0012209 949.5786456 0.002106197321 +2.498285411e-06 -0.009627514491 -0.01205183581 0 -19.51262514 -0.6576450872 1054.036184 0.001897468066 +2.498529332e-06 -0.002341811378 -0.003969334436 0 -14.20937507 11.33722607 1059.686647 0.001887350384 +2.499405788e-06 -0.005353311663 0.001322874008 0 2.184663533 10.29817309 965.5945798 0.002071262662 +2.498318014e-06 -0.005282398202 0.001524428506 0 -12.56992933 13.86572112 1020.141404 0.001960512525 +2.496665778e-06 -0.0003462855518 -0.002080507209 0 20.40832469 13.30664459 942.9856366 0.002120923079 +2.498768013e-06 -0.003166132839 -0.0110524605 0 -2.119959848 13.70642385 883.4041182 0.002263969523 +2.499282243e-06 -0.003884113133 0.00734316871 0 10.54249555 -6.417623801 1030.012588 0.001941723843 +2.499281488e-06 -0.002071737195 -0.01443998518 0 -6.112190183 11.24496906 1067.551596 0.001873445749 +2.4960563e-06 -0.003618826563 0.01290780511 0 -12.10479928 22.33306013 903.9700534 0.002212462672 +2.499255187e-06 0.004267988047 -0.00166996947 0 -9.689986347 6.144015173 939.9711493 0.002127724879 +2.496736289e-06 -0.005023211045 -0.01266526597 0 -25.28465216 8.483176591 1043.364516 0.001916875617 +2.497265777e-06 -0.002043414642 -0.0002345344168 0 12.43278039 -21.33516235 1055.529556 0.001894783512 +2.497960438e-06 0.005591932023 0.009292688419 0 6.534592209 -17.32219143 916.3855776 0.002182487425 +2.496387168e-06 0.00102426277 -0.009826792537 0 2.22889452 -23.54337054 879.2893932 0.002274564001 +2.499342607e-06 0.004684630479 0.004300345124 0 -9.950027307 5.894676475 1008.502794 0.001983137788 +2.497102261e-06 0.009097596365 -0.00564845948 0 13.78712925 21.03370305 1044.232841 0.001915281652 +2.497850573e-06 0.009783641091 0.008507441387 0 6.553688718 19.83699147 1007.289607 0.001985526294 +2.496466292e-06 0.001112044328 -0.007811385517 0 -15.99815553 20.73672894 984.6604312 0.002031157074 +2.499203621e-06 -0.004416702143 -0.003134450458 0 -3.20454866 -11.61414484 954.5373464 0.002095255893 +2.499931043e-06 0.006456196345 -0.005104660706 0 3.801927975 -0.6075822401 1036.743872 0.00192911678 +2.499991395e-06 0.002767440537 -0.009111383494 0 1.152000057 -0.2915244798 905.8063771 0.00220797739 +2.497498551e-06 0.003446738226 0.001450395877 0 1.089471173 -21.10253781 944.3628208 0.002117830092 +2.495856744e-06 0.002686655708 0.01240990595 0 22.77763043 14.99551244 946.7575 0.002112473363 +2.496927673e-06 0.008445166587 -0.001144374723 0 -16.89453455 -16.41696259 949.8933278 0.002105499577 +2.499250896e-06 -0.006513897362 0.01039995301 0 -6.925661776 8.281664349 881.9069606 0.002267812921 +2.499844156e-06 0.00020790271 -0.006243666743 0 -4.184349548 3.37888378 963.3228182 0.002076147229 +2.496660747e-06 0.005883809868 0.01063910364 0 23.84680998 10.35133806 1005.445132 0.001989168713 +2.496424051e-06 0.0009911527205 0.008536926275 0 21.34749836 -10.05388487 881.8696276 0.002267908926 +2.495229056e-06 -0.003150453409 -0.01258098448 0 16.25922331 -21.83838965 880.7694171 0.002270741878 +2.498591737e-06 0.006323271277 0.01084634431 0 -17.0700363 3.965556116 1043.997986 0.001915712508 +2.499183932e-06 -0.00364284283 -0.009273027666 0 10.19628096 6.520545239 947.2405106 0.002111396185 +2.498260056e-06 -0.006388526703 0.009851782448 0 17.55328382 -4.695160336 973.7955257 0.002053819254 +2.495140089e-06 0.009616141822 0.008719319932 0 27.31899005 8.795684315 919.8906555 0.00217417145 +2.497194501e-06 0.009356996864 -0.008445319359 0 20.917844 -8.978356991 960.5766317 0.002082082714 +2.498696836e-06 0.009710848713 0.01003862895 0 -11.14960066 9.026388991 888.4070933 0.002251220206 +2.499364334e-06 -0.0009935047431 -0.003690496115 0 -10.56742159 0.3803754092 937.7330767 0.002132803086 +2.498262658e-06 0.006104320902 0.00735438158 0 2.26915031 16.96809743 918.1453054 0.002178304445 +2.498342467e-06 -0.009810696556 -0.01080293393 0 -17.05413897 4.973974743 975.4464253 0.002050343256 +2.498800071e-06 -0.005119951055 -0.006477831476 0 14.23341806 1.494034755 923.671913 0.002165270993 +2.49594678e-06 0.007272921903 0.006232964562 0 25.68227752 13.36038226 1016.162619 0.001968188912 +2.495353354e-06 0.008479306768 -0.003581820836 0 14.54110686 -25.99029662 976.2458358 0.002048664308 +2.49986076e-06 -0.007808310781 -0.004638078657 0 -1.384226163 4.710001177 930.2579924 0.002149941217 +2.499609817e-06 -0.006858859635 0.01053831956 0 7.967066008 -0.6047598762 904.4224423 0.002211356006 +2.498689522e-06 -0.001884047166 0.001159071217 0 -2.28386927 -16.85645783 1050.512458 0.00190383273 +2.496813433e-06 -0.006433732361 0.005193821741 0 2.933359906 22.54641158 900.1980146 0.002221733405 +2.496371717e-06 -0.001092656502 0.002473509789 0 12.83497854 -22.85877279 972.6542662 0.002056229093 +2.494444996e-06 0.008727435782 -0.01119411558 0 -18.83365798 -24.03226746 915.2680105 0.002185152302 +2.496317986e-06 -0.002723514345 -0.004537565103 0 -25.36577577 7.843292239 977.8635548 0.002045275121 +2.499487286e-06 0.001202895031 -0.004006513772 0 9.770475136 2.644581016 999.4993334 0.002001001835 +2.495414495e-06 -0.006183572318 -0.01133360065 0 13.02453298 -27.15156096 993.7087876 0.002012662085 +2.497907125e-06 -9.686775506e-05 0.01478876818 0 -18.17051137 -3.517210146 904.3394072 0.00221155905 +2.497969169e-06 1.070189755e-05 0.01285186502 0 17.15015355 -9.031630706 961.4689573 0.002080150363 +2.497531731e-06 0.009437778136 -0.002001839834 0 16.75866539 15.24231406 1019.20873 0.001962306583 +2.495875716e-06 0.0001379612926 -0.006722954172 0 21.20425092 -22.29148217 1070.555435 0.001868189105 +2.499766883e-06 -0.00667001124 0.003028904849 0 1.704036887 6.875932261 1037.427719 0.001927845154 +2.498912553e-06 -0.007681748755 0.01115619061 0 -14.38658004 -2.516270447 990.1726862 0.002019849697 +2.499417394e-06 0.003641690947 8.20570928e-05 0 9.692316319 -5.401986555 1027.846703 0.001945815454 +2.498101518e-06 -0.002668494973 0.004303918127 0 2.333808089 -19.41457857 1003.232069 0.001993556688 +2.499653496e-06 0.005085550137 -0.00224438515 0 4.789077546 -6.468674479 966.7747507 0.00206873421 +2.499065204e-06 0.005128707574 0.0143453014 0 -6.688594447 -11.75886653 989.2382643 0.002021757621 +2.498492553e-06 -0.003870799681 0.0124018235 0 -1.275488312 15.14007969 874.8420437 0.002286126981 +2.492232576e-06 0.009923773929 0.005599282973 0 29.52607151 28.14705941 1033.766409 0.001934673039 +2.497956931e-06 0.005024577528 -0.002752966904 0 8.265558875 18.56588273 1005.058571 0.001989933778 +2.499837523e-06 -0.006551180705 0.008743191948 0 5.350257956 -2.084978486 1007.288009 0.001985529443 +2.496632917e-06 0.002046363344 0.003976580899 0 5.768348488 24.05460283 952.7479692 0.00209919104 +2.498674718e-06 -0.002301041861 -0.000733354229 0 -0.9820638299 14.56387666 896.4099497 0.002231122045 +2.497516132e-06 0.006588272522 0.01408849527 0 2.771825725 22.60337988 1021.347059 0.001958198227 +2.499120893e-06 0.00333382234 -0.003572716343 0 -12.27518603 -1.000051089 928.6916064 0.002153567434 +2.496613223e-06 -0.002035348499 -0.003480477221 0 19.80121074 -17.18948866 1006.997237 0.001986102768 +2.497968642e-06 -0.001353376196 0.002194061803 0 -17.38543406 -11.71577924 1039.788892 0.001923467365 +2.498883747e-06 0.0004743744992 -0.001829590669 0 14.81659516 -1.321895843 995.407645 0.002009227084 +2.498155952e-06 -0.001010740874 -3.495692275e-05 0 11.08590458 -14.54818824 952.154323 0.002100499837 +2.498953963e-06 0.0005300898617 0.0004021251784 0 14.27690865 0.8340414869 988.5927389 0.002023077776 +2.497183271e-06 -0.002535099792 0.01118412627 0 15.30634337 -19.1799522 1033.434501 0.001935294397 +2.49988088e-06 0.002620911235 -0.01325605417 0 -4.517743171 1.263229726 961.0644734 0.002081025837 +2.497729635e-06 0.001305108923 -0.006417303469 0 -10.86487825 -15.37801097 883.3136902 0.002264201294 +2.496627399e-06 -0.009558528201 0.002415783831 0 -25.10933306 -5.026273807 985.4831438 0.002029461399 +2.495089103e-06 -0.004604264777 0.001277197651 0 -23.91713474 -22.2639105 1041.864577 0.001919635281 +2.496232656e-06 -0.008711725627 0.01433955407 0 -20.8065656 -15.65135596 947.9765022 0.002109756935 +2.496546349e-06 -0.007421576083 0.009781800506 0 6.590186755 25.55572822 1003.666158 0.001992694468 +2.49657407e-06 0.00397080719 0.006992866904 0 17.91518018 -19.96690823 1024.30057 0.001952551876 +2.49955017e-06 0.008445564061 0.01420680764 0 -7.340670969 -4.216523499 892.4497415 0.002241022555 +2.498553357e-06 0.005466999365 -0.002247716684 0 11.50196272 10.64518083 921.1651391 0.002171163362 +2.497513587e-06 -0.002346656388 -0.006243272074 0 17.39367907 -11.27609854 929.2106927 0.002152364384 +2.497720392e-06 0.005900892965 -0.004831499322 0 22.33570413 4.157469504 1063.658023 0.001880303591 +2.499637184e-06 -0.006612515021 0.01004520524 0 -4.830996353 -7.670749248 1064.138688 0.001879454269 +2.496324953e-06 -0.006536159259 -0.009028292389 0 -20.81776581 13.61265488 916.9557018 0.002181130447 +2.498560177e-06 7.055775262e-05 0.01352486658 0 14.73297038 -9.727581805 1040.148709 0.001922801984 +2.498230005e-06 0.006325112781 0.001573609246 0 -7.154383098 18.03700722 1031.043507 0.001939782353 +2.497161384e-06 0.004068967798 -0.004105404925 0 16.73886742 -13.79360558 909.9234657 0.002197987056 +2.49916129e-06 0.00405170016 0.006097139439 0 2.831138307 -12.97119048 1024.967333 0.001951281701 +2.496731979e-06 0.009211716088 0.0027037037 0 26.86797819 3.070189371 1057.259587 0.001891683012 +2.497602526e-06 -0.009741928685 0.00857378589 0 -19.70501219 6.090785281 941.549116 0.002124158969 +2.498453789e-06 -0.006831803019 0.008913818935 0 0.6396431713 18.33250939 1042.883956 0.001917758911 +2.499571697e-06 0.001181169772 -0.004854728426 0 -6.238642922 -7.566847809 1059.54421 0.001887604104 +2.497133813e-06 0.007853091466 0.0006996269315 0 22.42731516 -4.124616286 952.0205678 0.002100794949 +2.498318831e-06 -0.0031830979 -0.007936139884 0 14.61250316 9.853291716 960.9025615 0.002081376489 +2.498278423e-06 -0.006257798551 -0.003937575566 0 7.023252104 -17.44174719 1013.04618 0.001974243662 +2.498734749e-06 0.009245857918 -0.0009009366715 0 7.642773374 13.93488183 998.9065802 0.002002189233 +2.499607941e-06 -0.008387084519 -0.002003810231 0 9.138752443 -1.476814396 1045.366076 0.001913205379 +2.495728204e-06 -0.004959603599 0.009707428264 0 -1.738413405 29.80469239 1020.759372 0.00195932563 +2.499354168e-06 -0.0003462960524 -0.003535195312 0 0.641027481 -10.67342491 940.7383936 0.002125989556 +2.497053303e-06 -0.001146490797 0.004524839425 0 19.40267205 16.55072593 1050.055446 0.001904661328 +2.499927397e-06 -0.00962103284 -0.0007565003727 0 3.097223175 1.262211074 877.6882853 0.002278713335 +2.496587106e-06 -0.009299640525 -0.002260192246 0 -21.90805501 -12.80375084 970.7557957 0.002060250383 +2.499779973e-06 -0.007196117523 0.001186973141 0 6.162904893 -2.449666563 999.7041608 0.002000591854 +2.497162428e-06 0.0056825891 -0.01240468077 0 -9.663615156 -18.72557333 884.1664038 0.002262017638 +2.498845808e-06 0.006191854984 -0.00343647978 0 15.26261673 1.39134354 1008.548672 0.001983047576 +2.499678047e-06 -0.00543466046 0.004613767366 0 -0.4327251446 -8.248846619 1029.337147 0.001942997983 +2.49457065e-06 0.003969678688 -0.00396202344 0 22.20431466 -24.50611571 1002.72674 0.00199456135 +2.499004028e-06 0.003607005184 -0.007678866964 0 5.866041126 -12.6672472 988.9368171 0.002022373892 +2.498030602e-06 -0.002233199538 -0.01280297159 0 18.7200407 -8.249167105 1030.461407 0.001940878122 +2.499287409e-06 0.008720167121 -0.005916665518 0 -3.408665082 -11.69568358 1020.345327 0.001960120703 +2.49941596e-06 -0.002138167927 -0.000261922481 0 -2.824688719 9.168024696 887.5521876 0.002253388621 +2.495976336e-06 0.00971120025 0.01088119571 0 -17.23116775 20.20233603 935.450987 0.002138006189 +2.494678551e-06 -0.006664000028 0.000236489817 0 -21.80281897 -18.69879047 879.7353257 0.002273411038 +2.494426374e-06 -0.00308154637 0.001706330969 0 -25.92727621 21.80325586 1013.792272 0.001972790733 +2.499260065e-06 0.002717416235 0.003182655042 0 5.734085285 11.24156243 1037.249005 0.001928177314 +2.494330283e-06 0.006155147003 0.002136026965 0 22.68493744 22.07913621 939.2667547 0.002129320547 +2.497837918e-06 -0.008614943237 0.005500880352 0 -16.88759431 14.46261895 1068.879959 0.001871117502 +2.495182143e-06 -0.00530095927 0.01450947642 0 4.233516074 28.3192894 921.7765353 0.002169723272 +2.499678943e-06 0.005828258446 -0.008396165057 0 -3.619738633 -6.20282173 896.1961804 0.002231654234 +2.499519536e-06 0.001476688231 0.0005082341493 0 -8.936323406 -2.009256279 934.3109557 0.00214061495 +2.497653775e-06 0.00417584592 -0.01038707282 0 -17.39485961 8.532597076 894.1007974 0.002236884259 +2.499214267e-06 -0.00355360074 -7.422500756e-05 0 -11.16325535 2.314836552 909.3457483 0.002199383462 +2.49801275e-06 0.002982990677 -0.002174819964 0 -8.034693106 -16.14931982 904.5014033 0.00221116296 +2.497602848e-06 -0.003230882594 0.000535527498 0 8.526272577 19.0678669 953.5953121 0.002097325747 +2.495342759e-06 -0.006089381459 0.002352966168 0 -22.8791956 17.75091861 948.1612176 0.002109345924 +2.49990438e-06 -0.003941054298 0.003384430376 0 1.212502018 -4.177923681 994.7725576 0.002010509824 +2.492483339e-06 -0.00761739871 0.01101942339 0 -24.56380628 28.00392502 959.653349 0.002084085886 +2.497419216e-06 -0.003714112299 -0.004139993875 0 13.34098246 19.02403126 1022.341267 0.001956293915 +2.49714691e-06 0.009979718071 -0.01362340639 0 22.43406741 5.804199878 969.658417 0.002062582003 +2.496920467e-06 0.005417677476 0.003945105113 0 18.70475554 17.52139549 1032.239862 0.001937534166 +2.497531682e-06 0.007112688702 -0.003310980722 0 14.26575713 16.74326417 989.6425592 0.00202093168 +2.493964169e-06 0.003123746957 -0.006343286466 0 -22.11422441 -27.28121806 1009.852283 0.001980487674 +2.49825373e-06 -0.008649464217 -0.008864771489 0 -5.868842301 -18.32278665 1029.235817 0.001943189274 +2.499003848e-06 0.003389225849 0.003289341128 0 13.31782995 5.246311191 1013.948638 0.0019724865 +2.497708865e-06 0.005476653036 -0.003079595394 0 9.475715067 -19.36885941 1006.954232 0.001986187591 +2.494341935e-06 -0.003054866176 -0.005205434358 0 20.53531298 -22.56002807 906.1000863 0.002207261681 +2.499898188e-06 0.00279856219 -0.01308305957 0 3.74404213 3.042922615 1069.162185 0.001870623585 +2.498126601e-06 -0.00231941856 0.008574391112 0 -16.40364255 11.22273837 1026.508144 0.001948352784 +2.499440518e-06 0.008601072785 -0.001428608629 0 -8.45605302 7.454120366 1065.552103 0.001876961242 +2.498385269e-06 0.004068903578 0.007692490672 0 -14.76517621 -11.45328674 1039.58357 0.001923847258 +2.496312366e-06 -0.00830671093 0.002473509796 0 -26.8442226 6.5123836 1016.575465 0.001967389603 +2.49811621e-06 -0.003788017752 0.006757670722 0 -15.3310091 11.25884078 979.6727911 0.002041497955 +2.497484147e-06 0.0002374174912 -0.0063906403 0 -11.92099062 -18.81216578 992.4818743 0.002015150152 +2.49960371e-06 0.005130907302 -0.004181476815 0 -7.472722925 4.101195016 957.4242513 0.002088938104 +2.497370208e-06 -0.006010846808 -0.01389528742 0 -16.39819223 12.85923891 908.2976359 0.002201921398 +2.496489397e-06 0.004003125657 0.009380055517 0 -16.00577125 -18.25728023 915.823926 0.00218382589 +2.495917631e-06 -0.005556903975 -0.01241299776 0 -4.018982492 -26.72367628 945.1820709 0.002115994433 +2.499755982e-06 0.004791403734 0.008376528081 0 0.7699172725 7.176520042 1033.13422 0.001935856892 +2.495209516e-06 0.0002286017314 -0.002674032936 0 23.45284041 -17.82426165 950.9940075 0.002103062674 +2.498170938e-06 0.003956940924 -0.009633786811 0 -13.17802051 14.03084254 1006.144186 0.001987786668 +2.499142851e-06 -0.0062696712 -0.01428529461 0 6.743006387 -11.97768709 1049.675298 0.001905351115 +2.498557286e-06 -0.004213812766 0.007803166201 0 17.41470126 -3.884762437 1050.176406 0.001904441948 +2.498579727e-06 0.008973832009 -0.01337190403 0 10.61545628 12.29021255 963.368091 0.002076049662 +2.498559795e-06 0.008717688252 0.0024456259 0 -10.60685188 -14.04758641 1036.926101 0.001928777757 +2.498924451e-06 -0.009613467697 0.002509246361 0 -3.462752272 14.83774243 1038.684179 0.001925513106 +2.498906502e-06 -0.008566077193 0.00589616786 0 -8.130788934 13.09505577 1042.123144 0.00191915899 +2.499932536e-06 0.005336654731 -0.01119092128 0 0.6048104385 -3.696860082 1019.796396 0.001961175788 +2.495347131e-06 0.0002989808377 0.01258244775 0 23.12236952 19.23839225 985.3439729 0.002029748042 +2.498740343e-06 0.005366514865 -0.01394310294 0 8.727559077 13.39526703 1007.070935 0.001985957424 +2.497658201e-06 -0.006060127695 -0.01250350404 0 22.77019602 -3.453462429 1063.806568 0.001880041033 +2.499277214e-06 -0.008478607601 0.008832468186 0 7.520622257 -10.43562388 1069.749388 0.001869596769 +2.496734051e-06 0.006041844543 -0.00828094576 0 20.75547037 -15.97418466 1024.278584 0.001952593788 +2.497433664e-06 0.003055864437 0.005355561159 0 -2.252755065 20.23210799 898.2096477 0.002226651657 +2.496550979e-06 -0.009715413661 0.01430081308 0 -23.29991616 -14.5260009 1044.880204 0.001914095024 +2.498974801e-06 -0.003612932181 0.007358485681 0 -3.316750898 -14.67488843 1050.527711 0.001903805087 +2.49997572e-06 -0.009206220647 0.00625658656 0 1.469080856 -1.403081722 921.8629306 0.002169519929 +2.497062934e-06 -0.001161944396 -0.01259698287 0 12.58876934 -22.43921776 1061.11935 0.00188480212 +2.496077153e-06 0.0002062593773 -0.006664425989 0 21.9942862 -14.06269128 931.459568 0.002147167809 +2.498078772e-06 0.005616358472 0.003794025066 0 -13.03734729 12.8920361 935.0919463 0.002138827105 +2.499120928e-06 -0.006808315814 -0.01274262741 0 0.3172652238 12.80982628 966.2555623 0.002069845782 +2.499310866e-06 0.008589307438 -0.01468435451 0 -0.19681627 10.71246801 912.538212 0.002191689042 +2.499056637e-06 -0.006289602499 -0.007230420294 0 12.69887491 -2.796183272 946.5210703 0.002113001034 +2.496756629e-06 0.001290650535 -0.0008635865757 0 22.50212728 13.0786273 1021.401963 0.001958092967 +2.498994497e-06 -0.002814676138 0.005494993001 0 10.01842677 -9.585604162 977.6062991 0.002045813332 +2.496652946e-06 -0.009513995019 0.005926779695 0 -24.11916168 -11.32471094 1029.341472 0.001942989819 +2.499379194e-06 -0.007113286522 -0.01444299001 0 8.56272501 -4.779471708 879.9781075 0.002272783815 +2.496563972e-06 -0.00126721154 0.01147857002 0 -2.369546437 22.95451262 879.8374545 0.002273147148 +2.499028498e-06 -0.005039788666 0.00796307747 0 7.896095495 -11.30616794 989.1897419 0.002021856794 +2.499453535e-06 0.005355189159 0.002432510247 0 -3.64730622 8.581087846 891.8112655 0.002242626974 +2.498652975e-06 0.001887661023 0.01063756262 0 -14.25719393 4.010262028 902.1485846 0.00221692971 +2.494703627e-06 -0.008594219717 0.01374502352 0 -25.8523041 -15.86496594 931.2223885 0.002147714686 +2.499780639e-06 -0.0001470557554 -0.01347036079 0 -3.06697544 -6.042647025 1023.037746 0.00195496208 +2.498544989e-06 0.005800159751 0.008103928061 0 9.049230736 -13.13535647 934.841531 0.002139400031 +2.495781389e-06 -0.006933751041 -0.00526719199 0 -25.38406223 15.47769273 1022.890496 0.001955243506 +2.497478357e-06 0.003491222467 0.0119220926 0 -20.22054926 -10.92079468 1022.94221 0.00195514466 +2.499636164e-06 -0.006802538177 0.008790149731 0 4.204618538 8.018171743 1061.29459 0.001884490903 +2.496296865e-06 0.001303799544 0.0005797171011 0 -21.36008575 -12.55416278 909.8998921 0.002198044002 +2.499265135e-06 -0.001217149771 0.005252900727 0 12.31749506 1.502683777 1023.443285 0.001954187426 +2.496661849e-06 -0.002393548721 0.003016303482 0 1.298708646 23.59828275 914.2216639 0.002187653256 +2.497187796e-06 0.003507850002 0.008158020331 0 21.86597025 -11.09837037 1033.527178 0.001935120858 +2.499087684e-06 0.004229313992 -0.009131129114 0 -11.11619578 -7.062521827 974.8520928 0.002051593277 +2.499034163e-06 0.004352767533 0.002403404913 0 14.07601001 -2.933885388 1034.389611 0.001933507432 +2.496549443e-06 0.009561137971 -0.001725790941 0 -18.72542943 -20.0550799 1043.92447 0.001915847418 +2.496415448e-06 0.001228825119 0.01170542671 0 0.3363551673 26.85974276 1002.697205 0.001994620101 +2.499647392e-06 -0.008066019835 -0.002643198583 0 4.499756499 7.552774675 1046.849189 0.001910494866 +2.498080888e-06 0.0003248190787 -0.01074845916 0 5.237193281 -19.60216122 1035.346909 0.001931719681 +2.49808527e-06 -0.004532551779 0.001893007702 0 19.27345519 -3.235615894 998.392655 0.002003219865 +2.499551115e-06 0.003353974717 -0.01205173766 0 -7.092595401 -6.767333915 1034.55516 0.001933198033 +2.498284743e-06 0.00369699609 -0.00552381583 0 16.04046419 -8.622381737 982.9769644 0.002034635676 +2.499247498e-06 0.00447553663 -0.006892886397 0 10.98352566 0.3877226575 895.7654569 0.002232727311 +2.496000213e-06 0.008356668642 -0.01353954186 0 5.708279268 -25.94792054 938.7954645 0.0021303895 +2.495086742e-06 0.001091777449 -0.008268971457 0 19.63480188 -22.30488352 947.2582124 0.002111356728 +2.497282401e-06 0.004173857956 -0.005573056103 0 -10.00472012 -19.53364125 940.9887321 0.002125423963 +2.499974919e-06 0.001740872902 -0.01354652787 0 -0.6938699952 2.289707532 1068.230179 0.001872255662 +2.497138118e-06 0.009797729584 -0.01233087842 0 -13.9117231 -19.98855192 1017.48631 0.001965628412 +2.496240656e-06 -0.005902806432 0.009678219042 0 2.290403317 25.2277174 923.3033142 0.002166135407 +2.498346411e-06 -0.001025558054 -0.01363205657 0 -14.41277396 12.7513519 1057.925304 0.001890492639 +2.497164708e-06 0.002322446117 0.01421068523 0 -15.0469327 17.33721995 963.6121348 0.002075523883 +2.499365124e-06 -0.004276435575 -0.01165632795 0 -8.048291111 8.422654601 1033.748205 0.001934707109 +2.49690277e-06 0.003497548825 -0.002988718157 0 16.63995328 -16.08054258 929.3187784 0.00215211405 +2.498787343e-06 0.001091249427 -0.01156838967 0 7.108791862 -13.8106404 997.2118516 0.002005591888 +2.497393914e-06 -0.006522231032 -0.0119952653 0 -12.65045625 -15.59684426 879.2907441 0.002274560506 +2.498130194e-06 -0.00979045372 0.002343932684 0 -15.27163134 8.128381965 894.3621078 0.002236230697 +2.499224028e-06 -0.004353193338 0.01484565681 0 -9.720780822 8.689743505 1046.507898 0.001911117923 +2.496419133e-06 0.00683118389 -0.01154795167 0 -16.61047203 -20.98063713 999.4078794 0.002001184943 +2.496946346e-06 0.004817348425 -0.01089247489 0 21.88498144 0.6684482954 885.5736937 0.002258423002 +2.496820666e-06 -0.0003691546014 0.01280737696 0 -22.31265564 11.48073962 994.6343133 0.002010789265 +2.498877136e-06 0.002065778524 -0.007469361692 0 10.19625133 8.325947932 878.2712412 0.002277200831 +2.492524206e-06 -0.003250028742 0.009226005008 0 -26.07999429 28.57196643 999.3334175 0.002001334054 +2.495183894e-06 0.003810081496 -0.0105608867 0 23.64798053 19.09826545 978.7056422 0.002043515347 +2.499152122e-06 -0.005670444588 -0.00106870485 0 -12.06902803 -3.204562001 958.8015061 0.002085937483 +2.497325364e-06 -0.007232748689 -0.003482721085 0 5.465122107 -23.93970216 1061.276741 0.001884522598 +2.499396842e-06 -0.006178066079 -0.01426443936 0 7.596965551 -7.519063889 973.1025087 0.002055281928 +2.497808177e-06 -0.001651158049 -0.001251056304 0 -14.74417924 -12.13149105 911.6461305 0.002193833696 +2.499578342e-06 -0.004054873213 0.006780578764 0 -3.072692399 -8.152201616 948.6322387 0.002108298578 +2.496812997e-06 -0.001232997808 0.0140860224 0 -15.65284157 16.14356332 890.2270208 0.002246617945 +2.498677536e-06 0.003664133851 0.01042132066 0 12.69251257 6.591750016 879.2406657 0.002274690057 +2.497435883e-06 -0.0007939900737 -0.001268686785 0 -7.963455958 -22.4305937 1050.672451 0.00190354282 +2.499371819e-06 0.007886152216 -0.01311093748 0 -9.372236715 -6.334869665 1009.147304 0.001981871221 +2.496947386e-06 0.007386944345 0.006103717661 0 -9.218844008 22.31962706 976.8801094 0.002047334141 +2.497558995e-06 -0.009854453779 0.01463321682 0 -18.08262193 12.27167461 988.6952895 0.002022867936 +2.494201067e-06 0.003361329641 -0.005041721589 0 -22.03414837 -26.77651576 1017.355393 0.001965881356 +2.499576864e-06 -0.007192729991 0.008992319985 0 -9.043314876 1.866002271 1003.688915 0.001992649286 +2.498132514e-06 0.002420105268 -0.00286519831 0 11.51883504 16.05002035 1021.942593 0.001957057092 +2.499537728e-06 0.002557533984 -0.01017418804 0 -4.583967995 -7.905434263 950.324293 0.002104544748 +2.498280502e-06 0.002547621015 0.003389490314 0 10.24881397 -13.63160237 919.4185357 0.002175287883 +2.498522286e-06 -0.007510491656 0.00155307174 0 -10.02250268 -15.34343161 1065.810715 0.00187650581 +2.497257906e-06 0.0001425015228 -0.008217339485 0 12.26340516 19.16196716 971.0699745 0.002059583812 +2.496047592e-06 -0.007450331189 0.001802074551 0 -28.05503378 -10.34268992 1062.866767 0.001881703391 +2.498411547e-06 0.005262473589 -0.01296944633 0 -15.67770116 -9.560166853 1029.982207 0.001941781116 +2.499426021e-06 0.003918446316 0.005321965828 0 -3.083933301 10.17053999 991.8448666 0.002016444373 +2.495499015e-06 -7.773695979e-05 0.01353055607 0 5.135036521 27.05295378 917.146036 0.0021806778 +2.499704973e-06 -0.004636116563 -0.008033246286 0 2.786794242 -7.379077957 1026.80789 0.001947784021 +2.495247452e-06 -0.002843949152 0.01370556933 0 18.08985399 20.91060788 896.1889122 0.002231672332 +2.49597751e-06 0.00741888247 0.01216688829 0 4.184171005 27.27389094 972.2408253 0.002057103495 +2.498644923e-06 0.00874045914 0.01456676841 0 10.94927372 -11.39523676 959.7475896 0.002083881243 +2.498237942e-06 -0.007677711253 -0.0100633796 0 -3.016920321 -18.42120648 994.0900405 0.00201189019 +2.498829214e-06 -0.009641678231 0.01013565218 0 13.50449204 4.910600236 938.8897311 0.002130175604 +2.496225499e-06 -0.007106297817 0.00733393545 0 -7.780097521 25.97121367 986.1951 0.002027996286 +2.497166326e-06 0.002428776943 0.004438282256 0 -20.82328747 -2.105244387 878.7856564 0.002275867824 +2.499378083e-06 0.002507455284 0.001430936451 0 -11.15587476 3.176938841 1039.954497 0.001923161067 +2.497312133e-06 0.008009443074 -0.003069117072 0 -5.095140235 20.18300854 897.4442332 0.002228550729 +2.495908104e-06 0.00688530331 0.01192912088 0 21.99139674 13.49562446 901.3898014 0.002218795905 +2.499257136e-06 -0.002752119652 -0.0008597822045 0 10.0840189 -6.69356755 992.8598 0.002014383098 +2.499689548e-06 0.003956227489 0.008012487721 0 -6.265960146 4.167139792 954.9501105 0.002094350247 +2.498299872e-06 -0.006834880388 -0.01320382358 0 -3.890644867 -16.25615805 906.2465864 0.002206904865 +2.499462295e-06 -0.004008949706 0.004888835829 0 -6.456931162 8.388781202 1020.72839 0.001959385102 +2.497102618e-06 0.008274749219 -0.009227801836 0 9.016265275 -20.52596026 930.910603 0.00214843401 +2.497944998e-06 -0.005523952115 -0.009038037867 0 -15.01127062 14.45825753 1027.731228 0.001946034084 +2.49902169e-06 0.009983434174 -0.009573060523 0 2.551721123 -12.50005626 911.9277729 0.002193156146 +2.497493036e-06 -0.005803032531 -0.0004699049843 0 -22.00911531 8.321079353 1050.417356 0.001904005098 +2.499010157e-06 0.009178573187 0.002111029685 0 -13.26689564 -0.7064685843 944.1076027 0.0021184026 +2.49770641e-06 0.009836319927 0.002822443808 0 -6.907083072 -20.18492445 995.7484637 0.002008539378 +2.49710553e-06 -0.009445286565 0.004671678334 0 8.437031131 -19.3640541 877.5104688 0.002279175088 +2.499212973e-06 0.007410817635 -0.009511983697 0 -11.95748621 3.91978637 1002.865539 0.001994285298 +2.499731826e-06 0.009413010557 0.005355990389 0 3.431598223 -6.264437294 975.2711691 0.002050711703 +2.499317139e-06 0.004418059876 -0.01256311703 0 -10.03245129 -6.671591159 1030.856145 0.001940134916 +2.498836022e-06 0.004575795853 0.002227295204 0 5.871629658 -13.29330606 952.2946452 0.002100190325 +2.496689811e-06 0.008794326764 -0.0004215831449 0 23.82559627 7.801180106 973.8711351 0.002053659799 +2.49888694e-06 0.003910871334 0.002968547142 0 12.62502283 7.022952729 968.117204 0.002065865571 +2.498286739e-06 -0.006719537741 -0.005047361981 0 -5.044304717 16.47395936 930.5081808 0.002149363156 +2.497236264e-06 -0.00730173206 -0.00834430421 0 -25.11939751 0.6397953795 1068.333041 0.001872075395 +2.498092617e-06 0.006060157381 -0.00860937624 0 -16.99187599 4.066190206 894.2832209 0.002236427961 +2.499618692e-06 -0.001767784525 -0.0113284035 0 -7.36607152 -2.809722686 902.7247068 0.002215514857 +2.497108572e-06 -0.000964488443 0.004327383174 0 21.4449767 3.986234272 906.655064 0.002205910582 +2.4968304e-06 -0.004453583276 0.002844802772 0 13.34470552 21.69764519 1011.241013 0.001977767885 +2.499968458e-06 -0.002295271219 0.003463082446 0 1.27228704 1.968729827 933.2677633 0.002143007697 +2.499564804e-06 -0.009222786492 0.007306173218 0 8.344481315 -0.9002659287 899.5525354 0.002223327623 +2.49740197e-06 0.00906763758 0.008305172345 0 14.08779788 19.7241502 1062.919942 0.001881609255 +2.494917741e-06 -0.009320040541 -0.00737667219 0 19.21306498 -26.60607004 1028.58004 0.001944428166 +2.497133709e-06 0.00262894318 0.01279553282 0 8.983793398 21.94468037 989.9502958 0.002020303452 +2.499671332e-06 0.004392995671 -0.0131289748 0 3.016230015 -7.779597815 1029.084407 0.001943475177 +2.494295471e-06 -0.003866265425 0.01074932934 0 14.81372862 29.58871315 978.8090395 0.002043299479 +2.496392635e-06 0.004392158892 -0.004648366668 0 -18.39248631 16.24538719 913.1114597 0.002190313109 +2.495756414e-06 -0.009630297986 -0.01103820201 0 -20.9979194 -18.90828654 969.3081626 0.002063327306 +2.498174165e-06 0.003386163651 -0.009022568443 0 14.92011376 9.334588809 920.7399304 0.002172166031 +2.496541845e-06 -0.00533079986 0.006056170778 0 -12.48427464 21.82326234 955.5079625 0.002093127508 +2.497515733e-06 -0.002046907474 0.01016670835 0 13.06034563 15.01890041 892.5823047 0.002240689726 +2.499883723e-06 -0.00402239074 0.007844554384 0 1.883423003 -4.596782033 1030.108256 0.001941543511 +2.497439276e-06 0.001934260442 -0.002876221708 0 19.48179936 -4.122860977 879.5882085 0.002273791282 +2.498724341e-06 0.008533061869 -0.006020414536 0 4.42729188 -13.93661898 915.312134 0.002185046965 +2.497096011e-06 -0.00143462569 -0.01242337516 0 -11.46856812 -20.39851841 970.6014499 0.002060578006 +2.497628928e-06 0.005703927744 -0.01483351911 0 12.62783802 14.28764057 875.325261 0.00228486494 +2.499256638e-06 -0.005214243634 0.0001976776728 0 10.03647737 -7.453890478 1025.189177 0.001950859455 +2.499600241e-06 -0.008445767532 -0.002960270229 0 4.841587026 -7.409413379 989.8122439 0.002020585229 +2.493485625e-06 -0.006095281891 0.01184112817 0 -24.67673329 26.14520437 995.0414517 0.002009966516 +2.498759848e-06 -0.006565338685 0.00508596865 0 13.8642036 5.411396435 944.8283887 0.002116786523 +2.497154775e-06 -0.0006658429746 0.005871375937 0 20.47015809 -13.32102988 1023.38292 0.001954302697 +2.496854603e-06 -0.00529514614 -0.009568031738 0 -3.813364432 -24.91456006 1004.439577 0.001991160092 +2.49708616e-06 0.004243840496 -0.008313041346 0 23.02568895 10.39131932 1045.990348 0.001912063532 +2.498360175e-06 -0.00621583275 0.01458664824 0 -17.01028624 3.471613371 958.4124822 0.002086784174 +2.498083803e-06 0.002107238951 -0.0130735915 0 -18.76404671 -0.3151442128 958.3580903 0.00208690261 +2.498436398e-06 -0.007162196864 0.002158993059 0 -15.85087607 -8.08365074 1005.940952 0.001988188268 +2.498919065e-06 0.006879287176 0.001796855021 0 -13.2593408 -6.799134749 1013.278403 0.001973791205 +2.499607799e-06 0.007335212003 0.002295541365 0 5.706223197 7.449286158 1059.441 0.001887787993 +2.498625451e-06 0.003767638155 0.0001713988488 0 -16.08779516 3.148641735 988.4944016 0.002023279036 +2.496634893e-06 0.006140117403 -0.003887918873 0 23.59662892 7.462972047 953.494315 0.002097547902 +2.496643451e-06 -0.0001546521578 0.001421006795 0 -18.95300752 20.26664278 1070.414266 0.001868435487 +2.499292436e-06 0.009791180748 -0.005047312954 0 -3.311304274 11.57302885 1011.788961 0.001976696798 +2.498479224e-06 -0.007288177214 0.0003163029836 0 17.02673763 2.245429692 984.5295984 0.002031426991 +2.498342197e-06 0.0007605377259 0.005630100856 0 17.63325265 1.047787499 969.8582364 0.00206215705 +2.498936621e-06 -0.008062214591 -0.003025797929 0 -5.912243456 11.93141607 912.9404081 0.002190723493 +2.49930095e-06 0.002685223259 -0.005962571609 0 -6.896421738 8.299622385 912.5246629 0.002191721584 +2.497913154e-06 -0.0009026822355 -0.001554362441 0 19.23036471 -1.363430973 943.3657551 0.002120068477 +2.498574053e-06 0.008931162921 0.0008785953582 0 -4.591067348 15.45281685 954.369146 0.002095625166 +2.498630546e-06 0.004195520268 -0.003252229379 0 -13.50911961 10.34292953 1027.840445 0.001945827302 +2.499369017e-06 -0.006130777523 0.004191431422 0 7.492084876 7.880457566 967.8414532 0.002066454163 +2.499893309e-06 -0.004264177023 0.01342621253 0 1.675513946 -4.29088744 997.1881422 0.002005639573 +2.499672903e-06 -0.002771338387 -0.003888893744 0 5.571068302 5.579881947 974.8153359 0.002051670636 +2.4996842e-06 0.009330969937 0.004717725066 0 -3.329339831 7.652800164 1050.070658 0.001904633736 +2.497076044e-06 -0.0009476384101 -0.001871799999 0 4.510210996 -21.58941595 911.6451633 0.002193836024 +2.496117354e-06 0.009298914489 -0.001293253137 0 -17.95240607 -21.69473172 1009.929324 0.001980336596 +2.49939002e-06 -0.0001783370413 0.01147778029 0 -8.599714947 -5.726153324 935.3175274 0.002138311259 +2.498480435e-06 -0.009068252323 0.004902831079 0 -16.37396345 -5.833264019 996.8410571 0.002006337907 +2.498622906e-06 0.0008322681906 -0.005311870328 0 -7.365812657 -14.2954922 968.8163143 0.002064374815 +2.49969353e-06 0.007518135365 0.01040234845 0 4.398124567 -6.109303132 961.4721346 0.002080143488 +2.49875205e-06 0.005430869823 -0.00561962236 0 5.452395099 15.49051773 1039.28166 0.001924406133 +2.496316702e-06 -0.007212507948 -0.005237442318 0 -2.839166864 -28.21573075 1044.252096 0.001915246336 +2.499098574e-06 -0.007046114001 -0.009618120838 0 -10.5410748 -7.792371314 976.1521944 0.002048860835 +2.496819449e-06 -0.004113666173 -0.01486679971 0 18.22111698 14.28133788 917.4765676 0.002179892185 +2.497337808e-06 -0.0029060147 -0.01069878393 0 17.95293689 16.35279711 1051.999364 0.001901141833 +2.497458329e-06 0.00980164052 0.01304456573 0 23.15014874 -2.053381431 1030.422064 0.001940952228 +2.497339323e-06 0.007357656476 0.006422319291 0 -6.204971754 20.47648236 927.1451264 0.002157159589 +2.496262233e-06 0.008097468223 0.00895006584 0 27.53823861 -6.424987934 1033.668168 0.001934856912 +2.499086901e-06 -0.008868859042 0.01280466223 0 4.473496314 13.08101186 1022.881804 0.001955260121 +2.496701274e-06 0.009129135502 0.005702159812 0 19.2923196 -17.5746267 1015.523352 0.001969427877 +2.499373996e-06 0.004226251738 0.008978877675 0 7.958372088 -7.697117677 989.390475 0.002021446588 +2.497714426e-06 0.00398854515 -0.01157695323 0 -21.07671097 -3.424748685 998.389984 0.002003225225 +2.499712553e-06 0.006427348023 -0.009181529239 0 -7.304186379 -2.446912862 1015.911901 0.001968674644 +2.497232832e-06 -0.005971293994 -0.001949985176 0 -23.98171059 6.464151148 1055.351057 0.001895103992 +2.495007319e-06 -0.008912813393 0.01158799564 0 -23.17389718 24.39536559 1064.013386 0.0018796756 +2.49696238e-06 -0.004989076327 0.001607734307 0 -24.4423972 9.416900328 1062.225595 0.001882839211 +2.495709502e-06 0.0001147318957 0.01093845333 0 21.61329797 18.82710476 977.8679569 0.002045265913 +2.498973627e-06 -0.008959749392 0.01118776703 0 0.5778449637 -14.88353394 1039.438226 0.001924116267 +2.49540946e-06 0.0004147611372 0.01126941694 0 15.33887414 27.72094774 1044.87101 0.001914111867 +2.499762089e-06 -0.008594847717 0.006195643076 0 -5.445166266 4.210457747 997.8145821 0.002004380409 +2.494269294e-06 0.001300923359 0.004067834895 0 22.63285621 21.33319895 917.9084657 0.002178866493 +2.495701787e-06 0.0004753327137 -0.01306958187 0 -21.65865604 -16.51248545 928.3086527 0.002154455842 +2.498988536e-06 -0.001450996445 -0.007288523074 0 13.44953109 -6.527033102 1050.932994 0.001903070901 +2.497873007e-06 0.008902125987 0.004282191549 0 -4.590551063 -21.36443655 1059.145522 0.001888314645 +2.495776704e-06 0.008966350341 -0.009345330696 0 -10.87551897 -23.21679962 881.5858773 0.002268638883 +2.499568311e-06 0.009666208192 -0.01308697385 0 -8.324921453 -2.272860814 928.672359 0.002153612069 +2.499438491e-06 -0.006119761663 -0.0001065696194 0 4.735965464 8.590616124 925.5946936 0.002160772975 +2.498113836e-06 -0.003674270753 0.003897882127 0 -10.58813778 15.886587 982.6899233 0.002035229987 +2.497457997e-06 0.005973627907 0.01277529318 0 -9.280747265 18.49036599 917.2048219 0.002180538035 +2.497288291e-06 -0.005716804033 -0.006882902768 0 -24.03924491 -3.345132096 1041.770522 0.001919808593 +2.49784635e-06 -0.007178248228 0.01329812351 0 -9.956202789 19.53813968 1056.254553 0.001893482963 +2.499581715e-06 0.002921789512 -0.006104340765 0 4.467003956 -8.100354227 1011.304998 0.001977642753 +2.498787445e-06 -0.002278132765 -0.00772939601 0 0.6805420368 15.67178794 1007.124004 0.001985852776 +2.498029321e-06 0.005230328087 -0.008801549287 0 17.09661483 10.48457687 1009.90566 0.001980382999 +2.497811097e-06 -0.008499817564 0.01431718174 0 10.14249075 18.91453718 1025.427951 0.001950405192 +2.498821582e-06 0.009504461573 -0.01185306992 0 -1.869416963 14.17547561 931.194151 0.002147779814 +2.499226564e-06 0.002702935226 0.00259413067 0 -0.98091281 11.05869025 892.5404775 0.002240794732 +2.498469572e-06 -0.008354714871 0.01476060695 0 -12.1645501 11.01919788 937.9437555 0.002132324021 +2.49948272e-06 -0.003994862079 -0.008005480031 0 4.375697253 9.801315222 1055.20818 0.001895360592 +2.496868876e-06 0.007777265827 0.005218262644 0 11.53864872 18.93371061 885.6213869 0.00225830138 +2.497126201e-06 0.005445059659 0.01162277054 0 21.56202268 -1.471493295 901.089548 0.002219535233 +2.497022379e-06 0.008363482906 0.0115165385 0 8.641654981 23.91523212 1041.548715 0.001920217433 +2.498507833e-06 0.002204051246 0.006221638522 0 -5.097665513 -17.09357509 1032.316917 0.001937389543 +2.49841269e-06 0.001389580206 0.004600041022 0 16.49645064 0.5951439892 926.2401274 0.002159267279 +2.499617101e-06 0.00437108878 0.005622424863 0 7.025328989 -3.920121981 919.2763504 0.002175624337 +2.497696408e-06 -0.009191858796 0.01216535441 0 -21.90808503 -1.462500249 1022.591137 0.001955815896 +2.495963077e-06 -0.003041057768 0.0009100364358 0 22.44520633 16.49665304 979.7313417 0.002041375952 +2.499902211e-06 -0.004864245025 -0.0141244023 0 -1.630378532 -4.379653074 1056.708634 0.001892669308 +2.499264834e-06 2.401974518e-05 -0.01050990032 0 8.803564407 9.550458288 1071.075337 0.001867282283 +2.496789778e-06 -0.00693162634 -0.00347315718 0 8.067794983 -22.52346666 943.7489625 0.002119207628 +2.499906326e-06 0.006661276105 -0.008025362834 0 3.279116552 2.189545419 910.9360389 0.00219554383 +2.496770464e-06 -0.001116228374 0.009831975542 0 24.84015622 -7.191100626 1017.032371 0.001966505745 +2.49857116e-06 0.009496107046 0.005766075079 0 -10.5828434 -11.99781633 946.1778417 0.002113767531 +2.498316381e-06 0.005283284588 0.002969022242 0 -13.33071585 9.363166804 887.5338586 0.002253435157 +2.497030327e-06 -0.001534331585 0.0008510384476 0 10.14008446 20.86431907 951.4484077 0.002102058277 +2.49681289e-06 0.007101078806 0.008882372654 0 11.8362071 18.91018928 883.1991906 0.002264494829 +2.496322987e-06 6.885723677e-05 -0.01322848634 0 -2.80948266 -26.52477408 983.0417922 0.002034501499 +2.498544089e-06 -0.009517649701 -0.006343623544 0 -5.278979435 14.70794305 915.5618598 0.002184450978 +2.496638792e-06 -0.004935603328 -0.0007179091615 0 6.261329835 -26.46192621 1048.25999 0.001907923625 +2.496049848e-06 -0.004068319821 -0.01116938055 0 18.39534035 16.62843051 881.6991719 0.002268347373 +2.498846837e-06 -0.009121650122 0.006590202029 0 13.23301419 5.298210774 938.4452178 0.002131184604 +2.497477142e-06 0.003497709734 -0.003295541117 0 9.622040411 -17.50123289 888.7785659 0.00225027929 +2.498892909e-06 -0.009434971716 -0.007975234268 0 6.912082672 11.23541694 886.3598842 0.002256419808 +2.498919059e-06 0.004896082743 0.01483188913 0 3.300891264 -13.75678007 962.0239294 0.002078950366 +2.496720855e-06 -0.009226474734 0.00538101051 0 -13.84966692 18.16186286 891.4303701 0.002243585217 +2.496335334e-06 0.002399768438 -0.009158287772 0 -22.08772506 -13.70948668 959.7180101 0.00208394547 +2.497938367e-06 -0.002704279418 0.002171620459 0 -13.24777114 -13.65702578 936.7202079 0.002135109271 +2.496601102e-06 -0.003839944885 -2.231086604e-05 0 -20.79933137 11.73993105 915.5849721 0.002184395835 +2.498771036e-06 -0.006172913597 0.01230196318 0 15.65856649 -0.6123870781 999.35388 0.002001293075 +2.497249857e-06 -0.007446394828 0.0001147399354 0 -6.639337865 20.70704873 926.8204863 0.002157915184 +2.497925033e-06 0.005391264674 0.0001686152886 0 8.630967993 17.73941172 968.0985992 0.002065905272 +2.497903268e-06 -0.006858988972 -0.005827856362 0 -15.08179837 14.17962171 1010.563506 0.001979093831 +2.499704333e-06 -0.002978404742 0.006507820096 0 -6.142843522 -3.037122437 891.0911262 0.002244439363 +2.498535112e-06 -0.008651144835 -0.0001839565742 0 11.10980154 -13.6053184 1025.977268 0.001949360928 +2.498194922e-06 -0.009290735153 -0.004584467034 0 -16.38928042 10.31895396 1019.029504 0.001962651712 +2.495623816e-06 -0.007136807898 -0.009007313743 0 12.85995569 -27.81366119 1035.093715 0.001932192198 +2.496314081e-06 0.0002376892511 0.01194835406 0 -12.73010452 21.43442677 917.6751147 0.002179420546 +2.49708737e-06 -0.006285333047 0.009531807995 0 22.12482437 13.08830589 1064.61191 0.001878618849 +2.497448027e-06 0.001038103867 -0.01236727087 0 -20.90677271 -10.80714048 1041.33723 0.00192060741 +2.499343154e-06 -0.008099318882 -0.00292350549 0 10.10434715 -0.5588793758 882.8399891 0.002265416185 +2.498724941e-06 -0.003142686714 0.008065179053 0 0.5907443844 -15.52871303 972.9403233 0.002055624535 +2.498366357e-06 -0.004438868472 -0.00486593232 0 18.90171591 -2.850351665 1057.264947 0.001891673421 +2.496121261e-06 -0.003502019779 -0.01186612904 0 -15.16510447 -20.02109565 901.2415811 0.002219160813 +2.497908048e-06 -0.001229971964 -0.001114823276 0 -18.23392967 10.4595239 1027.363116 0.001946731363 +2.497738213e-06 -0.006712049935 0.003182640688 0 -4.167215724 -21.68750791 1037.992542 0.001926796117 +2.497426504e-06 -0.007321456731 0.004568453331 0 3.858084964 21.91286682 980.3560459 0.002040075142 +2.499020716e-06 -0.006445323508 -0.005871943817 0 13.31010662 -4.670730657 1007.780089 0.001984559947 +2.496168526e-06 0.006491391151 -0.003368836977 0 28.19984255 6.736107427 1046.763575 0.001910651122 +2.498679785e-06 -0.0009067374701 0.004193705397 0 12.37021383 -10.2582943 988.7826758 0.00202268916 +2.498070394e-06 -0.002551211808 -0.008535358335 0 -7.375609767 -19.29807068 1051.34403 0.001902326873 +2.496822315e-06 0.006196511108 -0.01129604042 0 23.136418 -10.33248809 1004.634998 0.001990772771 +2.496659729e-06 0.0001870695129 -0.01245107909 0 -18.90281756 16.56455206 971.9236945 0.002057774711 +2.49585559e-06 -0.004682992878 0.004677161258 0 20.08133964 -22.15255876 1037.889843 0.001926986774 +2.497002494e-06 0.009118628795 -0.00270425481 0 -10.88581893 23.49717148 1057.175857 0.001891832836 +2.497231965e-06 -0.002713294253 0.00924072708 0 16.50278186 -12.95598012 891.3400201 0.002243812636 +2.499293425e-06 -0.007619531658 0.0002067635441 0 -11.18855956 5.743156696 1057.836771 0.001890650858 +2.49843937e-06 8.180787321e-05 -0.008709498283 0 17.5227566 6.528676585 1058.188091 0.001890023161 +2.498498974e-06 -0.00331776611 0.01337934067 0 13.9145471 8.859932967 951.8482777 0.002101175205 +2.497981194e-06 -0.003111903002 0.009141603943 0 17.18720983 -11.85721751 1038.834466 0.001925234544 +2.496069131e-06 0.0007628076011 -0.01121205632 0 21.29366669 -12.3212106 876.8909622 0.002280785282 +2.499506713e-06 0.004220799333 0.007851051113 0 -9.269080292 -3.623629408 1001.895895 0.001996215385 +2.498032084e-06 0.004054632802 -0.003524628833 0 3.771596551 -19.44857495 998.2926325 0.002003420575 +2.497456505e-06 -0.003747431408 0.007992420041 0 -21.82919283 5.701292329 999.932105 0.002000135799 +2.49983956e-06 -0.006529940143 2.629262628e-05 0 0.5829384186 -5.025998927 893.1855871 0.002239176302 +2.498165184e-06 0.00515225227 0.005004865935 0 13.50513832 -12.52125694 961.1214561 0.002080902458 +2.498174775e-06 -0.002856213506 -0.0007542600646 0 -20.12225856 -2.614920963 1061.746963 0.001883687987 +2.498587933e-06 0.005831351266 0.005461029899 0 4.987425219 14.38253521 905.6453269 0.002208370032 +2.498895647e-06 0.00993857081 0.01437084762 0 -4.258960473 -14.60664854 1023.594711 0.001953898334 +2.499959336e-06 0.002246189429 -0.004313293914 0 0.3923587119 2.545776974 903.2183329 0.002214304036 +2.498050662e-06 0.003181063882 0.003504516121 0 -3.192498063 19.2905603 989.9805193 0.002020241773 +2.497805582e-06 -0.008217475247 0.0004074470792 0 18.20653976 2.331163666 875.8724472 0.00228343751 +2.496993094e-06 0.009632414719 -0.004302742488 0 25.80200454 2.046594793 1054.980536 0.001895769572 +2.499970988e-06 -0.002064101654 0.0004809081601 0 1.563875514 -1.425406373 878.443806 0.002276753489 +2.497666043e-06 -0.004184415108 0.01329477676 0 19.19725062 -4.268483232 909.9218526 0.002197990953 +2.495167919e-06 0.0007195994304 -0.01166400407 0 19.71929776 -26.23893071 1055.061242 0.001895624558 +2.496381558e-06 0.005391162108 -0.006327912239 0 25.96717246 6.40229572 993.6361579 0.0020128092 +2.498518408e-06 -0.002654239442 0.01417726504 0 -15.64123874 1.939402616 915.3945329 0.002184850278 +2.49764839e-06 0.009016649439 -0.009016735798 0 -8.150091626 20.73980954 1027.156452 0.001947123046 +2.499993501e-06 -0.002234394657 0.0005138255493 0 -0.5356803975 0.956143887 961.2871438 0.002080543793 +2.495931059e-06 -0.008217096063 0.009939292087 0 -18.04399091 20.51856745 957.2430757 0.002089333473 +2.497230162e-06 0.009530663155 0.006942377875 0 -6.998705492 19.89816704 895.8138336 0.002232606737 +2.498169611e-06 0.0003971006814 -0.002123803692 0 16.64393215 -8.915250965 986.5637926 0.002027238395 +2.499384998e-06 0.006807782063 0.01124544787 0 6.042366834 9.499646137 1015.04846 0.001970349278 +2.495987531e-06 -0.007360008098 0.0008387247333 0 -21.75819031 15.59281154 944.3700812 0.00211781381 +2.498470638e-06 0.003921516612 -0.01352155505 0 10.27608651 14.12916577 998.7223766 0.002002558516 +2.496829098e-06 -0.003025015802 -0.002624167863 0 21.89048067 12.80248292 1006.526078 0.00198703247 +2.499385054e-06 0.002309682518 -0.00444716722 0 -0.6716154221 -10.13357775 915.6743934 0.002184182516 +2.496406769e-06 -0.004270888995 -0.01029216453 0 17.31083726 -15.83101325 874.585904 0.002286796518 +2.4980653e-06 0.009607637394 -0.005468211095 0 2.660140208 -18.47419583 948.5797469 0.002108415245 +2.495683417e-06 -0.004807288833 -0.002044723844 0 18.44288478 -24.2996146 1037.570669 0.001927579547 +2.496722171e-06 -0.006470045196 -0.002336461453 0 -25.49312866 7.545937619 1037.860499 0.001927041257 +2.499209465e-06 0.001925347578 -0.01083181261 0 12.79344015 -3.764505924 1060.454493 0.001885983805 +2.496134434e-06 0.002177003189 -0.01473906428 0 -21.64540948 17.48415843 1000.13477 0.001999730496 +2.499358265e-06 0.004979528757 -0.01112097257 0 2.536606652 10.74005867 974.0000666 0.00205338795 +2.499038227e-06 0.00442524198 -0.001888424009 0 5.301566221 13.51939065 1046.89801 0.001910405771 +2.498027959e-06 0.00867041138 0.005863958616 0 5.310848679 -16.76513555 885.2600906 0.002259223048 +2.499943284e-06 0.009718302255 0.006608344351 0 -2.028414571 -2.613837649 982.3554178 0.002035923011 +2.499977618e-06 0.006197878141 0.009551306118 0 1.020526023 1.561019969 881.4844926 0.002268899812 +2.497889423e-06 -0.00761105713 -0.01470007025 0 -15.67378218 10.56882571 919.8233191 0.002174330612 +2.497951365e-06 -0.001311012842 -0.0119672546 0 -16.52233924 -13.72535958 1060.829013 0.001885317969 +2.495480012e-06 0.0005896587903 -0.01008619385 0 -4.135718607 -28.3190523 951.2242989 0.002102553522 +2.497205151e-06 -0.001669793352 -0.00385249519 0 -23.31777544 4.409248882 1003.320266 0.001993381443 +2.496454791e-06 0.009105821494 0.006935297437 0 -13.88567338 -18.71708511 874.7609325 0.002286338959 +2.496972148e-06 -0.009166248795 -0.003250605951 0 -23.00846522 7.014375793 977.0260989 0.002047028224 +2.498051078e-06 -0.001904423758 -0.002424258899 0 18.76946087 -8.420474358 1041.674715 0.001919985165 +2.49744322e-06 0.004706062875 0.0002757247235 0 -23.09664599 -6.203454143 1057.173173 0.001891837639 +2.499447762e-06 -0.003982271012 -0.005297408891 0 10.07729522 -4.250428649 1040.601265 0.001921965759 +2.498375535e-06 0.005269367341 0.00309122629 0 15.4829488 -9.190077056 998.6575309 0.002002688548 +2.496817739e-06 -0.00225576011 -0.006186422899 0 18.51606745 -15.83209854 965.2061493 0.002072096206 +2.499968579e-06 0.008054670901 0.005731544998 0 -0.5606392128 2.150843664 886.6603285 0.002255655222 +2.495647796e-06 -0.004576583412 -0.01409804229 0 1.821133623 -30.8606077 1047.143019 0.001909958776 +2.494999355e-06 -0.004945189808 -0.002729621495 0 22.37705794 22.14535253 994.7535279 0.002010548285 +2.498785019e-06 -0.003779297173 0.005045522545 0 14.58015564 -5.62048197 1002.231001 0.00199554793 +2.499389585e-06 0.00616590492 -0.01471753486 0 -10.39542093 0.7371846299 943.1132547 0.002120636085 +2.498472918e-06 -0.009218640761 0.006923381661 0 5.207788247 15.12128914 914.919539 0.002185984575 +2.499112197e-06 -0.008943460677 0.01117351007 0 0.8007578658 -12.98722962 976.3587038 0.002048427481 +2.498425879e-06 0.003802031409 -0.0135335985 0 10.58928341 -12.54020634 924.8128866 0.002162599623 +2.496313871e-06 -0.00215555422 0.003052565104 0 -20.94920135 17.78032914 1011.429399 0.001977399511 +2.499613443e-06 0.006601369008 0.005593955966 0 -8.144617907 4.390623811 1052.255447 0.001900679162 +2.498637395e-06 -0.007205632259 -0.01334120285 0 -5.581688845 -16.7415871 1068.798086 0.001871260836 +2.496488641e-06 0.009379548035 -0.004813386253 0 23.51312006 -3.559142566 896.9081233 0.002229882803 +2.498572422e-06 -0.002486333558 0.01497723511 0 -10.64327942 13.79922739 1031.129081 0.00193962137 +2.499447163e-06 0.004256894286 -0.01139881647 0 -5.885475638 -8.215130785 960.9948554 0.002081176594 +2.497254944e-06 -0.001428242209 0.002984999581 0 -9.282158584 -18.3101923 875.7676707 0.0022837107 +2.4973522e-06 0.003488945812 -0.001947147623 0 -18.53749737 -10.05477845 916.0553054 0.002183274294 +2.499693755e-06 0.002436476219 -0.009447662174 0 7.386199075 1.135166923 954.8182693 0.002094639435 +2.498798233e-06 0.000309530138 -0.01227859316 0 -10.08223676 9.226992182 881.3980873 0.002269122237 +2.49664767e-06 -0.0004767246218 0.01320460962 0 0.3066430133 26.85820068 1036.807919 0.001928997611 +2.497428083e-06 0.008629370839 -0.007544477074 0 12.8001429 -19.34256828 1022.283657 0.00195640416 +2.497983806e-06 -0.003509333893 -0.01428349465 0 18.81817907 -4.093991081 958.7532627 0.002086042445 +2.497102318e-06 0.004514966002 0.003611068432 0 16.50208542 -16.48662521 968.5480564 0.002064946583 +2.497132611e-06 -0.002168664765 0.004286052631 0 19.53426995 9.680652874 909.9970394 0.002197809348 +2.498405265e-06 -0.009051877474 -0.002256430497 0 -12.75258326 11.82432079 973.5505636 0.00205433603 +2.499609466e-06 0.006143513294 -0.004483701373 0 8.586769246 2.176150024 1002.252946 0.001995504236 +2.495627604e-06 -0.0007539372193 -0.01126251475 0 -23.23185053 15.58389809 945.3740318 0.002115564774 +2.495000257e-06 0.003390411362 -0.001150287241 0 -21.09337896 -25.93128461 1056.287449 0.001893423994 +2.499783676e-06 -0.009075889839 -0.002379410674 0 -5.841230326 0.4391812683 890.5269634 0.002245861251 +2.497919094e-06 -0.004618417751 0.006475981737 0 20.54349937 4.826010254 1034.098973 0.001934050853 +2.497330864e-06 0.006286505302 0.0148425479 0 -0.3798375698 24.32768922 1052.639005 0.001899986596 +2.497078003e-06 0.001590565946 0.002899029215 0 18.15889509 14.52134699 961.3880336 0.002080325457 +2.495103191e-06 -0.004326907857 -0.002263325772 0 18.28068521 -20.81645307 884.6075617 0.002260889559 +2.495410764e-06 -0.0004840244912 0.01437689525 0 -8.866648355 29.07648406 1002.687345 0.001994639716 +2.497716435e-06 -0.00234822615 -0.008046372256 0 13.74693424 12.92427439 882.5994492 0.002266033592 +2.499973743e-06 0.009222123506 -0.01334462492 0 -0.5788557248 2.126380169 961.6628133 0.002079731037 +2.499186062e-06 0.002997144596 0.008729145436 0 -12.11035109 0.6256199266 950.3241431 0.00210454508 +2.498187469e-06 0.007652031598 -0.008748161397 0 -14.19224956 -11.66443532 964.6006382 0.002073396928 +2.497432654e-06 -0.003963770624 0.01423615709 0 -20.14791243 10.14894828 995.1958458 0.002009654691 +2.497769683e-06 -0.00451887772 -0.01420494405 0 -13.87587618 -15.07149165 969.6624685 0.002062573385 +2.494034436e-06 0.006087602666 -0.002711372073 0 28.15250102 -22.27322372 1038.33945 0.001926152377 +2.499424059e-06 -0.001056119823 -0.005367335135 0 -9.17919258 2.933857345 897.8108337 0.002227640751 +2.497644503e-06 0.008627715106 0.008734292679 0 7.625528487 -18.30980257 913.494624 0.002189394384 +2.498066086e-06 0.00414707494 -0.0003162806598 0 5.686118401 -17.45347596 933.0971755 0.002143399479 +2.495709455e-06 0.008731505512 -0.004479493126 0 22.80312555 -17.00402347 970.4102153 0.002060984075 +2.497899984e-06 -0.006608846411 -0.008482374754 0 6.196370553 18.45371188 949.5524517 0.002106255422 +2.499614827e-06 -0.005323440772 -0.002349126718 0 -3.706104082 -6.764870397 878.7914995 0.002275852692 +2.49739265e-06 0.00737260743 0.01191325027 0 21.66501138 -0.4924098749 948.6072345 0.00210835415 +2.499425577e-06 -0.001382059292 0.00358335427 0 2.296553483 -9.105269836 876.0260603 0.002283037104 +2.497425139e-06 0.009533699439 0.003101101094 0 -17.1048001 -16.6478523 1051.412145 0.001902203631 +2.49454878e-06 0.005555949509 -0.0141776577 0 -13.9336205 -31.52833684 1043.095663 0.001917369682 +2.498266619e-06 -0.003265355867 -0.01311465013 0 -13.58760056 9.28872832 883.7556692 0.002263068934 +2.499621986e-06 0.003045463194 0.005600806174 0 1.859307752 7.632823685 903.4598445 0.002213712112 +2.498214062e-06 -0.004664333952 0.008546391001 0 -6.303223758 15.41059662 880.7355239 0.002270829262 +2.497959785e-06 -0.009780528951 -0.01088940031 0 -12.30705448 15.81434095 991.7166916 0.002016704989 +2.499600764e-06 -0.00227509317 0.01398047375 0 -3.575749891 -7.19631974 899.227636 0.002224130932 +2.499242002e-06 -0.003214104655 -0.007696972182 0 4.523074025 10.8532222 954.8499064 0.002094570033 +2.498866836e-06 -0.009832612984 0.001047309902 0 1.425362299 13.99414854 934.2271539 0.002140806967 +2.496813928e-06 -0.002211235003 -0.001358754316 0 -18.37458272 -14.03875513 915.6078096 0.002184341351 +2.499583509e-06 0.008466767282 -0.01362215027 0 0.793289149 9.644742744 1060.253184 0.001886341895 +2.497952089e-06 0.006213222006 0.004749551006 0 -0.7862557651 -19.89183697 983.3540291 0.002033855499 +2.497496253e-06 0.006777819218 -0.001001043704 0 5.984658214 -22.6902908 1048.263674 0.001907916919 +2.499878851e-06 0.005017664027 -0.01233691722 0 -5.261599563 -0.3398999132 1071.124134 0.001867197215 +2.495694532e-06 -0.004276328166 -0.003212751872 0 21.74588042 -19.80992697 1001.801402 0.001996403675 +2.498990593e-06 -0.003479959378 0.01261730182 0 -14.34435541 3.75364872 1043.397363 0.001916815273 +2.496335629e-06 -0.001303858976 -0.01415928293 0 -24.20612742 -8.907003841 952.2386989 0.002100313716 +2.498852401e-06 -0.001929345699 0.005253808033 0 13.15216546 7.944650951 1014.052159 0.001972285136 +2.498268903e-06 -0.001302416301 -0.01155883977 0 0.1459670858 -17.40090575 934.9721278 0.002139101199 +2.497707871e-06 -0.0006025053095 -0.0144977732 0 -18.21551353 -8.840138975 945.3292349 0.002115665026 +2.497963932e-06 -0.006841052421 -0.004792919811 0 -21.15723345 -1.869000935 1052.211371 0.001900758779 +2.499484651e-06 -0.00944361296 0.01495590938 0 0.6543893675 -10.84420581 1070.01025 0.001869140973 +2.496933971e-06 -0.00966481078 0.008675969476 0 19.85000489 17.5810177 1070.311521 0.001868614847 +2.496230099e-06 -0.005515773408 -0.01374665468 0 -25.47408156 14.07992114 1059.40093 0.001887859396 +2.497348504e-06 0.004238521252 0.006618937931 0 -15.61043607 16.85246958 997.1414286 0.002005733533 +2.496800981e-06 -0.0090447442 0.002418737956 0 -3.265826766 25.05167321 998.3070692 0.002003391603 +2.49540109e-06 0.006298783333 0.0004778249608 0 20.42255778 24.21695473 1043.819532 0.001916040024 +2.49677513e-06 -0.001846084478 -0.01185206916 0 24.58175274 9.135254076 1032.10304 0.001937791018 +2.498114436e-06 -0.008823080561 0.002663465375 0 4.742669329 -19.38943578 1027.601465 0.001946279825 +2.497730381e-06 0.004886160349 0.006317283686 0 20.1436595 8.604264959 1027.758181 0.00194598305 +2.497720499e-06 0.006220617406 -0.00896932146 0 9.091727058 20.11701278 1033.567224 0.001935045882 +2.495605064e-06 0.008864404168 0.01244038036 0 -16.99131788 22.04461672 938.1679219 0.002131814522 +2.49373861e-06 -0.0005294409674 -0.0122248794 0 21.16892188 -29.25823015 1019.548561 0.001961652516 +2.497578627e-06 0.000888498514 -0.004098271143 0 -10.1478333 -20.05029842 1020.796204 0.001959254936 +2.496132904e-06 0.005453654048 0.01445063788 0 29.04999033 -4.546104612 1056.672207 0.001892734556 +2.497581472e-06 -0.006900643827 -0.01144316208 0 -12.88843304 18.67438024 1031.311254 0.00193927875 +2.499222321e-06 0.006315849898 -0.005548447869 0 7.701018288 10.03887394 1014.399467 0.001971609869 +2.498900583e-06 9.376239963e-05 -0.01185585266 0 11.22044163 8.593213271 952.941812 0.002098764032 +2.499880639e-06 0.00446879433 -0.005092401111 0 -3.365871452 -3.36439323 974.0087472 0.00205336965 +2.49928762e-06 0.008312362242 -0.002547311112 0 -10.62999786 -3.444410799 936.0428455 0.002136654331 +2.499990967e-06 -0.005697970293 0.001178136345 0 -1.009388548 -1.024171481 1069.86172 0.001869400468 +2.492597652e-06 -0.003233024795 -0.008072928877 0 -26.85625738 -28.77965788 1021.920187 0.001957100002 +2.49620083e-06 0.008064965075 -0.01160887971 0 21.43754606 11.27880248 878.2749878 0.002277191116 +2.496808034e-06 0.004445835752 -0.01022212611 0 17.96859118 17.06092035 980.1953656 0.002040409565 +2.499864637e-06 -3.740268294e-05 0.003669737934 0 -2.990642897 -3.801869443 929.6463273 0.00215135578 +2.497790185e-06 0.009698312953 0.005872651739 0 -5.695887157 -21.65797668 1064.886358 0.001878134681 +2.497856841e-06 -0.00236157137 -0.0001835506666 0 -15.56699622 -13.92672949 1008.563736 0.001983017958 +2.497860529e-06 0.006558998842 0.01077872819 0 -14.52635013 -12.37816351 922.3217271 0.002168440731 +2.498862737e-06 -0.004515048466 -0.001026156032 0 -3.612363945 13.1343842 903.0755468 0.002214654142 +2.498977699e-06 -0.003893477973 0.01234354502 0 -2.753419047 13.18970933 942.1647253 0.002122771047 +2.495622356e-06 0.009608026259 -0.01097051305 0 1.127372345 -29.88958028 1010.201238 0.001979803554 +2.499990568e-06 0.005471506361 -0.005386187264 0 -1.373181816 0.383425118 1038.028397 0.001926729563 +2.498113604e-06 0.008437503795 0.01241597541 0 -1.654783488 18.16386412 938.7472769 0.002130498857 +2.495406524e-06 0.0006512712454 -0.01058622629 0 -17.07291578 -24.46415467 983.5687555 0.002033411481 +2.496493314e-06 -0.006555983676 -0.007451934486 0 -5.321127973 -27.18692173 1045.516945 0.001912929303 +2.499129878e-06 -0.006976348371 0.004929966449 0 12.92162608 0.1064434953 979.4228942 0.002042018838 +2.496916146e-06 0.006564634596 0.00619112076 0 7.474472633 21.30690655 908.7808323 0.002200750642 +2.495777219e-06 -0.003507665154 0.001651983226 0 -16.05572209 -21.06050148 910.6928018 0.002196130239 +2.499032012e-06 -0.001726591731 0.006734423402 0 -11.41592019 6.693901094 950.9748814 0.002103104971 +2.498159697e-06 0.007204770935 -0.0144829201 0 -14.3316129 9.054795861 883.3890449 0.002264008153 +2.499486147e-06 -0.007848774251 0.009349180846 0 8.795185162 1.712061263 883.7980175 0.002262960496 +2.494998605e-06 0.005350709842 0.0124927858 0 -7.754967432 29.80303039 972.9711026 0.002055559507 +2.497999979e-06 -0.003110848246 0.01119112812 0 15.86679754 -11.51390742 979.9116051 0.002041000423 +2.499889019e-06 0.0009820765955 0.003395914191 0 0.2033127336 -4.362816996 927.0232058 0.002157443295 +2.499586405e-06 -0.00163681868 0.01318202352 0 -8.239204656 -5.162797688 1068.995221 0.001870915754 +2.498450255e-06 -0.0004844410205 0.01365238359 0 -17.84464154 -4.907509842 1050.978091 0.001902989242 +2.498542071e-06 4.801599309e-05 -0.01433130328 0 14.0218876 10.75439302 1034.634865 0.001933049105 +2.498796021e-06 -0.006971273506 -0.007557220228 0 16.35747025 1.912965193 1061.116107 0.001884807881 +2.495463312e-06 -0.003048968837 -0.01461302807 0 9.949865073 -29.69009127 1038.828465 0.001925245666 +2.49782276e-06 0.0008795009507 0.0003043900291 0 -14.38505585 -16.66114581 1054.502123 0.001896629658 +2.499244437e-06 0.003511319128 -0.01352131 0 -3.834144559 10.21418938 887.420106 0.00225372401 +2.49938925e-06 0.006707413383 -0.01320286439 0 9.961440525 -2.211354813 923.1690162 0.002166450525 +2.496807792e-06 0.005603507594 -0.01383477105 0 -8.060851167 -22.61263021 949.6396151 0.002106062098 +2.499574792e-06 0.006687249211 0.002668764079 0 1.560034415 9.430359498 1036.447516 0.00192966838 +2.496505956e-06 -0.003006666936 -0.000912854257 0 18.31715432 18.22346507 976.9118208 0.002047267683 +2.496858865e-06 -0.006712223333 0.003745538313 0 -24.31403632 0.9812325125 970.3923378 0.002061022045 +2.497098094e-06 0.007172518065 -0.004563833051 0 21.2306126 8.544553175 949.5448209 0.002106272349 +2.495644191e-06 0.008466591695 0.009153362203 0 21.64675471 20.50388202 1009.520952 0.001981137682 +2.497359812e-06 -0.003997077486 -0.004517366798 0 15.58180798 -15.04984553 942.3590194 0.002122333377 +2.499230719e-06 0.004882144481 0.005704352113 0 3.375334474 11.80277813 989.5702913 0.002021079268 +2.496255821e-06 -0.00911864257 0.009991187872 0 -20.46921775 19.33954884 1028.492455 0.00194459375 +2.499394758e-06 0.008264243621 0.008055143484 0 6.522871259 -9.201012468 1025.027546 0.001951167076 +2.496347732e-06 0.002087385426 -0.01331096456 0 7.078416465 -27.87865702 1063.66105 0.00188029824 +2.498543659e-06 -0.009535023686 0.001022981009 0 -10.99489591 11.51765874 932.7931286 0.002144098127 +2.498858485e-06 0.003264960605 0.004885445929 0 15.38524653 -2.408131503 1030.457526 0.001940885431 +2.499614705e-06 -0.00931913198 0.006306894547 0 2.510365689 -8.489052415 1008.386389 0.001983366716 +2.498605502e-06 -0.006195612433 0.01033561531 0 -15.94483217 7.689677893 1059.773482 0.00188719574 +2.498519745e-06 -0.007768809912 -0.008069389758 0 15.04469962 3.448611857 896.8582923 0.002230006699 +2.497577266e-06 0.007497978671 0.004864632112 0 -15.60793725 12.77226206 915.8657659 0.002183726125 +2.499326307e-06 -0.002518622288 -0.008893130659 0 -11.35133554 4.677333455 1057.5731 0.00189112223 +2.49638612e-06 -0.009464215473 -0.01320973939 0 7.838560643 -24.89614753 970.3298262 0.002061154822 +2.496487164e-06 0.007726822793 0.002461564459 0 15.21770855 18.84880706 913.4671265 0.00218946029 +2.49739592e-06 0.007142712218 -0.001740693448 0 17.13089593 15.08115618 999.6983576 0.002000603467 +2.496653001e-06 -0.007153930692 0.00883165308 0 7.807790291 22.82049454 931.7560523 0.002146484582 +2.49712501e-06 0.002338904473 0.004173381517 0 22.44227327 0.2759655694 935.5760346 0.002137720427 +2.498478224e-06 -0.008767985664 0.01334366381 0 11.55912163 -11.74836654 944.507265 0.002117506211 +2.496986243e-06 0.0008580174996 -0.003030797916 0 -2.839713419 -23.53152341 964.9925563 0.002072554847 +2.497150343e-06 0.005724440045 0.005804535672 0 11.5821694 -19.09641304 935.1359452 0.002138726471 +2.499254715e-06 0.00518361988 0.0005027524126 0 5.760590608 -10.40057238 973.7170844 0.002053984707 +2.496308933e-06 0.00841556191 -0.004702443474 0 -8.47929223 -24.72462472 961.4885155 0.002080108049 +2.495860285e-06 0.001308391448 -0.009116480998 0 -8.735849793 -27.92105529 1016.111814 0.001968287321 +2.497974193e-06 0.004193728091 0.007838434638 0 -11.37394111 -15.88020875 970.1263105 0.002061587216 +2.497163238e-06 -0.007002352104 -0.004413058022 0 -17.31895596 16.14636833 993.6538588 0.002012773344 +2.495239693e-06 0.001731963521 -0.004679461434 0 16.75651021 -27.54574448 1044.190079 0.001915360087 +2.497710369e-06 0.007139109164 -0.005217927815 0 19.40276276 -10.89365137 1039.481 0.001924037092 +2.498984074e-06 0.004855729048 -0.01169911218 0 -12.24978317 -7.180918392 995.996156 0.002008039878 +2.496598009e-06 0.00632609182 -0.004482316249 0 -3.775089716 -24.14342294 936.3552006 0.002135941573 +2.495760047e-06 0.005368316127 -0.009608596978 0 -13.92480414 -25.97049593 1011.299168 0.001977654153 +2.495926037e-06 0.002413449567 -0.008836328269 0 22.93162047 16.8451801 996.2109223 0.002007606979 +2.497068555e-06 0.003561965576 0.002945998865 0 -24.62283215 7.583954407 1063.583922 0.001880434593 +2.496955432e-06 -0.005505125937 -0.01334055066 0 12.2691655 -18.95819738 914.7146771 0.002186474154 +2.498667089e-06 -0.001630505119 -0.01057741637 0 1.40178965 -15.24304819 937.3421514 0.002133692587 +2.498660877e-06 -0.008195532905 -0.001496669508 0 15.85001415 -7.497199953 1071.177196 0.001867104722 +2.498904214e-06 -0.007567331176 0.008692316702 0 -3.196544229 15.16487221 1046.71709 0.001910735975 +2.49971735e-06 0.002444145945 -0.01431673772 0 6.731328419 1.025811314 905.5822604 0.002208523828 +2.496399033e-06 -0.005851476262 -0.009687065778 0 21.09851093 15.0538236 965.2711192 0.002071956739 +2.496882782e-06 0.006898594326 0.007342255537 0 -18.51182329 -17.65260667 1023.970319 0.001953181614 +2.499837738e-06 0.009635542426 -0.006465021421 0 0.5196558721 -5.517960348 972.8854716 0.002055740432 +2.49746438e-06 0.00834544233 0.004045620365 0 3.104847863 -20.88950873 937.4557714 0.002133433983 +2.498101493e-06 0.003483890444 -0.01373363136 0 -11.97364225 13.7857134 936.8004438 0.002134926401 +2.498359793e-06 0.001873969347 -0.01423719355 0 -10.58212094 -15.48506344 1035.278778 0.001931846805 +2.497222661e-06 -0.004553400432 0.01156853247 0 12.9308452 20.93101144 1043.469732 0.001916682333 +2.495274033e-06 -0.005682844035 -0.01256512733 0 -28.39778765 15.39642834 1049.964212 0.001904826829 +2.497515452e-06 0.005791926235 0.01312501037 0 18.55029743 -8.64486795 917.7559482 0.002179228589 +2.499169181e-06 -0.00346513154 -0.00859515449 0 7.915031898 -8.233376013 885.8835384 0.002257633101 +2.497171417e-06 -0.005437187175 -0.007980434666 0 19.96161617 8.670520623 914.623239 0.002186692744 +2.499709886e-06 0.005729014664 -0.001579482201 0 -7.025530074 -1.328423023 938.618878 0.002130790299 +2.498731864e-06 -0.007849492277 0.001265287902 0 -4.193394536 13.3815799 880.3752895 0.002271758447 +2.497473361e-06 -0.008451663624 0.01269171276 0 -21.38315415 9.569280143 1041.741287 0.001919862469 +2.494723109e-06 0.003800863754 -0.01355578915 0 -15.67253287 -26.69273615 952.0596316 0.002100708751 +2.497900417e-06 -0.001294183251 -0.01458575769 0 21.2420449 5.153063374 1066.338315 0.001875577358 +2.499501032e-06 -0.008040009877 0.004875187555 0 -8.1771302 -5.994922684 1014.897622 0.001970642118 +2.499706458e-06 0.00856599499 0.01361047651 0 -1.240396448 7.741654683 1023.219576 0.001954614676 +2.496649528e-06 -0.006273447052 0.01457111183 0 -4.365035251 25.3417114 992.8836685 0.002014334673 +2.499682946e-06 -0.009863899243 0.00528429657 0 7.442780036 -2.889994567 1002.599688 0.001994814106 +2.498123176e-06 -0.0004144274071 0.01119838284 0 -13.05654085 14.8618799 1020.781597 0.001959282971 +2.496869613e-06 0.003927916093 0.002625917837 0 -19.80982358 13.08420185 948.3686858 0.002108884477 +2.499976965e-06 0.005427207826 0.0002399066719 0 0.7098347839 -1.831017775 914.9194039 0.002185984898 +2.499999165e-06 -0.003763379287 -0.01062430668 0 0.3224191624 0.2794425544 1043.820083 0.001916039012 +2.498264817e-06 0.003174717501 -0.0002747603087 0 -18.15427517 -1.416546977 977.2288261 0.002046603566 +2.495144413e-06 0.004835296469 -0.01429558759 0 -15.12618311 -26.46418086 977.4429889 0.002046155144 +2.499358611e-06 0.00593693044 -0.004249206742 0 10.303131 0.2414373294 909.8520869 0.002198159491 +2.498591219e-06 0.0006059209071 0.01263191534 0 -3.392188652 -14.38178234 880.1176533 0.002272423457 +2.495281236e-06 0.009209064925 0.0008027109434 0 20.56105034 18.55179935 900.8240538 0.002220189383 +2.498284028e-06 -0.002802640982 -0.002550892658 0 -7.310335246 -14.71870105 886.880841 0.00225509438 +2.499587694e-06 -0.003783412939 0.004370766892 0 8.744010387 -2.307214004 995.8051261 0.00200842509 +2.498999992e-06 0.003264862979 -0.01425793379 0 -7.138994262 -12.32268622 1006.855072 0.0019863832 +2.497438536e-06 -0.003414574503 -0.01257853367 0 -1.135834405 -22.12743736 978.5352565 0.00204387117 +2.498495469e-06 0.005267135589 0.01334051751 0 13.25751377 10.38959777 970.7785886 0.002060202011 +2.498188852e-06 0.0005649948213 -0.007780217521 0 -15.62791105 9.464772653 959.7143705 0.002083953374 +2.498264265e-06 0.001071261405 -0.00875851779 0 8.250028668 14.98647454 917.9309014 0.002178813239 +2.497320996e-06 -0.003296211618 0.01449664118 0 4.590904961 21.34200963 942.7173113 0.002121526757 +2.498098207e-06 0.0035493084 0.003593490806 0 -18.41184117 2.957261439 955.8892315 0.002092292636 +2.495795552e-06 0.00700841974 -0.00662642916 0 9.740183709 -24.21881362 899.6311981 0.002223133218 +2.497714774e-06 -0.008664121851 0.01018854682 0 19.58219039 -8.104593344 990.9816139 0.002018200915 +2.499183668e-06 0.002602679641 -0.007699149612 0 -9.397533023 -7.676294695 949.5329221 0.002106298743 +2.497077164e-06 -0.008772408422 -0.008665373619 0 -22.9060823 1.034573652 947.9503281 0.002109815188 +2.49816536e-06 0.002703174809 -0.00678996447 0 -1.026166555 -19.93282364 1041.678256 0.001919978639 +2.496463489e-06 -0.00125446951 0.002737893113 0 -23.95920369 6.93779476 937.3974624 0.002133566689 +2.496308583e-06 0.009642274403 0.008398759018 0 16.99235628 -16.96559448 883.2312998 0.002264412505 +2.498302226e-06 0.005875482471 -0.009820017507 0 -10.70025703 -14.54310547 979.5837176 0.002041683589 +2.496965165e-06 0.004415689274 0.002417883463 0 -18.82818809 -15.15252373 980.5350219 0.00203970277 +2.499937853e-06 0.008291861569 0.004104991788 0 3.193889256 1.101415005 958.2742789 0.002087085132 +2.499479857e-06 0.003422491541 0.008143422408 0 -7.057036584 -5.934413225 903.9567466 0.002212495241 +2.499088322e-06 0.002708903928 0.01068171313 0 8.726479563 9.980799443 981.6906085 0.002037301755 +2.496549685e-06 0.002769796634 -0.009575414336 0 -1.516237111 -24.40087066 930.1925491 0.002150092475 +2.497761868e-06 0.001523278463 -0.009605262831 0 20.57535869 -3.103745423 983.1720315 0.002034231992 +2.498928013e-06 -0.005182017023 0.01223260547 0 -6.433842954 -11.47355959 898.2346711 0.002226589625 +2.499378956e-06 0.006167166731 -0.001512035318 0 -9.488772545 2.636445481 883.5714689 0.002263540721 +2.498661862e-06 0.003551119352 -0.01023268984 0 7.848781862 -14.42505788 1003.636253 0.001992753843 +2.498650307e-06 0.008835474881 -0.003984165327 0 13.74388904 -10.35043462 1046.994773 0.001910229211 +2.498037406e-06 0.002356127044 -0.005959804219 0 -4.317119645 17.31352985 900.3793568 0.002221285934 +2.498822858e-06 -0.002320663626 0.002280777774 0 10.74683462 11.35637544 1018.824352 0.001963046915 +2.497297451e-06 -0.008829041156 0.008663489255 0 18.42010066 11.53858401 934.5337529 0.002140104618 +2.498136652e-06 -0.005742568681 0.008553377108 0 1.614066745 -17.74983644 922.9946115 0.002166859887 +2.497157645e-06 -0.003183829649 0.01320976838 0 -21.45283894 -5.503819275 928.5116264 0.002153984876 +2.496236524e-06 -0.006124966792 0.01402975745 0 15.96047844 20.54737561 947.8015968 0.002110146265 +2.498463196e-06 0.004707045103 -0.01154418548 0 -0.8218733507 -17.02279541 971.8787741 0.002057869822 +2.497930097e-06 -0.007319411323 -0.01318167358 0 -20.30648039 1.072390798 999.11294 0.002001775695 +2.497397795e-06 -0.0003206477035 0.006243613476 0 3.431582962 22.31493134 989.2716559 0.002021689379 +2.495823918e-06 0.005288091772 0.002076374965 0 25.95411762 14.85496348 1034.109478 0.001934031205 +2.497789244e-06 -0.004624907086 0.006526561738 0 -19.77546109 9.804044455 1049.346426 0.001905948265 +2.497384567e-06 -0.004880359429 0.004669788417 0 9.883678475 -18.54358879 918.4036027 0.002177691806 +2.493795542e-06 0.007259319103 0.01051436051 0 28.92213604 21.60342784 1023.843663 0.001953423234 +2.497669182e-06 -3.362591378e-05 -0.0008962802589 0 18.66448296 -9.1590469 962.6025271 0.002077700758 +2.496070771e-06 -0.00412256496 -0.000733482556 0 -25.50569968 -7.114323689 944.0216739 0.002118595426 +2.498433224e-06 -0.0002183953533 0.005502489377 0 12.45328025 13.88932769 1053.580022 0.001898289601 +2.497678656e-06 0.009341907403 -0.010327721 0 14.52698762 -14.11516272 939.7221683 0.002128288624 +2.499440917e-06 0.007251955699 -0.01212177778 0 -6.053800275 -7.787495549 932.7230449 0.002144259232 +2.498161904e-06 0.008959438517 -0.01127882635 0 -4.108352531 16.51614763 887.4147377 0.002253737644 +2.497237297e-06 0.007394895516 -0.006899823546 0 -16.86356378 18.36846112 1060.36718 0.001886139101 +2.496401664e-06 -0.006611605245 -0.008821864498 0 12.91328419 -21.6146998 938.0510281 0.002132080175 +2.496935297e-06 0.007528303713 -0.00629986943 0 -16.99770488 -14.69194816 907.0684837 0.002204905182 +2.496439959e-06 0.009898445257 0.007536829489 0 23.56460507 7.624562293 927.6966737 0.002155877084 +2.498699006e-06 0.007052898356 0.01330540637 0 6.91557139 15.69444416 1063.016717 0.001881437957 +2.495168446e-06 0.00854973088 0.01404283373 0 18.24203315 22.40076874 928.660475 0.002153639628 +2.496504121e-06 -0.005139897177 0.006584137911 0 -24.83169484 -2.286048165 942.5793254 0.002121837331 +2.497027921e-06 0.003262378005 -0.01375463082 0 24.13887437 6.0117037 1019.871214 0.001961031914 +2.497516551e-06 0.006383140371 -0.01053545547 0 19.90166641 -0.3156238526 892.7699187 0.002240218849 +2.498761917e-06 0.002812844412 0.00586360344 0 -13.00053399 -5.052666973 886.2118601 0.002256796698 +2.497616984e-06 -0.008032373046 -0.01120325084 0 12.57117505 17.65156019 992.2836555 0.002015552699 +2.497466874e-06 -0.005723509374 0.004959424166 0 -5.809464573 -22.79868802 1044.869649 0.001914114361 +2.497411578e-06 -0.00123982199 -0.0139066536 0 -4.27212654 -23.74306307 1059.874153 0.001887016486 +2.498430716e-06 -0.001154368999 -0.00717411574 0 -13.4471473 9.842774621 940.4259392 0.002126695911 +2.496213979e-06 0.000293949428 0.008360679543 0 -12.21042985 23.88438186 974.2707605 0.002052817431 +2.496386651e-06 -0.004228115864 0.01109971322 0 -17.32487482 21.10578984 1015.194121 0.00197006657 +2.49722386e-06 0.008166627842 0.001117992424 0 11.15747789 -20.12395332 976.1151903 0.002048938506 +2.498520611e-06 -0.004548098552 0.01069515031 0 -8.263464176 12.99153977 894.9136209 0.002234852564 +2.499176122e-06 0.009364744159 -0.007389528556 0 -11.81956914 0.5405158603 921.6271379 0.002170074988 +2.496331913e-06 -0.007131312187 -0.001442029935 0 -13.45934386 25.48698933 1063.552137 0.001880490792 +2.499613831e-06 -0.003290769216 -0.004758058735 0 7.564709254 -4.019334093 974.6744166 0.002051967268 +2.49996005e-06 -0.003614709945 0.006343586196 0 1.282130044 -2.687205584 1053.329046 0.001898741906 +2.499238552e-06 -0.00470203965 -0.00104086125 0 10.96911015 1.508124829 897.1252416 0.002229343137 +2.496460289e-06 -0.003875127588 0.003522960402 0 8.439360561 27.12014256 1066.923079 0.001874549384 +2.496915129e-06 0.005413442072 -0.01362260745 0 21.62480396 -11.39785966 983.6715982 0.002033198888 +2.497493432e-06 0.0003767176485 -0.0027632426 0 -21.54006345 6.108995437 999.6045256 0.002000791262 +2.498975171e-06 0.004320443049 -0.00842683662 0 -3.299552893 -13.44988784 967.1670755 0.002067895042 +2.497198091e-06 0.00483417986 -0.008971641159 0 -22.99817767 8.675077217 1037.90142 0.001926965281 +2.498897569e-06 0.0060333928 0.01351064738 0 5.948528195 12.68140139 943.1706567 0.002120507022 +2.499045129e-06 -0.004194431445 -0.002528740922 0 -9.275105466 -10.35146581 1005.615567 0.001988831584 +2.498492293e-06 0.004488437166 -0.01451283609 0 18.26448707 -3.22644528 1067.845348 0.001872930387 +2.499803072e-06 -0.0008050851384 0.01265849298 0 -5.99943166 0.5615840612 960.1140047 0.002083085957 +2.493529158e-06 -0.0007364318008 0.01112387311 0 19.86458722 30.6115283 1013.398996 0.001973556327 +2.496548684e-06 -0.001264131898 0.008999459033 0 13.07347401 21.18926453 947.1717189 0.002111549532 +2.494319826e-06 0.004904926647 0.01366384797 0 25.81540965 24.5725019 1056.518771 0.001893009433 +2.498634666e-06 -0.005802415949 0.002570343988 0 -6.834093533 15.28828057 1013.196784 0.001973950205 +2.497311705e-06 -0.00117471477 0.01109601721 0 15.09579168 16.99514502 979.9368756 0.002040947789 +2.49587099e-06 -0.009323914926 -0.01484401979 0 0.6951969851 -29.71644919 1033.733413 0.001934734792 +2.498121514e-06 -0.00441423811 0.005930162247 0 -3.915883849 -19.17649038 1009.482348 0.001981213446 +2.497530056e-06 -0.003610498458 0.001203700569 0 19.71575774 7.006456694 941.063873 0.002125254255 +2.498131711e-06 -0.006041734926 -0.01338872238 0 -11.77442211 -14.12492606 951.0344428 0.002102973257 +2.495799522e-06 -0.002461924558 -0.01372536076 0 -23.59246247 -18.02768413 1023.759611 0.001953583614 +2.496546066e-06 0.005429620985 -0.01435974853 0 26.07194552 1.8663594 993.999516 0.002012073414 +2.497539658e-06 -0.004955934794 -0.01349470572 0 -23.56237843 0.3257428641 1061.909679 0.00188339935 +2.498615722e-06 0.00731285641 -0.0004446806805 0 -12.48625229 -11.61330907 1024.618218 0.001951946553 +2.496782956e-06 0.008719570753 0.01081698839 0 18.48086628 -13.99422009 913.4563515 0.002189486117 +2.499446405e-06 0.003513791431 0.005948018844 0 -9.850188473 -4.633016239 1034.417032 0.001933456177 +2.496916881e-06 0.000690615247 -0.007406147893 0 -13.53324648 19.25598013 947.3727389 0.002111101489 +2.498409452e-06 -0.0007549152849 0.01363886541 0 10.97676991 -14.22086916 1006.984318 0.001986128249 +2.499370504e-06 0.002321648211 -0.005315495962 0 3.436012437 9.296512344 883.2272939 0.002264422775 +2.494911702e-06 -0.006596981538 0.00045163173 0 -20.4712857 22.39343183 950.3599021 0.002104465893 +2.499133931e-06 -0.00943376861 -0.01467030919 0 12.65774147 -1.392921873 967.4365638 0.002067319011 +2.495656761e-06 0.008794427519 -0.006227047804 0 22.61915109 -12.90598047 883.0205005 0.002264953077 +2.497361356e-06 0.003824593155 8.38377513e-06 0 -21.30505197 -12.26165239 1069.626496 0.001869811572 +2.49698639e-06 -0.004836551799 -0.01318515828 0 22.35066857 11.31744181 1019.997906 0.001960788339 +2.496592952e-06 -1.736510545e-05 -0.01399999986 0 21.06381618 13.18920276 951.5711972 0.00210178703 +2.497166454e-06 0.0060711959 -0.01281215756 0 20.6560161 14.60728617 1062.28257 0.001882738224 +2.496038147e-06 -0.008862732365 -0.01404335052 0 -22.59724552 -16.59322009 995.3610694 0.002009321101 +2.497605986e-06 0.006986321621 -0.007621745362 0 -5.045922232 -22.39199994 1048.611135 0.001907284726 +2.498988993e-06 0.001812598519 -0.0007632068172 0 -12.54645905 0.3268547076 882.4916987 0.00226631027 +2.499695838e-06 0.00962990853 -0.00427671867 0 -2.970496202 -7.264994994 1006.276299 0.001987525695 +2.496474553e-06 -0.003251984403 0.005442453604 0 9.494843922 21.60890393 888.4100333 0.002251212756 +2.497119233e-06 0.007975817192 0.007363566686 0 23.42611994 -9.092755111 1046.445363 0.00191123213 +2.497945478e-06 -0.008074827436 0.006833164981 0 18.43634408 -7.53528875 982.2351802 0.002036172233 +2.497671561e-06 0.009543469083 0.003968050147 0 -4.486373149 -21.73453024 1028.043634 0.001945442716 +2.499655953e-06 0.007442824575 0.005699389838 0 7.8060319 -1.239903506 952.7837735 0.002099112155 +2.497397155e-06 0.007116232361 0.01215554199 0 20.19164275 -12.30041678 1035.853158 0.001930775598 +2.497866704e-06 0.004569758079 0.01105056188 0 -11.17874146 -15.97330617 943.5729872 0.002119602858 +2.499203738e-06 0.002655214397 0.001958912266 0 12.8826218 -3.93858346 1067.364558 0.001873774041 +2.499395402e-06 0.001196756302 -0.01066612194 0 1.992838595 -10.30999534 954.8519097 0.002094565639 +2.495414792e-06 0.00911502501 -0.0128692496 0 15.96733639 -26.73547445 1027.624647 0.001946235919 +2.499944905e-06 0.004008593648 -0.006994210747 0 3.259463281 -0.1663597591 983.1883476 0.002034198234 +2.499992043e-06 0.001960938149 -0.01309998309 0 0.09218200354 -1.328000744 1055.248065 0.001895288952 +2.496292699e-06 -0.004305790858 0.008027292523 0 4.435845017 26.54122376 987.6832067 0.002024940777 +2.496841153e-06 -0.005007513249 -0.01499900363 0 12.46467608 -21.36075547 983.4817317 0.002033591408 +2.496823125e-06 0.001679846677 0.001577266334 0 1.813980548 24.00652274 954.6483636 0.002095012233 +2.499405661e-06 0.002715504775 0.002511184243 0 10.8669213 2.25008043 1017.773848 0.00196507309 +2.498924964e-06 -0.0002692420594 -0.01172513128 0 11.53110073 -9.237761144 1007.471765 0.001985167296 +2.498416802e-06 -0.002300128164 0.01015957827 0 7.954477758 -13.96410689 902.9240347 0.002215025764 +2.49893579e-06 -0.003425701079 0.008081628217 0 3.070913432 14.47999094 1014.434005 0.001971542743 +2.498964417e-06 -0.001860318664 0.00941437524 0 14.9023314 2.98776182 1055.934518 0.001894056843 +2.499333567e-06 -0.007988058561 -0.01004173129 0 10.10809287 -4.853535032 971.1433502 0.002059428198 +2.49717601e-06 0.009029192463 -0.0005161171546 0 0.3443205247 -24.24857494 1019.998104 0.001960787959 +2.4968497e-06 0.0028066243 0.004628830338 0 2.338947277 25.26174525 1010.230961 0.001979745303 +2.49998034e-06 -0.007890960113 0.01392375117 0 0.8168230544 -1.916593419 1050.653889 0.001903576449 +2.499597187e-06 -0.007489665993 -0.004983063054 0 1.81209713 7.828286956 895.1753422 0.002234199163 +2.495741834e-06 -0.006232536938 0.003851889709 0 -22.25152541 13.81844724 896.9814434 0.00222970053 +2.496000053e-06 0.007201111536 0.007225652549 0 26.92350468 -9.849383731 1012.984414 0.00197436404 +2.498644296e-06 -0.00534374306 -0.01404032944 0 -4.500932185 16.16616553 1018.903734 0.001962893975 +2.496272853e-06 -0.006163933459 -0.008025567506 0 5.206285027 -23.76936641 890.7318028 0.002245344776 +2.498993729e-06 0.004153110306 -0.001415012497 0 9.343258339 -10.0024204 964.6791751 0.002073228128 +2.495595269e-06 -0.004843648458 -0.00985461419 0 -22.75892713 17.17988731 960.0961938 0.0020831246 +2.496077046e-06 0.00857777894 0.002011194674 0 28.15355642 3.288888476 1011.344846 0.001977564832 +2.497511692e-06 0.006163132475 -0.004891895209 0 21.85113681 -7.246868725 1031.583336 0.001938767262 +2.497818442e-06 0.006955196667 0.01438723998 0 21.13272425 -1.87118371 1015.338166 0.001969787079 +2.498462291e-06 0.002031739759 -0.005978756757 0 -1.680171464 17.71722409 1014.582843 0.001971253519 +2.495863921e-06 0.008649809989 -0.01333247716 0 23.58942604 13.52785514 944.8860042 0.00211665745 +2.498359252e-06 0.0005263737775 0.01302514746 0 10.01467219 13.02271467 906.6639662 0.002205888923 +2.49763613e-06 -0.005380555601 0.006123846341 0 -5.452108375 19.69707771 939.6185193 0.002128523394 +2.495791711e-06 -0.005398615655 0.008250393996 0 15.04599602 20.48203123 875.4654685 0.002284499015 +2.496444224e-06 0.008084909469 0.003034728903 0 21.60222332 -10.08633867 893.530418 0.00223831216 +2.495634619e-06 -7.41317682e-05 0.01363243414 0 8.974590498 26.37902554 942.3908446 0.002122261704 +2.497501492e-06 -0.001429138104 0.01231306041 0 -11.29879835 -17.424925 928.681717 0.002153590367 +2.498865522e-06 -0.005110424273 -0.002170973271 0 0.5211358868 -14.61395893 970.6370008 0.002060502534 +2.498804832e-06 -0.001413088599 -0.003992984171 0 15.80053204 -0.5671659762 1022.454266 0.001956077711 +2.497838702e-06 -0.0007662365818 -0.0005091979634 0 9.988871651 18.71310912 1019.935835 0.001960907669 +2.497420652e-06 0.0002913974458 0.003763454799 0 10.7739705 -17.90753761 919.7769045 0.002174440335 +2.499776618e-06 0.002183630881 0.002076400013 0 -5.16764955 4.568495431 1031.903046 0.001938166582 +2.496147316e-06 -0.00490499381 -0.01115886292 0 6.91991834 -27.61093002 1024.852354 0.001951500615 +2.498798368e-06 0.001270251707 -0.01162377702 0 -2.61250932 13.77864959 904.4762279 0.002211224506 +2.496482263e-06 -0.005589251192 0.006521559998 0 -24.31375642 1.989780321 919.2329003 0.002175727174 +2.498071987e-06 -0.009389428552 -0.01335635191 0 18.1303846 -2.972896304 935.3469493 0.002138243997 +2.497974314e-06 0.005726449261 -0.007142357673 0 -11.07663138 15.8140991 958.9406824 0.002085634739 +2.497166787e-06 -0.00949031333 0.009007652749 0 20.26170679 -14.47435951 1045.615378 0.00191274922 +2.4975527e-06 0.008668075465 0.001989649341 0 -16.94404693 13.7044288 984.6649828 0.002031147685 +2.497540862e-06 -0.001918222168 0.001676884051 0 1.670669873 23.54225611 1063.829781 0.001880000011 +2.498639316e-06 0.003870147564 -0.004608705619 0 10.14484299 12.43853559 972.792317 0.00205593729 +2.498948367e-06 0.001607647818 9.629814886e-06 0 3.52654964 -12.37066107 886.8367201 0.002255206573 +2.49573892e-06 0.005041723792 0.008971949494 0 20.33394689 -16.01820801 886.138761 0.002256982865 +2.498493156e-06 -0.006544556939 0.008781146274 0 -1.935024321 -18.08975945 1047.746032 0.001908859532 +2.498223398e-06 0.008784982525 0.008653964263 0 19.63505971 -3.167616251 1054.837163 0.001896027244 +2.498225399e-06 -0.007068503336 -0.006476120017 0 15.19062814 -12.2248987 1034.729835 0.001932871685 +2.49813641e-06 -0.009508721419 0.0006797222514 0 15.61216014 -11.65098488 1008.754863 0.001982642239 +2.499217192e-06 -0.009626812367 -0.0005026895273 0 2.785054184 10.85110527 895.2273369 0.002234069401 +2.497880671e-06 -0.005511913933 -0.01365211659 0 -19.57836327 -1.843285634 954.8614793 0.002094544647 +2.494533365e-06 0.002206348181 -0.007435757155 0 20.86201315 -21.76509793 911.0387245 0.002195296365 +2.494939381e-06 -0.005949948803 -0.01143588861 0 9.960745726 -30.14251594 997.0977227 0.00200582145 +2.497120638e-06 -0.004242946822 0.01207741075 0 -22.04603805 -4.717214963 939.075814 0.002129753498 +2.495380582e-06 0.001323371022 -0.006878786394 0 -20.47831132 17.2879816 881.0967993 0.002269898156 +2.49519231e-06 -0.007631354015 -0.01345207487 0 -21.47050628 -18.3246072 909.642724 0.002198665418 +2.498956662e-06 0.008959687464 0.01291370915 0 -11.40770327 -5.874022392 888.1208468 0.002251945788 +2.496975526e-06 0.003426573607 -0.009349790839 0 23.86698761 7.058841528 1011.508834 0.001977244224 +2.499354737e-06 0.007818929823 0.0143415076 0 -6.836837604 -9.69013937 1043.832752 0.001916015756 +2.499287359e-06 0.001757462714 -0.01127788899 0 12.55533605 1.514988332 1059.181355 0.001888250761 +2.498533471e-06 0.006251818966 -0.008795877385 0 -17.83882447 -0.7360277675 1042.268628 0.001918891105 +2.49657468e-06 -0.006031996221 0.004057327502 0 -18.67465622 -14.9971113 914.6122111 0.00218671911 +2.497574242e-06 -0.002531448468 0.01200710787 0 -19.60413627 -11.23744699 1025.521077 0.00195022808 +2.49866129e-06 -0.001129974159 -0.01201102981 0 -12.00236874 11.29443403 1007.01557 0.00198606661 +2.497132048e-06 -0.009696946461 -0.01153549726 0 -1.124193582 -24.58205589 1027.032089 0.001947358824 +2.498939945e-06 -0.005064408956 0.008676830332 0 -5.049446247 -13.69106773 1002.034615 0.001995939032 +2.496262292e-06 -0.008583395355 0.01135404167 0 8.462830939 25.4353758 979.8860701 0.002041053609 +2.498928108e-06 0.006759550949 0.004033425897 0 6.778479635 -11.29276316 899.4091242 0.002223682133 +2.499837357e-06 0.006143529015 -0.01047843552 0 5.210385085 -1.42412369 947.0461755 0.002111829446 +2.498016114e-06 0.007203220678 -0.01241294865 0 19.10242103 -7.796006995 1035.473695 0.001931483156 +2.497635694e-06 0.004673121898 0.001126758128 0 3.137428336 -20.19075208 939.3175761 0.002129205341 +2.496527438e-06 -0.004973500827 -0.001862838648 0 -25.97697171 10.80490328 1067.019881 0.001874379321 +2.499354876e-06 0.006125214896 0.001321615947 0 -3.921492837 9.484535143 903.4555044 0.002213722746 +2.49770496e-06 0.009365539621 0.005897237111 0 -14.49889778 -17.63141059 1065.109882 0.001877740535 +2.496446837e-06 0.004856742411 -0.008005723581 0 -17.49821944 21.20058308 1030.639643 0.001940542471 +2.49696278e-06 0.005889511295 -0.005485798242 0 -15.30149333 17.71152064 949.2339723 0.002106962096 +2.497099185e-06 0.003978731651 -0.00413979301 0 25.01687261 0.3994083965 1038.30337 0.001926219309 +2.496361198e-06 0.0009458046313 -0.009636233663 0 -12.00598231 -24.5791856 1013.44609 0.001973464617 +2.49781856e-06 -0.00608973376 0.002846726454 0 22.07789835 3.150185495 1067.34659 0.001873805584 +2.498170129e-06 0.007265131054 -0.006280983032 0 -10.60786811 13.74603756 907.3713123 0.002204169311 +2.499928669e-06 0.008570360141 0.003879980939 0 1.988303711 -3.392368643 1041.038284 0.001921158934 +2.499973385e-06 0.006661208216 0.004616746414 0 -2.45284307 -0.09719712383 1063.978615 0.001879737028 +2.495508907e-06 -0.0008621349605 -0.01125510077 0 2.182908586 -28.51560154 953.6027668 0.002097309351 +2.497100095e-06 0.009735888629 0.01133885866 0 13.99574202 19.58336946 999.0547661 0.002001892256 +2.498157338e-06 -0.007832742464 0.0125447701 0 -17.20414053 9.617156495 1026.412742 0.001948533878 +2.498904379e-06 0.00289220348 0.01467916124 0 11.35421658 10.51932563 1045.450917 0.001913050118 +2.499007203e-06 0.006051694117 0.006899737674 0 14.80405407 -1.31821694 1054.594728 0.001896463112 +2.498692875e-06 -0.003923216197 -0.008548823521 0 -5.457534681 -14.93688411 983.3578351 0.002033847628 +2.493685333e-06 0.009890748947 -0.01316616407 0 27.18181728 -26.53673959 1067.919675 0.00187280003 +2.495950454e-06 0.004704730809 -0.007858120962 0 15.84965803 -25.0580395 1041.216867 0.001920829428 +2.496947445e-06 0.0002223215532 -0.007093733358 0 -21.59548517 7.719049831 927.7394314 0.002155777724 +2.49739567e-06 0.004313699445 -0.01044946962 0 15.87258553 14.49431337 941.4550328 0.002124371245 +2.49956257e-06 0.006647313917 0.0009521890688 0 -7.982229336 2.416286496 891.5892924 0.002243185306 +2.497377172e-06 0.005402954905 0.01168504862 0 17.78115505 13.58974879 976.7496759 0.002047607539 +2.498713004e-06 -0.004484102838 0.01477182159 0 14.36431141 7.80045733 1018.626657 0.001963427903 +2.496098709e-06 0.008055369086 -0.006645388312 0 24.04012142 5.228456154 880.2357403 0.002272118602 +2.497114779e-06 0.004957878431 -0.003990394275 0 17.84382746 -11.43006005 881.767301 0.00226817211 +2.498469351e-06 0.004948417721 -0.007191581237 0 -11.57572419 -12.19100672 960.6106312 0.002082009021 +2.498441331e-06 0.004118834725 0.01324405171 0 -10.8643653 -14.84560762 1041.690576 0.001919955931 +2.497305576e-06 -0.0008451095736 0.008896461949 0 23.69227992 4.620316714 1039.41341 0.001924162207 +2.496947102e-06 0.009128512419 0.005969457587 0 10.22563798 23.69864081 1044.067696 0.001915584601 +2.497797945e-06 0.008132282495 0.00231174811 0 -1.760419596 -19.45735566 930.6397026 0.002149059399 +2.497771982e-06 0.006637702822 0.005966373431 0 8.826155765 -19.2425474 1002.547739 0.001994917471 +2.498750303e-06 -0.007271075863 0.003024520583 0 -12.57660482 9.375773768 992.0555109 0.002016016219 +2.49598635e-06 0.002189247487 -0.011694636 0 22.75783501 15.54596657 972.1761136 0.002057240424 +2.498327526e-06 0.003401502664 0.008114625849 0 -16.14704713 -1.602698273 886.9889671 0.002254819478 +2.499703823e-06 0.00679113606 -0.01085013202 0 4.259757944 -5.689388415 923.4189965 0.002165864042 +2.495821474e-06 0.009926820174 -0.01373772558 0 -2.264674471 -28.29831972 981.4043951 0.002037895907 +2.499683808e-06 0.003410640871 0.00579290217 0 -7.877779036 0.7369264557 994.912203 0.00201022763 +2.495740775e-06 -0.006837282493 0.00826976544 0 3.060990957 28.89504196 994.9210945 0.002010209665 +2.499838928e-06 0.001887296601 -0.01058380995 0 -3.68135201 3.357454326 877.8245502 0.00227835961 +2.499517286e-06 0.008330645766 0.01017582583 0 3.085120857 -9.672166699 1033.170588 0.001935788749 +2.498945978e-06 -0.007879130398 -0.007107685755 0 11.29005393 -10.45369768 1059.575579 0.001887548221 +2.49721616e-06 -0.003292033034 -0.01362317475 0 -24.45184641 -3.617927956 1047.118153 0.001910004133 +2.49817878e-06 -0.008524370487 0.007917002533 0 -17.94656805 3.51986889 957.9942487 0.002087695206 +2.496241803e-06 -0.001820735964 -0.008873791108 0 9.901410052 -25.22306159 987.8009896 0.002024699328 +2.498880318e-06 0.00224880001 -0.003408529179 0 -12.20679287 -6.044645663 910.0969259 0.002197568131 +2.497158167e-06 0.00649698752 -0.0101665988 0 23.83436644 5.706160298 1027.558734 0.001946360762 +2.499113399e-06 -0.002949678316 -0.002266335182 0 13.45508829 1.690487411 1018.24111 0.001964171335 +2.497448694e-06 -0.005137254479 -0.005821160444 0 17.12576126 -14.07812262 981.0534674 0.002038624873 +2.499835824e-06 -0.009615606079 0.004835601607 0 0.9991325194 -5.22195866 927.8127324 0.002155607409 +2.499250004e-06 -0.005990888681 0.004387049298 0 3.648117718 11.23105127 964.0698958 0.00207453838 +2.497138257e-06 -0.004485872304 0.009902554352 0 -18.12960666 -14.95538252 981.9486567 0.002036766369 +2.495658729e-06 -0.005302787693 -0.01109223235 0 14.70264899 -24.86065547 979.566289 0.002041719915 +2.497255909e-06 -0.005212102956 -0.006536481462 0 -20.57213012 -12.35378991 1023.890635 0.00195333362 +2.499054589e-06 0.00518084696 -0.00814391789 0 -13.13496546 6.411453341 1062.792088 0.001881835613 +2.498902723e-06 -0.005953329187 0.01275627857 0 -14.18840102 -3.648601027 988.7659495 0.002022723377 +2.498157936e-06 -0.002546614856 0.01294682055 0 -20.50127839 -0.5302190194 1068.166083 0.001872368007 +2.497219989e-06 0.001037480184 -0.001238717751 0 6.06704433 20.09189125 889.7133631 0.002247914984 +2.49928702e-06 0.004673727402 0.009438367314 0 -12.58253799 1.262098264 1058.868705 0.001888808301 +2.496977338e-06 -0.001951786298 -0.01024112327 0 -6.136832784 -23.03755374 969.2063007 0.002063544158 +2.498712553e-06 -0.003165535876 -0.01266214897 0 -12.28362547 9.511743864 967.98754 0.002066142298 +2.499176558e-06 0.003381729368 -0.004195716649 0 -10.79055902 4.575579552 913.1961713 0.002190109927 +2.499338693e-06 0.004510145308 -0.01495764436 0 -10.82850286 0.51516064 942.5396984 0.002121926539 +2.499228897e-06 -0.003364476785 -0.008142422475 0 -11.61312253 0.5485934417 936.0772276 0.002136575852 +2.496694122e-06 -0.005918422183 -0.001555345603 0 -16.30707452 -17.00492035 915.8134897 0.002183850776 +2.499546001e-06 0.003542320826 -0.009797414155 0 9.583096446 3.0618945 1055.702306 0.001894473459 +2.498116387e-06 0.00370355153 0.01382900446 0 -1.614631444 17.86905488 924.1313906 0.002164194421 +2.497041086e-06 -0.0009378506197 -0.001367752813 0 -23.42680752 5.271288554 986.6519548 0.002027057252 +2.495612902e-06 -0.001972585283 0.004550099387 0 -22.67534001 16.24113167 940.9897185 0.002125421735 +2.499779862e-06 0.005227849139 0.001146428401 0 -5.922239186 0.1665306511 892.8543001 0.002240007132 +2.498633991e-06 8.063866291e-05 0.005496643782 0 14.24504309 -5.232236769 917.9391484 0.002178793663 +2.49879172e-06 -0.0007376013603 0.006029505932 0 -7.423903384 14.23465508 1032.554799 0.001936943204 +2.497310102e-06 0.005385277681 0.01100948616 0 -17.51197824 -15.91043915 1019.677015 0.001961405396 +2.498433686e-06 0.008686089651 -0.009528479967 0 -14.14879518 6.590266036 881.6577138 0.002268454037 +2.499777602e-06 0.008129279418 0.0146949241 0 1.602103999 -6.017727102 933.7003662 0.002142014797 +2.498349571e-06 0.003753320598 -0.004879971833 0 -9.903319865 14.86933017 983.0867984 0.002034408359 +2.496883749e-06 0.004654487805 0.003731015625 0 -20.06819215 10.07391604 899.0296562 0.002224620719 +2.496576107e-06 0.001071333555 -0.001741135195 0 23.54723726 -15.15047439 1069.45454 0.001870112217 +2.497353436e-06 0.006252775001 -0.003335426836 0 22.07999969 -7.230841939 1009.467636 0.00198124232 +2.498243174e-06 -0.002726987796 0.006446926771 0 1.050245815 17.0255506 909.7707686 0.002198355969 +2.497540139e-06 -0.009202508135 0.01023469912 0 15.13614104 -13.45034365 912.5758923 0.002191598548 +2.497721128e-06 -0.007086188132 0.00994295273 0 16.19169096 14.88584471 1029.89073 0.001941953589 +2.499199267e-06 0.006005070908 -0.01005810331 0 -5.894302634 10.90536985 979.4521781 0.002041957785 +2.497557026e-06 0.004830649681 -0.005849597049 0 -9.896929429 21.10801188 1054.302182 0.001896989339 +2.49891686e-06 0.009845614075 -0.01297312896 0 9.217593546 10.19229746 933.5275079 0.002142411427 +2.496075715e-06 -0.001647143178 -0.01235969409 0 -5.00479441 -24.16674847 880.4119692 0.002271663801 +2.499222005e-06 0.0009559529321 -0.003751016138 0 5.392753259 12.01412662 1055.593775 0.001894668241 +2.497628655e-06 0.000858964012 -0.005903034538 0 14.53151906 13.03990535 896.214436 0.002231608775 +2.496878545e-06 0.005160078327 -0.004498205173 0 7.182666115 -23.96780646 1000.935957 0.001998129837 +2.49636515e-06 -0.008546961094 0.01356844056 0 -24.12687982 -1.190312138 895.4345448 0.002233552426 +2.497633403e-06 -0.004679177208 0.01183723486 0 22.01305081 -3.939581712 1027.530619 0.001946414016 +2.49996225e-06 -0.00521900855 0.0005360767571 0 -0.1566570718 -2.912685752 1061.566409 0.00188400837 +2.495344243e-06 0.002354147038 0.004589958591 0 22.95574152 16.66295786 928.9274282 0.00215302072 +2.499207454e-06 0.001734727072 -0.004637881278 0 -8.724843759 10.27131958 1070.302332 0.00186863089 +2.496784044e-06 0.005267486894 -0.01372867848 0 -21.98806944 -11.79881785 983.4568795 0.002033642798 +2.499161333e-06 0.00488003328 -0.01116228718 0 12.18602084 2.307545023 957.5189457 0.002088731517 +2.496736844e-06 0.003774349289 0.0108349346 0 24.06710182 -11.44680694 1042.702552 0.001918092553 +2.496561074e-06 -0.001109137395 -0.01498268685 0 24.62762435 12.92323218 1059.956316 0.001886870214 +2.497995282e-06 0.0003908170527 -0.0109288846 0 2.862540228 -18.14580083 917.1525625 0.002180662282 +2.495581874e-06 0.003589964467 0.001556951653 0 -16.98340915 26.63784334 1062.051427 0.00188314798 +2.497743333e-06 0.00653168262 0.000549451774 0 -8.323376862 18.19842177 941.6389859 0.00212395624 +2.494899066e-06 -0.005151961786 -0.0005579803814 0 20.23945539 22.9027139 956.18179 0.002091652467 +2.495408665e-06 0.009219968622 0.01036445785 0 26.83702098 -16.32845933 1035.953974 0.0019305877 +2.49403583e-06 0.00678222097 0.01366436918 0 19.5805784 25.50174397 930.0927585 0.00215032316 +2.499034908e-06 -0.0006151750172 0.006639457864 0 12.36166393 -8.102352655 1063.708186 0.001880214919 +2.498527233e-06 0.008148893705 0.0005068171117 0 16.85726287 6.106314495 1044.435526 0.001914909969 +2.499538005e-06 -0.003056605998 0.009058257085 0 -9.922592094 2.087588096 1054.790857 0.001896110482 +2.498529815e-06 -0.003816406475 0.01482353565 0 -13.31852966 -9.711649113 961.0533544 0.002081049914 +2.496243211e-06 0.005800851742 -0.009944843575 0 -18.51267284 -18.07899378 943.4727557 0.002119828037 +2.496479262e-06 0.006047312343 -0.008999103382 0 -3.052950241 -27.74737535 1051.413372 0.001902201412 +2.499505009e-06 -0.008548763548 0.01270183154 0 9.052427532 -1.920854685 929.9993855 0.002150539055 +2.499923732e-06 0.008819000404 0.0003638886404 0 3.650083029 -1.732406904 1034.493181 0.001933313855 +2.498698434e-06 -0.004899214972 0.01177455794 0 16.29325506 4.70377945 1050.892463 0.0019031443 +2.497405941e-06 -0.0001973843575 -0.007995806315 0 16.98711207 -16.56485862 1041.27018 0.001920731082 +2.499966657e-06 -0.004865033091 0.01116219779 0 2.23370746 -0.826828698 922.3363147 0.002168406435 +2.499806161e-06 -0.0008803216228 0.004964544957 0 -5.667045876 -0.3859688879 912.248035 0.002192386197 +2.494336487e-06 0.008407387529 0.004066594171 0 29.12295371 -17.5798537 1009.895625 0.001980402677 +2.495994649e-06 -0.007425112645 -0.00596388001 0 17.83617805 -21.11320104 975.9349325 0.002049316951 +2.497173406e-06 0.0001380113 -0.003099548905 0 -19.72327743 -12.6461126 984.9819838 0.002030493992 +2.499156546e-06 -0.009278925085 -0.006572406816 0 -12.99818874 -3.126283105 1029.186311 0.001943282746 +2.498659936e-06 0.005052658939 0.01447892855 0 15.48567811 -7.826604803 1059.651024 0.001887413832 +2.497707869e-06 -0.003091817098 0.01182179124 0 -0.2301669682 22.6580066 1057.937548 0.00189047076 +2.496349496e-06 -0.005902688918 0.004058245537 0 7.8604218 25.55824752 989.06936 0.002022102879 +2.498957189e-06 0.001303963196 0.01331873239 0 -5.400051506 -13.26324877 991.4477061 0.002017252133 +2.49631838e-06 0.006023007054 -0.008602694969 0 -8.976746043 -25.86300625 1008.334717 0.001983468352 +2.497558025e-06 -0.006824407754 -0.008004785918 0 11.91314989 18.02896272 977.4580505 0.002046123615 +2.497948255e-06 -0.006520654317 0.0145454121 0 20.6629912 5.471273031 1054.866007 0.0018959754 +2.499781335e-06 -0.005318032512 0.005860495339 0 -5.315763165 -4.636301117 1066.568503 0.00187517257 +2.497888926e-06 -0.005208185059 0.0006547734677 0 19.49687183 9.534328241 1055.894883 0.001894127941 +2.499819969e-06 -0.004543192796 -0.001812145889 0 -1.307384473 5.279727304 906.4287662 0.002206461307 +2.498296166e-06 0.003053378686 -0.005611580615 0 0.6293263598 -18.34335233 994.0184761 0.002012035036 +2.497453786e-06 0.005042524952 0.01249788528 0 -19.69450636 7.522962891 933.8823138 0.002141597469 +2.495262984e-06 0.003042260548 0.01236642321 0 24.0936024 15.31346408 926.8373662 0.002157875883 +2.495209349e-06 0.007890295899 -0.002540440494 0 25.80230591 13.68084003 942.8240423 0.002121286592 +2.492869906e-06 -0.00520399888 -0.004299183518 0 -27.79235283 -27.40833334 1032.552803 0.001936946948 +2.49989879e-06 -0.006710613105 -0.006109719404 0 -4.045622866 -2.435188509 1049.524196 0.001905625433 +2.496817755e-06 0.003936373037 -0.01052039493 0 23.42523886 -10.16692349 1011.743825 0.001976784983 +2.499014986e-06 -0.006394400802 0.002473107304 0 11.30078913 -9.598406259 1056.20981 0.001893563174 +2.498686911e-06 -0.004461568291 0.01051852868 0 14.30977158 6.364747758 966.2356428 0.002069888453 +2.494871483e-06 0.008911554301 0.003441438507 0 24.81017003 -20.98397981 1013.818737 0.001972739235 +2.49593962e-06 -0.009445947562 -0.01060178123 0 -29.68586219 -5.092978086 1056.296409 0.001893407932 +2.496562386e-06 -0.006735854191 -0.007429778182 0 -21.80191239 7.308199686 876.4973891 0.002281809421 +2.49824586e-06 0.001626725662 -0.01183829897 0 4.747991678 -19.10489081 1050.744028 0.00190341315 +2.4985401e-06 0.004932823065 0.006903582376 0 10.65314175 11.82773813 931.3622734 0.002147392113 +2.498561891e-06 -0.002337894263 -0.008472442282 0 -16.28883081 -3.858893962 986.8307102 0.002026690069 +2.499485252e-06 0.003611078491 0.01463719505 0 2.455224701 10.38812115 1051.948647 0.001901233492 +2.496100986e-06 0.002292203549 0.0005323095317 0 14.35443426 -21.23144233 917.2292629 0.002180479931 +2.494110912e-06 0.004409276266 -0.003728261632 0 -23.88140353 -27.08301558 1051.197427 0.001902592175 +2.4971918e-06 0.004286093344 0.009635580441 0 21.74616903 -0.3531012805 917.3350489 0.002180228481 +2.496161759e-06 -0.002616167357 0.001788111976 0 -23.91950346 12.67714071 976.5105979 0.002048108852 +2.498066975e-06 0.001009335718 0.008541221463 0 19.68099151 -6.933352856 1060.940051 0.001885120652 +2.497237092e-06 -0.006029400979 0.01498481653 0 -7.562665652 21.82570295 982.2260214 0.002036191219 +2.499612576e-06 -0.002877966464 -0.01113657533 0 6.454817918 -6.342563889 1027.991229 0.001945541892 +2.497348535e-06 -0.005578061035 -0.001766090146 0 -15.33319401 -13.22260099 878.8838797 0.002275613475 +2.499820293e-06 -0.002129664812 -0.003960210972 0 5.514394876 0.3052181638 921.1965897 0.002171089236 +2.498206194e-06 -0.002312113382 -0.01246921891 0 -12.64586666 -12.06661651 922.5737334 0.002167848409 +2.499554055e-06 -0.00237117087 0.006140325491 0 -3.468382851 8.200812206 942.7696015 0.002121409088 +2.495010876e-06 0.001905457485 0.009658361769 0 16.47369234 28.27765717 1035.24703 0.001931906049 +2.499733495e-06 -0.004968367144 -0.004984179942 0 -5.663421199 -5.009309874 1035.593821 0.00193125911 +2.497599414e-06 0.008777280785 0.005409722684 0 12.60001437 -18.81310982 1032.99636 0.001936115244 +2.497625912e-06 0.0001125402609 -0.00245415814 0 3.34198421 -22.0413708 1022.718428 0.001955572469 +2.498650137e-06 0.007177175093 0.01027707963 0 -16.87698749 1.825959443 1032.937885 0.001936224848 +2.494025574e-06 -0.008285868736 -0.002837174633 0 -23.78946182 -27.78628362 1057.250638 0.001891699023 +2.498965231e-06 0.007772992575 0.011283648 0 -7.468908744 -11.00574381 924.4282247 0.002163499498 +2.496664559e-06 0.009016670473 0.005489857863 0 25.01266254 -5.801247788 993.6385518 0.002012804351 +2.496301099e-06 0.003332962277 -0.004580927531 0 26.88597595 -11.1174744 1069.077441 0.001870771866 +2.495974506e-06 -0.009095799131 -0.001675561261 0 -26.47405869 10.47882106 1002.854955 0.001994306345 +2.498688084e-06 0.001581135541 0.007962812127 0 -14.98184673 1.80145583 931.3844625 0.002147340954 +2.49859426e-06 0.005583813852 0.01069983808 0 13.00874874 7.533229012 896.3405563 0.002231294775 +2.498055158e-06 0.002332889796 0.01256677827 0 16.90224673 -9.666877975 986.9900338 0.002026362913 +2.4965914e-06 0.0003143947572 -0.00813853543 0 -19.73432454 -13.31775521 911.3644598 0.002194511733 +2.498772533e-06 0.009191282433 0.01054043971 0 7.328394503 12.29515618 913.3681141 0.002189697636 +2.498662654e-06 -0.003314655833 -0.0009069564776 0 7.262302073 13.69642344 947.7258056 0.002110315017 +2.498521117e-06 -0.008823716617 -0.002258522634 0 -15.10889906 -0.2868810095 878.4817791 0.002276655074 +2.494522509e-06 -0.00527880175 -0.009347461355 0 -20.94432137 -21.58076079 907.8534904 0.002202998635 +2.495312809e-06 0.001323511302 0.0006958755129 0 -21.38743209 22.69675762 1017.846726 0.00196493239 +2.495035288e-06 0.003608006849 0.01043519042 0 13.50575101 28.13594143 989.6961513 0.002020822247 +2.49827446e-06 -0.00337600938 -0.01381772358 0 2.153988601 -17.74092533 961.7538469 0.002079534183 +2.496285078e-06 5.528884009e-05 -0.01394005605 0 3.064841709 -27.97897137 1032.024046 0.001937939342 +2.499917401e-06 -0.003238963783 0.01475706827 0 2.844286528 2.793318526 980.8221235 0.002039105718 +2.492939313e-06 0.0006144509884 -0.01093731942 0 23.20525749 -30.76661912 1024.411046 0.001952341307 +2.499574031e-06 0.001427574041 -0.00226371034 0 -0.7530806991 8.09734646 881.0110537 0.002270119077 +2.497478078e-06 0.003444089349 -0.008240683756 0 14.68082088 16.20966177 973.4098755 0.002054632946 +2.497628222e-06 -0.006070092367 0.007747876954 0 19.13069334 10.16582757 994.3318697 0.002011400882 +2.49600366e-06 0.007070551505 0.01331226499 0 -12.24441465 22.77669478 914.1343977 0.002187862097 +2.499290672e-06 0.003587642321 -0.00548552407 0 -1.747120433 -10.82407612 920.430486 0.002172896303 +2.499755222e-06 -2.618357539e-06 -0.008016742927 0 -4.419682049 4.82437795 935.0748657 0.002138866174 +2.495462374e-06 0.009862653436 -0.003771491018 0 29.61858422 -12.52924728 1066.807417 0.001874752621 +2.49977307e-06 0.005705480454 -0.01030407976 0 -4.157792302 -4.79240114 941.7388687 0.002123730969 +2.498988161e-06 0.007190887919 -0.01268495567 0 12.9075156 -3.456538203 939.172329 0.002129534632 +2.499340205e-06 0.006488709385 0.01458168332 0 -7.982405852 8.955956313 1044.263506 0.001915225409 +2.497792106e-06 -6.988244131e-06 0.005317417325 0 -16.35810903 -9.016591952 888.5751465 0.002250794441 +2.498716965e-06 0.008076467733 0.007673912742 0 -14.30656354 -3.186213286 914.8068469 0.00218625386 +2.498700273e-06 0.001724637458 -0.001079579371 0 16.74893042 1.567838267 1043.171697 0.001917229931 +2.498504994e-06 0.0008184933802 0.00930856915 0 10.72272479 -14.76450328 1055.035145 0.001895671447 +2.497716956e-06 0.0003275946621 -0.004821319131 0 -21.45754763 -3.78235161 1019.303543 0.001962124053 +2.498256153e-06 -0.006652382659 0.007641916783 0 -9.392093568 -16.42756409 1012.989485 0.001974354157 +2.495155111e-06 -0.003527276837 0.01302362105 0 -4.584619356 32.70100584 1060.022342 0.001886752684 +2.497523908e-06 0.005947888833 -0.01134141177 0 -15.60176002 13.97612916 940.9085242 0.002125605145 +2.494774605e-06 -0.003174702199 -0.012291977 0 -18.26314004 -29.42452704 1070.426303 0.001868414476 +2.499505452e-06 -0.008291361132 -0.002952780726 0 -8.818890336 -1.616532431 901.4437347 0.002218663154 +2.49707726e-06 -0.004945125314 0.005169654039 0 -18.98505114 -10.40568264 895.0591145 0.002234489284 +2.499495848e-06 0.008745960575 -0.000849295333 0 8.012726987 -3.622369202 875.6534058 0.002284008703 +2.498927955e-06 0.005473956219 -0.001861523108 0 -12.28692843 7.54222409 984.435997 0.002031620142 +2.498074207e-06 -0.002976858336 0.01160407131 0 -0.4711027235 20.22386938 1030.47332 0.001940855684 +2.49961011e-06 -0.008428926263 -0.008649506969 0 1.699057001 -7.554750532 876.8460891 0.002280902002 +2.498701594e-06 -0.003411796149 -0.01126114572 0 -16.67358874 0.3035472617 1034.656625 0.001933008452 +2.498377728e-06 0.00839852035 -0.002558780685 0 15.39372129 -6.247755264 922.0889138 0.002168988229 +2.496480465e-06 -0.005085460963 0.0005549455527 0 15.73339802 -19.98176807 958.0795247 0.002087509386 +2.499049439e-06 0.004573756843 0.01121522374 0 -14.09603755 2.590992182 1039.311104 0.001924351614 +2.497214272e-06 0.002924873894 0.004012455947 0 -17.443703 13.14184154 924.8878101 0.002162424435 +2.498370527e-06 0.0008361886395 0.01250196904 0 -12.59563421 -13.57833795 1025.688996 0.0019499088 +2.498257018e-06 -0.006326129562 0.004503648207 0 18.01965848 -1.88600233 970.1464267 0.002061544469 +2.496133767e-06 0.0004495000746 0.006033423606 0 19.68169549 17.356278 943.1384894 0.002120579345 +2.496169322e-06 -0.004663707931 -0.004223737142 0 -25.85814552 -6.27629272 960.7822587 0.002081637106 +2.499962842e-06 0.002275296883 -0.00178045765 0 2.381307752 -0.240029104 877.9426358 0.002278053165 +2.496883134e-06 0.001079139048 0.01027246549 0 -15.4237835 -19.77324744 1003.932968 0.001992164879 +2.499506007e-06 -0.001517384672 -0.01306249619 0 3.922610798 8.632009096 953.8245288 0.002096821732 +2.498182891e-06 0.003510085517 0.006073005754 0 10.6332086 -14.3976234 938.6268554 0.00213077219 +2.498288814e-06 -0.009324430195 -0.0008321327996 0 -17.80814902 -6.595407757 1026.255763 0.001948831932 +2.497426015e-06 0.003556786063 0.01347632038 0 0.1302111413 20.40602089 899.0448938 0.002224583014 +2.498305515e-06 3.656029236e-05 0.01130715288 0 -19.30304632 -1.040893354 1049.813355 0.00190510055 +2.499189562e-06 -0.009901178321 0.01171797636 0 6.554718426 11.1655223 1016.839413 0.001966878913 +2.49989459e-06 0.00441007745 0.007644218418 0 2.20967442 -3.53625803 908.1556139 0.002202265745 +2.497859413e-06 0.001395402043 -0.008756004728 0 5.527608231 17.48923795 886.1864261 0.00225686147 +2.498580898e-06 0.0009766168194 -0.01446731919 0 -16.38704919 7.311636735 1064.904266 0.001878103096 +2.499173114e-06 0.007180704754 0.005833468996 0 -11.41984908 2.096079561 902.7419806 0.002215472464 +2.496059874e-06 -0.008538658423 0.0006473075808 0 -29.05198319 -4.02789075 1044.199102 0.001915343535 +2.49735251e-06 0.007727298313 0.01490219126 0 19.65038792 14.28546202 1055.35684 0.001895093607 +2.496548837e-06 -0.005539545394 0.005173706263 0 -0.08720041844 23.62825238 898.9009489 0.002224939247 +2.499640156e-06 0.00583176339 0.00184066623 0 7.988354921 -2.063963395 972.5107916 0.002056532449 +2.499025358e-06 0.003369273529 -0.006236699217 0 -14.32887919 -1.590637731 1032.454176 0.001937131977 +2.498477358e-06 -0.003786024512 -0.006362427184 0 -14.31428006 -11.04238796 1035.737593 0.001930991029 +2.496390926e-06 0.004462699951 0.005195176906 0 -18.07815157 -21.94276986 1057.64367 0.001890996048 +2.496964449e-06 -0.0002521038428 0.007738337223 0 -23.29238006 1.924079132 948.1104366 0.002109458901 +2.498459444e-06 -0.001549738273 0.0008558029728 0 -1.407329862 -17.45931637 997.652942 0.002004705159 +2.49659201e-06 -0.005483707692 0.004638579616 0 14.61862154 -23.49550545 1059.388276 0.001887881946 +2.496957995e-06 -0.007293551406 -0.001416729901 0 -18.16329666 -13.10070842 907.5215061 0.002203804523 +2.499205443e-06 0.004563849308 -0.009687944648 0 -13.30981385 1.622067914 1063.516507 0.001880553793 +2.499985882e-06 0.000870113424 0.001147918019 0 1.043130738 -1.236786467 962.8745541 0.002077113775 +2.496511755e-06 0.005230035656 -0.01026578436 0 22.18650394 -10.5433209 929.5178547 0.002151653128 +2.499934738e-06 0.007816207092 -0.0001361621241 0 -2.01323279 -2.831845873 961.7171314 0.002079613573 +2.499196843e-06 0.009433164457 0.004600210888 0 12.81144397 3.852030984 1055.416866 0.001894985824 +2.497032177e-06 0.001164828883 -0.01346110229 0 0.9321104242 -25.57273025 1049.875809 0.001904987222 +2.496876031e-06 0.00801222025 -0.01010762199 0 21.87293551 -3.681636646 886.955132 0.002254905494 +2.499191527e-06 -0.004074706109 0.008718101357 0 -4.362491949 -12.06223343 1008.603968 0.001982938858 +2.496468235e-06 0.006664440362 0.005565625029 0 -4.951295134 26.5010811 1013.848599 0.00197268113 +2.497892318e-06 -0.003589907978 0.0003137565055 0 10.88415399 14.40408721 879.0541611 0.002275172667 +2.496019948e-06 -0.0007756606909 0.003372449751 0 17.26939955 23.28683268 1026.957036 0.001947501142 +2.49663641e-06 0.005104492842 0.003400156216 0 -14.72148864 22.58253334 1038.818612 0.001925263926 +2.499710044e-06 0.0005061049061 -0.009496852364 0 5.521658213 -4.285523613 917.8075586 0.002179106046 +2.49791297e-06 0.007523427047 -0.009975177404 0 -4.21590821 -17.70450158 890.5228958 0.002245871509 +2.499799656e-06 -0.005307857632 -0.009303304155 0 -2.491292025 -5.022638926 885.686753 0.002258134711 +2.497218563e-06 0.009919175995 -0.003523426275 0 -10.40285677 19.61800126 941.0878456 0.002125200117 +2.496456857e-06 -5.627454259e-05 0.01196627612 0 11.5782106 24.92917599 1032.006242 0.001937972774 +2.499646277e-06 0.009563130662 0.009871239988 0 -2.099125134 -8.099379265 994.7155669 0.002010625013 +2.497989422e-06 -0.005287077557 -0.01039021826 0 -16.58331848 10.81896619 987.1151872 0.002026105997 +2.499095869e-06 0.008639483922 -0.008835168576 0 12.90023414 -3.671020335 997.2795841 0.002005455673 +2.497318202e-06 0.00728972489 0.004649056247 0 4.898817367 -20.41289069 906.0685485 0.00220733851 +2.49733474e-06 -0.002494022097 -0.007300527769 0 10.17628236 -18.8148914 926.1130877 0.002159563477 +2.499914081e-06 0.001176537606 -0.006412840581 0 -4.331467243 0.1093630236 1045.222126 0.00191346887 +2.497821111e-06 0.009143812233 0.003555059375 0 -10.3846135 -18.44995731 1013.867785 0.0019726438 +2.497736658e-06 0.001275314176 -0.007738225262 0 18.71345249 -5.679794546 918.8648364 0.002176598691 +2.498345818e-06 0.00441993339 -0.009599781688 0 -17.0460977 -0.1067764152 936.9556012 0.002134572863 +2.498766685e-06 0.0008166805701 -0.01256377538 0 10.10950164 9.327245677 875.6443487 0.002284032328 +2.497469122e-06 -0.00588476243 -0.003871614193 0 16.84131467 -16.30006326 1041.352797 0.001920578698 +2.494874805e-06 0.004394644196 0.00645035323 0 -15.0711079 24.23773005 890.7777443 0.002245228973 +2.49296999e-06 -0.0009744354989 0.01157940027 0 -25.72043257 27.8221209 1009.408286 0.001981358809 +2.497640958e-06 0.002378857769 -0.01256861032 0 18.18312896 -6.144430538 883.3068307 0.002264218877 +2.499254529e-06 0.005883589257 -0.01499250767 0 7.359789209 9.247739976 967.8304764 0.0020664776 +2.49877982e-06 0.001079856064 -0.0136032198 0 -13.48136569 -4.491273564 909.4563466 0.002199115997 +2.49883532e-06 0.0029807516 0.01110764439 0 3.696634794 13.50435449 917.2126717 0.002180519373 +2.496584743e-06 0.002805136372 -0.001211777364 0 23.65048572 2.48364108 909.4363662 0.002199164311 +2.4983293e-06 -0.008217091342 -0.001438086662 0 11.72571621 -14.7647747 1031.1959 0.001939495687 +2.496710748e-06 0.00582883887 -0.01003924908 0 26.38070857 4.440319037 1042.497162 0.00191847045 +2.49730839e-06 0.008181545823 0.01264479889 0 14.41749607 -17.53481032 978.0201487 0.002044947645 +2.497402082e-06 0.003078771164 -0.005684128362 0 -24.29618275 0.7016936567 1065.913768 0.001876324389 +2.497366544e-06 -0.009852783098 0.001044750188 0 -7.094536978 20.3436052 938.4269319 0.002131226132 +2.496531043e-06 0.00764749228 -0.002209633095 0 21.00805092 16.78375336 1020.324639 0.001960160447 +2.499520504e-06 -0.007908090143 -0.01073056884 0 -1.519940716 -10.05936174 1038.803409 0.001925292104 +2.499358456e-06 -0.005164980851 0.01385839223 0 -10.61353281 -1.24542087 943.3213728 0.002120168224 +2.498734868e-06 -0.004603608181 -0.01435377945 0 -16.69390759 1.065125695 1051.416586 0.001902195597 +2.498019293e-06 -0.008963427772 0.0005215433682 0 4.175033929 -20.63873024 1057.640015 0.001891002583 +2.499998934e-06 0.0007146976376 0.0008941460936 0 -0.2745486464 -0.4041534135 1058.283861 0.001889852122 +2.499415791e-06 0.007468832573 0.01191088041 0 5.694406164 9.831287929 1050.977092 0.00190299105 +2.495763752e-06 0.008336140541 -0.004043135229 0 26.9693128 -1.059885262 926.6657642 0.002158275483 +2.498530452e-06 -0.001333459369 -0.009117869425 0 8.555947167 -14.81021437 997.4588311 0.002005095286 +2.499846644e-06 -0.005555585772 0.01388643287 0 5.309834871 -1.926022343 1019.875142 0.001961024362 +2.49713212e-06 0.0003962405818 0.01345615492 0 -20.98933711 -9.312234712 958.3719973 0.002086872327 +2.499619439e-06 0.003650788302 0.01236776152 0 -7.506145032 -2.547370466 908.5228895 0.002201375467 +2.496804046e-06 0.008077009199 -0.01327650238 0 19.21992393 -14.73747607 957.5180248 0.002088733526 +2.495920514e-06 6.656099111e-05 -0.01357796598 0 -5.657051023 -27.45221632 980.6732895 0.002039415187 +2.496805244e-06 0.00969610448 -0.003066127149 0 -0.2139585452 -25.86832131 1022.918446 0.001955190081 +2.496065281e-06 -0.0004327547178 0.001643230228 0 -15.96274179 -22.52029779 983.4253059 0.002033708089 +2.49985251e-06 -0.005310882605 -0.0002543370612 0 -1.931703468 -4.991338443 985.4135218 0.002029604786 +2.499719483e-06 -0.004755425691 0.01371351723 0 1.536673977 6.444049762 884.4143354 0.002261383517 +2.496644957e-06 0.003987586549 -0.009451256837 0 23.25939106 -2.125921529 901.2019309 0.00221925845 +2.498604035e-06 0.009664056203 0.01109052768 0 6.612072993 -15.40288096 1002.964077 0.001994089365 +2.497634306e-06 -0.006761836349 -0.01208560743 0 -11.34317157 -17.30288774 950.8292996 0.002103426978 +2.498263996e-06 0.006627324657 -0.00300480203 0 12.94408468 15.14237411 1068.820348 0.001871221861 +2.499154269e-06 0.009795914511 0.001374937291 0 -11.23721239 2.908899557 892.3937688 0.002241163116 +2.498995075e-06 -0.002774183983 0.009518769777 0 11.94177211 9.353073005 1069.787831 0.001869529585 +2.493903228e-06 -0.009231348843 0.006611720575 0 -23.90165085 25.09549018 991.5669405 0.002017009562 +2.497798432e-06 0.007499050465 0.009632356663 0 -21.66892877 4.298933399 1052.436094 0.001900352917 +2.496336203e-06 -0.001690151705 0.004139358667 0 -14.26605586 25.05111682 1064.391924 0.001879007117 +2.498304812e-06 -0.0008703504829 0.001363449586 0 17.47546217 2.785778049 960.8230419 0.002081548748 +2.49842923e-06 0.004025685177 0.01221305949 0 -4.95749312 -15.64034905 925.4686892 0.002161067169 +2.496974459e-06 -0.007676569563 0.002636899715 0 -11.65261052 -20.70074321 965.2568213 0.00207198743 +2.498792357e-06 -0.003173454315 -0.0004252955876 0 -4.570290655 -14.89084063 1002.084996 0.001995838685 +2.498475764e-06 0.009625594453 -0.0117684843 0 16.14008682 -3.247212462 942.7176678 0.002121525955 +2.496025057e-06 -0.006647239728 0.01442180062 0 -26.49839563 8.63198377 987.8258386 0.002024648396 +2.49977235e-06 -0.001803911175 -0.007436499512 0 4.431534046 5.366044996 1031.351909 0.001939202305 +2.498438918e-06 0.005246629152 0.01336815463 0 3.909952854 -17.30511879 1003.821775 0.001992385551 +2.497438719e-06 0.005456645801 0.005150691143 0 -7.809349439 -20.98856248 989.0708868 0.002022099757 +2.495813302e-06 -0.002917850344 -0.004534907935 0 13.73583125 -24.44075492 968.2645586 0.002065551178 +2.499548889e-06 0.003335703495 -0.009753351056 0 -8.677781082 -2.347653229 946.3702948 0.002113337677 +2.498104433e-06 0.005495353676 -0.01116671512 0 -14.65840727 13.11662069 1009.949146 0.001980297728 +2.497925067e-06 0.00726820353 -0.01257072412 0 -3.812446879 -18.12886709 909.107775 0.002199959185 +2.499806193e-06 0.00778807607 0.01458074035 0 5.164912523 1.901518316 884.0005275 0.002262442089 +2.497485164e-06 0.004199936916 0.008848526229 0 14.04282498 15.46556839 931.1101672 0.002147973538 +2.498642015e-06 -0.002072895481 -0.0140398075 0 -5.162916959 14.53486974 935.7562684 0.002137308686 +2.495662711e-06 0.003102342547 0.009885264183 0 22.5263159 -14.05777915 900.9586594 0.002219857681 +2.494561211e-06 -0.002180613922 0.009297533892 0 22.73465206 24.14980696 1004.826053 0.001990394253 +2.49795072e-06 0.00399700881 -0.003770682381 0 17.68394578 -3.420585481 889.418557 0.002248660076 +2.498869216e-06 -0.005386146167 0.000381653728 0 -14.17725108 -5.211425842 1004.234171 0.001991567363 +2.499975701e-06 0.004997292496 -0.01412736463 0 1.166683621 1.772949537 962.7423551 0.002077398994 +2.495152211e-06 0.006160591189 0.010337798 0 -7.882468854 29.06115645 966.3291395 0.002069688182 +2.498368266e-06 0.003272054074 -0.009804374934 0 -1.617033851 18.22000139 1012.292809 0.001975712938 +2.496546148e-06 -0.003033802705 0.01179622494 0 21.17089688 -14.09086566 967.1178169 0.002068000367 +2.496715841e-06 -0.007305564536 0.003841890693 0 -18.84638177 16.47147185 976.1528408 0.002048859478 +2.498883689e-06 0.005034619635 -0.009506284946 0 12.18276077 8.894173436 1009.334529 0.001981503596 +2.495657584e-06 0.003541501705 0.01045863154 0 -7.174015937 25.0603732 883.9492702 0.002262573281 +2.498698382e-06 -0.001681077559 -0.008642006738 0 14.06530739 4.015461032 906.4031666 0.002206523624 +2.499525867e-06 0.005351215713 0.0003944499884 0 -1.643716846 -8.437528315 882.6890509 0.002265803567 +2.499925991e-06 0.005540916044 0.01327455695 0 0.6634149377 -3.525011734 932.3041324 0.002145222713 +2.497349065e-06 0.009640973466 -0.003279002826 0 -20.71137293 -12.33570418 1046.52476 0.001911087131 +2.496735752e-06 0.009912011013 0.009616826673 0 -3.369275027 22.20084161 878.4049102 0.002276854303 +2.497795321e-06 -0.009379114141 -0.0147439232 0 2.157493758 -18.69050052 895.7027904 0.00223288352 +2.497072433e-06 0.005813446995 0.003661610128 0 0.9244419888 23.47519368 970.4796659 0.002060836584 +2.499913996e-06 -0.00384988972 -0.002279153864 0 -3.505894737 -2.412589782 1026.131394 0.001949068133 +2.497159174e-06 -0.003272607205 0.004360403654 0 -12.13343182 20.37478786 994.4471438 0.002011167725 +2.496113769e-06 0.004405001737 0.008143529193 0 5.526735708 27.67522612 1011.696301 0.001976877841 +2.492841985e-06 0.008013191749 -0.001655333752 0 27.35439666 -24.62206247 971.6564164 0.002058340753 +2.499414137e-06 -0.006675491384 0.01044852562 0 9.852176754 -4.020598567 982.9483005 0.002034695008 +2.496493545e-06 -0.005176900364 0.0006915448071 0 -13.08260657 24.19550914 1038.123333 0.001926553365 +2.498307964e-06 0.008263806677 0.01333510066 0 4.260548863 16.32135486 916.7285737 0.002181670843 +2.498091821e-06 0.001953377281 0.006036895495 0 -5.579913349 -16.84627608 908.1546594 0.00220226806 +2.497438574e-06 0.004061203073 0.01288241656 0 -5.916186235 21.83289839 999.0218222 0.002001958271 +2.498383932e-06 -0.002651749211 0.006652213256 0 -0.3215827541 -18.93343043 1053.032705 0.001899276244 +2.497856394e-06 0.0003557335399 -0.008477433643 0 15.06191039 -11.62074142 918.4780136 0.002177515379 +2.499212367e-06 0.001887600524 -0.006367846155 0 11.51842693 -6.573302244 1056.53273 0.001892984422 +2.498391902e-06 -0.002846368509 -0.00359944246 0 16.27815531 -3.416686009 927.2373737 0.002156944982 +2.497219672e-06 -0.006612926731 0.001349076256 0 -0.8339454055 21.28514337 902.9536145 0.002214953202 +2.498163696e-06 -0.007141331737 0.01460091331 0 -17.73824598 2.037041249 931.4267326 0.002147243503 +2.495648411e-06 0.0007240766566 -0.01197691858 0 11.45118147 -24.83174628 926.3053358 0.002159115275 +2.498109692e-06 -0.001723620365 -0.01326822197 0 15.37384459 12.98388148 1034.639202 0.001933041003 +2.496635565e-06 0.005847280407 -0.001645161747 0 -11.75586307 22.21775329 968.5217393 0.002065002693 +2.496840339e-06 -0.004645276745 -0.007587014555 0 -16.84396058 17.67411075 970.7689264 0.002060222516 +2.498409985e-06 0.008373701796 0.01310406042 0 2.335923358 16.29034595 922.6366207 0.002167700647 +2.499878076e-06 -0.007833419451 0.005004243788 0 -3.70297436 2.697049248 927.6784003 0.002155919551 +2.499213841e-06 -0.0002423844114 -0.01489545748 0 -2.021387179 -12.8406179 1036.525718 0.001929522794 +2.498954551e-06 -0.007723934799 0.002743051972 0 -9.415402858 11.7396392 1040.566341 0.001922030264 +2.496820483e-06 -0.00608254292 0.003575195277 0 11.55942872 -21.29960077 960.560509 0.002082117661 +2.497127127e-06 0.009119086987 -0.007285094645 0 22.51195182 9.495496808 1018.848073 0.00196300121 +2.496342399e-06 0.009128888054 0.01148045104 0 10.49568016 24.46350899 983.6847255 0.002033171755 +2.495184126e-06 -0.006814095699 -0.01495795001 0 17.83834477 -22.76930778 931.3326336 0.002147460454 +2.499938908e-06 0.002663540081 0.008256806871 0 -2.339936335 2.860659563 1057.291692 0.00189162557 +2.497865162e-06 0.007286178027 -0.005649444479 0 -14.7987095 11.2235787 898.5752208 0.002225745774 +2.497214751e-06 -0.0007111457596 0.003510360494 0 17.02207271 -17.67773317 1039.348142 0.001924283038 +2.495726622e-06 -0.0007227975782 -0.003779558886 0 15.51030104 -21.61332467 909.3832795 0.002199292691 +2.497068913e-06 -0.003014118881 0.01360456999 0 20.28411867 -11.25393765 957.6563316 0.002088431866 +2.49841915e-06 -0.0003534662025 -0.01220250989 0 16.55327988 -1.859337395 936.576419 0.002135437066 +2.499145365e-06 0.000438054991 0.008623939427 0 11.4994074 -2.905344916 907.0916842 0.002204848788 +2.495623314e-06 -0.009995755698 0.005692410946 0 11.28720214 24.60491328 914.366872 0.002187305841 +2.497611537e-06 -0.005341831446 0.01259723639 0 -19.53009227 9.841361492 1000.252747 0.001999494634 +2.497266146e-06 -0.002767231767 -0.009351478124 0 16.86321321 -16.60746781 1011.768996 0.001976735804 +2.499888142e-06 -0.003925712532 0.009842654883 0 2.456988995 -4.270752458 1041.67786 0.001919979369 +2.498430302e-06 0.002044597049 0.005820934949 0 -16.29834864 1.016674745 921.4283964 0.002170543048 +2.497333191e-06 -0.009196932837 0.001935568212 0 14.43894594 14.88217013 897.4914429 0.002228433503 +2.498261056e-06 0.003587091905 0.008228311893 0 -12.17471214 -14.22555757 1003.757183 0.001992513762 +2.499504358e-06 -0.002440352393 0.01369688865 0 -3.527562084 7.971244408 875.4492104 0.00228454144 +2.497982902e-06 -0.0002771707065 0.007727159068 0 -18.78975407 5.938398865 980.8094829 0.002039131997 +2.496513546e-06 0.001351440549 0.008967631592 0 -9.825322918 22.5987409 932.7085653 0.00214429252 +2.497862995e-06 0.008738019005 -0.003633763636 0 20.12743799 6.133789349 1017.456717 0.001965685583 +2.494925128e-06 -0.001788242287 -0.0005071350723 0 20.81582435 -19.9310796 903.9065437 0.002212618123 +2.49995243e-06 -0.009470182299 0.005702998457 0 2.918903608 -1.448968115 1056.495772 0.001893050643 +2.49780864e-06 -0.0002605121676 0.0006894062064 0 2.774511511 -18.53012187 894.7013247 0.002235382853 +2.497685176e-06 -0.00658964443 0.00880344739 0 19.1193933 -12.46798898 1060.46128 0.001885971735 +2.498865617e-06 0.003628861029 0.007671506165 0 10.72518603 7.963670411 886.7252824 0.002255489992 +2.498410913e-06 -0.005249667647 -0.006109256793 0 -3.954988104 -18.05963147 1036.785116 0.001929040038 +2.499554786e-06 -0.009395385394 -0.01014385562 0 7.248496601 -6.98010769 1066.34057 0.001875573392 +2.496379307e-06 0.004396087141 0.002515744069 0 25.06760532 -11.33283385 1021.759877 0.001957407063 +2.49969162e-06 -0.003989381888 0.00652532964 0 -3.477179796 7.624969248 1067.052421 0.001874322162 +2.499867087e-06 0.003050443907 -0.0138008903 0 -4.830995582 -2.273442455 1035.545125 0.001931349926 +2.497643584e-06 -0.004346582373 0.009310479448 0 9.62817892 19.90044701 1017.981228 0.00196467277 +2.499491297e-06 -0.00666996893 0.01160129267 0 8.701686013 -1.982620892 884.7346701 0.002260564741 +2.499417818e-06 -0.008088499205 -0.001137520191 0 -5.049279839 9.228178185 974.7699031 0.002051766262 +2.49634608e-06 -0.008153473516 -0.01297223179 0 -5.407092429 -26.11304162 985.9185407 0.002028565158 +2.498985242e-06 0.007389174248 0.01464125585 0 7.858632401 12.30149703 1024.504987 0.001952162288 +2.497601906e-06 0.009935482894 -0.01142060522 0 -3.589812679 -22.10545327 1022.22734 0.001956511944 +2.499097431e-06 0.005073833079 0.008783816344 0 -11.84609032 -4.296448191 937.7707047 0.002132717508 +2.49363239e-06 -0.009830398452 0.001855087273 0 -26.38665144 -20.7614685 939.9398851 0.002127795651 +2.496935963e-06 0.001262310464 -0.001975978841 0 12.38763017 19.06722347 918.0973624 0.002178418196 +2.499885486e-06 0.005590267186 -0.008117842642 0 -2.560706428 -3.765687563 951.5409218 0.002101853903 +2.497719313e-06 -0.005794375525 0.003809676475 0 -19.59609635 -7.335895668 979.3828154 0.002042102402 +2.494910256e-06 0.004210694302 0.004745247527 0 22.54974456 -21.03602937 965.8210737 0.002070776932 +2.497781184e-06 -0.004768727073 -0.01485665035 0 -8.755796558 -18.43394346 968.4424229 0.002065171819 +2.49877575e-06 0.009277336723 0.009217520307 0 -0.08120514195 13.96844187 892.535318 0.002240807685 +2.498787885e-06 -0.006524795247 -0.01464556957 0 -14.46577533 -1.216395637 932.19295 0.002145478573 +2.499479119e-06 -0.001662659841 -0.0119949907 0 -8.727862827 -2.915688263 901.4963385 0.002218533692 +2.497458249e-06 -0.0007921984605 -0.01095199695 0 -21.02562387 6.195705708 971.8138999 0.002058007197 +2.497746764e-06 -0.004720012937 -0.01148910037 0 21.68048485 -6.50948428 1065.973751 0.001876218807 +2.496296454e-06 -0.0009289827384 0.0139460376 0 -22.34060053 14.38589914 975.7856383 0.002049630494 +2.498703874e-06 -0.004379539015 0.009697443035 0 16.96679618 -0.1133860417 1053.626172 0.001898206454 +2.496973956e-06 -0.003194244411 0.003997250469 0 18.98946995 12.1884451 916.80407 0.002181491188 +2.499001652e-06 -0.001466352995 -0.009738804067 0 -2.442099364 -12.39618706 893.9956162 0.002237147435 +2.499039818e-06 0.00273288927 0.00829268324 0 -11.70545058 -8.522767993 1044.716174 0.001914395556 +2.498058437e-06 -0.007182094264 0.01381615733 0 -16.87334186 -7.167458262 930.0482517 0.002150426063 +2.495873754e-06 -0.002204191 -0.00982598698 0 8.368794656 -25.41579033 930.882076 0.002148499849 +2.498156834e-06 0.004303234434 0.01202794266 0 2.83665809 -16.67848652 880.9099908 0.002270379518 +2.499337046e-06 -0.001083159246 0.009093174823 0 1.37485605 11.62223853 1016.266626 0.001967987484 +2.494817258e-06 0.002649932085 0.008899305502 0 27.44390827 20.23963122 1058.331657 0.001889766772 +2.496397788e-06 0.002454009843 -0.003066420278 0 15.48606211 -21.44811479 985.0649541 0.002030322967 +2.498596092e-06 0.00971986318 -0.0107963437 0 -6.545678188 15.01760965 977.45052 0.002046139379 +2.498737304e-06 -0.007751237676 -0.005482435045 0 8.056328423 -12.06038547 912.4983695 0.002191784738 +2.498395118e-06 0.004008291769 0.01310722068 0 -12.97003273 -13.91506291 1061.50875 0.001884110705 +2.496593587e-06 -0.00424345592 0.005728318985 0 18.42828045 -17.13783496 963.6546416 0.002075432332 +2.495737505e-06 0.00877972025 -0.007565269147 0 28.16320648 -3.129595614 969.8895047 0.002062090568 +2.496495526e-06 -0.005884206803 -0.008132793128 0 -22.67509877 4.841106648 875.3330372 0.002284844642 +2.497850727e-06 -0.00121555259 -0.00969325003 0 -7.323294768 18.98799846 981.2754962 0.002038163602 +2.499709133e-06 0.006213608924 0.002967292133 0 7.147892104 2.28388645 983.7975008 0.002032938687 +2.498923278e-06 -0.002227784083 -0.01400992401 0 12.03350192 -6.846239719 943.2941775 0.002120229349 +2.498740853e-06 0.001889587897 -0.01312560358 0 -7.224084899 12.40640436 904.503802 0.002211157096 +2.498287611e-06 -0.007511258763 0.005987846351 0 -5.796153735 18.02161643 1022.68174 0.001955642623 +2.499961926e-06 -0.006633233717 -0.01286033658 0 2.669530979 1.046985195 1039.13584 0.001924676181 +2.497899032e-06 -0.001197239952 -0.003058995882 0 20.56811832 2.011661699 1007.860187 0.001984402228 +2.499622938e-06 -0.001715697558 0.0008872458874 0 -7.224677411 -3.806159546 940.2880052 0.002127007884 +2.49794046e-06 0.003931971281 0.0003145117778 0 20.38852039 4.722527693 1030.860242 0.001940127206 +2.499592514e-06 0.005109521686 -0.008632619048 0 3.284710038 -8.793041347 1039.697756 0.001923635969 +2.49656092e-06 -0.007397526205 -0.0123550283 0 5.174292417 -23.69481944 924.2910588 0.002163820564 +2.498658612e-06 0.004311488415 -0.01468686151 0 3.185001933 -16.17849342 1006.503605 0.001987076837 +2.49782765e-06 -0.007824569265 0.004604410278 0 21.08194641 5.102347646 1040.279869 0.001922559553 +2.498703082e-06 0.003081254 0.006795628094 0 14.12009357 -5.981172407 951.9588268 0.0021009312 +2.497692106e-06 -0.002996393102 0.002370189847 0 -21.21599018 -2.892283027 996.2964289 0.002007434677 +2.49642343e-06 -0.001593676419 -0.003446472154 0 22.09598247 -15.26377118 1003.577507 0.001992870491 +2.498168106e-06 -0.007342978041 -0.007607376503 0 -17.0490637 3.98808561 914.5007499 0.002186985631 +2.498839523e-06 -1.557811163e-05 -0.00902890869 0 1.927282363 15.23720527 1007.959066 0.001984207562 +2.498500644e-06 -0.00380681315 0.002456489909 0 -5.678599328 -14.41683102 894.5884455 0.002235664914 +2.499903657e-06 0.002241366217 -0.001129021437 0 1.927554078 3.763325531 963.228773 0.002076349935 +2.497610326e-06 0.001547640543 0.01230776394 0 20.55355685 1.566291921 942.5497298 0.002121903956 +2.498707673e-06 -0.0008398262039 -0.0002495769924 0 14.12598724 6.748959227 973.5967238 0.00205423863 +2.497714699e-06 0.001119838022 0.0119577935 0 4.577739144 21.47937773 1026.908421 0.001947593338 +2.495713453e-06 -0.005159131535 0.01129851831 0 -10.81052395 24.47947103 913.3604884 0.002189715918 +2.497694974e-06 0.005511033051 -0.004809221704 0 -21.62535827 3.349893996 1018.847626 0.001963002071 +2.49668203e-06 0.008942503352 0.008838878847 0 -10.11095834 20.19532053 876.2997574 0.002282324037 +2.495032769e-06 0.002803154341 0.01175932962 0 18.37348467 24.6848258 975.577706 0.002050067347 +2.496649153e-06 -0.003702138308 0.01207055301 0 -22.80736056 -8.783446846 943.6142233 0.002119510231 +2.494285241e-06 0.008669455675 0.007461994907 0 17.63733234 26.60751026 943.4261883 0.002119932672 +2.498309704e-06 0.005939986031 -0.01289877001 0 -3.601464518 -16.20345154 902.5513846 0.002215940316 +2.495044594e-06 -0.006416992336 -0.0137287114 0 -11.00183697 -26.64932434 915.1284788 0.002185485477 +2.497351478e-06 0.0006581837125 0.01415003894 0 -20.77959188 2.895710167 911.2216612 0.002194855637 +2.497544826e-06 0.009378892761 0.001918346076 0 -11.71122576 -16.77552505 922.9293579 0.00216701309 +2.499213421e-06 -0.003385783383 -0.007541460791 0 -10.95723361 -2.10857529 889.5276856 0.002248384207 +2.499542209e-06 0.005509573915 -0.009850918266 0 3.499633153 8.667633924 976.8226767 0.002047454515 +2.497650115e-06 0.009092625999 -0.01317815276 0 -19.77942367 -8.369587526 990.3501681 0.002019487717 +2.497221008e-06 -0.002295988034 -0.005573715849 0 -8.862424925 -20.29997123 939.1563054 0.002129570966 +2.494736534e-06 -0.008908539377 -0.01438685054 0 -6.253490624 -29.83763919 938.8691993 0.002130222188 +2.494292577e-06 -0.008945040139 -0.003542660808 0 -29.18641223 -19.74407766 1042.069746 0.001919257331 +2.498032894e-06 0.006486285217 -0.01116397246 0 10.36196025 -14.0604909 880.3207542 0.00227189918 +2.497755213e-06 -0.003824450132 -0.005459468777 0 -22.23759798 -3.112089802 1059.377523 0.001887901109 +2.498931366e-06 -0.005097849597 -0.004253319944 0 -5.956448191 -14.40489065 1066.0712 0.001876047304 +2.499127122e-06 0.004682056513 -0.009407346505 0 -9.919508487 6.384305041 892.69346 0.002240410723 +2.498984389e-06 -0.0035719307 0.000977721673 0 -13.50278439 -6.207899564 1042.597823 0.001918285225 +2.497303179e-06 -0.002526631947 -0.006404827803 0 16.22624422 -16.71394325 1002.632569 0.001994748686 +2.498575113e-06 0.005690713981 -0.006871323015 0 14.42772842 3.741939003 882.7470348 0.002265654736 +2.495674543e-06 0.004503931641 -0.01157902406 0 24.38183649 10.0624987 896.2036546 0.002231635622 +2.498872511e-06 0.008852054877 -0.002537607062 0 14.87214754 1.413693486 994.6777473 0.002010701461 +2.494325319e-06 -0.003285001027 -0.007214568194 0 -19.82149492 -26.68861874 985.9605809 0.002028478662 +2.498996203e-06 -0.007774858559 -0.007321737658 0 -4.044740563 12.52034299 928.4722031 0.002154076334 +2.497478188e-06 0.005889261966 -0.01422956429 0 -15.65626645 -13.75129888 927.5080174 0.002156315592 +2.499254861e-06 0.008893503277 0.00142723209 0 7.570507076 -10.41446974 1054.57094 0.00189650589 +2.499612554e-06 -0.001635974837 -0.01091506044 0 -8.056326265 0.3841480357 916.1875079 0.002182959255 +2.499581203e-06 0.002610543356 -0.003433440893 0 1.865894725 -8.791153497 981.9063847 0.002036854054 +2.497283938e-06 -0.002359327739 -0.005977607151 0 21.54896613 -0.03353495365 924.1981365 0.002164038122 +2.494677219e-06 0.0008392721741 -0.0138733021 0 -7.056302315 -30.0569886 945.5049834 0.00211527177 +2.49566998e-06 -0.008695582338 0.008744136568 0 3.376264873 26.52672995 908.0943513 0.002202414316 +2.496174005e-06 0.009445372727 0.002210942789 0 20.4260742 18.05423566 984.9413511 0.002030577757 +2.498145447e-06 -0.006032641274 0.01005916545 0 -14.36888496 -10.21609646 915.1839265 0.002185353066 +2.497722326e-06 -0.008132911548 0.009444068314 0 -10.70946691 17.51460108 961.5365751 0.002080004081 +2.495758428e-06 -0.004870302416 0.01490492558 0 2.809401351 28.79393866 992.6668519 0.002014774641 +2.497933762e-06 0.005695930589 -0.01448420887 0 19.93158628 -1.374384034 982.4988893 0.002035625711 +2.497994194e-06 -0.003125518747 0.007263781505 0 -13.69922062 11.62170077 896.6670232 0.002230482384 +2.496859571e-06 -0.006981114531 0.003332256025 0 15.23389114 20.2251925 1009.854477 0.001980483372 +2.496779924e-06 -0.003182778801 0.007563217431 0 -23.93041148 6.496514786 976.6375708 0.002047842577 +2.497166162e-06 -0.007441102238 -0.00425407435 0 -20.20603206 -12.60892036 1000.016434 0.001999967133 +2.497338929e-06 0.007880941797 -0.006710289507 0 14.0494866 17.89500791 985.7994909 0.002028810137 +2.494841954e-06 -0.001630011275 -0.007303088992 0 -25.13531901 -19.89915968 997.3603509 0.002005293271 +2.497553374e-06 0.009292412698 -0.001607430037 0 16.94028652 -12.89765086 962.1559733 0.002078665056 +2.499583871e-06 -0.001522728419 0.001550457424 0 -2.683917785 -9.236391465 1054.261518 0.001897062509 +2.497663945e-06 0.003110394697 0.000115437652 0 9.781066451 17.19225452 914.775281 0.0021863293 +2.497475051e-06 0.003643174781 0.001350404473 0 -3.89562126 -20.82698669 942.5141646 0.002121984024 +2.498923186e-06 -0.0003726752615 0.00218985325 0 -12.84640883 -4.336073109 923.750569 0.002165086623 +2.498844231e-06 -0.00451971286 0.004800708555 0 -4.197196144 -14.61204022 999.7712135 0.002000457678 +2.497345262e-06 -0.007180821104 -0.01453304956 0 -11.52028477 -17.51713224 909.5229132 0.002198955047 +2.495503571e-06 0.007030647434 -0.007205263569 0 22.25771231 18.86199674 972.2296803 0.002057127077 +2.496834455e-06 0.005356324259 0.001691600794 0 -21.38147419 15.73273797 1054.514051 0.001896608204 +2.496488701e-06 0.009384105564 0.01416704526 0 18.9300366 -15.44339908 921.4100286 0.002170586317 +2.498355029e-06 8.514532819e-06 -0.01372350113 0 -17.31885008 -3.249679678 971.2511057 0.002059199715 +2.498683349e-06 -0.004112731912 0.0020927654 0 -5.525886236 -14.78349336 972.387852 0.002056792458 +2.49888136e-06 0.009910484091 -0.006998384327 0 14.87171089 1.502335938 999.1545956 0.002001692239 +2.499806835e-06 0.002397176502 -0.0007375839609 0 0.6086737121 6.477540342 1046.71193 0.001910745395 +2.496625575e-06 0.009997233287 0.01390734729 0 -17.04801581 18.42074553 965.6532495 0.00207113682 +2.498835725e-06 -0.002267325786 0.001904062154 0 -1.156205001 14.76811844 970.5846315 0.002060613712 +2.495812433e-06 0.0001998998877 0.009648423682 0 -24.70541375 -18.74485389 1070.919915 0.00186755328 +2.496931667e-06 0.007267122515 0.007167391477 0 -13.74909684 18.37394905 925.9564767 0.002159928734 +2.495330695e-06 0.009854359888 0.006431134567 0 28.41226582 -14.84232872 1048.229156 0.001907979747 +2.49461813e-06 0.007388187018 -0.01283956988 0 29.35603918 16.6308771 1027.561561 0.001946355407 +2.498985269e-06 -8.87566898e-05 0.01137580696 0 -14.11517736 -5.355339705 1059.577497 0.001887544805 +2.49930931e-06 0.009253238244 0.004709185925 0 10.63238124 -0.1943375895 904.6934933 0.002210693472 +2.499518246e-06 0.009496456212 -0.009411446191 0 7.882305638 -6.616960208 1048.382217 0.001907701187 +2.495854022e-06 -0.008439064315 0.0008225477091 0 -17.03837827 -22.28115775 973.467261 0.002054511826 +2.496607768e-06 0.00670835699 0.004692434643 0 21.36825509 -13.1588997 962.960017 0.002076929431 +2.49826983e-06 -0.009521333426 -0.01479060012 0 -3.377761213 -16.88724177 925.5605874 0.002160852598 +2.498023098e-06 0.002154732514 -0.002019600214 0 17.48484862 -10.14121292 1016.233988 0.001968050689 +2.496136966e-06 0.00749894734 0.01161944886 0 17.65116227 17.08483253 883.2657146 0.002264324276 +2.496333389e-06 0.00465168016 0.005794203796 0 23.91690858 -14.08240202 1024.360203 0.001952438208 +2.499260309e-06 -0.00195904017 0.01007442651 0 -3.73825572 -10.98376548 953.8119888 0.002096849299 +2.495021749e-06 -0.006137752063 0.005031999196 0 18.53819974 26.1759446 1015.773757 0.001968942381 +2.494273743e-06 -0.009908026587 -0.0106966627 0 17.94672539 -26.63505946 948.2288758 0.002109195418 +2.496097781e-06 0.008280343125 0.004367417127 0 27.9245056 3.092007048 1005.093431 0.001989864761 +2.498821787e-06 0.005523962406 -0.006962122796 0 6.857429248 -12.66060104 937.8036954 0.002132642481 +2.499560174e-06 -0.008991918615 -0.004555733737 0 8.541826984 -5.067233713 1058.867668 0.001888810151 +2.494720958e-06 0.0005100384448 0.006285947424 0 -23.13114166 24.6691205 1039.927799 0.00192321044 +2.496623322e-06 -0.0007646865817 0.009561656853 0 16.62614625 -20.50247614 1015.23829 0.001969980861 +2.496885415e-06 0.003031260255 0.01480965517 0 -17.37302444 15.78951472 940.1761381 0.002127260966 +2.497934665e-06 -0.009683669079 -0.002766890789 0 8.233044527 17.92724081 970.3406415 0.002061131848 +2.497444224e-06 0.005648790305 0.01104005793 0 7.389942601 20.07610419 945.8648174 0.00211446706 +2.497879912e-06 -0.006619975381 -0.009679601658 0 15.95176693 13.78304586 1023.463086 0.001954149619 +2.498399325e-06 0.005985184484 -0.01413677311 0 -0.3175286659 -17.1939606 960.9020308 0.002081377639 +2.497225193e-06 -0.002479733331 -0.003241364392 0 -19.44574023 -11.84599037 966.1559102 0.002070059272 +2.498915631e-06 -0.002758503403 -0.008483996764 0 -12.43231789 3.422227508 875.4639686 0.002284502929 +2.499456222e-06 -0.003015256692 0.0006800460792 0 -8.604402005 7.008636616 1064.06387 0.00187958642 +2.499742997e-06 -0.002948494838 -0.009827587644 0 6.506582946 2.713920935 983.2896148 0.002033988735 +2.499359174e-06 0.001781675434 -0.005988707996 0 -0.9561829036 10.11559612 897.4210312 0.002228608346 +2.496413136e-06 -0.009530713581 0.007808990185 0 -20.92444628 11.34050998 888.1177026 0.00225195376 +2.49761005e-06 0.001544308709 0.01095900747 0 -16.8042494 11.99434227 943.9859158 0.002118675678 +2.498820445e-06 -6.934121251e-05 -0.002105609779 0 4.249646031 13.12783595 898.2185631 0.002226629556 +2.496167696e-06 -0.00263608559 0.01163228973 0 22.56370949 16.75633363 1014.588884 0.001971241782 +2.495993638e-06 0.009569751797 -0.01404396026 0 25.10164962 -11.41616538 973.589718 0.002054253412 +2.498157378e-06 0.009185555754 -0.003803101005 0 -0.9402183534 17.83532193 930.1015598 0.002150302813 +2.498005113e-06 -0.009961451483 0.007503579541 0 -12.75613412 13.95920163 946.4144579 0.002113239061 +2.498419309e-06 -0.008355769785 0.0120227946 0 -18.13889113 1.06057671 1021.669249 0.001957580696 +2.497770624e-06 0.004619403081 -0.006808440748 0 -15.96058358 -14.59256749 1023.820839 0.001953466782 +2.499408335e-06 0.008922913568 -0.006207771418 0 -11.22804281 -3.084320122 1070.309976 0.001868617545 +2.49348766e-06 0.005436839098 0.01336286598 0 -20.08359845 30.20872451 1004.167434 0.001991699724 +2.499253382e-06 -0.007510162247 -0.003643460933 0 3.03803623 -12.58755752 1059.553613 0.001887587353 +2.499298764e-06 0.001920949644 0.005915042167 0 10.64369414 1.219468003 904.5474777 0.002211050331 +2.495630563e-06 -0.009971420798 -0.003509282141 0 -27.65957908 4.178612534 945.6560388 0.002114933885 +2.498178545e-06 0.0004088640073 -0.01299997235 0 -5.828566157 -18.92636367 1037.288303 0.001928104263 +2.499310784e-06 -0.001836676388 0.0008202108764 0 -8.450640482 -8.129313766 998.6475567 0.00200270855 +2.497833487e-06 0.009383723983 0.008773660299 0 11.80199196 15.60739969 939.7089823 0.002128318488 +2.499015089e-06 -0.009408776392 0.009741238416 0 6.295116814 -12.62926965 1005.280698 0.001989494082 +2.495272794e-06 -0.008340013288 0.004364457945 0 -30.71139619 10.86601011 1058.730497 0.001889054869 +2.499594469e-06 0.002526292782 0.003135058174 0 7.950332196 -0.3490699939 883.5880402 0.00226349827 +2.497752695e-06 -0.008876486798 0.002238138195 0 15.90980831 -12.35193693 949.7425922 0.002105833745 +2.49894506e-06 -0.003860414727 0.01385871281 0 12.42421837 5.275781686 929.1175083 0.002152580252 +2.498310316e-06 -0.001800084701 0.01140878679 0 -9.264980182 14.133167 919.0534064 0.0021761521 +2.496037535e-06 0.005720514106 0.008748628688 0 24.78047305 11.89049901 975.7722884 0.002049658536 +2.497651989e-06 0.009183258922 0.000512540862 0 -16.58641328 15.64737572 1051.871028 0.001901373787 +2.498909159e-06 0.004683196507 0.008478439918 0 1.931627645 13.34987418 913.0818062 0.002190384242 +2.499686952e-06 0.005313814222 -0.004267753505 0 -1.767733624 -8.122120006 1050.456794 0.001903933613 +2.497416657e-06 -0.007191208908 0.0003170391941 0 -16.52164896 17.54245841 1059.747919 0.001887241261 +2.497149141e-06 -0.008273369162 -0.01128240118 0 19.29423423 -13.81505337 993.374499 0.002013339382 +2.496399273e-06 0.002993591977 0.01343102889 0 25.72071711 -4.367642403 971.6530262 0.002058347935 +2.49972349e-06 -0.003329816666 0.006148067345 0 5.634041446 -5.358470438 1045.513527 0.001912935556 +2.49976181e-06 0.009507612078 0.008556375287 0 -5.757396939 4.475386103 1056.498085 0.001893046499 +2.497225215e-06 -0.0009058540035 -0.0002378136828 0 -23.40605448 4.213765273 1009.122423 0.001981920087 +2.499349241e-06 -0.009267976778 -0.0002409805893 0 -10.31955189 2.051525731 922.1683147 0.002168801474 +2.494103168e-06 -0.007214420578 -0.009247361985 0 -21.32194808 -23.98274027 933.6130904 0.002142215036 +2.498891152e-06 -0.001180535359 -0.001307804114 0 11.20908238 -9.924778021 1005.173303 0.001989706644 +2.496955197e-06 0.004762154683 -0.006101232679 0 -21.00950228 -12.30030724 986.1050634 0.002028181453 +2.499805503e-06 -0.007146782731 -0.006058400476 0 -4.172204431 3.840206579 909.1517703 0.002199852726 +2.498206437e-06 -0.006278785211 0.01060097203 0 -18.53283022 -1.306287684 980.6809947 0.002039399163 +2.4943758e-06 -0.00509251887 0.01481202977 0 10.20202627 28.62595038 905.3417167 0.002209110619 +2.499703854e-06 0.007928980845 -0.009613465299 0 6.785515404 1.914849827 916.0819303 0.002183210839 +2.497366601e-06 0.003455957454 -0.006290143691 0 6.977168428 -19.24300634 891.5560643 0.002243268909 +2.497130311e-06 -0.001511847274 -0.007393209077 0 12.167553 20.31311583 987.9501003 0.002024393742 +2.498905924e-06 -0.005541862263 0.01179142507 0 -5.544682053 13.46711358 984.3896145 0.002031715868 +2.497388909e-06 0.000110383397 -0.009050696706 0 19.35830406 -7.938932469 915.2234572 0.002185258676 +2.493839078e-06 -0.004609495453 -0.008292741361 0 -27.54352835 -25.60676944 1070.382995 0.001868490072 +2.498208615e-06 -0.006016181321 -0.01358418886 0 18.01754609 -2.386773404 959.9462548 0.002083449974 +2.499213309e-06 -0.009238977418 -0.003598026289 0 10.00214373 -8.091764255 1025.548975 0.001950175028 +2.49754845e-06 -0.002226698254 -0.009360975148 0 -20.85252363 2.574230159 948.5228251 0.002108541774 +2.496911979e-06 -3.997931723e-05 0.01370563998 0 22.24535051 -5.711918171 923.7347191 0.002165123773 +2.496899068e-06 -0.009562195796 -0.01485410806 0 18.82392989 15.12011964 969.070894 0.002063832494 +2.498830468e-06 0.007916697753 -0.007864190543 0 -15.09936296 -6.094893574 1064.483836 0.001878844875 +2.496083593e-06 -0.00194011759 -0.01277176157 0 -19.52355932 -16.780267 919.3049114 0.002175556744 +2.497998319e-06 -0.008162664729 -0.01005333766 0 -4.628597496 18.96569687 975.4137374 0.002050411967 +2.498086498e-06 -0.003228794052 0.01141420756 0 -10.39815185 16.17610751 982.7029925 0.00203520292 +2.498539263e-06 0.009088375713 -0.006299315882 0 3.88401994 -15.43429144 930.944868 0.002148354934 +2.497457192e-06 0.00469612699 0.009474983944 0 -19.35118883 5.566182323 892.5480081 0.002240775826 +2.496746929e-06 -0.006073270068 0.01053838788 0 -17.98991671 -16.59009096 958.9408678 0.002085634336 +2.49788736e-06 -0.001071931897 0.004649565748 0 10.24675532 -14.90488643 879.648443 0.002273635582 +2.498028425e-06 0.002961070882 0.003793713748 0 2.912069685 -18.1688643 926.372085 0.002158959701 +2.499761056e-06 -0.0007340435684 -0.01315608469 0 -3.043194983 -5.569526909 918.0565848 0.002178514955 +2.495665964e-06 0.003516818145 -0.009846895854 0 23.00536752 13.99143237 913.9602623 0.002188278947 +2.49961256e-06 -0.001518281074 -0.009361573958 0 1.357610391 -9.091728366 1044.221719 0.00191530205 +2.497509971e-06 -0.002448925953 -0.001291702478 0 7.168603901 19.85904611 945.7496386 0.002114724572 +2.499788693e-06 0.0007104449254 -0.01388943544 0 4.712570889 3.300467925 884.9876343 0.002259918583 +2.498857892e-06 -0.005543142357 -0.007338388832 0 4.777302497 -13.95863919 976.0059144 0.00204916791 +2.498751484e-06 -0.0003733954765 -0.0006280901749 0 -7.728415648 -12.50920927 930.3432731 0.00214974414 +2.498874941e-06 0.007857894069 0.005634248264 0 -5.349938899 13.31280864 956.3178502 0.002091354877 +2.495442089e-06 0.005875693616 0.004959075849 0 25.80150321 12.35887979 946.8986395 0.002112158489 +2.495130522e-06 0.0004806095688 -0.00990515847 0 -11.06590957 -28.2639993 971.9159646 0.002057791078 +2.498938032e-06 0.002100000153 -0.01130848935 0 -12.6848316 3.341689545 899.9430556 0.002222362835 +2.499273159e-06 -0.006761233546 -0.00710857546 0 5.973192067 -10.07457164 971.3078409 0.002059079435 +2.497649791e-06 -0.001693382994 0.009572780798 0 13.86093428 13.06817134 878.3620994 0.002276965276 +2.496222258e-06 0.004745731666 -0.01439245225 0 -13.43352788 -20.30549956 885.2517537 0.002259244324 +2.496470773e-06 -0.007042827392 -0.01318545451 0 -22.61957747 -17.07256061 1066.11659 0.001875967431 +2.497539538e-06 0.001805443265 -0.002129857829 0 -20.5139637 -1.357340034 926.4340183 0.002158815372 +2.498333853e-06 0.009314293838 -0.005936583532 0 -10.38986494 -14.63167459 982.8142988 0.002034972428 +2.498565135e-06 -0.006867171875 -0.005658852146 0 2.912756981 16.09901598 965.5611674 0.002071334337 +2.498278196e-06 -0.005403199224 0.01378257612 0 -9.871748432 14.98590917 966.7816089 0.002068719534 +2.49644814e-06 0.002092726072 -0.005245989191 0 6.188495368 -22.90516354 889.7297963 0.002247873465 +2.497246427e-06 0.006465750299 0.002011988712 0 1.04627344 -23.56796262 1004.862901 0.001990321264 +2.499988114e-06 0.003707419075 0.00838538442 0 -1.296193674 0.758853615 974.1686731 0.002053032555 +2.497656601e-06 0.006324976548 -0.01420263373 0 -16.19333519 11.12806822 907.2677502 0.002204420911 +2.497326256e-06 -0.0004355640104 0.01088489032 0 -23.54708691 -2.886008107 1025.476369 0.001950313103 +2.498004426e-06 -0.007246141401 0.01038312081 0 3.004239202 -20.12752038 1018.347453 0.001963966221 +2.499497305e-06 0.006378213121 0.007130877161 0 6.503924805 6.144120562 892.2446206 0.002241537751 +2.497982992e-06 0.00995018173 -0.01364242708 0 8.916366787 18.43422787 1019.233712 0.001962258486 +2.494518792e-06 0.008292109147 -0.003035990149 0 23.45395086 -23.00302434 991.3929091 0.002017363632 +2.495226683e-06 0.005394357261 0.00123048513 0 -22.0568178 -23.11319078 1033.278902 0.001935585829 +2.495421809e-06 0.0003812644677 -0.002214033217 0 -17.52845132 21.94793552 927.6126141 0.002156072448 +2.496640846e-06 -0.001374009731 -0.00065033847 0 -11.367363 20.05986406 889.0981485 0.002249470436 +2.497173596e-06 -0.008892647149 -0.00603440095 0 -21.82320499 3.849564929 931.6569085 0.002146713003 +2.496491219e-06 0.004700208176 -0.002015922898 0 -17.81760435 17.14746812 932.9907371 0.002143644005 +2.497301463e-06 -0.004801125089 -0.004490108171 0 -17.63374283 10.97288871 893.637559 0.002238043802 +2.499692211e-06 -0.006489100666 -0.01314425128 0 -7.258744544 -0.3160467485 926.000675 0.002159825639 +2.498377539e-06 0.000488163121 -0.01007582679 0 -16.1601946 -0.2126016145 896.966622 0.002229737374 +2.498291847e-06 -0.009645827701 -0.003541217137 0 14.66311202 -7.594243211 893.1748875 0.002239203126 +2.497403982e-06 0.006679415107 0.01261486998 0 11.50109702 20.79305831 1042.419655 0.001918613094 +2.496952808e-06 0.003573669563 0.006417627269 0 8.955918106 19.88998178 883.1973708 0.002264499495 +2.498546601e-06 0.007364930594 0.01247840996 0 -14.15882402 -5.273359145 885.9973957 0.002257342978 +2.499426515e-06 -0.007155857612 0.01032777647 0 -9.552452833 2.589936314 924.0691141 0.002164340274 +2.496219625e-06 0.005434376579 0.007596972766 0 21.72800866 -17.66491671 1017.822955 0.001964978281 +2.498071199e-06 0.0003272250667 -0.005450149868 0 17.17905191 0.6785523197 875.0911002 0.002285476335 +2.499219713e-06 0.001969640236 0.008440840726 0 7.441545461 -8.397457884 898.0684662 0.002227001699 +2.499132336e-06 0.00223279641 -0.006860195061 0 7.275566035 -10.03910708 941.0537059 0.002125277216 +2.496229626e-06 -0.005985536547 -0.0007711100369 0 -12.84636364 24.91878034 1020.354922 0.001960102271 +2.497751375e-06 0.003688674141 -0.01281791761 0 11.54091954 -17.76149069 998.4819973 0.002003040621 +2.499395736e-06 0.003183580777 0.006397526753 0 -9.929421283 -2.603915904 933.6807515 0.002142059796 +2.498117294e-06 0.005416491777 -0.001597829803 0 19.51091228 -1.911400641 1010.00323 0.001980191686 +2.495559498e-06 -0.003443688201 -0.0126018103 0 -23.8877372 11.83921205 894.0264904 0.002237070178 +2.499141877e-06 -0.002871579668 0.004968773494 0 10.78452388 -5.954791157 940.2443779 0.002127106577 +2.498703402e-06 -0.009141591419 0.0144999898 0 -2.341789055 15.75250383 988.7675899 0.002022720021 +2.49973344e-06 -0.008427573708 -0.001626486524 0 0.5093928425 7.286885673 1000.39268 0.001999214947 +2.498673725e-06 -0.001840354213 -0.005102335231 0 -16.10400321 3.470077892 1011.279009 0.001977693576 +2.497279233e-06 -0.006160548348 0.01117831296 0 -2.229939038 24.63484398 1059.946136 0.001886888334 +2.498660734e-06 -0.004525587982 -0.01064105596 0 -5.749190276 -14.56582275 956.6192768 0.0020906959 +2.494689102e-06 -0.001176910703 0.00644945937 0 -22.48111805 23.00063336 986.0643111 0.002028265274 +2.496830302e-06 0.004938572627 -0.008171419718 0 15.10607172 -17.95705083 931.5516468 0.002146955573 +2.498225745e-06 0.002129521118 -0.00846087548 0 -13.57819353 14.49978887 1054.255914 0.001897072592 +2.496346575e-06 0.009163006931 0.009698444763 0 19.28518464 18.37909868 985.0019465 0.00203045284 +2.49950392e-06 -0.009617086183 -0.006631330526 0 -0.7613320565 9.77749948 984.5036955 0.002031480439 +2.496784528e-06 0.002999668932 -0.009026177844 0 -8.523755988 -25.62037484 1064.226617 0.001879298984 +2.495683929e-06 -0.007577684876 0.01454303902 0 13.38050878 28.22989185 1062.616159 0.001882147173 +2.497470307e-06 -0.0009183385223 -0.01089769249 0 -19.10709519 -12.18481327 1007.112301 0.001985875853 +2.495642256e-06 0.008983694371 0.01453461957 0 18.0473413 19.25230255 893.2771834 0.002238946698 +2.498110853e-06 0.001166844033 -0.006034527279 0 -8.462074289 -16.50293523 953.8474989 0.002096771237 +2.498560979e-06 0.005002152016 -0.004398080818 0 3.640316023 16.2298484 980.2363339 0.002040324288 +2.497438026e-06 -0.001189595978 -0.003606684976 0 19.37532983 -13.46015022 1041.823458 0.001919711046 +2.498803262e-06 -0.001784175732 0.003273150951 0 2.294292792 -14.40617766 942.7466716 0.002121460685 +2.496547384e-06 0.003846056471 0.003158544931 0 -15.1691384 -23.60077563 1067.08892 0.001874258051 +2.495822272e-06 0.007865045192 0.009938621256 0 -3.542670594 26.40065716 920.9426819 0.002171687814 +2.496439538e-06 -0.004256885587 0.008649711495 0 -9.685821836 26.56275928 1058.962365 0.001888641245 +2.499370575e-06 -0.009808766465 -0.008171805837 0 9.027271598 5.689099909 950.9392525 0.002103183768 +2.49982533e-06 -0.008798894687 0.002975892909 0 -5.458681257 1.475332173 956.6698073 0.002090585471 +2.498433971e-06 0.0007462802948 0.004755311545 0 18.03116002 1.740992536 1023.344186 0.001954376668 +2.497588385e-06 0.001606744863 0.003293572655 0 9.647786478 18.91302436 966.4006729 0.002069534983 +2.499033881e-06 -0.009075409584 0.01381054546 0 7.033645569 -11.83531978 990.2964257 0.002019597313 +2.499192996e-06 0.0002770123351 9.466728196e-05 0 5.110255191 11.11286779 962.6662457 0.002077563235 +2.499991633e-06 0.00449598874 0.01062813786 0 0.4436756015 1.140371249 945.9161703 0.002114352268 +2.496898089e-06 -0.008568228735 0.009979285123 0 17.6284103 -18.5907838 1028.123252 0.001945292061 +2.498303602e-06 -0.0003523982642 -0.001602844438 0 3.253612049 17.84360037 984.4539816 0.002031583027 +2.49506602e-06 -0.001019472568 -0.01065498524 0 16.44509792 -25.15743937 956.070072 0.002091896879 +2.498068528e-06 0.008748613228 -0.003103998208 0 16.8571249 12.18441212 1057.960648 0.001890429483 +2.499699519e-06 0.001738404445 0.00783265044 0 5.371953406 6.065245187 1045.099644 0.001913693121 +2.498452119e-06 0.007554629552 0.004800106888 0 -10.68219609 12.22111531 922.3095966 0.002168469251 +2.499411263e-06 -0.001155688511 -0.01130822927 0 8.447806424 -7.802839202 1059.701063 0.001887324709 +2.497371676e-06 -0.003121318854 0.01159926445 0 -21.96971572 -6.641887774 1000.668344 0.001998664204 +2.496129015e-06 -0.003832806819 0.003672671984 0 13.47408448 24.58093203 1006.863322 0.001986366925 +2.495304173e-06 0.002976520956 -0.0006727961381 0 -22.31056376 -23.53436602 1057.435217 0.001891368821 +2.499519408e-06 -0.008241000683 -0.00547340061 0 2.365752627 -8.346057004 884.7661722 0.002260484253 +2.499823618e-06 -0.006354437363 -0.0002472379245 0 -2.820591064 -4.716859384 925.2987725 0.002161464015 +2.49867943e-06 0.002639633687 0.0102257102 0 -14.0472119 -5.616181247 930.6975346 0.00214892586 +2.495476207e-06 -0.002478601485 -0.0126042979 0 12.72858979 -23.77233596 895.8762333 0.002232451231 +2.498976448e-06 -0.000537178521 -0.01099073164 0 -13.42732682 -6.895249206 1054.814566 0.001896067863 +2.499944554e-06 0.004659417057 0.00325189047 0 0.3828190071 3.059873481 926.0217153 0.002159776566 +2.499870769e-06 -0.00148477959 -0.008686884481 0 0.6146390735 5.145524348 1019.293846 0.00196214272 +2.499585651e-06 -0.002492913189 0.00656790412 0 9.315912472 -2.382514883 1056.228336 0.001893529962 +2.497084709e-06 -0.004165350408 -0.001929663566 0 -23.16685952 -3.454893261 969.6111716 0.002062682505 +2.496744523e-06 -0.0040940898 -0.01104633734 0 -10.03431052 -20.81742513 905.2270204 0.002209390523 +2.499865632e-06 0.003383602966 0.007635703655 0 -4.544218493 -0.9710286909 896.3597938 0.002231246888 +2.497437763e-06 0.00360161073 0.01254513811 0 19.55176649 -12.92826111 1035.040308 0.001932291896 +2.498392678e-06 0.003148052748 -0.01381127263 0 15.97433895 -2.279230959 899.7626472 0.002222808433 +2.499035415e-06 -0.0003859889088 0.002769755842 0 6.450284351 10.86925672 909.8465387 0.002198172895 +2.49923063e-06 -0.008583361572 -0.007948662839 0 9.097083688 7.66040801 958.6309644 0.002086308574 +2.497661132e-06 0.004502901193 -0.004445750385 0 -6.770938083 21.04710626 1021.896704 0.001957144977 +2.499514254e-06 -0.004202196337 0.0005996205588 0 8.756135724 -1.415620197 899.8370407 0.002222624664 +2.494867654e-06 -0.008979934496 0.008825347556 0 -26.48600447 -12.57839882 914.4754739 0.00218704608 +2.499552447e-06 0.002966718422 0.001051767594 0 5.433972984 -7.464880096 975.8595159 0.002049475326 +2.496515616e-06 0.001657791412 -0.01297089466 0 4.254507024 -25.5766159 981.6684623 0.002037347716 +2.494948062e-06 0.002356499797 0.00116342329 0 22.50295339 20.22775635 951.1881556 0.002102633415 +2.497356317e-06 -0.002610925306 0.002655201294 0 21.52922568 -6.533032082 978.0564625 0.002044871719 +2.497940029e-06 -0.000880332822 -0.006796599641 0 13.9479153 -14.99113815 1008.489946 0.001983163052 +2.499619979e-06 -0.003089814526 0.01168650476 0 -8.044169312 -3.673373142 1014.299637 0.00197180392 +2.494813903e-06 -0.0006878299359 0.009406743546 0 20.57178515 27.20872275 1058.308085 0.001889808863 +2.498208524e-06 0.008457974745 -0.008500502862 0 -16.53314142 1.162863792 875.366101 0.00228475834 +2.497945545e-06 0.007267704932 -0.00729920442 0 -0.2071165224 -18.15594314 895.4675674 0.002233470058 +2.499818487e-06 -0.0004337381758 0.0009225945733 0 -5.268530385 -0.9206826303 887.6480066 0.002253145374 +2.497451272e-06 0.001666886131 -0.01165032927 0 -17.19362734 16.81057737 1064.638967 0.001878571105 +2.496933788e-06 -0.002151686945 0.005079682069 0 5.587767729 24.26418151 1005.010716 0.001990028531 +2.499864127e-06 -0.001736728004 -0.007604810076 0 0.04888438488 -5.087235376 975.9137922 0.002049361343 +2.497384985e-06 -0.007103141467 -0.01029413232 0 22.04669162 9.349734616 1046.72931 0.001910713669 +2.499421588e-06 -0.005554700703 0.01268912913 0 -7.830286203 6.906231993 970.6456627 0.002060484147 +2.496854863e-06 -0.0079631127 0.009980218196 0 -25.32340366 -6.509776643 1042.024097 0.00191934141 +2.499829525e-06 -0.005039358567 -0.006001117551 0 -5.944415334 -1.187464266 1038.123384 0.00192655327 +2.499741099e-06 0.001348524042 0.006225600557 0 -4.428628541 5.00900419 929.1135703 0.002152589375 +2.496756021e-06 0.0007653357368 -0.01444124053 0 16.22995251 15.76983022 887.9968636 0.002252260207 +2.498739721e-06 -0.001225956199 0.01328846778 0 -12.87697366 9.043699574 990.9441752 0.002018277164 +2.496824021e-06 0.008506933888 0.003730311538 0 22.59808805 6.681764903 934.5674685 0.002140027411 +2.499387845e-06 -0.005423289761 -0.006021418632 0 -2.383265594 -10.96112841 1013.67835 0.001973012444 +2.497305634e-06 0.0003887793608 0.01249643526 0 21.33083898 10.00234062 1014.489843 0.001971434228 +2.49898878e-06 0.006427146751 -0.008303771107 0 -1.06995828 -14.46106934 1019.488005 0.001961769035 +2.498744531e-06 -0.001321064993 -0.01364808984 0 -14.39988004 7.49772965 1024.354537 0.001952449008 +2.497761883e-06 0.00605474629 0.006925648316 0 19.8412389 2.055825956 942.5087548 0.002121996204 +2.495868947e-06 -0.006777969864 0.01123592871 0 -24.07039987 13.30231481 956.1864686 0.002091642233 +2.497914966e-06 -0.008964498071 -0.000578623605 0 8.286504435 17.16633134 933.1568094 0.002143262504 +2.495454037e-06 -0.003486025152 -0.004133801947 0 -12.90683372 -24.15991999 907.7989525 0.002203130984 +2.49708897e-06 0.007759494558 -0.0026321954 0 -15.66077873 19.78658173 1045.352599 0.001913230045 +2.496298875e-06 -0.008465302056 -0.0003430761932 0 -13.20498472 21.31764133 921.1657666 0.002171161883 +2.497399272e-06 -0.001958081345 -0.01121660205 0 -1.837469263 -22.09936889 971.9500694 0.002057718872 +2.49476012e-06 0.002194129056 -0.01264892184 0 22.39146631 -19.94006905 925.4621595 0.002161082416 +2.497907943e-06 -0.003711124756 0.01475587336 0 18.51753844 7.187675275 970.7771129 0.002060205142 +2.499049672e-06 0.004214749574 0.009090266163 0 12.43759433 3.585299455 938.763513 0.002130462009 +2.497806683e-06 -0.008613060918 -0.005976410047 0 5.003190947 -18.89732495 933.0460164 0.002143517002 +2.497312735e-06 0.0008067500871 0.0001934522297 0 -18.30039499 -16.6551558 1066.930742 0.00187453592 +2.495205983e-06 0.0013981573 0.01221939926 0 -24.30549123 21.37534582 1044.559796 0.001914682153 +2.497782765e-06 -0.009269998576 0.004375708003 0 -20.32461318 -7.932136015 1035.71925 0.001931025227 +2.498625072e-06 0.001935884203 0.007364503441 0 -15.32244624 6.378051612 1000.650206 0.001998700432 +2.499419977e-06 0.0009650849411 0.01469670743 0 -4.078631201 -10.61847134 1056.014901 0.00189391267 +2.496854041e-06 -0.002881175205 0.005229875471 0 14.60322894 19.02254587 955.6072401 0.002092910054 +2.498100403e-06 0.003976653554 -0.008980424381 0 9.952762604 17.12301747 1015.815535 0.001968861404 +2.496450555e-06 -0.0008342037443 0.01465152191 0 -6.844490168 25.4761471 989.5573148 0.002021105771 +2.49737354e-06 -0.003478529262 -0.00173219118 0 17.23621169 -15.985839 1025.291146 0.001950665435 +2.494922212e-06 -0.003550656936 -0.0007734834007 0 22.573218 24.46390803 1043.741531 0.001916183213 +2.497295069e-06 -0.005141576943 -0.002014812562 0 4.805322159 21.33749519 939.9764989 0.00212771277 +2.499758969e-06 -0.006103636082 -0.006355822189 0 -1.854513578 -5.808766433 878.2006643 0.002277383839 +2.498895374e-06 -0.005220434936 0.004591643885 0 -0.2868449875 13.94649473 938.3446358 0.002131413048 +2.497568282e-06 0.003063488374 -0.01227685331 0 -12.94855297 19.22608585 1050.706234 0.001903481616 +2.497229584e-06 -5.593248643e-06 -0.001431158117 0 21.61069229 -3.545774714 929.9701948 0.002150606558 +2.496537231e-06 0.006282118866 0.0001198395621 0 22.05573379 -8.104328553 892.4222528 0.002241091584 +2.495512968e-06 0.0002645207616 -0.01289150032 0 -15.42968349 -25.63081912 997.9936475 0.002004020772 +2.498741264e-06 0.002690277495 -0.01165153729 0 8.78507758 11.10774 892.3953235 0.002241159212 +2.498955812e-06 -0.002929944536 0.01313265463 0 -10.79019661 8.110934981 933.9432534 0.002141457731 +2.499290532e-06 0.002797848452 -0.001551652111 0 -0.3314880901 -12.5742331 1055.856407 0.001894196963 +2.499836545e-06 0.008284894773 -0.009967841478 0 -5.195063734 -0.9584921811 923.9220702 0.002164684733 +2.49872761e-06 0.003653268907 0.002817455004 0 1.655631164 15.76724123 993.6393325 0.002012802769 +2.498963543e-06 -0.002462731693 0.009121293118 0 4.135133759 14.39193379 1039.886362 0.001923287076 +2.497946212e-06 -0.004969759509 -0.009618268807 0 -16.7319046 -8.076492578 916.4318983 0.002182377113 +2.495973326e-06 -0.009075397761 0.002542407364 0 14.54561588 23.67243086 978.4673613 0.002044012993 +2.496917256e-06 0.003626497961 -0.01042374257 0 -4.305292295 -25.59617201 1044.836834 0.001914174476 +2.49899937e-06 0.006241190638 0.005808360146 0 10.2126896 10.37904275 1029.141762 0.001943366865 +2.499848166e-06 -0.002427784014 -0.006156630702 0 3.503330791 -3.793228091 936.9928931 0.002134487908 +2.496946845e-06 0.004671827992 -0.01028118447 0 -4.52922539 -25.47338739 1046.542353 0.001911055003 +2.497384555e-06 0.002325198585 0.01074695115 0 21.57323888 3.694044395 956.6046099 0.002090727955 +2.499105807e-06 -0.0005953990621 0.01262164806 0 -8.917694319 7.783818423 885.0145663 0.002259849811 +2.497359345e-06 0.005986236976 -0.0001823547366 0 -7.98150667 19.39085249 912.0949684 0.00219275412 +2.495156997e-06 -0.00811375706 0.007976802529 0 -13.96683458 26.33545709 957.1325065 0.002089574836 +2.497104794e-06 0.005775095979 -0.004861517656 0 1.428065272 -22.45521817 934.6527641 0.002139832114 +2.499237515e-06 -0.002279065419 0.00470029494 0 12.13122751 -1.593276505 990.6909605 0.002018793024 +2.49966667e-06 -0.004730968485 0.009528525146 0 -2.106715302 7.628887116 969.2725785 0.002063403055 +2.497935355e-06 -0.004267347436 -0.002379081 0 -21.58024763 -0.8743938558 1062.527976 0.001882303379 +2.498729598e-06 0.008367072139 0.003379611801 0 11.89259502 11.24653065 1026.674645 0.001948036809 +2.498602162e-06 0.002338950816 -0.001688234357 0 -16.02883365 -4.205594216 990.8868025 0.002018394023 +2.495011682e-06 0.005532864928 -0.0139879191 0 11.57677128 -29.63322857 1006.479886 0.001987123665 +2.497294175e-06 0.0005877587898 0.009366884509 0 -21.81771402 4.659249617 958.6318788 0.002086306584 +2.499878616e-06 -0.002450520024 0.0114431926 0 3.449215884 3.832400839 1046.426912 0.00191126583 +2.498082573e-06 -0.007970048706 -0.01315339375 0 -15.80162794 10.70260354 974.3002313 0.002052755337 +2.494471855e-06 -0.008098000535 0.01203663732 0 -28.90626356 -18.88625861 1037.578083 0.001927565774 +2.496781545e-06 0.006212834339 -0.01155659916 0 -20.20675327 -12.97636464 946.0760718 0.00211399491 +2.496550043e-06 -0.0009562292323 0.004597766837 0 -24.79011328 10.66858693 1026.901681 0.001947606121 +2.499002624e-06 0.003915616451 -9.025342762e-05 0 12.21707196 -2.724125926 886.1231905 0.002257022524 +2.497059093e-06 0.0002930158842 -0.00662672729 0 -21.20512052 9.491041798 957.511046 0.00208874875 +2.495349116e-06 0.002449877653 0.01238470464 0 -6.84140115 26.46364316 895.5953896 0.00223315129 +2.498099224e-06 0.009623251529 -0.003578133029 0 11.58224439 13.66611012 918.518627 0.002177419098 +2.499007887e-06 0.009044592623 -0.008384844004 0 -13.59400822 2.192801328 977.384149 0.002046278326 +2.498522898e-06 -0.009769859575 -0.01144837504 0 1.215286287 15.20004361 886.9762917 0.002254851701 +2.497155922e-06 0.005529049286 0.01355479226 0 -3.001420425 23.89949011 1009.521419 0.001981136767 +2.49758877e-06 -0.007841576743 0.005969015351 0 -20.29515402 -0.5661240898 924.2081598 0.002164014653 +2.499263373e-06 0.007874289285 0.001553453389 0 -11.18350614 -5.110134773 1012.899656 0.001974529252 +2.499357053e-06 -0.001685069199 -0.009168368226 0 10.5710886 2.111496953 950.5403368 0.002104066416 +2.496167418e-06 0.001994927661 0.01353662037 0 19.35324705 21.57437343 1046.235678 0.001911615176 +2.494571479e-06 -0.001001724526 0.009622370386 0 -21.69176314 26.75117402 1044.387098 0.001914998762 +2.493535116e-06 -0.008521561897 0.01121603348 0 -24.4506791 23.11654181 934.8598858 0.002139358026 +2.49936425e-06 0.002268519755 0.00379971781 0 9.681251549 6.857954563 1052.051965 0.001901046779 +2.499858789e-06 0.002843088042 0.003127049329 0 -3.501502986 -4.362817119 1052.633347 0.001899996808 +2.498877125e-06 -0.008983489531 0.01123851618 0 -11.34575621 -9.931450967 1006.011937 0.00198804798 +2.499517994e-06 0.0003885341575 -0.01050968762 0 3.278257086 -8.976611267 973.2528289 0.002054964487 +2.494998091e-06 -0.005231021452 -0.008244213634 0 -25.45945405 17.58327927 977.5243347 0.002045984871 +2.499014873e-06 0.006626565638 0.001288885635 0 -12.39577092 6.744915816 1005.226106 0.001989602129 +2.498157701e-06 0.003427069127 -0.01471256444 0 -17.08473536 5.612719351 936.5882202 0.002135410159 +2.496394294e-06 -0.003142762939 -0.0007810633932 0 -24.99878488 -6.204416758 958.6358384 0.002086297966 +2.496260056e-06 -0.007165710204 0.01434468359 0 16.68295439 21.48740119 994.1069347 0.002011855999 +2.497396847e-06 -0.004244564716 -0.01247154012 0 3.66047636 -20.67948598 920.0354991 0.002173829164 +2.495007622e-06 -0.006184866112 -0.002137573385 0 18.66178995 -24.79908148 981.469467 0.002037760794 +2.496468506e-06 -0.0008730103215 0.01274006601 0 -16.16397391 21.48529103 1011.142073 0.001977961409 +2.499937359e-06 0.006462784032 -0.009959818516 0 1.425091735 -3.446894183 1053.770418 0.001897946617 +2.494013277e-06 -0.006654504891 0.001668463256 0 -26.5289252 23.67638256 1026.678574 0.001948029354 +2.497866378e-06 0.003795079221 -0.003399587399 0 -13.95189343 14.99943478 991.3450249 0.002017461075 +2.498282273e-06 -0.007509464403 0.003003515233 0 7.510916518 15.36439686 922.450356 0.002168138358 +2.499428737e-06 -0.008796189846 0.01263686046 0 -4.163658974 -8.698912063 902.1685194 0.002216880723 +2.494930795e-06 -0.006134581207 0.01267392829 0 19.14621945 23.35751392 947.8027135 0.002110143779 +2.495872174e-06 -0.005036005741 -0.009823150516 0 3.513239359 -27.19568389 953.7820386 0.002096915143 +2.499481394e-06 -0.00363877994 -0.003701922325 0 -6.550875673 -6.548298878 909.4133411 0.002199219991 +2.497217638e-06 0.006856917618 -0.009960651998 0 20.76558475 5.906331123 914.8158617 0.002186232316 +2.498024889e-06 0.0003776971949 0.002149904827 0 -19.1393091 -3.881601131 982.2894516 0.002036059734 +2.497464424e-06 0.004976862012 0.001732223989 0 -16.68171111 -16.25507373 1033.913212 0.00193439834 +2.496755818e-06 0.0002442552196 0.001759068514 0 -20.55901621 -14.36817621 984.2079779 0.002032090823 +2.498691039e-06 -0.006893065399 0.01075220952 0 0.3946356798 -16.81530807 1039.347305 0.001924284587 +2.498777709e-06 0.005127824661 -0.009678526197 0 3.575280736 13.24290736 877.1594836 0.002280087074 +2.494560929e-06 0.001653976901 0.008984621514 0 19.70562219 26.20022421 993.1717422 0.002013750407 +2.499475054e-06 -0.005955949733 0.005636197196 0 -1.436082939 9.781444904 964.778388 0.002073014927 +2.496468425e-06 0.005096014263 -0.007684029518 0 19.51442977 14.74607194 919.846593 0.002174275597 +2.496241638e-06 -0.007732309066 -0.008165447724 0 -2.407890073 -27.45613083 1004.717034 0.001990610224 +2.499286131e-06 -0.005022626286 -0.01101557632 0 -6.427439237 -10.06549928 999.376218 0.002001248343 +2.497960166e-06 -0.00858471618 0.001878707204 0 14.63981734 -13.03674171 970.2396271 0.002061346439 +2.497351538e-06 -0.004511843892 0.005271939591 0 -6.379843258 -23.48701155 1057.065282 0.001892030733 +2.497306917e-06 0.001167874588 0.003614093475 0 -13.1407197 19.43001648 1010.290988 0.001979627676 +2.498715262e-06 -0.008146069231 -0.007547496089 0 13.59956636 -4.832007468 900.1915448 0.002221749373 +2.498788576e-06 -0.009657196025 -0.0118541342 0 9.851340928 11.25174032 960.6009781 0.002082029943 +2.497664548e-06 0.001173360194 -0.005500510961 0 21.90118132 3.070307922 1022.918591 0.001955189804 +2.497692582e-06 0.005193363088 0.001121677752 0 9.530355297 18.3005786 960.1589776 0.002082988387 +2.496449378e-06 -0.00663816764 0.01308024997 0 15.14726735 20.93582284 969.1873867 0.002063584429 +2.496867798e-06 -0.004627768812 0.01123786076 0 22.07480913 12.18105055 1006.870387 0.001986352986 +2.499606419e-06 0.007607298135 0.006800869843 0 -2.713828944 -7.959352918 947.7671969 0.002110222855 +2.49827109e-06 -0.002547392719 -0.009443008723 0 3.652231119 18.56876324 1017.445474 0.001965707303 +2.498407328e-06 0.006274770154 -0.009630017909 0 15.07924512 6.523685315 920.3507423 0.002173084573 +2.498484557e-06 -0.00191906156 0.01185767223 0 1.828646499 -17.27867977 997.8050358 0.002004399585 +2.499329374e-06 -0.007857087567 -0.005948020373 0 -8.865552866 -6.580712931 953.2567875 0.002098070558 +2.495583029e-06 0.0087516749 -0.008778591428 0 15.78105653 -23.54592496 953.0480666 0.002098530043 +2.498771976e-06 0.008758978187 0.01469841655 0 11.89555402 -10.19391942 999.4398485 0.002001120931 +2.497756191e-06 -0.007566416645 0.0001397907268 0 -6.78778622 17.62264183 891.1600168 0.002244265858 +2.498107082e-06 -0.002084196797 -0.009089785027 0 16.3046808 7.113266371 913.9915611 0.002188204011 +2.498886008e-06 0.009996361672 0.005114719674 0 -11.00290072 11.28260425 1055.633465 0.001894597005 +2.496757251e-06 0.003835790809 0.01106289671 0 22.71158422 13.58354644 1038.647007 0.001925582018 +2.498845458e-06 -0.003729759352 0.00107134246 0 -2.303201812 -16.05855833 1067.414492 0.001873686384 +2.499732856e-06 0.001510721198 0.01308492502 0 6.994180736 -0.767619313 962.5691851 0.002077772726 +2.497025783e-06 0.007641694006 -0.006915474564 0 0.08455922442 -24.8086599 1016.741743 0.001967067855 +2.49690938e-06 -0.009829943753 -0.00286559446 0 9.0911372 20.86244991 914.9129495 0.002186000319 +2.496729139e-06 0.005083871186 -0.001264928856 0 26.76361984 -2.204454514 1049.43095 0.001905794755 +2.496605878e-06 -0.0003365307068 0.002013231637 0 -25.02021102 -11.72374544 1059.967027 0.001886851147 +2.498630039e-06 -0.005632835999 0.003966941661 0 14.35467648 5.557160089 929.7359551 0.002151148387 +2.496880291e-06 -0.009309571413 0.01182393431 0 -18.64925463 -11.41396365 874.9270974 0.002285904741 +2.497771633e-06 0.001122123147 0.002336497083 0 4.576617734 -20.66506949 1002.260899 0.001995488403 +2.497115053e-06 0.002044312884 -0.00243345778 0 -6.643691043 22.38813392 971.7903205 0.002058057132 +2.498651944e-06 -0.0008718893724 0.002693466288 0 -8.551399399 -12.92389428 943.5993468 0.002119543646 +2.498722778e-06 -0.007086642087 0.003527680929 0 15.87072098 4.531581906 1032.485915 0.00193707243 +2.498051127e-06 -0.0009507488552 0.002830093468 0 -18.31844965 10.10085047 1059.256895 0.001888116102 +2.499031141e-06 -0.0069941861 0.006936577004 0 13.49565083 -1.06539734 972.376697 0.002056816053 +2.499738022e-06 -0.001612291089 0.008933643107 0 -6.153365262 -3.122029522 953.2108642 0.002098171638 +2.499358415e-06 0.003204035494 0.01261439588 0 -10.9161135 5.217858418 1067.992456 0.001872672405 +2.495947813e-06 -0.009305871162 0.01309064685 0 19.0492582 20.01322726 969.9585599 0.00206194376 +2.499798318e-06 0.008761061435 0.001608060147 0 -2.661554262 4.883572247 875.6908961 0.00228391092 +2.49962667e-06 -0.004723245557 -0.01456724309 0 8.451988338 -1.906966685 1002.663799 0.001994686556 +2.496484304e-06 0.00421371798 0.001656663576 0 13.33466293 -19.90376263 903.0170113 0.0022147977 +2.495992327e-06 -0.004596700692 0.0006222584378 0 -21.25061072 -16.86485974 957.6790868 0.002088382244 +2.496074147e-06 0.0008757972298 -0.00393961153 0 -20.15925093 -15.85940275 914.8445177 0.002186163836 +2.498837489e-06 -0.007157165459 6.720195059e-05 0 -14.31087236 7.866969237 1070.814698 0.001867736785 +2.498528157e-06 0.002668589843 0.006704347883 0 -16.70526288 -6.196377395 1038.253664 0.001926311525 +2.496791222e-06 0.006883658613 -0.009718888917 0 23.379145 -3.60238387 933.3186516 0.002142890851 +2.497954058e-06 0.0004954557633 -0.004730821343 0 7.804464769 19.58413723 1041.874908 0.001919616246 +2.499742641e-06 0.001548614483 0.01468753979 0 2.785795219 -5.91716574 911.5610559 0.002194038443 +2.49482785e-06 0.0002946433844 0.01143518331 0 -18.7166465 22.01009018 897.619391 0.002228115858 +2.497243044e-06 0.00215251158 0.00817456794 0 16.51186904 13.36635724 904.3232018 0.002211598681 +2.498853594e-06 0.001777970842 0.01321573309 0 6.940910549 14.38432626 1054.589921 0.001896471756 +2.496822536e-06 -0.004282155251 0.002245570337 0 -17.52432212 18.83007036 1019.904349 0.001960968205 +2.498424647e-06 0.001659301845 -0.0128395375 0 -12.07867248 -11.32925766 932.7471013 0.00214420393 +2.49898514e-06 0.009340802948 0.01485326105 0 10.15997339 -9.35956532 969.4717901 0.002062979058 +2.498529043e-06 0.004854554092 4.618659848e-05 0 15.33892655 -9.107804973 1039.83153 0.001923388493 +2.496661725e-06 0.003406673111 0.01406070664 0 25.41588803 -1.719836961 985.3797641 0.002029674317 +2.499283594e-06 0.007562582311 -0.008042175157 0 10.04959856 5.648829697 963.0018472 0.002076839215 +2.494997619e-06 -0.003495920259 -0.002478878608 0 -18.20054255 -25.45142239 988.4836483 0.002023301046 +2.499805252e-06 -0.006831942368 0.01382900422 0 5.063202346 -2.093190546 877.8544529 0.002278282001 +2.49848562e-06 0.006377141727 -0.00401012443 0 -3.9956341 -17.37928426 1024.437846 0.001952290233 +2.497016783e-06 0.003945893827 -0.003802971721 0 21.64528962 13.12879996 1035.947658 0.001930599471 +2.493899357e-06 -0.006394326785 0.006986471582 0 20.93869445 28.25198957 1005.806975 0.001988453103 +2.495615898e-06 0.001519198162 0.01341253866 0 2.88268137 30.80376102 1044.133485 0.001915463903 +2.492927101e-06 0.008858538549 0.01482160834 0 25.07797168 24.39745422 929.2670312 0.002152233893 +2.499063216e-06 0.009971325053 -0.00201427598 0 -10.02079226 -9.112297307 989.3807419 0.002021466474 +2.498251946e-06 0.007093309439 -0.004101209461 0 -14.01353496 9.902195812 917.458948 0.00217993405 +2.498772488e-06 -0.00500462472 -0.00649043795 0 7.330122623 -11.80924951 886.9178651 0.002255000241 +2.49459154e-06 0.009674553559 0.01199256602 0 18.97750283 28.78754557 1047.520149 0.001909271151 +2.495583366e-06 0.003879950033 0.01198156621 0 9.574238873 29.14912876 1031.630271 0.001938679055 +2.498783944e-06 0.005813613031 -0.002728293941 0 -1.511737408 -15.9313215 1025.952388 0.001949408202 +2.49812015e-06 -0.004074426997 0.005743709102 0 15.82464531 8.067594794 915.8079344 0.002183864023 +2.499860433e-06 0.005315473732 0.01358619131 0 -4.304697369 2.053228194 902.6887579 0.002215603089 +2.498479151e-06 9.703439195e-05 0.01121482752 0 9.505033443 -12.96676839 921.6341949 0.002170058371 +2.495819446e-06 0.005979020754 -0.01380971841 0 11.38871909 -26.0529443 982.7079637 0.002035192625 +2.495137195e-06 -0.007274991944 -0.003984080306 0 16.18264158 -22.10050572 877.6977001 0.002278688892 +2.499180152e-06 -0.003851915197 -0.003758844668 0 -12.99281632 2.204250061 1029.0343 0.00194356981 +2.499793845e-06 -0.008287077076 0.007904175497 0 -4.138690991 5.229932245 1038.632008 0.001925609826 +2.497564439e-06 -0.005765467971 -0.004518955986 0 0.06041375885 23.11776609 1047.066029 0.001910099214 +2.498008917e-06 -0.002540304447 -0.0083866009 0 17.94630382 1.18882775 901.0240045 0.00221969669 +2.497713048e-06 -0.009601476267 0.003141876804 0 20.11241448 10.12621271 1052.525278 0.001900191892 +2.496297791e-06 -0.007219847315 -0.003238249447 0 -15.84980898 -22.73533108 1017.947511 0.001964737846 +2.497759261e-06 0.007797523811 0.008808635627 0 20.72683141 -4.086243184 997.5995188 0.002004812515 +2.499552911e-06 -0.009080553083 0.003827651467 0 9.28829743 1.950683243 1003.615082 0.001992795879 +2.498934024e-06 -0.0007925255923 0.01177255282 0 -7.652183759 -10.34522407 881.1406638 0.002269785157 +2.495752773e-06 0.009357532687 -0.00387569481 0 15.91190549 20.08628323 878.6612975 0.002276189933 +2.49867621e-06 -0.004736870001 0.007380976786 0 -14.59204467 -7.00919455 994.687798 0.002010681144 +2.499199265e-06 -0.00481384628 -0.002668576024 0 3.000934525 -12.12471015 986.8942292 0.002026559626 +2.493852889e-06 -0.007868524762 -0.00823901559 0 -25.13296179 -18.21796234 884.4798696 0.002261215963 +2.495293822e-06 0.001728475369 -0.00425872565 0 -23.88374748 -21.55614052 1047.937235 0.001908511248 +2.497466511e-06 -0.001541105262 -0.01324051109 0 22.7458422 -6.989375708 1056.707538 0.001892671271 +2.498849638e-06 0.009225547165 -0.01010458177 0 -6.678644133 12.03180669 907.0827314 0.002204870549 +2.499869592e-06 -0.009510519649 -0.001266692905 0 -5.249063505 -0.08314061476 1027.921839 0.001945673225 +2.498610415e-06 -0.00944823693 -0.008122248813 0 -0.4500884565 17.37516226 1042.380931 0.001918684369 +2.499670201e-06 0.004453431354 0.0009696705826 0 -6.615087147 3.229010634 906.3208949 0.002206723922 +2.497477683e-06 -0.005266444483 -0.004251120009 0 -18.60592634 11.59677121 975.7584095 0.00204968769 +2.499417097e-06 0.006273761052 0.01457976954 0 -10.72030771 -2.035083992 1010.517443 0.001979184045 +2.496643707e-06 0.00961941197 -0.0003242189018 0 19.93052241 17.96643541 1035.161473 0.001932065722 +2.49942766e-06 0.008289444288 0.01168440159 0 4.516350874 8.53404809 902.3863198 0.002216345656 +2.495803876e-06 -0.006560179847 -0.001154337935 0 -20.43411801 -15.0766489 876.0310349 0.00228302414 +2.496065266e-06 0.005883219563 0.01318515908 0 24.14588438 -12.26478165 964.8407953 0.002072880842 +2.4921646e-06 -0.006100150859 -0.009714413846 0 -24.32150077 -27.66478665 929.4227356 0.002151873333 +2.494822652e-06 0.008196409433 -0.00125105337 0 28.15113309 -19.5287489 1063.901872 0.00187987262 +2.495646988e-06 -0.0003177138604 -0.003667272606 0 22.46540153 -15.21634501 918.9956475 0.002176288871 +2.495262142e-06 -0.001872154977 -0.01399681828 0 13.0226237 -29.85671888 1057.414553 0.001891405782 +2.498681358e-06 -0.006892732494 -0.014230111 0 14.27745439 2.507887211 892.4524939 0.002241015644 +2.49951351e-06 -0.005087064896 0.005047307003 0 9.560842462 -3.311038093 1025.671475 0.00194994211 +2.497135913e-06 -0.008916597348 -0.01243004268 0 -13.9508334 -16.27165458 895.1527321 0.002234255595 +2.49763639e-06 0.004456267231 -0.002955019504 0 20.28199004 -3.095253639 943.3069493 0.002120200643 +2.499625506e-06 0.008355673812 -0.01283817493 0 7.316999339 5.228791716 1039.094831 0.00192475214 +2.497879202e-06 -0.009333445826 -0.005408021291 0 6.370428442 17.56534189 906.9570066 0.002205176194 +2.499585281e-06 0.007443704959 -0.008636952052 0 4.513974375 8.610408809 1067.410704 0.001873693034 +2.499511137e-06 -0.00107957188 -0.00325489497 0 6.607656921 -6.914433592 967.1641237 0.002067901353 +2.499535128e-06 0.00234524955 0.00838289767 0 -9.707625249 -1.511667132 1018.834366 0.00196302762 +2.499274174e-06 -0.00420609701 0.009818204138 0 8.635673905 7.934594969 973.2500701 0.002054970312 +2.494182446e-06 0.004418714833 -0.002231996222 0 22.37002504 -20.83286565 895.381146 0.002233685631 +2.498691432e-06 -0.006005304689 0.003876777599 0 -14.33786572 1.620548191 891.7488962 0.002242783825 +2.498250222e-06 -0.001639411827 0.003435057609 0 -15.30335092 -8.202784192 927.913518 0.002155373277 +2.495063173e-06 -0.008409483205 -0.003721331509 0 -24.82050667 21.78826516 1050.289274 0.001904237289 +2.496246118e-06 -0.003118608445 0.003163315456 0 -16.98853235 -20.0723748 959.1783702 0.002085117912 +2.499257477e-06 -0.004291381291 -0.01234881211 0 -10.97546655 -6.006759148 1026.590324 0.001948196816 +2.496938078e-06 -0.004720326597 0.0003915593913 0 8.107141112 22.45701667 964.3668484 0.002073899578 +2.497266224e-06 0.003384885518 -0.0004169273609 0 23.30778704 3.087397642 1005.0866 0.001989878286 +2.497996755e-06 0.004975454393 -0.01485955935 0 17.39512279 10.3622311 1011.256664 0.001977737276 +2.499999004e-06 -0.006978920465 -0.0121954491 0 -0.3052270853 0.3635233335 1063.784637 0.001880079793 +2.496707998e-06 -0.001922109812 -0.0005343272095 0 8.424194205 -25.76361997 1055.855804 0.001894198045 +2.499633605e-06 0.004246971817 -0.003622539619 0 8.866916093 -1.91639604 1059.674472 0.001887372069 +2.496703092e-06 -0.008416278367 -0.009244768561 0 20.50863727 17.82236514 1057.586049 0.001891099076 +2.497761436e-06 0.005747170332 0.002778959891 0 -19.75218724 3.595633919 948.5246066 0.002108537813 +2.497658237e-06 -0.007209798275 0.005582973647 0 -21.54508665 -7.686975892 1056.642593 0.001892787602 +2.494917237e-06 0.008587936154 -0.005022913541 0 25.1666254 15.33535208 923.6269011 0.002165376515 +2.498744853e-06 -0.0005237766681 -0.006491339814 0 -7.808810176 -13.27045483 971.6405958 0.002058374268 +2.497111969e-06 -0.003336843522 -0.007893085191 0 18.23918199 -15.3321556 990.99537 0.0020181729 +2.497550543e-06 0.007559345337 -0.001047377712 0 19.04998242 -9.078111184 953.0673362 0.002098487614 +2.499387526e-06 0.001117933542 -0.008960666349 0 5.497980901 9.053686621 956.9560659 0.002089960105 +2.49789715e-06 0.006450254344 -0.007355296263 0 16.17488214 -11.55137144 968.893263 0.002064210864 +2.496234792e-06 0.002549515911 -0.003491264982 0 21.3310295 14.88067173 947.2442874 0.002111387766 +2.497572281e-06 -0.001447693906 0.01455619539 0 17.65303531 14.27970354 1030.050725 0.001941651951 +2.496350361e-06 0.00573420553 -0.006047630527 0 -16.2796402 21.96807127 1011.494226 0.001977272781 +2.499805242e-06 -0.003518975754 -0.004662753388 0 -5.088721019 -3.346496396 975.8367773 0.002049523083 +2.498276043e-06 0.006680832393 -0.009918122808 0 17.47049291 -5.940507992 993.5116232 0.002013061502 +2.498372132e-06 0.006242833133 0.005873377647 0 5.791102283 -15.4496838 914.1910172 0.002187726594 +2.496047637e-06 0.004984841421 0.006706075184 0 16.82841747 24.3282111 1051.519273 0.001902009836 +2.497586888e-06 0.007852160214 0.01422189675 0 21.46939145 7.262636769 1031.301408 0.001939297265 +2.495959516e-06 -0.001655833297 -0.006750110085 0 9.177530419 -28.46548976 1051.47219 0.001902095005 +2.495354343e-06 -0.00846008468 0.01237031597 0 3.40982143 27.67936121 914.2926774 0.00218748334 +2.497006341e-06 0.006851349953 -0.0094406544 0 14.64607648 17.11079292 920.0585536 0.002173774693 +2.499716509e-06 -0.002419400145 -0.003430036416 0 -5.685898078 4.278340056 944.9672294 0.002116475511 +2.498340273e-06 -0.004659309527 -0.000767181823 0 -16.21874753 -5.08532094 932.6924696 0.002144329525 +2.499684352e-06 0.008722932213 -0.01142263031 0 -2.768371493 -7.409344962 995.4496491 0.002009142303 +2.498404029e-06 0.005157928751 0.001692700773 0 -13.56760581 -8.815680901 905.4201682 0.002208919207 +2.49919495e-06 0.009612234361 0.01181162202 0 -5.61412417 -11.91653784 1038.003474 0.001926775825 +2.497052816e-06 0.005518968469 -0.007036855021 0 18.08543511 -13.86165897 938.1419197 0.002131873609 +2.497549266e-06 0.002575148866 -0.001365412453 0 18.51721007 -8.670046036 923.1979978 0.002166382515 +2.496767857e-06 0.008932262426 0.0009570780862 0 16.24078959 20.30275267 1022.094799 0.001956765657 +2.49804209e-06 -0.0006520118937 0.01081891372 0 -12.8570154 -16.1806588 1044.081125 0.001915559962 +2.495430245e-06 -0.0008432158874 0.01352933187 0 -8.873641141 30.1972817 1040.383786 0.001922367521 +2.496812915e-06 -0.008586107972 -0.004932647059 0 -23.50155321 12.6370018 1056.393059 0.001893234704 +2.494834027e-06 -0.002546834638 0.01238666905 0 17.61774882 28.36668484 1038.054174 0.001926681719 +2.496965058e-06 0.003197185183 0.006584689873 0 -18.49873816 12.4927208 905.6178851 0.00220843695 +2.498273086e-06 0.00657724706 -0.01461464153 0 -17.37129395 -0.9372303048 935.8375949 0.002137122948 +2.496565109e-06 0.007911523147 0.001960374364 0 13.36960384 19.27439183 894.5076806 0.002235866772 +2.4966626e-06 0.0005439352524 -0.009061276694 0 9.519146727 -24.18731176 1005.590244 0.001988881667 +2.497528547e-06 -0.0009003030183 0.007726075798 0 18.49776255 13.69853899 1034.92951 0.001932498765 +2.496691161e-06 -0.002238643174 -0.002660945482 0 -25.33695893 5.002568661 1003.437326 0.001993148896 +2.497129273e-06 0.009107062118 -0.006341984847 0 -18.77689936 -14.23757138 983.0104521 0.002034566363 +2.49803354e-06 0.003840781595 0.006293739737 0 7.036060346 -16.50975558 904.679911 0.002210726662 +2.497095659e-06 -0.0003274401929 -0.002091515714 0 -21.50453431 8.242812434 955.1446143 0.002093923758 +2.496821117e-06 -0.007358570402 -0.001610858592 0 8.869882375 -20.38732826 881.34043 0.002269270683 +2.499462898e-06 0.007989704083 -0.009356448697 0 2.038019712 9.013704137 891.5616135 0.002243254947 +2.498752086e-06 -0.004130824781 -0.01346758108 0 -9.457091916 11.36686061 935.7896033 0.00213723255 +2.49714071e-06 0.008864297532 -0.006525656884 0 21.24949962 4.929583791 911.802857 0.002193456606 +2.493068004e-06 0.005435887962 0.006094008009 0 28.82665094 26.44329863 1049.496965 0.001905674877 +2.496753842e-06 0.006079898053 0.004680396498 0 23.72675177 -13.22397032 1065.534138 0.00187699289 +2.496726888e-06 -0.003443111642 -0.0009168819571 0 20.77840537 17.4762711 1060.651542 0.001885633425 +2.497629525e-06 0.0003692605067 -0.0007573560043 0 -16.63873309 -15.92026785 1057.242525 0.001891713539 +2.494959572e-06 -0.008542671646 0.006752857394 0 -26.16532516 -15.96042973 964.5807269 0.002073439728 +2.49490248e-06 0.004445677488 -0.001602204235 0 24.69021358 -22.1412957 1037.859612 0.001927042903 +2.497775462e-06 -0.003016831148 -0.006734008086 0 -3.928753398 -21.89161374 1054.098804 0.001897355345 +2.497090946e-06 -0.004524931801 0.002726694366 0 -15.27207357 14.87685161 883.5144197 0.00226368688 +2.49637803e-06 -0.003097912087 -0.008922507903 0 18.28190142 16.99408286 926.893471 0.002157745267 +2.497693173e-06 -0.008270062334 0.001165502623 0 18.38674297 11.65554598 1013.168143 0.001974006007 +2.496551566e-06 -0.001574544497 0.003480998625 0 21.86148756 15.44184444 1018.637247 0.00196340749 +2.496909473e-06 0.008477610098 0.006513347381 0 21.52397538 14.90740882 1052.628041 0.001900006386 +2.494951808e-06 0.001179045476 -0.006697353667 0 15.83110308 -27.8728862 1008.053096 0.001984022477 +2.499238936e-06 0.005435292898 -0.007735122868 0 -11.17065834 2.137239906 921.744324 0.002169799095 +2.496233832e-06 -0.004866606439 -0.003928798002 0 -14.00464231 -21.26678543 927.284944 0.002156834329 +2.497152456e-06 -0.004175582617 -0.01346799995 0 -17.65895501 14.04768076 945.1444088 0.002116078751 +2.497520346e-06 0.007893175632 0.003342633764 0 -16.14036236 -11.85891984 899.0393151 0.002224596818 +2.49867357e-06 -0.005059240889 0.004932625378 0 7.75124344 13.97224016 980.8130969 0.002039124484 +2.498333946e-06 -0.003151810812 0.01196539518 0 -13.18926222 -12.57089483 997.9079718 0.002004192828 +2.497025353e-06 0.005677123028 0.006036043593 0 -22.61046794 11.47758031 1039.125823 0.001924694735 +2.495418643e-06 -0.001206472456 0.01326050377 0 6.394068765 29.49442352 996.3271897 0.002007372699 +2.499618877e-06 0.003666223674 -0.000602374936 0 -5.805318271 5.505773114 916.3668754 0.002182531968 +2.499933003e-06 0.003996314737 -0.007933367367 0 3.706453987 -0.6650293078 1028.711012 0.001944180608 +2.498286956e-06 0.007654351592 -0.005932391065 0 0.9186696187 16.24457254 878.8013445 0.002275827196 +2.496234385e-06 -0.004181953017 -0.007301205068 0 -6.750008668 -25.8592857 973.3103464 0.002054843049 +2.496000816e-06 0.006577998679 0.01153502931 0 -6.678066906 27.14309804 987.7791361 0.002024744122 +2.497491923e-06 -0.003001296963 -0.01251177542 0 -15.74431915 -11.94035319 881.9357919 0.002267738784 +2.498747e-06 0.00169132615 -0.001743932229 0 -12.53588597 -8.921741993 971.78256 0.002058073567 +2.498146077e-06 -0.006004597228 -0.01430722444 0 -16.82708825 -10.36650449 1026.107832 0.001949112889 +2.498480592e-06 -0.005189530482 -0.004754146084 0 15.15889282 -9.073225482 1013.226245 0.00197389281 +2.49800597e-06 0.001022848506 -0.01001179498 0 -5.976097431 18.27587586 962.5570367 0.00207779895 +2.499770624e-06 0.004259585589 0.004435883083 0 -6.83089723 1.387266397 1029.083077 0.001943477689 +2.497739957e-06 0.009387426572 -0.008293668386 0 -10.55810162 -19.93465409 1060.669717 0.001885601114 +2.499263184e-06 0.007740296284 -0.008304850368 0 -11.36196125 -3.939945699 990.5298055 0.002019121473 +2.498819963e-06 -0.003699842878 0.006566395559 0 13.43511154 -2.171114133 885.7262802 0.002258033938 +2.496133336e-06 0.0002143041557 0.01093818478 0 -16.51185496 17.95000498 876.5289756 0.002281727194 +2.497831425e-06 0.008230305929 -0.01218270897 0 -13.36006634 17.06980936 1040.507459 0.001922139033 +2.497443609e-06 -0.006746704364 0.001573120924 0 0.6739668398 23.97459103 1060.296986 0.001886263968 +2.496709021e-06 -0.004757918245 -0.001988786075 0 -11.63759972 21.51962489 953.1255967 0.002098359342 +2.492544426e-06 0.001815991122 0.01418142276 0 -23.54606221 32.18802979 1031.627885 0.001938683539 +2.495201879e-06 0.007179660238 0.01261728289 0 -4.050759331 28.8480023 939.7062724 0.002128324625 +2.496723045e-06 0.009876108719 -0.01474031271 0 -4.42039813 -25.29485056 1002.537254 0.001994938335 +2.498343108e-06 -0.006686792844 0.01434222664 0 18.35412935 -3.614846567 1027.37152 0.00194671544 +2.497803586e-06 0.001263423231 0.01155021991 0 18.25565349 -11.63398331 1032.510324 0.001937026637 +2.497211576e-06 -0.007912593544 0.01155708385 0 -21.00022193 -5.690328081 920.9434782 0.002171685937 +2.495296534e-06 -0.0002864983678 -0.002410180375 0 -23.79703997 21.4846086 1044.581055 0.001914643187 +2.49850755e-06 0.00601899927 -0.00171323573 0 -11.5051687 -14.24249858 1059.500971 0.001887681139 +2.497644439e-06 -0.00196762993 0.01354316234 0 -17.31908056 10.34325254 929.064737 0.002152702519 +2.497628475e-06 -0.005073147649 -0.001515316456 0 17.34691816 -12.78325112 989.0735452 0.002022094322 +2.493551113e-06 0.001270161038 -0.01374310074 0 18.93479529 -27.25399873 923.1583393 0.002166475582 +2.497502257e-06 0.003967556776 -0.01287656671 0 -9.410986569 -20.07280101 991.5235567 0.002017097815 +2.497802404e-06 -0.003806842896 0.01323301976 0 -10.87893669 15.10320131 887.550654 0.002253392514 +2.497303337e-06 -0.001250109649 0.01249340896 0 -0.1334319594 22.32075225 960.7546498 0.002081696925 +2.499005029e-06 -0.006323984447 0.00814164191 0 -13.39379756 -5.453551424 1025.010815 0.001951198924 +2.493457597e-06 -0.005490331943 0.009201936722 0 -21.44523547 29.52574015 1007.830589 0.001984460505 +2.498679116e-06 -0.009494360588 0.0008980674832 0 15.17048997 -2.569887575 946.4763749 0.002113100816 +2.49851954e-06 0.009293881343 0.006148000353 0 15.09005141 -2.556618009 889.2549487 0.002249073793 +2.496270848e-06 -0.009894060963 0.009918642598 0 20.89384344 19.78587786 1053.078787 0.001899193132 +2.497497586e-06 -0.007268874915 -0.003738339341 0 -17.97113792 14.56211969 1033.537439 0.001935101646 +2.498763539e-06 -0.008843728574 0.008861989081 0 -8.882329512 -12.20127714 959.5320626 0.002084349318 +2.497814866e-06 0.008162640841 0.009515629204 0 10.48513491 -17.23385458 964.6521886 0.002073286127 +2.499906175e-06 0.003561044126 -0.005147738226 0 2.839463168 3.350512192 1013.837345 0.001972703028 +2.497592611e-06 -0.003993969229 -0.005307995863 0 -17.78185522 -10.04709716 930.4545313 0.002149487087 +2.499613304e-06 -0.00142347022 -0.01296708354 0 5.106616839 7.886124624 1068.262591 0.001872198854 +2.499386391e-06 -0.006136535821 0.001548830161 0 -10.02123716 2.042569949 923.1227059 0.00216655921 +2.49334379e-06 0.006551977685 0.01431349402 0 22.41358834 25.05137686 920.3756717 0.002173025713 +2.499913612e-06 -0.007135295323 -0.008254811943 0 2.225107622 -3.65105859 1028.621769 0.001944349283 +2.498651936e-06 0.003097840799 0.001800563063 0 -13.5170421 6.330299675 908.8307475 0.002200629771 +2.496886381e-06 0.003372783302 0.008645115488 0 -13.59558245 21.12988084 1006.401376 0.001987278682 +2.499928858e-06 -0.007371989954 -0.0002164818998 0 -1.286886698 -3.20285668 915.0666719 0.002185633092 +2.497206854e-06 0.00314062411 -0.01102039119 0 -22.39385052 -7.461843988 998.268818 0.002003468368 +2.497818942e-06 0.002830593819 -0.005735339569 0 -20.63611453 3.635535027 1002.938535 0.001994140149 +2.497345805e-06 0.003709352966 -0.005724024335 0 22.45213136 3.344223911 984.8455326 0.002030775318 +2.493058558e-06 -0.0002916216431 -0.0131220895 0 -20.79145062 -29.12652425 959.4463869 0.002084535444 +2.499482809e-06 0.00191051709 -0.01222798722 0 1.538730325 9.072377957 904.7019329 0.002210672849 +2.498263339e-06 -0.006917839246 0.003314644068 0 10.90669125 16.11301927 1043.749219 0.001916169098 +2.499613777e-06 -0.002610492851 -0.01006850547 0 8.392811682 -2.232482991 988.0836315 0.002024120162 +2.4960219e-06 -0.004727860386 0.006554817413 0 -2.321801641 26.88816346 956.2293256 0.002091548488 +2.49870923e-06 -0.008769908538 0.008265423174 0 -3.255061189 -16.33893985 1036.697472 0.001929203122 +2.495160836e-06 -0.006858754144 0.007335965596 0 -17.86876561 22.42912053 921.1170385 0.002171276739 +2.498700353e-06 -0.001859132368 -0.009067346624 0 -1.029646697 16.74689458 1040.497714 0.001922157035 +2.499005105e-06 0.009427444665 -0.01491502063 0 14.13329935 -3.716324493 1035.840092 0.001930799953 +2.499122945e-06 -0.009891546154 -0.01059660591 0 -0.54404516 14.07901713 1063.679702 0.001880265268 +2.497074682e-06 -0.005817215764 0.0105128638 0 -18.2219254 17.52280937 1044.691214 0.001914441294 +2.497944598e-06 0.009517765441 -0.008039208089 0 19.41550563 3.728469264 974.7991745 0.002051704651 +2.494638771e-06 -0.004743882599 0.00291597435 0 -19.91149756 23.52415091 940.4408954 0.00212666209 +2.49743587e-06 0.0004694516258 -0.003121328002 0 20.88770152 -5.455636384 952.9470686 0.002098752455 +2.496447187e-06 0.006930336459 0.01372963435 0 27.23062876 2.375614022 1024.875963 0.001951455661 +2.498818813e-06 0.006454148013 0.01178318837 0 -9.636325168 -9.680893719 888.5449785 0.00225087086 +2.499636816e-06 -0.0006413890375 0.008566578368 0 -1.945505152 -7.461632376 904.7194828 0.002210629967 +2.496165281e-06 -0.006826342936 0.006239380378 0 -7.607133985 25.36572638 955.6890569 0.002092730879 +2.496292919e-06 0.003391520581 -0.001408642936 0 22.54933105 -12.33647597 943.4451033 0.00211989017 +2.499093747e-06 -0.008295581657 -0.0092637021 0 -2.907306892 -12.14663998 927.5858122 0.002156134747 +2.496292935e-06 0.001949512945 -0.009820988788 0 -5.665830836 -24.84296076 935.281522 0.002138393578 +2.498668296e-06 -0.00309153744 0.001064500585 0 -4.661609079 -15.98148277 1019.864923 0.001961044013 +2.498946564e-06 -0.005728246151 0.007044936488 0 13.95785784 1.21853754 965.1164886 0.002072288707 +2.498991797e-06 0.003577671666 0.007186817536 0 11.99648442 -4.101289534 892.6930082 0.002240411857 +2.498430017e-06 -0.00225378375 0.01341416467 0 10.1808127 13.90186462 972.1833432 0.002057225125 +2.499983255e-06 0.001188602252 0.002957090463 0 -1.670692943 -0.289488357 926.53349 0.002158583604 +2.495059542e-06 0.007663829112 -0.01053312769 0 15.33411227 -23.80645163 900.1907441 0.002221751349 +2.498421034e-06 -0.005656952481 0.005128199416 0 -15.69670319 1.363368996 886.413147 0.002256284225 +2.49820984e-06 -0.00869551992 -0.01038857139 0 9.83860827 16.59300325 1019.218664 0.001962287457 +2.499482465e-06 -0.009980549947 0.01132250549 0 2.149786408 -9.210873059 929.6082181 0.002151443975 +2.499124482e-06 0.008072164059 -0.01173013309 0 -11.01330244 4.928382534 911.6937661 0.002193719069 +2.497268684e-06 0.001844820823 -0.001745654368 0 -23.28751954 -8.175033857 1055.551637 0.001894743877 +2.498265807e-06 -0.0003791196551 -0.01254788528 0 15.44029396 -5.920995529 887.7095783 0.002252989096 +2.498342135e-06 0.004186054915 0.01247002782 0 16.10519814 9.883787446 1037.473479 0.001927760122 +2.495447303e-06 0.008801596416 0.01465584719 0 19.00249045 23.19187902 992.9410741 0.002014218217 +2.497282057e-06 0.003888029661 -0.006236895444 0 -6.85135416 -21.2692537 958.0277687 0.00208762216 +2.498001219e-06 0.001084538279 -0.01386376103 0 -11.59254112 14.56519192 930.772888 0.002148751888 +2.497927835e-06 0.004285427094 0.005146374868 0 -11.76839543 18.11627236 1060.8503 0.001885280138 +2.499167666e-06 0.0007284500543 0.002737973928 0 -11.12659171 -7.918448897 1058.338762 0.001889754087 +2.498289662e-06 0.003191820015 -0.005479283771 0 -16.1835746 -7.475204986 963.6083206 0.002075532099 +2.497382558e-06 -0.005479833987 0.002840377819 0 19.44299331 12.13861629 1001.40779 0.001997188378 +2.495840607e-06 0.009848482609 0.001518526445 0 29.77362327 1.52295017 1032.994401 0.001936118915 +2.49848887e-06 -0.006663209503 0.005732189992 0 -17.91175037 0.6476853902 1030.759495 0.001940316835 +2.499711502e-06 0.004416468018 0.01307599337 0 -6.36350038 2.836070478 917.1352657 0.002180703409 +2.49880373e-06 0.001797099425 0.01071899749 0 8.942570063 -12.29544819 982.7365404 0.002035133444 +2.498420714e-06 -0.004005294587 -0.008100222226 0 8.200799601 15.33358128 978.1881883 0.002044596351 +2.495430109e-06 0.007251043725 -0.007942509355 0 23.40427471 -14.79161662 915.1766218 0.002185370509 +2.495906174e-06 -0.008670686581 -0.01133213196 0 -27.46548052 -10.59312015 1028.145203 0.001945250529 +2.498819148e-06 -0.006652893098 -0.004897420651 0 -15.69946027 0.3218485286 1021.612849 0.001957688768 +2.497578344e-06 -0.00136834302 0.01480179404 0 14.05804163 -15.37256526 946.2108252 0.002113693848 +2.497926999e-06 -0.004119687448 -0.01479973823 0 16.64991831 7.983626382 906.5684988 0.002206121217 +2.499942388e-06 0.005279476726 0.01416679821 0 -2.984582558 1.836963112 1032.433558 0.001937170664 +2.497418316e-06 0.0009491367824 0.01402204762 0 -12.79102185 19.31920388 1019.267943 0.001962192584 +2.497090502e-06 0.003115526717 -0.01297525823 0 7.936830828 -20.18151573 898.6028161 0.002225677423 +2.494987224e-06 -0.008470877819 0.01422437877 0 -24.89955712 -16.11451676 936.0042434 0.00213674245 +2.498190206e-06 0.0001559477299 0.01173488354 0 2.958893379 16.81434687 897.1290196 0.002229333748 +2.499227338e-06 -0.006329745785 0.004678314391 0 -8.563661611 8.017424679 943.5682112 0.002119613586 +2.497522239e-06 0.006195432362 0.0006381364167 0 -4.933355476 19.08357931 885.1178262 0.002259586171 +2.499785684e-06 -0.009495141883 -0.001837271077 0 0.9103982975 6.546404192 1009.500057 0.001981178689 +2.496336844e-06 0.004189625802 -0.008613151875 0 27.51246954 -1.369514564 1017.151085 0.001966276228 +2.499970654e-06 0.003831420029 -0.006956730676 0 1.948882427 -1.271247352 960.4614983 0.002082332299 +2.497106985e-06 0.009829391241 -0.004367387951 0 19.11412377 12.29526682 944.4218603 0.002117697699 +2.496823481e-06 0.009073404046 9.826193796e-05 0 -18.09824835 -15.50736654 945.1178762 0.002116138156 +2.497387868e-06 -0.007709756861 0.007722036517 0 -19.30303948 -10.13911843 953.5662832 0.002097389594 +2.494996973e-06 0.004381912053 -0.009846006897 0 -10.71943012 -28.82884874 971.6053762 0.002058448882 +2.497928244e-06 -0.0008952666819 -0.008522508591 0 18.23831689 5.967194427 942.4281857 0.002122177616 +2.494890103e-06 -0.003382930406 0.002360422025 0 19.748847 25.25542235 1002.100538 0.001995807731 +2.496364321e-06 0.006523635071 -0.009538831695 0 -19.46072844 17.65090846 973.7919236 0.002053826851 +2.497751682e-06 0.003054769994 0.001915529959 0 15.80476151 14.00848359 995.6133794 0.002008811896 +2.499618556e-06 -0.003263200698 -0.01243890738 0 4.318408598 6.505858614 893.9644935 0.00223722532 +2.496900897e-06 0.005552118476 0.009313571944 0 -19.30527131 -11.45791435 901.3022662 0.002219011396 +2.495515059e-06 -0.009615721502 -0.0004750137194 0 -25.78047302 17.29761163 1035.897425 0.001930693089 +2.496778528e-06 0.006009447491 -0.0003542301944 0 7.223580725 -21.61095112 897.2651029 0.002228995638 +2.497563597e-06 -0.006436492614 0.009052716962 0 -10.23049366 -18.94947343 975.1951127 0.00205087164 +2.498849988e-06 0.00272052235 0.01340472835 0 8.787431669 11.43293832 950.6452296 0.002103834257 +2.495628379e-06 0.001501229 -0.0062493201 0 -25.59905213 -18.36267538 1064.740688 0.001878391633 +2.497481593e-06 -0.006627713018 -0.01160785153 0 -1.568361985 -20.60475821 920.4069971 0.002172951755 +2.498582289e-06 0.0059694531 -0.01359721652 0 -8.794810637 -13.74341107 968.7846519 0.002064442285 +2.495929318e-06 -0.001093238131 -0.01285024226 0 -4.807097411 -26.10218745 929.6205014 0.002151415547 +2.498189805e-06 -6.961948704e-05 -0.01095023969 0 -7.46745725 -15.72550291 914.6705226 0.002186579703 +2.499558641e-06 0.001468009437 -0.01106262381 0 4.3037651 -8.721477983 1035.08232 0.001932213469 +2.498853991e-06 0.006902335314 -0.009869529263 0 -5.806600389 14.04049974 1003.421323 0.001993180685 +2.49959522e-06 0.009676986123 0.007451940423 0 9.30879502 0.6111189691 1036.755118 0.001929095854 +2.499111734e-06 -0.003534710854 0.001468736418 0 13.9082287 -1.958147433 1053.633431 0.001898193376 +2.497744079e-06 -0.005396361272 0.01231140025 0 -12.06531128 -18.98520676 1058.657657 0.001889184843 +2.495723037e-06 -0.009353988338 -7.132326253e-05 0 -18.4994303 -21.13771501 959.8109613 0.002083743654 +2.498644693e-06 -0.007980716703 0.008065928402 0 -4.851413284 -15.91858106 1010.575457 0.001979070426 +2.499522114e-06 0.005630278299 0.007970720634 0 -7.439107693 -7.053517133 1048.521288 0.001907448159 +2.498815997e-06 -0.004100642488 0.008466116376 0 -12.44871743 -8.36332169 974.4091563 0.002052525869 +2.498918148e-06 0.009660403477 0.01029811896 0 9.063822585 11.0381652 970.821207 0.002060111569 +2.4986497e-06 -0.009880483411 -0.008119010695 0 14.03483642 3.847943213 885.3759641 0.002258927372 +2.49918878e-06 0.004711201275 0.01242045922 0 13.15394663 -0.7514482732 1034.251851 0.00193376497 +2.499499643e-06 -0.006758275595 -0.01177269507 0 -6.749539981 -8.208951158 1062.288281 0.001882728103 +2.499614374e-06 -0.005637833853 0.01421798544 0 -3.873174466 -8.546681238 1068.402206 0.001871954204 +2.498662315e-06 0.003559109964 -0.009929047055 0 14.28902856 9.348567087 1043.743819 0.001916179012 +2.497521915e-06 0.00818829136 0.01253182654 0 -14.66032899 16.72962743 998.8095987 0.00200238364 +2.49629387e-06 0.00249050823 0.0007787790312 0 16.91139088 22.42195339 1030.978963 0.001939903792 +2.498228653e-06 -0.0004405397736 -0.01219107328 0 -2.910523683 18.26131853 982.1934978 0.002036258644 +2.498105935e-06 0.0007169564534 0.0040050338 0 -4.381926775 -18.57906673 980.4899265 0.002039796581 +2.499330983e-06 -0.008296311381 -0.0119636474 0 -8.795889807 -7.565812443 1002.905695 0.001994205447 +2.497307023e-06 0.005216100188 -0.001522281307 0 22.96336045 -9.172118755 1065.053338 0.001877840226 +2.497015349e-06 -0.007289421447 -0.009442048213 0 19.08404047 12.51677678 933.7023669 0.002142010207 +2.496513332e-06 0.002478044187 0.002062061273 0 10.13396141 26.07208283 1058.719504 0.001889074483 +2.4957428e-06 0.009362187441 0.01305833897 0 26.84462778 -15.42823714 1060.422093 0.001886041429 +2.499480984e-06 -0.009290119647 -0.004119620842 0 -9.256752329 -1.921070968 927.8466153 0.002155528691 +2.497192901e-06 0.008283232502 -0.009041807293 0 20.56723007 -14.4682638 1060.837924 0.001885302132 +2.499338188e-06 -0.009968341575 -0.003593662628 0 -5.242424166 -10.28712763 1003.466193 0.001993091559 +2.498756437e-06 -0.00371661711 -0.01393400628 0 -15.19525507 -6.960455277 1059.593916 0.001887515557 +2.49681713e-06 -0.005443041758 -0.007469604111 0 -4.541414561 -25.69207149 1033.589736 0.001935003736 +2.4994887e-06 -0.007929317942 -0.009103101469 0 -7.387537697 6.938203576 1002.142144 0.001995724871 +2.497980693e-06 -0.005626449981 0.006787897039 0 5.799437 -18.74735475 976.1962356 0.0020487684 +2.499805608e-06 0.001431374792 -0.01003145377 0 -6.133061983 2.372175312 1054.5924 0.001896467299 +2.498141897e-06 -0.004548918819 0.003751790535 0 -12.91579841 11.21270905 887.0001655 0.002254791011 +2.49922814e-06 -0.0007217453327 0.001097720715 0 11.18872033 -1.461046296 908.0656642 0.002202483894 +2.49833393e-06 0.009625741676 -0.002166828287 0 17.44421759 5.700144209 1005.103824 0.001989844186 +2.495972094e-06 -0.009785241885 -0.01114031306 0 5.073145631 -29.23774142 1044.883208 0.001914089522 +2.497527964e-06 -0.0007591412682 0.01369680746 0 13.19012507 16.57448936 952.2943156 0.002100191052 +2.498864284e-06 -0.003894586978 -0.002829084371 0 -5.024928368 -14.44473701 1014.592171 0.001971235395 +2.498257384e-06 -0.001177009409 0.00281340665 0 -1.384151608 -19.32860776 1037.72414 0.001927294474 +2.496235664e-06 -0.004281164212 0.001938469447 0 13.57683349 -24.28864208 1013.540801 0.001973280205 +2.498031088e-06 -0.00165904128 -0.01238045034 0 17.9274048 9.246045605 1016.195805 0.001968124637 +2.497541161e-06 0.002940161121 -0.01038345071 0 -4.240114707 -20.81214815 957.4315288 0.002088922226 +2.499399166e-06 -0.005594602167 -0.001423174432 0 9.72585163 2.341086769 912.4873401 0.002191811231 +2.494686216e-06 0.004302626122 0.007753753709 0 -16.12580837 26.61990021 953.9429335 0.002096561471 +2.497648444e-06 -0.003909113156 -0.006224060808 0 7.538394459 -20.98228398 1027.705754 0.001946082321 +2.499858937e-06 -0.004608347467 -0.003526039899 0 -4.962068404 -1.923452686 1001.913039 0.001996181228 +2.499364085e-06 0.006197983059 -0.001047898724 0 11.49414679 0.5401047276 1020.233463 0.001960335622 +2.498816748e-06 0.002171151876 -0.006665220747 0 -14.78010964 2.880012994 978.6766403 0.002043575904 +2.496932285e-06 0.009737958745 0.005631045706 0 -18.8927827 15.17575118 977.8801435 0.002045240425 +2.493671826e-06 0.007420651447 -0.006247659121 0 25.84925763 -21.3230312 941.0117828 0.002125371899 +2.495239159e-06 -0.007427258156 0.0008958651731 0 18.99504674 -24.07626588 993.1324324 0.002013830114 +2.496083209e-06 0.008852064894 -0.01486447816 0 -2.868302929 -25.60527993 920.0297929 0.002173842647 +2.498697055e-06 4.606422503e-05 0.01086589729 0 10.70055044 10.54882918 930.6350883 0.002149070055 +2.496911794e-06 -0.003330441643 -0.0066251461 0 15.96932294 17.13633328 942.0793344 0.002122963457 +2.499621559e-06 -0.007824732037 0.01355304622 0 8.552042655 0.5349070797 984.8702145 0.002030724425 +2.497125814e-06 0.004702091375 0.009487013665 0 8.098340761 23.95368094 1054.177257 0.001897214143 +2.499731224e-06 0.00323031812 -0.01493246463 0 3.339156477 5.491309763 876.5371593 0.002281705891 +2.497548255e-06 -0.008390178033 0.007321899359 0 -7.53708265 -20.03365076 966.2593476 0.002069837673 +2.499312978e-06 0.002667038059 0.01023177455 0 6.168965849 -8.916622494 924.8877502 0.002162424575 +2.492296523e-06 -0.008822591328 -0.008216328991 0 -26.56531429 -24.03441208 911.6220287 0.002193891698 +2.498299186e-06 -0.009519434688 0.002333421106 0 -18.4958132 -0.1077790337 1002.597409 0.00199481864 +2.49767873e-06 -0.004444183507 -0.00979296217 0 -17.83418276 -10.17627421 952.6397497 0.002099429507 +2.497926396e-06 0.003684898987 0.01236098595 0 7.459576793 -17.05257977 913.6887337 0.002188929256 +2.49458021e-06 0.008869670802 -0.005137433752 0 25.78653931 -23.68483986 1062.602698 0.001882171017 +2.497893235e-06 -0.001300172242 0.01230810097 0 -19.29592333 8.15718183 1020.255055 0.001960294134 +2.499785073e-06 0.004053783305 -0.01060441097 0 1.072978416 6.162324889 954.0167593 0.00209639923 +2.496222559e-06 0.008648643321 0.003759360909 0 29.19640371 -2.659171268 1066.014653 0.001876146819 +2.498647934e-06 -0.006729550585 0.01073397069 0 -12.39599532 -10.73108774 996.8419376 0.002006336135 +2.49861975e-06 0.008414536007 0.008486135756 0 12.90523549 9.05571802 948.6892665 0.002108171844 +2.497155654e-06 -0.001307463772 -0.003836779715 0 10.32963364 -22.8127973 1049.507413 0.001905655906 +2.499421727e-06 -0.003995307162 0.01408595839 0 8.362495244 -5.305099806 920.7903462 0.002172047099 +2.497771918e-06 -0.003972273963 0.007294763611 0 -17.11673108 11.49998543 976.5338337 0.002048060119 +2.495855297e-06 0.007990424996 0.01355670183 0 -14.25370455 23.04359171 940.519824 0.00212648362 +2.496942662e-06 -0.006242343872 0.00863799826 0 -22.40425475 -9.276680198 980.1790215 0.002040443588 +2.496116449e-06 0.004483055724 0.01199471002 0 -7.614456895 25.44940573 952.6046409 0.002099506883 +2.497924281e-06 -0.002599832015 0.009004219319 0 -10.88396791 -16.33097707 962.9127856 0.002077031305 +2.497051792e-06 0.001275546988 0.00189497703 0 -12.7739182 20.0596725 978.936389 0.002043033666 +2.496986526e-06 0.0004947864683 -0.01228734118 0 20.5200045 12.46562787 977.5530676 0.002045924734 +2.498958206e-06 0.00584714022 0.01466313325 0 -3.057415238 15.13694212 1069.66411 0.001869745822 +2.496437365e-06 -0.008030555351 -0.003114113978 0 -14.85402826 18.70561873 894.3572575 0.002236242825 +2.497881708e-06 0.006287620915 -0.008966900557 0 -8.153760423 -16.79320287 906.6770088 0.002205857191 +2.49736638e-06 0.003557796832 -0.008576457552 0 24.03705136 -3.373140419 1057.188982 0.001891809348 +2.494238753e-06 -0.002875321414 -0.002312421666 0 21.64162051 -24.65040444 965.5119201 0.002071439988 +2.499611217e-06 -0.006758679366 0.0141306167 0 0.9150207789 -7.763538868 886.4649989 0.002256152248 +2.496225015e-06 -0.007706927299 -0.007903059761 0 -9.89044894 -26.11616968 1015.766487 0.001968956473 +2.495835384e-06 -0.004546129666 0.01110910321 0 -20.36721803 18.44978964 951.6171925 0.002101685442 +2.496027207e-06 -0.008793136938 -0.007050968008 0 -22.94138765 11.18534131 904.9161091 0.002210149626 +2.499226614e-06 -0.004450264452 -0.01479846961 0 -9.926747668 6.903997581 972.1168184 0.002057365907 +2.499181067e-06 -0.005316069624 -0.007966093586 0 9.158900663 9.430163915 1027.061268 0.001947303498 +2.495709144e-06 -0.002590238694 -0.006737102391 0 23.58543044 20.40812034 1063.988676 0.001879719254 +2.49926819e-06 0.0002419124963 0.006737004924 0 10.87560893 -3.885103359 954.4914136 0.002095356723 +2.498088143e-06 -0.003412561486 0.004492475975 0 -4.718305355 -20.3408357 1067.534645 0.001873475497 +2.499300161e-06 -0.002833577842 0.01053072629 0 0.9051243307 -11.43425233 969.4032831 0.002063124847 +2.498899721e-06 0.008777225697 -0.006926977308 0 10.42658652 8.807452084 919.9215763 0.002174098371 +2.495198665e-06 -0.002365704435 -0.008225837275 0 -14.67264291 -27.65704466 1009.596875 0.0019809887 +2.498940334e-06 0.009098937488 -0.01448389259 0 12.0860578 6.890525023 955.4996127 0.002093145799 +2.495759811e-06 0.003654925618 0.01132779387 0 -15.56471162 20.97448702 896.3309986 0.002231318568 +2.496688488e-06 -0.002347584185 0.008540279274 0 6.792331032 21.62197035 880.212709 0.002272178054 +2.496585621e-06 0.0003776726592 -0.005938795586 0 -22.22112295 16.16887474 1051.091932 0.001902783133 +2.494682625e-06 -0.008269548705 -0.01036853786 0 19.3894826 -27.26786105 1025.17825 0.001950880249 +2.497227103e-06 -0.003381995708 0.01169635143 0 -22.48558544 7.742945503 1009.426551 0.001981322959 +2.498113576e-06 0.009690601663 0.002186213247 0 -2.730715858 -19.43236771 1009.983743 0.001980229894 +2.499218959e-06 0.009104544446 0.01402365117 0 8.558469346 7.399806761 905.1275803 0.002209633253 +2.499493328e-06 0.009057220421 -0.01053019876 0 3.161434967 9.988710955 1040.707122 0.001921770264 +2.497835337e-06 0.003554349816 0.01246060545 0 -20.62268026 4.579827742 1014.956636 0.001970527536 +2.498677055e-06 0.003693086645 -0.001406943225 0 17.26212929 0.5447428459 1061.544861 0.001884046613 +2.499696036e-06 0.0008042367501 -0.01015927055 0 6.580212583 -4.220672643 1002.586632 0.001994840082 +2.496004783e-06 0.005198554392 -0.01174006644 0 23.35272183 -16.84592108 1018.044861 0.001964549969 +2.497719806e-06 0.0002444992587 0.00464072655 0 -2.587708692 21.2153833 1000.479414 0.001999041632 +2.499006628e-06 0.002558017862 0.01078017845 0 10.11865498 8.193673839 923.5901406 0.002165462701 +2.499699786e-06 -0.007050510752 0.004450659037 0 -6.963953983 -1.845306177 929.6965728 0.00215123951 +2.499944852e-06 0.0002771699708 -0.0009121068637 0 -1.280663618 2.688515779 896.6737553 0.002230465638 +2.496706214e-06 -0.006717392532 -0.0008564783796 0 -25.05789674 11.05368827 1066.539747 0.001875223128 +2.49985475e-06 -0.005755415475 -0.0137865988 0 -4.791959074 3.177617131 1066.768374 0.001874821234 +2.498936408e-06 0.008429381801 0.008653814639 0 -8.104686712 10.91445237 931.9493487 0.002146039377 +2.497339374e-06 -0.006781814378 0.003579685853 0 -10.80369664 -17.87979119 905.2434908 0.002209350324 +2.498695311e-06 0.00215175509 -0.0005085304216 0 11.52734841 10.15954294 951.0228459 0.002102998901 +2.497691118e-06 -0.009543068567 0.01367140267 0 4.651874767 18.83900117 902.7007532 0.002215573647 +2.498720662e-06 -0.00699433472 -0.00405009218 0 8.20276603 -11.40624384 878.1509688 0.002277512718 +2.497457423e-06 -0.003001141478 0.004117491085 0 -6.946961412 19.94449302 936.2042483 0.002136285969 +2.499669234e-06 0.004870271985 -0.01229232619 0 4.158387706 -6.040303792 901.5781735 0.002218332318 +2.498937595e-06 0.003145126165 0.00548556959 0 -9.293618796 8.758865683 875.9576573 0.002283215385 +2.498132927e-06 -0.004122446328 0.007605147727 0 12.33374802 16.41671229 1062.302652 0.001882702633 +2.499915844e-06 -0.005181444343 0.005638516985 0 3.764868746 0.2363788423 919.4796594 0.002175143278 +2.499631534e-06 -0.006128775799 -0.01430900991 0 7.450691155 -3.960386567 982.8662375 0.002034864892 +2.499891931e-06 -0.008475534241 0.01028435126 0 -4.169708825 1.644354114 964.0980692 0.002074477757 +2.49935797e-06 0.004878539047 0.01024603351 0 11.46017399 -3.252222159 1051.177361 0.001902628495 +2.499174971e-06 0.004348663967 -0.01251301133 0 3.513709422 -12.43874136 1006.106322 0.001987861477 +2.498220559e-06 -0.007374072317 -0.009601410578 0 18.3820292 7.257881324 1047.32133 0.001909633598 +2.498775125e-06 0.00952013433 0.01031764071 0 12.46937972 -9.123386529 986.9728514 0.00202639819 +2.498554983e-06 -0.00242954317 -0.001025499499 0 -14.4801639 -10.45120292 1050.227793 0.001904348765 +2.499001776e-06 0.007982309563 -0.01402862804 0 -0.6076354151 15.00157123 1062.426042 0.001882483976 +2.495441471e-06 -0.0008680441231 0.01299551068 0 25.02340196 -19.33923029 1046.679576 0.001910804458 +2.498038235e-06 -0.001078228145 0.00344371703 0 13.6852553 15.2912803 1035.693223 0.001931073753 +2.497990943e-06 0.0002781928098 0.008267907975 0 -17.04594388 -6.346759189 907.1321292 0.002204750483 +2.497247474e-06 -0.00450456134 -0.004426267797 0 -12.876291 -18.09088613 946.015248 0.002114130828 +2.499410175e-06 0.006651181225 0.01381686078 0 -0.4907504678 -10.96264611 1010.264366 0.001979679842 +2.49811709e-06 -0.006563870972 0.0004300192161 0 -18.43391384 9.298368544 1063.626759 0.001880358861 +2.498423315e-06 -0.00543164955 -0.002137991725 0 -17.47109693 -4.401325718 1014.358249 0.001971689984 +2.498105138e-06 -0.007097294275 -0.01181604075 0 -12.03816254 -13.94058535 945.8828371 0.002114426778 +2.496305764e-06 -0.008976822263 0.001473529686 0 -22.35698147 14.95928346 989.0894706 0.002022061764 +2.495727071e-06 -0.003337313468 -0.01150421826 0 -24.01745884 -13.24876042 937.6888586 0.002132903662 +2.499969788e-06 0.001948624612 0.005957039462 0 -1.764594789 1.68876433 993.6298754 0.002012821926 +2.498998098e-06 0.005801987373 -0.006365667356 0 14.40678376 3.730290445 1051.151011 0.001902676189 +2.496895225e-06 -0.003839125927 0.01042258278 0 19.76810683 10.21534392 892.5401632 0.002240795521 +2.495674077e-06 -0.0006229657028 0.00955506068 0 21.10126929 17.64136426 934.464238 0.00214026382 +2.498513826e-06 0.006645892439 0.0008300281386 0 -17.00740593 4.976871517 1027.620502 0.001946243771 +2.49990137e-06 0.008110771216 0.001608035518 0 0.523779282 4.533256115 1027.4565 0.001946554429 +2.499457379e-06 0.005635679308 -0.00213178063 0 -5.24960501 -7.869400367 907.9845332 0.002202680692 +2.497704626e-06 -0.0001618764317 -0.0005990078906 0 -0.7229882664 -22.19289038 1035.98356 0.001930532565 +2.498963483e-06 0.0003789543174 -0.006583849385 0 10.03956242 -7.723244317 879.6044775 0.002273749226 +2.497574438e-06 -0.006526386654 -0.01466560904 0 -18.01990999 11.85110347 978.8691965 0.002043173906 +2.497224744e-06 0.008587815464 0.006604207386 0 16.4498856 16.09153688 976.3386205 0.002048469617 +2.498840906e-06 0.006501558819 0.009937571723 0 15.52049037 3.42549167 1043.71915 0.001916224303 +2.495916291e-06 -0.005960853049 -0.002869040302 0 19.92305748 22.57910986 1053.013217 0.001899311392 +2.496573964e-06 -0.008225053111 -0.01272071434 0 -18.90253413 -16.02059918 946.1013488 0.00211393843 +2.498111819e-06 -0.005114148241 -0.001318440568 0 -14.27570483 -14.97821562 1064.47238 0.001878865096 +2.499235966e-06 0.008161337143 0.01382715055 0 -12.3213459 -3.752691793 1041.837328 0.001919685489 +2.492420145e-06 -0.005604182859 -0.01135603495 0 -24.94743898 -24.88214563 903.9256903 0.002212571256 +2.498616528e-06 -0.003510930608 0.008029743873 0 -14.16842436 -6.488325996 936.638746 0.002135294967 +2.498054907e-06 -0.007039409345 -0.001234356165 0 0.8527741297 19.00824336 964.4209794 0.002073783174 +2.499508897e-06 0.007640964431 0.006884258115 0 8.027756916 -4.78294897 942.8162636 0.002121304094 +2.498098325e-06 0.009051630008 0.008203994713 0 -11.73250091 16.17158794 1024.171833 0.00195279731 +2.498634652e-06 0.003507568277 0.009503450906 0 14.38001492 -1.838615481 877.1116274 0.002280211478 +2.498569673e-06 0.003627465121 0.0004366719536 0 16.92855276 -5.769904462 1057.205111 0.001891780487 +2.499493079e-06 -0.009166856059 0.01481741713 0 -6.795380749 -8.008672661 1043.040155 0.001917471719 +2.497385472e-06 0.0008653347194 0.002363337209 0 -23.51613861 -0.5243565255 1028.23388 0.001945082767 +2.496172515e-06 -0.008599368124 0.006258323437 0 12.20462024 24.73386395 996.3003102 0.002007426857 +2.496287872e-06 0.001301859594 -0.002071291648 0 -14.60392616 -22.80715244 993.3769991 0.002013334315 +2.498047556e-06 -0.007329904428 -0.01258473741 0 -20.44780428 0.6540043672 1034.99235 0.001932381432 +2.496860951e-06 0.009052467379 -0.009041608314 0 -12.28476573 -19.36711819 914.9018927 0.002186026738 +2.499309077e-06 -0.009703301555 0.0112580786 0 -6.809316685 10.00021774 1029.088887 0.001943466716 +2.496642702e-06 0.002797152838 0.002156200551 0 23.62235513 -1.228407455 912.3907128 0.002192043356 +2.495857212e-06 -0.002856561029 0.01029555389 0 13.82786682 23.08006694 934.1307825 0.002141027828 +2.495339316e-06 0.008578324141 0.003012680607 0 26.25455957 11.90650746 943.5702786 0.002119608942 +2.497084089e-06 -0.003725084513 0.01298290564 0 -16.75026817 -19.38117191 1060.2941 0.001886269101 +2.494294424e-06 -0.006897414308 -0.005060832098 0 19.88729072 -24.75219635 939.1420041 0.002129603395 +2.497734333e-06 0.009490941116 -0.0101380351 0 -18.27773616 12.14949647 1030.673997 0.00194047779 +2.498425404e-06 -0.007243016162 -0.01196695921 0 -18.66816464 0.2673004038 1051.826243 0.001901454744 +2.499660667e-06 0.001402537371 -0.007464985438 0 -6.702772442 -4.040413707 949.9703164 0.002105328941 +2.497451151e-06 -0.004862735514 0.00112034396 0 3.345549443 -20.40961887 915.6709052 0.002184190836 +2.498071967e-06 -0.00646866133 0.008599540223 0 9.613556141 18.40668915 1057.194628 0.001891799246 +2.499025992e-06 0.004524357347 -0.01449937962 0 -0.7671807474 -13.49273842 968.1470437 0.002065801898 +2.496175803e-06 -0.008297372865 0.01207628962 0 -24.68101538 10.29710673 966.4382807 0.002069454449 +2.498870361e-06 -0.001615557899 0.0001812010305 0 -5.958271774 13.66124278 991.3926794 0.0020173641 +2.499445745e-06 0.0009006854007 -0.01497048427 0 2.501768644 -10.55352328 1030.062587 0.001941629592 +2.499511024e-06 0.006959467791 0.003994638005 0 6.583717894 6.296661825 921.1515071 0.002171195492 +2.499526485e-06 -0.001433970579 0.006936564376 0 5.185394161 -8.302800887 1005.834347 0.001988398991 +2.498801693e-06 -0.005511673591 0.006878345066 0 2.628236586 15.84096335 1037.053409 0.001928540982 +2.498024249e-06 0.001201225342 0.00517364437 0 -16.43337934 -5.845887373 877.1854552 0.002280019565 +2.496516058e-06 -0.007982034017 0.006912895606 0 2.399111369 27.67687008 1051.876958 0.001901363068 +2.49785659e-06 0.009890825595 -0.00782389909 0 2.809871543 -20.62956452 1005.250682 0.001989553488 +2.499238731e-06 -0.004856311572 -0.01322913322 0 -4.706532154 -11.91244502 1037.922358 0.001926926406 +2.499040666e-06 0.003169165892 0.004402937873 0 12.29991211 6.795850083 1014.354142 0.001971697967 +2.496104699e-06 -0.007745916839 0.005657277619 0 -29.14961382 -1.771008048 1045.667078 0.001912654651 +2.496787201e-06 -0.003373374017 0.007726866086 0 -21.48792926 7.107697651 892.4316379 0.002241068016 +2.498604013e-06 0.0086063851 -0.007293356471 0 -0.5136709663 -16.15809702 967.3038076 0.002067602737 +2.499806274e-06 -0.003275556159 -0.00076796368 0 -5.616361734 -2.885295957 1014.363236 0.001971680291 +2.497814068e-06 0.00755211778 -0.005032821754 0 20.87468593 3.450577146 1011.574548 0.001977115778 +2.498219563e-06 -0.00734385591 0.005928079274 0 16.35761184 -5.701853375 917.7534879 0.002179234431 +2.496899682e-06 0.008137950148 -0.0007576726377 0 -10.59218644 20.41836762 923.3160144 0.002166105611 +2.497710827e-06 -0.001000392674 -5.715892185e-05 0 -12.82061979 -17.66859991 1019.881502 0.001961012134 +2.498114639e-06 -0.003992081294 -0.0008698344324 0 13.86647041 -13.5822626 999.2990125 0.002001402958 +2.496177631e-06 0.002061675056 -0.007520371126 0 -2.643115982 -24.36896263 886.0254062 0.002257271615 +2.498396332e-06 0.008943686681 0.01192326448 0 15.73445025 -8.650474011 1002.35891 0.001995293282 +2.49716829e-06 0.004056572109 0.01101421903 0 -19.24825416 -10.68110776 924.611768 0.002163070025 +2.495797658e-06 -0.001566464184 0.008513445526 0 -22.00720818 -12.92603759 879.8104538 0.002273216909 +2.497597331e-06 -0.005364370728 0.005850050496 0 -12.24130507 16.45145013 935.1133981 0.002138778039 +2.49774643e-06 -0.005060788183 -0.01087288357 0 2.456127849 -20.13936655 955.3321181 0.002093512782 +2.498957821e-06 -0.008739818581 0.005130748039 0 2.021090521 -12.51892657 878.2137642 0.002277349868 +2.49752682e-06 0.009827238084 0.009425164328 0 20.6033476 -8.015778873 993.6642174 0.002012752361 +2.496481793e-06 -0.008450522898 -0.004217838922 0 1.72119298 -23.64052175 893.0998845 0.002239391175 +2.499310688e-06 -0.001243944229 -0.003312144871 0 -5.233546251 10.93028999 1032.014127 0.001937957968 +2.498792852e-06 -0.002777887974 0.008866716321 0 -0.5117243903 14.33621138 923.0751453 0.002166670839 +2.499020287e-06 0.003044980192 -0.007537904447 0 12.52687868 -0.5595090736 895.6686391 0.002232968659 +2.498785694e-06 -0.005115667824 -0.008792522096 0 12.89484098 -6.377135732 922.9307752 0.002167009763 +2.494193148e-06 -0.00964756147 0.0006633468904 0 -23.3139467 -22.93124388 958.7433829 0.002086063941 +2.497285335e-06 -0.00749300716 -0.001139919099 0 -19.91654526 -4.445352318 875.4290013 0.002284594178 +2.498894859e-06 0.005767081305 0.002455528637 0 11.74024109 8.069666913 958.0798567 0.002087508662 +2.497072374e-06 -0.008334514513 -0.00138715358 0 -15.0935618 18.7412962 994.0199905 0.00201203197 +2.498569083e-06 0.009759790832 0.007303019373 0 4.631611247 17.1126699 1047.740073 0.001908870388 +2.499584253e-06 0.006401503072 -0.01206419592 0 4.69738777 6.530202823 882.1158859 0.002267275799 +2.497527658e-06 -0.00614743772 0.01308153998 0 11.57844241 -15.79077208 880.2390271 0.002272110118 +2.498311854e-06 0.005235629086 -0.01312597171 0 0.6572227326 -16.64446005 906.3126839 0.002206743915 +2.498246652e-06 -0.0001563541684 0.0145922931 0 16.15061013 -11.4227131 1056.095129 0.001893768796 +2.497814601e-06 -0.001244564699 -0.0050781211 0 -20.12980281 5.371837225 996.2191715 0.002007590355 +2.497594268e-06 -0.003454468991 -0.005848385424 0 -11.84861989 -20.29029288 1070.798763 0.001867764579 +2.498647204e-06 0.001101802993 0.01373914602 0 7.591208241 -13.76062452 955.2403088 0.002093713992 +2.498763784e-06 -0.008379439497 0.002064150085 0 -12.56773264 -8.962778112 981.5229445 0.002037649768 +2.497292318e-06 0.0007009561872 -0.01033736931 0 13.74134021 -15.97263065 905.0580849 0.002209802921 +2.494097619e-06 0.008271230375 -0.01007233158 0 -18.17456734 -25.9617876 921.5619483 0.002170228495 +2.497831923e-06 0.006869677836 -0.005060409824 0 13.43672175 -15.32874779 978.5887396 0.002043759466 +2.49537543e-06 -0.002639248511 -0.01490674927 0 -3.588459872 -31.48338797 1041.195137 0.001920869517 +2.497527083e-06 -0.003238525731 0.01425990595 0 20.01260342 -0.3314131755 899.6677556 0.002223042882 +2.496841726e-06 0.002161608282 -0.006361130176 0 22.64938456 -3.284339018 910.1842867 0.002197357205 +2.497088967e-06 -0.003414952019 0.003496905675 0 22.75959894 -10.74029058 1042.544711 0.001918382951 +2.496746468e-06 -0.006505255052 0.002935218494 0 -14.9999623 20.54167112 996.6297232 0.002006763348 +2.498689661e-06 0.001089523169 0.003386076086 0 14.55687954 5.108292056 952.7826965 0.002099114528 +2.49947027e-06 -0.008646259103 -0.002492230693 0 10.91669842 -0.3967445716 1061.209865 0.001884641357 +2.497610926e-06 -7.358700503e-05 0.009577726561 0 8.56926152 -17.39254771 886.6856474 0.002255590813 +2.49606936e-06 0.00682688605 -0.006037629666 0 15.99100378 -21.02970542 941.7000556 0.0021238185 +2.499976474e-06 0.004269219772 0.0147222996 0 -1.154246696 -1.695499472 945.583548 0.002115096021 +2.499620199e-06 -0.005943402941 0.01121369096 0 6.185774525 -6.453887905 1025.652666 0.001949977869 +2.499866834e-06 0.004776749779 -0.01418294689 0 0.08295604136 -5.283711528 1023.932951 0.001953252894 +2.498864148e-06 0.0004538512602 0.004105747067 0 6.561390509 13.55873047 999.2147316 0.002001571771 +2.498732361e-06 0.001388959484 -0.01129349029 0 10.01348462 12.90246278 1025.537194 0.001950197429 +2.495408097e-06 -0.003179474622 0.007906606758 0 -10.32680531 26.23994628 929.8680737 0.002150842745 +2.498477713e-06 -0.001635660804 -0.001165532134 0 7.05194236 15.98192896 1000.91122 0.001998179218 +2.498277256e-06 -0.0002462340472 -0.008020961406 0 11.87641546 11.43434427 887.9363642 0.002252413665 +2.496076397e-06 -0.0004130823305 0.004362391087 0 16.70087296 21.42985481 969.3069502 0.002063329887 +2.49724423e-06 0.00899642135 0.01129382491 0 6.776902282 22.47683938 999.5690264 0.002000862319 +2.496820556e-06 0.001367166117 0.006741036396 0 -18.5764726 12.86853356 895.7328183 0.002232808667 +2.496766438e-06 0.008995262464 0.004360554612 0 -14.94391821 19.8496597 976.5448721 0.002048036969 +2.49643261e-06 0.00498315807 0.01307783857 0 21.77621709 -17.08352724 1035.632983 0.00193118608 +2.498168928e-06 0.006032450804 0.00915112332 0 -15.4696376 7.861859022 906.5290153 0.002206217304 +2.499958076e-06 0.009403403313 0.006451705832 0 2.211814681 1.26603535 880.114039 0.002272432789 +2.499783332e-06 0.00165677805 0.005082974536 0 4.477923739 4.33899787 947.1730713 0.002111546517 +2.496761236e-06 0.003541359627 0.0004733483191 0 24.02533975 11.03720208 1038.327256 0.001926174999 +2.498468224e-06 -0.006363000469 0.008954977831 0 11.73279726 13.62743805 1027.151507 0.00194713242 +2.49670896e-06 -0.006053141053 -0.0004453549767 0 18.29599373 13.1505766 877.807693 0.002278403363 +2.497146699e-06 0.003830210753 0.007395379508 0 9.750844527 21.8981258 1003.022373 0.001993973468 +2.493946944e-06 -0.009985338859 0.01467205452 0 16.35652521 33.46809769 1069.652641 0.001869765869 +2.496451091e-06 -0.003923717216 -0.0125094888 0 -22.52915238 16.04469994 1037.613426 0.001927500117 +2.498174542e-06 0.005358290835 -0.001331176527 0 -17.06523152 -6.249400498 950.8662535 0.002103345231 +2.499941542e-06 -0.005804170324 -0.0009393691574 0 0.3988497253 -3.592847764 1057.199308 0.001891790871 +2.499456483e-06 -0.007611540905 0.001273018497 0 -10.0432012 -2.496480331 992.5088129 0.002015095457 +2.4988701e-06 0.006313509559 -0.0147379303 0 -13.15917264 5.242549472 942.1257756 0.002122858807 +2.496392501e-06 0.002601399943 -0.006227285124 0 -24.50898506 -14.78032869 1064.947076 0.001878027599 +2.497814087e-06 0.00288253238 -0.009751058738 0 -19.87876557 -9.735792353 1058.28457 0.001889850856 +2.499977785e-06 -0.005030869851 -0.0126680341 0 1.691142114 1.000574114 932.2263366 0.002145401735 +2.499329891e-06 -0.005967355743 -0.01092209933 0 10.44897796 4.898669421 996.7470651 0.002006527102 +2.497774987e-06 0.002691760687 0.001086592551 0 -19.86494363 -10.07945315 1055.618631 0.001894623627 +2.494420626e-06 -0.004745665491 -0.0004462748626 0 -24.21924261 -18.58147032 913.0608807 0.002190434441 +2.497385291e-06 -0.003319354053 0.001890569315 0 -11.49814611 -20.44129459 1025.192809 0.001950852544 +2.49457595e-06 -0.008952993741 0.01038072767 0 16.07569891 27.37924516 963.1873317 0.00207643927 +2.497067064e-06 0.009118036618 -0.01288502773 0 18.89616267 -15.34289798 1004.559198 0.001990922987 +2.499749622e-06 0.009798441594 -0.009890611873 0 -2.429532969 6.072275251 924.2012098 0.002164030926 +2.497951304e-06 -0.001072889795 -0.009645769112 0 7.339658296 -20.34298719 1068.070686 0.001872535242 +2.497878182e-06 -0.007944064192 0.01306470711 0 10.56086376 -17.30161184 983.6688947 0.002033204476 +2.497009007e-06 -0.003156798766 0.01284599294 0 15.1448153 16.48294838 914.7958671 0.0021862801 +2.494483031e-06 0.008461496425 -0.009856793589 0 -16.23524657 -26.88238838 944.6427918 0.002117202415 +2.497782949e-06 -0.008821871714 -0.0139704448 0 14.77146955 16.14605045 1038.893805 0.00192512458 +2.499744535e-06 -0.004025346804 0.002849295137 0 -3.674905448 6.273174567 1017.083748 0.001966406409 +2.497400744e-06 -0.006476994902 -0.009164701514 0 -1.313995209 -21.55761591 946.8845242 0.002112189975 +2.499995286e-06 -0.001102847024 -0.005737778787 0 -0.01530624199 -1.021132033 1051.746911 0.001901598169 +2.496492957e-06 -0.003977476866 -0.01103515136 0 -25.86979102 4.524645099 991.1098818 0.002017939723 +2.499913508e-06 -0.004959478443 0.002197807766 0 -3.468696399 -1.194458355 882.0450678 0.002267457835 +2.499176967e-06 -0.006413682941 -0.01313248472 0 13.68134789 -0.6485655102 1067.428994 0.001873660929 +2.496913531e-06 0.0008700869884 0.003245201341 0 13.33317007 -21.29527215 1010.782395 0.00197866525 +2.498970235e-06 -0.006372445277 0.005199114543 0 -11.26490586 8.721464294 992.5587001 0.002014994176 +2.494054754e-06 -0.006049572811 0.01230984729 0 19.71325162 28.6728056 1008.180276 0.001983772196 +2.498263775e-06 -0.0004728194093 -0.008176071513 0 -17.77432302 6.267499295 1011.137685 0.001977969993 +2.499195902e-06 -0.001822114238 0.01316012819 0 8.560579098 -8.726428741 963.8357543 0.002075042341 +2.496666815e-06 0.004130907869 0.0106009262 0 23.56084191 -6.051585658 941.676252 0.002123872186 +2.498193132e-06 -0.004684073725 -0.006939183155 0 9.487114932 -16.68800273 1009.531076 0.001981117816 +2.498182037e-06 0.005712517183 0.00128917991 0 17.74050655 1.555607627 933.6911339 0.002142035977 +2.497700178e-06 0.004469791385 0.007564342206 0 11.82643331 -17.04719907 967.0751643 0.002068091575 +2.499917485e-06 -0.002105827462 -0.01301048169 0 4.196679681 -0.7950438843 1051.418177 0.001902192717 +2.497125875e-06 -0.002061076751 -0.003257596556 0 18.14970983 -17.88962084 1062.472907 0.001882400941 +2.496825483e-06 -0.007845391631 0.003421413505 0 5.237214153 23.35511408 949.4558538 0.002106469713 +2.499849265e-06 -0.005148078552 4.730522633e-06 0 0.6989561093 4.805346808 884.380612 0.002261469748 +2.498225375e-06 -0.00382778327 -0.01347123586 0 -16.12676813 -4.526491303 888.8537129 0.002250089043 +2.497969382e-06 -0.005165806636 0.006439165408 0 6.080000279 19.21118006 999.5873894 0.002000825562 +2.498987412e-06 0.00521022799 0.0102402629 0 11.52918469 -9.067052617 1030.520583 0.00194076667 +2.499798614e-06 -0.007273849891 0.01137149728 0 6.663231087 -1.299372561 1069.661565 0.00186975027 +2.496124895e-06 -0.007381777163 0.004167480085 0 15.98718094 19.85794566 915.2152996 0.002185278154 +2.499194085e-06 0.002232173495 -0.01438317306 0 5.033405967 11.48587454 987.6378974 0.002025033674 +2.498661892e-06 0.009430373274 -0.008749999066 0 -11.79004916 11.6835259 1014.42723 0.001971555909 +2.497957558e-06 0.007269441248 -0.01373589878 0 19.99342434 -7.875916513 1062.890507 0.001881661363 +2.495170853e-06 -0.002812034977 0.001204501614 0 22.74452795 21.42475207 1004.694465 0.001990654941 +2.497706737e-06 -0.003358103153 0.007902672761 0 10.7631204 -15.41649597 877.6298577 0.002278865039 +2.499432999e-06 0.005141802663 -0.01418692539 0 10.44688657 -3.333750625 1029.677183 0.001942356336 +2.497556169e-06 -0.007572823446 0.008006633548 0 -9.52600016 19.62682344 986.447487 0.002027477414 +2.493358512e-06 -0.0009564021463 -0.005748789387 0 -24.79044758 -27.62603414 1017.434724 0.001965728073 +2.497888817e-06 0.009568598638 0.006290608663 0 -1.077707794 -21.30321091 1037.730546 0.001927282575 +2.499630175e-06 0.002113811397 0.01170465746 0 -8.028674537 -0.487851915 935.2054911 0.002138567426 +2.497628946e-06 -0.001292690067 0.005393689277 0 19.02406305 3.149213999 885.183675 0.002259418081 +2.498008292e-06 0.004816623698 -0.008097681992 0 15.93901773 -8.346388977 901.2047703 0.002219251457 +2.496852096e-06 -0.006228523147 -0.01250913589 0 -25.41162797 -0.9226684788 1012.949205 0.001974432666 +2.496545757e-06 -0.008989525596 0.007914582873 0 -22.33354392 -13.30699233 988.5822183 0.002023099306 +2.498946241e-06 0.001748289359 -0.00847956338 0 10.15340367 11.76592488 1070.360377 0.001868529555 +2.496482078e-06 -0.005669306698 0.0004802859295 0 -21.20367711 -17.57783316 1037.796446 0.001927160193 +2.497329719e-06 -0.001095327451 0.01127222953 0 -13.91881298 -16.92552179 947.8651495 0.002110004784 +2.498124689e-06 -0.008947633607 -0.01147980459 0 11.40518588 -16.9869656 1056.194822 0.001893590045 +2.497499589e-06 0.009028197341 0.006362493918 0 -6.293443491 -21.70571495 1010.22609 0.001979754848 +2.496257792e-06 -0.0004137189314 -0.01436092307 0 20.71239127 -20.03010715 1052.617625 0.001900025188 +2.495723972e-06 -0.004624196095 -0.00446370593 0 17.36461803 -21.26314968 938.1477679 0.002131860319 +2.499939062e-06 -0.003373570279 0.009855328063 0 -3.299633694 1.70454158 1063.819934 0.001880017413 +2.49802922e-06 0.001777311149 0.005923426808 0 16.88909321 -5.340925864 891.9511157 0.00224227535 +2.496723464e-06 -0.007447619382 0.001057442701 0 5.197801577 22.57554427 904.5207689 0.002211115619 +2.49601748e-06 0.006582897236 -0.01332677194 0 28.47360444 -2.570704037 1012.398879 0.001975505942 +2.496163897e-06 -0.005338037768 -0.00436378856 0 20.04633764 -20.05980001 1023.259228 0.001954538933 +2.497788128e-06 0.008944069073 0.001818287889 0 2.016126521 19.40349311 927.1982836 0.002157035917 +2.495817542e-06 -0.0057039301 0.001195133168 0 16.96485462 -23.86478657 1011.746311 0.001976780125 +2.499398686e-06 0.0001114237215 0.006107857211 0 -6.959381494 9.302754358 1059.303522 0.001888032994 +2.498888312e-06 0.008217241624 -0.01399225101 0 -14.92962468 -0.8360084191 1002.651276 0.00199471147 +2.499903167e-06 0.009783908082 -0.01187589345 0 1.848047319 3.828677422 966.0400085 0.00207030763 +2.497901245e-06 -0.001680560368 0.0026146444 0 21.23607911 -0.6890338297 1036.740711 0.001929122662 +2.498768685e-06 -0.003130551502 0.00020480067 0 -6.648724462 15.22705436 1058.592322 0.001889301441 +2.4924996e-06 -0.00958919473 -0.01351526598 0 -26.0745487 -31.61162662 1056.821764 0.001892466704 +2.499224952e-06 0.00341352019 -0.01459733526 0 8.583757262 6.833968952 881.1599662 0.002269735436 +2.498896316e-06 0.009614206776 -0.004640049005 0 -14.57270165 1.285587124 984.496762 0.002031494746 +2.499120883e-06 0.001890214155 0.01339643685 0 -2.005963398 -13.81832144 1052.902359 0.001899511367 +2.499595105e-06 -0.009596283529 0.0100076582 0 3.844202784 -7.441607085 930.7175613 0.002148879621 +2.499042595e-06 0.004009418734 0.01173650185 0 -10.388149 -8.850950429 986.112226 0.002028166721 +2.497955849e-06 0.007905318248 -0.004237398359 0 -6.539867591 -16.84728466 893.5194442 0.00223833965 +2.498846937e-06 0.007027143459 0.00590902885 0 7.72528368 -11.24701946 898.3478405 0.002226309131 +2.497794241e-06 0.00640546151 -0.01444240674 0 -4.162586707 -20.27302575 985.0261814 0.002030402885 +2.499358956e-06 -0.002161010755 0.003936095713 0 11.75036796 1.380619531 1044.787409 0.001914265029 +2.496343603e-06 -0.003239960647 0.00201284565 0 -24.74059836 -12.48389479 1024.200481 0.001952742687 +2.496451182e-06 0.004513141522 0.004400483596 0 18.29981566 -15.91934832 909.9437128 0.002197938149 +2.495607474e-06 0.001745993295 -0.001030079518 0 23.31368453 -18.34337194 1000.194693 0.00199961069 +2.498061826e-06 0.006201243517 -0.007914196355 0 1.245007673 19.20844928 977.3834209 0.00204627985 +2.497830773e-06 -0.00112001495 -0.01286587049 0 -5.405206588 -18.32030533 916.7442846 0.002181633454 +2.498737032e-06 -0.008461749586 -0.007316835104 0 14.60530858 8.307466597 1057.022484 0.00189210734 +2.495972131e-06 -0.005405112035 -0.005155093661 0 21.45601609 17.49941612 974.9141957 0.002051462589 +2.494151642e-06 0.000902133286 -0.009170385262 0 17.43330841 -28.55275683 977.31965 0.002046413372 +2.498619558e-06 -0.009406054839 0.01145901073 0 -8.474352392 14.71066692 1021.519675 0.001957867331 +2.49833618e-06 -0.003056570366 -0.005099675939 0 -10.61129955 12.33719147 891.8406688 0.002242553037 +2.499222048e-06 0.004740606034 -0.01059513638 0 11.42385071 -4.205422202 975.814402 0.002049570078 +2.498858355e-06 -0.002480997634 -0.004103150012 0 4.527356847 -13.73230382 956.7403535 0.00209043132 +2.499084624e-06 -0.001420023842 -0.003372291564 0 12.20226663 4.290223792 955.8183877 0.002092447714 +2.499639416e-06 0.003207585397 -0.005425356673 0 8.446957734 -2.521847763 1038.004252 0.001926774381 +2.498563493e-06 0.008495899113 0.001552949636 0 -9.408633461 11.55684938 879.0129452 0.002275279347 +2.496067708e-06 0.006442138283 0.007274399155 0 24.04181584 13.78511881 987.6367189 0.00202503609 +2.496645246e-06 0.001703257188 -0.003868895948 0 -21.89412617 9.306349404 917.9714744 0.002178716938 +2.497465932e-06 0.004622043548 0.01479450142 0 18.54568874 12.17654031 985.1134591 0.002030222998 +2.49539605e-06 -0.001520152041 0.001554939758 0 19.744827 21.94004788 972.0406088 0.002057527208 +2.495764691e-06 0.003299275064 -0.00441058265 0 13.10019966 -25.48843401 984.0355516 0.002032446893 +2.498124926e-06 0.001533251558 0.003915803879 0 -15.83357286 8.513494629 928.0619425 0.002155028569 +2.497907475e-06 0.008397320751 0.002863046145 0 16.59259098 -8.02193408 900.6146822 0.002220705524 +2.495676452e-06 -0.009837384555 0.01467169023 0 -29.40280516 -9.421124276 1049.285851 0.001906058295 +2.499104561e-06 -0.0008218795713 0.007066486683 0 7.677838246 -10.89697701 995.965075 0.002008102543 +2.49688934e-06 0.002461790345 -0.0008097516582 0 4.009219768 22.30482813 908.1544367 0.0022022686 +2.498640442e-06 -0.009057331583 -0.01033595946 0 4.738122995 -16.35072184 1032.15204 0.001937699024 +2.498792799e-06 -0.002667245376 -0.01337301652 0 5.116322296 12.74794093 883.8676566 0.002262782199 +2.49777103e-06 0.007840923867 0.002218025553 0 -6.054111987 -17.52680884 877.9436033 0.002278050654 +2.498945158e-06 0.003397649112 -0.006205610661 0 -3.377641646 -14.5994216 1031.526839 0.00193887345 +2.498846709e-06 -0.002200619751 -0.002086513541 0 6.452131548 14.05119735 1017.886621 0.001964855377 +2.498969257e-06 -0.005892264373 0.003766212871 0 6.126244214 -13.02634087 1002.431574 0.001995148648 +2.497204078e-06 -0.009043913269 -0.005833557481 0 -22.9026328 6.867205504 1010.695283 0.001978835792 +2.497966675e-06 -0.006159406258 0.0002057834342 0 -16.33313651 13.00463833 1034.995678 0.001932375218 +2.49878618e-06 -0.001696066498 -0.01270290409 0 15.15090663 -2.665254669 987.1550403 0.002026024199 +2.498704473e-06 0.003816076927 -0.007722661297 0 14.07573211 1.640920885 880.196388 0.002272220186 +2.497071045e-06 0.00829628848 -0.01415896445 0 22.52220301 11.80654925 1050.196158 0.001904406129 +2.495575384e-06 0.005313445791 0.007310135092 0 23.98109239 -13.92376963 931.5620279 0.002146931648 +2.49790768e-06 0.005574126928 -0.008269930019 0 -0.921754498 -21.8857641 1070.486371 0.001868309633 +2.498201782e-06 -0.005810183571 0.01105541297 0 -14.58351262 11.35574206 974.3740045 0.002052599916 +2.498899086e-06 -0.007520188061 -0.003189722733 0 6.408386065 -11.55857123 890.5189481 0.002245881465 +2.498114474e-06 -7.268772926e-05 0.004424845108 0 -17.51547011 8.032091081 992.0005774 0.002016127859 +2.496861844e-06 0.009388983422 -0.002080989035 0 19.62350033 16.13937485 1013.705665 0.001972959281 +2.496691222e-06 -0.008059095633 -0.008696828806 0 -24.01721935 -12.25568106 1047.638064 0.001909056256 +2.497133124e-06 -0.007528055962 -0.01110381437 0 -20.98341845 -13.00594262 1030.542025 0.001940726289 +2.497183753e-06 0.005302847181 -0.01380345219 0 18.67995411 11.82310991 931.1058137 0.002147983581 +2.498487179e-06 -0.006747859782 -0.003441060274 0 13.99236859 7.689566741 917.6794544 0.00217941024 +2.496837116e-06 0.009156400487 -0.01408926327 0 -17.19522061 -14.50553577 894.0244822 0.002237075203 +2.498849763e-06 -0.006144421538 0.01442931079 0 -3.089977008 15.87913797 1066.385221 0.001875494859 +2.498791088e-06 0.007925865748 -0.014418264 0 9.549059918 -12.65496956 1019.373775 0.001961988869 +2.495994476e-06 -0.006827011425 0.006726958598 0 -17.88657959 20.03245973 948.2674201 0.002109109685 +2.496688776e-06 -4.718965385e-05 -0.01212409975 0 8.422215859 -24.60197998 1009.972637 0.001980251669 +2.498904418e-06 -0.001307294075 -0.0002076056949 0 -5.968951285 -12.2539635 920.6616464 0.00217235073 +2.498873618e-06 -0.006492966302 0.01350028391 0 5.525062727 12.24111486 894.6483789 0.002235515145 +2.497994147e-06 -0.001907856078 0.008291262249 0 -11.90178539 14.58851335 939.7209822 0.00212829131 +2.497521203e-06 -0.0006209960254 -0.005924589455 0 22.0230778 -2.95047477 997.5710961 0.002004869636 +2.498095664e-06 0.0099717391 -0.0002186938352 0 5.96919761 -19.93474216 1065.971946 0.001876221985 +2.497790198e-06 0.004549808209 0.004959005071 0 -20.7657127 -8.47102873 1066.440624 0.001875397424 +2.499117476e-06 -0.001482504867 0.005403112569 0 -11.77274967 7.277764384 1041.646853 0.00192003652 +2.498225132e-06 0.00814385077 -0.01234566687 0 -6.139485626 -17.03883553 961.0218019 0.002081118239 +2.499387306e-06 0.005000209156 0.005030605879 0 -11.22226223 -3.283631713 1056.188775 0.001893600886 +2.495908435e-06 -0.009693173137 -0.01380998609 0 -25.84751812 0.3113595068 903.075136 0.002214655149 +2.499456285e-06 0.008508115928 -0.002595464559 0 9.159091257 2.255666437 904.4880009 0.002211195724 +2.497128056e-06 0.004497583299 -0.0008758714353 0 23.7602702 -5.61241895 1018.242148 0.001964169333 +2.495819792e-06 0.008485886692 0.009882623996 0 25.44378318 7.501213928 916.8392498 0.002181407483 +2.496719855e-06 0.009836492916 0.01399489019 0 25.43286389 -8.284467043 1043.802287 0.001916071679 +2.497625074e-06 -0.007041853247 0.00399149739 0 0.06427244278 20.48938863 939.8018342 0.002128108211 +2.497620782e-06 0.00771600089 0.01239059867 0 -16.02908776 -13.61335987 963.7164454 0.002075299233 +2.49994828e-06 0.003625116949 0.002732296733 0 2.16096286 2.506544819 1028.986467 0.001943660159 +2.498717791e-06 0.008752404135 0.002035510554 0 -0.942522576 -15.28755201 956.2773344 0.002091443484 +2.499566138e-06 -0.005970419711 -0.005321866055 0 9.272927424 -3.202155024 1053.079096 0.001899192575 +2.49553045e-06 0.001701639546 -0.01372400319 0 3.093321504 -29.09212017 977.8636782 0.002045274862 +2.495388433e-06 -0.006070560664 0.004937415705 0 21.66812588 -22.4879426 1027.567383 0.001946344379 +2.499021679e-06 -0.004573963075 -0.009446979524 0 -11.38815124 6.448880323 935.4735271 0.002137954674 +2.497425674e-06 0.006706072683 0.01422740016 0 -12.52907087 20.49835783 1058.360711 0.001889714896 +2.497810222e-06 0.00865438757 0.01439802413 0 13.2664146 14.58433564 941.7809331 0.002123636113 +2.498280029e-06 0.008135485295 -0.01134638357 0 14.56952434 8.858117323 919.099951 0.002176041896 +2.496713336e-06 0.0002188872546 0.01320103687 0 10.74349039 24.27465684 1034.879 0.001932593085 +2.499559558e-06 -0.008713922021 0.001179442629 0 -3.230395677 8.622606762 981.0040161 0.002038727637 +2.499035351e-06 -0.000500902487 -0.01262420034 0 12.00221339 -3.468696193 899.3277376 0.00222388337 +2.499390518e-06 0.007164762332 0.0009765844932 0 6.04117094 -9.696353867 1034.653904 0.001933013535 +2.49707032e-06 -0.001485879654 -0.01159605694 0 -18.30463872 14.08544857 953.7504362 0.002096984624 +2.497541718e-06 0.003031413504 -0.002965647723 0 16.23061151 10.87470789 880.7760369 0.002270724811 +2.498614741e-06 0.006038195132 0.01184817669 0 -17.05597827 -4.410238839 1058.180582 0.001890036571 +2.497435557e-06 0.004771789568 0.01119217407 0 19.90100258 -3.377771108 890.9706696 0.002244742805 +2.49949101e-06 0.004771332201 0.009605030974 0 3.548335248 -10.1061728 1061.517625 0.001884094954 +2.499600194e-06 0.00236319493 0.01323276259 0 -2.82025273 -9.137107482 1069.309643 0.001870365627 +2.496009327e-06 0.008085572589 -0.005278387244 0 16.83933775 -18.95564559 896.9467943 0.002229786664 +2.499471054e-06 0.009984333059 -0.01459859805 0 -6.663127366 7.332263752 963.1872681 0.002076439407 +2.492600571e-06 -0.00645921703 0.01036705726 0 -28.49602601 27.02295265 1019.72364 0.001961315716 +2.495752292e-06 -0.004912374946 -0.008330969552 0 -19.12156983 17.8155104 896.0859157 0.002231928842 +2.499953249e-06 -0.002149961977 -0.01499373281 0 2.749889459 0.4963427512 913.823695 0.002188605976 +2.499021808e-06 -0.001810785551 -0.004177702668 0 12.49804204 2.318951777 908.6591856 0.002201045267 +2.494347883e-06 0.004258257258 -0.01241449454 0 27.99748195 -20.87434443 1037.812925 0.001927129592 +2.496568076e-06 -0.003455188456 0.005468888415 0 -7.873361594 23.86330446 958.65195 0.002086262903 +2.497856109e-06 -0.006014799261 -0.004570329662 0 5.716191295 -20.14506417 1010.946103 0.001978344833 +2.497568845e-06 0.003608436328 -0.01262871532 0 21.90689284 2.428127884 999.2001437 0.002001600993 +2.498512067e-06 -0.008167479956 0.005253558769 0 -15.83697763 3.758216553 943.3335457 0.002120140865 +2.499230985e-06 0.001829086584 -0.004743980316 0 11.24592533 -2.651067649 931.5506034 0.002146957978 +2.495315011e-06 -0.007408663486 -0.006192095554 0 -20.42526726 -23.5729385 1018.248425 0.001964157225 +2.499638472e-06 -0.0005346132023 0.0007480103918 0 0.9306702894 -8.208566489 971.4746871 0.002058725797 +2.498568733e-06 0.00969910102 0.01370745298 0 17.22957219 0.3693715034 1018.370074 0.001963922596 +2.496717708e-06 0.007091151662 -0.01353794102 0 21.71500977 -8.131623675 904.5618889 0.002211015105 +2.496998888e-06 -5.95279457e-05 -0.00577287246 0 -12.12022548 22.78720529 1053.019637 0.001899299812 +2.498179179e-06 -0.004053865396 0.003883706324 0 6.477054281 -18.95046684 1049.165669 0.001906276633 +2.499609423e-06 0.0035565656 -0.0130011362 0 -6.846720776 -5.290767647 978.9473534 0.002043010784 +2.497821946e-06 -0.009284372902 -0.009038424608 0 -20.75663985 -6.546269267 1042.453363 0.001918551056 +2.499198556e-06 0.002139739268 0.00464314885 0 13.21095552 -1.491880307 1049.982654 0.001904793372 +2.49684636e-06 -0.005445140447 -0.005791895748 0 -25.49092959 -7.633795615 1059.032119 0.001888516849 +2.498734387e-06 -0.007245767987 0.01227058721 0 -1.215229346 14.64237307 923.3241121 0.002166086614 +2.498262267e-06 0.005330096749 -0.01131040887 0 18.40807888 2.140378545 993.8133249 0.002012450377 +2.497659316e-06 -0.003730194401 -0.0022650705 0 12.36251718 -19.02534529 1048.282822 0.00190788207 +2.49612062e-06 -0.008066053619 0.01063354545 0 7.397759405 26.02400718 970.7319154 0.002060301066 +2.49795944e-06 -0.009856943469 0.003389795003 0 -7.371458795 -17.04502511 918.9794565 0.002176327214 +2.498161144e-06 0.000786985904 0.008736894624 0 8.044512012 -14.96209807 885.5709725 0.002258429942 +2.499722941e-06 0.004251719578 -0.01300304306 0 7.694128274 1.054095945 1043.224668 0.00191713258 +2.495036661e-06 -0.003268561838 0.004477711602 0 20.07253625 25.91250389 1039.561676 0.001923887776 +2.497734089e-06 -0.00646242484 -0.01446082451 0 -22.05968447 2.257868691 1041.305601 0.001920665747 +2.496835346e-06 0.003085595979 -0.003227389881 0 22.17583179 -8.208087781 939.454924 0.002128894052 +2.499480413e-06 0.009735803455 -0.01292433406 0 0.7621688092 -10.3571444 1018.67268 0.001963339196 +2.499891931e-06 -0.005184853324 0.007227687954 0 -4.626947927 0.7029174188 1006.643827 0.001986800045 +2.498661912e-06 -0.0072369507 -0.006958014148 0 -11.15454777 12.40047407 1019.367182 0.001962001559 +2.498072513e-06 -0.005474764062 -0.008238556834 0 -17.04415793 -9.919750309 1004.119172 0.001991795453 +2.497294895e-06 0.004116304517 -0.009019651401 0 -12.48123561 17.1700372 912.2378845 0.002192410591 +2.497440667e-06 0.00479593595 0.0006042153924 0 -9.283443915 18.28842751 906.1804548 0.002207065921 +2.497899972e-06 -0.0009685812751 -0.008895354189 0 -19.95453396 -4.58988914 998.7859605 0.00200243103 +2.499339024e-06 -0.002379271518 -0.004794422595 0 -2.000284334 -11.39910283 1006.480177 0.001987123091 +2.499138317e-06 0.001779054808 -0.004209314638 0 -2.561553065 12.67853719 985.1717053 0.002030102965 +2.495384299e-06 -0.00939965568 0.007153116292 0 -17.53001966 24.37756897 987.5619717 0.002025189363 +2.498343276e-06 0.00165063282 -0.008174788789 0 18.83235545 2.993490056 1047.309352 0.001909655438 +2.49982982e-06 -0.005193927339 0.01253942276 0 2.33210247 -4.992563285 944.5006231 0.002117521102 +2.497390425e-06 -0.009466018593 -0.01380979741 0 -16.67351893 15.80374021 1005.194532 0.001989664623 +2.496744778e-06 -0.003619385855 -0.01337210868 0 -1.93253111 -24.11013674 947.4860459 0.002110849029 +2.499182929e-06 -0.003004476568 0.007008988315 0 -13.04057537 1.772308588 1029.373385 0.001942929581 +2.496805386e-06 -0.009661504934 0.003766002087 0 14.03427282 20.34035808 977.1883903 0.002046688254 +2.499060914e-06 -0.00893257672 0.006041807276 0 -7.645362548 -12.25372917 1053.741308 0.001897999048 +2.499338047e-06 -0.007760670176 -0.0004732583603 0 -11.6786129 3.627037529 1062.710182 0.001881980651 +2.495413656e-06 -0.009171925606 0.005292062606 0 14.47122579 23.32004834 905.5650717 0.002208565748 +2.497741258e-06 -0.001510554594 -0.005685183951 0 1.863010752 21.1606449 999.1025317 0.002001796549 +2.498581785e-06 0.00589774644 -0.0009505746444 0 1.202390275 -15.0418541 895.7895239 0.002232667325 +2.499436543e-06 0.006867982247 0.0147592358 0 -6.163242173 8.038198244 954.0865418 0.002096245898 +2.49653256e-06 0.004645983265 -0.007358469197 0 -13.12097981 -20.19596153 914.0760181 0.00218800183 +2.497522558e-06 -0.006389225437 0.005013349077 0 -18.2888314 10.57879579 948.8118447 0.002107899486 +2.499321115e-06 0.004474385479 -0.008881777846 0 -11.87620753 -1.363516729 1025.8036 0.001949690955 +2.497855746e-06 -0.007469691345 -0.01210470172 0 -21.41036253 4.4047966 1055.195359 0.00189538362 +2.498216268e-06 -0.002524205223 -0.001586010559 0 -16.78752772 7.793125086 979.6441955 0.002041557546 +2.497157626e-06 -0.0008701848146 -0.002042634529 0 25.10277029 -1.917779946 1055.466561 0.001894896602 +2.498187987e-06 0.008478457164 -0.008282562469 0 -17.96556036 4.848735174 977.2253661 0.002046610812 +2.499652877e-06 -0.005684290878 -0.004157116888 0 8.620428775 1.538955052 1050.901747 0.001903127487 +2.497362079e-06 -0.00384505901 0.006176749819 0 8.018678083 21.34253907 992.2055973 0.002015711265 +2.496966042e-06 0.007973215091 -0.002356562954 0 23.8501295 6.774346204 1006.05396 0.001987964941 +2.498690466e-06 0.008840244305 0.01122999494 0 -15.33614429 -7.446277474 1053.227614 0.001898924765 +2.499420448e-06 0.007925274363 0.006403045077 0 -10.76745024 2.565625086 1028.028874 0.001945470648 +2.496805294e-06 0.007061068281 0.01201765701 0 19.26003207 -15.69140658 982.3435382 0.002035947631 +2.498336909e-06 0.009366301005 0.007006251309 0 -14.40031439 -6.98073293 877.2496261 0.002279852781 +2.497869661e-06 -0.001321480838 0.009351653068 0 -18.18114749 -5.939014131 926.3158615 0.002159090741 +2.496714757e-06 -0.006368309879 -0.004669607983 0 1.944745069 -25.26190408 987.9530957 0.002024387604 +2.49589416e-06 0.004038157938 -0.007075361225 0 18.96789637 -18.15197777 915.6145636 0.002184325238 +2.498741901e-06 -0.00101167094 0.005738462303 0 8.210793702 -13.56148128 999.2373039 0.002001526556 +2.499644799e-06 0.003547603982 -0.01207259068 0 4.333720781 7.110397717 987.9004618 0.00202449546 +2.496583455e-06 -0.002350508212 -0.01268638343 0 14.76655111 -17.77220782 883.4859295 0.002263759878 +2.498023048e-06 0.007176053035 0.01241753181 0 -20.05246916 -2.979421095 1019.219198 0.001962286429 +2.498815925e-06 -0.005980725223 -0.01192813658 0 -3.095507561 -15.31180952 1014.946295 0.001970547613 +2.499599141e-06 0.005174228079 0.009790857104 0 -8.942027483 0.4335620073 999.7908012 0.002000418485 +2.496041072e-06 0.005230012373 -0.01252619647 0 -21.85650018 16.68576912 976.6386445 0.002047840326 +2.497791163e-06 -0.005262858886 0.006328494712 0 -18.75734678 7.347523773 958.1381745 0.002087381604 +2.498297713e-06 0.00909430794 -0.009974492965 0 -18.9165167 2.415725086 1033.264825 0.0019356122 +2.499441066e-06 0.005020189732 -0.002180456228 0 9.962570732 5.172605271 1061.618885 0.001883915244 +2.496965032e-06 -0.002431742116 0.01049519887 0 15.84911801 -20.12436478 1039.257491 0.001924450887 +2.498187741e-06 0.001102192826 -0.0104324853 0 19.00082826 -5.892631736 1044.647491 0.001914521423 +2.497164306e-06 0.001977583608 0.0003147234418 0 -17.9005028 16.04409975 1008.961792 0.001982235616 +2.498023263e-06 -0.009741502241 0.007353367503 0 -20.81995253 -0.158537764 1046.824821 0.001910539338 +2.496986056e-06 0.00598165038 0.009088475669 0 22.7359335 -3.856136945 938.8409906 0.002130286193 +2.497843012e-06 -0.000121438643 -0.008470238016 0 -14.20974369 15.02436625 995.322912 0.002009398132 +2.49975229e-06 0.001890403414 0.006068900158 0 -5.923184366 -2.725931693 926.333372 0.002159049928 +2.499607489e-06 -0.0060195632 0.01479631501 0 -6.510379231 -5.228682041 942.3777458 0.002122291203 +2.493980898e-06 -0.002776151942 0.00737528326 0 -21.41527442 27.76877791 1009.786459 0.001980616774 +2.497543118e-06 0.007125515393 -0.002197806439 0 17.93325428 -14.45204519 1038.628736 0.001925615891 +2.49814107e-06 -0.0007620585384 -0.004343184535 0 18.29932272 -7.865393189 1032.713051 0.001936646388 +2.499291535e-06 0.003595051174 -0.00134392207 0 -6.277381355 9.109454523 929.2838518 0.002152194936 +2.499084614e-06 -0.0006336472649 -0.001451464263 0 12.49208609 -2.193419983 937.2417542 0.002133921148 +2.497540108e-06 -0.005807351642 -0.01471582749 0 22.19323236 -5.055511218 1025.823202 0.001949653699 +2.498458136e-06 0.001614820189 -0.01193640081 0 -2.931756906 -17.22485781 994.7602614 0.002010534676 +2.499940082e-06 0.009081215011 -3.063485026e-05 0 -0.2518720382 3.565794123 1032.617631 0.001936825346 +2.499369688e-06 -0.006345458278 -0.01259592748 0 -4.793496924 10.89375495 1059.928685 0.001886919402 +2.498691361e-06 -0.009653372848 -0.01174034562 0 -5.66866194 -14.36542351 954.40616 0.002095543893 +2.495273887e-06 -0.005838482776 -0.0144591808 0 -22.70095775 15.89937442 900.8248469 0.002220187428 +2.499282208e-06 0.006773167504 0.01068315686 0 -6.728755297 10.4356407 1036.217797 0.001930096169 +2.498476984e-06 -0.00406789022 -0.0007836496783 0 7.422485669 -13.8103467 898.1340351 0.002226839115 +2.499557602e-06 -0.0051456135 -0.0003560881619 0 -8.968807321 -2.76902153 997.8255905 0.002004358296 +2.499783355e-06 -0.005682859137 0.008300572329 0 6.340457293 -1.530819859 990.8765856 0.002018414835 +2.49800081e-06 -0.001406281441 0.002342249639 0 -19.97563602 -7.10024014 1059.896027 0.001886977541 +2.498000009e-06 -0.007218459365 -0.01397427246 0 -11.92113431 15.69366766 985.1056728 0.002030239045 +2.498833265e-06 -0.00957029955 0.0143491787 0 -4.483852835 15.01386852 1025.574816 0.001950125889 +2.496709408e-06 0.005820763726 0.003151370615 0 22.18703068 -13.39104587 1009.680069 0.001980825473 +2.496477017e-06 -0.003820053888 -0.008728998355 0 -18.34013261 -14.53725923 881.1877223 0.002269663943 +2.498464161e-06 0.002266382324 0.003291822772 0 -4.122420897 -17.65989433 1034.479156 0.001933340066 +2.499682874e-06 -0.001505277273 0.008961829485 0 1.049281763 7.458828065 945.7459143 0.0021147329 +2.498632287e-06 -0.008530572122 -0.008716127488 0 -12.12804693 11.70923624 1019.077246 0.001962559764 +2.496503532e-06 -0.00823216307 0.0007242183317 0 10.2226134 -23.83627091 980.2644188 0.002040265832 +2.497676067e-06 0.008736468754 0.009712127235 0 -13.2476062 17.79157582 1028.541056 0.001944501863 +2.499635435e-06 -0.007436431493 -0.00146021659 0 -0.4271178438 -8.910378004 1044.643235 0.001914529222 +2.498969871e-06 0.006720971279 0.01352021737 0 -1.856134407 13.23986134 931.2835837 0.002147573559 +2.499112869e-06 -9.651764762e-05 -0.01478161509 0 -6.250702595 -11.74803525 998.9121682 0.002002178033 +2.499762521e-06 0.008963884679 0.007627076854 0 -1.835840553 6.504594927 980.6648088 0.002039432824 +2.49296294e-06 0.004967717803 -0.01433075217 0 -20.07361584 -32.44459749 1015.901642 0.001968694525 +2.499683833e-06 0.004956556289 0.01214566064 0 -1.180100772 7.472034265 951.2510006 0.002102494503 +2.499046264e-06 0.009563070885 -0.01311363221 0 -7.563556566 -12.36402125 1049.294491 0.0019060426 +2.499234282e-06 -0.006515661776 -0.002727805967 0 -0.7103385566 11.97673102 969.396905 0.002063138421 +2.499602919e-06 -0.006539082131 -0.007775691699 0 -2.149306142 -8.457686651 979.1746945 0.002042536445 +2.496749222e-06 -0.009854682074 0.005743515843 0 14.36065854 17.14397635 876.6518804 0.002281407301 +2.499756656e-06 0.008719225801 -0.01215934666 0 4.858779344 -4.48536138 947.8281565 0.002110087136 +2.499415405e-06 -0.006427491731 0.008760469202 0 -7.214392134 7.356264113 952.805482 0.002099064329 +2.499634728e-06 -0.00942774056 -0.003799241153 0 4.338311924 -6.406901981 905.2219841 0.002209402815 +2.498312284e-06 0.001895685154 0.008668280889 0 -14.55309579 -8.29877677 911.6274564 0.002193878635 +2.499290875e-06 -0.0007136701047 -0.005377914004 0 -7.142641525 -8.62247599 940.0792952 0.002127480108 +2.497403046e-06 0.004320241893 -0.005292635683 0 9.038676303 20.77163334 993.5948283 0.002012892925 +2.498029094e-06 -0.001894133422 0.001941778958 0 18.4419634 -6.10692321 978.1937081 0.002044584813 +2.497920639e-06 0.009433498029 0.01442659682 0 -13.89202184 11.52780954 884.9372336 0.002260047294 +2.495860025e-06 -0.006830710224 -0.01412841908 0 12.97138001 -24.02381671 948.224259 0.002109205687 +2.495145909e-06 0.0021073385 0.001700494476 0 20.39308008 20.14799857 919.3963809 0.002175340301 +2.49827467e-06 -0.004606318385 -0.005853059229 0 18.61672488 3.212913905 1016.747131 0.001967057432 +2.499920386e-06 -0.0008714951621 0.01262447365 0 -3.55915855 -0.2214503313 893.6554485 0.002237999 +2.496781842e-06 0.002640852095 -0.008456390987 0 17.55831031 -13.74227944 878.441611 0.002276759178 +2.498999668e-06 -0.009833861962 -0.01180411676 0 -5.974636179 -12.79457519 998.1768439 0.002003652972 +2.499037507e-06 -0.007751858393 -0.009719980415 0 -12.8891324 1.297836454 933.5501666 0.002142359427 +2.496614285e-06 0.002061052839 0.008204462989 0 16.90488689 -19.25402801 984.1336921 0.002032244212 +2.498292796e-06 -0.007219947879 -0.005802893525 0 18.40919373 -3.81185498 1017.142922 0.001966292009 +2.499016917e-06 0.004397451282 0.005420709529 0 -11.33555664 -5.829364889 908.9098651 0.002200438214 +2.497391282e-06 0.006696282104 -0.007536304872 0 -7.507405872 -22.88627602 1054.068626 0.001897409667 +2.498455562e-06 0.008172325399 0.003606376285 0 -6.400368077 -14.28656728 890.5223483 0.00224587289 +2.496889443e-06 0.003778924216 0.001006724343 0 -21.9038028 -12.00651741 1000.995556 0.001998010869 +2.499874068e-06 0.006804611171 -0.008213410699 0 4.478753982 0.8755523218 909.3049553 0.00219948213 +2.496350426e-06 -0.008292719522 -0.009033249174 0 -24.8592118 1.916763025 922.3600897 0.002168350542 +2.498072784e-06 -0.003881005002 0.01343635788 0 -16.39278485 10.61289903 994.397702 0.002011267721 +2.498326417e-06 -0.0004561989615 0.004575943323 0 6.805580084 -15.0570978 902.9406519 0.002214985 +2.498194039e-06 -0.0007599167246 0.005557415492 0 -19.18806417 3.567341312 1026.651361 0.00194808099 +2.498278452e-06 0.00426236046 0.002205345535 0 13.65218404 -12.10469707 983.0460962 0.002034492592 +2.499973777e-06 -0.005022781114 0.01366359205 0 1.906647203 0.7761059021 898.8814191 0.002224987587 +2.497522841e-06 0.009608690487 -0.01170699181 0 -6.442116432 -21.95394676 1027.531724 0.001946411924 +2.49823933e-06 -0.006645097388 -0.01184788669 0 -20.01474648 1.325176601 1068.639597 0.001871538361 +2.497886212e-06 0.007085485426 0.01449268589 0 -14.37638089 14.09744382 978.9673385 0.002042969077 +2.499359026e-06 -0.002867090846 -0.01128531511 0 -11.83299475 1.378352009 1052.068844 0.00190101628 +2.497803819e-06 0.008052947861 0.01366538621 0 -12.93087984 -16.91062682 1015.410707 0.001969646356 +2.497522598e-06 0.001506445296 -0.01007324307 0 -22.99218567 4.913112788 1055.847507 0.00189421293 +2.498774928e-06 -0.00690641467 0.01048309836 0 14.70159042 -4.871033954 989.2514481 0.002021730677 +2.497214558e-06 -0.00799350508 -0.0029254494 0 13.8488294 20.48739556 1047.280396 0.001909708238 +2.493772021e-06 0.00534002332 0.01264413501 0 23.63749607 20.00017913 876.5068183 0.002281784874 +2.495237095e-06 0.008115017912 -0.007929281141 0 11.67951211 -28.59555329 1000.09032 0.001999819377 +2.497617034e-06 0.004058832307 -0.01018312699 0 -19.63836558 11.35070222 1038.640038 0.001925594938 +2.497749224e-06 0.009606748465 -0.01496686357 0 7.315752622 -18.32215111 929.5452169 0.002151589792 +2.499168674e-06 0.007952551995 -0.01115920721 0 6.410472025 11.607533 1028.230407 0.001945089336 +2.497671898e-06 -0.004084484125 0.003981999408 0 20.46332922 -9.678201263 1048.681028 0.001907157607 +2.496760372e-06 -0.009520891039 -0.00833917584 0 -15.23640115 20.23869326 994.7412165 0.002010573169 +2.497847213e-06 -0.002785111098 -0.007393300608 0 1.224331403 21.83008305 1053.371434 0.0018986655 +2.496736462e-06 0.001646998278 0.01099721722 0 11.61633772 23.04117158 1009.511395 0.001981156439 +2.499192888e-06 -0.001427902142 0.005512345259 0 -11.98290008 -5.04421241 1023.181361 0.001954687679 +2.498844668e-06 -0.007718767612 -0.003957580933 0 9.34171136 -13.15050647 1060.993579 0.001885025545 +2.496700195e-06 -0.008459249693 -0.01037607291 0 6.655070207 -23.69030961 957.393115 0.00208900604 +2.49808071e-06 -0.001800241456 -0.0004798991955 0 -20.90851986 -1.171305171 1068.546131 0.001871702065 +2.497638915e-06 0.007696545972 0.002720655373 0 8.983172492 -16.96546611 883.0970207 0.00226475682 +2.499518062e-06 -0.001974879196 0.01214619161 0 -9.605951577 -1.527085163 990.6447791 0.002018887135 +2.498094363e-06 -0.001609979891 0.001401920181 0 -12.60079263 -15.33799771 1016.500729 0.00196753425 +2.499853451e-06 0.0008486777451 -0.00404849072 0 4.530776556 3.127611896 1016.896822 0.001966767873 +2.495025388e-06 -0.005435257661 -0.01391460758 0 -7.858740437 -31.64229041 1032.872013 0.001936348333 +2.498181286e-06 -0.0007992006931 -0.01039560099 0 -15.01403349 8.561758151 905.9828291 0.002207547357 +2.498976641e-06 0.004204440024 -0.01239206947 0 -13.21845728 2.692281365 942.7822815 0.002121380555 +2.496742466e-06 0.0005273951776 -0.01037303973 0 19.94255242 -18.56416232 1066.90987 0.001874572592 +2.498137987e-06 0.0007684510481 0.009043369631 0 13.76200842 14.39123839 1031.559296 0.001938812444 +2.497234604e-06 -0.0009284103196 0.0024918532 0 20.96297985 -7.072501402 940.3460284 0.002126876638 +2.499257709e-06 0.004821565435 0.003265031653 0 7.731746461 9.279828984 991.2197565 0.002017716038 +2.496130354e-06 0.003879326335 0.002697724875 0 -14.64735169 21.49960259 934.5879207 0.002139980579 +2.499887308e-06 0.003307807022 0.006342622857 0 2.775043236 3.8479945 999.3056599 0.002001389645 +2.497606919e-06 0.001134888469 -0.01147368705 0 11.9618114 -17.27145195 959.9765341 0.002083384259 +2.498903252e-06 0.00858984652 -0.009630271378 0 -7.487634707 -12.94696337 1009.675996 0.001980833463 +2.498737758e-06 -0.002700747945 0.01457177036 0 -11.58350321 11.37000275 1021.372645 0.001958149173 +2.496207641e-06 0.005769031206 0.00286644706 0 22.29280472 15.02806134 975.653637 0.002049907799 +2.497248118e-06 0.004763352075 0.005398034581 0 17.59233349 16.92315828 1040.091132 0.001922908424 +2.499377712e-06 -0.003229176803 0.01065466206 0 -1.618042865 10.25504622 930.5208009 0.002149334005 +2.498596946e-06 0.007817683606 0.01480296059 0 -5.113133729 -15.27245641 961.2464552 0.00208063186 +2.498095448e-06 0.001425815676 -0.003824223422 0 -19.41216399 2.998690063 1006.141776 0.00198779143 +2.49876531e-06 0.00120183141 -0.004569789427 0 -10.02239564 13.45356849 1067.391812 0.001873726197 +2.495968155e-06 0.002141450364 0.0110746589 0 7.721605022 23.86726544 882.8533694 0.002265381851 +2.4993478e-06 -0.009557403345 0.01463463635 0 8.861344115 -5.106370314 895.394976 0.00223365113 +2.499328831e-06 -0.0003968973132 0.0008896961971 0 0.622838972 -11.5335474 996.8290728 0.002006362028 +2.497844592e-06 0.009160779472 -0.0006095288903 0 -8.155285815 -17.90475156 947.2947355 0.002111275324 +2.499917961e-06 -0.003141602487 0.00450759514 0 3.039458414 2.42288282 959.5838822 0.002084236758 +2.498666608e-06 0.003716526218 0.008454243403 0 14.50581396 6.460613008 972.2000279 0.00205718982 +2.496214671e-06 0.009363577524 -0.00719787502 0 -1.633648868 -28.42407194 1034.162603 0.001933931854 +2.496661691e-06 -0.009160347944 0.005651836493 0 -25.90771139 -8.140079966 1050.452496 0.001903941405 +2.498813414e-06 0.005425502607 -0.002266271885 0 10.27854943 12.45941936 1048.294312 0.001907861159 +2.499962239e-06 -0.009631622951 -0.01485054851 0 2.129758976 -1.162276445 882.8700506 0.002265339048 +2.499678424e-06 -0.00258622705 0.001240172605 0 -6.915529261 -3.369004558 959.1580051 0.002085162183 +2.498099286e-06 0.007519960771 0.001133589351 0 -13.86171214 11.9256596 937.595218 0.002133116681 +2.496186412e-06 -0.003282966856 -0.006577431802 0 -23.3674211 -9.383147862 911.258296 0.002194767399 +2.498676514e-06 0.001404393883 -0.002454983261 0 4.249999106 -15.49061922 987.1140218 0.002026108388 +2.495013628e-06 0.007322984892 -0.001421315277 0 -20.32091387 -23.421351 981.164918 0.002038393305 +2.495453242e-06 0.008011163357 -0.01195358931 0 -1.229466263 -31.278809 1037.344648 0.001927999537 +2.498107385e-06 -0.009640967497 0.009052588956 0 17.69247835 -3.823128322 930.0988214 0.002150309144 +2.497562266e-06 0.004396482478 -0.003832416062 0 -17.63190435 -8.36389806 883.4939769 0.002263739258 +2.498474798e-06 -0.008285980681 0.0005431866576 0 17.31271605 -3.888330594 1015.718187 0.001969050103 +2.494419967e-06 0.002669697832 -0.006775244968 0 19.94588526 -26.51662918 992.4084902 0.002015299163 +2.496941226e-06 0.002511103777 0.005745697541 0 -22.0841279 -9.785603688 976.1576611 0.002048849361 +2.495738131e-06 0.00530142406 -0.0008078677836 0 -15.83076853 -20.26888824 880.3445025 0.002271837893 +2.497248859e-06 0.003931942037 0.01472960024 0 -14.43399732 19.59528277 1037.112364 0.001928431353 +2.495728539e-06 -0.0005093847029 0.007707793631 0 -20.61353698 23.19537962 1061.008126 0.001884999701 +2.495760076e-06 -0.00114760038 -0.008461022275 0 -2.335320037 -30.86044615 1062.115302 0.00188303473 +2.499868504e-06 0.0008771897852 -0.007184101262 0 -1.903405596 4.611198845 972.7460152 0.002056035151 +2.499492202e-06 -0.0002074906137 0.005898485687 0 6.174836675 -8.029640931 1005.051279 0.001989948216 +2.498994997e-06 -0.0003464663401 0.0059215605 0 -5.840670622 -12.18499095 952.9527698 0.002098739899 +2.498357995e-06 -0.005303254421 -0.0020939064 0 14.47151796 12.24948454 1045.983587 0.001912075892 +2.497309169e-06 0.004966986119 -0.002848005148 0 22.51770399 3.967345872 985.20989 0.002030024282 +2.496150579e-06 0.005292441077 -0.002348584891 0 25.87441391 7.584362806 971.1938553 0.002059321102 +2.497532499e-06 0.002465506732 0.005380490357 0 22.42201022 -0.4229467644 1009.130448 0.001981904326 +2.496466905e-06 0.007730076672 0.01215279882 0 10.27143164 23.85071956 976.3884872 0.002048364996 +2.497727262e-06 0.008902318957 -0.0004392665369 0 3.743572791 -21.93901643 1043.54596 0.001916542324 +2.496866533e-06 0.003162003523 0.003004518973 0 3.102395299 24.67658687 993.0216057 0.002014054869 +2.497412608e-06 0.007714573103 -0.011362907 0 -19.4185515 -13.30118124 1034.286291 0.001933700579 +2.49847281e-06 0.006141199656 0.008033501299 0 15.3219213 6.746529144 957.7070362 0.002088321297 +2.492870936e-06 -0.008252640283 0.01418793434 0 -18.78163648 28.55503798 904.1722709 0.002211967857 +2.498475628e-06 0.003016049922 -0.003472168618 0 2.73923312 17.83837915 1033.37157 0.001935412254 +2.499527559e-06 6.00085035e-05 0.01354372047 0 -5.246301105 8.887662718 1061.657034 0.001883847547 +2.493976974e-06 -0.004673974188 -0.01089197034 0 20.59854876 -30.10002949 1049.932957 0.001904883532 +2.498363434e-06 -0.008962985817 -0.002689479492 0 -13.09172092 -10.3913484 923.6426234 0.002165339656 +2.496425487e-06 -0.00740856553 0.008413635499 0 19.05222902 -21.03408572 1060.852036 0.001885277053 +2.497447693e-06 -0.002508946145 0.0003766262415 0 -0.6800293922 -21.17482525 937.3372531 0.002133703737 +2.495781627e-06 -0.005087258047 -0.01198197494 0 -22.49138202 16.64361049 962.6820558 0.002077529116 +2.497572576e-06 0.004511976303 0.003843261993 0 4.834567858 19.48451061 910.787081 0.002195902908 +2.499842031e-06 -0.009599589859 0.0003732086462 0 3.366934139 -4.570106547 1009.870823 0.001980451315 +2.498615623e-06 0.001379228402 0.01065082734 0 8.723579012 15.51618311 1069.538517 0.001869965381 +2.498270465e-06 0.003041487252 -0.0005192837957 0 17.72813905 -0.8355514448 954.0093908 0.002096415422 +2.496530888e-06 0.006750823697 0.01217841586 0 23.27665208 9.814532275 958.5249789 0.00208653926 +2.496233211e-06 -0.0033185365 -0.01494875165 0 -23.75091194 -14.36049432 1010.62982 0.001978963969 +2.49890471e-06 0.007348180604 0.006796214597 0 2.129610451 15.43351965 1052.470181 0.001900291367 +2.495517541e-06 0.009992591105 0.0134790759 0 22.22735083 14.43420963 884.5600572 0.002261010978 +2.496779908e-06 -0.007238014392 -0.0126317927 0 -24.78633551 -5.963701137 1004.09232 0.001991848718 +2.499371791e-06 0.007961669439 -0.01215369863 0 -11.4313719 0.115644371 1019.794607 0.001961179227 +2.498222034e-06 -0.008082844047 -0.008209084128 0 -19.12295702 -6.363155352 1068.477103 0.001871822984 +2.499427353e-06 -0.008545580963 -0.00822162882 0 -0.575380251 -9.365564896 876.7103276 0.002281255207 +2.499954789e-06 0.0001780918892 0.001280831478 0 -2.848620747 -1.34015753 1046.918344 0.001910368666 +2.49756633e-06 -0.004213283714 0.01329819793 0 -15.09738974 14.7130995 955.1811768 0.002093843606 +2.497436111e-06 0.0065992219 -0.003208512843 0 23.69738031 3.119319298 1055.11268 0.001895532144 +2.496057871e-06 0.001611869098 0.01080184064 0 -0.8251673134 26.37988934 939.3943165 0.002129031403 +2.496057761e-06 0.001785240779 -0.01350081735 0 -2.198547007 -26.31215458 939.774595 0.002128169894 +2.494498176e-06 -0.001430041166 0.008171578094 0 -21.78259929 20.74336304 906.0280817 0.002207437099 +2.499733097e-06 0.003630228271 0.007314418894 0 2.623742184 -6.814662217 999.4258783 0.002001148903 +2.498326107e-06 0.009165514396 0.01339508336 0 -16.58165459 4.769580635 942.7609151 0.002121428634 +2.496403582e-06 -0.000853172075 0.007740237918 0 -12.89192823 24.26912437 1024.104426 0.001952925844 +2.498059339e-06 -0.007557228953 0.004319730971 0 13.39456038 -13.9236869 980.3991527 0.002039985443 +2.498391145e-06 0.003831018042 0.01015518174 0 7.050829879 -16.62850492 1006.648786 0.001986790256 +2.499357064e-06 -0.005404182742 -0.01184085418 0 -5.813853648 10.45051298 1054.505385 0.001896623791 +2.495790289e-06 0.004409157527 0.005296354671 0 -10.92367308 25.35717144 950.9354142 0.002103192257 +2.496132455e-06 -0.009045306831 0.001255772102 0 -24.16052051 12.31233535 974.4390053 0.002052462996 +2.497351327e-06 -0.002159331972 -0.005994687066 0 -24.16246554 -3.583934745 1060.877114 0.001885232487 +2.499764349e-06 -0.006324330722 -0.003513764169 0 -1.249625253 6.09649787 906.4680463 0.002206365694 +2.496488302e-06 0.00643270656 -0.01328490748 0 -13.73702495 -19.93693935 913.0945634 0.002190353639 +2.497938147e-06 0.007128384314 0.01458815583 0 20.82306617 -5.409210485 1059.123145 0.001888354541 +2.499747019e-06 0.002329759123 0.003014724262 0 -5.231193693 3.449981354 880.9320839 0.002270322578 +2.497970846e-06 -0.002052373183 0.01398947615 0 20.80370153 4.653236101 1057.880588 0.001890572549 +2.4992184e-06 -0.001484338809 0.003772635036 0 12.55398283 2.496372611 1023.632966 0.001953825313 +2.49552779e-06 0.007362573873 -0.00140994929 0 25.80669421 -17.10139971 1034.464387 0.001933367669 +2.497842451e-06 -0.005412552217 -0.008311177231 0 12.030236 -16.9137602 998.8558032 0.002002291015 +2.49940609e-06 -0.001905236375 -0.01137574595 0 9.150091655 -3.371538527 894.6576267 0.002235492037 +2.499199619e-06 -0.003751482242 0.002199419397 0 6.882821256 11.63104471 1068.069476 0.001872537363 +2.498802355e-06 -0.006498969113 -0.00897827276 0 15.35960884 5.428429665 1052.401388 0.001900415586 +2.49983775e-06 -0.004549909527 0.01136375551 0 0.4939387261 5.942839504 1046.81756 0.001910552589 +2.49508344e-06 0.00693333325 -0.004569546185 0 23.0173148 -19.82796421 968.103198 0.002065895458 +2.498668593e-06 -0.002278586566 0.01499926365 0 -10.49746936 -12.52171517 1001.129944 0.001997742663 +2.496973742e-06 -0.0002580896532 0.00396217386 0 21.71109885 11.10161478 990.7262994 0.002018721014 +2.49578113e-06 0.002412308622 -0.01109634641 0 -8.941729463 -26.63409919 966.5873291 0.002069135338 +2.4967156e-06 -0.006204312826 0.0002776957769 0 21.91260935 14.89780935 1033.343296 0.001935465211 +2.498034163e-06 -0.001663939864 0.005881787965 0 17.49753705 6.938763361 949.019291 0.00210743872 +2.499020868e-06 -0.006874811719 -0.0114747507 0 11.06331927 7.608655468 959.3668953 0.002084708165 +2.498357031e-06 -0.008127120403 -0.01417051029 0 -12.39097127 -11.90768262 947.7992882 0.002110151405 +2.499972982e-06 0.009098815033 -0.0112814462 0 0.8959933072 2.005637756 944.9827049 0.002116440851 +2.495607928e-06 0.00667363632 -0.006264377679 0 23.77255424 18.57164943 1017.171793 0.001966236198 +2.498691394e-06 0.006933082952 0.009712654401 0 -14.24438425 1.358222437 884.3094597 0.002261651708 +2.499518307e-06 0.0007845014986 0.01119611707 0 -9.258944333 -1.630018859 957.7627808 0.002088199751 +2.49436093e-06 0.006450286205 0.007171934447 0 22.45900588 25.54620881 1012.006208 0.001976272462 +2.497698535e-06 0.00943021053 0.007409706165 0 -8.004825629 -20.50645541 1025.701375 0.001949885267 +2.496059202e-06 -0.004127846044 -0.007472894532 0 8.269232508 -26.35061342 983.1569932 0.002034263107 +2.498275631e-06 0.008699730365 0.01324892823 0 -17.63814662 8.648406533 1057.53422 0.001891191757 +2.496317892e-06 0.002127723815 -0.01374035554 0 -10.97688085 -22.93257069 936.3660023 0.002135916933 +2.496479959e-06 0.00460522755 0.01400945236 0 -20.03857563 -12.79393716 895.558689 0.002233242806 +2.49793426e-06 -0.001489916621 -0.006402351921 0 -11.39327332 15.8551783 960.2519686 0.00208278667 +2.498334122e-06 -0.008131181053 0.01005009108 0 -6.546654537 -15.51424639 922.2954835 0.002168502433 +2.499068523e-06 -0.004748034677 -0.009983493746 0 -5.709583191 -12.02029 974.835244 0.002051628737 +2.498460967e-06 0.005664529982 0.01425435641 0 -16.34911802 -6.909321048 1011.435951 0.001977386702 +2.494810426e-06 -0.00962822122 -0.01479116861 0 8.711919706 -29.2145115 945.5372749 0.002115199531 +2.496750684e-06 0.0008420702443 -0.002629669723 0 2.941550416 -25.23785567 996.2302289 0.002007568072 +2.498344704e-06 0.007798777828 0.009830716022 0 13.48996409 -10.45384622 937.7374785 0.002132793075 +2.498991317e-06 0.00432982632 -0.0009861211921 0 6.256036715 12.40826504 978.219696 0.002044530496 +2.496842185e-06 0.006315610255 0.006736098379 0 24.31872124 -0.01218894397 967.22294 0.002067775605 +2.498476625e-06 -0.007813527416 0.007298581142 0 -17.16098835 -3.783501828 1006.540002 0.001987004983 +2.498658135e-06 0.003671011743 -0.001708805098 0 4.901010152 16.23494823 1034.981685 0.001932401344 +2.499166789e-06 -0.002724731108 -0.008339805664 0 -11.67913517 3.522497996 944.8645717 0.002116705462 +2.495955686e-06 0.00504201801 0.01000355353 0 24.81106712 -14.58516283 1011.339468 0.001977575348 +2.499941681e-06 -0.005134572042 0.001810736312 0 -2.809559878 -1.042721485 877.4768275 0.002279262469 +2.496394417e-06 0.004821307096 0.000818508456 0 -11.73361685 22.21012303 934.9011033 0.002139263707 +2.496113589e-06 0.0008422902878 0.010602653 0 24.72219976 16.62069583 1067.88745 0.001872856545 +2.493768816e-06 0.004586182144 -0.003455344706 0 24.35798961 -23.67276787 961.2624119 0.002080597322 +2.499780702e-06 0.002819285118 0.004645820616 0 6.563456023 1.594895149 1019.866897 0.001961040216 +2.498144885e-06 0.004380150079 0.01310363099 0 17.7282686 7.743926942 1004.073124 0.001991886799 +2.498934359e-06 -0.003124435311 0.001151722488 0 14.36441471 -6.014012939 1066.523235 0.001875252161 +2.498177608e-06 -0.0005589295365 0.005596699971 0 -0.681818665 -18.20181523 953.8159443 0.002096840603 +2.499388313e-06 -0.002532445271 0.01016451031 0 8.828193095 4.556923078 898.1416084 0.002226820338 +2.496302626e-06 0.002138802852 -0.007370549496 0 21.91721001 -12.20935791 922.0870022 0.002168992725 +2.498797007e-06 0.001402745368 -0.009051033177 0 -8.418221008 -13.76362287 1039.956567 0.001923157239 +2.49578441e-06 0.006368991435 0.007811857865 0 -18.3171565 -18.06819503 885.5288856 0.002258537279 +2.499692182e-06 -0.003179619582 -0.005882918118 0 -0.1543910082 7.860247578 1001.930598 0.001996146244 +2.496470001e-06 -0.005622990271 -0.00957436078 0 -21.68021898 -12.47028654 940.7953119 0.002125860933 +2.499605266e-06 -0.009755759994 -0.009460464686 0 -5.928613193 5.974831782 947.2576018 0.002111358089 +2.499588416e-06 -0.0009793821909 -0.01100694254 0 -7.787499492 -1.96093289 885.0677095 0.00225971412 +2.4994698e-06 -0.00761730093 0.01118349419 0 -9.43405602 4.050047552 996.9191551 0.002006180732 +2.497671125e-06 0.005254457095 -0.01277141343 0 -18.76120008 3.302620678 882.3636733 0.002266639097 +2.49654342e-06 -0.005806953744 0.000587912437 0 -27.1399918 4.167639536 1043.77565 0.001916120577 +2.498209776e-06 0.002510186289 0.003782417178 0 -11.46577318 -16.05640939 1042.416818 0.001918618316 +2.495035413e-06 0.003828691193 -0.01093607146 0 22.94432494 -21.08886832 988.2574987 0.002023764052 +2.499941081e-06 -0.005324288141 0.006358993503 0 3.644420148 -0.2804959642 1064.7897 0.001878305171 +2.499228879e-06 -2.592451405e-05 -0.01081145058 0 11.34589591 5.88072608 1028.923356 0.001943779377 +2.499037488e-06 -0.009885687153 0.002449209576 0 7.957606337 -11.07356125 982.6842872 0.00203524166 +2.497197749e-06 -0.001724427002 -0.009886051272 0 24.62187214 0.9666848977 1040.409571 0.001922319879 +2.498300171e-06 -0.007695416701 0.007188636248 0 2.061464986 -19.21775327 1047.993489 0.001908408804 +2.499266327e-06 0.009976061378 -0.001193976221 0 -3.503112358 10.97817862 951.2010876 0.002102604829 +2.498540467e-06 0.002697937074 -0.009966083604 0 0.554664739 -15.52962727 909.3285065 0.002199425165 +2.498925694e-06 0.009877993683 0.01110967976 0 -0.1046050276 14.20921465 969.243287 0.002063465414 +2.498765036e-06 -0.008508129655 0.01455518575 0 4.348654035 -15.59811818 1030.157751 0.001941450227 +2.496421171e-06 -0.001530202269 0.003347356974 0 19.74447203 -18.89473461 1020.938163 0.001958982506 +2.498387047e-06 -0.005528236651 -0.008425492693 0 8.083175505 -13.5671161 879.0651194 0.002275144305 +2.494968482e-06 -0.002379200212 4.273391794e-05 0 18.54286856 22.63394028 921.6756313 0.002169960811 +2.499513833e-06 0.00288486009 -0.008105352859 0 -6.026299894 -7.355769108 964.2768429 0.002074093156 +2.499163566e-06 -0.007174709588 -0.01454495184 0 13.68675501 -1.799217805 1067.175225 0.001874106476 +2.49577687e-06 0.008355328166 -0.004191384728 0 24.05083607 18.25220901 1038.224448 0.001926365734 +2.498027007e-06 0.001386811933 -0.006061312566 0 -2.072071626 -19.21248181 972.4970842 0.002056561436 +2.497315862e-06 0.001311378786 0.008717815317 0 9.777495229 19.57124271 943.8629799 0.00211895163 +2.499361456e-06 0.005299234618 0.01453641572 0 2.241438109 -10.36771391 938.5349775 0.002130980782 +2.497606478e-06 -0.009209304084 -0.008096798938 0 4.373567935 -21.84791268 1018.010263 0.001964616736 +2.496934026e-06 -0.002768527158 -0.01118701142 0 20.94993013 -10.17485633 940.0949329 0.002127444719 +2.496854934e-06 0.003471979457 0.003839407631 0 2.958518424 24.11150282 968.1314439 0.002065835185 +2.49777516e-06 0.007674550833 0.009575613462 0 18.55184092 -1.743206439 883.0523762 0.002264871319 +2.499388388e-06 0.003438227074 -0.001716554062 0 9.855335802 2.518073583 919.6252144 0.002174799004 +2.498693922e-06 -0.00303874536 0.01294255885 0 11.39475676 -12.59269427 1050.57075 0.001903727093 +2.495897261e-06 -0.002401881772 0.007975256124 0 -22.65383451 20.28433883 1060.887668 0.001885213733 +2.497439039e-06 0.006378614199 0.008949398473 0 2.534238612 21.21176915 943.5634778 0.002119624219 +2.499745767e-06 0.003529866473 0.0001108503272 0 -6.504924506 -1.522123345 936.8514244 0.002134810225 +2.496905389e-06 0.00237250342 0.002264384972 0 -8.137710618 -25.17533536 1063.00524 0.00188145827 +2.498052414e-06 -0.00722196504 0.01317098455 0 -17.98121853 -0.3222371407 910.9584448 0.002195489829 +2.492839979e-06 0.008614802486 0.01443466602 0 26.04620181 23.77403593 930.8995079 0.002148459617 +2.496751265e-06 -0.0003107821243 0.003972275387 0 -11.43660647 21.45194405 953.2420218 0.002098103057 +2.494260957e-06 0.009174113176 -0.003706282857 0 26.42078658 18.94579153 958.8015137 0.002085937466 +2.496958727e-06 0.007459049844 -0.002047138754 0 17.04347506 -15.12578492 923.5393883 0.002165581702 +2.498757123e-06 0.009795150911 0.003852482471 0 -6.908738116 -12.39053973 899.6313623 0.002223132812 +2.497734557e-06 -0.003010095353 -0.00515477028 0 -19.6276565 9.983258544 1034.169087 0.001933919729 +2.496599989e-06 -0.008967133295 -0.01437593328 0 -24.15750333 3.567872821 935.9679338 0.002136825342 +2.497497534e-06 0.008884881018 0.002594330998 0 -9.08527975 19.50053787 961.259591 0.002080603428 +2.499010375e-06 0.003343383758 0.005511427252 0 -13.31041078 -0.8864940453 948.0643389 0.00210956147 +2.496759737e-06 0.005552761322 -0.003000043966 0 -20.62375524 13.54830766 968.8470436 0.002064309339 +2.492539978e-06 -0.004998622718 -0.0142957765 0 -27.94938406 -30.1783129 1063.690987 0.001880245321 +2.499907184e-06 0.007165384223 0.01273011642 0 -3.363788901 -2.386519489 957.253052 0.002089311699 +2.498385875e-06 0.005134368502 -0.007143934972 0 9.806274278 13.76959716 940.6231543 0.002126250019 +2.498211736e-06 -0.0006954803411 -0.008337225434 0 12.4022512 -15.37148665 1044.094433 0.001915535546 +2.495736624e-06 0.002706157202 0.004651531794 0 22.29211091 -21.48419848 1059.566748 0.001887563954 +2.499605623e-06 -0.003715402866 -0.004111714661 0 -2.107371861 -9.068387617 1048.225657 0.001907986115 +2.494420917e-06 0.001179005806 0.002457060311 0 21.43819766 20.78441316 893.1448559 0.002239278418 +2.498320557e-06 -0.008435370591 0.005208491958 0 17.9326697 -4.022224771 1002.527762 0.001994957222 +2.498463978e-06 0.003037566976 0.008807153525 0 -4.850320937 -15.64868165 934.5079597 0.002140163686 +2.492872297e-06 0.003386219461 0.004389489843 0 26.58301598 27.18387537 1005.94053 0.001988189104 +2.497216009e-06 0.001411615666 -0.00368673153 0 19.67826622 15.34033003 1056.964051 0.001892211942 +2.499922673e-06 0.0006233835733 -0.01479266758 0 4.043009164 0.153338819 1028.797355 0.00194401744 +2.49847614e-06 0.001858260343 -0.001291785683 0 0.2444676931 -18.36129503 1051.610796 0.001901844302 +2.49808783e-06 -0.004541872521 0.001830508369 0 18.51819469 -2.271289929 953.7577967 0.002096968441 +2.497619471e-06 -0.004978122613 0.009752948899 0 -12.86752165 -16.36956788 953.9061232 0.002096642375 +2.499476562e-06 -0.002285931343 -0.005310023851 0 6.335184909 7.124141082 931.6900126 0.002146636728 +2.496389669e-06 -0.004275097889 -0.007591528895 0 23.08268109 -16.60391618 1057.587256 0.001891096918 +2.499391276e-06 0.002815684951 0.01245263598 0 -4.881109009 -10.75807623 1070.577157 0.001868151199 +2.496099687e-06 -0.00650123565 -0.006305503584 0 -28.68683157 5.707923285 1046.633828 0.001910887978 +2.498910021e-06 0.005111194984 0.011598965 0 -7.32781165 12.1500705 960.8367081 0.002081519142 +2.497402594e-06 -0.009929184392 -0.001016603576 0 12.76484974 -16.88551321 928.3565521 0.002154344681 +2.497432714e-06 -0.008735198737 0.003497684081 0 12.71839708 20.28086558 1056.050802 0.001893848284 +2.499079682e-06 0.009326860402 0.01194195389 0 11.32196079 -8.573021063 1046.62562 0.001910902965 +2.497578173e-06 -0.002429964906 0.009463210758 0 -15.03598285 15.50722279 981.085693 0.00203855791 +2.494270847e-06 0.001935209595 -0.01368478308 0 22.84516767 -25.25596154 1005.197123 0.001989659495 +2.498432445e-06 0.005840200526 0.01012905 0 -8.230095786 -16.17900547 1024.933583 0.001951345954 +2.499556623e-06 -0.0002424848918 0.01052919707 0 1.412802965 -9.670630945 1037.792078 0.001927168305 +2.492123511e-06 -0.008770610155 -0.008524464662 0 -28.7493419 -29.86269712 1043.169724 0.001917233557 +2.49625066e-06 -0.007994259219 -0.006613422835 0 2.389069255 -27.17432211 995.6204929 0.002008797543 +2.499688911e-06 -0.008592569847 -0.003056696362 0 -1.216185638 -7.076178837 910.2122107 0.002197289793 +2.495103485e-06 0.002412180891 -0.004370156256 0 -21.83791701 -21.04430379 968.4089828 0.002065243131 +2.496641274e-06 0.00117800443 -0.008929866725 0 22.54986628 -14.24151132 1028.514482 0.001944552104 +2.49859754e-06 -0.009923627954 -0.01188001351 0 17.04178959 -4.485838692 1051.988288 0.00190116185 +2.498228239e-06 0.002531700134 -0.004924952576 0 7.476884591 -16.42580406 958.4801293 0.002086636894 +2.495326826e-06 -0.001980581237 0.01297225741 0 -19.23309722 19.14739791 887.0967484 0.00225454552 +2.498252325e-06 0.007023086194 0.009274888099 0 -14.72688431 -12.41546939 1030.012124 0.001941724718 +2.498694827e-06 0.006634838362 -0.002062978931 0 8.342191737 -12.63875929 937.1234036 0.002134190644 +2.496882347e-06 0.005229945849 0.01142715731 0 -17.13424638 14.73015262 904.4638123 0.002211254859 +2.498663505e-06 0.004808279527 0.009986708381 0 -13.26481889 -9.425579011 995.1093924 0.002009829286 +2.496097078e-06 0.007716118456 0.003749184462 0 25.9835273 7.11177789 963.652653 0.002075436615 +2.498621643e-06 -0.008857977022 0.01233723054 0 -6.726404738 14.32967338 953.2153765 0.002098161705 +2.4974006e-06 0.004492277065 0.01150258195 0 23.58287276 6.134148183 1068.29615 0.001872140043 +2.494590066e-06 -0.001193892774 0.01407492918 0 -22.77821514 23.44550245 992.9591157 0.00201418162 +2.495853908e-06 0.001505184625 0.0130487504 0 0.5629742287 25.64611466 890.2693653 0.002246511088 +2.497711125e-06 0.005599171836 -0.01150193657 0 10.87342293 18.49966756 1002.593881 0.00199482566 +2.49943058e-06 0.002043498796 -0.008411289796 0 0.425884102 11.0909869 1039.972474 0.001923127823 +2.498709807e-06 0.009924726621 0.01373173904 0 -0.1263255697 17.11776866 1065.44865 0.001877143493 +2.497214038e-06 0.007407604158 0.004958732575 0 -8.901732667 19.33024489 901.1904418 0.002219286743 +2.498334524e-06 -0.001067313552 -0.006531885657 0 3.62183853 -16.82368757 942.6841499 0.002121601387 +2.498229946e-06 0.007536564516 -0.003293311719 0 9.147788271 17.69115896 1058.242271 0.001889926394 +2.499482439e-06 0.003864919697 -0.008346286586 0 -7.211778285 6.37871369 946.2482936 0.002113610152 +2.497446875e-06 0.004008240788 -0.005744047067 0 -19.89643499 -9.73967136 979.9491772 0.002040922169 +2.495806026e-06 0.009361192565 -0.01254032821 0 26.70443629 15.60805271 1067.321547 0.001873849549 +2.498617859e-06 -0.001930096913 0.01470626079 0 14.85579551 1.34626454 896.9965282 0.002229663033 +2.498903851e-06 0.003394298516 -0.01429946335 0 14.09909509 -0.6172735984 952.9846157 0.002098669766 +2.497659323e-06 0.003830842255 0.004408147156 0 -12.95551762 -18.25902827 1034.387989 0.001933510464 +2.497576715e-06 -0.007250217586 -0.00698729282 0 5.745080848 -19.07618917 904.6262 0.002210857921 +2.499240444e-06 0.00472746131 0.0119428057 0 -1.058815834 -12.66918424 1031.373117 0.00193916243 +2.49552027e-06 0.004419585122 0.01048894722 0 20.31322702 22.2939803 1006.940629 0.001986214422 +2.498188095e-06 -0.001960816421 -0.006150152951 0 18.61303402 -7.719049887 1058.223991 0.001889959041 +2.498202641e-06 0.008908747053 0.01144049939 0 18.54654814 5.456140154 1019.383371 0.001961970399 +2.499879342e-06 0.003818115513 -0.01172224849 0 -4.887124147 0.9585141549 1013.79305 0.00197278922 +2.497207583e-06 -0.002774883122 0.003041366176 0 18.67767656 9.162243698 879.9493638 0.002272858056 +2.49799531e-06 0.007394144186 -0.005322575904 0 17.83328919 -2.297973849 897.7145246 0.002227879738 +2.498976012e-06 0.005976654538 0.01301289255 0 14.81079587 -2.326601987 1047.472873 0.001909357323 +2.496765e-06 0.005486438209 -0.007488256437 0 2.705045605 -26.67040428 1053.389507 0.001898632924 +2.495874981e-06 0.009736823151 0.01345056999 0 22.81079529 17.331902 996.7874065 0.002006445895 +2.497426614e-06 -0.008514946578 0.003365440944 0 -8.192459233 -18.90082418 907.6759163 0.002203429621 +2.499405468e-06 -0.004566601464 0.0003974449052 0 5.210877437 -8.017007088 876.7844158 0.002281062441 +2.499090596e-06 0.005022888198 -0.01467966536 0 7.040184687 9.701704085 888.702369 0.002250472228 +2.498580963e-06 -0.00736076443 0.01358227107 0 -15.45668857 2.887372898 933.169338 0.002143233729 +2.498806434e-06 0.004362177891 -0.0001980934851 0 -3.343891553 -14.63770927 971.635629 0.00205838479 +2.499498877e-06 -0.004954696642 0.01375545377 0 -6.519298485 6.6434954 929.6779207 0.002151282671 +2.499852137e-06 0.003668066799 0.01177243961 0 -0.9632315503 -4.832057675 906.0234575 0.002207448365 +2.498050143e-06 -0.003933626711 0.006207722139 0 18.18671345 6.27879327 974.0089122 0.002053369302 +2.499492998e-06 -0.007438439517 -0.008173728946 0 10.46121061 -0.7792724263 1041.671675 0.001919990769 +2.499862356e-06 0.0003417878831 0.006182877619 0 -1.405428786 -4.622395009 920.7986248 0.002172027571 +2.497664962e-06 -0.006997321853 0.009984608868 0 -4.832773323 19.56856308 932.3970354 0.002145008965 +2.497542167e-06 0.006504400684 0.006525525993 0 2.798480012 23.33618267 1059.690383 0.001887343729 +2.496631232e-06 0.00669336482 -0.006900124443 0 25.63379703 3.587159437 996.6761999 0.002006669769 +2.498977195e-06 -0.002908911644 -0.01256849438 0 -9.203344555 12.11779481 1063.74422 0.001880151226 +2.498250807e-06 -0.00658324542 0.004469553593 0 -19.31675563 -1.153577712 1034.330556 0.001933617825 +2.499646913e-06 -0.009855206911 0.005659277171 0 1.481726213 -8.636637136 1042.714063 0.001918071378 +2.498687331e-06 0.002842530916 0.007542669796 0 0.9024459553 -15.11085185 934.0797105 0.002141144891 +2.495153838e-06 -0.00021443957 0.0002225296595 0 -22.57618701 -20.25758943 973.5914287 0.002054249802 +2.499151235e-06 0.005948470864 0.014609532 0 12.19643179 -3.277038583 969.1822073 0.002063595457 +2.495125259e-06 0.003835670827 0.0007082414115 0 27.09833321 16.49075086 1015.190292 0.001970074 +2.499464317e-06 0.004701140397 -0.01089594218 0 0.9170066954 -9.808000159 951.6264228 0.002101665057 +2.496672462e-06 -0.008123404863 -0.01232698899 0 -12.41330755 -19.73368608 903.2538252 0.002214217028 +2.499353513e-06 0.005453131292 0.01493467671 0 9.207047297 -6.746017638 1003.689683 0.001992647761 +2.496061714e-06 0.009768136209 -0.01086034365 0 24.04534802 6.210736368 884.3616515 0.002261518234 +2.497477766e-06 0.006018899274 0.01273749505 0 -18.78042534 -14.19743949 1047.826189 0.001908713507 +2.497533634e-06 -0.002558038775 0.007897852804 0 -11.37402158 -20.13343234 1040.782735 0.001921630647 +2.499254467e-06 -0.008256795169 0.002319154989 0 10.41611647 7.883370405 1069.663343 0.001869747163 +2.499089517e-06 -0.00634820329 -0.01230911724 0 12.9314976 -2.675357182 978.4522463 0.002044044569 +2.498662667e-06 -0.00433835132 -0.004385721178 0 2.966850173 15.90660976 989.1941651 0.002021847753 +2.498236803e-06 -0.007304729722 0.01452507832 0 -12.94424497 -12.00738919 939.960525 0.002127748929 +2.497919875e-06 0.00314024243 -0.006537231195 0 17.93948567 2.325662103 886.6124818 0.00225577695 +2.499219702e-06 0.001136777294 0.01482270661 0 -13.34096084 0.9445755198 1070.475664 0.001868328322 +2.49388054e-06 -0.009428363796 -0.01331079412 0 -29.47522846 -21.37570018 1039.809017 0.001923430138 +2.499881739e-06 0.003117591548 -0.00214088263 0 -4.525586266 -1.089310758 957.1103997 0.002089623099 +2.495939501e-06 -0.006912944131 -0.008234624856 0 -21.53649663 21.323632 1062.855945 0.00188172255 +2.497038404e-06 -0.0004155598162 -0.0051369221 0 -20.53537507 -9.789982573 934.3364095 0.002140556634 +2.498802031e-06 -0.00414183619 0.004048502769 0 -12.74755404 -5.017084441 884.8771567 0.002260200735 +2.499407283e-06 0.006516833669 0.002405300138 0 6.927672452 -7.78395099 956.9796687 0.002089908559 +2.499351716e-06 -0.007693056352 -0.002983996009 0 -10.34395667 -1.338992692 915.9150847 0.002183608539 +2.499140617e-06 0.002823667051 -0.009578036838 0 1.892274884 12.67196047 977.1658124 0.002046735543 +2.496907227e-06 0.005487048789 0.007443889179 0 5.565807239 21.51847478 893.2704542 0.002238963564 +2.49903257e-06 -0.000666352869 -0.002951559022 0 -1.803759238 -14.69457865 1064.184144 0.001879373989 +2.498846929e-06 0.002198643121 -0.004175863035 0 11.08455251 -11.32020709 1043.11233 0.001917339046 +2.499927145e-06 -0.003338925554 -0.0008132920205 0 0.6365373164 3.604315516 958.830031 0.002085875427 +2.498279373e-06 0.008759733215 0.01319560152 0 10.81131238 13.29340078 923.4360621 0.002165824015 +2.496850906e-06 -0.002647808315 -0.000970723643 0 -21.74360979 14.25535677 1035.524047 0.001931389237 +2.496359931e-06 -0.007464147964 0.001111314381 0 -27.22494581 -7.732719569 1048.352124 0.001907755948 +2.499655214e-06 0.006885818895 -0.009594540191 0 -3.270233146 -7.122565417 943.7600857 0.002119182651 +2.497291487e-06 -0.008616308989 0.0008733401773 0 -5.813584377 23.58293772 1043.161585 0.001917248516 +2.497771416e-06 0.009593317825 0.003910849616 0 -20.0585935 6.319677071 995.8103389 0.002008414576 +2.494572344e-06 0.006619516774 -0.005888469089 0 26.6038236 16.01499165 941.7122714 0.002123790951 +2.497363474e-06 0.005011154544 -0.00958315707 0 15.73721717 -15.14038249 950.6197306 0.002103890689 +2.496441084e-06 -0.008578717103 -0.01190293762 0 20.56645452 -19.07424079 1050.818911 0.00190327751 +2.498452562e-06 0.003700831174 -0.009915535329 0 -17.18430532 4.547343397 1010.197746 0.001979810397 +2.499518918e-06 -0.009655466913 0.0120579478 0 1.261079551 8.534936138 879.4963738 0.002274028705 +2.498223892e-06 0.002338933796 -0.01462633256 0 -18.08038961 -8.78508416 1066.270116 0.00187569732 +2.498111809e-06 -0.00567426017 0.01175870755 0 10.33272869 -16.78731123 1014.095111 0.001972201599 +2.495307654e-06 -0.009174600723 -0.009251707213 0 -25.79708287 -11.67335862 923.6455587 0.002165332774 +2.49766375e-06 -0.009900227888 0.008976643758 0 -7.960409664 -20.58026798 1020.469182 0.001959882802 +2.496406713e-06 0.003594686342 -0.01323936161 0 10.14734616 -25.47280822 1022.269447 0.001956431356 +2.497348338e-06 0.008355138935 -0.003912857173 0 21.62876917 -7.452091701 992.9879589 0.002014123114 +2.496499282e-06 -0.004907080061 0.006067996197 0 -22.6641644 -12.94054087 985.8042374 0.002028800368 +2.496743158e-06 -0.006724516959 -0.003422379736 0 -17.60070525 14.50164307 893.1212996 0.00223933748 +2.497687887e-06 0.007906652698 0.01038536451 0 21.54970738 -6.920770197 1052.171152 0.001900831434 +2.496998043e-06 0.0004164282093 0.004238431742 0 -18.18481983 17.08126173 1017.751757 0.001965115743 +2.495265336e-06 0.002953217058 -0.005291946691 0 23.75395784 15.59857289 922.8278963 0.002167251346 +2.496215383e-06 0.007041465389 0.003302789759 0 15.13608051 -19.5936161 899.4175309 0.002223661349 +2.499004143e-06 -0.004359134063 0.001767017366 0 -1.937697475 -14.06410341 1005.812375 0.001988442428 +2.499283878e-06 -0.003545110258 0.009565958027 0 -11.45492714 -4.423744213 1025.944087 0.001949423975 +2.496540424e-06 -0.002028457858 -0.006367817866 0 12.93329871 -21.38792943 949.7046604 0.002105917854 +2.496876762e-06 -0.007384498152 -0.01332514376 0 19.80778362 -17.08383035 1046.097471 0.001911867732 +2.499979707e-06 0.006525728055 -0.00498778363 0 1.438192962 -1.175783015 922.0918656 0.002168981286 +2.498803248e-06 -0.005358429058 -0.0007966825529 0 -6.295904141 -13.63386776 970.5057923 0.002060781106 +2.498895555e-06 0.005432499843 0.0121490749 0 -0.4262690684 13.77815001 927.3415418 0.002156702693 +2.498669523e-06 0.001654000641 0.004196087925 0 15.05139682 2.606255171 936.2386076 0.002136207569 +2.497204352e-06 0.007790615819 0.01286474393 0 20.25504851 -12.94544255 1016.17764 0.00196815982 +2.499115775e-06 -0.003951127129 -0.006026604627 0 8.456338668 10.94934586 1040.194653 0.001922717054 +2.499762285e-06 -0.00492879766 0.01402946719 0 -1.45790957 -6.39767981 951.6056137 0.002101711015 +2.499178035e-06 -0.003303953228 -0.004021320823 0 -4.682747489 -11.29203263 953.3128066 0.00209794727 +2.499795619e-06 -0.0007427427499 0.01458948713 0 5.506166476 0.9915099081 875.045337 0.00228559586 +2.497081361e-06 -0.009880742384 0.008123075219 0 17.40832439 -14.44572344 935.8893078 0.002137004861 +2.499084015e-06 -0.006559324716 -0.009856810116 0 -8.945677414 -8.540025 913.6210969 0.002189091306 +2.493410426e-06 -0.0007978850277 0.01217725026 0 -20.28772421 24.86802916 883.1762592 0.002264553626 +2.499750062e-06 0.002015007813 0.01452057933 0 -3.768599103 6.001860941 1002.330121 0.001995350592 +2.498306409e-06 0.0001336919935 -0.002646304804 0 -16.10713892 -9.75030533 1022.7832 0.001955448622 +2.49695772e-06 0.003544763522 -0.009426179621 0 21.04442156 -6.377087686 891.0478936 0.002244548261 +2.498915829e-06 0.00784517887 -0.01153976476 0 6.607566069 -12.67685189 970.6577804 0.002060458423 +2.498863193e-06 -0.004516926897 0.01256938563 0 14.67831068 -2.226674159 984.4282302 0.002031636171 +2.495466376e-06 -0.001184756216 -0.005246028942 0 18.99317883 18.87154298 888.563904 0.002250822919 +2.499598814e-06 0.009807621315 -0.009902939382 0 -6.710358843 6.05407115 1008.894622 0.001982367591 +2.494447967e-06 -0.002834287887 -0.00200179592 0 24.91494205 -25.29313244 1064.554337 0.001878720448 +2.498311322e-06 0.008542844318 -0.0007995945029 0 -16.91865994 7.777590563 1012.974397 0.001974383564 +2.499563811e-06 -0.001570699164 0.0007975789625 0 8.729811173 -0.1234565055 934.6898988 0.0021397471 +2.499805555e-06 0.003301213142 0.001194909622 0 -5.476904565 0.7763011139 887.0097634 0.002254766613 +2.496565707e-06 -0.008892135387 0.002353597598 0 16.92571831 -21.96206999 1057.432483 0.001891373712 +2.497278752e-06 0.004976116093 0.01207398205 0 -8.066305157 20.58424427 947.2806881 0.002111306633 +2.499212185e-06 -0.001689340714 -0.004548808301 0 -0.8155821729 12.67731266 1011.918889 0.001976442996 +2.499032141e-06 -0.004393523973 -0.01354545435 0 13.50841426 5.522367287 1048.766749 0.001907001726 +2.499936757e-06 -0.009475981835 0.01456726202 0 -0.7090295999 3.641200183 1043.038034 0.00191747562 +2.495850721e-06 -0.000745057161 0.0005141176726 0 22.38573078 15.24428363 939.5738335 0.002128624626 +2.494436059e-06 0.003647535797 0.00893955399 0 24.09041767 21.53761401 967.8906908 0.00206634904 +2.499635334e-06 -0.006195051619 -0.006517730383 0 -5.581967174 5.962786169 956.3555658 0.002091272401 +2.498694521e-06 -0.00687980386 -0.004048799495 0 15.24498539 6.43457137 1023.863855 0.00195338471 +2.49630097e-06 -0.005135698644 0.00787991141 0 -4.112700219 24.61255261 916.930841 0.002181189584 +2.499997605e-06 0.00890738592 0.01070995413 0 0.1951672882 0.6487581804 978.8803365 0.002043150654 +2.499027823e-06 0.009388584639 0.001801678813 0 11.43714385 5.424460292 907.6640032 0.002203458541 +2.498139217e-06 6.419977173e-05 -0.0002899726457 0 18.85772264 -5.894744967 1023.88106 0.001953351886 +2.499218791e-06 0.004612478241 -0.007018339962 0 9.925291589 -8.322916137 1036.152411 0.001930217966 +2.495781929e-06 0.005270253662 -0.01104517084 0 -3.129372311 -28.74618451 994.9277565 0.002010196205 +2.499274266e-06 -0.0049937031 -0.00156890308 0 -11.35720624 -0.9087616854 945.5977736 0.002115064201 +2.497683979e-06 -0.001029888284 -0.00740617167 0 -11.98582728 -17.268827 976.3629297 0.002048418615 +2.499151666e-06 0.003891702602 0.01121033465 0 -10.11272686 -6.168115881 909.2747212 0.002199555265 +2.496896615e-06 0.005434284369 0.01102907769 0 24.39286473 7.14653244 1019.787356 0.001961193173 +2.498669362e-06 -0.005727027813 0.01223924957 0 3.293102815 15.36500392 963.0600202 0.002076713764 +2.499744982e-06 -0.001003161175 0.01359685211 0 2.904852348 -6.030029887 937.1725125 0.00213407881 +2.496911479e-06 -0.005692332028 -0.008686405902 0 -20.26354289 14.57717306 1003.896774 0.001992236705 +2.498103751e-06 0.009619200528 -0.002387255912 0 7.757646764 19.34381105 1069.893833 0.001869344358 +2.495602753e-06 -0.009949956774 0.01322927505 0 -0.8796330891 28.05060317 945.7220534 0.002114786256 +2.498312523e-06 -0.0009440562734 -0.005085206071 0 -1.308120616 16.91289796 923.1435152 0.002166510372 +2.494152528e-06 -0.00178358722 0.01243063895 0 22.60616136 25.78230022 1001.797494 0.001996411463 +2.499822648e-06 0.009980268022 0.001130083837 0 3.277966678 4.588654664 946.8350891 0.002112300255 +2.499090733e-06 -0.004600448599 -0.004340025082 0 -2.39158499 -12.50841889 944.2324514 0.002118122499 +2.498127962e-06 -0.009521385138 -0.002936822358 0 -12.90660088 11.89682262 906.905337 0.002205301831 +2.496301393e-06 0.00531100105 0.0137169937 0 -11.82588194 25.35379738 1028.047447 0.0019454355 +2.497887416e-06 0.009409276741 0.00678843573 0 -14.95691816 -14.56977336 1015.494108 0.001969484593 +2.497017102e-06 -0.008053604742 0.00926804459 0 -4.617957825 24.12175985 1005.070552 0.001989910058 +2.498318891e-06 0.001391066601 0.007286929884 0 -15.61344945 -4.581469375 887.1798439 0.002254334354 +2.49664772e-06 0.009049525131 -0.01433028588 0 25.12759777 2.081121329 973.2663995 0.002054935834 +2.49938566e-06 0.009862370477 -0.01322162604 0 -9.491283429 6.231008118 1024.197362 0.001952748634 +2.499953694e-06 -0.008963882327 0.01035971632 0 3.122303162 0.5213400179 1040.181328 0.001922741685 +2.499193625e-06 -0.001617588191 0.009388742403 0 7.767720364 8.188088031 888.6248702 0.002250668496 +2.499322368e-06 0.003920325609 0.0003552528284 0 -10.21907517 6.868203008 1057.537915 0.00189118515 +2.498447811e-06 -0.001247819336 -0.01323045161 0 14.21335775 8.172761279 930.3303344 0.002149774038 +2.498761372e-06 0.001694649323 0.005327970246 0 10.923941 -11.71079128 1017.317538 0.001965954508 +2.499425276e-06 0.008740723589 0.005076292071 0 4.999161367 -9.249970862 980.6278695 0.002039509647 +2.499916891e-06 0.006198713616 0.001621634848 0 0.3273728513 4.05573372 998.0107367 0.002003986457 +2.499910851e-06 0.007516388968 0.003260984248 0 -3.172063498 2.1876932 912.5459269 0.002191670513 +2.499174298e-06 -0.005190631594 -0.002217977811 0 11.03154197 -4.438102236 925.1909162 0.002161715993 +2.498475237e-06 -0.007061178102 -0.001183502949 0 1.082446884 16.85660409 967.0483621 0.002068148893 +2.498293998e-06 0.006268933993 -0.01233996396 0 -18.85634324 -4.106199446 1044.484537 0.001914820114 +2.498389772e-06 -0.003641281989 0.007338067135 0 12.19139322 -12.61667876 977.4131787 0.00204621755 +2.499961347e-06 0.00806455018 -0.006993921516 0 -0.3942028116 -2.802141705 1017.73806 0.001965142189 +2.499265576e-06 -0.007095804019 0.00341586208 0 4.39098673 9.919145679 894.9464974 0.002234770465 +2.498907043e-06 -0.002158263256 0.004286305157 0 11.44503781 -10.48559448 1049.696142 0.001905313281 +2.494688222e-06 0.002110699443 -0.01133019155 0 16.51439707 -27.59835511 985.9656457 0.002028468242 +2.497668585e-06 0.00942602512 0.01045429149 0 -9.963839513 20.68228732 1062.779218 0.0018818584 +2.499061667e-06 0.008603477841 0.002637663698 0 6.979870524 11.01741451 951.9193906 0.002101018237 +2.495638947e-06 -0.004970595539 9.124875069e-05 0 -15.56392752 -23.01716771 940.2014674 0.002127203657 +2.498371256e-06 -0.000776778399 -0.007842362509 0 17.23788567 0.9700165304 956.3634742 0.002091255108 +2.497942975e-06 0.002973744483 0.006191738506 0 18.992935 1.942030649 940.9828711 0.002125437201 +2.494680757e-06 -0.004611559617 -0.0111735188 0 -15.87521135 -28.02940888 986.8312289 0.002026689004 +2.499229593e-06 0.006493260073 -0.002976304865 0 11.87947402 -5.617553889 1058.50838 0.001889451267 +2.495339749e-06 -0.001424743333 0.01099285702 0 20.29179647 20.86077397 952.5767284 0.002099568403 +2.497849219e-06 0.003429906857 0.0009116971842 0 6.286700112 20.8184045 1048.200809 0.001908031346 +2.497824323e-06 0.007430395214 0.01273848297 0 -10.50004758 17.79707675 990.2692205 0.002019652796 +2.497799535e-06 0.001807655464 0.007357086008 0 -10.900618 -16.73329308 951.6481396 0.002101617096 +2.498472912e-06 -0.00138865314 0.01391899532 0 18.33267833 2.564986385 1058.983295 0.001888603918 +2.494352606e-06 -0.001211964446 -0.01055398156 0 18.85563765 -26.81885786 974.66129 0.002051994904 +2.49868112e-06 -0.003308344134 0.01014363805 0 -16.20298048 -0.7056775219 998.3961285 0.002003212896 +2.499240615e-06 -0.004474091153 0.008476959437 0 12.63246954 2.189814419 1040.212075 0.001922684853 +2.497646575e-06 -0.001501866872 0.004095971666 0 18.77687857 5.525693412 901.861836 0.002217634587 +2.49976274e-06 -0.005194808897 -0.002337959998 0 -6.624604843 1.859278242 998.8069918 0.002002388866 +2.498929476e-06 -0.006191654331 -0.01235062194 0 -10.8746569 -10.19994167 1018.788055 0.001963116854 +2.49885072e-06 0.006603913051 -0.01011899289 0 9.793836967 9.258805971 888.8094186 0.002250201177 +2.499423843e-06 -0.001316061015 -0.001940781057 0 -7.695356042 -7.619567748 1008.746648 0.001982658386 +2.493888468e-06 0.001541875419 0.01208820835 0 16.44261439 28.84441919 948.7966264 0.002107933296 +2.496940685e-06 0.003605254199 -0.006870447469 0 10.92417727 -23.97593083 1064.658798 0.001878536113 +2.498758445e-06 -0.002054143553 -0.0120438031 0 13.05426987 -6.058894674 913.1383491 0.00219024861 +2.496514794e-06 -0.005453757341 -0.0007687624334 0 11.30016763 23.00430283 970.2652071 0.002061292093 +2.498730187e-06 -0.003778725876 -0.01009482024 0 12.02662342 -10.81830045 1014.877885 0.001970680444 +2.498533462e-06 -0.006224606913 0.003207572142 0 -17.62887608 -2.944842503 1043.383273 0.001916841157 +2.497335726e-06 -0.003718016325 0.007942152719 0 -11.4121864 -18.2504896 932.0981601 0.002145696758 +2.498228061e-06 -0.006445820257 -0.003600600706 0 -17.30782368 -0.08193076398 919.1628484 0.002175892992 +2.498064005e-06 0.0005280050868 0.01299636122 0 -10.79023296 14.03897607 899.5818417 0.002223255192 +2.497876835e-06 -0.004584313026 0.01150647988 0 -17.969944 8.896986309 972.7660588 0.002055992787 +2.498005094e-06 -0.0005141436122 0.002405582105 0 -16.17628686 -10.43761227 963.5092548 0.0020757455 +2.496306195e-06 -0.008144258698 -0.005575980647 0 -23.85363384 15.52398154 1046.518687 0.00191109822 +2.499609642e-06 -0.001568263401 0.008124932433 0 -5.494655114 6.716730267 982.0695019 0.002036515742 +2.493672131e-06 -0.005379299736 0.01154936474 0 -17.73226908 25.97968573 883.333225 0.002264151221 +2.499867234e-06 0.001753220828 0.007329328945 0 4.562440338 -0.824409259 899.718149 0.002222918369 +2.497174256e-06 -5.041655619e-05 0.001299717918 0 18.47683957 15.45696346 1012.896162 0.001974536063 +2.497741543e-06 0.004086410613 -0.005489307751 0 -11.68019906 -14.94915721 892.3299556 0.002241323389 +2.497612222e-06 -0.007531003705 0.008856750189 0 -21.78704946 -2.900386191 1005.41508 0.00198922817 +2.498256184e-06 0.009671822321 0.007924180948 0 -18.79924364 2.556346549 1015.640533 0.001969200652 +2.497939209e-06 -0.004012594433 -0.003515605435 0 -0.2470258927 20.68093554 1018.438808 0.001963790052 +2.498017303e-06 -0.00733061072 0.008616608691 0 -4.57545567 -17.36508726 901.5289593 0.002218453417 +2.495854559e-06 -8.456492331e-05 -0.01098470688 0 -22.32001829 20.24617726 1045.90936 0.001912211589 +2.49930349e-06 -0.009191487846 -0.01213830119 0 -3.489605716 10.47829657 935.6341778 0.002137587582 +2.498714028e-06 -0.004188144961 -0.001760170574 0 15.09875851 7.218965966 1043.352543 0.001916897613 +2.498952441e-06 -0.003781105233 -0.007051232681 0 -13.02751124 2.859647768 921.3141921 0.002170812104 +2.498292118e-06 0.003826522981 0.009442662431 0 2.153661053 19.23199732 1046.827866 0.001910533781 +2.498270952e-06 -0.003311138437 0.001060196108 0 16.65774016 3.810041713 918.6662404 0.002177069225 +2.498950902e-06 -0.004201586898 -0.0008543486847 0 -13.54690829 5.272420191 1003.404157 0.001993214784 +2.496749584e-06 -0.002125065811 -0.01115791042 0 19.494132 -17.33473197 1022.638688 0.001955724953 +2.499179741e-06 -0.003833621405 0.01115936362 0 0.283334727 -11.22632431 876.661462 0.002281382366 +2.499637424e-06 -0.001441895999 0.006896422149 0 -8.908940792 0.9842404901 1052.500888 0.001900235927 +2.496856018e-06 0.002014923911 -0.003646381809 0 9.747559985 20.41198361 901.6386122 0.002218183619 +2.49530279e-06 0.002295630407 0.002341667844 0 -18.92947133 -22.7695469 965.3912588 0.002071698891 +2.494906914e-06 -0.006449330766 0.01045627761 0 -25.44176719 -18.44618528 983.8772256 0.002032773956 +2.49849844e-06 -0.004021186056 0.002859311721 0 -15.31710586 5.883868552 946.6304534 0.002112756877 +2.496287469e-06 -0.007260597078 0.006254677107 0 1.842572787 25.76285987 947.3488473 0.00211115473 +2.499263555e-06 0.005195867186 0.004085481071 0 -6.834495182 9.449040444 960.7885745 0.002081623422 +2.495735931e-06 0.009660324999 0.01059056267 0 26.99591225 10.60613102 992.5728931 0.002014965363 +2.498110275e-06 -0.007751042941 -0.01072909093 0 -17.06771141 -11.17042036 1048.947192 0.001906673677 +2.498391621e-06 0.004686335642 -0.01343990756 0 1.759186837 15.92520707 893.1097534 0.00223936643 +2.499895538e-06 0.007961363504 0.01037791627 0 4.03625111 1.370954028 932.5830635 0.002144581087 +2.493938022e-06 0.001487907283 -0.008220055362 0 23.98023711 -23.9144308 971.7511045 0.002058140187 +2.494767642e-06 -0.007823278429 0.003039913431 0 -24.48379491 14.76479442 883.1349996 0.002264659425 +2.498531466e-06 -0.001082330756 0.01096809465 0 12.65161815 -10.32929368 952.8090563 0.002099056455 +2.499853269e-06 -0.006400763565 0.009868651126 0 -5.199654023 -1.686295691 1009.031955 0.001982097783 +2.499258972e-06 0.004838622506 -0.006557940021 0 -7.286988977 9.353101278 973.8282892 0.002053750155 +2.498133685e-06 0.008807686102 -0.004560992159 0 -9.657713469 15.67132282 952.5378351 0.00209965413 +2.498498193e-06 -0.008498462774 0.006987441292 0 -13.37345943 -11.15412482 1004.593678 0.001990854656 +2.497138475e-06 0.002234265571 -0.004826705949 0 -20.03973599 12.53762707 987.6916375 0.002024923492 +2.495706049e-06 -0.001294385563 -0.01332867261 0 21.48725721 -16.35150716 920.7936402 0.002172039329 +2.499105986e-06 0.00734740234 0.002076473851 0 -10.40185995 -9.008195533 1028.923064 0.001943779929 +2.498543051e-06 -0.00667581345 -0.003117174183 0 -0.8003604015 -15.84837034 929.4062064 0.002151911604 +2.497929134e-06 -0.005604584208 -0.004888874211 0 17.91338179 0.5082353678 880.2911476 0.002271975591 +2.49890652e-06 -0.004270396475 0.009866544125 0 14.56560083 4.444695334 1029.603491 0.001942495356 +2.49719604e-06 -0.002042498984 -0.002878455478 0 20.02368833 -7.227785351 898.5784472 0.002225737782 +2.498021292e-06 0.007567990031 -0.009120196402 0 11.66173607 -15.62296491 979.7126912 0.002041414813 +2.498370662e-06 -0.004358970309 0.010525131 0 11.98507998 13.89135327 1016.10341 0.0019683036 +2.497331507e-06 -0.00248856253 -0.005696808575 0 15.64261829 -16.98227103 999.0286852 0.002001944518 +2.499196048e-06 0.001389643978 0.007258871491 0 -12.15862435 -2.333325598 976.2371946 0.002048682442 +2.499043466e-06 0.00892185125 -0.004374247121 0 -13.14207938 4.288363872 999.3273833 0.002001346139 +2.499599396e-06 0.00797268901 0.006363952991 0 -9.268178073 0.2287563165 1035.685596 0.001931087976 +2.496269622e-06 0.0030222958 -0.012550531 0 -14.42932791 -22.34618859 973.2990528 0.002054866892 +2.49685881e-06 0.006434846134 -0.006635695305 0 -19.67896956 -12.82277475 936.6534135 0.002135261529 +2.496168675e-06 0.0001020159665 -0.01005709642 0 21.75357352 18.20194974 1024.074622 0.00195298268 +2.49609008e-06 0.00423300101 -0.002965072996 0 26.05693783 12.20158138 1028.300509 0.001944956735 +2.492944476e-06 0.002143487763 0.01476804481 0 -19.12938305 32.27272915 997.6507665 0.002004709531 +2.496951476e-06 0.004846002269 -0.007415991467 0 20.01606708 -17.08922689 1065.391631 0.001877243956 +2.497056654e-06 0.002061566995 -0.005822724171 0 1.172063201 -24.14060642 995.7077938 0.002008621417 +2.499698995e-06 0.0002462434163 0.00497046154 0 5.354710074 6.195837427 1055.39363 0.001895027546 +2.49773948e-06 -0.001551379724 -0.01369375617 0 5.325714897 -18.23005306 892.9052343 0.002239879355 +2.498857864e-06 -0.001650953065 0.007234326568 0 -13.78806736 1.957879237 921.276417 0.002170901114 +2.496161723e-06 0.007154571041 0.01372997653 0 8.237554237 28.10075865 1056.297422 0.001893406117 +2.497578941e-06 0.005094127315 -0.01039128731 0 17.46590379 -14.0167621 1017.353488 0.001965885037 +2.499593887e-06 -0.006585349268 0.005500812193 0 8.074529035 3.275284648 966.7829989 0.00206871656 +2.499714115e-06 0.007735339049 -0.001153680068 0 4.409546564 5.549193126 937.3144744 0.002133755591 +2.496785213e-06 0.0003253398882 -0.002534695014 0 3.985560847 -23.50096442 939.5985734 0.002128568579 +2.497452899e-06 0.004340799008 0.002740137144 0 -15.61462134 -16.87833394 1018.352883 0.00196395575 +2.499495251e-06 -0.0004563360848 0.003269180688 0 -4.347446934 -8.291298914 931.7092132 0.00214659249 +2.499621645e-06 0.00673472411 -0.01286353777 0 8.921665794 1.26476028 1035.803606 0.001930867964 +2.499358425e-06 -0.0007010689843 0.005241922843 0 -10.35379583 5.821311382 1048.493082 0.001907499472 +2.499173574e-06 0.006744799716 -0.006699548559 0 5.625031326 10.79426722 946.6523484 0.002112708011 +2.498697944e-06 -0.008540651063 0.001015612883 0 16.20862901 -1.09855306 1006.530116 0.0019870245 +2.499671738e-06 0.002025777982 -0.007954549149 0 6.755675273 3.373739647 931.9054344 0.002146140505 +2.496144088e-06 -0.002528842515 -0.01274915513 0 -8.287520922 -23.09701519 883.1292588 0.002264674146 +2.496333159e-06 0.006306319842 -0.005291298113 0 -20.09588085 15.13397988 928.4557476 0.002154114512 +2.49677624e-06 -0.006026298851 0.0001102257427 0 12.9291443 -18.49712442 888.3479254 0.002251370148 +2.497172338e-06 -0.004549238184 -0.008972934466 0 -17.10611793 -13.28750668 910.4484317 0.002196719694 +2.499670729e-06 0.001324916855 0.008770990432 0 5.652767476 5.218950106 948.0160049 0.002109669024 +2.49862362e-06 0.003302238178 0.0140988314 0 -15.44396154 -3.227035525 950.7458307 0.002103611644 +2.499867474e-06 -0.009975987449 -0.01404688072 0 2.283655229 -4.160326168 921.8112247 0.002169641621 +2.496606842e-06 0.002445866163 -0.005495316689 0 18.29663602 16.05801008 934.0118123 0.002141300542 +2.498703005e-06 -0.001678212099 -0.01373161484 0 -8.265594183 13.2648567 970.2242092 0.002061379196 +2.499924433e-06 -0.001051407419 -0.01335751525 0 -1.172716272 3.207882903 878.5571148 0.002276459852 +2.497335053e-06 0.006845544958 -0.004961646781 0 1.128479584 -22.85734497 990.8808297 0.00201840619 +2.499346412e-06 -0.001915154983 -0.01339018335 0 9.486040663 -5.954571029 979.5165385 0.002041823615 +2.497161766e-06 0.001641731556 0.01238049211 0 23.09723262 7.682546943 1021.224989 0.001958432296 +2.4966985e-06 0.004802816813 0.003478282643 0 -16.98545475 -19.62372427 1009.517731 0.001981144005 +2.495890392e-06 -0.003805545913 -0.01288729182 0 7.087232069 -26.93991478 971.056202 0.002059613023 +2.499876103e-06 0.006769278534 0.003763669634 0 3.29161818 -3.308809272 937.5747797 0.002133163182 +2.497302264e-06 0.007700167047 0.003440916874 0 11.98379572 17.98626971 930.0845746 0.002150342081 +2.495864472e-06 -0.002806807724 0.003533696285 0 12.75659529 25.64715587 995.3850686 0.002009272655 +2.498558647e-06 0.002683287649 0.00613944435 0 16.56202097 -3.260062029 993.971215 0.002012130703 +2.497321235e-06 0.000385945607 0.008901267559 0 -11.11020969 17.23397624 885.5203436 0.002258559066 +2.496136678e-06 -0.00944010416 0.008512960926 0 -26.35178849 -12.56156322 1049.605019 0.001905478692 +2.496278006e-06 -0.002581248828 0.01251868417 0 17.42625599 16.8405413 887.720988 0.002252960138 +2.499629492e-06 0.006715450003 0.001307451201 0 -8.013065769 -2.058552719 961.0339351 0.002081091964 +2.49740391e-06 -0.001604795144 0.0011592359 0 -4.633086841 -20.48239653 921.238937 0.002170989436 +2.495618793e-06 0.00653517474 -0.0003776426171 0 16.94209509 20.51114555 898.1313845 0.002226845687 +2.498688527e-06 -0.004081280846 0.001645476006 0 13.65606258 -4.096168219 880.1422988 0.002272359825 +2.497077861e-06 -0.006320688273 0.001058195655 0 3.289316108 -21.47530115 898.2947874 0.002226440616 +2.499791111e-06 0.004493182749 0.00946912725 0 0.08908102511 -6.047673645 935.727014 0.002137375506 +2.499309868e-06 -0.007583000022 0.01433864245 0 -10.36467723 1.511886745 891.4594701 0.002243511979 +2.495986577e-06 0.001294362792 0.01113037301 0 -11.45271336 22.55294815 892.2530799 0.002241516499 +2.49532298e-06 0.005215820563 0.009398595057 0 10.53790204 27.74743017 969.7847138 0.002062313389 +2.497153958e-06 -0.002758054594 -0.01255480021 0 -15.92250901 -18.96267806 1037.403769 0.001927889661 +2.496670185e-06 -0.006903539514 0.01244878472 0 -6.383561882 25.95850644 1035.350921 0.001931712195 +2.495875319e-06 0.003902884061 -0.005844004664 0 23.25967246 19.94548289 1066.143088 0.001875920806 +2.496940466e-06 -0.0003666477092 -0.002649919374 0 -12.00286818 -22.59920914 1033.974889 0.001934282951 +2.498272438e-06 -0.008947811648 -0.006893945835 0 -12.88985335 11.79940398 939.8787684 0.002127934014 +2.499744054e-06 0.006833115234 0.003922470699 0 -1.365318156 -7.114501129 1012.492567 0.001975323142 +2.499390077e-06 0.003575039231 0.01307303792 0 -4.997387154 9.058016755 936.5769078 0.002135435951 +2.499688629e-06 -0.003743475731 -0.00352337342 0 3.957726605 7.117164561 1031.9058 0.001938161409 +2.498198538e-06 0.004543334004 -0.00389323293 0 14.10154851 -11.74880252 966.7136137 0.002068865041 +2.495236916e-06 -0.008650654876 0.01326205307 0 -8.190815217 31.20269058 1044.46179 0.001914861816 +2.498712838e-06 0.006625044444 -0.006595175334 0 7.868066778 12.83936196 938.347156 0.002131407323 +2.497517694e-06 -0.002700068853 0.0005241500842 0 22.71523604 5.396145732 1047.451068 0.00190939707 +2.495879137e-06 -0.009368864275 0.009628048372 0 -19.07915334 18.82774537 933.1147682 0.002143359068 +2.497228914e-06 0.009940758776 -0.005857295932 0 20.79057406 3.645081053 896.2313563 0.002231566644 +2.497070194e-06 0.001603746293 0.004255991159 0 20.16253023 15.8968535 1060.218991 0.001886402731 +2.498516475e-06 0.003106618566 0.004205911118 0 13.30728054 9.601157043 952.4269362 0.002099898611 +2.497756752e-06 0.008756920416 -0.006220455193 0 -19.80395191 9.298253015 1032.549852 0.001936952484 +2.495721382e-06 -0.003755933945 0.0004932703497 0 -22.08516031 -17.17484455 955.7849006 0.002092521025 +2.499831334e-06 0.006283362471 -0.006837663269 0 5.080687111 -0.230586488 875.6479066 0.002284023047 +2.497712393e-06 0.006946609234 0.006154243019 0 12.64487889 -15.70053357 942.1539948 0.002122795223 +2.496024902e-06 0.00495899064 0.007164804214 0 16.82297758 18.81067044 894.4825057 0.002235929699 +2.498274161e-06 0.001752369385 0.01341461346 0 -15.70953301 4.695990687 882.3090862 0.002266779331 +2.498889433e-06 0.005032367827 -0.006556259596 0 2.127134394 -14.72429663 998.0679458 0.002003871589 +2.497149718e-06 0.006970695872 0.00716821657 0 20.54346167 7.914066132 921.6725873 0.002169967977 +2.498960101e-06 0.005130510898 0.01310025518 0 12.87871462 -1.934494938 902.8988234 0.002215087613 +2.498471262e-06 0.001409595823 0.004749396199 0 -8.35233823 15.9159378 1027.715771 0.001946063354 +2.499687423e-06 -0.003770076637 -0.002051528462 0 -1.820055238 -8.203852565 1062.764417 0.001881884609 +2.498008504e-06 0.005756876054 0.001431723735 0 -16.55061754 8.891295802 941.1078999 0.002125154831 +2.498226053e-06 -0.008676125971 0.01429153048 0 16.37131533 -5.68855041 919.8864497 0.00217418139 +2.499541359e-06 -0.009249809347 -0.001299547541 0 5.471914453 6.928374428 921.7444848 0.002169798717 +2.49867876e-06 -0.008615666116 0.009499345897 0 15.60472819 7.074345646 1053.785056 0.001897920253 +2.498689857e-06 0.00233363172 -0.005239526681 0 7.592972712 13.04898271 932.4816638 0.002144814292 +2.495996348e-06 0.003720760904 -0.007300632326 0 20.33612592 16.7187974 929.7931005 0.002151016176 +2.494686704e-06 -0.002603474017 0.002214734294 0 -25.89850751 -20.51544469 1012.724987 0.001974869807 +2.499148608e-06 0.003783127824 0.00588251353 0 9.795614141 8.544215026 995.9872489 0.002008057836 +2.497423918e-06 -3.402816132e-05 0.002334410744 0 20.76543731 0.03505525655 914.4900249 0.00218701128 +2.495859325e-06 0.008938881848 0.002895280849 0 28.21783091 -0.6837379548 980.2357728 0.002040325456 +2.497501356e-06 0.0006600851519 -0.00533620015 0 3.284033658 22.26882098 1006.558755 0.001986967964 +2.497884356e-06 0.001315890979 0.00722076138 0 -4.320567192 -20.20141785 1003.968443 0.001992094486 +2.497227671e-06 -0.005449056285 -0.01055577609 0 -17.87418893 15.5521968 1005.776964 0.001988512435 +2.496819607e-06 0.007216021195 0.012640901 0 -20.05136123 15.05114564 993.6249061 0.002012831993 +2.495602471e-06 0.00849379255 0.01041708356 0 9.847566356 27.08870711 971.2589673 0.002059183047 +2.49868769e-06 -0.003459854955 0.004518661166 0 14.43240914 -1.463656024 895.2451556 0.002234024934 +2.498141642e-06 0.008206893858 0.004081380616 0 -13.5436601 10.50686254 888.8808007 0.002250020473 +2.499954293e-06 -0.002791277082 -0.01454587854 0 -1.915075649 2.573111449 1060.879426 0.001885228379 +2.497775912e-06 -0.006198902358 0.004416884214 0 13.98218687 -12.08681917 876.0288916 0.002283029726 +2.497023589e-06 -0.001478100936 0.003619419741 0 -23.93186987 -5.623552538 1007.144831 0.00198581171 +2.496337975e-06 -0.005750426902 -0.004497664198 0 -18.28568374 17.55127374 936.0368066 0.002136668116 +2.499542142e-06 -0.009455188815 0.0135154523 0 8.566491417 -4.985995491 1035.725611 0.001931013368 +2.49609312e-06 -0.003971052226 0.005567002175 0 -15.89560591 21.46856611 955.0660839 0.002094095931 +2.498496216e-06 -0.005694758203 -0.01237849783 0 8.336288088 -13.91508224 935.1339336 0.002138731072 +2.499963227e-06 -0.006030515563 -0.007172121077 0 0.0782493223 -2.504020514 923.7782565 0.002165021731 +2.497566873e-06 -0.006455317969 -0.006029886429 0 -12.98815813 -19.70242166 1069.360085 0.001870277401 +2.499900285e-06 -0.006583718914 -0.004119115532 0 2.075853837 3.676366735 945.3895131 0.00211553013 +2.499110634e-06 0.004638157263 0.009864565926 0 13.3630809 1.577436393 1008.784513 0.001982583965 +2.49444087e-06 -0.009445818625 0.008374223902 0 20.26555786 28.52968461 1048.630592 0.001907249337 +2.498345374e-06 0.008971625851 -0.01062825401 0 1.812059278 16.49642267 912.0560001 0.002192847807 +2.499897696e-06 -0.008543314799 0.006311013023 0 3.064385757 -2.866896354 927.6988852 0.002155871945 +2.498782275e-06 -0.005918081058 0.003542546772 0 14.86021066 5.869102987 1023.606071 0.001953876648 +2.498624012e-06 0.004200537498 0.008719115874 0 -16.09813896 3.651878192 994.8563972 0.002010340392 +2.497761941e-06 -0.004722532863 0.01332374414 0 18.37560765 9.766185699 983.2592892 0.002034051467 +2.498467401e-06 0.0009407300875 0.003540119233 0 -15.8698507 -6.856323007 987.2012894 0.002025929283 +2.497422818e-06 -0.005015684683 -0.005143673534 0 11.14893764 -20.43434939 1024.916869 0.001951377775 +2.494732185e-06 0.001393983685 0.009332690137 0 -14.16494669 27.35690619 948.3527408 0.002108919934 +2.497312732e-06 0.003768333048 0.001084962019 0 17.49138994 12.44882176 925.6953229 0.002160538085 +2.495862094e-06 0.009882383458 -0.01379974943 0 29.40035277 -4.203602851 1031.743557 0.001938466189 +2.495294152e-06 0.006319332402 -0.01015118298 0 25.56013898 13.08299035 935.299525 0.002138352417 +2.499827549e-06 -0.009873426948 0.006843812484 0 -5.23817342 0.04191147929 891.9371317 0.002242310505 +2.498394607e-06 -0.005926420405 -0.009952743407 0 18.61694816 -0.9240198411 1039.998003 0.001923080617 +2.495621656e-06 0.004037817363 0.01163471509 0 22.44593807 20.1296198 1018.196885 0.001964256647 +2.498344326e-06 -0.001277050534 -0.01231592621 0 5.151688379 -16.24690732 936.4059002 0.002135825927 +2.498304582e-06 0.002618645551 0.005861035658 0 3.563045486 -18.88495682 1043.391915 0.00191682528 +2.497947926e-06 0.003915488012 -0.0004977870081 0 4.160343031 -19.55874661 986.7449387 0.002026866236 +2.497157917e-06 -0.003786745663 -0.008226123699 0 -8.955354969 -21.69833633 984.1550507 0.002032200108 +2.498363685e-06 -0.008426487637 0.008738850926 0 12.66840134 -11.06545233 929.5791752 0.002151511193 +2.499843376e-06 0.0058947518 -0.01316553458 0 4.912529994 1.781910081 933.6677198 0.002142089694 +2.498313126e-06 0.005780511694 -0.003558283523 0 5.820381323 17.24659936 990.7381966 0.002018696773 +2.499212627e-06 0.005105447508 0.01248238434 0 -10.43386111 5.877057245 954.170496 0.002096061457 +2.498900343e-06 0.002042598599 -0.004901861404 0 5.61931939 13.28168981 972.2895296 0.00205700045 +2.498774729e-06 -0.007371093058 0.007484141949 0 14.37805765 6.524183816 1008.427302 0.001983286249 +2.499223272e-06 0.0007243040856 0.01000604277 0 9.832401577 -5.860329894 918.2648905 0.002178020766 +2.499204584e-06 -0.008206166602 -0.01059146258 0 -12.31761304 -3.709037537 1019.787131 0.001961193605 +2.498780416e-06 -0.007666263934 0.01286167039 0 -13.21387389 -3.863844078 881.3436008 0.00226926252 +2.499719909e-06 -0.005852780147 -0.002244394454 0 4.423579593 -5.943212941 989.835814 0.002020537115 +2.497520904e-06 -0.0006683155848 -0.006711048956 0 19.41010589 -5.423764108 904.7536662 0.002210546445 +2.498462007e-06 -0.006277529504 -0.0006322036218 0 -8.712709965 15.01657603 989.6591895 0.00202089772 +2.498853551e-06 0.008158427514 -0.0005464798934 0 -1.628737417 -14.54918639 966.6650586 0.002068968959 +2.496371764e-06 0.008574167481 0.001057775386 0 -12.31026177 25.54377464 1052.049164 0.001901051841 +2.499459745e-06 0.002271042387 -0.00385713398 0 -8.702368381 -4.937869403 962.4924683 0.002077938338 +2.499577444e-06 -0.006458848729 0.0003345126472 0 -8.197898814 -2.313792623 926.5342754 0.002158581774 +2.496774641e-06 0.006691753967 -0.005250238536 0 -15.89465756 18.89504751 971.6964404 0.002058255971 +2.493362331e-06 -0.007746721553 0.01153236446 0 -25.99293747 24.13849919 972.6047002 0.002056333883 +2.497331889e-06 0.004379361472 -0.002446617878 0 12.35496524 -19.74572838 1007.916579 0.001984291201 +2.497963601e-06 -0.008821626264 0.007962328058 0 8.67504253 15.60266093 884.3241788 0.002261614064 +2.498346489e-06 0.006996699781 0.003073300514 0 -3.369816683 15.66123452 880.6987194 0.002270924161 +2.496178117e-06 -0.009976729425 0.008433303796 0 -22.95029696 -14.50797773 981.4973053 0.002037702997 +2.499170535e-06 0.004432867072 -0.01327871899 0 12.21879775 1.173472022 952.9145972 0.002098823972 +2.497792578e-06 -0.004139492507 0.006463362635 0 7.069186406 20.80643402 1045.486704 0.001912984633 +2.49795499e-06 -0.002159606027 -0.01103808878 0 -20.09548798 -6.38643505 1042.308242 0.001918818176 +2.498199033e-06 0.008704653964 0.003714848862 0 8.58351557 -16.65582879 987.0203277 0.002026300719 +2.498082412e-06 -0.0004933976708 0.01091105296 0 6.977644327 -15.93689465 888.1138317 0.002251963576 +2.49767569e-06 0.007182434406 0.005189039879 0 16.48444584 10.9731313 918.1438209 0.002178307967 +2.498194898e-06 -0.002748240549 -0.002980678165 0 14.64804421 8.100660192 880.7236224 0.002270859949 +2.498492811e-06 -0.004193886053 -0.007166148901 0 -9.246029932 -13.45524408 940.108914 0.00212741308 +2.499048379e-06 0.004467819966 0.01162261257 0 -12.23712334 6.303055831 997.625741 0.002004759819 +2.499249698e-06 0.001053650323 0.0133819154 0 12.74798272 0.2207541585 1040.697729 0.001921787608 +2.49739695e-06 0.003243970759 0.01492161072 0 15.80465477 -12.25316781 876.1220295 0.002282787024 +2.496457191e-06 0.002937747994 -0.0006580962846 0 23.1100924 -8.131381708 919.8704462 0.002174219216 +2.497513434e-06 0.001605164935 -0.004778064145 0 21.46401275 -5.444045651 992.595356 0.002014919764 +2.495548305e-06 0.009599895012 0.006279186958 0 -11.15141513 26.93041293 976.2018314 0.002048756656 +2.499189277e-06 0.0007517029531 0.009303056085 0 3.405660304 -13.07746309 1061.129429 0.001884784217 +2.496529114e-06 0.008317440837 -0.007316802959 0 -12.91277177 -22.73433038 991.8278132 0.002016479044 +2.497368551e-06 0.0009109204076 -0.007980953262 0 -18.91958227 7.348563953 884.3808251 0.002261469203 +2.498512189e-06 -0.002225598725 -0.01146485566 0 14.4067198 -5.352645612 890.7547112 0.00224528703 +2.498179884e-06 -0.003366218926 0.006435118862 0 13.75154649 12.89262635 987.7104193 0.002024884987 +2.49808225e-06 -0.00629160705 0.008987930808 0 11.48429721 -14.82560609 957.287939 0.002089235557 +2.499895902e-06 -0.007672725799 -0.01047308615 0 -4.008902824 1.446889529 934.0539066 0.002141204042 +2.499115214e-06 0.002534903237 0.01114131752 0 7.774977519 9.913941695 946.992582 0.002111948961 +2.497580467e-06 0.002505569668 -0.01439078906 0 -16.64818477 -11.09499826 909.1451557 0.002199868731 +2.497635482e-06 0.006625668597 0.01345832577 0 21.46174265 2.656079037 994.0889116 0.002011892474 +2.498266007e-06 -0.002327037975 0.006438844723 0 -13.69344011 13.98044184 1050.574408 0.001903720465 +2.499154624e-06 0.002261508685 0.0003028114652 0 9.189918824 -9.755055948 1030.569233 0.001940675052 +2.497525622e-06 0.003383069765 -0.001907344668 0 -15.25777624 13.71305137 921.8347269 0.002169586306 +2.496943097e-06 -0.006737183505 0.005342295624 0 10.03325425 23.16598284 1020.532273 0.001959761638 +2.499442807e-06 0.004977559904 0.006525547625 0 7.843157255 -6.015009413 936.2314928 0.002136223803 +2.498938501e-06 0.00368735319 -0.009511784529 0 -2.710480029 -14.50132332 1012.326456 0.001975647271 +2.496166014e-06 -0.007147927312 0.01070326444 0 -26.33686848 8.859812177 1002.891916 0.001994232845 +2.495504189e-06 -0.009619372124 0.008397945687 0 -15.56750578 24.85268062 977.3223805 0.002046407654 +2.496588256e-06 0.0079096585 -0.004425801651 0 25.49374475 -6.767238233 1009.238226 0.001981692675 +2.49284229e-06 -0.009811076438 -0.01341681238 0 -28.30361967 -27.04961851 1033.642828 0.001934904345 +2.499583696e-06 0.005863755262 -0.0005217895447 0 4.961609941 7.304914896 967.7035065 0.002066748737 +2.498961681e-06 0.006580375228 -0.003807930259 0 8.668253544 12.58231782 1060.11262 0.001886592011 +2.497597673e-06 -0.009681329899 0.01175675826 0 -21.33134476 5.81004763 1008.255014 0.001983625147 +2.496342243e-06 0.005064703785 0.0016457814 0 19.46414359 19.40999531 1015.746482 0.001968995253 +2.498268019e-06 0.004888399695 0.01268871523 0 -15.43631329 -5.756026148 884.9420343 0.002260035033 +2.498186408e-06 0.007981375996 -0.000974062148 0 -17.17531696 -2.508893712 911.1429257 0.002195045304 +2.496588414e-06 0.00938168426 0.005358167086 0 -14.98108438 -22.26526691 1026.841627 0.001947720025 +2.498908173e-06 0.00348818433 -0.002158823891 0 -10.12381806 12.16231389 1070.69542 0.001867944855 +2.497338804e-06 0.0007225712435 -0.001144387862 0 5.385058893 -21.41027192 956.5666265 0.002090810974 +2.498427556e-06 0.00850723255 0.00745300665 0 12.44809907 -11.7369903 964.5290155 0.002073550892 +2.495329344e-06 0.008313839738 0.01074554723 0 13.52200995 29.64044496 1065.20022 0.001877581287 +2.49956784e-06 0.0005880872486 -0.009789951243 0 -8.072538791 -3.490118335 945.9228797 0.002114337271 +2.498421305e-06 -0.006558202603 0.003900311119 0 -14.19582807 10.48139476 992.8399547 0.002014423362 +2.499774159e-06 -0.007597101312 0.01136153126 0 3.59469512 5.098323008 928.1657207 0.002154787615 +2.498446264e-06 -0.003313041506 -0.006539288261 0 14.86115403 5.258019746 894.0440257 0.002237026301 +2.49648333e-06 0.005298154675 0.003113935688 0 3.60057074 26.9748135 1025.61225 0.001950054712 +2.49972818e-06 0.003839172432 0.01404084167 0 4.650013503 6.341878897 1066.518886 0.001875259808 +2.499129708e-06 0.0005365966586 0.01470276515 0 3.844967741 -11.26557414 902.1441036 0.002216940722 +2.496359384e-06 0.0007748734672 0.005953934239 0 24.36362708 8.91426999 960.9130319 0.00208135381 +2.498214874e-06 -0.008867374086 -0.001788128901 0 -8.185852434 -14.51553506 881.716935 0.002268301674 +2.498087396e-06 -0.007864543125 -0.007898066891 0 -16.1400887 12.75996994 1051.675634 0.001901727049 +2.498497402e-06 -0.008837511148 0.01146216639 0 15.59163616 -2.105917603 907.3673191 0.002204179011 +2.497133608e-06 -0.002435012273 0.006293257247 0 16.70523932 -16.80333774 989.1752224 0.002021886471 +2.498436313e-06 -0.004042008598 -0.0009076946718 0 -9.097713236 16.00679074 1040.875885 0.001921458676 +2.497309557e-06 0.001976912683 0.01364620638 0 16.47453114 -13.05059826 905.6812108 0.002208282535 +2.49924036e-06 -0.005151071744 0.0123554923 0 -11.79371439 -3.559800362 999.3459316 0.002001308993 +2.49716271e-06 0.0082387998 -0.009144321112 0 25.44802668 0.6540935313 1068.18312 0.001872338144 +2.495900289e-06 -0.003495867113 0.009055596376 0 -7.66233588 25.26750642 921.5243422 0.002170317059 +2.496227729e-06 0.002375097969 0.01199671373 0 24.84769106 14.35456327 1044.141187 0.001915449774 +2.497102576e-06 0.003306859685 0.001353115223 0 20.80752752 -8.016076023 925.8920688 0.002160078985 +2.494183242e-06 -0.00261509947 -0.01194831163 0 -24.6918276 -26.07625101 1051.967478 0.001901199459 +2.497021168e-06 0.009581371392 0.01310090345 0 -15.08130152 -16.44451716 913.7446078 0.002188795406 +2.498509987e-06 -0.002605681797 0.004351003384 0 1.786568088 -15.94192705 929.0602576 0.002152712898 +2.499192802e-06 -0.008579566893 -0.007246265619 0 6.966409323 10.3386563 981.056619 0.002038618324 +2.497308487e-06 -0.000802735039 0.009238169678 0 16.26646976 17.94429312 1043.471871 0.001916678404 +2.497944046e-06 -0.001890688608 -0.002062026174 0 19.15273377 -0.5845027118 944.6636173 0.00211715574 +2.498259862e-06 -0.00286897528 -0.008701900709 0 10.32761904 13.605873 915.3921464 0.002184855974 +2.496513761e-06 -0.006689357315 0.01111483291 0 -24.16439502 9.376070244 981.0890448 0.002038550946 +2.49622338e-06 0.0038582838 0.01054762889 0 -9.050772085 24.50797012 950.0723025 0.002105102943 +2.499028087e-06 -0.003487753132 0.009135804267 0 -5.013465471 12.06685959 937.0883958 0.002134270373 +2.496873862e-06 -0.005780672403 -0.0002569796168 0 -26.39851926 1.141971037 1056.240159 0.001893508766 +2.498484769e-06 0.003163133827 -0.0139064366 0 -1.999777669 16.45560085 952.0156549 0.00210080579 +2.499742436e-06 0.001930176932 -0.005257940262 0 4.922040112 -4.522339478 931.2632177 0.002147620524 +2.499907336e-06 -0.004952659169 0.003782039392 0 -2.802811399 3.553553696 1051.295154 0.001902415313 +2.497227903e-06 0.004338148939 0.01401052104 0 10.0971305 21.61090221 1012.627742 0.001975059459 +2.497570016e-06 0.005553842089 0.005437116895 0 -17.13804548 15.80272415 1057.061369 0.001892037736 +2.498786838e-06 -0.0006225176621 -0.01392755114 0 9.625814669 12.30521819 1002.78539 0.001994444693 +2.49849369e-06 0.003380566193 0.0005001502996 0 -5.514056573 -16.12893323 981.834036 0.002037004144 +2.496949958e-06 0.003044120399 -0.01246206146 0 -21.29281981 8.734801046 931.4090537 0.002147284259 +2.497821466e-06 -0.003587170388 0.01146637979 0 -4.163315182 20.87325984 1019.348162 0.001962038168 +2.497877808e-06 -0.008676863238 -0.0037360395 0 12.53403818 -17.2398041 1034.265328 0.001933739772 +2.499621929e-06 -0.009753919612 -0.006281798354 0 -1.276123316 8.302553898 965.9518947 0.002070496482 +2.498115414e-06 0.0004427355342 0.005795533061 0 -15.23061583 8.090603241 888.0681377 0.002252079447 +2.499214971e-06 -0.0006738574849 0.01141613334 0 -5.11079102 -11.44287969 1000.053872 0.001999892262 +2.498455362e-06 0.001167915808 0.006068611268 0 -15.22618014 10.9152832 1065.643869 0.001876799612 +2.499713536e-06 0.006833318938 0.001215213616 0 2.889124925 6.420135416 930.0783637 0.002150356441 +2.498723795e-06 0.004178666295 -0.004989004524 0 14.61582111 -2.565815513 928.6581218 0.002153645085 +2.49709299e-06 0.008895672956 0.003286739008 0 -10.20795842 23.48132091 1061.410609 0.001884284916 +2.494298901e-06 -0.003717679856 -0.0117925923 0 -20.90232964 -26.07545481 988.8462591 0.0020225591 +2.49770235e-06 0.001752954312 -0.009712469657 0 9.83712697 -19.97765218 1038.43598 0.001925973327 +2.497233762e-06 -0.00914883472 -0.001955630612 0 -22.60897476 -1.754071998 963.7045357 0.00207532488 +2.499635758e-06 -0.00426154078 -0.01230049299 0 -6.638604234 3.762833335 894.0047825 0.002237124498 +2.492454089e-06 -0.009708372615 0.007147315037 0 -25.94852168 27.22312427 967.0006286 0.002068250982 +2.495291618e-06 -0.004323287266 0.01162979022 0 -6.776631329 31.64949904 1054.005153 0.001897523929 +2.49682387e-06 0.007268471713 -0.004472697722 0 0.3610185179 -24.82533744 984.6228064 0.002031234689 +2.495991571e-06 -0.005671610679 -0.0005815604911 0 -20.5360671 -16.90176999 938.7914008 0.002130398721 +2.498514203e-06 -0.004502494908 0.008678560385 0 16.26871277 4.098760957 973.027571 0.002055440215 +2.499560057e-06 0.009662240939 0.006334238194 0 -1.482618327 -8.177159641 885.8990141 0.002257593663 +2.498212879e-06 -0.001401711139 0.003237396749 0 -19.43184163 -4.746670938 1057.768709 0.001890772513 +2.497558186e-06 -0.007951221331 0.009165420667 0 -20.71185805 6.874736186 987.1516925 0.00202603107 +2.499631469e-06 0.001658046544 -0.0006033245008 0 2.799881193 7.279376014 908.4020973 0.002201668189 +2.497318186e-06 0.001313177021 0.0147258921 0 -23.57962547 -6.365545001 1054.163494 0.001897238912 +2.494499041e-06 0.009821461006 0.01199188997 0 18.20127715 28.18389223 1010.654337 0.001978915962 +2.496898964e-06 -0.009084355929 0.01135147851 0 -20.43442123 -12.14406346 954.0487567 0.00209632892 +2.498887616e-06 -0.005939878016 -0.002753981268 0 -1.886926934 -12.97131297 878.650904 0.002276216858 +2.497978094e-06 0.001332104425 -0.01380547004 0 9.463574189 -15.82383145 916.6048444 0.002181965339 +2.497555197e-06 -0.0001766294101 -0.006550646047 0 4.832774989 22.0907894 1022.272274 0.001956425945 +2.497943855e-06 0.002711689938 0.01086801941 0 19.3757007 2.848720076 965.4403837 0.002071593476 +2.497009189e-06 -0.001747337896 -0.008753937744 0 14.27995047 16.89017451 903.9336906 0.002212551674 +2.498552085e-06 0.00531971042 -0.0006426156359 0 -14.99013887 -6.985096333 971.6157093 0.00205842699 +2.49898798e-06 -0.008751965533 0.01411768436 0 3.316553954 -13.59613089 983.5376623 0.002033475765 +2.496199029e-06 -0.001156841801 -0.01475829982 0 3.783430457 -24.83845045 910.7414663 0.002196012891 +2.49572998e-06 0.009803818446 -0.01395555574 0 27.85537772 -13.56985097 1059.598923 0.001887506636 +2.499583269e-06 -0.008773162924 -0.01049124504 0 4.036255031 6.948837699 880.179861 0.002272262851 +2.495941593e-06 -0.003587913518 0.008712468187 0 15.00053017 20.82545995 900.3090332 0.002221459439 +2.4994364e-06 -0.009029693399 -0.01038014135 0 -4.736432822 8.550770126 920.6125905 0.002172466487 +2.497001219e-06 0.004960429929 -0.008324730762 0 -15.93292904 19.30067994 1021.490169 0.001957923885 +2.497925064e-06 0.003553428063 0.01403736805 0 20.77633405 0.1488336864 1019.59462 0.001961563901 +2.49792791e-06 0.009641415081 -0.00683799003 0 20.05223705 1.042558757 986.0403032 0.002028314658 +2.498718251e-06 0.005020397091 -0.01406393809 0 14.07652859 -7.398408461 993.028415 0.002014041058 +2.495014976e-06 0.005283974954 -0.01111345785 0 22.57177272 -21.30999619 982.3696371 0.002035893542 +2.49324885e-06 -0.007371794092 0.007338320967 0 -24.92960617 24.02713421 941.2978123 0.002124726068 +2.499723873e-06 0.0008760972088 0.002334249504 0 1.149617249 6.411827431 876.5263713 0.002281733973 +2.497328675e-06 -0.00632223519 -0.002999405642 0 20.62180607 11.10214705 1012.843552 0.001974638625 +2.498889277e-06 0.003443960166 -0.00504034959 0 12.17356085 7.354038155 954.0772793 0.00209626625 +2.499670909e-06 0.007441478306 0.001984852888 0 -1.530588011 7.456426589 938.206719 0.002131726366 +2.493853243e-06 -0.007168572592 0.01254090422 0 -16.34010902 30.84005883 994.4983965 0.002011064077 +2.499687163e-06 -0.009676544182 0.000833670299 0 6.800706837 3.139957809 946.9388787 0.002112068735 +2.497990576e-06 0.002978043682 0.0001034047385 0 -2.807503076 -17.32298873 875.126881 0.002285382889 +2.497290436e-06 0.009550260417 -0.006644641359 0 -2.992849672 -21.98911022 952.9105758 0.002098832829 +2.499022976e-06 0.002613913198 0.01493554221 0 -10.17494285 -9.953808557 1018.114891 0.00196441484 +2.499719298e-06 -0.007974954611 0.009175261147 0 -6.024639418 4.655640568 1016.133125 0.00196824604 +2.498991374e-06 -0.005094878925 0.004133098398 0 -0.3078350425 -14.55981213 1025.196081 0.001950846318 +2.498856841e-06 0.008172619944 -0.005551745764 0 7.839033954 12.03283539 949.605583 0.002106137575 +2.493369401e-06 0.006723136106 -0.01490864597 0 -20.75070011 -30.00041178 1000.696927 0.001998607117 +2.499785256e-06 -0.009970008391 0.01033899334 0 0.2777290323 5.963323861 910.8980364 0.002195635428 +2.498817675e-06 0.004611550868 0.003391431577 0 12.32079554 9.971589094 1030.574239 0.001940665625 +2.498207681e-06 -0.009441979462 0.007357356981 0 19.15647534 4.897812705 1044.061755 0.0019155955 +2.496700285e-06 0.009704612941 -0.009526613241 0 26.25694755 -4.558253974 1036.868205 0.001928885455 +2.494939281e-06 -0.007356647556 0.01094552143 0 14.45777831 30.6941937 1065.65574 0.001876778705 +2.499030518e-06 -0.002928375015 -0.01062335674 0 -13.9230479 -4.168162488 1043.576869 0.00191648556 +2.499368787e-06 0.000755685335 0.004870747493 0 -9.307082204 7.140789927 1043.963377 0.001915776017 +2.499139482e-06 0.00166109581 -0.01412384474 0 -9.065805889 7.975682906 920.2977005 0.00217320982 +2.49581415e-06 0.0008306406066 -0.008504136668 0 -25.85209929 16.46801946 1058.704707 0.001889100886 +2.498342236e-06 -0.003801831268 -0.001833262942 0 19.36261372 -1.356832702 1065.720292 0.001876665026 +2.497533799e-06 0.009841682119 -0.0008619283489 0 -1.418906923 21.2190286 957.2036133 0.00208941961 +2.496399317e-06 -0.001737364982 0.01440924696 0 19.22431243 18.25026229 987.2478609 0.002025833713 +2.496835035e-06 -0.006763546467 0.0103332718 0 -18.52719462 -16.84568687 994.8093421 0.002010435483 +2.4990496e-06 0.005747027383 -0.01098491605 0 12.58110145 -3.17557494 941.0229327 0.002125346716 +2.49976096e-06 0.00444191867 0.0007302082004 0 -5.702736823 2.787098182 917.9694595 0.00217872172 +2.495969123e-06 -0.005416502305 -0.004126880472 0 -27.02990735 -11.49097509 1033.812728 0.001934586358 +2.49995955e-06 -0.005283194524 0.005977460013 0 0.02768624734 2.627727811 923.9047225 0.002164725378 +2.496872834e-06 -0.001869835281 0.004903636978 0 -15.92139859 21.17994971 1059.008321 0.001888559288 +2.499897618e-06 -0.008845612356 -0.003759929852 0 4.079495932 1.356741447 950.063513 0.002105122418 +2.497243278e-06 0.0008889904572 0.005085932573 0 7.382401499 22.33260989 1001.308006 0.001997387406 +2.495450688e-06 0.006056707841 0.01186519028 0 -17.71315436 23.79775146 982.8308634 0.002034938131 +2.494389098e-06 0.004458006383 0.01128911508 0 22.20107303 27.17563454 1046.653269 0.001910852485 +2.497481638e-06 0.003326572278 0.0119166247 0 16.43256222 11.13191652 884.0597697 0.002262290479 +2.498034727e-06 -0.000690512741 0.007396095917 0 18.92416676 5.2966112 990.9217626 0.002018322814 +2.496866757e-06 -0.002134398739 0.003600810708 0 -11.6281579 22.91819524 1026.13917 0.001949053362 +2.499449346e-06 0.004629942053 -0.01009532236 0 1.592287733 9.928255121 958.0701454 0.002087529822 +2.499889814e-06 0.000728433216 -0.001254295281 0 4.695306802 0.4278398231 1004.326339 0.001991384595 +2.497933048e-06 0.0006087992853 0.01393558163 0 18.93100579 -5.174933823 964.9555166 0.002072634402 +2.498548214e-06 0.001242044913 -0.005248043002 0 15.30638176 -2.582141029 910.7624963 0.002195962183 +2.497459672e-06 0.0008877292927 -0.006759356449 0 -18.69269976 -9.104244333 922.0815122 0.002169005639 +2.494906052e-06 0.000277231303 0.01140248241 0 19.33167382 23.25684772 946.7599818 0.002112467825 +2.498515715e-06 0.005338823572 0.003448655102 0 14.96448515 4.859201252 912.9753255 0.002190639708 +2.496803465e-06 0.001310944804 0.002624010199 0 22.98867689 13.91073913 1062.189154 0.001882903806 +2.492739112e-06 -0.007769983532 0.01254498378 0 -24.46730601 31.57407534 1047.067298 0.0019100969 +2.49677874e-06 -0.008183715031 -0.008715390021 0 -11.42053454 -22.81729981 1004.782211 0.0019904811 +2.49664296e-06 -0.007720224801 0.0130434073 0 -21.47788195 8.493183709 890.8982753 0.002244925212 +2.498344522e-06 0.004859017543 -0.01062992576 0 -19.29128559 2.568584635 1069.28255 0.001870413017 +2.496168165e-06 0.00669258567 -0.007752023872 0 -13.5089096 -25.86662431 1053.519888 0.001898397955 +2.497779549e-06 0.009802082907 -0.009397572102 0 19.68364037 -9.111523085 1028.924634 0.001943776963 +2.498696676e-06 0.008882758422 0.01211057199 0 -11.22075598 9.48838163 909.9869753 0.002197833655 +2.498169539e-06 -0.006214395808 0.005049393168 0 -17.04105552 8.54896798 996.1555768 0.00200771852 +2.496641708e-06 0.0007402790058 0.005495794988 0 -6.393707802 26.25674626 1042.212813 0.001918993871 +2.493172392e-06 0.003589103199 -0.009591951747 0 26.68926277 -28.55925348 1056.719285 0.001892650232 +2.499234325e-06 0.007704676082 0.008768308782 0 -11.45217794 -2.943626832 955.417807 0.00209332502 +2.496335929e-06 -0.005805379413 -0.008241434572 0 10.34210645 -26.93094389 1065.092062 0.001877771951 +2.495219126e-06 -0.004276928017 -0.0004598398134 0 -23.04119071 -17.29041413 930.9378596 0.002148371107 +2.499410042e-06 0.001995136095 -0.000543574586 0 6.34270707 -9.443808095 1047.198849 0.00190985695 +2.499591882e-06 0.007288335543 -0.008894846658 0 1.992207288 -8.836824312 1002.598218 0.001994817031 +2.49601723e-06 0.00701186154 -0.01006239741 0 13.87362518 -22.44950606 934.501826 0.002140177734 +2.496694153e-06 -0.006825041133 -0.001074832266 0 17.08308539 15.18236508 888.3889257 0.002251266244 +2.496788569e-06 0.009684646148 0.006438034968 0 11.70328864 24.17469351 1059.276253 0.001888081597 +2.497460929e-06 -0.00243347459 0.006838158395 0 -4.657055012 20.87195031 948.6264885 0.002108311358 +2.499496591e-06 -0.008424979076 -0.002741021211 0 -5.708178511 -8.105812034 987.9635459 0.002024366191 +2.492140639e-06 0.004431912741 -0.01152363013 0 22.87873065 -27.29411899 897.2380048 0.002229062957 +2.498178713e-06 0.009275832963 -0.00743259606 0 17.53093791 -4.235700498 944.7186245 0.002117032467 +2.498580274e-06 0.005631414615 -0.0003007317684 0 16.29065842 -5.623516379 1022.528354 0.001955935981 +2.499958574e-06 0.005974332667 -0.0009760191198 0 -2.743162133 -1.289196121 1053.011463 0.001899314557 +2.498090719e-06 0.006055991105 -0.002409605705 0 4.844284536 -19.2564861 1015.845625 0.001968803085 +2.499009856e-06 -0.000474222051 0.01029788809 0 -5.007415032 -11.28071811 876.9248142 0.002280697236 +2.495480273e-06 0.006268428527 0.01299690381 0 15.27860255 22.30875371 898.7262757 0.002225371678 +2.497263676e-06 -0.001529269735 0.01204107159 0 -19.73095201 14.24034043 1039.727716 0.001923580539 +2.498712305e-06 -0.00974210829 -0.0106991734 0 -0.9279506833 17.117583 1068.007548 0.001872645941 +2.495029141e-06 0.004710618793 -0.01486601226 0 8.430129804 -30.67470133 1008.176034 0.001983780542 +2.499880569e-06 0.00202698552 -0.006224973018 0 -1.309895439 -4.672440788 992.867936 0.002014366591 +2.499704532e-06 -0.001530297548 -0.01269664484 0 -6.741918333 -1.145237672 889.5513349 0.002248324432 +2.499779756e-06 -0.0006407087389 -0.01387922216 0 -6.525837625 -1.808329047 1020.280556 0.001960245138 +2.496381384e-06 -0.004919550996 -0.001669944199 0 -22.14881716 -14.26758251 978.8125959 0.002043292054 +2.498053302e-06 -7.091585547e-05 -0.01319914918 0 16.07487186 8.474866561 920.6906354 0.002172282331 +2.499858727e-06 0.000173337427 0.008525131631 0 -4.333208187 -3.586372747 1058.170983 0.001890053718 +2.494061264e-06 0.0001143891504 -0.01346181563 0 17.51697717 -31.11096383 1035.048998 0.001932275673 +2.498362978e-06 -0.005905161686 0.006146738143 0 -16.24411106 -9.674925223 1044.657993 0.001914502176 +2.497958203e-06 0.006969878972 0.008121882097 0 3.520277996 -20.44094845 1026.108538 0.001949111547 +2.49703156e-06 0.006696220883 -0.0008578549465 0 7.5670948 -21.99594097 954.2432439 0.002095901661 +2.497404471e-06 -0.003590594381 -0.006710891635 0 -21.30880038 3.491405563 947.3589333 0.002111132254 +2.496334919e-06 -0.003353146762 0.004775062809 0 17.03143938 18.68604907 933.3310836 0.002142862308 +2.498440358e-06 0.006713628825 -0.0003637360618 0 -7.454634077 14.8617286 941.1815663 0.002124988495 +2.496529521e-06 -0.007874941858 -0.008040910335 0 4.985113915 -24.32812766 942.11577 0.002122881352 +2.496803629e-06 -0.0009830006771 0.0129461588 0 19.94351023 -11.97350046 919.5814066 0.002174902609 +2.496546145e-06 0.004799401285 0.006106125056 0 -19.78140505 17.74353768 1010.537295 0.001979145164 +2.495752291e-06 -0.000229646801 0.007825877443 0 15.26927532 20.52405564 877.0981856 0.002280246423 +2.497037535e-06 -0.002031921078 0.0003513220232 0 -17.23351687 15.64522156 955.8100325 0.002092466005 +2.499988626e-06 0.005652848152 -0.01245739299 0 0.1115727533 1.50249203 998.9066805 0.002002189032 +2.497881045e-06 -0.001868498069 0.003526020083 0 6.716210137 -20.95851222 1068.742775 0.00187135768 +2.497675802e-06 -0.007017492745 0.0001738437521 0 -15.5089885 14.64033818 988.8712 0.002022508088 +2.498805969e-06 0.007675029989 0.002816141797 0 -10.44218068 -9.623200973 918.7415217 0.002176890837 +2.499626122e-06 0.008332624617 0.01224320139 0 -8.112096138 -4.295667277 1061.459592 0.001884197961 +2.497223619e-06 0.009750123825 0.005251844544 0 12.86485797 -18.22043649 946.1417738 0.00211384811 +2.494510704e-06 0.007061901721 0.006288115089 0 18.59894926 24.70116273 932.4234571 0.002144948183 +2.496350672e-06 0.007426862987 -0.0004666348197 0 -18.61910499 20.98933618 1037.98148 0.001926816652 +2.498482284e-06 -0.008117591599 -0.005525284347 0 6.430023026 16.08642706 994.1160576 0.002011837536 +2.498836638e-06 0.001033457131 -0.003235375586 0 -2.81386677 -15.52009033 1033.877557 0.001934465051 +2.497059592e-06 0.00831756081 0.005223602133 0 -10.02066985 22.6028158 1019.100815 0.001962514376 +2.498762133e-06 0.006373401326 0.00363467505 0 -5.146727029 -14.11142548 954.4590727 0.002095427722 +2.498594835e-06 0.002514362624 0.003318730022 0 14.63752705 5.98788349 943.1852836 0.002120474137 +2.499374156e-06 0.003235277361 -0.008842727593 0 10.6386151 -4.238229824 1023.489606 0.001954098985 +2.495322335e-06 0.009851118741 0.01038745869 0 30.1491859 -11.26145501 1051.482607 0.001902076161 +2.499944994e-06 0.001218422917 -0.01407592083 0 0.3741710338 3.165368306 960.976341 0.00208121669 +2.498320431e-06 0.005463526826 -0.01080007899 0 17.21215858 -5.719915422 989.3698293 0.002021488771 +2.495554865e-06 0.009858196997 -0.004832276569 0 14.42142747 -28.38589269 1067.124926 0.001874194812 +2.496313814e-06 0.004028662662 -0.004286784972 0 -13.41079335 -23.84353932 1006.960484 0.001986175258 +2.497596283e-06 -0.002035155394 -0.01136637365 0 20.68043642 0.480995621 943.1131151 0.002120636399 +2.499590002e-06 -0.008076116261 0.009427423447 0 -3.087060787 -8.782386392 1027.962927 0.001945595457 +2.497699036e-06 0.00848519126 -0.008408174899 0 8.223679508 18.26673059 933.5036147 0.002142466262 +2.499240159e-06 -0.002772209975 0.005623268522 0 4.646262728 12.14247199 1054.514478 0.001896607436 +2.497384739e-06 -0.005159697626 -0.007440704524 0 17.61041201 -13.40984136 967.4602648 0.002067268365 +2.49870899e-06 -0.004395088935 0.002141244665 0 16.9612062 -2.44904898 1066.285412 0.001875670413 +2.498387804e-06 -0.009621506543 0.01036244958 0 16.57004327 -3.501215008 942.9298809 0.00212104849 +2.497624839e-06 -0.004372094106 -0.004956999819 0 15.29789584 -13.97488349 950.3328758 0.002104525741 +2.497288067e-06 0.002555707395 -0.003328516334 0 -9.776442916 17.90863289 875.7313575 0.002283805396 +2.496874614e-06 -0.001836523954 -0.01315699664 0 18.39367155 -13.21140537 905.3831793 0.002209009451 +2.497788591e-06 -0.006805730057 0.01214217243 0 -18.56113212 12.30227763 1058.489577 0.001889484831 +2.498403326e-06 -0.002549695633 -0.004621388479 0 0.4604176966 19.13621933 1070.913958 0.001867563668 +2.498472695e-06 0.006675158376 -0.003938242332 0 -7.629486806 13.99815025 911.9558246 0.002193088685 +2.499521066e-06 0.001510124323 0.01078332325 0 7.501196167 -4.201990293 878.436875 0.002276771453 +2.49598251e-06 -0.004263690091 -0.01249860319 0 -23.49835824 -19.18659618 1069.571926 0.00186990697 +2.496871727e-06 0.0002583122114 0.01447624424 0 -23.56729228 -6.214481704 973.9474581 0.002053498865 +2.499009641e-06 -0.004391848976 -0.002598439597 0 13.75192129 -2.73603747 996.1328624 0.002007764301 +2.499062329e-06 0.003333302066 -0.001616342131 0 -8.105922139 10.64206356 976.7331604 0.002047642162 +2.497689399e-06 0.001029229802 -0.008400567044 0 -15.81589997 16.14718172 1051.063359 0.001902834861 +2.497505119e-06 0.006949429512 0.009179009423 0 12.7910965 -19.3601356 1038.39105 0.001926056663 +2.496434505e-06 -0.00907412149 0.004285125348 0 16.91345916 -22.5603998 1055.325023 0.001895150742 +2.499445347e-06 0.006445100564 7.4194232e-05 0 -8.719230289 -4.076209354 913.7736785 0.002188725772 +2.497720446e-06 0.007879146342 0.01242479645 0 17.20906616 14.47864239 1052.91569 0.001899487317 +2.497579231e-06 0.0006604709942 0.0005700519145 0 1.075005746 -23.06387413 1048.9483 0.001906671663 +2.49780075e-06 -0.006020089351 8.685116423e-05 0 -8.091486144 18.15087184 947.2451233 0.002111385903 +2.497889651e-06 -0.002995668678 -0.001375193009 0 -21.06243729 -0.7291116765 1025.507946 0.00195025305 +2.498585752e-06 0.0004389473889 -0.003487071467 0 -6.155605539 16.22564327 1031.646349 0.001938648843 +2.496979209e-06 -0.007757983133 -0.01396641846 0 -20.52255463 7.629976189 890.3751807 0.002246244104 +2.497876125e-06 -0.00965684168 -0.01387008378 0 2.839563665 -19.71693722 966.2272512 0.00206990643 +2.499479531e-06 -0.00403432054 -0.002303051879 0 -6.133582221 -8.441894928 1022.682091 0.001955641951 +2.495112921e-06 -0.008547600065 -0.01172413769 0 12.03991512 -30.85383023 1058.59259 0.001889300963 +2.49727383e-06 -0.001854697689 0.007192883617 0 20.84755597 -1.48052453 894.7020109 0.002235381139 +2.495390778e-06 -0.003398611895 0.006046388315 0 -18.63311417 25.83301125 1048.346164 0.001907766794 +2.499308779e-06 0.005028177919 -0.00524057636 0 -8.778835133 5.391081403 876.1009101 0.002282842053 +2.497748786e-06 0.008465412529 -0.0036101885 0 9.734057768 -16.42901827 899.6562702 0.002223071262 +2.499297007e-06 0.004004881657 -0.002238550871 0 -12.38406793 -1.820998509 1055.534007 0.001894775524 +2.496896248e-06 0.004677863126 -0.01153364826 0 -15.98126915 18.3567304 976.4182323 0.002048302596 +2.499009423e-06 0.004231443768 0.002902995916 0 10.53082714 -9.646003389 1014.451962 0.001971507844 +2.49933877e-06 -0.006880948958 -0.00644335316 0 4.749147479 10.25691276 982.7903618 0.002035021992 +2.498586647e-06 0.002882604506 -0.004199070388 0 -15.15245033 4.067981909 932.9606661 0.002143713098 +2.497971914e-06 -0.004438564116 -0.006806936071 0 -9.376299409 -17.25054509 974.5851289 0.002052155261 +2.497677055e-06 -0.00622366285 -0.01394136668 0 13.18570945 -16.05356629 963.4845972 0.002075798623 +2.497584482e-06 0.006653434699 0.007345124865 0 10.91247469 -19.32942773 1009.526344 0.001981127103 +2.498522055e-06 -0.00359708095 0.008778298111 0 3.879164575 17.17945626 1024.159406 0.001952821005 +2.497532221e-06 -0.006085813991 0.009214645294 0 -14.8119 18.42261388 1063.637082 0.00188034061 +2.49530216e-06 0.0008653026726 0.007381438252 0 -13.42560813 28.26213245 1020.046169 0.001960695565 +2.496711903e-06 0.007334781042 -0.00434979507 0 3.620980902 -23.10748932 911.6304888 0.002193871338 +2.497515742e-06 0.006825216813 -0.01324088744 0 -8.558350216 -22.20850325 1067.358926 0.001873783928 +2.495990248e-06 -0.009007662125 0.006178827903 0 -27.45809503 -10.93782896 1043.0784 0.001917401415 +2.497028813e-06 -0.003405961231 -0.01456559921 0 -11.4504685 -22.47793763 1034.383384 0.001933519071 +2.497827465e-06 0.001671669651 -0.01332606594 0 -16.68832581 -7.541850095 878.2708399 0.002277201871 +2.499589971e-06 -0.005580152352 0.006658996639 0 -7.994481065 3.070704391 945.6366107 0.002114977336 +2.498028226e-06 0.003456852403 -0.01350047477 0 -17.18827161 -9.384795898 985.8636278 0.002028678149 +2.494634483e-06 0.006011605444 0.013438218 0 23.57705689 18.49261597 913.9707617 0.002188253808 +2.497844985e-06 -0.006201950535 0.006486158785 0 16.61016241 9.885546272 930.7549674 0.002148793259 +2.497098377e-06 -0.0008724676771 0.007943814697 0 -16.28792686 -19.55989591 1056.147854 0.001893674255 +2.496845599e-06 0.00454839801 0.000600064618 0 20.18755282 16.69093791 1042.37132 0.001918702061 +2.49931392e-06 -0.005194258955 0.0117667612 0 11.62628895 -4.28838004 1057.774503 0.001890762156 +2.498543433e-06 -0.00114917106 0.00540100853 0 8.211275852 13.38240486 919.6985868 0.002174625501 +2.499745809e-06 0.002783264224 0.004949817988 0 6.776124539 2.952299906 1036.600287 0.001929383992 +2.498090326e-06 -0.001529581021 0.01145052627 0 16.57150838 -7.513441853 930.7619738 0.002148777084 +2.498234226e-06 -0.00271815055 -0.00994976376 0 0.5642765424 -16.50585614 878.605701 0.002276333966 +2.493875005e-06 0.009085752657 0.008399060396 0 28.41349689 24.48045116 1070.584483 0.001868138416 +2.498137233e-06 0.009333600118 -0.0020721344 0 17.65202717 -5.474210941 957.2349944 0.002089351112 +2.499591473e-06 0.005305591519 0.01085329008 0 3.110277594 -8.447605585 995.8329987 0.002008368876 +2.498237631e-06 -0.006326200357 -0.001232088322 0 13.5401032 -12.58147231 984.2340093 0.002032037078 +2.496694742e-06 0.0005109306565 0.002073133753 0 20.68672815 17.55502285 1054.729319 0.00189622111 +2.496490738e-06 0.001381544168 -0.002980386678 0 23.05430929 12.68312344 992.6935964 0.00201472036 +2.498876746e-06 -0.008333163192 0.001175075001 0 1.18063704 -14.74938719 987.0378158 0.002026264818 +2.499489267e-06 -0.007738441508 0.0007179488009 0 -5.873379143 -9.011269294 1064.193928 0.00187935671 +2.497382686e-06 0.001549608419 0.002731736151 0 -0.560947321 -21.39243123 934.9661223 0.002139114939 +2.499198002e-06 0.0013826882 -0.01358356731 0 6.312502422 -9.980303664 932.3131967 0.002145201856 +2.498809549e-06 0.006975086494 -0.01449028773 0 14.85352626 -5.058686851 1016.743138 0.001967065157 +2.495982194e-06 -0.002208956508 -0.008271391403 0 6.682186685 -24.37940846 891.212915 0.002244132649 +2.499602306e-06 -0.00729483312 0.01225348747 0 -3.043446437 8.160498533 976.5181538 0.002048093005 +2.498200233e-06 -0.002068794467 -0.001709936473 0 17.68482275 1.29786206 934.3868706 0.002140441034 +2.498855916e-06 -0.005368087878 -0.009043128358 0 -11.91907391 -9.946099362 1026.077946 0.001949169659 +2.498150345e-06 -0.006234614351 0.006379797526 0 -14.91224475 11.18884696 969.0302859 0.002063918981 +2.496676512e-06 0.00868372486 -0.005290121755 0 17.69707932 -19.74624193 1027.969044 0.001945583879 +2.49815937e-06 0.001544973874 0.01207472855 0 -10.8541487 16.48696205 1028.512148 0.001944556517 +2.497742595e-06 0.0006371836551 0.002617401977 0 20.73824982 3.099804079 986.5141934 0.00202734032 +2.493130771e-06 0.008254927327 0.01376207113 0 24.55012841 26.98178234 983.1667055 0.002034243012 +2.49972751e-06 -0.007447488476 0.003513661546 0 -3.777641045 5.613491319 916.5132584 0.00218218338 +2.499555663e-06 5.458214786e-05 -0.01001254173 0 -2.228048807 8.451163702 927.0597811 0.002157358178 +2.498981975e-06 -0.009277091357 0.008848222657 0 11.06101978 -7.006934772 917.4864751 0.002179868646 +2.495538699e-06 0.009764618208 0.006286841109 0 15.03547539 25.12554216 979.5904785 0.002041669498 +2.499998437e-06 0.0054091497 0.006003458777 0 -0.4147761677 0.2686486249 883.750251 0.002263082808 +2.498402341e-06 0.000503567718 0.01065318832 0 4.38897054 18.10435439 1041.892329 0.001919584149 +2.499783817e-06 -0.004106030324 -0.01260085812 0 0.2435510023 6.737574307 1025.290611 0.001950666454 +2.497969235e-06 0.001271286476 0.009487261944 0 17.81240613 6.528234878 941.0518103 0.002125281497 +2.497036219e-06 0.002702836995 -0.008651657067 0 -19.93479104 10.60079536 926.9517205 0.002157609675 +2.497676697e-06 0.004071949599 -0.01391823428 0 -16.65782104 -15.38003262 1051.415046 0.001902198382 +2.498115562e-06 -0.009901329223 -0.007916680835 0 -14.46893327 -10.53690788 921.7253713 0.002169843711 +2.499167365e-06 -0.0003819440445 0.002342990006 0 10.16214228 -7.385644482 973.3748251 0.002054706932 +2.499134177e-06 -1.301143318e-05 -0.0140437907 0 -7.558231958 11.30423351 1033.230465 0.001935676567 +2.497150242e-06 -0.001606139326 -0.01478486991 0 18.58464091 -13.95667387 973.1135853 0.002055258533 +2.499923308e-06 0.006794547033 0.006407573142 0 2.981232435 -1.7106162 877.6119433 0.002278911557 +2.49961085e-06 0.006194162634 0.01232541638 0 9.366699231 0.1117366919 1061.741616 0.001883697473 +2.498561858e-06 -0.003159048273 -0.01486184498 0 -11.93601934 10.41243847 933.7483358 0.002141904755 +2.49618287e-06 -0.001705440721 0.007196871433 0 25.23267225 14.26060837 1048.385426 0.001907695348 +2.49988498e-06 0.002982258792 0.004078722477 0 -3.870461109 -1.727731399 883.7107343 0.002263184006 +2.497547228e-06 -0.009992209524 0.005092846008 0 -18.05744211 -7.139083733 876.3729497 0.002282133424 +2.496986539e-06 0.00924413044 -0.002896095598 0 -20.69227983 14.30632074 1024.243476 0.001952660717 +2.49951732e-06 -0.002464234647 0.006699359512 0 10.25604414 1.783286722 1059.428272 0.001887810674 +2.498095599e-06 0.005969093428 0.01022819919 0 19.35409546 4.455141318 1017.340498 0.001965910139 +2.49915211e-06 0.004522842788 -0.007171877814 0 5.922921261 -11.37480009 984.6900152 0.00203109605 +2.498543396e-06 -0.00773090845 -0.009832862844 0 -12.25442555 -13.34292083 1061.186206 0.001884683375 +2.498594089e-06 0.009194065314 -0.00154880401 0 13.96635738 -9.245935229 998.6580781 0.00200268745 +2.4975283e-06 -0.007153970874 -0.002496173854 0 -7.521203512 18.95644895 916.9138713 0.002181229953 +2.498539573e-06 0.007284602565 -0.009257960427 0 13.29926436 -7.853721212 903.5264907 0.002213548823 +2.498271237e-06 -0.006829850422 -0.003574231148 0 13.66618669 9.869137428 906.3367329 0.00220668536 +2.493258314e-06 0.002579977834 0.01373629167 0 -18.60983749 30.08332297 962.3816742 0.002078177561 +2.497915252e-06 0.0002373583335 -0.01038282563 0 11.09504345 17.19490892 1001.860937 0.00199628504 +2.497713508e-06 0.00636852107 -0.008043241762 0 20.49763578 -8.203762095 1032.091814 0.001937812095 +2.496981459e-06 0.009808766423 0.00335668958 0 -17.18366402 14.12080907 904.7944686 0.002210446758 +2.498900776e-06 -0.005475859395 -0.01033389301 0 -5.481337073 12.50092512 920.4453096 0.002172861309 +2.497933827e-06 0.009125634655 -0.009336349976 0 -16.90798129 5.87800809 880.3069032 0.002271934927 +2.495432147e-06 0.009061140236 0.00413372674 0 23.64979958 -21.40139965 1054.539116 0.001896563123 +2.499873709e-06 0.004745626482 0.009085609107 0 -3.49741474 -3.165787994 938.6345102 0.002130754813 +2.494155533e-06 -0.007765618651 -0.01437741166 0 -16.29191331 -28.75204122 965.7480651 0.002070933479 +2.495671703e-06 -0.003860771265 -0.008032437789 0 -25.49199618 18.19859996 1063.862799 0.001879941664 +2.499070104e-06 -0.0091429736 -0.004591469716 0 1.512835918 -12.58163097 929.0973807 0.002152626884 +2.499770172e-06 0.007604827532 0.0117310596 0 5.63904027 -3.584129559 985.4928601 0.00202944139 +2.49681389e-06 0.008229815313 -0.009302247567 0 3.246291073 -26.15700998 1043.648469 0.001916354079 +2.4982107e-06 0.008895842847 -0.008861842901 0 4.141242493 -16.9860442 923.9684515 0.002164576071 +2.495668936e-06 0.005216727913 0.01182938685 0 21.71642169 18.17259399 961.5034293 0.002080075784 +2.498146709e-06 0.005122919842 -0.006219715308 0 14.00246635 -10.91450904 921.8970371 0.002169439666 +2.499372282e-06 -0.002908863858 -0.007986748733 0 0.7018972835 10.05451701 899.4530992 0.002223573416 +2.498644881e-06 0.007383818473 0.01471082752 0 -2.33967209 -16.51562306 1013.019112 0.001974296415 +2.496998801e-06 0.0006336696493 0.004635245651 0 -21.90419429 -5.321067212 919.6440902 0.002174754366 +2.498692333e-06 -0.008950951402 -0.008696942443 0 1.52181048 16.64466683 1033.317941 0.001935512701 +2.499574443e-06 -0.0006590865692 0.0060511628 0 -4.912744735 -6.818650502 910.8990364 0.002195633018 +2.497746457e-06 0.002362596849 0.01465064104 0 21.54303721 -4.972487431 1041.07805 0.001921085551 +2.495649026e-06 0.002801360572 -0.0133732633 0 -15.87272601 -25.58715084 1020.062806 0.001960663587 +2.498599576e-06 0.001444600727 0.003135554872 0 -12.58436692 -8.800577435 917.3838559 0.002180112487 +2.498402439e-06 0.001035502153 -0.006241788038 0 -12.12881335 -10.31440647 890.5060856 0.002245913905 +2.495843693e-06 -0.009293612801 0.01015450287 0 -24.17124613 -8.239477252 885.1768407 0.002259435525 +2.498471683e-06 -0.006344166975 0.008112516815 0 11.1017757 -11.84372417 928.2994438 0.002154477215 +2.498377369e-06 -0.003882607082 0.01197239606 0 14.03976966 -9.765546807 949.1137173 0.002107229053 +2.498774441e-06 -0.006294237794 -0.00880039609 0 -10.90638932 -9.945496873 942.6036024 0.002121782682 +2.498250142e-06 0.006533191982 0.01341111721 0 -17.23471807 1.848247535 926.3108074 0.002159102522 +2.498249546e-06 0.0009464938985 0.005114577224 0 18.45058861 2.169710988 992.6315746 0.002014846244 +2.498747084e-06 0.007101228274 -0.00508526355 0 -6.608148544 15.61908161 1071.160424 0.001867133956 +2.497997834e-06 -0.0037077168 -0.0005796816666 0 16.1183917 13.4674959 1049.326031 0.001905985309 +2.497086239e-06 1.170937438e-05 -0.01224093223 0 -3.739154205 -22.61022756 948.925294 0.002107647475 +2.498324118e-06 0.005230182563 -0.01277228893 0 5.074548679 -16.42041111 938.5239588 0.0021310058 +2.499556381e-06 -0.001187153538 0.002716723778 0 -7.841174374 3.295778577 902.9397953 0.002214987101 +2.499508478e-06 0.002523557427 -0.01165141823 0 -6.258586549 -7.94419501 1019.946058 0.001960888013 +2.496958949e-06 0.0008918400621 -0.008169769489 0 -19.11924972 -11.56450163 905.6251381 0.002208419263 +2.498058668e-06 0.0009772703331 0.01415910514 0 -2.860669305 20.2497788 1037.575717 0.00192757017 +2.498390293e-06 0.008181171711 -0.006009060885 0 -7.882109942 13.91134612 890.906986 0.002244903263 +2.494828848e-06 0.0085820542 0.007246074372 0 13.92142872 26.05933477 917.9841345 0.002178686891 +2.497498807e-06 0.006676155161 0.002248145356 0 12.06373675 15.61629623 881.9576704 0.002267682529 +2.499440175e-06 -0.006719397497 -0.0005349757732 0 -8.758709881 -4.881752922 947.5585549 0.002110687503 +2.498280267e-06 0.005133722611 -0.01279189187 0 14.00770455 8.645395678 887.3479423 0.002253907295 +2.497892293e-06 -0.009175698357 -0.01052228463 0 19.66680644 9.531719736 1064.122112 0.001879483546 +2.496449372e-06 -0.0007285268791 0.01437389286 0 -21.31902614 18.72015039 1064.103936 0.001879515648 +2.497757306e-06 0.003804529202 -0.001663922982 0 15.63225032 14.36265089 1002.016652 0.001995974814 +2.498726999e-06 -0.004011021066 -0.002528277787 0 -8.687366653 -11.63078055 909.6339321 0.002198686669 +2.499390276e-06 0.009867233895 0.01491069162 0 3.839867202 -9.805888974 953.5519167 0.002097421194 +2.499954584e-06 0.009996182919 0.001402968995 0 3.154309139 0.39498576 1054.770895 0.001896146366 +2.498744852e-06 0.002887744927 -0.0007843655418 0 -3.293446628 -13.87193503 899.7052417 0.002222950259 +2.494658781e-06 0.007120701657 0.00752392821 0 -17.52434477 30.25028375 1068.770663 0.001871308849 +2.498511469e-06 0.0009737258498 0.01035914954 0 17.77946554 -0.7753898889 1031.193945 0.001939499364 +2.496524682e-06 0.00624944733 0.0116590218 0 -13.82165693 23.68221634 1039.530105 0.001923946204 +2.498826625e-06 0.003857784411 -0.005351055893 0 14.16338909 -1.727689091 931.246567 0.002147658924 +2.49553606e-06 0.001668651844 0.01365304307 0 -11.75367762 26.05903487 956.1034465 0.002091823858 +2.498717858e-06 -0.006920736842 -0.001893099449 0 -13.6648633 -5.347001485 916.1667246 0.002183008776 +2.496086366e-06 0.001508961669 0.01272855543 0 21.33245457 -17.36160248 982.5256698 0.002035570226 +2.499596655e-06 0.003780826083 0.007795084189 0 -4.983452609 7.445462196 997.4616164 0.002005089687 +2.498258294e-06 0.008793153297 -0.0002933966531 0 16.85693062 -0.1800271355 902.9992732 0.002214841207 +2.499648209e-06 -0.004504854325 0.00616436701 0 7.065322734 3.850516783 959.2327339 0.002084999739 +2.499223913e-06 -0.004225228238 0.002076364048 0 -10.84224997 3.378496124 911.425781 0.002194364085 +2.499008476e-06 -0.009628465096 -0.009757849644 0 9.521164747 -11.68584425 1070.246759 0.001868727921 +2.498533791e-06 0.006671196437 0.01241847817 0 -13.88216206 -6.985367294 907.3167537 0.002204301851 +2.498111511e-06 -0.008630782869 0.00702937061 0 10.87216427 15.00070577 953.0029773 0.00209862933 +2.497985924e-06 -0.003062679069 -0.01122918385 0 -5.32762709 -20.18057939 1039.631513 0.001923758539 +2.495532317e-06 -0.002594811101 0.01141658342 0 -18.06055065 23.19940704 982.8989957 0.002034797074 +2.497805593e-06 0.006595647172 0.004111015534 0 18.10743585 -10.10718226 989.5437452 0.002021133487 +2.498198566e-06 -0.008924247632 0.009709514659 0 -13.43413198 12.76039663 975.8827118 0.002049426612 +2.496654668e-06 0.003118999433 0.001166440453 0 -14.32821551 -22.75557028 1039.083978 0.001924772243 +2.496995093e-06 -0.009721681508 0.003357180019 0 13.88686509 -19.02456981 960.3592215 0.002082554064 +2.496607752e-06 0.0028045918 -0.008134800307 0 15.10753795 -22.42906651 1037.691095 0.001927355848 +2.494731864e-06 2.116914839e-05 -0.007144450368 0 -16.52956532 -29.24437632 1034.084659 0.001934077624 +2.499458272e-06 -0.008161298977 0.01053043206 0 -3.831631661 -9.559564228 989.3468407 0.002021535742 +2.498267103e-06 0.005820388445 4.092756193e-05 0 -16.58510992 -3.145340878 906.5190327 0.002206241599 +2.499014893e-06 0.004027796513 -0.01067809208 0 -10.06032124 9.987545409 1009.799359 0.001980591473 +2.495001715e-06 -0.004392715483 -0.01462169284 0 18.78009623 -26.57382246 1028.413778 0.001944742517 +2.499171708e-06 -0.001533790315 0.01371116732 0 -10.78643784 -8.137176835 1049.646905 0.001905402656 +2.497273111e-06 -0.00733734237 0.001415898472 0 -23.59426595 0.7564933615 1010.422765 0.001979369496 +2.497643411e-06 0.004166964213 0.01413428382 0 2.081294515 23.16780833 1071.074988 0.001867282891 +2.499468753e-06 0.001308043646 -0.001015922134 0 -8.82397287 -5.608654517 1014.264252 0.001971872711 +2.494946749e-06 0.009580082293 -0.01026545496 0 14.15075669 -24.19525471 881.0201119 0.002270095737 +2.496277942e-06 0.005921446038 0.01195756705 0 22.84803182 6.956099451 874.8792458 0.002286029769 +2.49739899e-06 -0.004332591551 0.01274326145 0 13.54552524 17.67517842 975.9746336 0.002049233588 +2.495807192e-06 -0.001695130537 -0.001108049287 0 -16.89286286 19.87661248 900.2368879 0.002221637468 +2.496660671e-06 -0.006259960169 -0.004406631142 0 -17.35629822 -17.09493582 942.1933117 0.002122706641 +2.499150763e-06 0.004876588541 0.009651424396 0 -11.39801086 -0.7572404991 876.3966679 0.002282071661 +2.497993714e-06 0.005154519831 0.00846404759 0 -12.77457457 12.44910919 890.199842 0.002246686537 +2.498803049e-06 -0.005324217957 0.003673060464 0 -7.22332258 -13.20533416 972.6526378 0.002056232536 +2.498209662e-06 -0.004576383722 0.01463635342 0 -13.83134748 11.13454619 938.1060668 0.002131955086 +2.497248548e-06 0.003686947455 0.002382471075 0 17.35154866 -12.84118256 919.8238929 0.002174329255 +2.496833204e-06 0.002311308421 0.01040279567 0 22.98546061 -8.660085267 975.5407825 0.002050144941 +2.499954841e-06 0.002352008857 0.01312265679 0 -3.085119763 0.7683803485 1057.910509 0.001890519078 +2.498759924e-06 -0.007872963035 -0.01190928946 0 -11.97577747 -10.81512936 1024.44612 0.001952274464 +2.498351822e-06 -0.001489641671 0.008345906474 0 4.765628147 17.22654523 984.2087367 0.002032089256 +2.49838296e-06 -0.001423599762 -0.001579895276 0 -8.673047632 13.63649027 898.4328667 0.002226098437 +2.499076208e-06 -0.006724840477 0.01008604139 0 0.5697707456 14.25203527 1049.207622 0.001906200411 +2.499587549e-06 0.008310929756 0.008418099526 0 -6.747512355 -4.667093158 903.2626782 0.002214195326 +2.498283414e-06 0.0002995677944 -0.002170914451 0 -18.86397665 4.665818736 1048.497984 0.001907490555 +2.497137718e-06 -0.004505397202 0.01256672986 0 23.54565742 -8.87298865 1051.206377 0.001902575977 +2.496238757e-06 0.004457619181 -0.0009892094135 0 23.23812157 15.12662053 1010.387231 0.001979439109 +2.499165696e-06 0.009055711762 0.01068356305 0 -6.234828404 10.1202575 920.0858213 0.002173710271 +2.498530447e-06 -0.007333472981 -0.01069138788 0 12.33561326 -12.06376811 1006.207107 0.001987662368 +2.49672522e-06 -0.008251196141 0.0009616515948 0 -25.40356717 8.977667483 1052.2787 0.00190063716 +2.498422818e-06 -0.001466673198 -0.0101989963 0 10.89095952 -13.90629883 994.2998557 0.002011465644 +2.496175667e-06 -0.009793647658 -0.0005486825528 0 -29.26033736 -0.5406839484 1057.57527 0.00189111835 +2.499996507e-06 -0.009035089649 0.01245346932 0 0.7873447603 -0.2649396075 993.835814 0.002012404838 +2.499961028e-06 -0.004148451248 -0.003821042629 0 1.242803118 2.476355656 992.4267189 0.002015262147 +2.498369329e-06 -0.007185002719 0.005784657688 0 -12.28420716 -10.78012079 904.7798965 0.002210482359 +2.498125197e-06 0.006404824229 0.0119742318 0 -9.858272572 -17.58164 1040.658531 0.001921859995 +2.497597821e-06 0.004552273024 -0.006595038702 0 12.52742682 17.51655388 982.1442254 0.002036360799 +2.498836437e-06 0.005247552078 -0.001041675336 0 8.790706583 -13.25798705 1042.600576 0.00191828016 +2.494745123e-06 0.007607486784 0.005457707488 0 23.40350186 20.93475546 967.8250075 0.002066489277 +2.499775789e-06 0.008182114251 0.006318400805 0 0.9476788523 -6.861799021 1034.385784 0.001933514586 +2.499015033e-06 0.006329216701 -0.002642354658 0 -5.28310568 11.1744991 880.529938 0.002271359455 +2.499347344e-06 0.00509659803 -0.003267971976 0 -6.051663887 -8.321278223 900.490279 0.002221012316 +2.498227333e-06 -0.008825717079 0.01203374048 0 10.87581367 -13.34972087 914.2544811 0.00218757473 +2.498558405e-06 0.001714136587 0.01072555376 0 -16.62330865 7.156497137 1065.634221 0.001876816605 +2.498693226e-06 0.004544064333 0.006755067338 0 -5.521407514 -14.17619993 940.8681371 0.002125696387 +2.498405111e-06 0.008521427712 -0.001504959085 0 3.210215847 15.45461547 883.5820775 0.002263513544 +2.499435109e-06 -0.001555092665 0.001529571684 0 9.738145923 5.593053913 1056.445706 0.001893140356 +2.496026456e-06 0.0001406349055 -0.001410895956 0 19.26849438 -21.59068738 1025.916276 0.001949476821 +2.495999816e-06 -0.006438596514 0.005461518578 0 20.46872931 -17.83787157 959.3226408 0.002084804335 +2.497194467e-06 -0.001168930423 0.001510330159 0 24.05982124 3.250107775 1024.50388 0.001952164398 +2.499834984e-06 -0.003265667791 0.009909183634 0 -0.2125189022 5.10498705 889.3675181 0.002248789122 +2.498238934e-06 0.009576403056 -0.0103359635 0 -14.79335013 13.44740108 1064.967399 0.00187799176 +2.49811758e-06 -0.002097317521 -0.007815020951 0 -7.753856609 -16.91062928 958.5166043 0.00208655749 +2.497513736e-06 0.005532060005 6.799478782e-05 0 -20.81415056 -5.446391549 964.4710161 0.002073675586 +2.499747545e-06 -0.002817573384 0.005297439687 0 -7.332867319 -1.802940093 1062.664231 0.00188206203 +2.496569046e-06 0.006207039454 -0.008672744224 0 20.38793953 -10.69420096 878.4272187 0.002276796481 +2.497284299e-06 0.006771343905 -0.01342402424 0 -19.8937235 -14.2029352 1048.407347 0.00190765546 +2.496472604e-06 0.001106387689 -0.004789213969 0 15.91502792 -22.57475193 1039.355033 0.00192427028 +2.498345648e-06 0.00229932203 0.008686485901 0 1.722636095 -18.47235173 1019.684203 0.001961391571 +2.499864539e-06 -0.003103833417 0.01208428448 0 -2.149352149 4.770022797 1005.146199 0.001989760298 +2.499176353e-06 0.004875931963 -0.01239277777 0 2.231923507 -12.37088416 979.3032464 0.002042268324 +2.496781566e-06 0.005676329066 0.006395381314 0 -14.21743535 20.98880302 998.7236186 0.002002556025 +2.49602799e-06 0.002610128894 0.009314351091 0 8.147049788 26.99796348 999.9463403 0.002000107325 +2.49855235e-06 0.00339090596 -0.00110567396 0 11.14731335 -10.53922014 901.3731582 0.002218836873 +2.496025976e-06 -0.008239068477 -0.008548190435 0 2.616463159 -27.80629996 990.0749836 0.00202004902 +2.497371266e-06 0.00122594038 -0.001748783235 0 -22.11180167 -9.463381929 1048.545566 0.001907403994 +2.496465899e-06 0.003535062806 0.004324245919 0 -17.01716517 21.69563994 1036.581096 0.001929419713 +2.498830111e-06 0.00435318016 0.003341519153 0 -6.590783203 -13.92524308 1007.005327 0.001986086813 +2.499560117e-06 -0.008269596277 -0.0005474678124 0 0.5048011444 9.269909205 989.7064242 0.002020801271 +2.499458274e-06 -0.003124269145 -0.001440488524 0 -2.256039894 9.683073966 955.106179 0.002094008021 +2.498924538e-06 -0.003492149217 0.01100764554 0 -8.048860273 10.2319778 887.5104552 0.002253494579 +2.498919192e-06 -0.001692779432 0.005545156191 0 -10.50875893 -7.696667929 885.8217897 0.002257790476 +2.498730298e-06 0.0001595983049 -0.0009812507615 0 -3.926716072 14.47200014 940.8176378 0.002125810486 +2.496062138e-06 0.009388495088 0.01255453201 0 -12.90822822 25.41884072 1015.251924 0.001969954405 +2.4991643e-06 -0.0003571615089 -0.002584402438 0 -2.861137809 -11.57004185 921.7834091 0.002169707092 +2.497165591e-06 -0.003601235906 -0.002163832609 0 -15.05656009 -14.48933407 877.2657184 0.00227981096 +2.499278284e-06 -0.0002619575104 -0.01228471052 0 12.36802721 0.504455573 1030.187429 0.001941394298 +2.49933853e-06 0.001515714382 0.01375352743 0 2.884429031 11.19981005 1005.409123 0.001989239956 +2.49649331e-06 -0.008012230443 -0.005159277495 0 3.895297182 -23.96241677 916.2247203 0.002182870595 +2.497729562e-06 0.001891431701 0.001010014534 0 16.40466954 -15.55710037 1060.597725 0.001885729106 +2.496674282e-06 -0.004829656384 0.01358012811 0 20.84895468 11.73694524 927.2322248 0.002156956959 +2.499403702e-06 0.008928629649 0.01237953664 0 3.297248952 -10.35414376 994.9539073 0.00201014337 +2.497893428e-06 0.007214164282 0.00855571846 0 -5.521057617 -17.48951609 893.233765 0.002239055529 +2.496344088e-06 -0.009178083525 0.01340450229 0 -12.30698034 22.31559222 941.9347324 0.002123289365 +2.498629065e-06 0.008996722107 -0.005444680823 0 8.823719157 -13.05444534 951.3824538 0.002102204 +2.495656812e-06 0.003786285985 -0.003220679888 0 23.20893132 -18.68199186 1010.23776 0.001979731979 +2.498862511e-06 0.002982919062 -0.008036907446 0 -12.62972092 -7.48013078 973.0225876 0.002055450742 +2.498653741e-06 -0.003022319674 0.007507769871 0 8.930601761 -14.23818007 1024.065855 0.001952999399 +2.496897568e-06 -0.002438250929 -0.009180650879 0 8.010391638 -22.01580637 940.076705 0.002127485969 +2.49733557e-06 -0.003068074044 -0.007893351261 0 -21.27330673 -11.42211863 1045.563291 0.00191284451 +2.499191662e-06 9.743254632e-06 0.003925381182 0 11.73778887 -4.543595778 989.7845031 0.002020641861 +2.499068837e-06 0.005747098248 0.0004392125853 0 -3.923272045 11.51963637 891.621122 0.002243105228 +2.49750739e-06 -0.008521591597 -0.01215143054 0 -19.71192917 -6.741814213 932.7093303 0.002144290761 +2.498963488e-06 0.003080232521 0.004934521001 0 12.24901304 -4.803589747 913.6816144 0.002188946312 +2.495089086e-06 -0.005368791069 0.003786655557 0 -21.84799447 20.0453018 945.3984294 0.002115510178 +2.498196433e-06 -0.006033093161 -0.002407849689 0 17.38363792 -5.228763227 955.5410416 0.002093055047 +2.499533393e-06 0.003338709003 0.002940397952 0 -3.17982862 -7.937127778 885.0451968 0.0022597716 +2.496789841e-06 0.005173971653 0.004965021817 0 24.99085969 5.134074813 1006.399012 0.001987283351 +2.4958997e-06 -0.005458400985 -8.544774726e-05 0 -29.07193462 -8.062999193 1052.872459 0.001899565311 +2.498156585e-06 0.00862835004 0.01197962605 0 15.50595972 -11.31354886 999.3819695 0.002001236825 +2.496409102e-06 -0.009007631075 0.01280622025 0 -27.18764317 5.838832973 1037.079634 0.001928492215 +2.499373757e-06 -0.004264219645 0.001691410169 0 4.43715019 -10.92040759 1053.154657 0.001899056313 +2.499967174e-06 0.007183088767 -0.008430828836 0 -2.410667917 -0.09872845408 941.6256837 0.002123986245 +2.496494301e-06 -0.0001541832369 0.01214039173 0 15.81988622 19.45023355 946.3451311 0.002113393871 +2.4983047e-06 0.007619689805 -0.01029362775 0 -10.05586246 -13.8197285 927.9423334 0.002155306346 +2.499766981e-06 0.002052484946 -0.00313054227 0 6.292156378 -1.297280956 941.0503747 0.002125284739 +2.49775649e-06 -0.002488716571 -0.005822346588 0 -15.51679233 -11.70476917 917.2547221 0.00218041941 +2.499213176e-06 -0.009923913828 0.009229094535 0 2.44822201 12.93954655 1049.66737 0.001905365506 +2.497455069e-06 -0.009200589103 -0.000491927932 0 -20.79158063 5.598482717 954.0435771 0.002096340301 +2.499153978e-06 0.006527027139 0.001830052498 0 -0.2073775251 -11.39532844 876.0681851 0.002282927327 +2.497029905e-06 0.006275059143 -0.0004913197341 0 24.42151587 -0.5601046859 1001.827684 0.0019963513 +2.493776428e-06 0.006794916922 0.01408917806 0 -15.05944169 28.25448032 906.6567265 0.002205906537 +2.499422448e-06 0.005663817148 0.001407221965 0 1.234349624 -10.28191944 963.4592999 0.002075853127 +2.499599547e-06 -0.004206869053 0.005793492123 0 0.7991462754 -9.268330025 1039.424102 0.001924142413 +2.498442322e-06 0.009553599418 -0.01092813305 0 -18.61449121 0.7414796411 1055.212953 0.001895352018 +2.493197973e-06 0.00720622485 0.01290620592 0 19.73316403 31.07151701 996.9323398 0.002006154199 +2.496589872e-06 -0.0008189407038 -0.01025637999 0 24.33895045 -11.97671779 1038.16177 0.001926482036 +2.499814927e-06 0.009395938492 0.004830430252 0 -2.958852019 5.605498679 1041.80652 0.001919742257 +2.498941989e-06 0.009741025167 0.00210802156 0 -1.833704363 -13.47649729 934.8275228 0.002139432089 +2.496337303e-06 0.007276941603 0.00108550546 0 24.83702943 14.3031317 1058.371877 0.001889694958 +2.496614698e-06 -0.007493365239 0.00843072284 0 -16.85737193 -19.6575259 994.7041591 0.002010648072 +2.499281636e-06 -0.007094587525 0.004859315932 0 2.7035724 11.82618476 1011.981584 0.001976320549 +2.499784867e-06 0.009162899288 0.003299823375 0 4.878955399 -3.100344033 881.2463784 0.002269512873 +2.498615274e-06 0.00914074955 0.01113712253 0 16.36430173 1.718902494 988.537423 0.002023190982 +2.49267064e-06 -0.007915907912 0.01257097764 0 -22.47328546 27.88259846 934.3304283 0.002140570337 +2.499726644e-06 0.004912360432 -0.009101061746 0 -0.1701499887 7.715529466 1043.695931 0.001916266933 +2.493707238e-06 -0.008712974028 0.003033160062 0 -28.15502284 -21.14672221 991.6202335 0.002016901161 +2.494052804e-06 0.000999648259 0.00928876631 0 20.9855041 29.41915554 1046.869025 0.001910458665 +2.494841843e-06 0.005141957495 -0.009495308481 0 23.86463627 -24.26743217 1058.854059 0.001888834428 +2.497825909e-06 -0.004228087845 -0.007744408452 0 -4.896593947 21.76619456 1069.565598 0.001869918035 +2.494685964e-06 0.003769433266 0.009435481054 0 16.99905416 26.8958823 975.1982923 0.002050864953 +2.496535905e-06 -0.003855166957 0.008929614988 0 -0.49482437 26.98491938 1024.845544 0.001951513584 +2.499627423e-06 -0.003350716378 -0.007997996472 0 -3.931609101 6.452527735 875.2719946 0.00228500399 +2.4995467e-06 -0.006446031835 -0.005098043731 0 -8.102139007 -3.572551719 929.9122547 0.002150740556 +2.498701339e-06 0.007124197846 0.007751135307 0 -1.030586364 -15.78047258 981.0624406 0.002038606226 +2.495039301e-06 0.009795636465 -0.001378704999 0 30.30341192 -11.91201295 1032.957746 0.001936187619 +2.498330761e-06 0.003816225217 0.00296706395 0 -13.42890615 -11.07607799 952.4650414 0.0020998146 +2.497302945e-06 -0.001980050947 0.00314060872 0 14.40793656 16.4716454 941.8644513 0.002123447803 +2.498720255e-06 0.007075394997 0.006798256603 0 -11.53837375 -8.354202684 890.2448986 0.002246572829 +2.494994942e-06 -0.007158880602 -0.006897114927 0 -23.92816243 16.05529671 910.0794588 0.002197610308 +2.496990174e-06 0.009497067714 0.008488410779 0 -13.77285818 22.33829272 1069.129507 0.001870680761 +2.497457726e-06 -0.00318239281 -0.005542781116 0 -8.810763175 -21.70225402 1038.347871 0.001926136756 +2.497934673e-06 0.000478869956 -0.01316599842 0 9.971395276 -15.00051937 885.9843247 0.002257376281 +2.494605726e-06 0.008343834709 0.00907294146 0 21.09426859 21.99441698 927.0640812 0.002157348171 +2.495559495e-06 -0.006218689447 -0.009759517894 0 -25.4992704 -12.76573227 956.250724 0.002091501685 +2.497614918e-06 -0.007513576248 -0.01257081084 0 -21.27310249 8.586588848 1049.987179 0.001904785164 +2.499757501e-06 0.004686829471 0.01289265339 0 6.416096417 -0.2960316559 922.246615 0.002168617339 +2.498809709e-06 -0.008206715663 0.01124643677 0 14.18453275 6.154358005 1001.958632 0.001996090394 +2.499711998e-06 0.006746631577 -0.01491322345 0 -7.254184282 -2.563266344 1013.691083 0.001972987662 +2.499438546e-06 -0.00297148345 -0.005284483046 0 -9.647072188 -0.8423425387 913.7682435 0.002188738791 +2.497574903e-06 0.009760119426 0.007926855837 0 -6.136334841 20.32314365 963.6044491 0.002075540438 +2.496224206e-06 -0.009198598755 0.001043643616 0 16.8816433 -20.38814731 962.6986043 0.002077493404 +2.499673596e-06 0.0008197224606 -0.01070149463 0 -7.235373394 2.023533898 929.8217176 0.002150949975 +2.497374696e-06 0.0002309979266 -0.001842143952 0 18.80910451 -14.16002715 1027.05133 0.001947322341 +2.49614083e-06 0.004367107982 -0.001017777007 0 16.31527024 -19.5240451 915.3029923 0.002185068788 +2.499342342e-06 -0.009361167802 0.01038914481 0 -3.852036651 9.810004484 918.8592267 0.002176611979 +2.496989867e-06 -0.008790433016 0.0102492886 0 -17.02764573 -19.38828402 1051.194191 0.001902598034 +2.499496252e-06 -0.004982930087 -0.009336896196 0 -3.856500402 8.20794121 903.4304853 0.002213784052 +2.495347145e-06 0.001691198284 -0.01067378946 0 8.671579389 -31.4403148 1068.388912 0.001871977496 +2.49786052e-06 -0.007258746005 -0.01330876478 0 17.69993671 -10.35588673 991.0396057 0.002018082818 +2.496974182e-06 -0.003923656922 0.01364899707 0 0.5007552694 21.6859671 881.3753623 0.002269180744 +2.497158577e-06 0.001943870517 -0.008364039722 0 20.75173945 -3.890672375 885.2954696 0.002259132763 +2.497100229e-06 0.0004161415761 0.0002750003943 0 -19.1276525 -16.97035699 1061.344939 0.001884401505 +2.497025926e-06 -0.009843288972 -0.005768384705 0 10.01934149 -21.95176151 988.9545719 0.002022337584 +2.495821582e-06 -0.009884533403 0.008899705242 0 8.076600338 28.79452084 1033.860235 0.001934497462 +2.497531054e-06 -0.008314068639 -0.01295429627 0 13.60721094 -14.18194906 884.1411275 0.002262082305 +2.49436191e-06 -0.008660497582 -0.006278892299 0 -19.55108112 -24.10307287 923.4432891 0.002165807065 +2.498369405e-06 -0.002000831719 0.004379955819 0 14.38823564 12.02887272 1038.248141 0.001926321774 +2.497839608e-06 -0.009620146789 0.00543513593 0 -3.792198997 19.23473749 942.8545163 0.00212121803 +2.498347129e-06 0.007089358205 0.002580321499 0 -17.2627742 3.952567645 973.7868438 0.002053837565 +2.495382176e-06 0.002576188133 -0.002554187381 0 -19.96310918 21.66836224 968.8042385 0.002064400547 +2.498853831e-06 -0.005252049225 -0.01179774979 0 -1.880699043 -13.69426349 912.8135279 0.002191028002 +2.493684651e-06 -0.009902661438 -0.0141040928 0 -27.77321744 -20.76718377 974.8549694 0.002051587223 +2.499132118e-06 0.007491823677 0.006992969429 0 1.284574236 13.64121526 1039.844235 0.001923364994 +2.498289624e-06 -0.007368038306 -0.01303562999 0 4.25368407 -17.60017625 978.7503683 0.002043421964 +2.497615612e-06 0.001881659338 -0.01492907917 0 -12.76535843 15.87284611 932.424469 0.002144945855 +2.499962599e-06 -0.0008199549792 0.006142092962 0 1.557296767 2.030930101 935.7395275 0.002137346923 +2.498998637e-06 -0.00254461694 -0.01450642547 0 10.52715822 -7.084811658 896.5160421 0.002230858017 +2.495028067e-06 0.006998694749 0.004945288806 0 23.97443205 21.70797269 1024.86345 0.001951479487 +2.49830186e-06 0.0008934754878 0.00656696073 0 18.05156844 5.860054432 1029.577693 0.001942544029 +2.498697661e-06 -0.009097322426 0.00761342075 0 5.27004701 -13.46659679 895.856844 0.002232499549 +2.497394773e-06 0.003729427578 -0.001359079694 0 -6.909308264 -21.82010885 1002.30115 0.001995408267 +2.495882613e-06 0.004823448416 0.001263226499 0 18.85234291 -22.24003883 1015.366703 0.001969731717 +2.497286959e-06 0.00683758351 0.001919667721 0 8.093533673 19.39728166 901.9305865 0.002217465546 +2.498868903e-06 -0.003078504368 -0.01216208307 0 6.412763158 11.74294871 889.4317055 0.002248626834 +2.496394598e-06 0.002676180978 0.005472471016 0 20.33103063 -14.1852428 922.6977372 0.002167557066 +2.499117916e-06 0.005193408425 0.003034487574 0 10.19639274 -7.69146724 961.4637689 0.002080161588 +2.49954701e-06 -0.007424537973 0.00290311598 0 -8.453533287 0.5249228212 889.7849908 0.002247734026 +2.499313238e-06 0.00239062801 -0.01199249348 0 10.126295 3.850226599 924.2904166 0.002163822067 +2.498728479e-06 -0.0002959763911 0.003876945265 0 -2.226427444 14.12240357 896.3551005 0.00223125857 +2.495047443e-06 0.002885014601 -0.001516009618 0 -19.42538659 -19.65231972 877.3415851 0.002279613817 +2.499014512e-06 0.005462794947 0.006590218053 0 9.591791741 11.25611718 1053.227206 0.0018989255 +2.499936878e-06 -0.009298317861 -0.001310014527 0 -2.974270862 1.413376086 926.7952184 0.002157974017 +2.495670447e-06 0.002421571268 -0.005904701797 0 23.38159541 19.27244056 1029.040231 0.001943558609 +2.497421241e-06 -0.009378594039 -0.009513429904 0 -21.59222051 -6.406218286 991.35317 0.0020174445 +2.499070665e-06 0.008658852363 0.004093501442 0 1.333733583 13.04156426 961.4511109 0.002080188974 +2.495555167e-06 -0.008924294212 -0.006282668507 0 -27.31900082 -9.949102894 974.487107 0.002052361684 +2.497724167e-06 0.005727672731 0.004312986368 0 9.59610735 -16.57295603 897.326415 0.002228843336 +2.499075156e-06 0.007609544592 -0.009884308262 0 7.713288283 12.34300689 1070.037905 0.001869092666 +2.497447294e-06 -0.004131654012 -0.009360768087 0 -23.82168629 -0.7101394928 1054.347195 0.001896908353 +2.497996895e-06 -0.007953201691 -0.002007406536 0 -11.65938005 -15.96682276 987.4717277 0.002025374442 +2.495600698e-06 0.008332684143 0.01333799087 0 3.95278657 28.48243858 968.7816422 0.002064448698 +2.499668081e-06 0.009948749943 -0.0005071544414 0 -6.377138841 -4.343580908 946.9602085 0.002112021162 +2.499514131e-06 -0.003196654897 0.01372527147 0 -5.884101176 6.976697414 925.7811411 0.002160337807 +2.496213686e-06 0.003061672738 0.005397124698 0 -9.226349898 27.43376679 1051.196019 0.001902594724 +2.49759434e-06 -0.0051526456 0.003821395165 0 4.413401551 22.88650264 1062.231147 0.001882829368 +2.499444542e-06 0.009774969011 -0.009562663359 0 -6.554538702 -9.12523411 1065.878898 0.001876385773 +2.497170821e-06 -0.00616313891 0.002216013602 0 -14.11502236 -20.04725996 1030.275345 0.001941228633 +2.498888978e-06 0.0006444778154 0.009846467155 0 -11.00636412 10.9014104 1039.057181 0.001924821883 +2.496833994e-06 0.007728956095 -0.01327142469 0 14.23675098 -22.42020915 1054.934178 0.00189585288 +2.498182173e-06 0.009134937176 0.0146563049 0 13.0317218 11.34797891 906.0181003 0.002207461418 +2.498468547e-06 -0.0003293561144 0.0128053645 0 -15.79499037 -1.577762759 906.7940447 0.002205572491 +2.499515054e-06 0.001953691118 -0.003042858895 0 9.523922322 2.837272266 1008.990154 0.001982179897 +2.497784012e-06 0.007355242865 0.001609883825 0 19.58346188 -10.87708779 1063.73181 0.001880173162 +2.497564131e-06 -0.001809965041 -0.005774869784 0 -6.602617209 -19.87155692 948.3548804 0.002108915177 +2.499503676e-06 -0.001814753106 0.01302331177 0 -8.585963013 -5.629554981 1030.415009 0.001940965516 +2.494630408e-06 -0.00660186979 -0.005434573463 0 -22.87230345 -25.75266819 1050.193177 0.001904411535 +2.496591321e-06 0.001894870857 -0.004927478281 0 17.53060609 -18.19217374 967.1068123 0.002068023898 +2.498999866e-06 -0.005469983779 -0.006827322675 0 -11.03703119 9.119556156 1012.159622 0.001975972917 +2.498654754e-06 -0.008665080308 -0.003538286446 0 0.6241100303 -16.33252171 996.2459167 0.002007536459 +2.4980932e-06 -0.007003231444 -0.008424573219 0 -18.17529489 8.474688084 1026.617075 0.001948146051 +2.497697806e-06 0.00328524983 -0.0108096125 0 19.28055929 -10.48823321 1022.519678 0.001955952578 +2.497913468e-06 0.009541577743 -0.01252606492 0 19.98906955 -2.04939349 983.3310196 0.002033903091 +2.496090099e-06 0.001668961318 -0.01238355941 0 24.50904307 11.75373747 971.4567223 0.002058763869 +2.496848003e-06 0.001403469238 -0.01024930965 0 -10.11086867 -19.95368737 890.5049265 0.002245916828 +2.499640038e-06 -0.00289256766 0.0007090147678 0 -7.593448464 3.718940713 996.4576971 0.002007109791 +2.497629038e-06 -0.007209974406 -0.001176378785 0 0.275842501 19.25907938 884.1953265 0.002261943645 +2.497080908e-06 0.004706503106 0.01464422647 0 23.37785573 2.187977153 971.33562 0.002059020547 +2.499907058e-06 -0.003173761819 0.01329269285 0 3.390281522 -2.374016017 959.954488 0.002083432105 +2.497543839e-06 -0.0004324866738 0.01455893661 0 13.3413608 -16.25188255 948.3408681 0.002108946337 +2.498541636e-06 0.005413665143 0.0003157065762 0 2.258400241 16.7200528 987.6900177 0.002024926813 +2.499849544e-06 0.001725525241 0.00379891319 0 -4.612213931 -3.539286767 1059.79811 0.001887151885 +2.497937964e-06 -0.00558985542 -0.01191471276 0 -5.633571259 -17.33074809 897.0811393 0.002229452736 +2.494930462e-06 0.007429795889 0.002030076887 0 24.88063384 14.45798443 903.0383798 0.002214745292 +2.498748479e-06 0.0001360767847 -0.01059159153 0 -13.85866071 -1.194328116 879.0475571 0.002275189759 +2.49662907e-06 -0.001802034839 -0.005325157761 0 14.3466098 -22.16178029 1016.242494 0.001968034217 +2.496522866e-06 -0.001487434749 -0.00967148162 0 -18.62866797 -19.87051776 1032.309737 0.001937403019 +2.49958315e-06 0.006957401535 -0.007404274279 0 4.793094808 6.730589453 904.8939933 0.002210203642 +2.497465213e-06 0.008442768692 -0.006058376923 0 7.579342999 21.56939212 1015.00719 0.001970429392 +2.497338939e-06 -0.006668233383 0.004783668369 0 18.48671963 10.79393778 927.5639224 0.00215618563 +2.498124812e-06 -0.00650645541 0.00724196594 0 -16.70243764 5.648336922 910.1928058 0.002197336638 +2.498921795e-06 -0.007505279505 -0.002923069757 0 7.651624171 11.64613569 948.7812253 0.002107967513 +2.493980325e-06 0.001428654534 0.01463070445 0 19.13078527 27.10382043 955.2596463 0.002093671608 +2.497062553e-06 0.002688509678 -0.008294714629 0 -7.424551788 -22.40402669 973.3324226 0.002054796443 +2.499087712e-06 0.003654261031 0.01115443963 0 -9.792926718 8.696154317 969.4439462 0.00206303831 +2.499112802e-06 -0.009989272202 -0.004742917127 0 -9.068019461 -7.511898118 883.8708394 0.002262774051 +2.498512214e-06 0.007711931495 -0.003328374177 0 -12.71061766 -9.013034382 903.1031228 0.002214586518 +2.495988663e-06 -0.0003751446865 0.01165509786 0 -0.3823370159 29.23021183 1031.449692 0.001939018467 +2.496550325e-06 -0.002143504811 -0.01113287634 0 -2.986283904 -23.64305616 906.8000876 0.002205557793 +2.498852449e-06 -0.006508035297 -0.000542865484 0 8.220939038 -12.9600447 1012.890715 0.001974546682 +2.496175343e-06 -0.007786847516 -0.0008502490749 0 16.13461715 23.52315379 1030.770866 0.00194029543 +2.497177301e-06 -0.008340721773 0.005903570952 0 -23.08663684 -5.828947754 1001.725073 0.001996555796 +2.499293755e-06 -0.005929083698 -0.01219095709 0 -5.851636472 -8.624801932 876.867147 0.002280847226 +2.495945417e-06 0.008329481268 -0.004332839046 0 25.64739834 -5.159214061 918.1309924 0.002178338403 +2.493537227e-06 0.008107008105 0.01101586706 0 22.0661441 23.26191778 890.9580794 0.002244774526 +2.499223596e-06 -0.002274667621 -0.01108113323 0 3.178600453 -12.72874962 1052.718095 0.001899843852 +2.497232214e-06 0.008199784113 -0.00479454801 0 17.72032275 -15.67870117 1005.233666 0.001989587166 +2.498884242e-06 -0.006201164061 -0.01442180716 0 0.2640460444 14.02587991 938.9326107 0.002130078322 +2.499490221e-06 0.009931513434 -0.01431100744 0 1.667675843 9.110436287 917.18518 0.002180584732 +2.499511631e-06 0.007268729336 0.009609644799 0 -9.475091887 0.7740653698 961.848861 0.002079328761 +2.499599776e-06 0.008989117527 -0.001289152515 0 -8.184399532 -1.84168605 937.6055363 0.002133093207 +2.496121382e-06 -0.005884203087 0.003044875846 0 -18.90935799 -17.1743838 916.6249279 0.002181917531 +2.498808345e-06 -0.00789506197 0.0007001054962 0 -10.19746929 -11.49345726 995.1052974 0.002009837557 +2.49684987e-06 0.009530190746 0.006943608786 0 -12.79771418 19.38713671 925.0570597 0.002162028795 +2.49887403e-06 -0.009862060314 -0.0118409891 0 7.208502545 11.8860787 926.1863043 0.00215939276 +2.498397089e-06 0.009008240695 -0.007098373552 0 15.92493061 -3.462622167 909.9852384 0.00219783785 +2.499464517e-06 -0.007807625486 -0.01107186129 0 -1.492523027 9.428539263 922.3501074 0.002168374009 +2.498786573e-06 6.982423831e-05 -0.004274681588 0 15.60743916 3.220964082 1022.792362 0.001955431105 +2.494248142e-06 0.002179584871 -0.009069589404 0 -19.26386107 -26.26478647 959.5117398 0.002084393465 +2.49795119e-06 0.007867415156 -0.0100511421 0 -8.147452251 18.74261579 1009.288898 0.001981593182 +2.497507952e-06 0.002794101983 -0.003852014865 0 19.79512701 -5.898101647 924.8524435 0.002162507126 +2.49748713e-06 -0.003477703803 -0.009004928735 0 9.809360445 20.07870435 996.4393627 0.002007146722 +2.498141368e-06 -0.0002035390725 -0.003831255783 0 -9.396713382 17.89578367 1048.078126 0.001908254691 +2.496900846e-06 0.002748330873 -0.0004463309376 0 24.14068848 -8.925981563 1033.324295 0.001935500801 +2.498190616e-06 -0.00405329572 -0.009520801173 0 17.18788929 -7.051396793 976.3443215 0.002048457656 +2.497743274e-06 0.005704372707 -0.007219773747 0 6.972379957 -19.81933487 988.6090273 0.002023044444 +2.498664224e-06 0.009954198352 0.005114304512 0 -7.590318763 12.15132524 876.3777522 0.002282120918 +2.498248829e-06 -0.002036853167 0.01200078441 0 12.14116389 12.32646767 924.263963 0.002163883999 +2.497868758e-06 0.002131974259 0.01077099669 0 -16.22408086 14.48637653 1053.161802 0.001899043429 +2.499667129e-06 0.007738545891 -0.009009458309 0 7.558077689 -3.560144336 1023.883968 0.001953346339 +2.496984685e-06 0.004611510504 0.01048056121 0 18.44296547 -11.84586837 892.1833896 0.002241691589 +2.499679528e-06 0.006219609464 0.00623876977 0 5.310801149 -4.637611718 880.6434668 0.002271066641 +2.496103063e-06 -0.004456117461 -0.01412910885 0 -25.30835595 -10.26196246 977.6570007 0.002045707235 +2.498207242e-06 -0.002705076043 0.004240635121 0 -6.494378666 -18.20664971 1020.575308 0.001959679001 +2.497713767e-06 -0.003276112657 -0.008307910105 0 -6.448857637 20.99270005 1026.658335 0.001948067757 +2.498354211e-06 -0.004199358774 0.006110791373 0 16.01445539 -10.9222194 1068.180342 0.001872343012 +2.49712346e-06 0.005171767944 0.01054854982 0 -21.66350075 9.18197028 980.5428672 0.00203968645 +2.496519194e-06 0.003342832271 0.003831469864 0 24.33761613 -8.385677292 975.1169559 0.00205103602 +2.499444231e-06 0.003784710681 -0.009512739074 0 0.7575477299 -10.64571415 1012.215672 0.001975863499 +2.497116297e-06 -0.008589859148 -0.006470228664 0 19.06570505 12.92923728 958.8100275 0.002085918944 +2.49540154e-06 0.008021381716 0.0006940912502 0 22.36774394 -23.22460694 1062.509077 0.00188233686 +2.499318588e-06 -0.0008934554551 0.009599950004 0 10.33143591 2.588621576 912.2584061 0.002192361273 +2.499872698e-06 0.0008972832514 0.0002405710984 0 -3.302528792 3.326927678 929.0205935 0.002152804807 +2.49952468e-06 -0.009009247278 0.001395579097 0 -10.01296166 2.667691728 1062.7094 0.001881982036 +2.498757047e-06 0.00355195744 -0.004504114841 0 -15.68343125 0.3638422567 994.7972329 0.002010459955 +2.496698977e-06 0.002911375817 -0.01427973618 0 -17.59739435 -18.78597739 1001.302043 0.0019973993 +2.497769625e-06 -0.002706303224 0.01492681407 0 -17.61718377 -12.90816629 1033.721291 0.001934757481 +2.497666758e-06 0.006111435895 -0.002881553443 0 6.633185887 -18.91812274 927.7033043 0.002155861676 +2.495984207e-06 -0.004512282661 0.01146666191 0 -16.85472361 23.38876003 1016.642637 0.001967259613 +2.495263197e-06 0.004039466651 0.0008326549223 0 -20.39578265 21.67347017 966.2366194 0.002069886361 +2.497905846e-06 0.009355898774 -0.007241122546 0 -6.723159656 18.30954301 952.7685396 0.002099145718 +2.497181486e-06 -0.005972141665 0.01141289318 0 19.13358751 9.249272636 894.7236722 0.00223532702 +2.497515971e-06 0.003604504117 -0.01454531736 0 23.09867004 1.972764955 1039.704532 0.001923623432 +2.498185504e-06 -0.007589829764 -0.01139067756 0 -6.896327635 17.02594005 964.0250944 0.002074634791 +2.49690167e-06 0.001386425355 0.01429958865 0 24.56910585 6.136045887 1016.827225 0.00196690249 +2.497359139e-06 -0.006870436622 0.01110197476 0 -5.993439166 23.8443445 1069.372445 0.001870255783 +2.495418597e-06 -0.0008157694666 0.007825596188 0 21.96547838 -17.64266561 930.0960166 0.002150315628 +2.49968285e-06 -0.007124358802 -0.000822859467 0 6.88192962 2.665512442 926.6040284 0.00215841928 +2.497731e-06 -0.004029057599 0.007634737096 0 -21.05077399 2.515626471 994.8716686 0.002010309534 +2.499545796e-06 0.002225486534 0.008238288194 0 -7.659807342 6.495943148 1053.68458 0.001898101233 +2.498927022e-06 0.006964410031 0.004892929508 0 13.07286785 0.4541611077 892.7966189 0.002240151853 +2.499643896e-06 -0.001890990655 0.006328651747 0 2.344680597 8.646389004 1061.491818 0.001884140759 +2.49563381e-06 0.008864626773 -0.0004868894094 0 18.52256491 -22.12438461 975.7990909 0.002049602237 +2.499612771e-06 0.005371579342 -0.003089937901 0 6.139602443 -5.236247517 916.8736228 0.002181325703 +2.497347748e-06 0.002310204045 0.0006569745275 0 1.064771179 -24.06737484 1045.581947 0.001912810378 +2.49397487e-06 0.009923965973 0.006347954103 0 24.54254054 -18.55270584 885.4788081 0.002258665009 +2.496333208e-06 0.005680720299 -6.766547682e-05 0 24.47514711 1.388122498 904.7436432 0.002210570934 +2.491460147e-06 0.00473761322 0.01446130404 0 26.47355478 30.53771081 976.6725927 0.002047769145 diff --git a/mcstasscript/tests/test_data_set/jupyter_demo.instr b/mcstasscript/tests/test_data_set/jupyter_demo.instr new file mode 100644 index 00000000..aecfd979 --- /dev/null +++ b/mcstasscript/tests/test_data_set/jupyter_demo.instr @@ -0,0 +1,92 @@ +/******************************************************************************** +* +* McStas, neutron ray-tracing package +* Copyright (C) 1997-2008, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* This file was written by McStasScript, which is a +* python based McStas instrument generator written by +* Mads Bertelsen in 2019 while employed at the +* European Spallation Source Data Management and +* Software Center +* +* Instrument: jupyter_demo +* +* %Identification +* Written by: Python McStas Instrument Generator +* Date: 08:19:46 on May 15, 2019 +* Origin: ESS DMSC +* %INSTRUMENT_SITE: Generated_instruments +* +* +* %Parameters +* +* %End +********************************************************************************/ + +DEFINE INSTRUMENT jupyter_demo ( +double wavelength = 3 // Wavelength emmited from source +) + +DECLARE +%{ +%} + +INITIALIZE +%{ +// Start of initialize for generated jupyter_demo +%} + +TRACE +COMPONENT Source = Source_simple( + yheight = 0.08, xwidth = 0.06, + dist = 2, focus_xw = 0.05, + focus_yh = 0.05, lambda0 = wavelength, + dlambda = 0.1) +AT (0,0,0) ABSOLUTE +ROTATED (0,0,0) ABSOLUTE + +COMPONENT Guide = Guide_gravity( + w1 = 0.05, h1 = 0.05, + w2 = 0.05, h2 = 0.05, + l = 8, m = 3.5, + G = -9.2) +AT (0,0,2) RELATIVE Source +ROTATED (0,0,0) RELATIVE Source + +COMPONENT sample = PowderN( + reflections = "Cu.laz", radius = 0.015, + yheight = 0.05) +AT (0,0,9) RELATIVE Guide +ROTATED (0,0,0) RELATIVE Guide + +COMPONENT PSD_4PI = PSD_monitor_4PI( + nx = 300, ny = 300, + filename = "PSD_4PI.dat", radius = 1, + restore_neutron = 1) +AT (0,0,0) RELATIVE sample +ROTATED (0,0,0) RELATIVE sample + +COMPONENT PSD = PSD_monitor( + nx = 200, ny = 200, + filename = "PSD.dat", xwidth = 0.1, + yheight = 0.1, restore_neutron = 1) +AT (0,0,1) RELATIVE sample +ROTATED (0,0,0) RELATIVE sample + +// Wavelength monitor for narrow range +COMPONENT L_mon = L_monitor( + nL = 150, filename = "L_mon.dat", + xwidth = 0.1, yheight = 0.1, + Lmin = wavelength - 0.3, Lmax = wavelength + 0.3, + restore_neutron = 1) +AT (0,0,0) RELATIVE PSD +ROTATED (0,0,0) RELATIVE PSD + +FINALLY +%{ +// Start of finally for generated jupyter_demo +%} + +END diff --git a/mcstasscript/tests/test_data_set/mccode.sim b/mcstasscript/tests/test_data_set/mccode.sim new file mode 100644 index 00000000..fcbe76de --- /dev/null +++ b/mcstasscript/tests/test_data_set/mccode.sim @@ -0,0 +1,112 @@ +McStas simulation description file for jupyter_demo. +Date: Wed May 15 08:19:52 2019 +Program: McStas 2.5 - Dec. 12, 2018 + +begin instrument: jupyter_demo + File: jupyter_demo3/mccode + Source: jupyter_demo.instr + Parameters: wavelength(double) + Trace_enabled: yes + Default_main: yes + Embedded_runtime: yes +end instrument + +begin simulation: jupyter_demo3 + Format: McCode with text headers + URL: http://www.mccode.org + Creator: McStas 2.5 - Dec. 12, 2018 + Instrument: jupyter_demo.instr + Ncount: 20000000 + Trace: no + Gravitation: no + Seed: 1557975068 + Directory: jupyter_demo3 + Nodes: 4 + Param: wavelength=1 +end simulation + +begin data + Date: Wed May 15 08:19:54 2019 (1557901194) + type: array_2d(300, 300) + Source: jupyter_demo (jupyter_demo.instr) + component: PSD_4PI + position: 0 0 11 + title: 4PI PSD monitor + Ncount: 20000000 + filename: PSD_4PI.dat + statistics: X0=-0.142189; dX=140.285; Y0=0.299127; dY=15.4061; + signal: Min=0; Max=1.99345e-05; Mean=5.17405e-09; + values: 0.000465664 4.478e-07 4.36906e+06 + xvar: Lo + yvar: La + xlabel: Longitude [deg] + ylabel: Latitude [deg] + zvar: I + zlabel: Signal per bin + xylimits: -180 180 -90 90 + variables: I I_err N +end data + +begin data + Date: Wed May 15 08:19:54 2019 (1557901194) + type: array_2d(200, 200) + Source: jupyter_demo (jupyter_demo.instr) + component: PSD + position: 0 0 12 + title: PSD monitor + Ncount: 20000000 + filename: PSD.dat + statistics: X0=0.000283843; dX=1.8828; Y0=-0.00309525; dY=1.71996; + signal: Min=0; Max=5.86601e-08; Mean=9.69694e-09; + values: 0.000387878 4.37886e-07 2.23517e+06 + xvar: X + yvar: Y + xlabel: X position [cm] + ylabel: Y position [cm] + zvar: I + zlabel: Signal per bin + xylimits: -5 5 -5 5 + variables: I I_err N +end data + +begin data + Date: Wed May 15 08:19:54 2019 (1557901194) + type: array_1d(150) + Source: jupyter_demo (jupyter_demo.instr) + component: L_mon + position: 0 0 12 + title: Wavelength monitor + Ncount: 20000000 + filename: L_mon.dat + statistics: X0=1.00415; dX=0.0576164; + signal: Min=0; Max=8.72065e-06; Mean=2.58585e-06; + values: 0.000387878 4.37886e-07 2.23517e+06 + xvar: L + yvar: (I,I_err) + xlabel: Wavelength [AA] + ylabel: Intensity + xlimits: 0.7 1.3 + variables: L I I_err N +end data + +begin data + Date: Fri Aug 27 12:51:34 2021 (1630061494) + type: array_2d(8, 12000) + Source: event_test (event_test.instr) + component: monitor + position: 0 0 2 + title: Intensity Position Position Position Velocity Velocity Velocity Time_Of_Flight Monitor (Square) + Ncount: 12000 + filename: event_dat_list.p.x.y.z.vx.vy.vz.t + statistics: X0=0; dX=0; Y0=0; dY=0; + signal: Min=2.49999e-06; Max=2.49999e-06; Mean=0; + values: 0 0 0 + xvar: List + yvar: p + xlabel: List of neutron events + ylabel: p x y z vx vy vz t + zvar: I + zlabel: Signal per bin + xylimits: 1 12000 1 8 + variables: p x y z vx vy vz t +end data diff --git a/mcstasscript/tests/test_declare_variable.py b/mcstasscript/tests/test_declare_variable.py new file mode 100644 index 00000000..8e6b1d21 --- /dev/null +++ b/mcstasscript/tests/test_declare_variable.py @@ -0,0 +1,179 @@ +import unittest +import unittest.mock + +from mcstasscript.helper.mcstas_objects import DeclareVariable + + +class Test_DeclareVariable(unittest.TestCase): + """ + Tests the DeclareVariable class that holds a declared variable + that will be written to the McStas declare section. + + """ + + def test_DeclareVariable_init_basic_type(self): + """ + Initialization with a type + """ + + var = DeclareVariable("double", "test") + + self.assertEqual(var.name, "test") + self.assertEqual(var.type, "double") + + def test_DeclareVariable_init_basic_type_value(self): + """ + Initialization with type and value + """ + + var = DeclareVariable("double", "test", value=518) + + self.assertEqual(var.name, "test") + self.assertEqual(var.type, "double") + self.assertEqual(var.value, 518) + + def test_DeclareVariable_init_basic_type_vector(self): + """ + Initialization with type and value + """ + + var = DeclareVariable("double", "test", + array=6, value=[1, 2.2, 3, 3.3, 4, 4.4]) + + self.assertEqual(var.name, "test") + self.assertEqual(var.type, "double") # space for easier writing + self.assertEqual(var.vector, 6) + self.assertEqual(var.value, [1, 2.2, 3, 3.3, 4, 4.4]) + + def test_DeclareVariable_init_basic_type_value_comment(self): + """ + Initialization with type, value and comment + """ + + var = DeclareVariable("double", "test", + value=518, comment="test comment /") + + self.assertEqual(var.name, "test") + self.assertEqual(var.type, "double") # Space for easier writing + self.assertEqual(var.value, 518) + self.assertEqual(var.comment, " // test comment /") + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_DeclareVariable_write_basic(self, mock_f): + """ + Testing that write to file is correct. Here a line is in a + instrument declare section. The write file operation is + mocked and check using a patch. Here a simple declare is + used. + """ + + var = DeclareVariable("double", "test") + with mock_f('test.txt', 'w') as m_fo: + var.write_line(m_fo) + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_called_once_with("double test;") + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_DeclareVariable_write_complex_float(self, mock_f): + """ + Testing that write to file is correct. Here a line is in an + instrument declare section. The write file operation is + mocked and check using a patch. Here a declare with a value + is used. (float value) + """ + + var = DeclareVariable("double", + "test", + value=5.4, + comment="test comment") + + with mock_f('test.txt', 'w') as m_fo: + var.write_line(m_fo) + + expected_write = "double test = 5.4; // test comment" + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_called_once_with(expected_write) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_DeclareVariable_write_complex_int(self, mock_f): + """ + Testing that write to file is correct. Here a line is in an + instrument declare section. The write file operation is + mocked and check using a patch. Here a declare with a value + is used. (integer value) + """ + + var = DeclareVariable("double", + "test", + value=5, + comment="test comment") + + with mock_f('test.txt', 'w') as m_fo: + var.write_line(m_fo) + + expected_write = "double test = 5; // test comment" + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_called_once_with(expected_write) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_DeclareVariable_write_simple_array(self, mock_f): + """ + Testing that write to file is correct. Here a line is in an + instrument declare section. The write file operation is + mocked and check using a patch. Here an array is declared. + """ + + var = DeclareVariable("double", + "test", + array=29, + comment="test comment") + + with mock_f('test.txt', 'w') as m_fo: + var.write_line(m_fo) + + expected_write = "double test[29]; // test comment" + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_called_once_with(expected_write) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_DeclareVariable_write_complex_array(self, mock_f): + """ + Testing that write to file is correct. Here a line is in an + instrument declare section. The write file operation is + mocked and check using a patch. Here an array is declared and + populated with the selected values. + """ + + var = DeclareVariable("double", + "test", + array=3, + value=[5, 4, 3.1], + comment="test comment") + + with mock_f('test.txt', 'w') as m_fo: + var.write_line(m_fo) + + expected_writes = [unittest.mock.call("double test[3] = {5,4,3.1}; // test comment")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + for c, w in zip(handle.write.call_args_list, expected_writes): + assert(c == w) + handle.write.assert_has_calls(expected_writes, any_order=False) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_dump_and_load.py b/mcstasscript/tests/test_dump_and_load.py new file mode 100644 index 00000000..f667d0b1 --- /dev/null +++ b/mcstasscript/tests/test_dump_and_load.py @@ -0,0 +1,321 @@ +import os +import os.path +import io +import unittest +import unittest.mock +import datetime + +from mcstasscript.interface.instr import McStas_instr +from mcstasscript.interface.instr import McXtrace_instr + +from mcstasscript.tests.helpers_for_tests import WorkInTestDir + +run_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), '.') + +def setup_instr_no_path(): + """ + Sets up a neutron instrument without a package_path + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McStas_instr("test_instrument") + + os.chdir(current_work_dir) + + return instrument + + +def setup_x_ray_instr_no_path(): + """ + Sets up a X-ray instrument without a package_path + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McXtrace_instr("test_instrument") + + os.chdir(current_work_dir) + + return instrument + + +def setup_instr_root_path(): + """ + Sets up a neutron instrument with root package_path + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McStas_instr("test_instrument", package_path="/") + + os.chdir(current_work_dir) + + return instrument + + +def setup_x_ray_instr_root_path(): + """ + Sets up a X-ray instrument with root package_path + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McXtrace_instr("test_instrument", package_path="/") + + os.chdir(current_work_dir) + + return instrument + + +def setup_instr_with_path(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McStas_instr("test_instrument", package_path=dummy_path) + + os.chdir(current_work_dir) # Return to previous workdir + + return instrument + + +def setup_x_ray_instr_with_path(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McXtrace_instr("test_instrument", package_path=dummy_path) + + os.chdir(current_work_dir) # Return to previous workdir + + return instrument + + +def setup_instr_with_input_path(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. In addition the input_path + is set to a folder in the test directory using an absolute path. + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + input_path = os.path.join(THIS_DIR, "test_input_folder") + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McStas_instr("test_instrument", + package_path=dummy_path, + input_path=input_path) + + os.chdir(current_work_dir) # Return to previous workdir + + return instrument + + +def setup_instr_with_input_path_relative(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. In addition the input_path + is set to a folder in the test directory using a relative path. + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McStas_instr("test_instrument", + package_path="dummy_mcstas", + input_path="test_input_folder") + + os.chdir(current_work_dir) # Return to previous workdir + + return instrument + + +def setup_populated_instr(): + """ + Sets up a neutron instrument with some features used and three components + """ + instr = setup_instr_root_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + instr.add_component("first_component", "test_for_reading") + instr.add_component("second_component", "test_for_reading") + instr.add_component("third_component", "test_for_reading") + + return instr + + +def setup_populated_instr_with_dummy_path(): + """ + Sets up a neutron instrument with some features used and three components + + Here uses the dummy mcstas installation as path and sets required + parameters so that a run is possible. + """ + instr = setup_instr_with_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + comp1 = instr.add_component("first_component", "test_for_reading") + comp1.gauss = 1.2 + comp1.test_string = "a_string" + comp2 = instr.add_component("second_component", "test_for_reading") + comp2.gauss = 1.4 + comp2.test_string = "b_string" + comp3 = instr.add_component("third_component", "test_for_reading") + comp3.gauss = 1.6 + comp3.test_string = "c_string" + + return instr + + +def setup_populated_x_ray_instr(): + """ + Sets up a X-ray instrument with some features used and three components + """ + instr = setup_x_ray_instr_root_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + instr.add_component("first_component", "test_for_reading") + instr.add_component("second_component", "test_for_reading") + instr.add_component("third_component", "test_for_reading") + + return instr + + +def setup_populated_x_ray_instr_with_dummy_path(): + """ + Sets up a x-ray instrument with some features used and three components + + Here uses the dummy mcstas installation as path and sets required + parameters so that a run is possible. + """ + instr = setup_x_ray_instr_with_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + comp1 = instr.add_component("first_component", "test_for_reading") + comp1.gauss = 1.2 + comp1.test_string = "a_string" + comp2 = instr.add_component("second_component", "test_for_reading") + comp2.gauss = 1.4 + comp2.test_string = "b_string" + comp3 = instr.add_component("third_component", "test_for_reading") + comp3.gauss = 1.6 + comp3.test_string = "c_string" + + return instr + + +def setup_populated_with_some_options_instr(): + """ + Sets up a neutron instrument with some features used and two components + """ + instr = setup_instr_root_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + comp1 = instr.add_component("first_component", "test_for_reading") + comp1.set_AT([0, 0, 1]) + comp1.set_GROUP("Starters") + comp2 = instr.add_component("second_component", "test_for_reading") + comp2.set_AT([0, 0, 2], RELATIVE="first_component") + comp2.set_ROTATED([0, 30, 0]) + comp2.set_WHEN("1==1") + comp2.yheight = 1.23 + instr.add_component("third_component", "test_for_reading") + + return instr + + +class TestDumpAndLoad(unittest.TestCase): + def test_dump_simple(self): + """ + Test a simple instrument can be dumped using with environment + """ + my_instrument = setup_populated_instr_with_dummy_path() + + with WorkInTestDir() as handler: + dump_name = "test_McStasScript_dump.dmp" + + if os.path.isfile(dump_name): + os.remove(dump_name) + + # Ensure dump file does not exist + self.assertFalse(os.path.isfile(dump_name)) + + # Write dump file + my_instrument.dump(dump_name) + + # Check it was written + self.assertTrue(os.path.isfile(dump_name)) + + # Delete dump file + os.remove(dump_name) + + def test_load_simple(self): + """ + Test a simple instrument can be loaded from dump + """ + my_instrument = setup_populated_instr_with_dummy_path() + my_instrument.add_parameter("check", comment="for testing") + + with WorkInTestDir() as handler: + dump_name = "test_McStasScript_dump.dmp" + my_instrument.dump(dump_name) + + loaded_instrument = McStas_instr.from_dump(dump_name) + os.remove(dump_name) + + self.assertTrue(loaded_instrument, McStas_instr) + self.assertTrue(loaded_instrument.name, my_instrument.name) + + self.assertEqual(len(loaded_instrument.component_list), 3) + self.assertEqual(loaded_instrument.component_list[0].name, "first_component") + self.assertEqual(loaded_instrument.component_list[2].name, "third_component") + self.assertEqual(loaded_instrument.parameters["check"].name, "check") + self.assertEqual(loaded_instrument.parameters["check"].comment, "for testing") + self.assertEqual(loaded_instrument.parameters["has_default"].value, 37) + diff --git a/mcstasscript/tests/test_for_reading.comp b/mcstasscript/tests/test_for_reading.comp new file mode 100644 index 00000000..018abc75 --- /dev/null +++ b/mcstasscript/tests/test_for_reading.comp @@ -0,0 +1,186 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* Component: Source_simple +* +* %I +* Written by: Kim Lefmann +* Date: October 30, 1997 +* Modified by: KL, October 4, 2001 +* Modified by: Emmanuel Farhi, October 30, 2001. Serious bug corrected. +* Origin: Risoe +* +* A circular neutron source with flat energy spectrum and arbitrary flux +* +* %D +* The routine is a circular neutron source, which aims at a square target +* centered at the beam (in order to improve MC-acceptance rate). The angular +* divergence is then given by the dimensions of the target. +* The neutron energy is uniformly distributed between lambda0-dlambda and +* lambda0+dlambda or between E0-dE and E0+dE. +* The flux unit is specified in n/cm2/s/st/energy unit (meV or Angs). +* +* This component replaces Source_flat, Source_flat_lambda, +* Source_flux and Source_flux_lambda. +* +* Example: Source_simple(radius=0.1, dist=2, focus_xw=.1, focus_yh=.1, E0=14, dE=2) +* +* %P +* radius: [m] Radius of circle in (x,y,0) plane where neutrons are generated. +* yheight: [m] Height of rectangle in (x,y,0) plane where neutrons are generated. +* xwidth: [m] Width of rectangle test comment +* target_index: [1] relative index of component to focus at, e.g. next is +1 this is used to compute 'dist' automatically. +* dist : [m] Distance to target along z axis. +* focus_xw: [m] Width of target +* focus_yh: [m] Height of target +* E0: [meV] Mean energy of neutrons. +* dE: [meV] Energy half spread of neutrons (flat or gaussian sigma). +* lambda0: [AA] Mean wavelength of neutrons. +* dlambda: Wavelength half spread of neutrons. +* flux: [1/(s*cm**2*st*energy unit)] flux per energy unit, Angs or meV if flux=0, the source emits 1 in 4*PI whole space. +* +* %E +*******************************************************************************/ + +DEFINE COMPONENT Source_simple +DEFINITION PARAMETERS () +SETTING PARAMETERS (radius=0.1, yheight=0, xwidth=0, +dist=0, focus_xw=.045, focus_yh=.12, +E0=0, dE=0, lambda0=0, dlambda=0, +int flux=1, gauss, int target_index=+1, string test_string) +OUTPUT PARAMETERS (pmul,square,srcArea) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ +DECLARE +%{ +double pmul, srcArea; +int square; +double tx,ty,tz; +%} +INITIALIZE +%{ +square = 0; +/* Determine source area */ +if (radius && !yheight && !xwidth ) { + square = 0; + srcArea = PI*radius*radius; + } else if(yheight && xwidth) { + square = 1; + srcArea = xwidth * yheight; + } + + if (flux) { + pmul=flux*1e4*srcArea/mcget_ncount(); + if (dlambda) + pmul *= 2*dlambda; + else if (dE) + pmul *= 2*dE; + } else { + gauss = 0; + pmul=1.0/(mcget_ncount()*4*PI); + } + + if (target_index && !dist) + { + Coords ToTarget; + ToTarget = coords_sub(POS_A_COMP_INDEX(INDEX_CURRENT_COMP+target_index),POS_A_CURRENT_COMP); + ToTarget = rot_apply(ROT_A_CURRENT_COMP, ToTarget); + coords_get(ToTarget, &tx, &ty, &tz); + dist=sqrt(tx*tx+ty*ty+tz*tz); + } else if (dist) { + tx = 0; + ty = 0; + tz = dist; + } + + + if (srcArea <= 0) { + printf("Source_simple: %s: Source area is <= 0 !\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + if (dist <= 0 || focus_xw <= 0 || focus_yh <= 0) { + printf("Source_simple: %s: Target area unmeaningful! (negative dist / focus_xw / focus_yh)\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + + if ((!lambda0 && !E0 && !dE && !dlambda)) { + printf("Source_simple: %s: You must specify either a wavelength or energy range!\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } + if ((!lambda0 && !dlambda && (E0 <= 0 || dE < 0 || E0-dE <= 0)) + || (!E0 && !dE && (lambda0 <= 0 || dlambda < 0 || lambda0-dlambda <= 0))) { + printf("Source_simple: %s: Unmeaningful definition of wavelength or energy range!\n ERROR - Exiting\n", + NAME_CURRENT_COMP); + exit(0); + } +%} +TRACE +%{ + double chi,E,lambda,v,r, xf, yf, rf, dx, dy, pdir; + + t=0; + z=0; + + if (square == 1) { + x = xwidth * (rand01() - 0.5); + y = yheight * (rand01() - 0.5); + } else { + chi=2*PI*rand01(); /* Choose point on source */ + r=sqrt(rand01())*radius; /* with uniform distribution. */ + x=r*cos(chi); + y=r*sin(chi); + } + randvec_target_rect_real(&xf, &yf, &rf, &pdir, + tx, ty, tz, focus_xw, focus_yh, ROT_A_CURRENT_COMP, x, y, z, 2); + + dx = xf-x; + dy = yf-y; + rf = sqrt(dx*dx+dy*dy+rf*rf); + + p = pdir*pmul; + + if(lambda0==0) { + if (!gauss) { + E=E0+dE*randpm1(); /* Choose from uniform distribution */ + } else { + E=E0+randnorm()*dE; + } + v=sqrt(E)*SE2V; + } else { + if (!gauss) { + lambda=lambda0+dlambda*randpm1(); + } else { + lambda=lambda0+randnorm()*dlambda; + } + v = K2V*(2*PI/lambda); + } + + vz=v*dist/rf; + vy=v*dy/rf; + vx=v*dx/rf; +%} + +MCDISPLAY +%{ + if (square == 1) { + + rectangle("xy",0,0,0,xwidth,yheight); + } else { + + circle("xy",0,0,0,radius); + } + if (dist) { + dashed_line(0,0,0, -focus_xw/2+tx,-focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, focus_xw/2+tx,-focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, focus_xw/2+tx, focus_yh/2+ty,tz, 4); + dashed_line(0,0,0, -focus_xw/2+tx, focus_yh/2+ty,tz, 4); + } +%} + +END diff --git a/mcstasscript/tests/test_formatting.py b/mcstasscript/tests/test_formatting.py new file mode 100644 index 00000000..ee6bfaf5 --- /dev/null +++ b/mcstasscript/tests/test_formatting.py @@ -0,0 +1,69 @@ +import unittest + +from mcstasscript.helper.formatting import is_legal_parameter +from mcstasscript.helper.formatting import is_legal_filename + + +class TestFormatting(unittest.TestCase): + """ + Tests the formatting functions + """ + def test_is_legal_parameter_simple(self): + """ + Check a legal parameter is legal + """ + test_name = "test_parameter_name1" + self.assertTrue(is_legal_parameter(test_name)) + + def test_is_legal_parameter_reject_space(self): + """ + A space should make the parameter name illegal + """ + test_name = "test_parameter name" + self.assertFalse(is_legal_parameter(test_name)) + + def test_is_legal_parameter_reject_first_number(self): + """ + The first character being a number is ilegal + """ + test_name = "2est_parameter_name" + self.assertFalse(is_legal_parameter(test_name)) + + def test_is_legal_parameter_reject_empty(self): + """ + An empty string should not be a legal name + """ + test_name = "" + self.assertFalse(is_legal_parameter(test_name)) + + def test_is_legal_filename_simple(self): + """ + Test with a legal filename + """ + test_name = "test_instrument1" + self.assertTrue(is_legal_filename(test_name)) + + def test_is_legal_filename_reject_forward_dash(self): + """ + A dash should make the filename illegal + """ + test_name = "test/instrument" + self.assertFalse(is_legal_filename(test_name)) + + def test_is_legal_filename_reject_backwards_dash(self): + """ + A backwards dash should make the filename illegal + """ + test_name = "test\\instrument" + self.assertFalse(is_legal_filename(test_name)) + + def test_is_legal_filename_rekect_space(self): + """ + A space should make the filename illegal + """ + test_name = "test instrument" + self.assertFalse(is_legal_filename(test_name)) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_functions.py b/mcstasscript/tests/test_functions.py new file mode 100644 index 00000000..f13e4b34 --- /dev/null +++ b/mcstasscript/tests/test_functions.py @@ -0,0 +1,388 @@ +import os +import unittest + + +import numpy as np + +from mcstasscript.interface.functions import name_search +from mcstasscript.interface.functions import name_plot_options +from mcstasscript.interface.functions import load_data +from mcstasscript.interface.functions import load_metadata +from mcstasscript.interface.functions import load_monitor +from mcstasscript.data.data import McStasDataBinned +from mcstasscript.data.data import McStasMetaData + + +def set_dummy_MetaDataBinned_1d(name): + """ + Sets up a dummy MetaData object for a 1d dataset + + Parameters + ---------- + + name : str + base for filename, .dat will be appended + """ + + meta_data = McStasMetaData() + meta_data.component_name = name + meta_data.dimension = 50 + meta_data.filename = name + ".dat" + + return meta_data + + +def set_dummy_McStasDataBinned_1d(name): + """ + Sets up a dummy McStasData object for a 1d dataset + + Parameters + ---------- + + name : str + base for filename, .dat will be appended + """ + meta_data = set_dummy_MetaDataBinned_1d(name) + + intensity = np.arange(20) + error = 0.5 * np.arange(20) + ncount = 2 * np.arange(20) + axis = np.arange(20)*5.0 + + return McStasDataBinned(meta_data, intensity, error, ncount, xaxis=axis) + + +def set_dummy_MetaDataBinned_2d(name): + """ + Sets up a dummy MetaData object for a 2d dataset + + Parameters + ---------- + + name : str + base for filename, .dat will be appended + """ + meta_data = McStasMetaData() + meta_data.component_name = name + meta_data.dimension = [50, 100] + meta_data.filename = name + ".dat" + + return meta_data + + +def set_dummy_McStasDataBinned_2d(name): + """ + Sets up a dummy McStasData object for a 2d dataset + + Parameters + ---------- + + name : str + base for filename, .dat will be appended + """ + + meta_data = set_dummy_MetaDataBinned_2d(name) + + intensity = np.arange(20).reshape(4, 5) + error = 0.5 * np.arange(20).reshape(4, 5) + ncount = 2 * np.arange(20).reshape(4, 5) + + return McStasDataBinned(meta_data, intensity, error, ncount) + + +def setup_McStasData_array(): + """ + Sets up an list of McStasData objects, similar to simulation output + """ + + data_list = [] + + data_list.append(set_dummy_McStasDataBinned_1d("A_1d_thing")) + data_list.append(set_dummy_McStasDataBinned_2d("A_2d_thing")) + data_list.append(set_dummy_McStasDataBinned_1d("Another_1d_thing")) + data_list.append(set_dummy_McStasDataBinned_2d("Another_2d_thing")) + data_list.append(set_dummy_McStasDataBinned_2d("A_third_2d_thing")) + + hero_object = set_dummy_McStasDataBinned_2d("Hero") + hero_object.metadata.dimension = 123 + hero_object.plot_options.colormap = "very hot" + + data_list.append(hero_object) + + data_list.append(set_dummy_McStasDataBinned_2d("After_hero_2d")) + data_list.append(set_dummy_McStasDataBinned_2d("Last_object_2d")) + + return data_list + + +def setup_McStasData_array_repeat(): + """ + Sets up an list of McStasData objects, similar to simulation output + + Have Hero twice in naming, testing search capability + """ + + data_list = [] + + data_list.append(set_dummy_McStasDataBinned_1d("A_1d_thing")) + data_list.append(set_dummy_McStasDataBinned_2d("A_2d_thing")) + data_list.append(set_dummy_McStasDataBinned_1d("Another_1d_thing")) + data_list.append(set_dummy_McStasDataBinned_2d("Another_2d_thing")) + data_list.append(set_dummy_McStasDataBinned_2d("Hero")) + + hero_object = set_dummy_McStasDataBinned_2d("Big_Hero") + hero_object.metadata.dimension = 123 + hero_object.plot_options.colormap = "very hot" + + data_list.append(hero_object) + + data_list.append(set_dummy_McStasDataBinned_2d("After_hero_2d")) + data_list.append(set_dummy_McStasDataBinned_2d("Last_object_2d")) + + return data_list + + +class Test_name_search(unittest.TestCase): + """ + Test the utility function called name_search which finds and + returns a McStasData set with a given name from a list of + McStasData objects. + """ + + def test_name_search_read(self): + """ + Test that Hero object can be found and check the unique dimension + + Here the name is used + """ + + data_list = setup_McStasData_array() + + hero_object = name_search("Hero", data_list) + + self.assertEqual(hero_object.metadata.dimension, 123) + + def test_name_search_filename_read(self): + """ + Test that Hero object can be found and check the unique dimension + + Here the name of the datafile is used + """ + + data_list = setup_McStasData_array() + + hero_object = name_search("Hero.dat", data_list) + + self.assertEqual(hero_object.metadata.dimension, 123) + + def test_name_search_read_repeat(self): + """ + Test that Hero object can be found and check the unique dimension + Here the used data set has two monitors with Hero in the name + + Here the name of the monitor is used + """ + + data_list = setup_McStasData_array_repeat() + + hero_object = name_search("Big_Hero", data_list) + + self.assertEqual(hero_object.metadata.dimension, 123) + + def test_name_search_read_duplicate(self): + """ + Test simple case with duplicated name, search should return list + """ + + data_list = setup_McStasData_array_repeat() + + # Adds another dataset with a name already in the data_list + hero_object = set_dummy_McStasDataBinned_2d("Big_Hero") + hero_object.metadata.dimension = 321 + hero_object.plot_options.colormap = "very hot" + + data_list.append(hero_object) + + # Now two McStasData objects match the Big_Hero name + results = name_search("Big_Hero", data_list) + + self.assertEqual(type(results), list) + # Check two results are returned + self.assertEqual(len(results), 2) + + # Check they have the correct dimensions + self.assertEqual(results[0].metadata.dimension, 123) + self.assertEqual(results[1].metadata.dimension, 321) + + def test_name_search_read_error(self): + """ + Check an NameError is returned when no match is found + """ + + data_list = setup_McStasData_array() + + with self.assertRaises(NameError): + name_search("Hero8", data_list) + + def test_name_search_type_error_not_list(self): + """ + Check error is given even when data list is just single object + """ + + data_list = set_dummy_McStasDataBinned_2d("Last_object_2d") + + with self.assertRaises(RuntimeError): + name_search("Hero", data_list) + + def test_name_search_type_error_not_McStasData(self): + """ + Checks that an error is returned if the given dataset contains + non McStasData objects + """ + + data_list = [1, 2, 3] + + with self.assertRaises(RuntimeError): + name_search(1, data_list) + + +class Test_name_plot_options(unittest.TestCase): + """ + Test the utility function called name_plot_options which sends + keyword arguments to the set_plot_options method of the + McStasData object in a given list that has the given name. + + """ + + def test_name_plot_options_simple(self): + """ + Check set_plot_options can modify given attribute + """ + + data_list = setup_McStasData_array() + name_plot_options("Hero", data_list, colormap="Oranges") + hero_object = name_search("Hero", data_list) + self.assertEqual(hero_object.plot_options.colormap, "Oranges") + + def test_name_plot_options_duplicate(self): + """ + Test case where several McStasData objects are modified since + the internal name_search finds multiple matches + """ + + data_list = setup_McStasData_array() + + hero_object = set_dummy_McStasDataBinned_2d("Hero") + hero_object.metadata.dimension = 321 + hero_object.plot_options.colormap = "absurdly hot" + + data_list.append(hero_object) + + name_plot_options("Hero", data_list, colormap="Blues") + + results = name_search("Hero", data_list) + + self.assertEqual(len(results), 2) + self.assertEqual(results[0].plot_options.colormap, "Blues") + self.assertEqual(results[1].plot_options.colormap, "Blues") + + +class Test_load_data(unittest.TestCase): + """ + Testing the load data function which calls ManagedMcrun, which was + tested elsewhere. Since the load data is tested elsewhere, this + function has just a single test to check the interface. + """ + def test_mcrun_load_data_PSD4PI(self): + """ + Use test_data_set to test load_data for PSD_4PI + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + results = load_data("test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(len(results), 4) + + PSD_4PI = results[0] + + self.assertEqual(PSD_4PI.name, "PSD_4PI") + self.assertEqual(PSD_4PI.metadata.dimension, [300, 300]) + self.assertEqual(PSD_4PI.metadata.limits, [-180, 180, -90, 90]) + self.assertEqual(PSD_4PI.metadata.xlabel, "Longitude [deg]") + self.assertEqual(PSD_4PI.metadata.ylabel, "Latitude [deg]") + self.assertEqual(PSD_4PI.metadata.title, "4PI PSD monitor") + self.assertEqual(PSD_4PI.Ncount[4][1], 4) + self.assertEqual(PSD_4PI.Intensity[4][1], 1.537334562E-10) + self.assertEqual(PSD_4PI.Error[4][1], 1.139482296E-10) + + +class Test_load_metadata(unittest.TestCase): + """ + Testing the load metadata function which calls ManagedMcrun, which + was tested elsewhere. Since the load metadata is tested elsewhere, + this function has just a single test to check the interface. + """ + def test_mcrun_load_metadata_PSD4PI(self): + """ + Use test_data_set to test load_metadata for PSD_4PI + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + metadata = load_metadata("test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(len(metadata), 4) + + PSD_4PI = metadata[0] + self.assertEqual(PSD_4PI.dimension, [300, 300]) + self.assertEqual(PSD_4PI.limits, [-180, 180, -90, 90]) + self.assertEqual(PSD_4PI.xlabel, "Longitude [deg]") + self.assertEqual(PSD_4PI.ylabel, "Latitude [deg]") + self.assertEqual(PSD_4PI.title, "4PI PSD monitor") + +class Test_load_monitor(unittest.TestCase): + """ + Testing the load monitor function which calls ManagedMcrun, which + was tested elsewhere. Since the load monitor is tested elsewhere, this + function has just a single test to check the interface. + """ + def test_mcrun_load_monitor_PSD4PI(self): + """ + Use test_data_set to test load_monitor for PSD_4PI + """ + + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + metadata = load_metadata("test_data_set") + PSD_4PI = metadata[0] + monitor = load_monitor(PSD_4PI, "test_data_set") + + os.chdir(current_work_dir) # Reset work directory + + self.assertEqual(monitor.name, "PSD_4PI") + self.assertEqual(monitor.metadata.dimension, [300, 300]) + self.assertEqual(monitor.metadata.limits, [-180, 180, -90, 90]) + self.assertEqual(monitor.metadata.xlabel, "Longitude [deg]") + self.assertEqual(monitor.metadata.ylabel, "Latitude [deg]") + self.assertEqual(monitor.metadata.title, "4PI PSD monitor") + self.assertEqual(monitor.Ncount[4][1], 4) + self.assertEqual(monitor.Intensity[4][1], 1.537334562E-10) + self.assertEqual(monitor.Error[4][1], 1.139482296E-10) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_input_folder/test_for_structure.comp b/mcstasscript/tests/test_input_folder/test_for_structure.comp new file mode 100644 index 00000000..9ebc4a33 --- /dev/null +++ b/mcstasscript/tests/test_input_folder/test_for_structure.comp @@ -0,0 +1,125 @@ +/******************************************************************************* +* +* McStas, neutron ray-tracing package +* Copyright 1997-2002, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* %I +* Written by: Kim Lefmann +* Date: May 7, 2001 +* Version: $Revision$ + Origin: Risoe +* Release: McStas 1.6 +* +* Rectangular 1D PSD, measuring intensity vs. vertical position, x +* +* %D +* +* Example: PSDlin_monitor(nx=20, filename="Output.x", xmin=-0.1, xmax=0.1, ymin=-0.1, ymax=0.1) +* +* %P +* INPUT PARAMETERS: +* +* xmin: Lower x bound of detector opening [m] +* xmax: Upper x bound of detector opening [m] +* ymin: Lower y bound of detector opening [m] +* ymax: Upper y bound of detector opening [m] +* xwidth: Width of detector. Overrides xmin, xmax [m] +* yheight: Height of detector. Overrides ymin, ymax [m] +* nx: Number of x bins [1] +* filename: Name of file in which to store the detector image [string] +* restore_neutron: If set, the monitor does not influence the neutron state [1] +* nowritefile: [1] If set, monitor will skip writing to disk +* +* OUTPUT PARAMETERS: +* +* PSDlin_N: Array of neutron counts +* PSDlin_p: Array of neutron weight counts +* PSDlin_p2: Array of second moments +* +* %E +******************************************************************************/ + +DEFINE COMPONENT PSDlin_monitor +DEFINITION PARAMETERS (nx=20) +SETTING PARAMETERS (string filename=0, xmin=-0.05, xmax=0.05, ymin=-0.05, ymax=0.05, + xwidth=0, yheight=0, restore_neutron=0, int nowritefile=0) +OUTPUT PARAMETERS (PSDlin_N, PSDlin_p, PSDlin_p2) +/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */ + +DECLARE + %{ + double PSDlin_N[nx]; + double PSDlin_p[nx]; + double PSDlin_p2[nx]; + %} + +INITIALIZE + %{ + int i; + + if (xwidth > 0) { xmax = xwidth/2; xmin = -xmax; } + if (yheight > 0) { ymax = yheight/2; ymin = -ymax; } + + if ((xmin >= xmax) || (ymin >= ymax)) { + printf("PSDlin_monitor: %s: Null detection area !\n" + "ERROR (xwidth,yheight,xmin,xmax,ymin,ymax). Exiting", + NAME_CURRENT_COMP); + exit(0); + } + + for (i=0; ixmin && xymin && y= nx) || (i<0)) + { + printf("FATAL ERROR: wrong positioning in linear PSD. i= %i \n",i); + exit(1); + } + PSDlin_N[i]++; + PSDlin_p[i] += p; + PSDlin_p2[i] += p*p; + } + if (restore_neutron) { + RESTORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p); + } + %} + +SAVE + %{ + if (!nowritefile) { + DETECTOR_OUT_1D( + "Linear PSD monitor", + "Test", + "TEST I", + "x", xmin, xmax, nx, + &PSDlin_N[0],&PSDlin_p[0],&PSDlin_p2[0], + filename); + } + %} + +MCDISPLAY +%{ + + multiline(5, (double)xmin, (double)ymin, 0.0, + (double)xmax, (double)ymin, 0.0, + (double)xmax, (double)ymax, 0.0, + (double)xmin, (double)ymax, 0.0, + (double)xmin, (double)ymin, 0.0); +%} + +END diff --git a/mcstasscript/tests/test_instrument.instr b/mcstasscript/tests/test_instrument.instr new file mode 100644 index 00000000..c40822f9 --- /dev/null +++ b/mcstasscript/tests/test_instrument.instr @@ -0,0 +1,62 @@ +/******************************************************************************** +* +* McStas, neutron ray-tracing package +* Copyright (C) 1997-2008, All rights reserved +* Risoe National Laboratory, Roskilde, Denmark +* Institut Laue Langevin, Grenoble, France +* +* This file was written by McStasScript, which is a +* python based McStas instrument generator written by +* Mads Bertelsen in 2019 while employed at the +* European Spallation Source Data Management and +* Software Centre +* +* Instrument: test_instrument +* +* %Identification +* Written by: Python McXtrace Instrument Generator +* Date: 10:16:46 on June 09, 2023 +* Origin: ESS DMSC +* %INSTRUMENT_SITE: Generated_instruments +* +* +* %Parameters +* +* %End +********************************************************************************/ + +DEFINE INSTRUMENT test_instrument ( +double theta = 1, +double has_default = 37 +) + +DECLARE +%{ +double two_theta; +%} + +INITIALIZE +%{ +// Start of initialize for generated test_instrument +two_theta = 2.0*theta; +%} + +TRACE +COMPONENT first_component = test_for_reading( + gauss = 1.2, test_string = a_string) +AT (0, 0, 0) ABSOLUTE + +COMPONENT second_component = test_for_reading( + gauss = 1.4, test_string = b_string) +AT (0, 0, 0) ABSOLUTE + +COMPONENT third_component = test_for_reading( + gauss = 1.6, test_string = c_string) +AT (0, 0, 0) ABSOLUTE + +FINALLY +%{ +// Start of finally for generated test_instrument +%} + +END diff --git a/mcstasscript/tests/test_instrument_checker.py b/mcstasscript/tests/test_instrument_checker.py new file mode 100644 index 00000000..4c3490f3 --- /dev/null +++ b/mcstasscript/tests/test_instrument_checker.py @@ -0,0 +1,152 @@ +import unittest +import os +import mcstasscript as ms +from mcstasscript.tests.helpers_for_tests import WorkInTestDir + +from mcstasscript.tools.instrument_checker import has_component, has_parameter, all_parameters_set + + +def setup_instr_with_path(): + """ + Sets up an instrument with a valid package_path, but it points to + the dummy installation in the test folder. + """ + + with WorkInTestDir() as handler: + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + dummy_path = os.path.join(THIS_DIR, "dummy_mcstas") + instrument = ms.McStas_instr("test_instrument", + package_path=dummy_path, + executable_path=dummy_path) + + return instrument + + +def setup_populated_instr(): + """ + Sets up a neutron instrument with some features used and three components + """ + instr = setup_instr_with_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_parameter("int", "n_pulses") + + instr.add_declare_var("double", "two_theta") + + instr.append_initialize("two_theta = 2.0*theta;") + + instr.add_component("first_component", "test_for_reading") + instr.add_component("second_component", "test_for_reading") + instr.add_component("third_component", "test_for_reading") + + return instr + + +class TestToolInstrumentChecker(unittest.TestCase): + """ + Various test of instrument_checker functions + """ + + def test_simple_case_name(self): + """ + check has_component of given name + """ + instr = setup_populated_instr() + self.assertTrue(has_component(instr, component_name="second_component")) + + def test_simple_case_name_not_found(self): + """ + check has_component returns false when name is not there + """ + instr = setup_populated_instr() + self.assertFalse(has_component(instr, component_name="fourth_component")) + + def test_simple_case_type(self): + """ + check has_component can find component of given type + """ + instr = setup_populated_instr() + self.assertTrue(has_component(instr, component_type="test_for_reading")) + + def test_simple_case_type_not_found(self): + """ + check has_component returns false when component type is not found + """ + instr = setup_populated_instr() + self.assertFalse(has_component(instr, component_type="Arm")) + + def test_case_both(self): + """ + check has_component when given both name and component type + """ + instr = setup_populated_instr() + self.assertTrue(has_component(instr, component_name="first_component", + component_type="test_for_reading")) + + def test_case_both_not_found_name(self): + """ + check has_component returns false when name not found but type is + """ + instr = setup_populated_instr() + self.assertFalse(has_component(instr, component_name="", + component_type="test_for_reading")) + + def test_case_both_not_found_type(self): + """ + check has_component returns false when type not found but name is + """ + instr = setup_populated_instr() + self.assertFalse(has_component(instr, component_name="first_component", + component_type="Arm")) + + def test_parameter_found(self): + """ + check has_parameter of given name + """ + instr = setup_populated_instr() + self.assertTrue(has_parameter(instr, parameter_name="theta")) + + def test_parameter_not_found(self): + """ + check has_parameter returns false when of given name + """ + instr = setup_populated_instr() + self.assertFalse(has_parameter(instr, parameter_name="bogus")) + + def test_parameter_found_with_type(self): + """ + check has_parameter of given name and type + """ + instr = setup_populated_instr() + self.assertTrue(has_parameter(instr, parameter_name="n_pulses", parameter_type="int")) + + def test_parameter_found_with_type_default(self): + """ + check has_parameter of given name and type (using default double) + """ + instr = setup_populated_instr() + self.assertTrue(has_parameter(instr, parameter_name="theta", parameter_type="double")) + + def test_parameter_found_with_wrong_type(self): + """ + check has_parameter of given name + """ + instr = setup_populated_instr() + self.assertFalse(has_parameter(instr, parameter_name="theta", parameter_type="int")) + + def test_all_parameters_set_not_set(self): + """ + check all_parameters_set returns false when not all parameters are set of given name + """ + instr = setup_populated_instr() + self.assertFalse(all_parameters_set(instr)) + + def test_all_parameters_set_actually_set(self): + """ + check all_parameters_set returns false when all parameters are set of given name + """ + instr = setup_populated_instr() + + instr.set_parameters(theta=37, n_pulses=3) + self.assertTrue(all_parameters_set(instr)) \ No newline at end of file diff --git a/mcstasscript/tests/test_instrument_diagram.py b/mcstasscript/tests/test_instrument_diagram.py new file mode 100644 index 00000000..a3ce7cd3 --- /dev/null +++ b/mcstasscript/tests/test_instrument_diagram.py @@ -0,0 +1,200 @@ +import os +import unittest +import unittest.mock +import copy + +from mcstasscript.instrument_diagram.arrow import Arrow +from mcstasscript.instrument_diagram.box import ComponentBox +from mcstasscript.instrument_diagram.connections import IndexConnection +from mcstasscript.instrument_diagram.connections import Lane +from mcstasscript.instrument_diagram.connections import ConnectionList +from mcstasscript.instrument_diagram.canvas import DiagramCanvas +from mcstasscript.tests.helpers_for_tests import WorkInTestDir +from mcstasscript.interface.instr import McStas_instr + + +def setup_instr_no_path(): + """ + Sets up a neutron instrument without a package_path + """ + + with WorkInTestDir() as handler: + instrument = McStas_instr("test_instrument") + + return instrument + +def setup_populated_instr(): + """ + Sets up a neutron instrument with some features used and three components + """ + instr = setup_instr_no_path() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + A = instr.add_component("first_component", "test_for_reading") + B = instr.add_component("second_component", "test_for_reading") + C = instr.add_component("third_component", "test_for_reading") + D = instr.add_component("fourth_component", "test_for_reading") + + B.set_AT(0, RELATIVE=A) + C.set_AT(0, RELATIVE=A) + D.set_AT(0, RELATIVE=B) + + return instr + +def setup_boxes(): + + instr = setup_populated_instr() + + comp1 = instr.get_component("first_component") + comp2 = instr.get_component("third_component") + + return ComponentBox(comp1), ComponentBox(comp2) + + +class TestInstrumentDiagram(unittest.TestCase): + """ + Instrument diagram is not critical for operation, tests just to ensure it runs + """ + + def test_Box_initialize_name(self): + """ + Check that a box can be initialized with a string + """ + name = "ABSOLUTE" + box = ComponentBox(name) + + self.assertEqual(box.name, name) + + def test_Box_initialize_comp(self): + """ + Check that a box can be initialized with a component object + """ + instr = setup_populated_instr() + comp = instr.get_last_component() + + box = ComponentBox(comp) + + self.assertEqual(box.name, "fourth_component") + + def test_Arrow_initialize(self): + """ + Check that an arrow can be initialized with two Box instances + """ + + box1, box2 = setup_boxes() + + arrow = Arrow(origin=box1, target=box2, kind="KIND") + + self.assertEqual(arrow.origin, box1) + self.assertEqual(arrow.target, box2) + self.assertEqual(arrow.kind, "KIND") + + string_box = ComponentBox("string") + arrow = Arrow(origin=box1, target=string_box, kind="KIND_2") + + self.assertEqual(arrow.origin, box1) + self.assertEqual(arrow.target, string_box) + self.assertEqual(arrow.kind, "KIND_2") + + def test_IndexConnection(self): + """ + Ensure IndexConnections find overlap + """ + + A = IndexConnection(2, 8) + B = IndexConnection(9, 10) + C = IndexConnection(5, 7) + + self.assertTrue(A.compatible_with(B)) + self.assertTrue(B.compatible_with(C)) + self.assertFalse(A.compatible_with(C)) + + def test_Lane(self): + """ + Ensure a lane reports when a connection can be added and saves allowed + """ + + lane = Lane() + + self.assertTrue(lane.add_connection(2, 8)) + self.assertTrue(lane.add_connection(9, 12)) + self.assertTrue(lane.add_connection(7, 8)) # Same destination allowed + self.assertFalse(lane.add_connection(3, 9)) + + # ensure only allowed connections added + self.assertEqual(len(lane.connections), 3) + + def test_connection(self): + """ + Ensure connection lists can return included connections and set lanes + """ + c_list = ConnectionList() + + box_list = [] + name_list = [] + for index in range(0,10): + name = "box_" + str(index) + name_list.append(name) + box_list.append(ComponentBox(name)) + + # Add some connections to list + c_list.add(box_list[0], box_list[5]) # Lane 1 # Connection 0 + c_list.add(box_list[6], box_list[8]) # Lane 1 # Connection 1 + c_list.add(box_list[1], box_list[7]) # Lane 2 # Connection 2 + c_list.add(box_list[3], box_list[6]) # Lane 3 # Connection 3 + c_list.add(box_list[0], box_list[8]) # Lane 4 # Connection 4 + + targets_for_0 = c_list.get_targets_for_origin(box_list[0]) + self.assertEqual(targets_for_0, [box_list[5], box_list[8]]) + + c_list.distribute_lane_numbers(name_list) + + connections = c_list.get_connections() + self.assertEqual(connections[0].lane_number, 1) + self.assertEqual(connections[1].lane_number, 1) + self.assertEqual(connections[2].lane_number, 2) + self.assertEqual(connections[3].lane_number, 3) + self.assertEqual(connections[4].lane_number, 4) + + def test_DiagramCanvas_initialize(self): + """ + Ensure the DiagramCanvas can be initialized + """ + string_box_0 = ComponentBox("string_0") + string_box_1 = ComponentBox("string_1") + string_box_2 = ComponentBox("string_2") + arrow_0 = Arrow(origin=string_box_1, target=string_box_0) + arrow_1 = Arrow(origin=string_box_2, target=string_box_0) + arrow_0.set_lane(1) + arrow_1.set_lane(1) + + left_side_arrows = [arrow_0, arrow_1] + + boxes = [string_box_0, string_box_1, string_box_2] + + arrow_0 = Arrow(origin=string_box_0, target=string_box_1) + arrow_1 = Arrow(origin=string_box_1, target=string_box_0, kind="JUMP") + arrow_2 = Arrow(origin=string_box_0, target=string_box_2, kind="Union") + arrow_0.set_lane(1) + arrow_1.set_lane(1) + arrow_2.set_lane(2) + right_side_arrows = [arrow_0, arrow_1, arrow_2] + + # Get component_categories + with WorkInTestDir() as handler: + instrument = McStas_instr("test_instrument") + + component_reader = instrument.component_reader + component_categories = copy.deepcopy(component_reader.component_category) + + color_choices = {"AT": "blue", "ROTATED": "red", "JUMP": "black", "GROUP": [0.4, 0.4, 0.4], "Union": "green"} + + canvas = DiagramCanvas(left_side_arrows=left_side_arrows, component_boxes=boxes, + right_side_arrows=right_side_arrows, + component_categories=component_categories, + colors=color_choices) + diff --git a/mcstasscript/tests/test_parameter_variable.py b/mcstasscript/tests/test_parameter_variable.py new file mode 100644 index 00000000..047bad6f --- /dev/null +++ b/mcstasscript/tests/test_parameter_variable.py @@ -0,0 +1,185 @@ +import unittest +import unittest.mock + +from mcstasscript.helper.mcstas_objects import provide_parameter +from mcstasscript.helper.mcstas_objects import write_parameter + +class Test_ParameterVariable(unittest.TestCase): + """ + Tests the ParameterVariable class that holds an input parameter + for the instrument. + + """ + + def test_ParameterVariable_init_basic(self): + """ + Smallest possible initialization + """ + + par = provide_parameter("test") + self.assertEqual(par.name, "test") + + def test_ParameterVariable_init_basic_type(self): + """ + Initialization with a type + """ + + par = provide_parameter("double", "test") + + self.assertEqual(par.name, "test") + self.assertEqual(par.type, "double") + + def test_ParameterVariable_init_basic_type_value(self): + """ + Initialization with type and value + """ + + par = provide_parameter("double", "test", value=518) + + self.assertEqual(par.name, "test") + self.assertEqual(par.type, "double") + self.assertEqual(par.value, 518) + + def test_ParameterVariable_init_basic_type_value_comment(self): + """ + Initialization with type, value and comment + """ + + par = provide_parameter("double", "test", value=518, + comment="test comment /") + + self.assertEqual(par.name, "test") + self.assertEqual(par.type, "double") + self.assertEqual(par.value, 518) + self.assertEqual(par.comment, "test comment /") + + def test_ParameterVariable_init_basic_value_comment(self): + """ + Initialization with value and comment + """ + + par = provide_parameter("test", value=518, + comment="test comment /") + + self.assertEqual(par.name, "test") + self.assertEqual(par.type, "") + self.assertEqual(par.value, 518) + self.assertEqual(par.comment, "test comment /") + + def test_ParameterVariable_init_options_initialize(self): + """ + Initialization with value and comment + """ + + par = provide_parameter("test", value=2, + options=[1, 2, 3.1]) + + self.assertEqual(par.name, "test") + self.assertEqual(par.type, "") + self.assertEqual(par.value, 2) + self.assertEqual(par.get_options(), [1, 2, 3.1]) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_ParameterVariable_write_basic(self, mock_f): + """ + Testing that write to file is correct. Here a line is in an + instrument parameter section. The write file operation is + mocked and check using a patch. Here a simple parameter is + used. + """ + + par = provide_parameter("double", "test") + with mock_f('test.txt', 'w') as m_fo: + write_parameter(m_fo, parameter=par, stop_character="") + + expected_writes = [unittest.mock.call("double test"), + unittest.mock.call(""), + unittest.mock.call(""), + unittest.mock.call("\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_has_calls(expected_writes, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_ParameterVariable_write_complex_float(self, mock_f): + """ + Testing that write to file is correct. Here a line is in an + instrument parameter section. The write file operation is + mocked and check using a patch. Here a parameter with a value + is used. (float value) + """ + + par = provide_parameter("double", "test", value=5.4, + comment="test comment") + + with mock_f('test.txt', 'w') as m_fo: + write_parameter(m_fo, parameter=par, stop_character=")") + + expected_writes = [unittest.mock.call("double test"), + unittest.mock.call(" = 5.4"), + unittest.mock.call(")"), + unittest.mock.call("// test comment"), + unittest.mock.call("\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_has_calls(expected_writes, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_ParameterVariable_write_complex_int(self, mock_f): + """ + Testing that write to file is correct. Here a line is in an + instrument parameter section. The write file operation is + mocked and check using a patch. Here a parameter with a value + is used. (integer value) + """ + + par = provide_parameter("double", "test", value=5, + comment="test comment") + + with mock_f('test.txt', 'w') as m_fo: + write_parameter(m_fo, parameter=par, stop_character=")") + + expected_writes = [unittest.mock.call("double test"), + unittest.mock.call(" = 5"), + unittest.mock.call(")"), + unittest.mock.call("// test comment"), + unittest.mock.call("\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_has_calls(expected_writes, any_order=False) + + @unittest.mock.patch('__main__.__builtins__.open', + new_callable=unittest.mock.mock_open) + def test_ParameterVariable_write_complex_string(self, mock_f): + """ + Testing that write to file is correct. Here a line is in an + instrument parameter section. The write file operation is + mocked and check using a patch. Here a parameter with a value + is used. (string value) + """ + + par = provide_parameter("double", "test", value="\"Al\"", + comment="test comment") + + with mock_f('test.txt', 'w') as m_fo: + write_parameter(m_fo, parameter=par, stop_character=",") + + expected_writes = [unittest.mock.call("double test"), + unittest.mock.call(" = \"Al\""), + unittest.mock.call(","), + unittest.mock.call("// test comment"), + unittest.mock.call("\n")] + + mock_f.assert_called_with('test.txt', 'w') + handle = mock_f() + handle.write.assert_has_calls(expected_writes, any_order=False) + + +if __name__ == '__main__': + unittest.main() diff --git a/mcstasscript/tests/test_plot_interface.py b/mcstasscript/tests/test_plot_interface.py new file mode 100644 index 00000000..9eb3021d --- /dev/null +++ b/mcstasscript/tests/test_plot_interface.py @@ -0,0 +1,227 @@ +import unittest +import unittest.mock +import io +import numpy as np + +import matplotlib +matplotlib.use('Agg') # Set the backend to Agg + +from mcstasscript.jb_interface.plot_interface import PlotInterface +from mcstasscript.jb_interface.plot_interface import LogCheckbox +from mcstasscript.jb_interface.plot_interface import ColormapDropdown +from mcstasscript.jb_interface.plot_interface import OrdersOfMagField + +from mcstasscript.data.data import McStasMetaData +from mcstasscript.data.data import McStasDataBinned + +import ipywidgets as widgets + +def set_dummy_MetaDataBinned_1d(): + """ + Sets up simple McStasMetaData object with dimension, 1d case + """ + meta_data = McStasMetaData() + meta_data.component_name = "component for 1d" + meta_data.dimension = 50 + + meta_data.limits = [0, 1] + meta_data.xlabel = "" + meta_data.ylabel = "" + meta_data.title = "" + meta_data.filename = "dummy" + + return meta_data + + +def set_dummy_McStasDataBinned_1d(): + """ + Sets up simple McStasData object, 1d case + """ + meta_data = set_dummy_MetaDataBinned_1d() + + intensity = np.arange(20) + error = 0.5 * np.arange(20) + ncount = 2 * np.arange(20) + axis = np.arange(20)*5.0 + + return McStasDataBinned(meta_data, intensity, error, ncount, xaxis=axis) + + +def set_dummy_MetaDataBinned_2d(): + """ + Sets up simple McStasMetaData object with dimensions, 2d case + """ + meta_data = McStasMetaData() + meta_data.component_name = "test a component" + meta_data.dimension = [5, 4] + + meta_data.limits = [0, 1, 0, 1] + meta_data.xlabel = "" + meta_data.ylabel = "" + meta_data.title = "" + meta_data.filename = "dummy" + + return meta_data + + +def set_dummy_McStasDataBinned_2d(): + """ + Sets up simple McStasData object, 2d case + """ + meta_data = set_dummy_MetaDataBinned_2d() + + intensity = np.arange(20).reshape(4, 5) + error = 0.5 * np.arange(20).reshape(4, 5) + ncount = 2 * np.arange(20).reshape(4, 5) + + return McStasDataBinned(meta_data, intensity, error, ncount) + + +def fake_data(): + return [set_dummy_McStasDataBinned_1d(), + set_dummy_McStasDataBinned_2d(), + set_dummy_McStasDataBinned_2d()] + + +class FakeChange: + def __init__(self, new=None, old=None, name=None): + self.new = new + self.old = old + self.name = name + + +class TestPlotInterface(unittest.TestCase): + """ + Test of PlotInterface, mainly the set functions. + Each set function does run the main update_plot function, ensuring + this does not throw obvious errors under a mixed set of circumstances. + The update_plot function is not tested directly. + """ + def test_initialization_without_data(self): + """ + Initialize PlotterInterface without arguments + """ + + interface = PlotInterface() + self.assertEqual(interface.data, None) + + def test_initialization_with_data(self): + """ + Initialize PlotterInterface with data + """ + data = fake_data() + interface = PlotInterface(data) + + self.assertEqual(len(interface.data), 3) + self.assertEqual(interface.data[0].Intensity[5], 5) + self.assertEqual(interface.data[1].Intensity[2, 3], 13) + + def test_show_interface_return(self): + """ + Ensure the show_interface method returns a widget of type HBox + """ + interface = PlotInterface() + widget = interface.show_interface() + + self.assertIsInstance(widget, widgets.widgets.widget_box.HBox) + + def test_set_data(self): + """ + Initialize PlotterInterface without data, add later and ensure + monitor_dropdown received the data and applied it to widget options. + + Furthermore the widget options should be made unique as there are + two identical monitors in the fake data. + """ + + interface = PlotInterface() + self.assertEqual(interface.data, None) + + interface.show_interface() # Needed to set up monitor_dropdown + + interface.set_data(fake_data()) + self.assertEqual(len(interface.data), 3) + self.assertEqual(interface.data[0].Intensity[5], 5) + self.assertEqual(interface.data[1].Intensity[2, 3], 13) + + mon_drop = interface.monitor_dropdown + self.assertEqual(len(mon_drop.data), 3) + self.assertEqual(mon_drop.data[0].Intensity[5], 5) + self.assertEqual(mon_drop.data[1].Intensity[2, 3], 13) + + self.assertEqual(mon_drop.widget.options[0], "component for 1d") + self.assertEqual(mon_drop.widget.options[1], "test a component") + + # The last monitor is identical to the second, so the name is modified + self.assertEqual(mon_drop.widget.options[2], "test a component_1") + + def test_set_current_monitor(self): + """ + Check monitor can be set and that error occurs if wrong name given + """ + + interface = PlotInterface(fake_data()) + interface.show_interface() + + interface.set_current_monitor("test a component") + self.assertEqual(interface.current_monitor, "test a component") + + with self.assertRaises(NameError): + interface.set_current_monitor("component that doesnt exist") + + def test_set_log_mode(self): + """ + Check that set_log_mode works, even through widget + """ + + interface = PlotInterface() + interface.show_interface() + + self.assertFalse(interface.log_mode) + interface.set_log_mode(True) + self.assertTrue(interface.log_mode) + + log_checkbox = LogCheckbox(interface.log_mode, interface.set_log_mode) + + fake_change = FakeChange(new=False) + + log_checkbox.update(fake_change) + self.assertFalse(interface.log_mode) + + def test_set_orders_of_mag(self): + """ + Check that set orders of mag works, even through widget + """ + interface = PlotInterface() + interface.show_interface() + + interface.set_orders_of_mag(37) + self.assertEqual(interface.orders_of_mag, 37) + + log_orders_of_mag = OrdersOfMagField(interface.set_orders_of_mag) + + fake_change = FakeChange(new=42) + + log_orders_of_mag.update(fake_change) + self.assertEqual(interface.orders_of_mag, 42) + + def test_set_colormap(self): + """ + Check that set_colormap works, even through widget + """ + interface = PlotInterface() + interface.show_interface() + + interface.set_colormap("hot") + self.assertEqual(interface.colormap, "hot") + + colormap_dropdown = ColormapDropdown(interface.set_colormap) + + fake_change = FakeChange(new="Purples") + colormap_dropdown.update_cmap(fake_change) + self.assertEqual(interface.colormap, "Purples") + + + + + diff --git a/mcstasscript/tests/test_simulation_interface.py b/mcstasscript/tests/test_simulation_interface.py new file mode 100644 index 00000000..1d52f44b --- /dev/null +++ b/mcstasscript/tests/test_simulation_interface.py @@ -0,0 +1,211 @@ +import os +import io +import unittest +import unittest.mock +import ipywidgets as widgets + +import matplotlib +matplotlib.use('Agg') # Set the backend to Agg + +from mcstasscript.jb_interface.simulation_interface import SimInterface +from mcstasscript.jb_interface.simulation_interface import ParameterWidget +from mcstasscript.jb_interface.widget_helpers import parameter_has_default +from mcstasscript.jb_interface.widget_helpers import get_parameter_default +from mcstasscript.interface.instr import McStas_instr +from mcstasscript.interface.instr import McXtrace_instr + + +def setup_instr_root_path_McStas(): + """ + Sets up a neutron instrument with root package_path + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McStas_instr("test_instrument", package_path="/") + + os.chdir(current_work_dir) + + return instrument + +def setup_populated_instr_McStas(): + """ + Sets up a neutron instrument with some features used and three components + """ + instr = setup_instr_root_path_McStas() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + instr.add_component("first_component", "test_for_reading") + instr.add_component("second_component", "test_for_reading") + instr.add_component("third_component", "test_for_reading") + + return instr + +def setup_instr_root_path_McXtrace(): + """ + Sets up a neutron instrument with root package_path + """ + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + current_work_dir = os.getcwd() + os.chdir(THIS_DIR) # Set work directory to test folder + + instrument = McStas_instr("test_instrument", package_path="/") + + os.chdir(current_work_dir) + + return instrument + +def setup_populated_instr_McXtrace(): + """ + Sets up a neutron instrument with some features used and three components + """ + instr = setup_instr_root_path_McXtrace() + + instr.add_parameter("double", "theta") + instr.add_parameter("double", "has_default", value=37) + instr.add_declare_var("double", "two_theta") + instr.append_initialize("two_theta = 2.0*theta;") + + instr.add_component("first_component", "test_for_reading") + instr.add_component("second_component", "test_for_reading") + instr.add_component("third_component", "test_for_reading") + + return instr + + +class FakeChange: + def __init__(self, new=None, old=None, name=None): + self.new = new + self.old = old + self.name = name + + +class TestSimulationInterface(unittest.TestCase): + """ + Tests of simulation interface + """ + def test_initialization_McStas(self): + """ + Checking that interface can initialize from instrument and retrieve the + parameters that has a default value. + """ + + sim_interface = SimInterface(setup_populated_instr_McStas()) + self.assertEqual(sim_interface.parameters["has_default"], 37) + + def test_show_interface_McStas(self): + """ + Ensure that show_interface runs without errors and returns widget + """ + + sim_interface = SimInterface(setup_populated_instr_McStas()) + widget = sim_interface.show_interface() + + self.assertIsInstance(widget, widgets.widgets.widget_box.VBox) + + def test_initialization_McXtrace(self): + """ + Checking that interface can initialize from instrument and retrieve the + parameters that has a default value. + """ + + sim_interface = SimInterface(setup_populated_instr_McXtrace()) + self.assertEqual(sim_interface.parameters["has_default"], 37) + + def test_show_interface_McXtrace(self): + """ + Ensure that show_interface runs without errors and returns widget + """ + + sim_interface = SimInterface(setup_populated_instr_McXtrace()) + widget = sim_interface.show_interface() + + self.assertIsInstance(widget, widgets.widgets.widget_box.VBox) + + def test_update_ncount(self): + """ + Check ncount can be set correctly + """ + sim_interface = SimInterface(setup_populated_instr_McStas()) + sim_interface.show_interface() + + fake_change = FakeChange(new=100) + sim_interface.update_ncount(fake_change) + self.assertEqual(sim_interface.ncount, 100) + + def test_update_mpi(self): + """ + Check mpi can be set correctly + """ + sim_interface = SimInterface(setup_populated_instr_McStas()) + sim_interface.show_interface() + + fake_change = FakeChange(new=3) + sim_interface.update_mpi(fake_change) + self.assertEqual(sim_interface.mpi, 3) + + # Check input that wouldn't work is ignored + fake_change = FakeChange(new="wrong input") + sim_interface.update_mpi(fake_change) + self.assertEqual(sim_interface.mpi, 3) + + def test_ParameterWidget(self): + """ + Test that ParameterWidgets are initialized correctly + + This code is part of the initialization for the simulation interface, + yet it is useful to have as its own test as if it fails its clear where + the overall problem is. + """ + + instrument = setup_populated_instr_McStas() + + instrument.add_parameter("string", "choice", options=["A", "B", "Long"]) + + parameters = {} + # get default parameters from instrument + for parameter in instrument.parameters: + if parameter_has_default(parameter): + parameters[parameter.name] = get_parameter_default(parameter) + + parameter_widgets = [] + parameterwidget_objects = [] + for parameter in instrument.parameters: + par_widget = ParameterWidget(parameter, parameters) + parameterwidget_objects.append(par_widget) + parameter_widgets.append(par_widget.make_widget()) + + self.assertEqual(parameterwidget_objects[0].name, "theta") + self.assertEqual(parameterwidget_objects[0].default_value, None) + # Parameter does not exist in parameter dict yet + with self.assertRaises(KeyError): + parameters[parameterwidget_objects[0].name] + + change = FakeChange(new=222) + parameterwidget_objects[0].update(change) + self.assertEqual(parameters[parameterwidget_objects[0].name], 222) + + self.assertEqual(parameterwidget_objects[1].name, "has_default") + self.assertEqual(parameterwidget_objects[1].default_value, 37) + self.assertEqual(parameters[parameterwidget_objects[1].name], 37) + + change = FakeChange(new=227) + parameterwidget_objects[1].update(change) + self.assertEqual(parameters[parameterwidget_objects[1].name], 227) + + self.assertEqual(parameterwidget_objects[2].name, "choice") + self.assertEqual(parameterwidget_objects[2].default_value, None) + with self.assertRaises(KeyError): + parameters[parameterwidget_objects[2].name] + + change = FakeChange(new="test") + parameterwidget_objects[2].update(change) # Should add necessary extra quotation marks + self.assertEqual(parameters[parameterwidget_objects[2].name], "\"test\"") + diff --git a/mcstasscript/tests/test_user_var.py b/mcstasscript/tests/test_user_var.py new file mode 100644 index 00000000..43526005 --- /dev/null +++ b/mcstasscript/tests/test_user_var.py @@ -0,0 +1,68 @@ +import os +import os.path +import io +import unittest +import unittest.mock + +from mcstasscript.interface.instr import McStas_instr +from mcstasscript.tests.helpers_for_tests import WorkInTestDir +from mcstasscript.helper.mcstas_objects import DeclareVariable + +run_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), '.') + +def setup_instr_no_path(): + """ + Sets up a neutron instrument without a package_path + """ + + with WorkInTestDir() as handler: + instrument = McStas_instr("test_instrument") + + return instrument + + +class Test_user_vars(unittest.TestCase): + """ + Tests of user var behavior, collisions tested in test_Instr + """ + + def test_simple_initialize(self): + """ + Test adding basic flag + """ + my_instrument = setup_instr_no_path() + + flag = my_instrument.add_user_var("int", "flag") + + self.assertIsInstance(flag, DeclareVariable) + self.assertEqual(len(my_instrument.user_var_list), 1) + self.assertIs(my_instrument.user_var_list[0], flag) + + def test_move_user_var_to_declare(self): + """ + Test ability to move user vars to declare for compatibility + """ + my_instrument = setup_instr_no_path() + + declare_var1 = my_instrument.add_declare_var("int", "declare_var_1") + declare_var2 = my_instrument.add_declare_var("double", "declare_var_2", value=4) + flag = my_instrument.add_user_var("int", "flag") + another_user = my_instrument.add_user_var("double", "lifetime") + + self.assertEqual(len(my_instrument.declare_list), 2) + self.assertEqual(len(my_instrument.user_var_list), 2) + self.assertIs(my_instrument.declare_list[0], declare_var1) + self.assertIs(my_instrument.declare_list[1], declare_var2) + self.assertIs(my_instrument.user_var_list[0], flag) + self.assertIs(my_instrument.user_var_list[1], another_user) + + # Moves all user vars to declare + my_instrument.move_user_vars_to_declare() + + self.assertEqual(len(my_instrument.declare_list), 4) + self.assertEqual(len(my_instrument.user_var_list), 0) + self.assertIs(my_instrument.declare_list[0], declare_var1) + self.assertIs(my_instrument.declare_list[1], declare_var2) + self.assertIs(my_instrument.declare_list[2], flag) + self.assertIs(my_instrument.declare_list[3], another_user) + diff --git a/mcstasscript/tests/test_widget_helpers.py b/mcstasscript/tests/test_widget_helpers.py new file mode 100644 index 00000000..7fdc6701 --- /dev/null +++ b/mcstasscript/tests/test_widget_helpers.py @@ -0,0 +1,81 @@ +import unittest +import unittest.mock +import io + +from mcstasscript.jb_interface.widget_helpers import HiddenPrints +from mcstasscript.jb_interface.widget_helpers import parameter_has_default +from mcstasscript.jb_interface.widget_helpers import get_parameter_default +from mcstasscript.helper.mcstas_objects import provide_parameter + + +class TestWidgetHelpers(unittest.TestCase): + """ + Tests of widget helpers + """ + + @unittest.mock.patch("sys.stdout", new_callable=io.StringIO) + def test_HiddenPrints(self, mock_stdout): + """ + Checks HiddenPrints suppress output to stdout + """ + + print("test") + + output = mock_stdout.getvalue() + self.assertEqual(output, "test\n") + + with HiddenPrints(): + print("Hello") + + output = mock_stdout.getvalue() + self.assertEqual(output, "test\n") + + def test_parameter_has_default_false(self): + """ + Check for parameter that does not have default, should be false + """ + + par = provide_parameter("test") + self.assertFalse(parameter_has_default(par)) + + def test_parameter_has_default_true(self): + """ + Check for parameter that has default, should be true + """ + + par = provide_parameter("test", value=8) + self.assertTrue(parameter_has_default(par)) + + def test_get_parameter_default_string(self): + """ + Get the default for string parameter + """ + + par = provide_parameter("string", "test", value="variable") + self.assertEqual(get_parameter_default(par), "variable") + + def test_get_parameter_default_double_specified(self): + """ + Get the default for specified double parameter + """ + + par = provide_parameter("double", "test", value=5.5) + self.assertEqual(get_parameter_default(par), 5.5) + + def test_get_parameter_default_double(self): + """ + Get the default for parameter that was double by default + """ + + par = provide_parameter("test", value=5.7) + self.assertEqual(get_parameter_default(par), 5.7) + + def test_get_parameter_default_int(self): + """ + Get default value from integer value, should be rounded + """ + + par = provide_parameter("int", "test", value=5.7) + self.assertEqual(get_parameter_default(par), 5) + + diff --git a/mcstasscript/tests/utilities.py b/mcstasscript/tests/utilities.py new file mode 100644 index 00000000..7c1fbb9d --- /dev/null +++ b/mcstasscript/tests/utilities.py @@ -0,0 +1,15 @@ +import os + + +def work_dir_test(func): + def wrapper(): + THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + current_work_dir = os.getcwd() + + os.chdir(THIS_DIR) # Set work directory to test folder + + func() + + os.chdir(current_work_dir) # Return to previous workdir + + return wrapper diff --git a/mcstasscript/tools/__init__.py b/mcstasscript/tools/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mcstasscript/tools/cryostat_builder.py b/mcstasscript/tools/cryostat_builder.py new file mode 100644 index 00000000..0e585293 --- /dev/null +++ b/mcstasscript/tools/cryostat_builder.py @@ -0,0 +1,701 @@ +import numpy as np + +class Layer: + def __init__(self, name, cryostat, + origin_to_bottom, bottom_thickness, origin_to_top, top_thickness=0.01, + inner_radius=None, outer_radius=None, thickness=None, + material="Al", p_interact=0): + """ + Layer of cryostat with a shell made of given material and hollowed by vacuum + + Describes a layer of a cryostat with given geometry and materials. The geometry + is specified with distance from origin to top and bottom, along with a + thickness of these. In addition an outer and inner radius is needed, here the + user can specify two of inner_radius, outer_radius and thickness. + The Layer is given the cryostat object of which is it a part to access methods + and attributes in a simple way. + The layer is built from Union components, and so are not allowed to perfectly + intersect the planes from other layers. These are registered and check with the + cryostat class. If a custom material is given instead of Al, that material has + to exist as a Union_make_material component. + + It is possible to add windows to a layer, these are added with the add_window + method, windows can be a reduction of radius from the inside, outside or both. + + Parameters + ---------- + + origin_to_bottom: float + Distance from origin to bottom of layer [m] (bottom thickness added) + + bottom_thickness: float + Thickness of layer bottom [m] + + origin_to_top: float + Distance from origin to top of layer [m] (top thickness added) + + top_thickness: float + Thickness of layer top [m] + + inner_radius: float + Inner radius of the cryostat layer [m] + + outer_radius: float + Outer radius of the cryostat layer [m] + + thickness: float + Thickness of the shell, can be provided instead of either inner or outer radius [m] + + material: string + Material of which the cryostat layer should be made + + p_interact: float + p_interact set for all Union geometry components + """ + + self.name = name + self.material = material + self.p_interact = p_interact + + self.cryostat = cryostat + self.instr = self.cryostat.instr + self.reference = self.cryostat.origin + + try: + self.instr.get_component(self.material) + except: + raise RuntimeError("No material named '" + str(self.material) + + "' found in given instrument file. \n" + + "Construct with Union_make_material.") + + self.shell_lowest_point = -origin_to_bottom - bottom_thickness + self.shell_highest_point = origin_to_top + top_thickness + self.shell_center = 0.5 * (self.shell_lowest_point + self.shell_highest_point) + self.shell_height = self.shell_highest_point - self.shell_lowest_point + + # Check with the database these wont cause a collision + self.cryostat.add_y_plane(self.shell_lowest_point) + self.cryostat.add_y_plane(self.shell_highest_point) + + self.vac_lowest_point = -origin_to_bottom + self.vac_highest_point = origin_to_top + self.vac_center = 0.5 * (self.vac_highest_point + self.vac_lowest_point) + self.vac_height = self.vac_highest_point - self.vac_lowest_point + + # Check with the database these wont cause a collision + self.cryostat.add_y_plane(self.vac_lowest_point) + self.cryostat.add_y_plane(self.vac_highest_point) + + self.inner_radius, self.outer_radius = self.check_radius_input(inner_radius, outer_radius, thickness) + + # Check with the database these wont cause a collision + self.cryostat.add_radius(self.inner_radius) + self.cryostat.add_radius(self.outer_radius) + + # Set up shell + layer = self.instr.add_component(self.name + "_layer", "Union_cylinder") + layer.material_string = '"' + self.material + '"' + layer.p_interact = self.p_interact + + layer.radius = self.outer_radius + layer.yheight = self.shell_height + + layer.set_AT([0, self.shell_center, 0], RELATIVE=self.reference) + + self.layer = layer + + # Set up vacuum + layer_vac = self.instr.add_component(self.name + "_layer_vac", "Union_cylinder") + layer_vac.material_string = '"Vacuum"' + + layer_vac.radius = self.inner_radius + layer_vac.yheight = self.vac_height + + layer_vac.set_AT([0, self.vac_center, 0], RELATIVE=self.reference) + + self.layer_vac = layer_vac + + # List of union components, highest priority first + self.outer_cuts = [] + self.inner_cuts = [] + # self.main_union_components = [self.layer_vac, self.layer] + self.union_components = [self.layer_vac, self.layer] + + # Prepare for windows + self.inner_window_index = 0 + self.outer_window_index = 0 + + def count_inputs(self, *args): + """ + Counts how many of given inputs are not None + """ + n_inputs = 0 + for arg in args: + if arg is not None: + n_inputs += 1 + return n_inputs + + def check_radius_input(self, inner_radius, outer_radius, thickness): + """ + Returns inner and outer radius from user input that may include thickness + + The inner_radius, outer_radius and thickness can have one not specified, + and this method will calculate the inner and out radius from the two given. + A input not given is specified as None. + """ + + n_inputs = self.count_inputs(inner_radius, outer_radius, thickness) + + if n_inputs != 2: + raise RuntimeError("Set two of inner_radius, outer_radius, and thickness.") + + if inner_radius is None: + inner_radius = outer_radius - thickness + else: + inner_radius = inner_radius + + if outer_radius is None: + outer_radius = inner_radius + thickness + else: + outer_radius = outer_radius + + return inner_radius, outer_radius + + def add_window(self, inner_radius=None, outer_radius=None, thickness=None, + height=None, origin_to_top=None, origin_to_bottom=None): + """ + Adds 360 deg window in given height interval + + Adds window as a reduction in thickness of the layer in a certain height + interval. The reduction can be both from the outside, inside or both. + If only outer_radius is given, a reduction of the outside is assumed. + If only inner_radius is given, the window will be on the inside. + If two of the three parameters inner_radius, outer_radius and thickness + is given, material will be removed from both the outside and inside, only + use this if necessary, never specify inner / outer radius identical to the + main layer. + Any two of height, origin_to_top and origin_to_bottom can be given, or if + the window is symmetrical in height around the origin position, the height + alone is sufficient. + It is possible to add multiple multiple windows by calling this method + multiple times, add the tallest first. + + Keyword arguments + ----------------- + + inner_radius : float + inner radius of window (should be larger than main inner_radius) + + outer_radius : float + outer radius of window (should be less than main outer_radius) + + thickness : float + thickness of the window + + height : float + height of window + + origin_to_top : float + distance from origin to top of window + + origin_to_bototm : float + distance from origin to bottom of window + """ + + # Assume no cuts are made + outer_cut = False + inner_cut = False + + # Check if cuts are made to inner, outer or both + if self.count_inputs(inner_radius, outer_radius, thickness) == 1: + if inner_radius is not None: + inner_cut = True + outer_radius = self.outer_radius + elif outer_radius is not None: + outer_cut = True + inner_radius = self.inner_radius + else: + # could center this window + raise RuntimeError("Cant tell if window is on inside or outside.") + + inner_radius, outer_radius = self.check_radius_input(inner_radius, outer_radius, thickness) + + if inner_radius < self.inner_radius: + raise RuntimeError("Window has smaller inner radius than main layer, needs to be larger.") + + if outer_radius > self.outer_radius: + raise RuntimeError("Window has larger outer radius than main layer, needs to be smaller.") + + if abs(inner_radius - self.inner_radius) > 1E-5: + inner_cut = True + + if abs(outer_radius - self.outer_radius) > 1E-5: + outer_cut = True + + if self.count_inputs(height, origin_to_top, origin_to_bottom) == 3: + raise RuntimeError("Ambigious definition of window height.") + + if height is not None: + window_top = height / 2 + window_bottom = -height / 2 + if origin_to_top is not None: + window_top = origin_to_top + window_bottom = origin_to_top - height + if origin_to_bottom is not None: + window_top = -origin_to_bottom + height + window_bottom = -origin_to_bottom + else: + window_top = origin_to_top + window_bottom = -origin_to_bottom + + window_height = window_top - window_bottom + window_position = 0.5 * (window_top + window_bottom) + + if outer_cut: + name = self.name + "_outer_cut_" + str(self.outer_window_index) + o_cut = self.instr.add_component(name, "Union_cylinder") + o_cut.set_AT([0, window_position, 0], RELATIVE=self.reference) + + o_cut.material_string = '"Vacuum"' + o_cut.radius = self.outer_radius + 1E-6 + o_cut.yheight = window_height + 1E-6 + + # Check these radius and y_planes do not collide with others + self.cryostat.add_radius(o_cut.radius) + self.cryostat.add_y_plane(window_top + 0.5E-6) + self.cryostat.add_y_plane(window_bottom - 0.5E-6) + + name = self.name + "_outer_cut_replace_" + str(self.outer_window_index) + o_cut_m = self.instr.add_component(name, "Union_cylinder") + o_cut_m.set_AT([0, window_position, 0], RELATIVE=self.reference) + + o_cut_m.material_string = '"' + self.material + '"' + o_cut_m.p_interact = self.p_interact + o_cut_m.radius = outer_radius + o_cut_m.yheight = window_height + 5E-6 + + # Check these radius and y_planes do not collide with others + self.cryostat.add_radius(o_cut_m.radius) + self.cryostat.add_y_plane(window_top + 2.5E-6) + self.cryostat.add_y_plane(window_bottom - 2.5E-6) + + # Update list of outer cut components, order is important + self.outer_cuts = [o_cut_m, o_cut] + self.outer_cuts + + self.outer_window_index += 1 + + if inner_cut: + name = self.name + "_inner_cut_" + str(self.inner_window_index) + i_cut = self.instr.add_component(name, "Union_cylinder") + i_cut.set_AT([0, window_position, 0], RELATIVE=self.reference) + + i_cut.material_string = '"Vacuum"' + i_cut.radius = inner_radius + i_cut.yheight = window_height + + # Check these radius and y_planes do not collide with others + self.cryostat.add_radius(i_cut.radius) + self.cryostat.add_y_plane(window_top) + self.cryostat.add_y_plane(window_bottom) + + # Update list of inner cut components, order is important + self.inner_cuts = [i_cut] + self.inner_cuts + + self.inner_window_index += 1 + + # Create full list of Union components used in order from highest to lowest priority + self.union_components = [self.layer_vac] + self.inner_cuts + self.outer_cuts + [self.layer] + + +class Cryostat: + def __init__(self, name, instr, reference="PREVIOUS", + min_priority=20, max_priority=100): + """ + Handles addition of a cryostat with multiple layers and windows + + This class can add a description of a cryostat to a McStasScript + instrument object. The cryostat is made of several layers consisting + of a shell and vacuum, these are added with the add_layer method and + should be added in the order from smallest (inside) to largest. Each + layer can be accessed with the last_layer attribute, and one can add + windows to each layer. Consult the Layer class for details. When all + layers are added, it is necessary to build the cryostat, this step is + necessary to adjust the priority of each Union component. + The position of the cryostat can be adjusted with the set_AT and + set_ROTATED methods that works as the standard McStasScript versions. + It is possible to add logger components that show scattering in the + system with the add_spatial_loggers method. + The position of the cryostat refers to the sample position and is + called the origin. It can be placed in McStas with set_AT and + set_ROTATED methods on the cryostat object. + + Parameters + ---------- + + name : str + Name of the cryostat, will be used in naming of all added components + + instr : instrument object inherited from McCode_instr + Instrument object where the cryostat should be added + + Keyword arguments + ----------------- + + reference : str + Name of the component which the cryostat should be located relative to + + min_priority : float + Minimum Union priority used (default 20) + + max_priority : float + Maximum Union priority used, add a sample with higher priority (default 100) + """ + self.name = str(name) + self.instr = instr + self.reference = reference + self.min_priority = min_priority + self.max_priority = max_priority + + self.layers = [] + self.last_layer = None + + self.origin = self.instr.add_component(self.name, "Arm") + self.origin.set_AT([0, 0, 0], RELATIVE=reference) + + # Check if Al exists, if not add it! + try: + Al_component = None + Al_component = instr.get_component("Al") + except: + Al_inc = self.instr.add_component("Al_inc", "Incoherent_process") + Al_inc.sigma = 4 * 0.0082 # Incoherent cross section in Barns + Al_inc.unit_cell_volume = 66.4 # Unit cell volume in AA^3 + + Al_pow = self.instr.add_component("Al_pow", "Powder_process") + Al_pow.reflections = "\"Al.laz\"" # Data file with powder lines + + Al = self.instr.add_component("Al", "Union_make_material") + Al.my_absorption = "100*4*0.231/66.4" # Inverse penetration depth in 1/m + Al.process_string = '"Al_inc,Al_pow"' # Make a material with aluminium incoherent and aluminium powder` + + # Set intial state of loggers, not having been added yet + # Important to avoid multiple sets of the same kind added + self.spatial_loggers_set = False + self.time_logger_set = False + self.animation_loggers = [] + + # Height database + self.used_y_planes = [] + self.used_radius_values = [] + + def set_AT(self, *args, **kwargs): + """ + Sets position of cryostat, sample position used as reference + """ + self.origin.set_AT(*args, **kwargs) + + def set_ROTATED(self, *args, **kwargs): + """ + Sets rotation of cryostat, sample position used as reference + """ + self.origin.set_AT(*args, **kwargs) + + def add_layer(self, *args, **kwargs): + """ + Adds layer to cryostat, all arguments passed to Layer. Consult Layer + class for additional help on adding a layer. + """ + + if "name" not in kwargs: + kwargs["name"] = self.name + "_layer_" + str(len(self.layers)) + + if "cryostat" not in kwargs: + kwargs["cryostat"] = self + + layer = Layer(*args, **kwargs) + self.last_layer = layer + self.layers.append(layer) + + def find_cryostat_dimensions(self): + """ + Returns spatial extend of cryostat with padding for plotting + + Returns tuple with x, lowest y, highest y and z + """ + # find outer dimensions: + max_radius = self.last_layer.outer_radius + highest_point = self.last_layer.shell_highest_point + lowest_point = self.last_layer.shell_lowest_point + + if highest_point > abs(lowest_point): + height = 2 * highest_point + else: + height = 2 * abs(lowest_point) + + mon_z = 1.1 * max_radius + mon_x = 1.1 * max_radius + if lowest_point < 0: + mon_y_low = 1.1 * lowest_point + else: + mon_y_low = 0.9 * lowest_point + + if highest_point > 0: + mon_y_high = 1.1 * highest_point + else: + mon_y_high = 0.9 * highest_point + + return mon_x, mon_y_low, mon_y_high, mon_z + + def add_spatial_loggers(self, n_x=500, n_y=500, n_z=500): + """ + Adds spatial Union loggers to the code + + The spatial loggers will be set so they cover the entire cryostat and + include views from top, side and front along with a close up of the + windows as a slice in zy with limited z of +/- 5 mm. + + Keyword arguments + ----------------- + + n_x : int + Number of bins in x direction + + n_y : int + Number of bins in y direction + + n_z : int + Number of bins in z direction + """ + + if self.spatial_loggers_set: + raise RuntimeError("Can not add two sets of spatial loggers.") + + self.spatial_loggers_set = True + + # find outer dimensions: + mon_x, mon_y_low, mon_y_high, mon_z = self.find_cryostat_dimensions() + + space_2D_zx = self.instr.add_component(self.name + "_logger_space_zx", "Union_logger_2D_space") + space_2D_zx.set_AT([0, 0, 0], RELATIVE=self.origin) + space_2D_zx.filename = '"' + self.name + '_space_zx.dat"' + space_2D_zx.D_direction_1 = '"z"' + space_2D_zx.n1 = n_z + space_2D_zx.D1_min = -mon_z + space_2D_zx.D1_max = mon_z + space_2D_zx.D_direction_2 = '"x"' + space_2D_zx.n2 = n_x + space_2D_zx.D2_min = -mon_x + space_2D_zx.D2_max = mon_x + + space_2D_zy = self.instr.add_component(self.name + "_logger_space_zy", "Union_logger_2D_space") + space_2D_zy.set_AT([0, 0, 0], RELATIVE=self.origin) + space_2D_zy.filename = '"' + self.name + '_space_zy.dat"' + space_2D_zy.D_direction_1 = '"z"' + space_2D_zy.n1 = n_z + space_2D_zy.D1_min = -mon_z + space_2D_zy.D1_max = mon_z + space_2D_zy.D_direction_2 = '"y"' + space_2D_zy.n2 = n_y + space_2D_zy.D2_min = mon_y_low + space_2D_zy.D2_max = mon_y_high + + space_2D_xy = self.instr.add_component(self.name + "_logger_space_xy", "Union_logger_2D_space") + space_2D_xy.set_AT([0, 0, 0], RELATIVE=self.origin) + space_2D_xy.filename = '"' + self.name + '_space_xy.dat"' + space_2D_xy.D_direction_1 = '"x"' + space_2D_xy.n1 = n_x + space_2D_xy.D1_min = -mon_x + space_2D_xy.D1_max = mon_x + space_2D_xy.D_direction_2 = '"y"' + space_2D_xy.n2 = n_y + space_2D_xy.D2_min = mon_y_low + space_2D_xy.D2_max = mon_y_high + + # Adding monitor that shows windows better + lowest_inner_radius = self.layers[0].inner_radius + largest_outer_radius = self.layers[-1].outer_radius + + space_3D_zy = self.instr.add_component(self.name + "_logger_space_zy_close", "Union_logger_3D_space") + space_3D_zy.set_AT([0, 0, 0], RELATIVE=self.origin) + space_3D_zy.filename = '"' + self.name + '_space_zy_close.dat"' + space_3D_zy.D_direction_1 = '"z"' + space_3D_zy.n1 = n_z + space_3D_zy.D1_min = -1.02 * largest_outer_radius + space_3D_zy.D1_max = -0.9 * lowest_inner_radius + space_3D_zy.D_direction_2 = '"y"' + space_3D_zy.n2 = n_y + space_3D_zy.D2_min = mon_y_low + space_3D_zy.D2_max = mon_y_high + space_3D_zy.D_direction_3 = '"x"' + space_3D_zy.n3 = 1 + space_3D_zy.D3_min = -0.005 + space_3D_zy.D3_max = 0.005 + + def add_time_histogram(self, t_min=0, t_max=0.1): + """ + Adds histogram of scattering intensity as function of time + + Very useful when setting time range for animation, only one can be added. + + Parameters + ---------- + + t_min : float + Lowest time recorded in [s] + + t_max : float + Highest time recorded in [s] + """ + + if self.time_logger_set: + raise RuntimeError("Can not add two sets of time_histogram loggers.") + + self.time_logger_set = True + + time_mon = self.instr.add_component(self.name + "_logger_time", "Union_logger_1D") + time_mon.variable = '"time"' + time_mon.min_value = t_min + time_mon.max_value = t_max + time_mon.n1 = 1000 + + def add_animation(self, t_min=0, t_max=0.1, n_frames=10, + d1="z", n1=300, d2="y", n2=300): + """ + Adds 2D_space_time logger that records the information necessary for animation + + Adds a 2D_space_time logger that records the requested number of frames, n_frames. + The time span of both is from t_min to t_max. The default orientation is in the zy + plane, but this can be chosen along with the desired resolution. + Errors can happen with too many empty frames, so it is recommended to set + t_min close to the first scattering time. + Select the appropriate animation data from simulation output and use + plotter.make_animation with a filename to save the animation as a gif. + + Parameters + ---------- + + t_min : float + Lowest time recorded in [s] + + t_max : float + Highest time recorded in [s] + + n_frames : int + Number of frames in space 2D time logger + + d1 : str + First direction of space 2D time logger, "x", "y" or "z" + + n1 : int + Number of bins in first direction + + d2 : str + Second direction of space 2D time logger, "x", "y" or "z" + + n2 : int + Number of bins in second direction + """ + + if d1 == d2: + raise RuntimeError("Cant have both d1 and d2 along the same axis.") + + if d1 + d2 in self.animation_loggers: + raise RuntimeError("Can only add one animation logger with the same axis.") + + self.animation_loggers.append(d1 + d2) + + # find outer dimensions: + mon_x, mon_y_low, mon_y_high, mon_z = self.find_cryostat_dimensions() + + name = self.name + "_logger_space_" + d1 + d2 + "_time" + ani_logger = self.instr.add_component(name, "Union_logger_2D_space_time") + ani_logger.set_AT([0, 0, 0], RELATIVE=self.origin) + ani_logger.filename = '"' + name + '.dat"' + ani_logger.time_bins = int(n_frames) + ani_logger.time_min = t_min + ani_logger.time_max = t_max + + ani_logger.D_direction_1 = '"' + d1 + '"' + ani_logger.n1 = int(n1) + if d1 == "x": + ani_logger.D1_min = -mon_x + ani_logger.D1_max = mon_x + elif d1 == "y": + ani_logger.D1_min = mon_y_low + ani_logger.D1_max = mon_y_high + elif d1 == "z": + ani_logger.D1_min = -mon_z + ani_logger.D1_max = mon_z + else: + raise RuntimeError("Dimension: '" + d1 + "' not recoignized, must be x, y or z.") + + ani_logger.D_direction_2 = '"' + d2 + '"' + ani_logger.n2 = int(n2) + if d2 == "x": + ani_logger.D2_min = -mon_x + ani_logger.D2_max = mon_x + elif d2 == "y": + ani_logger.D2_min = mon_y_low + ani_logger.D2_max = mon_y_high + elif d2 == "z": + ani_logger.D2_min = -mon_z + ani_logger.D2_max = mon_z + else: + raise RuntimeError("Dimension: '" + d2 + "' not recoignized, must be x, y or z.") + + def add_y_plane(self, value): + """ + Adds a y plane to database, checking if it is already present + + If duplicates occur, errors would happen in the Union algorithm + """ + + for y_plane in self.used_y_planes: + if abs(y_plane - value) < 1E-7: + raise RuntimeError("Two planes overlap with the same y value.") + + self.used_y_planes.append(value) + + def add_radius(self, value): + """ + Adds a radius to databse, checking if it is already present + + If duplicates occur, errors would happen in the Union algorithm + """ + + for radius in self.used_radius_values: + if abs(radius - value) < 1E-7: + raise RuntimeError("The radius of two cylinders are almost equal.") + + self.used_radius_values.append(value) + + def build(self, include_master=True): + """ + Assigns priorities to the internal components of the cryostat + + The build method must be called after all layers and windows are added + in order for priorities to be assigned according to the priority window + given at class initialization. It is optional to include the Union_master + with the build method, if it is not included it must be manually provided + later. + + Keyword arguments + ----------------- + + inclde_master : bool + If True a Union_master component is added to the instrument file + """ + + union_component_list = [] + + for layer in self.layers: + union_component_list += layer.union_components + + priorities = np.linspace(self.max_priority, self.min_priority, len(union_component_list)) + + for component, priority in zip(union_component_list, priorities): + component.priority = priority + + if include_master: + master = self.instr.add_component(self.name + "_master", "Union_master") + diff --git a/mcstasscript/tools/instrument_checker.py b/mcstasscript/tools/instrument_checker.py new file mode 100644 index 00000000..3263c161 --- /dev/null +++ b/mcstasscript/tools/instrument_checker.py @@ -0,0 +1,74 @@ +def has_component(instrument, component_name=None, component_type=None): + """ + Checks if given instrument has a component with given name and type + + instrument : McStasScript instrument object + + component_name : (str) name of component + + component_type : (str) type of component, for example Arm + """ + if component_name is None and component_type is None: + raise ValueError("Specify component_name, component_type or both.") + + # Run through components in instrument + for comp in instrument.component_list: + if component_name is not None: + if comp.name != component_name: + continue + + if component_type is not None: + if comp.component_name != component_type: + continue + + # Found case where both component name and type matches + return True + + # Did not find any such component + return False + + +def has_parameter(instrument, parameter_name, parameter_type=None): + """ + Checks if instrument have parameter with given name and type + + instrument : McStasScript instrument object + + parameter_name : (str) Name of parameter + + parameter_type : (str) Type of parameter, "" treated as double + """ + if parameter_name is None and parameter_type is None: + raise ValueError("Specify parameter_name, parameter_type or both.") + + parameter_dict = instrument.parameters.parameters + + if parameter_name not in parameter_dict: + return False + + if parameter_type is not None: + found_type = parameter_dict[parameter_name].type + + if parameter_type == "double" and found_type == "": + # Default McStas type is double + return True + + if found_type != parameter_type: + return False + + return True + + +def all_parameters_set(instrument): + """ + Checks if all parameters of given instrument have default values + + instrument : McStasScript instrument object + """ + parameter_dict = instrument.parameters.parameters + + for par_object in parameter_dict.values(): + if par_object.value is None: + return False + + return True \ No newline at end of file diff --git a/mcstasscript/tools/ncrystal_union.py b/mcstasscript/tools/ncrystal_union.py new file mode 100644 index 00000000..2f4f3691 --- /dev/null +++ b/mcstasscript/tools/ncrystal_union.py @@ -0,0 +1,18 @@ +def add_ncrystal_union_material(instrument, name, cfgstr, split=False): + try: + import NCrystal.mcstasutils as NCms + except ImportError or ModuleNotFoundError: + raise RuntimeError("Install NCrystal to use this feature in McStasScript.") + + abs_info, ncrystal_processes = NCms.cfgstr_2_unioncfg(cfgstr=cfgstr, split_by_physics=split) + + process_names = [] + for process in ncrystal_processes: + process_name = name + "_" + process[1] + process_names.append(process_name) + comp = instrument.add_component(process_name, "NCrystal_process") + comp.cfg = '"' + process[0] + '"' + + comp = instrument.add_component(name, "Union_make_material") + comp.my_absorption = abs_info + comp.process_string = '"' + ",".join(process_names) + '"' diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..fa30af3c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +numpy +matplotlib +PyYAML +ipywidgets +libpyvinyl +ipympl +h5py \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..d9031648 --- /dev/null +++ b/setup.py @@ -0,0 +1,35 @@ +import os +from setuptools import setup, find_packages +from glob import glob + +# Get version number +here = os.path.abspath(os.path.dirname(__file__)) +version_path = os.path.join(here, "mcstasscript", "_version.py") +version = {} +with open(version_path) as fp: + exec(fp.read(), version) +found_version = version['__version__'] +print("Version read from file:", found_version) + +with open("README.md", "r") as fh: + long_description = fh.read() + +setup( + name='McStasScript', + version=found_version, + author="Mads Bertelsen", + author_email="Mads.Bertelsen@ess.eu", + description="A python scripting interface for McStas", + include_package_data=True, + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/PaNOSC-ViNYL/McStasScript", + install_requires=['numpy', 'matplotlib', 'PyYAML', 'ipywidgets', 'libpyvinyl'], + packages=find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License (GPL)", + "Operating System :: OS Independent", + "Topic :: Scientific/Engineering" + ], + ) diff --git a/tutorial/McStasScript_tutorial_1_the_basics.ipynb b/tutorial/McStasScript_tutorial_1_the_basics.ipynb new file mode 100644 index 00000000..282cbda0 --- /dev/null +++ b/tutorial/McStasScript_tutorial_1_the_basics.ipynb @@ -0,0 +1,661 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# McStasScript introduction\n", + "This notebook shows how to use McStas and McStasScript to perform a basic simulation of a neutron diffractometer. The following software is required:\n", + "- McStas (www.mcstas.org)\n", + "- McStasScript (can be installed with python -m pip install McStasScript)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Anatomy of a McStas instrument\n", + "\n", + "In McStas a simulation is described using an instrument file. Such an instrument has five sections where code can be added to define the simulation to be perfomed.\n", + "\n", + "- Instrument definition\n", + "- Declare section\n", + "- Initialize section\n", + "- Trace section\n", + "- Finally section\n", + "\n", + "##### Instrument definition\n", + "In the instrument definition it is possible to define *instrument parameters* which can be specified at run time and used in the remaining sections for either calculations or as direct input to the components.\n", + "\n", + "##### Declare section\n", + "Here internal variables can be declared with C syntax.\n", + "\n", + "##### Initialize section\n", + "The initialize section is used for performing calculations, typically using both instrument parameters and declared variables to calculate for example chopper phases, angles and similar. The calculations are performed using C syntax. These calculations are performed before the raytracing simulation, and thus only performed once in a given simulation.\n", + "\n", + "##### Trace section\n", + "In the trace section McStas *components* are added, these are the building blocks of the simulation and correspond to different c codes that describe parts of neutron instruments or samples. Each component have a set of available parameters, some of which may be required. These will set the behavior of a component, a guide component may for example have parameters describing the physical shape and mirror reflectivity. Components also need to be placed in 3D space, and can be placed either in the absolute coordinate system or relative to a previously defined component.\n", + "\n", + "##### Finally section\n", + "The finally section is very similar to the initialize section, here calculations can be performed after the raytracing has been completed, again using C syntax. This may be some brief data analysis or print of some status.\n", + "\n", + "### McStasScript python package and this tutorial\n", + "The McStasScript python package provides an API to build and run such instruments files, but it is still necessary to have a basic understanding of the structure of the underlying instrument file and its capabilities and limitations. These tutorials will teach basic use of McStas through the McStasScript API without assuming expertise in the underlying McStas software." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import the McStasScript package\n", + "McStasScript needs to be imported into the users python environment, you can abbreviate the name for easier access." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### McStasScript configuration\n", + "Before the first use of McStasScript it is necessary to configure the package so it can locate the McStas installation and call the binaries. One way to find the path is to open a terminal with the McStas environment and run:\n", + "\n", + "which mcrun\n", + "\n", + "This should return the path for the binary, and the mcstas path is usually just one step back." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "configurator = ms.Configurator()\n", + "configurator.set_mcrun_path(\"/Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1/bin/\")\n", + "configurator.set_mcstas_path(\"/Applications/McStas-2.7.1.app/Contents/Resources/mcstas/2.7.1\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create an instrument object\n", + "A McStas instrument is described with a McStas instrument object which is created using the *McStas_instr* method on the instr class. Creating an instrument object also reads available components, both in the work folder and from the McStas installation. By default, the work folder is the current work directory, but using the input_path keyword argument this can be change to avoid cluttering the folder containing notebooks.\n", + "\n", + "Here our instrument object for this tutorial is created, we give it the name python_tutorial." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Requesting help on source components\n", + "The main building blocks used for creating a McStas simulation are the components. One can ask an instrument object which components are available, and get help for each component. Here we check what sources are available, and ask for help on the Source_div component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_components()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_components(\"sources\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Source_div\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding a component\n", + "Now we are ready to add a component to our simulation which is done with the *add_component* method on our instrument. This method requires two inputs:\n", + "\n", + "- Nickname for the component used to refer to this component instance\n", + "- Name of the component type to be used\n", + "\n", + "Here we want to make a component nicknamed \"source\" of type \"Source_div\".\n", + "\n", + "We also use the *print_components* method to confirm our component was added successfully. Running this code block multiple times result in an error, as McStas does not allow two components with the same nickname." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "instrument.print_components()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Working with component objects\n", + "The src object created by *add_component* can be used to modify the component. It also holds the information on the component, which can be shown by printing the object. This will tell us for example if any required parameters are yet to be set and the position of the component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(src)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Modifying a component object\n", + "The parameters of a component object can be modified as attributes. From the above print we know there are four required parameters, so we start by setting these and then print the resulting component status." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src.xwidth = 0.1\n", + "src.yheight = 0.05\n", + "src.focus_aw = 1.2\n", + "src.focus_ah = 2.3\n", + "\n", + "print(src)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Getting status of all parameters\n", + "Printing a component only show the required parameters and user specified parameters, but it is also possible to see all parameters with the *show_parameters* method. This reminds us to set an energy or wavelength range for the source, as it is necessary to set one of these even though they are technically not required parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding an instrument parameter to control wavelength\n", + "Controlling the wavelength range emitted by the source is best done with an instrument parameter, then this same parameter can be used to for example rotate a monochromator or set the range for an wavelength sensitive monitor. Adding an instrument parameter is done using the instrument method *add_parameter*, and it is possible to set a default value and comment. The method returns a parameter object that can be used to assign the parameter to a component. The current instrument parameters can be viewed with the *show_parameters* method on the isntrument object.\n", + "\n", + "The default type for instrument parameters is a double (floating point number), but other types can be selected if necessary by providing a type string before, here we also provide an example of an integer." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "wavelength = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "\n", + "order = instrument.add_parameter(\"int\", \"order\", value=1,\n", + " comment=\"Monochromator order, integer\")\n", + "instrument.show_parameters()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now our source component can have its parameters assigned to a instrument parameter, or even a mathematical expression using the variable. This allows us to set a reasonable wavelength range for our source component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src.lambda0 = wavelength\n", + "src.dlambda = \"0.01*wavelength\" # When performing math use a string and the parameter name\n", + "print(src)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using keyword arguments when adding a component\n", + "When adding a component, several keyword arguments are available, for example for setting the position of the component.\n", + "\n", + "- AT set position with list of x,y,z coordinates\n", + "- AT_RELATIVE set reference point for position (name of component instance or object)\n", + "- ROTATED set rotation around x,y,z axis\n", + "- ROTATED_RELATIVE set reference rotation (name of component instance or object)\n", + "- RELATIVE set both reference position and rotation (name of component instance or object)\n", + "\n", + "We use this to set up a guide 2 meters after the source. The McStas coordinate system convention is such that the nominal beam direction is in the Z direction and with Y vertical against gravity. We use the component instance name as a string to refer to our source. The RELATIVE could also have been specified as src, which is our source object." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "guide = instrument.add_component(\"guide\", \"Guide_gravity\", AT=[0,0,2], RELATIVE=\"source\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next we set the parameters for our guide component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "guide.w1 = 0.05\n", + "guide.w2 = 0.05\n", + "guide.h1 = 0.05\n", + "guide.h2 = 0.05\n", + "guide.l = 8.0\n", + "guide.m = 3.5\n", + "guide.G = -9.82\n", + "\n", + "print(guide)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding calculations to an instrument file\n", + "One of the advantages of McStas is the ease of adding calculations to the instrument. Here we calculate the rotation of a monochromator so that its scatters the wavelengths from our source. We need to declare variables using *add_declare_var* and append C code to initialize using *append_initialize*.\n", + "\n", + "For *add_declare_var* the first argument is the C type, usually double or int, the next is the variable name. A default value can be specified with the value keyword. Like when adding a parameter, a *add_declare* also returns an object that can be used to refer to this variable later.\n", + "\n", + "*append_initialize* just adds the given C code to the initialize section of the McStas instrument file. It is necessary to follow C syntax, for example remember semicolon at the end of statements." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mono_Q = instrument.add_declare_var(\"double\", \"mono_Q\", value=1.714) # Q for Ge 311\n", + "instrument.add_declare_var(\"double\", \"wavevector\")\n", + "instrument.append_initialize(\"wavevector = 2.0*PI/wavelength;\")\n", + "\n", + "mono_rotation = instrument.add_declare_var(\"double\", \"mono_rotation\")\n", + "instrument.append_initialize(\"mono_rotation = asin(mono_Q/(2.0*wavevector))*RAD2DEG;\")\n", + "instrument.append_initialize('printf(\"monochromator rotation = %g deg\\\\n\", mono_rotation);')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the monochromator\n", + "Here the monochromator is added, and we use the declared variables *mono_Q* and *mono_rotation* prepared above. Setting position and rotation can also be done using the *set_AT* and *set_ROTATED* methods on the component objects. Here it is also demonstrated how one can use either component objects or component names for the relative keyword.\n", + "\n", + "Rotation is specified around each axis, so rotation of our monochromator should be around the Y axis in order to keep the beam in the usual X-Z plane." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mono = instrument.add_component(\"mono\", \"Monochromator_flat\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mono.zwidth = 0.05\n", + "mono.yheight = 0.08\n", + "mono.Q = mono_Q\n", + "mono.set_AT([0, 0, 8.5], RELATIVE=guide)\n", + "mono.set_ROTATED([0, mono_rotation, 0], RELATIVE=\"guide\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(mono)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using an arm to define the beam direction\n", + "As the beam changes direction at the monochromator, we wish to define the new direction to simplify adding latter components. This can be done with an Arm component, which performs no simulation but can be used as new coordinate reference. The outgoing direction correspond to one more rotation of *mono_rotation*." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "beam_direction = instrument.add_component(\"beam_dir\", \"Arm\", AT_RELATIVE=\"mono\")\n", + "beam_direction.set_ROTATED([0, mono_rotation, 0], RELATIVE=\"mono\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding a sample\n", + "We now add a powder sample using the PowderN component placed relative to our newly defiend beam direction. The chosen powder is Na2Ca3Al2F14 which is a standard sample due to its large number of available reflections." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample = instrument.add_component(\"sample\", \"PowderN\",\n", + " AT=[0, 0, 1.1], RELATIVE=beam_direction)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample.radius = 0.015\n", + "sample.yheight = 0.05\n", + "sample.reflections = '\"Na2Ca3Al2F14.laz\"'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample.print_long()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding a cylindrical monitor\n", + "The flexible Monitor_nD component can be used to add a banana monitor (part of a cylinder). The component shape is specified using an option string. The restore_neutron parameter is set to 1 to allow other monitors to record each neutron.\n", + "\n", + "We have to specify a filename and option string here, and if we just use a string like \"banana.dat\" it would be interpreted as an instrument parameter called *banana.dat* and fail, so it is necessary to add single quotes around, '\"banana.dat\"'." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample)\n", + "banana.xwidth = 2.0\n", + "banana.yheight = 0.3\n", + "banana.restore_neutron = 1\n", + "banana.filename = '\"banana.dat\"'\n", + "banana.options = '\"theta limits=[5 175] bins=150, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding a psd monitor\n", + "We also add a simple PSD (position sensitive detector) monitor to see the transmitted beam." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mon = instrument.add_component(\"monitor\", \"PSD_monitor\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mon.nx = 100\n", + "mon.ny = 100\n", + "mon.filename = '\"psd.dat\"'\n", + "mon.xwidth = 0.05\n", + "mon.yheight = 0.08\n", + "mon.restore_neutron = 1\n", + "mon.set_AT([0,0,0.1], RELATIVE=sample)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Print the components contained in an instrument\n", + "Before performing the simulation, it is a good idea to check that the instrument contains the expected components and that they are appropriately placed in space. The *print_components* method is useful for this purpose." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.print_components()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Running the simulation\n", + "Running the simulation is done in three steps\n", + "\n", + "- Setting the parameters with *set_parameters*\n", + "- Setting the settings with *settings*\n", + "- Running the McStas simulation with *backengine*\n", + "\n", + "The *set_parameters* method takes a value for each of the parameters defined in the instrument, here wavelength.\n", + "\n", + "Settings adjust settings for the simulations, a few examples can be seen here\n", + "\n", + "- ncount sets the number of rays\n", + "- mpi sets the number of CPU cores used for execution (requires mpi installed)\n", + "- output_path sets the name of the output folder\n", + "- increment_folder_name if set to True, automatically changes the foldername if it already exists (default).\n", + "\n", + "The *backengine* method takes no parameters and just performs the simulation and returns the generated data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8)\n", + "instrument.show_parameters()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.settings(ncount=5E6, output_path=\"data_folder/mcstas_basics\")\n", + "instrument.show_settings()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine() # Perform simulation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Plotting the data\n", + "The *run_full_instrument* method returned a list of McStasData objects which can be plotted by the McStasScript plotter module. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adjusting plots\n", + "The McStasData objects contain preferences for how the data should be plotted, which can be modified using the functions module and the *name_plot_options* function. The function arguments are the name of the monitor component and a list of McStasData objects, then options are provided with the keyword arguments.\n", + "\n", + "The following plot options are often useful:\n", + "- log [True or False] For plotting on logarithmic axis\n", + "- orders_of_mag [number] When using logarithmic plotting, limits the maximum orders of magnitudes shown\n", + "- left_lim [number] lower limit of plot x axis\n", + "- right_lim [number] upper limit of plot x axis\n", + "- bottom_lim [number] lower limit of plot y axis\n", + "- top_lim [number] upper limit of plot y axis\n", + "- colormap [string] name of matplotlib colormap to use" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"monitor\", data, log=True)\n", + "ms.name_plot_options(\"banana\", data, left_lim=90, right_lim=150)\n", + "ms.make_sub_plot(data, fontsize=16)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Behind the scenes \n", + "McStasScript writes the instrument file and uses mcrun to compile and run it. The file can be found in the input_path selected when the instrument object were created. We can print it here to see what was done behind the scenes." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"run_folder/python_tutorial.instr\") as file:\n", + " data = file.read()\n", + " print(data)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/McStasScript_tutorial_2_SPLIT.ipynb b/tutorial/McStasScript_tutorial_2_SPLIT.ipynb new file mode 100644 index 00000000..670ebaa5 --- /dev/null +++ b/tutorial/McStasScript_tutorial_2_SPLIT.ipynb @@ -0,0 +1,326 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced McStas features: SPLIT\n", + "McStas uses the Monte Carlo ray-tracing technique, which allows some tricks in how the physics is sampled as long as the resulting probability distributions matches the physics. This is possible as each ray has a weight, corresponding to how much intensity this ray represent. The SPLIT keyword can be used to split a ray into many equal parts, which can be useful if the remaining instrument has many different simulated and random outcomes. In this tutorial we will use the SPLIT keyword on a powder sample, as there are many powder Bragg peaks each ray could select, and splitting the ray samples this more efficiently." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setting up an example instrument\n", + "First we set up an example instrument, this is taken from the basic tutorial and correspond of source, guide, monochromator, sample and banana detector." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\",\n", + " output_path=\"data_folder/mcstas_SPLIT\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.add_component(\"Origin\", \"Progress_bar\")\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.1\n", + "src.yheight = 0.05\n", + "src.focus_aw = 1.2\n", + "src.focus_ah = 2.3\n", + "\n", + "wavelength = instrument.add_parameter(\"wavelength\", value=5.0, comment=\"Wavelength in [Ang]\")\n", + "src.lambda0 = wavelength\n", + "src.dlambda = \"0.03*wavelength\"\n", + "\n", + "guide = instrument.add_component(\"guide\", \"Guide_gravity\", AT=[0,0,2], RELATIVE=src)\n", + "guide.w1 = 0.05\n", + "guide.w2 = 0.05\n", + "guide.h1 = 0.05\n", + "guide.h2 = 0.05\n", + "guide.l = 8.0\n", + "guide.m = 3.5\n", + "guide.G = -9.82\n", + "\n", + "mono_Q = instrument.add_declare_var(\"double\", \"mono_Q\", value=1.714) # Q for Ge 311\n", + "instrument.add_declare_var(\"double\", \"wavevector\")\n", + "instrument.append_initialize(\"wavevector = 2.0*PI/wavelength;\")\n", + "\n", + "mono_rotation = instrument.add_declare_var(\"double\", \"mono_rotation\")\n", + "instrument.append_initialize(\"mono_rotation = asin(mono_Q/(2.0*wavevector))*RAD2DEG;\")\n", + "instrument.append_initialize('printf(\"monochromator rotation = %g deg\\\\n\", mono_rotation);')\n", + "\n", + "mono = instrument.add_component(\"mono\", \"Monochromator_flat\")\n", + "mono.zwidth = 0.05\n", + "mono.yheight = 0.08\n", + "mono.Q = mono_Q\n", + "mono.set_AT([0, 0, 8.5], RELATIVE=guide)\n", + "mono.set_ROTATED([0, mono_rotation, 0], RELATIVE=guide)\n", + "\n", + "beam_direction = instrument.add_component(\"beam_dir\", \"Arm\", AT_RELATIVE=mono)\n", + "beam_direction.set_ROTATED([0, \"mono_rotation\", 0], RELATIVE=\"mono\")\n", + "\n", + "sample = instrument.add_component(\"sample\", \"PowderN\", AT=[0,0,1.1], RELATIVE=beam_direction)\n", + "sample.radius = 0.015\n", + "sample.yheight = 0.05\n", + "sample.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample)\n", + "banana.xwidth = 2.0\n", + "banana.yheight = 0.3\n", + "banana.restore_neutron = 1\n", + "banana.filename = '\"banana.dat\"'\n", + "banana.options = '\"theta limits=[5 175] bins=150, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation\n", + "Here we run the simulation with very few neutrons to show problematic sampling." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.settings(ncount=1E6)\n", + "\n", + "instrument.set_parameters(wavelength=2.8)\n", + " \n", + "data_low = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_low)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the SPLIT keyword\n", + "Here we add the SPLIT keyword to the sample, we choose to split each ray into 30." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample.set_SPLIT(30)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "# No need to set settings or parameters as these have not changed\n", + "data_reasonable = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_reasonable)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Caution on split value\n", + "It is however possible to mismanage splitting, mainly by simulating a too few rays and splitting too much. Here we do this on purpose to see how such data would look. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "sample.set_SPLIT(10000)\n", + "\n", + "instrument.settings(ncount=1E3) # Change settings to lower ncount, but keep parameters\n", + " \n", + "data_unreasonable = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_unreasonable)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Comparison with high statistics run\n", + "We here compare the different runs to a reference. The reference run is set up to have 50 times more rays than the earlier runs with 5E7 instead of 1E6 rays." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "sample.set_SPLIT(1)\n", + "instrument.settings(ncount=2E7)\n", + " \n", + "data_ref = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_ref)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plotting data on same plot\n", + "Here we only have one monitor in each data list, but we still use the *name_search* function to retrieve the correct data object from each. This avoids the code breaking in case additional monitors are added.\n", + "\n", + "Once we have the objects, we use the *xaxis*, *Intensity* and *Error* attributes to plot the data with matplotlib." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt\n", + "banana_low = ms.name_search(\"banana\", data_low)\n", + "banana_reasonable = ms.name_search(\"banana\", data_reasonable)\n", + "banana_unreasonable = ms.name_search(\"banana\", data_unreasonable)\n", + "banana_ref = ms.name_search(\"banana\", data_ref)\n", + "\n", + "plt.figure(figsize=(14,6))\n", + "plt.errorbar(banana_low.xaxis, banana_low.Intensity, yerr=banana_low.Error, fmt=\"r\")\n", + "plt.errorbar(banana_ref.xaxis, banana_ref.Intensity, yerr=banana_ref.Error, fmt=\"b\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "plt.legend([\"Low statistics\", \"High statistics reference\"])\n", + "\n", + "plt.figure(figsize=(14,6))\n", + "plt.errorbar(banana_reasonable.xaxis, banana_reasonable.Intensity,\n", + " yerr=banana_reasonable.Error, fmt=\"r\")\n", + "plt.errorbar(banana_ref.xaxis, banana_ref.Intensity, yerr=banana_ref.Error, fmt=\"b\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "plt.legend([\"Low statistics with SPLIT\", \"High statistics reference\"])\n", + "\n", + "plt.figure(figsize=(14,6))\n", + "plt.errorbar(banana_unreasonable.xaxis, banana_unreasonable.Intensity,\n", + " yerr=banana_unreasonable.Error, fmt=\"r\")\n", + "plt.errorbar(banana_ref.xaxis, banana_ref.Intensity, yerr=banana_ref.Error, fmt=\"b\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "l = plt.legend([\"Very low statistics with unreasonable SPLIT\", \"High statistics reference\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "We see that with low statistics, the data quality is so bad that noise can be mistaken for peaks. Using SPLIT improves the situation a lot, and the data is very similar to the high statistics reference which takes longer to compute. The situation with a low number of simulated rays and very high SPLIT have some erratic behavior, showing some very different peak intensities than the reference, and some peaks that shouldn't be there at all." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/McStasScript_tutorial_3_EXTEND_and_WHEN.ipynb b/tutorial/McStasScript_tutorial_3_EXTEND_and_WHEN.ipynb new file mode 100644 index 00000000..83254c6b --- /dev/null +++ b/tutorial/McStasScript_tutorial_3_EXTEND_and_WHEN.ipynb @@ -0,0 +1,263 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced McStas features: EXTEND and WHEN\n", + "In this tutorial we will look at two advanced features in McStas, the EXTEND block and WHEN condition. Here we will use them to flag certain neutrons with EXTEND, and only record them in monitors when the flag is set using a WHEN condition." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\",\n", + " output_path=\"data_folder/mcstas_EXTEND_WHEN\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up an example McStas instrument\n", + "First we set up an example instrument conisiting of a source, a guide and a position/divergence monitor. The guide is set up such that it only has mirrors on the left and right side, and absorbs neutrons if they hit the top or bottom. This is done to look at the horizontal behavior independently from the vertical, as this is easier to analyze." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_simple\")\n", + "\n", + "src.xwidth = 0.02\n", + "src.yheight = 0.02\n", + "src.focus_xw = guide_opening_w = 0.05\n", + "src.focus_yh = guide_opening_h = 0.06\n", + "src.dist = 1.5\n", + "src.flux = 1E13\n", + "\n", + "wavelength = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.lambda0 = wavelength\n", + "src.dlambda = \"0.001*wavelength\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "guide = instrument.add_component(\"guide\", \"Guide_gravity\", AT=[0,0,1.5], RELATIVE=src)\n", + "guide.w1 = guide_opening_w\n", + "guide.h1 = guide_opening_h\n", + "guide.w2 = guide_opening_w\n", + "guide.h2 = guide_opening_h\n", + "guide.l = guide_length = 15\n", + "guide.mleft = 4.0\n", + "guide.mright = 4.0\n", + "guide.mtop = 0.0\n", + "guide.mbottom = 0.0\n", + "guide.G = -9.82" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "acceptance = instrument.add_component(\"acceptance\", \"DivPos_monitor\")\n", + "acceptance.set_AT([0,0, guide_length + 0.1], RELATIVE=guide)\n", + "acceptance.nh = 200\n", + "acceptance.ndiv = 200\n", + "acceptance.filename = '\"acceptance.dat\"'\n", + "acceptance.xwidth = 0.08\n", + "acceptance.yheight = 0.05\n", + "acceptance.maxdiv_h = 1.5\n", + "acceptance.restore_neutron = 1" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8)\n", + "instrument.settings(ncount=5E6)\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the data\n", + "Here we see an acceptance monitor, with position along the x-axis and divergence along the y-axis. The guide is under illuminated by the small source, so there are gaps in the acceptance diagram. We see the position and divergence of the beam consist of a large number of stripes, the ones with lowest divergence has the largest intensity.\n", + "\n", + "## Add an flag\n", + "A flag is just a name for a variable that records some information on the neutron during the simulation, and can be used later to make a decision. Here we could check how many times the ray was reflected in the guide.\n", + "\n", + "We use an EXTEND block after a component to access variables internal to the component in the instrument scope. We declare a variable in the instrument scope called *n_reflections*. In the component scope, one can use the SCATTERED variable which contains the number of times the ray has encountered the SCATTER keyword within the component. Usually this is done when entering and leaving, and under each scattering / reflection, so the number of reflections is SCATTERED - 2." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.add_declare_var(\"int\", \"n_reflections\")\n", + "guide.append_EXTEND(\"n_reflections = SCATTERED - 2;\")\n", + "guide.print_long()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Use the flag to limit what is recorded in a monitor\n", + "A WHEN statement can be used to activate / deactivate a component when some condition is true / false. For example we could require 0 reflection in our guide. We add a few monitors similar to the original, with the only difference being WHEN statements requiring 0, 1 or 2 reflections in the guide for the component to be active. We use a for loop to add the similar components, only changing the component instance name, filename and WHEN statement between each." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "reflection_numbers = [0, 1, 2]\n", + "\n", + "for reflections in reflection_numbers:\n", + " reflections_string = str(reflections)\n", + " \n", + " component_name = \"acceptance_\" + reflections_string\n", + " acceptance = instrument.add_component(component_name, \"DivPos_monitor\")\n", + " acceptance.filename = '\"acceptance_' + reflections_string + '.dat\"'\n", + " acceptance.set_WHEN(\"n_reflections == \" + reflections_string)\n", + " \n", + " acceptance.set_AT([0,0, guide_length + 0.1], RELATIVE=guide)\n", + " acceptance.nh = 200\n", + " acceptance.ndiv = 200\n", + " acceptance.xwidth = 0.08\n", + " acceptance.yheight = 0.05\n", + " acceptance.maxdiv_h = 1.5\n", + " acceptance.restore_neutron = 1\n", + " \n", + " acceptance.print_long()\n", + " print(\"\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation\n", + "We now run the simulation with the new monitors to see how they differ from the original version." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8)\n", + "instrument.settings(ncount=5E6)\n", + "instrument.show_settings()\n", + "\n", + "new_data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(new_data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "The original monitor is unchanged as it was not modified. On the monitors with different numbers of reflections, we see the middle line correspond to zero reflections, the two lines around those are for one reflection and so forth. This explains why the lines further from the center has lower intensity, as they underwent more reflections while also having a larger angle of incidence." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### The McStas instrument file\n", + "We here show the generated McStas instrument file in order to clarify how this would be accomplished without the McStasScript API." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"run_folder/python_tutorial.instr\") as file:\n", + " instrument_string = file.read()\n", + " print(instrument_string)" + ] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/McStasScript_tutorial_4_JUMP.ipynb b/tutorial/McStasScript_tutorial_4_JUMP.ipynb new file mode 100644 index 00000000..a72aafe0 --- /dev/null +++ b/tutorial/McStasScript_tutorial_4_JUMP.ipynb @@ -0,0 +1,280 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced McStas features: JUMP\n", + "In this notebook we will look at JUMP and how it can be used to control the sequence of execution of components. One instance where this is useful is if a guide splits into two. Consider an instrument with the following components:\n", + "\n", + "- source\n", + "- main guide\n", + "- guide1\n", + "- sample1\n", + "- detector1\n", + "- guide2\n", + "- sample2\n", + "- detector2\n", + "\n", + "After the main guide, if the ray hits the opening of guide1 the ray will continue to sample1 and detector1 as expected, but if it misses the opening of guide1, it will just be absorbed and never reach guide2 later in the component sequence. One possible solution is to use a JUMP statement, which jumps to another place in the component sequence. The target component must be an Arm, and no coordinate transformations are done, so the simplest solution is to have the Arm conincide with the component with the JUMP statement.\n", + "\n", + "- source\n", + "- main guide\n", + "- arm A JUMP arm B WHEN ray hits guide2 entrance \n", + "- guide1\n", + "- sample1\n", + "- detector1\n", + "- arm B (same position and rotation of arm A)\n", + "- guide2\n", + "- sample2\n", + "- detector2\n", + "\n", + "Here we build such an instrument with a few notes on the syntax along the way." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_simple\")\n", + "\n", + "src.xwidth = 0.12\n", + "src.yheight = 0.12\n", + "src.focus_xw = guide_opening_w = 0.1\n", + "src.focus_yh = guide_opening_h = 0.06\n", + "src.dist = 1.5\n", + "src.flux = 1E13\n", + "\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.001*wavelength\"\n", + "\n", + "guide = instrument.add_component(\"guide\", \"Guide_gravity\", AT=[0,0,1.5], RELATIVE=src)\n", + "guide.w1 = guide_opening_w\n", + "guide.h1 = guide_opening_h\n", + "guide.w2 = guide_opening_w\n", + "guide.h2 = guide_opening_h\n", + "guide.l = guide_length = 15\n", + "guide.m = 4.0\n", + "guide.G = -9.82" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the reference arm\n", + "We here add an arm just after the exit of the main guide which will be the component that performs the JUMP under certain circumstances. The McStas syntax for such a JUMP statement would be:\n", + "\n", + "JUMP *reference* WHEN *condition*\n", + "\n", + "We will call the arm we jump to for *target_arm*, and our condition is that the neutron is on the left side, so x<0. That means our JUMP statement would be:\n", + "\n", + "JUMP target_arm WHEN (x<0)\n", + "\n", + "In McStasScript this is added with the *set_JUMP* method, that takes a string for what to set after JUMP." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "start_arm = instrument.add_component(\"split_arm\", \"Arm\")\n", + "start_arm.set_AT([0,0, guide_length + 3E-3], RELATIVE=guide)\n", + "start_arm.set_JUMP(\"target_arm WHEN (x<0)\")\n", + "\n", + "print(start_arm)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the first daughter instrument\n", + "We then add the left side, which correspond to x>0, so this is the case where no jump was performed and the sequence of components runs as normal." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "guide1 = instrument.add_component(\"guide1\", \"Guide_gravity\")\n", + "guide1.set_AT([0.25*guide_opening_w,0,0], RELATIVE=start_arm)\n", + "guide1.set_ROTATED([0, 1, 0], RELATIVE=start_arm)\n", + "guide1.w1 = 0.5*guide_opening_w\n", + "guide1.h1 = 0.5*guide_opening_h\n", + "guide1.w2 = 0.5*guide_opening_w\n", + "guide1.h2 = 0.5*guide_opening_h\n", + "guide1.l = guide1_length = 10\n", + "guide1.m = 2.5\n", + "guide1.G = -9.82\n", + "\n", + "sample1 = instrument.add_component(\"sample1\", \"PowderN\")\n", + "sample1.set_AT([0,0,guide1_length+0.5], RELATIVE=guide1)\n", + "sample1.radius = 0.015\n", + "sample1.yheight = 0.05\n", + "sample1.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "banana1 = instrument.add_component(\"banana1\", \"Monitor_nD\", RELATIVE=sample1)\n", + "banana1.xwidth = 2.0\n", + "banana1.yheight = 0.3\n", + "banana1.filename = '\"banana1.dat\"'\n", + "banana1.options = '\"theta limits=[5 175] bins=150, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the second daughter instrument\n", + "Now we need to add the target_arm that rays jump to when they go to the right side of the guide split. This is in the exact same position of the previous arm, to avoid the need for a coordinate transformation which is not performed automatically when using JUMP statements.\n", + "\n", + "After that we add a second daughter instrument with a different sample." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "target_arm = instrument.add_component(\"target_arm\", \"Arm\")\n", + "target_arm.set_AT([0,0,0], RELATIVE=start_arm)\n", + "\n", + "guide2 = instrument.add_component(\"guide2\", \"Guide_gravity\")\n", + "guide2.set_AT([-0.25*guide_opening_w,0,0], RELATIVE=target_arm)\n", + "guide2.set_ROTATED([0, -1, 0], RELATIVE=target_arm)\n", + "guide2.w1 = 0.5*guide_opening_w\n", + "guide2.h1 = 0.5*guide_opening_h\n", + "guide2.w2 = 0.5*guide_opening_w\n", + "guide2.h2 = 0.5*guide_opening_h\n", + "guide2.l = guide1_length = 15\n", + "guide2.m = 2.5\n", + "guide2.G = -9.82\n", + "\n", + "sample2 = instrument.add_component(\"sample2\", \"PowderN\")\n", + "sample2.set_AT([0,0,guide1_length+0.5], RELATIVE=guide2)\n", + "sample2.radius = 0.015\n", + "sample2.yheight = 0.05\n", + "sample2.reflections = '\"Cu.laz\"'\n", + "\n", + "banana2 = instrument.add_component(\"banana2\", \"Monitor_nD\", RELATIVE=sample2)\n", + "banana2.xwidth = 2.0\n", + "banana2.yheight = 0.3\n", + "banana2.filename = '\"banana2.dat\"'\n", + "banana2.options = '\"theta limits=[5 175] bins=150, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8)\n", + "instrument.settings(ncount=5E6, output_path=\"data_folder/mcstas_JUMP\")\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Interpretation of the data\n", + "We see that each daughter instrument have beam and show the different powder patterns as expected." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### The McStas instrument file\n", + "We here show the generated McStas instrument file in order to clarify how this would be accomplished without the McStasScript API." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"run_folder/python_tutorial.instr\") as file:\n", + " instrument_string = file.read()\n", + " print(instrument_string)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/Union_tutorial_1_processes_and_materials.ipynb b/tutorial/Union_tutorial_1_processes_and_materials.ipynb new file mode 100644 index 00000000..1d680180 --- /dev/null +++ b/tutorial/Union_tutorial_1_processes_and_materials.ipynb @@ -0,0 +1,453 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# The Union components\n", + "This tutorial is the first in a series showing how the Union components are used. This notebook focuses on setting up material definitions that are used to provide scattering physics to geometries. There are several kinds of Union components, and they need to be used in conjunction with one another to function.\n", + "- Process components: Describe individual scattering phenomena, such as incoherent, powder, single crystal scattering\n", + "- Make_material component: Joins several processes into a material definition\n", + "- Geometry components: Describe geometry, each is assigned a material definition\n", + "- Union logger components: Records information for each scattering event and plots it\n", + "- Union abs logger components: Records information for each absorption event and plots it\n", + "- Union conditional components: Modifies a logger or abs logger so it only records when certain final condition met\n", + "- Union master component: Performs simulation described by previous Union components\n", + "\n", + "In this notebook we will focus on setting up materials using process components and the *Union_make_material* component, but the Union components can not work individually, so it will also be necessary to add a geometry and the *Union_master*. First we import McStasScript and create a new instrument object.\n", + "\n", + "In case of any issues with running the tutorial notebooks there is troubleshooting at the end of this notebook." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Process components\n", + "In this notebook we will focus on exploring how to build different physical descriptions of materials, and checking that they behave as expected. We start by looking at the process component for incoherent scattering, Incoherent_process." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_components(\"Work directory\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Incoherent_process\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The process components in general have few parameters as they just describe a single physical phenomena. The incoherent process here is described adequately by just the cross section *sigma* and volume of the unit cell, *unit_cell_volume*.\n", + "\n", + "Two parameters are available for all processes, *packing_factor* and *interact_fraction*. The packing factor describes how dense the material is, and can make it easier to mix for example different powders. It is implemented as a simple factor on the scattering strength. The interact fraction is used to balance many processes when they are used in one material. Normally processes are sampled according to they natural probability for scattering, but this can be overwritten using the *interact_fraction*, which provides the sampling probability directly, they just have to sum to 1 within a material." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "incoherent = instrument.add_component(\"incoherent\", \"Incoherent_process\")\n", + "incoherent.sigma = 2.5\n", + "incoherent.unit_cell_volume = 13.8" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Making a material\n", + "In order to collect processes into a material, one uses the *Union_make_material* component. Here are the parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_make_material\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A material definition thus consists of a number of processes given with the *process_string* parameter, and a description of the absorption in the material given with the inverse penetration depth at the standard neutron speed of 2200 m/s. For our first test material, lets just set absorption to zero and set our process_string to incoherent, referring to the process we created above.\n", + "\n", + "The name of the material is now inc_material, which will be used in the future to refer to this material." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "inc_material = instrument.add_component(\"inc_material\", \"Union_make_material\")\n", + "inc_material.my_absorption = 0.0\n", + "inc_material.process_string = '\"incoherent\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If the material contains no physical processes, it is necessary to set the *absorber* parameter to 1, as it will just have an absorption description. Here we make a material called abs_material. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "absorber = instrument.add_component(\"abs_material\", \"Union_make_material\")\n", + "absorber.absorber = 1\n", + "absorber.my_absorption = 3.0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The primary reason for having both process components and a make_material component is that it is possible to add as many processes in one material as necessary. Here we create a powder process, and then make a material using the powder and previously defined incoherent processes." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "powder = instrument.add_component(\"powder\", \"Powder_process\")\n", + "powder.reflections = '\"Cu.laz\"'\n", + "\n", + "inc_material = instrument.add_component(\"powder_material\", \"Union_make_material\")\n", + "inc_material.my_absorption = 1.2\n", + "inc_material.process_string = '\"incoherent,powder\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "At this point we have three materials defined\n", + "\n", + "| Material name | Description |\n", + "|-----------------|------------------------------------------------------------------|\n", + "| inc_material | Has one incoherent process and no absorption |\n", + "| abs_material | Only has absorption |\n", + "| powder_material | Has both incoherent and powder process in addition to absorption |\n", + "\n", + "Let us define a quick test instrument to see these materials are behaving as expected. First we add a source." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "\n", + "source_width = instrument.add_parameter(\"source_width\", value=0.15,\n", + " comment=\"Width of source in [m]\")\n", + "src.xwidth = source_width\n", + "src.yheight = 0.03\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.001*wavelength\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding geometries that use the material definitions\n", + "Here we add three boxes, each using a different material definition and placed next to one another. The *material_string* parameter is used to specify the material name. The *priority* parameter will be explained later, as it is only important when geometries overlap, here they are spatially separated, yet the priorities must still be unique.\n", + "\n", + "It is important to note that these three boxes will be simulated simultaneously in the McStas simulation flow, so no need for GROUP statements to have these in parallel. Because they are simulated simultaneously, a ray can go from one to another, which would not be possible with a standard GROUP." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "box_inc = instrument.add_component(\"box_inc\", \"Union_box\", AT=[0.04,0,1], RELATIVE=src)\n", + "box_inc.xwidth = 0.03\n", + "box_inc.yheight = 0.03\n", + "box_inc.zdepth = 0.03\n", + "box_inc.material_string = '\"inc_material\"'\n", + "box_inc.priority = 10\n", + "\n", + "box_inc = instrument.add_component(\"box_powder\", \"Union_box\", AT=[0,0,1], RELATIVE=src)\n", + "box_inc.xwidth = 0.03\n", + "box_inc.yheight = 0.03\n", + "box_inc.zdepth = 0.01\n", + "box_inc.material_string = '\"powder_material\"'\n", + "box_inc.priority = 11\n", + "\n", + "box_inc = instrument.add_component(\"box_abs\", \"Union_box\", AT=[-0.04,0,1], RELATIVE=src)\n", + "box_inc.xwidth = 0.03\n", + "box_inc.yheight = 0.03\n", + "box_inc.zdepth = 0.03\n", + "box_inc.material_string = '\"abs_material\"'\n", + "box_inc.priority = 12" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding loggers that show scattering and absorption\n", + "In order to check the three materials behave as expected, we add spatial loggers for scattering and absorption. These are called loggers and abs_loggers, here are the parameters for a logger." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_logger_2D_space\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The parameters for the abs_logger are very similar, so the two are added here." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger = instrument.add_component(\"logger_space\", \"Union_logger_2D_space\")\n", + "logger.set_RELATIVE(\"box_powder\")\n", + "logger.D_direction_1 = '\"z\"'\n", + "logger.D1_min = -0.04\n", + "logger.D1_max = 0.04\n", + "logger.n1 = 250\n", + "logger.D_direction_2 = '\"x\"'\n", + "logger.D2_min = -0.075\n", + "logger.D2_max = 0.075\n", + "logger.n2 = 400\n", + "logger.filename = '\"logger.dat\"'\n", + "\n", + "logger = instrument.add_component(\"abs_logger_space\", \"Union_abs_logger_2D_space\")\n", + "logger.set_RELATIVE(\"box_powder\")\n", + "logger.D_direction_1 = '\"z\"'\n", + "logger.D1_min = -0.04\n", + "logger.D1_max = 0.04\n", + "logger.n1 = 250\n", + "logger.D_direction_2 = '\"x\"'\n", + "logger.D2_min = -0.075\n", + "logger.D2_max = 0.075\n", + "logger.n2 = 400\n", + "logger.filename = '\"abs_logger.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding the Union master component\n", + "The Union master component is what actually executes the simulation, and so it takes information from all Union components defined before and performs the described simulation. This is the component that matters in terms of order of execution within the sequence of McStas components. As all the previous components have described what the master component should simulate, it has no required parameters. It also does not matter where it is located in space, as it will grab the locations described by all previous Union components that need a spatial location, such as the geometries and loggers." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_master\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "master = instrument.add_component(\"master\", \"Union_master\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Running the simulation\n", + "Here the McStas simulation is executed as normal." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=8.0)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_materials\")\n", + "instrument.show_settings()\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Interpreting the results\n", + "The first logger shows scattering, and since the top box has incoherent, and the middle both powder and incoherent, we expect those to show up. We can see the beam attenuation, as the beam originates from the left side.\n", + "\n", + "The second logger shows absorption, and here the top box is absent as it has no absorption cross section. The bottom box is however visible now, as it has absorption but no scattering. As the absorber is quite strong, we see the attenuation here as well." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Alternative run to show powder properties\n", + "In order to see the scattering from the powder sample, we restrict the source size to only illuminate the center box with a powder material. A wavelength with powder lines close to 90 deg is selected to ensure the scattering from the center box hits the surrounding boxes.\n", + "\n", + "We choose to show the data with logarithmic colorscale using the *name_plot_options* method on functions." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=2.8, source_width=0.03)\n", + "instrument.settings(ncount=5E6, output_path=\"data_folder/union_materials\")\n", + "instrument.show_settings()\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space\", data, log=True)\n", + "ms.name_plot_options(\"abs_logger_space\", data, log=True)\n", + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "Now that the direct beam only hits the center box, all rays that enter the surrounding boxes are scattered from that center box. Since the center box contains a powder, the scattered beam is not homogeneous and most of it is in the form of Bragg peaks with certain scattering angles, and we can see two of these intersecting the surrounding geometries." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Troubleshooting\n", + "In case of issues with the notebooks concerning the Union components or McStasScript it is recommended to:\n", + "- Update McStasScript with python -m pip install --upgrade mcstasscript\n", + "- Get newest version of Union components (Both library files and components themselves)\n", + "\n", + "Since the Union components need to collaborate, it is important to have the same version of the libraries and components. The newest version of the components can be found here: https://github.com/McStasMcXtrace/McCode/tree/master/mcstas-comps/contrib/union\n", + "All libraries for McStas are found here: https://github.com/McStasMcXtrace/McCode/tree/master/mcstas-comps/share but only a few are needed for the Union components:\n", + "- Union_initialization.c\n", + "- Union_functions.c\n", + "- Geometry_functions.c\n", + "- Union_last_functions.c (if on McStas 3.X)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/Union_tutorial_2_geometry.ipynb b/tutorial/Union_tutorial_2_geometry.ipynb new file mode 100644 index 00000000..9dc4bb6b --- /dev/null +++ b/tutorial/Union_tutorial_2_geometry.ipynb @@ -0,0 +1,514 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced geometry using the Union components\n", + "The Union components allow the user to construct advanced geometry from simple shapes. Each available shape has their own component, here are the currently available geometry components.\n", + "- Union_box\n", + "- Union_sphere\n", + "- Union_cylinder\n", + "- Union_cone\n", + "\n", + "They differ in their parameters describing the geometry, but are otherwise identical. In this notebook we will show how to construct hollow geometries with several layers, and that multiple scattering between these quickly result in complex behavior." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setting up some standard materials\n", + "Before setting up the geometry, we need some material definition, here we set up aluminium and a sample powder." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 4*0.0082 # 4 atoms per unit cell\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*4*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2]\n", + "\n", + "Sample_inc = instrument.add_component(\"Sample_inc\", \"Incoherent_process\")\n", + "Sample_inc.sigma = 4*3.4176\n", + "Sample_inc.unit_cell_volume = 1079.1\n", + "\n", + "Sample_pow = instrument.add_component(\"Sample_pow\", \"Powder_process\")\n", + "Sample_pow.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "Sample = instrument.add_component(\"Sample\", \"Union_make_material\")\n", + "Sample.process_string = '\"Sample_inc,Sample_pow\"'\n", + "Sample.my_absorption = 100*4*2.9464/1079.1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up source\n", + "We will also need a source, and allow the wavelength to be tuned with a instrument parameter." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Describing the geometry of a simple cryostat\n", + "A cryostat is a complex geometry with several layers to consider. The way geometry is described in the Union components aims to make it easy to describe such systems. This is aciheved by allowing the simple geometries to overlap, and having a value called the priority to determine which is active in a given volume. If two geometries overlap, the overlapping region gets the physics from the geometry with the highest priority. In that way a cryostat model can be created by having a high priority for the sample in the center, and decreasing the priority as we move out.\n", + "\n", + "The ray tracing algorithm can however not handle if two geometries overlap perfectly, even with a single side. This could be two boxes sharing a side.\n", + "\n", + "Let us look at the parameters for a Union geometry component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_cylinder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The geometry components have many parameters due to their flexibility, but only a few are needed for basic use.\n", + "- material_string : string for selecting an available material\n", + "- priority : number, in case of overlap the geometry with highest priority decides the material properties\n", + "- geometrical parameters : Here radius and yheight\n", + "\n", + "In addition there is a focusing system where scattering of physical processes that support this can be forced to a certain direction, this is controlled with these parameters, but are rarely used:\n", + "- target_index : relative component index of target\n", + "- target_x : if target_index not set, relative x coordinate of target\n", + "- target_y : if target_index not set, relative y coordinate of target\n", + "- target_z : if target_index not set, relative z coordinate of target\n", + "- focus_aw : angular width of focusing cone (either specify angular, box or circular)\n", + "- focus_ah : angular height of focusing cone \n", + "- focus_xw : spatial width of focusing cone (box type focusing)\n", + "- focus_xh : spatial height of focusing\n", + "- focus_r : spatial radius of focusing cone (circular)\n", + "\n", + "Finally there is p_interact, which is used for controlling Monte Carlo sampling frequency of the geometry, as it controls the probability for scattering occurring for any path before or after scattering.\n", + "\n", + "The remaining parameters including masks and number_of_activations are for advanced rules which will be described in a later tutorial." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### First geometry, a sample in a container\n", + "\n", + "We have defined the following materials that are available to us:\n", + "- Al\n", + "- Sample\n", + "\n", + "Lets start by building a simple powder container with a lid." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample_geometry = instrument.add_component(\"sample_geometry\", \"Union_cylinder\")\n", + "sample_geometry.yheight = 0.03\n", + "sample_geometry.radius = 0.0075\n", + "sample_geometry.material_string='\"Sample\"' \n", + "sample_geometry.priority = 100\n", + "sample_geometry.set_AT([0,0,1], RELATIVE=src)\n", + "\n", + "container = instrument.add_component(\"sample_container\", \"Union_cylinder\")\n", + "container.set_RELATIVE(sample_geometry)\n", + "container.yheight = 0.03+0.003 # 1.5 mm top and button\n", + "container.radius = 0.0075 + 0.0015 # 1.5 mm sides of container\n", + "container.material_string='\"Al\"' \n", + "container.priority = 99\n", + "\n", + "container_lid = instrument.add_component(\"sample_container_lid\", \"Union_cylinder\")\n", + "container_lid.set_AT([0, 0.0155, 0], RELATIVE=container)\n", + "container_lid.yheight = 0.004\n", + "container_lid.radius = 0.013\n", + "container_lid.material_string='\"Al\"' \n", + "container_lid.priority = 98" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up loggers to check what is going on\n", + "In order to view what geometry we have set up, we set up three loggers that view the scattering projected onto three different planes. These record the spatail distribution of scattering events." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(sample_geometry)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.02\n", + "logger_zx.D1_max = 0.02\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.02\n", + "logger_zx.D2_max = 0.02\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "logger_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_zy.set_RELATIVE(sample_geometry)\n", + "logger_zy.D_direction_1 = '\"z\"'\n", + "logger_zy.D1_min = -0.02\n", + "logger_zy.D1_max = 0.02\n", + "logger_zy.n1 = 300\n", + "logger_zy.D_direction_2 = '\"y\"'\n", + "logger_zy.D2_min = -0.02\n", + "logger_zy.D2_max = 0.02\n", + "logger_zy.n2 = 300\n", + "logger_zy.filename = '\"logger_zy.dat\"'\n", + "\n", + "logger_xy = instrument.add_component(\"logger_space_xy\", \"Union_logger_2D_space\")\n", + "logger_xy.set_RELATIVE(sample_geometry)\n", + "logger_xy.D_direction_1 = '\"x\"'\n", + "logger_xy.D1_min = -0.02\n", + "logger_xy.D1_max = 0.02\n", + "logger_xy.n1 = 300\n", + "logger_xy.D_direction_2 = '\"y\"'\n", + "logger_xy.D2_min = -0.02\n", + "logger_xy.D2_max = 0.02\n", + "logger_xy.n2 = 300\n", + "logger_xy.filename = '\"logger_xy.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Add master component\n", + "We need to remember to add a master component to actually perform the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "master = instrument.add_component(\"master\", \"Union_master\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Add banana monitor\n", + "We are also interested in viewing some scattering data, here we add a banana monitor using the Monitor_nD component." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample_geometry)\n", + "banana.xwidth = 1.5\n", + "banana.yheight = 0.4\n", + "banana.restore_neutron = 1\n", + "banana.options = '\"theta limits=[5 175] bins=250, banana\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Run simulation\n", + "Now we need to run the simulation to view the geometry we have built." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=3.0)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_geometry\")\n", + "instrument.show_settings()\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plotting the data\n", + "Due to the large differences between the scattered intensity from parts in the direct beam and outside, we use a logarithmic axis to display scattered intensity. We limit it to 4 orders of magnitude below the maximum intensity, otherwise a single very low intensity event can draw the intensity axis out to a large interval making it difficult to see the important nuances." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_xy\", data, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of results\n", + "The beam is narrower than the sample, but taller than the can, so some parts of the sample powder are not directly illuminated, and can thus be seen as a intensity area especially on the zx logger image. The aluminum scatters less, and so lower intensity still." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding a cryostat around the sample can\n", + "We can add a crude model of a cryostat around our sample can by adding more Union geometry components. They have to be before the Union_master in the McStas instrument file, so we use the keyword argument *before* in the *add_component* method to specify this when adding the components.\n", + "\n", + "We also need to designate areas as empty, this is done using the default material Vacuum which has no absorption or scattering processes. In this way we can create several layers by decreasing the priority when going out." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "inner_wall = instrument.add_component(\"cryostat_wall\", \"Union_cylinder\",\n", + " before=\"master\")\n", + "inner_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall.yheight = 0.12\n", + "inner_wall.radius = 0.03\n", + "inner_wall.material_string='\"Al\"' \n", + "inner_wall.priority = 80\n", + "\n", + "inner_wall_vac = instrument.add_component(\"cryostat_wall_vacuum\", \"Union_cylinder\",\n", + " before=\"master\")\n", + "inner_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall_vac.yheight = 0.12 - 0.008\n", + "inner_wall_vac.radius = 0.03 - 0.002\n", + "inner_wall_vac.material_string='\"Vacuum\"' \n", + "inner_wall_vac.priority = 81\n", + "\n", + "outer_wall = instrument.add_component(\"outer_cryostat_wall\", \"Union_cylinder\",\n", + " before=\"master\")\n", + "outer_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "outer_wall.yheight = 0.15\n", + "outer_wall.radius = 0.1\n", + "outer_wall.material_string='\"Al\"' \n", + "outer_wall.priority = 60\n", + "\n", + "outer_wall_vac = instrument.add_component(\"outer_cryostat_wall_vacuum\", \"Union_cylinder\",\n", + " before=\"master\")\n", + "outer_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "outer_wall_vac.yheight = 0.15 - 0.01\n", + "outer_wall_vac.radius = 0.1 - 0.003\n", + "outer_wall_vac.material_string='\"Vacuum\"' \n", + "outer_wall_vac.priority = 61" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adjusting the logger view to see the larger cryostat area\n", + "The loggers were only viewing a small area around the sample can, but this can be expanded as we still have access to the component objects." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx.set_parameters(D1_min=-0.12, D1_max=0.12, D2_min=-0.12, D2_max=0.12)\n", + "logger_zy.set_parameters(D1_min=-0.12, D1_max=0.12, D2_min=-0.12, D2_max=0.12)\n", + "logger_xy.set_parameters(D1_min=-0.12, D1_max=0.12, D2_min=-0.12, D2_max=0.12)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Viewing the instrument\n", + "The instrument can be viewed with the *show_instrument* method. The mock cryostat and detector can be seen in a 3D view." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_instrument()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run the updated instrument file\n", + "Run the simulation with the added cryostat, since no parameters or settings are changed it is enough to just call the backengine function and grab the new data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data_cryo = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plot the data from the new simulation\n", + "Here we increase the orders of magnitude of intensity plotted on the log plots. Try to play with these values to see how it changes the plots." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data_cryo, log=[True, True, True, False], orders_of_mag=5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the data\n", + "The different layers of the cryostat both result in scattering from the aluminium the beam has to move through, but also some increase intensity where it illuminated by scattering from the sample.\n", + "\n", + "### Comparing situation with and without cryostat\n", + "It could be interesting to see what difference adding the cryostat did to the measured signal in the banana monitor, here we extract the numpy arrays and plot them manually with matplotlib for a direct comparison. Ensure you run the two simulations with the same wavelength in order for a comparison to be meaningful." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana_can = ms.name_search(\"banana\", data)\n", + "banana_cryo = ms.name_search(\"banana\", data_cryo)\n", + "\n", + "import copy\n", + "import numpy as np\n", + "banana_diff = copy.deepcopy(banana_cryo)\n", + "banana_diff.Intensity = banana_cryo.Intensity - banana_can.Intensity\n", + "banana_diff.Error = np.sqrt(banana_cryo.Error**2 + banana_can.Error**2)\n", + "\n", + "import matplotlib.pyplot as plt\n", + "plt.figure(figsize=(14,6))\n", + "plt.plot(banana_can.xaxis, banana_can.Intensity, \"r\",\n", + " banana_cryo.xaxis, banana_cryo.Intensity, \"b\",\n", + " banana_diff.xaxis, banana_diff.Intensity-10.0, \"k\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "l = plt.legend([\"Sample in can\", \"Sample in can in cryostat\", \"Difference displaced to -10\"])" + ] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/Union_tutorial_3_loggers.ipynb b/tutorial/Union_tutorial_3_loggers.ipynb new file mode 100644 index 00000000..8481d148 --- /dev/null +++ b/tutorial/Union_tutorial_3_loggers.ipynb @@ -0,0 +1,601 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Visualizing what happens in Union master\n", + "One disadvantage to collecting all the simulation in the Union_master component, is that it is not possible to insert monitors between the parts to check on the beam. This issue is addressed by adding logger components that can record scattering and absorption events that occurs during the simulation. This notebook will show examples on the usage of loggers and their features." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up materials and geometry to investigate\n", + "First we set up the same mock cryostat we created in the advanced geometry tutorial to have an interesting system to investigate using the loggers." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3[m^3 E-30]=[m E-2], factor 100\n", + "\n", + "Sample_inc = instrument.add_component(\"Sample_inc\", \"Incoherent_process\")\n", + "Sample_inc.sigma = 3.4176\n", + "Sample_inc.unit_cell_volume = 1079.1\n", + "\n", + "Sample_pow = instrument.add_component(\"Sample_pow\", \"Powder_process\")\n", + "Sample_pow.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "Sample = instrument.add_component(\"Sample\", \"Union_make_material\")\n", + "Sample.process_string = '\"Sample_inc,Sample_pow\"'\n", + "Sample.my_absorption = 100*2.9464/1079.1\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "sample_geometry = instrument.add_component(\"sample_geometry\", \"Union_cylinder\")\n", + "sample_geometry.yheight = 0.03\n", + "sample_geometry.radius = 0.0075\n", + "sample_geometry.material_string='\"Sample\"' \n", + "sample_geometry.priority = 100\n", + "sample_geometry.set_AT([0,0,1], RELATIVE=src)\n", + "\n", + "container = instrument.add_component(\"sample_container\", \"Union_cylinder\")\n", + "container.set_RELATIVE(sample_geometry)\n", + "container.yheight = 0.03+0.003 # 1.5 mm top and button\n", + "container.radius = 0.0075 + 0.0015 # 1.5 mm sides of container\n", + "container.material_string='\"Al\"' \n", + "container.priority = 99\n", + "\n", + "container_lid = instrument.add_component(\"sample_container_lid\", \"Union_cylinder\")\n", + "container_lid.set_AT([0, 0.0155, 0], RELATIVE=container)\n", + "container_lid.yheight = 0.004\n", + "container_lid.radius = 0.013\n", + "container_lid.material_string='\"Al\"' \n", + "container_lid.priority = 98\n", + "\n", + "inner_wall = instrument.add_component(\"cryostat_wall\", \"Union_cylinder\")\n", + "inner_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall.yheight = 0.12\n", + "inner_wall.radius = 0.03\n", + "inner_wall.material_string='\"Al\"' \n", + "inner_wall.priority = 80\n", + "\n", + "inner_wall_vac = instrument.add_component(\"cryostat_wall_vacuum\", \"Union_cylinder\")\n", + "inner_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall_vac.yheight = 0.12 - 0.008\n", + "inner_wall_vac.radius = 0.03 - 0.002\n", + "inner_wall_vac.material_string='\"Vacuum\"' \n", + "inner_wall_vac.priority = 81\n", + "\n", + "outer_wall = instrument.add_component(\"outer_cryostat_wall\", \"Union_cylinder\")\n", + "outer_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "outer_wall.yheight = 0.15\n", + "outer_wall.radius = 0.1\n", + "outer_wall.material_string='\"Al\"' \n", + "outer_wall.priority = 60\n", + "\n", + "outer_wall_vac = instrument.add_component(\"outer_cryostat_wall_vacuum\", \"Union_cylinder\")\n", + "outer_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "outer_wall_vac.yheight = 0.15 - 0.01\n", + "outer_wall_vac.radius = 0.1 - 0.003\n", + "outer_wall_vac.material_string='\"Vacuum\"' \n", + "outer_wall_vac.priority = 61\n", + "\n", + "instrument.print_components()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.show_components(\"Work directory\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding Union logger components\n", + "Union logger components need to be added before the *Union_master* component, as the master need to record the necessary information when the simulation is being performed. There are two different kind of Union logger components, the *loggers* that record scattering and the *abs_loggers* that record absorption. They have similar parameters and user interface. Here is a list of the currently available loggers:\n", + "\n", + "- Union_logger_1D\n", + "- Union_logger_2D_space\n", + "- Union_logger_2D_space_time\n", + "- Union_logger_3D_space\n", + "- Union_logger_2D_kf\n", + "- Union_logger_2D_kf_time\n", + "- Union_logger_2DQ\n", + "\n", + "- Union_abs_logger_1D_space\n", + "- Union_abs_logger_1D_space_tof\n", + "- Union_abs_logger_2D_space\n", + "\n", + "The most commonly used logger is probably the *Union_logger_2D_space*, this component records spatial distribution of scattering, here are the available parameters." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument.component_help(\"Union_logger_2D_space\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setting up a 2D_space logger\n", + "One can select which two axis to record using *D_direction_1* and *D_direction_2*, and the range with for example *D1_min* and *D1_max*. When spatial information is recorded it is also important to place the logger at an appropriate position, here we center it on the sample position." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(sample_geometry)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.12\n", + "logger_zx.D1_max = 0.12\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.12\n", + "logger_zx.D2_max = 0.12\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "logger_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_zy.set_RELATIVE(sample_geometry)\n", + "logger_zy.D_direction_1 = '\"z\"'\n", + "logger_zy.D1_min = -0.12\n", + "logger_zy.D1_max = 0.12\n", + "logger_zy.n1 = 300\n", + "logger_zy.D_direction_2 = '\"y\"'\n", + "logger_zy.D2_min = -0.12\n", + "logger_zy.D2_max = 0.12\n", + "logger_zy.n2 = 300\n", + "logger_zy.filename = '\"logger_zy.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation\n", + "If mpi is installed, one can add mpi=N where N is the number of cores available to speed up the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=3.0)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_loggers\")\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=True, orders_of_mag=4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the data\n", + "The zx logger views the cryostat from the top, while the zy loggers shows it from the side. These are histograms of scattered intensity, and it is clear the majority of the scattering happens in the direct beam. There are however scattering events in all parts of our mock cryostat, as neutrons that scattered in either the sample or cryostat walls could go in any direction due to the incoherent scattering. The aluminium and sample also have powder scattering, so some patterns can be seen from the debye scherrer cones." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Logger targets\n", + "It is possible to attach a logger to a certain geometry, or even a list of geometries using the *target_geometry* parameter. In that way one can for example view the scattering in the sample environment, while ignoring the sample. It is also possible to select a number of specific scattering processes to investigate with the *target_process* parameter. This is especially useful when working with a single crystal process, that only scatters when the Bragg condition is met.\n", + "\n", + "Let us modify our existing loggers to view certain parts of the simulated system, and then rerun the simulation. If mpi is installed, one can add mpi=N where N is the number of cores available to speed up the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "logger_zx.target_geometry = '\"outer_cryostat_wall,cryostat_wall\"'\n", + "logger_zy.target_geometry = '\"sample_geometry\"'\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=[True, False], orders_of_mag=4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Scattering order\n", + "All loggers also have the option to only record given scattering orders. For example only record the second scattering.\n", + "- order_total : Match given number of scattering events, counting all scattering events in the system\n", + "- order_volume : Match given number of scattering events, only counting events in the current volume\n", + "- order_volume_process : Match given number of scattering events, only counting events in current volume with current process\n", + "\n", + "We can modify our previous loggers to test out these features. The zx logger viewing from above will keep the target, but we remove the sample target on the zy logger, which is done by setting the *taget_geometry* to NULL. We choose to look at the second scattering event." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "logger_zx.order_total = 2\n", + "\n", + "logger_zy.target_geometry = '\"NULL\"'\n", + "logger_zy.order_total = 2\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data, log=True, orders_of_mag=3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Demonstration of additional logger components\n", + "Here we add a few more loggers to showcase what kind of information that can be displayed.\n", + "- 1D logger that logs scattered intensity as function of time\n", + "- 2D abs_logger that logs absorption projected onto the scattering plane\n", + "- 2DQ logger that logs scattering vector projected onto the scattering plane\n", + "- 2D kf logger that logs final wavevector projected onto the scattering plane" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_1D = instrument.add_component(\"logger_1D\", \"Union_logger_1D\", before=\"master\")\n", + "logger_1D.variable = '\"time\"'\n", + "logger_1D.min_value = 0.0006\n", + "logger_1D.max_value = 0.0012\n", + "logger_1D.n1 = 300\n", + "logger_1D.filename = '\"logger_1D_time.dat\"'\n", + "\n", + "abs_logger_zx = instrument.add_component(\"abs_logger_space_zx\", \"Union_abs_logger_2D_space\",\n", + " before=\"master\")\n", + "abs_logger_zx.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "abs_logger_zx.D_direction_1 = '\"z\"'\n", + "abs_logger_zx.D1_min = -0.12\n", + "abs_logger_zx.D1_max = 0.12\n", + "abs_logger_zx.n1 = 300\n", + "abs_logger_zx.D_direction_2 = '\"x\"'\n", + "abs_logger_zx.D2_min = -0.12\n", + "abs_logger_zx.D2_max = 0.12\n", + "abs_logger_zx.n2 = 300\n", + "abs_logger_zx.filename = '\"abs_logger_zx.dat\"'\n", + "\n", + "logger_2DQ = instrument.add_component(\"logger_2DQ\", \"Union_logger_2DQ\", before=\"master\")\n", + "logger_2DQ.Q_direction_1 = '\"z\"'\n", + "logger_2DQ.Q1_min = -5.0\n", + "logger_2DQ.Q1_max = 5.0\n", + "logger_2DQ.n1 = 200\n", + "logger_2DQ.Q_direction_2 = '\"x\"'\n", + "logger_2DQ.Q2_min = -5.0\n", + "logger_2DQ.Q2_max = 5.0\n", + "logger_2DQ.n2 = 200\n", + "logger_2DQ.filename = '\"logger_2DQ.dat\"'\n", + "\n", + "logger_2D_kf = instrument.add_component(\"logger_2D_kf\", \"Union_logger_2D_kf\",\n", + " before=\"master\")\n", + "logger_2D_kf.Q_direction_1 = '\"z\"'\n", + "logger_2D_kf.Q1_min = -2.5\n", + "logger_2D_kf.Q1_max = 2.5\n", + "logger_2D_kf.n1 = 200\n", + "logger_2D_kf.Q_direction_2 = '\"x\"'\n", + "logger_2D_kf.Q2_min = -2.5\n", + "logger_2D_kf.Q2_max = 2.5\n", + "logger_2D_kf.n2 = 200\n", + "logger_2D_kf.filename = '\"logger_2D_kf.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Runnig the simulation\n", + "We now rerun the simulation with the new loggers. If mpi is installed, one can add mpi=N where N is the number of cores available to speed up the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"abs_logger_space_zx\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"logger_1D\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"logger_2DQ\", data, log=True, orders_of_mag=3)\n", + "ms.name_plot_options(\"logger_2D_kf\", data, log=True, orders_of_mag=3)\n", + "\n", + "ms.make_sub_plot(data[0:2])\n", + "ms.make_sub_plot(data[2:4])\n", + "ms.make_sub_plot(data[4:6])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Interpreting the data\n", + "We see the scattered intensity as a function of time, here the peaks correspond to the direct beam intersecting the sides of the cryostat and sample. The source used release all neutrons at time 0, so it is a perfect pulse.\n", + "\n", + "The absorption monitor shows an image very similar to the scattered intensity, but this could be very different, for example when using materials meant as shielding.\n", + "\n", + "The 2D scattering vector is interesting, it shows a small sphere made of vertical lines, these are powder Bragg peaks. Since the wavevector is almost identical for all incoming neutrons, the first scattering can only access this smaller region of the space. The larger circle is incoherent scattering from second and later scattering events, where the incoming wavevector could be any direction since a scattering already happened.\n", + "\n", + "The 2D final wavevector plot shows mainly the powder Bragg peaks." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Animations and time series\n", + "Several of the Union loggers sets up more than one McStas monitor, these include:\n", + "- Union_logger_3D_space\n", + "- Union_logger_2D_space_time\n", + "- Union_logger_2D_kf_time\n", + "\n", + "The Union_logger_2D_space_time for example sets up a number of Union_logger_2D_space monitors that are limited to specific time intervals. This can be used to make an animation of the monitor, which we will demonstrate here." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "log_2D_st = instrument.add_component(\"logger_2D_space_time\", \"Union_logger_2D_space_time\",\n", + " before=\"master\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "log_2D_st.time_bins = 36\n", + "log_2D_st.time_min = 0.0007\n", + "log_2D_st.time_max = 0.0011\n", + "\n", + "log_2D_st.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "log_2D_st.D_direction_1 = '\"z\"'\n", + "log_2D_st.D1_min = -0.12\n", + "log_2D_st.D1_max = 0.12\n", + "log_2D_st.n1 = 300\n", + "log_2D_st.D_direction_2 = '\"x\"'\n", + "log_2D_st.D2_min = -0.12\n", + "log_2D_st.D2_max = 0.12\n", + "log_2D_st.n2 = 300\n", + "log_2D_st.filename = '\"logger_2D_space_time.dat\"'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating an animation\n", + "The plotter in McStasScript can create animations when supplied with many McStasData objects. We use name_search to find all the data from the relevant logger, and then a for loop to set plot options for each of them. Then the plotter can make an animation, which is saved as a gif." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ani_data = ms.name_search(\"logger_2D_space_time\", data)\n", + "for frame in ani_data:\n", + " frame.set_plot_options(log=True, colormap=\"jet\")\n", + " \n", + "ms.make_animation(ani_data, filename=\"animation_demo\", fps=2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Viewing the animation\n", + "Some problem in the jupyter notebook prevents playing the gif directly, but it can be played from markdown. One has to refresh this cell when a new animation is written. It should be visible that the beam enters the cryostat from the left, scatters of the sample and illuminates the entire cryostat. Running this simulation with a larger ncount and more time_bins in the monitor will reveal more details in what happens. This is available below, but commented out as the simulation can take some time.\n", + "\n", + "![SegmentLocal](animation_demo.gif \"Animation\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Optional: Increasing resolution\n", + "Running this simulation with a larger ncount and more time_bins in the monitor will reveal more details in what happens. This is available below, but commented out as the simulation can take some time." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "log_2D_st.time_bins = 128\n", + "instrument.settings(ncount=2E8, mpi=4)\n", + "#data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#ani_data = ms.name_search(\"logger_2D_space_time\", data)\n", + "#for frame in ani_data:\n", + "# ms.set_plot_options(log=True, colormap=\"jet\", orders_of_mag=6)\n", + "# \n", + "#ms.make_animation(ani_data, filename=\"animation_demo_long\", fps=5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Viewing the animation\n", + "In the longer animation it is more evident that scattering from the aluminium hits the top and bottom of the outer cylinder.\n", + "\n", + "![SegmentLocal](animation_demo_long.gif \"Animation\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/Union_tutorial_4_conditionals.ipynb b/tutorial/Union_tutorial_4_conditionals.ipynb new file mode 100644 index 00000000..65b35145 --- /dev/null +++ b/tutorial/Union_tutorial_4_conditionals.ipynb @@ -0,0 +1,550 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Using conditional component to modify loggers\n", + "Even with the results from the loggers, it can still be difficult to explain all the features in the resulting scattering pattern. The conditional components can modify a logger so that it only records events when the final state of the neutron satisfy some condition. The condition could be leaving with a certain energy or in a specified direction. Before demonstrating these conditional components, we will set up an interesting sample and sample environment, including a few loggers and a time of flight 2theta detector. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up an example instrument\n", + "First an example instrument is made, again with a cryostat but this time with a box shaped single crystal of YBaCuO. Since the *single_crystal_process* have quite a few parameters, we use the *set_parameters* method that allows setting parameters using a dictionary." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms\n", + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Set up Al material with incoherent and powder\n", + "Al_incoherent = instrument.add_component(\"Al_incoherent\", \"Incoherent_process\")\n", + "Al_incoherent.sigma = \"4*0.0082\"\n", + "Al_incoherent.packing_factor = 1\n", + "Al_incoherent.unit_cell_volume = 66.4\n", + "\n", + "Al_powder = instrument.add_component(\"Al_powder\", \"Powder_process\")\n", + "Al_powder.reflections = \"\\\"Al.laz\\\"\"\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_incoherent,Al_powder\"'\n", + "Al.my_absorption = \"100*4*0.231/66.4\"\n", + "\n", + "# Set up YBaCuO with incoherent and single crystal\n", + "YBaCuO_incoherent = instrument.add_component(\"YBaCuO_incoherent\", \"Incoherent_process\")\n", + "YBaCuO_incoherent.sigma = 2.105\n", + "YBaCuO_incoherent.unit_cell_volume = 173.28\n", + "\n", + "YBaCuO_crystal = instrument.add_component(\"YBaCuO_crystal\", \"Single_crystal_process\")\n", + "YBaCuO_crystal.set_parameters(\n", + "{\"ax\" : 3.816, \"ay\" : 0, \"az\" : 0,\n", + " \"bx\" : 0, \"by\" : 3.886, \"bz\" : 0,\n", + " \"cx\" : 0, \"cy\" : 0, \"cz\" : 11.677,\n", + " \"delta_d_d\" : 5E-4, \"mosaic\" : 30, \"barns\" : 1,\n", + " \"reflections\" : '\"YBaCuO.lau\"'})\n", + "\n", + "YBaCuO = instrument.add_component(\"YBaCuO\", \"Union_make_material\")\n", + "YBaCuO.process_string = '\"YBaCuO_incoherent,YBaCuO_crystal\"'\n", + "YBaCuO.my_absorption = 100*14.82/173.28\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "\n", + "instrument.add_parameter(\"wavelength\", value=5.0, comment=\"Wavelength in [Ang]\")\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "# At a reference point to build the cryostat around\n", + "cryostat_center = instrument.add_component(\"cryostat_center\", \"Arm\")\n", + "cryostat_center.set_AT([0, 0, 1], RELATIVE=src)\n", + "\n", + "# Parameter for controlling sample rotation\n", + "A3_angle = instrument.add_parameter(\"A3_angle\", value=0)\n", + "\n", + "sample = instrument.add_component(\"sample\", \"Union_box\")\n", + "sample.set_AT([0, 0, 0], RELATIVE=cryostat_center)\n", + "sample.set_ROTATED([0, A3_angle, 0], RELATIVE=cryostat_center)\n", + "sample.xwidth = 0.015\n", + "sample.yheight = 0.032\n", + "sample.zdepth = 0.012\n", + "sample.material_string = '\"YBaCuO\"'\n", + "sample.priority = 200\n", + "\n", + "# Setting up two layers of cryostat\n", + "inner_cryostat_wall = instrument.add_component(\"inner_cryostat_wall\", \"Union_cylinder\")\n", + "inner_cryostat_wall.material_string = \"\\\"Al\\\"\"\n", + "inner_cryostat_wall.priority = 12\n", + "inner_cryostat_wall.radius = 0.0621\n", + "inner_cryostat_wall.yheight = 0.16\n", + "inner_cryostat_wall.p_interact = 0.20\n", + "inner_cryostat_wall.set_AT([0, 0.01, 0], RELATIVE=cryostat_center)\n", + "\n", + "inner_cryostat_vacuum = instrument.add_component(\"inner_cryostat_vacuum\", \"Union_cylinder\")\n", + "inner_cryostat_vacuum.material_string = \"\\\"Vacuum\\\"\"\n", + "inner_cryostat_vacuum.priority = 13\n", + "inner_cryostat_vacuum.radius = 0.06\n", + "inner_cryostat_vacuum.yheight = 0.15\n", + "inner_cryostat_vacuum.set_AT([0, 0.01, 0], RELATIVE=cryostat_center)\n", + "\n", + "outer_cryostat_wall = instrument.add_component(\"outer_cryostat_wall\", \"Union_cylinder\")\n", + "outer_cryostat_wall.material_string = \"\\\"Al\\\"\"\n", + "outer_cryostat_wall.priority = 10\n", + "outer_cryostat_wall.radius = 0.180\n", + "outer_cryostat_wall.yheight = 0.355\n", + "outer_cryostat_wall.p_interact = 0.20\n", + "outer_cryostat_wall.set_AT([0, 0.032, 0], RELATIVE=cryostat_center)\n", + "\n", + "outer_cryostat_vacuum = instrument.add_component(\"outer_cryostat_vacuum\", \"Union_cylinder\")\n", + "outer_cryostat_vacuum.material_string = \"\\\"Vacuum\\\"\"\n", + "outer_cryostat_vacuum.priority = 11\n", + "outer_cryostat_vacuum.radius = 0.178\n", + "outer_cryostat_vacuum.yheight = 0.355\n", + "outer_cryostat_vacuum.set_AT([0, 0.037, 0], RELATIVE=cryostat_center)\n", + "\n", + "# Set up loggers\n", + "logger_space_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_space_zx.n1 = 150\n", + "logger_space_zx.n2 = 150\n", + "logger_space_zx.D1_min = -0.2\n", + "logger_space_zx.D1_max = 0.2\n", + "logger_space_zx.D2_min = -0.2\n", + "logger_space_zx.D2_max = 0.2\n", + "logger_space_zx.D_direction_1 = '\"z\"'\n", + "logger_space_zx.D_direction_2 = '\"x\"'\n", + "logger_space_zx.filename = '\"logger_zx.dat\"'\n", + "logger_space_zx.logger_conditional_extend_index = 1\n", + "logger_space_zx.set_AT([0, 0, 0], RELATIVE=cryostat_center)\n", + "\n", + "logger_space_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_space_zy.n1 = 150\n", + "logger_space_zy.n2 = 150\n", + "logger_space_zy.D1_min = -0.2\n", + "logger_space_zy.D1_max = 0.2\n", + "logger_space_zy.D2_min = -0.15\n", + "logger_space_zy.D2_max = 0.2\n", + "logger_space_zy.D_direction_1 = '\"z\"'\n", + "logger_space_zy.D_direction_2 = '\"y\"'\n", + "logger_space_zy.filename = '\"logger_zy.dat\"'\n", + "logger_space_zy.logger_conditional_extend_index = 1\n", + "logger_space_zy.set_AT([0, 0, 0], RELATIVE=cryostat_center)\n", + "\n", + "logger_2DQ = instrument.add_component(\"logger_2DQ_sample\", \"Union_logger_2DQ\")\n", + "logger_2DQ.Q_direction_1 = '\"z\"'\n", + "logger_2DQ.Q1_min = -4.0\n", + "logger_2DQ.Q1_max = 4.0\n", + "logger_2DQ.n1 = 100\n", + "logger_2DQ.Q_direction_2 = '\"x\"'\n", + "logger_2DQ.Q2_min = -4.0\n", + "logger_2DQ.Q2_max = 4.0\n", + "logger_2DQ.n2 = 100\n", + "logger_2DQ.target_geometry = '\"sample\"'\n", + "logger_2DQ.filename = '\"logger_2DQ_sample.dat\"'\n", + "\n", + "logger_2DQ = instrument.add_component(\"logger_2DQ_environment\", \"Union_logger_2DQ\")\n", + "logger_2DQ.Q_direction_1 = '\"z\"'\n", + "logger_2DQ.Q1_min = -4.0\n", + "logger_2DQ.Q1_max = 4.0\n", + "logger_2DQ.n1 = 100\n", + "logger_2DQ.Q_direction_2 = '\"x\"'\n", + "logger_2DQ.Q2_min = -4.0\n", + "logger_2DQ.Q2_max = 4.0\n", + "logger_2DQ.n2 = 100\n", + "logger_2DQ.target_geometry = '\"inner_cryostat_wall,outer_cryostat_wall\"'\n", + "logger_2DQ.filename = '\"logger_2DQ_all.dat\"'\n", + "\n", + "logger_time_all = instrument.add_component(\"logger_time_all\", \"Union_logger_1D\")\n", + "logger_time_all.n1 = 600\n", + "logger_time_all.min_value = 0.0008\n", + "logger_time_all.max_value = 0.0015\n", + "logger_time_all.filename = '\"scattering_time.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "\n", + "# Adding a banana - tof detector\n", + "banana_detector = instrument.add_component(\"banana_detector\", \"Monitor_nD\",\n", + "banana_detector.set_RELATIVE(cryostat_center)\n", + "banana_detector.xwidth = 1\n", + "banana_detector.yheight = 0.2\n", + "banana_detector.restore_neutron = 1\n", + "options = '\"banana, theta limits=[-180,180] bins=361, t limits=[0.0011 0.0025] bins=500\"'\n", + "banana_detector.options = options\n", + "banana_detector.filename = '\"tof_b.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculating theta\n", + "Our YBaCuO sample has the 010 axis along the z axis and have 010 allowed with d = 3.8843. Here we calculate the necessary rotation of the crystal for satisfying the Bragg condition. This could also be done within the initialize section of the McStas instrument, but here we wish to preserve control over the A3_angle." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import math\n", + "wavelength = 4.0\n", + "theta = 180/3.14159*math.asin(wavelength/2.0/3.8843)\n", + "print(theta)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=wavelength, A3_angle=theta)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_conditionals\")\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = ms.name_search(\"logger_space_zx\", data)\n", + "logger_zx.set_plot_options(log=True, orders_of_mag=9, colormap=\"jet\")\n", + "\n", + "logger_zy = ms.name_search(\"logger_space_zy\", data)\n", + "logger_zy.set_plot_options(log=True, orders_of_mag=9, colormap=\"jet\")\n", + "\n", + "logger_2DQ_sample = ms.name_search(\"logger_2DQ_sample\", data)\n", + "logger_2DQ_sample.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_env = ms.name_search(\"logger_2DQ_environment\", data)\n", + "logger_2DQ_env.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "ms.make_sub_plot([logger_zx, logger_zy, logger_2DQ_sample, logger_2DQ_env], fontsize=10)\n", + "\n", + "time = ms.name_search(\"logger_time_all\", data)\n", + "time.set_plot_options(log=True)\n", + "ms.make_sub_plot([time], fontsize=18)\n", + "\n", + "banana = ms.name_search(\"banana_detector\", data)\n", + "banana.set_plot_options(log=True, orders_of_mag=7, cut_max=0.001)\n", + "ms.make_sub_plot([banana], fontsize=18)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "The data from the two spatial loggers show scattering location within the cryostat, and we see one beam entering the cryostat, yet two beams leaving as we satisfy the Bragg condition for the sample. This also result in scattering from when the scattered beam intersect the sample environment.\n", + "\n", + "We have two 2DQ loggers recording the scattering vector, one just for the sample and one for the sample environment. On the sample monitor we see that many Bragg peaks scatter some intensity, but 010 and 0-10 have the most intensity, they are at [0.9, -1.5] and [1.5, -0.9]. The two circles are incoherent scattering from the two most common wavevectors, the initial beam and the beam scattered from 010. On the 2DQ logger for the sample environment, we mainly see the Debye-Scherrer cones as lines within the circles defined by the two predominant wavevectors. It seems the used wavelength allows two different Bragg conditions to be met in the aluminium.\n", + "\n", + "The time logger shows a surprising amount of complexity. The 5 peaks from entering and exiting two layers and intersecting the sample are clear, but all structure after 0.0012 is a surprise. There is also an unexpected peak at 0.00115, this may be the scattered beam intersecting the outer layer of the cryostat, this happens a bit sooner than the direct beam because the path is shorter when scattered from the front of the sample.\n", + "\n", + "The time of flight vs 2theta monitor also has a large amount of complexity that is not simple to explain. The bright spot at [0, 0.00155] is the direct beam, while the spot at [60, 0.00155] is the scattered beam. The horizontal line at t=0.00155 must be incoherent scattering from the sample, as it must have had the same distance to all points on the detector. The curved lower branch could be incoherent scattering from where the beam enters the cryostat, as that is closest to the 180 deg point on the detector. The remaining hot spots are all some Debye Scherrer cones from a beam entering or exiting the sample environment, and the more blurry spots may be of even higher order." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Conditional components\n", + "We can use conditional components to investigate peaks in the final scattering pattern, by limiting the loggers to only recording events that for example end in a certain spot. Currently there are two available\n", + "- Union_conditional_standard\n", + "- Union_conditional_PSD\n", + "\n", + "The standard version allows limits for energy, time and number of scattering events for the neutron when it exits the *Union_master* simulation, in this case when it leaves the sample environment.\n", + "\n", + "The PSD version propagates the final neutron states to a given rectangular surface and it is possible to filter the logger events on the neutron state when it reaches this surface, and ignores all events that misses. This is what we will use here to investigate a peak in the scattering pattern. We also set a time limit as our detector is time of flight sensitive.\n", + "\n", + "Here are the important parameters for the Union_conditional_PSD component\n", + "- target_loggers : comma separated string of logger names this conditional should affect\n", + "- xwidth : width of rectangle\n", + "- yheight : height of rectangle\n", + "- time_min : lower time limit for condition\n", + "- time_max : upper time limit for condition\n", + "- overwrite_logger_weight : If set to 1, will weight logger results with the final ray weight" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Set up instrument parameters describing what spot to investigate\n", + "instrument.add_parameter(\"tag_angle\", value=-95)\n", + "instrument.add_parameter(\"tag_time\", value=0.00188)\n", + "instrument.add_parameter(\"tag_interval\", value=9E-5)\n", + "\n", + "# Set up an arm pointing to the relevant spot\n", + "spot_dir = instrument.add_component(\"spot_dir\", \"Arm\",\n", + " RELATIVE=cryostat_center, before=\"master\")\n", + "spot_dir.set_ROTATED([0, \"tag_angle\", 0], RELATIVE=cryostat_center)\n", + "\n", + "# Set up a conditional component targeting all our loggers\n", + "PSD_conditional = instrument.add_component(\"space_all_PSD_conditional\", \"Union_conditional_PSD\",\n", + " before=\"master\")\n", + "\n", + "loggers = '\"logger_space_zx,logger_space_zy,logger_time_all,logger_2DQ_sample,logger_2DQ_environment\"'\n", + "PSD_conditional.target_loggers = loggers\n", + "PSD_conditional.xwidth = 0.2\n", + "PSD_conditional.yheight = 0.2\n", + "PSD_conditional.time_min = \"tag_time-0.5*tag_interval\"\n", + "PSD_conditional.time_max = \"tag_time+0.5*tag_interval\"\n", + "# Ensure the position of the conditional rectangle is on the detector surface\n", + "PSD_conditional.set_AT([0, 0, 0.5], RELATIVE=spot_dir) \n", + "\n", + "# Add a monitor with flag that is only active when the condition in the conditional is true\n", + "instrument.add_declare_var(\"int\", \"flag1\")\n", + "logger_space_zx.logger_conditional_extend_index = 1\n", + "master.append_EXTEND(\"flag1 = logger_conditional_extend_array[1];\")\n", + "\n", + "# Copy of our banana detector, but with WHEN condition to verify we are investigating the right peak\n", + "banana_detector = instrument.add_component(\"banana_detector_limited\", \"Monitor_nD\")\n", + "banana_detector.set_RELATIVE(cryostat_center)\n", + "banana_detector.xwidth = 1\n", + "banana_detector.yheight = 0.2\n", + "banana_detector.restore_neutron = 1\n", + "options = '\"banana, theta limits=[-180,180] bins=361, t limits=[0.0011 0.0025] bins=500\"'\n", + "banana_detector.options = options\n", + "banana_detector.filename = '\"tof_b_limited.dat\"'\n", + "banana_detector.set_WHEN(\"flag1 > 0\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run the simulation\n", + "We run the simulation again with a larger ncount, as the loggers now only record a small fraction of the scattered neutrons. You can investigate other areas of interest by changing *tag_angle*, *tag_time* and *tag_interval* to another interesting location on the time of flight detector.\n", + "\n", + "If MPI is installed add mpi=N where N is the number of CPU cores available in your computer to speed up the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=wavelength, A3_angle=theta, \n", + " tag_angle=-95, tag_time=0.00188, tag_interval=9E-5)\n", + "instrument.settings(ncount=3E6) # Can add mpi to improve speed for this longer simulation\n", + "\n", + "data_con = instrument.backengine()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Confirm our conditional is on the desired peak\n", + "First we plot our 2theta / time of flight detector and the version limited to what the conditional records to confirm that we selected an appropriate region to investigate." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana = functions.name_search(\"banana_detector\", data_con)\n", + "banana.set_plot_options(log=True, orders_of_mag=7, cut_max=0.001)\n", + "\n", + "banana_limited = functions.name_search(\"banana_detector_limited\", data_con)\n", + "banana_limited.set_plot_options(log=False)\n", + "\n", + "ms.make_sub_plot([banana, banana_limited], fontsize=10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Plotting the loggers, now limited by the conditional\n", + "We use a different colormap here instead of the standard jet, because in jet the lowest and highest intensity are both dark colors. By choosing a colormap where zero intensity is white, it blends in with white from lack of data which is beneficial in this situation for clearly seeing the hotspots." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = ms.name_search(\"logger_space_zx\", data_con)\n", + "logger_zx.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zy = ms.name_search(\"logger_space_zy\", data_con)\n", + "logger_zy.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_sample = ms.name_search(\"logger_2DQ_sample\", data_con)\n", + "logger_2DQ_sample.set_plot_options(log=True, orders_of_mag=7, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_env = ms.name_search(\"logger_2DQ_environment\", data_con)\n", + "logger_2DQ_env.set_plot_options(log=True, orders_of_mag=7, colormap=\"YlOrRd\")\n", + "\n", + "ms.make_sub_plot([logger_zx, logger_zy, logger_2DQ_sample, logger_2DQ_env], fontsize=10)\n", + "\n", + "time = ms.name_search(\"logger_time_all\", data_con)\n", + "time.set_plot_options(log=True)\n", + "\n", + "ms.make_sub_plot([time], fontsize=18)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Interpreting the data from loggers with conditional\n", + "Now that the loggers only show scattering from neutrons that end in our specific peak of interest, we can explain the origin of this peak. The spatial loggers show that scattering primarily happens in the sample, and in the outer part of the cryostat where the scattered beam leaves the sample environment. It is in this case obvious the first scattering is in the sample, as the exit area is not within the direct beam, but one can create individual loggers for each scattering order in order to confirm this.\n", + "\n", + "On the 2DQ logger for the sample it is clear the scattering is from the main Bragg peak (010 and 0-10). We see two peaks as a ray scattered from a Bragg peak will fulfil the Bragg condition of the opposite reciprocal indices. On the 2DQ logger for the sample environment, we see the brightest spot is a small part of a Debye-Scherrer cone. Scattered neutrons from other parts of this cone will not hit our conditional PSD, some may not even hit the detector at all.\n", + "\n", + "That means this specific peak was an uneven number of single crystal scattering events in 010/0-10 in the sample followed by a powder scattering in the outer wall of the sample environment. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Using the final weight option\n", + "Here we rerun the simulation with the overwrite_logger_weight option in the conditional turned on to see the effect. Without it a ray is recorded in the loggers if it satisfy the conditional, but it does not matter how large the final weight is. For this reason, some rays with high sampling probability to reach the condition but low weight are represented more than is appropriate. This is mainly important when shielding is simulated, as rays that pass through the shielding can be heavily overrepresented." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "PSD_conditional.overwrite_logger_weight = 1\n", + "\n", + "data_con_f = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = ms.name_search(\"logger_space_zx\", data_con_f)\n", + "logger_zx.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zy = ms.name_search(\"logger_space_zy\", data_con_f)\n", + "logger_zy.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_sample = ms.name_search(\"logger_2DQ_sample\", data_con_f)\n", + "logger_2DQ_sample.set_plot_options(log=True, orders_of_mag=7, colormap=\"YlOrRd\")\n", + "\n", + "logger_2DQ_env = ms.name_search(\"logger_2DQ_environment\", data_con_f)\n", + "logger_2DQ_env.set_plot_options(log=True, orders_of_mag=7, colormap=\"YlOrRd\")\n", + "\n", + "ms.make_sub_plot([logger_zx, logger_zy, logger_2DQ_sample, logger_2DQ_env], fontsize=10)\n", + "\n", + "time = ms.name_search(\"logger_time_all\", data_con_f)\n", + "time.set_plot_options(log=True)\n", + "\n", + "ms.make_sub_plot([time], fontsize=18)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Comparison between normal and overwrite_logger_weight\n", + "Here we make a direct comparison, and see only a slight difference in this case. No shielding is simulated here which would cause a much more clear difference." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "logger_zx = ms.name_search(\"logger_space_zx\", data_con)\n", + "logger_zx.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zy = ms.name_search(\"logger_space_zy\", data_con)\n", + "logger_zy.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zx_f = ms.name_search(\"logger_space_zx\", data_con_f)\n", + "logger_zx_f.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "logger_zy_f = ms.name_search(\"logger_space_zy\", data_con_f)\n", + "logger_zy_f.set_plot_options(log=True, orders_of_mag=9, colormap=\"YlOrRd\")\n", + "\n", + "ms.make_sub_plot([logger_zx, logger_zy, logger_zx_f, logger_zy_f], fontsize=10)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/Union_tutorial_5_masks.ipynb b/tutorial/Union_tutorial_5_masks.ipynb new file mode 100644 index 00000000..90830e9f --- /dev/null +++ b/tutorial/Union_tutorial_5_masks.ipynb @@ -0,0 +1,373 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Union tutorial on masks\n", + "There are some geometries that are impossible to build using only the priority based system geometry system, for example making part of a cylinder thinner, which is needed for a cryostat window. In many such cases, masks can be used to solve the problem." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setting up an example without masks\n", + "First we set up an example with a thick and hollow Al cylinder and a logger to view the spatial distribution of scattering." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2], factor 100\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "\n", + "src.xwidth = 0.2\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "\n", + "\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "wall = instrument.add_component(\"wall\", \"Union_cylinder\")\n", + "wall.set_AT([0,0,1], RELATIVE=src)\n", + "wall.yheight = 0.15\n", + "wall.radius = 0.1\n", + "wall.material_string='\"Al\"' \n", + "wall.priority = 10\n", + "\n", + "wall_vac = instrument.add_component(\"wall_vacuum\", \"Union_cylinder\")\n", + "wall_vac.set_AT([0,0,0], RELATIVE=wall)\n", + "wall_vac.yheight = 0.15 + 0.01\n", + "wall_vac.radius = 0.1 - 0.02\n", + "wall_vac.material_string='\"Vacuum\"' \n", + "wall_vac.priority = 50\n", + "\n", + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(wall)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.12\n", + "logger_zx.D1_max = 0.12\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.12\n", + "logger_zx.D2_max = 0.12\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.settings(ncount=2E6, output_path=\"data_folder/union_masks\")\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Masks\n", + "All Union geometries can act as a mask for a list of other already defined geometries. The geometries affected by a mask will only exist inside the mask, while the parts outside will not have any effect on this simulation. This provides some interesting geometrical capabilities, for example by defining two spheres with some overlap and making one a mask of the other, a classical lens shape can be created.\n", + "\n", + "The relevant parameters of all geometry components are:\n", + "- mask_string : comma separated list of geometry names the mask should be applied to\n", + "- mask_setting : selects between \"ANY\" or \"ALL\" mode. Default mode is \"ALL\".\n", + "\n", + "The mask mode is only important if several masks affect the same geometry, per default just having any of the masks overlap the target geometry allow it to exists, which correspond to the \"ANY\" mode. If the \"ALL\" mode is selected, the target geometry will only exists in regions where all the masks and itself overlap.\n", + "\n", + "Note that a unique priority is still necessary, but it is not used." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding a window using masks\n", + "Here we add a window to one side of the cylinder by inserting a larger vacuum cylinder, but mask it so that it is only active in the area around the window. In this way we get a nice curved window. We chose a box shape for the mask, but we could also have chosen a cylinder to get a round window." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "window = instrument.add_component(\"window\", \"Union_cylinder\", before=\"master\")\n", + "window.set_AT([0,0,0], RELATIVE=wall)\n", + "window.yheight = 0.15 + 0.02\n", + "window.radius = 0.1 - 0.01\n", + "window.material_string='\"Vacuum\"' \n", + "window.priority = 25\n", + "\n", + "mask = instrument.add_component(\"mask\", \"Union_box\", before=\"master\")\n", + "mask.xwidth = 0.1\n", + "mask.yheight = 0.2\n", + "mask.zdepth = 0.09\n", + "mask.priority = 1\n", + "mask.mask_string='\"window\"'\n", + "mask.set_AT([0,0,-0.1], RELATIVE=wall)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding an external window using a mask\n", + "It is also possible to create a thinner section where the material is reduced from the outside. Here we need to add both a vacuum and an aluminium geometry, both of which need to have a priority lower than the original inner vacuum. One mask can handle several geometries, just include both names in the *mask_string* parameter." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "o_window = instrument.add_component(\"outer_window\", \"Union_cylinder\", before=\"master\")\n", + "o_window.set_AT([0,0,0], RELATIVE=wall)\n", + "o_window.yheight = 0.15 + 0.03\n", + "o_window.radius = 0.1 + 0.01\n", + "o_window.material_string='\"Vacuum\"' \n", + "o_window.priority = 30\n", + "\n", + "o_window_al = instrument.add_component(\"outer_window_Al\", \"Union_cylinder\", before=\"master\")\n", + "o_window_al.set_AT([0,0,0], RELATIVE=wall)\n", + "o_window_al.yheight = 0.15 + 0.04\n", + "o_window_al.radius = 0.1 - 0.01\n", + "o_window_al.material_string='\"Al\"' \n", + "o_window_al.priority = 31\n", + "\n", + "mask = instrument.add_component(\"mask_outer\", \"Union_box\", before=\"master\")\n", + "mask.xwidth = 0.12\n", + "mask.yheight = 0.2\n", + "mask.zdepth = 0.09\n", + "mask.priority = 2\n", + "mask.mask_string='\"outer_window,outer_window_Al\"'\n", + "mask.set_AT([0,0,0.1], RELATIVE=wall)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Masks are flexible\n", + "Masks can be used to create many interesting shapes with few geometries. Below we create a octagon with rounded corners using just three geometries, two of these being masks. Using masks expands the space of possible geometries greatly, and in many cases can also be a performance advantage when they reduce the number of geometries needed to describe the desired geometry." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")\n", + "\n", + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2], factor 100\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "\n", + "src.xwidth = 0.2\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "\n", + "instrument.add_parameter(\"wavelength\", value=5.0, comment=\"Wavelength in [Ang]\")\n", + "src.lambda0=\"wavelength\"\n", + "src.dlambda=\"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "box = instrument.add_component(\"box\", \"Union_box\")\n", + "box.set_AT([0,0,1], RELATIVE=src)\n", + "box.xwidth = 0.2\n", + "box.yheight = 0.1\n", + "box.zdepth = 0.2\n", + "box.material_string='\"Al\"' \n", + "box.priority = 10\n", + "\n", + "# Cut the corners by using an identical box rotated 45 deg around y\n", + "box_mask = instrument.add_component(\"box_mask\", \"Union_box\")\n", + "box_mask.set_AT([0,0,0], RELATIVE=box)\n", + "box_mask.set_ROTATED([0,45,0], RELATIVE=box)\n", + "box_mask.xwidth = 0.2\n", + "box_mask.yheight = 0.11 # Have to increase yheight to avoid perfect overlap\n", + "box_mask.zdepth = 0.2\n", + "box_mask.mask_string='\"box\"' \n", + "box_mask.priority = 50\n", + "\n", + "# Round the corners with a cylinder mask\n", + "cyl_mask = instrument.add_component(\"cylinder_mask\", \"Union_cylinder\")\n", + "cyl_mask.set_AT([0,0,0], RELATIVE=box)\n", + "cyl_mask.radius = 0.105\n", + "cyl_mask.yheight = 0.12\n", + "cyl_mask.mask_string='\"box\"' \n", + "cyl_mask.priority = 51\n", + "\n", + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(box)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.12\n", + "logger_zx.D1_max = 0.12\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.12\n", + "logger_zx.D2_max = 0.12\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/Union_tutorial_6_Exit_and_number_of_activations.ipynb b/tutorial/Union_tutorial_6_Exit_and_number_of_activations.ipynb new file mode 100644 index 00000000..a72f052b --- /dev/null +++ b/tutorial/Union_tutorial_6_Exit_and_number_of_activations.ipynb @@ -0,0 +1,405 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced geometry component concepts: Exit geometry and number of activations\n", + "This notebook explains the concept of exit geometry and the activation counter both of which are tied to the geometry components and how they are treated by the *Union_master*.\n", + "\n", + "An exit geometry is created by setting the *material_string* of a geometry to \"Exit\", and if a ray enters such a geometry, it is immediately released from the master component. Normally this only happens when the ray does not intersect any geometries. There are several uses for this, for example inserting a monitor within a Union geometry ensemble." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set up an example with empty sample container\n", + "First we set up an example with an empty sample container." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2], factor 100\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "sample_volume = instrument.add_component(\"sample_volume\", \"Union_cylinder\")\n", + "sample_volume.yheight = 0.03\n", + "sample_volume.radius = 0.0075\n", + "sample_volume.material_string='\"Vacuum\"' \n", + "sample_volume.priority = 100\n", + "sample_volume.set_AT([0,0,1], RELATIVE=src)\n", + "\n", + "container = instrument.add_component(\"sample_container\", \"Union_cylinder\")\n", + "container.set_RELATIVE(sample_volume)\n", + "container.yheight = 0.03+0.003 # 1.5 mm top and button\n", + "container.radius = 0.0075 + 0.0015 # 1.5 mm sides of container\n", + "container.material_string='\"Al\"' \n", + "container.priority = 99\n", + "\n", + "container_lid = instrument.add_component(\"sample_container_lid\", \"Union_cylinder\")\n", + "container_lid.set_AT([0, 0.0155, 0], RELATIVE=container)\n", + "container_lid.yheight = 0.004\n", + "container_lid.radius = 0.013\n", + "container_lid.material_string='\"Al\"' \n", + "container_lid.priority = 98\n", + "\n", + "inner_wall = instrument.add_component(\"cryostat_wall\", \"Union_cylinder\")\n", + "inner_wall.set_AT([0,0,0], RELATIVE=sample_volume)\n", + "inner_wall.yheight = 0.12\n", + "inner_wall.radius = 0.03\n", + "inner_wall.material_string='\"Al\"' \n", + "inner_wall.priority = 80\n", + "\n", + "inner_wall_vac = instrument.add_component(\"cryostat_wall_vacuum\", \"Union_cylinder\")\n", + "inner_wall_vac.set_AT([0,0,0], RELATIVE=sample_volume)\n", + "inner_wall_vac.yheight = 0.12 - 0.008\n", + "inner_wall_vac.radius = 0.03 - 0.002\n", + "inner_wall_vac.material_string='\"Vacuum\"' \n", + "inner_wall_vac.priority = 81\n", + "\n", + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(sample_volume)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.04\n", + "logger_zx.D1_max = 0.04\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.04\n", + "logger_zx.D2_max = 0.04\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "logger_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_zy.set_RELATIVE(sample_volume)\n", + "logger_zy.D_direction_1 = '\"z\"'\n", + "logger_zy.D1_min = -0.04\n", + "logger_zy.D1_max = 0.04\n", + "logger_zy.n1 = 300\n", + "logger_zy.D_direction_2 = '\"y\"'\n", + "logger_zy.D2_min = -0.06\n", + "logger_zy.D2_max = 0.06\n", + "logger_zy.n2 = 300\n", + "logger_zy.filename = '\"logger_zy.dat\"'\n", + "\n", + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "\n", + "banana = instrument.add_component(\"banana\", \"Monitor_nD\", RELATIVE=sample_volume)\n", + "banana.xwidth = 1.5\n", + "banana.yheight = 0.4\n", + "banana.restore_neutron = 1\n", + "banana.options = '\"theta limits=[5 175] bins=250, banana\"'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=3.0)\n", + "instrument.settings(ncount=3E6, output_path=\"data_folder/union_external\")\n", + "\n", + "data_empty = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data_empty, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data_empty, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data_empty[0:2])\n", + "ms.make_sub_plot(data_empty[2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding an exit volume\n", + "Now we switch the sample_volume material from Vacuum to exit, ejecting rays from the simulation when they encounter it." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample_volume.material_string='\"Exit\"' " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data[0:2])\n", + "ms.make_sub_plot(data[2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding an external component in the gap\n", + "We can now see any part of the beam that intersected the exit volume is basically removed from the simulation. It is now however possible to insert another component within that exit volume, for example a sample not available as a Union process. Here we just use a PowderN sample in order to demonstrate. We select the same dimensions as the exit volume, but subtract 10 micrometer to avoid a perfect overlap." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sample = instrument.add_component(\"sample\", \"PowderN\", after=\"master\")\n", + "sample.set_AT([0,0,0], RELATIVE=sample_volume)\n", + "sample.radius = sample_volume.radius - 1E-5\n", + "sample.yheight = sample_volume.yheight - 2E-5\n", + "sample.reflections = '\"Na2Ca3Al2F14.laz\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Running the simulation again\n", + "We run the simulation again, but know that the scattering within the sample wont be directly visible in the loggers." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true, + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data_wrong = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data_wrong, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data_wrong, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data_wrong[0:2])\n", + "ms.make_sub_plot(data_wrong[2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "Now we have added a sample inside the Union geometry, but when the neutron reaches that sample, it is ignored by the sample environment leading to unphysical behavior. Here the beam does not illuminate the sample environment on the way out, and all rays scattered by the PowderN sample are not attenuated by the " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Allowing the rays to return to the Union_master\n", + "Now we could recreate the entire sample environment with new geometries and insert an additional unit master to grab the neutrons after the external sample, yet this would be error prone as all geometries would need to be exactly the same. Instead it is possible to tell Union geometries that they should be simulated in several of the next *Union_master* components using the *number_of_activation* parameter on each Union geometry, which is 1 per default.\n", + "\n", + "Setting it to 2, we tell the geometries that they should be simulated in the two next *Union_master* components. We do not update the sample_volume which is an exit volume, as this would allow the ray to escape once more. Instead we will replace it with Vacuum, but one could also have placed something closer to the actual sample.\n", + "\n", + "One last necessary detail is to set the *allow_inside_start* parameter on the second *Union_master* component. This disables an error message that would occur if a neutron starts inside a Union geometry, as this is most likely an error. Here we want to do this on purpose, and we need to let the *Union_master* component know this is allowed." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "container.number_of_activations = 2\n", + "container_lid.number_of_activations = 2\n", + "inner_wall.number_of_activations = 2\n", + "inner_wall_vac.number_of_activations = 2\n", + "\n", + "sample_replacement = instrument.add_component(\"sample_volume_replace\", \"Union_cylinder\")\n", + "sample_replacement.yheight = sample_volume.yheight\n", + "sample_replacement.radius = sample_volume.radius\n", + "sample_replacement.material_string='\"Vacuum\"' \n", + "sample_replacement.priority = 101\n", + "sample_replacement.set_AT([0,0,0], RELATIVE=sample_volume)\n", + "\n", + "master_2 = instrument.add_component(\"master_after_sample\", \"Union_master\", after=\"sample\")\n", + "master_2.allow_inside_start=1" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data[0:2])\n", + "ms.make_sub_plot(data[2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "Now we see evidence of the beam leaving the sample environment after interacting with the sample, and also elevated scattering in comparison to the empty can. This is now a reasonable simulation containing an external component inside a Union geometry ensemble, but there is still one problem, if the ray leaves the external component and reenters later, it will find a Vacuum instead of that sample. This can be fixed to some extend by adding a second copy of the external component and a third *Union_master* component, while incrementing the *number_of_activations* on all geometries, then the ray would be able to leave and enter the external component once before the external component effectively disappears. Even with this assumption, it is still a reasonable approximation and a flexible approach to add for example a mirror inside a sample environment." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparison of the three datasets\n", + "Here we compare the three datasets, the empty sample environment, the wrong simulation where rays scattered in the sample could not interact with the sample environment, and the full simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "banana_empty = ms.name_search(\"banana\", data_empty)\n", + "banana_wrong = ms.name_search(\"banana\", data_wrong)\n", + "banana_sample = ms.name_search(\"banana\", data)\n", + "\n", + "import matplotlib.pyplot as plt\n", + "plt.figure(figsize=(14,6))\n", + "plt.plot(banana_empty.xaxis, banana_empty.Intensity, \"r\",\n", + " banana_wrong.xaxis, banana_wrong.Intensity, \"b\",\n", + " banana_sample.xaxis, banana_sample.Intensity, \"k\")\n", + "plt.xlabel(\"2Theta [deg]\")\n", + "plt.ylabel(\"Intensity [n/s]\")\n", + "plt.legend([\"No sample\", \"Wrong simulation, no exit\", \"Full simulation\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpretation of the data\n", + "We see that the wrong simulation have slightly lower background, and more peak intensity. We also see the peak shape is different near the aluminium Bragg peaks. Since the Union components contain a powder process, one can also recreate this example without using an external PowderN component to check the accuracy of the approach. It is however still not perfect, as the Union powder process will perform multiple scattering where PowderN will not. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + }, + "metadata": { + "execution": { + "timeout": 100 + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/Union_tutorial_7_Tagging_history.ipynb b/tutorial/Union_tutorial_7_Tagging_history.ipynb new file mode 100644 index 00000000..da79974c --- /dev/null +++ b/tutorial/Union_tutorial_7_Tagging_history.ipynb @@ -0,0 +1,323 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Union tagging system\n", + "The *Union_master* is capable of recording histories for each neutron in a tree like fashion and add the total intensities for each unique history together. At the end of the simulation these are sorted by intensity and written to file, and the top 20 are shown in the terminal. This system does not work with MPI, if MPI is used only part of the data is written to disk. The system can take up a large amount of memory when used, so it is disabled per default.\n", + "\n", + "First we set up a simple instrument with sample, container and a layer of cryostat." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import mcstasscript as ms" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "instrument = ms.McStas_instr(\"python_tutorial\", input_path=\"run_folder\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Al_inc = instrument.add_component(\"Al_inc\", \"Incoherent_process\")\n", + "Al_inc.sigma = 0.0082\n", + "Al_inc.unit_cell_volume = 66.4\n", + "\n", + "Al_pow = instrument.add_component(\"Al_pow\", \"Powder_process\")\n", + "Al_pow.reflections = '\"Al.laz\"'\n", + "\n", + "Al = instrument.add_component(\"Al\", \"Union_make_material\")\n", + "Al.process_string = '\"Al_inc,Al_pow\"'\n", + "Al.my_absorption = 100*0.231/66.4 # barns [m^2 E-28]*Å^3 [m^3 E-30]=[m E-2], factor 100\n", + "\n", + "Sample_inc = instrument.add_component(\"Sample_inc\", \"Incoherent_process\")\n", + "Sample_inc.sigma = 3.4176\n", + "Sample_inc.unit_cell_volume = 1079.1\n", + "\n", + "Sample_pow = instrument.add_component(\"Sample_pow\", \"Powder_process\")\n", + "Sample_pow.reflections = '\"Na2Ca3Al2F14.laz\"'\n", + "\n", + "Sample = instrument.add_component(\"Sample\", \"Union_make_material\")\n", + "Sample.process_string = '\"Sample_inc,Sample_pow\"'\n", + "Sample.my_absorption = 100*2.9464/1079.1\n", + "\n", + "src = instrument.add_component(\"source\", \"Source_div\")\n", + "src.xwidth = 0.01\n", + "src.yheight = 0.035\n", + "src.focus_aw = 0.01\n", + "src.focus_ah = 0.01\n", + "src.lambda0 = instrument.add_parameter(\"wavelength\", value=5.0,\n", + " comment=\"Wavelength in [Ang]\")\n", + "src.dlambda = \"0.01*wavelength\"\n", + "src.flux = 1E13\n", + "\n", + "sample_geometry = instrument.add_component(\"sample_geometry\", \"Union_cylinder\")\n", + "sample_geometry.yheight = 0.03\n", + "sample_geometry.radius = 0.0075\n", + "sample_geometry.material_string='\"Sample\"' \n", + "sample_geometry.priority = 100\n", + "sample_geometry.set_AT([0,0,1], RELATIVE=src)\n", + "\n", + "container = instrument.add_component(\"sample_container\", \"Union_cylinder\")\n", + "container.set_RELATIVE(sample_geometry)\n", + "container.yheight = 0.03+0.003 # 1.5 mm top and button\n", + "container.radius = 0.0075 + 0.0015 # 1.5 mm sides of container\n", + "container.material_string='\"Al\"' \n", + "container.priority = 99\n", + "\n", + "inner_wall = instrument.add_component(\"cryostat_wall\", \"Union_cylinder\")\n", + "inner_wall.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall.yheight = 0.12\n", + "inner_wall.radius = 0.03\n", + "inner_wall.material_string='\"Al\"' \n", + "inner_wall.priority = 80\n", + "\n", + "inner_wall_vac = instrument.add_component(\"cryostat_wall_vacuum\", \"Union_cylinder\")\n", + "inner_wall_vac.set_AT([0,0,0], RELATIVE=sample_geometry)\n", + "inner_wall_vac.yheight = 0.12 - 0.008\n", + "inner_wall_vac.radius = 0.03 - 0.002\n", + "inner_wall_vac.material_string='\"Vacuum\"' \n", + "inner_wall_vac.priority = 81\n", + "\n", + "logger_zx = instrument.add_component(\"logger_space_zx\", \"Union_logger_2D_space\")\n", + "logger_zx.set_RELATIVE(sample_geometry)\n", + "logger_zx.D_direction_1 = '\"z\"'\n", + "logger_zx.D1_min = -0.04\n", + "logger_zx.D1_max = 0.04\n", + "logger_zx.n1 = 300\n", + "logger_zx.D_direction_2 = '\"x\"'\n", + "logger_zx.D2_min = -0.04\n", + "logger_zx.D2_max = 0.04\n", + "logger_zx.n2 = 300\n", + "logger_zx.filename = '\"logger_zx.dat\"'\n", + "\n", + "logger_zy = instrument.add_component(\"logger_space_zy\", \"Union_logger_2D_space\")\n", + "logger_zy.set_RELATIVE(sample_geometry)\n", + "logger_zy.D_direction_1 = '\"z\"'\n", + "logger_zy.D1_min = -0.04\n", + "logger_zy.D1_max = 0.04\n", + "logger_zy.n1 = 300\n", + "logger_zy.D_direction_2 = '\"y\"'\n", + "logger_zy.D2_min = -0.06\n", + "logger_zy.D2_max = 0.06\n", + "logger_zy.n2 = 300\n", + "logger_zy.filename = '\"logger_zy.dat\"'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding the Union_master with tagging\n", + "There are two important parameters to consider when setting a *Union_master* up for tagging:\n", + "- enable_tagging [default 0] 0 for disable, 1 for enable\n", + "- history_limit [default 300000] Limit of unique histories recorded\n", + "\n", + "As the *Union_master* component records each ray in succession, their unique history is added to the history tree. If a ray takes the same path in the tree, the intensity gets added to that unique history. When the history limit is reached, the tree is not built out further, but if already recorded histories occur, their intensity is still added to the existing tree." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "master = instrument.add_component(\"master\", \"Union_master\")\n", + "master.enable_tagging = 1\n", + "master.history_limit = 300000" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "instrument.set_parameters(wavelength=3.0)\n", + "instrument.settings(ncount=3E5, output_path=\"data_folder/union_tagging\")\n", + "\n", + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ms.name_plot_options(\"logger_space_zx\", data, log=True, orders_of_mag=4)\n", + "ms.name_plot_options(\"logger_space_zy\", data, log=True, orders_of_mag=4)\n", + "ms.make_sub_plot(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Finding the history file\n", + "A file called Union_history.dat is written in the run folder with all the unique histories. In some cases a bug happens that causes the file to be unreadable, for now the best fix is to rerun the simulation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "with open(\"run_folder/union_history.dat\", \"r\", errors=\"ignore\") as file:\n", + " instrument_string = file.read()\n", + " print(instrument_string)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the histories\n", + "The history with highest intensity in my run is: V0 -> V3 -> V4 -> V2 -> V1 -> V2 -> V4 -> V3 -> V0, which means:\n", + "- Neutron entered Volume0 (Surrounding vacuum)\n", + "- Neutron entered Volume3 (Cryostat wall)\n", + "- Neutron entered Volume4 (Cryostat vacuum)\n", + "- Neutron entered Volume2 (Container)\n", + "- Neutron entered Volume1 (Sample)\n", + "- Neutron entered Volume2 (Container)\n", + "- Neutron entered Volume4 (Cryostat vacuum)\n", + "- Neutron entered Volume3 (Cryostat wall)\n", + "- Neutron entered Volume0 (Surrounding vacuum)\n", + "\n", + "So the most likely occurrence is that the ray is propagated through all geometries. The next most likely history is:\n", + "\n", + "V0 -> V3 -> V4 -> V2 -> V1 -> P1 -> V2 -> V4 -> V3 -> V0\n", + "\n", + "- Neutron entered Volume0 (Surrounding vacuum)\n", + "- Neutron entered Volume3 (Cryostat wall)\n", + "- Neutron entered Volume4 (Cryostat vacuum)\n", + "- Neutron entered Volume2 (Container)\n", + "- Neutron entered Volume1 (Sample)\n", + "- Neutron scattered on Process1 (Since we are in Volume1, that would be Sample_pow)\n", + "- Neutron entered Volume2 (Container)\n", + "- Neutron entered Volume4 (Cryostat vacuum)\n", + "- Neutron entered Volume3 (Cryostat wall)\n", + "- Neutron entered Volume0 (Surrounding vacuum)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Use conditional component to filter tagging\n", + "Just like a logger can be modified by a conditional component to only record events that satisfy that condition, the tagging system of the *Union_master* component can also be modified by a conditional component. In that case, the tagging system will only record events that satisfy the condition imposed by the conditional component.\n", + "\n", + "This can be useful to explain an unexpected feature, as the conditional components can filter for energy, time, direction or any combination of these. Here we demonstrate this feature by adding a *Union_conditional_PSD* outside of the direct beam and enabling the *master_tagging* control parameter, which causes the condition to be applied to the tagging system." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Set up an arm pointing to the relevant spot\n", + "spot_dir = instrument.add_component(\"spot_dir\", \"Arm\", RELATIVE=sample_geometry,\n", + " before=\"master\")\n", + "spot_dir.set_ROTATED([0, 60, 0], RELATIVE=sample_geometry)\n", + "\n", + "# Set up a conditional component targeting all our loggers\n", + "PSD_conditional = instrument.add_component(\"space_all_PSD_conditional\", \"Union_conditional_PSD\",\n", + " before=\"master\")\n", + "PSD_conditional.xwidth = 0.2\n", + "PSD_conditional.yheight = 0.2\n", + "PSD_conditional.master_tagging = 1\n", + "PSD_conditional.set_AT([0, 0, 0.5], RELATIVE=spot_dir) " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "data = instrument.backengine()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [ + "scroll-output" + ] + }, + "outputs": [], + "source": [ + "with open(\"run_folder/union_history.dat\", \"r\", errors=\"ignore\") as file:\n", + " instrument_string = file.read()\n", + " print(instrument_string)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Interpreting the data\n", + "Now all the histories contain a scattering process as this is necessary to reach the rectangle placed by the Union_conditional_PSD component set at 2theta = 60 deg. We also observe the intensities are much lower, simply because only a fraction of the simulated rays satisfy this condition." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Tags", + "kernelspec": { + "display_name": "Python 3", + "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.8.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tutorial/data_folder/note.txt b/tutorial/data_folder/note.txt new file mode 100644 index 00000000..fa985a4a --- /dev/null +++ b/tutorial/data_folder/note.txt @@ -0,0 +1 @@ +This folder will contain data files from McStas simulations performed in the notebook. diff --git a/tutorial/run_folder/note.txt b/tutorial/run_folder/note.txt new file mode 100644 index 00000000..1a8cb02d --- /dev/null +++ b/tutorial/run_folder/note.txt @@ -0,0 +1,2 @@ +McStas components, library functions and data files placed here can be used in tutorial notebooks. +This folder will also contain generated instrument files.